diff --git a/.github/scripts/update-vendored-grammars.mjs b/.github/scripts/update-vendored-grammars.mjs index 769310bd7..0554d3253 100644 --- a/.github/scripts/update-vendored-grammars.mjs +++ b/.github/scripts/update-vendored-grammars.mjs @@ -21,7 +21,7 @@ * node update-vendored-grammars.mjs # detect only → JSON report on stdout * node update-vendored-grammars.mjs --apply X # re-vendor grammar X in place * - * tree-sitter-c is MONITORED but report-only (`hold`): it is ABI-pinned at 0.21.4 + * tree-sitter-c and tree-sitter-objc are MONITORED but report-only (`hold`): c is ABI-pinned at 0.21.4 * (#1242/#858) and must not auto-bump without a tree-sitter runtime upgrade, so an * available c update is detected + reported but never auto-applied — even if it is * ABI-13/14. A maintainer re-vendors it deliberately. diff --git a/.github/vendored-grammars.json b/.github/vendored-grammars.json index bb4b18820..d42314aa2 100644 --- a/.github/vendored-grammars.json +++ b/.github/vendored-grammars.json @@ -6,6 +6,11 @@ "upstream": { "npm": "tree-sitter-c" }, "hold": "ABI-pinned at 0.21.4 (#1242/#858) — needs a tree-sitter runtime upgrade before bumping" }, + "objc": { + "name": "tree-sitter-objc", + "upstream": { "npm": "tree-sitter-objc" }, + "hold": "Pinned at 3.0.2 for the Objective-C provider MVP; carries darwin/linux arm64+x64 prebuilds compatible with the current tree-sitter runtime (linux-arm64 built from vendored source because the upstream npm artifact is mislabeled)" + }, "swift": { "name": "tree-sitter-swift", "upstream": { "npm": "tree-sitter-swift" } diff --git a/.github/workflows/build-tree-sitter-prebuilds.yml b/.github/workflows/build-tree-sitter-prebuilds.yml index ef64a64b8..b592ebe16 100644 --- a/.github/workflows/build-tree-sitter-prebuilds.yml +++ b/.github/workflows/build-tree-sitter-prebuilds.yml @@ -7,7 +7,7 @@ name: Build tree-sitter prebuilds # # Grammars covered here (the at-risk set — everything else already ships 6 # upstream prebuilds AND stays dependency-review-tracked, so it is left alone). -# All five are vendored under gitnexus/vendor/; `kind` (below) only picks where +# All seven are vendored under gitnexus/vendor/; `kind` (below) only picks where # the build job fetches the C source to compile: # - tree-sitter-c (vendored prebuild-only; built from the published npm # package — closes upstream's 4/6 ARM gap #2116 for a @@ -17,6 +17,8 @@ name: Build tree-sitter prebuilds # - tree-sitter-kotlin (vendored source; built from gitnexus/vendor/ — pinned to # an unreleased main commit for `fun interface` support # (#169) that no npm release carries yet) +# - tree-sitter-objc (vendored source; built from gitnexus/vendor/ — pinned +# for the Objective-C provider MVP) # - tree-sitter-swift (vendored source; built from gitnexus/vendor/ — its # prebuilds were originally upstream-shipped, now # GitNexus-cross-built like the rest for uniformity) @@ -24,13 +26,13 @@ name: Build tree-sitter prebuilds # off npm optionalDependency so `npm i -g gitnexus` # no longer warns on peerOptional tree-sitter@^0.22.1. # Upstream linux-arm64 prebuild is a mispackaged -# x86-64 binary; this workflow rebuilds all six.) +# x86-64 binary; this workflow rebuilds all seven.) # # Output: gitnexus/vendor//prebuilds//.node for # all 6 targets ({linux,darwin,win32}-{x64,arm64}). tree-sitter grammars are # N-API, so one ABI-stable .node per platform-arch works across all Node majors. # -# COST DISCIPLINE — this is a HEAVY native matrix (up to 3 grammars x 6 runners, +# COST DISCIPLINE — this is a HEAVY native matrix (up to 7 grammars x 6 runners, # incl. macOS + arm64). It is DELIBERATELY NOT wired into normal PR/push CI. It # runs only: # 1. on manual dispatch (workflow_dispatch); or @@ -61,7 +63,7 @@ on: workflow_dispatch: inputs: grammars: - description: 'Comma-separated grammar shortnames to build (c,dart,proto,kotlin,swift,zig), or "all".' + description: 'Comma-separated grammar shortnames to build (c,dart,proto,kotlin,objc,swift,zig), or "all".' required: false type: string default: 'all' @@ -93,7 +95,7 @@ on: - '!gitnexus/vendor/tree-sitter-*/prebuilds/**' # Self-test: re-run the guard if a future grammar pin is reintroduced in # the main package.json (optionalDependencies fallback). No-op otherwise — - # all six grammars are now fully vendored (kotlin and zig included). + # all seven grammars are now fully vendored (including kotlin, objc, and zig). - 'gitnexus/package.json' # Self-test: re-run the guard (normally a no-op) when the recipe changes. - '.github/workflows/build-tree-sitter-prebuilds.yml' @@ -163,6 +165,9 @@ jobs: // unreleased main commit for `fun interface` support (#169) that no // npm release carries yet — so it must build from the vendored source. kotlin: { name: 'tree-sitter-kotlin', kind: 'vendored' }, + // Objective-C is vendored WITH its source and its native bindings + // must be recut together with the pinned grammar snapshot. + objc: { name: 'tree-sitter-objc', kind: 'vendored' }, // swift is vendored WITH its source (parser.c/scanner.c/binding.gyp), // so it builds from gitnexus/vendor/ like dart/proto. Its prebuilds // were originally upstream-shipped; rebuilding them here unifies it. @@ -505,6 +510,7 @@ jobs: dart: "void main() { print(\"hi\"); }", proto: "syntax = \"proto3\";\nmessage M { int32 id = 1; }", kotlin: "fun main() { println(\"hi\") }", + objc: "@interface GNValidationProbe : NSObject\n@end", swift: "func greet() { print(\"hi\") }", zig: "pub fn main() void {}", }; diff --git a/.github/workflows/tree-sitter-upgrade-readiness.yml b/.github/workflows/tree-sitter-upgrade-readiness.yml index 13b79e093..88ee0bd42 100644 --- a/.github/workflows/tree-sitter-upgrade-readiness.yml +++ b/.github/workflows/tree-sitter-upgrade-readiness.yml @@ -4,7 +4,7 @@ name: Tree-sitter Upgrade Readiness # 1. Peer-dep compatibility — can each NPM-installed grammar install cleanly # with tree-sitter@0.25.0 without --legacy-peer-deps? # 2. Vendored grammars — each grammar in .github/vendored-grammars.json -# (c/swift/kotlin/dart/proto) is classified by its vendored ABI, read +# (c/swift/kotlin/dart/proto/objc) is classified by its vendored ABI, read # straight from gitnexus/vendor//src/parser.c (NOT node_modules, # which is never populated for vendored grammars — that mismatch is why # the report used to render bare "?" placeholders, #858). diff --git a/.gitignore b/.gitignore index 3d125d475..1f350e059 100644 --- a/.gitignore +++ b/.gitignore @@ -72,6 +72,8 @@ eval/.hypothesis/ # Local docs — planning output (gitnexus-plan / gitnexus-work) stays local, not tracked docs/* +!docs/fork/ +!docs/fork/** gitnexus/test/fixtures/mini-repo/*.md gitnexus/test/fixtures/mini-repo/.claude diff --git a/AGENTS.md b/AGENTS.md index fffdd6242..dcbe9cbc6 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -39,6 +39,7 @@ Commands and gotchas live under **Repo reference** below and in **[CONTRIBUTING. ## Reference docs - **[ARCHITECTURE.md](ARCHITECTURE.md)**, **[CONTRIBUTING.md](CONTRIBUTING.md)**, **[GUARDRAILS.md](GUARDRAILS.md)** +- **Objective-C provider work:** read **[docs/languages/objective-c-provider.md](docs/languages/objective-c-provider.md)** before changing Objective-C parsing or resolution. - **Call & inheritance resolution (RFC #909 Ring 3):** See ARCHITECTURE.md § Scope-Resolution Pipeline. All languages resolve calls and inheritance through the scope-resolution pipeline (`Registry.lookup`, `preEmitInheritanceEdges`, `emitHeritageEdges`, `buildMro` → `MethodDispatchIndex`). **Shared code in `gitnexus/src/core/ingestion/` must not name languages** — plug language behavior in via `LanguageProvider` / `ScopeResolver` hooks. A language plugs in by implementing `ScopeResolver` (`scope-resolution/contract/scope-resolver.ts`) and registering it in `SCOPE_RESOLVERS`. (The legacy call-resolution DAG + `@heritage` capture path were removed in RING4-1 #942.) - **Cursor:** `.cursor/index.mdc` (always-on); `.cursor/rules/*.mdc` (glob-scoped). Legacy `.cursorrules` deprecated. - **GitNexus:** standard skills in `.claude/skills/gitnexus-*/`; MCP rules in `gitnexus:start` block below. diff --git a/ARCHITECTURE.md b/ARCHITECTURE.md index b1076d1d5..a1d2589bb 100644 --- a/ARCHITECTURE.md +++ b/ARCHITECTURE.md @@ -377,7 +377,7 @@ CI auto-discovers the set via `tsx`. No workflow edit required. ## Language-agnostic graph feeding -16 languages → single unified graph. Four abstraction layers: +18 languages → single unified graph. Four abstraction layers: ``` Unified Graph Schema (44 node types, 21 relationship types) @@ -405,7 +405,7 @@ Each language implements `LanguageProvider` (`language-provider.ts`). Key fields | `descriptionExtractor` | Optional hook returning a symbol's doc-comment text as its `description`; feeds the embedding metadata header so doc-only terms are semantically searchable (issue #2270). Most languages register `createLeadingDocDescriptionExtractor` (shared, language-neutral; per-language comment/wrapper config passed at the call site) | | `definitionPropertiesExtractor` | Optional language-owned hook for structured, clone-safe definition metadata. Shared ingestion persists these properties opaquely; the owning provider supplies the extraction semantics. | -16 providers in `languages/index.ts` via `satisfies Record` — missing a language is a compile error. +18 providers in `languages/index.ts` via `satisfies Record` — missing a language is a compile error. ### Unified capture tags @@ -542,4 +542,5 @@ Node IDs use arity suffix (`#`): `Method:file:Class.method#1` vs `#2 - [RUNBOOK.md](RUNBOOK.md) — operational commands and recovery - [GUARDRAILS.md](GUARDRAILS.md) — safety boundaries for humans and agents - [TESTING.md](TESTING.md) — how to run tests +- [docs/languages/objective-c-provider.md](docs/languages/objective-c-provider.md) — Objective-C provider behavior and limits - `AGENTS.md` / `CLAUDE.md` — agent workflows and tool usage diff --git a/README.md b/README.md index f2714bf89..9e92ca1e4 100644 --- a/README.md +++ b/README.md @@ -657,6 +657,7 @@ GitNexus builds a complete knowledge graph of your codebase through a multi-phas | Swift | — | — | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | C | — | — | ✓ | — | ✓ | ✓ | — | ✓ | ✓ | | C++ | — | — | ✓ | ✓ | ✓ | ✓ | — | ✓ | ✓ | +| Objective-C | ✓ | — | ✓ | ✓ | ✓ | — | — | — | — | | Dart | ✓ | — | ✓ | ✓ | ✓ | ✓ | — | ✓ | ✓ | | Zig | ✓ | — | ✓ | — | ✓ | ✓ | ✓ | — | ✓ | diff --git a/docs/languages/objective-c-provider.md b/docs/languages/objective-c-provider.md new file mode 100644 index 000000000..f2b243ded --- /dev/null +++ b/docs/languages/objective-c-provider.md @@ -0,0 +1,107 @@ +# Objective-C Language Provider + +Status: implemented + +The deterministic provider is covered by focused unit and integration tests. The parser-loader ABI +smoke runs in the published multi-OS test matrix, and the native prebuild workflow owns +Objective-C together with all six vendored grammar targets. This status describes the implemented +MVP; it does not promise full Objective-C runtime dispatch. + +## Goal + +Add deterministic, symbol-level Objective-C analysis to GitNexus. The first release must support high-confidence code navigation and direct static dependency analysis for `.m`, `.mm`, and Objective-C `.h` files. It must not imply that Objective-C runtime dispatch is fully resolved. + +The provider belongs in the existing language-provider and scope-resolution extension points. Shared ingestion code must remain language-agnostic. + +## Compatibility contract + +- Existing language detection and parsing must remain unchanged. +- A `.h` file must be classified from its content or surrounding context; it cannot be unconditionally claimed by Objective-C because C and C++ also use that extension. +- If Objective-C grammar loading fails, the error must clearly name the missing provider/grammar and cannot corrupt a previously valid index. +- Provider and grammar versions must be stored in index metadata. A version change that can alter node identity or edges requires a full rebuild. +- No LLM participates in parsing, name resolution, or edge creation. Analysis is Tree-sitter plus deterministic static resolution. + +## MVP model + +The provider must extract and connect: + +- Classes, superclasses, protocols, categories, class extensions, properties, ivars, C functions, imports, declarations, and implementations. +- Instance and class methods, preserving their complete multi-part selector. +- Inheritance, protocol conformance, import, declaration/implementation, host-class/category, and statically resolved call relationships. + +Stable identity must include enough ownership to distinguish same-named methods. Recommended forms are: + +```text +objc:class: +objc:protocol: +objc:category:: +objc:method::-: +objc:method::+: +objc:function: +``` + +For example, `-loadData:completion:` and `+loadData:completion:` are different symbols. A category method remains linked to both its category and host class; querying the host class must expose distributed implementations. + +## Resolution policy + +Resolution must be conservative. A missing or dynamic target is evidence of uncertainty, not proof that no target exists. + +| Receiver case | Required result | +| --- | --- | +| Explicit class name, `self`, or `super` | Resolve when the owner is statically known. | +| Local, parameter, property, or ivar with known static type | Resolve to matching owner and selector. | +| Protocol-typed receiver | Link the protocol method and identify possible implementations as candidates. | +| `id`, `Class`, macros, reflection, `performSelector:`, `NSInvocation`, runtime injection, or unknown type | Store selector/location with `resolution=unresolved`; do not emit a certain call edge. | + +The provider should first collect file-local declarations, imports, and types, then resolve across the repository. It must use structured Tree-sitter captures or AST traversal, not regular expressions over source text. Multi-part selectors, block arguments, nullability annotations, generics, macros, and multiline declarations make a regex-only extractor unsafe. + +## Imports and incremental correctness + +- Resolve quoted project imports against the current directory, configured include roots, and indexed headers. Model framework imports as external-module evidence without downloading SDK source. +- Merge `@interface`, `@implementation`, categories, and extensions across files. +- A changed header, protocol, class declaration, or category invalidates importing and affected implementation/call-resolution state. Incremental output after such a change must match a full rebuild. +- Index metadata must record provider version, grammar version, include/exclude configuration, and parsing options used for resolution. + +## Implementation sequence + +1. Add and package a pinned Objective-C Tree-sitter grammar; verify macOS arm64 and the production Linux runner can load it. +2. Add language detection for `.m`, `.mm`, and content-classified `.h` files. +3. Implement AST extraction and stable IDs for declarations and definitions. +4. Implement repository-level merge, imports, inheritance, protocol, and category relationships. +5. Add conservative message-send resolution and explicit unresolved evidence. +6. Integrate invalidation, metadata comparison, MCP/CLI output, and fixtures. + +## Fixtures and acceptance + +Create a minimal Objective-C fixture containing a class, protocol, category, extension, superclass, properties, ivars, C function, imports, multi-part selector, block parameter, `self`, `super`, protocol receiver, and `id` receiver. Use `symodulebridge` as a real integration fixture after the minimal suite is stable. + +The acceptance bar is: + +- `query "SYModuleCaller"` yields class/method semantic nodes, not only file nodes. +- `context "SYModuleCaller" --file ` yields declaration, implementation, imports, and known references. +- Known statically typed message sends create call edges; dynamic sends are marked unresolved. +- Same selector on multiple classes, a category override, and `+` versus `-` methods remain distinct. +- A `.m`, `.h`, protocol, or category edit produces results equivalent to a clean rebuild. +- Generated documentation, dependency directories, and build output are excluded through explicit indexing configuration. + +## Non-goals + +The MVP does not promise exact runtime type inference for `id` or `instancetype`, reflection, swizzling, arbitrary category replacement, dynamic selector construction, or complete impact analysis across every runtime dispatch path. Tool results must surface confidence and unresolved evidence rather than presenting guesses as certain graph facts. + +## Current implementation coverage + +Implemented capabilities: + +- Vendored `tree-sitter-objc` grammar, registered through the existing Tree-sitter loader. +- `.m` and `.mm` language mapping plus content-based `.h` classification so plain C/C++ headers are not unconditionally claimed. +- LanguageProvider extraction for classes, protocols, categories, extensions, methods, properties, ivars, C functions, imports, unresolved message evidence, stable Objective-C qualified names, and provider/grammar metadata. +- Length-preserving preprocessing of bare, file-scope all-caps macro markers before Tree-sitter parsing. This recovers declarations after wrappers such as `RCT_EXTERN_C_BEGIN` / `RCT_EXTERN_C_END` without expanding macros or adding framework-specific rules. +- ScopeResolver edges for imports, inheritance, protocol conformance, category host membership, implementation evidence, and conservative static message sends. +- Persisted query/context support for Objective-C class and method nodes, including implementation evidence via `DECLARES`. +- Regression tests for grammar loading, `.h` classification, stable identities, conservative calls, metadata feature mismatch, persisted query/context behavior, and incremental-vs-force parity for Objective-C fixture edits. + +Known limits of this MVP: + +- The first version does not perform full Objective-C runtime dispatch, swizzling, dynamic selector construction, macro expansion, or `id` flow inference. Bare file-scope marker macros are elided only to preserve parser recovery; their expansion semantics are not interpreted. +- Protocol receiver handling records the protocol method and candidate implementation evidence, but candidate implementations are not emitted as certain call edges. +- Objective-C++ `.mm` files are parsed with the Objective-C grammar path for this MVP; deep C++ semantic extraction inside Objective-C++ bodies remains outside this provider. diff --git a/gitnexus-shared/src/graph/types.ts b/gitnexus-shared/src/graph/types.ts index 58d96e42f..8b2b13596 100644 --- a/gitnexus-shared/src/graph/types.ts +++ b/gitnexus-shared/src/graph/types.ts @@ -14,6 +14,8 @@ export type NodeLabel = | 'Folder' | 'File' | 'Class' + | 'Protocol' + | 'Category' | 'Function' | 'Method' | 'Variable' diff --git a/gitnexus-shared/src/language-detection.ts b/gitnexus-shared/src/language-detection.ts index e805d4e4c..3fe27f7b7 100644 --- a/gitnexus-shared/src/language-detection.ts +++ b/gitnexus-shared/src/language-detection.ts @@ -32,6 +32,7 @@ const EXTENSION_MAP: Record = { [SupportedLanguages.Python]: ['.py'], [SupportedLanguages.Java]: ['.java'], [SupportedLanguages.C]: ['.c'], + [SupportedLanguages.ObjectiveC]: ['.m', '.mm'], [SupportedLanguages.CPlusPlus]: [ '.cpp', '.cc', @@ -111,6 +112,7 @@ const SYNTAX_MAP: Record = { [SupportedLanguages.Python]: 'python', [SupportedLanguages.Java]: 'java', [SupportedLanguages.C]: 'c', + [SupportedLanguages.ObjectiveC]: 'objectivec', [SupportedLanguages.CPlusPlus]: 'cpp', [SupportedLanguages.CSharp]: 'csharp', [SupportedLanguages.Go]: 'go', diff --git a/gitnexus-shared/src/languages.ts b/gitnexus-shared/src/languages.ts index d16adbd1a..eec45e612 100644 --- a/gitnexus-shared/src/languages.ts +++ b/gitnexus-shared/src/languages.ts @@ -11,6 +11,7 @@ export enum SupportedLanguages { Java = 'java', C = 'c', CPlusPlus = 'cpp', + ObjectiveC = 'objective-c', CSharp = 'csharp', Go = 'go', Ruby = 'ruby', diff --git a/gitnexus-shared/src/lbug/schema-constants.ts b/gitnexus-shared/src/lbug/schema-constants.ts index 217c382a6..aea908ef9 100644 --- a/gitnexus-shared/src/lbug/schema-constants.ts +++ b/gitnexus-shared/src/lbug/schema-constants.ts @@ -13,6 +13,8 @@ export const NODE_TABLES = [ 'Folder', 'Function', 'Class', + 'Protocol', + 'Category', 'Interface', 'Method', 'CodeElement', diff --git a/gitnexus-shared/src/scope-resolution/language-classification.ts b/gitnexus-shared/src/scope-resolution/language-classification.ts index 20059c3e9..2e635c8e2 100644 --- a/gitnexus-shared/src/scope-resolution/language-classification.ts +++ b/gitnexus-shared/src/scope-resolution/language-classification.ts @@ -9,7 +9,8 @@ * Initial classification (locked in Ring 1 #910): * - production: javascript, typescript, python, java, c, cpp, csharp, go, * ruby, rust, php, kotlin, swift, dart - * - experimental: vue (embedded-language / SFC complexity), + * - experimental: objective-c (fork provider MVP), + * vue (embedded-language / SFC complexity), * cobol (regex-provider path) * - quarantined: (none) * @@ -34,6 +35,7 @@ export const LanguageClassifications: Readonly = new Set = new Set([ 'Class', + 'Protocol', + 'Category', 'Interface', 'Enum', 'Struct', diff --git a/gitnexus-web/src/components/FileTreePanel.tsx b/gitnexus-web/src/components/FileTreePanel.tsx index a3c7487a9..3004e9353 100644 --- a/gitnexus-web/src/components/FileTreePanel.tsx +++ b/gitnexus-web/src/components/FileTreePanel.tsx @@ -186,6 +186,10 @@ const getNodeTypeIcon = (label: NodeLabel) => { return FileCode; case 'Class': return Box; + case 'Protocol': + return Hash; + case 'Category': + return Box; case 'Function': return Braces; case 'Method': diff --git a/gitnexus-web/src/lib/constants.ts b/gitnexus-web/src/lib/constants.ts index 5a85754cf..8e5259741 100644 --- a/gitnexus-web/src/lib/constants.ts +++ b/gitnexus-web/src/lib/constants.ts @@ -8,6 +8,8 @@ export const NODE_COLORS: Record = { Folder: '#6366f1', // Indigo File: '#3b82f6', // Blue Class: '#f59e0b', // Amber - stands out + Protocol: '#ec4899', // Pink - like Interface + Category: '#14b8a6', // Teal - like Method Function: '#10b981', // Emerald Method: '#14b8a6', // Teal Variable: '#64748b', // Slate - muted (less important) @@ -51,6 +53,8 @@ export const NODE_SIZES: Record = { Folder: 10, // Structural - clearly bigger than files File: 6, // Common element - smaller than folders Class: 8, // Important code structure + Protocol: 7, // Like Interface + Category: 3, // Like Method Function: 4, // Common code element - small Method: 3, // Smaller than function Variable: 2, // Tiny - leaf node @@ -115,6 +119,8 @@ export const DEFAULT_VISIBLE_LABELS: NodeLabel[] = [ 'Folder', 'File', 'Class', + 'Protocol', + 'Category', 'Function', 'Method', 'Property', // Kotlin/Java fields (HAS_PROPERTY + DEFINES File→Property) @@ -129,6 +135,8 @@ export const FILTERABLE_LABELS: NodeLabel[] = [ 'Folder', 'File', 'Class', + 'Protocol', + 'Category', 'Interface', 'Enum', 'Type', diff --git a/gitnexus-web/test/unit/constants.test.ts b/gitnexus-web/test/unit/constants.test.ts index 10fe238b9..216a3d52f 100644 --- a/gitnexus-web/test/unit/constants.test.ts +++ b/gitnexus-web/test/unit/constants.test.ts @@ -65,6 +65,8 @@ describe('FILTERABLE_LABELS', () => { expect(FILTERABLE_LABELS).toContain('Type'); expect(FILTERABLE_LABELS).toContain('Decorator'); expect(FILTERABLE_LABELS).toContain('Variable'); + expect(FILTERABLE_LABELS).toContain('Protocol'); + expect(FILTERABLE_LABELS).toContain('Category'); }); it('every filterable label has a defined color in NODE_COLORS', () => { diff --git a/gitnexus-web/test/unit/filter-panel.test.ts b/gitnexus-web/test/unit/filter-panel.test.ts index 67ab3397c..9bc9c5132 100644 --- a/gitnexus-web/test/unit/filter-panel.test.ts +++ b/gitnexus-web/test/unit/filter-panel.test.ts @@ -7,6 +7,8 @@ const LEGEND_LABELS: NodeLabel[] = [ 'Folder', 'File', 'Class', + 'Protocol', + 'Category', 'Interface', 'Enum', 'Type', @@ -20,6 +22,8 @@ const ICON_MAP: Record = { Folder: 'Folder', File: 'FileCode', Class: 'Box', + Protocol: 'Hash', + Category: 'Box', Function: 'Braces', Method: 'Braces', Interface: 'Hash', @@ -62,6 +66,8 @@ describe('color legend', () => { expect(LEGEND_LABELS).toContain('Type'); expect(LEGEND_LABELS).toContain('Decorator'); expect(LEGEND_LABELS).toContain('Variable'); + expect(LEGEND_LABELS).toContain('Protocol'); + expect(LEGEND_LABELS).toContain('Category'); }); it('every legend label has a color defined', () => { @@ -76,6 +82,8 @@ describe('color legend', () => { 'Folder', 'File', 'Class', + 'Protocol', + 'Category', 'Interface', 'Enum', 'Type', diff --git a/gitnexus/scripts/build-tree-sitter-grammars.cjs b/gitnexus/scripts/build-tree-sitter-grammars.cjs index 434cd193f..a2a55637e 100644 --- a/gitnexus/scripts/build-tree-sitter-grammars.cjs +++ b/gitnexus/scripts/build-tree-sitter-grammars.cjs @@ -25,7 +25,7 @@ * or exit non-zero — a failure for any single grammar must not break the install. * * Opt-out: GITNEXUS_SKIP_OPTIONAL_GRAMMARS=1 (strict '1') skips the OPTIONAL - * grammars only. tree-sitter-c is REQUIRED (it backstops upstream's 4/6 ARM + * grammars only. tree-sitter-c and tree-sitter-objc are REQUIRED (C backstops upstream's 4/6 ARM * prebuild gap, #2116) and is always built. * * Usage: @@ -40,6 +40,7 @@ const { execSync } = require('child_process'); // grammars ignore the opt-out gate. Insertion order == build order (c first). const GRAMMARS = { c: { required: true, display: 'C', ext: '.c' }, + objc: { required: true, display: 'Objective-C', ext: '.m/.mm/.h' }, dart: { required: false, display: 'Dart', ext: '.dart' }, proto: { required: false, display: 'Proto', ext: '.proto' }, swift: { required: false, display: 'Swift', ext: '.swift' }, diff --git a/gitnexus/src/core/analysis-feature-registry.ts b/gitnexus/src/core/analysis-feature-registry.ts index 474c2157d..03887c29e 100644 --- a/gitnexus/src/core/analysis-feature-registry.ts +++ b/gitnexus/src/core/analysis-feature-registry.ts @@ -11,6 +11,7 @@ import { JAVA_RECORD_COMPONENT_ACCESSORS_FEATURE, SPRING_CONFIG_BINDINGS_FEATURE, } from './ingestion/languages/java/analysis-features.js'; +import { OBJECTIVE_C_PROVIDER_FEATURE } from './ingestion/languages/objective-c/analysis-features.js'; /** Production registry of independently versioned analysis capabilities. */ export const ANALYSIS_FEATURES = [ @@ -23,4 +24,5 @@ export const ANALYSIS_FEATURES = [ SPRING_CONFIG_BINDINGS_FEATURE, JAVA_ENUM_INTERFACE_HERITAGE_FEATURE, JAVA_RECORD_COMPONENT_ACCESSORS_FEATURE, + OBJECTIVE_C_PROVIDER_FEATURE, ] as const; diff --git a/gitnexus/src/core/embeddings/ast-utils.ts b/gitnexus/src/core/embeddings/ast-utils.ts index 194f47313..9ee483a8c 100644 --- a/gitnexus/src/core/embeddings/ast-utils.ts +++ b/gitnexus/src/core/embeddings/ast-utils.ts @@ -100,6 +100,8 @@ export const findDeclarationNode = (root: any): any | null => { 'struct_item', 'interface_declaration', 'interface_definition', + 'protocol_declaration', // Objective-C protocol + 'class_interface', // Objective-C class, category, or extension 'enum_declaration', 'enum_item', 'type_declaration', // Go: type X struct diff --git a/gitnexus/src/core/embeddings/chunker.ts b/gitnexus/src/core/embeddings/chunker.ts index 073abfb9c..367767786 100644 --- a/gitnexus/src/core/embeddings/chunker.ts +++ b/gitnexus/src/core/embeddings/chunker.ts @@ -148,6 +148,10 @@ const DECLARATION_BODY_NODE_TYPES = new Set([ 'interface_body', ]); +const DIRECT_MEMBER_DECLARATION_TYPES = new Set(['protocol_declaration', 'class_interface']); + +const DIRECT_MEMBER_HEADER_NODE_TYPES = new Set(['identifier', 'protocol_reference_list']); + const FIELD_LIKE_MEMBER_TYPES = new Set([ 'field_definition', 'public_field_definition', @@ -159,6 +163,11 @@ const FIELD_LIKE_MEMBER_TYPES = new Set([ 'enum_assignment', ]); +const DECLARATION_MEMBER_WRAPPER_TYPES = new Set([ + 'qualified_protocol_interface_declaration', + 'instance_variables', +]); + const declarationChunk = async ( content: string, filePath: string, @@ -337,6 +346,8 @@ const getDeclarationBodyNode = (node: any): any | null => { const bodyNode = node.childForFieldName?.('body'); if (bodyNode) return bodyNode; + if (DIRECT_MEMBER_DECLARATION_TYPES.has(node.type)) return node; + for (let i = 0; i < node.namedChildCount; i++) { const child = node.namedChild(i); if (!child) continue; @@ -352,15 +363,34 @@ const collectDeclarationUnits = ( ): Array<{ startIndex: number; endIndex: number }> => { const members: Array<{ startIndex: number; endIndex: number; groupable: boolean }> = []; - for (let i = 0; i < bodyNode.namedChildCount; i++) { - const child = bodyNode.namedChild(i); - if (!child) continue; - members.push({ - startIndex: child.startIndex, - endIndex: child.endIndex, - groupable: groupFields && FIELD_LIKE_MEMBER_TYPES.has(child.type), - }); - } + const collectMembers = ( + node: any, + skipHeaderChildren: boolean, + includeNodePrefixOnFirstMember = false, + ): void => { + const firstMemberIndex = members.length; + for (let i = 0; i < node.namedChildCount; i++) { + const child = node.namedChild(i); + if (!child) continue; + if (DECLARATION_MEMBER_WRAPPER_TYPES.has(child.type)) { + collectMembers(child, false, true); + continue; + } + if (skipHeaderChildren && DIRECT_MEMBER_HEADER_NODE_TYPES.has(child.type)) continue; + members.push({ + startIndex: child.startIndex, + endIndex: child.endIndex, + groupable: groupFields && FIELD_LIKE_MEMBER_TYPES.has(child.type), + }); + } + + const firstMember = members[firstMemberIndex]; + if (includeNodePrefixOnFirstMember && firstMember) { + firstMember.startIndex = node.startIndex; + } + }; + + collectMembers(bodyNode, DIRECT_MEMBER_DECLARATION_TYPES.has(bodyNode.type)); if (members.length === 0) return []; diff --git a/gitnexus/src/core/embeddings/types.ts b/gitnexus/src/core/embeddings/types.ts index 71cad5d65..608e07582 100644 --- a/gitnexus/src/core/embeddings/types.ts +++ b/gitnexus/src/core/embeddings/types.ts @@ -8,6 +8,8 @@ export const LABEL_FUNCTION = 'Function' as const; export const LABEL_METHOD = 'Method' as const; export const LABEL_CONSTRUCTOR = 'Constructor' as const; export const LABEL_CLASS = 'Class' as const; +export const LABEL_PROTOCOL = 'Protocol' as const; +export const LABEL_CATEGORY = 'Category' as const; export const LABEL_INTERFACE = 'Interface' as const; export const LABEL_STRUCT = 'Struct' as const; export const LABEL_ENUM = 'Enum' as const; @@ -53,6 +55,8 @@ export const CHUNKABLE_LABELS = [ LABEL_METHOD, LABEL_CONSTRUCTOR, LABEL_CLASS, + LABEL_PROTOCOL, + LABEL_CATEGORY, LABEL_INTERFACE, LABEL_STRUCT, LABEL_ENUM, @@ -165,6 +169,20 @@ export const CHUNKING_RULES: Readonly> { + const classifications = new Map(); + const results = await mapConcurrent( + relativePaths, + async (relativePath) => { + const sourceText = await fs.readFile(path.join(repoPath, relativePath), 'utf-8'); + return { + path: relativePath, + language: getLanguageForFileContent(relativePath, sourceText), + }; + }, + { concurrency: READ_CONCURRENCY }, + ); + + // An unreadable file yields `undefined` from mapConcurrent. Leave it absent + // so the caller retains the existing filename-based fallback behavior. + for (const result of results) { + if (result !== undefined) classifications.set(result.path, result.language); + } + + return classifications; +} diff --git a/gitnexus/src/core/ingestion/filesystem-walker.ts b/gitnexus/src/core/ingestion/filesystem-walker.ts index 7e41c07c2..a4a04e342 100644 --- a/gitnexus/src/core/ingestion/filesystem-walker.ts +++ b/gitnexus/src/core/ingestion/filesystem-walker.ts @@ -19,7 +19,7 @@ export interface FilePath { path: string; } -const READ_CONCURRENCY = 32; +export const READ_CONCURRENCY = 32; const ANALYZE_PROGRESS_ACTIVE_ENV = 'GITNEXUS_ANALYZE_PROGRESS_ACTIVE'; const DECLARATION_COMPANION_SUFFIXES = [ diff --git a/gitnexus/src/core/ingestion/language-provider.ts b/gitnexus/src/core/ingestion/language-provider.ts index c8ddd4bd2..0a07520d8 100644 --- a/gitnexus/src/core/ingestion/language-provider.ts +++ b/gitnexus/src/core/ingestion/language-provider.ts @@ -36,7 +36,12 @@ import type { VariableExtractor } from './variable-types.js'; import type { ImportResolverFn } from './import-resolvers/types.js'; import type { SyntaxNode } from './utils/ast-helpers.js'; import type { CfgVisitor } from './cfg/types.js'; -import type { GraphNode, NodeLabel } from 'gitnexus-shared'; +import type { + GraphNode, + NodeLabel, + ParameterTypeClass, + RelationshipType, +} from 'gitnexus-shared'; import type { ExtractedRoute } from './route-extractors/laravel.js'; import type { SharedSpringType } from './route-extractors/spring-shared.js'; import type { @@ -120,6 +125,68 @@ export function mergeCanonicalDefinitionProperties< return { ...providerProperties, ...canonicalProperties } as Record & TCanonical; } +export interface ProviderSemanticNode { + readonly id: string; + readonly label: NodeLabel; + readonly properties: { + readonly name: string; + readonly filePath: string; + readonly startLine: number; + readonly endLine: number; + readonly language: SupportedLanguages; + readonly isExported: boolean; + readonly qualifiedName?: string; + readonly parameterCount?: number; + readonly requiredParameterCount?: number; + readonly parameterTypes?: readonly string[]; + readonly parameterTypeClasses?: readonly ParameterTypeClass[]; + readonly returnType?: string; + readonly declaredType?: string; + readonly visibility?: string; + readonly isStatic?: boolean; + readonly isReadonly?: boolean; + readonly [key: string]: unknown; + }; +} + +export type ProviderSemanticRelationshipType = Extract< + RelationshipType, + 'DECLARES' | 'DEFINES' | 'HAS_METHOD' | 'HAS_PROPERTY' +>; + +export interface ProviderSemanticRelationship { + readonly id: string; + readonly sourceId: string; + readonly targetId: string; + readonly type: ProviderSemanticRelationshipType; + readonly confidence: number; + readonly reason: string; +} + +export interface ProviderSemanticSymbol { + readonly filePath: string; + readonly name: string; + readonly nodeId: string; + readonly type: NodeLabel; + readonly qualifiedName?: string; + readonly parameterCount?: number; + readonly requiredParameterCount?: number; + readonly parameterTypes?: readonly string[]; + readonly parameterTypeClasses?: readonly ParameterTypeClass[]; + readonly returnType?: string; + readonly declaredType?: string; + readonly ownerId?: string; + readonly visibility?: string; + readonly isStatic?: boolean; + readonly isReadonly?: boolean; +} + +export interface ProviderSemanticGraph { + readonly nodes: readonly ProviderSemanticNode[]; + readonly relationships: readonly ProviderSemanticRelationship[]; + readonly symbols: readonly ProviderSemanticSymbol[]; +} + // ── Strategy tag types ───────────────────────────────────────────────────── // NOTE: `MroStrategy` is defined in `gitnexus-shared` and re-exported above // so `core/ingestion/model/resolve.ts` can consume it without importing from @@ -230,6 +297,29 @@ interface LanguageProviderConfig { */ readonly runtimeSymbolStrategy?: RuntimeSymbolStrategy; + /** + * Optional content-based language classifier. The filename detector remains + * the default source of truth; this hook lets a provider claim ambiguous + * files only when the source text carries language-specific evidence. + * + * Used for extensions shared by several languages, where mapping the suffix + * globally would steal files from an existing provider. Implementations must + * be deterministic and conservative: false negatives are acceptable, false + * positives change which parser and resolver consumes the file. + * + * Default: undefined (provider never overrides filename detection). + */ + readonly classifyFileContent?: (filePath: string, sourceText: string) => boolean; + + /** + * Cheap path-only prefilter for `classifyFileContent`. When supplied, callers + * can avoid loading source text for files this provider would never claim. + * + * Default: undefined (only callers that already have content invoke + * `classifyFileContent`). + */ + readonly shouldClassifyFileContent?: (filePath: string) => boolean; + // ── Core (required) ─────────────────────────────────────────────── /** Type extraction: declarations, initializers, for-loop bindings */ readonly typeConfig: LanguageTypeConfig; @@ -643,6 +733,23 @@ interface LanguageProviderConfig { repo: RepoConstants, ) => string | null; + /** + * Optional provider-owned semantic graph extraction for languages whose + * stable symbol identities cannot be represented by the generic query + * pipeline's `(label, filePath, qualifiedName)` rule. + * + * Runs in the parse worker after tree-sitter has parsed the file and after + * `extractParsedFile` has produced the scope-resolution artifact. The hook is + * deterministic and AST-based: it receives the already-parsed tree and must + * return plain graph nodes/relationships/symbol-table rows. Existing + * providers leave it undefined, preserving the generic capture path exactly. + */ + readonly extractSemanticGraph?: ( + tree: Parser.Tree, + filePath: string, + sourceText: string, + ) => ProviderSemanticGraph; + // ── Noise filtering ──────────────────────────────────────────────── /** Built-in/stdlib names that should be filtered from the call graph for this language. * Default: undefined (no language-specific filtering). */ diff --git a/gitnexus/src/core/ingestion/languages/index.ts b/gitnexus/src/core/ingestion/languages/index.ts index d36c70d9f..05f1e33db 100644 --- a/gitnexus/src/core/ingestion/languages/index.ts +++ b/gitnexus/src/core/ingestion/languages/index.ts @@ -19,6 +19,7 @@ import { goProvider } from './go.js'; import { rustProvider } from './rust.js'; import { csharpProvider } from './csharp.js'; import { cProvider, cppProvider } from './c-cpp.js'; +import { objectiveCProvider } from './objective-c.js'; import { phpProvider } from './php.js'; import { rubyProvider } from './ruby.js'; import { swiftProvider } from './swift.js'; @@ -38,6 +39,7 @@ export const providers = { [SupportedLanguages.CSharp]: csharpProvider, [SupportedLanguages.C]: cProvider, [SupportedLanguages.CPlusPlus]: cppProvider, + [SupportedLanguages.ObjectiveC]: objectiveCProvider, [SupportedLanguages.PHP]: phpProvider, [SupportedLanguages.Ruby]: rubyProvider, [SupportedLanguages.Swift]: swiftProvider, @@ -70,3 +72,34 @@ export function getProviderForFile(filePath: string): LanguageProvider | null { const basename = filePath.slice(filePath.lastIndexOf('/') + 1); return extensionMap.get(ext) ?? extensionMap.get(basename) ?? null; } + +/** Return the provider whose content classifier confidently claims this file. */ +export function getProviderForFileContent( + filePath: string, + content: string, +): LanguageProvider | null { + if (isBladeTemplateFilename(filePath)) return null; + + for (const provider of Object.values(providers)) { + if (provider.classifyFileContent?.(filePath, content) === true) return provider; + } + return getProviderForFile(filePath); +} + +/** True when at least one provider wants source text before language bucketing. */ +export function needsContentLanguageClassification(filePath: string): boolean { + if (isBladeTemplateFilename(filePath)) return false; + return Object.values(providers).some( + (provider) => + provider.classifyFileContent !== undefined && + provider.shouldClassifyFileContent?.(filePath) === true, + ); +} + +/** Return the effective language for a file, optionally using source content. */ +export function getLanguageForFileContent( + filePath: string, + content: string, +): SupportedLanguages | null { + return getProviderForFileContent(filePath, content)?.id ?? null; +} diff --git a/gitnexus/src/core/ingestion/languages/objective-c.ts b/gitnexus/src/core/ingestion/languages/objective-c.ts new file mode 100644 index 000000000..60beccf38 --- /dev/null +++ b/gitnexus/src/core/ingestion/languages/objective-c.ts @@ -0,0 +1,169 @@ +import path from 'path'; +import { + SupportedLanguages, + type CaptureMatch, + type ParsedImport, + type ParsedTypeBinding, +} from 'gitnexus-shared'; +import Parser from 'tree-sitter'; +import { defineLanguage } from '../language-provider.js'; +import type { ImportResolverFn } from '../import-resolvers/types.js'; +import { getLanguageGrammar } from '../../tree-sitter/parser-loader.js'; +import { parseSourceSafe } from '../../tree-sitter/safe-parse.js'; +import { assertCloneable } from '../workers/clone-safety.js'; +import { preprocessObjectiveCMacroMarkers } from './objective-c/macro-marker-preprocess.js'; +import { + buildObjectiveCSemanticGraph, + buildObjectiveCScopeCaptures, + collectObjectiveCCaptureSideChannel, + collectObjectiveCFacts, + parseObjCType, + setObjectiveCFileFacts, +} from './objective-c/facts.js'; + +const OBJECTIVE_C_SCOPE_QUERY = `((translation_unit) @objc.root)`; + +const EMPTY_TYPE_CONFIG = { + declarationNodeTypes: new Set(), + extractDeclaration: () => null, + extractParameter: () => null, +}; + +const noImportResolution: ImportResolverFn = () => null; + +function normalizedExt(filePath: string): string { + return path.extname(filePath).toLowerCase(); +} + +function isObjectiveCSourcePath(filePath: string): boolean { + const ext = normalizedExt(filePath); + return ext === '.m' || ext === '.mm'; +} + +function isHeaderPath(filePath: string): boolean { + return normalizedExt(filePath) === '.h'; +} + +const OBJECTIVE_C_HEADER_NODE_TYPES = new Set([ + 'class_declaration', + 'class_interface', + 'class_implementation', + 'compatibility_alias_declaration', + 'module_import', + 'protocol_declaration', +]); + +function hasObjectiveCHeaderSyntax(sourceText: string): boolean { + try { + const tree = parseObjectiveCSource(sourceText); + const stack: Parser.SyntaxNode[] = [tree.rootNode]; + while (stack.length > 0) { + const node = stack.pop(); + if (node === undefined) continue; + if (OBJECTIVE_C_HEADER_NODE_TYPES.has(node.type)) return true; + for (let i = node.namedChildCount - 1; i >= 0; i--) { + const child = node.namedChild(i); + if (child !== null) stack.push(child); + } + } + } catch { + // The regular parser availability path reports the actionable grammar error. + } + return false; +} + +export function classifyObjectiveCFileContent(filePath: string, sourceText: string): boolean { + if (isObjectiveCSourcePath(filePath)) return true; + if (!isHeaderPath(filePath)) return false; + return hasObjectiveCHeaderSyntax(sourceText); +} + +function parseObjectiveCSource(sourceText: string): Parser.Tree { + const parser = new Parser(); + parser.setLanguage(getLanguageGrammar(SupportedLanguages.ObjectiveC)); + return parseSourceSafe( + parser, + preprocessObjectiveCMacroMarkers(sourceText), + undefined, + undefined, + 'Objective-C source', + ); +} + +function treeFromCachedOrSource(cachedTree: unknown, sourceText: string): Parser.Tree { + if (cachedTree !== undefined && looksLikeTree(cachedTree)) return cachedTree; + return parseObjectiveCSource(sourceText); +} + +function looksLikeTree(value: unknown): value is Parser.Tree { + return ( + value !== null && + typeof value === 'object' && + 'rootNode' in value && + (value as { rootNode?: unknown }).rootNode !== undefined + ); +} + +function interpretObjectiveCImport(captures: CaptureMatch): ParsedImport | null { + const source = captures['@import.source']; + if (source === undefined || source.text.trim().length === 0) return null; + const targetRaw = source.text.trim(); + const kind = captures['@import.kind']?.text.trim(); + const isSystemHeader = targetRaw.startsWith('<') && targetRaw.endsWith('>'); + return { + kind: 'side-effect', + // Scope resolution needs to distinguish a quoted header path from a bare + // @import module name and an angle-bracket system header. The latter stays + // wrapped so the Objective-C resolver can fail closed instead of resolving + // a framework header to a same-named local file. + targetRaw: + isSystemHeader || kind === 'module' || targetRaw.startsWith('./') + ? targetRaw + : `./${targetRaw}`, + }; +} + +function interpretObjectiveCTypeBinding(captures: CaptureMatch): ParsedTypeBinding | null { + const name = captures['@type-binding.name']; + const type = captures['@type-binding.type']; + if (name === undefined || type === undefined) return null; + const parsed = parseObjCType(type.text); + return { + boundName: name.text, + rawTypeName: parsed?.name ?? parsed?.raw ?? type.text, + declaredSpelling: type.text, + source: 'annotation', + }; +} + +export const objectiveCProvider = defineLanguage({ + id: SupportedLanguages.ObjectiveC, + extensions: ['.m', '.mm'], + treeSitterQueries: OBJECTIVE_C_SCOPE_QUERY, + typeConfig: EMPTY_TYPE_CONFIG, + exportChecker: () => true, + importResolver: noImportResolution, + classifyFileContent: classifyObjectiveCFileContent, + shouldClassifyFileContent: isHeaderPath, + preprocessSource: preprocessObjectiveCMacroMarkers, + importsExecuteWhereWritten: false, + + emitScopeCaptures: (sourceText, filePath, cachedTree): readonly CaptureMatch[] => { + const tree = treeFromCachedOrSource(cachedTree, sourceText); + const facts = collectObjectiveCFacts(tree, filePath); + setObjectiveCFileFacts(facts); + return buildObjectiveCScopeCaptures(facts, tree.rootNode); + }, + + collectCaptureSideChannel: (filePath) => + assertCloneable(collectObjectiveCCaptureSideChannel(filePath)), + + interpretImport: interpretObjectiveCImport, + interpretTypeBinding: interpretObjectiveCTypeBinding, + + extractSemanticGraph: (tree, filePath) => { + const facts = collectObjectiveCFacts(tree, filePath); + setObjectiveCFileFacts(facts); + return buildObjectiveCSemanticGraph(facts); + }, +}); diff --git a/gitnexus/src/core/ingestion/languages/objective-c/analysis-features.ts b/gitnexus/src/core/ingestion/languages/objective-c/analysis-features.ts new file mode 100644 index 000000000..7f2546162 --- /dev/null +++ b/gitnexus/src/core/ingestion/languages/objective-c/analysis-features.ts @@ -0,0 +1,27 @@ +import type { AnalysisFeatureDescriptor } from '../../../analysis-features.js'; +import { + OBJECTIVE_C_GRAMMAR_PACKAGE, + OBJECTIVE_C_GRAMMAR_VERSION, + OBJECTIVE_C_PROVIDER_VERSION, +} from './facts.js'; + +function isObjectiveCProviderCandidatePath(filePath: string): boolean { + const normalized = filePath.replaceAll('\\', '/').toLowerCase(); + return normalized.endsWith('.m') || normalized.endsWith('.mm') || normalized.endsWith('.h'); +} + +/** + * Durable metadata stamp for Objective-C semantic indexing. The feature id + * carries provider and grammar versions verbatim so a semantic identity/edge + * change records the exact producer in index metadata and forces a full rebuild. + * + * `.h` is included only as a path-level rebuild predicate; content classification + * still decides whether a header is actually parsed as Objective-C. + */ +export const OBJECTIVE_C_PROVIDER_FEATURE: AnalysisFeatureDescriptor = { + id: + `objective-c.provider-${OBJECTIVE_C_PROVIDER_VERSION}.` + + `${OBJECTIVE_C_GRAMMAR_PACKAGE}-${OBJECTIVE_C_GRAMMAR_VERSION}`, + version: 1, + appliesTo: (filePaths) => filePaths.some(isObjectiveCProviderCandidatePath), +}; diff --git a/gitnexus/src/core/ingestion/languages/objective-c/facts.ts b/gitnexus/src/core/ingestion/languages/objective-c/facts.ts new file mode 100644 index 000000000..5b4e182dc --- /dev/null +++ b/gitnexus/src/core/ingestion/languages/objective-c/facts.ts @@ -0,0 +1,1543 @@ +import type { Capture, CaptureMatch, NodeLabel, ParsedFile } from 'gitnexus-shared'; +import { SupportedLanguages } from 'gitnexus-shared'; +import type Parser from 'tree-sitter'; +import { generateId } from '../../../../lib/utils.js'; +import type { + ProviderSemanticGraph, + ProviderSemanticNode, + ProviderSemanticRelationship, + ProviderSemanticSymbol, +} from '../../language-provider.js'; +import { nodeToCapture, walkNamedTree, type SyntaxNode } from '../../utils/ast-helpers.js'; + +export const OBJECTIVE_C_PROVIDER_VERSION = '0.1.4'; +export const OBJECTIVE_C_GRAMMAR_PACKAGE = 'tree-sitter-objc'; +export const OBJECTIVE_C_GRAMMAR_VERSION = '3.0.2'; + +export type ObjCMethodKind = '-' | '+'; +export type ObjCContainerKind = 'class' | 'protocol' | 'category' | 'extension'; + +export interface ObjCTypeInfo { + readonly kind: 'class' | 'protocol' | 'dynamic' | 'class-object' | 'unknown'; + readonly name?: string; + readonly raw: string; +} + +export interface ObjCContainerFact { + readonly kind: ObjCContainerKind; + readonly declarationRole: 'interface' | 'implementation'; + readonly name: string; + readonly qualifiedName: string; + readonly nodeId: string; + readonly label: 'Class' | 'Protocol' | 'Category'; + readonly filePath: string; + readonly startLine: number; + readonly endLine: number; + readonly superclass?: string; + readonly protocols: readonly string[]; + readonly hostClass?: string; + readonly categoryName?: string; +} + +export interface ObjCMethodFact { + readonly name: string; + readonly selector: string; + readonly methodKind: ObjCMethodKind; + readonly ownerQualifiedName: string; + readonly ownerName: string; + readonly ownerKind: ObjCContainerKind; + readonly hostClass?: string; + readonly qualifiedName: string; + readonly nodeId: string; + readonly filePath: string; + readonly startLine: number; + readonly endLine: number; + readonly declarationRole: 'declaration' | 'implementation'; + readonly returnType?: string; + readonly parameterTypes: readonly string[]; + readonly parameterNames: readonly string[]; +} + +export interface ObjCMemberFact { + readonly kind: 'property' | 'ivar'; + readonly name: string; + readonly qualifiedName: string; + readonly nodeId: string; + readonly ownerQualifiedName: string; + readonly ownerName: string; + readonly ownerKind: ObjCContainerKind; + readonly ownerLabel: 'Class' | 'Protocol' | 'Category'; + readonly hostClass?: string; + readonly declaredType?: string; + readonly filePath: string; + readonly startLine: number; + readonly endLine: number; +} + +export interface ObjCFunctionFact { + readonly name: string; + readonly linkage: 'external' | 'internal'; + readonly qualifiedName: string; + readonly nodeId: string; + readonly filePath: string; + readonly startLine: number; + readonly endLine: number; + readonly returnType?: string; + readonly parameterTypes: readonly string[]; +} + +export interface ObjCImportFact { + readonly kind: 'import' | 'include' | 'module'; + readonly raw: string; + readonly targetRaw: string; + readonly filePath: string; + readonly startLine: number; + readonly endLine: number; +} + +export interface ObjCMessageFact { + readonly selector: string; + readonly receiverText: string; + readonly receiverKind: + | 'self' + | 'super' + | 'class' + | 'local' + | 'property' + | 'ivar' + | 'dynamic' + | 'unknown'; + readonly receiverType?: ObjCTypeInfo; + /** Member name retained when its type must be resolved across files. */ + readonly receiverMemberName?: string; + readonly sourceMethodQualifiedName: string; + readonly sourceMethodId: string; + readonly sourceOwnerQualifiedName: string; + readonly sourceOwnerName: string; + readonly sourceMethodKind: ObjCMethodKind; + readonly filePath: string; + readonly startLine: number; + readonly startCol: number; +} + +export interface ObjCUnresolvedMessageFact { + readonly selector: string; + readonly receiverText: string; + readonly reason: string; + readonly sourceMethodQualifiedName: string; + readonly sourceMethodId: string; + readonly filePath: string; + readonly startLine: number; + readonly startCol: number; +} + +export interface ObjCFileFacts { + readonly providerVersion: string; + readonly grammarPackage: string; + readonly grammarVersion: string; + readonly filePath: string; + readonly containers: readonly ObjCContainerFact[]; + readonly methods: readonly ObjCMethodFact[]; + readonly members: readonly ObjCMemberFact[]; + readonly functions: readonly ObjCFunctionFact[]; + readonly imports: readonly ObjCImportFact[]; + readonly messages: readonly ObjCMessageFact[]; + readonly unresolvedMessages: readonly ObjCUnresolvedMessageFact[]; +} + +export interface ObjCCaptureSideChannel { + readonly kind: 'objective-c'; + readonly facts: ObjCFileFacts; +} + +const factsByFile = new Map(); + +export function setObjectiveCFileFacts(facts: ObjCFileFacts): void { + factsByFile.set(facts.filePath, facts); +} + +export function getObjectiveCFileFacts(filePath: string): ObjCFileFacts | undefined { + return factsByFile.get(filePath); +} + +export function collectObjectiveCCaptureSideChannel( + filePath: string, +): ObjCCaptureSideChannel | undefined { + const facts = factsByFile.get(filePath); + return facts === undefined ? undefined : { kind: 'objective-c', facts }; +} + +export function applyObjectiveCCaptureSideChannel(parsed: ParsedFile): void { + const payload = parsed.captureSideChannel; + if (!isObjectiveCSideChannel(payload)) return; + factsByFile.set(payload.facts.filePath, payload.facts); +} + +export function objectiveCFactsFromParsedFiles( + parsedFiles: readonly ParsedFile[], +): ObjCFileFacts[] { + const facts: ObjCFileFacts[] = []; + const seen = new Set(); + for (const parsed of parsedFiles) { + const payload = parsed.captureSideChannel; + const fromPayload = isObjectiveCSideChannel(payload) ? payload.facts : undefined; + const fact = fromPayload ?? factsByFile.get(parsed.filePath); + if (fact === undefined || seen.has(fact.filePath)) continue; + seen.add(fact.filePath); + facts.push(fact); + } + return facts; +} + +function isObjectiveCSideChannel(value: unknown): value is ObjCCaptureSideChannel { + if (value === null || typeof value !== 'object') return false; + const record = value as Record; + return record.kind === 'objective-c' && record.facts !== null && typeof record.facts === 'object'; +} + +export const objcClassQualifiedName = (name: string): string => `objc:class:${name}`; +export const objcProtocolQualifiedName = (name: string): string => `objc:protocol:${name}`; +export const objcCategoryQualifiedName = (hostClass: string, categoryName: string): string => + `objc:category:${hostClass}:${categoryName}`; +export const objcMethodQualifiedName = ( + ownerQualifiedName: string, + methodKind: ObjCMethodKind, + selector: string, +): string => `objc:method:${ownerQualifiedName}:${methodKind}:${selector}`; +export const objcPropertyQualifiedName = (ownerQualifiedName: string, name: string): string => + `objc:property:${ownerQualifiedName}:${name}`; +export const objcIvarQualifiedName = (ownerQualifiedName: string, name: string): string => + `objc:ivar:${ownerQualifiedName}:${name}`; +export const objcFunctionQualifiedName = ( + name: string, + linkage: 'external' | 'internal' = 'external', + filePath?: string, +): string => + linkage === 'internal' && filePath !== undefined + ? `objc:function:static:${filePath}:${name}` + : `objc:function:${name}`; +export const objcUnresolvedMessageQualifiedName = ( + filePath: string, + startLine: number, + startCol: number, + selector: string, +): string => `objc:unresolved:${filePath}:${startLine}:${startCol}:${selector}`; + +const graphNodeId = (label: NodeLabel, qualifiedName: string): string => + generateId(label, qualifiedName); + +function ownerLabel(kind: ObjCContainerKind): 'Class' | 'Protocol' | 'Category' { + return kind === 'class' ? 'Class' : kind === 'protocol' ? 'Protocol' : 'Category'; +} + +const range = (node: SyntaxNode) => ({ + startLine: node.startPosition.row, + endLine: node.endPosition.row, +}); + +function directNamedChildren(node: SyntaxNode): SyntaxNode[] { + const out: SyntaxNode[] = []; + for (let i = 0; i < node.namedChildCount; i++) { + const child = node.namedChild(i); + if (child !== null) out.push(child); + } + return out; +} + +function directChildren(node: SyntaxNode): SyntaxNode[] { + const out: SyntaxNode[] = []; + for (let i = 0; i < node.childCount; i++) { + const child = node.child(i); + if (child !== null) out.push(child); + } + return out; +} + +function directIdentifiers(node: SyntaxNode): SyntaxNode[] { + return directNamedChildren(node).filter((child) => child.type === 'identifier'); +} + +function logicalTopLevelNodes(root: SyntaxNode): SyntaxNode[] { + const nodes: SyntaxNode[] = []; + const visit = (node: SyntaxNode): void => { + for (const child of directNamedChildren(node)) { + if ( + child.type === 'preproc_if' || + child.type === 'preproc_ifdef' || + child.type === 'preproc_else' || + child.type === 'preproc_elif' + ) { + visit(child); + } else { + nodes.push(child); + } + } + }; + visit(root); + return nodes; +} + +function containerMemberNodes(containerNode: SyntaxNode): SyntaxNode[] { + const members: SyntaxNode[] = []; + const visit = (node: SyntaxNode): void => { + for (const child of directNamedChildren(node)) { + if (child.type === 'qualified_protocol_interface_declaration') { + visit(child); + } else { + members.push(child); + } + } + }; + visit(containerNode); + return members; +} + +function stripQuotes(raw: string): string { + const trimmed = raw.trim(); + if ( + (trimmed.startsWith('"') && trimmed.endsWith('"')) || + (trimmed.startsWith('<') && trimmed.endsWith('>')) + ) { + return trimmed.slice(1, -1); + } + return trimmed; +} + +function isSystemHeaderSpelling(raw: string): boolean { + const trimmed = raw.trim(); + return trimmed.startsWith('<') && trimmed.endsWith('>'); +} + +function cleanType(raw: string | undefined): string | undefined { + if (raw === undefined) return undefined; + const text = raw + .replace(/^\(/, '') + .replace(/\)$/, '') + .replace(/\b(?:nullable|nonnull|__nullable|__nonnull|_Nullable|_Nonnull|const)\b/g, ' ') + .replace(/\s+/g, ' ') + .trim(); + if (text.length === 0) return undefined; + return text; +} + +export function parseObjCType(raw: string | undefined): ObjCTypeInfo | undefined { + const text = cleanType(raw); + if (text === undefined) return undefined; + if (text === 'id' || text === 'instancetype') return { kind: 'dynamic', raw: text }; + if (text === 'Class') return { kind: 'class-object', raw: text }; + + const protocolMatch = text.match(/^id\s*<\s*([A-Za-z_][A-Za-z0-9_]*)\s*>/); + if (protocolMatch !== null) { + return { kind: 'protocol', name: protocolMatch[1], raw: text }; + } + + const classMatch = text.match(/([A-Za-z_][A-Za-z0-9_]*)\s*(?:<[^>]+>)?\s*\*?$/); + if (classMatch !== null) { + return { kind: 'class', name: classMatch[1], raw: text }; + } + return { kind: 'unknown', raw: text }; +} + +function methodKind(node: SyntaxNode): ObjCMethodKind { + const first = node.child(0)?.text; + return first === '+' ? '+' : '-'; +} + +function methodTypeText(node: SyntaxNode): string | undefined { + const typeNode = directNamedChildren(node).find((child) => child.type === 'method_type'); + return cleanType(typeNode?.text); +} + +function methodSelector(node: SyntaxNode): string { + const children = directChildren(node); + const keywordDeclarators = children.filter((child) => child.type === 'keyword_declarator'); + if (keywordDeclarators.length > 0) { + return keywordDeclarators + .map((declarator) => directIdentifiers(declarator)[0]?.text) + .filter((name): name is string => name !== undefined) + .map((name) => `${name}:`) + .join(''); + } + + const pieces: string[] = []; + for (let i = 0; i < children.length; i++) { + const child = children[i]; + if (child.type !== 'identifier') continue; + const next = children[i + 1]; + if (next?.type === 'method_parameter') { + pieces.push(`${child.text}:`); + continue; + } + if (pieces.length === 0) pieces.push(child.text); + } + return pieces.join(''); +} + +function messageSelector(node: SyntaxNode): string { + const children = directChildren(node); + const pieces: string[] = []; + for (let i = 2; i < children.length; i++) { + const child = children[i]; + if (child.type !== 'identifier' && child.type !== 'field_identifier') continue; + const next = children[i + 1]; + if (next?.text === ':') pieces.push(`${child.text}:`); + else if (pieces.length === 0 && next?.text === ']') pieces.push(child.text); + } + return pieces.join(''); +} + +function methodParameterInfo(node: SyntaxNode): { + parameterTypes: string[]; + parameterNames: string[]; + typeBindings: Map; +} { + const parameterTypes: string[] = []; + const parameterNames: string[] = []; + const typeBindings = new Map(); + for (const child of directNamedChildren(node)) { + if (child.type !== 'method_parameter' && child.type !== 'keyword_declarator') continue; + const named = directNamedChildren(child); + const typeNode = named.find((n) => n.type === 'method_type'); + const nameNode = [...named].reverse().find((n) => n.type === 'identifier'); + const typeText = cleanType(typeNode?.text); + if (typeText !== undefined) parameterTypes.push(typeText); + if (nameNode !== undefined) { + parameterNames.push(nameNode.text); + const parsed = parseObjCType(typeText); + if (parsed !== undefined) typeBindings.set(nameNode.text, parsed); + } + } + return { parameterTypes, parameterNames, typeBindings }; +} + +function propertyInfo(node: SyntaxNode): { name: string; type?: string } | null { + const structDecl = directNamedChildren(node).find((child) => child.type === 'struct_declaration'); + if (structDecl === undefined) return null; + return declarationNameAndType(structDecl); +} + +function declarationNameAndType(node: SyntaxNode): { name: string; type?: string } | null { + const name = declaratorName(node); + if (name === undefined) return null; + return { name, type: cleanType(firstTypeNode(node)?.text) }; +} + +function declaratorName(node: SyntaxNode): string | undefined { + if (node.type === 'identifier') return node.text; + if (node.type === 'init_declarator') { + for (const child of directNamedChildren(node)) { + const name = declaratorName(child); + if (name !== undefined) return name; + } + return undefined; + } + if ( + node.type === 'pointer_declarator' || + node.type === 'array_declarator' || + node.type === 'function_declarator' || + node.type === 'parenthesized_declarator' || + node.type === 'struct_declarator' + ) { + for (const child of directNamedChildren(node)) { + const name = declaratorName(child); + if (name !== undefined) return name; + } + return undefined; + } + + for (const child of directNamedChildren(node)) { + if ( + child.type === 'identifier' || + child.type === 'init_declarator' || + child.type === 'pointer_declarator' || + child.type === 'array_declarator' || + child.type === 'function_declarator' || + child.type === 'parenthesized_declarator' || + child.type === 'struct_declarator' || + child.type === 'struct_declaration' + ) { + const name = declaratorName(child); + if (name !== undefined) return name; + } + } + return undefined; +} + +function firstTypeNode(node: SyntaxNode): SyntaxNode | undefined { + if ( + node.type === 'type_identifier' || + node.type === 'primitive_type' || + node.type === 'typedefed_specifier' + ) { + return node; + } + for (const child of directNamedChildren(node)) { + const found = firstTypeNode(child); + if (found !== undefined) return found; + } + return undefined; +} + +function functionInfos(node: SyntaxNode): Array<{ + name: string; + linkage: 'external' | 'internal'; + returnType?: string; + parameterTypes: string[]; +}> { + const declarators: SyntaxNode[] = []; + const collect = (current: SyntaxNode): void => { + for (const child of directNamedChildren(current)) { + if (child.type === 'function_declarator') { + declarators.push(child); + continue; + } + collect(child); + } + }; + collect(node); + + const returnType = cleanType( + directNamedChildren(node).find( + (child) => + child.type === 'type_identifier' || + child.type === 'primitive_type' || + child.type === 'typedefed_specifier', + )?.text, + ); + const linkage = directNamedChildren(node).some( + (child) => child.type === 'storage_class_specifier' && child.text === 'static', + ) + ? 'internal' + : 'external'; + + return declarators.flatMap((declarator) => { + // `int (*callback)(int)` is a function pointer declaration, not a callable + // definition. A pointer return (`int *func(void)`) remains a C function. + if (declarator.childForFieldName('declarator')?.type === 'parenthesized_declarator') { + return []; + } + const name = declaratorName(declarator); + if (name === undefined) return []; + const parameterTypes: string[] = []; + walkNamedTree(declarator, (child) => { + if (child.type !== 'parameter_declaration') return; + const typeNode = directNamedChildren(child).find( + (n) => + n.type === 'type_identifier' || + n.type === 'primitive_type' || + n.type === 'typedefed_specifier', + ); + const typeText = cleanType(typeNode?.text); + if (typeText !== undefined) parameterTypes.push(typeText); + }); + return [{ name, linkage, returnType, parameterTypes }]; + }); +} + +function directProtocolNames(node: SyntaxNode): string[] { + const out: string[] = []; + for (const child of directNamedChildren(node)) { + if (child.type === 'protocol_reference_list') { + out.push(...directIdentifiers(child).map((id) => id.text)); + } else if (child.type === 'parameterized_arguments') { + for (const named of directNamedChildren(child)) { + if (named.type !== 'type_name') continue; + const id = directNamedChildren(named).find((n) => n.type === 'type_identifier'); + if (id !== undefined) out.push(id.text); + } + } + } + return Array.from(new Set(out)); +} + +function parseContainer(node: SyntaxNode, filePath: string): ObjCContainerFact | null { + if ( + node.type !== 'class_interface' && + node.type !== 'class_implementation' && + node.type !== 'protocol_declaration' + ) { + return null; + } + const ids = directIdentifiers(node); + const first = ids[0]; + if (first === undefined) return null; + const { startLine, endLine } = range(node); + if (node.type === 'protocol_declaration') { + const qualifiedName = objcProtocolQualifiedName(first.text); + return { + kind: 'protocol', + declarationRole: 'interface', + name: first.text, + qualifiedName, + nodeId: graphNodeId('Protocol', qualifiedName), + label: 'Protocol', + filePath, + startLine, + endLine, + protocols: directProtocolNames(node).filter((name) => name !== first.text), + }; + } + + const children = directChildren(node); + const openParenIndex = children.findIndex((child) => child.text === '('); + if (openParenIndex !== -1) { + const categoryIdentifier = children + .slice(openParenIndex + 1) + .find((child) => child.type === 'identifier'); + const categoryName = categoryIdentifier?.text ?? '__extension__'; + const kind: ObjCContainerKind = categoryIdentifier === undefined ? 'extension' : 'category'; + const qualifiedName = objcCategoryQualifiedName(first.text, categoryName); + return { + kind, + declarationRole: node.type === 'class_interface' ? 'interface' : 'implementation', + name: `${first.text} (${categoryIdentifier?.text ?? ''})`, + qualifiedName, + nodeId: graphNodeId('Category', qualifiedName), + label: 'Category', + filePath, + startLine, + endLine, + protocols: directProtocolNames(node), + hostClass: first.text, + categoryName, + }; + } + + const colonIndex = children.findIndex((child) => child.text === ':'); + const superclass = + colonIndex !== -1 + ? children.slice(colonIndex + 1).find((child) => child.type === 'identifier')?.text + : undefined; + const qualifiedName = objcClassQualifiedName(first.text); + return { + kind: 'class', + declarationRole: node.type === 'class_interface' ? 'interface' : 'implementation', + name: first.text, + qualifiedName, + nodeId: graphNodeId('Class', qualifiedName), + label: 'Class', + filePath, + startLine, + endLine, + ...(superclass !== undefined ? { superclass } : {}), + protocols: directProtocolNames(node), + }; +} + +interface ObjCBinding { + readonly name: string; + readonly type: ObjCTypeInfo; + readonly declarationIndex: number; + readonly scopeStartIndex: number; + readonly scopeEndIndex: number; +} + +function enclosingCompoundScope(node: SyntaxNode, methodBody: SyntaxNode): SyntaxNode { + let current = node.parent; + while (current !== null && current !== methodBody) { + if (current.type === 'compound_statement') return current; + current = current.parent; + } + return methodBody; +} + +function collectMethodBindings( + methodNode: SyntaxNode, + parameterTypes: ReadonlyMap, +): ObjCBinding[] { + const methodBody = directNamedChildren(methodNode).find( + (child) => child.type === 'compound_statement', + ); + if (methodBody === undefined) return []; + + const bindings: ObjCBinding[] = [...parameterTypes].map(([name, type]) => ({ + name, + type, + declarationIndex: methodBody.startIndex, + scopeStartIndex: methodBody.startIndex, + scopeEndIndex: methodBody.endIndex, + })); + walkNamedTree(methodBody, (node) => { + if (node.type !== 'declaration') return; + const info = declarationNameAndType(node); + if (info === null) return; + const type = parseObjCType(info.type); + if (type === undefined) return; + const scope = enclosingCompoundScope(node, methodBody); + bindings.push({ + name: info.name, + type, + declarationIndex: node.endIndex, + scopeStartIndex: scope.startIndex, + scopeEndIndex: scope.endIndex, + }); + }); + return bindings; +} + +function bindingAt( + bindings: readonly ObjCBinding[], + name: string, + sourceIndex: number, +): ObjCTypeInfo | undefined { + const matches = bindings.filter( + (binding) => + binding.name === name && + binding.declarationIndex <= sourceIndex && + binding.scopeStartIndex <= sourceIndex && + sourceIndex <= binding.scopeEndIndex, + ); + matches.sort((left, right) => { + const leftScope = left.scopeEndIndex - left.scopeStartIndex; + const rightScope = right.scopeEndIndex - right.scopeStartIndex; + return leftScope - rightScope || right.declarationIndex - left.declarationIndex; + }); + return matches[0]?.type; +} + +function isReflectionSelector(selector: string, receiverText: string): boolean { + return ( + selector.startsWith('performSelector:') || + selector === 'methodForSelector:' || + selector === 'forwardInvocation:' || + receiverText === 'NSInvocation' + ); +} + +function isPascalCaseLike(text: string): boolean { + if (!/^[A-Z][A-Za-z0-9]*$/.test(text)) return false; + return text.length === 1 || /[a-z0-9]/.test(text.slice(1)); +} + +function messageReceiver(node: SyntaxNode): SyntaxNode | null { + return directNamedChildren(node)[0] ?? null; +} + +function macroName(node: SyntaxNode): string | undefined { + return node.childForFieldName('name')?.text ?? directIdentifiers(node)[0]?.text; +} + +function classifyReceiver( + receiver: SyntaxNode, + selector: string, + method: ObjCMethodFact, + methodBindings: readonly ObjCBinding[], + membersByOwner: ReadonlyMap>, + macroNames: ReadonlySet, + classNames: ReadonlySet, +): { + kind: ObjCMessageFact['receiverKind']; + type?: ObjCTypeInfo; + memberName?: string; + unresolvedReason?: string; +} { + const text = receiver.text; + if (isReflectionSelector(selector, text)) { + return { + kind: 'dynamic', + unresolvedReason: 'reflection selector dispatch is dynamic', + }; + } + const receiverMacroName = + receiver.type === 'call_expression' + ? receiver.childForFieldName('function')?.text + : receiver.type === 'identifier' + ? text + : undefined; + if (receiverMacroName !== undefined && macroNames.has(receiverMacroName)) { + return { + kind: 'dynamic', + type: { kind: 'dynamic', raw: text }, + unresolvedReason: `macro receiver ${receiverMacroName} is dynamic`, + }; + } + if (receiver.type === 'identifier') { + if (text === 'self') return { kind: 'self' }; + if (text === 'super') return { kind: 'super' }; + const bound = bindingAt(methodBindings, text, receiver.startIndex); + if (bound !== undefined) { + if (bound.kind === 'dynamic' || bound.kind === 'class-object') { + return { + kind: 'dynamic', + type: bound, + unresolvedReason: `${bound.raw} receiver is dynamic`, + }; + } + return { kind: 'local', type: bound }; + } + const hostOwner = + method.hostClass !== undefined + ? objcClassQualifiedName(method.hostClass) + : method.ownerQualifiedName; + const memberType = membersByOwner.get(hostOwner)?.get(text); + if (memberType !== undefined) return { kind: 'ivar', type: memberType }; + if (classNames.has(text) || isPascalCaseLike(text)) { + return { kind: 'class', type: { kind: 'class', name: text, raw: text } }; + } + return { kind: 'unknown', memberName: text }; + } + + if (receiver.type === 'field_expression') { + const parts = directNamedChildren(receiver); + const base = parts[0]; + const field = parts[1]; + if (base?.text === 'self' && field !== undefined) { + const hostOwner = + method.hostClass !== undefined + ? objcClassQualifiedName(method.hostClass) + : method.ownerQualifiedName; + const memberType = membersByOwner.get(hostOwner)?.get(field.text); + if (memberType !== undefined) return { kind: 'property', type: memberType }; + return { kind: 'property', memberName: field.text }; + } + } + return { + kind: 'unknown', + unresolvedReason: 'receiver expression is not statically typed', + }; +} + +function collectMethodMessages( + methodNode: SyntaxNode, + method: ObjCMethodFact, + parameterTypes: ReadonlyMap, + membersByOwner: ReadonlyMap>, + macroNames: ReadonlySet, + classNames: ReadonlySet, + messages: ObjCMessageFact[], + unresolvedMessages: ObjCUnresolvedMessageFact[], +): void { + const methodBindings = collectMethodBindings(methodNode, parameterTypes); + walkNamedTree(methodNode, (messageNode) => { + if (messageNode.type !== 'message_expression') return; + const receiver = messageReceiver(messageNode); + if (receiver === null) return; + const selector = messageSelector(messageNode); + if (selector.length === 0) return; + const classified = classifyReceiver( + receiver, + selector, + method, + methodBindings, + membersByOwner, + macroNames, + classNames, + ); + const fact: ObjCMessageFact = { + selector, + receiverText: receiver.text, + receiverKind: classified.kind, + ...(classified.type !== undefined ? { receiverType: classified.type } : {}), + ...(classified.memberName !== undefined ? { receiverMemberName: classified.memberName } : {}), + sourceMethodQualifiedName: method.qualifiedName, + sourceMethodId: method.nodeId, + sourceOwnerQualifiedName: method.ownerQualifiedName, + sourceOwnerName: method.ownerName, + sourceMethodKind: method.methodKind, + filePath: method.filePath, + startLine: messageNode.startPosition.row, + startCol: messageNode.startPosition.column, + }; + if (classified.unresolvedReason !== undefined) { + unresolvedMessages.push({ + selector, + receiverText: receiver.text, + reason: classified.unresolvedReason, + sourceMethodQualifiedName: method.qualifiedName, + sourceMethodId: method.nodeId, + filePath: method.filePath, + startLine: messageNode.startPosition.row, + startCol: messageNode.startPosition.column, + }); + } + messages.push(fact); + }); +} + +export function collectObjectiveCFacts(tree: Parser.Tree, filePath: string): ObjCFileFacts { + const containers: ObjCContainerFact[] = []; + const methods: ObjCMethodFact[] = []; + const members: ObjCMemberFact[] = []; + const functions: ObjCFunctionFact[] = []; + const imports: ObjCImportFact[] = []; + const messages: ObjCMessageFact[] = []; + const unresolvedMessages: ObjCUnresolvedMessageFact[] = []; + const membersByOwner = new Map>(); + const macroNames = new Set(); + const classNames = new Set(); + + const addFunctionFact = (node: SyntaxNode): void => { + for (const info of functionInfos(node)) { + const qualifiedName = objcFunctionQualifiedName(info.name, info.linkage, filePath); + const { startLine, endLine } = range(node); + functions.push({ + name: info.name, + linkage: info.linkage, + qualifiedName, + nodeId: graphNodeId('Function', qualifiedName), + filePath, + startLine, + endLine, + ...(info.returnType !== undefined ? { returnType: info.returnType } : {}), + parameterTypes: info.parameterTypes, + }); + } + }; + + walkNamedTree(tree.rootNode, (node) => { + if (node.type !== 'preproc_def' && node.type !== 'preproc_function_def') return; + const name = macroName(node); + if (name !== undefined) macroNames.add(name); + }); + + walkNamedTree(tree.rootNode, (node) => { + const container = parseContainer(node, filePath); + if (container?.kind === 'class') classNames.add(container.name); + }); + + const addMemberType = ( + ownerQualifiedName: string, + name: string, + typeText: string | undefined, + ) => { + const typeInfo = parseObjCType(typeText); + if (typeInfo === undefined) return; + let byName = membersByOwner.get(ownerQualifiedName); + if (byName === undefined) { + byName = new Map(); + membersByOwner.set(ownerQualifiedName, byName); + } + byName.set(name, typeInfo); + }; + + const collectContainerMemberTypes = ( + containerNode: Parser.SyntaxNode, + container: ObjCContainerFact, + ): void => { + for (const inner of containerMemberNodes(containerNode)) { + if (inner.type === 'property_declaration') { + const prop = propertyInfo(inner); + if (prop === null) continue; + addMemberType(container.qualifiedName, prop.name, prop.type); + if (container.hostClass !== undefined) { + addMemberType(objcClassQualifiedName(container.hostClass), prop.name, prop.type); + } + } else if (inner.type === 'instance_variables') { + walkNamedTree(inner, (ivarNode) => { + if (ivarNode.type !== 'instance_variable') return; + const ivar = declarationNameAndType(ivarNode); + if (ivar === null) return; + addMemberType(container.qualifiedName, ivar.name, ivar.type); + if (container.hostClass !== undefined) { + addMemberType(objcClassQualifiedName(container.hostClass), ivar.name, ivar.type); + } + }); + } + } + }; + + const topLevelNodes = logicalTopLevelNodes(tree.rootNode); + for (const child of topLevelNodes) { + const container = parseContainer(child, filePath); + if (container !== null) collectContainerMemberTypes(child, container); + } + + for (const child of topLevelNodes) { + if (child.type === 'preproc_include') { + const rawNode = directNamedChildren(child).find( + (n) => n.type === 'string_literal' || n.type === 'system_lib_string', + ); + if (rawNode !== undefined) { + const raw = rawNode.text; + const directive = child.text.trimStart().startsWith('#include') ? 'include' : 'import'; + const { startLine, endLine } = range(child); + imports.push({ + kind: directive, + raw, + targetRaw: stripQuotes(raw), + filePath, + startLine, + endLine, + }); + } + continue; + } + if (child.type === 'module_import') { + const moduleName = directIdentifiers(child) + .map((n) => n.text) + .join('.'); + const { startLine, endLine } = range(child); + imports.push({ + kind: 'module', + raw: moduleName, + targetRaw: moduleName, + filePath, + startLine, + endLine, + }); + continue; + } + + const container = parseContainer(child, filePath); + if (container !== null) { + containers.push(container); + for (const inner of containerMemberNodes(child)) { + if (inner.type === 'method_declaration' || inner.type === 'method_definition') { + const selector = methodSelector(inner); + const { parameterTypes, parameterNames, typeBindings } = methodParameterInfo(inner); + const kind = methodKind(inner); + const qualifiedName = objcMethodQualifiedName(container.qualifiedName, kind, selector); + const { startLine, endLine } = range(inner); + const method: ObjCMethodFact = { + name: selector, + selector, + methodKind: kind, + ownerQualifiedName: container.qualifiedName, + ownerName: container.name, + ownerKind: container.kind, + ...(container.hostClass !== undefined ? { hostClass: container.hostClass } : {}), + qualifiedName, + nodeId: graphNodeId('Method', qualifiedName), + filePath, + startLine, + endLine, + declarationRole: inner.type === 'method_definition' ? 'implementation' : 'declaration', + ...(methodTypeText(inner) !== undefined ? { returnType: methodTypeText(inner) } : {}), + parameterTypes, + parameterNames, + }; + methods.push(method); + + collectMethodMessages( + inner, + method, + typeBindings, + membersByOwner, + macroNames, + classNames, + messages, + unresolvedMessages, + ); + } else if (inner.type === 'property_declaration') { + const prop = propertyInfo(inner); + if (prop === null) continue; + const qualifiedName = objcPropertyQualifiedName(container.qualifiedName, prop.name); + const { startLine, endLine } = range(inner); + members.push({ + kind: 'property', + name: prop.name, + qualifiedName, + nodeId: graphNodeId('Property', qualifiedName), + ownerQualifiedName: container.qualifiedName, + ownerName: container.name, + ownerKind: container.kind, + ownerLabel: ownerLabel(container.kind), + ...(container.hostClass !== undefined ? { hostClass: container.hostClass } : {}), + ...(prop.type !== undefined ? { declaredType: prop.type } : {}), + filePath, + startLine, + endLine, + }); + } else if (inner.type === 'instance_variables') { + walkNamedTree(inner, (ivarNode) => { + if (ivarNode.type !== 'instance_variable') return; + const ivar = declarationNameAndType(ivarNode); + if (ivar === null) return; + const qualifiedName = objcIvarQualifiedName(container.qualifiedName, ivar.name); + const { startLine, endLine } = range(ivarNode); + members.push({ + kind: 'ivar', + name: ivar.name, + qualifiedName, + nodeId: graphNodeId('Variable', qualifiedName), + ownerQualifiedName: container.qualifiedName, + ownerName: container.name, + ownerKind: container.kind, + ownerLabel: ownerLabel(container.kind), + ...(container.hostClass !== undefined ? { hostClass: container.hostClass } : {}), + ...(ivar.type !== undefined ? { declaredType: ivar.type } : {}), + filePath, + startLine, + endLine, + }); + }); + } else if (inner.type === 'implementation_definition') { + const functionNode = directNamedChildren(inner).find( + (node) => node.type === 'function_definition', + ); + if (functionNode !== undefined) { + addFunctionFact(functionNode); + continue; + } + const methodNode = directNamedChildren(inner).find((n) => n.type === 'method_definition'); + if (methodNode !== undefined) { + const selector = methodSelector(methodNode); + const { parameterTypes, parameterNames, typeBindings } = + methodParameterInfo(methodNode); + const kind = methodKind(methodNode); + const qualifiedName = objcMethodQualifiedName(container.qualifiedName, kind, selector); + const { startLine, endLine } = range(methodNode); + const method: ObjCMethodFact = { + name: selector, + selector, + methodKind: kind, + ownerQualifiedName: container.qualifiedName, + ownerName: container.name, + ownerKind: container.kind, + ...(container.hostClass !== undefined ? { hostClass: container.hostClass } : {}), + qualifiedName, + nodeId: graphNodeId('Method', qualifiedName), + filePath, + startLine, + endLine, + declarationRole: 'implementation', + ...(methodTypeText(methodNode) !== undefined + ? { returnType: methodTypeText(methodNode) } + : {}), + parameterTypes, + parameterNames, + }; + methods.push(method); + collectMethodMessages( + methodNode, + method, + typeBindings, + membersByOwner, + macroNames, + classNames, + messages, + unresolvedMessages, + ); + } + } + } + continue; + } + + if (child.type === 'function_definition' || child.type === 'declaration') { + addFunctionFact(child); + } + } + + return { + providerVersion: OBJECTIVE_C_PROVIDER_VERSION, + grammarPackage: OBJECTIVE_C_GRAMMAR_PACKAGE, + grammarVersion: OBJECTIVE_C_GRAMMAR_VERSION, + filePath, + containers, + methods, + members, + functions, + imports, + messages, + unresolvedMessages, + }; +} + +function semanticNode( + label: NodeLabel, + id: string, + name: string, + qualifiedName: string, + filePath: string, + startLine: number, + endLine: number, + extras: Record = {}, +): ProviderSemanticNode { + return { + id, + label, + properties: { + name, + filePath, + startLine, + endLine, + language: SupportedLanguages.ObjectiveC, + isExported: true, + qualifiedName, + objectiveCProviderVersion: OBJECTIVE_C_PROVIDER_VERSION, + objectiveCGrammar: `${OBJECTIVE_C_GRAMMAR_PACKAGE}@${OBJECTIVE_C_GRAMMAR_VERSION}`, + ...extras, + }, + }; +} + +function relationship( + type: 'DEFINES' | 'DECLARES' | 'HAS_METHOD' | 'HAS_PROPERTY', + sourceId: string, + targetId: string, + reason: string, +): ProviderSemanticRelationship { + return { + id: generateId(type, `${sourceId}->${targetId}:${reason}`), + sourceId, + targetId, + type, + confidence: 1, + reason, + }; +} + +function implementationEvidenceNode( + qualifiedName: string, + name: string, + filePath: string, + startLine: number, + endLine: number, + extras: Record, +): ProviderSemanticNode { + return semanticNode( + 'CodeElement', + graphNodeId('CodeElement', qualifiedName), + name, + qualifiedName, + filePath, + startLine, + endLine, + { + objectiveCKind: 'implementation-evidence', + ...extras, + }, + ); +} + +export function buildObjectiveCSemanticGraph(facts: ObjCFileFacts): ProviderSemanticGraph { + const nodes: ProviderSemanticNode[] = []; + const relationships: ProviderSemanticRelationship[] = []; + const symbols: ProviderSemanticSymbol[] = []; + const fileId = generateId('File', facts.filePath); + + for (const container of facts.containers) { + nodes.push( + semanticNode( + container.label, + container.nodeId, + container.name, + container.qualifiedName, + facts.filePath, + container.startLine, + container.endLine, + { + objectiveCKind: container.kind, + declarationRole: container.declarationRole, + ...(container.superclass !== undefined ? { superclass: container.superclass } : {}), + ...(container.protocols.length > 0 ? { protocols: [...container.protocols] } : {}), + ...(container.hostClass !== undefined ? { hostClass: container.hostClass } : {}), + ...(container.categoryName !== undefined ? { categoryName: container.categoryName } : {}), + }, + ), + ); + relationships.push(relationship('DEFINES', fileId, container.nodeId, 'objc-definition')); + if (container.declarationRole === 'implementation') { + const qualifiedName = `objc:implementation:${container.qualifiedName}:${facts.filePath}:${container.startLine}`; + const evidenceId = graphNodeId('CodeElement', qualifiedName); + nodes.push( + implementationEvidenceNode( + qualifiedName, + `@implementation ${container.name}`, + facts.filePath, + container.startLine, + container.endLine, + { + implementationKind: container.kind, + targetQualifiedName: container.qualifiedName, + }, + ), + ); + relationships.push( + relationship('DEFINES', fileId, evidenceId, 'objc: implementation evidence'), + ); + relationships.push( + relationship( + 'DECLARES', + evidenceId, + container.nodeId, + 'objc: implementation of merged symbol', + ), + ); + } + symbols.push({ + filePath: facts.filePath, + name: container.name, + nodeId: container.nodeId, + type: container.label, + qualifiedName: container.qualifiedName, + }); + } + + for (const method of facts.methods) { + nodes.push( + semanticNode( + 'Method', + method.nodeId, + method.selector, + method.qualifiedName, + facts.filePath, + method.startLine, + method.endLine, + { + selector: method.selector, + methodKind: method.methodKind, + objectiveCOwner: method.ownerQualifiedName, + objectiveCOwnerName: method.ownerName, + description: `${method.ownerName} ${method.methodKind}${method.selector}`, + declarationRole: method.declarationRole, + parameterCount: method.parameterTypes.length, + parameterTypes: [...method.parameterTypes], + ...(method.returnType !== undefined ? { returnType: method.returnType } : {}), + ...(method.hostClass !== undefined ? { hostClass: method.hostClass } : {}), + }, + ), + ); + const ownerId = graphNodeId( + method.ownerKind === 'class' + ? 'Class' + : method.ownerKind === 'protocol' + ? 'Protocol' + : 'Category', + method.ownerQualifiedName, + ); + relationships.push(relationship('HAS_METHOD', ownerId, method.nodeId, 'objc-owner-method')); + if (method.declarationRole === 'implementation') { + const qualifiedName = `objc:method-implementation:${method.qualifiedName}:${facts.filePath}:${method.startLine}`; + const evidenceId = graphNodeId('CodeElement', qualifiedName); + nodes.push( + implementationEvidenceNode( + qualifiedName, + `${method.methodKind}[${method.ownerName} ${method.selector}] implementation`, + facts.filePath, + method.startLine, + method.endLine, + { + implementationKind: 'method', + targetQualifiedName: method.qualifiedName, + selector: method.selector, + methodKind: method.methodKind, + objectiveCOwner: method.ownerQualifiedName, + }, + ), + ); + relationships.push( + relationship('DEFINES', fileId, evidenceId, 'objc: implementation evidence'), + ); + relationships.push( + relationship( + 'DECLARES', + evidenceId, + method.nodeId, + 'objc: implementation of merged symbol', + ), + ); + } + if (method.hostClass !== undefined) { + relationships.push( + relationship( + 'HAS_METHOD', + graphNodeId('Class', objcClassQualifiedName(method.hostClass)), + method.nodeId, + 'objc-category-host-method', + ), + ); + } + symbols.push({ + filePath: facts.filePath, + name: method.selector, + nodeId: method.nodeId, + type: 'Method', + qualifiedName: method.qualifiedName, + parameterCount: method.parameterTypes.length, + requiredParameterCount: method.parameterTypes.length, + parameterTypes: [...method.parameterTypes], + ...(method.returnType !== undefined ? { returnType: method.returnType } : {}), + ownerId, + isStatic: method.methodKind === '+', + }); + } + + for (const member of facts.members) { + const label: NodeLabel = member.kind === 'property' ? 'Property' : 'Variable'; + nodes.push( + semanticNode( + label, + member.nodeId, + member.name, + member.qualifiedName, + facts.filePath, + member.startLine, + member.endLine, + { + objectiveCKind: member.kind, + ...(member.declaredType !== undefined ? { declaredType: member.declaredType } : {}), + }, + ), + ); + relationships.push( + relationship( + member.kind === 'property' ? 'HAS_PROPERTY' : 'HAS_PROPERTY', + graphNodeId(member.ownerLabel, member.ownerQualifiedName), + member.nodeId, + `objc-${member.kind}`, + ), + ); + if (member.hostClass !== undefined) { + relationships.push( + relationship( + 'HAS_PROPERTY', + graphNodeId('Class', objcClassQualifiedName(member.hostClass)), + member.nodeId, + `objc-category-host-${member.kind}`, + ), + ); + } + symbols.push({ + filePath: facts.filePath, + name: member.name, + nodeId: member.nodeId, + type: label, + qualifiedName: member.qualifiedName, + ...(member.declaredType !== undefined ? { declaredType: member.declaredType } : {}), + ownerId: graphNodeId(member.ownerLabel, member.ownerQualifiedName), + }); + } + + for (const fn of facts.functions) { + nodes.push( + semanticNode( + 'Function', + fn.nodeId, + fn.name, + fn.qualifiedName, + facts.filePath, + fn.startLine, + fn.endLine, + { + parameterCount: fn.parameterTypes.length, + parameterTypes: [...fn.parameterTypes], + linkage: fn.linkage, + ...(fn.returnType !== undefined ? { returnType: fn.returnType } : {}), + }, + ), + ); + relationships.push(relationship('DEFINES', fileId, fn.nodeId, 'objc-c-function')); + symbols.push({ + filePath: facts.filePath, + name: fn.name, + nodeId: fn.nodeId, + type: 'Function', + qualifiedName: fn.qualifiedName, + parameterCount: fn.parameterTypes.length, + parameterTypes: [...fn.parameterTypes], + ...(fn.returnType !== undefined ? { returnType: fn.returnType } : {}), + }); + } + + for (const imp of facts.imports) { + const qualifiedName = `objc:import:${facts.filePath}:${imp.startLine}:${imp.kind}:${imp.targetRaw}`; + const id = graphNodeId('Import', qualifiedName); + nodes.push( + semanticNode( + 'Import', + id, + imp.targetRaw, + qualifiedName, + facts.filePath, + imp.startLine, + imp.endLine, + { + objectiveCKind: 'import', + importKind: imp.kind, + raw: imp.raw, + targetRaw: imp.targetRaw, + }, + ), + ); + relationships.push(relationship('DEFINES', fileId, id, 'objc-import')); + symbols.push({ + filePath: facts.filePath, + name: imp.targetRaw, + nodeId: id, + type: 'Import', + qualifiedName, + }); + } + + for (const unresolved of facts.unresolvedMessages) { + const qn = objcUnresolvedMessageQualifiedName( + facts.filePath, + unresolved.startLine, + unresolved.startCol, + unresolved.selector, + ); + const id = graphNodeId('CodeElement', qn); + nodes.push( + semanticNode( + 'CodeElement', + id, + `[${unresolved.receiverText} ${unresolved.selector}] unresolved: ${unresolved.reason}`, + qn, + facts.filePath, + unresolved.startLine, + unresolved.startLine, + { + objectiveCKind: 'unresolved-message', + selector: unresolved.selector, + receiver: unresolved.receiverText, + resolution: 'unresolved', + }, + ), + ); + relationships.push( + relationship('DEFINES', fileId, id, `objc-unresolved-message: ${unresolved.reason}`), + ); + symbols.push({ + filePath: facts.filePath, + name: `[${unresolved.receiverText} ${unresolved.selector}]`, + nodeId: id, + type: 'CodeElement', + qualifiedName: qn, + }); + } + + return { nodes, relationships, symbols }; +} + +function captureAt(name: string, text: string, startLine: number, endLine: number): Capture { + return { + name, + text, + range: { + startLine: startLine + 1, + startCol: 0, + endLine: endLine + 1, + endCol: 0, + }, + }; +} + +export function buildObjectiveCScopeCaptures( + facts: ObjCFileFacts, + root: SyntaxNode, +): readonly CaptureMatch[] { + const captures: CaptureMatch[] = [ + { + '@scope.module': nodeToCapture('@scope.module', root), + }, + ]; + + for (const imp of facts.imports) { + const anchor = captureAt('@import.statement', imp.raw, imp.startLine, imp.endLine); + const sourceText = isSystemHeaderSpelling(imp.raw) ? imp.raw : imp.targetRaw; + captures.push({ + '@import.statement': anchor, + '@import.source': { + ...anchor, + name: '@import.source', + text: sourceText, + }, + '@import.name': { ...anchor, name: '@import.name', text: sourceText }, + '@import.kind': { ...anchor, name: '@import.kind', text: imp.kind }, + }); + } + + return captures; +} diff --git a/gitnexus/src/core/ingestion/languages/objective-c/macro-marker-preprocess.ts b/gitnexus/src/core/ingestion/languages/objective-c/macro-marker-preprocess.ts new file mode 100644 index 000000000..0409423a9 --- /dev/null +++ b/gitnexus/src/core/ingestion/languages/objective-c/macro-marker-preprocess.ts @@ -0,0 +1,160 @@ +/** + * Normalize bare file-scope Objective-C macro markers before parsing. + * + * Headers commonly use macro pairs such as `RCT_EXTERN_C_BEGIN` and + * `RCT_EXTERN_C_END` around C declarations. tree-sitter-objc does not expand + * those macros; a bare invocation can put the parser into error recovery and + * hide every Objective-C declaration that follows it. These markers do not + * contribute syntax on their own, so we replace only the narrow, generic form + * with spaces before parsing. + * + * This is deliberately not macro expansion or a framework-specific allowlist: + * a candidate must be a whole, all-caps identifier at file scope. Function-like + * macros, directives, statements, strings, and comments remain untouched. + * Replacement preserves UTF-16 length and line endings exactly. Candidates are + * ASCII-only, so their byte offsets are preserved as well. + */ + +interface ScanState { + inBlockComment: boolean; + inLineCommentContinuation: boolean; + inPreprocessorDirective: boolean; + quote: '"' | "'" | undefined; + braceDepth: number; +} + +function isAsciiHorizontalWhitespace(code: number): boolean { + return code === 0x20 || code === 0x09; +} + +function isBareMarkerIdentifier(line: string): boolean { + let index = 0; + while (index < line.length && isAsciiHorizontalWhitespace(line.charCodeAt(index))) index++; + + const identifierStart = index; + let hasUppercaseLetter = false; + while (index < line.length) { + const code = line.charCodeAt(index); + if (code >= 0x41 && code <= 0x5a) { + hasUppercaseLetter = true; + index++; + continue; + } + if ((code >= 0x30 && code <= 0x39) || code === 0x5f) { + index++; + continue; + } + break; + } + if (index === identifierStart || !hasUppercaseLetter) return false; + + while (index < line.length && isAsciiHorizontalWhitespace(line.charCodeAt(index))) index++; + return index === line.length; +} + +function hasEscapedLineEnding(line: string): boolean { + let trailingBackslashes = 0; + for (let index = line.length - 1; index >= 0 && line.charCodeAt(index) === 0x5c; index--) { + trailingBackslashes++; + } + return trailingBackslashes % 2 === 1; +} + +function startsPreprocessorDirective(line: string): boolean { + let index = 0; + while (index < line.length && isAsciiHorizontalWhitespace(line.charCodeAt(index))) index++; + return line.charCodeAt(index) === 0x23; +} + +function scanLine(line: string, state: ScanState): void { + if (state.inLineCommentContinuation) { + state.inLineCommentContinuation = hasEscapedLineEnding(line); + return; + } + if (state.inPreprocessorDirective) { + state.inPreprocessorDirective = hasEscapedLineEnding(line); + return; + } + if (startsPreprocessorDirective(line)) { + state.inPreprocessorDirective = hasEscapedLineEnding(line); + return; + } + + for (let index = 0; index < line.length; index++) { + const code = line.charCodeAt(index); + const next = line.charCodeAt(index + 1); + + if (state.inBlockComment) { + if (code === 0x2a && next === 0x2f) { + state.inBlockComment = false; + index++; + } + continue; + } + + if (state.quote !== undefined) { + if (code === 0x5c) { + index++; + } else if (line[index] === state.quote) { + state.quote = undefined; + } + continue; + } + + if (code === 0x2f && next === 0x2f) { + state.inLineCommentContinuation = hasEscapedLineEnding(line); + return; + } + if (code === 0x2f && next === 0x2a) { + state.inBlockComment = true; + index++; + continue; + } + if (code === 0x22 || code === 0x27) { + state.quote = line[index] as '"' | "'"; + continue; + } + if (code === 0x7b) state.braceDepth++; + else if (code === 0x7d) state.braceDepth = Math.max(0, state.braceDepth - 1); + } + + if (state.quote !== undefined && !hasEscapedLineEnding(line)) state.quote = undefined; +} + +/** + * Elide bare, file-scope macro markers while preserving source positions. + * + * `_filePath` is accepted for the LanguageProvider hook signature. The + * transform is based only on source syntax and deliberately has no framework + * or repository-specific configuration. + */ +export function preprocessObjectiveCMacroMarkers(source: string, _filePath?: string): string { + const state: ScanState = { + inBlockComment: false, + inLineCommentContinuation: false, + inPreprocessorDirective: false, + quote: undefined, + braceDepth: 0, + }; + const segments = source.split(/(\r\n|\n|\r)/); + let changed = false; + + for (let index = 0; index < segments.length; index += 2) { + const line = segments[index]; + if ( + !state.inBlockComment && + !state.inLineCommentContinuation && + !state.inPreprocessorDirective && + state.quote === undefined && + state.braceDepth === 0 && + isBareMarkerIdentifier(line) + ) { + segments[index] = ' '.repeat(line.length); + changed = true; + continue; + } + scanLine(line, state); + } + + return changed ? segments.join('') : source; +} diff --git a/gitnexus/src/core/ingestion/languages/objective-c/scope-resolver.ts b/gitnexus/src/core/ingestion/languages/objective-c/scope-resolver.ts new file mode 100644 index 000000000..1048bbfdf --- /dev/null +++ b/gitnexus/src/core/ingestion/languages/objective-c/scope-resolver.ts @@ -0,0 +1,733 @@ +import path from 'path'; +import { SupportedLanguages, type SymbolDefinition, type Callsite } from 'gitnexus-shared'; +import type { GraphNode, RelationshipType } from 'gitnexus-shared'; +import type { KnowledgeGraph } from '../../../graph/types.js'; +import type { ScopeResolver } from '../../scope-resolution/contract/scope-resolver.js'; +import { generateId } from '../../../../lib/utils.js'; +import { perFileSet } from '../../import-resolvers/per-file-set.js'; +import { objectiveCProvider } from '../objective-c.js'; +import { + applyObjectiveCCaptureSideChannel, + objcClassQualifiedName, + objcProtocolQualifiedName, + objcUnresolvedMessageQualifiedName, + objectiveCFactsFromParsedFiles, + type ObjCContainerFact, + type ObjCFileFacts, + type ObjCMemberFact, + type ObjCMessageFact, + type ObjCMethodFact, + type ObjCTypeInfo, + parseObjCType, +} from './facts.js'; + +interface ObjCWorkspaceFacts { + readonly containersByQualifiedName: ReadonlyMap; + readonly classByName: ReadonlyMap; + readonly protocolsByName: ReadonlyMap; + readonly categoriesByHost: ReadonlyMap; + readonly methodsByDispatchOwner: ReadonlyMap; + readonly methodsByExactOwner: ReadonlyMap; + readonly memberTypesByOwner: ReadonlyMap>; + readonly classProtocols: ReadonlyMap>; + readonly protocolParents: ReadonlyMap>; + readonly superclassByClass: ReadonlyMap; +} + +export const objectiveCScopeResolver: ScopeResolver = { + language: SupportedLanguages.ObjectiveC, + languageProvider: objectiveCProvider, + importEdgeReason: 'objective-c-scope: import', + + resolveImportTarget: (targetRaw, fromFile, allFilePaths) => + resolveObjectiveCImportTarget(targetRaw, fromFile, allFilePaths), + + mergeBindings: (existing, incoming) => [...existing, ...incoming], + + arityCompatibility: (callsite: Callsite, def: SymbolDefinition) => { + if (callsite.arity === undefined || def.parameterCount === undefined) return 'unknown'; + return callsite.arity === def.parameterCount ? 'compatible' : 'incompatible'; + }, + + buildMro: () => new Map(), + + applyCaptureSideChannel: applyObjectiveCCaptureSideChannel, + populateOwners: () => {}, + isSuperReceiver: (receiverText) => receiverText.trim() === 'super', + + fieldFallbackOnMethodLookup: false, + propagatesReturnTypesAcrossImports: false, + collapseMemberCallsByCallerTarget: true, + + emitPostResolutionEdges(graph, parsedFiles) { + const facts = objectiveCFactsFromParsedFiles(parsedFiles); + if (facts.length === 0) return; + const workspace = buildObjectiveCWorkspaceFacts(facts); + + for (const fact of facts) { + emitObjectiveCHeritageEdges(graph, fact, workspace); + emitObjectiveCCategoryEdges(graph, fact, workspace); + emitObjectiveCImplementationEvidence(graph, fact); + emitObjectiveCUnresolvedMessageEvidence(graph, fact); + emitObjectiveCMessageEdges(graph, fact, workspace); + } + }, +}; + +function graphNodeId(label: string, qualifiedName: string): string { + return generateId(label, qualifiedName); +} + +function relationshipId( + type: RelationshipType, + sourceId: string, + targetId: string, + reason: string, +): string { + return generateId(type, `${sourceId}->${targetId}:${reason}`); +} + +function addRelationship( + graph: KnowledgeGraph, + type: RelationshipType, + sourceId: string, + targetId: string, + reason: string, + confidence = 0.9, +): void { + graph.addRelationship({ + id: relationshipId(type, sourceId, targetId, reason), + sourceId, + targetId, + type, + confidence, + reason, + }); +} + +function labelForContainer(container: ObjCContainerFact): 'Class' | 'Protocol' | 'Category' { + return container.label; +} + +function buildObjectiveCWorkspaceFacts(facts: readonly ObjCFileFacts[]): ObjCWorkspaceFacts { + const containersByQualifiedName = new Map(); + const classByName = new Map(); + const protocolsByName = new Map(); + const categoriesByHost = new Map(); + const methodsByExactOwner = new Map(); + const methodsByDispatchOwner = new Map(); + const memberTypesByOwner = new Map>(); + const classProtocols = new Map>(); + const protocolParents = new Map>(); + const superclassByClass = new Map(); + + for (const fileFact of facts) { + for (const container of fileFact.containers) { + const existing = containersByQualifiedName.get(container.qualifiedName); + containersByQualifiedName.set( + container.qualifiedName, + mergeContainerFacts(existing, container), + ); + if (container.kind === 'class') { + classByName.set(container.name, container); + if (container.superclass !== undefined) + superclassByClass.set(container.name, container.superclass); + if (container.protocols.length > 0) { + let protocols = classProtocols.get(container.name); + if (protocols === undefined) { + protocols = new Set(); + classProtocols.set(container.name, protocols); + } + for (const protocol of container.protocols) protocols.add(protocol); + } + } else if (container.kind === 'protocol') { + protocolsByName.set(container.name, container); + if (container.protocols.length > 0) { + let parents = protocolParents.get(container.name); + if (parents === undefined) { + parents = new Set(); + protocolParents.set(container.name, parents); + } + for (const protocol of container.protocols) parents.add(protocol); + } + } else if (container.hostClass !== undefined) { + let categories = categoriesByHost.get(container.hostClass); + if (categories === undefined) { + categories = []; + categoriesByHost.set(container.hostClass, categories); + } + categories.push(container); + if (container.protocols.length > 0) { + let protocols = classProtocols.get(container.hostClass); + if (protocols === undefined) { + protocols = new Set(); + classProtocols.set(container.hostClass, protocols); + } + for (const protocol of container.protocols) protocols.add(protocol); + } + } + } + + for (const method of fileFact.methods) { + appendMap(methodsByExactOwner, method.ownerQualifiedName, method); + appendMap(methodsByDispatchOwner, method.ownerQualifiedName, method); + if (method.hostClass !== undefined) { + appendMap(methodsByDispatchOwner, objcClassQualifiedName(method.hostClass), method); + } + } + + for (const member of fileFact.members) { + addMemberType(memberTypesByOwner, member.ownerQualifiedName, member); + if (member.hostClass !== undefined) { + addMemberType(memberTypesByOwner, objcClassQualifiedName(member.hostClass), member); + } + } + } + + return { + containersByQualifiedName, + classByName, + protocolsByName, + categoriesByHost, + methodsByDispatchOwner, + methodsByExactOwner, + memberTypesByOwner, + classProtocols, + protocolParents, + superclassByClass, + }; +} + +function addMemberType( + memberTypesByOwner: Map>, + ownerQualifiedName: string, + member: ObjCMemberFact, +): void { + const type = parseObjCType(member.declaredType); + if (type === undefined) return; + let types = memberTypesByOwner.get(ownerQualifiedName); + if (types === undefined) { + types = new Map(); + memberTypesByOwner.set(ownerQualifiedName, types); + } + types.set(member.name, type); +} + +function mergeContainerFacts( + existing: ObjCContainerFact | undefined, + incoming: ObjCContainerFact, +): ObjCContainerFact { + if (existing === undefined) return incoming; + const protocols = Array.from(new Set([...existing.protocols, ...incoming.protocols])).sort(); + return { + ...existing, + declarationRole: + existing.declarationRole === 'implementation' || incoming.declarationRole === 'implementation' + ? 'implementation' + : 'interface', + startLine: Math.min(existing.startLine, incoming.startLine), + endLine: Math.max(existing.endLine, incoming.endLine), + ...(existing.superclass !== undefined || incoming.superclass !== undefined + ? { superclass: existing.superclass ?? incoming.superclass } + : {}), + protocols, + }; +} + +function appendMap(map: Map, key: K, value: V): void { + const existing = map.get(key); + if (existing === undefined) map.set(key, [value]); + else existing.push(value); +} + +function emitObjectiveCHeritageEdges( + graph: KnowledgeGraph, + facts: ObjCFileFacts, + workspace: ObjCWorkspaceFacts, +): void { + for (const container of facts.containers) { + const sourceId = graphNodeId(labelForContainer(container), container.qualifiedName); + if (container.kind === 'class' && container.superclass !== undefined) { + const superclass = workspace.classByName.get(container.superclass); + if (superclass !== undefined) { + addRelationship( + graph, + 'EXTENDS', + sourceId, + graphNodeId('Class', superclass.qualifiedName), + 'objc: superclass', + ); + } + } + + const protocolSourceId = + container.hostClass !== undefined + ? graphNodeId('Class', objcClassQualifiedName(container.hostClass)) + : sourceId; + for (const protocolName of container.protocols) { + const protocol = workspace.protocolsByName.get(protocolName); + if (protocol === undefined) continue; + addRelationship( + graph, + 'IMPLEMENTS', + protocolSourceId, + graphNodeId('Protocol', protocol.qualifiedName), + 'objc: protocol conformance', + ); + } + } +} + +function emitObjectiveCCategoryEdges( + graph: KnowledgeGraph, + facts: ObjCFileFacts, + workspace: ObjCWorkspaceFacts, +): void { + for (const container of facts.containers) { + if (container.hostClass === undefined) continue; + if (!workspace.classByName.has(container.hostClass)) continue; + addRelationship( + graph, + 'MEMBER_OF', + graphNodeId('Category', container.qualifiedName), + graphNodeId('Class', objcClassQualifiedName(container.hostClass)), + 'objc: category host class', + ); + } +} + +function emitObjectiveCUnresolvedMessageEvidence( + graph: KnowledgeGraph, + facts: ObjCFileFacts, +): void { + for (const unresolved of facts.unresolvedMessages) { + const evidenceId = graphNodeId( + 'CodeElement', + objcUnresolvedMessageQualifiedName( + facts.filePath, + unresolved.startLine, + unresolved.startCol, + unresolved.selector, + ), + ); + addRelationship( + graph, + 'USES', + unresolved.sourceMethodId, + evidenceId, + `objc-message: unresolved: ${unresolved.reason}`, + 0.5, + ); + } +} + +function emitObjectiveCImplementationEvidence(graph: KnowledgeGraph, facts: ObjCFileFacts): void { + for (const container of facts.containers) { + if (container.declarationRole !== 'implementation') continue; + const targetId = graphNodeId(labelForContainer(container), container.qualifiedName); + emitImplementationEvidence( + graph, + facts.filePath, + targetId, + `@implementation ${container.name}`, + `objc:implementation:${container.qualifiedName}:${facts.filePath}:${container.startLine}`, + container.startLine, + container.endLine, + { + objectiveCKind: 'implementation-evidence', + implementationKind: container.kind, + targetQualifiedName: container.qualifiedName, + }, + ); + } + + for (const method of facts.methods) { + if (method.declarationRole !== 'implementation') continue; + emitImplementationEvidence( + graph, + facts.filePath, + method.nodeId, + `${method.methodKind}[${method.ownerName} ${method.selector}] implementation`, + `objc:method-implementation:${method.qualifiedName}:${facts.filePath}:${method.startLine}`, + method.startLine, + method.endLine, + { + objectiveCKind: 'implementation-evidence', + implementationKind: 'method', + targetQualifiedName: method.qualifiedName, + selector: method.selector, + methodKind: method.methodKind, + objectiveCOwner: method.ownerQualifiedName, + }, + ); + } +} + +function emitImplementationEvidence( + graph: KnowledgeGraph, + filePath: string, + targetId: string, + name: string, + qualifiedName: string, + startLine: number, + endLine: number, + extras: Record, +): void { + const nodeId = graphNodeId('CodeElement', qualifiedName); + graph.addNode({ + id: nodeId, + label: 'CodeElement', + properties: { + name, + qualifiedName, + filePath, + startLine, + endLine, + language: SupportedLanguages.ObjectiveC, + isExported: false, + ...extras, + }, + }); + addRelationship( + graph, + 'DEFINES', + graphNodeId('File', filePath), + nodeId, + 'objc: implementation evidence', + 1, + ); + addRelationship(graph, 'DECLARES', nodeId, targetId, 'objc: implementation of merged symbol', 1); +} + +function emitObjectiveCMessageEdges( + graph: KnowledgeGraph, + facts: ObjCFileFacts, + workspace: ObjCWorkspaceFacts, +): void { + for (const message of facts.messages) { + const targets = resolveMessageTargets(message, workspace); + if (targets.kind === 'none') continue; + if (targets.kind === 'protocol') { + emitProtocolMessageEvidence(graph, facts, message, targets.protocolName, targets.candidates); + } + for (const target of targets.methods) { + if (graph.getNode(target.nodeId) === undefined) continue; + addRelationship( + graph, + 'CALLS', + message.sourceMethodId, + target.nodeId, + targets.kind === 'protocol' + ? 'objc-message: protocol receiver' + : `objc-message: ${message.receiverKind} receiver`, + targets.kind === 'protocol' ? 0.8 : 0.9, + ); + } + } +} + +type MessageTargets = + | { readonly kind: 'none'; readonly methods: readonly ObjCMethodFact[] } + | { readonly kind: 'direct'; readonly methods: readonly ObjCMethodFact[] } + | { + readonly kind: 'protocol'; + readonly protocolName: string; + readonly methods: readonly ObjCMethodFact[]; + readonly candidates: readonly ObjCMethodFact[]; + }; + +function resolveMessageTargets( + message: ObjCMessageFact, + workspace: ObjCWorkspaceFacts, +): MessageTargets { + if (message.receiverKind === 'dynamic') { + return { kind: 'none', methods: [] }; + } + + if (message.receiverKind === 'class') { + const className = message.receiverType?.name ?? message.receiverText; + return { + kind: 'direct', + methods: findDispatchMethods(workspace, className, '+', message.selector), + }; + } + + if (message.receiverKind === 'self') { + const owner = workspace.containersByQualifiedName.get(message.sourceOwnerQualifiedName); + const className = owner?.hostClass ?? owner?.name ?? message.sourceOwnerName; + const methods = + owner?.kind === 'protocol' + ? findProtocolMethods(workspace, owner.name, message.sourceMethodKind, message.selector) + : findDispatchMethods(workspace, className, message.sourceMethodKind, message.selector); + return { kind: 'direct', methods }; + } + + if (message.receiverKind === 'super') { + const owner = workspace.containersByQualifiedName.get(message.sourceOwnerQualifiedName); + const className = owner?.hostClass ?? owner?.name ?? message.sourceOwnerName; + const superclass = workspace.superclassByClass.get(className); + return superclass === undefined + ? { kind: 'none', methods: [] } + : { + kind: 'direct', + methods: findDispatchMethods( + workspace, + superclass, + message.sourceMethodKind, + message.selector, + ), + }; + } + + const receiverType = message.receiverType ?? resolveMemberReceiverType(message, workspace); + if (receiverType?.kind === 'dynamic' || receiverType?.kind === 'class-object') { + return { kind: 'none', methods: [] }; + } + if (message.receiverKind === 'unknown' && receiverType === undefined) { + return { kind: 'none', methods: [] }; + } + if (receiverType?.kind === 'class' && receiverType.name !== undefined) { + return { + kind: 'direct', + methods: findDispatchMethods(workspace, receiverType.name, '-', message.selector), + }; + } + + if (receiverType?.kind === 'protocol' && receiverType.name !== undefined) { + const methods = findProtocolMethods(workspace, receiverType.name, '-', message.selector); + const candidates = findProtocolImplementationCandidates( + workspace, + receiverType.name, + message.selector, + ); + return { + kind: 'protocol', + protocolName: receiverType.name, + methods, + candidates, + }; + } + + return { kind: 'none', methods: [] }; +} + +function resolveMemberReceiverType( + message: ObjCMessageFact, + workspace: ObjCWorkspaceFacts, +): ObjCTypeInfo | undefined { + if (message.receiverMemberName === undefined) return undefined; + const owner = workspace.containersByQualifiedName.get(message.sourceOwnerQualifiedName); + const ownerQualifiedName = + owner?.hostClass !== undefined + ? objcClassQualifiedName(owner.hostClass) + : message.sourceOwnerQualifiedName; + return workspace.memberTypesByOwner.get(ownerQualifiedName)?.get(message.receiverMemberName); +} + +function findDispatchMethods( + workspace: ObjCWorkspaceFacts, + className: string, + methodKind: '-' | '+', + selector: string, +): readonly ObjCMethodFact[] { + const seen = new Set(); + let currentClass: string | undefined = className; + while (currentClass !== undefined && !seen.has(currentClass)) { + seen.add(currentClass); + const ownerQn = objcClassQualifiedName(currentClass); + const methods = (workspace.methodsByDispatchOwner.get(ownerQn) ?? []).filter( + (method) => method.methodKind === methodKind && method.selector === selector, + ); + if (methods.length > 0) return methods; + currentClass = workspace.superclassByClass.get(currentClass); + } + return []; +} + +function findExactOwnerMethods( + workspace: ObjCWorkspaceFacts, + ownerQualifiedName: string, + methodKind: '-' | '+', + selector: string, +): readonly ObjCMethodFact[] { + return (workspace.methodsByExactOwner.get(ownerQualifiedName) ?? []).filter( + (method) => method.methodKind === methodKind && method.selector === selector, + ); +} + +function findProtocolMethods( + workspace: ObjCWorkspaceFacts, + protocolName: string, + methodKind: '-' | '+', + selector: string, +): readonly ObjCMethodFact[] { + for (const name of protocolHierarchy(workspace, protocolName)) { + const methods = findExactOwnerMethods( + workspace, + objcProtocolQualifiedName(name), + methodKind, + selector, + ); + if (methods.length > 0) return uniqueMethods(methods); + } + return []; +} + +function protocolHierarchy(workspace: ObjCWorkspaceFacts, protocolName: string): readonly string[] { + const seen = new Set(); + const pending = [protocolName]; + const hierarchy: string[] = []; + while (pending.length > 0) { + const current = pending.shift(); + if (current === undefined || seen.has(current)) continue; + seen.add(current); + hierarchy.push(current); + const parents = workspace.protocolParents.get(current); + if (parents === undefined) continue; + pending.push(...[...parents].sort()); + } + return hierarchy; +} + +function uniqueMethods(methods: readonly ObjCMethodFact[]): readonly ObjCMethodFact[] { + return [...new Map(methods.map((method) => [method.nodeId, method])).values()].sort( + (left, right) => left.qualifiedName.localeCompare(right.qualifiedName), + ); +} + +function classConformsToProtocol( + workspace: ObjCWorkspaceFacts, + directProtocols: ReadonlySet, + protocolName: string, +): boolean { + return [...directProtocols].some((directProtocol) => + protocolHierarchy(workspace, directProtocol).includes(protocolName), + ); +} + +function findProtocolImplementationCandidates( + workspace: ObjCWorkspaceFacts, + protocolName: string, + selector: string, +): readonly ObjCMethodFact[] { + const out: ObjCMethodFact[] = []; + for (const [className, protocols] of workspace.classProtocols) { + if (!classConformsToProtocol(workspace, protocols, protocolName)) continue; + out.push(...findDispatchMethods(workspace, className, '-', selector)); + } + return uniqueMethods(out); +} + +function emitProtocolMessageEvidence( + graph: KnowledgeGraph, + facts: ObjCFileFacts, + message: ObjCMessageFact, + protocolName: string, + candidates: readonly ObjCMethodFact[], +): void { + if (candidates.length === 0) return; + const qualifiedName = `objc:protocol-candidates:${facts.filePath}:${message.startLine}:${message.startCol}:${message.selector}`; + const nodeId = graphNodeId('CodeElement', qualifiedName); + const node: GraphNode = { + id: nodeId, + label: 'CodeElement', + properties: { + name: `[${message.receiverText} ${message.selector}] protocol ${protocolName} candidates`, + qualifiedName, + filePath: facts.filePath, + startLine: message.startLine, + endLine: message.startLine, + language: SupportedLanguages.ObjectiveC, + isExported: false, + }, + }; + graph.addNode(node); + addRelationship( + graph, + 'DEFINES', + graphNodeId('File', facts.filePath), + nodeId, + `objc: protocol receiver candidate evidence: ${protocolName} ${message.selector}`, + 1, + ); + addRelationship( + graph, + 'USES', + message.sourceMethodId, + nodeId, + `objc-message: protocol receiver candidates: ${protocolName} ${message.selector}`, + 0.7, + ); + for (const candidate of candidates) { + if (graph.getNode(candidate.nodeId) === undefined) continue; + addRelationship( + graph, + 'USES', + nodeId, + candidate.nodeId, + `objc-protocol-candidate: ${protocolName} ${message.selector}`, + 0.5, + ); + } +} + +function resolveObjectiveCImportTarget( + targetRaw: string, + fromFile: string, + allFilePaths: ReadonlySet, +): string | null { + const importIndex = getObjectiveCImportIndex(allFilePaths); + const target = targetRaw.trim(); + if (target.length === 0) return null; + if (target.startsWith('<') && target.endsWith('>')) return null; + const looksLikeFileImport = + target.startsWith('.') || target.includes('/') || path.posix.extname(target).length > 0; + if (!looksLikeFileImport) return null; + return findImportCandidate(target, fromFile, importIndex); +} + +interface ObjectiveCImportIndex { + readonly filePaths: readonly string[]; + readonly filePathSet: ReadonlySet; +} + +const getObjectiveCImportIndex = perFileSet( + (allFilePaths: ReadonlySet): ObjectiveCImportIndex => { + const filePaths = [...allFilePaths]; + return { filePaths, filePathSet: new Set(filePaths) }; + }, +); + +function findImportCandidate( + targetRaw: string, + fromFile: string, + importIndex: ObjectiveCImportIndex, +): string | null { + const normalizedTarget = normalizeRepoPath(targetRaw); + const fromDir = normalizeRepoPath(path.posix.dirname(normalizeRepoPath(fromFile))); + const spelledCandidates = new Set([ + normalizeRepoPath(path.posix.join(fromDir, normalizedTarget)), + normalizedTarget, + ]); + const ext = path.posix.extname(normalizedTarget); + if (ext.length === 0) { + for (const base of [...spelledCandidates]) { + spelledCandidates.add(`${base}.h`); + spelledCandidates.add(`${base}.m`); + spelledCandidates.add(`${base}.mm`); + } + } + for (const candidate of spelledCandidates) { + if (importIndex.filePathSet.has(candidate)) return candidate; + } + const suffixes = [...spelledCandidates].map((candidate) => `/${candidate}`); + for (const filePath of importIndex.filePaths) { + const normalizedFilePath = normalizeRepoPath(filePath); + if (suffixes.some((suffix) => normalizedFilePath.endsWith(suffix))) return filePath; + } + return null; +} + +function normalizeRepoPath(value: string): string { + return value.replaceAll('\\', '/').replace(/^\.\//, ''); +} diff --git a/gitnexus/src/core/ingestion/model/registration-table.ts b/gitnexus/src/core/ingestion/model/registration-table.ts index e9e85eeb0..718079a95 100644 --- a/gitnexus/src/core/ingestion/model/registration-table.ts +++ b/gitnexus/src/core/ingestion/model/registration-table.ts @@ -15,11 +15,11 @@ * └── symbols (SymbolTable) ← owns fileIndex + callableByName, * calls dispatch() in add() * - * ## Behavior groups (5 hooks, 13 table entries) + * ## Behavior groups (4 hooks, 12 table entries) * * | Group | NodeLabel values | Hook | Skip callable? | * |---------------|---------------------------------------------------|--------------|----------------| - * | class-like | Class, Struct, Interface, Enum, Record, Trait | classLikeHook | no | + * | class-like | Class, Protocol, Category, Struct, Interface, Enum, Record, Trait | classLikeHook | no | * | method-like | Method, Constructor | methodHook | no | * | property | Property | propertyHook | YES | * | impl-block | Impl | implHook | no | @@ -95,7 +95,7 @@ export interface RegistrationTableDeps { * registry (if any) receives the symbol write during `SymbolTable.add()`: * * - `dispatch` — owner-scoped registry write via the dispatch table - * (Class/Struct/Interface/Enum/Record/Trait → types.registerClass, + * (Class/Protocol/Category/Struct/Interface/Enum/Record/Trait → types.registerClass, * Method/Constructor → methods.register, * Property → fields.register, * Impl → types.registerImpl) @@ -143,6 +143,8 @@ export type LabelBehavior = 'dispatch' | 'callable-only' | 'inert'; const LABEL_BEHAVIOR = { // dispatch — owner-scoped registry writes Class: 'dispatch', + Protocol: 'dispatch', + Category: 'dispatch', Struct: 'dispatch', Interface: 'dispatch', Enum: 'dispatch', @@ -271,8 +273,8 @@ export const createRegistrationTable = ( ): Map => { const { types, methods, fields } = deps; - // Hook 1: class-like — Class, Struct, Interface, Enum, Record, Trait. - // Shared reference — six table entries point at this one closure. + // Hook 1: class-like — Class, Protocol, Category, Struct, Interface, Enum, Record, Trait. + // Shared reference — eight table entries point at this one closure. const classLikeHook: RegistrationHook = (name, def) => { const qualifiedKey = def.qualifiedName ?? name; types.registerClass(name, qualifiedKey, def); @@ -311,11 +313,13 @@ export const createRegistrationTable = ( // classified as 'dispatch'. This is the compile-time twin of the // runtime taxonomy — no drift possible. const dispatchByLabel = { - // class-like — six labels share the single `classLikeHook` closure, + // class-like — eight labels share the single `classLikeHook` closure, // kept in lockstep with `CLASS_TYPES_TUPLE` via the // `Record` cross-invariant on // `LABEL_BEHAVIOR`. Class: classLikeHook, + Protocol: classLikeHook, + Category: classLikeHook, Struct: classLikeHook, Interface: classLikeHook, Enum: classLikeHook, diff --git a/gitnexus/src/core/ingestion/model/symbol-table.ts b/gitnexus/src/core/ingestion/model/symbol-table.ts index d7330a093..58165bacf 100644 --- a/gitnexus/src/core/ingestion/model/symbol-table.ts +++ b/gitnexus/src/core/ingestion/model/symbol-table.ts @@ -56,6 +56,8 @@ import type { NodeLabel, ParameterTypeClass, SymbolDefinition } from 'gitnexus-s */ export const CLASS_TYPES_TUPLE = [ 'Class', + 'Protocol', + 'Category', 'Struct', 'Interface', 'Enum', diff --git a/gitnexus/src/core/ingestion/parsing-processor.ts b/gitnexus/src/core/ingestion/parsing-processor.ts index e4df7dae5..daa9adb83 100644 --- a/gitnexus/src/core/ingestion/parsing-processor.ts +++ b/gitnexus/src/core/ingestion/parsing-processor.ts @@ -1,7 +1,7 @@ import type { NodeLabel } from 'gitnexus-shared'; import { KnowledgeGraph } from '../graph/types.js'; import type { SymbolTableWriter } from './model/index.js'; -import { getLanguageFromFilename } from 'gitnexus-shared'; +import { getLanguageForFileContent } from './languages/index.js'; import { accumulateExportedTypesFromParsedNode, type ExportedTypeMap } from './call-processor.js'; @@ -229,7 +229,7 @@ export const dispatchChunkParse = async ( ): Promise => { const parseableFiles: ParseWorkerInput[] = []; for (const file of files) { - const lang = getLanguageFromFilename(file.path); + const lang = getLanguageForFileContent(file.path, file.content); if (lang) parseableFiles.push({ path: file.path, content: file.content }); } if (parseableFiles.length === 0) return []; diff --git a/gitnexus/src/core/ingestion/pipeline-phases/parse-impl.ts b/gitnexus/src/core/ingestion/pipeline-phases/parse-impl.ts index b69c09eb7..67dae463d 100644 --- a/gitnexus/src/core/ingestion/pipeline-phases/parse-impl.ts +++ b/gitnexus/src/core/ingestion/pipeline-phases/parse-impl.ts @@ -61,7 +61,13 @@ import { createParserForLanguage, } from '../../tree-sitter/parser-loader.js'; import { parseSourceSafe } from '../../tree-sitter/safe-parse.js'; -import { getProvider, getProviderForFile, providers } from '../languages/index.js'; +import { + getProvider, + getProviderForFile, + needsContentLanguageClassification, + providers, +} from '../languages/index.js'; +import { classifyContentLanguages } from '../content-language-classification.js'; import { SCOPE_RESOLVERS } from '../scope-resolution/pipeline/registry.js'; import { DATA_ROUTE_TABLE_SOURCE } from '../route-extractors/data-route-table.js'; import type Parser from 'tree-sitter'; @@ -464,6 +470,14 @@ export async function runChunkedParseAndResolve( * cache analyze run can skip the dominant `extractParsedFile` cost * (otherwise ~58s on a 1000-file repo). */ parsedFiles: import('gitnexus-shared').ParsedFile[]; + /** + * Content-derived language decisions for extension-ambiguous files. + * + * The source text used to classify these paths is released before parsing + * begins. Scope resolution consumes this snapshot instead of reading the + * same files again just to repeat classification. + */ + contentLanguageByPath: ReadonlyMap; /** Repo-wide harvested constants, already prepared per provider. See * `ParseOutput.moduleConstants` for why this leaves the parse phase. */ moduleConstants: ReadonlyMap; @@ -474,15 +488,27 @@ export async function runChunkedParseAndResolve( const model = createSemanticModel(); const symbolTable = model.symbols; + const contentClassifiedPaths = scannedFiles + .map((file) => file.path) + .filter(needsContentLanguageClassification); + const contentLanguageByPath = + contentClassifiedPaths.length > 0 + ? await classifyContentLanguages(repoPath, contentClassifiedPaths) + : new Map(); + const languageForScannedFile = (file: (typeof scannedFiles)[number]) => { + return contentLanguageByPath.has(file.path) + ? (contentLanguageByPath.get(file.path) ?? null) + : getLanguageFromFilename(file.path); + }; const parseableScanned = scannedFiles.filter((f) => { - const lang = getLanguageFromFilename(f.path); + const lang = languageForScannedFile(f); return lang && isLanguageAvailable(lang); }); // Warn about files skipped due to unavailable parsers const skippedByLang = new Map(); for (const f of scannedFiles) { - const lang = getLanguageFromFilename(f.path); + const lang = languageForScannedFile(f); const provider = lang === null ? undefined : getProvider(lang); if (lang && provider?.parseStrategy !== 'standalone' && !isLanguageAvailable(lang)) { skippedByLang.set(lang, (skippedByLang.get(lang) || 0) + 1); @@ -1621,6 +1647,7 @@ export async function runChunkedParseAndResolve( // cache: when the file's ParsedFile is here, scope-resolution skips its own // `extractParsedFile` call. parsedFiles: allParsedFiles, + contentLanguageByPath, // Repo-wide, file-path-keyed constants, already through each provider's // `prepareRouteConstants` hook. Empty when no provider harvests constants // for the languages in this repo. diff --git a/gitnexus/src/core/ingestion/pipeline-phases/parse.ts b/gitnexus/src/core/ingestion/pipeline-phases/parse.ts index b47ceafdf..503f3be75 100644 --- a/gitnexus/src/core/ingestion/pipeline-phases/parse.ts +++ b/gitnexus/src/core/ingestion/pipeline-phases/parse.ts @@ -20,7 +20,7 @@ import type { PipelinePhase, PipelineContext, PhaseResult } from './types.js'; import { getPhaseOutput } from './types.js'; import type { StructureOutput } from './structure.js'; import type { BindingAccumulator } from '../binding-accumulator.js'; -import type { ParsedFile } from 'gitnexus-shared'; +import type { ParsedFile, SupportedLanguages } from 'gitnexus-shared'; import type { ExtractedFetchCall, ExtractedRoute, @@ -83,6 +83,12 @@ export interface ParseOutput { * costing ~58s on a 1000-file repo). */ readonly parsedFiles: readonly ParsedFile[]; + /** + * Content-derived language decisions for files such as `.h` whose extension + * is ambiguous. Scope resolution reuses this result rather than rereading + * source solely to classify it. + */ + readonly contentLanguageByPath: ReadonlyMap; /** * Repo-wide string constants harvested by the providers that declare * `extractModuleConstants`, keyed by file path and already through each diff --git a/gitnexus/src/core/ingestion/scope-extractor.ts b/gitnexus/src/core/ingestion/scope-extractor.ts index 31f66b896..d8dbd42dd 100644 --- a/gitnexus/src/core/ingestion/scope-extractor.ts +++ b/gitnexus/src/core/ingestion/scope-extractor.ts @@ -847,6 +847,10 @@ function normalizeNodeLabel(kindStr: string): SymbolDefinition['type'] | undefin switch (kindStr.toLowerCase()) { case 'class': return 'Class'; + case 'protocol': + return 'Protocol'; + case 'category': + return 'Category'; case 'interface': return 'Interface'; case 'enum': diff --git a/gitnexus/src/core/ingestion/scope-resolution/graph-bridge/ids.ts b/gitnexus/src/core/ingestion/scope-resolution/graph-bridge/ids.ts index 55becdcb6..453c0b406 100644 --- a/gitnexus/src/core/ingestion/scope-resolution/graph-bridge/ids.ts +++ b/gitnexus/src/core/ingestion/scope-resolution/graph-bridge/ids.ts @@ -87,6 +87,8 @@ export const CALLER_ANCHOR_LABELS: ReadonlySet = new Set([ 'Constructor', 'Module', 'Class', + 'Protocol', + 'Category', 'Interface', 'Struct', 'Enum', diff --git a/gitnexus/src/core/ingestion/scope-resolution/graph-bridge/node-lookup.ts b/gitnexus/src/core/ingestion/scope-resolution/graph-bridge/node-lookup.ts index fe7f4506b..73506aad6 100644 --- a/gitnexus/src/core/ingestion/scope-resolution/graph-bridge/node-lookup.ts +++ b/gitnexus/src/core/ingestion/scope-resolution/graph-bridge/node-lookup.ts @@ -280,6 +280,8 @@ export const LINKABLE_LABELS: ReadonlySet = new Set([ // targets and need the same def→graph bridge. 'Module', 'Class', + 'Protocol', + 'Category', 'Interface', 'Struct', 'Enum', diff --git a/gitnexus/src/core/ingestion/scope-resolution/pipeline/phase.ts b/gitnexus/src/core/ingestion/scope-resolution/pipeline/phase.ts index 8218a9656..f15ef882c 100644 --- a/gitnexus/src/core/ingestion/scope-resolution/pipeline/phase.ts +++ b/gitnexus/src/core/ingestion/scope-resolution/pipeline/phase.ts @@ -177,7 +177,7 @@ export const scopeResolutionPhase: PipelinePhase = { logHeapProbe('scopeResolution-enter'); const { scannedFiles } = getPhaseOutput(deps, 'structure'); const parseOutput = getPhaseOutput(deps, 'parse'); - const { model, parsedFiles: workerParsedFiles } = parseOutput; + const { model, parsedFiles: workerParsedFiles, contentLanguageByPath } = parseOutput; const scopeExtractionFailures = new Set(parseOutput.scopeExtractionFailures); // SemanticModel populated during `parse`: scope-resolution consumes // TypeRegistry / MethodRegistry / SymbolTable lookups instead of @@ -257,7 +257,9 @@ export const scopeResolutionPhase: PipelinePhase = { (typeof scannedFiles)[number][] >(); for (const f of scannedFiles) { - const fileLang = getLanguageFromFilename(f.path); + const fileLang = contentLanguageByPath.has(f.path) + ? (contentLanguageByPath.get(f.path) ?? null) + : getLanguageFromFilename(f.path); if (fileLang === null) continue; // Tree-sitter providers require an available grammar. Standalone regex // providers deliberately have none and re-extract on the main thread. diff --git a/gitnexus/src/core/ingestion/scope-resolution/pipeline/registry.ts b/gitnexus/src/core/ingestion/scope-resolution/pipeline/registry.ts index bcfe5a983..ee98e3807 100644 --- a/gitnexus/src/core/ingestion/scope-resolution/pipeline/registry.ts +++ b/gitnexus/src/core/ingestion/scope-resolution/pipeline/registry.ts @@ -28,6 +28,7 @@ import { swiftScopeResolver } from '../../languages/swift/scope-resolver.js'; import { dartScopeResolver } from '../../languages/dart/scope-resolver.js'; import { vueScopeResolver } from '../../languages/vue/scope-resolver.js'; import { zigScopeResolver } from '../../languages/zig/scope-resolver.js'; +import { objectiveCScopeResolver } from '../../languages/objective-c/scope-resolver.js'; /** Map of `SupportedLanguages` → `ScopeResolver`. The scope-resolution phase * iterates this map directly — every registered resolver runs. This is the @@ -53,4 +54,5 @@ export const SCOPE_RESOLVERS: ReadonlyMap = n [SupportedLanguages.Dart, dartScopeResolver], [SupportedLanguages.Vue, vueScopeResolver], [SupportedLanguages.Zig, zigScopeResolver], + [SupportedLanguages.ObjectiveC, objectiveCScopeResolver], ]); diff --git a/gitnexus/src/core/ingestion/scope-resolution/scope/walkers.ts b/gitnexus/src/core/ingestion/scope-resolution/scope/walkers.ts index 62e996737..0eaec645f 100644 --- a/gitnexus/src/core/ingestion/scope-resolution/scope/walkers.ts +++ b/gitnexus/src/core/ingestion/scope-resolution/scope/walkers.ts @@ -181,6 +181,8 @@ export function namesAtScope(scopeId: ScopeId, scopes: ScopeResolutionIndexes): export function isClassLike(t: string): boolean { return ( t === 'Class' || + t === 'Protocol' || + t === 'Category' || t === 'Interface' || t === 'Struct' || t === 'Record' || diff --git a/gitnexus/src/core/ingestion/tree-sitter-queries.ts b/gitnexus/src/core/ingestion/tree-sitter-queries.ts index 2a157dea6..a930eb69a 100644 --- a/gitnexus/src/core/ingestion/tree-sitter-queries.ts +++ b/gitnexus/src/core/ingestion/tree-sitter-queries.ts @@ -2610,12 +2610,15 @@ export const ZIG_QUERIES = ` import { SupportedLanguages } from 'gitnexus-shared'; +const OBJECTIVE_C_QUERIES = `((translation_unit) @objc.root)`; + export const LANGUAGE_QUERIES: Record = { [SupportedLanguages.TypeScript]: TYPESCRIPT_QUERIES, [SupportedLanguages.JavaScript]: JAVASCRIPT_QUERIES, [SupportedLanguages.Python]: PYTHON_QUERIES, [SupportedLanguages.Java]: JAVA_QUERIES, [SupportedLanguages.C]: C_QUERIES, + [SupportedLanguages.ObjectiveC]: OBJECTIVE_C_QUERIES, [SupportedLanguages.Go]: GO_QUERIES, [SupportedLanguages.CPlusPlus]: CPP_QUERIES, [SupportedLanguages.CSharp]: CSHARP_QUERIES, diff --git a/gitnexus/src/core/ingestion/utils/symbol-labels.ts b/gitnexus/src/core/ingestion/utils/symbol-labels.ts index 0751324dc..5f9eb86eb 100644 --- a/gitnexus/src/core/ingestion/utils/symbol-labels.ts +++ b/gitnexus/src/core/ingestion/utils/symbol-labels.ts @@ -23,6 +23,8 @@ export const SYMBOL_NODE_LABELS: ReadonlySet = new Set([ 'Function', 'Method', 'Class', + 'Protocol', + 'Category', 'Interface', 'CodeElement', 'Struct', diff --git a/gitnexus/src/core/ingestion/workers/parse-worker.ts b/gitnexus/src/core/ingestion/workers/parse-worker.ts index 0e8c8c65d..e7fce46e8 100644 --- a/gitnexus/src/core/ingestion/workers/parse-worker.ts +++ b/gitnexus/src/core/ingestion/workers/parse-worker.ts @@ -19,7 +19,7 @@ import PHP from 'tree-sitter-php'; import Ruby from 'tree-sitter-ruby'; import { requireVendoredGrammar } from '../../tree-sitter/vendored-grammars.js'; import { SupportedLanguages } from 'gitnexus-shared'; -import { getProvider } from '../languages/index.js'; +import { getLanguageForFileContent, getProvider } from '../languages/index.js'; import { getTreeSitterBufferSize, getTreeSitterContentByteLength, @@ -87,6 +87,11 @@ let Zig: TreeSitterLanguage | null = null; try { Zig = requireVendoredGrammar('tree-sitter-zig') as TreeSitterLanguage; } catch {} + +let ObjectiveC: TreeSitterLanguage | null = null; +try { + ObjectiveC = requireVendoredGrammar('tree-sitter-objc') as TreeSitterLanguage; +} catch {} import { getLanguageFromFilename } from 'gitnexus-shared'; import { buildDefinitionPreScan, @@ -251,7 +256,7 @@ interface ParsedRelationship { id: string; sourceId: string; targetId: string; - type: 'DEFINES' | 'HAS_METHOD' | 'HAS_PROPERTY'; + type: 'DEFINES' | 'DECLARES' | 'HAS_METHOD' | 'HAS_PROPERTY'; confidence: number; reason: string; } @@ -557,6 +562,7 @@ const languageMap: Record = { [SupportedLanguages.Java]: Java, ...(C ? { [SupportedLanguages.C]: C } : {}), [SupportedLanguages.CPlusPlus]: CPP, + ...(ObjectiveC ? { [SupportedLanguages.ObjectiveC]: ObjectiveC } : {}), [SupportedLanguages.CSharp]: CSharp, [SupportedLanguages.Go]: Go, [SupportedLanguages.Rust]: Rust, @@ -1269,7 +1275,7 @@ const processBatch = ( // Group by language to minimize setLanguage calls const byLanguage = new Map(); for (const file of files) { - const lang = getLanguageFromFilename(file.path); + const lang = getLanguageForFileContent(file.path, file.content); if (!lang) continue; let list = byLanguage.get(lang); if (!list) { @@ -1728,6 +1734,52 @@ const processFileGroup = ( result.parsedFiles.push(withChannels); } + const semanticGraph = provider.extractSemanticGraph?.(tree, file.path, parseContent); + if (semanticGraph !== undefined) { + for (const node of semanticGraph.nodes) { + result.nodes.push({ + id: node.id, + label: node.label, + properties: { ...node.properties }, + }); + } + for (const relationship of semanticGraph.relationships) { + if ( + relationship.type === 'DECLARES' || + relationship.type === 'DEFINES' || + relationship.type === 'HAS_METHOD' || + relationship.type === 'HAS_PROPERTY' + ) { + result.relationships.push({ ...relationship, type: relationship.type }); + } + } + for (const symbol of semanticGraph.symbols) { + result.symbols.push({ + filePath: symbol.filePath, + name: symbol.name, + nodeId: symbol.nodeId, + type: symbol.type, + ...(symbol.qualifiedName !== undefined ? { qualifiedName: symbol.qualifiedName } : {}), + ...(symbol.parameterCount !== undefined ? { parameterCount: symbol.parameterCount } : {}), + ...(symbol.requiredParameterCount !== undefined + ? { requiredParameterCount: symbol.requiredParameterCount } + : {}), + ...(symbol.parameterTypes !== undefined + ? { parameterTypes: [...symbol.parameterTypes] } + : {}), + ...(symbol.parameterTypeClasses !== undefined + ? { parameterTypeClasses: [...symbol.parameterTypeClasses] } + : {}), + ...(symbol.returnType !== undefined ? { returnType: symbol.returnType } : {}), + ...(symbol.declaredType !== undefined ? { declaredType: symbol.declaredType } : {}), + ...(symbol.ownerId !== undefined ? { ownerId: symbol.ownerId } : {}), + ...(symbol.visibility !== undefined ? { visibility: symbol.visibility } : {}), + ...(symbol.isStatic !== undefined ? { isStatic: symbol.isStatic } : {}), + ...(symbol.isReadonly !== undefined ? { isReadonly: symbol.isReadonly } : {}), + }); + } + } + // Build per-file type environment + constructor bindings in a single AST walk. // The legacy heritage pre-pass that seeded a file-local parentMap for // buildTypeEnv was removed in RING4-1 (#942) along with the rest of the diff --git a/gitnexus/src/core/lbug/csv-generator.ts b/gitnexus/src/core/lbug/csv-generator.ts index 76d1b56be..1d5c680b6 100644 --- a/gitnexus/src/core/lbug/csv-generator.ts +++ b/gitnexus/src/core/lbug/csv-generator.ts @@ -568,6 +568,8 @@ export const streamAllCSVsToDisk = async ( const multiLangHeader = 'id,name,filePath,startLine,endLine,content,description'; const constHeader = `${multiLangHeader},convexEndpointFactory`; const MULTI_LANG_TYPES = [ + 'Protocol', + 'Category', 'Struct', 'Enum', 'Macro', diff --git a/gitnexus/src/core/lbug/schema.ts b/gitnexus/src/core/lbug/schema.ts index d8c66d906..5abc7bc46 100644 --- a/gitnexus/src/core/lbug/schema.ts +++ b/gitnexus/src/core/lbug/schema.ts @@ -69,6 +69,30 @@ CREATE NODE TABLE Class ( PRIMARY KEY (id) )`; +export const PROTOCOL_SCHEMA = ` +CREATE NODE TABLE Protocol ( + id STRING, + name STRING, + filePath STRING, + startLine INT64, + endLine INT64, + content STRING, + description STRING, + PRIMARY KEY (id) +)`; + +export const CATEGORY_SCHEMA = ` +CREATE NODE TABLE Category ( + id STRING, + name STRING, + filePath STRING, + startLine INT64, + endLine INT64, + content STRING, + description STRING, + PRIMARY KEY (id) +)`; + export const INTERFACE_SCHEMA = ` CREATE NODE TABLE Interface ( id STRING, @@ -581,6 +605,9 @@ export const STRUCTURAL_PAIR_DDL = ` FROM File TO Folder, FROM \`Module\` TO \`Namespace\`, FROM \`Namespace\` TO Function, FROM CodeElement TO CodeElement, + FROM CodeElement TO Class, + FROM CodeElement TO Category, + FROM CodeElement TO Method, FROM CodeElement TO \`Module\`, FROM CodeElement TO \`Property\`, FROM Section TO Section, @@ -714,6 +741,8 @@ export const NODE_SCHEMA_QUERIES = [ FOLDER_SCHEMA, FUNCTION_SCHEMA, CLASS_SCHEMA, + PROTOCOL_SCHEMA, + CATEGORY_SCHEMA, INTERFACE_SCHEMA, METHOD_SCHEMA, CODE_ELEMENT_SCHEMA, diff --git a/gitnexus/src/core/search/fts-schema.ts b/gitnexus/src/core/search/fts-schema.ts index eca162448..56acb8385 100644 --- a/gitnexus/src/core/search/fts-schema.ts +++ b/gitnexus/src/core/search/fts-schema.ts @@ -25,6 +25,8 @@ export const FTS_INDEXES: readonly FTSIndexDefinition[] = [ // Original 5 (minus File) gain `description`. { table: 'Function', indexName: 'function_fts', properties: FTS_PROPERTIES }, { table: 'Class', indexName: 'class_fts', properties: FTS_PROPERTIES }, + { table: 'Protocol', indexName: 'protocol_fts', properties: FTS_PROPERTIES }, + { table: 'Category', indexName: 'category_fts', properties: FTS_PROPERTIES }, { table: 'Method', indexName: 'method_fts', properties: FTS_PROPERTIES }, { table: 'Interface', indexName: 'interface_fts', properties: FTS_PROPERTIES }, // Remaining EMBEDDABLE_LABELS symbol tables — all CODE_ELEMENT_BASE-shaped diff --git a/gitnexus/src/core/tree-sitter/parser-loader.ts b/gitnexus/src/core/tree-sitter/parser-loader.ts index 8aed12547..33c49fb4f 100644 --- a/gitnexus/src/core/tree-sitter/parser-loader.ts +++ b/gitnexus/src/core/tree-sitter/parser-loader.ts @@ -96,6 +96,17 @@ const SOURCES: Record = { unavailableNote: 'C++ parsing requires `tree-sitter-cpp`. Check the install and native binding.', }, + [SupportedLanguages.ObjectiveC]: { + load: () => requireVendoredGrammar('tree-sitter-objc'), + optional: true, + severity: 'error', + unavailableNote: + 'Objective-C parsing disabled: vendored `tree-sitter-objc` (under ' + + '`gitnexus/vendor/tree-sitter-objc`) could not be loaded. GitNexus ships ' + + 'prebuilt binaries for supported macOS/Linux runner architectures; this usually ' + + 'indicates a corrupted install or native ABI mismatch with the bundled ' + + 'tree-sitter@0.21.1 runtime.', + }, [SupportedLanguages.Go]: { load: () => _require('tree-sitter-go'), unavailableNote: 'Go parsing requires `tree-sitter-go`. Check the install and native binding.', diff --git a/gitnexus/src/core/tree-sitter/vendored-grammars.ts b/gitnexus/src/core/tree-sitter/vendored-grammars.ts index b920c7474..932ec1a70 100644 --- a/gitnexus/src/core/tree-sitter/vendored-grammars.ts +++ b/gitnexus/src/core/tree-sitter/vendored-grammars.ts @@ -33,6 +33,7 @@ export const VENDORED_GRAMMAR_PACKAGES: ReadonlySet = new Set([ 'tree-sitter-proto', 'tree-sitter-swift', 'tree-sitter-kotlin', + 'tree-sitter-objc', 'tree-sitter-zig', ]); @@ -43,7 +44,7 @@ export const vendoredGrammarDir = (packageName: string): string => /** * Load a vendored tree-sitter grammar by its absolute path under `vendor/`. * - * GitNexus vendors six grammars (c/dart/proto/swift/kotlin/zig) inside its own + * GitNexus vendors seven grammars (c/dart/proto/swift/kotlin/objc/zig) inside its own * package under `vendor/`, each shipping committed per-platform prebuilds. They * are deliberately NOT npm dependencies and must NEVER be copied into * `node_modules`: an undeclared package under `node_modules` is "extraneous" to diff --git a/gitnexus/src/mcp/local/local-backend.ts b/gitnexus/src/mcp/local/local-backend.ts index 52eaccea1..75b122a24 100644 --- a/gitnexus/src/mcp/local/local-backend.ts +++ b/gitnexus/src/mcp/local/local-backend.ts @@ -328,6 +328,8 @@ export const VALID_NODE_LABELS = new Set([ 'Folder', 'Function', 'Class', + 'Protocol', + 'Category', 'Interface', 'Method', 'CodeElement', @@ -4249,7 +4251,7 @@ export class LocalBackend { repo.lbugPath, ` MATCH (caller)-[r:CodeRelation]->(n {id: $symId}) - WHERE r.type IN ['CALLS', 'IMPORTS', 'EXTENDS', 'IMPLEMENTS', 'USES', 'HAS_METHOD', 'HAS_PROPERTY', 'METHOD_OVERRIDES', 'OVERRIDES', 'METHOD_IMPLEMENTS', 'ACCESSES'] + WHERE r.type IN ['CALLS', 'IMPORTS', 'EXTENDS', 'IMPLEMENTS', 'MEMBER_OF', 'USES', 'DECLARES', 'HAS_METHOD', 'HAS_PROPERTY', 'METHOD_OVERRIDES', 'OVERRIDES', 'METHOD_IMPLEMENTS', 'ACCESSES'] RETURN r.type AS relType, caller.id AS uid, caller.name AS name, caller.filePath AS filePath, labels(caller)[0] AS kind ORDER BY uid, relType LIMIT 30 @@ -4404,7 +4406,7 @@ export class LocalBackend { repo.lbugPath, ` MATCH (n {id: $symId})-[r:CodeRelation]->(target) - WHERE r.type IN ['CALLS', 'IMPORTS', 'EXTENDS', 'IMPLEMENTS', 'USES', 'HAS_METHOD', 'HAS_PROPERTY', 'METHOD_OVERRIDES', 'OVERRIDES', 'METHOD_IMPLEMENTS', 'ACCESSES'] + WHERE r.type IN ['CALLS', 'IMPORTS', 'EXTENDS', 'IMPLEMENTS', 'MEMBER_OF', 'USES', 'DECLARES', 'HAS_METHOD', 'HAS_PROPERTY', 'METHOD_OVERRIDES', 'OVERRIDES', 'METHOD_IMPLEMENTS', 'ACCESSES'] RETURN r.type AS relType, target.id AS uid, target.name AS name, target.filePath AS filePath, labels(target)[0] AS kind ORDER BY uid, relType LIMIT 30 diff --git a/gitnexus/src/storage/parse-cache.ts b/gitnexus/src/storage/parse-cache.ts index 743b810b4..42f336c42 100644 --- a/gitnexus/src/storage/parse-cache.ts +++ b/gitnexus/src/storage/parse-cache.ts @@ -735,7 +735,14 @@ import { copyV8CacheIfPresent, tryLoadV8Cache, writeV8CacheFile } from './v8-sid // v93: Zig call captures inside a comptime-false branch carry // `@reference.static-gated` (feat/zig-static-gated-edges); the site gains // `staticGated` and the CALLS edge a BOOLEAN column. -const SCHEMA_BUMP = 93; +// v94: Objective-C now elides bare, file-scope macro markers before parsing. +// A warm v93 cache can retain error-recovered trees and provider facts that +// omit Objective-C declarations following markers such as RCT_EXTERN_C_END. +// v95: Objective-C header classification no longer treats framework `#import` +// alone as Objective-C syntax. A warm v94 cache can replay Objective-C worker +// output for a C++ header during `--force`, even though the current classifier +// routes that same header through the C++ provider. +const SCHEMA_BUMP = 95; const GITNEXUS_PKG_VERSION = (() => { try { // package.json sits at gitnexus/package.json — two levels up from diff --git a/gitnexus/test/fixtures/objective-c/SYModuleBridge.mm b/gitnexus/test/fixtures/objective-c/SYModuleBridge.mm new file mode 100644 index 000000000..ffbc923cd --- /dev/null +++ b/gitnexus/test/fixtures/objective-c/SYModuleBridge.mm @@ -0,0 +1,9 @@ +#import "SYModuleCaller.h" + +@interface SYModuleBridge : NSObject +- (void)bridgeValue:(NSInteger)value; +@end + +@implementation SYModuleBridge +- (void)bridgeValue:(NSInteger)value {} +@end diff --git a/gitnexus/test/fixtures/objective-c/SYModuleCaller.h b/gitnexus/test/fixtures/objective-c/SYModuleCaller.h new file mode 100644 index 000000000..c55ed20db --- /dev/null +++ b/gitnexus/test/fixtures/objective-c/SYModuleCaller.h @@ -0,0 +1,32 @@ +#import + +#define RCT_EXTERN_C_BEGIN +#define RCT_EXTERN_C_END + +RCT_EXTERN_C_BEGIN +typedef struct SYModuleMethodInfo { + const char *const name; +} SYModuleMethodInfo; +RCT_EXTERN_C_END + +int SYModuleSupportAdd(int a, int b); + +@protocol SYModuleRunnable +- (void)runTask:(NSString *)name completion:(void (^)(BOOL ok))completion; +@end + +@interface SYBaseCaller : NSObject +- (void)loadData:(NSString *)name completion:(void (^)(BOOL ok))completion; +@end + +@interface SYModuleCaller : SYBaseCaller { + SYBaseCaller *_base; +} +@property (nonatomic, strong) SYBaseCaller *helper; ++ (instancetype)sharedCaller; +- (void)runTask:(NSString *)name completion:(void (^)(BOOL ok))completion; +@end + +@interface SYModuleCaller (Tracing) +- (void)traceEvent:(NSString *)name; +@end diff --git a/gitnexus/test/fixtures/objective-c/SYModuleCaller.m b/gitnexus/test/fixtures/objective-c/SYModuleCaller.m new file mode 100644 index 000000000..9e70c83fc --- /dev/null +++ b/gitnexus/test/fixtures/objective-c/SYModuleCaller.m @@ -0,0 +1,32 @@ +#import "SYModuleCaller.h" +#include "SYModuleSupport.h" +@import Foundation; + +#define SY_OBJC_RECEIVER(x) x + +@interface SYModuleCaller () +@property (nonatomic, strong) SYBaseCaller *privateHelper; +@end + +@implementation SYModuleCaller ++ (instancetype)sharedCaller { return [SYModuleCaller new]; } +- (void)runTask:(NSString *)name completion:(void (^)(BOOL ok))completion { + SYBaseCaller *typed = self.helper; + id dynamic = typed; + [self traceEvent:name]; + [SY_OBJC_RECEIVER(self) traceEvent:name]; + [super loadData:name completion:completion]; + [self loadData:name completion:completion]; + [typed loadData:name completion:completion]; + [dynamic loadData:name completion:completion]; +} +- (void)runProtocol:(id)runner { + [runner runTask:@"x" completion:^(BOOL ok) {}]; +} +@end + +@implementation SYModuleCaller (Tracing) +- (void)traceEvent:(NSString *)name {} +@end + +static int SYModuleCompute(int value) { return value + 1; } diff --git a/gitnexus/test/fixtures/objective-c/SYModuleSupport.h b/gitnexus/test/fixtures/objective-c/SYModuleSupport.h new file mode 100644 index 000000000..08d72ae53 --- /dev/null +++ b/gitnexus/test/fixtures/objective-c/SYModuleSupport.h @@ -0,0 +1,4 @@ +#ifndef SY_MODULE_SUPPORT_H +#define SY_MODULE_SUPPORT_H +int SYModuleSupportAdd(int a, int b); +#endif diff --git a/gitnexus/test/helpers/grammar-introspection.ts b/gitnexus/test/helpers/grammar-introspection.ts index 503290ab5..d61af9b5d 100644 --- a/gitnexus/test/helpers/grammar-introspection.ts +++ b/gitnexus/test/helpers/grammar-introspection.ts @@ -109,7 +109,7 @@ interface NodeTypeEntry { /** Resolve the on-disk directory of an installed package, or null if absent. */ function resolvePackageDir(pkg: string): string | null { - // Vendored grammars (c/dart/proto/swift/kotlin/zig) are NOT in node_modules — they + // Vendored grammars (c/dart/proto/swift/kotlin/objc/zig) are NOT in node_modules — they // load from vendor/ by absolute path (vendored-grammars.ts / #2111), so resolve // their node-types.json from there rather than via _require.resolve. if (VENDORED_GRAMMAR_PACKAGES.has(pkg)) { diff --git a/gitnexus/test/integration/csv-pipeline.test.ts b/gitnexus/test/integration/csv-pipeline.test.ts index b2534d67e..78be85580 100644 --- a/gitnexus/test/integration/csv-pipeline.test.ts +++ b/gitnexus/test/integration/csv-pipeline.test.ts @@ -151,6 +151,50 @@ describe('streamAllCSVsToDisk', () => { expect(await readAllRelRows(result.relsByPair)).toHaveLength(3); }); + it('persists Protocol and Category nodes and their structural relationships', async () => { + const graph = buildTestGraph( + [ + { + id: 'Protocol:objc:protocol:Runnable', + label: 'Protocol', + name: 'Runnable', + filePath: 'src/Runnable.h', + }, + { + id: 'Class:objc:class:Worker', + label: 'Class', + name: 'Worker', + filePath: 'src/Worker.h', + }, + { + id: 'Category:objc:category:Worker:Tracing', + label: 'Category', + name: 'Tracing', + filePath: 'src/Worker+Tracing.m', + }, + ], + [ + { + sourceId: 'Class:objc:class:Worker', + targetId: 'Protocol:objc:protocol:Runnable', + type: 'IMPLEMENTS', + }, + { + sourceId: 'Category:objc:category:Worker:Tracing', + targetId: 'Class:objc:class:Worker', + type: 'MEMBER_OF', + }, + ], + ); + + const result = await streamAllCSVsToDisk(graph, repoDir, csvDir); + + expect(result.nodeFiles.get('Protocol')?.rows).toBe(1); + expect(result.nodeFiles.get('Category')?.rows).toBe(1); + expect(result.relsByPair.get('Class|Protocol')?.rows).toBe(1); + expect(result.relsByPair.get('Category|Class')?.rows).toBe(1); + }); + it('CSV content is properly escaped', async () => { const graph = buildTestGraph([ { diff --git a/gitnexus/test/integration/objective-c-provider.test.ts b/gitnexus/test/integration/objective-c-provider.test.ts new file mode 100644 index 000000000..bb0f584a2 --- /dev/null +++ b/gitnexus/test/integration/objective-c-provider.test.ts @@ -0,0 +1,767 @@ +import { afterAll, beforeAll, describe, expect, it } from 'vitest'; +import { execSync } from 'child_process'; +import fs from 'fs'; +import os from 'os'; +import path from 'path'; +import { fileURLToPath } from 'url'; +import type { GraphNode, RelationshipType } from 'gitnexus-shared'; +import { runPipelineFromRepo } from '../../src/core/ingestion/pipeline.js'; +import { runFullAnalysis } from '../../src/core/run-analyze.js'; +import { LocalBackend } from '../../src/mcp/local/local-backend.js'; +import { classifyObjectiveCFileContent } from '../../src/core/ingestion/languages/objective-c.js'; +import type { PipelineResult } from '../../src/types/pipeline.js'; + +const FIXTURE_DIR = path.resolve( + path.dirname(fileURLToPath(import.meta.url)), + '../fixtures/objective-c', +); + +function readFixture(name: string): string { + return fs.readFileSync(path.join(FIXTURE_DIR, name), 'utf8'); +} + +const HEADER = readFixture('SYModuleCaller.h'); +const IMPL = readFixture('SYModuleCaller.m'); +const MM_IMPL = readFixture('SYModuleBridge.mm'); +const PLAIN_C_HEADER = readFixture('SYModuleSupport.h'); + +const HEADER_V2 = HEADER.replace( + '- (void)runTask:(NSString *)name completion:(void (^)(BOOL ok))completion;\n@end', + '- (void)runTask:(NSString *)name completion:(void (^)(BOOL ok))completion;\n- (void)cancelTask;\n@end', +).replace( + '- (void)traceEvent:(NSString *)name;\n@end', + '- (void)traceEvent:(NSString *)name;\n- (void)traceDetail:(NSString *)name level:(NSInteger)level;\n@end', +); + +const IMPL_V2 = IMPL.replace( + '[self traceEvent:name];', + '[self traceEvent:name];\n [self traceDetail:name level:1];', +).replace( + '@implementation SYModuleCaller (Tracing)\n- (void)traceEvent:(NSString *)name {}\n@end', + '@implementation SYModuleCaller (Tracing)\n- (void)traceEvent:(NSString *)name {}\n- (void)traceDetail:(NSString *)name level:(NSInteger)level {}\n@end', +); + +function git(repoRoot: string, command: string): void { + execSync(command, { cwd: repoRoot, stdio: 'pipe' }); +} + +function gitCommitAll(repoRoot: string, message: string): void { + git(repoRoot, 'git -c user.name=test -c user.email=t@t -c commit.gpgsign=false add -A'); + git( + repoRoot, + `git -c user.name=test -c user.email=t@t -c commit.gpgsign=false commit -q -m "${message}"`, + ); +} + +function writeObjectiveCRepo(repoRoot: string, header = HEADER, impl = IMPL): void { + fs.writeFileSync(path.join(repoRoot, 'SYModuleCaller.h'), header); + fs.writeFileSync(path.join(repoRoot, 'SYModuleCaller.m'), impl); + fs.writeFileSync(path.join(repoRoot, 'SYModuleBridge.mm'), MM_IMPL); + fs.writeFileSync(path.join(repoRoot, 'SYModuleSupport.h'), PLAIN_C_HEADER); +} + +function normalizeRows(rows: unknown): unknown[] { + if (!Array.isArray(rows)) return []; + return rows + .map((row) => { + const record = row as Record; + return { + uid: record.uid ?? record.id, + name: record.name, + filePath: record.filePath, + kind: record.kind, + }; + }) + .sort((left, right) => + `${left.uid ?? ''}:${left.name ?? ''}:${left.filePath ?? ''}`.localeCompare( + `${right.uid ?? ''}:${right.name ?? ''}:${right.filePath ?? ''}`, + ), + ); +} + +function normalizeBuckets(value: unknown): Record { + const record = (value ?? {}) as Record; + return Object.fromEntries( + Object.keys(record) + .sort() + .map((key) => [key, normalizeRows(record[key])]), + ); +} + +function normalizeContext(value: unknown): Record { + const record = value as Record; + const symbol = (record.symbol ?? {}) as Record; + return { + status: record.status, + symbol: { + uid: symbol.uid, + name: symbol.name, + kind: symbol.kind, + filePath: symbol.filePath, + }, + incoming: normalizeBuckets(record.incoming), + outgoing: normalizeBuckets(record.outgoing), + }; +} + +async function readPersistedObjectiveCSurface(repoRoot: string): Promise> { + const backend = new LocalBackend(); + try { + const classContext = await backend.callTool('context', { + name: 'SYModuleCaller', + file_path: 'SYModuleCaller.h', + repo: repoRoot, + }); + const runTaskContext = await backend.callTool('context', { + uid: 'Method:objc:method:objc:class:SYModuleCaller:-:runTask:completion:', + repo: repoRoot, + }); + const runProtocolContext = await backend.callTool('context', { + uid: 'Method:objc:method:objc:class:SYModuleCaller:-:runProtocol:', + repo: repoRoot, + }); + const candidateEvidenceId = ( + ( + (runProtocolContext as Record).outgoing as + | Record + | undefined + )?.uses ?? [] + ) + .map((entry) => (entry as Record).uid) + .find( + (uid): uid is string => + typeof uid === 'string' && uid.startsWith('CodeElement:objc:protocol-candidates:'), + ); + if (candidateEvidenceId === undefined) { + throw new Error('Persisted protocol candidate evidence was not reachable from context'); + } + const candidateEvidenceContext = await backend.callTool('context', { + uid: candidateEvidenceId, + repo: repoRoot, + }); + const categoryContext = await backend.callTool('context', { + uid: 'Category:objc:category:SYModuleCaller:Tracing', + repo: repoRoot, + }); + const queryResult = (await backend.callTool('query', { + search_query: 'SYModuleCaller', + repo: repoRoot, + limit: 5, + include_content: false, + })) as Record; + const protocolAndCategoryResult = await backend.callTool('cypher', { + query: + "MATCH (n) WHERE labels(n) IN ['Protocol', 'Category'] " + + 'RETURN n.id AS id, labels(n)[0] AS kind ORDER BY kind, id', + repo: repoRoot, + }); + const categoryHostResult = await backend.callTool('cypher', { + query: + 'MATCH (category:Category)-[r:CodeRelation]->(host:Class) ' + + "WHERE r.type = 'MEMBER_OF' " + + 'RETURN category.id AS category, host.id AS host', + repo: repoRoot, + }); + const protocolCandidateResult = await backend.callTool('cypher', { + query: + 'MATCH (source:Method)-[sourceRel:CodeRelation]->(e:CodeElement)-[candidateRel:CodeRelation]->(candidate:Method) ' + + "WHERE sourceRel.type = 'USES' AND candidateRel.type = 'USES' " + + "AND e.id STARTS WITH 'CodeElement:objc:protocol-candidates:' " + + 'RETURN source.id AS sourceId, candidate.id AS candidateId, candidateRel.reason AS reason ' + + 'ORDER BY sourceId, candidateId', + repo: repoRoot, + }); + const unresolvedReasonResult = await backend.callTool('cypher', { + query: + 'MATCH (source:Method)-[r:CodeRelation]->(e:CodeElement) ' + + "WHERE r.type = 'USES' AND e.id STARTS WITH 'CodeElement:objc:unresolved:' " + + 'RETURN source.id AS sourceId, e.name AS evidence, r.reason AS reason ' + + 'ORDER BY sourceId, evidence', + repo: repoRoot, + }); + return { + classContext: normalizeContext(classContext), + runTaskContext: normalizeContext(runTaskContext), + runProtocolContext: normalizeContext(runProtocolContext), + candidateEvidenceContext: normalizeContext(candidateEvidenceContext), + categoryContext: normalizeContext(categoryContext), + queryDefinitions: normalizeRows(queryResult.definitions), + protocolAndCategoryResult, + categoryHostResult, + protocolCandidateResult, + unresolvedReasonResult, + }; + } finally { + await backend.disconnect(); + } +} + +async function analyzeObjectiveCRepo( + repoRoot: string, + options: { force?: boolean } = {}, +): Promise { + const logs: string[] = []; + await runFullAnalysis( + repoRoot, + { + force: options.force, + skipAgentsMd: true, + skipSkills: true, + workerPoolSize: 1, + }, + { + onProgress: () => undefined, + onLog: (message) => logs.push(message), + }, + ); + return logs; +} + +describe('Objective-C provider integration', () => { + let repoRoot: string; + let result: PipelineResult; + + beforeAll(async () => { + repoRoot = fs.mkdtempSync(path.join(os.tmpdir(), 'gitnexus-objc-provider-')); + fs.writeFileSync(path.join(repoRoot, 'SYModuleCaller.h'), HEADER); + fs.writeFileSync(path.join(repoRoot, 'SYModuleCaller.m'), IMPL); + fs.writeFileSync(path.join(repoRoot, 'SYModuleBridge.mm'), MM_IMPL); + fs.writeFileSync(path.join(repoRoot, 'SYModuleSupport.h'), PLAIN_C_HEADER); + result = await runPipelineFromRepo(repoRoot, () => undefined, { + workerPoolSize: 1, + }); + }, 60000); + + afterAll(() => { + fs.rmSync(repoRoot, { recursive: true, force: true }); + }); + + function nodeByQualifiedName(qualifiedName: string): GraphNode | undefined { + return result.graph.nodes.find((node) => node.properties.qualifiedName === qualifiedName); + } + + function expectNode(qualifiedName: string, label: GraphNode['label']): GraphNode { + const node = nodeByQualifiedName(qualifiedName); + expect(node, qualifiedName).toBeDefined(); + expect(node?.label).toBe(label); + if (node === undefined) throw new Error(`Missing expected node ${qualifiedName}`); + return node; + } + + function hasRelationship( + type: RelationshipType, + sourceId: string, + targetId: string, + reason?: string | RegExp, + ): boolean { + return result.graph.relationships.some((rel) => { + if (rel.type !== type || rel.sourceId !== sourceId || rel.targetId !== targetId) return false; + if (reason === undefined) return true; + return typeof reason === 'string' ? rel.reason === reason : reason.test(rel.reason); + }); + } + + it('classifies a macro-wrapped Objective-C header by declarations after the marker', () => { + expect( + classifyObjectiveCFileContent( + 'RCTBridgeModule.h', + [ + 'RCT_EXTERN_C_BEGIN', + 'typedef struct RCTMethodInfo {', + ' const char *const jsName;', + '} RCTMethodInfo;', + 'RCT_EXTERN_C_END', + '@protocol RCTBridgeModule ', + '- (void)run;', + '@end', + '', + ].join('\n'), + ), + ).toBe(true); + }); + + it('indexes Objective-C semantic nodes beyond File nodes', () => { + expectNode('objc:protocol:SYModuleRunnable', 'Protocol'); + expectNode('objc:class:SYBaseCaller', 'Class'); + expectNode('objc:class:SYModuleCaller', 'Class'); + expectNode('objc:class:SYModuleBridge', 'Class'); + expectNode('objc:category:SYModuleCaller:Tracing', 'Category'); + expectNode('objc:method:objc:class:SYModuleCaller:-:runTask:completion:', 'Method'); + expectNode('objc:method:objc:class:SYModuleBridge:-:bridgeValue:', 'Method'); + expectNode('objc:method:objc:class:SYModuleCaller:+:sharedCaller', 'Method'); + expectNode('objc:method:objc:category:SYModuleCaller:Tracing:-:traceEvent:', 'Method'); + expectNode('objc:property:objc:class:SYModuleCaller:helper', 'Property'); + expectNode('objc:ivar:objc:class:SYModuleCaller:_base', 'Variable'); + expectNode('objc:function:SYModuleSupportAdd', 'Function'); + expectNode('objc:function:static:SYModuleCaller.m:SYModuleCompute', 'Function'); + }); + + it('emits imports, inheritance, protocol, and category host relationships', () => { + const caller = expectNode('objc:class:SYModuleCaller', 'Class'); + const base = expectNode('objc:class:SYBaseCaller', 'Class'); + const protocol = expectNode('objc:protocol:SYModuleRunnable', 'Protocol'); + const category = expectNode('objc:category:SYModuleCaller:Tracing', 'Category'); + + expect(hasRelationship('EXTENDS', caller.id, base.id)).toBe(true); + expect(hasRelationship('IMPLEMENTS', caller.id, protocol.id)).toBe(true); + expect(hasRelationship('MEMBER_OF', category.id, caller.id)).toBe(true); + + const importNodes = result.graph.nodes.filter((node) => node.label === 'Import'); + expect(importNodes.map((node) => node.properties.targetRaw)).toEqual( + expect.arrayContaining(['SYModuleCaller.h', 'SYModuleSupport.h', 'Foundation']), + ); + + const mFile = result.graph.nodes.find( + (node) => node.label === 'File' && node.properties.filePath === 'SYModuleCaller.m', + ); + const hFile = result.graph.nodes.find( + (node) => node.label === 'File' && node.properties.filePath === 'SYModuleCaller.h', + ); + expect(mFile).toBeDefined(); + expect(hFile).toBeDefined(); + if (mFile === undefined || hFile === undefined) { + throw new Error('Missing Objective-C fixture file nodes'); + } + expect(hasRelationship('IMPORTS', mFile.id, hFile.id)).toBe(true); + }); + + it('records implementation evidence for merged declarations', () => { + const caller = expectNode('objc:class:SYModuleCaller', 'Class'); + const runTask = expectNode( + 'objc:method:objc:class:SYModuleCaller:-:runTask:completion:', + 'Method', + ); + + const implementationEvidence = result.graph.nodes.filter( + (node) => + node.label === 'CodeElement' && + node.properties.objectiveCKind === 'implementation-evidence' && + node.properties.filePath === 'SYModuleCaller.m', + ); + expect(implementationEvidence.map((node) => node.properties.targetQualifiedName)).toEqual( + expect.arrayContaining([ + 'objc:class:SYModuleCaller', + 'objc:method:objc:class:SYModuleCaller:-:runTask:completion:', + ]), + ); + expect( + implementationEvidence.some((node) => + hasRelationship('DECLARES', node.id, caller.id, 'objc: implementation of merged symbol'), + ), + ).toBe(true); + expect( + implementationEvidence.some((node) => + hasRelationship('DECLARES', node.id, runTask.id, 'objc: implementation of merged symbol'), + ), + ).toBe(true); + }); + + it('emits conservative Objective-C message-send call edges and unresolved evidence', () => { + const runTask = expectNode( + 'objc:method:objc:class:SYModuleCaller:-:runTask:completion:', + 'Method', + ); + const loadData = expectNode( + 'objc:method:objc:class:SYBaseCaller:-:loadData:completion:', + 'Method', + ); + const traceEvent = expectNode( + 'objc:method:objc:category:SYModuleCaller:Tracing:-:traceEvent:', + 'Method', + ); + const runProtocol = expectNode( + 'objc:method:objc:class:SYModuleCaller:-:runProtocol:', + 'Method', + ); + const protocolRun = expectNode( + 'objc:method:objc:protocol:SYModuleRunnable:-:runTask:completion:', + 'Method', + ); + + expect( + hasRelationship('CALLS', runTask.id, loadData.id, /objc-message: (super|local) receiver/), + ).toBe(true); + expect(hasRelationship('CALLS', runTask.id, loadData.id, 'objc-message: self receiver')).toBe( + true, + ); + expect(hasRelationship('CALLS', runTask.id, traceEvent.id, 'objc-message: self receiver')).toBe( + true, + ); + expect( + hasRelationship('CALLS', runProtocol.id, protocolRun.id, 'objc-message: protocol receiver'), + ).toBe(true); + + const unresolved = result.graph.nodes.find( + (node) => + node.label === 'CodeElement' && + node.properties.objectiveCKind === 'unresolved-message' && + node.properties.receiver === 'dynamic', + ); + expect(unresolved).toBeDefined(); + if (unresolved === undefined) throw new Error('Missing unresolved dynamic message evidence'); + expect( + hasRelationship('CALLS', runTask.id, unresolved.id), + 'dynamic id receiver must not become a certain CALLS edge', + ).toBe(false); + expect( + hasRelationship( + 'USES', + runTask.id, + unresolved.id, + 'objc-message: unresolved: id receiver is dynamic', + ), + ).toBe(true); + expect(unresolved.properties.name).toContain('unresolved: id receiver is dynamic'); + + const macroUnresolved = result.graph.nodes.find( + (node) => + node.label === 'CodeElement' && + node.properties.objectiveCKind === 'unresolved-message' && + node.properties.receiver === 'SY_OBJC_RECEIVER(self)', + ); + expect(macroUnresolved?.properties.name).toContain( + 'unresolved: macro receiver SY_OBJC_RECEIVER is dynamic', + ); + + const candidates = result.graph.nodes.find( + (node) => + node.label === 'CodeElement' && + String(node.properties.qualifiedName).startsWith('objc:protocol-candidates:'), + ); + expect(candidates).toBeDefined(); + if (candidates === undefined) throw new Error('Missing protocol candidate evidence'); + expect( + hasRelationship( + 'USES', + runProtocol.id, + candidates.id, + 'objc-message: protocol receiver candidates: SYModuleRunnable runTask:completion:', + ), + ).toBe(true); + expect( + hasRelationship( + 'USES', + candidates.id, + runTask.id, + 'objc-protocol-candidate: SYModuleRunnable runTask:completion:', + ), + ).toBe(true); + expect( + hasRelationship('CALLS', runProtocol.id, runTask.id), + 'candidate implementations must not become certain CALLS edges', + ).toBe(false); + }); + + it('resolves header member types across files and keeps static C helpers distinct', async () => { + const crossFileRepo = fs.mkdtempSync(path.join(os.tmpdir(), 'gitnexus-objc-cross-file-')); + try { + fs.writeFileSync( + path.join(crossFileRepo, 'Helper.h'), + '@interface Helper\n- (void)ping;\n@end\n', + ); + fs.writeFileSync( + path.join(crossFileRepo, 'Worker.h'), + '#import "Helper.h"\n@interface Worker { Helper *_helper; }\n@property Helper *helper;\n- (void)run;\n@end\n', + ); + fs.writeFileSync( + path.join(crossFileRepo, 'Worker.m'), + '#import "Worker.h"\n@implementation Worker\n- (void)run { [self.helper ping]; [_helper ping]; }\n@end\n', + ); + fs.writeFileSync( + path.join(crossFileRepo, 'First.m'), + 'static int helper(void) { return 1; }\n', + ); + fs.writeFileSync( + path.join(crossFileRepo, 'Second.m'), + 'static int helper(void) { return 2; }\n', + ); + + const crossFileResult = await runPipelineFromRepo(crossFileRepo, () => undefined, { + workerPoolSize: 1, + }); + const run = crossFileResult.graph.nodes.find( + (node) => + node.label === 'Method' && + node.properties.qualifiedName === 'objc:method:objc:class:Worker:-:run', + ); + const ping = crossFileResult.graph.nodes.find( + (node) => + node.label === 'Method' && + node.properties.qualifiedName === 'objc:method:objc:class:Helper:-:ping', + ); + expect(run).toBeDefined(); + expect(ping).toBeDefined(); + if (run === undefined || ping === undefined) { + throw new Error('Missing cross-file Objective-C method nodes'); + } + + const memberCalls = crossFileResult.graph.relationships.filter( + (relationship) => + relationship.type === 'CALLS' && + relationship.sourceId === run.id && + relationship.targetId === ping.id, + ); + expect(memberCalls).toHaveLength(2); + + const staticHelpers = crossFileResult.graph.nodes.filter( + (node) => node.label === 'Function' && node.properties.name === 'helper', + ); + expect(staticHelpers.map((node) => node.properties.filePath).sort()).toEqual([ + 'First.m', + 'Second.m', + ]); + expect(new Set(staticHelpers.map((node) => node.properties.qualifiedName)).size).toBe(2); + } finally { + fs.rmSync(crossFileRepo, { recursive: true, force: true }); + } + }); + + it('resolves inherited protocol members and candidates without looping on protocol cycles', async () => { + const protocolRepo = fs.mkdtempSync(path.join(os.tmpdir(), 'gitnexus-objc-protocols-')); + try { + fs.writeFileSync( + path.join(protocolRepo, 'Protocols.h'), + '@protocol Parent\n' + + '- (void)ping;\n' + + '@end\n' + + '@protocol Child \n' + + '@end\n' + + '@protocol CycleA \n' + + '- (void)cycleA;\n' + + '@end\n' + + '@protocol CycleB \n' + + '- (void)cycleB;\n' + + '@end\n' + + '@interface ConcreteWorker \n' + + '- (void)ping;\n' + + '@end\n' + + '@interface Caller\n' + + '- (void)run:(id)worker;\n' + + '- (void)runCycle:(id)worker;\n' + + '@end\n', + ); + fs.writeFileSync( + path.join(protocolRepo, 'Protocols.m'), + '#import "Protocols.h"\n' + + '@implementation ConcreteWorker\n' + + '- (void)ping {}\n' + + '@end\n' + + '@implementation Caller\n' + + '- (void)run:(id)worker { [worker ping]; }\n' + + '- (void)runCycle:(id)worker { [worker cycleB]; }\n' + + '@end\n', + ); + + const protocolResult = await runPipelineFromRepo(protocolRepo, () => undefined, { + workerPoolSize: 1, + }); + const node = (qualifiedName: string): GraphNode => { + const found = protocolResult.graph.nodes.find( + (item) => item.properties.qualifiedName === qualifiedName, + ); + if (found === undefined) throw new Error(`Missing protocol fixture node ${qualifiedName}`); + return found; + }; + const has = (type: RelationshipType, sourceId: string, targetId: string): boolean => + protocolResult.graph.relationships.some( + (relationship) => + relationship.type === type && + relationship.sourceId === sourceId && + relationship.targetId === targetId, + ); + + const caller = node('objc:method:objc:class:Caller:-:run:'); + const parentMethod = node('objc:method:objc:protocol:Parent:-:ping'); + const workerMethod = node('objc:method:objc:class:ConcreteWorker:-:ping'); + const cycleCaller = node('objc:method:objc:class:Caller:-:runCycle:'); + const cycleMethod = node('objc:method:objc:protocol:CycleB:-:cycleB'); + const candidateEvidence = protocolResult.graph.nodes.find( + (item) => + item.label === 'CodeElement' && + String(item.properties.qualifiedName).startsWith('objc:protocol-candidates:'), + ); + + expect(has('CALLS', caller.id, parentMethod.id)).toBe(true); + expect(has('CALLS', caller.id, workerMethod.id)).toBe(false); + expect(candidateEvidence).toBeDefined(); + if (candidateEvidence === undefined) + throw new Error('Missing inherited protocol candidate evidence'); + expect(has('USES', candidateEvidence.id, workerMethod.id)).toBe(true); + expect(has('CALLS', cycleCaller.id, cycleMethod.id)).toBe(true); + } finally { + fs.rmSync(protocolRepo, { recursive: true, force: true }); + } + }); + + it('emits category membership only when the host class exists locally', async () => { + const categoryRepo = fs.mkdtempSync(path.join(os.tmpdir(), 'gitnexus-objc-category-host-')); + try { + fs.writeFileSync( + path.join(categoryRepo, 'Categories.m'), + '@interface LocalHost\n@end\n' + + '@interface LocalHost (Tracing)\n@end\n' + + '@interface UIView (Tracing)\n@end\n', + ); + + const categoryResult = await runPipelineFromRepo(categoryRepo, () => undefined, { + workerPoolSize: 1, + }); + const localHost = categoryResult.graph.nodes.find( + (node) => node.properties.qualifiedName === 'objc:class:LocalHost', + ); + const localCategory = categoryResult.graph.nodes.find( + (node) => node.properties.qualifiedName === 'objc:category:LocalHost:Tracing', + ); + const sdkCategory = categoryResult.graph.nodes.find( + (node) => node.properties.qualifiedName === 'objc:category:UIView:Tracing', + ); + expect(localHost).toBeDefined(); + expect(localCategory).toBeDefined(); + expect(sdkCategory).toBeDefined(); + if (localHost === undefined || localCategory === undefined || sdkCategory === undefined) { + throw new Error('Missing category host fixture nodes'); + } + + expect( + categoryResult.graph.relationships.some( + (relationship) => + relationship.type === 'MEMBER_OF' && + relationship.sourceId === localCategory.id && + relationship.targetId === localHost.id, + ), + ).toBe(true); + expect( + categoryResult.graph.relationships.some( + (relationship) => + relationship.type === 'MEMBER_OF' && relationship.sourceId === sdkCategory.id, + ), + ).toBe(false); + } finally { + fs.rmSync(categoryRepo, { recursive: true, force: true }); + } + }); +}); + +describe('Objective-C provider persisted index behavior', () => { + it('surfaces query/context semantics and keeps incremental results aligned with force rebuild', async () => { + const repoRoot = fs.mkdtempSync(path.join(os.tmpdir(), 'gitnexus-objc-provider-index-')); + try { + writeObjectiveCRepo(repoRoot); + git(repoRoot, 'git init'); + gitCommitAll(repoRoot, 'initial Objective-C fixture'); + + await analyzeObjectiveCRepo(repoRoot); + const initialSurface = await readPersistedObjectiveCSurface(repoRoot); + const reopenedInitialSurface = await readPersistedObjectiveCSurface(repoRoot); + expect(reopenedInitialSurface).toEqual(initialSurface); + expect(initialSurface).toMatchObject({ + classContext: { + status: 'found', + symbol: { + uid: 'Class:objc:class:SYModuleCaller', + kind: 'Class', + filePath: 'SYModuleCaller.h', + }, + incoming: { + declares: expect.arrayContaining([ + expect.objectContaining({ + uid: expect.stringContaining( + 'CodeElement:objc:implementation:objc:class:SYModuleCaller:SYModuleCaller.m:', + ), + filePath: 'SYModuleCaller.m', + }), + ]), + imports: expect.arrayContaining([ + expect.objectContaining({ + uid: 'File:SYModuleCaller.m', + filePath: 'SYModuleCaller.m', + }), + ]), + member_of: expect.arrayContaining([ + expect.objectContaining({ + uid: 'Category:objc:category:SYModuleCaller:Tracing', + }), + ]), + }, + }, + categoryContext: { + outgoing: { + member_of: expect.arrayContaining([ + expect.objectContaining({ uid: 'Class:objc:class:SYModuleCaller' }), + ]), + }, + }, + runProtocolContext: { + outgoing: { + uses: expect.arrayContaining([ + expect.objectContaining({ + uid: expect.stringContaining('CodeElement:objc:protocol-candidates:'), + }), + ]), + }, + }, + candidateEvidenceContext: { + outgoing: { + uses: expect.arrayContaining([ + expect.objectContaining({ + uid: 'Method:objc:method:objc:class:SYModuleCaller:-:runTask:completion:', + }), + ]), + }, + }, + queryDefinitions: expect.arrayContaining([ + expect.objectContaining({ uid: 'Class:objc:class:SYModuleCaller' }), + expect.objectContaining({ + uid: expect.stringMatching(/^Method:objc:method:objc:class:SYModuleCaller:/), + }), + ]), + protocolAndCategoryResult: expect.objectContaining({ + markdown: expect.stringContaining('Protocol:objc:protocol:SYModuleRunnable'), + }), + categoryHostResult: expect.objectContaining({ + markdown: expect.stringContaining('Category:objc:category:SYModuleCaller:Tracing'), + }), + protocolCandidateResult: expect.objectContaining({ + markdown: expect.stringContaining( + 'objc-protocol-candidate: SYModuleRunnable runTask:completion:', + ), + }), + unresolvedReasonResult: expect.objectContaining({ + markdown: expect.stringContaining('objc-message: unresolved: id receiver is dynamic'), + }), + }); + + writeObjectiveCRepo(repoRoot, HEADER_V2, IMPL_V2); + gitCommitAll(repoRoot, 'change Objective-C declarations and implementations'); + const incrementalLogs = await analyzeObjectiveCRepo(repoRoot); + expect(incrementalLogs).toContainEqual(expect.stringContaining('Incremental: changed=')); + const incrementalSurface = await readPersistedObjectiveCSurface(repoRoot); + + await analyzeObjectiveCRepo(repoRoot, { force: true }); + const forceSurface = await readPersistedObjectiveCSurface(repoRoot); + expect(incrementalSurface).toEqual(forceSurface); + expect(forceSurface).toMatchObject({ + classContext: { + outgoing: { + has_method: expect.arrayContaining([ + expect.objectContaining({ + uid: 'Method:objc:method:objc:category:SYModuleCaller:Tracing:-:traceDetail:level:', + }), + ]), + }, + }, + runTaskContext: { + outgoing: { + calls: expect.arrayContaining([ + expect.objectContaining({ + uid: 'Method:objc:method:objc:category:SYModuleCaller:Tracing:-:traceDetail:level:', + }), + ]), + }, + }, + }); + } finally { + fs.rmSync(repoRoot, { recursive: true, force: true }); + } + }, 180000); +}); diff --git a/gitnexus/test/integration/resolvers/callable-value-flow.test.ts b/gitnexus/test/integration/resolvers/callable-value-flow.test.ts index 9aa24c68f..e57a4ad03 100644 --- a/gitnexus/test/integration/resolvers/callable-value-flow.test.ts +++ b/gitnexus/test/integration/resolvers/callable-value-flow.test.ts @@ -34,6 +34,7 @@ const CALLABLE_FLOW_PROVIDER_COVERAGE = { [SupportedLanguages.Vue]: 'matrix', [SupportedLanguages.Cobol]: 'matrix', [SupportedLanguages.Zig]: 'matrix', + [SupportedLanguages.ObjectiveC]: 'dedicated', } as const satisfies Record; const PROVIDER_FLOW_CASES = [ diff --git a/gitnexus/test/unit/analysis-features.test.ts b/gitnexus/test/unit/analysis-features.test.ts index 08d4fd24c..3d54058cd 100644 --- a/gitnexus/test/unit/analysis-features.test.ts +++ b/gitnexus/test/unit/analysis-features.test.ts @@ -6,6 +6,13 @@ import { type AnalysisFeatureDescriptor, } from '../../src/core/analysis-features.js'; import { ANALYSIS_FEATURES } from '../../src/core/analysis-feature-registry.js'; +import { OBJECTIVE_C_PROVIDER_FEATURE } from '../../src/core/ingestion/languages/objective-c/analysis-features.js'; +import { + OBJECTIVE_C_GRAMMAR_PACKAGE, + OBJECTIVE_C_GRAMMAR_VERSION, + OBJECTIVE_C_PROVIDER_VERSION, +} from '../../src/core/ingestion/languages/objective-c/facts.js'; + describe('analysis feature versions', () => { it('separates the global Class schema capability from JVM-only Bean evidence', () => { @@ -88,6 +95,32 @@ describe('analysis feature versions', () => { ]); }); + it('stamps Objective-C provider and grammar versions for semantic rebuilds', () => { + const expectedId = + `objective-c.provider-${OBJECTIVE_C_PROVIDER_VERSION}.` + + `${OBJECTIVE_C_GRAMMAR_PACKAGE}-${OBJECTIVE_C_GRAMMAR_VERSION}`; + expect(OBJECTIVE_C_PROVIDER_FEATURE.id).toBe(expectedId); + + const objcFeatures = resolveAnalysisFeatureVersions(ANALYSIS_FEATURES, [ + 'Sources/SYModuleCaller.m', + 'Sources/SYModuleCaller.mm', + 'Headers/SYModuleCaller.h', + ]); + expect(objcFeatures).toMatchObject({ + [OBJECTIVE_C_PROVIDER_FEATURE.id]: OBJECTIVE_C_PROVIDER_FEATURE.version, + }); + + expect(resolveAnalysisFeatureVersions(ANALYSIS_FEATURES, ['include/plain.hpp'])).not.toHaveProperty( + OBJECTIVE_C_PROVIDER_FEATURE.id, + ); + expect( + findAnalysisFeatureMismatches( + { [OBJECTIVE_C_PROVIDER_FEATURE.id]: OBJECTIVE_C_PROVIDER_FEATURE.version - 1 }, + { [OBJECTIVE_C_PROVIDER_FEATURE.id]: OBJECTIVE_C_PROVIDER_FEATURE.version }, + ), + ).toEqual([`version:${OBJECTIVE_C_PROVIDER_FEATURE.id}`]); + }); + it('rejects invalid or duplicate descriptors', () => { const invalid: AnalysisFeatureDescriptor = { id: 'invalid', diff --git a/gitnexus/test/unit/chunker.test.ts b/gitnexus/test/unit/chunker.test.ts index 2191bc059..513ab4a67 100644 --- a/gitnexus/test/unit/chunker.test.ts +++ b/gitnexus/test/unit/chunker.test.ts @@ -4,22 +4,24 @@ import { describe, it, expect, vi, beforeEach } from 'vitest'; import { characterChunk } from '../../src/core/embeddings/character-chunk.js'; -const { createParserForLanguage } = vi.hoisted(() => ({ +const { createParserForLanguage, resolveLanguageKey } = vi.hoisted(() => ({ createParserForLanguage: vi.fn(), + resolveLanguageKey: vi.fn((language: string, filePath?: string) => + language === 'typescript' && filePath?.endsWith('.tsx') ? 'typescript:tsx' : language, + ), })); const { getLanguageFromFilename } = vi.hoisted(() => ({ - getLanguageFromFilename: vi.fn((filePath: string) => - filePath.endsWith('.rs') ? 'rust' : 'typescript', - ), + getLanguageFromFilename: vi.fn((filePath: string) => { + if (filePath.endsWith('.m') || filePath.endsWith('.mm')) return 'objective-c'; + return filePath.endsWith('.rs') ? 'rust' : 'typescript'; + }), })); vi.mock('../../src/core/tree-sitter/parser-loader.js', () => ({ createParserForLanguage, isLanguageAvailable: vi.fn().mockReturnValue(true), - resolveLanguageKey: vi.fn((language: string, filePath?: string) => - language === 'typescript' && filePath?.endsWith('.tsx') ? 'typescript:tsx' : language, - ), + resolveLanguageKey, })); // Partial mock: `ast-utils` now resolves the LanguageProvider registry to apply @@ -120,6 +122,28 @@ const makeDeclarationTree = ( }; }; +const makeObjectiveCDeclarationTree = ( + nodeType: 'protocol_declaration' | 'class_interface', + content: string, + memberTexts: string[], +) => { + const headerName = nodeType === 'protocol_declaration' ? 'Worker' : 'Worker (Tracing)'; + const headerNode = makeFakeNode( + 'identifier', + content.indexOf(headerName), + content.indexOf(headerName) + headerName.length, + ); + let searchFrom = 0; + const memberNodes = memberTexts.map((text) => { + const startIndex = content.indexOf(text, searchFrom); + if (startIndex < 0) throw new Error(`Unable to locate member text: ${text}`); + searchFrom = startIndex + text.length; + return makeFakeNode('method_declaration', startIndex, startIndex + text.length); + }); + const declNode = makeFakeNode(nodeType, 0, content.length, [headerNode, ...memberNodes]); + return { rootNode: makeFakeNode('program', 0, content.length, [declNode]) }; +}; + describe('characterChunk', () => { it('returns single chunk when content fits', () => { const result = characterChunk('short content', 1, 5, 1200, 120); @@ -177,9 +201,14 @@ describe('characterChunk', () => { describe('chunkNode', () => { beforeEach(() => { createParserForLanguage.mockReset(); - getLanguageFromFilename.mockImplementation((filePath: string) => - filePath.endsWith('.rs') ? 'rust' : 'typescript', + resolveLanguageKey.mockReset(); + resolveLanguageKey.mockImplementation( + (language: string, filePath?: string) => `${language}:${filePath ?? ''}`, ); + getLanguageFromFilename.mockImplementation((filePath: string) => { + if (filePath.endsWith('.m') || filePath.endsWith('.mm')) return 'objective-c'; + return filePath.endsWith('.rs') ? 'rust' : 'typescript'; + }); }); it('returns single chunk for short content', async () => { @@ -279,6 +308,183 @@ describe('chunkNode', () => { expect(result[0].startLine).toBe(40); }); + it.each([ + { + label: 'Protocol', + nodeType: 'protocol_declaration' as const, + filePath: 'Worker.m', + content: [ + '@protocol Worker', + '- (void)startWithConfiguration:(id)configuration;', + '- (void)stopWithCompletion:(id)completion;', + '- (void)reloadWithOptions:(id)options;', + '@end', + ].join('\n'), + }, + { + label: 'Category', + nodeType: 'class_interface' as const, + filePath: 'Worker.mm', + content: [ + '@interface Worker (Tracing)', + '- (void)startWithConfiguration:(id)configuration;', + '- (void)stopWithCompletion:(id)completion;', + '- (void)reloadWithOptions:(id)options;', + '@end', + ].join('\n'), + }, + ])( + 'chunks Objective-C $label declarations at member boundaries', + async ({ label, nodeType, filePath, content }) => { + const members = [ + '- (void)startWithConfiguration:(id)configuration;', + '- (void)stopWithCompletion:(id)completion;', + '- (void)reloadWithOptions:(id)options;', + ]; + createParserForLanguage.mockResolvedValue({ + parse: vi.fn().mockReturnValue(makeObjectiveCDeclarationTree(nodeType, content, members)), + }); + + const result = await chunkNode(label, content, filePath, 1, 5, 90, 0); + + expect(result).toHaveLength(2); + expect(result[0].text).toContain(members[0]); + expect(result.slice(1).every((chunk) => chunk.text.startsWith('- (void)'))).toBe(true); + expect(createParserForLanguage).toHaveBeenCalledWith('objective-c', filePath); + }, + ); + + it('expands Objective-C protocol optional and required sections', async () => { + const content = [ + '@protocol P', + '@optional', + '- (void)first;', + '- (void)second;', + '@required', + '- (void)third;', + '- (void)fourth;', + '@end', + ].join('\n'); + const members = ['- (void)first;', '- (void)second;', '- (void)third;', '- (void)fourth;']; + let searchFrom = 0; + const methodNodes = members.map((text) => { + const startIndex = content.indexOf(text, searchFrom); + searchFrom = startIndex + text.length; + return makeFakeNode('method_declaration', startIndex, startIndex + text.length); + }); + const optionalStart = content.indexOf('@optional'); + const requiredStart = content.indexOf('@required'); + const optional = makeFakeNode( + 'qualified_protocol_interface_declaration', + optionalStart, + methodNodes[1].endIndex, + methodNodes.slice(0, 2), + ); + const required = makeFakeNode( + 'qualified_protocol_interface_declaration', + requiredStart, + methodNodes[3].endIndex, + methodNodes.slice(2), + ); + const header = makeFakeNode('identifier', content.indexOf('P'), content.indexOf('P') + 1); + const declaration = makeFakeNode('protocol_declaration', 0, content.length, [ + header, + optional, + required, + ]); + createParserForLanguage.mockResolvedValue({ + parse: vi.fn().mockReturnValue({ + rootNode: makeFakeNode('program', 0, content.length, [declaration]), + }), + }); + + const result = await chunkNode('Protocol', content, 'ProtocolSections.m', 1, 8, 36, 0); + const combined = result.map((chunk) => chunk.text).join('\n'); + const requiredChunk = result.find((chunk) => chunk.text.includes(members[2])); + + expect(result.length).toBeGreaterThan(1); + for (const member of members) expect(combined).toContain(member); + expect( + result.some((chunk) => chunk.text.includes(members[0]) && chunk.text.includes(members[1])), + ).toBe(false); + expect(requiredChunk?.text).toContain('@required'); + expect(requiredChunk?.text).not.toContain(members[1]); + expect(createParserForLanguage).toHaveBeenCalledWith('objective-c', 'ProtocolSections.m'); + }); + + it('expands Objective-C instance variables before chunking a class declaration', async () => { + const content = [ + '@interface Worker {', + ' id _first;', + ' id _second;', + '}', + '- (void)run;', + '@end', + ].join('\n'); + const firstIvar = 'id _first;'; + const secondIvar = 'id _second;'; + const method = '- (void)run;'; + const firstIvarStart = content.indexOf(firstIvar); + const secondIvarStart = content.indexOf(secondIvar); + const methodStart = content.indexOf(method); + const instanceVariables = makeFakeNode( + 'instance_variables', + content.indexOf('{'), + content.indexOf('}') + 1, + [ + makeFakeNode('field_definition', firstIvarStart, firstIvarStart + firstIvar.length), + makeFakeNode('field_definition', secondIvarStart, secondIvarStart + secondIvar.length), + ], + ); + const declaration = makeFakeNode('class_interface', 0, content.length, [ + makeFakeNode('identifier', content.indexOf('Worker'), content.indexOf('Worker') + 'Worker'.length), + instanceVariables, + makeFakeNode('method_declaration', methodStart, methodStart + method.length), + ]); + createParserForLanguage.mockResolvedValue({ + parse: vi.fn().mockReturnValue({ + rootNode: makeFakeNode('program', 0, content.length, [declaration]), + }), + }); + + const result = await chunkNode('Class', content, 'Worker.m', 1, 6, 48, 0); + const combined = result.map((chunk) => chunk.text).join('\n'); + + expect(result.length).toBeGreaterThan(1); + expect(combined).toContain(firstIvar); + expect(combined).toContain(secondIvar); + expect(combined).toContain(method); + expect(result.some((chunk) => chunk.text.includes(firstIvar) && chunk.text.includes(secondIvar))).toBe( + true, + ); + }); + + it('keeps Objective-C protocol inheritance in the declaration prefix', async () => { + const content = ['@protocol Worker ', '- (void)run;', '@end'].join('\n'); + const protocolNameStart = content.indexOf('Worker'); + const inheritanceStart = content.indexOf(''); + const methodStart = content.indexOf('- (void)run;'); + const declaration = makeFakeNode('protocol_declaration', 0, content.length, [ + makeFakeNode('identifier', protocolNameStart, protocolNameStart + 'Worker'.length), + makeFakeNode( + 'protocol_reference_list', + inheritanceStart, + inheritanceStart + ''.length, + ), + makeFakeNode('method_declaration', methodStart, methodStart + '- (void)run;'.length), + ]); + createParserForLanguage.mockResolvedValue({ + parse: vi.fn().mockReturnValue({ + rootNode: makeFakeNode('program', 0, content.length, [declaration]), + }), + }); + + const result = await chunkNode('Protocol', content, 'Worker.m', 1, 3, 50, 0); + + expect(result[0].text).toContain('- (void)'); + expect(result[0].text).not.toBe('@protocol Worker '); + }); + it('splits a function into multiple AST-aware chunks using snippet offsets', async () => { const content = [ 'function example() {', diff --git a/gitnexus/test/unit/content-language-classification.test.ts b/gitnexus/test/unit/content-language-classification.test.ts new file mode 100644 index 000000000..8c54ada91 --- /dev/null +++ b/gitnexus/test/unit/content-language-classification.test.ts @@ -0,0 +1,39 @@ +import { afterEach, describe, expect, it } from 'vitest'; +import fs from 'node:fs/promises'; +import os from 'node:os'; +import path from 'node:path'; +import { SupportedLanguages } from 'gitnexus-shared'; +import { classifyContentLanguages } from '../../src/core/ingestion/content-language-classification.js'; + +describe('content language classification', () => { + let repoDir = ''; + + afterEach(async () => { + if (repoDir) await fs.rm(repoDir, { recursive: true, force: true }); + }); + + it('retains only reusable language decisions and skips unreadable files', async () => { + repoDir = await fs.mkdtemp(path.join(os.tmpdir(), 'content-language-classification-')); + await fs.writeFile( + path.join(repoDir, 'ObjectiveC.h'), + '@interface ObjectiveC : NSObject\n@end\n', + ); + await fs.writeFile( + path.join(repoDir, 'CoreFoundation.h'), + '#import \nclass NativeHeader {};\n', + ); + + const classifications = await classifyContentLanguages(repoDir, [ + 'ObjectiveC.h', + 'CoreFoundation.h', + 'missing.h', + ]); + + expect([...classifications.entries()]).toEqual([ + ['ObjectiveC.h', SupportedLanguages.ObjectiveC], + ['CoreFoundation.h', SupportedLanguages.CPlusPlus], + ]); + expect(classifications.has('missing.h')).toBe(false); + expect(classifications.get('ObjectiveC.h')).not.toContain('@interface'); + }); +}); diff --git a/gitnexus/test/unit/embedding-pipeline.test.ts b/gitnexus/test/unit/embedding-pipeline.test.ts index 787d12c95..2ace47b4f 100644 --- a/gitnexus/test/unit/embedding-pipeline.test.ts +++ b/gitnexus/test/unit/embedding-pipeline.test.ts @@ -7,12 +7,33 @@ import { } from '../../src/core/embeddings/embedding-pipeline.js'; import { generateEmbeddingText } from '../../src/core/embeddings/text-generator.js'; import type { EmbeddableNode, EmbeddingProgress } from '../../src/core/embeddings/types.js'; -import { DEFAULT_EMBEDDING_CONFIG, EMBEDDABLE_LABELS } from '../../src/core/embeddings/types.js'; +import { + DEFAULT_EMBEDDING_CONFIG, + EMBEDDABLE_LABELS, + LABEL_CATEGORY, + LABEL_PROTOCOL, + LABELS_WITH_EXPORTED, + STRUCTURAL_LABELS, +} from '../../src/core/embeddings/types.js'; import { STALE_HASH_SENTINEL } from '../../src/core/lbug/schema.js'; const CLASS_CHUNK_SIZE = 90; const CLASS_OVERLAP = 10; +describe('embedding schema column contracts', () => { + it('does not query Objective-C protocol/category tables for an isExported column', () => { + expect(LABELS_WITH_EXPORTED.has(LABEL_PROTOCOL)).toBe(false); + expect(LABELS_WITH_EXPORTED.has(LABEL_CATEGORY)).toBe(false); + }); + + it('keeps Objective-C protocol/category declaration chunking without unsupported structural extraction', () => { + expect(STRUCTURAL_LABELS.has(LABEL_PROTOCOL)).toBe(false); + expect(STRUCTURAL_LABELS.has(LABEL_CATEGORY)).toBe(false); + expect(EMBEDDABLE_LABELS).toContain(LABEL_PROTOCOL); + expect(EMBEDDABLE_LABELS).toContain(LABEL_CATEGORY); + }); +}); + // ──────────────────────────────────────────────────────────────────────────── // resolveEmbeddingInstallPolicy (offline-first, #1153) // ──────────────────────────────────────────────────────────────────────────── diff --git a/gitnexus/test/unit/grammar-update-monitor.test.ts b/gitnexus/test/unit/grammar-update-monitor.test.ts index 8993de8c3..197e5dfb1 100644 --- a/gitnexus/test/unit/grammar-update-monitor.test.ts +++ b/gitnexus/test/unit/grammar-update-monitor.test.ts @@ -73,11 +73,12 @@ describe('COMPATIBLE_ABI gate', () => { }); describe('GRAMMARS registry', () => { - it('covers all six grammars (swift/kotlin/zig npm, dart/proto github, c npm)', () => { + it('covers all seven vendored grammars, including Objective-C and Zig', () => { expect(Object.keys(mod.GRAMMARS).sort()).toEqual([ 'c', 'dart', 'kotlin', + 'objc', 'proto', 'swift', 'zig', @@ -87,9 +88,11 @@ describe('GRAMMARS registry', () => { expect(mod.GRAMMARS.zig.npm).toBe('@tree-sitter-grammars/tree-sitter-zig'); }); - it('marks c and kotlin report-only (holds); swift/dart/proto/zig are auto-updatable', () => { + it('marks c, kotlin, and objc report-only; swift/dart/proto/zig are auto-updatable', () => { expect(mod.GRAMMARS.c.npm).toBe('tree-sitter-c'); expect(mod.GRAMMARS.c.hold).toBeTruthy(); // ABI-pinned: detected/reported, never auto-applied + expect(mod.GRAMMARS.objc.npm).toBe('tree-sitter-objc'); + expect(mod.GRAMMARS.objc.hold).toBeTruthy(); // kotlin is pinned to an unreleased fwcd main commit for `fun interface` // support (#169); npm latest (0.3.8) lacks it, so the strict-inequality // isNewer would auto-revert the pin without this hold. diff --git a/gitnexus/test/unit/incremental-parse-cache.test.ts b/gitnexus/test/unit/incremental-parse-cache.test.ts index f6627e94a..22a6a3b63 100644 --- a/gitnexus/test/unit/incremental-parse-cache.test.ts +++ b/gitnexus/test/unit/incremental-parse-cache.test.ts @@ -260,12 +260,14 @@ describe('PARSE_CACHE_VERSION', () => { // Moved 92 -> 93 for #3161 (Zig static gating): call captures inside a // comptime-false branch gain the `@reference.static-gated` marker, a // parse-time fact a warm cache from an earlier head would replay without. - it('pins SCHEMA_BUMP to 93 so concurrent bumps cannot silently collide (#2766, #3015, #3088, #2885, #3128, #2865, #3130, #1432, #3161)', () => { - expect(Number(PARSE_CACHE_VERSION.split('+', 1)[0])).toBe(93); + // Moved 94 -> 95 for #3179: Objective-C framework-import-only header + // classification changed parse-worker output for the same file content. + it('pins SCHEMA_BUMP to 95 so concurrent bumps cannot silently collide (#2766, #3015, #3088, #2885, #3128, #2865, #3130, #1432, #3161, #3179)', () => { + expect(Number(PARSE_CACHE_VERSION.split('+', 1)[0])).toBe(95); expect(PARSE_CACHE_BUCKET_COUNT).toBe(128); for (const taken of [ 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, - 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, + 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, ]) { expect(Number(PARSE_CACHE_VERSION.split('+', 1)[0])).not.toBe(taken); } diff --git a/gitnexus/test/unit/language-availability-skip.test.ts b/gitnexus/test/unit/language-availability-skip.test.ts index 76ad659c2..e6e456229 100644 --- a/gitnexus/test/unit/language-availability-skip.test.ts +++ b/gitnexus/test/unit/language-availability-skip.test.ts @@ -26,6 +26,7 @@ vi.mock('../../src/core/tree-sitter/parser-loader.js', async (importOriginal) => import fs from 'node:fs'; import os from 'node:os'; import path from 'node:path'; +import { SupportedLanguages } from 'gitnexus-shared'; import { createKnowledgeGraph } from '../../src/core/graph/graph.js'; import { runChunkedParseAndResolve } from '../../src/core/ingestion/pipeline-phases/parse-impl.js'; import * as parserLoader from '../../src/core/tree-sitter/parser-loader.js'; @@ -63,6 +64,21 @@ describe('native parser availability — unavailable language is skipped, not cr ); }; + const runWithObjectiveCHeader = () => { + const rel = 'App.h'; + fs.writeFileSync(path.join(repoDir, rel), '@interface App : NSObject\n@end\n'); + const scanned = [{ path: rel, size: fs.statSync(path.join(repoDir, rel)).size }]; + return runChunkedParseAndResolve( + createKnowledgeGraph(), + scanned, + [rel], + 1, + repoDir, + Date.now(), + () => {}, + ); + }; + it('skips the Swift file without crashing (and without spawning a pool) when its parser is unavailable', async () => { vi.mocked(parserLoader.isLanguageAvailable).mockReturnValue(false); // The only file is filtered out before dispatch, so the parse phase @@ -86,4 +102,14 @@ describe('native parser availability — unavailable language is skipped, not cr ); expect(warned).toBe(true); }); + + it('admits a content-classified Objective-C header when only C++ is unavailable', async () => { + vi.mocked(parserLoader.isLanguageAvailable).mockImplementation( + (language) => language === SupportedLanguages.ObjectiveC, + ); + + const result = await runWithObjectiveCHeader(); + + expect(result.usedWorkerPool).toBe(true); + }); }); diff --git a/gitnexus/test/unit/model/registration-table.test.ts b/gitnexus/test/unit/model/registration-table.test.ts index e16ed152d..d6ccc4100 100644 --- a/gitnexus/test/unit/model/registration-table.test.ts +++ b/gitnexus/test/unit/model/registration-table.test.ts @@ -78,9 +78,11 @@ describe('NodeLabel taxonomy coverage', () => { expect(CALLABLE_ONLY_LABELS.has('Delegate')).toBe(true); }); - it('DISPATCH_LABELS includes all 10 routed kinds', () => { + it('DISPATCH_LABELS includes all 12 routed kinds', () => { const expected = [ 'Class', + 'Protocol', + 'Category', 'Struct', 'Interface', 'Enum', @@ -138,8 +140,17 @@ describe('BasicBlock taint/PDG substrate label (issue #2080)', () => { // reference-equality assertions on the hook functions themselves. // --------------------------------------------------------------------------- -describe('class-like behavior group — all 6 labels route to types.registerClass', () => { - const CLASS_LIKE_LABELS = ['Class', 'Struct', 'Interface', 'Enum', 'Record', 'Trait'] as const; +describe('class-like behavior group — all 8 labels route to types.registerClass', () => { + const CLASS_LIKE_LABELS = [ + 'Class', + 'Protocol', + 'Category', + 'Struct', + 'Interface', + 'Enum', + 'Record', + 'Trait', + ] as const; for (const label of CLASS_LIKE_LABELS) { it(`${label} writes to types.registerClass`, () => { diff --git a/gitnexus/test/unit/objective-c-macro-marker-preprocess.test.ts b/gitnexus/test/unit/objective-c-macro-marker-preprocess.test.ts new file mode 100644 index 000000000..904e67645 --- /dev/null +++ b/gitnexus/test/unit/objective-c-macro-marker-preprocess.test.ts @@ -0,0 +1,66 @@ +import { describe, expect, it } from 'vitest'; +import { preprocessObjectiveCMacroMarkers } from '../../src/core/ingestion/languages/objective-c/macro-marker-preprocess.js'; + +describe('preprocessObjectiveCMacroMarkers', () => { + it('elides bare file-scope markers and preserves positions', () => { + const source = [ + '#define RCT_EXTERN_C_BEGIN', + '#define RCT_EXTERN_C_END', + 'RCT_EXTERN_C_BEGIN', + 'typedef struct RCTMethodInfo {', + ' const char *const jsName;', + '} RCTMethodInfo;', + 'RCT_EXTERN_C_END', + '@protocol RCTBridgeModule ', + '- (void)run;', + '@end', + '', + ].join('\r\n'); + + const normalized = preprocessObjectiveCMacroMarkers(source, 'RCTBridgeModule.h'); + + expect(normalized).toHaveLength(source.length); + expect(normalized.split('\r\n')).toHaveLength(source.split('\r\n').length); + expect(normalized).toContain('#define RCT_EXTERN_C_BEGIN'); + expect(normalized).toContain('@protocol RCTBridgeModule '); + expect(normalized).toContain(' '.repeat('RCT_EXTERN_C_BEGIN'.length)); + expect(normalized).toContain(' '.repeat('RCT_EXTERN_C_END'.length)); + expect(preprocessObjectiveCMacroMarkers(normalized, 'RCTBridgeModule.h')).toBe(normalized); + }); + + it('leaves non-marker syntax, strings, and comments untouched', () => { + const source = [ + 'void marker(void) {', + ' RCT_EXTERN_C_BEGIN', + '}', + 'RCT_EXTERN_C_END()', + 'RCT_EXTERN_C_END;', + '#define RCT_EXTERN_C_END', + '#define RCT_MARKER_SEQUENCE \\', + 'RCT_EXTERN_C_END', + 'const char *value = "RCT_EXTERN_C_END";', + '// RCT_EXTERN_C_END', + '/*', + 'RCT_EXTERN_C_END', + '*/', + '', + ].join('\n'); + + expect(preprocessObjectiveCMacroMarkers(source, 'Example.m')).toBe(source); + }); + + it('does not rewrite markers inside a continued line comment', () => { + const source = [ + '// The following token remains part of this comment \\', + 'RCT_EXTERN_C_END', + 'RCT_EXTERN_C_BEGIN', + '', + ].join('\n'); + + const normalized = preprocessObjectiveCMacroMarkers(source, 'CommentedMarker.h'); + + expect(normalized).toHaveLength(source.length); + expect(normalized).toContain('RCT_EXTERN_C_END'); + expect(normalized.split('\n')[2]).toBe(' '.repeat('RCT_EXTERN_C_BEGIN'.length)); + }); +}); diff --git a/gitnexus/test/unit/objective-c-parser-loader.test.ts b/gitnexus/test/unit/objective-c-parser-loader.test.ts new file mode 100644 index 000000000..0d60378e2 --- /dev/null +++ b/gitnexus/test/unit/objective-c-parser-loader.test.ts @@ -0,0 +1,40 @@ +import { afterEach, describe, expect, it, vi } from 'vitest'; +import { SupportedLanguages } from '../../src/config/supported-languages.js'; + +describe('Objective-C parser-loader failure path', () => { + afterEach(() => { + vi.resetModules(); + vi.doUnmock('../../src/core/logger.js'); + vi.doUnmock('../../src/core/tree-sitter/vendored-grammars.js'); + }); + + it('reports a clean unavailable Objective-C grammar with an actionable diagnostic', async () => { + const errorLog = vi.fn(); + const warnLog = vi.fn(); + vi.doMock('../../src/core/logger.js', () => ({ + logger: { + error: errorLog, + warn: warnLog, + }, + })); + vi.doMock('../../src/core/tree-sitter/vendored-grammars.js', () => ({ + requireVendoredGrammar: (name: string) => { + if (name === 'tree-sitter-objc') throw new Error('synthetic missing objc grammar'); + return {}; + }, + })); + + const { getLanguageGrammar, isGrammarRuntimeSkipped, isLanguageAvailable } = + await import('../../src/core/tree-sitter/parser-loader.js'); + + expect(isLanguageAvailable(SupportedLanguages.ObjectiveC)).toBe(false); + expect(isGrammarRuntimeSkipped(SupportedLanguages.ObjectiveC)).toBe(false); + expect(() => getLanguageGrammar(SupportedLanguages.ObjectiveC)).toThrow( + /Unsupported language: objective-c/, + ); + expect(warnLog).not.toHaveBeenCalled(); + expect(String(errorLog.mock.calls[0]?.[0] ?? '')).toMatch( + /Objective-C parsing disabled[\s\S]*tree-sitter-objc[\s\S]*synthetic missing objc grammar/, + ); + }); +}); diff --git a/gitnexus/test/unit/objective-c-provider.test.ts b/gitnexus/test/unit/objective-c-provider.test.ts new file mode 100644 index 000000000..def13c79e --- /dev/null +++ b/gitnexus/test/unit/objective-c-provider.test.ts @@ -0,0 +1,518 @@ +import { describe, expect, it } from 'vitest'; +import Parser from 'tree-sitter'; +import { + getLanguageFromFilename, + getSyntaxLanguageFromFilename, + SupportedLanguages, +} from 'gitnexus-shared'; +import { getLanguageForFileContent } from '../../src/core/ingestion/languages/index.js'; +import { + classifyObjectiveCFileContent, + objectiveCProvider, +} from '../../src/core/ingestion/languages/objective-c.js'; +import { + buildObjectiveCScopeCaptures, + buildObjectiveCSemanticGraph, + collectObjectiveCFacts, + objcCategoryQualifiedName, + objcClassQualifiedName, + objcFunctionQualifiedName, + objcMethodQualifiedName, +} from '../../src/core/ingestion/languages/objective-c/facts.js'; +import { isLanguageAvailable } from '../../src/core/tree-sitter/parser-loader.js'; +import { requireVendoredGrammar } from '../../src/core/tree-sitter/vendored-grammars.js'; +import { objectiveCScopeResolver } from '../../src/core/ingestion/languages/objective-c/scope-resolver.js'; + +const FIXTURE = `#import "SYModuleCaller.h" +#include "SYModuleSupport.h" +@import Foundation; + +@protocol SYModuleRunnable +- (void)runTask:(NSString *)name completion:(void (^)(BOOL ok))completion; +@end + +@interface SYBaseCaller : NSObject +- (void)loadData:(NSString *)name completion:(void (^)(BOOL ok))completion; +@end + +@interface SYModuleCaller : SYBaseCaller { + SYBaseCaller *_base; +} +@property (nonatomic, strong) SYBaseCaller *helper; ++ (instancetype)sharedCaller; +- (void)runTask:(NSString *)name completion:(void (^)(BOOL ok))completion; +@end + +@interface SYModuleCaller () +@property (nonatomic, strong) SYBaseCaller *privateHelper; +@end + +@interface SYModuleCaller (Tracing) +- (void)traceEvent:(NSString *)name; +@end + +@implementation SYModuleCaller ++ (instancetype)sharedCaller { return [SYModuleCaller new]; } +- (void)runTask:(NSString *)name completion:(void (^)(BOOL ok))completion { + SYBaseCaller *typed = self.helper; + id dynamic = typed; + [self traceEvent:name]; + [super loadData:name completion:completion]; + [typed loadData:name completion:completion]; + [dynamic loadData:name completion:completion]; +} +- (void)runProtocol:(id)runner { + [runner runTask:@"x" completion:^(BOOL ok) {}]; +} +@end + +@implementation SYModuleCaller (Tracing) +- (void)traceEvent:(NSString *)name {} +@end + +static int SYModuleCompute(int value) { return value + 1; } +`; + +function parseFixture() { + const parser = new Parser(); + parser.setLanguage(requireVendoredGrammar('tree-sitter-objc')); + return parser.parse(FIXTURE); +} + +function parseSource(source: string) { + const parser = new Parser(); + parser.setLanguage(requireVendoredGrammar('tree-sitter-objc')); + return parser.parse(source); +} + +describe('Objective-C provider', () => { + it('loads the vendored grammar and maps unambiguous Objective-C extensions', () => { + expect(isLanguageAvailable(SupportedLanguages.ObjectiveC)).toBe(true); + expect(getLanguageFromFilename('SYModuleCaller.m')).toBe(SupportedLanguages.ObjectiveC); + expect(getLanguageFromFilename('SYModuleCaller.mm')).toBe(SupportedLanguages.ObjectiveC); + expect(getSyntaxLanguageFromFilename('SYModuleCaller.m')).toBe('objectivec'); + }); + + it('classifies Objective-C headers only from explicit Objective-C syntax', () => { + expect( + classifyObjectiveCFileContent( + 'SYModuleCaller.h', + '@interface SYModuleCaller : NSObject\n@end', + ), + ).toBe(true); + expect(getLanguageForFileContent('SYModuleCaller.h', '@protocol SYModuleRunnable\n@end')).toBe( + SupportedLanguages.ObjectiveC, + ); + expect( + getLanguageForFileContent('plain.h', '#ifndef PLAIN_H\nint add(int a, int b);\n#endif\n'), + ).toBe(SupportedLanguages.CPlusPlus); + expect( + getLanguageForFileContent( + 'core-foundation-cpp.h', + '#import \nclass Widget { int value; };\n', + ), + ).toBe(SupportedLanguages.CPlusPlus); + expect( + classifyObjectiveCFileContent('framework.h', '#import \n'), + ).toBe(false); + expect(classifyObjectiveCFileContent('plain-cpp.h', 'class Widget { int value; };\n')).toBe( + false, + ); + expect(classifyObjectiveCFileContent('forward.h', '@class Widget;\n')).toBe(true); + }); + + it('extracts nested C function declarators without claiming function pointers', () => { + const facts = collectObjectiveCFacts( + parseSource(` +int add(int value); +int *returnsPointer(int value); +int (*callback)(int value); +int first(void), second(void); +`), + 'functions.h', + ); + + expect(facts.functions.map((fn) => fn.name)).toEqual( + expect.arrayContaining(['add', 'returnsPointer', 'first', 'second']), + ); + expect(facts.functions.map((fn) => fn.name)).not.toContain('callback'); + }); + + it('extracts C helper functions declared inside an Objective-C implementation', () => { + const facts = collectObjectiveCFacts( + parseSource(` +@implementation Worker +static int helper(void) { return 1; } +@end +`), + 'Worker.m', + ); + + expect(facts.functions).toEqual( + expect.arrayContaining([ + expect.objectContaining({ + name: 'helper', + linkage: 'internal', + qualifiedName: objcFunctionQualifiedName('helper', 'internal', 'Worker.m'), + returnType: 'int', + parameterTypes: ['void'], + }), + ]), + ); + }); + + it('keeps internal C function identities file-local while preserving external identities', () => { + const first = collectObjectiveCFacts( + parseSource('static int helper(void) { return 1; }\nint shared(void);'), + 'First.m', + ); + const second = collectObjectiveCFacts( + parseSource('static int helper(void) { return 2; }\nint shared(void);'), + 'Second.m', + ); + + const firstStatic = first.functions.find((fn) => fn.name === 'helper'); + const secondStatic = second.functions.find((fn) => fn.name === 'helper'); + const firstExternal = first.functions.find((fn) => fn.name === 'shared'); + const secondExternal = second.functions.find((fn) => fn.name === 'shared'); + + expect(firstStatic?.qualifiedName).toBe( + objcFunctionQualifiedName('helper', 'internal', 'First.m'), + ); + expect(secondStatic?.qualifiedName).toBe( + objcFunctionQualifiedName('helper', 'internal', 'Second.m'), + ); + expect(firstStatic?.qualifiedName).not.toBe(secondStatic?.qualifiedName); + expect(firstExternal?.qualifiedName).toBe(objcFunctionQualifiedName('shared')); + expect(secondExternal?.qualifiedName).toBe(firstExternal?.qualifiedName); + }); + + it('collects guarded headers and protocol members in optional and required sections', () => { + const facts = collectObjectiveCFacts( + parseSource(` +#ifndef WORKER_H +#define WORKER_H +#import "Dep.h" +@interface Worker +- (void)run; +@end +#endif + +@protocol P +@optional +- (void)ping; +@property Helper *optionalHelper; +@required +- (void)pong; +@end +`), + 'Worker.h', + ); + + expect(facts.imports).toContainEqual(expect.objectContaining({ targetRaw: 'Dep.h' })); + expect(facts.containers).toContainEqual( + expect.objectContaining({ kind: 'class', name: 'Worker' }), + ); + expect(facts.methods.map((method) => `${method.ownerName}:${method.selector}`)).toEqual( + expect.arrayContaining(['Worker:run', 'P:ping', 'P:pong']), + ); + expect(facts.members).toContainEqual( + expect.objectContaining({ name: 'optionalHelper', declaredType: 'Helper' }), + ); + }); + + it('uses lexical bindings at each message position and keeps bare id bindings dynamic', () => { + const facts = collectObjectiveCFacts( + parseSource(` +@protocol P +- (void)ping; +@end +@interface First +- (void)ping; +@end +@interface Second +- (void)ping; +@end +@interface A ++ (void)ping; +@end +@interface Worker +- (void)run:(First *)value; +@end +@implementation Worker +- (void)run:(First *)value { + id

worker; + id A; + [value ping]; + { Second *value = nil; [value ping]; } + [value ping]; + [worker ping]; + [A ping]; +} +@end +`), + 'Worker.m', + ); + + const valueMessages = facts.messages.filter( + (message) => message.receiverText === 'value' && message.selector === 'ping', + ); + expect(valueMessages.map((message) => message.receiverType?.name)).toEqual([ + 'First', + 'Second', + 'First', + ]); + expect(facts.messages).toContainEqual( + expect.objectContaining({ + receiverText: 'worker', + receiverKind: 'local', + receiverType: { kind: 'protocol', name: 'P', raw: 'id

' }, + }), + ); + expect(facts.messages).toContainEqual( + expect.objectContaining({ + receiverText: 'A', + receiverKind: 'dynamic', + receiverType: { kind: 'dynamic', raw: 'id' }, + }), + ); + }); + + it('does not treat protocol-qualified parameter types as conformance', () => { + const facts = collectObjectiveCFacts( + parseSource(` +@protocol P +- (void)run:(id)value; +@end +@interface Child : Base

+- (void)run:(id)value; +@end +`), + 'protocols.h', + ); + + expect(facts.containers.find((container) => container.name === 'P')?.protocols).toEqual([ + 'NSObject', + ]); + expect(facts.containers.find((container) => container.name === 'Child')?.protocols).toEqual([ + 'P', + ]); + }); + + it('keeps explicit class receivers and macro receivers separate', () => { + const facts = collectObjectiveCFacts( + parseSource(` +#define RECEIVER_MACRO(x) x +@interface A ++ (void)run; +@end +@interface Base +- (void)ping; +@end +@interface Child : Base +- (void)call; +@end +@implementation Child +- (void)call { + [A run]; + [self ping]; + [RECEIVER_MACRO(self) ping]; +} +@end +`), + 'receivers.m', + ); + + expect( + facts.messages.map((message) => `${message.receiverKind}:${message.receiverText}`), + ).toEqual(expect.arrayContaining(['class:A', 'self:self', 'dynamic:RECEIVER_MACRO(self)'])); + expect(facts.unresolvedMessages).toEqual( + expect.arrayContaining([ + expect.objectContaining({ + receiverText: 'RECEIVER_MACRO(self)', + reason: 'macro receiver RECEIVER_MACRO is dynamic', + }), + ]), + ); + }); + + it('resolves a property declared after its caller in a class extension', () => { + const facts = collectObjectiveCFacts( + parseSource(` +@interface LaterOwner +@end +@implementation LaterOwner +- (void)run { + [self.helper performWork]; +} +@end +@interface LaterOwner (Private) +@property (nonatomic, strong) Worker *helper; +@end +`), + 'LaterOwner.m', + ); + + expect(facts.messages).toContainEqual( + expect.objectContaining({ + receiverText: 'self.helper', + selector: 'performWork', + receiverKind: 'property', + receiverType: { kind: 'class', name: 'Worker', raw: 'Worker' }, + }), + ); + expect(facts.unresolvedMessages).not.toContainEqual( + expect.objectContaining({ receiverText: 'self.helper' }), + ); + }); + + it('resolves extensionless local imports to Objective-C source/header files', () => { + expect( + objectiveCScopeResolver.resolveImportTarget( + './NestedHeader', + 'src/Caller.m', + new Set(['src/NestedHeader.h']), + ), + ).toBe('src/NestedHeader.h'); + expect( + objectiveCScopeResolver.resolveImportTarget( + './NestedImpl', + 'src/Caller.m', + new Set(['src/NestedImpl.mm']), + ), + ).toBe('src/NestedImpl.mm'); + expect( + objectiveCScopeResolver.resolveImportTarget( + 'Foundation', + 'src/Caller.m', + new Set(['src/Foundation.h']), + ), + ).toBeNull(); + }); + + it('keeps angle-bracket system headers out of local import resolution', () => { + const tree = parseSource('#import "Local.h"\n#import \n'); + const facts = collectObjectiveCFacts(tree, 'src/Caller.m'); + const captures = buildObjectiveCScopeCaptures(facts, tree.rootNode).filter( + (capture) => capture['@import.source'] !== undefined, + ); + const parsed = captures.map((capture) => objectiveCProvider.interpretImport?.(capture)); + + expect(parsed.map((entry) => entry?.targetRaw)).toEqual([ + './Local.h', + '', + ]); + expect( + objectiveCScopeResolver.resolveImportTarget( + parsed[1]?.targetRaw ?? '', + 'src/Caller.m', + new Set(['src/Foundation/Foundation.h']), + ), + ).toBeNull(); + }); + + it('extracts first-version Objective-C semantic facts and unresolved evidence', () => { + const facts = collectObjectiveCFacts(parseFixture(), 'SYModuleCaller.m'); + + expect(facts.containers.map((c) => `${c.kind}:${c.name}`)).toEqual( + expect.arrayContaining([ + 'protocol:SYModuleRunnable', + 'class:SYBaseCaller', + 'class:SYModuleCaller', + 'extension:SYModuleCaller ()', + 'category:SYModuleCaller (Tracing)', + ]), + ); + expect( + facts.containers.find((c) => c.name === 'SYModuleCaller' && c.kind === 'class'), + ).toMatchObject({ + superclass: 'SYBaseCaller', + protocols: ['SYModuleRunnable'], + }); + + expect( + facts.methods.map((m) => ({ + kind: m.methodKind, + selector: m.selector, + owner: m.ownerQualifiedName, + })), + ).toEqual( + expect.arrayContaining([ + { + kind: '-', + selector: 'runTask:completion:', + owner: objcClassQualifiedName('SYModuleCaller'), + }, + { + kind: '+', + selector: 'sharedCaller', + owner: objcClassQualifiedName('SYModuleCaller'), + }, + { + kind: '-', + selector: 'traceEvent:', + owner: objcCategoryQualifiedName('SYModuleCaller', 'Tracing'), + }, + { + kind: '-', + selector: 'runTask:completion:', + owner: 'objc:protocol:SYModuleRunnable', + }, + ]), + ); + expect(facts.members.map((m) => `${m.kind}:${m.name}:${m.declaredType ?? ''}`)).toEqual( + expect.arrayContaining(['property:helper:SYBaseCaller', 'ivar:_base:SYBaseCaller']), + ); + expect(facts.functions.map((fn) => fn.name)).toContain('SYModuleCompute'); + expect(facts.imports.map((imp) => `${imp.kind}:${imp.targetRaw}`)).toEqual( + expect.arrayContaining([ + 'import:SYModuleCaller.h', + 'include:SYModuleSupport.h', + 'module:Foundation', + ]), + ); + expect( + facts.messages.map((msg) => `${msg.receiverKind}:${msg.receiverText}:${msg.selector}`), + ).toEqual( + expect.arrayContaining([ + 'self:self:traceEvent:', + 'super:super:loadData:completion:', + 'local:typed:loadData:completion:', + 'dynamic:dynamic:loadData:completion:', + 'local:runner:runTask:completion:', + ]), + ); + expect(facts.unresolvedMessages).toEqual( + expect.arrayContaining([ + expect.objectContaining({ + receiverText: 'dynamic', + selector: 'loadData:completion:', + reason: 'id receiver is dynamic', + }), + ]), + ); + }); + + it('uses owner, selector, and method kind in stable method identities', () => { + const facts = collectObjectiveCFacts(parseFixture(), 'SYModuleCaller.m'); + const graph = buildObjectiveCSemanticGraph(facts); + const methodIds = new Set( + graph.nodes.filter((node) => node.label === 'Method').map((node) => node.id), + ); + + expect(methodIds).toContain( + `Method:${objcMethodQualifiedName(objcClassQualifiedName('SYModuleCaller'), '-', 'runTask:completion:')}`, + ); + expect(methodIds).toContain( + `Method:${objcMethodQualifiedName(objcClassQualifiedName('SYModuleCaller'), '+', 'sharedCaller')}`, + ); + expect(methodIds).toContain( + `Method:${objcMethodQualifiedName( + objcCategoryQualifiedName('SYModuleCaller', 'Tracing'), + '-', + 'traceEvent:', + )}`, + ); + expect(methodIds.size).toBeGreaterThan(4); + }); +}); diff --git a/gitnexus/test/unit/parser-loader-abi.test.ts b/gitnexus/test/unit/parser-loader-abi.test.ts index 7668fd92c..484bf6da6 100644 --- a/gitnexus/test/unit/parser-loader-abi.test.ts +++ b/gitnexus/test/unit/parser-loader-abi.test.ts @@ -73,6 +73,12 @@ const SMOKE_CASES: Record = { snippet: 'int main() { return 0; }\n', rootType: 'translation_unit', }, + [SupportedLanguages.ObjectiveC]: { + language: SupportedLanguages.ObjectiveC, + snippet: + '@interface ObjcSmoke\n- (void)run;\n@end\n@implementation ObjcSmoke\n- (void)run {}\n@end\n', + rootType: 'translation_unit', + }, [SupportedLanguages.Go]: { language: SupportedLanguages.Go, snippet: 'package main\nfunc main() {}\n', @@ -140,6 +146,10 @@ describe('parser-loader ABI load-smoke (#1922)', () => { expect(sources.some((s) => s.key === SupportedLanguages.Swift)).toBe(true); }); + it('includes Objective-C in the smoke matrix', () => { + expect(sources.some((s) => s.key === SupportedLanguages.ObjectiveC)).toBe(true); + }); + for (const { key, optional } of sources) { const testCase = SMOKE_CASES[key]; if (!testCase) continue; // covered by the "every entry" assertion above diff --git a/gitnexus/test/unit/preprocess-source-parity.test.ts b/gitnexus/test/unit/preprocess-source-parity.test.ts index 643d6cacd..b6881ece9 100644 --- a/gitnexus/test/unit/preprocess-source-parity.test.ts +++ b/gitnexus/test/unit/preprocess-source-parity.test.ts @@ -48,6 +48,20 @@ const FIXTURES: Partial value;', '}', ''].join('\n'), }, + [SupportedLanguages.ObjectiveC]: { + filePath: 'Marker.m', + source: [ + 'RCT_EXTERN_C_BEGIN', + 'typedef struct {', + ' int value;', + '} GNMarker;', + 'RCT_EXTERN_C_END', + '@protocol GNMarkerProtocol', + '- (void)run;', + '@end', + '', + ].join('\n'), + }, }; const languagesWithHook = Object.entries(providers) diff --git a/gitnexus/test/unit/schema.test.ts b/gitnexus/test/unit/schema.test.ts index 18c5baa22..a1cc6ee4a 100644 --- a/gitnexus/test/unit/schema.test.ts +++ b/gitnexus/test/unit/schema.test.ts @@ -75,8 +75,8 @@ describe('LadybugDB Schema', () => { }); it('has expected total count', () => { - // 9 core + 19 multi-language + Route + Tool + Destination + BasicBlock = 33 - expect(NODE_TABLES).toHaveLength(33); + // 9 core + 21 multi-language + Route + Tool + Destination + BasicBlock = 35 + expect(NODE_TABLES).toHaveLength(35); }); }); @@ -308,8 +308,8 @@ describe('LadybugDB Schema', () => { describe('schema query ordering', () => { it('NODE_SCHEMA_QUERIES has correct count', () => { - // 31 + Destination + BasicBlock = 33 - expect(NODE_SCHEMA_QUERIES).toHaveLength(33); + // 33 + Protocol + Category = 35 + expect(NODE_SCHEMA_QUERIES).toHaveLength(35); }); it('REL_SCHEMA_QUERIES has one relation table', () => { @@ -317,8 +317,8 @@ describe('LadybugDB Schema', () => { }); it('SCHEMA_QUERIES includes all node + rel + embedding schemas', () => { - // 33 node + 1 rel + 1 embedding = 35 - expect(SCHEMA_QUERIES).toHaveLength(35); + // 35 node + 1 rel + 1 embedding = 37 + expect(SCHEMA_QUERIES).toHaveLength(37); }); it('node schemas come before relation schemas in SCHEMA_QUERIES', () => { diff --git a/gitnexus/test/unit/scope-resolution-phase-failures.test.ts b/gitnexus/test/unit/scope-resolution-phase-failures.test.ts index ca1816d58..f309ca8dd 100644 --- a/gitnexus/test/unit/scope-resolution-phase-failures.test.ts +++ b/gitnexus/test/unit/scope-resolution-phase-failures.test.ts @@ -21,6 +21,7 @@ import type { PhaseResult, PipelineContext, } from '../../src/core/ingestion/pipeline-phases/types.js'; +import { SupportedLanguages } from 'gitnexus-shared'; const phaseResult = (phaseName: string, output: T): PhaseResult => ({ phaseName, @@ -78,6 +79,7 @@ describe('scopeResolutionPhase failure reconciliation', () => { const parse = { model: createSemanticModel(), parsedFiles: [], + contentLanguageByPath: new Map(), scopeExtractionFailures: ['broken.py'], } as unknown as ParseOutput; const deps = new Map>([ @@ -91,4 +93,65 @@ describe('scopeResolutionPhase failure reconciliation', () => { expect(runScopeResolutionMock).toHaveBeenCalledOnce(); expect(output.scopeExtractionFailures).toEqual(['broken.py']); }); + + it('uses the parse phase content classification for ambiguous headers', async () => { + repoDir = fs.mkdtempSync(path.join(os.tmpdir(), 'scope-phase-header-language-')); + fs.writeFileSync( + path.join(repoDir, 'ObjectiveC.h'), + '@interface ObjectiveC : NSObject\n@end\n', + ); + + runScopeResolutionMock.mockReturnValue({ + filesProcessed: 1, + filesSkipped: 0, + scopeExtractionFailedPaths: [], + importsEmitted: 0, + resolve: { unresolved: 0 }, + referenceEdgesEmitted: 0, + referenceSkipped: 0, + propertyDispatchSkippedKeys: 0, + importedValueRefEdges: 0, + uniqueNamePropertyEdges: 0, + uniqueNamePropertyNarrowed: 0, + uniqueNamePropertyAmbiguous: 0, + uniqueNamePropertyAmbiguousNames: [], + uniqueNamePropertyCrossLanguage: 0, + uniqueNamePropertyCrossLanguageNames: [], + resolutionOutcomes: [], + undecidedSatisfaction: [], + functionSummaries: [], + callSummaries: [], + }); + + const ctx: PipelineContext = { + repoPath: repoDir, + graph: createKnowledgeGraph(), + onProgress: () => {}, + pipelineStart: Date.now(), + }; + const structure: StructureOutput = { + scannedFiles: [{ path: 'ObjectiveC.h', size: 37 }], + allPaths: ['ObjectiveC.h'], + allPathSet: new Set(['ObjectiveC.h']), + totalFiles: 1, + }; + const parse = { + model: createSemanticModel(), + parsedFiles: [], + contentLanguageByPath: new Map([['ObjectiveC.h', SupportedLanguages.ObjectiveC]]), + scopeExtractionFailures: [], + } as unknown as ParseOutput; + const deps = new Map>([ + ['structure', phaseResult('structure', structure)], + ['parse', phaseResult('parse', parse)], + ['crossFile', phaseResult('crossFile', {})], + ]); + + await scopeResolutionPhase.execute(ctx, deps); + + expect(runScopeResolutionMock).toHaveBeenCalledWith( + expect.any(Object), + expect.objectContaining({ language: SupportedLanguages.ObjectiveC }), + ); + }); }); diff --git a/gitnexus/test/unit/scope-resolution/external-import-conformance.test.ts b/gitnexus/test/unit/scope-resolution/external-import-conformance.test.ts index dca6f187d..ffd705c0c 100644 --- a/gitnexus/test/unit/scope-resolution/external-import-conformance.test.ts +++ b/gitnexus/test/unit/scope-resolution/external-import-conformance.test.ts @@ -378,6 +378,17 @@ const CASES: ReadonlyMap = new Map([ reachesDecoy: 'std.zig', }, ], + [ + SupportedLanguages.ObjectiveC, + { + files: ['Headers/Foundation.h', 'Headers/Widget.h', 'Sources/main.m'], + fromFile: 'Sources/main.m', + resolutionConfig: undefined, + external: 'Foundation', + decoy: 'Headers/Foundation.h', + reachesDecoy: 'Foundation.h', + }, + ], ]); /** diff --git a/gitnexus/test/unit/scope-resolution/import-target-index-reuse.contract.test.ts b/gitnexus/test/unit/scope-resolution/import-target-index-reuse.contract.test.ts index 2e0de5ae2..51f0f6bf5 100644 --- a/gitnexus/test/unit/scope-resolution/import-target-index-reuse.contract.test.ts +++ b/gitnexus/test/unit/scope-resolution/import-target-index-reuse.contract.test.ts @@ -547,6 +547,19 @@ const FIXTURES: ReadonlyMap = new Map< minimumParsedFileReads: 0, }, ], + [ + SupportedLanguages.ObjectiveC, + { + files: ['Headers/Widget.h', 'Sources/main.m'], + fromFile: 'Sources/main.m', + resolutionConfig: undefined, + missTarget: (i) => `ghost${i}.h`, + hitTarget: 'Widget.h', + parsedImport: IGNORES_CONTEXT, + minimumScans: 1, + minimumParsedFileReads: 0, + }, + ], ]); /** diff --git a/gitnexus/vendor/tree-sitter-objc/LICENSE b/gitnexus/vendor/tree-sitter-objc/LICENSE new file mode 100644 index 000000000..5af536362 --- /dev/null +++ b/gitnexus/vendor/tree-sitter-objc/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2023 Amaan Qureshi + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/gitnexus/vendor/tree-sitter-objc/README.md b/gitnexus/vendor/tree-sitter-objc/README.md new file mode 100644 index 000000000..279fb0654 --- /dev/null +++ b/gitnexus/vendor/tree-sitter-objc/README.md @@ -0,0 +1,20 @@ +# tree-sitter-objc + + +[![CI][ci]](https://github.com/tree-sitter-grammars/tree-sitter-objc/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-objc) +[![npm][npm]](https://www.npmjs.com/package/tree-sitter-objc) +[![pypi][pypi]](https://pypi.org/project/tree-sitter-objc) + + +[Objective C](https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/ObjectiveC/Introduction/introObjectiveC.html) +grammar for [tree-sitter](https://tree-sitter.github.io) + +[ci]: https://img.shields.io/github/actions/workflow/status/tree-sitter-grammars/tree-sitter-objc/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-objc?logo=npm +[crates]: https://img.shields.io/crates/v/tree-sitter-objc?logo=rust +[pypi]: https://img.shields.io/pypi/v/tree-sitter-objc?logo=pypi&logoColor=ffd242 diff --git a/gitnexus/vendor/tree-sitter-objc/binding.gyp b/gitnexus/vendor/tree-sitter-objc/binding.gyp new file mode 100644 index 000000000..e3a97a2b8 --- /dev/null +++ b/gitnexus/vendor/tree-sitter-objc/binding.gyp @@ -0,0 +1,35 @@ +{ + "targets": [ + { + "target_name": "tree_sitter_objc_binding", + "dependencies": [ + " + +typedef struct TSLanguage TSLanguage; + +extern "C" TSLanguage *tree_sitter_objc(); + +// "tree-sitter", "language" hashed with BLAKE2 +const napi_type_tag LANGUAGE_TYPE_TAG = { + 0x8AF2E5212AD58ABF, 0xD5006CAD83ABBA16 +}; + +Napi::Object Init(Napi::Env env, Napi::Object exports) { + auto language = Napi::External::New(env, tree_sitter_objc()); + language.TypeTag(&LANGUAGE_TYPE_TAG); + exports["language"] = language; + return exports; +} + +NODE_API_MODULE(tree_sitter_objc_binding, Init) diff --git a/gitnexus/vendor/tree-sitter-objc/bindings/node/binding_test.js b/gitnexus/vendor/tree-sitter-objc/bindings/node/binding_test.js new file mode 100644 index 000000000..55becacfb --- /dev/null +++ b/gitnexus/vendor/tree-sitter-objc/bindings/node/binding_test.js @@ -0,0 +1,9 @@ +const assert = require("node:assert"); +const { test } = require("node:test"); + +const Parser = require("tree-sitter"); + +test("can load grammar", () => { + const parser = new Parser(); + assert.doesNotThrow(() => parser.setLanguage(require("."))); +}); diff --git a/gitnexus/vendor/tree-sitter-objc/bindings/node/index.d.ts b/gitnexus/vendor/tree-sitter-objc/bindings/node/index.d.ts new file mode 100644 index 000000000..528e060f1 --- /dev/null +++ b/gitnexus/vendor/tree-sitter-objc/bindings/node/index.d.ts @@ -0,0 +1,27 @@ +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 = { + language: unknown; + nodeTypeInfo: NodeInfo[]; +}; + +declare const language: Language; +export = language; diff --git a/gitnexus/vendor/tree-sitter-objc/bindings/node/index.js b/gitnexus/vendor/tree-sitter-objc/bindings/node/index.js new file mode 100644 index 000000000..208a72f65 --- /dev/null +++ b/gitnexus/vendor/tree-sitter-objc/bindings/node/index.js @@ -0,0 +1,11 @@ +const root = require("path").join(__dirname, "..", ".."); + +module.exports = + typeof process.versions.bun === "string" + // Support `bun build --compile` by being statically analyzable enough to find the .node file at build-time + ? require(`../../prebuilds/${process.platform}-${process.arch}/tree-sitter-objc.node`) + : require("node-gyp-build")(root); + +try { + module.exports.nodeTypeInfo = require("../../src/node-types.json"); +} catch (_) {} diff --git a/gitnexus/vendor/tree-sitter-objc/grammar.js b/gitnexus/vendor/tree-sitter-objc/grammar.js new file mode 100644 index 000000000..30a462688 --- /dev/null +++ b/gitnexus/vendor/tree-sitter-objc/grammar.js @@ -0,0 +1,1286 @@ +/** + * @file Objective-C grammar for tree-sitter + * @author Amaan Qureshi + * @license MIT + */ + + +/// +// @ts-check + +const C = require('tree-sitter-c/grammar'); + +// Welcome to Hell +module.exports = grammar(C, { + name: 'objc', + + extras: $ => [ + /\u00A0|\s|\\\r?\n/, + $.comment, + ], + + conflicts: ($, original) => original.filter( + (e) => !(e.length == 2 && e[0].name == 'type_qualifier' && e[1].name == 'extension_expression'), + ).concat([ + [$.enum_specifier], + [$.expression, $.generic_specifier], + [$._declarator, $.type_specifier, $.generic_specifier], + [$._declarator, $.type_specifier, $.sized_type_specifier], + [$.attribute, $.expression], + [$.parameterized_arguments], + [$.string_literal], + [$.extension_expression, $.range_expression], + [$.abstract_array_declarator, $.array_type_specifier], + [$._type_definition_type], + [$.keyword_declarator, $.method_parameter], + ]), + + inline: ($, original) => original.concat([ + $.method_selector, + $.method_selector_no_list, + $.keyword_selector, + $.interface_declaration, + $.typedefed_identifier, + $.keyword_identifier, + ]), + + supertypes: ($, original) => original.concat([ + $.specifier_qualifier, + ]), + + rules: { + _top_level_item: ($, original) => choice( + original, + $.class_declaration, + $.class_interface, + $.class_implementation, + $.protocol_declaration, + $.protocol_forward_declaration, + $.module_import, + $.compatibility_alias_declaration, + $.preproc_undef, + $.preproc_linemarker, + ), + + _block_item: ($, original) => choice( + original, + $.class_declaration, + $.class_interface, + $.class_implementation, + $.protocol_declaration, + $.protocol_forward_declaration, + $.module_import, + $.compatibility_alias_declaration, + $.preproc_undef, + $.preproc_linemarker, + ), + + function_definition: $ => seq( + optional($.ms_call_modifier), + $._declaration_specifiers, + field('declarator', $._declarator), + field('body', $.compound_statement), + ), + + declaration: $ => seq( + $._declaration_specifiers, + commaSep1(prec.right(field('declarator', choice( + seq($._declarator, optional($.gnu_asm_expression)), + $.init_declarator, + seq($.type_qualifier, $.identifier), + )))), + optional($._declaration_modifiers), + ';', + ), + + type_definition: $ => seq( + optional('__extension__'), + optional($.ms_declspec_modifier), + 'typedef', + optional($.attribute_specifier), + optional($.ms_declspec_modifier), + $._type_definition_type, + $._type_definition_declarators, + ';', + ), + + _type_definition_type: $ => seq( + repeat($.type_qualifier), + optional($.attribute_specifier), + field('type', $.type_specifier), + optional($.ms_declspec_modifier), + repeat($.type_qualifier), + ), + + _type_definition_declarators: $ => seq( + commaSep1(field('declarator', $._type_declarator)), + optional($._declaration_modifiers), + ), + + _declaration_modifiers: ($, original) => choice( + original, + $.availability_attribute_specifier, + $.attribute_declaration, + ), + + _declaration_specifiers: $ => prec.right(seq( + repeat($._declaration_modifiers), + field('type', $.type_specifier), + repeat($._declaration_modifiers), + )), + + parameter_declaration: $ => seq( + $._declaration_specifiers, + optional(field('declarator', choice( + seq($._declarator, optional($._declaration_modifiers)), + $._abstract_declarator, + ))), + ), + + _non_case_statement: ($, original) => choice( + ...original.members.filter(member => member.name !== 'seh_try_statement' && member.name !== 'seh_leave_statement'), + $.try_statement, + $.throw_statement, + $.synchronized_statement, + $.ms_asm_block, + ), + + attribute: $ => seq( + optional(seq(field('prefix', $.identifier), '::')), + field('name', $.identifier), + optional(seq('(', commaSep($.expression), ')')), + ), + + attribute_declaration: $ => seq( + '[', + '[', + commaSep1($.attribute), + ']', + ']', + ), + + _expression_not_binary: ($, original) => choice( + original, + $.message_expression, + $.selector_expression, + $.available_expression, + $.range_expression, + $.block_literal, + $.dictionary_literal, + $.array_literal, + $.at_expression, + $.encode_expression, + $.va_arg_expression, + $.keyword_identifier, + ), + + cast_expression: $ => prec(C.PREC.CAST, choice( + seq( + '(', + field('type', choice($.type_descriptor, $.typeof_specifier, $.parameterized_arguments)), + ')', + field('value', $.expression), + ), + seq(choice('__real', '__imag'), field('value', $.expression)), + )), + + argument_list: $ => seq( + '(', + choice( + commaSep(choice( + seq(optional($.type_qualifier), choice($.expression, $.typeof_specifier)), + $.compound_statement, + )), + seq($._type_identifier, token.immediate('<'), commaSep1($.type_name), '>'), + $.objc_bridge, + $.availability, + ), + ')', + ), + + objc_bridge: $ => seq( + 'objc_bridge_related', + '(', + $.expression, + ',', + optional(seq($.expression, ':')), + ',', + optional($.expression), + ')', + ), + + typeof_specifier: $ => seq( + choice('__typeof__', '__typeof', 'typeof'), + '(', + choice($.expression, $.type_descriptor), + ')', + ), + + compound_statement: $ => seq( + optional('@autoreleasepool'), + '{', + repeat($._block_item), + '}', + ), + + availability: $ => seq( + 'availability', + '(', + commaSep1(seq( + $.identifier, + optional(seq( + '=', + choice($.version, $.expression), + )), + )), + ')', + ), + version: $ => prec.right(choice( + $.platform, + $.version_number, + seq( + $.platform, + '(', + commaSep1(choice($.number_literal, $.identifier)), + ')', + ), + )), + version_number: _ => /\d+([\._]\d+)*/, + platform: _ => choice('ios', 'tvos', 'macos', 'macosx', 'watchos'), + + _declarator: ($, original) => prec.right(choice( + ...original.members.filter(member => member.name !== 'attributed_declarator'), + $.block_pointer_declarator, + )), + + _abstract_declarator: ($, original) => choice( + original, + $.abstract_block_pointer_declarator, + ), + + _field_declarator: ($, original) => choice( + original, + alias($.block_pointer_field_declarator, $.block_pointer_declarator), + ), + + _type_declarator: $ => choice( + alias($.pointer_type_declarator, $.pointer_declarator), + alias($.function_type_declarator, $.function_declarator), + alias($.array_type_declarator, $.array_declarator), + alias($.parenthesized_type_declarator, $.parenthesized_declarator), + alias($.block_pointer_type_declarator, $.block_pointer_declarator), + $._type_identifier, + alias(choice('signed', 'unsigned', 'long', 'short'), $.primitive_type), + $.primitive_type, + ), + + for_statement: ($, original) => choice( + original, + prec(1, seq( + 'for', + '(', + choice( + seq($._declaration_specifiers, $._declarator), + $.identifier, + ), + 'in', + $.expression, + ')', + $._non_case_statement, + )), + ), + + type_qualifier: (_, original) => prec.right(choice( + original, + 'nullable', + '_Complex', + '_Nonnull', + '_Nullable', + '_Nullable_result', + '_Null_unspecified', + '__autoreleasing', + '__block', + '__bridge', + '__bridge_retained', + '__bridge_transfer', + '__complex', + '__const', + '__imag', + '__kindof', + '__nonnull', + '__nullable', + '__ptrauth_objc_class_ro', + '__ptrauth_objc_isa_pointer', + '__ptrauth_objc_super_pointer', + '__real', + '__strong', + '__unsafe_unretained', + '__unused', + '__weak', + )), + + storage_class_specifier: (_, original) => choice( + original, + '__inline__', + 'CG_EXTERN', + 'CG_INLINE', + 'FOUNDATION_EXPORT', + 'FOUNDATION_EXTERN', + 'FOUNDATION_STATIC_INLINE', + 'IBOutlet', + 'IBInspectable', + 'IB_DESIGNABLE', + 'NS_INLINE', + 'NS_VALID_UNTIL_END_OF_SCOPE', + 'OBJC_EXPORT', + 'OBJC_ROOT_CLASS', + 'UIKIT_EXTERN', + ), + + preproc_include: $ => seq( + field('directive', choice(preprocessor('include'), preprocessor('import'))), + field('path', choice( + $.string_literal, + $.system_lib_string, + $.identifier, + alias($.preproc_call_expression, $.call_expression), + )), + token.immediate(/\r?\n/), + ), + + module_import: $ => seq( + '@import', + field('path', seq($.identifier, repeat(seq('.', $.identifier)))), + ';', + ), + + ...preprocIf('', $ => choice($._block_item, $.attribute_specifier, $.property_implementation)), + ...preprocIf('_in_implementation_definition', $ => $.implementation_definition), + ...preprocIf('_in_interface_declaration', $ => $.interface_declaration), + ...preprocIf('_in_enumerator', $ => seq($.enumerator, ',')), + + preproc_undef: $ => seq( + preprocessor('undef'), + field('name', $.identifier), + token.immediate(/\r?\n/), + ), + + preproc_linemarker: $ => seq( + '#', + $.number_literal, + field('filename', $.string_literal), + optional(seq( + field('row', $.number_literal), + optional(field('column', $.number_literal)), + )), + token.immediate(/\r?\n/), + ), + + _preproc_expression: ($, original) => choice( + original, + $.system_lib_string, + ), + + preproc_params: $ => seq( + token.immediate('('), commaSep(choice($.identifier, '...')), optional('...'), ')', + ), + + attribute_specifier: $ => seq( + choice('__attribute__', '__attribute'), + '(', + choice($.argument_list, seq('(', commaSep1(choice('noreturn', 'nothrow')), ')')), + ')', + ), + + availability_attribute_specifier: $ => choice( + 'NS_AUTOMATED_REFCOUNT_UNAVAILABLE', + 'NS_ROOT_CLASS', + 'NS_UNAVAILABLE', + 'NS_REQUIRES_NIL_TERMINATION', + 'CF_RETURNS_RETAINED', + 'CF_RETURNS_NOT_RETAINED', + 'DEPRECATED_ATTRIBUTE', + 'UI_APPEARANCE_SELECTOR', + 'UNAVAILABLE_ATTRIBUTE', + seq( + choice( + 'CF_FORMAT_FUNCTION', + 'NS_AVAILABLE', + '__IOS_AVAILABLE', + 'NS_AVAILABLE_IOS', + 'API_AVAILABLE', + 'API_UNAVAILABLE', + 'API_DEPRECATED', + 'NS_ENUM_AVAILABLE_IOS', + 'NS_DEPRECATED_IOS', + 'NS_ENUM_DEPRECATED_IOS', + 'NS_FORMAT_FUNCTION', + 'DEPRECATED_MSG_ATTRIBUTE', + '__deprecated_msg', + '__deprecated_enum_msg', + 'NS_SWIFT_NAME', + 'NS_SWIFT_UNAVAILABLE', + 'NS_EXTENSION_UNAVAILABLE_IOS', + 'NS_CLASS_AVAILABLE_IOS', + 'NS_CLASS_DEPRECATED_IOS', + '__OSX_AVAILABLE_STARTING', + ), + '(', + commaSep1(choice( + $.string_literal, + $.concatenated_string, + $.version, + $.method_identifier, + $.identifier, + seq($.identifier, '(', optional($.method_identifier), ')'), + )), + ')', + ), + ), + + struct_specifier: $ => prec.right(seq( + 'struct', + optional($.attribute_specifier), + optional($.ms_declspec_modifier), + choice( + seq( + field('name', $._type_identifier), + field('body', optional($.field_declaration_list)), + ), + field('body', $.field_declaration_list), + ), + optional($.attribute_specifier), + )), + + enum_specifier: $ => seq( + 'enum', + optional($.attribute_specifier), + optional($.ms_declspec_modifier), + choice( + seq( + field('name', $._type_identifier), + optional(seq(':', field('underlying_type', choice($._type_identifier, $.primitive_type)))), + field('body', optional($.enumerator_list)), + ), + seq( + optional(seq(':', field('base', $._type_identifier))), + field('body', $.enumerator_list), + ), + ), + optional($.attribute_specifier), + ), + + enumerator_list: $ => seq( + '{', + optionalCommaSep(choice( + seq($.enumerator, optional($._declaration_modifiers)), + alias($.preproc_ifdef_in_enumerator, $.preproc_ifdef), + )), + optional(','), + '}', + ), + + enumerator: $ => seq( + field('name', $.identifier), + optional(seq('=', field('value', $.expression))), + ), + + union_specifier: $ => prec.right(seq( + 'union', + optional($.attribute_specifier), + optional($.ms_declspec_modifier), + choice( + seq( + field('name', $._type_identifier), + field('body', optional($.field_declaration_list)), + ), + field('body', $.field_declaration_list), + ), + optional($.attribute_specifier), + )), + + protocol_forward_declaration: $ => seq( + repeat($._declaration_modifiers), + '@protocol', + commaSep1($.identifier), + ';', + ), + + class_declaration: $ => seq( + '@', + 'class', + commaSep1(seq($.identifier, optional($.parameterized_arguments))), + ';', + ), + + class_interface: $ => seq( + $._class_interface_header, + optional($._type_params), + optional($._class_interface_inheritance), + optional($.parameterized_arguments), + optional($.instance_variables), + repeat($.interface_declaration), + '@end', + ), + + _class_interface_header: $ => seq( + repeat($._declaration_modifiers), + '@interface', + $.identifier, + optional(';'), + ), + + _type_params: $ => prec.right(choice( + seq($.generic_arguments, optional($.parameterized_arguments)), + $.parameterized_arguments, + )), + + _class_interface_inheritance: $ => prec.right(1, choice( + seq(':', field('superclass', $.identifier), optional($.parameterized_arguments)), + seq('(', field('category', optional($.identifier)), ')'), + )), + + class_implementation: $ => seq( + $._class_implementation_header, + optional($._type_params), + optional($._class_implementation_inheritance), + optional($.instance_variables), + repeat($.implementation_definition), + '@end', + ), + + _class_implementation_header: $ => seq( + repeat($._declaration_modifiers), + '@implementation', + $.identifier, + optional(';'), + ), + + _class_implementation_inheritance: $ => prec(1, choice( + seq(':', field('superclass', $.identifier)), + seq('(', field('category', $.identifier), ')'), + )), + + protocol_reference_list: $ => seq('<', commaSep1($.identifier), '>'), + + parameterized_arguments: $ => prec(-1, seq( + '<', + choice( + commaSep1(seq( + commaSep1(seq(optional(choice('__covariant', '__contravariant')), $._type_identifier)), + optional(seq(':', $.type_name)), + )), + // commaSep1($._type_identifier), + commaSep1($.type_name), + ), + '>', + )), + + generic_arguments: $ => prec.right(seq('(', commaSep1($._type_identifier), ')')), + + instance_variables: $ => seq( + '{', + repeat(seq( + optional(choice($.attribute_specifier, $.attribute_declaration)), + $.instance_variable, + )), + '}', + optional(';'), + ), + + instance_variable: $ => choice( + $.visibility_specification, + $.struct_declaration, + $.atomic_declaration, + $.preproc_ifdef, + $.preproc_if, + ), + + visibility_specification: _ => choice( + '@private', + '@protected', + '@package', + '@public', + ), + + protocol_declaration: $ => seq( + repeat($._declaration_modifiers), + '@protocol', + $.identifier, + optional($.protocol_reference_list), + repeat($.interface_declaration), + repeat($.qualified_protocol_interface_declaration), + '@end', + ), + + compatibility_alias_declaration: $ => seq( + '@compatibility_alias', + field('class', $.identifier), + field('alias', $.identifier), + ';', + ), + + interface_declaration: $ => choice( + $.declaration, + $.property_declaration, + $.method_declaration, + $.function_definition, + $.type_definition, + alias($.preproc_if_in_interface_declaration, $.preproc_if), + $.preproc_def, + $.preproc_ifdef, + $.preproc_undef, + $.preproc_call, + seq($.struct_specifier, ';'), + ), + + qualified_protocol_interface_declaration: $ => choice( + seq('@optional', repeat($.interface_declaration)), + seq('@required', repeat($.interface_declaration)), + ), + + implementation_definition: $ => prec(1, choice( + $.function_definition, + $.declaration, + $.property_implementation, + seq($.struct_specifier, ';'), + $.method_definition, + $.preproc_function_def, + $.macro_type_specifier, + $.type_definition, + alias($.preproc_if_in_implementation_definition, $.preproc_if), + $.preproc_ifdef, + $.preproc_undef, + $.preproc_def, + $.preproc_call, + )), + + property_implementation: $ => choice( + seq( + '@synthesize', + commaSep1(seq($.identifier, optional(seq('=', $.identifier)))), + ';', + ), + seq('@dynamic', optional('(class)'), commaSep1($.identifier), ';'), + ), + + method_definition: $ => seq( + choice('+', '-'), // class = '+', instance = '-' + optional($.method_type), + optional($.attribute_specifier), + choice( + seq( + $.method_selector_no_list, + optional(seq( + $.method_parameter, + repeat(seq(optional($.method_selector), $.method_parameter)), + )), + ), + seq( + $.method_parameter, + repeat(seq(optional($.method_selector), $.method_parameter)), + ), + ), + optional(seq(',', choice('...', commaSep1(alias($.c_method_parameter, $.method_parameter))))), + repeat($.declaration), + repeat($._declaration_modifiers), + optional(';'), + $.compound_statement, + optional(';'), + ), + + method_type: $ => seq( + '(', + commaSep1(seq(optional($.attribute_specifier), choice($.type_name, $.parameterized_arguments))), + ')', + ), + + method_selector: $ => prec.left(choice( + $.method_selector_no_list, + seq($.keyword_selector, ','), + )), + + method_selector_no_list: $ => choice( + $.identifier, + $.keyword_selector, + seq($.keyword_selector, ',', '...'), + ), + + keyword_selector: $ => repeat1($.keyword_declarator), + + keyword_declarator: $ => seq( + optional($.identifier), + ':', + optional($.method_type), + $.identifier, + ), + + property_declaration: $ => (seq( + optional($._declaration_modifiers), + '@property', + optional($.property_attributes_declaration), + optional(choice($.attribute_specifier, $.attribute_declaration)), + choice($.struct_declaration, $.atomic_declaration), + )), + + property_attributes_declaration: $ => seq( + '(', + commaSep($.property_attribute), + ')', + ), + + property_attribute: $ => choice( + $.identifier, + seq($.identifier, '=', $.identifier, optional(':')), + ), + + method_declaration: $ => seq( + choice('+', '-'), // class = '+', instance = '-' + optional($.method_type), + optional(choice($.attribute_specifier, $.attribute_declaration)), + repeat1(choice( + seq( + $.method_selector, + optional($.attribute_specifier), + optional($.method_parameter), + ), + $.method_parameter, + )), + optional(seq(',', choice('...', commaSep1(alias($.c_method_parameter, $.method_parameter))))), + repeat($._declaration_modifiers), + repeat1(prec.right(';')), + ), + + method_parameter: $ => prec.right(seq( + ':', + optional($.method_type), + optional($._declaration_modifiers), + choice($.identifier, $.keyword_identifier), + repeat($._declaration_modifiers), + )), + + c_method_parameter: $ => prec.left(seq( + $._declaration_specifiers, + commaSep1(prec.right(field('declarator', choice( + $._declarator, + $.init_declarator, + )))), + )), + + struct_declaration: $ => seq( + repeat1($.specifier_qualifier), + commaSep1($.struct_declarator), + optional($._declaration_modifiers), + ';', + ), + + atomic_declaration: $ => seq( + '_Atomic', + '(', + $.type_specifier, + ')', + $._field_identifier, + ';', + ), + + preproc_block: $ => prec.right(seq( + $.identifier, + '\n', + repeat($._block_item), + $.identifier, + '\n', + )), + + specifier_qualifier: $ => prec.right(choice( + $.type_specifier, + $.type_qualifier, + $.protocol_qualifier, + )), + + struct_declarator: $ => choice( + $._declarator, + seq(optional($._declarator), ':', $.expression), + ), + + field_declaration: $ => seq( + $._declaration_specifiers, + commaSep(seq( + field('declarator', choice($._field_declarator, $.enum_specifier)), + optional($.bitfield_clause), + )), + optional($.bitfield_clause), + optional($.attribute_specifier), + ';', + ), + + function_declarator: $ => prec.right(1, seq( + field('declarator', $._declarator), + field('parameters', $.parameter_list), + optional($.gnu_asm_expression), + repeat($.attribute_specifier), + )), + function_field_declarator: $ => prec.right(1, seq( + field('declarator', $._field_declarator), + field('parameters', $.parameter_list), + repeat(choice($.attribute_specifier, $.type_qualifier)), + )), + function_type_declarator: $ => prec.right(1, seq( + field('declarator', $._type_declarator), + field('parameters', $.parameter_list), + repeat(choice($.attribute_specifier, $.type_qualifier)), + )), + abstract_function_declarator: $ => prec.right(1, seq( + field('declarator', optional($._abstract_declarator)), + field('parameters', $.parameter_list), + repeat(choice($.attribute_specifier, $.type_qualifier)), + )), + + // This is missing binary expressions, others were kept so that macro code can be parsed better and code examples + _top_level_expression_statement: $ => seq( + optional($._expression_not_binary), + ';', + ), + + try_statement: $ => seq( + choice('@try', '__try'), + $.compound_statement, + choice( + seq(repeat1($.catch_clause), optional($.finally_clause)), + $.finally_clause, + ), + ), + + catch_clause: $ => seq( + choice('@catch', '__catch'), + optional(seq('(', choice('...', $.type_name), ')')), + $.compound_statement, + ), + + finally_clause: $ => seq( + choice('@finally', '__finally'), + $.compound_statement, + ), + + throw_statement: $ => seq( + '@throw', + optional($.expression), + ';', + ), + + selector_expression: $ => prec.left(seq( + '@selector', + repeat1('('), + choice($.identifier, $.method_identifier, prec(-1, /[^)]*/)), + repeat1(')'), + )), + + available_expression: $ => seq( + choice('@available', '__builtin_available'), + '(', + commaSep1(choice( + $.identifier, + seq($.identifier, $.version), + '*', + )), + ')', + ), + + range_expression: $ => prec.right(seq($.expression, '...', $.expression)), + + block_literal: $ => seq( + '^', + optional($.attribute_specifier), + optional($.type_name), + optional($.attribute_specifier), + optional($.parameter_list), + optional($.attribute_specifier), + $.compound_statement, + ), + + message_expression: $ => prec(C.PREC.CALL, seq( + '[', + field('receiver', choice($.expression, $.generic_specifier)), + repeat1(seq( + field('method', $.identifier), + repeat(seq( + ':', + commaSep1($.expression), + )), + )), + ']', + )), + + parenthesized_expression: $ => seq( + '(', + choice($.expression, $.comma_expression, $.compound_statement), + ')', + ), + + va_arg_expression: $ => seq('va_arg', '(', $.expression, ',', $.type_descriptor, ')'), + + ms_asm_block: _ => seq( + '__asm', + '{', + /[^}]*/, + '}', + ), + + encode_expression: $ => seq('@encode', '(', $.type_name, ')'), + + synchronized_statement: $ => seq('@synchronized', '(', commaSep1($.expression), ')', $.compound_statement), + + parenthesized_declarator: $ => prec.dynamic(C.PREC.PAREN_DECLARATOR, seq( + '(', + repeat($._declaration_modifiers), + $._declarator, + ')', + )), + parenthesized_field_declarator: $ => prec.dynamic(C.PREC.PAREN_DECLARATOR, seq( + '(', + repeat($._declaration_modifiers), + $._field_declarator, + ')', + )), + parenthesized_type_declarator: $ => prec.dynamic(C.PREC.PAREN_DECLARATOR, seq( + '(', + repeat($._declaration_modifiers), + $._type_declarator, + ')', + )), + abstract_parenthesized_declarator: $ => prec(1, seq( + '(', + repeat($._declaration_modifiers), + $._abstract_declarator, + ')', + )), + + pointer_declarator: $ => prec.dynamic(1, prec.right(seq( + optional($.ms_based_modifier), + '*', + repeat($.ms_pointer_modifier), + repeat($._declaration_modifiers), + field('declarator', $._declarator), + ))), + pointer_field_declarator: $ => prec.dynamic(1, prec.right(seq( + optional($.ms_based_modifier), + '*', + repeat($.ms_pointer_modifier), + repeat($._declaration_modifiers), + field('declarator', $._field_declarator), + ))), + pointer_type_declarator: $ => prec.dynamic(1, prec.right(seq( + optional($.ms_based_modifier), + '*', + repeat($.ms_pointer_modifier), + repeat($._declaration_modifiers), + field('declarator', $._type_declarator), + ))), + abstract_pointer_declarator: $ => prec.dynamic(1, prec.right(seq( + '*', + repeat($._declaration_modifiers), + field('declarator', optional($._abstract_declarator)), + ))), + block_pointer_declarator: $ => prec.dynamic(1, prec.right(seq( + '^', + repeat($.type_qualifier), + field('declarator', $._declarator), + ))), + block_pointer_field_declarator: $ => prec.dynamic(1, prec.right(seq( + '^', + repeat($.type_qualifier), + field('declarator', $._field_declarator), + ))), + block_pointer_type_declarator: $ => prec.dynamic(1, prec.right(seq( + '^', + repeat($.type_qualifier), + field('declarator', $._type_declarator), + ))), + abstract_block_pointer_declarator: $ => prec.dynamic(1, prec.right(seq( + '^', + repeat($.type_qualifier), + field('declarator', optional($._abstract_declarator)), + ))), + + init_declarator: $ => seq( + field('declarator', $._declarator), + optional($.attribute_specifier), + '=', + field('value', choice($.initializer_list, $.expression)), + ), + + generic_specifier: $ => prec.right(seq( + $._type_identifier, + repeat1(seq( + '<', + commaSep1($.type_name), + '>', + )), + )), + + type_specifier: ($, original) => choice( + original, + $.typedefed_specifier, + $.generic_specifier, + $.typeof_specifier, + $.array_type_specifier, + ), + + typedefed_identifier: _ => choice( + 'BOOL', + 'IMP', + 'SEL', + 'Class', + 'id', + ), + + typedefed_specifier: $ => prec.right(seq( + $.typedefed_identifier, + optional($.protocol_reference_list), + )), + + array_type_specifier: $ => seq( + $.type_specifier, + '[', + optional(seq(repeat($.type_qualifier), $.expression)), + ']', + ), + + atdef_field: $ => seq('@defs', '(', $.identifier, ')'), + + _field_declaration_list_item: $ => choice( + $.field_declaration, + $.preproc_def, + $.preproc_function_def, + $.preproc_call, + alias($.preproc_if_in_field_declaration_list, $.preproc_if), + alias($.preproc_ifdef_in_field_declaration_list, $.preproc_ifdef), + $.atdef_field, + ), + + protocol_qualifier: _ => choice( + 'out', + 'inout', + 'bycopy', + 'byref', + 'oneway', + 'in', + ), + + type_name: $ => prec.right(seq( + repeat1(prec.right(choice($.specifier_qualifier, $.attribute_specifier, $._declarator))), + optional($.protocol_reference_list), + optional($._abstract_declarator), + )), + + at_expression: $ => prec.right(seq( + '@', + $.expression, + )), + + number_literal: $ => { + const separator = '\''; + const hex = /[0-9a-fA-F]/; + const decimal = /[0-9]/; + const hexDigits = seq(repeat1(hex), repeat(seq(separator, repeat1(hex)))); + const decimalDigits = seq(repeat1(decimal), repeat(seq(separator, repeat1(decimal)))); + return token(seq( + optional(/[-\+]/), + optional(choice('0x', '0b')), + choice( + seq( + choice( + decimalDigits, + seq('0b', decimalDigits), + seq('0x', hexDigits), + ), + optional(seq('.', optional(hexDigits))), + ), + seq('.', decimalDigits), + ), + optional(seq( + /[eEpP]/, + optional(seq( + optional(/[-\+]/), + hexDigits, + )), + )), + repeat(choice('i', 'u', 'l', 'U', 'L', 'f', 'F')), + )); + }, + + string_literal: $ => seq( + choice(seq('@', '"'), 'L"', 'u"', 'U"', 'u8"', '"'), + repeat(choice( + alias(token.immediate(prec(1, /[^\\"\n]+/)), $.string_content), + $.escape_sequence, + )), + '"', + ), + + dictionary_literal: $ => seq( + '@', + '{', + optional(seq( + commaSep1($.dictionary_pair), + optional(','), + )), + '}', + ), + + dictionary_pair: $ => seq($.expression, ':', $.expression), + + array_literal: $ => seq( + '@', + '[', + optional(seq( + commaSep1($.expression), + optional(','), + )), + ']', + ), + + identifier: _ => + /(\$|\p{XID_Start}|_|\\u[0-9A-Fa-f]{4}|\\U[0-9A-Fa-f]{8})(\$|\p{XID_Continue}|\\u[0-9A-Fa-f]{4}|\\U[0-9A-Fa-f]{8})*/u, + + method_identifier: $ => prec.right(seq( + optional($.identifier), + repeat1(token.immediate(':')), + repeat(seq( + $.identifier, + repeat1(token.immediate(':')), + )), + )), + + keyword_identifier: $ => alias( + prec(-3, + choice( + 'id', + 'in', + 'struct', + 'const', + ), + ), + $.identifier, + ), + }, +}); + +/** + * + * @param {string} suffix + * + * @param {any} content + * + * @returns {any} + */ +function preprocIf(suffix, content) { + /** + * + * @param {GrammarSymbols} $ + * + * @returns {ChoiceRule} + */ + function elseBlock($) { + return choice( + suffix ? alias($['preproc_else' + suffix], $.preproc_else) : $.preproc_else, + suffix ? alias($['preproc_elif' + suffix], $.preproc_elif) : $.preproc_elif, + ); + } + + return { + ['preproc_if' + suffix]: $ => seq( + preprocessor('if'), + field('condition', $._preproc_expression), + '\n', + repeat(prec(2, content($))), + field('alternative', optional(elseBlock($))), + preprocessor('endif'), + ), + + ['preproc_ifdef' + suffix]: $ => seq( + choice(preprocessor('ifdef'), preprocessor('ifndef')), + field('name', $.identifier), + repeat(prec(2, content($))), + field('alternative', optional(choice(elseBlock($), $.preproc_elifdef))), + preprocessor('endif'), + ), + + ['preproc_else' + suffix]: $ => seq( + preprocessor('else'), + repeat(prec(2, content($))), + ), + + ['preproc_elif' + suffix]: $ => seq( + preprocessor('elif'), + field('condition', $._preproc_expression), + '\n', + repeat(prec(2, content($))), + field('alternative', optional(elseBlock($))), + ), + + ['preproc_elifdef' + suffix]: $ => seq( + choice(preprocessor('elifdef'), preprocessor('elifndef')), + field('name', $.identifier), + repeat(prec(2, content($))), + field('alternative', optional(elseBlock($))), + ), + }; +} + + +/** + * Creates a preprocessor regex rule + * + * @param {RegExp | Rule | string} command + * + * @returns {AliasRule} + */ +function preprocessor(command) { + return alias(new RegExp('#[ \t]*' + command), '#' + command); +} + +/** + * Creates a rule to optionally match one or more of the rules separated by a comma + * + * @param {Rule} rule + * + * @returns {ChoiceRule} + */ +function commaSep(rule) { + return optional(commaSep1(rule)); +} + +/** + * Creates a rule to match one or more of the rules separated by a comma + * + * @param {Rule} rule + * + * @returns {SeqRule} + */ +function commaSep1(rule) { + return seq(rule, repeat(seq(',', rule))); +} + +/** + * Creates a rule to match optionally match one or more of the rules + * separated by a comma and optionally ending with a comma + * + * @param {Rule} rule + * + * @returns {ChoiceRule} + */ +function optionalCommaSep(rule) { + return optional(optionalCommaSep1(rule)); +} + +/** + * Creates a rule to match one or more of the rules separated by a comma + * and optionally ending with a comma + * + * @param {Rule} rule + * + * @returns {SeqRule} + */ +function optionalCommaSep1(rule) { + return seq(rule, repeat(seq(optional(','), rule))); +} diff --git a/gitnexus/vendor/tree-sitter-objc/package.json b/gitnexus/vendor/tree-sitter-objc/package.json new file mode 100644 index 000000000..3123ca080 --- /dev/null +++ b/gitnexus/vendor/tree-sitter-objc/package.json @@ -0,0 +1,56 @@ +{ + "name": "tree-sitter-objc", + "version": "3.0.2", + "description": "Objective-C grammar for tree-sitter", + "repository": "https://github.com/tree-sitter-grammars/tree-sitter-objc", + "license": "MIT", + "author": { + "name": "Amaan Qureshi", + "email": "amaanq12@gmail.com" + }, + "main": "bindings/node", + "types": "bindings/node", + "keywords": [ + "incremental", + "parsing", + "tree-sitter", + "objective-c", + "objc" + ], + "files": [ + "grammar.js", + "tree-sitter.json", + "binding.gyp", + "prebuilds/**", + "bindings/node/*", + "queries/*", + "src/**", + "*.wasm" + ], + "dependencies": { + "node-addon-api": "^8.3.0", + "node-gyp-build": "^4.8.4", + "tree-sitter-c": "^0.23.4" + }, + "devDependencies": { + "eslint": "^9.17.0", + "eslint-config-treesitter": "^1.0.2", + "prebuildify": "^6.0.1", + "tree-sitter-cli": "^0.24.5" + }, + "peerDependencies": { + "tree-sitter": "^0.22.1" + }, + "peerDependenciesMeta": { + "tree-sitter": { + "optional": true + } + }, + "scripts": { + "install": "node-gyp-build", + "lint": "eslint grammar.js", + "prestart": "tree-sitter build --wasm", + "start": "tree-sitter playground", + "test": "node --test bindings/node/*_test.js" + } +} diff --git a/gitnexus/vendor/tree-sitter-objc/prebuilds/darwin-arm64/tree-sitter-objc.node b/gitnexus/vendor/tree-sitter-objc/prebuilds/darwin-arm64/tree-sitter-objc.node new file mode 100644 index 000000000..6c267a63d Binary files /dev/null and b/gitnexus/vendor/tree-sitter-objc/prebuilds/darwin-arm64/tree-sitter-objc.node differ diff --git a/gitnexus/vendor/tree-sitter-objc/prebuilds/darwin-x64/tree-sitter-objc.node b/gitnexus/vendor/tree-sitter-objc/prebuilds/darwin-x64/tree-sitter-objc.node new file mode 100644 index 000000000..edf2e9541 Binary files /dev/null and b/gitnexus/vendor/tree-sitter-objc/prebuilds/darwin-x64/tree-sitter-objc.node differ diff --git a/gitnexus/vendor/tree-sitter-objc/prebuilds/linux-arm64/tree-sitter-objc.node b/gitnexus/vendor/tree-sitter-objc/prebuilds/linux-arm64/tree-sitter-objc.node new file mode 100644 index 000000000..4edd9dd9e Binary files /dev/null and b/gitnexus/vendor/tree-sitter-objc/prebuilds/linux-arm64/tree-sitter-objc.node differ diff --git a/gitnexus/vendor/tree-sitter-objc/prebuilds/linux-x64/tree-sitter-objc.node b/gitnexus/vendor/tree-sitter-objc/prebuilds/linux-x64/tree-sitter-objc.node new file mode 100644 index 000000000..91a444f9b Binary files /dev/null and b/gitnexus/vendor/tree-sitter-objc/prebuilds/linux-x64/tree-sitter-objc.node differ diff --git a/gitnexus/vendor/tree-sitter-objc/prebuilds/win32-arm64/tree-sitter-objc.node b/gitnexus/vendor/tree-sitter-objc/prebuilds/win32-arm64/tree-sitter-objc.node new file mode 100644 index 000000000..4731de812 Binary files /dev/null and b/gitnexus/vendor/tree-sitter-objc/prebuilds/win32-arm64/tree-sitter-objc.node differ diff --git a/gitnexus/vendor/tree-sitter-objc/prebuilds/win32-x64/tree-sitter-objc.node b/gitnexus/vendor/tree-sitter-objc/prebuilds/win32-x64/tree-sitter-objc.node new file mode 100644 index 000000000..b8100baaf Binary files /dev/null and b/gitnexus/vendor/tree-sitter-objc/prebuilds/win32-x64/tree-sitter-objc.node differ diff --git a/gitnexus/vendor/tree-sitter-objc/queries/folds.scm b/gitnexus/vendor/tree-sitter-objc/queries/folds.scm new file mode 100644 index 000000000..b922f8bf8 --- /dev/null +++ b/gitnexus/vendor/tree-sitter-objc/queries/folds.scm @@ -0,0 +1,20 @@ +; inherits: c + +[ + (class_declaration) + (class_interface) + (class_implementation) + (protocol_declaration) + (property_declaration) + (method_declaration) + (struct_declaration) + (struct_declarator) + (try_statement) + (catch_clause) + (finally_clause) + (throw_statement) + (block_literal) + (ms_asm_block) + (dictionary_literal) + (array_literal) +] @fold diff --git a/gitnexus/vendor/tree-sitter-objc/queries/highlights.scm b/gitnexus/vendor/tree-sitter-objc/queries/highlights.scm new file mode 100644 index 000000000..8c70728d4 --- /dev/null +++ b/gitnexus/vendor/tree-sitter-objc/queries/highlights.scm @@ -0,0 +1,216 @@ +; inherits: c + +; Preprocs + +(preproc_undef + name: (_) @constant) @preproc + +; Includes + +(module_import "@import" @include path: (identifier) @namespace) + +((preproc_include + _ @include path: (_)) + (#any-of? @include "#include" "#import")) + +; Type Qualifiers + +[ + "@optional" + "@required" + "__covariant" + "__contravariant" + (visibility_specification) +] @type.qualifier + +; Storageclasses + +[ + "@autoreleasepool" + "@synthesize" + "@dynamic" + "volatile" + (protocol_qualifier) +] @storageclass + +; Keywords + +[ + "@protocol" + "@interface" + "@implementation" + "@compatibility_alias" + "@property" + "@selector" + "@defs" + "availability" + "@end" +] @keyword + +(class_declaration "@" @keyword "class" @keyword) ; I hate Obj-C for allowing "@ class" :) + +(method_definition ["+" "-"] @keyword.function) +(method_declaration ["+" "-"] @keyword.function) + +[ + "__typeof__" + "__typeof" + "typeof" + "in" +] @keyword.operator + +[ + "@synchronized" + "oneway" +] @keyword.coroutine + +; Exceptions + +[ + "@try" + "__try" + "@catch" + "__catch" + "@finally" + "__finally" + "@throw" +] @exception + +; Variables + +((identifier) @variable.builtin + (#any-of? @variable.builtin "self" "super")) + +; Functions & Methods + +[ + "objc_bridge_related" + "@available" + "__builtin_available" + "va_arg" + "asm" +] @function.builtin + +(method_definition (identifier) @method) + +(method_declaration (identifier) @method) + +(method_identifier (identifier)? @method ":" @method (identifier)? @method) + +(message_expression method: (identifier) @method.call) + +; Constructors + +((message_expression method: (identifier) @constructor) + (#eq? @constructor "init")) + +; Attributes + +(availability_attribute_specifier + [ + "CF_FORMAT_FUNCTION" "NS_AVAILABLE" "__IOS_AVAILABLE" "NS_AVAILABLE_IOS" + "API_AVAILABLE" "API_UNAVAILABLE" "API_DEPRECATED" "NS_ENUM_AVAILABLE_IOS" + "NS_DEPRECATED_IOS" "NS_ENUM_DEPRECATED_IOS" "NS_FORMAT_FUNCTION" "DEPRECATED_MSG_ATTRIBUTE" + "__deprecated_msg" "__deprecated_enum_msg" "NS_SWIFT_NAME" "NS_SWIFT_UNAVAILABLE" + "NS_EXTENSION_UNAVAILABLE_IOS" "NS_CLASS_AVAILABLE_IOS" "NS_CLASS_DEPRECATED_IOS" "__OSX_AVAILABLE_STARTING" + "NS_ROOT_CLASS" "NS_UNAVAILABLE" "NS_REQUIRES_NIL_TERMINATION" "CF_RETURNS_RETAINED" + "CF_RETURNS_NOT_RETAINED" "DEPRECATED_ATTRIBUTE" "UI_APPEARANCE_SELECTOR" "UNAVAILABLE_ATTRIBUTE" + ]) @attribute + +; Macros + +(type_qualifier + [ + "_Complex" + "_Nonnull" + "_Nullable" + "_Nullable_result" + "_Null_unspecified" + "__autoreleasing" + "__block" + "__bridge" + "__bridge_retained" + "__bridge_transfer" + "__complex" + "__kindof" + "__nonnull" + "__nullable" + "__ptrauth_objc_class_ro" + "__ptrauth_objc_isa_pointer" + "__ptrauth_objc_super_pointer" + "__strong" + "__thread" + "__unsafe_unretained" + "__unused" + "__weak" + ]) @function.macro.builtin + +[ "__real" "__imag" ] @function.macro.builtin + +((call_expression function: (identifier) @function.macro) + (#eq? @function.macro "testassert")) + +; Types + +(class_declaration (identifier) @type) + +(class_interface "@interface" . (identifier) @type superclass: _? @type category: _? @namespace) + +(class_implementation "@implementation" . (identifier) @type superclass: _? @type category: _? @namespace) + +(protocol_forward_declaration (identifier) @type) ; @interface :( + +(protocol_reference_list (identifier) @type) ; ^ + +[ + "BOOL" + "IMP" + "SEL" + "Class" + "id" +] @type.builtin + +; Constants + +(property_attribute (identifier) @constant "="?) + +[ "__asm" "__asm__" ] @constant.macro + +; Properties + +(property_implementation "@synthesize" (identifier) @property) + +((identifier) @property + (#has-ancestor? @property struct_declaration)) + +; Parameters + +(method_parameter ":" @method (identifier) @parameter) + +(method_parameter declarator: (identifier) @parameter) + +(parameter_declaration + declarator: (function_declarator + declarator: (parenthesized_declarator + (block_pointer_declarator + declarator: (identifier) @parameter)))) + +"..." @parameter.builtin + +; Operators + +[ + "^" +] @operator + +; Literals + +(platform) @string.special + +(version_number) @text.uri @number + +; Punctuation + +"@" @punctuation.special + +[ "<" ">" ] @punctuation.bracket diff --git a/gitnexus/vendor/tree-sitter-objc/queries/indents.scm b/gitnexus/vendor/tree-sitter-objc/queries/indents.scm new file mode 100644 index 000000000..a5a5208ca --- /dev/null +++ b/gitnexus/vendor/tree-sitter-objc/queries/indents.scm @@ -0,0 +1 @@ +; inherits: c diff --git a/gitnexus/vendor/tree-sitter-objc/queries/injections.scm b/gitnexus/vendor/tree-sitter-objc/queries/injections.scm new file mode 100644 index 000000000..359420d10 --- /dev/null +++ b/gitnexus/vendor/tree-sitter-objc/queries/injections.scm @@ -0,0 +1,10 @@ +; inherits: c + +; TODO(amaanq): uncomment/add when I add asm support +; (ms_asm_block "{" _ @asm "}") +; +; ((asm_specifier (string_literal) @asm) +; (#offset! @asm 0 1 0 -1)) +; +; ((asm_statement (string_literal) @asm) +; (#offset! @asm 0 1 0 -1)) diff --git a/gitnexus/vendor/tree-sitter-objc/queries/locals.scm b/gitnexus/vendor/tree-sitter-objc/queries/locals.scm new file mode 100644 index 000000000..a5a5208ca --- /dev/null +++ b/gitnexus/vendor/tree-sitter-objc/queries/locals.scm @@ -0,0 +1 @@ +; inherits: c diff --git a/gitnexus/vendor/tree-sitter-objc/src/grammar.json b/gitnexus/vendor/tree-sitter-objc/src/grammar.json new file mode 100644 index 000000000..fac1fd907 --- /dev/null +++ b/gitnexus/vendor/tree-sitter-objc/src/grammar.json @@ -0,0 +1,16370 @@ +{ + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", + "name": "objc", + "inherits": "c", + "word": "identifier", + "rules": { + "translation_unit": { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_top_level_item" + } + }, + "_top_level_item": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "function_definition" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_old_style_function_definition" + }, + "named": true, + "value": "function_definition" + }, + { + "type": "SYMBOL", + "name": "linkage_specification" + }, + { + "type": "SYMBOL", + "name": "declaration" + }, + { + "type": "SYMBOL", + "name": "_top_level_statement" + }, + { + "type": "SYMBOL", + "name": "attributed_statement" + }, + { + "type": "SYMBOL", + "name": "type_definition" + }, + { + "type": "SYMBOL", + "name": "_empty_declaration" + }, + { + "type": "SYMBOL", + "name": "preproc_if" + }, + { + "type": "SYMBOL", + "name": "preproc_ifdef" + }, + { + "type": "SYMBOL", + "name": "preproc_include" + }, + { + "type": "SYMBOL", + "name": "preproc_def" + }, + { + "type": "SYMBOL", + "name": "preproc_function_def" + }, + { + "type": "SYMBOL", + "name": "preproc_call" + } + ] + }, + { + "type": "SYMBOL", + "name": "class_declaration" + }, + { + "type": "SYMBOL", + "name": "class_interface" + }, + { + "type": "SYMBOL", + "name": "class_implementation" + }, + { + "type": "SYMBOL", + "name": "protocol_declaration" + }, + { + "type": "SYMBOL", + "name": "protocol_forward_declaration" + }, + { + "type": "SYMBOL", + "name": "module_import" + }, + { + "type": "SYMBOL", + "name": "compatibility_alias_declaration" + }, + { + "type": "SYMBOL", + "name": "preproc_undef" + }, + { + "type": "SYMBOL", + "name": "preproc_linemarker" + } + ] + }, + "_block_item": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "function_definition" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_old_style_function_definition" + }, + "named": true, + "value": "function_definition" + }, + { + "type": "SYMBOL", + "name": "linkage_specification" + }, + { + "type": "SYMBOL", + "name": "declaration" + }, + { + "type": "SYMBOL", + "name": "statement" + }, + { + "type": "SYMBOL", + "name": "attributed_statement" + }, + { + "type": "SYMBOL", + "name": "type_definition" + }, + { + "type": "SYMBOL", + "name": "_empty_declaration" + }, + { + "type": "SYMBOL", + "name": "preproc_if" + }, + { + "type": "SYMBOL", + "name": "preproc_ifdef" + }, + { + "type": "SYMBOL", + "name": "preproc_include" + }, + { + "type": "SYMBOL", + "name": "preproc_def" + }, + { + "type": "SYMBOL", + "name": "preproc_function_def" + }, + { + "type": "SYMBOL", + "name": "preproc_call" + } + ] + }, + { + "type": "SYMBOL", + "name": "class_declaration" + }, + { + "type": "SYMBOL", + "name": "class_interface" + }, + { + "type": "SYMBOL", + "name": "class_implementation" + }, + { + "type": "SYMBOL", + "name": "protocol_declaration" + }, + { + "type": "SYMBOL", + "name": "protocol_forward_declaration" + }, + { + "type": "SYMBOL", + "name": "module_import" + }, + { + "type": "SYMBOL", + "name": "compatibility_alias_declaration" + }, + { + "type": "SYMBOL", + "name": "preproc_undef" + }, + { + "type": "SYMBOL", + "name": "preproc_linemarker" + } + ] + }, + "preproc_include": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "directive", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*include" + }, + "named": false, + "value": "#include" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*import" + }, + "named": false, + "value": "#import" + } + ] + } + }, + { + "type": "FIELD", + "name": "path", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "SYMBOL", + "name": "system_lib_string" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_call_expression" + }, + "named": true, + "value": "call_expression" + } + ] + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "\\r?\\n" + } + } + ] + }, + "preproc_def": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*define" + }, + "named": false, + "value": "#define" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "preproc_arg" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "\\r?\\n" + } + } + ] + }, + "preproc_function_def": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*define" + }, + "named": false, + "value": "#define" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "preproc_params" + } + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "preproc_arg" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "\\r?\\n" + } + } + ] + }, + "preproc_params": { + "type": "SEQ", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "(" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": "..." + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": "..." + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "..." + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "preproc_call": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "directive", + "content": { + "type": "SYMBOL", + "name": "preproc_directive" + } + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "preproc_arg" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "\\r?\\n" + } + } + ] + }, + "preproc_if": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*if" + }, + "named": false, + "value": "#if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_block_item" + }, + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "SYMBOL", + "name": "property_implementation" + } + ] + } + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "preproc_else" + }, + { + "type": "SYMBOL", + "name": "preproc_elif" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" + } + ] + }, + "preproc_ifdef": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*ifdef" + }, + "named": false, + "value": "#ifdef" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*ifndef" + }, + "named": false, + "value": "#ifndef" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_block_item" + }, + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "SYMBOL", + "name": "property_implementation" + } + ] + } + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "preproc_else" + }, + { + "type": "SYMBOL", + "name": "preproc_elif" + } + ] + }, + { + "type": "SYMBOL", + "name": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" + } + ] + }, + "preproc_else": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*else" + }, + "named": false, + "value": "#else" + }, + { + "type": "REPEAT", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_block_item" + }, + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "SYMBOL", + "name": "property_implementation" + } + ] + } + } + } + ] + }, + "preproc_elif": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elif" + }, + "named": false, + "value": "#elif" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_block_item" + }, + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "SYMBOL", + "name": "property_implementation" + } + ] + } + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "preproc_else" + }, + { + "type": "SYMBOL", + "name": "preproc_elif" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + "preproc_elifdef": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elifdef" + }, + "named": false, + "value": "#elifdef" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elifndef" + }, + "named": false, + "value": "#elifndef" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_block_item" + }, + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "SYMBOL", + "name": "property_implementation" + } + ] + } + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "preproc_else" + }, + { + "type": "SYMBOL", + "name": "preproc_elif" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + "preproc_if_in_field_declaration_list": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*if" + }, + "named": false, + "value": "#if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_field_declaration_list_item" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_field_declaration_list" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_field_declaration_list" + }, + "named": true, + "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_field_declaration_list" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" + } + ] + } + }, + "preproc_ifdef_in_field_declaration_list": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*ifdef" + }, + "named": false, + "value": "#ifdef" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*ifndef" + }, + "named": false, + "value": "#ifndef" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_field_declaration_list_item" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_field_declaration_list" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_field_declaration_list" + }, + "named": true, + "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_field_declaration_list" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" + } + ] + } + }, + "preproc_else_in_field_declaration_list": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*else" + }, + "named": false, + "value": "#else" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_field_declaration_list_item" + } + } + ] + } + }, + "preproc_elif_in_field_declaration_list": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elif" + }, + "named": false, + "value": "#elif" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_field_declaration_list_item" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_field_declaration_list" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_field_declaration_list" + }, + "named": true, + "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_field_declaration_list" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + } + }, + "preproc_elifdef_in_field_declaration_list": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elifdef" + }, + "named": false, + "value": "#elifdef" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elifndef" + }, + "named": false, + "value": "#elifndef" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_field_declaration_list_item" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_field_declaration_list" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_field_declaration_list" + }, + "named": true, + "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_field_declaration_list" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + } + }, + "preproc_if_in_enumerator_list": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*if" + }, + "named": false, + "value": "#if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "enumerator" + }, + { + "type": "STRING", + "value": "," + } + ] + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "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_elifdef_in_enumerator_list" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" + } + ] + } + }, + "preproc_ifdef_in_enumerator_list": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*ifdef" + }, + "named": false, + "value": "#ifdef" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*ifndef" + }, + "named": false, + "value": "#ifndef" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "enumerator" + }, + { + "type": "STRING", + "value": "," + } + ] + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "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_elifdef_in_enumerator_list" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" + } + ] + } + }, + "preproc_else_in_enumerator_list": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*else" + }, + "named": false, + "value": "#else" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "enumerator" + }, + { + "type": "STRING", + "value": "," + } + ] + } + } + ] + } + }, + "preproc_elif_in_enumerator_list": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elif" + }, + "named": false, + "value": "#elif" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "enumerator" + }, + { + "type": "STRING", + "value": "," + } + ] + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "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_elifdef_in_enumerator_list" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + } + }, + "preproc_elifdef_in_enumerator_list": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elifdef" + }, + "named": false, + "value": "#elifdef" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elifndef" + }, + "named": false, + "value": "#elifndef" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "enumerator" + }, + { + "type": "STRING", + "value": "," + } + ] + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "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_elifdef_in_enumerator_list" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + } + }, + "preproc_if_in_enumerator_list_no_comma": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*if" + }, + "named": false, + "value": "#if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "enumerator" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "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_elifdef_in_enumerator_list_no_comma" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" + } + ] + } + }, + "preproc_ifdef_in_enumerator_list_no_comma": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*ifdef" + }, + "named": false, + "value": "#ifdef" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*ifndef" + }, + "named": false, + "value": "#ifndef" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "enumerator" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "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_elifdef_in_enumerator_list_no_comma" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" + } + ] + } + }, + "preproc_else_in_enumerator_list_no_comma": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*else" + }, + "named": false, + "value": "#else" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "enumerator" + } + } + ] + } + }, + "preproc_elif_in_enumerator_list_no_comma": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elif" + }, + "named": false, + "value": "#elif" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "enumerator" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "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_elifdef_in_enumerator_list_no_comma" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + } + }, + "preproc_elifdef_in_enumerator_list_no_comma": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elifdef" + }, + "named": false, + "value": "#elifdef" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elifndef" + }, + "named": false, + "value": "#elifndef" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "enumerator" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "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_elifdef_in_enumerator_list_no_comma" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + } + }, + "preproc_arg": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": -1, + "content": { + "type": "PATTERN", + "value": "\\S([^/\\n]|\\/[^*]|\\\\\\r?\\n)*" + } + } + }, + "preproc_directive": { + "type": "PATTERN", + "value": "#[ \\t]*[a-zA-Z0-9]\\w*" + }, + "_preproc_expression": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_call_expression" + }, + "named": true, + "value": "call_expression" + }, + { + "type": "SYMBOL", + "name": "number_literal" + }, + { + "type": "SYMBOL", + "name": "char_literal" + }, + { + "type": "SYMBOL", + "name": "preproc_defined" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_unary_expression" + }, + "named": true, + "value": "unary_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_binary_expression" + }, + "named": true, + "value": "binary_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_parenthesized_expression" + }, + "named": true, + "value": "parenthesized_expression" + } + ] + }, + { + "type": "SYMBOL", + "name": "system_lib_string" + } + ] + }, + "preproc_parenthesized_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_preproc_expression" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "preproc_defined": { + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": 15, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "defined" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "defined" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + ] + }, + "preproc_unary_expression": { + "type": "PREC_LEFT", + "value": 14, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "!" + }, + { + "type": "STRING", + "value": "~" + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "+" + } + ] + } + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + "preproc_call_expression": { + "type": "PREC", + "value": 15, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_argument_list" + }, + "named": true, + "value": "argument_list" + } + } + ] + } + }, + "preproc_argument_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_preproc_expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_preproc_expression" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "preproc_binary_expression": { + "type": "CHOICE", + "members": [ + { + "type": "PREC_LEFT", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "+" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "-" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 11, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "*" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 11, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "/" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 11, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "%" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "||" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&&" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 3, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "|" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 4, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "^" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 5, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 6, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "==" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 6, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "!=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<<" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">>" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + } + ] + }, + "function_definition": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_declarator" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + } + ] + }, + "_old_style_function_definition": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_old_style_function_declarator" + }, + "named": true, + "value": "function_declarator" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "declaration" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + } + ] + }, + "declaration": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "SEQ", + "members": [ + { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_declarator" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "gnu_asm_expression" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "init_declarator" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "type_qualifier" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + ] + } + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_declarator" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "gnu_asm_expression" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "init_declarator" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "type_qualifier" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + ] + } + } + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "type_definition": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "__extension__" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_declspec_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "typedef" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_declspec_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_type_definition_type" + }, + { + "type": "SYMBOL", + "name": "_type_definition_declarators" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "_type_definition_type": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_specifier" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_declspec_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + } + ] + }, + "_type_definition_declarators": { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_type_declarator" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_type_declarator" + } + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_modifiers" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_declaration_modifiers": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "storage_class_specifier" + }, + { + "type": "SYMBOL", + "name": "type_qualifier" + }, + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "SYMBOL", + "name": "attribute_declaration" + }, + { + "type": "SYMBOL", + "name": "ms_declspec_modifier" + } + ] + }, + { + "type": "SYMBOL", + "name": "availability_attribute_specifier" + }, + { + "type": "SYMBOL", + "name": "attribute_declaration" + } + ] + }, + "_declaration_specifiers": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_declaration_modifiers" + } + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_specifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_declaration_modifiers" + } + } + ] + } + }, + "linkage_specification": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "extern" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "string_literal" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "function_definition" + }, + { + "type": "SYMBOL", + "name": "declaration" + }, + { + "type": "SYMBOL", + "name": "declaration_list" + } + ] + } + } + ] + }, + "attribute_specifier": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "__attribute__" + }, + { + "type": "STRING", + "value": "__attribute" + } + ] + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "argument_list" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "noreturn" + }, + { + "type": "STRING", + "value": "nothrow" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "noreturn" + }, + { + "type": "STRING", + "value": "nothrow" + } + ] + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "attribute": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "prefix", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": "::" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "attribute_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "attribute" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "attribute" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": "]" + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "ms_declspec_modifier": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "__declspec" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "ms_based_modifier": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "__based" + }, + { + "type": "SYMBOL", + "name": "argument_list" + } + ] + }, + "ms_call_modifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "__cdecl" + }, + { + "type": "STRING", + "value": "__clrcall" + }, + { + "type": "STRING", + "value": "__stdcall" + }, + { + "type": "STRING", + "value": "__fastcall" + }, + { + "type": "STRING", + "value": "__thiscall" + }, + { + "type": "STRING", + "value": "__vectorcall" + } + ] + }, + "ms_restrict_modifier": { + "type": "STRING", + "value": "__restrict" + }, + "ms_unsigned_ptr_modifier": { + "type": "STRING", + "value": "__uptr" + }, + "ms_signed_ptr_modifier": { + "type": "STRING", + "value": "__sptr" + }, + "ms_unaligned_ptr_modifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "_unaligned" + }, + { + "type": "STRING", + "value": "__unaligned" + } + ] + }, + "ms_pointer_modifier": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_unaligned_ptr_modifier" + }, + { + "type": "SYMBOL", + "name": "ms_restrict_modifier" + }, + { + "type": "SYMBOL", + "name": "ms_unsigned_ptr_modifier" + }, + { + "type": "SYMBOL", + "name": "ms_signed_ptr_modifier" + } + ] + }, + "declaration_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_block_item" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "_declarator": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "pointer_declarator" + }, + { + "type": "SYMBOL", + "name": "function_declarator" + }, + { + "type": "SYMBOL", + "name": "array_declarator" + }, + { + "type": "SYMBOL", + "name": "parenthesized_declarator" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "block_pointer_declarator" + } + ] + } + }, + "_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": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "attributed_field_declarator" + }, + "named": true, + "value": "attributed_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "pointer_field_declarator" + }, + "named": true, + "value": "pointer_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "function_field_declarator" + }, + "named": true, + "value": "function_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "array_field_declarator" + }, + "named": true, + "value": "array_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "parenthesized_field_declarator" + }, + "named": true, + "value": "parenthesized_declarator" + }, + { + "type": "SYMBOL", + "name": "_field_identifier" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "block_pointer_field_declarator" + }, + "named": true, + "value": "block_pointer_declarator" + } + ] + }, + "_type_declarator": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "pointer_type_declarator" + }, + "named": true, + "value": "pointer_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "function_type_declarator" + }, + "named": true, + "value": "function_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "array_type_declarator" + }, + "named": true, + "value": "array_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "parenthesized_type_declarator" + }, + "named": true, + "value": "parenthesized_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "block_pointer_type_declarator" + }, + "named": true, + "value": "block_pointer_declarator" + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "signed" + }, + { + "type": "STRING", + "value": "unsigned" + }, + { + "type": "STRING", + "value": "long" + }, + { + "type": "STRING", + "value": "short" + } + ] + }, + "named": true, + "value": "primitive_type" + }, + { + "type": "SYMBOL", + "name": "primitive_type" + } + ] + }, + "_abstract_declarator": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "abstract_pointer_declarator" + }, + { + "type": "SYMBOL", + "name": "abstract_function_declarator" + }, + { + "type": "SYMBOL", + "name": "abstract_array_declarator" + }, + { + "type": "SYMBOL", + "name": "abstract_parenthesized_declarator" + } + ] + }, + { + "type": "SYMBOL", + "name": "abstract_block_pointer_declarator" + } + ] + }, + "parenthesized_declarator": { + "type": "PREC_DYNAMIC", + "value": -10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_declaration_modifiers" + } + }, + { + "type": "SYMBOL", + "name": "_declarator" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "parenthesized_field_declarator": { + "type": "PREC_DYNAMIC", + "value": -10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_declaration_modifiers" + } + }, + { + "type": "SYMBOL", + "name": "_field_declarator" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "parenthesized_type_declarator": { + "type": "PREC_DYNAMIC", + "value": -10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_declaration_modifiers" + } + }, + { + "type": "SYMBOL", + "name": "_type_declarator" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "abstract_parenthesized_declarator": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_declaration_modifiers" + } + }, + { + "type": "SYMBOL", + "name": "_abstract_declarator" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "attributed_declarator": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_declarator" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "attribute_declaration" + } + } + ] + } + }, + "attributed_field_declarator": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_field_declarator" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "attribute_declaration" + } + } + ] + } + }, + "attributed_type_declarator": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_type_declarator" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "attribute_declaration" + } + } + ] + } + }, + "pointer_declarator": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_based_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "ms_pointer_modifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_declaration_modifiers" + } + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_declarator" + } + } + ] + } + } + }, + "pointer_field_declarator": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_based_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "ms_pointer_modifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_declaration_modifiers" + } + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_field_declarator" + } + } + ] + } + } + }, + "pointer_type_declarator": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_based_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "ms_pointer_modifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_declaration_modifiers" + } + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_type_declarator" + } + } + ] + } + } + }, + "abstract_pointer_declarator": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_declaration_modifiers" + } + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_abstract_declarator" + }, + { + "type": "BLANK" + } + ] + } + } + ] + } + } + }, + "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": "SYMBOL", + "name": "attribute_specifier" + } + } + ] + } + }, + "_function_declaration_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": "SYMBOL", + "name": "attribute_specifier" + } + } + ] + } + }, + "function_field_declarator": { + "type": "PREC_RIGHT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_field_declarator" + } + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "parameter_list" + } + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "SYMBOL", + "name": "type_qualifier" + } + ] + } + } + ] + } + }, + "function_type_declarator": { + "type": "PREC_RIGHT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_type_declarator" + } + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "parameter_list" + } + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "SYMBOL", + "name": "type_qualifier" + } + ] + } + } + ] + } + }, + "abstract_function_declarator": { + "type": "PREC_RIGHT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_abstract_declarator" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "parameter_list" + } + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "SYMBOL", + "name": "type_qualifier" + } + ] + } + } + ] + } + }, + "_old_style_function_declarator": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_declarator" + } + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_old_style_parameter_list" + }, + "named": true, + "value": "parameter_list" + } + } + ] + }, + "array_declarator": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_declarator" + } + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_qualifier" + }, + { + "type": "STRING", + "value": "static" + } + ] + } + }, + { + "type": "FIELD", + "name": "size", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "*" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": "]" + } + ] + } + }, + "array_field_declarator": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_field_declarator" + } + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_qualifier" + }, + { + "type": "STRING", + "value": "static" + } + ] + } + }, + { + "type": "FIELD", + "name": "size", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "*" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": "]" + } + ] + } + }, + "array_type_declarator": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_type_declarator" + } + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_qualifier" + }, + { + "type": "STRING", + "value": "static" + } + ] + } + }, + { + "type": "FIELD", + "name": "size", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "*" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": "]" + } + ] + } + }, + "abstract_array_declarator": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_abstract_declarator" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_qualifier" + }, + { + "type": "STRING", + "value": "static" + } + ] + } + }, + { + "type": "FIELD", + "name": "size", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "*" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": "]" + } + ] + } + }, + "init_declarator": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_declarator" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "initializer_list" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + } + ] + }, + "compound_statement": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "@autoreleasepool" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_block_item" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "storage_class_specifier": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "extern" + }, + { + "type": "STRING", + "value": "static" + }, + { + "type": "STRING", + "value": "auto" + }, + { + "type": "STRING", + "value": "register" + }, + { + "type": "STRING", + "value": "inline" + }, + { + "type": "STRING", + "value": "__inline" + }, + { + "type": "STRING", + "value": "__inline__" + }, + { + "type": "STRING", + "value": "__forceinline" + }, + { + "type": "STRING", + "value": "thread_local" + }, + { + "type": "STRING", + "value": "__thread" + } + ] + }, + { + "type": "STRING", + "value": "__inline__" + }, + { + "type": "STRING", + "value": "CG_EXTERN" + }, + { + "type": "STRING", + "value": "CG_INLINE" + }, + { + "type": "STRING", + "value": "FOUNDATION_EXPORT" + }, + { + "type": "STRING", + "value": "FOUNDATION_EXTERN" + }, + { + "type": "STRING", + "value": "FOUNDATION_STATIC_INLINE" + }, + { + "type": "STRING", + "value": "IBOutlet" + }, + { + "type": "STRING", + "value": "IBInspectable" + }, + { + "type": "STRING", + "value": "IB_DESIGNABLE" + }, + { + "type": "STRING", + "value": "NS_INLINE" + }, + { + "type": "STRING", + "value": "NS_VALID_UNTIL_END_OF_SCOPE" + }, + { + "type": "STRING", + "value": "OBJC_EXPORT" + }, + { + "type": "STRING", + "value": "OBJC_ROOT_CLASS" + }, + { + "type": "STRING", + "value": "UIKIT_EXTERN" + } + ] + }, + "type_qualifier": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "const" + }, + { + "type": "STRING", + "value": "constexpr" + }, + { + "type": "STRING", + "value": "volatile" + }, + { + "type": "STRING", + "value": "restrict" + }, + { + "type": "STRING", + "value": "__restrict__" + }, + { + "type": "STRING", + "value": "__extension__" + }, + { + "type": "STRING", + "value": "_Atomic" + }, + { + "type": "STRING", + "value": "_Noreturn" + }, + { + "type": "STRING", + "value": "noreturn" + }, + { + "type": "STRING", + "value": "_Nonnull" + }, + { + "type": "SYMBOL", + "name": "alignas_qualifier" + } + ] + }, + { + "type": "STRING", + "value": "nullable" + }, + { + "type": "STRING", + "value": "_Complex" + }, + { + "type": "STRING", + "value": "_Nonnull" + }, + { + "type": "STRING", + "value": "_Nullable" + }, + { + "type": "STRING", + "value": "_Nullable_result" + }, + { + "type": "STRING", + "value": "_Null_unspecified" + }, + { + "type": "STRING", + "value": "__autoreleasing" + }, + { + "type": "STRING", + "value": "__block" + }, + { + "type": "STRING", + "value": "__bridge" + }, + { + "type": "STRING", + "value": "__bridge_retained" + }, + { + "type": "STRING", + "value": "__bridge_transfer" + }, + { + "type": "STRING", + "value": "__complex" + }, + { + "type": "STRING", + "value": "__const" + }, + { + "type": "STRING", + "value": "__imag" + }, + { + "type": "STRING", + "value": "__kindof" + }, + { + "type": "STRING", + "value": "__nonnull" + }, + { + "type": "STRING", + "value": "__nullable" + }, + { + "type": "STRING", + "value": "__ptrauth_objc_class_ro" + }, + { + "type": "STRING", + "value": "__ptrauth_objc_isa_pointer" + }, + { + "type": "STRING", + "value": "__ptrauth_objc_super_pointer" + }, + { + "type": "STRING", + "value": "__real" + }, + { + "type": "STRING", + "value": "__strong" + }, + { + "type": "STRING", + "value": "__unsafe_unretained" + }, + { + "type": "STRING", + "value": "__unused" + }, + { + "type": "STRING", + "value": "__weak" + } + ] + } + }, + "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": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "struct_specifier" + }, + { + "type": "SYMBOL", + "name": "union_specifier" + }, + { + "type": "SYMBOL", + "name": "enum_specifier" + }, + { + "type": "SYMBOL", + "name": "macro_type_specifier" + }, + { + "type": "SYMBOL", + "name": "sized_type_specifier" + }, + { + "type": "SYMBOL", + "name": "primitive_type" + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + } + ] + }, + { + "type": "SYMBOL", + "name": "typedefed_specifier" + }, + { + "type": "SYMBOL", + "name": "generic_specifier" + }, + { + "type": "SYMBOL", + "name": "typeof_specifier" + }, + { + "type": "SYMBOL", + "name": "array_type_specifier" + } + ] + }, + "sized_type_specifier": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "signed" + }, + { + "type": "STRING", + "value": "unsigned" + }, + { + "type": "STRING", + "value": "long" + }, + { + "type": "STRING", + "value": "short" + } + ] + } + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PREC_DYNAMIC", + "value": -1, + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "SYMBOL", + "name": "primitive_type" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "signed" + }, + { + "type": "STRING", + "value": "unsigned" + }, + { + "type": "STRING", + "value": "long" + }, + { + "type": "STRING", + "value": "short" + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "signed" + }, + { + "type": "STRING", + "value": "unsigned" + }, + { + "type": "STRING", + "value": "long" + }, + { + "type": "STRING", + "value": "short" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PREC_DYNAMIC", + "value": -1, + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "SYMBOL", + "name": "primitive_type" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "signed" + }, + { + "type": "STRING", + "value": "unsigned" + }, + { + "type": "STRING", + "value": "long" + }, + { + "type": "STRING", + "value": "short" + } + ] + } + } + ] + } + ] + }, + "primitive_type": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "bool" + }, + { + "type": "STRING", + "value": "char" + }, + { + "type": "STRING", + "value": "int" + }, + { + "type": "STRING", + "value": "float" + }, + { + "type": "STRING", + "value": "double" + }, + { + "type": "STRING", + "value": "void" + }, + { + "type": "STRING", + "value": "size_t" + }, + { + "type": "STRING", + "value": "ssize_t" + }, + { + "type": "STRING", + "value": "ptrdiff_t" + }, + { + "type": "STRING", + "value": "intptr_t" + }, + { + "type": "STRING", + "value": "uintptr_t" + }, + { + "type": "STRING", + "value": "charptr_t" + }, + { + "type": "STRING", + "value": "nullptr_t" + }, + { + "type": "STRING", + "value": "max_align_t" + }, + { + "type": "STRING", + "value": "int8_t" + }, + { + "type": "STRING", + "value": "int16_t" + }, + { + "type": "STRING", + "value": "int32_t" + }, + { + "type": "STRING", + "value": "int64_t" + }, + { + "type": "STRING", + "value": "uint8_t" + }, + { + "type": "STRING", + "value": "uint16_t" + }, + { + "type": "STRING", + "value": "uint32_t" + }, + { + "type": "STRING", + "value": "uint64_t" + }, + { + "type": "STRING", + "value": "char8_t" + }, + { + "type": "STRING", + "value": "char16_t" + }, + { + "type": "STRING", + "value": "char32_t" + }, + { + "type": "STRING", + "value": "char64_t" + } + ] + } + }, + "enum_specifier": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "enum" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_declspec_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "underlying_type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "SYMBOL", + "name": "primitive_type" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "enumerator_list" + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "base", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "enumerator_list" + } + } + ] + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "enumerator_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "enumerator" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_modifiers" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_ifdef_in_enumerator" + }, + "named": true, + "value": "preproc_ifdef" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "enumerator" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_modifiers" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_ifdef_in_enumerator" + }, + "named": true, + "value": "preproc_ifdef" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "struct_specifier": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "struct" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_declspec_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "field_declaration_list" + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "field_declaration_list" + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "union_specifier": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "union" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_declspec_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "field_declaration_list" + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "field_declaration_list" + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "field_declaration_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_field_declaration_list_item" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "_field_declaration_list_item": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "field_declaration" + }, + { + "type": "SYMBOL", + "name": "preproc_def" + }, + { + "type": "SYMBOL", + "name": "preproc_function_def" + }, + { + "type": "SYMBOL", + "name": "preproc_call" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_if_in_field_declaration_list" + }, + "named": true, + "value": "preproc_if" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_ifdef_in_field_declaration_list" + }, + "named": true, + "value": "preproc_ifdef" + }, + { + "type": "SYMBOL", + "name": "atdef_field" + } + ] + }, + "field_declaration": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_field_declarator" + }, + { + "type": "SYMBOL", + "name": "enum_specifier" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "bitfield_clause" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_field_declarator" + }, + { + "type": "SYMBOL", + "name": "enum_specifier" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "bitfield_clause" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "bitfield_clause" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "_field_declaration_declarator": { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_field_declarator" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "bitfield_clause" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_field_declarator" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "bitfield_clause" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + } + ] + }, + "bitfield_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + "enumerator": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "variadic_parameter": { + "type": "STRING", + "value": "..." + }, + "parameter_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "variadic_parameter" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "variadic_parameter" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "compound_statement" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "_old_style_parameter_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "variadic_parameter" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "variadic_parameter" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "parameter_declaration": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_declarator" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_modifiers" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "_abstract_declarator" + } + ] + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "attributed_statement": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "attribute_declaration" + } + }, + { + "type": "SYMBOL", + "name": "statement" + } + ] + }, + "statement": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "case_statement" + }, + { + "type": "SYMBOL", + "name": "_non_case_statement" + } + ] + }, + "_non_case_statement": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attributed_statement" + }, + { + "type": "SYMBOL", + "name": "labeled_statement" + }, + { + "type": "SYMBOL", + "name": "compound_statement" + }, + { + "type": "SYMBOL", + "name": "expression_statement" + }, + { + "type": "SYMBOL", + "name": "if_statement" + }, + { + "type": "SYMBOL", + "name": "switch_statement" + }, + { + "type": "SYMBOL", + "name": "do_statement" + }, + { + "type": "SYMBOL", + "name": "while_statement" + }, + { + "type": "SYMBOL", + "name": "for_statement" + }, + { + "type": "SYMBOL", + "name": "return_statement" + }, + { + "type": "SYMBOL", + "name": "break_statement" + }, + { + "type": "SYMBOL", + "name": "continue_statement" + }, + { + "type": "SYMBOL", + "name": "goto_statement" + }, + { + "type": "SYMBOL", + "name": "try_statement" + }, + { + "type": "SYMBOL", + "name": "throw_statement" + }, + { + "type": "SYMBOL", + "name": "synchronized_statement" + }, + { + "type": "SYMBOL", + "name": "ms_asm_block" + } + ] + }, + "_top_level_statement": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "case_statement" + }, + { + "type": "SYMBOL", + "name": "attributed_statement" + }, + { + "type": "SYMBOL", + "name": "labeled_statement" + }, + { + "type": "SYMBOL", + "name": "compound_statement" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_top_level_expression_statement" + }, + "named": true, + "value": "expression_statement" + }, + { + "type": "SYMBOL", + "name": "if_statement" + }, + { + "type": "SYMBOL", + "name": "switch_statement" + }, + { + "type": "SYMBOL", + "name": "do_statement" + }, + { + "type": "SYMBOL", + "name": "while_statement" + }, + { + "type": "SYMBOL", + "name": "for_statement" + }, + { + "type": "SYMBOL", + "name": "return_statement" + }, + { + "type": "SYMBOL", + "name": "break_statement" + }, + { + "type": "SYMBOL", + "name": "continue_statement" + }, + { + "type": "SYMBOL", + "name": "goto_statement" + } + ] + }, + "labeled_statement": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "label", + "content": { + "type": "SYMBOL", + "name": "_statement_identifier" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "declaration" + }, + { + "type": "SYMBOL", + "name": "statement" + } + ] + } + ] + }, + "_top_level_expression_statement": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression_not_binary" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "expression_statement": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "if_statement": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "FIELD", + "name": "consequence", + "content": { + "type": "SYMBOL", + "name": "statement" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "else_clause" + } + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "else_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "else" + }, + { + "type": "SYMBOL", + "name": "statement" + } + ] + }, + "switch_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "switch" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + } + ] + }, + "case_statement": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "case" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + { + "type": "STRING", + "value": "default" + } + ] + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_non_case_statement" + }, + { + "type": "SYMBOL", + "name": "declaration" + }, + { + "type": "SYMBOL", + "name": "type_definition" + } + ] + } + } + ] + } + }, + "while_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "while" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" + } + } + ] + }, + "do_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "do" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" + } + }, + { + "type": "STRING", + "value": "while" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "for_statement": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "for" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_for_statement_body" + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" + } + } + ] + }, + { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "for" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "SYMBOL", + "name": "_declarator" + } + ] + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "SYMBOL", + "name": "_non_case_statement" + } + ] + } + } + ] + }, + "_for_statement_body": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "initializer", + "content": { + "type": "SYMBOL", + "name": "declaration" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "initializer", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": ";" + } + ] + } + ] + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": ";" + }, + { + "type": "FIELD", + "name": "update", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + "return_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "return" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "break_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "break" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "continue_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "continue" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "goto_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "goto" + }, + { + "type": "FIELD", + "name": "label", + "content": { + "type": "SYMBOL", + "name": "_statement_identifier" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "seh_try_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "__try" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "seh_except_clause" + }, + { + "type": "SYMBOL", + "name": "seh_finally_clause" + } + ] + } + ] + }, + "seh_except_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "__except" + }, + { + "type": "FIELD", + "name": "filter", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + } + ] + }, + "seh_finally_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "__finally" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + } + ] + }, + "seh_leave_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "__leave" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression_not_binary" + }, + { + "type": "SYMBOL", + "name": "binary_expression" + } + ] + }, + "_expression_not_binary": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "conditional_expression" + }, + { + "type": "SYMBOL", + "name": "assignment_expression" + }, + { + "type": "SYMBOL", + "name": "unary_expression" + }, + { + "type": "SYMBOL", + "name": "update_expression" + }, + { + "type": "SYMBOL", + "name": "cast_expression" + }, + { + "type": "SYMBOL", + "name": "pointer_expression" + }, + { + "type": "SYMBOL", + "name": "sizeof_expression" + }, + { + "type": "SYMBOL", + "name": "alignof_expression" + }, + { + "type": "SYMBOL", + "name": "offsetof_expression" + }, + { + "type": "SYMBOL", + "name": "generic_expression" + }, + { + "type": "SYMBOL", + "name": "subscript_expression" + }, + { + "type": "SYMBOL", + "name": "call_expression" + }, + { + "type": "SYMBOL", + "name": "field_expression" + }, + { + "type": "SYMBOL", + "name": "compound_literal_expression" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "number_literal" + }, + { + "type": "SYMBOL", + "name": "_string" + }, + { + "type": "SYMBOL", + "name": "true" + }, + { + "type": "SYMBOL", + "name": "false" + }, + { + "type": "SYMBOL", + "name": "null" + }, + { + "type": "SYMBOL", + "name": "char_literal" + }, + { + "type": "SYMBOL", + "name": "parenthesized_expression" + }, + { + "type": "SYMBOL", + "name": "gnu_asm_expression" + }, + { + "type": "SYMBOL", + "name": "extension_expression" + } + ] + }, + { + "type": "SYMBOL", + "name": "message_expression" + }, + { + "type": "SYMBOL", + "name": "selector_expression" + }, + { + "type": "SYMBOL", + "name": "available_expression" + }, + { + "type": "SYMBOL", + "name": "range_expression" + }, + { + "type": "SYMBOL", + "name": "block_literal" + }, + { + "type": "SYMBOL", + "name": "dictionary_literal" + }, + { + "type": "SYMBOL", + "name": "array_literal" + }, + { + "type": "SYMBOL", + "name": "at_expression" + }, + { + "type": "SYMBOL", + "name": "encode_expression" + }, + { + "type": "SYMBOL", + "name": "va_arg_expression" + }, + { + "type": "SYMBOL", + "name": "keyword_identifier" + } + ] + }, + "_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": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] + } + } + ] + }, + "conditional_expression": { + "type": "PREC_RIGHT", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": "?" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "consequence", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + "_assignment_left_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "call_expression" + }, + { + "type": "SYMBOL", + "name": "field_expression" + }, + { + "type": "SYMBOL", + "name": "pointer_expression" + }, + { + "type": "SYMBOL", + "name": "subscript_expression" + }, + { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + ] + }, + "assignment_expression": { + "type": "PREC_RIGHT", + "value": -2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_assignment_left_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "*=" + }, + { + "type": "STRING", + "value": "/=" + }, + { + "type": "STRING", + "value": "%=" + }, + { + "type": "STRING", + "value": "+=" + }, + { + "type": "STRING", + "value": "-=" + }, + { + "type": "STRING", + "value": "<<=" + }, + { + "type": "STRING", + "value": ">>=" + }, + { + "type": "STRING", + "value": "&=" + }, + { + "type": "STRING", + "value": "^=" + }, + { + "type": "STRING", + "value": "|=" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + "pointer_expression": { + "type": "PREC_LEFT", + "value": 12, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "&" + } + ] + } + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + "unary_expression": { + "type": "PREC_LEFT", + "value": 14, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "!" + }, + { + "type": "STRING", + "value": "~" + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "+" + } + ] + } + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + "binary_expression": { + "type": "CHOICE", + "members": [ + { + "type": "PREC_LEFT", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "+" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "-" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 11, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "*" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 11, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "/" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 11, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "%" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "||" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&&" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 3, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "|" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 4, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "^" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 5, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 6, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "==" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 6, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "!=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<<" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">>" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + } + ] + }, + "update_expression": { + "type": "PREC_RIGHT", + "value": 14, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "--" + }, + { + "type": "STRING", + "value": "++" + } + ] + } + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "--" + }, + { + "type": "STRING", + "value": "++" + } + ] + } + } + ] + } + ] + } + }, + "cast_expression": { + "type": "PREC", + "value": 12, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_descriptor" + }, + { + "type": "SYMBOL", + "name": "typeof_specifier" + }, + { + "type": "SYMBOL", + "name": "parameterized_arguments" + } + ] + } + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "__real" + }, + { + "type": "STRING", + "value": "__imag" + } + ] + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + ] + } + }, + "type_descriptor": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_specifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_abstract_declarator" + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + "sizeof_expression": { + "type": "PREC", + "value": 13, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "sizeof" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_descriptor" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + } + ] + } + }, + "alignof_expression": { + "type": "PREC", + "value": 13, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "__alignof__" + }, + { + "type": "STRING", + "value": "__alignof" + }, + { + "type": "STRING", + "value": "_alignof" + }, + { + "type": "STRING", + "value": "alignof" + }, + { + "type": "STRING", + "value": "_Alignof" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_descriptor" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + } + }, + "offsetof_expression": { + "type": "PREC", + "value": 8, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "offsetof" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_descriptor" + } + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "member", + "content": { + "type": "SYMBOL", + "name": "_field_identifier" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + } + }, + "generic_expression": { + "type": "PREC", + "value": 15, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "_Generic" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "type_descriptor" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "type_descriptor" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "subscript_expression": { + "type": "PREC", + "value": 17, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "FIELD", + "name": "index", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": "]" + } + ] + } + }, + "call_expression": { + "type": "PREC", + "value": 15, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "argument_list" + } + } + ] + } + }, + "gnu_asm_expression": { + "type": "PREC", + "value": 15, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "asm" + }, + { + "type": "STRING", + "value": "__asm__" + }, + { + "type": "STRING", + "value": "__asm" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "gnu_asm_qualifier" + } + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "assembly_code", + "content": { + "type": "SYMBOL", + "name": "_string" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "output_operands", + "content": { + "type": "SYMBOL", + "name": "gnu_asm_output_operand_list" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "input_operands", + "content": { + "type": "SYMBOL", + "name": "gnu_asm_input_operand_list" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "clobbers", + "content": { + "type": "SYMBOL", + "name": "gnu_asm_clobber_list" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "goto_labels", + "content": { + "type": "SYMBOL", + "name": "gnu_asm_goto_list" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "gnu_asm_qualifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "volatile" + }, + { + "type": "STRING", + "value": "__volatile__" + }, + { + "type": "STRING", + "value": "inline" + }, + { + "type": "STRING", + "value": "goto" + } + ] + }, + "gnu_asm_output_operand_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operand", + "content": { + "type": "SYMBOL", + "name": "gnu_asm_output_operand" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "operand", + "content": { + "type": "SYMBOL", + "name": "gnu_asm_output_operand" + } + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "gnu_asm_output_operand": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "FIELD", + "name": "symbol", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "constraint", + "content": { + "type": "SYMBOL", + "name": "string_literal" + } + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "gnu_asm_input_operand_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operand", + "content": { + "type": "SYMBOL", + "name": "gnu_asm_input_operand" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "operand", + "content": { + "type": "SYMBOL", + "name": "gnu_asm_input_operand" + } + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "gnu_asm_input_operand": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "FIELD", + "name": "symbol", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "constraint", + "content": { + "type": "SYMBOL", + "name": "string_literal" + } + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "gnu_asm_clobber_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "register", + "content": { + "type": "SYMBOL", + "name": "_string" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "register", + "content": { + "type": "SYMBOL", + "name": "_string" + } + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "gnu_asm_goto_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "label", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "label", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "extension_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "__extension__" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + "argument_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_qualifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "typeof_specifier" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "compound_statement" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_qualifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "typeof_specifier" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "compound_statement" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "<" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "type_name" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "type_name" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ">" + } + ] + }, + { + "type": "SYMBOL", + "name": "objc_bridge" + }, + { + "type": "SYMBOL", + "name": "availability" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "field_expression": { + "type": "SEQ", + "members": [ + { + "type": "PREC", + "value": 16, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "->" + } + ] + } + } + ] + } + }, + { + "type": "FIELD", + "name": "field", + "content": { + "type": "SYMBOL", + "name": "_field_identifier" + } + } + ] + }, + "compound_literal_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_descriptor" + } + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "initializer_list" + } + } + ] + }, + "parenthesized_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + }, + { + "type": "SYMBOL", + "name": "compound_statement" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "initializer_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "initializer_pair" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "initializer_pair" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "initializer_pair": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "designator", + "content": { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "subscript_designator" + }, + { + "type": "SYMBOL", + "name": "field_designator" + }, + { + "type": "SYMBOL", + "name": "subscript_range_designator" + } + ] + } + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "designator", + "content": { + "type": "SYMBOL", + "name": "_field_identifier" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + } + } + ] + } + ] + }, + "subscript_designator": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "subscript_range_designator": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "FIELD", + "name": "start", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "FIELD", + "name": "end", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "field_designator": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "_field_identifier" + } + ] + }, + "number_literal": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[-\\+]" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0x" + }, + { + "type": "STRING", + "value": "0b" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "0b" + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + } + ] + } + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "0x" + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9a-fA-F]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9a-fA-F]" + } + } + ] + } + } + ] + } + ] + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9a-fA-F]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9a-fA-F]" + } + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + } + ] + } + } + ] + } + ] + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[eEpP]" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[-\\+]" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9a-fA-F]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9a-fA-F]" + } + } + ] + } + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "i" + }, + { + "type": "STRING", + "value": "u" + }, + { + "type": "STRING", + "value": "l" + }, + { + "type": "STRING", + "value": "U" + }, + { + "type": "STRING", + "value": "L" + }, + { + "type": "STRING", + "value": "f" + }, + { + "type": "STRING", + "value": "F" + } + ] + } + } + ] + } + }, + "char_literal": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "L'" + }, + { + "type": "STRING", + "value": "u'" + }, + { + "type": "STRING", + "value": "U'" + }, + { + "type": "STRING", + "value": "u8'" + }, + { + "type": "STRING", + "value": "'" + } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "escape_sequence" + }, + { + "type": "ALIAS", + "content": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[^\\n']" + } + }, + "named": true, + "value": "character" + } + ] + } + }, + { + "type": "STRING", + "value": "'" + } + ] + }, + "concatenated_string": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "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": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + } + ] + } + }, + "string_literal": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "STRING", + "value": "\"" + } + ] + }, + { + "type": "STRING", + "value": "L\"" + }, + { + "type": "STRING", + "value": "u\"" + }, + { + "type": "STRING", + "value": "U\"" + }, + { + "type": "STRING", + "value": "u8\"" + }, + { + "type": "STRING", + "value": "\"" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[^\\\\\"\\n]+" + } + } + }, + "named": true, + "value": "string_content" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "\"" + } + ] + }, + "escape_sequence": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[^xuU]" + }, + { + "type": "PATTERN", + "value": "\\d{2,3}" + }, + { + "type": "PATTERN", + "value": "x[0-9a-fA-F]{1,4}" + }, + { + "type": "PATTERN", + "value": "u[0-9a-fA-F]{4}" + }, + { + "type": "PATTERN", + "value": "U[0-9a-fA-F]{8}" + } + ] + } + ] + } + } + }, + "system_lib_string": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[^>\\n]" + }, + { + "type": "STRING", + "value": "\\>" + } + ] + } + }, + { + "type": "STRING", + "value": ">" + } + ] + } + }, + "true": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "TRUE" + }, + { + "type": "STRING", + "value": "true" + } + ] + } + }, + "false": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "FALSE" + }, + { + "type": "STRING", + "value": "false" + } + ] + } + }, + "null": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "NULL" + }, + { + "type": "STRING", + "value": "nullptr" + } + ] + }, + "identifier": { + "type": "PATTERN", + "value": "(\\$|\\p{XID_Start}|_|\\\\u[0-9A-Fa-f]{4}|\\\\U[0-9A-Fa-f]{8})(\\$|\\p{XID_Continue}|\\\\u[0-9A-Fa-f]{4}|\\\\U[0-9A-Fa-f]{8})*", + "flags": "u" + }, + "_type_identifier": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "type_identifier" + }, + "_field_identifier": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "field_identifier" + }, + "_statement_identifier": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "statement_identifier" + }, + "_empty_declaration": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "type_specifier" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "macro_type_specifier": { + "type": "PREC_DYNAMIC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_descriptor" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "comment": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "//" + }, + { + "type": "PATTERN", + "value": "(\\\\+(.|\\r?\\n)|[^\\\\\\n])*" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "/*" + }, + { + "type": "PATTERN", + "value": "[^*]*\\*+([^/*][^*]*\\*+)*" + }, + { + "type": "STRING", + "value": "/" + } + ] + } + ] + } + }, + "objc_bridge": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "objc_bridge_related" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": ":" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "typeof_specifier": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "__typeof__" + }, + { + "type": "STRING", + "value": "__typeof" + }, + { + "type": "STRING", + "value": "typeof" + } + ] + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "type_descriptor" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "availability": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "availability" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "version" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "version" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "version": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "platform" + }, + { + "type": "SYMBOL", + "name": "version_number" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "platform" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "number_literal" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "number_literal" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + } + }, + "version_number": { + "type": "PATTERN", + "value": "\\d+([\\._]\\d+)*" + }, + "platform": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "ios" + }, + { + "type": "STRING", + "value": "tvos" + }, + { + "type": "STRING", + "value": "macos" + }, + { + "type": "STRING", + "value": "macosx" + }, + { + "type": "STRING", + "value": "watchos" + } + ] + }, + "module_import": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@import" + }, + { + "type": "FIELD", + "name": "path", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + } + ] + } + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "preproc_if_in_implementation_definition": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*if" + }, + "named": false, + "value": "#if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "SYMBOL", + "name": "implementation_definition" + } + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_implementation_definition" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_implementation_definition" + }, + "named": true, + "value": "preproc_elif" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" + } + ] + }, + "preproc_ifdef_in_implementation_definition": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*ifdef" + }, + "named": false, + "value": "#ifdef" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*ifndef" + }, + "named": false, + "value": "#ifndef" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "SYMBOL", + "name": "implementation_definition" + } + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_implementation_definition" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_implementation_definition" + }, + "named": true, + "value": "preproc_elif" + } + ] + }, + { + "type": "SYMBOL", + "name": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" + } + ] + }, + "preproc_else_in_implementation_definition": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*else" + }, + "named": false, + "value": "#else" + }, + { + "type": "REPEAT", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "SYMBOL", + "name": "implementation_definition" + } + } + } + ] + }, + "preproc_elif_in_implementation_definition": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elif" + }, + "named": false, + "value": "#elif" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "SYMBOL", + "name": "implementation_definition" + } + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_implementation_definition" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_implementation_definition" + }, + "named": true, + "value": "preproc_elif" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + "preproc_elifdef_in_implementation_definition": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elifdef" + }, + "named": false, + "value": "#elifdef" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elifndef" + }, + "named": false, + "value": "#elifndef" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "SYMBOL", + "name": "implementation_definition" + } + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_implementation_definition" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_implementation_definition" + }, + "named": true, + "value": "preproc_elif" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + "preproc_if_in_interface_declaration": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*if" + }, + "named": false, + "value": "#if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "SYMBOL", + "name": "interface_declaration" + } + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_interface_declaration" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_interface_declaration" + }, + "named": true, + "value": "preproc_elif" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" + } + ] + }, + "preproc_ifdef_in_interface_declaration": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*ifdef" + }, + "named": false, + "value": "#ifdef" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*ifndef" + }, + "named": false, + "value": "#ifndef" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "SYMBOL", + "name": "interface_declaration" + } + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_interface_declaration" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_interface_declaration" + }, + "named": true, + "value": "preproc_elif" + } + ] + }, + { + "type": "SYMBOL", + "name": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" + } + ] + }, + "preproc_else_in_interface_declaration": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*else" + }, + "named": false, + "value": "#else" + }, + { + "type": "REPEAT", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "SYMBOL", + "name": "interface_declaration" + } + } + } + ] + }, + "preproc_elif_in_interface_declaration": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elif" + }, + "named": false, + "value": "#elif" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "SYMBOL", + "name": "interface_declaration" + } + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_interface_declaration" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_interface_declaration" + }, + "named": true, + "value": "preproc_elif" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + "preproc_elifdef_in_interface_declaration": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elifdef" + }, + "named": false, + "value": "#elifdef" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elifndef" + }, + "named": false, + "value": "#elifndef" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "SYMBOL", + "name": "interface_declaration" + } + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_interface_declaration" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_interface_declaration" + }, + "named": true, + "value": "preproc_elif" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + "preproc_if_in_enumerator": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*if" + }, + "named": false, + "value": "#if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "enumerator" + }, + { + "type": "STRING", + "value": "," + } + ] + } + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_enumerator" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_enumerator" + }, + "named": true, + "value": "preproc_elif" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" + } + ] + }, + "preproc_ifdef_in_enumerator": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*ifdef" + }, + "named": false, + "value": "#ifdef" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*ifndef" + }, + "named": false, + "value": "#ifndef" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "enumerator" + }, + { + "type": "STRING", + "value": "," + } + ] + } + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_enumerator" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_enumerator" + }, + "named": true, + "value": "preproc_elif" + } + ] + }, + { + "type": "SYMBOL", + "name": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" + } + ] + }, + "preproc_else_in_enumerator": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*else" + }, + "named": false, + "value": "#else" + }, + { + "type": "REPEAT", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "enumerator" + }, + { + "type": "STRING", + "value": "," + } + ] + } + } + } + ] + }, + "preproc_elif_in_enumerator": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elif" + }, + "named": false, + "value": "#elif" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "enumerator" + }, + { + "type": "STRING", + "value": "," + } + ] + } + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_enumerator" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_enumerator" + }, + "named": true, + "value": "preproc_elif" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + "preproc_elifdef_in_enumerator": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elifdef" + }, + "named": false, + "value": "#elifdef" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elifndef" + }, + "named": false, + "value": "#elifndef" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "enumerator" + }, + { + "type": "STRING", + "value": "," + } + ] + } + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_enumerator" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_enumerator" + }, + "named": true, + "value": "preproc_elif" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + "preproc_undef": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*undef" + }, + "named": false, + "value": "#undef" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "\\r?\\n" + } + } + ] + }, + "preproc_linemarker": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "#" + }, + { + "type": "SYMBOL", + "name": "number_literal" + }, + { + "type": "FIELD", + "name": "filename", + "content": { + "type": "SYMBOL", + "name": "string_literal" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "row", + "content": { + "type": "SYMBOL", + "name": "number_literal" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "column", + "content": { + "type": "SYMBOL", + "name": "number_literal" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "\\r?\\n" + } + } + ] + }, + "availability_attribute_specifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "NS_AUTOMATED_REFCOUNT_UNAVAILABLE" + }, + { + "type": "STRING", + "value": "NS_ROOT_CLASS" + }, + { + "type": "STRING", + "value": "NS_UNAVAILABLE" + }, + { + "type": "STRING", + "value": "NS_REQUIRES_NIL_TERMINATION" + }, + { + "type": "STRING", + "value": "CF_RETURNS_RETAINED" + }, + { + "type": "STRING", + "value": "CF_RETURNS_NOT_RETAINED" + }, + { + "type": "STRING", + "value": "DEPRECATED_ATTRIBUTE" + }, + { + "type": "STRING", + "value": "UI_APPEARANCE_SELECTOR" + }, + { + "type": "STRING", + "value": "UNAVAILABLE_ATTRIBUTE" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "CF_FORMAT_FUNCTION" + }, + { + "type": "STRING", + "value": "NS_AVAILABLE" + }, + { + "type": "STRING", + "value": "__IOS_AVAILABLE" + }, + { + "type": "STRING", + "value": "NS_AVAILABLE_IOS" + }, + { + "type": "STRING", + "value": "API_AVAILABLE" + }, + { + "type": "STRING", + "value": "API_UNAVAILABLE" + }, + { + "type": "STRING", + "value": "API_DEPRECATED" + }, + { + "type": "STRING", + "value": "NS_ENUM_AVAILABLE_IOS" + }, + { + "type": "STRING", + "value": "NS_DEPRECATED_IOS" + }, + { + "type": "STRING", + "value": "NS_ENUM_DEPRECATED_IOS" + }, + { + "type": "STRING", + "value": "NS_FORMAT_FUNCTION" + }, + { + "type": "STRING", + "value": "DEPRECATED_MSG_ATTRIBUTE" + }, + { + "type": "STRING", + "value": "__deprecated_msg" + }, + { + "type": "STRING", + "value": "__deprecated_enum_msg" + }, + { + "type": "STRING", + "value": "NS_SWIFT_NAME" + }, + { + "type": "STRING", + "value": "NS_SWIFT_UNAVAILABLE" + }, + { + "type": "STRING", + "value": "NS_EXTENSION_UNAVAILABLE_IOS" + }, + { + "type": "STRING", + "value": "NS_CLASS_AVAILABLE_IOS" + }, + { + "type": "STRING", + "value": "NS_CLASS_DEPRECATED_IOS" + }, + { + "type": "STRING", + "value": "__OSX_AVAILABLE_STARTING" + } + ] + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "SYMBOL", + "name": "concatenated_string" + }, + { + "type": "SYMBOL", + "name": "version" + }, + { + "type": "SYMBOL", + "name": "method_identifier" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "method_identifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "SYMBOL", + "name": "concatenated_string" + }, + { + "type": "SYMBOL", + "name": "version" + }, + { + "type": "SYMBOL", + "name": "method_identifier" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "method_identifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + }, + "protocol_forward_declaration": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_declaration_modifiers" + } + }, + { + "type": "STRING", + "value": "@protocol" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "class_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "STRING", + "value": "class" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameterized_arguments" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameterized_arguments" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "class_interface": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_class_interface_header" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_params" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_class_interface_inheritance" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameterized_arguments" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "instance_variables" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "interface_declaration" + } + }, + { + "type": "STRING", + "value": "@end" + } + ] + }, + "_class_interface_header": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_declaration_modifiers" + } + }, + { + "type": "STRING", + "value": "@interface" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_type_params": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "generic_arguments" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameterized_arguments" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "parameterized_arguments" + } + ] + } + }, + "_class_interface_inheritance": { + "type": "PREC_RIGHT", + "value": 1, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "superclass", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameterized_arguments" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "category", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + } + }, + "class_implementation": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_class_implementation_header" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_params" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_class_implementation_inheritance" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "instance_variables" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "implementation_definition" + } + }, + { + "type": "STRING", + "value": "@end" + } + ] + }, + "_class_implementation_header": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_declaration_modifiers" + } + }, + { + "type": "STRING", + "value": "@implementation" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_class_implementation_inheritance": { + "type": "PREC", + "value": 1, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "superclass", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "category", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + } + }, + "protocol_reference_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ">" + } + ] + }, + "parameterized_arguments": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "__covariant" + }, + { + "type": "STRING", + "value": "__contravariant" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "__covariant" + }, + { + "type": "STRING", + "value": "__contravariant" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + } + ] + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "type_name" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "__covariant" + }, + { + "type": "STRING", + "value": "__contravariant" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "__covariant" + }, + { + "type": "STRING", + "value": "__contravariant" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + } + ] + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "type_name" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "type_name" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "type_name" + } + ] + } + } + ] + } + ] + }, + { + "type": "STRING", + "value": ">" + } + ] + } + }, + "generic_arguments": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "instance_variables": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "SYMBOL", + "name": "attribute_declaration" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "instance_variable" + } + ] + } + }, + { + "type": "STRING", + "value": "}" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "instance_variable": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "visibility_specification" + }, + { + "type": "SYMBOL", + "name": "struct_declaration" + }, + { + "type": "SYMBOL", + "name": "atomic_declaration" + }, + { + "type": "SYMBOL", + "name": "preproc_ifdef" + }, + { + "type": "SYMBOL", + "name": "preproc_if" + } + ] + }, + "visibility_specification": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "@private" + }, + { + "type": "STRING", + "value": "@protected" + }, + { + "type": "STRING", + "value": "@package" + }, + { + "type": "STRING", + "value": "@public" + } + ] + }, + "protocol_declaration": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_declaration_modifiers" + } + }, + { + "type": "STRING", + "value": "@protocol" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "protocol_reference_list" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "interface_declaration" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "qualified_protocol_interface_declaration" + } + }, + { + "type": "STRING", + "value": "@end" + } + ] + }, + "compatibility_alias_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@compatibility_alias" + }, + { + "type": "FIELD", + "name": "class", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "FIELD", + "name": "alias", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "interface_declaration": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "declaration" + }, + { + "type": "SYMBOL", + "name": "property_declaration" + }, + { + "type": "SYMBOL", + "name": "method_declaration" + }, + { + "type": "SYMBOL", + "name": "function_definition" + }, + { + "type": "SYMBOL", + "name": "type_definition" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_if_in_interface_declaration" + }, + "named": true, + "value": "preproc_if" + }, + { + "type": "SYMBOL", + "name": "preproc_def" + }, + { + "type": "SYMBOL", + "name": "preproc_ifdef" + }, + { + "type": "SYMBOL", + "name": "preproc_undef" + }, + { + "type": "SYMBOL", + "name": "preproc_call" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "struct_specifier" + }, + { + "type": "STRING", + "value": ";" + } + ] + } + ] + }, + "qualified_protocol_interface_declaration": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@optional" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "interface_declaration" + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@required" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "interface_declaration" + } + } + ] + } + ] + }, + "implementation_definition": { + "type": "PREC", + "value": 1, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "function_definition" + }, + { + "type": "SYMBOL", + "name": "declaration" + }, + { + "type": "SYMBOL", + "name": "property_implementation" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "struct_specifier" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + { + "type": "SYMBOL", + "name": "method_definition" + }, + { + "type": "SYMBOL", + "name": "preproc_function_def" + }, + { + "type": "SYMBOL", + "name": "macro_type_specifier" + }, + { + "type": "SYMBOL", + "name": "type_definition" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_if_in_implementation_definition" + }, + "named": true, + "value": "preproc_if" + }, + { + "type": "SYMBOL", + "name": "preproc_ifdef" + }, + { + "type": "SYMBOL", + "name": "preproc_undef" + }, + { + "type": "SYMBOL", + "name": "preproc_def" + }, + { + "type": "SYMBOL", + "name": "preproc_call" + } + ] + } + }, + "property_implementation": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@synthesize" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@dynamic" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "(class)" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + } + ] + }, + "method_definition": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "-" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "method_type" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "method_selector_no_list" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "method_parameter" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "method_selector" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "method_parameter" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "method_parameter" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "method_selector" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "method_parameter" + } + ] + } + } + ] + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "..." + }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "c_method_parameter" + }, + "named": true, + "value": "method_parameter" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "c_method_parameter" + }, + "named": true, + "value": "method_parameter" + } + ] + } + } + ] + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "declaration" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_declaration_modifiers" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "compound_statement" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "method_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_name" + }, + { + "type": "SYMBOL", + "name": "parameterized_arguments" + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_name" + }, + { + "type": "SYMBOL", + "name": "parameterized_arguments" + } + ] + } + ] + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "method_selector": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "method_selector_no_list" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "keyword_selector" + }, + { + "type": "STRING", + "value": "," + } + ] + } + ] + } + }, + "method_selector_no_list": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "keyword_selector" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "keyword_selector" + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "STRING", + "value": "..." + } + ] + } + ] + }, + "keyword_selector": { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "keyword_declarator" + } + }, + "keyword_declarator": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "method_type" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + }, + "property_declaration": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "@property" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "property_attributes_declaration" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "SYMBOL", + "name": "attribute_declaration" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "struct_declaration" + }, + { + "type": "SYMBOL", + "name": "atomic_declaration" + } + ] + } + ] + }, + "property_attributes_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "property_attribute" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "property_attribute" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "property_attribute": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + "method_declaration": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "-" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "method_type" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "SYMBOL", + "name": "attribute_declaration" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "method_selector" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "method_parameter" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "method_parameter" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "..." + }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "c_method_parameter" + }, + "named": true, + "value": "method_parameter" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "c_method_parameter" + }, + "named": true, + "value": "method_parameter" + } + ] + } + } + ] + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_declaration_modifiers" + } + }, + { + "type": "REPEAT1", + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "STRING", + "value": ";" + } + } + } + ] + }, + "method_parameter": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "method_type" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "keyword_identifier" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_declaration_modifiers" + } + } + ] + } + }, + "c_method_parameter": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "SEQ", + "members": [ + { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declarator" + }, + { + "type": "SYMBOL", + "name": "init_declarator" + } + ] + } + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declarator" + }, + { + "type": "SYMBOL", + "name": "init_declarator" + } + ] + } + } + } + ] + } + } + ] + } + ] + } + }, + "struct_declaration": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "specifier_qualifier" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "struct_declarator" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "struct_declarator" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "atomic_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "_Atomic" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "type_specifier" + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "SYMBOL", + "name": "_field_identifier" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "preproc_block": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_block_item" + } + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": "\n" + } + ] + } + }, + "specifier_qualifier": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_specifier" + }, + { + "type": "SYMBOL", + "name": "type_qualifier" + }, + { + "type": "SYMBOL", + "name": "protocol_qualifier" + } + ] + } + }, + "struct_declarator": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declarator" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declarator" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + ] + }, + "try_statement": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "@try" + }, + { + "type": "STRING", + "value": "__try" + } + ] + }, + { + "type": "SYMBOL", + "name": "compound_statement" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "catch_clause" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "finally_clause" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "finally_clause" + } + ] + } + ] + }, + "catch_clause": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "@catch" + }, + { + "type": "STRING", + "value": "__catch" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "..." + }, + { + "type": "SYMBOL", + "name": "type_name" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "compound_statement" + } + ] + }, + "finally_clause": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "@finally" + }, + { + "type": "STRING", + "value": "__finally" + } + ] + }, + { + "type": "SYMBOL", + "name": "compound_statement" + } + ] + }, + "throw_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@throw" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "selector_expression": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@selector" + }, + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "(" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "method_identifier" + }, + { + "type": "PREC", + "value": -1, + "content": { + "type": "PATTERN", + "value": "[^)]*" + } + } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": ")" + } + } + ] + } + }, + "available_expression": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "@available" + }, + { + "type": "STRING", + "value": "__builtin_available" + } + ] + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "version" + } + ] + }, + { + "type": "STRING", + "value": "*" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "version" + } + ] + }, + { + "type": "STRING", + "value": "*" + } + ] + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "range_expression": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + }, + "block_literal": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "^" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_name" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameter_list" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "compound_statement" + } + ] + }, + "message_expression": { + "type": "PREC", + "value": 15, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "FIELD", + "name": "receiver", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "generic_specifier" + } + ] + } + }, + { + "type": "REPEAT1", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "method", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + } + ] + } + ] + } + } + ] + } + }, + { + "type": "STRING", + "value": "]" + } + ] + } + }, + "va_arg_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "va_arg" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "type_descriptor" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "ms_asm_block": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "__asm" + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "PATTERN", + "value": "[^}]*" + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "encode_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@encode" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "type_name" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "synchronized_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@synchronized" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "SYMBOL", + "name": "compound_statement" + } + ] + }, + "block_pointer_declarator": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "^" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_declarator" + } + } + ] + } + } + }, + "block_pointer_field_declarator": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "^" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_field_declarator" + } + } + ] + } + } + }, + "block_pointer_type_declarator": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "^" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_type_declarator" + } + } + ] + } + } + }, + "abstract_block_pointer_declarator": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "^" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_abstract_declarator" + }, + { + "type": "BLANK" + } + ] + } + } + ] + } + } + }, + "generic_specifier": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "REPEAT1", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "type_name" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "type_name" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ">" + } + ] + } + } + ] + } + }, + "typedefed_identifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "BOOL" + }, + { + "type": "STRING", + "value": "IMP" + }, + { + "type": "STRING", + "value": "SEL" + }, + { + "type": "STRING", + "value": "Class" + }, + { + "type": "STRING", + "value": "id" + } + ] + }, + "typedefed_specifier": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "typedefed_identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "protocol_reference_list" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "array_type_specifier": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "type_specifier" + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "atdef_field": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@defs" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "protocol_qualifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "out" + }, + { + "type": "STRING", + "value": "inout" + }, + { + "type": "STRING", + "value": "bycopy" + }, + { + "type": "STRING", + "value": "byref" + }, + { + "type": "STRING", + "value": "oneway" + }, + { + "type": "STRING", + "value": "in" + } + ] + }, + "type_name": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "specifier_qualifier" + }, + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "SYMBOL", + "name": "_declarator" + } + ] + } + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "protocol_reference_list" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_abstract_declarator" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "at_expression": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + }, + "dictionary_literal": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "dictionary_pair" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "dictionary_pair" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "dictionary_pair": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + "array_literal": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "method_identifier": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": ":" + } + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "REPEAT1", + "content": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": ":" + } + } + } + ] + } + } + ] + } + }, + "keyword_identifier": { + "type": "ALIAS", + "content": { + "type": "PREC", + "value": -3, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "id" + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "STRING", + "value": "struct" + }, + { + "type": "STRING", + "value": "const" + } + ] + } + }, + "named": true, + "value": "identifier" + } + }, + "extras": [ + { + "type": "PATTERN", + "value": "\\u00A0|\\s|\\\\\\r?\\n" + }, + { + "type": "SYMBOL", + "name": "comment" + } + ], + "conflicts": [ + [ + "type_specifier", + "_declarator" + ], + [ + "type_specifier", + "_declarator", + "macro_type_specifier" + ], + [ + "type_specifier", + "expression" + ], + [ + "type_specifier", + "expression", + "macro_type_specifier" + ], + [ + "type_specifier", + "macro_type_specifier" + ], + [ + "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" + ], + [ + "enum_specifier" + ], + [ + "expression", + "generic_specifier" + ], + [ + "_declarator", + "type_specifier", + "generic_specifier" + ], + [ + "_declarator", + "type_specifier", + "sized_type_specifier" + ], + [ + "attribute", + "expression" + ], + [ + "parameterized_arguments" + ], + [ + "string_literal" + ], + [ + "extension_expression", + "range_expression" + ], + [ + "abstract_array_declarator", + "array_type_specifier" + ], + [ + "_type_definition_type" + ], + [ + "keyword_declarator", + "method_parameter" + ] + ], + "precedences": [], + "externals": [], + "inline": [ + "_type_identifier", + "_field_identifier", + "_statement_identifier", + "_non_case_statement", + "_assignment_left_expression", + "_expression_not_binary", + "method_selector", + "method_selector_no_list", + "keyword_selector", + "interface_declaration", + "typedefed_identifier", + "keyword_identifier" + ], + "supertypes": [ + "expression", + "statement", + "type_specifier", + "_declarator", + "_field_declarator", + "_type_declarator", + "_abstract_declarator", + "specifier_qualifier" + ] +} diff --git a/gitnexus/vendor/tree-sitter-objc/src/node-types.json b/gitnexus/vendor/tree-sitter-objc/src/node-types.json new file mode 100644 index 000000000..12dd2e65b --- /dev/null +++ b/gitnexus/vendor/tree-sitter-objc/src/node-types.json @@ -0,0 +1,7524 @@ +[ + { + "type": "_abstract_declarator", + "named": true, + "subtypes": [ + { + "type": "abstract_array_declarator", + "named": true + }, + { + "type": "abstract_block_pointer_declarator", + "named": true + }, + { + "type": "abstract_function_declarator", + "named": true + }, + { + "type": "abstract_parenthesized_declarator", + "named": true + }, + { + "type": "abstract_pointer_declarator", + "named": true + } + ] + }, + { + "type": "_declarator", + "named": true, + "subtypes": [ + { + "type": "array_declarator", + "named": true + }, + { + "type": "block_pointer_declarator", + "named": true + }, + { + "type": "function_declarator", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "parenthesized_declarator", + "named": true + }, + { + "type": "pointer_declarator", + "named": true + } + ] + }, + { + "type": "_field_declarator", + "named": true, + "subtypes": [ + { + "type": "array_declarator", + "named": true + }, + { + "type": "attributed_declarator", + "named": true + }, + { + "type": "block_pointer_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": "block_pointer_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": [ + { + "type": "alignof_expression", + "named": true + }, + { + "type": "array_literal", + "named": true + }, + { + "type": "assignment_expression", + "named": true + }, + { + "type": "at_expression", + "named": true + }, + { + "type": "available_expression", + "named": true + }, + { + "type": "binary_expression", + "named": true + }, + { + "type": "block_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "char_literal", + "named": true + }, + { + "type": "compound_literal_expression", + "named": true + }, + { + "type": "concatenated_string", + "named": true + }, + { + "type": "conditional_expression", + "named": true + }, + { + "type": "dictionary_literal", + "named": true + }, + { + "type": "encode_expression", + "named": true + }, + { + "type": "extension_expression", + "named": true + }, + { + "type": "false", + "named": true + }, + { + "type": "field_expression", + "named": true + }, + { + "type": "generic_expression", + "named": true + }, + { + "type": "gnu_asm_expression", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "message_expression", + "named": true + }, + { + "type": "null", + "named": true + }, + { + "type": "number_literal", + "named": true + }, + { + "type": "offsetof_expression", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "pointer_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "selector_expression", + "named": true + }, + { + "type": "sizeof_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "true", + "named": true + }, + { + "type": "unary_expression", + "named": true + }, + { + "type": "update_expression", + "named": true + }, + { + "type": "va_arg_expression", + "named": true + } + ] + }, + { + "type": "specifier_qualifier", + "named": true, + "subtypes": [ + { + "type": "protocol_qualifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + }, + { + "type": "type_specifier", + "named": true + } + ] + }, + { + "type": "statement", + "named": true, + "subtypes": [ + { + "type": "attributed_statement", + "named": true + }, + { + "type": "break_statement", + "named": true + }, + { + "type": "case_statement", + "named": true + }, + { + "type": "compound_statement", + "named": true + }, + { + "type": "continue_statement", + "named": true + }, + { + "type": "do_statement", + "named": true + }, + { + "type": "expression_statement", + "named": true + }, + { + "type": "for_statement", + "named": true + }, + { + "type": "goto_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, + { + "type": "labeled_statement", + "named": true + }, + { + "type": "ms_asm_block", + "named": true + }, + { + "type": "return_statement", + "named": true + }, + { + "type": "switch_statement", + "named": true + }, + { + "type": "synchronized_statement", + "named": true + }, + { + "type": "throw_statement", + "named": true + }, + { + "type": "try_statement", + "named": true + }, + { + "type": "while_statement", + "named": true + } + ] + }, + { + "type": "type_specifier", + "named": true, + "subtypes": [ + { + "type": "array_type_specifier", + "named": true + }, + { + "type": "enum_specifier", + "named": true + }, + { + "type": "generic_specifier", + "named": true + }, + { + "type": "macro_type_specifier", + "named": true + }, + { + "type": "primitive_type", + "named": true + }, + { + "type": "sized_type_specifier", + "named": true + }, + { + "type": "struct_specifier", + "named": true + }, + { + "type": "type_identifier", + "named": true + }, + { + "type": "typedefed_specifier", + "named": true + }, + { + "type": "typeof_specifier", + "named": true + }, + { + "type": "union_specifier", + "named": true + } + ] + }, + { + "type": "abstract_array_declarator", + "named": true, + "fields": { + "declarator": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_abstract_declarator", + "named": true + } + ] + }, + "size": { + "multiple": false, + "required": false, + "types": [ + { + "type": "*", + "named": false + }, + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "abstract_block_pointer_declarator", + "named": true, + "fields": { + "declarator": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_abstract_declarator", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "abstract_function_declarator", + "named": true, + "fields": { + "declarator": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_abstract_declarator", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parameter_list", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "abstract_parenthesized_declarator", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_abstract_declarator", + "named": true + }, + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "availability_attribute_specifier", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "abstract_pointer_declarator", + "named": true, + "fields": { + "declarator": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_abstract_declarator", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "availability_attribute_specifier", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "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, + "fields": { + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_descriptor", + "named": true + } + ] + } + } + }, + { + "type": "argument_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "availability", + "named": true + }, + { + "type": "compound_statement", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "objc_bridge", + "named": true + }, + { + "type": "preproc_defined", + "named": true + }, + { + "type": "system_lib_string", + "named": true + }, + { + "type": "type_identifier", + "named": true + }, + { + "type": "type_name", + "named": true + }, + { + "type": "type_qualifier", + "named": true + }, + { + "type": "typeof_specifier", + "named": true + } + ] + } + }, + { + "type": "array_declarator", + "named": true, + "fields": { + "declarator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_declarator", + "named": true + }, + { + "type": "_field_declarator", + "named": true + }, + { + "type": "_type_declarator", + "named": true + } + ] + }, + "size": { + "multiple": false, + "required": false, + "types": [ + { + "type": "*", + "named": false + }, + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "array_literal", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "array_type_specifier", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "type_qualifier", + "named": true + }, + { + "type": "type_specifier", + "named": true + } + ] + } + }, + { + "type": "assignment_expression", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "call_expression", + "named": true + }, + { + "type": "field_expression", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "pointer_expression", + "named": true + }, + { + "type": "subscript_expression", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "%=", + "named": false + }, + { + "type": "&=", + "named": false + }, + { + "type": "*=", + "named": false + }, + { + "type": "+=", + "named": false + }, + { + "type": "-=", + "named": false + }, + { + "type": "/=", + "named": false + }, + { + "type": "<<=", + "named": false + }, + { + "type": "=", + "named": false + }, + { + "type": ">>=", + "named": false + }, + { + "type": "^=", + "named": false + }, + { + "type": "|=", + "named": false + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "at_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "atdef_field", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "atomic_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "field_identifier", + "named": true + }, + { + "type": "type_specifier", + "named": true + } + ] + } + }, + { + "type": "attribute", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "prefix": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "attribute_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "attribute", + "named": true + } + ] + } + }, + { + "type": "attribute_specifier", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "argument_list", + "named": true + } + ] + } + }, + { + "type": "attributed_declarator", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_field_declarator", + "named": true + }, + { + "type": "attribute_declaration", + "named": true + } + ] + } + }, + { + "type": "attributed_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "statement", + "named": true + } + ] + } + }, + { + "type": "availability", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "version", + "named": true + } + ] + } + }, + { + "type": "availability_attribute_specifier", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "concatenated_string", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "method_identifier", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "version", + "named": true + } + ] + } + }, + { + "type": "available_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "version", + "named": true + } + ] + } + }, + { + "type": "binary_expression", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "preproc_defined", + "named": true + }, + { + "type": "system_lib_string", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "!=", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "|", + "named": false + }, + { + "type": "||", + "named": false + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "preproc_defined", + "named": true + }, + { + "type": "system_lib_string", + "named": true + } + ] + } + } + }, + { + "type": "bitfield_clause", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "block_literal", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "compound_statement", + "named": true + }, + { + "type": "parameter_list", + "named": true + }, + { + "type": "type_name", + "named": true + } + ] + } + }, + { + "type": "block_pointer_declarator", + "named": true, + "fields": { + "declarator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_declarator", + "named": true + }, + { + "type": "_field_declarator", + "named": true + }, + { + "type": "_type_declarator", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "break_statement", + "named": true, + "fields": {} + }, + { + "type": "call_expression", + "named": true, + "fields": { + "arguments": { + "multiple": false, + "required": true, + "types": [ + { + "type": "argument_list", + "named": true + } + ] + }, + "function": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "case_statement", + "named": true, + "fields": { + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attributed_statement", + "named": true + }, + { + "type": "break_statement", + "named": true + }, + { + "type": "compound_statement", + "named": true + }, + { + "type": "continue_statement", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "do_statement", + "named": true + }, + { + "type": "expression_statement", + "named": true + }, + { + "type": "for_statement", + "named": true + }, + { + "type": "goto_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, + { + "type": "labeled_statement", + "named": true + }, + { + "type": "ms_asm_block", + "named": true + }, + { + "type": "return_statement", + "named": true + }, + { + "type": "switch_statement", + "named": true + }, + { + "type": "synchronized_statement", + "named": true + }, + { + "type": "throw_statement", + "named": true + }, + { + "type": "try_statement", + "named": true + }, + { + "type": "type_definition", + "named": true + }, + { + "type": "while_statement", + "named": true + } + ] + } + }, + { + "type": "cast_expression", + "named": true, + "fields": { + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "parameterized_arguments", + "named": true + }, + { + "type": "type_descriptor", + "named": true + }, + { + "type": "typeof_specifier", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "catch_clause", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "compound_statement", + "named": true + }, + { + "type": "type_name", + "named": true + } + ] + } + }, + { + "type": "char_literal", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "character", + "named": true + }, + { + "type": "escape_sequence", + "named": true + } + ] + } + }, + { + "type": "class_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "parameterized_arguments", + "named": true + } + ] + } + }, + { + "type": "class_implementation", + "named": true, + "fields": { + "category": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "superclass": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "availability_attribute_specifier", + "named": true + }, + { + "type": "generic_arguments", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "implementation_definition", + "named": true + }, + { + "type": "instance_variables", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "parameterized_arguments", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "class_interface", + "named": true, + "fields": { + "category": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "superclass": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "availability_attribute_specifier", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "generic_arguments", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "instance_variables", + "named": true + }, + { + "type": "method_declaration", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "parameterized_arguments", + "named": true + }, + { + "type": "preproc_call", + "named": true + }, + { + "type": "preproc_def", + "named": true + }, + { + "type": "preproc_if", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true + }, + { + "type": "preproc_undef", + "named": true + }, + { + "type": "property_declaration", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "struct_specifier", + "named": true + }, + { + "type": "type_definition", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "comma_expression", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "comma_expression", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "compatibility_alias_declaration", + "named": true, + "fields": { + "alias": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "class": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + } + }, + { + "type": "compound_literal_expression", + "named": true, + "fields": { + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_descriptor", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "initializer_list", + "named": true + } + ] + } + } + }, + { + "type": "compound_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "class_declaration", + "named": true + }, + { + "type": "class_implementation", + "named": true + }, + { + "type": "class_interface", + "named": true + }, + { + "type": "compatibility_alias_declaration", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "linkage_specification", + "named": true + }, + { + "type": "module_import", + "named": true + }, + { + "type": "preproc_call", + "named": true + }, + { + "type": "preproc_def", + "named": true + }, + { + "type": "preproc_function_def", + "named": true + }, + { + "type": "preproc_if", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true + }, + { + "type": "preproc_include", + "named": true + }, + { + "type": "preproc_linemarker", + "named": true + }, + { + "type": "preproc_undef", + "named": true + }, + { + "type": "protocol_declaration", + "named": true + }, + { + "type": "protocol_forward_declaration", + "named": true + }, + { + "type": "statement", + "named": true + }, + { + "type": "type_definition", + "named": true + }, + { + "type": "type_specifier", + "named": true + } + ] + } + }, + { + "type": "concatenated_string", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "string_literal", + "named": true + } + ] + } + }, + { + "type": "conditional_expression", + "named": true, + "fields": { + "alternative": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "consequence": { + "multiple": false, + "required": false, + "types": [ + { + "type": "comma_expression", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "continue_statement", + "named": true, + "fields": {} + }, + { + "type": "declaration", + "named": true, + "fields": { + "declarator": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_declarator", + "named": true + }, + { + "type": "gnu_asm_expression", + "named": true + }, + { + "type": "init_declarator", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_specifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "availability_attribute_specifier", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "declaration_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "class_declaration", + "named": true + }, + { + "type": "class_implementation", + "named": true + }, + { + "type": "class_interface", + "named": true + }, + { + "type": "compatibility_alias_declaration", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "linkage_specification", + "named": true + }, + { + "type": "module_import", + "named": true + }, + { + "type": "preproc_call", + "named": true + }, + { + "type": "preproc_def", + "named": true + }, + { + "type": "preproc_function_def", + "named": true + }, + { + "type": "preproc_if", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true + }, + { + "type": "preproc_include", + "named": true + }, + { + "type": "preproc_linemarker", + "named": true + }, + { + "type": "preproc_undef", + "named": true + }, + { + "type": "protocol_declaration", + "named": true + }, + { + "type": "protocol_forward_declaration", + "named": true + }, + { + "type": "statement", + "named": true + }, + { + "type": "type_definition", + "named": true + }, + { + "type": "type_specifier", + "named": true + } + ] + } + }, + { + "type": "dictionary_literal", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "dictionary_pair", + "named": true + } + ] + } + }, + { + "type": "dictionary_pair", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "do_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parenthesized_expression", + "named": true + } + ] + } + } + }, + { + "type": "else_clause", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement", + "named": true + } + ] + } + }, + { + "type": "encode_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_name", + "named": true + } + ] + } + }, + { + "type": "enum_specifier", + "named": true, + "fields": { + "base": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + }, + "body": { + "multiple": false, + "required": false, + "types": [ + { + "type": "enumerator_list", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + }, + "underlying_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "primitive_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + } + ] + } + }, + { + "type": "enumerator", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "enumerator_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "availability_attribute_specifier", + "named": true + }, + { + "type": "enumerator", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "expression_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "comma_expression", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "extension_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "field_declaration", + "named": true, + "fields": { + "declarator": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_field_declarator", + "named": true + }, + { + "type": "enum_specifier", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_specifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "availability_attribute_specifier", + "named": true + }, + { + "type": "bitfield_clause", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "field_declaration_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "atdef_field", + "named": true + }, + { + "type": "field_declaration", + "named": true + }, + { + "type": "preproc_call", + "named": true + }, + { + "type": "preproc_def", + "named": true + }, + { + "type": "preproc_function_def", + "named": true + }, + { + "type": "preproc_if", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true + } + ] + } + }, + { + "type": "field_designator", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "field_identifier", + "named": true + } + ] + } + }, + { + "type": "field_expression", + "named": true, + "fields": { + "argument": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "field": { + "multiple": false, + "required": true, + "types": [ + { + "type": "field_identifier", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "->", + "named": false + }, + { + "type": ".", + "named": false + } + ] + } + } + }, + { + "type": "finally_clause", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "compound_statement", + "named": true + } + ] + } + }, + { + "type": "for_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": false, + "types": [ + { + "type": "statement", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": false, + "types": [ + { + "type": "comma_expression", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + }, + "initializer": { + "multiple": false, + "required": false, + "types": [ + { + "type": "comma_expression", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_specifier", + "named": true + } + ] + }, + "update": { + "multiple": false, + "required": false, + "types": [ + { + "type": "comma_expression", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_declarator", + "named": true + }, + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "attributed_statement", + "named": true + }, + { + "type": "availability_attribute_specifier", + "named": true + }, + { + "type": "break_statement", + "named": true + }, + { + "type": "compound_statement", + "named": true + }, + { + "type": "continue_statement", + "named": true + }, + { + "type": "do_statement", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "expression_statement", + "named": true + }, + { + "type": "for_statement", + "named": true + }, + { + "type": "goto_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, + { + "type": "labeled_statement", + "named": true + }, + { + "type": "ms_asm_block", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "return_statement", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "switch_statement", + "named": true + }, + { + "type": "synchronized_statement", + "named": true + }, + { + "type": "throw_statement", + "named": true + }, + { + "type": "try_statement", + "named": true + }, + { + "type": "type_qualifier", + "named": true + }, + { + "type": "while_statement", + "named": true + } + ] + } + }, + { + "type": "function_declarator", + "named": true, + "fields": { + "declarator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_declarator", + "named": true + }, + { + "type": "_field_declarator", + "named": true + }, + { + "type": "_type_declarator", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parameter_list", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "gnu_asm_expression", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "function_definition", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "compound_statement", + "named": true + } + ] + }, + "declarator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_declarator", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_specifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "availability_attribute_specifier", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "ms_call_modifier", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "generic_arguments", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + } + }, + { + "type": "generic_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "type_descriptor", + "named": true + } + ] + } + }, + { + "type": "generic_specifier", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "type_identifier", + "named": true + }, + { + "type": "type_name", + "named": true + } + ] + } + }, + { + "type": "gnu_asm_clobber_list", + "named": true, + "fields": { + "register": { + "multiple": true, + "required": false, + "types": [ + { + "type": "concatenated_string", + "named": true + }, + { + "type": "string_literal", + "named": true + } + ] + } + } + }, + { + "type": "gnu_asm_expression", + "named": true, + "fields": { + "assembly_code": { + "multiple": false, + "required": true, + "types": [ + { + "type": "concatenated_string", + "named": true + }, + { + "type": "string_literal", + "named": true + } + ] + }, + "clobbers": { + "multiple": false, + "required": false, + "types": [ + { + "type": "gnu_asm_clobber_list", + "named": true + } + ] + }, + "goto_labels": { + "multiple": false, + "required": false, + "types": [ + { + "type": "gnu_asm_goto_list", + "named": true + } + ] + }, + "input_operands": { + "multiple": false, + "required": false, + "types": [ + { + "type": "gnu_asm_input_operand_list", + "named": true + } + ] + }, + "output_operands": { + "multiple": false, + "required": false, + "types": [ + { + "type": "gnu_asm_output_operand_list", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "gnu_asm_qualifier", + "named": true + } + ] + } + }, + { + "type": "gnu_asm_goto_list", + "named": true, + "fields": { + "label": { + "multiple": true, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + } + }, + { + "type": "gnu_asm_input_operand", + "named": true, + "fields": { + "constraint": { + "multiple": false, + "required": true, + "types": [ + { + "type": "string_literal", + "named": true + } + ] + }, + "symbol": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "gnu_asm_input_operand_list", + "named": true, + "fields": { + "operand": { + "multiple": true, + "required": false, + "types": [ + { + "type": "gnu_asm_input_operand", + "named": true + } + ] + } + } + }, + { + "type": "gnu_asm_output_operand", + "named": true, + "fields": { + "constraint": { + "multiple": false, + "required": true, + "types": [ + { + "type": "string_literal", + "named": true + } + ] + }, + "symbol": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "gnu_asm_output_operand_list", + "named": true, + "fields": { + "operand": { + "multiple": true, + "required": false, + "types": [ + { + "type": "gnu_asm_output_operand", + "named": true + } + ] + } + } + }, + { + "type": "gnu_asm_qualifier", + "named": true, + "fields": {} + }, + { + "type": "goto_statement", + "named": true, + "fields": { + "label": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_identifier", + "named": true + } + ] + } + } + }, + { + "type": "if_statement", + "named": true, + "fields": { + "alternative": { + "multiple": false, + "required": false, + "types": [ + { + "type": "else_clause", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parenthesized_expression", + "named": true + } + ] + }, + "consequence": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement", + "named": true + } + ] + } + } + }, + { + "type": "implementation_definition", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "declaration", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "macro_type_specifier", + "named": true + }, + { + "type": "method_definition", + "named": true + }, + { + "type": "preproc_call", + "named": true + }, + { + "type": "preproc_def", + "named": true + }, + { + "type": "preproc_function_def", + "named": true + }, + { + "type": "preproc_if", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true + }, + { + "type": "preproc_undef", + "named": true + }, + { + "type": "property_implementation", + "named": true + }, + { + "type": "struct_specifier", + "named": true + }, + { + "type": "type_definition", + "named": true + } + ] + } + }, + { + "type": "init_declarator", + "named": true, + "fields": { + "declarator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_declarator", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "initializer_list", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute_specifier", + "named": true + } + ] + } + }, + { + "type": "initializer_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "initializer_list", + "named": true + }, + { + "type": "initializer_pair", + "named": true + } + ] + } + }, + { + "type": "initializer_pair", + "named": true, + "fields": { + "designator": { + "multiple": true, + "required": true, + "types": [ + { + "type": "field_designator", + "named": true + }, + { + "type": "field_identifier", + "named": true + }, + { + "type": "subscript_designator", + "named": true + }, + { + "type": "subscript_range_designator", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "initializer_list", + "named": true + } + ] + } + } + }, + { + "type": "instance_variable", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "atomic_declaration", + "named": true + }, + { + "type": "preproc_if", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true + }, + { + "type": "struct_declaration", + "named": true + }, + { + "type": "visibility_specification", + "named": true + } + ] + } + }, + { + "type": "instance_variables", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "instance_variable", + "named": true + } + ] + } + }, + { + "type": "keyword_declarator", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "method_type", + "named": true + } + ] + } + }, + { + "type": "labeled_statement", + "named": true, + "fields": { + "label": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "declaration", + "named": true + }, + { + "type": "statement", + "named": true + } + ] + } + }, + { + "type": "linkage_specification", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "declaration", + "named": true + }, + { + "type": "declaration_list", + "named": true + }, + { + "type": "function_definition", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "string_literal", + "named": true + } + ] + } + } + }, + { + "type": "macro_type_specifier", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_descriptor", + "named": true + } + ] + } + } + }, + { + "type": "message_expression", + "named": true, + "fields": { + "method": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "receiver": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "generic_specifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "method_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "availability_attribute_specifier", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "keyword_declarator", + "named": true + }, + { + "type": "method_parameter", + "named": true + }, + { + "type": "method_type", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "method_definition", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "availability_attribute_specifier", + "named": true + }, + { + "type": "compound_statement", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "keyword_declarator", + "named": true + }, + { + "type": "method_parameter", + "named": true + }, + { + "type": "method_type", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "method_identifier", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "method_parameter", + "named": true, + "fields": { + "declarator": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_declarator", + "named": true + }, + { + "type": "init_declarator", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_specifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "availability_attribute_specifier", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "method_type", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "method_type", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "parameterized_arguments", + "named": true + }, + { + "type": "type_name", + "named": true + } + ] + } + }, + { + "type": "module_import", + "named": true, + "fields": { + "path": { + "multiple": true, + "required": true, + "types": [ + { + "type": ".", + "named": false + }, + { + "type": "identifier", + "named": true + } + ] + } + } + }, + { + "type": "ms_asm_block", + "named": true, + "fields": {} + }, + { + "type": "ms_based_modifier", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "argument_list", + "named": true + } + ] + } + }, + { + "type": "ms_call_modifier", + "named": true, + "fields": {} + }, + { + "type": "ms_declspec_modifier", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "ms_pointer_modifier", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "ms_restrict_modifier", + "named": true + }, + { + "type": "ms_signed_ptr_modifier", + "named": true + }, + { + "type": "ms_unaligned_ptr_modifier", + "named": true + }, + { + "type": "ms_unsigned_ptr_modifier", + "named": true + } + ] + } + }, + { + "type": "ms_unaligned_ptr_modifier", + "named": true, + "fields": {} + }, + { + "type": "null", + "named": true, + "fields": {} + }, + { + "type": "objc_bridge", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "offsetof_expression", + "named": true, + "fields": { + "member": { + "multiple": false, + "required": true, + "types": [ + { + "type": "field_identifier", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_descriptor", + "named": true + } + ] + } + } + }, + { + "type": "parameter_declaration", + "named": true, + "fields": { + "declarator": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_abstract_declarator", + "named": true + }, + { + "type": "_declarator", + "named": true + }, + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "availability_attribute_specifier", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_specifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "availability_attribute_specifier", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "parameter_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "compound_statement", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "parameter_declaration", + "named": true + }, + { + "type": "variadic_parameter", + "named": true + } + ] + } + }, + { + "type": "parameterized_arguments", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "type_identifier", + "named": true + }, + { + "type": "type_name", + "named": true + } + ] + } + }, + { + "type": "parenthesized_declarator", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_declarator", + "named": true + }, + { + "type": "_field_declarator", + "named": true + }, + { + "type": "_type_declarator", + "named": true + }, + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "availability_attribute_specifier", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "parenthesized_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "comma_expression", + "named": true + }, + { + "type": "compound_statement", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "preproc_defined", + "named": true + }, + { + "type": "system_lib_string", + "named": true + } + ] + } + }, + { + "type": "platform", + "named": true, + "fields": {} + }, + { + "type": "pointer_declarator", + "named": true, + "fields": { + "declarator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_declarator", + "named": true + }, + { + "type": "_field_declarator", + "named": true + }, + { + "type": "_type_declarator", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "availability_attribute_specifier", + "named": true + }, + { + "type": "ms_based_modifier", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "ms_pointer_modifier", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "pointer_expression", + "named": true, + "fields": { + "argument": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "&", + "named": false + }, + { + "type": "*", + "named": false + } + ] + } + } + }, + { + "type": "preproc_call", + "named": true, + "fields": { + "argument": { + "multiple": false, + "required": false, + "types": [ + { + "type": "preproc_arg", + "named": true + } + ] + }, + "directive": { + "multiple": false, + "required": true, + "types": [ + { + "type": "preproc_directive", + "named": true + } + ] + } + } + }, + { + "type": "preproc_def", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "preproc_arg", + "named": true + } + ] + } + } + }, + { + "type": "preproc_defined", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "preproc_elif", + "named": true, + "fields": { + "alternative": { + "multiple": false, + "required": false, + "types": [ + { + "type": "preproc_elif", + "named": true + }, + { + "type": "preproc_elifdef", + "named": true + }, + { + "type": "preproc_else", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "binary_expression", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "char_literal", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "number_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "preproc_defined", + "named": true + }, + { + "type": "system_lib_string", + "named": true + }, + { + "type": "unary_expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "atdef_field", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "class_declaration", + "named": true + }, + { + "type": "class_implementation", + "named": true + }, + { + "type": "class_interface", + "named": true + }, + { + "type": "compatibility_alias_declaration", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "enumerator", + "named": true + }, + { + "type": "field_declaration", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "implementation_definition", + "named": true + }, + { + "type": "linkage_specification", + "named": true + }, + { + "type": "method_declaration", + "named": true + }, + { + "type": "module_import", + "named": true + }, + { + "type": "preproc_call", + "named": true + }, + { + "type": "preproc_def", + "named": true + }, + { + "type": "preproc_function_def", + "named": true + }, + { + "type": "preproc_if", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true + }, + { + "type": "preproc_include", + "named": true + }, + { + "type": "preproc_linemarker", + "named": true + }, + { + "type": "preproc_undef", + "named": true + }, + { + "type": "property_declaration", + "named": true + }, + { + "type": "property_implementation", + "named": true + }, + { + "type": "protocol_declaration", + "named": true + }, + { + "type": "protocol_forward_declaration", + "named": true + }, + { + "type": "statement", + "named": true + }, + { + "type": "type_definition", + "named": true + }, + { + "type": "type_specifier", + "named": true + } + ] + } + }, + { + "type": "preproc_elifdef", + "named": true, + "fields": { + "alternative": { + "multiple": false, + "required": false, + "types": [ + { + "type": "preproc_elif", + "named": true + }, + { + "type": "preproc_elifdef", + "named": true + }, + { + "type": "preproc_else", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "atdef_field", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "class_declaration", + "named": true + }, + { + "type": "class_implementation", + "named": true + }, + { + "type": "class_interface", + "named": true + }, + { + "type": "compatibility_alias_declaration", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "field_declaration", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "linkage_specification", + "named": true + }, + { + "type": "module_import", + "named": true + }, + { + "type": "preproc_call", + "named": true + }, + { + "type": "preproc_def", + "named": true + }, + { + "type": "preproc_function_def", + "named": true + }, + { + "type": "preproc_if", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true + }, + { + "type": "preproc_include", + "named": true + }, + { + "type": "preproc_linemarker", + "named": true + }, + { + "type": "preproc_undef", + "named": true + }, + { + "type": "property_implementation", + "named": true + }, + { + "type": "protocol_declaration", + "named": true + }, + { + "type": "protocol_forward_declaration", + "named": true + }, + { + "type": "statement", + "named": true + }, + { + "type": "type_definition", + "named": true + }, + { + "type": "type_specifier", + "named": true + } + ] + } + }, + { + "type": "preproc_else", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "atdef_field", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "class_declaration", + "named": true + }, + { + "type": "class_implementation", + "named": true + }, + { + "type": "class_interface", + "named": true + }, + { + "type": "compatibility_alias_declaration", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "enumerator", + "named": true + }, + { + "type": "field_declaration", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "implementation_definition", + "named": true + }, + { + "type": "linkage_specification", + "named": true + }, + { + "type": "method_declaration", + "named": true + }, + { + "type": "module_import", + "named": true + }, + { + "type": "preproc_call", + "named": true + }, + { + "type": "preproc_def", + "named": true + }, + { + "type": "preproc_function_def", + "named": true + }, + { + "type": "preproc_if", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true + }, + { + "type": "preproc_include", + "named": true + }, + { + "type": "preproc_linemarker", + "named": true + }, + { + "type": "preproc_undef", + "named": true + }, + { + "type": "property_declaration", + "named": true + }, + { + "type": "property_implementation", + "named": true + }, + { + "type": "protocol_declaration", + "named": true + }, + { + "type": "protocol_forward_declaration", + "named": true + }, + { + "type": "statement", + "named": true + }, + { + "type": "type_definition", + "named": true + }, + { + "type": "type_specifier", + "named": true + } + ] + } + }, + { + "type": "preproc_function_def", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "preproc_params", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "preproc_arg", + "named": true + } + ] + } + } + }, + { + "type": "preproc_if", + "named": true, + "fields": { + "alternative": { + "multiple": false, + "required": false, + "types": [ + { + "type": "preproc_elif", + "named": true + }, + { + "type": "preproc_elifdef", + "named": true + }, + { + "type": "preproc_else", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "binary_expression", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "char_literal", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "number_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "preproc_defined", + "named": true + }, + { + "type": "system_lib_string", + "named": true + }, + { + "type": "unary_expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "atdef_field", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "class_declaration", + "named": true + }, + { + "type": "class_implementation", + "named": true + }, + { + "type": "class_interface", + "named": true + }, + { + "type": "compatibility_alias_declaration", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "field_declaration", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "implementation_definition", + "named": true + }, + { + "type": "linkage_specification", + "named": true + }, + { + "type": "method_declaration", + "named": true + }, + { + "type": "module_import", + "named": true + }, + { + "type": "preproc_call", + "named": true + }, + { + "type": "preproc_def", + "named": true + }, + { + "type": "preproc_function_def", + "named": true + }, + { + "type": "preproc_if", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true + }, + { + "type": "preproc_include", + "named": true + }, + { + "type": "preproc_linemarker", + "named": true + }, + { + "type": "preproc_undef", + "named": true + }, + { + "type": "property_declaration", + "named": true + }, + { + "type": "property_implementation", + "named": true + }, + { + "type": "protocol_declaration", + "named": true + }, + { + "type": "protocol_forward_declaration", + "named": true + }, + { + "type": "statement", + "named": true + }, + { + "type": "type_definition", + "named": true + }, + { + "type": "type_specifier", + "named": true + } + ] + } + }, + { + "type": "preproc_ifdef", + "named": true, + "fields": { + "alternative": { + "multiple": false, + "required": false, + "types": [ + { + "type": "preproc_elif", + "named": true + }, + { + "type": "preproc_elifdef", + "named": true + }, + { + "type": "preproc_else", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "atdef_field", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "class_declaration", + "named": true + }, + { + "type": "class_implementation", + "named": true + }, + { + "type": "class_interface", + "named": true + }, + { + "type": "compatibility_alias_declaration", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "enumerator", + "named": true + }, + { + "type": "field_declaration", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "linkage_specification", + "named": true + }, + { + "type": "module_import", + "named": true + }, + { + "type": "preproc_call", + "named": true + }, + { + "type": "preproc_def", + "named": true + }, + { + "type": "preproc_function_def", + "named": true + }, + { + "type": "preproc_if", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true + }, + { + "type": "preproc_include", + "named": true + }, + { + "type": "preproc_linemarker", + "named": true + }, + { + "type": "preproc_undef", + "named": true + }, + { + "type": "property_implementation", + "named": true + }, + { + "type": "protocol_declaration", + "named": true + }, + { + "type": "protocol_forward_declaration", + "named": true + }, + { + "type": "statement", + "named": true + }, + { + "type": "type_definition", + "named": true + }, + { + "type": "type_specifier", + "named": true + } + ] + } + }, + { + "type": "preproc_include", + "named": true, + "fields": { + "directive": { + "multiple": false, + "required": true, + "types": [ + { + "type": "#import", + "named": false + }, + { + "type": "#include", + "named": false + } + ] + }, + "path": { + "multiple": false, + "required": true, + "types": [ + { + "type": "call_expression", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "system_lib_string", + "named": true + } + ] + } + } + }, + { + "type": "preproc_linemarker", + "named": true, + "fields": { + "column": { + "multiple": false, + "required": false, + "types": [ + { + "type": "number_literal", + "named": true + } + ] + }, + "filename": { + "multiple": false, + "required": true, + "types": [ + { + "type": "string_literal", + "named": true + } + ] + }, + "row": { + "multiple": false, + "required": false, + "types": [ + { + "type": "number_literal", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "number_literal", + "named": true + } + ] + } + }, + { + "type": "preproc_params", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "preproc_undef", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + } + }, + { + "type": "property_attribute", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "property_attributes_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "property_attribute", + "named": true + } + ] + } + }, + { + "type": "property_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "atomic_declaration", + "named": true + }, + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "availability_attribute_specifier", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "property_attributes_declaration", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "struct_declaration", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "property_implementation", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "protocol_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "availability_attribute_specifier", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "method_declaration", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "preproc_call", + "named": true + }, + { + "type": "preproc_def", + "named": true + }, + { + "type": "preproc_if", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true + }, + { + "type": "preproc_undef", + "named": true + }, + { + "type": "property_declaration", + "named": true + }, + { + "type": "protocol_reference_list", + "named": true + }, + { + "type": "qualified_protocol_interface_declaration", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "struct_specifier", + "named": true + }, + { + "type": "type_definition", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "protocol_forward_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "availability_attribute_specifier", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "protocol_qualifier", + "named": true, + "fields": {} + }, + { + "type": "protocol_reference_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "qualified_protocol_interface_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "declaration", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "method_declaration", + "named": true + }, + { + "type": "preproc_call", + "named": true + }, + { + "type": "preproc_def", + "named": true + }, + { + "type": "preproc_if", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true + }, + { + "type": "preproc_undef", + "named": true + }, + { + "type": "property_declaration", + "named": true + }, + { + "type": "struct_specifier", + "named": true + }, + { + "type": "type_definition", + "named": true + } + ] + } + }, + { + "type": "range_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "return_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "comma_expression", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "selector_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "method_identifier", + "named": true + } + ] + } + }, + { + "type": "sized_type_specifier", + "named": true, + "fields": { + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "primitive_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "sizeof_expression", + "named": true, + "fields": { + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_descriptor", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "storage_class_specifier", + "named": true, + "fields": {} + }, + { + "type": "string_literal", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "escape_sequence", + "named": true + }, + { + "type": "string_content", + "named": true + } + ] + } + }, + { + "type": "struct_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "availability_attribute_specifier", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "specifier_qualifier", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "struct_declarator", + "named": true + } + ] + } + }, + { + "type": "struct_declarator", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_declarator", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "struct_specifier", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": false, + "types": [ + { + "type": "field_declaration_list", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + } + ] + } + }, + { + "type": "subscript_designator", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "subscript_expression", + "named": true, + "fields": { + "argument": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "index": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "subscript_range_designator", + "named": true, + "fields": { + "end": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "start": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "switch_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "compound_statement", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parenthesized_expression", + "named": true + } + ] + } + } + }, + { + "type": "synchronized_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "compound_statement", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "throw_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "translation_unit", + "named": true, + "root": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attributed_statement", + "named": true + }, + { + "type": "break_statement", + "named": true + }, + { + "type": "case_statement", + "named": true + }, + { + "type": "class_declaration", + "named": true + }, + { + "type": "class_implementation", + "named": true + }, + { + "type": "class_interface", + "named": true + }, + { + "type": "compatibility_alias_declaration", + "named": true + }, + { + "type": "compound_statement", + "named": true + }, + { + "type": "continue_statement", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "do_statement", + "named": true + }, + { + "type": "expression_statement", + "named": true + }, + { + "type": "for_statement", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "goto_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, + { + "type": "labeled_statement", + "named": true + }, + { + "type": "linkage_specification", + "named": true + }, + { + "type": "module_import", + "named": true + }, + { + "type": "preproc_call", + "named": true + }, + { + "type": "preproc_def", + "named": true + }, + { + "type": "preproc_function_def", + "named": true + }, + { + "type": "preproc_if", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true + }, + { + "type": "preproc_include", + "named": true + }, + { + "type": "preproc_linemarker", + "named": true + }, + { + "type": "preproc_undef", + "named": true + }, + { + "type": "protocol_declaration", + "named": true + }, + { + "type": "protocol_forward_declaration", + "named": true + }, + { + "type": "return_statement", + "named": true + }, + { + "type": "switch_statement", + "named": true + }, + { + "type": "type_definition", + "named": true + }, + { + "type": "type_specifier", + "named": true + }, + { + "type": "while_statement", + "named": true + } + ] + } + }, + { + "type": "try_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "catch_clause", + "named": true + }, + { + "type": "compound_statement", + "named": true + }, + { + "type": "finally_clause", + "named": true + } + ] + } + }, + { + "type": "type_definition", + "named": true, + "fields": { + "declarator": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_type_declarator", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_specifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "availability_attribute_specifier", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "type_descriptor", + "named": true, + "fields": { + "declarator": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_abstract_declarator", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_specifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "type_name", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_abstract_declarator", + "named": true + }, + { + "type": "_declarator", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "protocol_reference_list", + "named": true + }, + { + "type": "specifier_qualifier", + "named": true + } + ] + } + }, + { + "type": "type_qualifier", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "alignas_qualifier", + "named": true + } + ] + } + }, + { + "type": "typedefed_specifier", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "protocol_reference_list", + "named": true + } + ] + } + }, + { + "type": "typeof_specifier", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "type_descriptor", + "named": true + } + ] + } + }, + { + "type": "unary_expression", + "named": true, + "fields": { + "argument": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "preproc_defined", + "named": true + }, + { + "type": "system_lib_string", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "!", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "~", + "named": false + } + ] + } + } + }, + { + "type": "union_specifier", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": false, + "types": [ + { + "type": "field_declaration_list", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + } + ] + } + }, + { + "type": "update_expression", + "named": true, + "fields": { + "argument": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "++", + "named": false + }, + { + "type": "--", + "named": false + } + ] + } + } + }, + { + "type": "va_arg_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "type_descriptor", + "named": true + } + ] + } + }, + { + "type": "variadic_parameter", + "named": true, + "fields": {} + }, + { + "type": "version", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "number_literal", + "named": true + }, + { + "type": "platform", + "named": true + }, + { + "type": "version_number", + "named": true + } + ] + } + }, + { + "type": "visibility_specification", + "named": true, + "fields": {} + }, + { + "type": "while_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parenthesized_expression", + "named": true + } + ] + } + } + }, + { + "type": "\n", + "named": false + }, + { + "type": "!", + "named": false + }, + { + "type": "!=", + "named": false + }, + { + "type": "\"", + "named": false + }, + { + "type": "#", + "named": false + }, + { + "type": "#define", + "named": false + }, + { + "type": "#elif", + "named": false + }, + { + "type": "#elifdef", + "named": false + }, + { + "type": "#elifndef", + "named": false + }, + { + "type": "#else", + "named": false + }, + { + "type": "#endif", + "named": false + }, + { + "type": "#if", + "named": false + }, + { + "type": "#ifdef", + "named": false + }, + { + "type": "#ifndef", + "named": false + }, + { + "type": "#import", + "named": false + }, + { + "type": "#include", + "named": false + }, + { + "type": "#undef", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "%=", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "&=", + "named": false + }, + { + "type": "'", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": "(class)", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "*=", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "++", + "named": false + }, + { + "type": "+=", + "named": false + }, + { + "type": ",", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "--", + "named": false + }, + { + "type": "-=", + "named": false + }, + { + "type": "->", + "named": false + }, + { + "type": ".", + "named": false + }, + { + "type": "...", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "/=", + "named": false + }, + { + "type": ":", + "named": false + }, + { + "type": "::", + "named": false + }, + { + "type": ";", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<<=", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": ">>=", + "named": false + }, + { + "type": "?", + "named": false + }, + { + "type": "@", + "named": false + }, + { + "type": "@autoreleasepool", + "named": false + }, + { + "type": "@available", + "named": false + }, + { + "type": "@catch", + "named": false + }, + { + "type": "@compatibility_alias", + "named": false + }, + { + "type": "@defs", + "named": false + }, + { + "type": "@dynamic", + "named": false + }, + { + "type": "@encode", + "named": false + }, + { + "type": "@end", + "named": false + }, + { + "type": "@finally", + "named": false + }, + { + "type": "@implementation", + "named": false + }, + { + "type": "@import", + "named": false + }, + { + "type": "@interface", + "named": false + }, + { + "type": "@optional", + "named": false + }, + { + "type": "@package", + "named": false + }, + { + "type": "@private", + "named": false + }, + { + "type": "@property", + "named": false + }, + { + "type": "@protected", + "named": false + }, + { + "type": "@protocol", + "named": false + }, + { + "type": "@public", + "named": false + }, + { + "type": "@required", + "named": false + }, + { + "type": "@selector", + "named": false + }, + { + "type": "@synchronized", + "named": false + }, + { + "type": "@synthesize", + "named": false + }, + { + "type": "@throw", + "named": false + }, + { + "type": "@try", + "named": false + }, + { + "type": "API_AVAILABLE", + "named": false + }, + { + "type": "API_DEPRECATED", + "named": false + }, + { + "type": "API_UNAVAILABLE", + "named": false + }, + { + "type": "BOOL", + "named": false + }, + { + "type": "CF_FORMAT_FUNCTION", + "named": false + }, + { + "type": "CF_RETURNS_NOT_RETAINED", + "named": false + }, + { + "type": "CF_RETURNS_RETAINED", + "named": false + }, + { + "type": "CG_EXTERN", + "named": false + }, + { + "type": "CG_INLINE", + "named": false + }, + { + "type": "Class", + "named": false + }, + { + "type": "DEPRECATED_ATTRIBUTE", + "named": false + }, + { + "type": "DEPRECATED_MSG_ATTRIBUTE", + "named": false + }, + { + "type": "FOUNDATION_EXPORT", + "named": false + }, + { + "type": "FOUNDATION_EXTERN", + "named": false + }, + { + "type": "FOUNDATION_STATIC_INLINE", + "named": false + }, + { + "type": "IBInspectable", + "named": false + }, + { + "type": "IBOutlet", + "named": false + }, + { + "type": "IB_DESIGNABLE", + "named": false + }, + { + "type": "IMP", + "named": false + }, + { + "type": "L\"", + "named": false + }, + { + "type": "L'", + "named": false + }, + { + "type": "NS_AUTOMATED_REFCOUNT_UNAVAILABLE", + "named": false + }, + { + "type": "NS_AVAILABLE", + "named": false + }, + { + "type": "NS_AVAILABLE_IOS", + "named": false + }, + { + "type": "NS_CLASS_AVAILABLE_IOS", + "named": false + }, + { + "type": "NS_CLASS_DEPRECATED_IOS", + "named": false + }, + { + "type": "NS_DEPRECATED_IOS", + "named": false + }, + { + "type": "NS_ENUM_AVAILABLE_IOS", + "named": false + }, + { + "type": "NS_ENUM_DEPRECATED_IOS", + "named": false + }, + { + "type": "NS_EXTENSION_UNAVAILABLE_IOS", + "named": false + }, + { + "type": "NS_FORMAT_FUNCTION", + "named": false + }, + { + "type": "NS_INLINE", + "named": false + }, + { + "type": "NS_REQUIRES_NIL_TERMINATION", + "named": false + }, + { + "type": "NS_ROOT_CLASS", + "named": false + }, + { + "type": "NS_SWIFT_NAME", + "named": false + }, + { + "type": "NS_SWIFT_UNAVAILABLE", + "named": false + }, + { + "type": "NS_UNAVAILABLE", + "named": false + }, + { + "type": "NS_VALID_UNTIL_END_OF_SCOPE", + "named": false + }, + { + "type": "NULL", + "named": false + }, + { + "type": "OBJC_EXPORT", + "named": false + }, + { + "type": "OBJC_ROOT_CLASS", + "named": false + }, + { + "type": "SEL", + "named": false + }, + { + "type": "U\"", + "named": false + }, + { + "type": "U'", + "named": false + }, + { + "type": "UIKIT_EXTERN", + "named": false + }, + { + "type": "UI_APPEARANCE_SELECTOR", + "named": false + }, + { + "type": "UNAVAILABLE_ATTRIBUTE", + "named": false + }, + { + "type": "[", + "named": false + }, + { + "type": "]", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "^=", + "named": false + }, + { + "type": "_Alignas", + "named": false + }, + { + "type": "_Alignof", + "named": false + }, + { + "type": "_Atomic", + "named": false + }, + { + "type": "_Complex", + "named": false + }, + { + "type": "_Generic", + "named": false + }, + { + "type": "_Nonnull", + "named": false + }, + { + "type": "_Noreturn", + "named": false + }, + { + "type": "_Null_unspecified", + "named": false + }, + { + "type": "_Nullable", + "named": false + }, + { + "type": "_Nullable_result", + "named": false + }, + { + "type": "__IOS_AVAILABLE", + "named": false + }, + { + "type": "__OSX_AVAILABLE_STARTING", + "named": false + }, + { + "type": "__alignof", + "named": false + }, + { + "type": "__alignof__", + "named": false + }, + { + "type": "__asm", + "named": false + }, + { + "type": "__asm__", + "named": false + }, + { + "type": "__attribute", + "named": false + }, + { + "type": "__attribute__", + "named": false + }, + { + "type": "__autoreleasing", + "named": false + }, + { + "type": "__based", + "named": false + }, + { + "type": "__block", + "named": false + }, + { + "type": "__bridge", + "named": false + }, + { + "type": "__bridge_retained", + "named": false + }, + { + "type": "__bridge_transfer", + "named": false + }, + { + "type": "__builtin_available", + "named": false + }, + { + "type": "__catch", + "named": false + }, + { + "type": "__cdecl", + "named": false + }, + { + "type": "__clrcall", + "named": false + }, + { + "type": "__complex", + "named": false + }, + { + "type": "__const", + "named": false + }, + { + "type": "__contravariant", + "named": false + }, + { + "type": "__covariant", + "named": false + }, + { + "type": "__declspec", + "named": false + }, + { + "type": "__deprecated_enum_msg", + "named": false + }, + { + "type": "__deprecated_msg", + "named": false + }, + { + "type": "__extension__", + "named": false + }, + { + "type": "__fastcall", + "named": false + }, + { + "type": "__finally", + "named": false + }, + { + "type": "__forceinline", + "named": false + }, + { + "type": "__imag", + "named": false + }, + { + "type": "__inline", + "named": false + }, + { + "type": "__inline__", + "named": false + }, + { + "type": "__kindof", + "named": false + }, + { + "type": "__nonnull", + "named": false + }, + { + "type": "__nullable", + "named": false + }, + { + "type": "__ptrauth_objc_class_ro", + "named": false + }, + { + "type": "__ptrauth_objc_isa_pointer", + "named": false + }, + { + "type": "__ptrauth_objc_super_pointer", + "named": false + }, + { + "type": "__real", + "named": false + }, + { + "type": "__restrict__", + "named": false + }, + { + "type": "__stdcall", + "named": false + }, + { + "type": "__strong", + "named": false + }, + { + "type": "__thiscall", + "named": false + }, + { + "type": "__thread", + "named": false + }, + { + "type": "__try", + "named": false + }, + { + "type": "__typeof", + "named": false + }, + { + "type": "__typeof__", + "named": false + }, + { + "type": "__unaligned", + "named": false + }, + { + "type": "__unsafe_unretained", + "named": false + }, + { + "type": "__unused", + "named": false + }, + { + "type": "__vectorcall", + "named": false + }, + { + "type": "__volatile__", + "named": false + }, + { + "type": "__weak", + "named": false + }, + { + "type": "_alignof", + "named": false + }, + { + "type": "_unaligned", + "named": false + }, + { + "type": "alignas", + "named": false + }, + { + "type": "alignof", + "named": false + }, + { + "type": "asm", + "named": false + }, + { + "type": "auto", + "named": false + }, + { + "type": "availability", + "named": false + }, + { + "type": "break", + "named": false + }, + { + "type": "bycopy", + "named": false + }, + { + "type": "byref", + "named": false + }, + { + "type": "case", + "named": false + }, + { + "type": "character", + "named": true + }, + { + "type": "class", + "named": false + }, + { + "type": "comment", + "named": true + }, + { + "type": "const", + "named": false + }, + { + "type": "constexpr", + "named": false + }, + { + "type": "continue", + "named": false + }, + { + "type": "default", + "named": false + }, + { + "type": "defined", + "named": false + }, + { + "type": "do", + "named": false + }, + { + "type": "else", + "named": false + }, + { + "type": "enum", + "named": false + }, + { + "type": "escape_sequence", + "named": true + }, + { + "type": "extern", + "named": false + }, + { + "type": "false", + "named": true + }, + { + "type": "field_identifier", + "named": true + }, + { + "type": "for", + "named": false + }, + { + "type": "goto", + "named": false + }, + { + "type": "id", + "named": false + }, + { + "type": "identifier", + "named": true + }, + { + "type": "if", + "named": false + }, + { + "type": "in", + "named": false + }, + { + "type": "inline", + "named": false + }, + { + "type": "inout", + "named": false + }, + { + "type": "ios", + "named": false + }, + { + "type": "long", + "named": false + }, + { + "type": "macos", + "named": false + }, + { + "type": "macosx", + "named": false + }, + { + "type": "ms_restrict_modifier", + "named": true + }, + { + "type": "ms_signed_ptr_modifier", + "named": true + }, + { + "type": "ms_unsigned_ptr_modifier", + "named": true + }, + { + "type": "noreturn", + "named": false + }, + { + "type": "nothrow", + "named": false + }, + { + "type": "nullable", + "named": false + }, + { + "type": "nullptr", + "named": false + }, + { + "type": "number_literal", + "named": true + }, + { + "type": "objc_bridge_related", + "named": false + }, + { + "type": "offsetof", + "named": false + }, + { + "type": "oneway", + "named": false + }, + { + "type": "out", + "named": false + }, + { + "type": "preproc_arg", + "named": true + }, + { + "type": "preproc_directive", + "named": true + }, + { + "type": "primitive_type", + "named": true + }, + { + "type": "register", + "named": false + }, + { + "type": "restrict", + "named": false + }, + { + "type": "return", + "named": false + }, + { + "type": "short", + "named": false + }, + { + "type": "signed", + "named": false + }, + { + "type": "sizeof", + "named": false + }, + { + "type": "statement_identifier", + "named": true + }, + { + "type": "static", + "named": false + }, + { + "type": "string_content", + "named": true + }, + { + "type": "struct", + "named": false + }, + { + "type": "switch", + "named": false + }, + { + "type": "system_lib_string", + "named": true + }, + { + "type": "thread_local", + "named": false + }, + { + "type": "true", + "named": true + }, + { + "type": "tvos", + "named": false + }, + { + "type": "type_identifier", + "named": true + }, + { + "type": "typedef", + "named": false + }, + { + "type": "typeof", + "named": false + }, + { + "type": "u\"", + "named": false + }, + { + "type": "u'", + "named": false + }, + { + "type": "u8\"", + "named": false + }, + { + "type": "u8'", + "named": false + }, + { + "type": "union", + "named": false + }, + { + "type": "unsigned", + "named": false + }, + { + "type": "va_arg", + "named": false + }, + { + "type": "version_number", + "named": true + }, + { + "type": "volatile", + "named": false + }, + { + "type": "watchos", + "named": false + }, + { + "type": "while", + "named": false + }, + { + "type": "{", + "named": false + }, + { + "type": "|", + "named": false + }, + { + "type": "|=", + "named": false + }, + { + "type": "||", + "named": false + }, + { + "type": "}", + "named": false + }, + { + "type": "~", + "named": false + } +] \ No newline at end of file diff --git a/gitnexus/vendor/tree-sitter-objc/src/parser.c b/gitnexus/vendor/tree-sitter-objc/src/parser.c new file mode 100644 index 000000000..c1f14a7be --- /dev/null +++ b/gitnexus/vendor/tree-sitter-objc/src/parser.c @@ -0,0 +1,684023 @@ +#include "tree_sitter/parser.h" + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic ignored "-Wmissing-field-initializers" +#endif + +#ifdef _MSC_VER +#pragma optimize("", off) +#elif defined(__clang__) +#pragma clang optimize off +#elif defined(__GNUC__) +#pragma GCC optimize ("O0") +#endif + +#define LANGUAGE_VERSION 14 +#define STATE_COUNT 6793 +#define LARGE_STATE_COUNT 4137 +#define SYMBOL_COUNT 585 +#define ALIAS_COUNT 3 +#define TOKEN_COUNT 286 +#define EXTERNAL_TOKEN_COUNT 0 +#define FIELD_COUNT 48 +#define MAX_ALIAS_SEQUENCE_LENGTH 16 +#define PRODUCTION_ID_COUNT 163 + +enum ts_symbol_identifiers { + sym_identifier = 1, + aux_sym_preproc_include_token1 = 2, + aux_sym_preproc_include_token2 = 3, + aux_sym_preproc_include_token3 = 4, + aux_sym_preproc_def_token1 = 5, + anon_sym_LPAREN = 6, + anon_sym_DOT_DOT_DOT = 7, + anon_sym_COMMA = 8, + anon_sym_RPAREN = 9, + aux_sym_preproc_if_token1 = 10, + anon_sym_LF = 11, + aux_sym_preproc_if_token2 = 12, + aux_sym_preproc_ifdef_token1 = 13, + aux_sym_preproc_ifdef_token2 = 14, + aux_sym_preproc_else_token1 = 15, + aux_sym_preproc_elif_token1 = 16, + aux_sym_preproc_elifdef_token1 = 17, + aux_sym_preproc_elifdef_token2 = 18, + sym_preproc_arg = 19, + sym_preproc_directive = 20, + anon_sym_LPAREN2 = 21, + anon_sym_defined = 22, + anon_sym_BANG = 23, + anon_sym_TILDE = 24, + anon_sym_DASH = 25, + anon_sym_PLUS = 26, + anon_sym_STAR = 27, + anon_sym_SLASH = 28, + anon_sym_PERCENT = 29, + anon_sym_PIPE_PIPE = 30, + anon_sym_AMP_AMP = 31, + anon_sym_PIPE = 32, + anon_sym_CARET = 33, + anon_sym_AMP = 34, + anon_sym_EQ_EQ = 35, + anon_sym_BANG_EQ = 36, + anon_sym_GT = 37, + anon_sym_GT_EQ = 38, + anon_sym_LT_EQ = 39, + anon_sym_LT = 40, + anon_sym_LT_LT = 41, + anon_sym_GT_GT = 42, + anon_sym_SEMI = 43, + anon_sym___extension__ = 44, + anon_sym_typedef = 45, + anon_sym_extern = 46, + anon_sym___attribute__ = 47, + anon_sym___attribute = 48, + anon_sym_noreturn = 49, + anon_sym_nothrow = 50, + anon_sym_COLON_COLON = 51, + anon_sym_LBRACK = 52, + anon_sym_RBRACK = 53, + anon_sym___declspec = 54, + anon_sym___based = 55, + anon_sym___cdecl = 56, + anon_sym___clrcall = 57, + anon_sym___stdcall = 58, + anon_sym___fastcall = 59, + anon_sym___thiscall = 60, + anon_sym___vectorcall = 61, + sym_ms_restrict_modifier = 62, + sym_ms_unsigned_ptr_modifier = 63, + sym_ms_signed_ptr_modifier = 64, + anon_sym__unaligned = 65, + anon_sym___unaligned = 66, + anon_sym_LBRACE = 67, + anon_sym_RBRACE = 68, + anon_sym_signed = 69, + anon_sym_unsigned = 70, + anon_sym_long = 71, + anon_sym_short = 72, + anon_sym_static = 73, + anon_sym_EQ = 74, + anon_sym_ATautoreleasepool = 75, + anon_sym_auto = 76, + anon_sym_register = 77, + anon_sym_inline = 78, + anon_sym___inline = 79, + anon_sym___inline__ = 80, + anon_sym___forceinline = 81, + anon_sym_thread_local = 82, + anon_sym___thread = 83, + anon_sym_CG_EXTERN = 84, + anon_sym_CG_INLINE = 85, + anon_sym_FOUNDATION_EXPORT = 86, + anon_sym_FOUNDATION_EXTERN = 87, + anon_sym_FOUNDATION_STATIC_INLINE = 88, + anon_sym_IBOutlet = 89, + anon_sym_IBInspectable = 90, + anon_sym_IB_DESIGNABLE = 91, + anon_sym_NS_INLINE = 92, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE = 93, + anon_sym_OBJC_EXPORT = 94, + anon_sym_OBJC_ROOT_CLASS = 95, + anon_sym_UIKIT_EXTERN = 96, + anon_sym_const = 97, + anon_sym_constexpr = 98, + anon_sym_volatile = 99, + anon_sym_restrict = 100, + anon_sym___restrict__ = 101, + anon_sym__Atomic = 102, + anon_sym__Noreturn = 103, + anon_sym__Nonnull = 104, + anon_sym_nullable = 105, + anon_sym__Complex = 106, + anon_sym__Nullable = 107, + anon_sym__Nullable_result = 108, + anon_sym__Null_unspecified = 109, + anon_sym___autoreleasing = 110, + anon_sym___block = 111, + anon_sym___bridge = 112, + anon_sym___bridge_retained = 113, + anon_sym___bridge_transfer = 114, + anon_sym___complex = 115, + anon_sym___const = 116, + anon_sym___imag = 117, + anon_sym___kindof = 118, + anon_sym___nonnull = 119, + anon_sym___nullable = 120, + anon_sym___ptrauth_objc_class_ro = 121, + anon_sym___ptrauth_objc_isa_pointer = 122, + anon_sym___ptrauth_objc_super_pointer = 123, + anon_sym___real = 124, + anon_sym___strong = 125, + anon_sym___unsafe_unretained = 126, + anon_sym___unused = 127, + anon_sym___weak = 128, + anon_sym_alignas = 129, + anon_sym__Alignas = 130, + sym_primitive_type = 131, + anon_sym_enum = 132, + anon_sym_COLON = 133, + anon_sym_struct = 134, + anon_sym_union = 135, + anon_sym_if = 136, + anon_sym_else = 137, + anon_sym_switch = 138, + anon_sym_case = 139, + anon_sym_default = 140, + anon_sym_while = 141, + anon_sym_do = 142, + anon_sym_for = 143, + anon_sym_in = 144, + anon_sym_return = 145, + anon_sym_break = 146, + anon_sym_continue = 147, + anon_sym_goto = 148, + anon_sym_QMARK = 149, + anon_sym_STAR_EQ = 150, + anon_sym_SLASH_EQ = 151, + anon_sym_PERCENT_EQ = 152, + anon_sym_PLUS_EQ = 153, + anon_sym_DASH_EQ = 154, + anon_sym_LT_LT_EQ = 155, + anon_sym_GT_GT_EQ = 156, + anon_sym_AMP_EQ = 157, + anon_sym_CARET_EQ = 158, + anon_sym_PIPE_EQ = 159, + anon_sym_DASH_DASH = 160, + anon_sym_PLUS_PLUS = 161, + anon_sym_sizeof = 162, + anon_sym___alignof__ = 163, + anon_sym___alignof = 164, + anon_sym__alignof = 165, + anon_sym_alignof = 166, + anon_sym__Alignof = 167, + anon_sym_offsetof = 168, + anon_sym__Generic = 169, + anon_sym_asm = 170, + anon_sym___asm__ = 171, + anon_sym___asm = 172, + anon_sym___volatile__ = 173, + anon_sym_LT2 = 174, + anon_sym_DOT = 175, + anon_sym_DASH_GT = 176, + sym_number_literal = 177, + anon_sym_L_SQUOTE = 178, + anon_sym_u_SQUOTE = 179, + anon_sym_U_SQUOTE = 180, + anon_sym_u8_SQUOTE = 181, + anon_sym_SQUOTE = 182, + aux_sym_char_literal_token1 = 183, + anon_sym_AT = 184, + anon_sym_DQUOTE = 185, + anon_sym_L_DQUOTE = 186, + anon_sym_u_DQUOTE = 187, + anon_sym_U_DQUOTE = 188, + anon_sym_u8_DQUOTE = 189, + aux_sym_string_literal_token1 = 190, + sym_escape_sequence = 191, + sym_system_lib_string = 192, + sym_true = 193, + sym_false = 194, + anon_sym_NULL = 195, + anon_sym_nullptr = 196, + sym_comment = 197, + anon_sym_objc_bridge_related = 198, + anon_sym___typeof__ = 199, + anon_sym___typeof = 200, + anon_sym_typeof = 201, + anon_sym_availability = 202, + sym_version_number = 203, + anon_sym_ios = 204, + anon_sym_tvos = 205, + anon_sym_macos = 206, + anon_sym_macosx = 207, + anon_sym_watchos = 208, + anon_sym_ATimport = 209, + aux_sym_preproc_undef_token1 = 210, + anon_sym_POUND = 211, + anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE = 212, + anon_sym_NS_ROOT_CLASS = 213, + anon_sym_NS_UNAVAILABLE = 214, + anon_sym_NS_REQUIRES_NIL_TERMINATION = 215, + anon_sym_CF_RETURNS_RETAINED = 216, + anon_sym_CF_RETURNS_NOT_RETAINED = 217, + anon_sym_DEPRECATED_ATTRIBUTE = 218, + anon_sym_UI_APPEARANCE_SELECTOR = 219, + anon_sym_UNAVAILABLE_ATTRIBUTE = 220, + anon_sym_CF_FORMAT_FUNCTION = 221, + anon_sym_NS_AVAILABLE = 222, + anon_sym___IOS_AVAILABLE = 223, + anon_sym_NS_AVAILABLE_IOS = 224, + anon_sym_API_AVAILABLE = 225, + anon_sym_API_UNAVAILABLE = 226, + anon_sym_API_DEPRECATED = 227, + anon_sym_NS_ENUM_AVAILABLE_IOS = 228, + anon_sym_NS_DEPRECATED_IOS = 229, + anon_sym_NS_ENUM_DEPRECATED_IOS = 230, + anon_sym_NS_FORMAT_FUNCTION = 231, + anon_sym_DEPRECATED_MSG_ATTRIBUTE = 232, + anon_sym___deprecated_msg = 233, + anon_sym___deprecated_enum_msg = 234, + anon_sym_NS_SWIFT_NAME = 235, + anon_sym_NS_SWIFT_UNAVAILABLE = 236, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS = 237, + anon_sym_NS_CLASS_AVAILABLE_IOS = 238, + anon_sym_NS_CLASS_DEPRECATED_IOS = 239, + anon_sym___OSX_AVAILABLE_STARTING = 240, + anon_sym_ATprotocol = 241, + anon_sym_class = 242, + anon_sym_ATend = 243, + anon_sym_ATinterface = 244, + anon_sym_ATimplementation = 245, + anon_sym___covariant = 246, + anon_sym___contravariant = 247, + anon_sym_ATprivate = 248, + anon_sym_ATprotected = 249, + anon_sym_ATpackage = 250, + anon_sym_ATpublic = 251, + anon_sym_ATcompatibility_alias = 252, + anon_sym_AToptional = 253, + anon_sym_ATrequired = 254, + anon_sym_ATsynthesize = 255, + anon_sym_ATdynamic = 256, + anon_sym_LPARENclass_RPAREN = 257, + anon_sym_ATproperty = 258, + anon_sym_ATtry = 259, + anon_sym___try = 260, + anon_sym_ATcatch = 261, + anon_sym___catch = 262, + anon_sym_ATfinally = 263, + anon_sym___finally = 264, + anon_sym_ATthrow = 265, + anon_sym_ATselector = 266, + aux_sym_selector_expression_token1 = 267, + anon_sym_ATavailable = 268, + anon_sym___builtin_available = 269, + anon_sym_va_arg = 270, + aux_sym_ms_asm_block_token1 = 271, + anon_sym_ATencode = 272, + anon_sym_ATsynchronized = 273, + anon_sym_BOOL = 274, + anon_sym_IMP = 275, + anon_sym_SEL = 276, + anon_sym_Class = 277, + anon_sym_id = 278, + anon_sym_ATdefs = 279, + anon_sym_out = 280, + anon_sym_inout = 281, + anon_sym_bycopy = 282, + anon_sym_byref = 283, + anon_sym_oneway = 284, + anon_sym_COLON2 = 285, + sym_translation_unit = 286, + sym__top_level_item = 287, + sym__block_item = 288, + sym_preproc_include = 289, + sym_preproc_def = 290, + sym_preproc_function_def = 291, + sym_preproc_params = 292, + sym_preproc_call = 293, + sym_preproc_if = 294, + sym_preproc_ifdef = 295, + sym_preproc_else = 296, + sym_preproc_elif = 297, + sym_preproc_elifdef = 298, + sym_preproc_if_in_field_declaration_list = 299, + sym_preproc_ifdef_in_field_declaration_list = 300, + sym_preproc_else_in_field_declaration_list = 301, + sym_preproc_elif_in_field_declaration_list = 302, + sym_preproc_elifdef_in_field_declaration_list = 303, + sym__preproc_expression = 304, + sym_preproc_parenthesized_expression = 305, + sym_preproc_defined = 306, + sym_preproc_unary_expression = 307, + sym_preproc_call_expression = 308, + sym_preproc_argument_list = 309, + sym_preproc_binary_expression = 310, + sym_function_definition = 311, + sym__old_style_function_definition = 312, + sym_declaration = 313, + sym_type_definition = 314, + sym__type_definition_type = 315, + sym__type_definition_declarators = 316, + sym__declaration_modifiers = 317, + sym__declaration_specifiers = 318, + sym_linkage_specification = 319, + sym_attribute_specifier = 320, + sym_attribute = 321, + sym_attribute_declaration = 322, + sym_ms_declspec_modifier = 323, + sym_ms_based_modifier = 324, + sym_ms_call_modifier = 325, + sym_ms_unaligned_ptr_modifier = 326, + sym_ms_pointer_modifier = 327, + sym_declaration_list = 328, + sym__declarator = 329, + sym__field_declarator = 330, + sym__type_declarator = 331, + sym__abstract_declarator = 332, + sym_parenthesized_declarator = 333, + sym_parenthesized_field_declarator = 334, + sym_parenthesized_type_declarator = 335, + sym_abstract_parenthesized_declarator = 336, + sym_attributed_field_declarator = 337, + sym_pointer_declarator = 338, + sym_pointer_field_declarator = 339, + sym_pointer_type_declarator = 340, + sym_abstract_pointer_declarator = 341, + sym_function_declarator = 342, + sym_function_field_declarator = 343, + sym_function_type_declarator = 344, + sym_abstract_function_declarator = 345, + sym__old_style_function_declarator = 346, + sym_array_declarator = 347, + sym_array_field_declarator = 348, + sym_array_type_declarator = 349, + sym_abstract_array_declarator = 350, + sym_init_declarator = 351, + sym_compound_statement = 352, + sym_storage_class_specifier = 353, + sym_type_qualifier = 354, + sym_alignas_qualifier = 355, + sym_type_specifier = 356, + sym_sized_type_specifier = 357, + sym_enum_specifier = 358, + sym_enumerator_list = 359, + sym_struct_specifier = 360, + sym_union_specifier = 361, + sym_field_declaration_list = 362, + sym__field_declaration_list_item = 363, + sym_field_declaration = 364, + sym_bitfield_clause = 365, + sym_enumerator = 366, + sym_variadic_parameter = 367, + sym_parameter_list = 368, + sym__old_style_parameter_list = 369, + sym_parameter_declaration = 370, + sym_attributed_statement = 371, + sym_statement = 372, + sym__top_level_statement = 373, + sym_labeled_statement = 374, + sym__top_level_expression_statement = 375, + sym_expression_statement = 376, + sym_if_statement = 377, + sym_else_clause = 378, + sym_switch_statement = 379, + sym_case_statement = 380, + sym_while_statement = 381, + sym_do_statement = 382, + sym_for_statement = 383, + sym__for_statement_body = 384, + sym_return_statement = 385, + sym_break_statement = 386, + sym_continue_statement = 387, + sym_goto_statement = 388, + sym_expression = 389, + sym__string = 390, + sym_comma_expression = 391, + sym_conditional_expression = 392, + sym_assignment_expression = 393, + sym_pointer_expression = 394, + sym_unary_expression = 395, + sym_binary_expression = 396, + sym_update_expression = 397, + sym_cast_expression = 398, + sym_type_descriptor = 399, + sym_sizeof_expression = 400, + sym_alignof_expression = 401, + sym_offsetof_expression = 402, + sym_generic_expression = 403, + sym_subscript_expression = 404, + sym_call_expression = 405, + sym_gnu_asm_expression = 406, + sym_gnu_asm_qualifier = 407, + sym_gnu_asm_output_operand_list = 408, + sym_gnu_asm_output_operand = 409, + sym_gnu_asm_input_operand_list = 410, + sym_gnu_asm_input_operand = 411, + sym_gnu_asm_clobber_list = 412, + sym_gnu_asm_goto_list = 413, + sym_extension_expression = 414, + sym_argument_list = 415, + sym_field_expression = 416, + sym_compound_literal_expression = 417, + sym_parenthesized_expression = 418, + sym_initializer_list = 419, + sym_initializer_pair = 420, + sym_subscript_designator = 421, + sym_subscript_range_designator = 422, + sym_field_designator = 423, + sym_char_literal = 424, + sym_concatenated_string = 425, + sym_string_literal = 426, + sym_null = 427, + sym__empty_declaration = 428, + sym_macro_type_specifier = 429, + sym_objc_bridge = 430, + sym_typeof_specifier = 431, + sym_availability = 432, + sym_version = 433, + sym_platform = 434, + sym_module_import = 435, + sym_preproc_if_in_implementation_definition = 436, + sym_preproc_else_in_implementation_definition = 437, + sym_preproc_elif_in_implementation_definition = 438, + sym_preproc_if_in_interface_declaration = 439, + sym_preproc_else_in_interface_declaration = 440, + sym_preproc_elif_in_interface_declaration = 441, + sym_preproc_ifdef_in_enumerator = 442, + sym_preproc_else_in_enumerator = 443, + sym_preproc_elif_in_enumerator = 444, + sym_preproc_undef = 445, + sym_preproc_linemarker = 446, + sym_availability_attribute_specifier = 447, + sym_protocol_forward_declaration = 448, + sym_class_declaration = 449, + sym_class_interface = 450, + sym__class_interface_header = 451, + sym__type_params = 452, + sym__class_interface_inheritance = 453, + sym_class_implementation = 454, + sym__class_implementation_header = 455, + sym__class_implementation_inheritance = 456, + sym_protocol_reference_list = 457, + sym_parameterized_arguments = 458, + sym_generic_arguments = 459, + sym_instance_variables = 460, + sym_instance_variable = 461, + sym_visibility_specification = 462, + sym_protocol_declaration = 463, + sym_compatibility_alias_declaration = 464, + sym_qualified_protocol_interface_declaration = 465, + sym_implementation_definition = 466, + sym_property_implementation = 467, + sym_method_definition = 468, + sym_method_type = 469, + sym_keyword_declarator = 470, + sym_property_declaration = 471, + sym_property_attributes_declaration = 472, + sym_property_attribute = 473, + sym_method_declaration = 474, + sym_method_parameter = 475, + sym_c_method_parameter = 476, + sym_struct_declaration = 477, + sym_atomic_declaration = 478, + sym_specifier_qualifier = 479, + sym_struct_declarator = 480, + sym_try_statement = 481, + sym_catch_clause = 482, + sym_finally_clause = 483, + sym_throw_statement = 484, + sym_selector_expression = 485, + sym_available_expression = 486, + sym_range_expression = 487, + sym_block_literal = 488, + sym_message_expression = 489, + sym_va_arg_expression = 490, + sym_ms_asm_block = 491, + sym_encode_expression = 492, + sym_synchronized_statement = 493, + sym_block_pointer_declarator = 494, + sym_block_pointer_field_declarator = 495, + sym_block_pointer_type_declarator = 496, + sym_abstract_block_pointer_declarator = 497, + sym_generic_specifier = 498, + sym_typedefed_specifier = 499, + sym_array_type_specifier = 500, + sym_atdef_field = 501, + sym_protocol_qualifier = 502, + sym_type_name = 503, + sym_at_expression = 504, + sym_dictionary_literal = 505, + sym_dictionary_pair = 506, + sym_array_literal = 507, + sym_method_identifier = 508, + aux_sym_translation_unit_repeat1 = 509, + aux_sym_preproc_params_repeat1 = 510, + aux_sym_preproc_if_repeat1 = 511, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 512, + aux_sym_preproc_argument_list_repeat1 = 513, + aux_sym__old_style_function_definition_repeat1 = 514, + aux_sym_declaration_repeat1 = 515, + aux_sym__type_definition_type_repeat1 = 516, + aux_sym__type_definition_declarators_repeat1 = 517, + aux_sym__declaration_specifiers_repeat1 = 518, + aux_sym_attribute_specifier_repeat1 = 519, + aux_sym_attribute_repeat1 = 520, + aux_sym_attribute_declaration_repeat1 = 521, + aux_sym_declaration_list_repeat1 = 522, + aux_sym_attributed_field_declarator_repeat1 = 523, + aux_sym_pointer_declarator_repeat1 = 524, + aux_sym_function_declarator_repeat1 = 525, + aux_sym_function_field_declarator_repeat1 = 526, + aux_sym_array_declarator_repeat1 = 527, + aux_sym_sized_type_specifier_repeat1 = 528, + aux_sym_enumerator_list_repeat1 = 529, + aux_sym_field_declaration_repeat1 = 530, + aux_sym_parameter_list_repeat1 = 531, + aux_sym__old_style_parameter_list_repeat1 = 532, + aux_sym_case_statement_repeat1 = 533, + aux_sym_generic_expression_repeat1 = 534, + aux_sym_gnu_asm_expression_repeat1 = 535, + aux_sym_gnu_asm_output_operand_list_repeat1 = 536, + aux_sym_gnu_asm_input_operand_list_repeat1 = 537, + aux_sym_gnu_asm_clobber_list_repeat1 = 538, + aux_sym_gnu_asm_goto_list_repeat1 = 539, + aux_sym_argument_list_repeat1 = 540, + aux_sym_argument_list_repeat2 = 541, + aux_sym_initializer_list_repeat1 = 542, + aux_sym_initializer_pair_repeat1 = 543, + aux_sym_char_literal_repeat1 = 544, + aux_sym_concatenated_string_repeat1 = 545, + aux_sym_string_literal_repeat1 = 546, + aux_sym_availability_repeat1 = 547, + aux_sym_version_repeat1 = 548, + aux_sym_module_import_repeat1 = 549, + aux_sym_preproc_if_in_implementation_definition_repeat1 = 550, + aux_sym_preproc_if_in_interface_declaration_repeat1 = 551, + aux_sym_preproc_ifdef_in_enumerator_repeat1 = 552, + aux_sym_availability_attribute_specifier_repeat1 = 553, + aux_sym_protocol_forward_declaration_repeat1 = 554, + aux_sym_class_declaration_repeat1 = 555, + aux_sym_class_interface_repeat1 = 556, + aux_sym_class_implementation_repeat1 = 557, + aux_sym_parameterized_arguments_repeat1 = 558, + aux_sym_parameterized_arguments_repeat2 = 559, + aux_sym_generic_arguments_repeat1 = 560, + aux_sym_instance_variables_repeat1 = 561, + aux_sym_protocol_declaration_repeat1 = 562, + aux_sym_property_implementation_repeat1 = 563, + aux_sym_method_definition_repeat1 = 564, + aux_sym_method_definition_repeat2 = 565, + aux_sym_method_type_repeat1 = 566, + aux_sym_keyword_selector_repeat1 = 567, + aux_sym_property_attributes_declaration_repeat1 = 568, + aux_sym_method_declaration_repeat1 = 569, + aux_sym_method_declaration_repeat2 = 570, + aux_sym_c_method_parameter_repeat1 = 571, + aux_sym_struct_declaration_repeat1 = 572, + aux_sym_struct_declaration_repeat2 = 573, + aux_sym_try_statement_repeat1 = 574, + aux_sym_selector_expression_repeat1 = 575, + aux_sym_selector_expression_repeat2 = 576, + aux_sym_available_expression_repeat1 = 577, + aux_sym_message_expression_repeat1 = 578, + aux_sym_message_expression_repeat2 = 579, + aux_sym_generic_specifier_repeat1 = 580, + aux_sym_type_name_repeat1 = 581, + aux_sym_dictionary_literal_repeat1 = 582, + aux_sym_method_identifier_repeat1 = 583, + aux_sym_method_identifier_repeat2 = 584, + alias_sym_field_identifier = 585, + alias_sym_statement_identifier = 586, + alias_sym_type_identifier = 587, +}; + +static const char * const ts_symbol_names[] = { + [ts_builtin_sym_end] = "end", + [sym_identifier] = "identifier", + [aux_sym_preproc_include_token1] = "#include", + [aux_sym_preproc_include_token2] = "#import", + [aux_sym_preproc_include_token3] = "preproc_include_token3", + [aux_sym_preproc_def_token1] = "#define", + [anon_sym_LPAREN] = "(", + [anon_sym_DOT_DOT_DOT] = "...", + [anon_sym_COMMA] = ",", + [anon_sym_RPAREN] = ")", + [aux_sym_preproc_if_token1] = "#if", + [anon_sym_LF] = "\n", + [aux_sym_preproc_if_token2] = "#endif", + [aux_sym_preproc_ifdef_token1] = "#ifdef", + [aux_sym_preproc_ifdef_token2] = "#ifndef", + [aux_sym_preproc_else_token1] = "#else", + [aux_sym_preproc_elif_token1] = "#elif", + [aux_sym_preproc_elifdef_token1] = "#elifdef", + [aux_sym_preproc_elifdef_token2] = "#elifndef", + [sym_preproc_arg] = "preproc_arg", + [sym_preproc_directive] = "preproc_directive", + [anon_sym_LPAREN2] = "(", + [anon_sym_defined] = "defined", + [anon_sym_BANG] = "!", + [anon_sym_TILDE] = "~", + [anon_sym_DASH] = "-", + [anon_sym_PLUS] = "+", + [anon_sym_STAR] = "*", + [anon_sym_SLASH] = "/", + [anon_sym_PERCENT] = "%", + [anon_sym_PIPE_PIPE] = "||", + [anon_sym_AMP_AMP] = "&&", + [anon_sym_PIPE] = "|", + [anon_sym_CARET] = "^", + [anon_sym_AMP] = "&", + [anon_sym_EQ_EQ] = "==", + [anon_sym_BANG_EQ] = "!=", + [anon_sym_GT] = ">", + [anon_sym_GT_EQ] = ">=", + [anon_sym_LT_EQ] = "<=", + [anon_sym_LT] = "<", + [anon_sym_LT_LT] = "<<", + [anon_sym_GT_GT] = ">>", + [anon_sym_SEMI] = ";", + [anon_sym___extension__] = "__extension__", + [anon_sym_typedef] = "typedef", + [anon_sym_extern] = "extern", + [anon_sym___attribute__] = "__attribute__", + [anon_sym___attribute] = "__attribute", + [anon_sym_noreturn] = "noreturn", + [anon_sym_nothrow] = "nothrow", + [anon_sym_COLON_COLON] = "::", + [anon_sym_LBRACK] = "[", + [anon_sym_RBRACK] = "]", + [anon_sym___declspec] = "__declspec", + [anon_sym___based] = "__based", + [anon_sym___cdecl] = "__cdecl", + [anon_sym___clrcall] = "__clrcall", + [anon_sym___stdcall] = "__stdcall", + [anon_sym___fastcall] = "__fastcall", + [anon_sym___thiscall] = "__thiscall", + [anon_sym___vectorcall] = "__vectorcall", + [sym_ms_restrict_modifier] = "ms_restrict_modifier", + [sym_ms_unsigned_ptr_modifier] = "ms_unsigned_ptr_modifier", + [sym_ms_signed_ptr_modifier] = "ms_signed_ptr_modifier", + [anon_sym__unaligned] = "_unaligned", + [anon_sym___unaligned] = "__unaligned", + [anon_sym_LBRACE] = "{", + [anon_sym_RBRACE] = "}", + [anon_sym_signed] = "signed", + [anon_sym_unsigned] = "unsigned", + [anon_sym_long] = "long", + [anon_sym_short] = "short", + [anon_sym_static] = "static", + [anon_sym_EQ] = "=", + [anon_sym_ATautoreleasepool] = "@autoreleasepool", + [anon_sym_auto] = "auto", + [anon_sym_register] = "register", + [anon_sym_inline] = "inline", + [anon_sym___inline] = "__inline", + [anon_sym___inline__] = "__inline__", + [anon_sym___forceinline] = "__forceinline", + [anon_sym_thread_local] = "thread_local", + [anon_sym___thread] = "__thread", + [anon_sym_CG_EXTERN] = "CG_EXTERN", + [anon_sym_CG_INLINE] = "CG_INLINE", + [anon_sym_FOUNDATION_EXPORT] = "FOUNDATION_EXPORT", + [anon_sym_FOUNDATION_EXTERN] = "FOUNDATION_EXTERN", + [anon_sym_FOUNDATION_STATIC_INLINE] = "FOUNDATION_STATIC_INLINE", + [anon_sym_IBOutlet] = "IBOutlet", + [anon_sym_IBInspectable] = "IBInspectable", + [anon_sym_IB_DESIGNABLE] = "IB_DESIGNABLE", + [anon_sym_NS_INLINE] = "NS_INLINE", + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = "NS_VALID_UNTIL_END_OF_SCOPE", + [anon_sym_OBJC_EXPORT] = "OBJC_EXPORT", + [anon_sym_OBJC_ROOT_CLASS] = "OBJC_ROOT_CLASS", + [anon_sym_UIKIT_EXTERN] = "UIKIT_EXTERN", + [anon_sym_const] = "const", + [anon_sym_constexpr] = "constexpr", + [anon_sym_volatile] = "volatile", + [anon_sym_restrict] = "restrict", + [anon_sym___restrict__] = "__restrict__", + [anon_sym__Atomic] = "_Atomic", + [anon_sym__Noreturn] = "_Noreturn", + [anon_sym__Nonnull] = "_Nonnull", + [anon_sym_nullable] = "nullable", + [anon_sym__Complex] = "_Complex", + [anon_sym__Nullable] = "_Nullable", + [anon_sym__Nullable_result] = "_Nullable_result", + [anon_sym__Null_unspecified] = "_Null_unspecified", + [anon_sym___autoreleasing] = "__autoreleasing", + [anon_sym___block] = "__block", + [anon_sym___bridge] = "__bridge", + [anon_sym___bridge_retained] = "__bridge_retained", + [anon_sym___bridge_transfer] = "__bridge_transfer", + [anon_sym___complex] = "__complex", + [anon_sym___const] = "__const", + [anon_sym___imag] = "__imag", + [anon_sym___kindof] = "__kindof", + [anon_sym___nonnull] = "__nonnull", + [anon_sym___nullable] = "__nullable", + [anon_sym___ptrauth_objc_class_ro] = "__ptrauth_objc_class_ro", + [anon_sym___ptrauth_objc_isa_pointer] = "__ptrauth_objc_isa_pointer", + [anon_sym___ptrauth_objc_super_pointer] = "__ptrauth_objc_super_pointer", + [anon_sym___real] = "__real", + [anon_sym___strong] = "__strong", + [anon_sym___unsafe_unretained] = "__unsafe_unretained", + [anon_sym___unused] = "__unused", + [anon_sym___weak] = "__weak", + [anon_sym_alignas] = "alignas", + [anon_sym__Alignas] = "_Alignas", + [sym_primitive_type] = "primitive_type", + [anon_sym_enum] = "enum", + [anon_sym_COLON] = ":", + [anon_sym_struct] = "struct", + [anon_sym_union] = "union", + [anon_sym_if] = "if", + [anon_sym_else] = "else", + [anon_sym_switch] = "switch", + [anon_sym_case] = "case", + [anon_sym_default] = "default", + [anon_sym_while] = "while", + [anon_sym_do] = "do", + [anon_sym_for] = "for", + [anon_sym_in] = "in", + [anon_sym_return] = "return", + [anon_sym_break] = "break", + [anon_sym_continue] = "continue", + [anon_sym_goto] = "goto", + [anon_sym_QMARK] = "\?", + [anon_sym_STAR_EQ] = "*=", + [anon_sym_SLASH_EQ] = "/=", + [anon_sym_PERCENT_EQ] = "%=", + [anon_sym_PLUS_EQ] = "+=", + [anon_sym_DASH_EQ] = "-=", + [anon_sym_LT_LT_EQ] = "<<=", + [anon_sym_GT_GT_EQ] = ">>=", + [anon_sym_AMP_EQ] = "&=", + [anon_sym_CARET_EQ] = "^=", + [anon_sym_PIPE_EQ] = "|=", + [anon_sym_DASH_DASH] = "--", + [anon_sym_PLUS_PLUS] = "++", + [anon_sym_sizeof] = "sizeof", + [anon_sym___alignof__] = "__alignof__", + [anon_sym___alignof] = "__alignof", + [anon_sym__alignof] = "_alignof", + [anon_sym_alignof] = "alignof", + [anon_sym__Alignof] = "_Alignof", + [anon_sym_offsetof] = "offsetof", + [anon_sym__Generic] = "_Generic", + [anon_sym_asm] = "asm", + [anon_sym___asm__] = "__asm__", + [anon_sym___asm] = "__asm", + [anon_sym___volatile__] = "__volatile__", + [anon_sym_LT2] = "<", + [anon_sym_DOT] = ".", + [anon_sym_DASH_GT] = "->", + [sym_number_literal] = "number_literal", + [anon_sym_L_SQUOTE] = "L'", + [anon_sym_u_SQUOTE] = "u'", + [anon_sym_U_SQUOTE] = "U'", + [anon_sym_u8_SQUOTE] = "u8'", + [anon_sym_SQUOTE] = "'", + [aux_sym_char_literal_token1] = "character", + [anon_sym_AT] = "@", + [anon_sym_DQUOTE] = "\"", + [anon_sym_L_DQUOTE] = "L\"", + [anon_sym_u_DQUOTE] = "u\"", + [anon_sym_U_DQUOTE] = "U\"", + [anon_sym_u8_DQUOTE] = "u8\"", + [aux_sym_string_literal_token1] = "string_content", + [sym_escape_sequence] = "escape_sequence", + [sym_system_lib_string] = "system_lib_string", + [sym_true] = "true", + [sym_false] = "false", + [anon_sym_NULL] = "NULL", + [anon_sym_nullptr] = "nullptr", + [sym_comment] = "comment", + [anon_sym_objc_bridge_related] = "objc_bridge_related", + [anon_sym___typeof__] = "__typeof__", + [anon_sym___typeof] = "__typeof", + [anon_sym_typeof] = "typeof", + [anon_sym_availability] = "availability", + [sym_version_number] = "version_number", + [anon_sym_ios] = "ios", + [anon_sym_tvos] = "tvos", + [anon_sym_macos] = "macos", + [anon_sym_macosx] = "macosx", + [anon_sym_watchos] = "watchos", + [anon_sym_ATimport] = "@import", + [aux_sym_preproc_undef_token1] = "#undef", + [anon_sym_POUND] = "#", + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = "NS_AUTOMATED_REFCOUNT_UNAVAILABLE", + [anon_sym_NS_ROOT_CLASS] = "NS_ROOT_CLASS", + [anon_sym_NS_UNAVAILABLE] = "NS_UNAVAILABLE", + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = "NS_REQUIRES_NIL_TERMINATION", + [anon_sym_CF_RETURNS_RETAINED] = "CF_RETURNS_RETAINED", + [anon_sym_CF_RETURNS_NOT_RETAINED] = "CF_RETURNS_NOT_RETAINED", + [anon_sym_DEPRECATED_ATTRIBUTE] = "DEPRECATED_ATTRIBUTE", + [anon_sym_UI_APPEARANCE_SELECTOR] = "UI_APPEARANCE_SELECTOR", + [anon_sym_UNAVAILABLE_ATTRIBUTE] = "UNAVAILABLE_ATTRIBUTE", + [anon_sym_CF_FORMAT_FUNCTION] = "CF_FORMAT_FUNCTION", + [anon_sym_NS_AVAILABLE] = "NS_AVAILABLE", + [anon_sym___IOS_AVAILABLE] = "__IOS_AVAILABLE", + [anon_sym_NS_AVAILABLE_IOS] = "NS_AVAILABLE_IOS", + [anon_sym_API_AVAILABLE] = "API_AVAILABLE", + [anon_sym_API_UNAVAILABLE] = "API_UNAVAILABLE", + [anon_sym_API_DEPRECATED] = "API_DEPRECATED", + [anon_sym_NS_ENUM_AVAILABLE_IOS] = "NS_ENUM_AVAILABLE_IOS", + [anon_sym_NS_DEPRECATED_IOS] = "NS_DEPRECATED_IOS", + [anon_sym_NS_ENUM_DEPRECATED_IOS] = "NS_ENUM_DEPRECATED_IOS", + [anon_sym_NS_FORMAT_FUNCTION] = "NS_FORMAT_FUNCTION", + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = "DEPRECATED_MSG_ATTRIBUTE", + [anon_sym___deprecated_msg] = "__deprecated_msg", + [anon_sym___deprecated_enum_msg] = "__deprecated_enum_msg", + [anon_sym_NS_SWIFT_NAME] = "NS_SWIFT_NAME", + [anon_sym_NS_SWIFT_UNAVAILABLE] = "NS_SWIFT_UNAVAILABLE", + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = "NS_EXTENSION_UNAVAILABLE_IOS", + [anon_sym_NS_CLASS_AVAILABLE_IOS] = "NS_CLASS_AVAILABLE_IOS", + [anon_sym_NS_CLASS_DEPRECATED_IOS] = "NS_CLASS_DEPRECATED_IOS", + [anon_sym___OSX_AVAILABLE_STARTING] = "__OSX_AVAILABLE_STARTING", + [anon_sym_ATprotocol] = "@protocol", + [anon_sym_class] = "class", + [anon_sym_ATend] = "@end", + [anon_sym_ATinterface] = "@interface", + [anon_sym_ATimplementation] = "@implementation", + [anon_sym___covariant] = "__covariant", + [anon_sym___contravariant] = "__contravariant", + [anon_sym_ATprivate] = "@private", + [anon_sym_ATprotected] = "@protected", + [anon_sym_ATpackage] = "@package", + [anon_sym_ATpublic] = "@public", + [anon_sym_ATcompatibility_alias] = "@compatibility_alias", + [anon_sym_AToptional] = "@optional", + [anon_sym_ATrequired] = "@required", + [anon_sym_ATsynthesize] = "@synthesize", + [anon_sym_ATdynamic] = "@dynamic", + [anon_sym_LPARENclass_RPAREN] = "(class)", + [anon_sym_ATproperty] = "@property", + [anon_sym_ATtry] = "@try", + [anon_sym___try] = "__try", + [anon_sym_ATcatch] = "@catch", + [anon_sym___catch] = "__catch", + [anon_sym_ATfinally] = "@finally", + [anon_sym___finally] = "__finally", + [anon_sym_ATthrow] = "@throw", + [anon_sym_ATselector] = "@selector", + [aux_sym_selector_expression_token1] = "selector_expression_token1", + [anon_sym_ATavailable] = "@available", + [anon_sym___builtin_available] = "__builtin_available", + [anon_sym_va_arg] = "va_arg", + [aux_sym_ms_asm_block_token1] = "ms_asm_block_token1", + [anon_sym_ATencode] = "@encode", + [anon_sym_ATsynchronized] = "@synchronized", + [anon_sym_BOOL] = "BOOL", + [anon_sym_IMP] = "IMP", + [anon_sym_SEL] = "SEL", + [anon_sym_Class] = "Class", + [anon_sym_id] = "id", + [anon_sym_ATdefs] = "@defs", + [anon_sym_out] = "out", + [anon_sym_inout] = "inout", + [anon_sym_bycopy] = "bycopy", + [anon_sym_byref] = "byref", + [anon_sym_oneway] = "oneway", + [anon_sym_COLON2] = ":", + [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", + [sym_preproc_params] = "preproc_params", + [sym_preproc_call] = "preproc_call", + [sym_preproc_if] = "preproc_if", + [sym_preproc_ifdef] = "preproc_ifdef", + [sym_preproc_else] = "preproc_else", + [sym_preproc_elif] = "preproc_elif", + [sym_preproc_elifdef] = "preproc_elifdef", + [sym_preproc_if_in_field_declaration_list] = "preproc_if", + [sym_preproc_ifdef_in_field_declaration_list] = "preproc_ifdef", + [sym_preproc_else_in_field_declaration_list] = "preproc_else", + [sym_preproc_elif_in_field_declaration_list] = "preproc_elif", + [sym_preproc_elifdef_in_field_declaration_list] = "preproc_elifdef", + [sym__preproc_expression] = "_preproc_expression", + [sym_preproc_parenthesized_expression] = "parenthesized_expression", + [sym_preproc_defined] = "preproc_defined", + [sym_preproc_unary_expression] = "unary_expression", + [sym_preproc_call_expression] = "call_expression", + [sym_preproc_argument_list] = "argument_list", + [sym_preproc_binary_expression] = "binary_expression", + [sym_function_definition] = "function_definition", + [sym__old_style_function_definition] = "function_definition", + [sym_declaration] = "declaration", + [sym_type_definition] = "type_definition", + [sym__type_definition_type] = "_type_definition_type", + [sym__type_definition_declarators] = "_type_definition_declarators", + [sym__declaration_modifiers] = "_declaration_modifiers", + [sym__declaration_specifiers] = "_declaration_specifiers", + [sym_linkage_specification] = "linkage_specification", + [sym_attribute_specifier] = "attribute_specifier", + [sym_attribute] = "attribute", + [sym_attribute_declaration] = "attribute_declaration", + [sym_ms_declspec_modifier] = "ms_declspec_modifier", + [sym_ms_based_modifier] = "ms_based_modifier", + [sym_ms_call_modifier] = "ms_call_modifier", + [sym_ms_unaligned_ptr_modifier] = "ms_unaligned_ptr_modifier", + [sym_ms_pointer_modifier] = "ms_pointer_modifier", + [sym_declaration_list] = "declaration_list", + [sym__declarator] = "_declarator", + [sym__field_declarator] = "_field_declarator", + [sym__type_declarator] = "_type_declarator", + [sym__abstract_declarator] = "_abstract_declarator", + [sym_parenthesized_declarator] = "parenthesized_declarator", + [sym_parenthesized_field_declarator] = "parenthesized_declarator", + [sym_parenthesized_type_declarator] = "parenthesized_declarator", + [sym_abstract_parenthesized_declarator] = "abstract_parenthesized_declarator", + [sym_attributed_field_declarator] = "attributed_declarator", + [sym_pointer_declarator] = "pointer_declarator", + [sym_pointer_field_declarator] = "pointer_declarator", + [sym_pointer_type_declarator] = "pointer_declarator", + [sym_abstract_pointer_declarator] = "abstract_pointer_declarator", + [sym_function_declarator] = "function_declarator", + [sym_function_field_declarator] = "function_declarator", + [sym_function_type_declarator] = "function_declarator", + [sym_abstract_function_declarator] = "abstract_function_declarator", + [sym__old_style_function_declarator] = "function_declarator", + [sym_array_declarator] = "array_declarator", + [sym_array_field_declarator] = "array_declarator", + [sym_array_type_declarator] = "array_declarator", + [sym_abstract_array_declarator] = "abstract_array_declarator", + [sym_init_declarator] = "init_declarator", + [sym_compound_statement] = "compound_statement", + [sym_storage_class_specifier] = "storage_class_specifier", + [sym_type_qualifier] = "type_qualifier", + [sym_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", + [sym_struct_specifier] = "struct_specifier", + [sym_union_specifier] = "union_specifier", + [sym_field_declaration_list] = "field_declaration_list", + [sym__field_declaration_list_item] = "_field_declaration_list_item", + [sym_field_declaration] = "field_declaration", + [sym_bitfield_clause] = "bitfield_clause", + [sym_enumerator] = "enumerator", + [sym_variadic_parameter] = "variadic_parameter", + [sym_parameter_list] = "parameter_list", + [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", + [sym_if_statement] = "if_statement", + [sym_else_clause] = "else_clause", + [sym_switch_statement] = "switch_statement", + [sym_case_statement] = "case_statement", + [sym_while_statement] = "while_statement", + [sym_do_statement] = "do_statement", + [sym_for_statement] = "for_statement", + [sym__for_statement_body] = "_for_statement_body", + [sym_return_statement] = "return_statement", + [sym_break_statement] = "break_statement", + [sym_continue_statement] = "continue_statement", + [sym_goto_statement] = "goto_statement", + [sym_expression] = "expression", + [sym__string] = "_string", + [sym_comma_expression] = "comma_expression", + [sym_conditional_expression] = "conditional_expression", + [sym_assignment_expression] = "assignment_expression", + [sym_pointer_expression] = "pointer_expression", + [sym_unary_expression] = "unary_expression", + [sym_binary_expression] = "binary_expression", + [sym_update_expression] = "update_expression", + [sym_cast_expression] = "cast_expression", + [sym_type_descriptor] = "type_descriptor", + [sym_sizeof_expression] = "sizeof_expression", + [sym_alignof_expression] = "alignof_expression", + [sym_offsetof_expression] = "offsetof_expression", + [sym_generic_expression] = "generic_expression", + [sym_subscript_expression] = "subscript_expression", + [sym_call_expression] = "call_expression", + [sym_gnu_asm_expression] = "gnu_asm_expression", + [sym_gnu_asm_qualifier] = "gnu_asm_qualifier", + [sym_gnu_asm_output_operand_list] = "gnu_asm_output_operand_list", + [sym_gnu_asm_output_operand] = "gnu_asm_output_operand", + [sym_gnu_asm_input_operand_list] = "gnu_asm_input_operand_list", + [sym_gnu_asm_input_operand] = "gnu_asm_input_operand", + [sym_gnu_asm_clobber_list] = "gnu_asm_clobber_list", + [sym_gnu_asm_goto_list] = "gnu_asm_goto_list", + [sym_extension_expression] = "extension_expression", + [sym_argument_list] = "argument_list", + [sym_field_expression] = "field_expression", + [sym_compound_literal_expression] = "compound_literal_expression", + [sym_parenthesized_expression] = "parenthesized_expression", + [sym_initializer_list] = "initializer_list", + [sym_initializer_pair] = "initializer_pair", + [sym_subscript_designator] = "subscript_designator", + [sym_subscript_range_designator] = "subscript_range_designator", + [sym_field_designator] = "field_designator", + [sym_char_literal] = "char_literal", + [sym_concatenated_string] = "concatenated_string", + [sym_string_literal] = "string_literal", + [sym_null] = "null", + [sym__empty_declaration] = "_empty_declaration", + [sym_macro_type_specifier] = "macro_type_specifier", + [sym_objc_bridge] = "objc_bridge", + [sym_typeof_specifier] = "typeof_specifier", + [sym_availability] = "availability", + [sym_version] = "version", + [sym_platform] = "platform", + [sym_module_import] = "module_import", + [sym_preproc_if_in_implementation_definition] = "preproc_if", + [sym_preproc_else_in_implementation_definition] = "preproc_else", + [sym_preproc_elif_in_implementation_definition] = "preproc_elif", + [sym_preproc_if_in_interface_declaration] = "preproc_if", + [sym_preproc_else_in_interface_declaration] = "preproc_else", + [sym_preproc_elif_in_interface_declaration] = "preproc_elif", + [sym_preproc_ifdef_in_enumerator] = "preproc_ifdef", + [sym_preproc_else_in_enumerator] = "preproc_else", + [sym_preproc_elif_in_enumerator] = "preproc_elif", + [sym_preproc_undef] = "preproc_undef", + [sym_preproc_linemarker] = "preproc_linemarker", + [sym_availability_attribute_specifier] = "availability_attribute_specifier", + [sym_protocol_forward_declaration] = "protocol_forward_declaration", + [sym_class_declaration] = "class_declaration", + [sym_class_interface] = "class_interface", + [sym__class_interface_header] = "_class_interface_header", + [sym__type_params] = "_type_params", + [sym__class_interface_inheritance] = "_class_interface_inheritance", + [sym_class_implementation] = "class_implementation", + [sym__class_implementation_header] = "_class_implementation_header", + [sym__class_implementation_inheritance] = "_class_implementation_inheritance", + [sym_protocol_reference_list] = "protocol_reference_list", + [sym_parameterized_arguments] = "parameterized_arguments", + [sym_generic_arguments] = "generic_arguments", + [sym_instance_variables] = "instance_variables", + [sym_instance_variable] = "instance_variable", + [sym_visibility_specification] = "visibility_specification", + [sym_protocol_declaration] = "protocol_declaration", + [sym_compatibility_alias_declaration] = "compatibility_alias_declaration", + [sym_qualified_protocol_interface_declaration] = "qualified_protocol_interface_declaration", + [sym_implementation_definition] = "implementation_definition", + [sym_property_implementation] = "property_implementation", + [sym_method_definition] = "method_definition", + [sym_method_type] = "method_type", + [sym_keyword_declarator] = "keyword_declarator", + [sym_property_declaration] = "property_declaration", + [sym_property_attributes_declaration] = "property_attributes_declaration", + [sym_property_attribute] = "property_attribute", + [sym_method_declaration] = "method_declaration", + [sym_method_parameter] = "method_parameter", + [sym_c_method_parameter] = "method_parameter", + [sym_struct_declaration] = "struct_declaration", + [sym_atomic_declaration] = "atomic_declaration", + [sym_specifier_qualifier] = "specifier_qualifier", + [sym_struct_declarator] = "struct_declarator", + [sym_try_statement] = "try_statement", + [sym_catch_clause] = "catch_clause", + [sym_finally_clause] = "finally_clause", + [sym_throw_statement] = "throw_statement", + [sym_selector_expression] = "selector_expression", + [sym_available_expression] = "available_expression", + [sym_range_expression] = "range_expression", + [sym_block_literal] = "block_literal", + [sym_message_expression] = "message_expression", + [sym_va_arg_expression] = "va_arg_expression", + [sym_ms_asm_block] = "ms_asm_block", + [sym_encode_expression] = "encode_expression", + [sym_synchronized_statement] = "synchronized_statement", + [sym_block_pointer_declarator] = "block_pointer_declarator", + [sym_block_pointer_field_declarator] = "block_pointer_declarator", + [sym_block_pointer_type_declarator] = "block_pointer_declarator", + [sym_abstract_block_pointer_declarator] = "abstract_block_pointer_declarator", + [sym_generic_specifier] = "generic_specifier", + [sym_typedefed_specifier] = "typedefed_specifier", + [sym_array_type_specifier] = "array_type_specifier", + [sym_atdef_field] = "atdef_field", + [sym_protocol_qualifier] = "protocol_qualifier", + [sym_type_name] = "type_name", + [sym_at_expression] = "at_expression", + [sym_dictionary_literal] = "dictionary_literal", + [sym_dictionary_pair] = "dictionary_pair", + [sym_array_literal] = "array_literal", + [sym_method_identifier] = "method_identifier", + [aux_sym_translation_unit_repeat1] = "translation_unit_repeat1", + [aux_sym_preproc_params_repeat1] = "preproc_params_repeat1", + [aux_sym_preproc_if_repeat1] = "preproc_if_repeat1", + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = "preproc_if_in_field_declaration_list_repeat1", + [aux_sym_preproc_argument_list_repeat1] = "preproc_argument_list_repeat1", + [aux_sym__old_style_function_definition_repeat1] = "_old_style_function_definition_repeat1", + [aux_sym_declaration_repeat1] = "declaration_repeat1", + [aux_sym__type_definition_type_repeat1] = "_type_definition_type_repeat1", + [aux_sym__type_definition_declarators_repeat1] = "_type_definition_declarators_repeat1", + [aux_sym__declaration_specifiers_repeat1] = "_declaration_specifiers_repeat1", + [aux_sym_attribute_specifier_repeat1] = "attribute_specifier_repeat1", + [aux_sym_attribute_repeat1] = "attribute_repeat1", + [aux_sym_attribute_declaration_repeat1] = "attribute_declaration_repeat1", + [aux_sym_declaration_list_repeat1] = "declaration_list_repeat1", + [aux_sym_attributed_field_declarator_repeat1] = "attributed_field_declarator_repeat1", + [aux_sym_pointer_declarator_repeat1] = "pointer_declarator_repeat1", + [aux_sym_function_declarator_repeat1] = "function_declarator_repeat1", + [aux_sym_function_field_declarator_repeat1] = "function_field_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_repeat1] = "field_declaration_repeat1", + [aux_sym_parameter_list_repeat1] = "parameter_list_repeat1", + [aux_sym__old_style_parameter_list_repeat1] = "_old_style_parameter_list_repeat1", + [aux_sym_case_statement_repeat1] = "case_statement_repeat1", + [aux_sym_generic_expression_repeat1] = "generic_expression_repeat1", + [aux_sym_gnu_asm_expression_repeat1] = "gnu_asm_expression_repeat1", + [aux_sym_gnu_asm_output_operand_list_repeat1] = "gnu_asm_output_operand_list_repeat1", + [aux_sym_gnu_asm_input_operand_list_repeat1] = "gnu_asm_input_operand_list_repeat1", + [aux_sym_gnu_asm_clobber_list_repeat1] = "gnu_asm_clobber_list_repeat1", + [aux_sym_gnu_asm_goto_list_repeat1] = "gnu_asm_goto_list_repeat1", + [aux_sym_argument_list_repeat1] = "argument_list_repeat1", + [aux_sym_argument_list_repeat2] = "argument_list_repeat2", + [aux_sym_initializer_list_repeat1] = "initializer_list_repeat1", + [aux_sym_initializer_pair_repeat1] = "initializer_pair_repeat1", + [aux_sym_char_literal_repeat1] = "char_literal_repeat1", + [aux_sym_concatenated_string_repeat1] = "concatenated_string_repeat1", + [aux_sym_string_literal_repeat1] = "string_literal_repeat1", + [aux_sym_availability_repeat1] = "availability_repeat1", + [aux_sym_version_repeat1] = "version_repeat1", + [aux_sym_module_import_repeat1] = "module_import_repeat1", + [aux_sym_preproc_if_in_implementation_definition_repeat1] = "preproc_if_in_implementation_definition_repeat1", + [aux_sym_preproc_if_in_interface_declaration_repeat1] = "preproc_if_in_interface_declaration_repeat1", + [aux_sym_preproc_ifdef_in_enumerator_repeat1] = "preproc_ifdef_in_enumerator_repeat1", + [aux_sym_availability_attribute_specifier_repeat1] = "availability_attribute_specifier_repeat1", + [aux_sym_protocol_forward_declaration_repeat1] = "protocol_forward_declaration_repeat1", + [aux_sym_class_declaration_repeat1] = "class_declaration_repeat1", + [aux_sym_class_interface_repeat1] = "class_interface_repeat1", + [aux_sym_class_implementation_repeat1] = "class_implementation_repeat1", + [aux_sym_parameterized_arguments_repeat1] = "parameterized_arguments_repeat1", + [aux_sym_parameterized_arguments_repeat2] = "parameterized_arguments_repeat2", + [aux_sym_generic_arguments_repeat1] = "generic_arguments_repeat1", + [aux_sym_instance_variables_repeat1] = "instance_variables_repeat1", + [aux_sym_protocol_declaration_repeat1] = "protocol_declaration_repeat1", + [aux_sym_property_implementation_repeat1] = "property_implementation_repeat1", + [aux_sym_method_definition_repeat1] = "method_definition_repeat1", + [aux_sym_method_definition_repeat2] = "method_definition_repeat2", + [aux_sym_method_type_repeat1] = "method_type_repeat1", + [aux_sym_keyword_selector_repeat1] = "keyword_selector_repeat1", + [aux_sym_property_attributes_declaration_repeat1] = "property_attributes_declaration_repeat1", + [aux_sym_method_declaration_repeat1] = "method_declaration_repeat1", + [aux_sym_method_declaration_repeat2] = "method_declaration_repeat2", + [aux_sym_c_method_parameter_repeat1] = "c_method_parameter_repeat1", + [aux_sym_struct_declaration_repeat1] = "struct_declaration_repeat1", + [aux_sym_struct_declaration_repeat2] = "struct_declaration_repeat2", + [aux_sym_try_statement_repeat1] = "try_statement_repeat1", + [aux_sym_selector_expression_repeat1] = "selector_expression_repeat1", + [aux_sym_selector_expression_repeat2] = "selector_expression_repeat2", + [aux_sym_available_expression_repeat1] = "available_expression_repeat1", + [aux_sym_message_expression_repeat1] = "message_expression_repeat1", + [aux_sym_message_expression_repeat2] = "message_expression_repeat2", + [aux_sym_generic_specifier_repeat1] = "generic_specifier_repeat1", + [aux_sym_type_name_repeat1] = "type_name_repeat1", + [aux_sym_dictionary_literal_repeat1] = "dictionary_literal_repeat1", + [aux_sym_method_identifier_repeat1] = "method_identifier_repeat1", + [aux_sym_method_identifier_repeat2] = "method_identifier_repeat2", + [alias_sym_field_identifier] = "field_identifier", + [alias_sym_statement_identifier] = "statement_identifier", + [alias_sym_type_identifier] = "type_identifier", +}; + +static const TSSymbol ts_symbol_map[] = { + [ts_builtin_sym_end] = ts_builtin_sym_end, + [sym_identifier] = sym_identifier, + [aux_sym_preproc_include_token1] = aux_sym_preproc_include_token1, + [aux_sym_preproc_include_token2] = aux_sym_preproc_include_token2, + [aux_sym_preproc_include_token3] = aux_sym_preproc_include_token3, + [aux_sym_preproc_def_token1] = aux_sym_preproc_def_token1, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_DOT_DOT_DOT] = anon_sym_DOT_DOT_DOT, + [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_RPAREN] = anon_sym_RPAREN, + [aux_sym_preproc_if_token1] = aux_sym_preproc_if_token1, + [anon_sym_LF] = anon_sym_LF, + [aux_sym_preproc_if_token2] = aux_sym_preproc_if_token2, + [aux_sym_preproc_ifdef_token1] = aux_sym_preproc_ifdef_token1, + [aux_sym_preproc_ifdef_token2] = aux_sym_preproc_ifdef_token2, + [aux_sym_preproc_else_token1] = aux_sym_preproc_else_token1, + [aux_sym_preproc_elif_token1] = aux_sym_preproc_elif_token1, + [aux_sym_preproc_elifdef_token1] = aux_sym_preproc_elifdef_token1, + [aux_sym_preproc_elifdef_token2] = aux_sym_preproc_elifdef_token2, + [sym_preproc_arg] = sym_preproc_arg, + [sym_preproc_directive] = sym_preproc_directive, + [anon_sym_LPAREN2] = anon_sym_LPAREN, + [anon_sym_defined] = anon_sym_defined, + [anon_sym_BANG] = anon_sym_BANG, + [anon_sym_TILDE] = anon_sym_TILDE, + [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_PLUS] = anon_sym_PLUS, + [anon_sym_STAR] = anon_sym_STAR, + [anon_sym_SLASH] = anon_sym_SLASH, + [anon_sym_PERCENT] = anon_sym_PERCENT, + [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, + [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, + [anon_sym_PIPE] = anon_sym_PIPE, + [anon_sym_CARET] = anon_sym_CARET, + [anon_sym_AMP] = anon_sym_AMP, + [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, + [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, + [anon_sym_GT] = anon_sym_GT, + [anon_sym_GT_EQ] = anon_sym_GT_EQ, + [anon_sym_LT_EQ] = anon_sym_LT_EQ, + [anon_sym_LT] = anon_sym_LT, + [anon_sym_LT_LT] = anon_sym_LT_LT, + [anon_sym_GT_GT] = anon_sym_GT_GT, + [anon_sym_SEMI] = anon_sym_SEMI, + [anon_sym___extension__] = anon_sym___extension__, + [anon_sym_typedef] = anon_sym_typedef, + [anon_sym_extern] = anon_sym_extern, + [anon_sym___attribute__] = anon_sym___attribute__, + [anon_sym___attribute] = anon_sym___attribute, + [anon_sym_noreturn] = anon_sym_noreturn, + [anon_sym_nothrow] = anon_sym_nothrow, + [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, + [anon_sym_LBRACK] = anon_sym_LBRACK, + [anon_sym_RBRACK] = anon_sym_RBRACK, + [anon_sym___declspec] = anon_sym___declspec, + [anon_sym___based] = anon_sym___based, + [anon_sym___cdecl] = anon_sym___cdecl, + [anon_sym___clrcall] = anon_sym___clrcall, + [anon_sym___stdcall] = anon_sym___stdcall, + [anon_sym___fastcall] = anon_sym___fastcall, + [anon_sym___thiscall] = anon_sym___thiscall, + [anon_sym___vectorcall] = anon_sym___vectorcall, + [sym_ms_restrict_modifier] = sym_ms_restrict_modifier, + [sym_ms_unsigned_ptr_modifier] = sym_ms_unsigned_ptr_modifier, + [sym_ms_signed_ptr_modifier] = sym_ms_signed_ptr_modifier, + [anon_sym__unaligned] = anon_sym__unaligned, + [anon_sym___unaligned] = anon_sym___unaligned, + [anon_sym_LBRACE] = anon_sym_LBRACE, + [anon_sym_RBRACE] = anon_sym_RBRACE, + [anon_sym_signed] = anon_sym_signed, + [anon_sym_unsigned] = anon_sym_unsigned, + [anon_sym_long] = anon_sym_long, + [anon_sym_short] = anon_sym_short, + [anon_sym_static] = anon_sym_static, + [anon_sym_EQ] = anon_sym_EQ, + [anon_sym_ATautoreleasepool] = anon_sym_ATautoreleasepool, + [anon_sym_auto] = anon_sym_auto, + [anon_sym_register] = anon_sym_register, + [anon_sym_inline] = anon_sym_inline, + [anon_sym___inline] = anon_sym___inline, + [anon_sym___inline__] = anon_sym___inline__, + [anon_sym___forceinline] = anon_sym___forceinline, + [anon_sym_thread_local] = anon_sym_thread_local, + [anon_sym___thread] = anon_sym___thread, + [anon_sym_CG_EXTERN] = anon_sym_CG_EXTERN, + [anon_sym_CG_INLINE] = anon_sym_CG_INLINE, + [anon_sym_FOUNDATION_EXPORT] = anon_sym_FOUNDATION_EXPORT, + [anon_sym_FOUNDATION_EXTERN] = anon_sym_FOUNDATION_EXTERN, + [anon_sym_FOUNDATION_STATIC_INLINE] = anon_sym_FOUNDATION_STATIC_INLINE, + [anon_sym_IBOutlet] = anon_sym_IBOutlet, + [anon_sym_IBInspectable] = anon_sym_IBInspectable, + [anon_sym_IB_DESIGNABLE] = anon_sym_IB_DESIGNABLE, + [anon_sym_NS_INLINE] = anon_sym_NS_INLINE, + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [anon_sym_OBJC_EXPORT] = anon_sym_OBJC_EXPORT, + [anon_sym_OBJC_ROOT_CLASS] = anon_sym_OBJC_ROOT_CLASS, + [anon_sym_UIKIT_EXTERN] = anon_sym_UIKIT_EXTERN, + [anon_sym_const] = anon_sym_const, + [anon_sym_constexpr] = anon_sym_constexpr, + [anon_sym_volatile] = anon_sym_volatile, + [anon_sym_restrict] = anon_sym_restrict, + [anon_sym___restrict__] = anon_sym___restrict__, + [anon_sym__Atomic] = anon_sym__Atomic, + [anon_sym__Noreturn] = anon_sym__Noreturn, + [anon_sym__Nonnull] = anon_sym__Nonnull, + [anon_sym_nullable] = anon_sym_nullable, + [anon_sym__Complex] = anon_sym__Complex, + [anon_sym__Nullable] = anon_sym__Nullable, + [anon_sym__Nullable_result] = anon_sym__Nullable_result, + [anon_sym__Null_unspecified] = anon_sym__Null_unspecified, + [anon_sym___autoreleasing] = anon_sym___autoreleasing, + [anon_sym___block] = anon_sym___block, + [anon_sym___bridge] = anon_sym___bridge, + [anon_sym___bridge_retained] = anon_sym___bridge_retained, + [anon_sym___bridge_transfer] = anon_sym___bridge_transfer, + [anon_sym___complex] = anon_sym___complex, + [anon_sym___const] = anon_sym___const, + [anon_sym___imag] = anon_sym___imag, + [anon_sym___kindof] = anon_sym___kindof, + [anon_sym___nonnull] = anon_sym___nonnull, + [anon_sym___nullable] = anon_sym___nullable, + [anon_sym___ptrauth_objc_class_ro] = anon_sym___ptrauth_objc_class_ro, + [anon_sym___ptrauth_objc_isa_pointer] = anon_sym___ptrauth_objc_isa_pointer, + [anon_sym___ptrauth_objc_super_pointer] = anon_sym___ptrauth_objc_super_pointer, + [anon_sym___real] = anon_sym___real, + [anon_sym___strong] = anon_sym___strong, + [anon_sym___unsafe_unretained] = anon_sym___unsafe_unretained, + [anon_sym___unused] = anon_sym___unused, + [anon_sym___weak] = anon_sym___weak, + [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, + [anon_sym_struct] = anon_sym_struct, + [anon_sym_union] = anon_sym_union, + [anon_sym_if] = anon_sym_if, + [anon_sym_else] = anon_sym_else, + [anon_sym_switch] = anon_sym_switch, + [anon_sym_case] = anon_sym_case, + [anon_sym_default] = anon_sym_default, + [anon_sym_while] = anon_sym_while, + [anon_sym_do] = anon_sym_do, + [anon_sym_for] = anon_sym_for, + [anon_sym_in] = anon_sym_in, + [anon_sym_return] = anon_sym_return, + [anon_sym_break] = anon_sym_break, + [anon_sym_continue] = anon_sym_continue, + [anon_sym_goto] = anon_sym_goto, + [anon_sym_QMARK] = anon_sym_QMARK, + [anon_sym_STAR_EQ] = anon_sym_STAR_EQ, + [anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ, + [anon_sym_PERCENT_EQ] = anon_sym_PERCENT_EQ, + [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, + [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, + [anon_sym_LT_LT_EQ] = anon_sym_LT_LT_EQ, + [anon_sym_GT_GT_EQ] = anon_sym_GT_GT_EQ, + [anon_sym_AMP_EQ] = anon_sym_AMP_EQ, + [anon_sym_CARET_EQ] = anon_sym_CARET_EQ, + [anon_sym_PIPE_EQ] = anon_sym_PIPE_EQ, + [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, + [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, + [anon_sym_sizeof] = anon_sym_sizeof, + [anon_sym___alignof__] = anon_sym___alignof__, + [anon_sym___alignof] = anon_sym___alignof, + [anon_sym__alignof] = anon_sym__alignof, + [anon_sym_alignof] = anon_sym_alignof, + [anon_sym__Alignof] = anon_sym__Alignof, + [anon_sym_offsetof] = anon_sym_offsetof, + [anon_sym__Generic] = anon_sym__Generic, + [anon_sym_asm] = anon_sym_asm, + [anon_sym___asm__] = anon_sym___asm__, + [anon_sym___asm] = anon_sym___asm, + [anon_sym___volatile__] = anon_sym___volatile__, + [anon_sym_LT2] = anon_sym_LT, + [anon_sym_DOT] = anon_sym_DOT, + [anon_sym_DASH_GT] = anon_sym_DASH_GT, + [sym_number_literal] = sym_number_literal, + [anon_sym_L_SQUOTE] = anon_sym_L_SQUOTE, + [anon_sym_u_SQUOTE] = anon_sym_u_SQUOTE, + [anon_sym_U_SQUOTE] = anon_sym_U_SQUOTE, + [anon_sym_u8_SQUOTE] = anon_sym_u8_SQUOTE, + [anon_sym_SQUOTE] = anon_sym_SQUOTE, + [aux_sym_char_literal_token1] = aux_sym_char_literal_token1, + [anon_sym_AT] = anon_sym_AT, + [anon_sym_DQUOTE] = anon_sym_DQUOTE, + [anon_sym_L_DQUOTE] = anon_sym_L_DQUOTE, + [anon_sym_u_DQUOTE] = anon_sym_u_DQUOTE, + [anon_sym_U_DQUOTE] = anon_sym_U_DQUOTE, + [anon_sym_u8_DQUOTE] = anon_sym_u8_DQUOTE, + [aux_sym_string_literal_token1] = aux_sym_string_literal_token1, + [sym_escape_sequence] = sym_escape_sequence, + [sym_system_lib_string] = sym_system_lib_string, + [sym_true] = sym_true, + [sym_false] = sym_false, + [anon_sym_NULL] = anon_sym_NULL, + [anon_sym_nullptr] = anon_sym_nullptr, + [sym_comment] = sym_comment, + [anon_sym_objc_bridge_related] = anon_sym_objc_bridge_related, + [anon_sym___typeof__] = anon_sym___typeof__, + [anon_sym___typeof] = anon_sym___typeof, + [anon_sym_typeof] = anon_sym_typeof, + [anon_sym_availability] = anon_sym_availability, + [sym_version_number] = sym_version_number, + [anon_sym_ios] = anon_sym_ios, + [anon_sym_tvos] = anon_sym_tvos, + [anon_sym_macos] = anon_sym_macos, + [anon_sym_macosx] = anon_sym_macosx, + [anon_sym_watchos] = anon_sym_watchos, + [anon_sym_ATimport] = anon_sym_ATimport, + [aux_sym_preproc_undef_token1] = aux_sym_preproc_undef_token1, + [anon_sym_POUND] = anon_sym_POUND, + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE, + [anon_sym_NS_ROOT_CLASS] = anon_sym_NS_ROOT_CLASS, + [anon_sym_NS_UNAVAILABLE] = anon_sym_NS_UNAVAILABLE, + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = anon_sym_NS_REQUIRES_NIL_TERMINATION, + [anon_sym_CF_RETURNS_RETAINED] = anon_sym_CF_RETURNS_RETAINED, + [anon_sym_CF_RETURNS_NOT_RETAINED] = anon_sym_CF_RETURNS_NOT_RETAINED, + [anon_sym_DEPRECATED_ATTRIBUTE] = anon_sym_DEPRECATED_ATTRIBUTE, + [anon_sym_UI_APPEARANCE_SELECTOR] = anon_sym_UI_APPEARANCE_SELECTOR, + [anon_sym_UNAVAILABLE_ATTRIBUTE] = anon_sym_UNAVAILABLE_ATTRIBUTE, + [anon_sym_CF_FORMAT_FUNCTION] = anon_sym_CF_FORMAT_FUNCTION, + [anon_sym_NS_AVAILABLE] = anon_sym_NS_AVAILABLE, + [anon_sym___IOS_AVAILABLE] = anon_sym___IOS_AVAILABLE, + [anon_sym_NS_AVAILABLE_IOS] = anon_sym_NS_AVAILABLE_IOS, + [anon_sym_API_AVAILABLE] = anon_sym_API_AVAILABLE, + [anon_sym_API_UNAVAILABLE] = anon_sym_API_UNAVAILABLE, + [anon_sym_API_DEPRECATED] = anon_sym_API_DEPRECATED, + [anon_sym_NS_ENUM_AVAILABLE_IOS] = anon_sym_NS_ENUM_AVAILABLE_IOS, + [anon_sym_NS_DEPRECATED_IOS] = anon_sym_NS_DEPRECATED_IOS, + [anon_sym_NS_ENUM_DEPRECATED_IOS] = anon_sym_NS_ENUM_DEPRECATED_IOS, + [anon_sym_NS_FORMAT_FUNCTION] = anon_sym_NS_FORMAT_FUNCTION, + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = anon_sym_DEPRECATED_MSG_ATTRIBUTE, + [anon_sym___deprecated_msg] = anon_sym___deprecated_msg, + [anon_sym___deprecated_enum_msg] = anon_sym___deprecated_enum_msg, + [anon_sym_NS_SWIFT_NAME] = anon_sym_NS_SWIFT_NAME, + [anon_sym_NS_SWIFT_UNAVAILABLE] = anon_sym_NS_SWIFT_UNAVAILABLE, + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + [anon_sym_NS_CLASS_AVAILABLE_IOS] = anon_sym_NS_CLASS_AVAILABLE_IOS, + [anon_sym_NS_CLASS_DEPRECATED_IOS] = anon_sym_NS_CLASS_DEPRECATED_IOS, + [anon_sym___OSX_AVAILABLE_STARTING] = anon_sym___OSX_AVAILABLE_STARTING, + [anon_sym_ATprotocol] = anon_sym_ATprotocol, + [anon_sym_class] = anon_sym_class, + [anon_sym_ATend] = anon_sym_ATend, + [anon_sym_ATinterface] = anon_sym_ATinterface, + [anon_sym_ATimplementation] = anon_sym_ATimplementation, + [anon_sym___covariant] = anon_sym___covariant, + [anon_sym___contravariant] = anon_sym___contravariant, + [anon_sym_ATprivate] = anon_sym_ATprivate, + [anon_sym_ATprotected] = anon_sym_ATprotected, + [anon_sym_ATpackage] = anon_sym_ATpackage, + [anon_sym_ATpublic] = anon_sym_ATpublic, + [anon_sym_ATcompatibility_alias] = anon_sym_ATcompatibility_alias, + [anon_sym_AToptional] = anon_sym_AToptional, + [anon_sym_ATrequired] = anon_sym_ATrequired, + [anon_sym_ATsynthesize] = anon_sym_ATsynthesize, + [anon_sym_ATdynamic] = anon_sym_ATdynamic, + [anon_sym_LPARENclass_RPAREN] = anon_sym_LPARENclass_RPAREN, + [anon_sym_ATproperty] = anon_sym_ATproperty, + [anon_sym_ATtry] = anon_sym_ATtry, + [anon_sym___try] = anon_sym___try, + [anon_sym_ATcatch] = anon_sym_ATcatch, + [anon_sym___catch] = anon_sym___catch, + [anon_sym_ATfinally] = anon_sym_ATfinally, + [anon_sym___finally] = anon_sym___finally, + [anon_sym_ATthrow] = anon_sym_ATthrow, + [anon_sym_ATselector] = anon_sym_ATselector, + [aux_sym_selector_expression_token1] = aux_sym_selector_expression_token1, + [anon_sym_ATavailable] = anon_sym_ATavailable, + [anon_sym___builtin_available] = anon_sym___builtin_available, + [anon_sym_va_arg] = anon_sym_va_arg, + [aux_sym_ms_asm_block_token1] = aux_sym_ms_asm_block_token1, + [anon_sym_ATencode] = anon_sym_ATencode, + [anon_sym_ATsynchronized] = anon_sym_ATsynchronized, + [anon_sym_BOOL] = anon_sym_BOOL, + [anon_sym_IMP] = anon_sym_IMP, + [anon_sym_SEL] = anon_sym_SEL, + [anon_sym_Class] = anon_sym_Class, + [anon_sym_id] = anon_sym_id, + [anon_sym_ATdefs] = anon_sym_ATdefs, + [anon_sym_out] = anon_sym_out, + [anon_sym_inout] = anon_sym_inout, + [anon_sym_bycopy] = anon_sym_bycopy, + [anon_sym_byref] = anon_sym_byref, + [anon_sym_oneway] = anon_sym_oneway, + [anon_sym_COLON2] = anon_sym_COLON, + [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, + [sym_preproc_params] = sym_preproc_params, + [sym_preproc_call] = sym_preproc_call, + [sym_preproc_if] = sym_preproc_if, + [sym_preproc_ifdef] = sym_preproc_ifdef, + [sym_preproc_else] = sym_preproc_else, + [sym_preproc_elif] = sym_preproc_elif, + [sym_preproc_elifdef] = sym_preproc_elifdef, + [sym_preproc_if_in_field_declaration_list] = sym_preproc_if, + [sym_preproc_ifdef_in_field_declaration_list] = sym_preproc_ifdef, + [sym_preproc_else_in_field_declaration_list] = sym_preproc_else, + [sym_preproc_elif_in_field_declaration_list] = sym_preproc_elif, + [sym_preproc_elifdef_in_field_declaration_list] = sym_preproc_elifdef, + [sym__preproc_expression] = sym__preproc_expression, + [sym_preproc_parenthesized_expression] = sym_parenthesized_expression, + [sym_preproc_defined] = sym_preproc_defined, + [sym_preproc_unary_expression] = sym_unary_expression, + [sym_preproc_call_expression] = sym_call_expression, + [sym_preproc_argument_list] = sym_argument_list, + [sym_preproc_binary_expression] = sym_binary_expression, + [sym_function_definition] = sym_function_definition, + [sym__old_style_function_definition] = sym_function_definition, + [sym_declaration] = sym_declaration, + [sym_type_definition] = sym_type_definition, + [sym__type_definition_type] = sym__type_definition_type, + [sym__type_definition_declarators] = sym__type_definition_declarators, + [sym__declaration_modifiers] = sym__declaration_modifiers, + [sym__declaration_specifiers] = sym__declaration_specifiers, + [sym_linkage_specification] = sym_linkage_specification, + [sym_attribute_specifier] = sym_attribute_specifier, + [sym_attribute] = sym_attribute, + [sym_attribute_declaration] = sym_attribute_declaration, + [sym_ms_declspec_modifier] = sym_ms_declspec_modifier, + [sym_ms_based_modifier] = sym_ms_based_modifier, + [sym_ms_call_modifier] = sym_ms_call_modifier, + [sym_ms_unaligned_ptr_modifier] = sym_ms_unaligned_ptr_modifier, + [sym_ms_pointer_modifier] = sym_ms_pointer_modifier, + [sym_declaration_list] = sym_declaration_list, + [sym__declarator] = sym__declarator, + [sym__field_declarator] = sym__field_declarator, + [sym__type_declarator] = sym__type_declarator, + [sym__abstract_declarator] = sym__abstract_declarator, + [sym_parenthesized_declarator] = sym_parenthesized_declarator, + [sym_parenthesized_field_declarator] = sym_parenthesized_declarator, + [sym_parenthesized_type_declarator] = sym_parenthesized_declarator, + [sym_abstract_parenthesized_declarator] = sym_abstract_parenthesized_declarator, + [sym_attributed_field_declarator] = sym_attributed_field_declarator, + [sym_pointer_declarator] = sym_pointer_declarator, + [sym_pointer_field_declarator] = sym_pointer_declarator, + [sym_pointer_type_declarator] = sym_pointer_declarator, + [sym_abstract_pointer_declarator] = sym_abstract_pointer_declarator, + [sym_function_declarator] = sym_function_declarator, + [sym_function_field_declarator] = sym_function_declarator, + [sym_function_type_declarator] = sym_function_declarator, + [sym_abstract_function_declarator] = sym_abstract_function_declarator, + [sym__old_style_function_declarator] = sym_function_declarator, + [sym_array_declarator] = sym_array_declarator, + [sym_array_field_declarator] = sym_array_declarator, + [sym_array_type_declarator] = sym_array_declarator, + [sym_abstract_array_declarator] = sym_abstract_array_declarator, + [sym_init_declarator] = sym_init_declarator, + [sym_compound_statement] = sym_compound_statement, + [sym_storage_class_specifier] = sym_storage_class_specifier, + [sym_type_qualifier] = sym_type_qualifier, + [sym_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, + [sym_struct_specifier] = sym_struct_specifier, + [sym_union_specifier] = sym_union_specifier, + [sym_field_declaration_list] = sym_field_declaration_list, + [sym__field_declaration_list_item] = sym__field_declaration_list_item, + [sym_field_declaration] = sym_field_declaration, + [sym_bitfield_clause] = sym_bitfield_clause, + [sym_enumerator] = sym_enumerator, + [sym_variadic_parameter] = sym_variadic_parameter, + [sym_parameter_list] = sym_parameter_list, + [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, + [sym_if_statement] = sym_if_statement, + [sym_else_clause] = sym_else_clause, + [sym_switch_statement] = sym_switch_statement, + [sym_case_statement] = sym_case_statement, + [sym_while_statement] = sym_while_statement, + [sym_do_statement] = sym_do_statement, + [sym_for_statement] = sym_for_statement, + [sym__for_statement_body] = sym__for_statement_body, + [sym_return_statement] = sym_return_statement, + [sym_break_statement] = sym_break_statement, + [sym_continue_statement] = sym_continue_statement, + [sym_goto_statement] = sym_goto_statement, + [sym_expression] = sym_expression, + [sym__string] = sym__string, + [sym_comma_expression] = sym_comma_expression, + [sym_conditional_expression] = sym_conditional_expression, + [sym_assignment_expression] = sym_assignment_expression, + [sym_pointer_expression] = sym_pointer_expression, + [sym_unary_expression] = sym_unary_expression, + [sym_binary_expression] = sym_binary_expression, + [sym_update_expression] = sym_update_expression, + [sym_cast_expression] = sym_cast_expression, + [sym_type_descriptor] = sym_type_descriptor, + [sym_sizeof_expression] = sym_sizeof_expression, + [sym_alignof_expression] = sym_alignof_expression, + [sym_offsetof_expression] = sym_offsetof_expression, + [sym_generic_expression] = sym_generic_expression, + [sym_subscript_expression] = sym_subscript_expression, + [sym_call_expression] = sym_call_expression, + [sym_gnu_asm_expression] = sym_gnu_asm_expression, + [sym_gnu_asm_qualifier] = sym_gnu_asm_qualifier, + [sym_gnu_asm_output_operand_list] = sym_gnu_asm_output_operand_list, + [sym_gnu_asm_output_operand] = sym_gnu_asm_output_operand, + [sym_gnu_asm_input_operand_list] = sym_gnu_asm_input_operand_list, + [sym_gnu_asm_input_operand] = sym_gnu_asm_input_operand, + [sym_gnu_asm_clobber_list] = sym_gnu_asm_clobber_list, + [sym_gnu_asm_goto_list] = sym_gnu_asm_goto_list, + [sym_extension_expression] = sym_extension_expression, + [sym_argument_list] = sym_argument_list, + [sym_field_expression] = sym_field_expression, + [sym_compound_literal_expression] = sym_compound_literal_expression, + [sym_parenthesized_expression] = sym_parenthesized_expression, + [sym_initializer_list] = sym_initializer_list, + [sym_initializer_pair] = sym_initializer_pair, + [sym_subscript_designator] = sym_subscript_designator, + [sym_subscript_range_designator] = sym_subscript_range_designator, + [sym_field_designator] = sym_field_designator, + [sym_char_literal] = sym_char_literal, + [sym_concatenated_string] = sym_concatenated_string, + [sym_string_literal] = sym_string_literal, + [sym_null] = sym_null, + [sym__empty_declaration] = sym__empty_declaration, + [sym_macro_type_specifier] = sym_macro_type_specifier, + [sym_objc_bridge] = sym_objc_bridge, + [sym_typeof_specifier] = sym_typeof_specifier, + [sym_availability] = sym_availability, + [sym_version] = sym_version, + [sym_platform] = sym_platform, + [sym_module_import] = sym_module_import, + [sym_preproc_if_in_implementation_definition] = sym_preproc_if, + [sym_preproc_else_in_implementation_definition] = sym_preproc_else, + [sym_preproc_elif_in_implementation_definition] = sym_preproc_elif, + [sym_preproc_if_in_interface_declaration] = sym_preproc_if, + [sym_preproc_else_in_interface_declaration] = sym_preproc_else, + [sym_preproc_elif_in_interface_declaration] = sym_preproc_elif, + [sym_preproc_ifdef_in_enumerator] = sym_preproc_ifdef, + [sym_preproc_else_in_enumerator] = sym_preproc_else, + [sym_preproc_elif_in_enumerator] = sym_preproc_elif, + [sym_preproc_undef] = sym_preproc_undef, + [sym_preproc_linemarker] = sym_preproc_linemarker, + [sym_availability_attribute_specifier] = sym_availability_attribute_specifier, + [sym_protocol_forward_declaration] = sym_protocol_forward_declaration, + [sym_class_declaration] = sym_class_declaration, + [sym_class_interface] = sym_class_interface, + [sym__class_interface_header] = sym__class_interface_header, + [sym__type_params] = sym__type_params, + [sym__class_interface_inheritance] = sym__class_interface_inheritance, + [sym_class_implementation] = sym_class_implementation, + [sym__class_implementation_header] = sym__class_implementation_header, + [sym__class_implementation_inheritance] = sym__class_implementation_inheritance, + [sym_protocol_reference_list] = sym_protocol_reference_list, + [sym_parameterized_arguments] = sym_parameterized_arguments, + [sym_generic_arguments] = sym_generic_arguments, + [sym_instance_variables] = sym_instance_variables, + [sym_instance_variable] = sym_instance_variable, + [sym_visibility_specification] = sym_visibility_specification, + [sym_protocol_declaration] = sym_protocol_declaration, + [sym_compatibility_alias_declaration] = sym_compatibility_alias_declaration, + [sym_qualified_protocol_interface_declaration] = sym_qualified_protocol_interface_declaration, + [sym_implementation_definition] = sym_implementation_definition, + [sym_property_implementation] = sym_property_implementation, + [sym_method_definition] = sym_method_definition, + [sym_method_type] = sym_method_type, + [sym_keyword_declarator] = sym_keyword_declarator, + [sym_property_declaration] = sym_property_declaration, + [sym_property_attributes_declaration] = sym_property_attributes_declaration, + [sym_property_attribute] = sym_property_attribute, + [sym_method_declaration] = sym_method_declaration, + [sym_method_parameter] = sym_method_parameter, + [sym_c_method_parameter] = sym_method_parameter, + [sym_struct_declaration] = sym_struct_declaration, + [sym_atomic_declaration] = sym_atomic_declaration, + [sym_specifier_qualifier] = sym_specifier_qualifier, + [sym_struct_declarator] = sym_struct_declarator, + [sym_try_statement] = sym_try_statement, + [sym_catch_clause] = sym_catch_clause, + [sym_finally_clause] = sym_finally_clause, + [sym_throw_statement] = sym_throw_statement, + [sym_selector_expression] = sym_selector_expression, + [sym_available_expression] = sym_available_expression, + [sym_range_expression] = sym_range_expression, + [sym_block_literal] = sym_block_literal, + [sym_message_expression] = sym_message_expression, + [sym_va_arg_expression] = sym_va_arg_expression, + [sym_ms_asm_block] = sym_ms_asm_block, + [sym_encode_expression] = sym_encode_expression, + [sym_synchronized_statement] = sym_synchronized_statement, + [sym_block_pointer_declarator] = sym_block_pointer_declarator, + [sym_block_pointer_field_declarator] = sym_block_pointer_declarator, + [sym_block_pointer_type_declarator] = sym_block_pointer_declarator, + [sym_abstract_block_pointer_declarator] = sym_abstract_block_pointer_declarator, + [sym_generic_specifier] = sym_generic_specifier, + [sym_typedefed_specifier] = sym_typedefed_specifier, + [sym_array_type_specifier] = sym_array_type_specifier, + [sym_atdef_field] = sym_atdef_field, + [sym_protocol_qualifier] = sym_protocol_qualifier, + [sym_type_name] = sym_type_name, + [sym_at_expression] = sym_at_expression, + [sym_dictionary_literal] = sym_dictionary_literal, + [sym_dictionary_pair] = sym_dictionary_pair, + [sym_array_literal] = sym_array_literal, + [sym_method_identifier] = sym_method_identifier, + [aux_sym_translation_unit_repeat1] = aux_sym_translation_unit_repeat1, + [aux_sym_preproc_params_repeat1] = aux_sym_preproc_params_repeat1, + [aux_sym_preproc_if_repeat1] = aux_sym_preproc_if_repeat1, + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = aux_sym_preproc_if_in_field_declaration_list_repeat1, + [aux_sym_preproc_argument_list_repeat1] = aux_sym_preproc_argument_list_repeat1, + [aux_sym__old_style_function_definition_repeat1] = aux_sym__old_style_function_definition_repeat1, + [aux_sym_declaration_repeat1] = aux_sym_declaration_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, + [aux_sym__declaration_specifiers_repeat1] = aux_sym__declaration_specifiers_repeat1, + [aux_sym_attribute_specifier_repeat1] = aux_sym_attribute_specifier_repeat1, + [aux_sym_attribute_repeat1] = aux_sym_attribute_repeat1, + [aux_sym_attribute_declaration_repeat1] = aux_sym_attribute_declaration_repeat1, + [aux_sym_declaration_list_repeat1] = aux_sym_declaration_list_repeat1, + [aux_sym_attributed_field_declarator_repeat1] = aux_sym_attributed_field_declarator_repeat1, + [aux_sym_pointer_declarator_repeat1] = aux_sym_pointer_declarator_repeat1, + [aux_sym_function_declarator_repeat1] = aux_sym_function_declarator_repeat1, + [aux_sym_function_field_declarator_repeat1] = aux_sym_function_field_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_repeat1] = aux_sym_field_declaration_repeat1, + [aux_sym_parameter_list_repeat1] = aux_sym_parameter_list_repeat1, + [aux_sym__old_style_parameter_list_repeat1] = aux_sym__old_style_parameter_list_repeat1, + [aux_sym_case_statement_repeat1] = aux_sym_case_statement_repeat1, + [aux_sym_generic_expression_repeat1] = aux_sym_generic_expression_repeat1, + [aux_sym_gnu_asm_expression_repeat1] = aux_sym_gnu_asm_expression_repeat1, + [aux_sym_gnu_asm_output_operand_list_repeat1] = aux_sym_gnu_asm_output_operand_list_repeat1, + [aux_sym_gnu_asm_input_operand_list_repeat1] = aux_sym_gnu_asm_input_operand_list_repeat1, + [aux_sym_gnu_asm_clobber_list_repeat1] = aux_sym_gnu_asm_clobber_list_repeat1, + [aux_sym_gnu_asm_goto_list_repeat1] = aux_sym_gnu_asm_goto_list_repeat1, + [aux_sym_argument_list_repeat1] = aux_sym_argument_list_repeat1, + [aux_sym_argument_list_repeat2] = aux_sym_argument_list_repeat2, + [aux_sym_initializer_list_repeat1] = aux_sym_initializer_list_repeat1, + [aux_sym_initializer_pair_repeat1] = aux_sym_initializer_pair_repeat1, + [aux_sym_char_literal_repeat1] = aux_sym_char_literal_repeat1, + [aux_sym_concatenated_string_repeat1] = aux_sym_concatenated_string_repeat1, + [aux_sym_string_literal_repeat1] = aux_sym_string_literal_repeat1, + [aux_sym_availability_repeat1] = aux_sym_availability_repeat1, + [aux_sym_version_repeat1] = aux_sym_version_repeat1, + [aux_sym_module_import_repeat1] = aux_sym_module_import_repeat1, + [aux_sym_preproc_if_in_implementation_definition_repeat1] = aux_sym_preproc_if_in_implementation_definition_repeat1, + [aux_sym_preproc_if_in_interface_declaration_repeat1] = aux_sym_preproc_if_in_interface_declaration_repeat1, + [aux_sym_preproc_ifdef_in_enumerator_repeat1] = aux_sym_preproc_ifdef_in_enumerator_repeat1, + [aux_sym_availability_attribute_specifier_repeat1] = aux_sym_availability_attribute_specifier_repeat1, + [aux_sym_protocol_forward_declaration_repeat1] = aux_sym_protocol_forward_declaration_repeat1, + [aux_sym_class_declaration_repeat1] = aux_sym_class_declaration_repeat1, + [aux_sym_class_interface_repeat1] = aux_sym_class_interface_repeat1, + [aux_sym_class_implementation_repeat1] = aux_sym_class_implementation_repeat1, + [aux_sym_parameterized_arguments_repeat1] = aux_sym_parameterized_arguments_repeat1, + [aux_sym_parameterized_arguments_repeat2] = aux_sym_parameterized_arguments_repeat2, + [aux_sym_generic_arguments_repeat1] = aux_sym_generic_arguments_repeat1, + [aux_sym_instance_variables_repeat1] = aux_sym_instance_variables_repeat1, + [aux_sym_protocol_declaration_repeat1] = aux_sym_protocol_declaration_repeat1, + [aux_sym_property_implementation_repeat1] = aux_sym_property_implementation_repeat1, + [aux_sym_method_definition_repeat1] = aux_sym_method_definition_repeat1, + [aux_sym_method_definition_repeat2] = aux_sym_method_definition_repeat2, + [aux_sym_method_type_repeat1] = aux_sym_method_type_repeat1, + [aux_sym_keyword_selector_repeat1] = aux_sym_keyword_selector_repeat1, + [aux_sym_property_attributes_declaration_repeat1] = aux_sym_property_attributes_declaration_repeat1, + [aux_sym_method_declaration_repeat1] = aux_sym_method_declaration_repeat1, + [aux_sym_method_declaration_repeat2] = aux_sym_method_declaration_repeat2, + [aux_sym_c_method_parameter_repeat1] = aux_sym_c_method_parameter_repeat1, + [aux_sym_struct_declaration_repeat1] = aux_sym_struct_declaration_repeat1, + [aux_sym_struct_declaration_repeat2] = aux_sym_struct_declaration_repeat2, + [aux_sym_try_statement_repeat1] = aux_sym_try_statement_repeat1, + [aux_sym_selector_expression_repeat1] = aux_sym_selector_expression_repeat1, + [aux_sym_selector_expression_repeat2] = aux_sym_selector_expression_repeat2, + [aux_sym_available_expression_repeat1] = aux_sym_available_expression_repeat1, + [aux_sym_message_expression_repeat1] = aux_sym_message_expression_repeat1, + [aux_sym_message_expression_repeat2] = aux_sym_message_expression_repeat2, + [aux_sym_generic_specifier_repeat1] = aux_sym_generic_specifier_repeat1, + [aux_sym_type_name_repeat1] = aux_sym_type_name_repeat1, + [aux_sym_dictionary_literal_repeat1] = aux_sym_dictionary_literal_repeat1, + [aux_sym_method_identifier_repeat1] = aux_sym_method_identifier_repeat1, + [aux_sym_method_identifier_repeat2] = aux_sym_method_identifier_repeat2, + [alias_sym_field_identifier] = alias_sym_field_identifier, + [alias_sym_statement_identifier] = alias_sym_statement_identifier, + [alias_sym_type_identifier] = alias_sym_type_identifier, +}; + +static const TSSymbolMetadata ts_symbol_metadata[] = { + [ts_builtin_sym_end] = { + .visible = false, + .named = true, + }, + [sym_identifier] = { + .visible = true, + .named = true, + }, + [aux_sym_preproc_include_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_preproc_include_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_preproc_include_token3] = { + .visible = false, + .named = false, + }, + [aux_sym_preproc_def_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_LPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT_DOT_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_COMMA] = { + .visible = true, + .named = false, + }, + [anon_sym_RPAREN] = { + .visible = true, + .named = false, + }, + [aux_sym_preproc_if_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_LF] = { + .visible = true, + .named = false, + }, + [aux_sym_preproc_if_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_preproc_ifdef_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_preproc_ifdef_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_preproc_else_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_preproc_elif_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_preproc_elifdef_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_preproc_elifdef_token2] = { + .visible = true, + .named = false, + }, + [sym_preproc_arg] = { + .visible = true, + .named = true, + }, + [sym_preproc_directive] = { + .visible = true, + .named = true, + }, + [anon_sym_LPAREN2] = { + .visible = true, + .named = false, + }, + [anon_sym_defined] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG] = { + .visible = true, + .named = false, + }, + [anon_sym_TILDE] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_SEMI] = { + .visible = true, + .named = false, + }, + [anon_sym___extension__] = { + .visible = true, + .named = false, + }, + [anon_sym_typedef] = { + .visible = true, + .named = false, + }, + [anon_sym_extern] = { + .visible = true, + .named = false, + }, + [anon_sym___attribute__] = { + .visible = true, + .named = false, + }, + [anon_sym___attribute] = { + .visible = true, + .named = false, + }, + [anon_sym_noreturn] = { + .visible = true, + .named = false, + }, + [anon_sym_nothrow] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym___declspec] = { + .visible = true, + .named = false, + }, + [anon_sym___based] = { + .visible = true, + .named = false, + }, + [anon_sym___cdecl] = { + .visible = true, + .named = false, + }, + [anon_sym___clrcall] = { + .visible = true, + .named = false, + }, + [anon_sym___stdcall] = { + .visible = true, + .named = false, + }, + [anon_sym___fastcall] = { + .visible = true, + .named = false, + }, + [anon_sym___thiscall] = { + .visible = true, + .named = false, + }, + [anon_sym___vectorcall] = { + .visible = true, + .named = false, + }, + [sym_ms_restrict_modifier] = { + .visible = true, + .named = true, + }, + [sym_ms_unsigned_ptr_modifier] = { + .visible = true, + .named = true, + }, + [sym_ms_signed_ptr_modifier] = { + .visible = true, + .named = true, + }, + [anon_sym__unaligned] = { + .visible = true, + .named = false, + }, + [anon_sym___unaligned] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_signed] = { + .visible = true, + .named = false, + }, + [anon_sym_unsigned] = { + .visible = true, + .named = false, + }, + [anon_sym_long] = { + .visible = true, + .named = false, + }, + [anon_sym_short] = { + .visible = true, + .named = false, + }, + [anon_sym_static] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_ATautoreleasepool] = { + .visible = true, + .named = false, + }, + [anon_sym_auto] = { + .visible = true, + .named = false, + }, + [anon_sym_register] = { + .visible = true, + .named = false, + }, + [anon_sym_inline] = { + .visible = true, + .named = false, + }, + [anon_sym___inline] = { + .visible = true, + .named = false, + }, + [anon_sym___inline__] = { + .visible = true, + .named = false, + }, + [anon_sym___forceinline] = { + .visible = true, + .named = false, + }, + [anon_sym_thread_local] = { + .visible = true, + .named = false, + }, + [anon_sym___thread] = { + .visible = true, + .named = false, + }, + [anon_sym_CG_EXTERN] = { + .visible = true, + .named = false, + }, + [anon_sym_CG_INLINE] = { + .visible = true, + .named = false, + }, + [anon_sym_FOUNDATION_EXPORT] = { + .visible = true, + .named = false, + }, + [anon_sym_FOUNDATION_EXTERN] = { + .visible = true, + .named = false, + }, + [anon_sym_FOUNDATION_STATIC_INLINE] = { + .visible = true, + .named = false, + }, + [anon_sym_IBOutlet] = { + .visible = true, + .named = false, + }, + [anon_sym_IBInspectable] = { + .visible = true, + .named = false, + }, + [anon_sym_IB_DESIGNABLE] = { + .visible = true, + .named = false, + }, + [anon_sym_NS_INLINE] = { + .visible = true, + .named = false, + }, + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = { + .visible = true, + .named = false, + }, + [anon_sym_OBJC_EXPORT] = { + .visible = true, + .named = false, + }, + [anon_sym_OBJC_ROOT_CLASS] = { + .visible = true, + .named = false, + }, + [anon_sym_UIKIT_EXTERN] = { + .visible = true, + .named = false, + }, + [anon_sym_const] = { + .visible = true, + .named = false, + }, + [anon_sym_constexpr] = { + .visible = true, + .named = false, + }, + [anon_sym_volatile] = { + .visible = true, + .named = false, + }, + [anon_sym_restrict] = { + .visible = true, + .named = false, + }, + [anon_sym___restrict__] = { + .visible = true, + .named = false, + }, + [anon_sym__Atomic] = { + .visible = true, + .named = false, + }, + [anon_sym__Noreturn] = { + .visible = true, + .named = false, + }, + [anon_sym__Nonnull] = { + .visible = true, + .named = false, + }, + [anon_sym_nullable] = { + .visible = true, + .named = false, + }, + [anon_sym__Complex] = { + .visible = true, + .named = false, + }, + [anon_sym__Nullable] = { + .visible = true, + .named = false, + }, + [anon_sym__Nullable_result] = { + .visible = true, + .named = false, + }, + [anon_sym__Null_unspecified] = { + .visible = true, + .named = false, + }, + [anon_sym___autoreleasing] = { + .visible = true, + .named = false, + }, + [anon_sym___block] = { + .visible = true, + .named = false, + }, + [anon_sym___bridge] = { + .visible = true, + .named = false, + }, + [anon_sym___bridge_retained] = { + .visible = true, + .named = false, + }, + [anon_sym___bridge_transfer] = { + .visible = true, + .named = false, + }, + [anon_sym___complex] = { + .visible = true, + .named = false, + }, + [anon_sym___const] = { + .visible = true, + .named = false, + }, + [anon_sym___imag] = { + .visible = true, + .named = false, + }, + [anon_sym___kindof] = { + .visible = true, + .named = false, + }, + [anon_sym___nonnull] = { + .visible = true, + .named = false, + }, + [anon_sym___nullable] = { + .visible = true, + .named = false, + }, + [anon_sym___ptrauth_objc_class_ro] = { + .visible = true, + .named = false, + }, + [anon_sym___ptrauth_objc_isa_pointer] = { + .visible = true, + .named = false, + }, + [anon_sym___ptrauth_objc_super_pointer] = { + .visible = true, + .named = false, + }, + [anon_sym___real] = { + .visible = true, + .named = false, + }, + [anon_sym___strong] = { + .visible = true, + .named = false, + }, + [anon_sym___unsafe_unretained] = { + .visible = true, + .named = false, + }, + [anon_sym___unused] = { + .visible = true, + .named = false, + }, + [anon_sym___weak] = { + .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, + }, + [anon_sym_enum] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_struct] = { + .visible = true, + .named = false, + }, + [anon_sym_union] = { + .visible = true, + .named = false, + }, + [anon_sym_if] = { + .visible = true, + .named = false, + }, + [anon_sym_else] = { + .visible = true, + .named = false, + }, + [anon_sym_switch] = { + .visible = true, + .named = false, + }, + [anon_sym_case] = { + .visible = true, + .named = false, + }, + [anon_sym_default] = { + .visible = true, + .named = false, + }, + [anon_sym_while] = { + .visible = true, + .named = false, + }, + [anon_sym_do] = { + .visible = true, + .named = false, + }, + [anon_sym_for] = { + .visible = true, + .named = false, + }, + [anon_sym_in] = { + .visible = true, + .named = false, + }, + [anon_sym_return] = { + .visible = true, + .named = false, + }, + [anon_sym_break] = { + .visible = true, + .named = false, + }, + [anon_sym_continue] = { + .visible = true, + .named = false, + }, + [anon_sym_goto] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_sizeof] = { + .visible = true, + .named = false, + }, + [anon_sym___alignof__] = { + .visible = true, + .named = false, + }, + [anon_sym___alignof] = { + .visible = true, + .named = false, + }, + [anon_sym__alignof] = { + .visible = true, + .named = false, + }, + [anon_sym_alignof] = { + .visible = true, + .named = false, + }, + [anon_sym__Alignof] = { + .visible = true, + .named = false, + }, + [anon_sym_offsetof] = { + .visible = true, + .named = false, + }, + [anon_sym__Generic] = { + .visible = true, + .named = false, + }, + [anon_sym_asm] = { + .visible = true, + .named = false, + }, + [anon_sym___asm__] = { + .visible = true, + .named = false, + }, + [anon_sym___asm] = { + .visible = true, + .named = false, + }, + [anon_sym___volatile__] = { + .visible = true, + .named = false, + }, + [anon_sym_LT2] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_GT] = { + .visible = true, + .named = false, + }, + [sym_number_literal] = { + .visible = true, + .named = true, + }, + [anon_sym_L_SQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_u_SQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_U_SQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_u8_SQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_SQUOTE] = { + .visible = true, + .named = false, + }, + [aux_sym_char_literal_token1] = { + .visible = true, + .named = true, + }, + [anon_sym_AT] = { + .visible = true, + .named = false, + }, + [anon_sym_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_L_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_u_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_U_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_u8_DQUOTE] = { + .visible = true, + .named = false, + }, + [aux_sym_string_literal_token1] = { + .visible = true, + .named = true, + }, + [sym_escape_sequence] = { + .visible = true, + .named = true, + }, + [sym_system_lib_string] = { + .visible = true, + .named = true, + }, + [sym_true] = { + .visible = true, + .named = true, + }, + [sym_false] = { + .visible = true, + .named = true, + }, + [anon_sym_NULL] = { + .visible = true, + .named = false, + }, + [anon_sym_nullptr] = { + .visible = true, + .named = false, + }, + [sym_comment] = { + .visible = true, + .named = true, + }, + [anon_sym_objc_bridge_related] = { + .visible = true, + .named = false, + }, + [anon_sym___typeof__] = { + .visible = true, + .named = false, + }, + [anon_sym___typeof] = { + .visible = true, + .named = false, + }, + [anon_sym_typeof] = { + .visible = true, + .named = false, + }, + [anon_sym_availability] = { + .visible = true, + .named = false, + }, + [sym_version_number] = { + .visible = true, + .named = true, + }, + [anon_sym_ios] = { + .visible = true, + .named = false, + }, + [anon_sym_tvos] = { + .visible = true, + .named = false, + }, + [anon_sym_macos] = { + .visible = true, + .named = false, + }, + [anon_sym_macosx] = { + .visible = true, + .named = false, + }, + [anon_sym_watchos] = { + .visible = true, + .named = false, + }, + [anon_sym_ATimport] = { + .visible = true, + .named = false, + }, + [aux_sym_preproc_undef_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_POUND] = { + .visible = true, + .named = false, + }, + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = { + .visible = true, + .named = false, + }, + [anon_sym_NS_ROOT_CLASS] = { + .visible = true, + .named = false, + }, + [anon_sym_NS_UNAVAILABLE] = { + .visible = true, + .named = false, + }, + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = { + .visible = true, + .named = false, + }, + [anon_sym_CF_RETURNS_RETAINED] = { + .visible = true, + .named = false, + }, + [anon_sym_CF_RETURNS_NOT_RETAINED] = { + .visible = true, + .named = false, + }, + [anon_sym_DEPRECATED_ATTRIBUTE] = { + .visible = true, + .named = false, + }, + [anon_sym_UI_APPEARANCE_SELECTOR] = { + .visible = true, + .named = false, + }, + [anon_sym_UNAVAILABLE_ATTRIBUTE] = { + .visible = true, + .named = false, + }, + [anon_sym_CF_FORMAT_FUNCTION] = { + .visible = true, + .named = false, + }, + [anon_sym_NS_AVAILABLE] = { + .visible = true, + .named = false, + }, + [anon_sym___IOS_AVAILABLE] = { + .visible = true, + .named = false, + }, + [anon_sym_NS_AVAILABLE_IOS] = { + .visible = true, + .named = false, + }, + [anon_sym_API_AVAILABLE] = { + .visible = true, + .named = false, + }, + [anon_sym_API_UNAVAILABLE] = { + .visible = true, + .named = false, + }, + [anon_sym_API_DEPRECATED] = { + .visible = true, + .named = false, + }, + [anon_sym_NS_ENUM_AVAILABLE_IOS] = { + .visible = true, + .named = false, + }, + [anon_sym_NS_DEPRECATED_IOS] = { + .visible = true, + .named = false, + }, + [anon_sym_NS_ENUM_DEPRECATED_IOS] = { + .visible = true, + .named = false, + }, + [anon_sym_NS_FORMAT_FUNCTION] = { + .visible = true, + .named = false, + }, + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = { + .visible = true, + .named = false, + }, + [anon_sym___deprecated_msg] = { + .visible = true, + .named = false, + }, + [anon_sym___deprecated_enum_msg] = { + .visible = true, + .named = false, + }, + [anon_sym_NS_SWIFT_NAME] = { + .visible = true, + .named = false, + }, + [anon_sym_NS_SWIFT_UNAVAILABLE] = { + .visible = true, + .named = false, + }, + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = { + .visible = true, + .named = false, + }, + [anon_sym_NS_CLASS_AVAILABLE_IOS] = { + .visible = true, + .named = false, + }, + [anon_sym_NS_CLASS_DEPRECATED_IOS] = { + .visible = true, + .named = false, + }, + [anon_sym___OSX_AVAILABLE_STARTING] = { + .visible = true, + .named = false, + }, + [anon_sym_ATprotocol] = { + .visible = true, + .named = false, + }, + [anon_sym_class] = { + .visible = true, + .named = false, + }, + [anon_sym_ATend] = { + .visible = true, + .named = false, + }, + [anon_sym_ATinterface] = { + .visible = true, + .named = false, + }, + [anon_sym_ATimplementation] = { + .visible = true, + .named = false, + }, + [anon_sym___covariant] = { + .visible = true, + .named = false, + }, + [anon_sym___contravariant] = { + .visible = true, + .named = false, + }, + [anon_sym_ATprivate] = { + .visible = true, + .named = false, + }, + [anon_sym_ATprotected] = { + .visible = true, + .named = false, + }, + [anon_sym_ATpackage] = { + .visible = true, + .named = false, + }, + [anon_sym_ATpublic] = { + .visible = true, + .named = false, + }, + [anon_sym_ATcompatibility_alias] = { + .visible = true, + .named = false, + }, + [anon_sym_AToptional] = { + .visible = true, + .named = false, + }, + [anon_sym_ATrequired] = { + .visible = true, + .named = false, + }, + [anon_sym_ATsynthesize] = { + .visible = true, + .named = false, + }, + [anon_sym_ATdynamic] = { + .visible = true, + .named = false, + }, + [anon_sym_LPARENclass_RPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_ATproperty] = { + .visible = true, + .named = false, + }, + [anon_sym_ATtry] = { + .visible = true, + .named = false, + }, + [anon_sym___try] = { + .visible = true, + .named = false, + }, + [anon_sym_ATcatch] = { + .visible = true, + .named = false, + }, + [anon_sym___catch] = { + .visible = true, + .named = false, + }, + [anon_sym_ATfinally] = { + .visible = true, + .named = false, + }, + [anon_sym___finally] = { + .visible = true, + .named = false, + }, + [anon_sym_ATthrow] = { + .visible = true, + .named = false, + }, + [anon_sym_ATselector] = { + .visible = true, + .named = false, + }, + [aux_sym_selector_expression_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_ATavailable] = { + .visible = true, + .named = false, + }, + [anon_sym___builtin_available] = { + .visible = true, + .named = false, + }, + [anon_sym_va_arg] = { + .visible = true, + .named = false, + }, + [aux_sym_ms_asm_block_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_ATencode] = { + .visible = true, + .named = false, + }, + [anon_sym_ATsynchronized] = { + .visible = true, + .named = false, + }, + [anon_sym_BOOL] = { + .visible = true, + .named = false, + }, + [anon_sym_IMP] = { + .visible = true, + .named = false, + }, + [anon_sym_SEL] = { + .visible = true, + .named = false, + }, + [anon_sym_Class] = { + .visible = true, + .named = false, + }, + [anon_sym_id] = { + .visible = true, + .named = false, + }, + [anon_sym_ATdefs] = { + .visible = true, + .named = false, + }, + [anon_sym_out] = { + .visible = true, + .named = false, + }, + [anon_sym_inout] = { + .visible = true, + .named = false, + }, + [anon_sym_bycopy] = { + .visible = true, + .named = false, + }, + [anon_sym_byref] = { + .visible = true, + .named = false, + }, + [anon_sym_oneway] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON2] = { + .visible = true, + .named = false, + }, + [sym_translation_unit] = { + .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, + }, + [sym_preproc_def] = { + .visible = true, + .named = true, + }, + [sym_preproc_function_def] = { + .visible = true, + .named = true, + }, + [sym_preproc_params] = { + .visible = true, + .named = true, + }, + [sym_preproc_call] = { + .visible = true, + .named = true, + }, + [sym_preproc_if] = { + .visible = true, + .named = true, + }, + [sym_preproc_ifdef] = { + .visible = true, + .named = true, + }, + [sym_preproc_else] = { + .visible = true, + .named = true, + }, + [sym_preproc_elif] = { + .visible = true, + .named = true, + }, + [sym_preproc_elifdef] = { + .visible = true, + .named = true, + }, + [sym_preproc_if_in_field_declaration_list] = { + .visible = true, + .named = true, + }, + [sym_preproc_ifdef_in_field_declaration_list] = { + .visible = true, + .named = true, + }, + [sym_preproc_else_in_field_declaration_list] = { + .visible = true, + .named = true, + }, + [sym_preproc_elif_in_field_declaration_list] = { + .visible = true, + .named = true, + }, + [sym_preproc_elifdef_in_field_declaration_list] = { + .visible = true, + .named = true, + }, + [sym__preproc_expression] = { + .visible = false, + .named = true, + }, + [sym_preproc_parenthesized_expression] = { + .visible = true, + .named = true, + }, + [sym_preproc_defined] = { + .visible = true, + .named = true, + }, + [sym_preproc_unary_expression] = { + .visible = true, + .named = true, + }, + [sym_preproc_call_expression] = { + .visible = true, + .named = true, + }, + [sym_preproc_argument_list] = { + .visible = true, + .named = true, + }, + [sym_preproc_binary_expression] = { + .visible = true, + .named = true, + }, + [sym_function_definition] = { + .visible = true, + .named = true, + }, + [sym__old_style_function_definition] = { + .visible = true, + .named = true, + }, + [sym_declaration] = { + .visible = true, + .named = true, + }, + [sym_type_definition] = { + .visible = true, + .named = true, + }, + [sym__type_definition_type] = { + .visible = false, + .named = true, + }, + [sym__type_definition_declarators] = { + .visible = false, + .named = true, + }, + [sym__declaration_modifiers] = { + .visible = false, + .named = true, + }, + [sym__declaration_specifiers] = { + .visible = false, + .named = true, + }, + [sym_linkage_specification] = { + .visible = true, + .named = true, + }, + [sym_attribute_specifier] = { + .visible = true, + .named = true, + }, + [sym_attribute] = { + .visible = true, + .named = true, + }, + [sym_attribute_declaration] = { + .visible = true, + .named = true, + }, + [sym_ms_declspec_modifier] = { + .visible = true, + .named = true, + }, + [sym_ms_based_modifier] = { + .visible = true, + .named = true, + }, + [sym_ms_call_modifier] = { + .visible = true, + .named = true, + }, + [sym_ms_unaligned_ptr_modifier] = { + .visible = true, + .named = true, + }, + [sym_ms_pointer_modifier] = { + .visible = true, + .named = true, + }, + [sym_declaration_list] = { + .visible = true, + .named = true, + }, + [sym__declarator] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym__field_declarator] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym__type_declarator] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym__abstract_declarator] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_parenthesized_declarator] = { + .visible = true, + .named = true, + }, + [sym_parenthesized_field_declarator] = { + .visible = true, + .named = true, + }, + [sym_parenthesized_type_declarator] = { + .visible = true, + .named = true, + }, + [sym_abstract_parenthesized_declarator] = { + .visible = true, + .named = true, + }, + [sym_attributed_field_declarator] = { + .visible = true, + .named = true, + }, + [sym_pointer_declarator] = { + .visible = true, + .named = true, + }, + [sym_pointer_field_declarator] = { + .visible = true, + .named = true, + }, + [sym_pointer_type_declarator] = { + .visible = true, + .named = true, + }, + [sym_abstract_pointer_declarator] = { + .visible = true, + .named = true, + }, + [sym_function_declarator] = { + .visible = true, + .named = true, + }, + [sym_function_field_declarator] = { + .visible = true, + .named = true, + }, + [sym_function_type_declarator] = { + .visible = true, + .named = true, + }, + [sym_abstract_function_declarator] = { + .visible = true, + .named = true, + }, + [sym__old_style_function_declarator] = { + .visible = true, + .named = true, + }, + [sym_array_declarator] = { + .visible = true, + .named = true, + }, + [sym_array_field_declarator] = { + .visible = true, + .named = true, + }, + [sym_array_type_declarator] = { + .visible = true, + .named = true, + }, + [sym_abstract_array_declarator] = { + .visible = true, + .named = true, + }, + [sym_init_declarator] = { + .visible = true, + .named = true, + }, + [sym_compound_statement] = { + .visible = true, + .named = true, + }, + [sym_storage_class_specifier] = { + .visible = true, + .named = true, + }, + [sym_type_qualifier] = { + .visible = true, + .named = true, + }, + [sym_alignas_qualifier] = { + .visible = true, + .named = true, + }, + [sym_type_specifier] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_sized_type_specifier] = { + .visible = true, + .named = true, + }, + [sym_enum_specifier] = { + .visible = true, + .named = true, + }, + [sym_enumerator_list] = { + .visible = true, + .named = true, + }, + [sym_struct_specifier] = { + .visible = true, + .named = true, + }, + [sym_union_specifier] = { + .visible = true, + .named = true, + }, + [sym_field_declaration_list] = { + .visible = true, + .named = true, + }, + [sym__field_declaration_list_item] = { + .visible = false, + .named = true, + }, + [sym_field_declaration] = { + .visible = true, + .named = true, + }, + [sym_bitfield_clause] = { + .visible = true, + .named = true, + }, + [sym_enumerator] = { + .visible = true, + .named = true, + }, + [sym_variadic_parameter] = { + .visible = true, + .named = true, + }, + [sym_parameter_list] = { + .visible = true, + .named = true, + }, + [sym__old_style_parameter_list] = { + .visible = true, + .named = true, + }, + [sym_parameter_declaration] = { + .visible = true, + .named = true, + }, + [sym_attributed_statement] = { + .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, + }, + [sym__top_level_expression_statement] = { + .visible = true, + .named = true, + }, + [sym_expression_statement] = { + .visible = true, + .named = true, + }, + [sym_if_statement] = { + .visible = true, + .named = true, + }, + [sym_else_clause] = { + .visible = true, + .named = true, + }, + [sym_switch_statement] = { + .visible = true, + .named = true, + }, + [sym_case_statement] = { + .visible = true, + .named = true, + }, + [sym_while_statement] = { + .visible = true, + .named = true, + }, + [sym_do_statement] = { + .visible = true, + .named = true, + }, + [sym_for_statement] = { + .visible = true, + .named = true, + }, + [sym__for_statement_body] = { + .visible = false, + .named = true, + }, + [sym_return_statement] = { + .visible = true, + .named = true, + }, + [sym_break_statement] = { + .visible = true, + .named = true, + }, + [sym_continue_statement] = { + .visible = true, + .named = true, + }, + [sym_goto_statement] = { + .visible = true, + .named = true, + }, + [sym_expression] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym__string] = { + .visible = false, + .named = true, + }, + [sym_comma_expression] = { + .visible = true, + .named = true, + }, + [sym_conditional_expression] = { + .visible = true, + .named = true, + }, + [sym_assignment_expression] = { + .visible = true, + .named = true, + }, + [sym_pointer_expression] = { + .visible = true, + .named = true, + }, + [sym_unary_expression] = { + .visible = true, + .named = true, + }, + [sym_binary_expression] = { + .visible = true, + .named = true, + }, + [sym_update_expression] = { + .visible = true, + .named = true, + }, + [sym_cast_expression] = { + .visible = true, + .named = true, + }, + [sym_type_descriptor] = { + .visible = true, + .named = true, + }, + [sym_sizeof_expression] = { + .visible = true, + .named = true, + }, + [sym_alignof_expression] = { + .visible = true, + .named = true, + }, + [sym_offsetof_expression] = { + .visible = true, + .named = true, + }, + [sym_generic_expression] = { + .visible = true, + .named = true, + }, + [sym_subscript_expression] = { + .visible = true, + .named = true, + }, + [sym_call_expression] = { + .visible = true, + .named = true, + }, + [sym_gnu_asm_expression] = { + .visible = true, + .named = true, + }, + [sym_gnu_asm_qualifier] = { + .visible = true, + .named = true, + }, + [sym_gnu_asm_output_operand_list] = { + .visible = true, + .named = true, + }, + [sym_gnu_asm_output_operand] = { + .visible = true, + .named = true, + }, + [sym_gnu_asm_input_operand_list] = { + .visible = true, + .named = true, + }, + [sym_gnu_asm_input_operand] = { + .visible = true, + .named = true, + }, + [sym_gnu_asm_clobber_list] = { + .visible = true, + .named = true, + }, + [sym_gnu_asm_goto_list] = { + .visible = true, + .named = true, + }, + [sym_extension_expression] = { + .visible = true, + .named = true, + }, + [sym_argument_list] = { + .visible = true, + .named = true, + }, + [sym_field_expression] = { + .visible = true, + .named = true, + }, + [sym_compound_literal_expression] = { + .visible = true, + .named = true, + }, + [sym_parenthesized_expression] = { + .visible = true, + .named = true, + }, + [sym_initializer_list] = { + .visible = true, + .named = true, + }, + [sym_initializer_pair] = { + .visible = true, + .named = true, + }, + [sym_subscript_designator] = { + .visible = true, + .named = true, + }, + [sym_subscript_range_designator] = { + .visible = true, + .named = true, + }, + [sym_field_designator] = { + .visible = true, + .named = true, + }, + [sym_char_literal] = { + .visible = true, + .named = true, + }, + [sym_concatenated_string] = { + .visible = true, + .named = true, + }, + [sym_string_literal] = { + .visible = true, + .named = true, + }, + [sym_null] = { + .visible = true, + .named = true, + }, + [sym__empty_declaration] = { + .visible = false, + .named = true, + }, + [sym_macro_type_specifier] = { + .visible = true, + .named = true, + }, + [sym_objc_bridge] = { + .visible = true, + .named = true, + }, + [sym_typeof_specifier] = { + .visible = true, + .named = true, + }, + [sym_availability] = { + .visible = true, + .named = true, + }, + [sym_version] = { + .visible = true, + .named = true, + }, + [sym_platform] = { + .visible = true, + .named = true, + }, + [sym_module_import] = { + .visible = true, + .named = true, + }, + [sym_preproc_if_in_implementation_definition] = { + .visible = true, + .named = true, + }, + [sym_preproc_else_in_implementation_definition] = { + .visible = true, + .named = true, + }, + [sym_preproc_elif_in_implementation_definition] = { + .visible = true, + .named = true, + }, + [sym_preproc_if_in_interface_declaration] = { + .visible = true, + .named = true, + }, + [sym_preproc_else_in_interface_declaration] = { + .visible = true, + .named = true, + }, + [sym_preproc_elif_in_interface_declaration] = { + .visible = true, + .named = true, + }, + [sym_preproc_ifdef_in_enumerator] = { + .visible = true, + .named = true, + }, + [sym_preproc_else_in_enumerator] = { + .visible = true, + .named = true, + }, + [sym_preproc_elif_in_enumerator] = { + .visible = true, + .named = true, + }, + [sym_preproc_undef] = { + .visible = true, + .named = true, + }, + [sym_preproc_linemarker] = { + .visible = true, + .named = true, + }, + [sym_availability_attribute_specifier] = { + .visible = true, + .named = true, + }, + [sym_protocol_forward_declaration] = { + .visible = true, + .named = true, + }, + [sym_class_declaration] = { + .visible = true, + .named = true, + }, + [sym_class_interface] = { + .visible = true, + .named = true, + }, + [sym__class_interface_header] = { + .visible = false, + .named = true, + }, + [sym__type_params] = { + .visible = false, + .named = true, + }, + [sym__class_interface_inheritance] = { + .visible = false, + .named = true, + }, + [sym_class_implementation] = { + .visible = true, + .named = true, + }, + [sym__class_implementation_header] = { + .visible = false, + .named = true, + }, + [sym__class_implementation_inheritance] = { + .visible = false, + .named = true, + }, + [sym_protocol_reference_list] = { + .visible = true, + .named = true, + }, + [sym_parameterized_arguments] = { + .visible = true, + .named = true, + }, + [sym_generic_arguments] = { + .visible = true, + .named = true, + }, + [sym_instance_variables] = { + .visible = true, + .named = true, + }, + [sym_instance_variable] = { + .visible = true, + .named = true, + }, + [sym_visibility_specification] = { + .visible = true, + .named = true, + }, + [sym_protocol_declaration] = { + .visible = true, + .named = true, + }, + [sym_compatibility_alias_declaration] = { + .visible = true, + .named = true, + }, + [sym_qualified_protocol_interface_declaration] = { + .visible = true, + .named = true, + }, + [sym_implementation_definition] = { + .visible = true, + .named = true, + }, + [sym_property_implementation] = { + .visible = true, + .named = true, + }, + [sym_method_definition] = { + .visible = true, + .named = true, + }, + [sym_method_type] = { + .visible = true, + .named = true, + }, + [sym_keyword_declarator] = { + .visible = true, + .named = true, + }, + [sym_property_declaration] = { + .visible = true, + .named = true, + }, + [sym_property_attributes_declaration] = { + .visible = true, + .named = true, + }, + [sym_property_attribute] = { + .visible = true, + .named = true, + }, + [sym_method_declaration] = { + .visible = true, + .named = true, + }, + [sym_method_parameter] = { + .visible = true, + .named = true, + }, + [sym_c_method_parameter] = { + .visible = true, + .named = true, + }, + [sym_struct_declaration] = { + .visible = true, + .named = true, + }, + [sym_atomic_declaration] = { + .visible = true, + .named = true, + }, + [sym_specifier_qualifier] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_struct_declarator] = { + .visible = true, + .named = true, + }, + [sym_try_statement] = { + .visible = true, + .named = true, + }, + [sym_catch_clause] = { + .visible = true, + .named = true, + }, + [sym_finally_clause] = { + .visible = true, + .named = true, + }, + [sym_throw_statement] = { + .visible = true, + .named = true, + }, + [sym_selector_expression] = { + .visible = true, + .named = true, + }, + [sym_available_expression] = { + .visible = true, + .named = true, + }, + [sym_range_expression] = { + .visible = true, + .named = true, + }, + [sym_block_literal] = { + .visible = true, + .named = true, + }, + [sym_message_expression] = { + .visible = true, + .named = true, + }, + [sym_va_arg_expression] = { + .visible = true, + .named = true, + }, + [sym_ms_asm_block] = { + .visible = true, + .named = true, + }, + [sym_encode_expression] = { + .visible = true, + .named = true, + }, + [sym_synchronized_statement] = { + .visible = true, + .named = true, + }, + [sym_block_pointer_declarator] = { + .visible = true, + .named = true, + }, + [sym_block_pointer_field_declarator] = { + .visible = true, + .named = true, + }, + [sym_block_pointer_type_declarator] = { + .visible = true, + .named = true, + }, + [sym_abstract_block_pointer_declarator] = { + .visible = true, + .named = true, + }, + [sym_generic_specifier] = { + .visible = true, + .named = true, + }, + [sym_typedefed_specifier] = { + .visible = true, + .named = true, + }, + [sym_array_type_specifier] = { + .visible = true, + .named = true, + }, + [sym_atdef_field] = { + .visible = true, + .named = true, + }, + [sym_protocol_qualifier] = { + .visible = true, + .named = true, + }, + [sym_type_name] = { + .visible = true, + .named = true, + }, + [sym_at_expression] = { + .visible = true, + .named = true, + }, + [sym_dictionary_literal] = { + .visible = true, + .named = true, + }, + [sym_dictionary_pair] = { + .visible = true, + .named = true, + }, + [sym_array_literal] = { + .visible = true, + .named = true, + }, + [sym_method_identifier] = { + .visible = true, + .named = true, + }, + [aux_sym_translation_unit_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_preproc_params_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_preproc_if_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_preproc_argument_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__old_style_function_definition_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__type_definition_type_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__type_definition_declarators_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__declaration_specifiers_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_attribute_specifier_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_attribute_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_attribute_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_declaration_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_attributed_field_declarator_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_pointer_declarator_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_function_declarator_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_function_field_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, + }, + [aux_sym_enumerator_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_field_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_parameter_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__old_style_parameter_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_case_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_generic_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_gnu_asm_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_gnu_asm_output_operand_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_gnu_asm_input_operand_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_gnu_asm_clobber_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_gnu_asm_goto_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_argument_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_argument_list_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_initializer_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_initializer_pair_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_char_literal_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_concatenated_string_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_string_literal_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_availability_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_version_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_module_import_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_preproc_if_in_implementation_definition_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_preproc_if_in_interface_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_preproc_ifdef_in_enumerator_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_availability_attribute_specifier_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_protocol_forward_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_class_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_class_interface_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_class_implementation_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_parameterized_arguments_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_parameterized_arguments_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_generic_arguments_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_instance_variables_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_protocol_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_property_implementation_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_method_definition_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_method_definition_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_method_type_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_keyword_selector_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_property_attributes_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_method_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_method_declaration_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_c_method_parameter_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_struct_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_struct_declaration_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_try_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_selector_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_selector_expression_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_available_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_message_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_message_expression_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_generic_specifier_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_name_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_dictionary_literal_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_method_identifier_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_method_identifier_repeat2] = { + .visible = false, + .named = false, + }, + [alias_sym_field_identifier] = { + .visible = true, + .named = true, + }, + [alias_sym_statement_identifier] = { + .visible = true, + .named = true, + }, + [alias_sym_type_identifier] = { + .visible = true, + .named = true, + }, +}; + +enum ts_field_identifiers { + field_alias = 1, + field_alternative = 2, + field_argument = 3, + field_arguments = 4, + field_assembly_code = 5, + field_base = 6, + field_body = 7, + field_category = 8, + field_class = 9, + field_clobbers = 10, + field_column = 11, + field_condition = 12, + field_consequence = 13, + field_constraint = 14, + field_declarator = 15, + field_designator = 16, + field_directive = 17, + field_end = 18, + field_field = 19, + field_filename = 20, + field_function = 21, + field_goto_labels = 22, + field_index = 23, + field_initializer = 24, + field_input_operands = 25, + field_label = 26, + field_left = 27, + field_member = 28, + field_method = 29, + field_name = 30, + field_operand = 31, + field_operator = 32, + field_output_operands = 33, + field_parameters = 34, + field_path = 35, + field_prefix = 36, + field_receiver = 37, + field_register = 38, + field_right = 39, + field_row = 40, + field_size = 41, + field_start = 42, + field_superclass = 43, + field_symbol = 44, + field_type = 45, + field_underlying_type = 46, + field_update = 47, + field_value = 48, +}; + +static const char * const ts_field_names[] = { + [0] = NULL, + [field_alias] = "alias", + [field_alternative] = "alternative", + [field_argument] = "argument", + [field_arguments] = "arguments", + [field_assembly_code] = "assembly_code", + [field_base] = "base", + [field_body] = "body", + [field_category] = "category", + [field_class] = "class", + [field_clobbers] = "clobbers", + [field_column] = "column", + [field_condition] = "condition", + [field_consequence] = "consequence", + [field_constraint] = "constraint", + [field_declarator] = "declarator", + [field_designator] = "designator", + [field_directive] = "directive", + [field_end] = "end", + [field_field] = "field", + [field_filename] = "filename", + [field_function] = "function", + [field_goto_labels] = "goto_labels", + [field_index] = "index", + [field_initializer] = "initializer", + [field_input_operands] = "input_operands", + [field_label] = "label", + [field_left] = "left", + [field_member] = "member", + [field_method] = "method", + [field_name] = "name", + [field_operand] = "operand", + [field_operator] = "operator", + [field_output_operands] = "output_operands", + [field_parameters] = "parameters", + [field_path] = "path", + [field_prefix] = "prefix", + [field_receiver] = "receiver", + [field_register] = "register", + [field_right] = "right", + [field_row] = "row", + [field_size] = "size", + [field_start] = "start", + [field_superclass] = "superclass", + [field_symbol] = "symbol", + [field_type] = "type", + [field_underlying_type] = "underlying_type", + [field_update] = "update", + [field_value] = "value", +}; + +static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { + [3] = {.index = 0, .length = 3}, + [4] = {.index = 3, .length = 1}, + [5] = {.index = 4, .length = 1}, + [6] = {.index = 5, .length = 2}, + [7] = {.index = 7, .length = 1}, + [8] = {.index = 8, .length = 1}, + [9] = {.index = 9, .length = 1}, + [10] = {.index = 3, .length = 1}, + [11] = {.index = 10, .length = 2}, + [12] = {.index = 12, .length = 2}, + [13] = {.index = 14, .length = 1}, + [14] = {.index = 14, .length = 1}, + [15] = {.index = 15, .length = 2}, + [16] = {.index = 8, .length = 1}, + [17] = {.index = 17, .length = 2}, + [18] = {.index = 19, .length = 2}, + [19] = {.index = 21, .length = 1}, + [20] = {.index = 22, .length = 1}, + [21] = {.index = 23, .length = 1}, + [22] = {.index = 24, .length = 2}, + [24] = {.index = 26, .length = 1}, + [25] = {.index = 27, .length = 2}, + [26] = {.index = 29, .length = 1}, + [27] = {.index = 30, .length = 1}, + [28] = {.index = 31, .length = 2}, + [29] = {.index = 33, .length = 1}, + [30] = {.index = 34, .length = 1}, + [31] = {.index = 35, .length = 2}, + [32] = {.index = 37, .length = 2}, + [33] = {.index = 39, .length = 1}, + [34] = {.index = 40, .length = 3}, + [35] = {.index = 43, .length = 1}, + [36] = {.index = 44, .length = 1}, + [37] = {.index = 45, .length = 2}, + [38] = {.index = 47, .length = 3}, + [39] = {.index = 50, .length = 5}, + [40] = {.index = 55, .length = 3}, + [41] = {.index = 58, .length = 1}, + [42] = {.index = 59, .length = 2}, + [43] = {.index = 61, .length = 1}, + [44] = {.index = 61, .length = 1}, + [45] = {.index = 62, .length = 2}, + [46] = {.index = 64, .length = 2}, + [47] = {.index = 66, .length = 1}, + [48] = {.index = 67, .length = 2}, + [50] = {.index = 69, .length = 2}, + [51] = {.index = 71, .length = 2}, + [52] = {.index = 73, .length = 2}, + [53] = {.index = 75, .length = 2}, + [54] = {.index = 77, .length = 1}, + [55] = {.index = 78, .length = 2}, + [56] = {.index = 80, .length = 2}, + [57] = {.index = 82, .length = 2}, + [58] = {.index = 84, .length = 2}, + [59] = {.index = 86, .length = 2}, + [60] = {.index = 88, .length = 2}, + [61] = {.index = 88, .length = 2}, + [62] = {.index = 90, .length = 2}, + [63] = {.index = 92, .length = 1}, + [64] = {.index = 93, .length = 1}, + [66] = {.index = 94, .length = 3}, + [67] = {.index = 97, .length = 1}, + [68] = {.index = 98, .length = 1}, + [69] = {.index = 99, .length = 2}, + [70] = {.index = 101, .length = 2}, + [71] = {.index = 103, .length = 1}, + [72] = {.index = 104, .length = 2}, + [73] = {.index = 106, .length = 2}, + [74] = {.index = 108, .length = 3}, + [75] = {.index = 111, .length = 3}, + [76] = {.index = 114, .length = 2}, + [77] = {.index = 116, .length = 5}, + [78] = {.index = 121, .length = 3}, + [79] = {.index = 124, .length = 5}, + [80] = {.index = 129, .length = 2}, + [81] = {.index = 131, .length = 2}, + [82] = {.index = 133, .length = 1}, + [84] = {.index = 134, .length = 2}, + [85] = {.index = 136, .length = 3}, + [86] = {.index = 139, .length = 2}, + [87] = {.index = 141, .length = 2}, + [89] = {.index = 143, .length = 1}, + [90] = {.index = 144, .length = 2}, + [91] = {.index = 146, .length = 1}, + [92] = {.index = 147, .length = 2}, + [93] = {.index = 149, .length = 2}, + [94] = {.index = 151, .length = 2}, + [95] = {.index = 153, .length = 2}, + [96] = {.index = 155, .length = 3}, + [97] = {.index = 155, .length = 3}, + [98] = {.index = 158, .length = 2}, + [99] = {.index = 160, .length = 2}, + [100] = {.index = 160, .length = 2}, + [101] = {.index = 162, .length = 2}, + [102] = {.index = 164, .length = 2}, + [103] = {.index = 166, .length = 1}, + [104] = {.index = 167, .length = 2}, + [105] = {.index = 169, .length = 2}, + [106] = {.index = 171, .length = 4}, + [107] = {.index = 175, .length = 1}, + [108] = {.index = 176, .length = 2}, + [109] = {.index = 178, .length = 1}, + [110] = {.index = 179, .length = 2}, + [111] = {.index = 181, .length = 2}, + [112] = {.index = 183, .length = 2}, + [113] = {.index = 185, .length = 4}, + [114] = {.index = 189, .length = 5}, + [115] = {.index = 194, .length = 3}, + [117] = {.index = 197, .length = 2}, + [118] = {.index = 199, .length = 1}, + [120] = {.index = 200, .length = 1}, + [121] = {.index = 201, .length = 2}, + [122] = {.index = 203, .length = 2}, + [123] = {.index = 205, .length = 3}, + [124] = {.index = 205, .length = 3}, + [125] = {.index = 208, .length = 2}, + [126] = {.index = 210, .length = 2}, + [127] = {.index = 210, .length = 2}, + [128] = {.index = 212, .length = 2}, + [129] = {.index = 214, .length = 3}, + [130] = {.index = 217, .length = 2}, + [131] = {.index = 219, .length = 2}, + [132] = {.index = 221, .length = 2}, + [133] = {.index = 223, .length = 2}, + [134] = {.index = 225, .length = 3}, + [135] = {.index = 228, .length = 2}, + [136] = {.index = 230, .length = 3}, + [138] = {.index = 233, .length = 2}, + [139] = {.index = 233, .length = 2}, + [140] = {.index = 235, .length = 2}, + [141] = {.index = 237, .length = 3}, + [142] = {.index = 237, .length = 3}, + [143] = {.index = 240, .length = 3}, + [144] = {.index = 243, .length = 3}, + [145] = {.index = 246, .length = 2}, + [146] = {.index = 248, .length = 1}, + [147] = {.index = 249, .length = 4}, + [148] = {.index = 253, .length = 3}, + [149] = {.index = 256, .length = 2}, + [150] = {.index = 258, .length = 1}, + [151] = {.index = 259, .length = 2}, + [152] = {.index = 261, .length = 2}, + [153] = {.index = 39, .length = 1}, + [154] = {.index = 263, .length = 5}, + [155] = {.index = 268, .length = 4}, + [157] = {.index = 272, .length = 2}, + [158] = {.index = 274, .length = 2}, + [159] = {.index = 276, .length = 2}, + [160] = {.index = 278, .length = 5}, + [161] = {.index = 283, .length = 2}, + [162] = {.index = 285, .length = 3}, +}; + +static const TSFieldMapEntry ts_field_map_entries[] = { + [0] = + {field_body, 0, .inherited = true}, + {field_declarator, 0, .inherited = true}, + {field_type, 0, .inherited = true}, + [3] = + {field_type, 0}, + [4] = + {field_directive, 0}, + [5] = + {field_argument, 1}, + {field_operator, 0}, + [7] = + {field_value, 1}, + [8] = + {field_name, 1}, + [9] = + {field_body, 1}, + [10] = + {field_argument, 0}, + {field_operator, 1}, + [12] = + {field_arguments, 1}, + {field_function, 0}, + [14] = + {field_type, 1}, + [15] = + {field_directive, 0}, + {field_path, 1}, + [17] = + {field_argument, 1}, + {field_directive, 0}, + [19] = + {field_declarator, 1}, + {field_type, 0}, + [21] = + {field_parameters, 0}, + [22] = + {field_type, 0, .inherited = true}, + [23] = + {field_declarator, 1}, + [24] = + {field_declarator, 0}, + {field_parameters, 1}, + [26] = + {field_declarator, 0}, + [27] = + {field_body, 2}, + {field_value, 1}, + [29] = + {field_name, 0}, + [30] = + {field_method, 0}, + [31] = + {field_body, 2}, + {field_name, 1}, + [33] = + {field_name, 2}, + [34] = + {field_body, 2}, + [35] = + {field_condition, 1}, + {field_consequence, 2}, + [37] = + {field_body, 2}, + {field_condition, 1}, + [39] = + {field_label, 1}, + [40] = + {field_left, 0}, + {field_operator, 1}, + {field_right, 2}, + [43] = + {field_label, 0}, + [44] = + {field_path, 1}, + [45] = + {field_declarator, 1}, + {field_type, 0, .inherited = true}, + [47] = + {field_body, 2}, + {field_declarator, 1}, + {field_type, 0, .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] = + {field_argument, 0}, + {field_field, 2}, + {field_operator, 1}, + [58] = + {field_superclass, 1}, + [59] = + {field_category, 1, .inherited = true}, + {field_superclass, 1, .inherited = true}, + [61] = + {field_type, 2}, + [62] = + {field_name, 1}, + {field_value, 2}, + [64] = + {field_name, 1}, + {field_parameters, 2}, + [66] = + {field_condition, 1}, + [67] = + {field_alternative, 2}, + {field_name, 1}, + [69] = + {field_declarator, 2}, + {field_type, 0}, + [71] = + {field_left, 0}, + {field_right, 2}, + [73] = + {field_type, 1}, + {field_value, 3}, + [75] = + {field_declarator, 2}, + {field_type, 1}, + [77] = + {field_declarator, 2}, + [78] = + {field_declarator, 2, .inherited = true}, + {field_type, 1, .inherited = true}, + [80] = + {field_declarator, 0}, + {field_declarator, 1, .inherited = true}, + [82] = + {field_method, 2, .inherited = true}, + {field_receiver, 1}, + [84] = + {field_method, 0, .inherited = true}, + {field_method, 1, .inherited = true}, + [86] = + {field_base, 2}, + {field_body, 3}, + [88] = + {field_name, 1}, + {field_underlying_type, 3}, + [90] = + {field_body, 3}, + {field_name, 2}, + [92] = + {field_name, 3}, + [93] = + {field_body, 3}, + [94] = + {field_alternative, 3}, + {field_condition, 1}, + {field_consequence, 2}, + [97] = + {field_initializer, 0}, + [98] = + {field_assembly_code, 2}, + [99] = + {field_name, 0}, + {field_type, 2}, + [101] = + {field_path, 1}, + {field_path, 2}, + [103] = + {field_filename, 2}, + [104] = + {field_alias, 2}, + {field_class, 1}, + [106] = + {field_declarator, 0}, + {field_value, 2}, + [108] = + {field_declarator, 1}, + {field_declarator, 2}, + {field_type, 0, .inherited = true}, + [111] = + {field_declarator, 1}, + {field_declarator, 2, .inherited = true}, + {field_type, 0, .inherited = true}, + [114] = + {field_declarator, 0, .inherited = true}, + {field_declarator, 1, .inherited = true}, + [116] = + {field_body, 3}, + {field_declarator, 1}, + {field_declarator, 1, .inherited = true}, + {field_parameters, 1, .inherited = true}, + {field_type, 0, .inherited = true}, + [121] = + {field_body, 3}, + {field_declarator, 2}, + {field_type, 1, .inherited = true}, + [124] = + {field_body, 3}, + {field_declarator, 2}, + {field_declarator, 2, .inherited = true}, + {field_parameters, 2, .inherited = true}, + {field_type, 1, .inherited = true}, + [129] = + {field_argument, 0}, + {field_index, 2}, + [131] = + {field_alternative, 3}, + {field_condition, 0}, + [133] = + {field_category, 1}, + [134] = + {field_category, 2, .inherited = true}, + {field_superclass, 2, .inherited = true}, + [136] = + {field_name, 1}, + {field_parameters, 2}, + {field_value, 3}, + [139] = + {field_alternative, 3}, + {field_condition, 1}, + [141] = + {field_alternative, 3}, + {field_name, 1}, + [143] = + {field_size, 1}, + [144] = + {field_declarator, 3}, + {field_type, 1}, + [146] = + {field_declarator, 3}, + [147] = + {field_declarator, 0}, + {field_size, 2}, + [149] = + {field_declarator, 3, .inherited = true}, + {field_type, 2, .inherited = true}, + [151] = + {field_name, 2}, + {field_prefix, 0}, + [153] = + {field_name, 0}, + {field_value, 2}, + [155] = + {field_body, 4}, + {field_name, 1}, + {field_underlying_type, 3}, + [158] = + {field_base, 3}, + {field_body, 4}, + [160] = + {field_name, 2}, + {field_underlying_type, 4}, + [162] = + {field_body, 4}, + {field_name, 3}, + [164] = + {field_body, 1}, + {field_condition, 3}, + [166] = + {field_update, 2}, + [167] = + {field_initializer, 0}, + {field_update, 2}, + [169] = + {field_condition, 1}, + {field_initializer, 0}, + [171] = + {field_body, 4}, + {field_condition, 2, .inherited = true}, + {field_initializer, 2, .inherited = true}, + {field_update, 2, .inherited = true}, + [175] = + {field_operand, 1}, + [176] = + {field_assembly_code, 2}, + {field_output_operands, 3}, + [178] = + {field_assembly_code, 3}, + [179] = + {field_filename, 2}, + {field_row, 3}, + [181] = + {field_declarator, 1}, + {field_declarator, 2}, + [183] = + {field_declarator, 0}, + {field_value, 3}, + [185] = + {field_declarator, 1}, + {field_declarator, 2}, + {field_declarator, 3, .inherited = true}, + {field_type, 0, .inherited = true}, + [189] = + {field_body, 4}, + {field_declarator, 2}, + {field_declarator, 2, .inherited = true}, + {field_parameters, 2, .inherited = true}, + {field_type, 1, .inherited = true}, + [194] = + {field_alternative, 4}, + {field_condition, 0}, + {field_consequence, 2}, + [197] = + {field_alternative, 4}, + {field_condition, 1}, + [199] = + {field_size, 2}, + [200] = + {field_declarator, 4}, + [201] = + {field_declarator, 0}, + {field_size, 3}, + [203] = + {field_declarator, 4, .inherited = true}, + {field_type, 3, .inherited = true}, + [205] = + {field_body, 5}, + {field_name, 2}, + {field_underlying_type, 4}, + [208] = + {field_base, 4}, + {field_body, 5}, + [210] = + {field_name, 3}, + {field_underlying_type, 5}, + [212] = + {field_condition, 1}, + {field_update, 3}, + [214] = + {field_condition, 1}, + {field_initializer, 0}, + {field_update, 3}, + [217] = + {field_initializer, 0}, + {field_update, 3}, + [219] = + {field_condition, 2}, + {field_initializer, 0}, + [221] = + {field_member, 4}, + {field_type, 2}, + [223] = + {field_operand, 1}, + {field_operand, 2, .inherited = true}, + [225] = + {field_assembly_code, 2}, + {field_input_operands, 4}, + {field_output_operands, 3}, + [228] = + {field_assembly_code, 3}, + {field_output_operands, 4}, + [230] = + {field_column, 4}, + {field_filename, 2}, + {field_row, 3}, + [233] = + {field_designator, 0}, + {field_value, 2}, + [235] = + {field_declarator, 5, .inherited = true}, + {field_type, 4, .inherited = true}, + [237] = + {field_body, 6}, + {field_name, 3}, + {field_underlying_type, 5}, + [240] = + {field_declarator, 1}, + {field_declarator, 3, .inherited = true}, + {field_type, 0, .inherited = true}, + [243] = + {field_condition, 2}, + {field_initializer, 0}, + {field_update, 4}, + [246] = + {field_operand, 0, .inherited = true}, + {field_operand, 1, .inherited = true}, + [248] = + {field_register, 1}, + [249] = + {field_assembly_code, 2}, + {field_clobbers, 5}, + {field_input_operands, 4}, + {field_output_operands, 3}, + [253] = + {field_assembly_code, 3}, + {field_input_operands, 5}, + {field_output_operands, 4}, + [256] = + {field_declarator, 6, .inherited = true}, + {field_type, 5, .inherited = true}, + [258] = + {field_type, 2, .inherited = true}, + [259] = + {field_constraint, 0}, + {field_value, 2}, + [261] = + {field_register, 1}, + {field_register, 2, .inherited = true}, + [263] = + {field_assembly_code, 2}, + {field_clobbers, 5}, + {field_goto_labels, 6}, + {field_input_operands, 4}, + {field_output_operands, 3}, + [268] = + {field_assembly_code, 3}, + {field_clobbers, 6}, + {field_input_operands, 5}, + {field_output_operands, 4}, + [272] = + {field_end, 3}, + {field_start, 1}, + [274] = + {field_register, 0, .inherited = true}, + {field_register, 1, .inherited = true}, + [276] = + {field_label, 1}, + {field_label, 2, .inherited = true}, + [278] = + {field_assembly_code, 3}, + {field_clobbers, 6}, + {field_goto_labels, 7}, + {field_input_operands, 5}, + {field_output_operands, 4}, + [283] = + {field_label, 0, .inherited = true}, + {field_label, 1, .inherited = true}, + [285] = + {field_constraint, 3}, + {field_symbol, 1}, + {field_value, 5}, +}; + +static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { + [0] = {0}, + [1] = { + [0] = sym_identifier, + }, + [2] = { + [0] = alias_sym_type_identifier, + }, + [8] = { + [1] = alias_sym_type_identifier, + }, + [10] = { + [0] = alias_sym_type_identifier, + }, + [14] = { + [1] = alias_sym_type_identifier, + }, + [23] = { + [0] = sym_primitive_type, + }, + [28] = { + [1] = alias_sym_type_identifier, + }, + [29] = { + [2] = alias_sym_type_identifier, + }, + [33] = { + [1] = alias_sym_statement_identifier, + }, + [35] = { + [0] = alias_sym_statement_identifier, + }, + [40] = { + [2] = alias_sym_field_identifier, + }, + [44] = { + [2] = alias_sym_type_identifier, + }, + [49] = { + [1] = alias_sym_type_identifier, + }, + [59] = { + [2] = alias_sym_type_identifier, + }, + [60] = { + [1] = alias_sym_type_identifier, + }, + [61] = { + [1] = alias_sym_type_identifier, + [3] = alias_sym_type_identifier, + }, + [62] = { + [2] = alias_sym_type_identifier, + }, + [63] = { + [3] = alias_sym_type_identifier, + }, + [65] = { + [0] = alias_sym_field_identifier, + }, + [83] = { + [1] = sym_identifier, + }, + [88] = { + [2] = alias_sym_type_identifier, + }, + [96] = { + [1] = alias_sym_type_identifier, + }, + [97] = { + [1] = alias_sym_type_identifier, + [3] = alias_sym_type_identifier, + }, + [98] = { + [3] = alias_sym_type_identifier, + }, + [99] = { + [2] = alias_sym_type_identifier, + }, + [100] = { + [2] = alias_sym_type_identifier, + [4] = alias_sym_type_identifier, + }, + [101] = { + [3] = alias_sym_type_identifier, + }, + [116] = { + [2] = sym_identifier, + }, + [119] = { + [1] = alias_sym_field_identifier, + }, + [123] = { + [2] = alias_sym_type_identifier, + }, + [124] = { + [2] = alias_sym_type_identifier, + [4] = alias_sym_type_identifier, + }, + [125] = { + [4] = alias_sym_type_identifier, + }, + [126] = { + [3] = alias_sym_type_identifier, + }, + [127] = { + [3] = alias_sym_type_identifier, + [5] = alias_sym_type_identifier, + }, + [132] = { + [4] = alias_sym_field_identifier, + }, + [137] = { + [3] = sym_identifier, + }, + [138] = { + [0] = alias_sym_field_identifier, + }, + [141] = { + [3] = alias_sym_type_identifier, + }, + [142] = { + [3] = alias_sym_type_identifier, + [5] = alias_sym_type_identifier, + }, + [156] = { + [4] = alias_sym_field_identifier, + }, +}; + +static const uint16_t ts_non_terminal_alias_map[] = { + 0, +}; + +static const TSStateId ts_primary_state_ids[STATE_COUNT] = { + [0] = 0, + [1] = 1, + [2] = 2, + [3] = 3, + [4] = 2, + [5] = 3, + [6] = 2, + [7] = 3, + [8] = 2, + [9] = 3, + [10] = 2, + [11] = 3, + [12] = 2, + [13] = 3, + [14] = 3, + [15] = 2, + [16] = 3, + [17] = 2, + [18] = 3, + [19] = 2, + [20] = 20, + [21] = 21, + [22] = 22, + [23] = 20, + [24] = 24, + [25] = 24, + [26] = 26, + [27] = 20, + [28] = 28, + [29] = 24, + [30] = 20, + [31] = 24, + [32] = 20, + [33] = 20, + [34] = 24, + [35] = 35, + [36] = 24, + [37] = 22, + [38] = 38, + [39] = 39, + [40] = 22, + [41] = 41, + [42] = 42, + [43] = 41, + [44] = 44, + [45] = 45, + [46] = 46, + [47] = 42, + [48] = 48, + [49] = 41, + [50] = 44, + [51] = 44, + [52] = 45, + [53] = 48, + [54] = 46, + [55] = 42, + [56] = 48, + [57] = 41, + [58] = 44, + [59] = 45, + [60] = 45, + [61] = 46, + [62] = 42, + [63] = 46, + [64] = 48, + [65] = 41, + [66] = 44, + [67] = 45, + [68] = 46, + [69] = 42, + [70] = 48, + [71] = 41, + [72] = 44, + [73] = 45, + [74] = 42, + [75] = 41, + [76] = 44, + [77] = 45, + [78] = 42, + [79] = 41, + [80] = 44, + [81] = 45, + [82] = 42, + [83] = 42, + [84] = 41, + [85] = 44, + [86] = 45, + [87] = 42, + [88] = 41, + [89] = 44, + [90] = 45, + [91] = 42, + [92] = 41, + [93] = 44, + [94] = 45, + [95] = 42, + [96] = 41, + [97] = 44, + [98] = 45, + [99] = 42, + [100] = 41, + [101] = 44, + [102] = 45, + [103] = 42, + [104] = 41, + [105] = 44, + [106] = 45, + [107] = 42, + [108] = 41, + [109] = 44, + [110] = 45, + [111] = 42, + [112] = 41, + [113] = 44, + [114] = 45, + [115] = 42, + [116] = 41, + [117] = 44, + [118] = 45, + [119] = 42, + [120] = 41, + [121] = 44, + [122] = 45, + [123] = 42, + [124] = 41, + [125] = 44, + [126] = 45, + [127] = 127, + [128] = 128, + [129] = 129, + [130] = 130, + [131] = 131, + [132] = 132, + [133] = 133, + [134] = 134, + [135] = 130, + [136] = 131, + [137] = 132, + [138] = 133, + [139] = 134, + [140] = 130, + [141] = 131, + [142] = 132, + [143] = 133, + [144] = 134, + [145] = 132, + [146] = 131, + [147] = 132, + [148] = 133, + [149] = 131, + [150] = 134, + [151] = 130, + [152] = 134, + [153] = 133, + [154] = 130, + [155] = 130, + [156] = 132, + [157] = 157, + [158] = 157, + [159] = 131, + [160] = 157, + [161] = 157, + [162] = 157, + [163] = 157, + [164] = 157, + [165] = 134, + [166] = 157, + [167] = 133, + [168] = 168, + [169] = 169, + [170] = 169, + [171] = 169, + [172] = 169, + [173] = 169, + [174] = 169, + [175] = 169, + [176] = 169, + [177] = 168, + [178] = 178, + [179] = 168, + [180] = 180, + [181] = 178, + [182] = 168, + [183] = 183, + [184] = 184, + [185] = 185, + [186] = 180, + [187] = 187, + [188] = 188, + [189] = 178, + [190] = 180, + [191] = 188, + [192] = 184, + [193] = 187, + [194] = 183, + [195] = 185, + [196] = 178, + [197] = 178, + [198] = 198, + [199] = 199, + [200] = 200, + [201] = 184, + [202] = 202, + [203] = 203, + [204] = 204, + [205] = 205, + [206] = 206, + [207] = 207, + [208] = 208, + [209] = 209, + [210] = 210, + [211] = 211, + [212] = 212, + [213] = 180, + [214] = 214, + [215] = 215, + [216] = 216, + [217] = 217, + [218] = 218, + [219] = 219, + [220] = 220, + [221] = 221, + [222] = 222, + [223] = 223, + [224] = 224, + [225] = 225, + [226] = 226, + [227] = 227, + [228] = 228, + [229] = 229, + [230] = 230, + [231] = 231, + [232] = 232, + [233] = 233, + [234] = 234, + [235] = 185, + [236] = 180, + [237] = 188, + [238] = 238, + [239] = 239, + [240] = 187, + [241] = 184, + [242] = 242, + [243] = 243, + [244] = 244, + [245] = 245, + [246] = 246, + [247] = 247, + [248] = 248, + [249] = 249, + [250] = 250, + [251] = 251, + [252] = 252, + [253] = 253, + [254] = 254, + [255] = 255, + [256] = 256, + [257] = 257, + [258] = 258, + [259] = 259, + [260] = 260, + [261] = 261, + [262] = 262, + [263] = 263, + [264] = 264, + [265] = 265, + [266] = 266, + [267] = 267, + [268] = 268, + [269] = 269, + [270] = 270, + [271] = 271, + [272] = 183, + [273] = 187, + [274] = 274, + [275] = 275, + [276] = 183, + [277] = 277, + [278] = 278, + [279] = 198, + [280] = 280, + [281] = 281, + [282] = 282, + [283] = 283, + [284] = 284, + [285] = 285, + [286] = 286, + [287] = 287, + [288] = 288, + [289] = 289, + [290] = 290, + [291] = 291, + [292] = 292, + [293] = 293, + [294] = 294, + [295] = 295, + [296] = 296, + [297] = 297, + [298] = 298, + [299] = 299, + [300] = 300, + [301] = 301, + [302] = 302, + [303] = 303, + [304] = 304, + [305] = 305, + [306] = 306, + [307] = 307, + [308] = 308, + [309] = 309, + [310] = 310, + [311] = 311, + [312] = 312, + [313] = 313, + [314] = 314, + [315] = 315, + [316] = 316, + [317] = 317, + [318] = 318, + [319] = 319, + [320] = 320, + [321] = 321, + [322] = 322, + [323] = 323, + [324] = 324, + [325] = 325, + [326] = 326, + [327] = 327, + [328] = 328, + [329] = 329, + [330] = 330, + [331] = 331, + [332] = 332, + [333] = 333, + [334] = 334, + [335] = 335, + [336] = 336, + [337] = 337, + [338] = 338, + [339] = 339, + [340] = 340, + [341] = 341, + [342] = 342, + [343] = 343, + [344] = 344, + [345] = 345, + [346] = 346, + [347] = 347, + [348] = 348, + [349] = 349, + [350] = 350, + [351] = 351, + [352] = 352, + [353] = 353, + [354] = 354, + [355] = 355, + [356] = 356, + [357] = 357, + [358] = 358, + [359] = 359, + [360] = 360, + [361] = 361, + [362] = 362, + [363] = 185, + [364] = 254, + [365] = 210, + [366] = 211, + [367] = 212, + [368] = 220, + [369] = 221, + [370] = 222, + [371] = 225, + [372] = 226, + [373] = 227, + [374] = 183, + [375] = 187, + [376] = 275, + [377] = 239, + [378] = 184, + [379] = 204, + [380] = 205, + [381] = 206, + [382] = 207, + [383] = 208, + [384] = 209, + [385] = 214, + [386] = 215, + [387] = 216, + [388] = 217, + [389] = 218, + [390] = 219, + [391] = 223, + [392] = 224, + [393] = 202, + [394] = 203, + [395] = 183, + [396] = 187, + [397] = 184, + [398] = 228, + [399] = 229, + [400] = 183, + [401] = 187, + [402] = 184, + [403] = 230, + [404] = 231, + [405] = 185, + [406] = 274, + [407] = 200, + [408] = 233, + [409] = 234, + [410] = 199, + [411] = 238, + [412] = 242, + [413] = 243, + [414] = 244, + [415] = 245, + [416] = 188, + [417] = 246, + [418] = 247, + [419] = 248, + [420] = 249, + [421] = 250, + [422] = 251, + [423] = 252, + [424] = 253, + [425] = 255, + [426] = 256, + [427] = 257, + [428] = 258, + [429] = 259, + [430] = 260, + [431] = 261, + [432] = 262, + [433] = 263, + [434] = 264, + [435] = 265, + [436] = 266, + [437] = 267, + [438] = 268, + [439] = 269, + [440] = 270, + [441] = 271, + [442] = 188, + [443] = 232, + [444] = 354, + [445] = 296, + [446] = 314, + [447] = 178, + [448] = 305, + [449] = 358, + [450] = 360, + [451] = 306, + [452] = 326, + [453] = 311, + [454] = 327, + [455] = 312, + [456] = 328, + [457] = 307, + [458] = 353, + [459] = 361, + [460] = 278, + [461] = 351, + [462] = 362, + [463] = 297, + [464] = 352, + [465] = 300, + [466] = 315, + [467] = 355, + [468] = 356, + [469] = 287, + [470] = 319, + [471] = 320, + [472] = 299, + [473] = 313, + [474] = 308, + [475] = 357, + [476] = 329, + [477] = 288, + [478] = 342, + [479] = 321, + [480] = 325, + [481] = 317, + [482] = 303, + [483] = 301, + [484] = 304, + [485] = 330, + [486] = 323, + [487] = 322, + [488] = 331, + [489] = 332, + [490] = 324, + [491] = 333, + [492] = 334, + [493] = 335, + [494] = 336, + [495] = 337, + [496] = 338, + [497] = 339, + [498] = 340, + [499] = 341, + [500] = 298, + [501] = 302, + [502] = 343, + [503] = 344, + [504] = 345, + [505] = 346, + [506] = 309, + [507] = 310, + [508] = 359, + [509] = 347, + [510] = 285, + [511] = 280, + [512] = 281, + [513] = 282, + [514] = 283, + [515] = 198, + [516] = 284, + [517] = 348, + [518] = 349, + [519] = 286, + [520] = 289, + [521] = 290, + [522] = 291, + [523] = 350, + [524] = 318, + [525] = 292, + [526] = 277, + [527] = 293, + [528] = 294, + [529] = 295, + [530] = 316, + [531] = 268, + [532] = 246, + [533] = 227, + [534] = 247, + [535] = 210, + [536] = 211, + [537] = 212, + [538] = 262, + [539] = 248, + [540] = 249, + [541] = 204, + [542] = 250, + [543] = 263, + [544] = 233, + [545] = 220, + [546] = 221, + [547] = 222, + [548] = 242, + [549] = 254, + [550] = 205, + [551] = 251, + [552] = 202, + [553] = 206, + [554] = 207, + [555] = 203, + [556] = 208, + [557] = 228, + [558] = 180, + [559] = 209, + [560] = 264, + [561] = 265, + [562] = 266, + [563] = 267, + [564] = 214, + [565] = 215, + [566] = 216, + [567] = 217, + [568] = 218, + [569] = 229, + [570] = 226, + [571] = 184, + [572] = 269, + [573] = 270, + [574] = 223, + [575] = 224, + [576] = 183, + [577] = 243, + [578] = 225, + [579] = 252, + [580] = 253, + [581] = 244, + [582] = 271, + [583] = 187, + [584] = 230, + [585] = 231, + [586] = 255, + [587] = 234, + [588] = 274, + [589] = 168, + [590] = 275, + [591] = 256, + [592] = 232, + [593] = 257, + [594] = 258, + [595] = 200, + [596] = 199, + [597] = 239, + [598] = 259, + [599] = 238, + [600] = 260, + [601] = 261, + [602] = 245, + [603] = 219, + [604] = 312, + [605] = 300, + [606] = 301, + [607] = 198, + [608] = 322, + [609] = 324, + [610] = 280, + [611] = 281, + [612] = 282, + [613] = 283, + [614] = 284, + [615] = 289, + [616] = 290, + [617] = 291, + [618] = 292, + [619] = 293, + [620] = 294, + [621] = 295, + [622] = 296, + [623] = 298, + [624] = 299, + [625] = 302, + [626] = 303, + [627] = 304, + [628] = 305, + [629] = 306, + [630] = 307, + [631] = 308, + [632] = 309, + [633] = 310, + [634] = 311, + [635] = 313, + [636] = 314, + [637] = 315, + [638] = 316, + [639] = 317, + [640] = 318, + [641] = 321, + [642] = 326, + [643] = 327, + [644] = 328, + [645] = 329, + [646] = 330, + [647] = 331, + [648] = 198, + [649] = 333, + [650] = 334, + [651] = 335, + [652] = 336, + [653] = 337, + [654] = 338, + [655] = 339, + [656] = 340, + [657] = 341, + [658] = 343, + [659] = 344, + [660] = 345, + [661] = 346, + [662] = 347, + [663] = 348, + [664] = 349, + [665] = 350, + [666] = 277, + [667] = 352, + [668] = 353, + [669] = 354, + [670] = 355, + [671] = 357, + [672] = 358, + [673] = 360, + [674] = 361, + [675] = 278, + [676] = 351, + [677] = 362, + [678] = 297, + [679] = 356, + [680] = 287, + [681] = 319, + [682] = 320, + [683] = 342, + [684] = 359, + [685] = 325, + [686] = 323, + [687] = 288, + [688] = 285, + [689] = 286, + [690] = 332, + [691] = 227, + [692] = 246, + [693] = 204, + [694] = 205, + [695] = 206, + [696] = 207, + [697] = 208, + [698] = 247, + [699] = 209, + [700] = 248, + [701] = 249, + [702] = 275, + [703] = 250, + [704] = 239, + [705] = 202, + [706] = 203, + [707] = 228, + [708] = 200, + [709] = 168, + [710] = 229, + [711] = 204, + [712] = 205, + [713] = 206, + [714] = 207, + [715] = 208, + [716] = 209, + [717] = 232, + [718] = 233, + [719] = 234, + [720] = 199, + [721] = 238, + [722] = 210, + [723] = 211, + [724] = 212, + [725] = 251, + [726] = 210, + [727] = 211, + [728] = 212, + [729] = 185, + [730] = 214, + [731] = 215, + [732] = 216, + [733] = 217, + [734] = 218, + [735] = 219, + [736] = 275, + [737] = 239, + [738] = 252, + [739] = 220, + [740] = 221, + [741] = 222, + [742] = 253, + [743] = 223, + [744] = 224, + [745] = 255, + [746] = 256, + [747] = 257, + [748] = 258, + [749] = 225, + [750] = 226, + [751] = 259, + [752] = 254, + [753] = 248, + [754] = 260, + [755] = 261, + [756] = 249, + [757] = 250, + [758] = 214, + [759] = 215, + [760] = 216, + [761] = 217, + [762] = 218, + [763] = 219, + [764] = 262, + [765] = 183, + [766] = 274, + [767] = 263, + [768] = 264, + [769] = 220, + [770] = 187, + [771] = 252, + [772] = 222, + [773] = 223, + [774] = 224, + [775] = 265, + [776] = 266, + [777] = 267, + [778] = 268, + [779] = 269, + [780] = 184, + [781] = 225, + [782] = 226, + [783] = 270, + [784] = 271, + [785] = 200, + [786] = 253, + [787] = 227, + [788] = 188, + [789] = 255, + [790] = 256, + [791] = 257, + [792] = 258, + [793] = 259, + [794] = 260, + [795] = 261, + [796] = 262, + [797] = 263, + [798] = 264, + [799] = 265, + [800] = 266, + [801] = 267, + [802] = 268, + [803] = 269, + [804] = 270, + [805] = 271, + [806] = 183, + [807] = 230, + [808] = 231, + [809] = 274, + [810] = 187, + [811] = 244, + [812] = 184, + [813] = 242, + [814] = 243, + [815] = 183, + [816] = 187, + [817] = 184, + [818] = 245, + [819] = 246, + [820] = 247, + [821] = 254, + [822] = 245, + [823] = 202, + [824] = 203, + [825] = 228, + [826] = 229, + [827] = 230, + [828] = 231, + [829] = 232, + [830] = 233, + [831] = 234, + [832] = 199, + [833] = 238, + [834] = 251, + [835] = 242, + [836] = 243, + [837] = 244, + [838] = 221, + [839] = 346, + [840] = 341, + [841] = 358, + [842] = 342, + [843] = 359, + [844] = 360, + [845] = 308, + [846] = 344, + [847] = 345, + [848] = 307, + [849] = 291, + [850] = 284, + [851] = 278, + [852] = 292, + [853] = 304, + [854] = 293, + [855] = 347, + [856] = 348, + [857] = 349, + [858] = 350, + [859] = 277, + [860] = 294, + [861] = 352, + [862] = 295, + [863] = 296, + [864] = 351, + [865] = 362, + [866] = 298, + [867] = 309, + [868] = 354, + [869] = 285, + [870] = 355, + [871] = 310, + [872] = 317, + [873] = 297, + [874] = 325, + [875] = 323, + [876] = 311, + [877] = 356, + [878] = 280, + [879] = 290, + [880] = 312, + [881] = 318, + [882] = 287, + [883] = 319, + [884] = 313, + [885] = 314, + [886] = 286, + [887] = 315, + [888] = 357, + [889] = 316, + [890] = 320, + [891] = 326, + [892] = 327, + [893] = 328, + [894] = 288, + [895] = 305, + [896] = 282, + [897] = 306, + [898] = 321, + [899] = 329, + [900] = 330, + [901] = 331, + [902] = 332, + [903] = 333, + [904] = 334, + [905] = 302, + [906] = 335, + [907] = 283, + [908] = 336, + [909] = 289, + [910] = 361, + [911] = 337, + [912] = 338, + [913] = 339, + [914] = 340, + [915] = 303, + [916] = 281, + [917] = 917, + [918] = 917, + [919] = 184, + [920] = 187, + [921] = 183, + [922] = 917, + [923] = 917, + [924] = 917, + [925] = 198, + [926] = 199, + [927] = 267, + [928] = 204, + [929] = 205, + [930] = 206, + [931] = 207, + [932] = 208, + [933] = 209, + [934] = 247, + [935] = 251, + [936] = 242, + [937] = 248, + [938] = 249, + [939] = 250, + [940] = 214, + [941] = 215, + [942] = 216, + [943] = 217, + [944] = 218, + [945] = 219, + [946] = 270, + [947] = 245, + [948] = 254, + [949] = 246, + [950] = 269, + [951] = 231, + [952] = 228, + [953] = 232, + [954] = 202, + [955] = 234, + [956] = 956, + [957] = 238, + [958] = 243, + [959] = 268, + [960] = 265, + [961] = 252, + [962] = 203, + [963] = 223, + [964] = 224, + [965] = 271, + [966] = 275, + [967] = 239, + [968] = 266, + [969] = 253, + [970] = 255, + [971] = 256, + [972] = 257, + [973] = 258, + [974] = 259, + [975] = 260, + [976] = 261, + [977] = 262, + [978] = 263, + [979] = 229, + [980] = 244, + [981] = 274, + [982] = 230, + [983] = 264, + [984] = 233, + [985] = 346, + [986] = 358, + [987] = 351, + [988] = 362, + [989] = 297, + [990] = 990, + [991] = 325, + [992] = 323, + [993] = 284, + [994] = 200, + [995] = 298, + [996] = 357, + [997] = 997, + [998] = 998, + [999] = 302, + [1000] = 303, + [1001] = 304, + [1002] = 305, + [1003] = 306, + [1004] = 360, + [1005] = 1005, + [1006] = 307, + [1007] = 359, + [1008] = 308, + [1009] = 282, + [1010] = 356, + [1011] = 309, + [1012] = 310, + [1013] = 311, + [1014] = 312, + [1015] = 313, + [1016] = 314, + [1017] = 315, + [1018] = 316, + [1019] = 317, + [1020] = 318, + [1021] = 287, + [1022] = 319, + [1023] = 320, + [1024] = 280, + [1025] = 288, + [1026] = 210, + [1027] = 211, + [1028] = 212, + [1029] = 321, + [1030] = 281, + [1031] = 326, + [1032] = 327, + [1033] = 296, + [1034] = 289, + [1035] = 329, + [1036] = 330, + [1037] = 331, + [1038] = 332, + [1039] = 333, + [1040] = 334, + [1041] = 335, + [1042] = 361, + [1043] = 1043, + [1044] = 336, + [1045] = 337, + [1046] = 338, + [1047] = 339, + [1048] = 340, + [1049] = 290, + [1050] = 341, + [1051] = 342, + [1052] = 291, + [1053] = 220, + [1054] = 221, + [1055] = 222, + [1056] = 344, + [1057] = 345, + [1058] = 283, + [1059] = 278, + [1060] = 292, + [1061] = 347, + [1062] = 348, + [1063] = 349, + [1064] = 350, + [1065] = 277, + [1066] = 352, + [1067] = 917, + [1068] = 225, + [1069] = 293, + [1070] = 226, + [1071] = 354, + [1072] = 355, + [1073] = 227, + [1074] = 294, + [1075] = 917, + [1076] = 917, + [1077] = 295, + [1078] = 917, + [1079] = 917, + [1080] = 917, + [1081] = 328, + [1082] = 1082, + [1083] = 956, + [1084] = 1084, + [1085] = 1085, + [1086] = 178, + [1087] = 180, + [1088] = 188, + [1089] = 183, + [1090] = 185, + [1091] = 187, + [1092] = 184, + [1093] = 1093, + [1094] = 1094, + [1095] = 1094, + [1096] = 1094, + [1097] = 1094, + [1098] = 1094, + [1099] = 198, + [1100] = 263, + [1101] = 250, + [1102] = 210, + [1103] = 211, + [1104] = 212, + [1105] = 259, + [1106] = 260, + [1107] = 261, + [1108] = 220, + [1109] = 221, + [1110] = 222, + [1111] = 262, + [1112] = 225, + [1113] = 274, + [1114] = 226, + [1115] = 202, + [1116] = 203, + [1117] = 228, + [1118] = 229, + [1119] = 227, + [1120] = 183, + [1121] = 187, + [1122] = 275, + [1123] = 230, + [1124] = 231, + [1125] = 239, + [1126] = 184, + [1127] = 232, + [1128] = 233, + [1129] = 264, + [1130] = 258, + [1131] = 205, + [1132] = 206, + [1133] = 234, + [1134] = 207, + [1135] = 199, + [1136] = 208, + [1137] = 238, + [1138] = 209, + [1139] = 214, + [1140] = 215, + [1141] = 216, + [1142] = 217, + [1143] = 1085, + [1144] = 218, + [1145] = 219, + [1146] = 223, + [1147] = 224, + [1148] = 242, + [1149] = 265, + [1150] = 243, + [1151] = 266, + [1152] = 1093, + [1153] = 244, + [1154] = 267, + [1155] = 268, + [1156] = 269, + [1157] = 270, + [1158] = 271, + [1159] = 1084, + [1160] = 254, + [1161] = 252, + [1162] = 200, + [1163] = 253, + [1164] = 251, + [1165] = 255, + [1166] = 256, + [1167] = 245, + [1168] = 257, + [1169] = 246, + [1170] = 247, + [1171] = 248, + [1172] = 249, + [1173] = 204, + [1174] = 1174, + [1175] = 1175, + [1176] = 1175, + [1177] = 1177, + [1178] = 1177, + [1179] = 1175, + [1180] = 1174, + [1181] = 1177, + [1182] = 1177, + [1183] = 1175, + [1184] = 1175, + [1185] = 1174, + [1186] = 1177, + [1187] = 1174, + [1188] = 1174, + [1189] = 1189, + [1190] = 1189, + [1191] = 1189, + [1192] = 1189, + [1193] = 1189, + [1194] = 1194, + [1195] = 1195, + [1196] = 1196, + [1197] = 1194, + [1198] = 1198, + [1199] = 1194, + [1200] = 1198, + [1201] = 1201, + [1202] = 1201, + [1203] = 1194, + [1204] = 1194, + [1205] = 1198, + [1206] = 1201, + [1207] = 1207, + [1208] = 1208, + [1209] = 1208, + [1210] = 1208, + [1211] = 1211, + [1212] = 1212, + [1213] = 1211, + [1214] = 1211, + [1215] = 1207, + [1216] = 1208, + [1217] = 1207, + [1218] = 1211, + [1219] = 1211, + [1220] = 1207, + [1221] = 1208, + [1222] = 1207, + [1223] = 1223, + [1224] = 1224, + [1225] = 1225, + [1226] = 1224, + [1227] = 1227, + [1228] = 1228, + [1229] = 1229, + [1230] = 1227, + [1231] = 1231, + [1232] = 1229, + [1233] = 1233, + [1234] = 1234, + [1235] = 1223, + [1236] = 1234, + [1237] = 1237, + [1238] = 1223, + [1239] = 1233, + [1240] = 1234, + [1241] = 1237, + [1242] = 1224, + [1243] = 1228, + [1244] = 1233, + [1245] = 1228, + [1246] = 1246, + [1247] = 1224, + [1248] = 1227, + [1249] = 1228, + [1250] = 1229, + [1251] = 1225, + [1252] = 1225, + [1253] = 1227, + [1254] = 1234, + [1255] = 1225, + [1256] = 1223, + [1257] = 1237, + [1258] = 1234, + [1259] = 1228, + [1260] = 1225, + [1261] = 1233, + [1262] = 1223, + [1263] = 1224, + [1264] = 1227, + [1265] = 1233, + [1266] = 1266, + [1267] = 1267, + [1268] = 1268, + [1269] = 1269, + [1270] = 1270, + [1271] = 1269, + [1272] = 1272, + [1273] = 1273, + [1274] = 1274, + [1275] = 1267, + [1276] = 1272, + [1277] = 1274, + [1278] = 1273, + [1279] = 1267, + [1280] = 1280, + [1281] = 1281, + [1282] = 1282, + [1283] = 1274, + [1284] = 1268, + [1285] = 1266, + [1286] = 1212, + [1287] = 1274, + [1288] = 1280, + [1289] = 1269, + [1290] = 1267, + [1291] = 1268, + [1292] = 1266, + [1293] = 1273, + [1294] = 1294, + [1295] = 1281, + [1296] = 1272, + [1297] = 1294, + [1298] = 1268, + [1299] = 1299, + [1300] = 1266, + [1301] = 1294, + [1302] = 1280, + [1303] = 1281, + [1304] = 1282, + [1305] = 1280, + [1306] = 1282, + [1307] = 1281, + [1308] = 1282, + [1309] = 1269, + [1310] = 1272, + [1311] = 1273, + [1312] = 1267, + [1313] = 1266, + [1314] = 1294, + [1315] = 1274, + [1316] = 1269, + [1317] = 1272, + [1318] = 1282, + [1319] = 1273, + [1320] = 1294, + [1321] = 1280, + [1322] = 1281, + [1323] = 1268, + [1324] = 1324, + [1325] = 1325, + [1326] = 1326, + [1327] = 1327, + [1328] = 1328, + [1329] = 1326, + [1330] = 1330, + [1331] = 1326, + [1332] = 1332, + [1333] = 1332, + [1334] = 1325, + [1335] = 1332, + [1336] = 1336, + [1337] = 1325, + [1338] = 1332, + [1339] = 1332, + [1340] = 1326, + [1341] = 1326, + [1342] = 1325, + [1343] = 1325, + [1344] = 1344, + [1345] = 1345, + [1346] = 1346, + [1347] = 1347, + [1348] = 1348, + [1349] = 1349, + [1350] = 1350, + [1351] = 1351, + [1352] = 1352, + [1353] = 1327, + [1354] = 1354, + [1355] = 1355, + [1356] = 1356, + [1357] = 1357, + [1358] = 1358, + [1359] = 1359, + [1360] = 1360, + [1361] = 1346, + [1362] = 1347, + [1363] = 1348, + [1364] = 1349, + [1365] = 1350, + [1366] = 1351, + [1367] = 1367, + [1368] = 1368, + [1369] = 1369, + [1370] = 1370, + [1371] = 1344, + [1372] = 1372, + [1373] = 1345, + [1374] = 1354, + [1375] = 1355, + [1376] = 1356, + [1377] = 1357, + [1378] = 1358, + [1379] = 1360, + [1380] = 1346, + [1381] = 1347, + [1382] = 1348, + [1383] = 1349, + [1384] = 1350, + [1385] = 1351, + [1386] = 1367, + [1387] = 1368, + [1388] = 1369, + [1389] = 1370, + [1390] = 1344, + [1391] = 1372, + [1392] = 1345, + [1393] = 1354, + [1394] = 1355, + [1395] = 1356, + [1396] = 1357, + [1397] = 1372, + [1398] = 1360, + [1399] = 1346, + [1400] = 1347, + [1401] = 1348, + [1402] = 1349, + [1403] = 1350, + [1404] = 1351, + [1405] = 1367, + [1406] = 1368, + [1407] = 1369, + [1408] = 1370, + [1409] = 1344, + [1410] = 1372, + [1411] = 1345, + [1412] = 1354, + [1413] = 1355, + [1414] = 1356, + [1415] = 1357, + [1416] = 1358, + [1417] = 1360, + [1418] = 1346, + [1419] = 1347, + [1420] = 1348, + [1421] = 1349, + [1422] = 1350, + [1423] = 1351, + [1424] = 1367, + [1425] = 1368, + [1426] = 1369, + [1427] = 1370, + [1428] = 1344, + [1429] = 1372, + [1430] = 1345, + [1431] = 1354, + [1432] = 1355, + [1433] = 1356, + [1434] = 1357, + [1435] = 1358, + [1436] = 1360, + [1437] = 1370, + [1438] = 1367, + [1439] = 1368, + [1440] = 1369, + [1441] = 1358, + [1442] = 1442, + [1443] = 1443, + [1444] = 1444, + [1445] = 1445, + [1446] = 1446, + [1447] = 1447, + [1448] = 1447, + [1449] = 1449, + [1450] = 1450, + [1451] = 1451, + [1452] = 1452, + [1453] = 1453, + [1454] = 1454, + [1455] = 1455, + [1456] = 1456, + [1457] = 1457, + [1458] = 1458, + [1459] = 1459, + [1460] = 1460, + [1461] = 1461, + [1462] = 1462, + [1463] = 1463, + [1464] = 1464, + [1465] = 1465, + [1466] = 1466, + [1467] = 1467, + [1468] = 184, + [1469] = 1469, + [1470] = 1470, + [1471] = 1471, + [1472] = 1472, + [1473] = 1473, + [1474] = 1474, + [1475] = 1475, + [1476] = 1476, + [1477] = 1477, + [1478] = 1478, + [1479] = 1479, + [1480] = 1480, + [1481] = 1481, + [1482] = 1482, + [1483] = 1483, + [1484] = 1484, + [1485] = 1485, + [1486] = 1486, + [1487] = 1487, + [1488] = 1488, + [1489] = 1489, + [1490] = 1490, + [1491] = 1491, + [1492] = 1492, + [1493] = 183, + [1494] = 1494, + [1495] = 1495, + [1496] = 1496, + [1497] = 1497, + [1498] = 1498, + [1499] = 1499, + [1500] = 1500, + [1501] = 1501, + [1502] = 187, + [1503] = 1503, + [1504] = 1487, + [1505] = 1505, + [1506] = 1506, + [1507] = 1507, + [1508] = 1508, + [1509] = 1509, + [1510] = 1510, + [1511] = 1511, + [1512] = 1512, + [1513] = 1513, + [1514] = 1514, + [1515] = 1515, + [1516] = 1516, + [1517] = 1517, + [1518] = 1518, + [1519] = 1519, + [1520] = 1520, + [1521] = 1521, + [1522] = 1522, + [1523] = 1523, + [1524] = 1524, + [1525] = 1525, + [1526] = 1526, + [1527] = 1527, + [1528] = 1523, + [1529] = 1529, + [1530] = 1530, + [1531] = 1527, + [1532] = 1527, + [1533] = 1533, + [1534] = 1525, + [1535] = 1524, + [1536] = 1525, + [1537] = 1523, + [1538] = 1524, + [1539] = 1539, + [1540] = 1539, + [1541] = 1541, + [1542] = 1541, + [1543] = 1539, + [1544] = 1539, + [1545] = 1541, + [1546] = 1541, + [1547] = 1539, + [1548] = 1541, + [1549] = 1541, + [1550] = 1541, + [1551] = 1539, + [1552] = 1541, + [1553] = 1539, + [1554] = 1541, + [1555] = 1539, + [1556] = 1539, + [1557] = 1539, + [1558] = 1539, + [1559] = 1541, + [1560] = 1541, + [1561] = 1539, + [1562] = 1541, + [1563] = 183, + [1564] = 187, + [1565] = 1565, + [1566] = 1566, + [1567] = 1567, + [1568] = 1568, + [1569] = 1569, + [1570] = 1570, + [1571] = 1571, + [1572] = 1572, + [1573] = 1573, + [1574] = 1574, + [1575] = 1575, + [1576] = 1576, + [1577] = 1577, + [1578] = 1578, + [1579] = 1579, + [1580] = 184, + [1581] = 1581, + [1582] = 1508, + [1583] = 1583, + [1584] = 1584, + [1585] = 1585, + [1586] = 1585, + [1587] = 1587, + [1588] = 1588, + [1589] = 1588, + [1590] = 1588, + [1591] = 1591, + [1592] = 1587, + [1593] = 1593, + [1594] = 1594, + [1595] = 1593, + [1596] = 1594, + [1597] = 1443, + [1598] = 1591, + [1599] = 1588, + [1600] = 1588, + [1601] = 1588, + [1602] = 1602, + [1603] = 1588, + [1604] = 1594, + [1605] = 1565, + [1606] = 1606, + [1607] = 1588, + [1608] = 1442, + [1609] = 1594, + [1610] = 1588, + [1611] = 1444, + [1612] = 1594, + [1613] = 1588, + [1614] = 1588, + [1615] = 1587, + [1616] = 1587, + [1617] = 1587, + [1618] = 1565, + [1619] = 1619, + [1620] = 1587, + [1621] = 1619, + [1622] = 1587, + [1623] = 1587, + [1624] = 1588, + [1625] = 1455, + [1626] = 1444, + [1627] = 1452, + [1628] = 1449, + [1629] = 1450, + [1630] = 1454, + [1631] = 1445, + [1632] = 1456, + [1633] = 1443, + [1634] = 1442, + [1635] = 1451, + [1636] = 1636, + [1637] = 1446, + [1638] = 1477, + [1639] = 1494, + [1640] = 1475, + [1641] = 1496, + [1642] = 1498, + [1643] = 1521, + [1644] = 1499, + [1645] = 1500, + [1646] = 1471, + [1647] = 1476, + [1648] = 1503, + [1649] = 1470, + [1650] = 1505, + [1651] = 1513, + [1652] = 1517, + [1653] = 1519, + [1654] = 1520, + [1655] = 1466, + [1656] = 1510, + [1657] = 1491, + [1658] = 1485, + [1659] = 1465, + [1660] = 1458, + [1661] = 1459, + [1662] = 1507, + [1663] = 1514, + [1664] = 1492, + [1665] = 1483, + [1666] = 1484, + [1667] = 1447, + [1668] = 1495, + [1669] = 1461, + [1670] = 1462, + [1671] = 1481, + [1672] = 1457, + [1673] = 1467, + [1674] = 1518, + [1675] = 1490, + [1676] = 1522, + [1677] = 1506, + [1678] = 1512, + [1679] = 1491, + [1680] = 1465, + [1681] = 1470, + [1682] = 1475, + [1683] = 1476, + [1684] = 1684, + [1685] = 1685, + [1686] = 1686, + [1687] = 1687, + [1688] = 1688, + [1689] = 1685, + [1690] = 1690, + [1691] = 1691, + [1692] = 1445, + [1693] = 1693, + [1694] = 1691, + [1695] = 1695, + [1696] = 1696, + [1697] = 1693, + [1698] = 1445, + [1699] = 1695, + [1700] = 1688, + [1701] = 1695, + [1702] = 1686, + [1703] = 1687, + [1704] = 1696, + [1705] = 1686, + [1706] = 1687, + [1707] = 1684, + [1708] = 1684, + [1709] = 1709, + [1710] = 1690, + [1711] = 1688, + [1712] = 1685, + [1713] = 1709, + [1714] = 1709, + [1715] = 1691, + [1716] = 1690, + [1717] = 1693, + [1718] = 1718, + [1719] = 1718, + [1720] = 1718, + [1721] = 1696, + [1722] = 1722, + [1723] = 1723, + [1724] = 1724, + [1725] = 1725, + [1726] = 1725, + [1727] = 1724, + [1728] = 1723, + [1729] = 1722, + [1730] = 1723, + [1731] = 1723, + [1732] = 1725, + [1733] = 1724, + [1734] = 1722, + [1735] = 1723, + [1736] = 1447, + [1737] = 1737, + [1738] = 1578, + [1739] = 1739, + [1740] = 1572, + [1741] = 1579, + [1742] = 1742, + [1743] = 1743, + [1744] = 1744, + [1745] = 1566, + [1746] = 1746, + [1747] = 1746, + [1748] = 1748, + [1749] = 1749, + [1750] = 1749, + [1751] = 1569, + [1752] = 1570, + [1753] = 1753, + [1754] = 1749, + [1755] = 1742, + [1756] = 1746, + [1757] = 1573, + [1758] = 1742, + [1759] = 1759, + [1760] = 1574, + [1761] = 1761, + [1762] = 1575, + [1763] = 1753, + [1764] = 1759, + [1765] = 1581, + [1766] = 1567, + [1767] = 1576, + [1768] = 1753, + [1769] = 1748, + [1770] = 1568, + [1771] = 1771, + [1772] = 1772, + [1773] = 1748, + [1774] = 1759, + [1775] = 1577, + [1776] = 1571, + [1777] = 1463, + [1778] = 1778, + [1779] = 1779, + [1780] = 1780, + [1781] = 1781, + [1782] = 1782, + [1783] = 1783, + [1784] = 1783, + [1785] = 1785, + [1786] = 1786, + [1787] = 1779, + [1788] = 1788, + [1789] = 1474, + [1790] = 1788, + [1791] = 1786, + [1792] = 1780, + [1793] = 1781, + [1794] = 1794, + [1795] = 1488, + [1796] = 1489, + [1797] = 1797, + [1798] = 1798, + [1799] = 1799, + [1800] = 1782, + [1801] = 1783, + [1802] = 1802, + [1803] = 1803, + [1804] = 1785, + [1805] = 1509, + [1806] = 1511, + [1807] = 1785, + [1808] = 1779, + [1809] = 1778, + [1810] = 1786, + [1811] = 1794, + [1812] = 1788, + [1813] = 1797, + [1814] = 1799, + [1815] = 1802, + [1816] = 1803, + [1817] = 1778, + [1818] = 1794, + [1819] = 1782, + [1820] = 1780, + [1821] = 1472, + [1822] = 1797, + [1823] = 1781, + [1824] = 1799, + [1825] = 1478, + [1826] = 1802, + [1827] = 1497, + [1828] = 1464, + [1829] = 1803, + [1830] = 1447, + [1831] = 1831, + [1832] = 1831, + [1833] = 1833, + [1834] = 1831, + [1835] = 1833, + [1836] = 1836, + [1837] = 1837, + [1838] = 1838, + [1839] = 1837, + [1840] = 1840, + [1841] = 1836, + [1842] = 1842, + [1843] = 1843, + [1844] = 1843, + [1845] = 1838, + [1846] = 1846, + [1847] = 1847, + [1848] = 1843, + [1849] = 1838, + [1850] = 1850, + [1851] = 1840, + [1852] = 1852, + [1853] = 1847, + [1854] = 1854, + [1855] = 1842, + [1856] = 1856, + [1857] = 1856, + [1858] = 1858, + [1859] = 1850, + [1860] = 1846, + [1861] = 1861, + [1862] = 1858, + [1863] = 1846, + [1864] = 1864, + [1865] = 1865, + [1866] = 1847, + [1867] = 1865, + [1868] = 1837, + [1869] = 1852, + [1870] = 1850, + [1871] = 1864, + [1872] = 1852, + [1873] = 1861, + [1874] = 1854, + [1875] = 1840, + [1876] = 1876, + [1877] = 1858, + [1878] = 1842, + [1879] = 1865, + [1880] = 1854, + [1881] = 1856, + [1882] = 1876, + [1883] = 1876, + [1884] = 1861, + [1885] = 1836, + [1886] = 1864, + [1887] = 1887, + [1888] = 1888, + [1889] = 1889, + [1890] = 1890, + [1891] = 1891, + [1892] = 1892, + [1893] = 1893, + [1894] = 1894, + [1895] = 1895, + [1896] = 1896, + [1897] = 1890, + [1898] = 1888, + [1899] = 1888, + [1900] = 1889, + [1901] = 1901, + [1902] = 1902, + [1903] = 1895, + [1904] = 1904, + [1905] = 1895, + [1906] = 1890, + [1907] = 1888, + [1908] = 1908, + [1909] = 1889, + [1910] = 1895, + [1911] = 1890, + [1912] = 1888, + [1913] = 1889, + [1914] = 1914, + [1915] = 1915, + [1916] = 1889, + [1917] = 1917, + [1918] = 1890, + [1919] = 1895, + [1920] = 1576, + [1921] = 1569, + [1922] = 1442, + [1923] = 1444, + [1924] = 1443, + [1925] = 1567, + [1926] = 1570, + [1927] = 1571, + [1928] = 1572, + [1929] = 1573, + [1930] = 1574, + [1931] = 1575, + [1932] = 1577, + [1933] = 1578, + [1934] = 1579, + [1935] = 1581, + [1936] = 1568, + [1937] = 1566, + [1938] = 1938, + [1939] = 205, + [1940] = 206, + [1941] = 207, + [1942] = 1938, + [1943] = 208, + [1944] = 209, + [1945] = 1945, + [1946] = 1946, + [1947] = 1947, + [1948] = 1472, + [1949] = 1474, + [1950] = 1945, + [1951] = 1951, + [1952] = 1946, + [1953] = 1947, + [1954] = 1954, + [1955] = 1478, + [1956] = 1956, + [1957] = 239, + [1958] = 1958, + [1959] = 1959, + [1960] = 1960, + [1961] = 214, + [1962] = 215, + [1963] = 216, + [1964] = 275, + [1965] = 217, + [1966] = 1488, + [1967] = 1489, + [1968] = 218, + [1969] = 219, + [1970] = 1945, + [1971] = 1946, + [1972] = 1954, + [1973] = 1947, + [1974] = 1974, + [1975] = 1497, + [1976] = 1958, + [1977] = 1977, + [1978] = 1978, + [1979] = 1959, + [1980] = 1463, + [1981] = 1464, + [1982] = 1956, + [1983] = 1974, + [1984] = 1960, + [1985] = 1954, + [1986] = 1938, + [1987] = 1511, + [1988] = 1958, + [1989] = 1951, + [1990] = 1959, + [1991] = 1991, + [1992] = 1951, + [1993] = 1904, + [1994] = 1956, + [1995] = 1508, + [1996] = 204, + [1997] = 1960, + [1998] = 223, + [1999] = 1999, + [2000] = 224, + [2001] = 1509, + [2002] = 1974, + [2003] = 1475, + [2004] = 2004, + [2005] = 2005, + [2006] = 1465, + [2007] = 2007, + [2008] = 2008, + [2009] = 2009, + [2010] = 2010, + [2011] = 2010, + [2012] = 2012, + [2013] = 2010, + [2014] = 2014, + [2015] = 2015, + [2016] = 2004, + [2017] = 2017, + [2018] = 2018, + [2019] = 2019, + [2020] = 2020, + [2021] = 2008, + [2022] = 2022, + [2023] = 2023, + [2024] = 2014, + [2025] = 2015, + [2026] = 2004, + [2027] = 2017, + [2028] = 2018, + [2029] = 2019, + [2030] = 2020, + [2031] = 2008, + [2032] = 2022, + [2033] = 2023, + [2034] = 2020, + [2035] = 2007, + [2036] = 2036, + [2037] = 2037, + [2038] = 1470, + [2039] = 2007, + [2040] = 2014, + [2041] = 2022, + [2042] = 2018, + [2043] = 2043, + [2044] = 358, + [2045] = 360, + [2046] = 2046, + [2047] = 1491, + [2048] = 2023, + [2049] = 2005, + [2050] = 357, + [2051] = 2005, + [2052] = 2036, + [2053] = 351, + [2054] = 2036, + [2055] = 2037, + [2056] = 2036, + [2057] = 2037, + [2058] = 2036, + [2059] = 2037, + [2060] = 2037, + [2061] = 2037, + [2062] = 1476, + [2063] = 2037, + [2064] = 2019, + [2065] = 2065, + [2066] = 2015, + [2067] = 2017, + [2068] = 1575, + [2069] = 2069, + [2070] = 1977, + [2071] = 1445, + [2072] = 1904, + [2073] = 183, + [2074] = 187, + [2075] = 184, + [2076] = 956, + [2077] = 2077, + [2078] = 1445, + [2079] = 2079, + [2080] = 2080, + [2081] = 2081, + [2082] = 299, + [2083] = 353, + [2084] = 1566, + [2085] = 2085, + [2086] = 1977, + [2087] = 2087, + [2088] = 183, + [2089] = 187, + [2090] = 184, + [2091] = 1082, + [2092] = 343, + [2093] = 2069, + [2094] = 1567, + [2095] = 1570, + [2096] = 1571, + [2097] = 1572, + [2098] = 1573, + [2099] = 1574, + [2100] = 1569, + [2101] = 1576, + [2102] = 1577, + [2103] = 1578, + [2104] = 1579, + [2105] = 1581, + [2106] = 1568, + [2107] = 2107, + [2108] = 2108, + [2109] = 225, + [2110] = 226, + [2111] = 227, + [2112] = 2112, + [2113] = 2113, + [2114] = 275, + [2115] = 239, + [2116] = 204, + [2117] = 205, + [2118] = 206, + [2119] = 207, + [2120] = 208, + [2121] = 209, + [2122] = 214, + [2123] = 215, + [2124] = 216, + [2125] = 217, + [2126] = 218, + [2127] = 219, + [2128] = 223, + [2129] = 224, + [2130] = 2130, + [2131] = 2131, + [2132] = 227, + [2133] = 2085, + [2134] = 2134, + [2135] = 2135, + [2136] = 2136, + [2137] = 2108, + [2138] = 325, + [2139] = 226, + [2140] = 323, + [2141] = 200, + [2142] = 2142, + [2143] = 2143, + [2144] = 200, + [2145] = 2145, + [2146] = 2146, + [2147] = 2136, + [2148] = 2148, + [2149] = 2143, + [2150] = 288, + [2151] = 225, + [2152] = 2152, + [2153] = 361, + [2154] = 357, + [2155] = 220, + [2156] = 221, + [2157] = 222, + [2158] = 2158, + [2159] = 210, + [2160] = 2160, + [2161] = 2161, + [2162] = 358, + [2163] = 2163, + [2164] = 359, + [2165] = 360, + [2166] = 359, + [2167] = 356, + [2168] = 2085, + [2169] = 2163, + [2170] = 2142, + [2171] = 2135, + [2172] = 2172, + [2173] = 351, + [2174] = 2152, + [2175] = 325, + [2176] = 2176, + [2177] = 2161, + [2178] = 323, + [2179] = 2163, + [2180] = 2145, + [2181] = 2161, + [2182] = 278, + [2183] = 2163, + [2184] = 210, + [2185] = 2161, + [2186] = 2161, + [2187] = 2163, + [2188] = 2163, + [2189] = 2189, + [2190] = 2163, + [2191] = 2163, + [2192] = 288, + [2193] = 361, + [2194] = 1508, + [2195] = 2172, + [2196] = 2196, + [2197] = 211, + [2198] = 212, + [2199] = 212, + [2200] = 2200, + [2201] = 356, + [2202] = 220, + [2203] = 2203, + [2204] = 2204, + [2205] = 221, + [2206] = 278, + [2207] = 2207, + [2208] = 222, + [2209] = 211, + [2210] = 2210, + [2211] = 2211, + [2212] = 362, + [2213] = 322, + [2214] = 300, + [2215] = 287, + [2216] = 183, + [2217] = 187, + [2218] = 324, + [2219] = 2219, + [2220] = 2085, + [2221] = 184, + [2222] = 360, + [2223] = 287, + [2224] = 2224, + [2225] = 2225, + [2226] = 351, + [2227] = 2227, + [2228] = 2228, + [2229] = 2229, + [2230] = 301, + [2231] = 2231, + [2232] = 2232, + [2233] = 357, + [2234] = 2234, + [2235] = 2235, + [2236] = 2236, + [2237] = 2237, + [2238] = 2238, + [2239] = 2239, + [2240] = 2240, + [2241] = 2241, + [2242] = 2242, + [2243] = 362, + [2244] = 2244, + [2245] = 2245, + [2246] = 2228, + [2247] = 358, + [2248] = 2248, + [2249] = 2249, + [2250] = 2136, + [2251] = 359, + [2252] = 2200, + [2253] = 362, + [2254] = 325, + [2255] = 323, + [2256] = 2130, + [2257] = 2207, + [2258] = 2131, + [2259] = 2259, + [2260] = 2260, + [2261] = 2160, + [2262] = 287, + [2263] = 288, + [2264] = 2264, + [2265] = 2113, + [2266] = 2196, + [2267] = 2267, + [2268] = 2200, + [2269] = 2108, + [2270] = 2270, + [2271] = 2204, + [2272] = 2146, + [2273] = 2273, + [2274] = 200, + [2275] = 2130, + [2276] = 2131, + [2277] = 2277, + [2278] = 2277, + [2279] = 210, + [2280] = 211, + [2281] = 212, + [2282] = 2282, + [2283] = 220, + [2284] = 221, + [2285] = 222, + [2286] = 225, + [2287] = 226, + [2288] = 227, + [2289] = 275, + [2290] = 239, + [2291] = 204, + [2292] = 205, + [2293] = 2293, + [2294] = 206, + [2295] = 207, + [2296] = 208, + [2297] = 209, + [2298] = 214, + [2299] = 2143, + [2300] = 215, + [2301] = 216, + [2302] = 217, + [2303] = 218, + [2304] = 219, + [2305] = 223, + [2306] = 224, + [2307] = 2270, + [2308] = 2293, + [2309] = 2309, + [2310] = 2310, + [2311] = 2311, + [2312] = 2312, + [2313] = 2313, + [2314] = 2314, + [2315] = 2113, + [2316] = 2316, + [2317] = 361, + [2318] = 278, + [2319] = 2319, + [2320] = 2152, + [2321] = 2158, + [2322] = 2311, + [2323] = 2135, + [2324] = 2310, + [2325] = 2325, + [2326] = 2158, + [2327] = 2172, + [2328] = 2328, + [2329] = 2260, + [2330] = 2330, + [2331] = 2313, + [2332] = 2176, + [2333] = 2333, + [2334] = 2112, + [2335] = 2314, + [2336] = 2319, + [2337] = 356, + [2338] = 2145, + [2339] = 2207, + [2340] = 2264, + [2341] = 2176, + [2342] = 2267, + [2343] = 2343, + [2344] = 2112, + [2345] = 2160, + [2346] = 2189, + [2347] = 2196, + [2348] = 2146, + [2349] = 2142, + [2350] = 2259, + [2351] = 2189, + [2352] = 2204, + [2353] = 301, + [2354] = 300, + [2355] = 2237, + [2356] = 2356, + [2357] = 322, + [2358] = 2210, + [2359] = 2239, + [2360] = 2360, + [2361] = 1084, + [2362] = 2362, + [2363] = 2245, + [2364] = 2231, + [2365] = 2229, + [2366] = 2219, + [2367] = 2367, + [2368] = 2368, + [2369] = 2232, + [2370] = 2245, + [2371] = 2371, + [2372] = 301, + [2373] = 2373, + [2374] = 2231, + [2375] = 2248, + [2376] = 2244, + [2377] = 2241, + [2378] = 2238, + [2379] = 2211, + [2380] = 324, + [2381] = 2381, + [2382] = 2382, + [2383] = 2239, + [2384] = 2229, + [2385] = 2232, + [2386] = 2219, + [2387] = 2236, + [2388] = 2241, + [2389] = 2238, + [2390] = 2236, + [2391] = 2242, + [2392] = 2244, + [2393] = 322, + [2394] = 2224, + [2395] = 2235, + [2396] = 2227, + [2397] = 2235, + [2398] = 2227, + [2399] = 2240, + [2400] = 2242, + [2401] = 2237, + [2402] = 1085, + [2403] = 300, + [2404] = 2248, + [2405] = 2210, + [2406] = 2211, + [2407] = 2224, + [2408] = 324, + [2409] = 2240, + [2410] = 2311, + [2411] = 2260, + [2412] = 2267, + [2413] = 2413, + [2414] = 2414, + [2415] = 2415, + [2416] = 2312, + [2417] = 2417, + [2418] = 2319, + [2419] = 2270, + [2420] = 2277, + [2421] = 2417, + [2422] = 2264, + [2423] = 2423, + [2424] = 2413, + [2425] = 2414, + [2426] = 2415, + [2427] = 2259, + [2428] = 2313, + [2429] = 2293, + [2430] = 2314, + [2431] = 2310, + [2432] = 2432, + [2433] = 2433, + [2434] = 2434, + [2435] = 2433, + [2436] = 2436, + [2437] = 2436, + [2438] = 2434, + [2439] = 2433, + [2440] = 2434, + [2441] = 2441, + [2442] = 2433, + [2443] = 2432, + [2444] = 2444, + [2445] = 2432, + [2446] = 2444, + [2447] = 2436, + [2448] = 2441, + [2449] = 2449, + [2450] = 2444, + [2451] = 2432, + [2452] = 2432, + [2453] = 2432, + [2454] = 2444, + [2455] = 2434, + [2456] = 2432, + [2457] = 2433, + [2458] = 2444, + [2459] = 2441, + [2460] = 2436, + [2461] = 2433, + [2462] = 2434, + [2463] = 2433, + [2464] = 2464, + [2465] = 2444, + [2466] = 2434, + [2467] = 2432, + [2468] = 2436, + [2469] = 2441, + [2470] = 2441, + [2471] = 2436, + [2472] = 2444, + [2473] = 2464, + [2474] = 2441, + [2475] = 2433, + [2476] = 2464, + [2477] = 2434, + [2478] = 2434, + [2479] = 2464, + [2480] = 2444, + [2481] = 2436, + [2482] = 2464, + [2483] = 2464, + [2484] = 2436, + [2485] = 2441, + [2486] = 2441, + [2487] = 2464, + [2488] = 2488, + [2489] = 2489, + [2490] = 2490, + [2491] = 2491, + [2492] = 2492, + [2493] = 2493, + [2494] = 2490, + [2495] = 2495, + [2496] = 2496, + [2497] = 2497, + [2498] = 1567, + [2499] = 1570, + [2500] = 1571, + [2501] = 1572, + [2502] = 1573, + [2503] = 1574, + [2504] = 1575, + [2505] = 1576, + [2506] = 1577, + [2507] = 1578, + [2508] = 2508, + [2509] = 1581, + [2510] = 1568, + [2511] = 2511, + [2512] = 2512, + [2513] = 2513, + [2514] = 2514, + [2515] = 2515, + [2516] = 2516, + [2517] = 2495, + [2518] = 2518, + [2519] = 2519, + [2520] = 2493, + [2521] = 2521, + [2522] = 2522, + [2523] = 2523, + [2524] = 2524, + [2525] = 1566, + [2526] = 2526, + [2527] = 1569, + [2528] = 2514, + [2529] = 1579, + [2530] = 2530, + [2531] = 2531, + [2532] = 2532, + [2533] = 2521, + [2534] = 2534, + [2535] = 2511, + [2536] = 2536, + [2537] = 168, + [2538] = 2538, + [2539] = 2539, + [2540] = 2540, + [2541] = 2541, + [2542] = 2542, + [2543] = 2543, + [2544] = 2511, + [2545] = 2545, + [2546] = 2546, + [2547] = 2531, + [2548] = 2538, + [2549] = 2549, + [2550] = 2538, + [2551] = 2531, + [2552] = 2552, + [2553] = 2543, + [2554] = 2554, + [2555] = 2545, + [2556] = 2554, + [2557] = 2539, + [2558] = 2558, + [2559] = 2536, + [2560] = 2560, + [2561] = 2561, + [2562] = 2562, + [2563] = 2563, + [2564] = 2561, + [2565] = 2565, + [2566] = 2565, + [2567] = 2567, + [2568] = 2568, + [2569] = 2567, + [2570] = 2560, + [2571] = 2562, + [2572] = 2572, + [2573] = 2563, + [2574] = 2572, + [2575] = 2561, + [2576] = 2576, + [2577] = 2563, + [2578] = 2561, + [2579] = 2563, + [2580] = 2560, + [2581] = 2511, + [2582] = 2561, + [2583] = 2563, + [2584] = 2584, + [2585] = 2561, + [2586] = 2563, + [2587] = 2565, + [2588] = 2567, + [2589] = 2561, + [2590] = 2563, + [2591] = 2561, + [2592] = 2563, + [2593] = 2562, + [2594] = 2565, + [2595] = 2567, + [2596] = 2562, + [2597] = 2560, + [2598] = 2565, + [2599] = 2567, + [2600] = 2562, + [2601] = 2560, + [2602] = 1575, + [2603] = 2603, + [2604] = 2604, + [2605] = 2605, + [2606] = 2606, + [2607] = 2607, + [2608] = 2608, + [2609] = 2609, + [2610] = 2610, + [2611] = 2611, + [2612] = 2612, + [2613] = 2613, + [2614] = 2614, + [2615] = 2615, + [2616] = 2616, + [2617] = 2617, + [2618] = 2618, + [2619] = 357, + [2620] = 358, + [2621] = 360, + [2622] = 1772, + [2623] = 2623, + [2624] = 351, + [2625] = 362, + [2626] = 2626, + [2627] = 2627, + [2628] = 2628, + [2629] = 287, + [2630] = 2630, + [2631] = 2631, + [2632] = 2632, + [2633] = 2633, + [2634] = 2634, + [2635] = 2635, + [2636] = 2636, + [2637] = 2637, + [2638] = 2638, + [2639] = 2639, + [2640] = 2640, + [2641] = 2641, + [2642] = 2642, + [2643] = 2637, + [2644] = 2644, + [2645] = 2645, + [2646] = 1567, + [2647] = 1570, + [2648] = 1571, + [2649] = 1572, + [2650] = 1573, + [2651] = 1574, + [2652] = 2652, + [2653] = 1576, + [2654] = 1577, + [2655] = 1578, + [2656] = 1579, + [2657] = 1581, + [2658] = 1568, + [2659] = 1739, + [2660] = 2660, + [2661] = 2661, + [2662] = 2662, + [2663] = 2663, + [2664] = 1566, + [2665] = 1569, + [2666] = 2666, + [2667] = 2667, + [2668] = 2668, + [2669] = 2669, + [2670] = 956, + [2671] = 2671, + [2672] = 2671, + [2673] = 2671, + [2674] = 1082, + [2675] = 2671, + [2676] = 2671, + [2677] = 2677, + [2678] = 2678, + [2679] = 2679, + [2680] = 2680, + [2681] = 168, + [2682] = 2682, + [2683] = 2683, + [2684] = 2684, + [2685] = 2685, + [2686] = 2686, + [2687] = 2687, + [2688] = 2688, + [2689] = 2689, + [2690] = 2679, + [2691] = 2685, + [2692] = 2680, + [2693] = 2693, + [2694] = 2694, + [2695] = 2695, + [2696] = 2696, + [2697] = 1475, + [2698] = 2698, + [2699] = 168, + [2700] = 2632, + [2701] = 2645, + [2702] = 2660, + [2703] = 2661, + [2704] = 2662, + [2705] = 2663, + [2706] = 2603, + [2707] = 2604, + [2708] = 2605, + [2709] = 2606, + [2710] = 2710, + [2711] = 2618, + [2712] = 2618, + [2713] = 2623, + [2714] = 2642, + [2715] = 2609, + [2716] = 2610, + [2717] = 2611, + [2718] = 2718, + [2719] = 2612, + [2720] = 2613, + [2721] = 2615, + [2722] = 2616, + [2723] = 2617, + [2724] = 2626, + [2725] = 2628, + [2726] = 2630, + [2727] = 2631, + [2728] = 2633, + [2729] = 2669, + [2730] = 2635, + [2731] = 2636, + [2732] = 2638, + [2733] = 2639, + [2734] = 2640, + [2735] = 2641, + [2736] = 2736, + [2737] = 2607, + [2738] = 2608, + [2739] = 2645, + [2740] = 2660, + [2741] = 2661, + [2742] = 2662, + [2743] = 2663, + [2744] = 2603, + [2745] = 2604, + [2746] = 2605, + [2747] = 2606, + [2748] = 2627, + [2749] = 2623, + [2750] = 2642, + [2751] = 2607, + [2752] = 2608, + [2753] = 1465, + [2754] = 2609, + [2755] = 1470, + [2756] = 2644, + [2757] = 2757, + [2758] = 2758, + [2759] = 2610, + [2760] = 2611, + [2761] = 2644, + [2762] = 2626, + [2763] = 2628, + [2764] = 2630, + [2765] = 2631, + [2766] = 2666, + [2767] = 2632, + [2768] = 2633, + [2769] = 2667, + [2770] = 2669, + [2771] = 2668, + [2772] = 2652, + [2773] = 2627, + [2774] = 2635, + [2775] = 2636, + [2776] = 2638, + [2777] = 2639, + [2778] = 2640, + [2779] = 2641, + [2780] = 2612, + [2781] = 2613, + [2782] = 2615, + [2783] = 2783, + [2784] = 2616, + [2785] = 2617, + [2786] = 2666, + [2787] = 2667, + [2788] = 2668, + [2789] = 2652, + [2790] = 2790, + [2791] = 2686, + [2792] = 2792, + [2793] = 2793, + [2794] = 2794, + [2795] = 2795, + [2796] = 2687, + [2797] = 2797, + [2798] = 2798, + [2799] = 2799, + [2800] = 2800, + [2801] = 2801, + [2802] = 2802, + [2803] = 2803, + [2804] = 2804, + [2805] = 2802, + [2806] = 2806, + [2807] = 2807, + [2808] = 2808, + [2809] = 2809, + [2810] = 2810, + [2811] = 2811, + [2812] = 2812, + [2813] = 2808, + [2814] = 2808, + [2815] = 2808, + [2816] = 2816, + [2817] = 2817, + [2818] = 2818, + [2819] = 2819, + [2820] = 2809, + [2821] = 2821, + [2822] = 2822, + [2823] = 2823, + [2824] = 2822, + [2825] = 2808, + [2826] = 2826, + [2827] = 2827, + [2828] = 2828, + [2829] = 2829, + [2830] = 2795, + [2831] = 2831, + [2832] = 2826, + [2833] = 2833, + [2834] = 2827, + [2835] = 2835, + [2836] = 2826, + [2837] = 2831, + [2838] = 2829, + [2839] = 2839, + [2840] = 2826, + [2841] = 2800, + [2842] = 2826, + [2843] = 2835, + [2844] = 2844, + [2845] = 2839, + [2846] = 2844, + [2847] = 2847, + [2848] = 2835, + [2849] = 2831, + [2850] = 2839, + [2851] = 2831, + [2852] = 2839, + [2853] = 2826, + [2854] = 2844, + [2855] = 2826, + [2856] = 2844, + [2857] = 2857, + [2858] = 2839, + [2859] = 2827, + [2860] = 2844, + [2861] = 2827, + [2862] = 2829, + [2863] = 2826, + [2864] = 2831, + [2865] = 2827, + [2866] = 2866, + [2867] = 2866, + [2868] = 2866, + [2869] = 2869, + [2870] = 2870, + [2871] = 2871, + [2872] = 2872, + [2873] = 2871, + [2874] = 168, + [2875] = 2875, + [2876] = 2876, + [2877] = 2827, + [2878] = 2878, + [2879] = 2046, + [2880] = 2871, + [2881] = 2871, + [2882] = 2871, + [2883] = 2883, + [2884] = 2884, + [2885] = 2871, + [2886] = 2871, + [2887] = 2887, + [2888] = 2871, + [2889] = 2827, + [2890] = 2827, + [2891] = 2891, + [2892] = 2892, + [2893] = 2893, + [2894] = 2892, + [2895] = 2895, + [2896] = 2896, + [2897] = 2897, + [2898] = 2898, + [2899] = 2897, + [2900] = 2900, + [2901] = 2896, + [2902] = 2902, + [2903] = 2896, + [2904] = 2892, + [2905] = 2896, + [2906] = 2906, + [2907] = 2907, + [2908] = 2906, + [2909] = 2893, + [2910] = 2896, + [2911] = 2827, + [2912] = 2893, + [2913] = 2906, + [2914] = 2914, + [2915] = 2896, + [2916] = 2896, + [2917] = 2827, + [2918] = 2897, + [2919] = 2896, + [2920] = 2920, + [2921] = 2921, + [2922] = 2922, + [2923] = 2923, + [2924] = 2924, + [2925] = 2925, + [2926] = 2926, + [2927] = 2927, + [2928] = 2489, + [2929] = 2929, + [2930] = 2930, + [2931] = 2931, + [2932] = 2932, + [2933] = 2933, + [2934] = 2934, + [2935] = 2935, + [2936] = 2936, + [2937] = 2488, + [2938] = 2938, + [2939] = 2939, + [2940] = 2940, + [2941] = 2931, + [2942] = 2942, + [2943] = 2943, + [2944] = 2944, + [2945] = 2945, + [2946] = 2946, + [2947] = 2947, + [2948] = 2948, + [2949] = 2949, + [2950] = 2950, + [2951] = 2951, + [2952] = 2952, + [2953] = 2953, + [2954] = 2954, + [2955] = 2955, + [2956] = 2956, + [2957] = 2957, + [2958] = 2958, + [2959] = 2959, + [2960] = 2960, + [2961] = 2961, + [2962] = 2962, + [2963] = 2963, + [2964] = 2964, + [2965] = 2965, + [2966] = 2966, + [2967] = 2967, + [2968] = 2958, + [2969] = 2969, + [2970] = 2970, + [2971] = 2971, + [2972] = 2972, + [2973] = 2973, + [2974] = 2958, + [2975] = 2975, + [2976] = 2976, + [2977] = 2977, + [2978] = 2978, + [2979] = 2979, + [2980] = 2980, + [2981] = 2981, + [2982] = 2982, + [2983] = 2983, + [2984] = 2984, + [2985] = 2958, + [2986] = 2986, + [2987] = 2987, + [2988] = 2988, + [2989] = 2989, + [2990] = 2990, + [2991] = 2991, + [2992] = 2992, + [2993] = 2993, + [2994] = 2994, + [2995] = 2995, + [2996] = 2996, + [2997] = 2997, + [2998] = 2998, + [2999] = 2999, + [3000] = 3000, + [3001] = 3001, + [3002] = 3002, + [3003] = 3003, + [3004] = 3004, + [3005] = 3005, + [3006] = 3006, + [3007] = 168, + [3008] = 3008, + [3009] = 3009, + [3010] = 3010, + [3011] = 3011, + [3012] = 3012, + [3013] = 2958, + [3014] = 3014, + [3015] = 3015, + [3016] = 3016, + [3017] = 3017, + [3018] = 3018, + [3019] = 3019, + [3020] = 3020, + [3021] = 2449, + [3022] = 3022, + [3023] = 3022, + [3024] = 3024, + [3025] = 3025, + [3026] = 168, + [3027] = 3025, + [3028] = 3028, + [3029] = 3029, + [3030] = 2568, + [3031] = 3029, + [3032] = 3022, + [3033] = 3033, + [3034] = 3033, + [3035] = 3035, + [3036] = 3036, + [3037] = 3037, + [3038] = 3036, + [3039] = 3039, + [3040] = 3040, + [3041] = 3041, + [3042] = 3042, + [3043] = 3043, + [3044] = 3040, + [3045] = 3037, + [3046] = 3046, + [3047] = 3041, + [3048] = 3040, + [3049] = 3049, + [3050] = 3039, + [3051] = 2698, + [3052] = 2693, + [3053] = 3053, + [3054] = 3033, + [3055] = 3039, + [3056] = 3056, + [3057] = 3041, + [3058] = 2695, + [3059] = 3036, + [3060] = 2694, + [3061] = 3037, + [3062] = 3062, + [3063] = 3063, + [3064] = 3064, + [3065] = 2794, + [3066] = 3066, + [3067] = 2758, + [3068] = 3068, + [3069] = 2684, + [3070] = 3070, + [3071] = 2710, + [3072] = 2793, + [3073] = 3073, + [3074] = 2920, + [3075] = 3068, + [3076] = 2792, + [3077] = 3077, + [3078] = 2677, + [3079] = 2797, + [3080] = 2783, + [3081] = 2718, + [3082] = 3066, + [3083] = 3070, + [3084] = 3084, + [3085] = 2798, + [3086] = 2799, + [3087] = 2736, + [3088] = 3084, + [3089] = 3068, + [3090] = 3090, + [3091] = 3091, + [3092] = 2801, + [3093] = 2688, + [3094] = 2757, + [3095] = 3077, + [3096] = 2920, + [3097] = 3077, + [3098] = 3091, + [3099] = 3099, + [3100] = 3100, + [3101] = 3101, + [3102] = 3102, + [3103] = 3103, + [3104] = 3104, + [3105] = 3099, + [3106] = 3106, + [3107] = 3101, + [3108] = 3108, + [3109] = 3109, + [3110] = 3110, + [3111] = 3110, + [3112] = 3112, + [3113] = 3113, + [3114] = 3114, + [3115] = 3103, + [3116] = 3104, + [3117] = 3117, + [3118] = 3118, + [3119] = 3101, + [3120] = 3101, + [3121] = 3121, + [3122] = 3103, + [3123] = 3104, + [3124] = 3099, + [3125] = 3106, + [3126] = 3100, + [3127] = 3112, + [3128] = 3099, + [3129] = 3129, + [3130] = 3130, + [3131] = 3110, + [3132] = 3112, + [3133] = 3106, + [3134] = 3101, + [3135] = 3103, + [3136] = 3104, + [3137] = 3099, + [3138] = 3106, + [3139] = 3103, + [3140] = 3104, + [3141] = 3110, + [3142] = 3112, + [3143] = 3101, + [3144] = 3103, + [3145] = 3104, + [3146] = 3106, + [3147] = 3099, + [3148] = 3110, + [3149] = 3112, + [3150] = 3101, + [3151] = 3103, + [3152] = 3104, + [3153] = 3099, + [3154] = 3106, + [3155] = 3110, + [3156] = 3112, + [3157] = 3101, + [3158] = 3103, + [3159] = 3104, + [3160] = 3099, + [3161] = 3106, + [3162] = 3110, + [3163] = 3112, + [3164] = 3101, + [3165] = 3103, + [3166] = 3104, + [3167] = 3099, + [3168] = 3106, + [3169] = 3110, + [3170] = 3112, + [3171] = 3113, + [3172] = 3101, + [3173] = 3103, + [3174] = 3104, + [3175] = 3099, + [3176] = 3106, + [3177] = 3110, + [3178] = 3112, + [3179] = 3179, + [3180] = 3180, + [3181] = 3181, + [3182] = 3182, + [3183] = 3183, + [3184] = 3130, + [3185] = 3118, + [3186] = 3130, + [3187] = 3180, + [3188] = 3110, + [3189] = 3112, + [3190] = 3190, + [3191] = 3121, + [3192] = 3101, + [3193] = 3113, + [3194] = 3194, + [3195] = 3195, + [3196] = 3129, + [3197] = 3117, + [3198] = 2568, + [3199] = 3117, + [3200] = 3100, + [3201] = 3201, + [3202] = 3181, + [3203] = 3203, + [3204] = 3117, + [3205] = 3205, + [3206] = 3206, + [3207] = 3103, + [3208] = 3104, + [3209] = 3099, + [3210] = 3106, + [3211] = 3211, + [3212] = 3205, + [3213] = 3213, + [3214] = 3180, + [3215] = 3215, + [3216] = 3129, + [3217] = 3121, + [3218] = 3203, + [3219] = 3205, + [3220] = 3113, + [3221] = 3181, + [3222] = 3222, + [3223] = 3203, + [3224] = 3118, + [3225] = 3110, + [3226] = 3112, + [3227] = 3106, + [3228] = 3228, + [3229] = 1771, + [3230] = 2693, + [3231] = 2695, + [3232] = 2694, + [3233] = 3233, + [3234] = 2698, + [3235] = 2718, + [3236] = 1771, + [3237] = 2736, + [3238] = 2758, + [3239] = 2757, + [3240] = 2783, + [3241] = 3228, + [3242] = 2710, + [3243] = 299, + [3244] = 343, + [3245] = 3245, + [3246] = 353, + [3247] = 3247, + [3248] = 3248, + [3249] = 2683, + [3250] = 3250, + [3251] = 3251, + [3252] = 3252, + [3253] = 3253, + [3254] = 3254, + [3255] = 3255, + [3256] = 3256, + [3257] = 3255, + [3258] = 3255, + [3259] = 3256, + [3260] = 3260, + [3261] = 2696, + [3262] = 3262, + [3263] = 3263, + [3264] = 3264, + [3265] = 3265, + [3266] = 3266, + [3267] = 3267, + [3268] = 3268, + [3269] = 3269, + [3270] = 3270, + [3271] = 3270, + [3272] = 3272, + [3273] = 3273, + [3274] = 3274, + [3275] = 3275, + [3276] = 3276, + [3277] = 3277, + [3278] = 3278, + [3279] = 3279, + [3280] = 3280, + [3281] = 3281, + [3282] = 3282, + [3283] = 3283, + [3284] = 3284, + [3285] = 3285, + [3286] = 3286, + [3287] = 3287, + [3288] = 3288, + [3289] = 3289, + [3290] = 3290, + [3291] = 3291, + [3292] = 3292, + [3293] = 3293, + [3294] = 3294, + [3295] = 2804, + [3296] = 3296, + [3297] = 2806, + [3298] = 3298, + [3299] = 3299, + [3300] = 2812, + [3301] = 3301, + [3302] = 3299, + [3303] = 2803, + [3304] = 3304, + [3305] = 2819, + [3306] = 3306, + [3307] = 3307, + [3308] = 3308, + [3309] = 3309, + [3310] = 3309, + [3311] = 3311, + [3312] = 3312, + [3313] = 3313, + [3314] = 3307, + [3315] = 3306, + [3316] = 3316, + [3317] = 3311, + [3318] = 3318, + [3319] = 3319, + [3320] = 3320, + [3321] = 3321, + [3322] = 3322, + [3323] = 3323, + [3324] = 3323, + [3325] = 3323, + [3326] = 3323, + [3327] = 3323, + [3328] = 3323, + [3329] = 3323, + [3330] = 3323, + [3331] = 3331, + [3332] = 3332, + [3333] = 3333, + [3334] = 3334, + [3335] = 3335, + [3336] = 3336, + [3337] = 3337, + [3338] = 3338, + [3339] = 3331, + [3340] = 3340, + [3341] = 3341, + [3342] = 3342, + [3343] = 3343, + [3344] = 3338, + [3345] = 3345, + [3346] = 3346, + [3347] = 3347, + [3348] = 3346, + [3349] = 3349, + [3350] = 3350, + [3351] = 3351, + [3352] = 956, + [3353] = 3351, + [3354] = 3354, + [3355] = 3351, + [3356] = 3351, + [3357] = 1082, + [3358] = 3358, + [3359] = 3359, + [3360] = 3360, + [3361] = 3361, + [3362] = 3362, + [3363] = 3363, + [3364] = 3364, + [3365] = 3365, + [3366] = 3358, + [3367] = 3358, + [3368] = 3364, + [3369] = 3358, + [3370] = 3370, + [3371] = 3371, + [3372] = 3372, + [3373] = 3373, + [3374] = 3360, + [3375] = 3364, + [3376] = 3358, + [3377] = 3377, + [3378] = 3358, + [3379] = 3370, + [3380] = 3380, + [3381] = 3381, + [3382] = 3370, + [3383] = 3364, + [3384] = 3370, + [3385] = 3371, + [3386] = 3364, + [3387] = 3373, + [3388] = 3371, + [3389] = 3364, + [3390] = 3377, + [3391] = 3371, + [3392] = 3372, + [3393] = 3364, + [3394] = 3394, + [3395] = 3358, + [3396] = 3370, + [3397] = 3364, + [3398] = 3370, + [3399] = 3371, + [3400] = 3364, + [3401] = 3358, + [3402] = 3373, + [3403] = 3364, + [3404] = 3364, + [3405] = 3405, + [3406] = 3358, + [3407] = 3364, + [3408] = 3358, + [3409] = 3370, + [3410] = 3410, + [3411] = 3358, + [3412] = 3410, + [3413] = 3413, + [3414] = 3414, + [3415] = 3380, + [3416] = 3381, + [3417] = 3358, + [3418] = 3418, + [3419] = 3419, + [3420] = 3373, + [3421] = 3421, + [3422] = 3422, + [3423] = 3423, + [3424] = 3424, + [3425] = 3425, + [3426] = 3426, + [3427] = 3427, + [3428] = 3428, + [3429] = 3422, + [3430] = 3424, + [3431] = 3426, + [3432] = 3432, + [3433] = 3424, + [3434] = 3434, + [3435] = 3435, + [3436] = 3424, + [3437] = 3437, + [3438] = 3438, + [3439] = 3426, + [3440] = 3440, + [3441] = 3441, + [3442] = 3438, + [3443] = 3424, + [3444] = 3444, + [3445] = 3424, + [3446] = 2508, + [3447] = 3424, + [3448] = 3448, + [3449] = 3424, + [3450] = 3428, + [3451] = 3424, + [3452] = 3452, + [3453] = 3453, + [3454] = 3454, + [3455] = 3455, + [3456] = 3456, + [3457] = 3457, + [3458] = 3438, + [3459] = 3424, + [3460] = 3438, + [3461] = 3432, + [3462] = 3426, + [3463] = 3426, + [3464] = 3464, + [3465] = 3426, + [3466] = 3452, + [3467] = 3426, + [3468] = 3435, + [3469] = 3444, + [3470] = 3432, + [3471] = 3424, + [3472] = 3422, + [3473] = 3424, + [3474] = 3474, + [3475] = 3475, + [3476] = 3476, + [3477] = 3477, + [3478] = 3478, + [3479] = 3479, + [3480] = 3480, + [3481] = 3481, + [3482] = 3482, + [3483] = 3483, + [3484] = 3484, + [3485] = 3474, + [3486] = 3486, + [3487] = 3487, + [3488] = 3488, + [3489] = 3487, + [3490] = 3490, + [3491] = 3491, + [3492] = 3491, + [3493] = 3493, + [3494] = 3494, + [3495] = 3495, + [3496] = 3496, + [3497] = 3497, + [3498] = 3498, + [3499] = 3499, + [3500] = 3500, + [3501] = 3476, + [3502] = 3477, + [3503] = 3478, + [3504] = 3504, + [3505] = 3479, + [3506] = 3488, + [3507] = 3490, + [3508] = 3493, + [3509] = 3509, + [3510] = 3491, + [3511] = 3511, + [3512] = 3481, + [3513] = 3495, + [3514] = 3496, + [3515] = 3484, + [3516] = 3474, + [3517] = 3491, + [3518] = 3495, + [3519] = 3496, + [3520] = 3520, + [3521] = 3497, + [3522] = 3504, + [3523] = 3484, + [3524] = 3474, + [3525] = 3487, + [3526] = 3490, + [3527] = 3493, + [3528] = 3497, + [3529] = 3498, + [3530] = 3498, + [3531] = 3499, + [3532] = 3500, + [3533] = 3476, + [3534] = 3477, + [3535] = 3478, + [3536] = 3479, + [3537] = 3481, + [3538] = 3488, + [3539] = 3488, + [3540] = 3499, + [3541] = 3509, + [3542] = 3488, + [3543] = 3500, + [3544] = 3476, + [3545] = 3480, + [3546] = 3546, + [3547] = 3491, + [3548] = 3511, + [3549] = 3549, + [3550] = 3495, + [3551] = 3496, + [3552] = 3552, + [3553] = 3487, + [3554] = 3554, + [3555] = 3490, + [3556] = 3484, + [3557] = 3474, + [3558] = 3493, + [3559] = 3497, + [3560] = 3498, + [3561] = 3511, + [3562] = 3499, + [3563] = 3500, + [3564] = 3476, + [3565] = 3477, + [3566] = 3478, + [3567] = 3567, + [3568] = 3479, + [3569] = 3569, + [3570] = 3570, + [3571] = 3549, + [3572] = 3496, + [3573] = 3481, + [3574] = 3554, + [3575] = 2368, + [3576] = 3567, + [3577] = 2381, + [3578] = 3570, + [3579] = 3554, + [3580] = 3477, + [3581] = 3554, + [3582] = 3481, + [3583] = 3554, + [3584] = 3496, + [3585] = 3484, + [3586] = 3474, + [3587] = 3546, + [3588] = 3487, + [3589] = 3490, + [3590] = 3493, + [3591] = 3497, + [3592] = 3498, + [3593] = 3499, + [3594] = 3500, + [3595] = 3476, + [3596] = 3477, + [3597] = 3478, + [3598] = 3479, + [3599] = 3481, + [3600] = 3569, + [3601] = 3488, + [3602] = 3567, + [3603] = 3509, + [3604] = 3480, + [3605] = 3570, + [3606] = 3554, + [3607] = 3496, + [3608] = 3484, + [3609] = 3474, + [3610] = 3546, + [3611] = 3487, + [3612] = 3490, + [3613] = 3493, + [3614] = 3497, + [3615] = 3498, + [3616] = 3499, + [3617] = 3500, + [3618] = 3476, + [3619] = 3477, + [3620] = 3478, + [3621] = 3479, + [3622] = 3481, + [3623] = 3623, + [3624] = 3488, + [3625] = 3488, + [3626] = 3509, + [3627] = 3484, + [3628] = 3474, + [3629] = 3487, + [3630] = 3490, + [3631] = 3493, + [3632] = 3497, + [3633] = 3498, + [3634] = 3499, + [3635] = 3500, + [3636] = 3476, + [3637] = 3477, + [3638] = 3478, + [3639] = 3479, + [3640] = 3481, + [3641] = 3570, + [3642] = 3488, + [3643] = 3478, + [3644] = 3509, + [3645] = 3491, + [3646] = 3495, + [3647] = 3496, + [3648] = 3509, + [3649] = 3491, + [3650] = 3495, + [3651] = 3509, + [3652] = 3546, + [3653] = 3653, + [3654] = 3479, + [3655] = 3487, + [3656] = 3490, + [3657] = 3484, + [3658] = 3474, + [3659] = 3493, + [3660] = 3497, + [3661] = 3546, + [3662] = 3487, + [3663] = 3490, + [3664] = 3493, + [3665] = 3497, + [3666] = 3498, + [3667] = 3499, + [3668] = 3500, + [3669] = 3476, + [3670] = 3477, + [3671] = 3478, + [3672] = 3479, + [3673] = 3498, + [3674] = 3499, + [3675] = 3481, + [3676] = 3676, + [3677] = 3569, + [3678] = 3500, + [3679] = 3476, + [3680] = 3680, + [3681] = 3477, + [3682] = 3478, + [3683] = 3509, + [3684] = 3479, + [3685] = 3495, + [3686] = 3488, + [3687] = 3567, + [3688] = 3509, + [3689] = 3570, + [3690] = 3496, + [3691] = 3475, + [3692] = 3692, + [3693] = 3483, + [3694] = 3569, + [3695] = 3567, + [3696] = 3696, + [3697] = 3570, + [3698] = 3698, + [3699] = 3569, + [3700] = 3567, + [3701] = 3570, + [3702] = 3567, + [3703] = 3569, + [3704] = 3567, + [3705] = 3570, + [3706] = 3569, + [3707] = 3569, + [3708] = 3491, + [3709] = 3511, + [3710] = 3495, + [3711] = 3496, + [3712] = 3712, + [3713] = 3482, + [3714] = 3509, + [3715] = 3481, + [3716] = 3484, + [3717] = 3474, + [3718] = 3487, + [3719] = 3490, + [3720] = 3493, + [3721] = 3497, + [3722] = 3498, + [3723] = 3499, + [3724] = 3500, + [3725] = 3476, + [3726] = 3477, + [3727] = 3478, + [3728] = 3479, + [3729] = 3481, + [3730] = 3488, + [3731] = 3731, + [3732] = 3484, + [3733] = 3509, + [3734] = 3491, + [3735] = 3495, + [3736] = 3496, + [3737] = 3474, + [3738] = 3491, + [3739] = 3511, + [3740] = 3495, + [3741] = 3741, + [3742] = 3546, + [3743] = 3484, + [3744] = 3474, + [3745] = 3487, + [3746] = 3490, + [3747] = 3493, + [3748] = 3497, + [3749] = 3498, + [3750] = 3499, + [3751] = 3500, + [3752] = 3476, + [3753] = 3477, + [3754] = 3478, + [3755] = 3479, + [3756] = 3481, + [3757] = 3488, + [3758] = 3509, + [3759] = 3491, + [3760] = 3495, + [3761] = 3487, + [3762] = 3490, + [3763] = 3484, + [3764] = 3491, + [3765] = 3493, + [3766] = 3495, + [3767] = 3496, + [3768] = 3497, + [3769] = 3498, + [3770] = 3499, + [3771] = 3500, + [3772] = 3511, + [3773] = 3773, + [3774] = 3773, + [3775] = 3775, + [3776] = 3775, + [3777] = 3775, + [3778] = 3773, + [3779] = 3779, + [3780] = 3780, + [3781] = 3779, + [3782] = 3780, + [3783] = 3780, + [3784] = 3779, + [3785] = 1771, + [3786] = 343, + [3787] = 299, + [3788] = 3788, + [3789] = 353, + [3790] = 2568, + [3791] = 2684, + [3792] = 2870, + [3793] = 3793, + [3794] = 3794, + [3795] = 2688, + [3796] = 3793, + [3797] = 3794, + [3798] = 3798, + [3799] = 2869, + [3800] = 3794, + [3801] = 3798, + [3802] = 3793, + [3803] = 3798, + [3804] = 2677, + [3805] = 2508, + [3806] = 2891, + [3807] = 2900, + [3808] = 2914, + [3809] = 2907, + [3810] = 2895, + [3811] = 2902, + [3812] = 2940, + [3813] = 2943, + [3814] = 2942, + [3815] = 2933, + [3816] = 2698, + [3817] = 3817, + [3818] = 2449, + [3819] = 2924, + [3820] = 2695, + [3821] = 2694, + [3822] = 2960, + [3823] = 2693, + [3824] = 2930, + [3825] = 2927, + [3826] = 2926, + [3827] = 2921, + [3828] = 2956, + [3829] = 2965, + [3830] = 2934, + [3831] = 3091, + [3832] = 2944, + [3833] = 3070, + [3834] = 2935, + [3835] = 2991, + [3836] = 2992, + [3837] = 2936, + [3838] = 2922, + [3839] = 2938, + [3840] = 2939, + [3841] = 3066, + [3842] = 2932, + [3843] = 2967, + [3844] = 2975, + [3845] = 2986, + [3846] = 2987, + [3847] = 2983, + [3848] = 2988, + [3849] = 2964, + [3850] = 2757, + [3851] = 3003, + [3852] = 3042, + [3853] = 3114, + [3854] = 3206, + [3855] = 3211, + [3856] = 3043, + [3857] = 2783, + [3858] = 3858, + [3859] = 3859, + [3860] = 3009, + [3861] = 3861, + [3862] = 3012, + [3863] = 3010, + [3864] = 3005, + [3865] = 3014, + [3866] = 3179, + [3867] = 3182, + [3868] = 1904, + [3869] = 2929, + [3870] = 2947, + [3871] = 2961, + [3872] = 2381, + [3873] = 2995, + [3874] = 2946, + [3875] = 3053, + [3876] = 3056, + [3877] = 2959, + [3878] = 2949, + [3879] = 1743, + [3880] = 3213, + [3881] = 2962, + [3882] = 2963, + [3883] = 2950, + [3884] = 2951, + [3885] = 2966, + [3886] = 2969, + [3887] = 3017, + [3888] = 2952, + [3889] = 2953, + [3890] = 3102, + [3891] = 3183, + [3892] = 3011, + [3893] = 2970, + [3894] = 2971, + [3895] = 2955, + [3896] = 3896, + [3897] = 3859, + [3898] = 3898, + [3899] = 3899, + [3900] = 3190, + [3901] = 2945, + [3902] = 3008, + [3903] = 2710, + [3904] = 3201, + [3905] = 3215, + [3906] = 3858, + [3907] = 3859, + [3908] = 3222, + [3909] = 2977, + [3910] = 2981, + [3911] = 3020, + [3912] = 3861, + [3913] = 2948, + [3914] = 2718, + [3915] = 3896, + [3916] = 3898, + [3917] = 3899, + [3918] = 3858, + [3919] = 3859, + [3920] = 1744, + [3921] = 3861, + [3922] = 2994, + [3923] = 3896, + [3924] = 3898, + [3925] = 3899, + [3926] = 3858, + [3927] = 3859, + [3928] = 3109, + [3929] = 3861, + [3930] = 3930, + [3931] = 3896, + [3932] = 3898, + [3933] = 3899, + [3934] = 3934, + [3935] = 3858, + [3936] = 3859, + [3937] = 3861, + [3938] = 2957, + [3939] = 3063, + [3940] = 3896, + [3941] = 3898, + [3942] = 3899, + [3943] = 3858, + [3944] = 3859, + [3945] = 3945, + [3946] = 3064, + [3947] = 3861, + [3948] = 3019, + [3949] = 3896, + [3950] = 3898, + [3951] = 3899, + [3952] = 3858, + [3953] = 3859, + [3954] = 3861, + [3955] = 3896, + [3956] = 3898, + [3957] = 3899, + [3958] = 3858, + [3959] = 3859, + [3960] = 3861, + [3961] = 3896, + [3962] = 3898, + [3963] = 3899, + [3964] = 3858, + [3965] = 3859, + [3966] = 3861, + [3967] = 2976, + [3968] = 2984, + [3969] = 2973, + [3970] = 2736, + [3971] = 3896, + [3972] = 3861, + [3973] = 3195, + [3974] = 2954, + [3975] = 2997, + [3976] = 2998, + [3977] = 1771, + [3978] = 3978, + [3979] = 3018, + [3980] = 2925, + [3981] = 3896, + [3982] = 2368, + [3983] = 3898, + [3984] = 3899, + [3985] = 2978, + [3986] = 2979, + [3987] = 2980, + [3988] = 3898, + [3989] = 3899, + [3990] = 2982, + [3991] = 2758, + [3992] = 2989, + [3993] = 2990, + [3994] = 3858, + [3995] = 2993, + [3996] = 3004, + [3997] = 3194, + [3998] = 2999, + [3999] = 3000, + [4000] = 3001, + [4001] = 3002, + [4002] = 3006, + [4003] = 2996, + [4004] = 3091, + [4005] = 1488, + [4006] = 2794, + [4007] = 2793, + [4008] = 1463, + [4009] = 1511, + [4010] = 1464, + [4011] = 2792, + [4012] = 2798, + [4013] = 3066, + [4014] = 1478, + [4015] = 2799, + [4016] = 1509, + [4017] = 4017, + [4018] = 1472, + [4019] = 1489, + [4020] = 4017, + [4021] = 1474, + [4022] = 1497, + [4023] = 2797, + [4024] = 3070, + [4025] = 2801, + [4026] = 4026, + [4027] = 4026, + [4028] = 4028, + [4029] = 4028, + [4030] = 4030, + [4031] = 4031, + [4032] = 4028, + [4033] = 3063, + [4034] = 4031, + [4035] = 4026, + [4036] = 4031, + [4037] = 4030, + [4038] = 3042, + [4039] = 4026, + [4040] = 3064, + [4041] = 4028, + [4042] = 4031, + [4043] = 4030, + [4044] = 4028, + [4045] = 4031, + [4046] = 4026, + [4047] = 3043, + [4048] = 4028, + [4049] = 4030, + [4050] = 3053, + [4051] = 4031, + [4052] = 4026, + [4053] = 4028, + [4054] = 4030, + [4055] = 4031, + [4056] = 4030, + [4057] = 4028, + [4058] = 4031, + [4059] = 3056, + [4060] = 4030, + [4061] = 4026, + [4062] = 4031, + [4063] = 4028, + [4064] = 4030, + [4065] = 4030, + [4066] = 4026, + [4067] = 4030, + [4068] = 4028, + [4069] = 4031, + [4070] = 4026, + [4071] = 4026, + [4072] = 325, + [4073] = 3043, + [4074] = 4074, + [4075] = 2293, + [4076] = 4076, + [4077] = 3091, + [4078] = 342, + [4079] = 359, + [4080] = 3053, + [4081] = 3056, + [4082] = 297, + [4083] = 323, + [4084] = 319, + [4085] = 320, + [4086] = 4086, + [4087] = 3066, + [4088] = 2270, + [4089] = 3070, + [4090] = 3063, + [4091] = 3064, + [4092] = 2311, + [4093] = 288, + [4094] = 2259, + [4095] = 4095, + [4096] = 3042, + [4097] = 1084, + [4098] = 1085, + [4099] = 1480, + [4100] = 3222, + [4101] = 4101, + [4102] = 4101, + [4103] = 4101, + [4104] = 4104, + [4105] = 4105, + [4106] = 2920, + [4107] = 3195, + [4108] = 3179, + [4109] = 4105, + [4110] = 4110, + [4111] = 3215, + [4112] = 4104, + [4113] = 4113, + [4114] = 3182, + [4115] = 4113, + [4116] = 4110, + [4117] = 3183, + [4118] = 3114, + [4119] = 3109, + [4120] = 3190, + [4121] = 3201, + [4122] = 3206, + [4123] = 4101, + [4124] = 3211, + [4125] = 4125, + [4126] = 3194, + [4127] = 3213, + [4128] = 3102, + [4129] = 4129, + [4130] = 4129, + [4131] = 1084, + [4132] = 1085, + [4133] = 4133, + [4134] = 4133, + [4135] = 4133, + [4136] = 4133, + [4137] = 4137, + [4138] = 4138, + [4139] = 4139, + [4140] = 4140, + [4141] = 4137, + [4142] = 4142, + [4143] = 4138, + [4144] = 4137, + [4145] = 4138, + [4146] = 4138, + [4147] = 4137, + [4148] = 4148, + [4149] = 4148, + [4150] = 4148, + [4151] = 4148, + [4152] = 4148, + [4153] = 4148, + [4154] = 4148, + [4155] = 3053, + [4156] = 3066, + [4157] = 3063, + [4158] = 4158, + [4159] = 4159, + [4160] = 3064, + [4161] = 3056, + [4162] = 3042, + [4163] = 3043, + [4164] = 3070, + [4165] = 3091, + [4166] = 4159, + [4167] = 4158, + [4168] = 3190, + [4169] = 3222, + [4170] = 3194, + [4171] = 4171, + [4172] = 3211, + [4173] = 3213, + [4174] = 3182, + [4175] = 3114, + [4176] = 3183, + [4177] = 2368, + [4178] = 4171, + [4179] = 4179, + [4180] = 3201, + [4181] = 4179, + [4182] = 3206, + [4183] = 2381, + [4184] = 3109, + [4185] = 3195, + [4186] = 3215, + [4187] = 3102, + [4188] = 3179, + [4189] = 4189, + [4190] = 4190, + [4191] = 4191, + [4192] = 2870, + [4193] = 2869, + [4194] = 4194, + [4195] = 239, + [4196] = 204, + [4197] = 224, + [4198] = 4198, + [4199] = 4199, + [4200] = 218, + [4201] = 4201, + [4202] = 4202, + [4203] = 4203, + [4204] = 209, + [4205] = 2869, + [4206] = 207, + [4207] = 4203, + [4208] = 208, + [4209] = 223, + [4210] = 4202, + [4211] = 4203, + [4212] = 4198, + [4213] = 205, + [4214] = 219, + [4215] = 215, + [4216] = 4216, + [4217] = 275, + [4218] = 4218, + [4219] = 4203, + [4220] = 2870, + [4221] = 216, + [4222] = 214, + [4223] = 4203, + [4224] = 206, + [4225] = 217, + [4226] = 4226, + [4227] = 4226, + [4228] = 4228, + [4229] = 4229, + [4230] = 1447, + [4231] = 4229, + [4232] = 4232, + [4233] = 4233, + [4234] = 4226, + [4235] = 4228, + [4236] = 4232, + [4237] = 4233, + [4238] = 4228, + [4239] = 4232, + [4240] = 4233, + [4241] = 2920, + [4242] = 4233, + [4243] = 4228, + [4244] = 4229, + [4245] = 4228, + [4246] = 4233, + [4247] = 4228, + [4248] = 4226, + [4249] = 4228, + [4250] = 4232, + [4251] = 4251, + [4252] = 4226, + [4253] = 4233, + [4254] = 4233, + [4255] = 4233, + [4256] = 4229, + [4257] = 4229, + [4258] = 4232, + [4259] = 4229, + [4260] = 4229, + [4261] = 4229, + [4262] = 4228, + [4263] = 2944, + [4264] = 2975, + [4265] = 2992, + [4266] = 2960, + [4267] = 4267, + [4268] = 2991, + [4269] = 2944, + [4270] = 4270, + [4271] = 4271, + [4272] = 4272, + [4273] = 2987, + [4274] = 2988, + [4275] = 2967, + [4276] = 2983, + [4277] = 4277, + [4278] = 2964, + [4279] = 4279, + [4280] = 4280, + [4281] = 2986, + [4282] = 4282, + [4283] = 2956, + [4284] = 4284, + [4285] = 4285, + [4286] = 4286, + [4287] = 2965, + [4288] = 4288, + [4289] = 4289, + [4290] = 1447, + [4291] = 4291, + [4292] = 4292, + [4293] = 4293, + [4294] = 2870, + [4295] = 4295, + [4296] = 2869, + [4297] = 4297, + [4298] = 4298, + [4299] = 4298, + [4300] = 4300, + [4301] = 4301, + [4302] = 4298, + [4303] = 4303, + [4304] = 4298, + [4305] = 4298, + [4306] = 4298, + [4307] = 4298, + [4308] = 4308, + [4309] = 4298, + [4310] = 3066, + [4311] = 4292, + [4312] = 3070, + [4313] = 4297, + [4314] = 4291, + [4315] = 4295, + [4316] = 1447, + [4317] = 3091, + [4318] = 1572, + [4319] = 1571, + [4320] = 1574, + [4321] = 1576, + [4322] = 1577, + [4323] = 1578, + [4324] = 4300, + [4325] = 1570, + [4326] = 1579, + [4327] = 3248, + [4328] = 4303, + [4329] = 1575, + [4330] = 1567, + [4331] = 2944, + [4332] = 1569, + [4333] = 1568, + [4334] = 1581, + [4335] = 3251, + [4336] = 1573, + [4337] = 1566, + [4338] = 1508, + [4339] = 4339, + [4340] = 4340, + [4341] = 1576, + [4342] = 1568, + [4343] = 1567, + [4344] = 1577, + [4345] = 1570, + [4346] = 1581, + [4347] = 1578, + [4348] = 1575, + [4349] = 1574, + [4350] = 1573, + [4351] = 1569, + [4352] = 1571, + [4353] = 1566, + [4354] = 1579, + [4355] = 1572, + [4356] = 4356, + [4357] = 1508, + [4358] = 4356, + [4359] = 4356, + [4360] = 4356, + [4361] = 4356, + [4362] = 4356, + [4363] = 4356, + [4364] = 4356, + [4365] = 4356, + [4366] = 4356, + [4367] = 4356, + [4368] = 4356, + [4369] = 1566, + [4370] = 1568, + [4371] = 1455, + [4372] = 1567, + [4373] = 1570, + [4374] = 1571, + [4375] = 1572, + [4376] = 1573, + [4377] = 1574, + [4378] = 1575, + [4379] = 1576, + [4380] = 1577, + [4381] = 1578, + [4382] = 1579, + [4383] = 1581, + [4384] = 1569, + [4385] = 1508, + [4386] = 4386, + [4387] = 4387, + [4388] = 4388, + [4389] = 1568, + [4390] = 1569, + [4391] = 1579, + [4392] = 1567, + [4393] = 1581, + [4394] = 1570, + [4395] = 1571, + [4396] = 1572, + [4397] = 1573, + [4398] = 1574, + [4399] = 1575, + [4400] = 1576, + [4401] = 1577, + [4402] = 1566, + [4403] = 1578, + [4404] = 4404, + [4405] = 4404, + [4406] = 4406, + [4407] = 4407, + [4408] = 1577, + [4409] = 1578, + [4410] = 1581, + [4411] = 1579, + [4412] = 1569, + [4413] = 1566, + [4414] = 1567, + [4415] = 1570, + [4416] = 1571, + [4417] = 1572, + [4418] = 1573, + [4419] = 1574, + [4420] = 1575, + [4421] = 4421, + [4422] = 1568, + [4423] = 1576, + [4424] = 4424, + [4425] = 4425, + [4426] = 4426, + [4427] = 4427, + [4428] = 4428, + [4429] = 4424, + [4430] = 4427, + [4431] = 4431, + [4432] = 4432, + [4433] = 4433, + [4434] = 4424, + [4435] = 4424, + [4436] = 4424, + [4437] = 4424, + [4438] = 4424, + [4439] = 4424, + [4440] = 4440, + [4441] = 4441, + [4442] = 4433, + [4443] = 4443, + [4444] = 4444, + [4445] = 4443, + [4446] = 4446, + [4447] = 4447, + [4448] = 4448, + [4449] = 4444, + [4450] = 4450, + [4451] = 4448, + [4452] = 4444, + [4453] = 4444, + [4454] = 4454, + [4455] = 4455, + [4456] = 4456, + [4457] = 4457, + [4458] = 4458, + [4459] = 4443, + [4460] = 4460, + [4461] = 4461, + [4462] = 4448, + [4463] = 4454, + [4464] = 4444, + [4465] = 4448, + [4466] = 4466, + [4467] = 4444, + [4468] = 1567, + [4469] = 1570, + [4470] = 1571, + [4471] = 1572, + [4472] = 1573, + [4473] = 1574, + [4474] = 1575, + [4475] = 1576, + [4476] = 1577, + [4477] = 1578, + [4478] = 1579, + [4479] = 4448, + [4480] = 4457, + [4481] = 1581, + [4482] = 4421, + [4483] = 1568, + [4484] = 4443, + [4485] = 4485, + [4486] = 4443, + [4487] = 4487, + [4488] = 4488, + [4489] = 4443, + [4490] = 4441, + [4491] = 4491, + [4492] = 4492, + [4493] = 4493, + [4494] = 4494, + [4495] = 4421, + [4496] = 4496, + [4497] = 1566, + [4498] = 1569, + [4499] = 4443, + [4500] = 1455, + [4501] = 4501, + [4502] = 4448, + [4503] = 4444, + [4504] = 4504, + [4505] = 4443, + [4506] = 4443, + [4507] = 4448, + [4508] = 4443, + [4509] = 4443, + [4510] = 4443, + [4511] = 4511, + [4512] = 4512, + [4513] = 4513, + [4514] = 4514, + [4515] = 4515, + [4516] = 4516, + [4517] = 4512, + [4518] = 4518, + [4519] = 4519, + [4520] = 4520, + [4521] = 4521, + [4522] = 4520, + [4523] = 4512, + [4524] = 4520, + [4525] = 4525, + [4526] = 4526, + [4527] = 4518, + [4528] = 4528, + [4529] = 4529, + [4530] = 4530, + [4531] = 4520, + [4532] = 4532, + [4533] = 4533, + [4534] = 4534, + [4535] = 4519, + [4536] = 4536, + [4537] = 4456, + [4538] = 4521, + [4539] = 4518, + [4540] = 4530, + [4541] = 4541, + [4542] = 4519, + [4543] = 4543, + [4544] = 4511, + [4545] = 4518, + [4546] = 4546, + [4547] = 4519, + [4548] = 4518, + [4549] = 4549, + [4550] = 4534, + [4551] = 4512, + [4552] = 4552, + [4553] = 4553, + [4554] = 4512, + [4555] = 4518, + [4556] = 4519, + [4557] = 4516, + [4558] = 4518, + [4559] = 4519, + [4560] = 4511, + [4561] = 4561, + [4562] = 4521, + [4563] = 4534, + [4564] = 2526, + [4565] = 4519, + [4566] = 4566, + [4567] = 4567, + [4568] = 4516, + [4569] = 4516, + [4570] = 4570, + [4571] = 4512, + [4572] = 4520, + [4573] = 4516, + [4574] = 4574, + [4575] = 4553, + [4576] = 4518, + [4577] = 4577, + [4578] = 4578, + [4579] = 4516, + [4580] = 4574, + [4581] = 4511, + [4582] = 4582, + [4583] = 4583, + [4584] = 4533, + [4585] = 4519, + [4586] = 4525, + [4587] = 4512, + [4588] = 4588, + [4589] = 4589, + [4590] = 4590, + [4591] = 4591, + [4592] = 4592, + [4593] = 4593, + [4594] = 4594, + [4595] = 4594, + [4596] = 4594, + [4597] = 4597, + [4598] = 4598, + [4599] = 4593, + [4600] = 4600, + [4601] = 4601, + [4602] = 4602, + [4603] = 4603, + [4604] = 4604, + [4605] = 4605, + [4606] = 4606, + [4607] = 4607, + [4608] = 4608, + [4609] = 4609, + [4610] = 4610, + [4611] = 4611, + [4612] = 4612, + [4613] = 4613, + [4614] = 4614, + [4615] = 4615, + [4616] = 4610, + [4617] = 4598, + [4618] = 4618, + [4619] = 4619, + [4620] = 4620, + [4621] = 4618, + [4622] = 4615, + [4623] = 4619, + [4624] = 4624, + [4625] = 4625, + [4626] = 4598, + [4627] = 4627, + [4628] = 4620, + [4629] = 4619, + [4630] = 4620, + [4631] = 4605, + [4632] = 4615, + [4633] = 4619, + [4634] = 4610, + [4635] = 4619, + [4636] = 4600, + [4637] = 4601, + [4638] = 4602, + [4639] = 4603, + [4640] = 4604, + [4641] = 4606, + [4642] = 4619, + [4643] = 4607, + [4644] = 4608, + [4645] = 4609, + [4646] = 4611, + [4647] = 4614, + [4648] = 4605, + [4649] = 4649, + [4650] = 4650, + [4651] = 4651, + [4652] = 4652, + [4653] = 4653, + [4654] = 4654, + [4655] = 4655, + [4656] = 4656, + [4657] = 4657, + [4658] = 4658, + [4659] = 4659, + [4660] = 4660, + [4661] = 4661, + [4662] = 4662, + [4663] = 4663, + [4664] = 4664, + [4665] = 4665, + [4666] = 4666, + [4667] = 4657, + [4668] = 4668, + [4669] = 4669, + [4670] = 1481, + [4671] = 4671, + [4672] = 4672, + [4673] = 4665, + [4674] = 4666, + [4675] = 4669, + [4676] = 4658, + [4677] = 4652, + [4678] = 4678, + [4679] = 4671, + [4680] = 4662, + [4681] = 4649, + [4682] = 4651, + [4683] = 4655, + [4684] = 4684, + [4685] = 4685, + [4686] = 4686, + [4687] = 4687, + [4688] = 4688, + [4689] = 4688, + [4690] = 4690, + [4691] = 4691, + [4692] = 4664, + [4693] = 4653, + [4694] = 4694, + [4695] = 4654, + [4696] = 4678, + [4697] = 4691, + [4698] = 4691, + [4699] = 4678, + [4700] = 4688, + [4701] = 4691, + [4702] = 4691, + [4703] = 4691, + [4704] = 4650, + [4705] = 4685, + [4706] = 4694, + [4707] = 1481, + [4708] = 4661, + [4709] = 4660, + [4710] = 4694, + [4711] = 4659, + [4712] = 4668, + [4713] = 4713, + [4714] = 4714, + [4715] = 4715, + [4716] = 4716, + [4717] = 4717, + [4718] = 4713, + [4719] = 4719, + [4720] = 4716, + [4721] = 4721, + [4722] = 4722, + [4723] = 4723, + [4724] = 4724, + [4725] = 4714, + [4726] = 4715, + [4727] = 4716, + [4728] = 4717, + [4729] = 4713, + [4730] = 4719, + [4731] = 4721, + [4732] = 4717, + [4733] = 4722, + [4734] = 4723, + [4735] = 4724, + [4736] = 4714, + [4737] = 4715, + [4738] = 4716, + [4739] = 4717, + [4740] = 4713, + [4741] = 4719, + [4742] = 4721, + [4743] = 4722, + [4744] = 4723, + [4745] = 4724, + [4746] = 4714, + [4747] = 4715, + [4748] = 4716, + [4749] = 4717, + [4750] = 4713, + [4751] = 4719, + [4752] = 4721, + [4753] = 4722, + [4754] = 4723, + [4755] = 4724, + [4756] = 4714, + [4757] = 4715, + [4758] = 4716, + [4759] = 4717, + [4760] = 4713, + [4761] = 4719, + [4762] = 4721, + [4763] = 4722, + [4764] = 4723, + [4765] = 4724, + [4766] = 4714, + [4767] = 4715, + [4768] = 4716, + [4769] = 4717, + [4770] = 4713, + [4771] = 4719, + [4772] = 4721, + [4773] = 4722, + [4774] = 4723, + [4775] = 4721, + [4776] = 4714, + [4777] = 4715, + [4778] = 4716, + [4779] = 4717, + [4780] = 4713, + [4781] = 4719, + [4782] = 4719, + [4783] = 4722, + [4784] = 4721, + [4785] = 4717, + [4786] = 4713, + [4787] = 4722, + [4788] = 4723, + [4789] = 4724, + [4790] = 4723, + [4791] = 4722, + [4792] = 4719, + [4793] = 4724, + [4794] = 4714, + [4795] = 4715, + [4796] = 4716, + [4797] = 4723, + [4798] = 4724, + [4799] = 4717, + [4800] = 4713, + [4801] = 4721, + [4802] = 4719, + [4803] = 4714, + [4804] = 4721, + [4805] = 4714, + [4806] = 4722, + [4807] = 4715, + [4808] = 4716, + [4809] = 4723, + [4810] = 4724, + [4811] = 4715, + [4812] = 4724, + [4813] = 4813, + [4814] = 4814, + [4815] = 4815, + [4816] = 4816, + [4817] = 4814, + [4818] = 4818, + [4819] = 4819, + [4820] = 2568, + [4821] = 4821, + [4822] = 4822, + [4823] = 4822, + [4824] = 4824, + [4825] = 4819, + [4826] = 4826, + [4827] = 4821, + [4828] = 4826, + [4829] = 4822, + [4830] = 4819, + [4831] = 4818, + [4832] = 4818, + [4833] = 4819, + [4834] = 4824, + [4835] = 4819, + [4836] = 4836, + [4837] = 4837, + [4838] = 4837, + [4839] = 4837, + [4840] = 4837, + [4841] = 4841, + [4842] = 4837, + [4843] = 4837, + [4844] = 4837, + [4845] = 4837, + [4846] = 4846, + [4847] = 4847, + [4848] = 4848, + [4849] = 4847, + [4850] = 4850, + [4851] = 4846, + [4852] = 4852, + [4853] = 4853, + [4854] = 4848, + [4855] = 4855, + [4856] = 4846, + [4857] = 4857, + [4858] = 4858, + [4859] = 4859, + [4860] = 4858, + [4861] = 4861, + [4862] = 4862, + [4863] = 4863, + [4864] = 4864, + [4865] = 4865, + [4866] = 4866, + [4867] = 4867, + [4868] = 4861, + [4869] = 4865, + [4870] = 4870, + [4871] = 2920, + [4872] = 4865, + [4873] = 4873, + [4874] = 4870, + [4875] = 4865, + [4876] = 4858, + [4877] = 4877, + [4878] = 4878, + [4879] = 4879, + [4880] = 4880, + [4881] = 4865, + [4882] = 4861, + [4883] = 4883, + [4884] = 4884, + [4885] = 4885, + [4886] = 4886, + [4887] = 4870, + [4888] = 4888, + [4889] = 4889, + [4890] = 4890, + [4891] = 4891, + [4892] = 4892, + [4893] = 4861, + [4894] = 4894, + [4895] = 4870, + [4896] = 4896, + [4897] = 4897, + [4898] = 4898, + [4899] = 4898, + [4900] = 4898, + [4901] = 2694, + [4902] = 2698, + [4903] = 4898, + [4904] = 4898, + [4905] = 2695, + [4906] = 4898, + [4907] = 4898, + [4908] = 178, + [4909] = 2693, + [4910] = 4910, + [4911] = 4911, + [4912] = 4912, + [4913] = 4913, + [4914] = 4912, + [4915] = 4915, + [4916] = 4916, + [4917] = 4916, + [4918] = 4918, + [4919] = 4919, + [4920] = 4911, + [4921] = 4921, + [4922] = 4922, + [4923] = 4923, + [4924] = 4924, + [4925] = 4925, + [4926] = 4926, + [4927] = 4923, + [4928] = 4915, + [4929] = 4929, + [4930] = 4930, + [4931] = 4931, + [4932] = 4932, + [4933] = 180, + [4934] = 4913, + [4935] = 4935, + [4936] = 4911, + [4937] = 4921, + [4938] = 4922, + [4939] = 4939, + [4940] = 4940, + [4941] = 4941, + [4942] = 4939, + [4943] = 4943, + [4944] = 4944, + [4945] = 4930, + [4946] = 4946, + [4947] = 4947, + [4948] = 4930, + [4949] = 4930, + [4950] = 4918, + [4951] = 4919, + [4952] = 4929, + [4953] = 4931, + [4954] = 4930, + [4955] = 4955, + [4956] = 4926, + [4957] = 4943, + [4958] = 4931, + [4959] = 4959, + [4960] = 4929, + [4961] = 4961, + [4962] = 4924, + [4963] = 4935, + [4964] = 4921, + [4965] = 4922, + [4966] = 4966, + [4967] = 4930, + [4968] = 4968, + [4969] = 4935, + [4970] = 4970, + [4971] = 4912, + [4972] = 4916, + [4973] = 4968, + [4974] = 4930, + [4975] = 4975, + [4976] = 4976, + [4977] = 4977, + [4978] = 4975, + [4979] = 4979, + [4980] = 4977, + [4981] = 4981, + [4982] = 4982, + [4983] = 4983, + [4984] = 4984, + [4985] = 4985, + [4986] = 4982, + [4987] = 4975, + [4988] = 4984, + [4989] = 4985, + [4990] = 4990, + [4991] = 4982, + [4992] = 4983, + [4993] = 4984, + [4994] = 4994, + [4995] = 4995, + [4996] = 4996, + [4997] = 4990, + [4998] = 4975, + [4999] = 4984, + [5000] = 4976, + [5001] = 4975, + [5002] = 4983, + [5003] = 5003, + [5004] = 5004, + [5005] = 5005, + [5006] = 5004, + [5007] = 5005, + [5008] = 4985, + [5009] = 4990, + [5010] = 4985, + [5011] = 5011, + [5012] = 4975, + [5013] = 5013, + [5014] = 4975, + [5015] = 5015, + [5016] = 4990, + [5017] = 4975, + [5018] = 4982, + [5019] = 4990, + [5020] = 4979, + [5021] = 4985, + [5022] = 4983, + [5023] = 5023, + [5024] = 2718, + [5025] = 5025, + [5026] = 2736, + [5027] = 5027, + [5028] = 5028, + [5029] = 5029, + [5030] = 5030, + [5031] = 5031, + [5032] = 5032, + [5033] = 5013, + [5034] = 5030, + [5035] = 5035, + [5036] = 5036, + [5037] = 2757, + [5038] = 2758, + [5039] = 5039, + [5040] = 4873, + [5041] = 5030, + [5042] = 5042, + [5043] = 5030, + [5044] = 5015, + [5045] = 5045, + [5046] = 5046, + [5047] = 5036, + [5048] = 5048, + [5049] = 5049, + [5050] = 5030, + [5051] = 5036, + [5052] = 5030, + [5053] = 5053, + [5054] = 5045, + [5055] = 5030, + [5056] = 5036, + [5057] = 5039, + [5058] = 5058, + [5059] = 5028, + [5060] = 5049, + [5061] = 2783, + [5062] = 5027, + [5063] = 5063, + [5064] = 5058, + [5065] = 5036, + [5066] = 5045, + [5067] = 5036, + [5068] = 5068, + [5069] = 5069, + [5070] = 4970, + [5071] = 5071, + [5072] = 5048, + [5073] = 4892, + [5074] = 2710, + [5075] = 5030, + [5076] = 5053, + [5077] = 4866, + [5078] = 4891, + [5079] = 5028, + [5080] = 4880, + [5081] = 5036, + [5082] = 4888, + [5083] = 5032, + [5084] = 5084, + [5085] = 5085, + [5086] = 5086, + [5087] = 5087, + [5088] = 5088, + [5089] = 2381, + [5090] = 5090, + [5091] = 5091, + [5092] = 5092, + [5093] = 5090, + [5094] = 299, + [5095] = 5095, + [5096] = 5096, + [5097] = 5097, + [5098] = 353, + [5099] = 5099, + [5100] = 5086, + [5101] = 2368, + [5102] = 5102, + [5103] = 2371, + [5104] = 5086, + [5105] = 5105, + [5106] = 5092, + [5107] = 2356, + [5108] = 5096, + [5109] = 5109, + [5110] = 5087, + [5111] = 2360, + [5112] = 1085, + [5113] = 5113, + [5114] = 5114, + [5115] = 5115, + [5116] = 5116, + [5117] = 5117, + [5118] = 5117, + [5119] = 5096, + [5120] = 5090, + [5121] = 5099, + [5122] = 5122, + [5123] = 2367, + [5124] = 5095, + [5125] = 5125, + [5126] = 5126, + [5127] = 5090, + [5128] = 5102, + [5129] = 5129, + [5130] = 5130, + [5131] = 5090, + [5132] = 2373, + [5133] = 2325, + [5134] = 5134, + [5135] = 5135, + [5136] = 5099, + [5137] = 5099, + [5138] = 5138, + [5139] = 5087, + [5140] = 2382, + [5141] = 5117, + [5142] = 5142, + [5143] = 5143, + [5144] = 5117, + [5145] = 5135, + [5146] = 5087, + [5147] = 5147, + [5148] = 5117, + [5149] = 5149, + [5150] = 5102, + [5151] = 5099, + [5152] = 343, + [5153] = 1084, + [5154] = 2362, + [5155] = 5087, + [5156] = 5086, + [5157] = 5086, + [5158] = 5158, + [5159] = 5159, + [5160] = 5160, + [5161] = 5161, + [5162] = 5160, + [5163] = 5163, + [5164] = 5164, + [5165] = 5165, + [5166] = 5163, + [5167] = 5167, + [5168] = 5168, + [5169] = 5169, + [5170] = 3288, + [5171] = 3272, + [5172] = 5172, + [5173] = 5161, + [5174] = 3283, + [5175] = 5175, + [5176] = 3287, + [5177] = 5163, + [5178] = 5178, + [5179] = 5179, + [5180] = 5180, + [5181] = 5181, + [5182] = 5182, + [5183] = 5183, + [5184] = 5184, + [5185] = 5160, + [5186] = 5186, + [5187] = 5163, + [5188] = 5165, + [5189] = 5167, + [5190] = 5169, + [5191] = 5165, + [5192] = 5179, + [5193] = 5181, + [5194] = 5167, + [5195] = 5160, + [5196] = 5196, + [5197] = 5163, + [5198] = 5169, + [5199] = 5199, + [5200] = 5179, + [5201] = 5179, + [5202] = 5202, + [5203] = 5169, + [5204] = 5204, + [5205] = 5205, + [5206] = 5206, + [5207] = 5207, + [5208] = 5208, + [5209] = 5209, + [5210] = 5210, + [5211] = 5165, + [5212] = 5169, + [5213] = 5168, + [5214] = 5164, + [5215] = 5215, + [5216] = 5175, + [5217] = 5169, + [5218] = 5218, + [5219] = 5219, + [5220] = 5183, + [5221] = 5221, + [5222] = 5222, + [5223] = 5167, + [5224] = 5224, + [5225] = 5225, + [5226] = 5226, + [5227] = 5224, + [5228] = 5226, + [5229] = 5229, + [5230] = 5230, + [5231] = 5229, + [5232] = 5178, + [5233] = 5181, + [5234] = 5230, + [5235] = 5161, + [5236] = 5179, + [5237] = 5175, + [5238] = 3279, + [5239] = 5239, + [5240] = 5240, + [5241] = 5241, + [5242] = 5178, + [5243] = 5243, + [5244] = 5244, + [5245] = 5178, + [5246] = 5179, + [5247] = 5179, + [5248] = 5181, + [5249] = 5218, + [5250] = 5181, + [5251] = 5251, + [5252] = 5219, + [5253] = 5218, + [5254] = 5183, + [5255] = 5219, + [5256] = 5183, + [5257] = 5257, + [5258] = 5160, + [5259] = 5259, + [5260] = 5160, + [5261] = 5164, + [5262] = 5262, + [5263] = 5163, + [5264] = 5168, + [5265] = 5163, + [5266] = 3269, + [5267] = 5172, + [5268] = 5168, + [5269] = 5172, + [5270] = 5172, + [5271] = 5181, + [5272] = 5206, + [5273] = 5165, + [5274] = 5274, + [5275] = 5167, + [5276] = 5169, + [5277] = 5165, + [5278] = 5167, + [5279] = 5199, + [5280] = 5179, + [5281] = 5218, + [5282] = 5219, + [5283] = 5169, + [5284] = 5183, + [5285] = 5160, + [5286] = 5178, + [5287] = 5206, + [5288] = 5199, + [5289] = 5259, + [5290] = 5290, + [5291] = 5291, + [5292] = 5292, + [5293] = 5293, + [5294] = 5294, + [5295] = 5178, + [5296] = 5296, + [5297] = 5297, + [5298] = 5298, + [5299] = 5179, + [5300] = 5300, + [5301] = 5181, + [5302] = 5224, + [5303] = 5226, + [5304] = 5229, + [5305] = 5230, + [5306] = 5306, + [5307] = 5307, + [5308] = 5183, + [5309] = 5069, + [5310] = 5310, + [5311] = 5311, + [5312] = 5312, + [5313] = 5313, + [5314] = 5314, + [5315] = 5315, + [5316] = 5316, + [5317] = 5317, + [5318] = 5318, + [5319] = 5319, + [5320] = 5320, + [5321] = 5321, + [5322] = 5322, + [5323] = 5323, + [5324] = 5313, + [5325] = 5325, + [5326] = 5326, + [5327] = 5327, + [5328] = 5328, + [5329] = 5329, + [5330] = 5330, + [5331] = 5331, + [5332] = 5316, + [5333] = 5333, + [5334] = 5334, + [5335] = 5335, + [5336] = 5336, + [5337] = 5337, + [5338] = 5338, + [5339] = 5321, + [5340] = 5323, + [5341] = 5341, + [5342] = 5342, + [5343] = 5343, + [5344] = 5344, + [5345] = 5345, + [5346] = 5346, + [5347] = 5347, + [5348] = 5348, + [5349] = 5349, + [5350] = 5350, + [5351] = 5351, + [5352] = 5313, + [5353] = 5341, + [5354] = 5354, + [5355] = 5355, + [5356] = 5356, + [5357] = 5348, + [5358] = 5358, + [5359] = 5359, + [5360] = 5360, + [5361] = 5337, + [5362] = 5362, + [5363] = 5363, + [5364] = 5338, + [5365] = 5365, + [5366] = 5366, + [5367] = 5367, + [5368] = 5356, + [5369] = 5359, + [5370] = 5360, + [5371] = 5371, + [5372] = 5372, + [5373] = 5373, + [5374] = 5317, + [5375] = 5318, + [5376] = 5351, + [5377] = 5377, + [5378] = 5317, + [5379] = 5379, + [5380] = 5358, + [5381] = 5315, + [5382] = 5382, + [5383] = 5315, + [5384] = 5384, + [5385] = 5385, + [5386] = 5386, + [5387] = 5387, + [5388] = 5388, + [5389] = 5386, + [5390] = 5390, + [5391] = 5391, + [5392] = 5392, + [5393] = 5393, + [5394] = 5394, + [5395] = 5343, + [5396] = 5348, + [5397] = 5397, + [5398] = 5398, + [5399] = 5399, + [5400] = 5391, + [5401] = 5401, + [5402] = 5362, + [5403] = 5403, + [5404] = 5404, + [5405] = 5321, + [5406] = 5406, + [5407] = 5323, + [5408] = 5408, + [5409] = 5351, + [5410] = 5377, + [5411] = 5401, + [5412] = 5397, + [5413] = 5413, + [5414] = 5414, + [5415] = 5382, + [5416] = 5384, + [5417] = 5417, + [5418] = 5413, + [5419] = 5419, + [5420] = 5419, + [5421] = 5421, + [5422] = 5422, + [5423] = 5343, + [5424] = 5316, + [5425] = 5348, + [5426] = 5316, + [5427] = 5427, + [5428] = 5328, + [5429] = 5362, + [5430] = 5311, + [5431] = 5328, + [5432] = 5432, + [5433] = 5433, + [5434] = 5351, + [5435] = 5377, + [5436] = 5310, + [5437] = 5382, + [5438] = 5384, + [5439] = 5439, + [5440] = 5440, + [5441] = 5386, + [5442] = 5413, + [5443] = 5348, + [5444] = 5444, + [5445] = 5311, + [5446] = 5362, + [5447] = 5447, + [5448] = 5386, + [5449] = 5449, + [5450] = 5351, + [5451] = 5377, + [5452] = 5452, + [5453] = 5382, + [5454] = 5384, + [5455] = 5336, + [5456] = 5348, + [5457] = 5403, + [5458] = 5362, + [5459] = 5459, + [5460] = 5314, + [5461] = 5461, + [5462] = 5351, + [5463] = 5377, + [5464] = 5464, + [5465] = 5382, + [5466] = 5384, + [5467] = 5467, + [5468] = 5348, + [5469] = 5358, + [5470] = 5419, + [5471] = 5471, + [5472] = 5351, + [5473] = 5397, + [5474] = 5382, + [5475] = 5384, + [5476] = 5365, + [5477] = 5449, + [5478] = 5478, + [5479] = 5421, + [5480] = 5433, + [5481] = 5481, + [5482] = 5459, + [5483] = 5384, + [5484] = 5484, + [5485] = 5485, + [5486] = 5408, + [5487] = 5487, + [5488] = 5314, + [5489] = 5489, + [5490] = 5334, + [5491] = 5491, + [5492] = 5492, + [5493] = 5493, + [5494] = 5494, + [5495] = 5495, + [5496] = 5496, + [5497] = 5497, + [5498] = 5449, + [5499] = 5499, + [5500] = 5408, + [5501] = 5382, + [5502] = 5502, + [5503] = 5348, + [5504] = 5504, + [5505] = 5505, + [5506] = 5449, + [5507] = 5493, + [5508] = 5334, + [5509] = 5509, + [5510] = 5510, + [5511] = 5484, + [5512] = 5512, + [5513] = 5513, + [5514] = 5493, + [5515] = 5515, + [5516] = 5386, + [5517] = 5484, + [5518] = 5518, + [5519] = 5519, + [5520] = 5421, + [5521] = 5494, + [5522] = 5363, + [5523] = 5494, + [5524] = 5403, + [5525] = 5525, + [5526] = 5526, + [5527] = 5527, + [5528] = 5126, + [5529] = 5315, + [5530] = 5384, + [5531] = 5531, + [5532] = 5532, + [5533] = 5336, + [5534] = 5534, + [5535] = 5525, + [5536] = 5536, + [5537] = 5509, + [5538] = 5350, + [5539] = 5539, + [5540] = 5540, + [5541] = 5406, + [5542] = 5542, + [5543] = 5543, + [5544] = 5544, + [5545] = 5365, + [5546] = 5313, + [5547] = 5547, + [5548] = 5527, + [5549] = 5549, + [5550] = 5550, + [5551] = 5478, + [5552] = 5328, + [5553] = 5553, + [5554] = 5371, + [5555] = 5404, + [5556] = 198, + [5557] = 5336, + [5558] = 5350, + [5559] = 5478, + [5560] = 5354, + [5561] = 5356, + [5562] = 5366, + [5563] = 5359, + [5564] = 5328, + [5565] = 5489, + [5566] = 5336, + [5567] = 5567, + [5568] = 5360, + [5569] = 5567, + [5570] = 5570, + [5571] = 5571, + [5572] = 5315, + [5573] = 5413, + [5574] = 5571, + [5575] = 5419, + [5576] = 5350, + [5577] = 5484, + [5578] = 5316, + [5579] = 5350, + [5580] = 5510, + [5581] = 5581, + [5582] = 5582, + [5583] = 5311, + [5584] = 5386, + [5585] = 5313, + [5586] = 5350, + [5587] = 5343, + [5588] = 5588, + [5589] = 5337, + [5590] = 5377, + [5591] = 5338, + [5592] = 5321, + [5593] = 5323, + [5594] = 5594, + [5595] = 5595, + [5596] = 5596, + [5597] = 5459, + [5598] = 5484, + [5599] = 5599, + [5600] = 5600, + [5601] = 5601, + [5602] = 5356, + [5603] = 5359, + [5604] = 5360, + [5605] = 5605, + [5606] = 5606, + [5607] = 5313, + [5608] = 5439, + [5609] = 5609, + [5610] = 5610, + [5611] = 5611, + [5612] = 5317, + [5613] = 5484, + [5614] = 5594, + [5615] = 5615, + [5616] = 5337, + [5617] = 5338, + [5618] = 5367, + [5619] = 5373, + [5620] = 5321, + [5621] = 5323, + [5622] = 5414, + [5623] = 5471, + [5624] = 5315, + [5625] = 5518, + [5626] = 5526, + [5627] = 5531, + [5628] = 5398, + [5629] = 5399, + [5630] = 5391, + [5631] = 5398, + [5632] = 5399, + [5633] = 5596, + [5634] = 5126, + [5635] = 5363, + [5636] = 5636, + [5637] = 5478, + [5638] = 5525, + [5639] = 5391, + [5640] = 5640, + [5641] = 5641, + [5642] = 5356, + [5643] = 5359, + [5644] = 5360, + [5645] = 5645, + [5646] = 5413, + [5647] = 5317, + [5648] = 5419, + [5649] = 5318, + [5650] = 5372, + [5651] = 5387, + [5652] = 5652, + [5653] = 5316, + [5654] = 5315, + [5655] = 5433, + [5656] = 5310, + [5657] = 5311, + [5658] = 5386, + [5659] = 5403, + [5660] = 5660, + [5661] = 5661, + [5662] = 5662, + [5663] = 5663, + [5664] = 5664, + [5665] = 5398, + [5666] = 5399, + [5667] = 5311, + [5668] = 5668, + [5669] = 5391, + [5670] = 5652, + [5671] = 5313, + [5672] = 5672, + [5673] = 5362, + [5674] = 5449, + [5675] = 5594, + [5676] = 5313, + [5677] = 5677, + [5678] = 5549, + [5679] = 5679, + [5680] = 5672, + [5681] = 5550, + [5682] = 5401, + [5683] = 5683, + [5684] = 5684, + [5685] = 5413, + [5686] = 5419, + [5687] = 5346, + [5688] = 5452, + [5689] = 5689, + [5690] = 5316, + [5691] = 5315, + [5692] = 5316, + [5693] = 5386, + [5694] = 5484, + [5695] = 5356, + [5696] = 5359, + [5697] = 5697, + [5698] = 5433, + [5699] = 5310, + [5700] = 5491, + [5701] = 5492, + [5702] = 5702, + [5703] = 5360, + [5704] = 5439, + [5705] = 5705, + [5706] = 5706, + [5707] = 5707, + [5708] = 5525, + [5709] = 5525, + [5710] = 5710, + [5711] = 5711, + [5712] = 5712, + [5713] = 5713, + [5714] = 5714, + [5715] = 5715, + [5716] = 5716, + [5717] = 1465, + [5718] = 5718, + [5719] = 5719, + [5720] = 5720, + [5721] = 5721, + [5722] = 5722, + [5723] = 5723, + [5724] = 5724, + [5725] = 5725, + [5726] = 5726, + [5727] = 5723, + [5728] = 5728, + [5729] = 5729, + [5730] = 5725, + [5731] = 5731, + [5732] = 5732, + [5733] = 5733, + [5734] = 5734, + [5735] = 5735, + [5736] = 5736, + [5737] = 5714, + [5738] = 5732, + [5739] = 5739, + [5740] = 5710, + [5741] = 5735, + [5742] = 5723, + [5743] = 5743, + [5744] = 5744, + [5745] = 5729, + [5746] = 5743, + [5747] = 5747, + [5748] = 5748, + [5749] = 5722, + [5750] = 5731, + [5751] = 5751, + [5752] = 5752, + [5753] = 5753, + [5754] = 5754, + [5755] = 5722, + [5756] = 5756, + [5757] = 5747, + [5758] = 5758, + [5759] = 5736, + [5760] = 5728, + [5761] = 5761, + [5762] = 5762, + [5763] = 5763, + [5764] = 5764, + [5765] = 5765, + [5766] = 5747, + [5767] = 5767, + [5768] = 5723, + [5769] = 5725, + [5770] = 5770, + [5771] = 5714, + [5772] = 5732, + [5773] = 5773, + [5774] = 5774, + [5775] = 5775, + [5776] = 3260, + [5777] = 5777, + [5778] = 5778, + [5779] = 5723, + [5780] = 5780, + [5781] = 5725, + [5782] = 5782, + [5783] = 5747, + [5784] = 5784, + [5785] = 5736, + [5786] = 5720, + [5787] = 5723, + [5788] = 5725, + [5789] = 5722, + [5790] = 5790, + [5791] = 5735, + [5792] = 5764, + [5793] = 5793, + [5794] = 5724, + [5795] = 5729, + [5796] = 5722, + [5797] = 5729, + [5798] = 5710, + [5799] = 5764, + [5800] = 5728, + [5801] = 5801, + [5802] = 5726, + [5803] = 5803, + [5804] = 5804, + [5805] = 5743, + [5806] = 5806, + [5807] = 5780, + [5808] = 5710, + [5809] = 5809, + [5810] = 5810, + [5811] = 5811, + [5812] = 5812, + [5813] = 5813, + [5814] = 5728, + [5815] = 5729, + [5816] = 5714, + [5817] = 5731, + [5818] = 5724, + [5819] = 5819, + [5820] = 5820, + [5821] = 5751, + [5822] = 5822, + [5823] = 5724, + [5824] = 5732, + [5825] = 5743, + [5826] = 5719, + [5827] = 5827, + [5828] = 5828, + [5829] = 5829, + [5830] = 5830, + [5831] = 5723, + [5832] = 5722, + [5833] = 5720, + [5834] = 5735, + [5835] = 5725, + [5836] = 5836, + [5837] = 5764, + [5838] = 5838, + [5839] = 5839, + [5840] = 5729, + [5841] = 5764, + [5842] = 5842, + [5843] = 5719, + [5844] = 5710, + [5845] = 5764, + [5846] = 5846, + [5847] = 5728, + [5848] = 5720, + [5849] = 5735, + [5850] = 5747, + [5851] = 5851, + [5852] = 5743, + [5853] = 5764, + [5854] = 5780, + [5855] = 5726, + [5856] = 5728, + [5857] = 5857, + [5858] = 5751, + [5859] = 1470, + [5860] = 5719, + [5861] = 5861, + [5862] = 5710, + [5863] = 5773, + [5864] = 5864, + [5865] = 5865, + [5866] = 1475, + [5867] = 5751, + [5868] = 5868, + [5869] = 5719, + [5870] = 5810, + [5871] = 5780, + [5872] = 5731, + [5873] = 5839, + [5874] = 5723, + [5875] = 5875, + [5876] = 5764, + [5877] = 5877, + [5878] = 5878, + [5879] = 5722, + [5880] = 5725, + [5881] = 5710, + [5882] = 5743, + [5883] = 5732, + [5884] = 5884, + [5885] = 5729, + [5886] = 5728, + [5887] = 5810, + [5888] = 5722, + [5889] = 5810, + [5890] = 5780, + [5891] = 5722, + [5892] = 5729, + [5893] = 5736, + [5894] = 5894, + [5895] = 5764, + [5896] = 5896, + [5897] = 5897, + [5898] = 5716, + [5899] = 5899, + [5900] = 5900, + [5901] = 5901, + [5902] = 5902, + [5903] = 5903, + [5904] = 5904, + [5905] = 5905, + [5906] = 5906, + [5907] = 5907, + [5908] = 5908, + [5909] = 5909, + [5910] = 5910, + [5911] = 5911, + [5912] = 5912, + [5913] = 5913, + [5914] = 5914, + [5915] = 5915, + [5916] = 5916, + [5917] = 5917, + [5918] = 5913, + [5919] = 5914, + [5920] = 5920, + [5921] = 5921, + [5922] = 5922, + [5923] = 5915, + [5924] = 5900, + [5925] = 5925, + [5926] = 5917, + [5927] = 5927, + [5928] = 5928, + [5929] = 5929, + [5930] = 5930, + [5931] = 5931, + [5932] = 5932, + [5933] = 5933, + [5934] = 5934, + [5935] = 5935, + [5936] = 5936, + [5937] = 5937, + [5938] = 5938, + [5939] = 5939, + [5940] = 5940, + [5941] = 5941, + [5942] = 5942, + [5943] = 5943, + [5944] = 5944, + [5945] = 5945, + [5946] = 5946, + [5947] = 5947, + [5948] = 5948, + [5949] = 5949, + [5950] = 5911, + [5951] = 5951, + [5952] = 5952, + [5953] = 5953, + [5954] = 5954, + [5955] = 5955, + [5956] = 5956, + [5957] = 5957, + [5958] = 5945, + [5959] = 5959, + [5960] = 5960, + [5961] = 5961, + [5962] = 5962, + [5963] = 5963, + [5964] = 5964, + [5965] = 5965, + [5966] = 5966, + [5967] = 5967, + [5968] = 5968, + [5969] = 5969, + [5970] = 5970, + [5971] = 5971, + [5972] = 5972, + [5973] = 5973, + [5974] = 5974, + [5975] = 5975, + [5976] = 5976, + [5977] = 5977, + [5978] = 5931, + [5979] = 5922, + [5980] = 5907, + [5981] = 5981, + [5982] = 5956, + [5983] = 5908, + [5984] = 5984, + [5985] = 5910, + [5986] = 5916, + [5987] = 5925, + [5988] = 5920, + [5989] = 5921, + [5990] = 5928, + [5991] = 5965, + [5992] = 5900, + [5993] = 5993, + [5994] = 5971, + [5995] = 5995, + [5996] = 5996, + [5997] = 5929, + [5998] = 5931, + [5999] = 5932, + [6000] = 5933, + [6001] = 6001, + [6002] = 5935, + [6003] = 6003, + [6004] = 6004, + [6005] = 6005, + [6006] = 6006, + [6007] = 6007, + [6008] = 5944, + [6009] = 5964, + [6010] = 5947, + [6011] = 5949, + [6012] = 5901, + [6013] = 6013, + [6014] = 5952, + [6015] = 5902, + [6016] = 5954, + [6017] = 6017, + [6018] = 5909, + [6019] = 5912, + [6020] = 5913, + [6021] = 5959, + [6022] = 5961, + [6023] = 5914, + [6024] = 5963, + [6025] = 5969, + [6026] = 5967, + [6027] = 5917, + [6028] = 5917, + [6029] = 5937, + [6030] = 6030, + [6031] = 5971, + [6032] = 6032, + [6033] = 6033, + [6034] = 5976, + [6035] = 6035, + [6036] = 6036, + [6037] = 5939, + [6038] = 6038, + [6039] = 5951, + [6040] = 6040, + [6041] = 5908, + [6042] = 5974, + [6043] = 6043, + [6044] = 5920, + [6045] = 5921, + [6046] = 5900, + [6047] = 6047, + [6048] = 5953, + [6049] = 5939, + [6050] = 5957, + [6051] = 5929, + [6052] = 5932, + [6053] = 5935, + [6054] = 5916, + [6055] = 5938, + [6056] = 5962, + [6057] = 5925, + [6058] = 5949, + [6059] = 5968, + [6060] = 5952, + [6061] = 5969, + [6062] = 6062, + [6063] = 5937, + [6064] = 5946, + [6065] = 5928, + [6066] = 5959, + [6067] = 5973, + [6068] = 6068, + [6069] = 5963, + [6070] = 4650, + [6071] = 5967, + [6072] = 5922, + [6073] = 6073, + [6074] = 5946, + [6075] = 5939, + [6076] = 5907, + [6077] = 5916, + [6078] = 5925, + [6079] = 5976, + [6080] = 5928, + [6081] = 6081, + [6082] = 5993, + [6083] = 6083, + [6084] = 5945, + [6085] = 5995, + [6086] = 5908, + [6087] = 6087, + [6088] = 5920, + [6089] = 5921, + [6090] = 5900, + [6091] = 5996, + [6092] = 5929, + [6093] = 5932, + [6094] = 5935, + [6095] = 6095, + [6096] = 6003, + [6097] = 5962, + [6098] = 5949, + [6099] = 6099, + [6100] = 6100, + [6101] = 6006, + [6102] = 5901, + [6103] = 5959, + [6104] = 6104, + [6105] = 5902, + [6106] = 5909, + [6107] = 6107, + [6108] = 5965, + [6109] = 5971, + [6110] = 5912, + [6111] = 5913, + [6112] = 6112, + [6113] = 5914, + [6114] = 6083, + [6115] = 5917, + [6116] = 5913, + [6117] = 6117, + [6118] = 5908, + [6119] = 5920, + [6120] = 5921, + [6121] = 5900, + [6122] = 5932, + [6123] = 6123, + [6124] = 5949, + [6125] = 6125, + [6126] = 5908, + [6127] = 6127, + [6128] = 5962, + [6129] = 6129, + [6130] = 5968, + [6131] = 5969, + [6132] = 6132, + [6133] = 5973, + [6134] = 5973, + [6135] = 5972, + [6136] = 6035, + [6137] = 5920, + [6138] = 5921, + [6139] = 5900, + [6140] = 5916, + [6141] = 5949, + [6142] = 5925, + [6143] = 5928, + [6144] = 5993, + [6145] = 5932, + [6146] = 5995, + [6147] = 5996, + [6148] = 6003, + [6149] = 6004, + [6150] = 6006, + [6151] = 5900, + [6152] = 5901, + [6153] = 5949, + [6154] = 5902, + [6155] = 5909, + [6156] = 5912, + [6157] = 5913, + [6158] = 5914, + [6159] = 6159, + [6160] = 5917, + [6161] = 5914, + [6162] = 6162, + [6163] = 5900, + [6164] = 5949, + [6165] = 5900, + [6166] = 5900, + [6167] = 5900, + [6168] = 5900, + [6169] = 5900, + [6170] = 5900, + [6171] = 5948, + [6172] = 5900, + [6173] = 5961, + [6174] = 6174, + [6175] = 6047, + [6176] = 6176, + [6177] = 6177, + [6178] = 6178, + [6179] = 6179, + [6180] = 5945, + [6181] = 6181, + [6182] = 5920, + [6183] = 6183, + [6184] = 6184, + [6185] = 6185, + [6186] = 6186, + [6187] = 6187, + [6188] = 6183, + [6189] = 6189, + [6190] = 6174, + [6191] = 5965, + [6192] = 5971, + [6193] = 6193, + [6194] = 6194, + [6195] = 5969, + [6196] = 6185, + [6197] = 6197, + [6198] = 6198, + [6199] = 6197, + [6200] = 5973, + [6201] = 5966, + [6202] = 5904, + [6203] = 6036, + [6204] = 5993, + [6205] = 6205, + [6206] = 6206, + [6207] = 5995, + [6208] = 5996, + [6209] = 6003, + [6210] = 6210, + [6211] = 6083, + [6212] = 5961, + [6213] = 6213, + [6214] = 5909, + [6215] = 5912, + [6216] = 6216, + [6217] = 6217, + [6218] = 5917, + [6219] = 6040, + [6220] = 5939, + [6221] = 6221, + [6222] = 6047, + [6223] = 6159, + [6224] = 5948, + [6225] = 6183, + [6226] = 6087, + [6227] = 6227, + [6228] = 6228, + [6229] = 6229, + [6230] = 6038, + [6231] = 5966, + [6232] = 6036, + [6233] = 5941, + [6234] = 5939, + [6235] = 6235, + [6236] = 5993, + [6237] = 6030, + [6238] = 6083, + [6239] = 6239, + [6240] = 6095, + [6241] = 6241, + [6242] = 5953, + [6243] = 6243, + [6244] = 6244, + [6245] = 5995, + [6246] = 6047, + [6247] = 5957, + [6248] = 6248, + [6249] = 5996, + [6250] = 5966, + [6251] = 6036, + [6252] = 5962, + [6253] = 6183, + [6254] = 6038, + [6255] = 6003, + [6256] = 6117, + [6257] = 6062, + [6258] = 6162, + [6259] = 6117, + [6260] = 5953, + [6261] = 5948, + [6262] = 5968, + [6263] = 5969, + [6264] = 5957, + [6265] = 5948, + [6266] = 5955, + [6267] = 6186, + [6268] = 6268, + [6269] = 6269, + [6270] = 4652, + [6271] = 5973, + [6272] = 6272, + [6273] = 5965, + [6274] = 5908, + [6275] = 5939, + [6276] = 6276, + [6277] = 5920, + [6278] = 5921, + [6279] = 5977, + [6280] = 5972, + [6281] = 6281, + [6282] = 6282, + [6283] = 6283, + [6284] = 5900, + [6285] = 5960, + [6286] = 6286, + [6287] = 5934, + [6288] = 6068, + [6289] = 5922, + [6290] = 5929, + [6291] = 6099, + [6292] = 5931, + [6293] = 5907, + [6294] = 5948, + [6295] = 5932, + [6296] = 5953, + [6297] = 5933, + [6298] = 6087, + [6299] = 5935, + [6300] = 6300, + [6301] = 5957, + [6302] = 5953, + [6303] = 5993, + [6304] = 5907, + [6305] = 5962, + [6306] = 5957, + [6307] = 5954, + [6308] = 6047, + [6309] = 5916, + [6310] = 6183, + [6311] = 6311, + [6312] = 6312, + [6313] = 5995, + [6314] = 6038, + [6315] = 6197, + [6316] = 6316, + [6317] = 5925, + [6318] = 5934, + [6319] = 5996, + [6320] = 6003, + [6321] = 6068, + [6322] = 5928, + [6323] = 6197, + [6324] = 6004, + [6325] = 5972, + [6326] = 6326, + [6327] = 6327, + [6328] = 5962, + [6329] = 5968, + [6330] = 6038, + [6331] = 6331, + [6332] = 6004, + [6333] = 6333, + [6334] = 5969, + [6335] = 5941, + [6336] = 6336, + [6337] = 6179, + [6338] = 6068, + [6339] = 6339, + [6340] = 6217, + [6341] = 6178, + [6342] = 6342, + [6343] = 6100, + [6344] = 5928, + [6345] = 6345, + [6346] = 5944, + [6347] = 6117, + [6348] = 6068, + [6349] = 5929, + [6350] = 6350, + [6351] = 6047, + [6352] = 5963, + [6353] = 6183, + [6354] = 5968, + [6355] = 6235, + [6356] = 5955, + [6357] = 5930, + [6358] = 6095, + [6359] = 6083, + [6360] = 6047, + [6361] = 5947, + [6362] = 6183, + [6363] = 5993, + [6364] = 5934, + [6365] = 6217, + [6366] = 5953, + [6367] = 5995, + [6368] = 5955, + [6369] = 6369, + [6370] = 5969, + [6371] = 6371, + [6372] = 6372, + [6373] = 5949, + [6374] = 6100, + [6375] = 5993, + [6376] = 6176, + [6377] = 6178, + [6378] = 6179, + [6379] = 6379, + [6380] = 5967, + [6381] = 6185, + [6382] = 6187, + [6383] = 6383, + [6384] = 5973, + [6385] = 6385, + [6386] = 5996, + [6387] = 5947, + [6388] = 6388, + [6389] = 5934, + [6390] = 6003, + [6391] = 6391, + [6392] = 5952, + [6393] = 5995, + [6394] = 6206, + [6395] = 6395, + [6396] = 6033, + [6397] = 6397, + [6398] = 5954, + [6399] = 6399, + [6400] = 6006, + [6401] = 5955, + [6402] = 6402, + [6403] = 6397, + [6404] = 5973, + [6405] = 5955, + [6406] = 6406, + [6407] = 6407, + [6408] = 6408, + [6409] = 6409, + [6410] = 6410, + [6411] = 5996, + [6412] = 6412, + [6413] = 6035, + [6414] = 6414, + [6415] = 6003, + [6416] = 5910, + [6417] = 6417, + [6418] = 5968, + [6419] = 6339, + [6420] = 6235, + [6421] = 5981, + [6422] = 6198, + [6423] = 6312, + [6424] = 5922, + [6425] = 6099, + [6426] = 6426, + [6427] = 5955, + [6428] = 6428, + [6429] = 6006, + [6430] = 6430, + [6431] = 5907, + [6432] = 6369, + [6433] = 5916, + [6434] = 5925, + [6435] = 5928, + [6436] = 6436, + [6437] = 6437, + [6438] = 5972, + [6439] = 6004, + [6440] = 6440, + [6441] = 5901, + [6442] = 5962, + [6443] = 6428, + [6444] = 5959, + [6445] = 5902, + [6446] = 5904, + [6447] = 5960, + [6448] = 6176, + [6449] = 6178, + [6450] = 6311, + [6451] = 6451, + [6452] = 6185, + [6453] = 6187, + [6454] = 6228, + [6455] = 5963, + [6456] = 5968, + [6457] = 5909, + [6458] = 5912, + [6459] = 6117, + [6460] = 6217, + [6461] = 5963, + [6462] = 6206, + [6463] = 5955, + [6464] = 5936, + [6465] = 6198, + [6466] = 5922, + [6467] = 6007, + [6468] = 6099, + [6469] = 5913, + [6470] = 5907, + [6471] = 6471, + [6472] = 6472, + [6473] = 5969, + [6474] = 6474, + [6475] = 5914, + [6476] = 5915, + [6477] = 6006, + [6478] = 5993, + [6479] = 5938, + [6480] = 6176, + [6481] = 6178, + [6482] = 5995, + [6483] = 6185, + [6484] = 6187, + [6485] = 5967, + [6486] = 5996, + [6487] = 6003, + [6488] = 5901, + [6489] = 5952, + [6490] = 6176, + [6491] = 6206, + [6492] = 6492, + [6493] = 5966, + [6494] = 6494, + [6495] = 6036, + [6496] = 5902, + [6497] = 5917, + [6498] = 5916, + [6499] = 5940, + [6500] = 5904, + [6501] = 6228, + [6502] = 5984, + [6503] = 6198, + [6504] = 5925, + [6505] = 6399, + [6506] = 5928, + [6507] = 6176, + [6508] = 5957, + [6509] = 5972, + [6510] = 6004, + [6511] = 6511, + [6512] = 6206, + [6513] = 6513, + [6514] = 5975, + [6515] = 5965, + [6516] = 5903, + [6517] = 6006, + [6518] = 6406, + [6519] = 5901, + [6520] = 5971, + [6521] = 6521, + [6522] = 6198, + [6523] = 6159, + [6524] = 6006, + [6525] = 5901, + [6526] = 5902, + [6527] = 6176, + [6528] = 5902, + [6529] = 5963, + [6530] = 6117, + [6531] = 5904, + [6532] = 6206, + [6533] = 5976, + [6534] = 6534, + [6535] = 5904, + [6536] = 6177, + [6537] = 6228, + [6538] = 6228, + [6539] = 5939, + [6540] = 5909, + [6541] = 6331, + [6542] = 6083, + [6543] = 5915, + [6544] = 5933, + [6545] = 6206, + [6546] = 6546, + [6547] = 5912, + [6548] = 5968, + [6549] = 5951, + [6550] = 6550, + [6551] = 5993, + [6552] = 6552, + [6553] = 5995, + [6554] = 5996, + [6555] = 6003, + [6556] = 6556, + [6557] = 6269, + [6558] = 6184, + [6559] = 6327, + [6560] = 6560, + [6561] = 6561, + [6562] = 6562, + [6563] = 5945, + [6564] = 5908, + [6565] = 5973, + [6566] = 5966, + [6567] = 5949, + [6568] = 6336, + [6569] = 6521, + [6570] = 6570, + [6571] = 5910, + [6572] = 6210, + [6573] = 6573, + [6574] = 5909, + [6575] = 5912, + [6576] = 5944, + [6577] = 6043, + [6578] = 6578, + [6579] = 6036, + [6580] = 6179, + [6581] = 6430, + [6582] = 6582, + [6583] = 6583, + [6584] = 5948, + [6585] = 6047, + [6586] = 5917, + [6587] = 6183, + [6588] = 6038, + [6589] = 6589, + [6590] = 6590, + [6591] = 6591, + [6592] = 6040, + [6593] = 5953, + [6594] = 5973, + [6595] = 6595, + [6596] = 6210, + [6597] = 6589, + [6598] = 6521, + [6599] = 6599, + [6600] = 5957, + [6601] = 5968, + [6602] = 4653, + [6603] = 5955, + [6604] = 5900, + [6605] = 6605, + [6606] = 6606, + [6607] = 6383, + [6608] = 6198, + [6609] = 5921, + [6610] = 5948, + [6611] = 6417, + [6612] = 5913, + [6613] = 5962, + [6614] = 5914, + [6615] = 6615, + [6616] = 5915, + [6617] = 6436, + [6618] = 5920, + [6619] = 6006, + [6620] = 5901, + [6621] = 5902, + [6622] = 5921, + [6623] = 6550, + [6624] = 5904, + [6625] = 6228, + [6626] = 6626, + [6627] = 6187, + [6628] = 6283, + [6629] = 5900, + [6630] = 5962, + [6631] = 5981, + [6632] = 6038, + [6633] = 5922, + [6634] = 6634, + [6635] = 5917, + [6636] = 6099, + [6637] = 5929, + [6638] = 6062, + [6639] = 5922, + [6640] = 5946, + [6641] = 6100, + [6642] = 5931, + [6643] = 5932, + [6644] = 5933, + [6645] = 6645, + [6646] = 6327, + [6647] = 5935, + [6648] = 6062, + [6649] = 6336, + [6650] = 6430, + [6651] = 5974, + [6652] = 5968, + [6653] = 5969, + [6654] = 5945, + [6655] = 6047, + [6656] = 6436, + [6657] = 6183, + [6658] = 6658, + [6659] = 5965, + [6660] = 6197, + [6661] = 6440, + [6662] = 5971, + [6663] = 5968, + [6664] = 6006, + [6665] = 5955, + [6666] = 6556, + [6667] = 5941, + [6668] = 6440, + [6669] = 6669, + [6670] = 5907, + [6671] = 5953, + [6672] = 6179, + [6673] = 5944, + [6674] = 5901, + [6675] = 6521, + [6676] = 6047, + [6677] = 5973, + [6678] = 6183, + [6679] = 5947, + [6680] = 6589, + [6681] = 5957, + [6682] = 6591, + [6683] = 6683, + [6684] = 6210, + [6685] = 5909, + [6686] = 5912, + [6687] = 5902, + [6688] = 5949, + [6689] = 6689, + [6690] = 5955, + [6691] = 6513, + [6692] = 5961, + [6693] = 5913, + [6694] = 6383, + [6695] = 6521, + [6696] = 6043, + [6697] = 6697, + [6698] = 5909, + [6699] = 5939, + [6700] = 5912, + [6701] = 5952, + [6702] = 5922, + [6703] = 5954, + [6704] = 6561, + [6705] = 6683, + [6706] = 6513, + [6707] = 6437, + [6708] = 5907, + [6709] = 6333, + [6710] = 6710, + [6711] = 5959, + [6712] = 5916, + [6713] = 6047, + [6714] = 6714, + [6715] = 6183, + [6716] = 5959, + [6717] = 5960, + [6718] = 5916, + [6719] = 6311, + [6720] = 6720, + [6721] = 6043, + [6722] = 5925, + [6723] = 5963, + [6724] = 5913, + [6725] = 5914, + [6726] = 5909, + [6727] = 6047, + [6728] = 5915, + [6729] = 6183, + [6730] = 5928, + [6731] = 6083, + [6732] = 5955, + [6733] = 6189, + [6734] = 5936, + [6735] = 6004, + [6736] = 5940, + [6737] = 6179, + [6738] = 5925, + [6739] = 6589, + [6740] = 6591, + [6741] = 5975, + [6742] = 5943, + [6743] = 6591, + [6744] = 5914, + [6745] = 5915, + [6746] = 5911, + [6747] = 6179, + [6748] = 6181, + [6749] = 6589, + [6750] = 6591, + [6751] = 5956, + [6752] = 6752, + [6753] = 6033, + [6754] = 5964, + [6755] = 6179, + [6756] = 6561, + [6757] = 6589, + [6758] = 6591, + [6759] = 5967, + [6760] = 6104, + [6761] = 6117, + [6762] = 6371, + [6763] = 5993, + [6764] = 6589, + [6765] = 6591, + [6766] = 5976, + [6767] = 6589, + [6768] = 6591, + [6769] = 5977, + [6770] = 6589, + [6771] = 5995, + [6772] = 6589, + [6773] = 5966, + [6774] = 6268, + [6775] = 6013, + [6776] = 5981, + [6777] = 6036, + [6778] = 5996, + [6779] = 5984, + [6780] = 6780, + [6781] = 5975, + [6782] = 5912, + [6783] = 6003, + [6784] = 5903, + [6785] = 5943, + [6786] = 4658, + [6787] = 6099, + [6788] = 6312, + [6789] = 5976, + [6790] = 5935, + [6791] = 6272, + [6792] = 5969, +}; + +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 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(420); + ADVANCE_MAP( + '!', 509, + '"', 624, + '#', 677, + '%', 529, + '&', 538, + '\'', 604, + '(', 425, + ')', 428, + '*', 525, + '+', 520, + ',', 427, + '-', 512, + '.', 578, + '/', 527, + '0', 584, + ':', 731, + ';', 553, + '<', 576, + '=', 560, + '>', 542, + '?', 563, + '@', 610, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 2, + ']', 556, + '^', 535, + 'u', 647, + '{', 557, + '|', 532, + '}', 558, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(415); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(585); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 1: + if (lookahead == '\n') SKIP(93); + END_STATE(); + case 2: + if (lookahead == '\n') SKIP(93); + if (lookahead == '\r') SKIP(1); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 3: + if (lookahead == '\n') SKIP(101); + END_STATE(); + case 4: + if (lookahead == '\n') SKIP(101); + if (lookahead == '\r') SKIP(3); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 5: + if (lookahead == '\n') SKIP(99); + END_STATE(); + case 6: + if (lookahead == '\n') SKIP(99); + if (lookahead == '\r') SKIP(5); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 7: + if (lookahead == '\n') SKIP(108); + END_STATE(); + case 8: + if (lookahead == '\n') SKIP(108); + if (lookahead == '\r') SKIP(7); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 9: + if (lookahead == '\n') SKIP(107); + END_STATE(); + case 10: + if (lookahead == '\n') SKIP(107); + if (lookahead == '\r') SKIP(9); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 11: + if (lookahead == '\n') SKIP(102); + END_STATE(); + case 12: + if (lookahead == '\n') SKIP(102); + if (lookahead == '\r') SKIP(11); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 13: + if (lookahead == '\n') SKIP(96); + END_STATE(); + case 14: + if (lookahead == '\n') SKIP(96); + if (lookahead == '\r') SKIP(13); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 15: + if (lookahead == '\n') SKIP(111); + END_STATE(); + case 16: + if (lookahead == '\n') SKIP(111); + if (lookahead == '\r') SKIP(15); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 17: + if (lookahead == '\n') SKIP(115); + END_STATE(); + case 18: + if (lookahead == '\n') SKIP(115); + if (lookahead == '\r') SKIP(17); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 19: + if (lookahead == '\n') SKIP(110); + END_STATE(); + case 20: + if (lookahead == '\n') SKIP(110); + if (lookahead == '\r') SKIP(19); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 21: + if (lookahead == '\n') SKIP(114); + END_STATE(); + case 22: + if (lookahead == '\n') SKIP(114); + if (lookahead == '\r') SKIP(21); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 23: + if (lookahead == '\n') SKIP(132); + END_STATE(); + case 24: + if (lookahead == '\n') SKIP(132); + if (lookahead == '\r') SKIP(23); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 25: + if (lookahead == '\n') SKIP(127); + END_STATE(); + case 26: + if (lookahead == '\n') SKIP(127); + if (lookahead == '\r') SKIP(25); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 27: + if (lookahead == '\n') SKIP(133); + END_STATE(); + case 28: + if (lookahead == '\n') SKIP(133); + if (lookahead == '\r') SKIP(27); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 29: + if (lookahead == '\n') SKIP(120); + END_STATE(); + case 30: + if (lookahead == '\n') SKIP(120); + if (lookahead == '\r') SKIP(29); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 31: + if (lookahead == '\n') SKIP(124); + END_STATE(); + case 32: + if (lookahead == '\n') SKIP(124); + if (lookahead == '\r') SKIP(31); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 33: + if (lookahead == '\n') SKIP(112); + END_STATE(); + case 34: + if (lookahead == '\n') SKIP(112); + if (lookahead == '\r') SKIP(33); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 35: + if (lookahead == '\n') SKIP(117); + END_STATE(); + case 36: + if (lookahead == '\n') SKIP(117); + if (lookahead == '\r') SKIP(35); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 37: + if (lookahead == '\n') SKIP(123); + END_STATE(); + case 38: + if (lookahead == '\n') SKIP(123); + if (lookahead == '\r') SKIP(37); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 39: + if (lookahead == '\n') SKIP(134); + END_STATE(); + case 40: + if (lookahead == '\n') SKIP(134); + if (lookahead == '\r') SKIP(39); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 41: + if (lookahead == '\n') SKIP(130); + END_STATE(); + case 42: + if (lookahead == '\n') SKIP(130); + if (lookahead == '\r') SKIP(41); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 43: + if (lookahead == '\n') SKIP(122); + END_STATE(); + case 44: + if (lookahead == '\n') SKIP(122); + if (lookahead == '\r') SKIP(43); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 45: + if (lookahead == '\n') SKIP(121); + END_STATE(); + case 46: + if (lookahead == '\n') SKIP(121); + if (lookahead == '\r') SKIP(45); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 47: + if (lookahead == '\n') SKIP(116); + END_STATE(); + case 48: + if (lookahead == '\n') SKIP(116); + if (lookahead == '\r') SKIP(47); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 49: + if (lookahead == '\n') SKIP(51); + END_STATE(); + case 50: + if (lookahead == '\n') SKIP(51); + if (lookahead == '\r') SKIP(49); + END_STATE(); + case 51: + ADVANCE_MAP( + '\n', 431, + '!', 151, + '%', 528, + '&', 537, + '(', 506, + '*', 524, + '+', 518, + '-', 511, + '/', 526, + '<', 548, + '=', 152, + '>', 543, + ); + if (lookahead == '\\') SKIP(50); + if (lookahead == '^') ADVANCE(534); + if (lookahead == '|') ADVANCE(533); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(51); + END_STATE(); + case 52: + if (lookahead == '\n') SKIP(129); + END_STATE(); + case 53: + if (lookahead == '\n') SKIP(129); + if (lookahead == '\r') SKIP(52); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 54: + if (lookahead == '\n') SKIP(131); + if (lookahead == '"') ADVANCE(624); + if (lookahead == '/') ADVANCE(629); + if (lookahead == '\\') ADVANCE(55); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) ADVANCE(632); + if (lookahead != 0) ADVANCE(633); + END_STATE(); + case 55: + if (lookahead == '\n') ADVANCE(635); + if (lookahead == '\r') ADVANCE(634); + if (lookahead == 'U') ADVANCE(413); + if (lookahead == 'u') ADVANCE(405); + if (lookahead == 'x') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(637); + if (lookahead != 0) ADVANCE(634); + END_STATE(); + case 56: + if (lookahead == '\n') ADVANCE(423); + if (lookahead == '\r') ADVANCE(60); + if (lookahead == '(') ADVANCE(425); + if (lookahead == '/') ADVANCE(459); + if (lookahead == '\\') ADVANCE(453); + if (lookahead == 0xa0) ADVANCE(455); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(149); + if (lookahead != 0) ADVANCE(462); + END_STATE(); + case 57: + if (lookahead == '\n') ADVANCE(423); + if (lookahead == '\r') ADVANCE(60); + if (lookahead == '/') ADVANCE(459); + if (lookahead == '\\') ADVANCE(453); + if (lookahead == 0xa0) ADVANCE(455); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(149); + if (lookahead != 0) ADVANCE(462); + END_STATE(); + case 58: + if (lookahead == '\n') ADVANCE(423); + if (lookahead == '\r') ADVANCE(59); + if (lookahead == '(') ADVANCE(506); + if (lookahead == '.') ADVANCE(391); + if (lookahead == '/') ADVANCE(139); + if (lookahead == '0') ADVANCE(586); + if (lookahead == '\\') SKIP(63); + if (lookahead == '+' || + lookahead == '-') ADVANCE(143); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(136); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + END_STATE(); + case 59: + if (lookahead == '\n') ADVANCE(423); + if (lookahead == '(') ADVANCE(506); + if (lookahead == '.') ADVANCE(391); + if (lookahead == '/') ADVANCE(139); + if (lookahead == '0') ADVANCE(586); + if (lookahead == '\\') SKIP(63); + if (lookahead == '+' || + lookahead == '-') ADVANCE(143); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(136); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + END_STATE(); + case 60: + if (lookahead == '\n') ADVANCE(423); + if (lookahead == '/') ADVANCE(459); + if (lookahead == '\\') ADVANCE(453); + if (lookahead == 0xa0) ADVANCE(455); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(149); + if (lookahead != 0) ADVANCE(462); + END_STATE(); + case 61: + if (lookahead == '\n') SKIP(135); + if (lookahead == '\'') ADVANCE(604); + if (lookahead == '/') ADVANCE(607); + if (lookahead == '\\') ADVANCE(606); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) ADVANCE(608); + if (lookahead != 0) ADVANCE(605); + END_STATE(); + case 62: + if (lookahead == '\n') SKIP(136); + END_STATE(); + case 63: + if (lookahead == '\n') SKIP(136); + if (lookahead == '\r') SKIP(62); + END_STATE(); + case 64: + if (lookahead == '\n') SKIP(137); + END_STATE(); + case 65: + if (lookahead == '\n') SKIP(137); + if (lookahead == '\r') SKIP(64); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 66: + if (lookahead == '\n') SKIP(94); + END_STATE(); + case 67: + if (lookahead == '\n') SKIP(94); + if (lookahead == '\r') SKIP(66); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 68: + if (lookahead == '\n') SKIP(105); + END_STATE(); + case 69: + if (lookahead == '\n') SKIP(105); + if (lookahead == '\r') SKIP(68); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 70: + if (lookahead == '\n') SKIP(103); + END_STATE(); + case 71: + if (lookahead == '\n') SKIP(103); + if (lookahead == '\r') SKIP(70); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 72: + if (lookahead == '\n') SKIP(97); + END_STATE(); + case 73: + if (lookahead == '\n') SKIP(97); + if (lookahead == '\r') SKIP(72); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 74: + if (lookahead == '\n') SKIP(113); + END_STATE(); + case 75: + if (lookahead == '\n') SKIP(113); + if (lookahead == '\r') SKIP(74); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 76: + if (lookahead == '\n') SKIP(125); + END_STATE(); + case 77: + if (lookahead == '\n') SKIP(125); + if (lookahead == '\r') SKIP(76); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 78: + if (lookahead == '\n') SKIP(118); + END_STATE(); + case 79: + if (lookahead == '\n') SKIP(118); + if (lookahead == '\r') SKIP(78); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 80: + if (lookahead == '\n') SKIP(95); + END_STATE(); + case 81: + if (lookahead == '\n') SKIP(95); + if (lookahead == '\r') SKIP(80); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 82: + if (lookahead == '\n') SKIP(100); + END_STATE(); + case 83: + if (lookahead == '\n') SKIP(100); + if (lookahead == '\r') SKIP(82); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 84: + if (lookahead == '\n') SKIP(128); + END_STATE(); + case 85: + if (lookahead == '\n') SKIP(128); + if (lookahead == '\r') SKIP(84); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 86: + if (lookahead == '\n') SKIP(106); + END_STATE(); + case 87: + if (lookahead == '\n') SKIP(106); + if (lookahead == '\r') SKIP(86); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 88: + if (lookahead == '\n') SKIP(104); + END_STATE(); + case 89: + if (lookahead == '\n') SKIP(104); + if (lookahead == '\r') SKIP(88); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 90: + if (lookahead == '\n') SKIP(109); + END_STATE(); + case 91: + if (lookahead == '\n') SKIP(109); + if (lookahead == '\r') SKIP(90); + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 92: + if (lookahead == '\r') ADVANCE(671); + if (lookahead == '\\') ADVANCE(661); + if (lookahead != 0) ADVANCE(670); + END_STATE(); + case 93: + ADVANCE_MAP( + '!', 509, + '"', 624, + '#', 677, + '%', 529, + '&', 538, + '\'', 604, + '(', 506, + ')', 428, + '*', 525, + '+', 520, + ',', 427, + '-', 512, + '.', 578, + '/', 527, + '0', 584, + ':', 562, + ';', 553, + '<', 547, + '=', 560, + '>', 542, + '?', 563, + '@', 610, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 2, + ']', 556, + '^', 535, + 'u', 647, + '{', 557, + '|', 532, + '}', 558, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(93); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(585); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 94: + ADVANCE_MAP( + '!', 509, + '"', 624, + '#', 270, + '%', 529, + '&', 538, + '\'', 604, + '(', 506, + ')', 428, + '*', 525, + '+', 520, + ',', 427, + '-', 512, + '.', 578, + '/', 527, + '0', 586, + ':', 562, + ';', 553, + '<', 547, + '=', 560, + '>', 542, + '?', 563, + '@', 621, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 67, + ']', 556, + '^', 535, + 'u', 647, + '{', 557, + '|', 532, + '}', 558, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(94); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 95: + ADVANCE_MAP( + '!', 509, + '"', 624, + '#', 270, + '%', 528, + '&', 537, + '\'', 604, + '(', 506, + ')', 428, + '*', 524, + '+', 521, + ',', 427, + '-', 513, + '.', 578, + '/', 526, + '0', 586, + ':', 562, + ';', 553, + '<', 548, + '=', 152, + '>', 543, + '?', 563, + '@', 621, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 81, + ']', 556, + '^', 534, + 'u', 647, + '{', 557, + '|', 533, + '}', 558, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(95); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 96: + ADVANCE_MAP( + '!', 509, + '"', 624, + '%', 529, + '&', 538, + '\'', 604, + '(', 506, + '*', 525, + '+', 520, + ',', 427, + '-', 512, + '.', 578, + '/', 527, + '0', 586, + ';', 553, + '<', 547, + '=', 560, + '>', 542, + '?', 563, + '@', 619, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 14, + '^', 535, + 'u', 647, + '{', 557, + '|', 532, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(96); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 97: + ADVANCE_MAP( + '!', 509, + '"', 624, + '%', 528, + '&', 537, + '\'', 604, + '(', 506, + '*', 524, + '+', 521, + ',', 427, + '-', 513, + '.', 578, + '/', 526, + '0', 586, + ';', 553, + '<', 548, + '=', 152, + '>', 543, + '?', 563, + '@', 619, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 73, + '^', 534, + 'u', 647, + '{', 557, + '|', 533, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(97); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 98: + ADVANCE_MAP( + '!', 508, + '"', 624, + '#', 677, + '&', 536, + '\'', 604, + '(', 506, + ')', 428, + '*', 524, + '+', 521, + '-', 514, + '.', 391, + '/', 139, + '0', 586, + ':', 731, + ';', 553, + '@', 614, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 6, + '^', 534, + 'u', 647, + '{', 557, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(99); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 99: + ADVANCE_MAP( + '!', 508, + '"', 624, + '#', 677, + '&', 536, + '\'', 604, + '(', 506, + ')', 428, + '*', 524, + '+', 521, + '-', 514, + '.', 391, + '/', 139, + '0', 586, + ';', 553, + '@', 614, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 6, + '^', 534, + 'u', 647, + '{', 557, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(99); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 100: + ADVANCE_MAP( + '!', 508, + '"', 624, + '#', 677, + '&', 536, + '\'', 604, + '(', 506, + '*', 524, + '+', 521, + '-', 514, + '.', 391, + '/', 139, + '0', 586, + ';', 553, + '@', 610, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 83, + '^', 534, + 'u', 647, + '{', 557, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(100); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 101: + ADVANCE_MAP( + '!', 508, + '"', 624, + '#', 680, + '&', 536, + '\'', 604, + '(', 506, + ')', 428, + '*', 524, + '+', 521, + ',', 427, + '-', 514, + '.', 147, + '/', 139, + '0', 586, + ':', 562, + ';', 553, + '<', 546, + '>', 541, + '@', 616, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 4, + ']', 556, + '^', 534, + 'u', 647, + '{', 557, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(101); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 102: + ADVANCE_MAP( + '!', 508, + '"', 624, + '#', 680, + '&', 536, + '\'', 604, + '(', 506, + '*', 524, + '+', 521, + '-', 514, + '.', 391, + '/', 139, + '0', 586, + ';', 553, + '@', 615, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 12, + '^', 534, + 'u', 647, + '{', 557, + '}', 558, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(102); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 103: + ADVANCE_MAP( + '!', 508, + '"', 624, + '#', 680, + '&', 536, + '\'', 604, + '(', 506, + '*', 524, + '+', 521, + '-', 514, + '.', 391, + '/', 139, + '0', 586, + ';', 553, + '@', 611, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 71, + '^', 534, + 'u', 647, + '{', 557, + '}', 558, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(103); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 104: + ADVANCE_MAP( + '!', 508, + '"', 624, + '#', 680, + '&', 536, + '\'', 604, + '(', 506, + '*', 524, + '+', 521, + '-', 514, + '.', 391, + '/', 139, + '0', 586, + ';', 553, + '@', 612, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 89, + '^', 534, + 'u', 647, + '{', 557, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(104); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 105: + ADVANCE_MAP( + '!', 508, + '"', 624, + '#', 239, + '&', 536, + '\'', 604, + '(', 506, + '*', 524, + '+', 521, + '-', 514, + '.', 391, + '/', 139, + '0', 586, + ';', 553, + '@', 618, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 69, + '^', 534, + 'u', 647, + '{', 557, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(105); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 106: + ADVANCE_MAP( + '!', 508, + '"', 624, + '#', 678, + '&', 536, + '\'', 604, + '(', 506, + '*', 524, + '+', 521, + '-', 514, + '.', 391, + '/', 139, + '0', 586, + ';', 553, + '@', 610, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 87, + '^', 534, + 'u', 647, + '{', 557, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(106); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 107: + ADVANCE_MAP( + '!', 508, + '"', 624, + '#', 678, + '&', 536, + '\'', 604, + '(', 506, + '*', 524, + '+', 521, + '-', 514, + '.', 391, + '/', 139, + '0', 586, + ';', 553, + '@', 614, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 10, + '^', 534, + 'u', 647, + '{', 557, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 108: + ADVANCE_MAP( + '!', 508, + '"', 624, + '#', 679, + '&', 536, + '\'', 604, + '(', 506, + '*', 524, + '+', 521, + ',', 427, + '-', 514, + '.', 391, + '/', 139, + '0', 586, + ':', 150, + ';', 553, + '@', 614, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 8, + ']', 556, + '^', 534, + 'u', 647, + '{', 557, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(108); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 109: + ADVANCE_MAP( + '!', 508, + '"', 624, + '#', 679, + '&', 536, + '\'', 604, + '(', 506, + '*', 524, + '+', 521, + '-', 514, + '.', 391, + '/', 139, + '0', 586, + ';', 553, + '@', 610, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 91, + '^', 534, + 'u', 647, + '{', 557, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(109); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 110: + ADVANCE_MAP( + '!', 508, + '"', 624, + '&', 536, + '\'', 604, + '(', 506, + ')', 428, + '*', 524, + '+', 521, + ',', 427, + '-', 514, + '.', 391, + '/', 139, + '0', 586, + ':', 562, + ';', 553, + '>', 541, + '@', 617, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 20, + '^', 534, + 'u', 647, + '{', 557, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(110); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 111: + ADVANCE_MAP( + '!', 508, + '"', 624, + '&', 536, + '\'', 604, + '(', 506, + ')', 428, + '*', 524, + '+', 521, + ',', 427, + '-', 514, + '.', 579, + '/', 139, + '0', 586, + ':', 562, + ';', 553, + '@', 621, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 16, + ']', 556, + '^', 534, + 'u', 647, + '{', 557, + '}', 558, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(111); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 112: + ADVANCE_MAP( + '!', 508, + '"', 624, + '&', 536, + '\'', 604, + '(', 506, + ')', 428, + '*', 524, + '+', 521, + '-', 514, + '.', 391, + '/', 139, + '0', 586, + '<', 546, + '@', 619, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 34, + '^', 534, + 'u', 647, + '{', 557, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(112); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 113: + ADVANCE_MAP( + '!', 508, + '"', 624, + '&', 536, + '\'', 604, + '(', 506, + '*', 524, + '+', 521, + '-', 514, + '.', 391, + '/', 139, + '0', 584, + '@', 621, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 75, + '^', 534, + 'u', 647, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(113); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(585); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 114: + ADVANCE_MAP( + '!', 508, + '"', 624, + '&', 536, + '\'', 604, + '(', 506, + '*', 524, + '+', 521, + '-', 514, + '.', 391, + '/', 139, + '0', 586, + ';', 553, + '@', 613, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 22, + '^', 534, + 'u', 647, + '{', 557, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(114); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 115: + ADVANCE_MAP( + '!', 508, + '"', 624, + '&', 536, + '\'', 604, + '(', 506, + '*', 524, + '+', 521, + '-', 514, + '.', 391, + '/', 139, + '0', 586, + '@', 620, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 18, + '^', 534, + 'u', 647, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(115); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 116: + ADVANCE_MAP( + '!', 508, + '\'', 604, + '(', 506, + ')', 428, + '+', 523, + '-', 517, + '.', 391, + '/', 139, + '0', 586, + '<', 153, + 'L', 651, + 'U', 652, + '\\', 48, + 'u', 653, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(116); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 117: + ADVANCE_MAP( + '!', 151, + '"', 624, + '#', 270, + '%', 529, + '&', 538, + '(', 506, + ')', 428, + '*', 525, + '+', 522, + ',', 427, + '-', 515, + '.', 577, + '/', 527, + ':', 562, + ';', 553, + '<', 547, + '=', 560, + '>', 542, + '?', 563, + '@', 609, + 'L', 644, + 'U', 646, + '[', 555, + '\\', 36, + ']', 556, + '^', 535, + 'u', 648, + '|', 532, + '}', 558, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(117); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 118: + ADVANCE_MAP( + '!', 151, + '"', 624, + '#', 270, + '%', 528, + '&', 537, + '(', 506, + ')', 428, + '*', 524, + '+', 519, + ',', 427, + '-', 516, + '.', 577, + '/', 526, + ':', 562, + ';', 553, + '<', 548, + '=', 152, + '>', 543, + '?', 563, + '@', 609, + 'L', 644, + 'U', 646, + '[', 555, + '\\', 79, + ']', 556, + '^', 534, + 'u', 648, + '|', 533, + '}', 558, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(118); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 119: + ADVANCE_MAP( + '!', 151, + '"', 624, + '%', 529, + '&', 538, + '(', 506, + ')', 428, + '*', 525, + '+', 522, + ',', 427, + '-', 515, + '.', 577, + '/', 527, + ':', 731, + '<', 576, + '=', 560, + '>', 542, + '?', 563, + '@', 609, + 'L', 644, + 'U', 646, + '[', 555, + '\\', 46, + '^', 535, + 'u', 648, + '|', 532, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(121); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 120: + ADVANCE_MAP( + '!', 151, + '"', 624, + '%', 529, + '&', 538, + '(', 506, + ')', 428, + '*', 525, + '+', 522, + ',', 427, + '-', 515, + '.', 577, + '/', 527, + ';', 553, + '<', 547, + '=', 560, + '>', 542, + '?', 563, + '@', 622, + 'L', 644, + 'U', 646, + '[', 555, + '\\', 30, + '^', 535, + 'u', 648, + '{', 557, + '|', 532, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(120); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 121: + ADVANCE_MAP( + '!', 151, + '"', 624, + '%', 529, + '&', 538, + '(', 506, + ')', 428, + '*', 525, + '+', 522, + ',', 427, + '-', 515, + '.', 577, + '/', 527, + '<', 547, + '=', 560, + '>', 542, + '?', 563, + '@', 609, + 'L', 644, + 'U', 646, + '[', 555, + '\\', 46, + '^', 535, + 'u', 648, + '|', 532, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(121); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 122: + ADVANCE_MAP( + '!', 151, + '"', 624, + '%', 529, + '&', 538, + '(', 506, + '*', 525, + '+', 522, + ',', 427, + '-', 515, + '.', 577, + '/', 527, + ':', 150, + '<', 547, + '=', 560, + '>', 542, + '?', 563, + '@', 609, + 'L', 644, + 'U', 646, + '[', 555, + '\\', 44, + ']', 556, + '^', 535, + 'u', 648, + '|', 532, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(122); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 123: + ADVANCE_MAP( + '!', 151, + '"', 624, + '%', 528, + '&', 537, + '(', 506, + '*', 524, + '+', 519, + ',', 427, + '-', 516, + '.', 577, + '/', 526, + ';', 553, + '<', 548, + '=', 152, + '>', 543, + '?', 563, + '@', 622, + 'L', 644, + 'U', 646, + '[', 555, + '\\', 38, + '^', 534, + 'u', 648, + '{', 557, + '|', 533, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(123); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 124: + ADVANCE_MAP( + '!', 151, + '#', 223, + '%', 529, + '&', 538, + '(', 506, + ')', 428, + '*', 525, + '+', 522, + ',', 427, + '-', 515, + '.', 577, + '/', 527, + ':', 562, + ';', 553, + '<', 547, + '=', 560, + '>', 542, + '?', 563, + '@', 162, + '[', 555, + '\\', 32, + ']', 556, + '^', 535, + '{', 557, + '|', 532, + '}', 558, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(124); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 125: + ADVANCE_MAP( + '!', 151, + '#', 196, + '%', 528, + '&', 537, + '(', 506, + ')', 428, + '*', 524, + '+', 519, + ',', 427, + '-', 516, + '.', 577, + '/', 526, + ':', 562, + ';', 553, + '<', 548, + '=', 152, + '>', 543, + '?', 563, + '@', 160, + '[', 555, + '\\', 77, + ']', 556, + '^', 534, + '{', 557, + '|', 533, + '}', 558, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(125); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 126: + ADVANCE_MAP( + '!', 151, + '#', 200, + '%', 528, + '&', 537, + '(', 506, + ')', 428, + '*', 524, + '+', 518, + ',', 427, + '-', 511, + '/', 526, + ':', 731, + ';', 553, + '<', 548, + '=', 152, + '>', 543, + '@', 203, + '[', 555, + '\\', 26, + '^', 534, + '|', 533, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(127); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 127: + ADVANCE_MAP( + '!', 151, + '#', 200, + '%', 528, + '&', 537, + '(', 506, + ')', 428, + '*', 524, + '+', 518, + ',', 427, + '-', 511, + '/', 526, + ';', 553, + '<', 548, + '=', 152, + '>', 543, + '@', 203, + '[', 555, + '\\', 26, + '^', 534, + '|', 533, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(127); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 128: + ADVANCE_MAP( + '!', 151, + '#', 247, + '%', 528, + '&', 537, + '(', 506, + ')', 428, + '*', 524, + '+', 519, + ',', 427, + '-', 516, + '.', 577, + '/', 526, + ':', 562, + ';', 553, + '<', 548, + '=', 560, + '>', 543, + '?', 563, + '@', 159, + '[', 555, + '\\', 85, + ']', 556, + '^', 534, + '{', 557, + '|', 533, + '}', 558, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(128); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 129: + ADVANCE_MAP( + '"', 624, + '/', 139, + '<', 153, + '@', 609, + 'L', 644, + 'U', 646, + '\\', 53, + 'u', 648, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(129); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 130: + ADVANCE_MAP( + '"', 624, + '/', 139, + '@', 623, + 'L', 644, + 'U', 646, + '[', 555, + '\\', 42, + 'u', 648, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(130); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 131: + if (lookahead == '"') ADVANCE(624); + if (lookahead == '/') ADVANCE(139); + if (lookahead == '\\') ADVANCE(55); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(131); + END_STATE(); + case 132: + ADVANCE_MAP( + '#', 202, + '(', 506, + ')', 428, + '*', 524, + '+', 518, + ',', 427, + '-', 511, + '.', 146, + '/', 139, + ':', 562, + ';', 553, + '<', 546, + '=', 559, + '>', 541, + '@', 158, + '[', 555, + '\\', 24, + ']', 556, + '^', 534, + '{', 557, + '}', 558, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 133: + ADVANCE_MAP( + '#', 198, + '(', 506, + '*', 524, + '+', 518, + '-', 511, + '/', 139, + ';', 553, + '@', 208, + '[', 555, + '\\', 28, + '^', 534, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(133); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 134: + ADVANCE_MAP( + '#', 273, + '(', 506, + ')', 428, + '*', 524, + ',', 427, + '.', 391, + '/', 139, + '0', 586, + ':', 562, + ';', 553, + '<', 546, + '=', 559, + '>', 541, + '@', 161, + '[', 555, + '\\', 40, + '^', 534, + '{', 557, + '}', 558, + '+', 143, + '-', 143, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(134); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 135: + if (lookahead == '\'') ADVANCE(604); + if (lookahead == '/') ADVANCE(139); + if (lookahead == '\\') ADVANCE(55); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(135); + END_STATE(); + case 136: + if (lookahead == '(') ADVANCE(506); + if (lookahead == '.') ADVANCE(391); + if (lookahead == '/') ADVANCE(139); + if (lookahead == '0') ADVANCE(586); + if (lookahead == '\\') SKIP(63); + if (lookahead == '+' || + lookahead == '-') ADVANCE(143); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(136); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + END_STATE(); + case 137: + if (lookahead == '(') ADVANCE(192); + if (lookahead == '/') ADVANCE(139); + if (lookahead == '\\') ADVANCE(65); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(137); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 138: + if (lookahead == ')') ADVANCE(694); + END_STATE(); + case 139: + if (lookahead == '*') ADVANCE(141); + if (lookahead == '/') ADVANCE(670); + END_STATE(); + case 140: + if (lookahead == '*') ADVANCE(140); + if (lookahead == '/') ADVANCE(657); + if (lookahead != 0) ADVANCE(141); + END_STATE(); + case 141: + if (lookahead == '*') ADVANCE(140); + if (lookahead != 0) ADVANCE(141); + END_STATE(); + case 142: + if (lookahead == '*') ADVANCE(140); + if (lookahead != 0) ADVANCE(449); + END_STATE(); + case 143: + if (lookahead == '.') ADVANCE(391); + if (lookahead == '0') ADVANCE(586); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + END_STATE(); + case 144: + if (lookahead == '.') ADVANCE(391); + if (lookahead == '0') ADVANCE(582); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(583); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(595); + END_STATE(); + case 145: + if (lookahead == '.') ADVANCE(391); + if (lookahead == '0') ADVANCE(587); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + END_STATE(); + case 146: + if (lookahead == '.') ADVANCE(148); + END_STATE(); + case 147: + if (lookahead == '.') ADVANCE(148); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(581); + END_STATE(); + case 148: + if (lookahead == '.') ADVANCE(426); + END_STATE(); + case 149: + if (lookahead == '/') ADVANCE(459); + if (lookahead == '\\') ADVANCE(453); + if (lookahead == 0xa0) ADVANCE(455); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(149); + if (lookahead != 0) ADVANCE(462); + END_STATE(); + case 150: + if (lookahead == ':') ADVANCE(554); + END_STATE(); + case 151: + if (lookahead == '=') ADVANCE(540); + END_STATE(); + case 152: + if (lookahead == '=') ADVANCE(539); + END_STATE(); + case 153: + if (lookahead == '>') ADVANCE(641); + if (lookahead == '\\') ADVANCE(154); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(153); + END_STATE(); + case 154: + if (lookahead == '>') ADVANCE(642); + if (lookahead == '\\') ADVANCE(154); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(153); + END_STATE(); + case 155: + if (lookahead == 'U') ADVANCE(412); + if (lookahead == 'u') ADVANCE(404); + END_STATE(); + case 156: + if (lookahead == '_') ADVANCE(177); + END_STATE(); + case 157: + if (lookahead == 'a') ADVANCE(182); + END_STATE(); + case 158: + ADVANCE_MAP( + 'a', 376, + 'c', 165, + 'd', 238, + 'e', 313, + 'f', 282, + 'i', 305, + 'o', 340, + 'p', 351, + 'r', 222, + 's', 387, + ); + END_STATE(); + case 159: + if (lookahead == 'a') ADVANCE(376); + if (lookahead == 'c') ADVANCE(165); + if (lookahead == 'f') ADVANCE(282); + END_STATE(); + case 160: + if (lookahead == 'a') ADVANCE(376); + if (lookahead == 'd') ADVANCE(237); + if (lookahead == 'i') ADVANCE(305); + if (lookahead == 'p') ADVANCE(343); + END_STATE(); + case 161: + if (lookahead == 'a') ADVANCE(376); + if (lookahead == 'i') ADVANCE(305); + if (lookahead == 'p') ADVANCE(176); + END_STATE(); + case 162: + if (lookahead == 'a') ADVANCE(376); + if (lookahead == 'p') ADVANCE(175); + END_STATE(); + case 163: + if (lookahead == 'a') ADVANCE(259); + END_STATE(); + case 164: + if (lookahead == 'a') ADVANCE(265); + END_STATE(); + case 165: + if (lookahead == 'a') ADVANCE(362); + END_STATE(); + case 166: + if (lookahead == 'a') ADVANCE(362); + if (lookahead == 'o') ADVANCE(303); + END_STATE(); + case 167: + if (lookahead == 'a') ADVANCE(304); + END_STATE(); + case 168: + if (lookahead == 'a') ADVANCE(359); + END_STATE(); + case 169: + if (lookahead == 'a') ADVANCE(293); + END_STATE(); + case 170: + if (lookahead == 'a') ADVANCE(354); + END_STATE(); + case 171: + if (lookahead == 'a') ADVANCE(366); + END_STATE(); + case 172: + if (lookahead == 'a') ADVANCE(191); + END_STATE(); + case 173: + if (lookahead == 'a') ADVANCE(358); + END_STATE(); + case 174: + if (lookahead == 'a') ADVANCE(369); + END_STATE(); + case 175: + if (lookahead == 'a') ADVANCE(185); + if (lookahead == 'r') ADVANCE(269); + if (lookahead == 'u') ADVANCE(180); + END_STATE(); + case 176: + if (lookahead == 'a') ADVANCE(185); + if (lookahead == 'r') ADVANCE(268); + if (lookahead == 'u') ADVANCE(180); + END_STATE(); + case 177: + if (lookahead == 'a') ADVANCE(296); + END_STATE(); + case 178: + if (lookahead == 'a') ADVANCE(287); + END_STATE(); + case 179: + if (lookahead == 'a') ADVANCE(372); + END_STATE(); + case 180: + if (lookahead == 'b') ADVANCE(301); + END_STATE(); + case 181: + if (lookahead == 'b') ADVANCE(272); + END_STATE(); + case 182: + if (lookahead == 'b') ADVANCE(298); + END_STATE(); + case 183: + if (lookahead == 'c') ADVANCE(260); + END_STATE(); + case 184: + if (lookahead == 'c') ADVANCE(693); + END_STATE(); + case 185: + if (lookahead == 'c') ADVANCE(284); + END_STATE(); + case 186: + if (lookahead == 'c') ADVANCE(688); + END_STATE(); + case 187: + if (lookahead == 'c') ADVANCE(263); + END_STATE(); + case 188: + if (lookahead == 'c') ADVANCE(263); + if (lookahead == 't') ADVANCE(261); + END_STATE(); + case 189: + if (lookahead == 'c') ADVANCE(320); + END_STATE(); + case 190: + if (lookahead == 'c') ADVANCE(326); + END_STATE(); + case 191: + if (lookahead == 'c') ADVANCE(220); + END_STATE(); + case 192: + if (lookahead == 'c') ADVANCE(299); + END_STATE(); + case 193: + if (lookahead == 'c') ADVANCE(373); + END_STATE(); + case 194: + if (lookahead == 'c') ADVANCE(370); + END_STATE(); + case 195: + if (lookahead == 'd') ADVANCE(470); + if (lookahead == 'e') ADVANCE(494); + if (lookahead == 'i') ADVANCE(480); + if (lookahead == 'u') ADVANCE(498); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(195); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 196: + if (lookahead == 'd') ADVANCE(470); + if (lookahead == 'e') ADVANCE(494); + if (lookahead == 'i') ADVANCE(481); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(196); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 197: + if (lookahead == 'd') ADVANCE(470); + if (lookahead == 'e') ADVANCE(497); + if (lookahead == 'i') ADVANCE(480); + if (lookahead == 'u') ADVANCE(498); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(197); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 198: + if (lookahead == 'd') ADVANCE(470); + if (lookahead == 'e') ADVANCE(497); + if (lookahead == 'i') ADVANCE(481); + if (lookahead == 'u') ADVANCE(498); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(198); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 199: + if (lookahead == 'd') ADVANCE(470); + if (lookahead == 'e') ADVANCE(496); + if (lookahead == 'i') ADVANCE(480); + if (lookahead == 'u') ADVANCE(498); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(199); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 200: + if (lookahead == 'd') ADVANCE(470); + if (lookahead == 'e') ADVANCE(496); + if (lookahead == 'i') ADVANCE(481); + if (lookahead == 'u') ADVANCE(498); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(200); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 201: + if (lookahead == 'd') ADVANCE(470); + if (lookahead == 'i') ADVANCE(480); + if (lookahead == 'u') ADVANCE(498); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(201); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 202: + if (lookahead == 'd') ADVANCE(470); + if (lookahead == 'i') ADVANCE(481); + if (lookahead == 'u') ADVANCE(498); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(202); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 203: + if (lookahead == 'd') ADVANCE(386); + if (lookahead == 'p') ADVANCE(352); + if (lookahead == 's') ADVANCE(387); + END_STATE(); + case 204: + if (lookahead == 'd') ADVANCE(729); + END_STATE(); + case 205: + if (lookahead == 'd') ADVANCE(682); + END_STATE(); + case 206: + if (lookahead == 'd') ADVANCE(691); + END_STATE(); + case 207: + if (lookahead == 'd') ADVANCE(686); + END_STATE(); + case 208: + if (lookahead == 'd') ADVANCE(238); + if (lookahead == 'p') ADVANCE(352); + if (lookahead == 's') ADVANCE(387); + END_STATE(); + case 209: + if (lookahead == 'd') ADVANCE(217); + END_STATE(); + case 210: + if (lookahead == 'd') ADVANCE(266); + END_STATE(); + case 211: + if (lookahead == 'd') ADVANCE(233); + if (lookahead == 'n') ADVANCE(212); + END_STATE(); + case 212: + if (lookahead == 'd') ADVANCE(235); + END_STATE(); + case 213: + if (lookahead == 'd') ADVANCE(244); + END_STATE(); + case 214: + if (lookahead == 'e') ADVANCE(289); + END_STATE(); + case 215: + if (lookahead == 'e') ADVANCE(289); + if (lookahead == 'y') ADVANCE(308); + END_STATE(); + case 216: + if (lookahead == 'e') ADVANCE(289); + if (lookahead == 'y') ADVANCE(315); + END_STATE(); + case 217: + if (lookahead == 'e') ADVANCE(728); + END_STATE(); + case 218: + if (lookahead == 'e') ADVANCE(357); + END_STATE(); + case 219: + if (lookahead == 'e') ADVANCE(719); + END_STATE(); + case 220: + if (lookahead == 'e') ADVANCE(683); + END_STATE(); + case 221: + if (lookahead == 'e') ADVANCE(692); + END_STATE(); + case 222: + if (lookahead == 'e') ADVANCE(342); + END_STATE(); + case 223: + if (lookahead == 'e') ADVANCE(288); + if (lookahead == 'i') ADVANCE(252); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(223); + END_STATE(); + case 224: + if (lookahead == 'e') ADVANCE(438); + END_STATE(); + case 225: + if (lookahead == 'e') ADVANCE(687); + END_STATE(); + case 226: + if (lookahead == 'e') ADVANCE(685); + END_STATE(); + case 227: + if (lookahead == 'e') ADVANCE(204); + END_STATE(); + case 228: + if (lookahead == 'e') ADVANCE(306); + END_STATE(); + case 229: + if (lookahead == 'e') ADVANCE(194); + END_STATE(); + case 230: + if (lookahead == 'e') ADVANCE(336); + END_STATE(); + case 231: + if (lookahead == 'e') ADVANCE(314); + END_STATE(); + case 232: + if (lookahead == 'e') ADVANCE(344); + END_STATE(); + case 233: + if (lookahead == 'e') ADVANCE(250); + END_STATE(); + case 234: + if (lookahead == 'e') ADVANCE(206); + END_STATE(); + case 235: + if (lookahead == 'e') ADVANCE(251); + END_STATE(); + case 236: + if (lookahead == 'e') ADVANCE(207); + END_STATE(); + case 237: + if (lookahead == 'e') ADVANCE(257); + END_STATE(); + case 238: + if (lookahead == 'e') ADVANCE(257); + if (lookahead == 'y') ADVANCE(310); + END_STATE(); + case 239: + if (lookahead == 'e') ADVANCE(312); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(239); + END_STATE(); + case 240: + if (lookahead == 'e') ADVANCE(168); + END_STATE(); + case 241: + if (lookahead == 'e') ADVANCE(193); + END_STATE(); + case 242: + if (lookahead == 'e') ADVANCE(193); + if (lookahead == 'o') ADVANCE(190); + END_STATE(); + case 243: + if (lookahead == 'e') ADVANCE(254); + END_STATE(); + case 244: + if (lookahead == 'e') ADVANCE(255); + END_STATE(); + case 245: + if (lookahead == 'e') ADVANCE(297); + END_STATE(); + case 246: + if (lookahead == 'e') ADVANCE(350); + END_STATE(); + case 247: + if (lookahead == 'e') ADVANCE(300); + if (lookahead == 'i') ADVANCE(249); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(247); + END_STATE(); + case 248: + if (lookahead == 'f') ADVANCE(432); + END_STATE(); + case 249: + if (lookahead == 'f') ADVANCE(211); + END_STATE(); + case 250: + if (lookahead == 'f') ADVANCE(434); + END_STATE(); + case 251: + if (lookahead == 'f') ADVANCE(436); + END_STATE(); + case 252: + if (lookahead == 'f') ADVANCE(429); + END_STATE(); + case 253: + if (lookahead == 'f') ADVANCE(441); + END_STATE(); + case 254: + if (lookahead == 'f') ADVANCE(444); + END_STATE(); + case 255: + if (lookahead == 'f') ADVANCE(446); + END_STATE(); + case 256: + if (lookahead == 'f') ADVANCE(440); + END_STATE(); + case 257: + if (lookahead == 'f') ADVANCE(355); + END_STATE(); + case 258: + if (lookahead == 'f') ADVANCE(172); + END_STATE(); + case 259: + if (lookahead == 'g') ADVANCE(225); + END_STATE(); + case 260: + if (lookahead == 'h') ADVANCE(697); + END_STATE(); + case 261: + if (lookahead == 'h') ADVANCE(218); + END_STATE(); + case 262: + if (lookahead == 'h') ADVANCE(346); + if (lookahead == 'r') ADVANCE(382); + END_STATE(); + case 263: + if (lookahead == 'h') ADVANCE(349); + END_STATE(); + case 264: + if (lookahead == 'i') ADVANCE(388); + END_STATE(); + case 265: + if (lookahead == 'i') ADVANCE(294); + END_STATE(); + case 266: + if (lookahead == 'i') ADVANCE(248); + END_STATE(); + case 267: + if (lookahead == 'i') ADVANCE(181); + END_STATE(); + case 268: + if (lookahead == 'i') ADVANCE(380); + if (lookahead == 'o') ADVANCE(338); + END_STATE(); + case 269: + if (lookahead == 'i') ADVANCE(380); + if (lookahead == 'o') ADVANCE(374); + END_STATE(); + case 270: + if (lookahead == 'i') ADVANCE(249); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(270); + END_STATE(); + case 271: + if (lookahead == 'i') ADVANCE(184); + END_STATE(); + case 272: + if (lookahead == 'i') ADVANCE(295); + END_STATE(); + case 273: + if (lookahead == 'i') ADVANCE(252); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(273); + END_STATE(); + case 274: + if (lookahead == 'i') ADVANCE(365); + END_STATE(); + case 275: + if (lookahead == 'i') ADVANCE(253); + if (lookahead == 's') ADVANCE(224); + END_STATE(); + case 276: + if (lookahead == 'i') ADVANCE(170); + END_STATE(); + case 277: + if (lookahead == 'i') ADVANCE(186); + END_STATE(); + case 278: + if (lookahead == 'i') ADVANCE(327); + END_STATE(); + case 279: + if (lookahead == 'i') ADVANCE(256); + if (lookahead == 's') ADVANCE(224); + END_STATE(); + case 280: + if (lookahead == 'i') ADVANCE(333); + END_STATE(); + case 281: + if (lookahead == 'i') ADVANCE(389); + END_STATE(); + case 282: + if (lookahead == 'i') ADVANCE(311); + END_STATE(); + case 283: + if (lookahead == 'i') ADVANCE(353); + END_STATE(); + case 284: + if (lookahead == 'k') ADVANCE(163); + END_STATE(); + case 285: + if (lookahead == 'l') ADVANCE(681); + END_STATE(); + case 286: + if (lookahead == 'l') ADVANCE(561); + END_STATE(); + case 287: + if (lookahead == 'l') ADVANCE(690); + END_STATE(); + case 288: + if (lookahead == 'l') ADVANCE(275); + if (lookahead == 'n') ADVANCE(210); + END_STATE(); + case 289: + if (lookahead == 'l') ADVANCE(229); + END_STATE(); + case 290: + if (lookahead == 'l') ADVANCE(383); + END_STATE(); + case 291: + if (lookahead == 'l') ADVANCE(228); + END_STATE(); + case 292: + if (lookahead == 'l') ADVANCE(228); + if (lookahead == 'o') ADVANCE(348); + END_STATE(); + case 293: + if (lookahead == 'l') ADVANCE(290); + END_STATE(); + case 294: + if (lookahead == 'l') ADVANCE(157); + END_STATE(); + case 295: + if (lookahead == 'l') ADVANCE(274); + END_STATE(); + case 296: + if (lookahead == 'l') ADVANCE(276); + END_STATE(); + case 297: + if (lookahead == 'l') ADVANCE(240); + END_STATE(); + case 298: + if (lookahead == 'l') ADVANCE(219); + END_STATE(); + case 299: + if (lookahead == 'l') ADVANCE(173); + END_STATE(); + case 300: + if (lookahead == 'l') ADVANCE(279); + if (lookahead == 'n') ADVANCE(210); + END_STATE(); + case 301: + if (lookahead == 'l') ADVANCE(277); + END_STATE(); + case 302: + if (lookahead == 'm') ADVANCE(334); + if (lookahead == 'n') ADVANCE(360); + END_STATE(); + case 303: + if (lookahead == 'm') ADVANCE(335); + END_STATE(); + case 304: + if (lookahead == 'm') ADVANCE(271); + END_STATE(); + case 305: + if (lookahead == 'm') ADVANCE(341); + if (lookahead == 'n') ADVANCE(360); + END_STATE(); + case 306: + if (lookahead == 'm') ADVANCE(231); + END_STATE(); + case 307: + if (lookahead == 'n') ADVANCE(189); + END_STATE(); + case 308: + if (lookahead == 'n') ADVANCE(188); + END_STATE(); + case 309: + if (lookahead == 'n') ADVANCE(684); + END_STATE(); + case 310: + if (lookahead == 'n') ADVANCE(167); + END_STATE(); + case 311: + if (lookahead == 'n') ADVANCE(169); + END_STATE(); + case 312: + if (lookahead == 'n') ADVANCE(210); + END_STATE(); + case 313: + if (lookahead == 'n') ADVANCE(205); + END_STATE(); + case 314: + if (lookahead == 'n') ADVANCE(371); + END_STATE(); + case 315: + if (lookahead == 'n') ADVANCE(187); + END_STATE(); + case 316: + if (lookahead == 'n') ADVANCE(364); + END_STATE(); + case 317: + if (lookahead == 'n') ADVANCE(281); + END_STATE(); + case 318: + if (lookahead == 'n') ADVANCE(178); + END_STATE(); + case 319: + if (lookahead == 'o') ADVANCE(303); + END_STATE(); + case 320: + if (lookahead == 'o') ADVANCE(209); + END_STATE(); + case 321: + if (lookahead == 'o') ADVANCE(381); + END_STATE(); + case 322: + if (lookahead == 'o') ADVANCE(339); + END_STATE(); + case 323: + if (lookahead == 'o') ADVANCE(347); + END_STATE(); + case 324: + if (lookahead == 'o') ADVANCE(317); + END_STATE(); + case 325: + if (lookahead == 'o') ADVANCE(345); + END_STATE(); + case 326: + if (lookahead == 'o') ADVANCE(285); + END_STATE(); + case 327: + if (lookahead == 'o') ADVANCE(309); + END_STATE(); + case 328: + if (lookahead == 'o') ADVANCE(337); + END_STATE(); + case 329: + if (lookahead == 'o') ADVANCE(286); + END_STATE(); + case 330: + if (lookahead == 'o') ADVANCE(329); + END_STATE(); + case 331: + if (lookahead == 'o') ADVANCE(368); + END_STATE(); + case 332: + if (lookahead == 'o') ADVANCE(190); + END_STATE(); + case 333: + if (lookahead == 'o') ADVANCE(318); + END_STATE(); + case 334: + if (lookahead == 'p') ADVANCE(292); + END_STATE(); + case 335: + if (lookahead == 'p') ADVANCE(171); + END_STATE(); + case 336: + if (lookahead == 'p') ADVANCE(330); + END_STATE(); + case 337: + if (lookahead == 'p') ADVANCE(246); + END_STATE(); + case 338: + if (lookahead == 'p') ADVANCE(246); + if (lookahead == 't') ADVANCE(242); + END_STATE(); + case 339: + if (lookahead == 'p') ADVANCE(246); + if (lookahead == 't') ADVANCE(332); + END_STATE(); + case 340: + if (lookahead == 'p') ADVANCE(375); + END_STATE(); + case 341: + if (lookahead == 'p') ADVANCE(291); + END_STATE(); + case 342: + if (lookahead == 'q') ADVANCE(378); + END_STATE(); + case 343: + if (lookahead == 'r') ADVANCE(331); + END_STATE(); + case 344: + if (lookahead == 'r') ADVANCE(258); + END_STATE(); + case 345: + if (lookahead == 'r') ADVANCE(700); + END_STATE(); + case 346: + if (lookahead == 'r') ADVANCE(321); + END_STATE(); + case 347: + if (lookahead == 'r') ADVANCE(245); + END_STATE(); + case 348: + if (lookahead == 'r') ADVANCE(361); + END_STATE(); + case 349: + if (lookahead == 'r') ADVANCE(324); + END_STATE(); + case 350: + if (lookahead == 'r') ADVANCE(367); + END_STATE(); + case 351: + if (lookahead == 'r') ADVANCE(322); + END_STATE(); + case 352: + if (lookahead == 'r') ADVANCE(328); + END_STATE(); + case 353: + if (lookahead == 'r') ADVANCE(234); + END_STATE(); + case 354: + if (lookahead == 's') ADVANCE(689); + END_STATE(); + case 355: + if (lookahead == 's') ADVANCE(730); + END_STATE(); + case 356: + if (lookahead == 's') ADVANCE(138); + END_STATE(); + case 357: + if (lookahead == 's') ADVANCE(264); + END_STATE(); + case 358: + if (lookahead == 's') ADVANCE(356); + END_STATE(); + case 359: + if (lookahead == 's') ADVANCE(230); + END_STATE(); + case 360: + if (lookahead == 't') ADVANCE(232); + END_STATE(); + case 361: + if (lookahead == 't') ADVANCE(676); + END_STATE(); + case 362: + if (lookahead == 't') ADVANCE(183); + END_STATE(); + case 363: + if (lookahead == 't') ADVANCE(323); + END_STATE(); + case 364: + if (lookahead == 't') ADVANCE(261); + END_STATE(); + case 365: + if (lookahead == 't') ADVANCE(384); + END_STATE(); + case 366: + if (lookahead == 't') ADVANCE(267); + END_STATE(); + case 367: + if (lookahead == 't') ADVANCE(385); + END_STATE(); + case 368: + if (lookahead == 't') ADVANCE(332); + END_STATE(); + case 369: + if (lookahead == 't') ADVANCE(278); + END_STATE(); + case 370: + if (lookahead == 't') ADVANCE(325); + END_STATE(); + case 371: + if (lookahead == 't') ADVANCE(174); + END_STATE(); + case 372: + if (lookahead == 't') ADVANCE(226); + END_STATE(); + case 373: + if (lookahead == 't') ADVANCE(236); + END_STATE(); + case 374: + if (lookahead == 't') ADVANCE(241); + END_STATE(); + case 375: + if (lookahead == 't') ADVANCE(280); + END_STATE(); + case 376: + if (lookahead == 'u') ADVANCE(363); + END_STATE(); + case 377: + if (lookahead == 'u') ADVANCE(363); + if (lookahead == 'v') ADVANCE(164); + END_STATE(); + case 378: + if (lookahead == 'u') ADVANCE(283); + END_STATE(); + case 379: + if (lookahead == 'v') ADVANCE(164); + END_STATE(); + case 380: + if (lookahead == 'v') ADVANCE(179); + END_STATE(); + case 381: + if (lookahead == 'w') ADVANCE(699); + END_STATE(); + case 382: + if (lookahead == 'y') ADVANCE(696); + END_STATE(); + case 383: + if (lookahead == 'y') ADVANCE(698); + END_STATE(); + case 384: + if (lookahead == 'y') ADVANCE(156); + END_STATE(); + case 385: + if (lookahead == 'y') ADVANCE(695); + END_STATE(); + case 386: + if (lookahead == 'y') ADVANCE(310); + END_STATE(); + case 387: + if (lookahead == 'y') ADVANCE(316); + END_STATE(); + case 388: + if (lookahead == 'z') ADVANCE(221); + END_STATE(); + case 389: + if (lookahead == 'z') ADVANCE(227); + END_STATE(); + case 390: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(588); + END_STATE(); + case 391: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(581); + END_STATE(); + case 392: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); + END_STATE(); + case 393: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(583); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(595); + END_STATE(); + case 394: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(655); + END_STATE(); + case 395: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(592); + END_STATE(); + case 396: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(595); + END_STATE(); + case 397: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(589); + END_STATE(); + case 398: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(634); + END_STATE(); + case 399: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(640); + END_STATE(); + case 400: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(394); + END_STATE(); + case 401: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(398); + END_STATE(); + case 402: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(400); + END_STATE(); + case 403: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(401); + END_STATE(); + case 404: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(402); + END_STATE(); + case 405: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(403); + END_STATE(); + case 406: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(404); + END_STATE(); + case 407: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(405); + END_STATE(); + case 408: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(406); + END_STATE(); + case 409: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(407); + END_STATE(); + case 410: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(408); + END_STATE(); + case 411: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(409); + END_STATE(); + case 412: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(410); + END_STATE(); + case 413: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(411); + END_STATE(); + case 414: + if (lookahead != 0 && + lookahead != '*') ADVANCE(462); + END_STATE(); + case 415: + if (eof) ADVANCE(420); + ADVANCE_MAP( + '!', 509, + '"', 624, + '#', 677, + '%', 529, + '&', 538, + '\'', 604, + '(', 506, + ')', 428, + '*', 525, + '+', 520, + ',', 427, + '-', 512, + '.', 578, + '/', 527, + '0', 584, + ':', 562, + ';', 553, + '<', 547, + '=', 560, + '>', 542, + '?', 563, + '@', 610, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 2, + ']', 556, + '^', 535, + 'u', 647, + '{', 557, + '|', 532, + '}', 558, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(415); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(585); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 416: + if (eof) ADVANCE(420); + ADVANCE_MAP( + '!', 508, + '"', 624, + '#', 680, + '&', 536, + '\'', 604, + '(', 506, + ')', 428, + '*', 524, + '+', 521, + ',', 427, + '-', 514, + '.', 147, + '/', 139, + '0', 586, + ':', 562, + ';', 553, + '<', 546, + '>', 541, + '@', 616, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 4, + ']', 556, + '^', 534, + 'u', 647, + '{', 557, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(416); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 417: + if (eof) ADVANCE(420); + ADVANCE_MAP( + '!', 508, + '"', 624, + '#', 680, + '&', 536, + '\'', 604, + '(', 506, + '*', 524, + '+', 521, + '-', 514, + '.', 391, + '/', 139, + '0', 586, + ';', 553, + '@', 615, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 12, + '^', 534, + 'u', 647, + '{', 557, + '}', 558, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(417); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 418: + if (eof) ADVANCE(420); + ADVANCE_MAP( + '!', 508, + '"', 624, + '#', 680, + '&', 536, + '\'', 604, + '(', 506, + '*', 524, + '+', 521, + '-', 514, + '.', 391, + '/', 139, + '0', 586, + ';', 553, + '@', 611, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 71, + '^', 534, + 'u', 647, + '{', 557, + '}', 558, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(418); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 419: + if (eof) ADVANCE(420); + ADVANCE_MAP( + '!', 508, + '"', 624, + '#', 680, + '&', 536, + '\'', 604, + '(', 506, + '*', 524, + '+', 521, + '-', 514, + '.', 391, + '/', 139, + '0', 586, + ';', 553, + '@', 612, + 'L', 643, + 'U', 645, + '[', 555, + '\\', 89, + '^', 534, + 'u', 647, + '{', 557, + '~', 510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(419); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(655); + END_STATE(); + case 420: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 421: + ACCEPT_TOKEN(aux_sym_preproc_include_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 422: + ACCEPT_TOKEN(aux_sym_preproc_include_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 423: + ACCEPT_TOKEN(aux_sym_preproc_include_token3); + END_STATE(); + case 424: + ACCEPT_TOKEN(aux_sym_preproc_def_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 425: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 426: + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + END_STATE(); + case 427: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 428: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 429: + ACCEPT_TOKEN(aux_sym_preproc_if_token1); + if (lookahead == 'd') ADVANCE(233); + if (lookahead == 'n') ADVANCE(212); + END_STATE(); + case 430: + ACCEPT_TOKEN(aux_sym_preproc_if_token1); + if (lookahead == 'd') ADVANCE(474); + if (lookahead == 'n') ADVANCE(468); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 431: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(431); + END_STATE(); + case 432: + ACCEPT_TOKEN(aux_sym_preproc_if_token2); + END_STATE(); + case 433: + ACCEPT_TOKEN(aux_sym_preproc_if_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 434: + ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); + END_STATE(); + case 435: + ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 436: + ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); + END_STATE(); + case 437: + ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 438: + ACCEPT_TOKEN(aux_sym_preproc_else_token1); + END_STATE(); + case 439: + ACCEPT_TOKEN(aux_sym_preproc_else_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 440: + ACCEPT_TOKEN(aux_sym_preproc_elif_token1); + END_STATE(); + case 441: + ACCEPT_TOKEN(aux_sym_preproc_elif_token1); + if (lookahead == 'd') ADVANCE(243); + if (lookahead == 'n') ADVANCE(213); + END_STATE(); + case 442: + ACCEPT_TOKEN(aux_sym_preproc_elif_token1); + if (lookahead == 'd') ADVANCE(477); + if (lookahead == 'n') ADVANCE(469); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 443: + ACCEPT_TOKEN(aux_sym_preproc_elif_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 444: + ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); + END_STATE(); + case 445: + ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 446: + ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); + END_STATE(); + case 447: + ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 448: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') ADVANCE(141); + if (lookahead == '*') ADVANCE(448); + if (lookahead == '/') ADVANCE(657); + if (lookahead == '\\') ADVANCE(458); + if (lookahead != 0) ADVANCE(449); + END_STATE(); + case 449: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') ADVANCE(141); + if (lookahead == '*') ADVANCE(448); + if (lookahead == '/') ADVANCE(142); + if (lookahead == '\\') ADVANCE(458); + if (lookahead != 0) ADVANCE(449); + END_STATE(); + case 450: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') ADVANCE(670); + if (lookahead == '\r') ADVANCE(658); + if (lookahead == '/') ADVANCE(666); + if (lookahead == '\\') ADVANCE(663); + if (lookahead != 0) ADVANCE(667); + END_STATE(); + case 451: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') ADVANCE(455); + if (lookahead == '\r') ADVANCE(452); + if (lookahead == '/') ADVANCE(414); + if (lookahead == '\\') ADVANCE(456); + if (lookahead != 0) ADVANCE(462); + END_STATE(); + case 452: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') ADVANCE(455); + if (lookahead == '/') ADVANCE(414); + if (lookahead == '\\') ADVANCE(456); + if (lookahead != 0) ADVANCE(462); + END_STATE(); + case 453: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') SKIP(149); + if (lookahead == '\r') ADVANCE(454); + if (lookahead == '/') ADVANCE(414); + if (lookahead == '\\') ADVANCE(456); + if (lookahead != 0) ADVANCE(462); + END_STATE(); + case 454: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') SKIP(149); + if (lookahead == '/') ADVANCE(414); + if (lookahead == '\\') ADVANCE(456); + if (lookahead != 0) ADVANCE(462); + END_STATE(); + case 455: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') SKIP(149); + if (lookahead == '/') ADVANCE(460); + if (lookahead == '\\') ADVANCE(451); + if (lookahead == 0xa0) ADVANCE(455); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(455); + if (lookahead != 0) ADVANCE(462); + END_STATE(); + case 456: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\r') ADVANCE(463); + if (lookahead == '/') ADVANCE(414); + if (lookahead == '\\') ADVANCE(456); + if (lookahead != 0) ADVANCE(462); + END_STATE(); + case 457: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\r') ADVANCE(668); + if (lookahead == '/') ADVANCE(666); + if (lookahead == '\\') ADVANCE(663); + if (lookahead != 0) ADVANCE(667); + END_STATE(); + case 458: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\r') ADVANCE(461); + if (lookahead == '*') ADVANCE(448); + if (lookahead == '/') ADVANCE(142); + if (lookahead == '\\') ADVANCE(458); + if (lookahead != 0) ADVANCE(449); + END_STATE(); + case 459: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '*') ADVANCE(449); + if (lookahead == '/') ADVANCE(666); + if (lookahead == '\\') ADVANCE(456); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(462); + END_STATE(); + case 460: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '*') ADVANCE(449); + if (lookahead == '/') ADVANCE(669); + if (lookahead == '\\') ADVANCE(456); + if (lookahead != 0) ADVANCE(462); + END_STATE(); + case 461: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '*') ADVANCE(448); + if (lookahead == '/') ADVANCE(142); + if (lookahead == '\\') ADVANCE(458); + if (lookahead != 0) ADVANCE(449); + END_STATE(); + case 462: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '/') ADVANCE(414); + if (lookahead == '\\') ADVANCE(456); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(462); + END_STATE(); + case 463: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '/') ADVANCE(414); + if (lookahead == '\\') ADVANCE(456); + if (lookahead != 0) ADVANCE(462); + END_STATE(); + case 464: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'c') ADVANCE(495); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 465: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(492); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 466: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(473); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 467: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(475); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 468: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(476); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 469: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(478); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 470: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(482); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 471: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(439); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 472: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(424); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 473: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(421); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 474: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(485); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 475: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(479); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 476: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(486); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 477: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(487); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 478: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(488); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 479: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(505); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 480: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(430); + if (lookahead == 'm') ADVANCE(501); + if (lookahead == 'n') ADVANCE(464); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 481: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(430); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 482: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(490); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 483: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(442); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 484: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(433); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 485: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(435); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 486: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(437); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 487: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(445); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 488: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(447); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 489: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(443); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 490: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(499); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 491: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(483); + if (lookahead == 's') ADVANCE(471); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 492: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(484); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 493: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(489); + if (lookahead == 's') ADVANCE(471); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 494: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'l') ADVANCE(491); + if (lookahead == 'n') ADVANCE(465); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 495: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'l') ADVANCE(504); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 496: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(465); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 497: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(465); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 498: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(467); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 499: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(472); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 500: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'o') ADVANCE(502); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 501: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'p') ADVANCE(500); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 502: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'r') ADVANCE(503); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 503: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 't') ADVANCE(422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 504: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'u') ADVANCE(466); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 505: + ACCEPT_TOKEN(sym_preproc_directive); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 506: + ACCEPT_TOKEN(anon_sym_LPAREN2); + END_STATE(); + case 507: + ACCEPT_TOKEN(anon_sym_LPAREN2); + if (lookahead != 0 && + lookahead != ')') ADVANCE(718); + END_STATE(); + case 508: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 509: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(540); + END_STATE(); + case 510: + ACCEPT_TOKEN(anon_sym_TILDE); + END_STATE(); + case 511: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 512: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(574); + if (lookahead == '.') ADVANCE(391); + if (lookahead == '0') ADVANCE(586); + if (lookahead == '=') ADVANCE(568); + if (lookahead == '>') ADVANCE(580); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + END_STATE(); + case 513: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(574); + if (lookahead == '.') ADVANCE(391); + if (lookahead == '0') ADVANCE(586); + if (lookahead == '>') ADVANCE(580); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + END_STATE(); + case 514: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(574); + if (lookahead == '.') ADVANCE(391); + if (lookahead == '0') ADVANCE(586); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + END_STATE(); + case 515: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(574); + if (lookahead == '=') ADVANCE(568); + if (lookahead == '>') ADVANCE(580); + END_STATE(); + case 516: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(574); + if (lookahead == '>') ADVANCE(580); + END_STATE(); + case 517: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '.') ADVANCE(391); + if (lookahead == '0') ADVANCE(586); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + END_STATE(); + case 518: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 519: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(575); + END_STATE(); + case 520: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(575); + if (lookahead == '.') ADVANCE(391); + if (lookahead == '0') ADVANCE(586); + if (lookahead == '=') ADVANCE(567); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + END_STATE(); + case 521: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(575); + if (lookahead == '.') ADVANCE(391); + if (lookahead == '0') ADVANCE(586); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + END_STATE(); + case 522: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(575); + if (lookahead == '=') ADVANCE(567); + END_STATE(); + case 523: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '.') ADVANCE(391); + if (lookahead == '0') ADVANCE(586); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(588); + END_STATE(); + case 524: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 525: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(564); + END_STATE(); + case 526: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(141); + if (lookahead == '/') ADVANCE(670); + END_STATE(); + case 527: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(141); + if (lookahead == '/') ADVANCE(670); + if (lookahead == '=') ADVANCE(565); + END_STATE(); + case 528: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 529: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(566); + END_STATE(); + case 530: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 531: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + END_STATE(); + case 532: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(573); + if (lookahead == '|') ADVANCE(530); + END_STATE(); + case 533: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(530); + END_STATE(); + case 534: + ACCEPT_TOKEN(anon_sym_CARET); + END_STATE(); + case 535: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(572); + END_STATE(); + case 536: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 537: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(531); + END_STATE(); + case 538: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(531); + if (lookahead == '=') ADVANCE(571); + END_STATE(); + case 539: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + END_STATE(); + case 540: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + END_STATE(); + case 541: + ACCEPT_TOKEN(anon_sym_GT); + END_STATE(); + case 542: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(544); + if (lookahead == '>') ADVANCE(552); + END_STATE(); + case 543: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(544); + if (lookahead == '>') ADVANCE(551); + END_STATE(); + case 544: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 545: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 546: + ACCEPT_TOKEN(anon_sym_LT); + END_STATE(); + case 547: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '=') ADVANCE(545); + END_STATE(); + case 548: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(549); + if (lookahead == '=') ADVANCE(545); + END_STATE(); + case 549: + ACCEPT_TOKEN(anon_sym_LT_LT); + END_STATE(); + case 550: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(569); + END_STATE(); + case 551: + ACCEPT_TOKEN(anon_sym_GT_GT); + END_STATE(); + case 552: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(570); + END_STATE(); + case 553: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 554: + ACCEPT_TOKEN(anon_sym_COLON_COLON); + END_STATE(); + case 555: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 556: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 557: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 558: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 559: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 560: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(539); + END_STATE(); + case 561: + ACCEPT_TOKEN(anon_sym_ATautoreleasepool); + END_STATE(); + case 562: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 563: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 564: + ACCEPT_TOKEN(anon_sym_STAR_EQ); + END_STATE(); + case 565: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + END_STATE(); + case 566: + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + END_STATE(); + case 567: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 568: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 569: + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + END_STATE(); + case 570: + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + END_STATE(); + case 571: + ACCEPT_TOKEN(anon_sym_AMP_EQ); + END_STATE(); + case 572: + ACCEPT_TOKEN(anon_sym_CARET_EQ); + END_STATE(); + case 573: + ACCEPT_TOKEN(anon_sym_PIPE_EQ); + END_STATE(); + case 574: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + END_STATE(); + case 575: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + END_STATE(); + case 576: + ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '=') ADVANCE(545); + END_STATE(); + case 577: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(148); + END_STATE(); + case 578: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(148); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(581); + END_STATE(); + case 579: + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(581); + END_STATE(); + case 580: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 581: + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + '\'', 391, + 'E', 596, + 'P', 596, + 'e', 596, + 'p', 596, + 'F', 599, + 'L', 599, + 'U', 599, + 'f', 599, + 'i', 599, + 'l', 599, + 'u', 599, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(581); + END_STATE(); + case 582: + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + '\'', 393, + '.', 598, + 'b', 594, + 'x', 396, + 'E', 593, + 'e', 593, + 'F', 595, + 'f', 595, + 'P', 596, + 'p', 596, + 'L', 599, + 'U', 599, + 'i', 599, + 'l', 599, + 'u', 599, + ); + if (('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(583); + END_STATE(); + case 583: + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + '\'', 393, + '.', 598, + 'E', 593, + 'e', 593, + 'F', 595, + 'f', 595, + 'P', 596, + 'p', 596, + 'L', 599, + 'U', 599, + 'i', 599, + 'l', 599, + 'u', 599, + ); + if (('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(583); + END_STATE(); + case 584: + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + '\'', 390, + '.', 597, + '_', 392, + 'b', 145, + 'x', 144, + 'E', 596, + 'P', 596, + 'e', 596, + 'p', 596, + 'F', 599, + 'L', 599, + 'U', 599, + 'f', 599, + 'i', 599, + 'l', 599, + 'u', 599, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(585); + END_STATE(); + case 585: + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + '\'', 390, + '.', 597, + '_', 392, + 'E', 596, + 'P', 596, + 'e', 596, + 'p', 596, + 'F', 599, + 'L', 599, + 'U', 599, + 'f', 599, + 'i', 599, + 'l', 599, + 'u', 599, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(585); + END_STATE(); + case 586: + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + '\'', 390, + '.', 598, + 'b', 145, + 'x', 144, + 'E', 596, + 'P', 596, + 'e', 596, + 'p', 596, + 'F', 599, + 'L', 599, + 'U', 599, + 'f', 599, + 'i', 599, + 'l', 599, + 'u', 599, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(588); + END_STATE(); + case 587: + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + '\'', 390, + '.', 598, + 'b', 390, + 'x', 396, + 'E', 596, + 'P', 596, + 'e', 596, + 'p', 596, + 'F', 599, + 'L', 599, + 'U', 599, + 'f', 599, + 'i', 599, + 'l', 599, + 'u', 599, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(588); + END_STATE(); + case 588: + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + '\'', 390, + '.', 598, + 'E', 596, + 'P', 596, + 'e', 596, + 'p', 596, + 'F', 599, + 'L', 599, + 'U', 599, + 'f', 599, + 'i', 599, + 'l', 599, + 'u', 599, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(588); + END_STATE(); + case 589: + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + '\'', 397, + 'F', 589, + 'f', 589, + 'L', 599, + 'U', 599, + 'i', 599, + 'l', 599, + 'u', 599, + ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'E') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(589); + END_STATE(); + case 590: + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + '\'', 395, + '+', 397, + '-', 397, + 'E', 590, + 'e', 590, + 'F', 592, + 'f', 592, + 'P', 596, + 'p', 596, + 'L', 599, + 'U', 599, + 'i', 599, + 'l', 599, + 'u', 599, + ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(592); + END_STATE(); + case 591: + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + '\'', 395, + '.', 392, + '_', 392, + 'E', 590, + 'e', 590, + 'F', 592, + 'f', 592, + 'P', 596, + 'p', 596, + 'L', 599, + 'U', 599, + 'i', 599, + 'l', 599, + 'u', 599, + ); + if (('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(592); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(591); + END_STATE(); + case 592: + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + '\'', 395, + 'E', 590, + 'e', 590, + 'F', 592, + 'f', 592, + 'P', 596, + 'p', 596, + 'L', 599, + 'U', 599, + 'i', 599, + 'l', 599, + 'u', 599, + ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(592); + END_STATE(); + case 593: + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + '\'', 396, + '.', 598, + '+', 397, + '-', 397, + 'E', 593, + 'e', 593, + 'F', 595, + 'f', 595, + 'P', 596, + 'p', 596, + 'L', 599, + 'U', 599, + 'i', 599, + 'l', 599, + 'u', 599, + ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(595); + END_STATE(); + case 594: + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + '\'', 396, + '.', 598, + 'E', 593, + 'e', 593, + 'F', 595, + 'f', 595, + 'P', 596, + 'p', 596, + 'L', 599, + 'U', 599, + 'i', 599, + 'l', 599, + 'u', 599, + ); + if (('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(583); + END_STATE(); + case 595: + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + '\'', 396, + '.', 598, + 'E', 593, + 'e', 593, + 'F', 595, + 'f', 595, + 'P', 596, + 'p', 596, + 'L', 599, + 'U', 599, + 'i', 599, + 'l', 599, + 'u', 599, + ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(595); + END_STATE(); + case 596: + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + '+', 397, + '-', 397, + 'F', 589, + 'f', 589, + 'L', 599, + 'U', 599, + 'i', 599, + 'l', 599, + 'u', 599, + ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'E') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(589); + END_STATE(); + case 597: + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + 'E', 590, + 'e', 590, + 'F', 592, + 'f', 592, + 'P', 596, + 'p', 596, + 'L', 599, + 'U', 599, + 'i', 599, + 'l', 599, + 'u', 599, + ); + if (('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(592); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(591); + END_STATE(); + case 598: + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + 'E', 590, + 'e', 590, + 'F', 592, + 'f', 592, + 'P', 596, + 'p', 596, + 'L', 599, + 'U', 599, + 'i', 599, + 'l', 599, + 'u', 599, + ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(592); + END_STATE(); + case 599: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == 'F' || + lookahead == 'L' || + lookahead == 'U' || + lookahead == 'f' || + lookahead == 'i' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(599); + END_STATE(); + case 600: + ACCEPT_TOKEN(anon_sym_L_SQUOTE); + END_STATE(); + case 601: + ACCEPT_TOKEN(anon_sym_u_SQUOTE); + END_STATE(); + case 602: + ACCEPT_TOKEN(anon_sym_U_SQUOTE); + END_STATE(); + case 603: + ACCEPT_TOKEN(anon_sym_u8_SQUOTE); + END_STATE(); + case 604: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); + case 605: + ACCEPT_TOKEN(aux_sym_char_literal_token1); + END_STATE(); + case 606: + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == '\n') ADVANCE(635); + if (lookahead == '\r') ADVANCE(634); + if (lookahead == 'U') ADVANCE(413); + if (lookahead == 'u') ADVANCE(405); + if (lookahead == 'x') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(637); + if (lookahead != 0) ADVANCE(634); + END_STATE(); + case 607: + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == '*') ADVANCE(141); + if (lookahead == '/') ADVANCE(670); + END_STATE(); + case 608: + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == '\\') ADVANCE(55); + END_STATE(); + case 609: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 610: + ACCEPT_TOKEN(anon_sym_AT); + ADVANCE_MAP( + 'a', 377, + 'c', 166, + 'd', 386, + 'e', 307, + 'f', 282, + 'i', 302, + 'p', 343, + 's', 215, + 't', 262, + ); + END_STATE(); + case 611: + ACCEPT_TOKEN(anon_sym_AT); + ADVANCE_MAP( + 'a', 377, + 'c', 166, + 'e', 307, + 'f', 282, + 'i', 302, + 'p', 343, + 's', 216, + 't', 262, + ); + END_STATE(); + case 612: + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == 'a') ADVANCE(377); + if (lookahead == 'c') ADVANCE(166); + if (lookahead == 'e') ADVANCE(307); + if (lookahead == 'f') ADVANCE(282); + if (lookahead == 'i') ADVANCE(302); + if (lookahead == 'p') ADVANCE(343); + if (lookahead == 's') ADVANCE(214); + END_STATE(); + case 613: + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == 'a') ADVANCE(377); + if (lookahead == 'c') ADVANCE(165); + if (lookahead == 'e') ADVANCE(307); + if (lookahead == 'f') ADVANCE(282); + if (lookahead == 's') ADVANCE(216); + if (lookahead == 't') ADVANCE(262); + END_STATE(); + case 614: + ACCEPT_TOKEN(anon_sym_AT); + ADVANCE_MAP( + 'a', 377, + 'c', 319, + 'd', 386, + 'e', 307, + 'i', 302, + 'p', 343, + 's', 215, + 't', 262, + ); + END_STATE(); + case 615: + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == 'a') ADVANCE(377); + if (lookahead == 'c') ADVANCE(319); + if (lookahead == 'e') ADVANCE(307); + if (lookahead == 'i') ADVANCE(302); + if (lookahead == 'p') ADVANCE(343); + if (lookahead == 's') ADVANCE(216); + if (lookahead == 't') ADVANCE(262); + END_STATE(); + case 616: + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == 'a') ADVANCE(377); + if (lookahead == 'c') ADVANCE(319); + if (lookahead == 'e') ADVANCE(307); + if (lookahead == 'i') ADVANCE(302); + if (lookahead == 'p') ADVANCE(343); + if (lookahead == 's') ADVANCE(214); + END_STATE(); + case 617: + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == 'a') ADVANCE(377); + if (lookahead == 'e') ADVANCE(307); + if (lookahead == 'i') ADVANCE(305); + if (lookahead == 'p') ADVANCE(343); + if (lookahead == 's') ADVANCE(216); + if (lookahead == 't') ADVANCE(262); + END_STATE(); + case 618: + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == 'a') ADVANCE(377); + if (lookahead == 'e') ADVANCE(307); + if (lookahead == 's') ADVANCE(216); + if (lookahead == 't') ADVANCE(262); + END_STATE(); + case 619: + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == 'a') ADVANCE(377); + if (lookahead == 'e') ADVANCE(307); + if (lookahead == 's') ADVANCE(214); + END_STATE(); + case 620: + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == 'a') ADVANCE(379); + if (lookahead == 'e') ADVANCE(307); + if (lookahead == 'i') ADVANCE(305); + if (lookahead == 'p') ADVANCE(343); + if (lookahead == 's') ADVANCE(214); + END_STATE(); + case 621: + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == 'a') ADVANCE(379); + if (lookahead == 'e') ADVANCE(307); + if (lookahead == 's') ADVANCE(214); + END_STATE(); + case 622: + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == 'a') ADVANCE(376); + END_STATE(); + case 623: + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == 'i') ADVANCE(305); + if (lookahead == 'p') ADVANCE(343); + END_STATE(); + case 624: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 625: + ACCEPT_TOKEN(anon_sym_L_DQUOTE); + END_STATE(); + case 626: + ACCEPT_TOKEN(anon_sym_u_DQUOTE); + END_STATE(); + case 627: + ACCEPT_TOKEN(anon_sym_U_DQUOTE); + END_STATE(); + case 628: + ACCEPT_TOKEN(anon_sym_u8_DQUOTE); + END_STATE(); + case 629: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '*') ADVANCE(631); + if (lookahead == '/') ADVANCE(633); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(633); + END_STATE(); + case 630: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '*') ADVANCE(630); + if (lookahead == '/') ADVANCE(633); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(631); + END_STATE(); + case 631: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '*') ADVANCE(630); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(631); + END_STATE(); + case 632: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '/') ADVANCE(629); + if (lookahead == '\t' || + (0x0b <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) ADVANCE(632); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != '"' && + lookahead != '\\') ADVANCE(633); + END_STATE(); + case 633: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(633); + END_STATE(); + case 634: + ACCEPT_TOKEN(sym_escape_sequence); + END_STATE(); + case 635: + ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\\') ADVANCE(55); + END_STATE(); + case 636: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(634); + END_STATE(); + case 637: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(636); + END_STATE(); + case 638: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(634); + END_STATE(); + case 639: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(638); + END_STATE(); + case 640: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(639); + END_STATE(); + case 641: + ACCEPT_TOKEN(sym_system_lib_string); + END_STATE(); + case 642: + ACCEPT_TOKEN(sym_system_lib_string); + if (lookahead == '>') ADVANCE(641); + if (lookahead == '\\') ADVANCE(154); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(153); + END_STATE(); + case 643: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(625); + if (lookahead == '\'') ADVANCE(600); + if (lookahead == '\\') ADVANCE(155); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(655); + END_STATE(); + case 644: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(625); + if (lookahead == '\\') ADVANCE(155); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(655); + END_STATE(); + case 645: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(627); + if (lookahead == '\'') ADVANCE(602); + if (lookahead == '\\') ADVANCE(155); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(655); + END_STATE(); + case 646: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(627); + if (lookahead == '\\') ADVANCE(155); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(655); + END_STATE(); + case 647: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(626); + if (lookahead == '\'') ADVANCE(601); + if (lookahead == '8') ADVANCE(649); + if (lookahead == '\\') ADVANCE(155); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(655); + END_STATE(); + case 648: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(626); + if (lookahead == '8') ADVANCE(650); + if (lookahead == '\\') ADVANCE(155); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(655); + END_STATE(); + case 649: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(628); + if (lookahead == '\'') ADVANCE(603); + if (lookahead == '\\') ADVANCE(155); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(655); + END_STATE(); + case 650: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(628); + if (lookahead == '\\') ADVANCE(155); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(655); + END_STATE(); + case 651: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\'') ADVANCE(600); + if (lookahead == '\\') ADVANCE(155); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(655); + END_STATE(); + case 652: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\'') ADVANCE(602); + if (lookahead == '\\') ADVANCE(155); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(655); + END_STATE(); + case 653: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\'') ADVANCE(601); + if (lookahead == '8') ADVANCE(654); + if (lookahead == '\\') ADVANCE(155); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(655); + END_STATE(); + case 654: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\'') ADVANCE(603); + if (lookahead == '\\') ADVANCE(155); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(655); + END_STATE(); + case 655: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(155); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(655); + END_STATE(); + case 656: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(709); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(656); + if (lookahead != 0 && + lookahead != ')') ADVANCE(718); + END_STATE(); + case 657: + ACCEPT_TOKEN(sym_comment); + END_STATE(); + case 658: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(670); + if (lookahead == '/') ADVANCE(666); + if (lookahead == '\\') ADVANCE(457); + if (lookahead != 0) ADVANCE(667); + END_STATE(); + case 659: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(718); + if (lookahead == ')') ADVANCE(670); + if (lookahead == '\\') ADVANCE(703); + if (lookahead != 0) ADVANCE(659); + END_STATE(); + case 660: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(727); + if (lookahead == '\\') ADVANCE(722); + if (lookahead == '}') ADVANCE(670); + if (lookahead != 0) ADVANCE(660); + END_STATE(); + case 661: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\r') ADVANCE(671); + if (lookahead == '\\') ADVANCE(661); + if (lookahead != 0) ADVANCE(670); + END_STATE(); + case 662: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\r') ADVANCE(665); + if (lookahead == ')') ADVANCE(670); + if (lookahead == '\\') ADVANCE(662); + if (lookahead != 0) ADVANCE(659); + END_STATE(); + case 663: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\r') ADVANCE(668); + if (lookahead == '/') ADVANCE(666); + if (lookahead == '\\') ADVANCE(663); + if (lookahead != 0) ADVANCE(667); + END_STATE(); + case 664: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\r') ADVANCE(672); + if (lookahead == '\\') ADVANCE(664); + if (lookahead == '}') ADVANCE(670); + if (lookahead != 0) ADVANCE(660); + END_STATE(); + case 665: + ACCEPT_TOKEN(sym_comment); + if (lookahead == ')') ADVANCE(670); + if (lookahead == '\\') ADVANCE(703); + if (lookahead != 0) ADVANCE(659); + END_STATE(); + case 666: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '*') ADVANCE(670); + if (lookahead == '\\') ADVANCE(450); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(667); + END_STATE(); + case 667: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '/') ADVANCE(666); + if (lookahead == '\\') ADVANCE(457); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(667); + END_STATE(); + case 668: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '/') ADVANCE(666); + if (lookahead == '\\') ADVANCE(457); + if (lookahead != 0) ADVANCE(667); + END_STATE(); + case 669: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '/') ADVANCE(669); + if (lookahead == '\\') ADVANCE(457); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(667); + END_STATE(); + case 670: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\\') ADVANCE(92); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(670); + END_STATE(); + case 671: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\\') ADVANCE(92); + if (lookahead != 0) ADVANCE(670); + END_STATE(); + case 672: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\\') ADVANCE(722); + if (lookahead == '}') ADVANCE(670); + if (lookahead != 0) ADVANCE(660); + END_STATE(); + case 673: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != ')') ADVANCE(718); + END_STATE(); + case 674: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '}') ADVANCE(727); + END_STATE(); + case 675: + ACCEPT_TOKEN(sym_version_number); + if (lookahead == '.' || + lookahead == '_') ADVANCE(392); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); + END_STATE(); + case 676: + ACCEPT_TOKEN(anon_sym_ATimport); + END_STATE(); + case 677: + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == 'd') ADVANCE(470); + if (lookahead == 'e') ADVANCE(494); + if (lookahead == 'i') ADVANCE(480); + if (lookahead == 'u') ADVANCE(498); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(195); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 678: + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == 'd') ADVANCE(470); + if (lookahead == 'e') ADVANCE(497); + if (lookahead == 'i') ADVANCE(480); + if (lookahead == 'u') ADVANCE(498); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(197); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 679: + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == 'd') ADVANCE(470); + if (lookahead == 'e') ADVANCE(496); + if (lookahead == 'i') ADVANCE(480); + if (lookahead == 'u') ADVANCE(498); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(199); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 680: + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == 'd') ADVANCE(470); + if (lookahead == 'i') ADVANCE(480); + if (lookahead == 'u') ADVANCE(498); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(201); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(505); + END_STATE(); + case 681: + ACCEPT_TOKEN(anon_sym_ATprotocol); + END_STATE(); + case 682: + ACCEPT_TOKEN(anon_sym_ATend); + END_STATE(); + case 683: + ACCEPT_TOKEN(anon_sym_ATinterface); + END_STATE(); + case 684: + ACCEPT_TOKEN(anon_sym_ATimplementation); + END_STATE(); + case 685: + ACCEPT_TOKEN(anon_sym_ATprivate); + END_STATE(); + case 686: + ACCEPT_TOKEN(anon_sym_ATprotected); + END_STATE(); + case 687: + ACCEPT_TOKEN(anon_sym_ATpackage); + END_STATE(); + case 688: + ACCEPT_TOKEN(anon_sym_ATpublic); + END_STATE(); + case 689: + ACCEPT_TOKEN(anon_sym_ATcompatibility_alias); + END_STATE(); + case 690: + ACCEPT_TOKEN(anon_sym_AToptional); + END_STATE(); + case 691: + ACCEPT_TOKEN(anon_sym_ATrequired); + END_STATE(); + case 692: + ACCEPT_TOKEN(anon_sym_ATsynthesize); + END_STATE(); + case 693: + ACCEPT_TOKEN(anon_sym_ATdynamic); + END_STATE(); + case 694: + ACCEPT_TOKEN(anon_sym_LPARENclass_RPAREN); + END_STATE(); + case 695: + ACCEPT_TOKEN(anon_sym_ATproperty); + END_STATE(); + case 696: + ACCEPT_TOKEN(anon_sym_ATtry); + END_STATE(); + case 697: + ACCEPT_TOKEN(anon_sym_ATcatch); + END_STATE(); + case 698: + ACCEPT_TOKEN(anon_sym_ATfinally); + END_STATE(); + case 699: + ACCEPT_TOKEN(anon_sym_ATthrow); + END_STATE(); + case 700: + ACCEPT_TOKEN(anon_sym_ATselector); + END_STATE(); + case 701: + ACCEPT_TOKEN(aux_sym_selector_expression_token1); + if (lookahead == '\n') ADVANCE(705); + if (lookahead == '\r') ADVANCE(702); + if (lookahead == 'U') ADVANCE(717); + if (lookahead == 'u') ADVANCE(713); + if (lookahead != 0 && + lookahead != ')') ADVANCE(718); + END_STATE(); + case 702: + ACCEPT_TOKEN(aux_sym_selector_expression_token1); + if (lookahead == '\n') ADVANCE(705); + if (lookahead != 0 && + lookahead != ')') ADVANCE(718); + END_STATE(); + case 703: + ACCEPT_TOKEN(aux_sym_selector_expression_token1); + if (lookahead == '\r') ADVANCE(665); + if (lookahead == ')') ADVANCE(670); + if (lookahead == '\\') ADVANCE(662); + if (lookahead != 0) ADVANCE(659); + END_STATE(); + case 704: + ACCEPT_TOKEN(aux_sym_selector_expression_token1); + if (lookahead == '(') ADVANCE(507); + if (lookahead == '/') ADVANCE(708); + if (lookahead == ':') ADVANCE(732); + if (lookahead == '\\') ADVANCE(701); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) ADVANCE(705); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(656); + if (lookahead != 0 && + lookahead != '(' && + lookahead != ')') ADVANCE(718); + END_STATE(); + case 705: + ACCEPT_TOKEN(aux_sym_selector_expression_token1); + if (lookahead == '(') ADVANCE(507); + if (lookahead == '/') ADVANCE(708); + if (lookahead == '\\') ADVANCE(701); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) ADVANCE(705); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(656); + if (lookahead != 0 && + lookahead != '(' && + lookahead != ')') ADVANCE(718); + END_STATE(); + case 706: + ACCEPT_TOKEN(aux_sym_selector_expression_token1); + if (lookahead == ')') ADVANCE(141); + if (lookahead == '*') ADVANCE(706); + if (lookahead == '/') ADVANCE(673); + if (lookahead != 0) ADVANCE(707); + END_STATE(); + case 707: + ACCEPT_TOKEN(aux_sym_selector_expression_token1); + if (lookahead == ')') ADVANCE(141); + if (lookahead == '*') ADVANCE(706); + if (lookahead != 0) ADVANCE(707); + END_STATE(); + case 708: + ACCEPT_TOKEN(aux_sym_selector_expression_token1); + if (lookahead == '*') ADVANCE(707); + if (lookahead == '/') ADVANCE(659); + if (lookahead != 0 && + lookahead != ')' && + lookahead != '*') ADVANCE(718); + END_STATE(); + case 709: + ACCEPT_TOKEN(aux_sym_selector_expression_token1); + if (lookahead == 'U') ADVANCE(717); + if (lookahead == 'u') ADVANCE(713); + if (lookahead != 0 && + lookahead != ')') ADVANCE(718); + END_STATE(); + case 710: + ACCEPT_TOKEN(aux_sym_selector_expression_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(656); + if (lookahead != 0 && + lookahead != ')') ADVANCE(718); + END_STATE(); + case 711: + ACCEPT_TOKEN(aux_sym_selector_expression_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(710); + if (lookahead != 0 && + lookahead != ')') ADVANCE(718); + END_STATE(); + case 712: + ACCEPT_TOKEN(aux_sym_selector_expression_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(711); + if (lookahead != 0 && + lookahead != ')') ADVANCE(718); + END_STATE(); + case 713: + ACCEPT_TOKEN(aux_sym_selector_expression_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(712); + if (lookahead != 0 && + lookahead != ')') ADVANCE(718); + END_STATE(); + case 714: + ACCEPT_TOKEN(aux_sym_selector_expression_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(713); + if (lookahead != 0 && + lookahead != ')') ADVANCE(718); + END_STATE(); + case 715: + ACCEPT_TOKEN(aux_sym_selector_expression_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(714); + if (lookahead != 0 && + lookahead != ')') ADVANCE(718); + END_STATE(); + case 716: + ACCEPT_TOKEN(aux_sym_selector_expression_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(715); + if (lookahead != 0 && + lookahead != ')') ADVANCE(718); + END_STATE(); + case 717: + ACCEPT_TOKEN(aux_sym_selector_expression_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(716); + if (lookahead != 0 && + lookahead != ')') ADVANCE(718); + END_STATE(); + case 718: + ACCEPT_TOKEN(aux_sym_selector_expression_token1); + if (lookahead != 0 && + lookahead != ')') ADVANCE(718); + END_STATE(); + case 719: + ACCEPT_TOKEN(anon_sym_ATavailable); + END_STATE(); + case 720: + ACCEPT_TOKEN(aux_sym_ms_asm_block_token1); + if (lookahead == '\n') ADVANCE(726); + if (lookahead == '\r') ADVANCE(721); + if (lookahead != 0 && + lookahead != '}') ADVANCE(727); + END_STATE(); + case 721: + ACCEPT_TOKEN(aux_sym_ms_asm_block_token1); + if (lookahead == '\n') ADVANCE(726); + if (lookahead != 0 && + lookahead != '}') ADVANCE(727); + END_STATE(); + case 722: + ACCEPT_TOKEN(aux_sym_ms_asm_block_token1); + if (lookahead == '\r') ADVANCE(672); + if (lookahead == '\\') ADVANCE(664); + if (lookahead == '}') ADVANCE(670); + if (lookahead != 0) ADVANCE(660); + END_STATE(); + case 723: + ACCEPT_TOKEN(aux_sym_ms_asm_block_token1); + if (lookahead == '*') ADVANCE(725); + if (lookahead == '/') ADVANCE(660); + if (lookahead != 0 && + lookahead != '}') ADVANCE(727); + END_STATE(); + case 724: + ACCEPT_TOKEN(aux_sym_ms_asm_block_token1); + if (lookahead == '*') ADVANCE(724); + if (lookahead == '/') ADVANCE(674); + if (lookahead == '}') ADVANCE(141); + if (lookahead != 0) ADVANCE(725); + END_STATE(); + case 725: + ACCEPT_TOKEN(aux_sym_ms_asm_block_token1); + if (lookahead == '*') ADVANCE(724); + if (lookahead == '}') ADVANCE(141); + if (lookahead != 0) ADVANCE(725); + END_STATE(); + case 726: + ACCEPT_TOKEN(aux_sym_ms_asm_block_token1); + if (lookahead == '/') ADVANCE(723); + if (lookahead == '\\') ADVANCE(720); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) ADVANCE(726); + if (lookahead != 0 && + lookahead != '}') ADVANCE(727); + END_STATE(); + case 727: + ACCEPT_TOKEN(aux_sym_ms_asm_block_token1); + if (lookahead != 0 && + lookahead != '}') ADVANCE(727); + END_STATE(); + case 728: + ACCEPT_TOKEN(anon_sym_ATencode); + END_STATE(); + case 729: + ACCEPT_TOKEN(anon_sym_ATsynchronized); + END_STATE(); + case 730: + ACCEPT_TOKEN(anon_sym_ATdefs); + END_STATE(); + case 731: + ACCEPT_TOKEN(anon_sym_COLON2); + END_STATE(); + case 732: + ACCEPT_TOKEN(anon_sym_COLON2); + if (lookahead != 0 && + lookahead != ')') ADVANCE(718); + END_STATE(); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + ADVANCE_MAP( + 'A', 1, + 'B', 2, + 'C', 3, + 'D', 4, + 'F', 5, + 'I', 6, + 'N', 7, + 'O', 8, + 'S', 9, + 'T', 10, + 'U', 11, + ); + if (lookahead == '\\') SKIP(12); + if (lookahead == '_') ADVANCE(13); + if (lookahead == 'a') ADVANCE(14); + if (lookahead == 'b') ADVANCE(15); + if (lookahead == 'c') ADVANCE(16); + if (lookahead == 'd') ADVANCE(17); + if (lookahead == 'e') ADVANCE(18); + if (lookahead == 'f') ADVANCE(19); + if (lookahead == 'g') ADVANCE(20); + if (lookahead == 'i') ADVANCE(21); + if (lookahead == 'l') ADVANCE(22); + if (lookahead == 'm') ADVANCE(23); + if (lookahead == 'n') ADVANCE(24); + if (lookahead == 'o') ADVANCE(25); + if (lookahead == 'p') ADVANCE(26); + if (lookahead == 'r') ADVANCE(27); + if (lookahead == 's') ADVANCE(28); + if (lookahead == 't') ADVANCE(29); + if (lookahead == 'u') ADVANCE(30); + if (lookahead == 'v') ADVANCE(31); + if (lookahead == 'w') ADVANCE(32); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0) SKIP(0); + END_STATE(); + case 1: + if (lookahead == 'P') ADVANCE(33); + END_STATE(); + case 2: + if (lookahead == 'O') ADVANCE(34); + END_STATE(); + case 3: + if (lookahead == 'F') ADVANCE(35); + if (lookahead == 'G') ADVANCE(36); + if (lookahead == 'l') ADVANCE(37); + END_STATE(); + case 4: + if (lookahead == 'E') ADVANCE(38); + END_STATE(); + case 5: + if (lookahead == 'A') ADVANCE(39); + if (lookahead == 'O') ADVANCE(40); + END_STATE(); + case 6: + if (lookahead == 'B') ADVANCE(41); + if (lookahead == 'M') ADVANCE(42); + END_STATE(); + case 7: + if (lookahead == 'S') ADVANCE(43); + if (lookahead == 'U') ADVANCE(44); + END_STATE(); + case 8: + if (lookahead == 'B') ADVANCE(45); + END_STATE(); + case 9: + if (lookahead == 'E') ADVANCE(46); + END_STATE(); + case 10: + if (lookahead == 'R') ADVANCE(47); + END_STATE(); + case 11: + if (lookahead == 'I') ADVANCE(48); + if (lookahead == 'N') ADVANCE(49); + END_STATE(); + case 12: + if (lookahead == '\n') SKIP(0); + if (lookahead == '\r') SKIP(50); + END_STATE(); + case 13: + if (lookahead == 'A') ADVANCE(51); + if (lookahead == 'C') ADVANCE(52); + if (lookahead == 'G') ADVANCE(53); + if (lookahead == 'N') ADVANCE(54); + if (lookahead == '_') ADVANCE(55); + if (lookahead == 'a') ADVANCE(56); + if (lookahead == 'u') ADVANCE(57); + END_STATE(); + case 14: + if (lookahead == 'l') ADVANCE(58); + if (lookahead == 's') ADVANCE(59); + if (lookahead == 'u') ADVANCE(60); + if (lookahead == 'v') ADVANCE(61); + END_STATE(); + case 15: + if (lookahead == 'o') ADVANCE(62); + if (lookahead == 'r') ADVANCE(63); + if (lookahead == 'y') ADVANCE(64); + END_STATE(); + case 16: + if (lookahead == 'a') ADVANCE(65); + if (lookahead == 'h') ADVANCE(66); + if (lookahead == 'l') ADVANCE(67); + if (lookahead == 'o') ADVANCE(68); + END_STATE(); + case 17: + if (lookahead == 'e') ADVANCE(69); + if (lookahead == 'o') ADVANCE(70); + END_STATE(); + case 18: + if (lookahead == 'l') ADVANCE(71); + if (lookahead == 'n') ADVANCE(72); + if (lookahead == 'x') ADVANCE(73); + END_STATE(); + case 19: + if (lookahead == 'a') ADVANCE(74); + if (lookahead == 'l') ADVANCE(75); + if (lookahead == 'o') ADVANCE(76); + END_STATE(); + case 20: + if (lookahead == 'o') ADVANCE(77); + END_STATE(); + case 21: + if (lookahead == 'd') ADVANCE(78); + if (lookahead == 'f') ADVANCE(79); + if (lookahead == 'n') ADVANCE(80); + if (lookahead == 'o') ADVANCE(81); + END_STATE(); + case 22: + if (lookahead == 'o') ADVANCE(82); + END_STATE(); + case 23: + if (lookahead == 'a') ADVANCE(83); + END_STATE(); + case 24: + if (lookahead == 'o') ADVANCE(84); + if (lookahead == 'u') ADVANCE(85); + END_STATE(); + case 25: + if (lookahead == 'b') ADVANCE(86); + if (lookahead == 'f') ADVANCE(87); + if (lookahead == 'n') ADVANCE(88); + if (lookahead == 'u') ADVANCE(89); + END_STATE(); + case 26: + if (lookahead == 't') ADVANCE(90); + END_STATE(); + case 27: + if (lookahead == 'e') ADVANCE(91); + END_STATE(); + case 28: + if (lookahead == 'h') ADVANCE(92); + if (lookahead == 'i') ADVANCE(93); + if (lookahead == 's') ADVANCE(94); + if (lookahead == 't') ADVANCE(95); + if (lookahead == 'w') ADVANCE(96); + END_STATE(); + case 29: + if (lookahead == 'h') ADVANCE(97); + if (lookahead == 'r') ADVANCE(98); + if (lookahead == 'v') ADVANCE(99); + if (lookahead == 'y') ADVANCE(100); + END_STATE(); + case 30: + if (lookahead == 'i') ADVANCE(101); + if (lookahead == 'n') ADVANCE(102); + END_STATE(); + case 31: + if (lookahead == 'a') ADVANCE(103); + if (lookahead == 'o') ADVANCE(104); + END_STATE(); + case 32: + if (lookahead == 'a') ADVANCE(105); + if (lookahead == 'h') ADVANCE(106); + END_STATE(); + case 33: + if (lookahead == 'I') ADVANCE(107); + END_STATE(); + case 34: + if (lookahead == 'O') ADVANCE(108); + END_STATE(); + case 35: + if (lookahead == '_') ADVANCE(109); + END_STATE(); + case 36: + if (lookahead == '_') ADVANCE(110); + END_STATE(); + case 37: + if (lookahead == 'a') ADVANCE(111); + END_STATE(); + case 38: + if (lookahead == 'P') ADVANCE(112); + END_STATE(); + case 39: + if (lookahead == 'L') ADVANCE(113); + END_STATE(); + case 40: + if (lookahead == 'U') ADVANCE(114); + END_STATE(); + case 41: + if (lookahead == 'I') ADVANCE(115); + if (lookahead == 'O') ADVANCE(116); + if (lookahead == '_') ADVANCE(117); + END_STATE(); + case 42: + if (lookahead == 'P') ADVANCE(118); + END_STATE(); + case 43: + if (lookahead == '_') ADVANCE(119); + END_STATE(); + case 44: + if (lookahead == 'L') ADVANCE(120); + END_STATE(); + case 45: + if (lookahead == 'J') ADVANCE(121); + END_STATE(); + case 46: + if (lookahead == 'L') ADVANCE(122); + END_STATE(); + case 47: + if (lookahead == 'U') ADVANCE(123); + END_STATE(); + case 48: + if (lookahead == 'K') ADVANCE(124); + if (lookahead == '_') ADVANCE(125); + END_STATE(); + case 49: + if (lookahead == 'A') ADVANCE(126); + END_STATE(); + case 50: + if (lookahead == '\n') SKIP(0); + END_STATE(); + case 51: + if (lookahead == 'l') ADVANCE(127); + if (lookahead == 't') ADVANCE(128); + END_STATE(); + case 52: + if (lookahead == 'o') ADVANCE(129); + END_STATE(); + case 53: + if (lookahead == 'e') ADVANCE(130); + END_STATE(); + case 54: + if (lookahead == 'o') ADVANCE(131); + if (lookahead == 'u') ADVANCE(132); + END_STATE(); + case 55: + ADVANCE_MAP( + 'I', 133, + 'O', 134, + 'a', 135, + 'b', 136, + 'c', 137, + 'd', 138, + 'e', 139, + 'f', 140, + 'i', 141, + 'k', 142, + 'n', 143, + 'p', 144, + 'r', 145, + 's', 146, + 't', 147, + 'u', 148, + 'v', 149, + 'w', 150, + ); + END_STATE(); + case 56: + if (lookahead == 'l') ADVANCE(151); + END_STATE(); + case 57: + if (lookahead == 'n') ADVANCE(152); + END_STATE(); + case 58: + if (lookahead == 'i') ADVANCE(153); + END_STATE(); + case 59: + if (lookahead == 'm') ADVANCE(154); + END_STATE(); + case 60: + if (lookahead == 't') ADVANCE(155); + END_STATE(); + case 61: + if (lookahead == 'a') ADVANCE(156); + END_STATE(); + case 62: + if (lookahead == 'o') ADVANCE(157); + END_STATE(); + case 63: + if (lookahead == 'e') ADVANCE(158); + END_STATE(); + case 64: + if (lookahead == 'c') ADVANCE(159); + if (lookahead == 'r') ADVANCE(160); + END_STATE(); + case 65: + if (lookahead == 's') ADVANCE(161); + END_STATE(); + case 66: + if (lookahead == 'a') ADVANCE(162); + END_STATE(); + case 67: + if (lookahead == 'a') ADVANCE(163); + END_STATE(); + case 68: + if (lookahead == 'n') ADVANCE(164); + END_STATE(); + case 69: + if (lookahead == 'f') ADVANCE(165); + END_STATE(); + case 70: + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == 'u') ADVANCE(166); + END_STATE(); + case 71: + if (lookahead == 's') ADVANCE(167); + END_STATE(); + case 72: + if (lookahead == 'u') ADVANCE(168); + END_STATE(); + case 73: + if (lookahead == 't') ADVANCE(169); + END_STATE(); + case 74: + if (lookahead == 'l') ADVANCE(170); + END_STATE(); + case 75: + if (lookahead == 'o') ADVANCE(171); + END_STATE(); + case 76: + if (lookahead == 'r') ADVANCE(172); + END_STATE(); + case 77: + if (lookahead == 't') ADVANCE(173); + END_STATE(); + case 78: + ACCEPT_TOKEN(anon_sym_id); + END_STATE(); + case 79: + ACCEPT_TOKEN(anon_sym_if); + END_STATE(); + case 80: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'l') ADVANCE(174); + if (lookahead == 'o') ADVANCE(175); + if (lookahead == 't') ADVANCE(176); + END_STATE(); + case 81: + if (lookahead == 's') ADVANCE(177); + END_STATE(); + case 82: + if (lookahead == 'n') ADVANCE(178); + END_STATE(); + case 83: + if (lookahead == 'c') ADVANCE(179); + if (lookahead == 'x') ADVANCE(180); + END_STATE(); + case 84: + if (lookahead == 'r') ADVANCE(181); + if (lookahead == 't') ADVANCE(182); + END_STATE(); + case 85: + if (lookahead == 'l') ADVANCE(183); + END_STATE(); + case 86: + if (lookahead == 'j') ADVANCE(184); + END_STATE(); + case 87: + if (lookahead == 'f') ADVANCE(185); + END_STATE(); + case 88: + if (lookahead == 'e') ADVANCE(186); + END_STATE(); + case 89: + if (lookahead == 't') ADVANCE(187); + END_STATE(); + case 90: + if (lookahead == 'r') ADVANCE(188); + END_STATE(); + case 91: + if (lookahead == 'g') ADVANCE(189); + if (lookahead == 's') ADVANCE(190); + if (lookahead == 't') ADVANCE(191); + END_STATE(); + case 92: + if (lookahead == 'o') ADVANCE(192); + END_STATE(); + case 93: + if (lookahead == 'g') ADVANCE(193); + if (lookahead == 'z') ADVANCE(194); + END_STATE(); + case 94: + if (lookahead == 'i') ADVANCE(195); + END_STATE(); + case 95: + if (lookahead == 'a') ADVANCE(196); + if (lookahead == 'r') ADVANCE(197); + END_STATE(); + case 96: + if (lookahead == 'i') ADVANCE(198); + END_STATE(); + case 97: + if (lookahead == 'r') ADVANCE(199); + END_STATE(); + case 98: + if (lookahead == 'u') ADVANCE(200); + END_STATE(); + case 99: + if (lookahead == 'o') ADVANCE(201); + END_STATE(); + case 100: + if (lookahead == 'p') ADVANCE(202); + END_STATE(); + case 101: + if (lookahead == 'n') ADVANCE(203); + END_STATE(); + case 102: + if (lookahead == 'i') ADVANCE(204); + if (lookahead == 's') ADVANCE(205); + END_STATE(); + case 103: + if (lookahead == '_') ADVANCE(206); + END_STATE(); + case 104: + if (lookahead == 'i') ADVANCE(207); + if (lookahead == 'l') ADVANCE(208); + END_STATE(); + case 105: + if (lookahead == 't') ADVANCE(209); + END_STATE(); + case 106: + if (lookahead == 'i') ADVANCE(210); + END_STATE(); + case 107: + if (lookahead == '_') ADVANCE(211); + END_STATE(); + case 108: + if (lookahead == 'L') ADVANCE(212); + END_STATE(); + case 109: + if (lookahead == 'F') ADVANCE(213); + if (lookahead == 'R') ADVANCE(214); + END_STATE(); + case 110: + if (lookahead == 'E') ADVANCE(215); + if (lookahead == 'I') ADVANCE(216); + END_STATE(); + case 111: + if (lookahead == 's') ADVANCE(217); + END_STATE(); + case 112: + if (lookahead == 'R') ADVANCE(218); + END_STATE(); + case 113: + if (lookahead == 'S') ADVANCE(219); + END_STATE(); + case 114: + if (lookahead == 'N') ADVANCE(220); + END_STATE(); + case 115: + if (lookahead == 'n') ADVANCE(221); + END_STATE(); + case 116: + if (lookahead == 'u') ADVANCE(222); + END_STATE(); + case 117: + if (lookahead == 'D') ADVANCE(223); + END_STATE(); + case 118: + ACCEPT_TOKEN(anon_sym_IMP); + END_STATE(); + case 119: + ADVANCE_MAP( + 'A', 224, + 'C', 225, + 'D', 226, + 'E', 227, + 'F', 228, + 'I', 229, + 'R', 230, + 'S', 231, + 'U', 232, + 'V', 233, + ); + END_STATE(); + case 120: + if (lookahead == 'L') ADVANCE(234); + END_STATE(); + case 121: + if (lookahead == 'C') ADVANCE(235); + END_STATE(); + case 122: + ACCEPT_TOKEN(anon_sym_SEL); + END_STATE(); + case 123: + if (lookahead == 'E') ADVANCE(236); + END_STATE(); + case 124: + if (lookahead == 'I') ADVANCE(237); + END_STATE(); + case 125: + if (lookahead == 'A') ADVANCE(238); + END_STATE(); + case 126: + if (lookahead == 'V') ADVANCE(239); + END_STATE(); + case 127: + if (lookahead == 'i') ADVANCE(240); + END_STATE(); + case 128: + if (lookahead == 'o') ADVANCE(241); + END_STATE(); + case 129: + if (lookahead == 'm') ADVANCE(242); + END_STATE(); + case 130: + if (lookahead == 'n') ADVANCE(243); + END_STATE(); + case 131: + if (lookahead == 'n') ADVANCE(244); + if (lookahead == 'r') ADVANCE(245); + END_STATE(); + case 132: + if (lookahead == 'l') ADVANCE(246); + END_STATE(); + case 133: + if (lookahead == 'O') ADVANCE(247); + END_STATE(); + case 134: + if (lookahead == 'S') ADVANCE(248); + END_STATE(); + case 135: + if (lookahead == 'l') ADVANCE(249); + if (lookahead == 's') ADVANCE(250); + if (lookahead == 't') ADVANCE(251); + if (lookahead == 'u') ADVANCE(252); + END_STATE(); + case 136: + if (lookahead == 'a') ADVANCE(253); + if (lookahead == 'l') ADVANCE(254); + if (lookahead == 'r') ADVANCE(255); + if (lookahead == 'u') ADVANCE(256); + END_STATE(); + case 137: + if (lookahead == 'a') ADVANCE(257); + if (lookahead == 'd') ADVANCE(258); + if (lookahead == 'l') ADVANCE(259); + if (lookahead == 'o') ADVANCE(260); + END_STATE(); + case 138: + if (lookahead == 'e') ADVANCE(261); + END_STATE(); + case 139: + if (lookahead == 'x') ADVANCE(262); + END_STATE(); + case 140: + if (lookahead == 'a') ADVANCE(263); + if (lookahead == 'i') ADVANCE(264); + if (lookahead == 'o') ADVANCE(265); + END_STATE(); + case 141: + if (lookahead == 'm') ADVANCE(266); + if (lookahead == 'n') ADVANCE(267); + END_STATE(); + case 142: + if (lookahead == 'i') ADVANCE(268); + END_STATE(); + case 143: + if (lookahead == 'o') ADVANCE(269); + if (lookahead == 'u') ADVANCE(270); + END_STATE(); + case 144: + if (lookahead == 't') ADVANCE(271); + END_STATE(); + case 145: + if (lookahead == 'e') ADVANCE(272); + END_STATE(); + case 146: + if (lookahead == 'p') ADVANCE(273); + if (lookahead == 't') ADVANCE(274); + END_STATE(); + case 147: + if (lookahead == 'h') ADVANCE(275); + if (lookahead == 'r') ADVANCE(276); + if (lookahead == 'y') ADVANCE(277); + END_STATE(); + case 148: + if (lookahead == 'n') ADVANCE(278); + if (lookahead == 'p') ADVANCE(279); + END_STATE(); + case 149: + if (lookahead == 'e') ADVANCE(280); + if (lookahead == 'o') ADVANCE(281); + END_STATE(); + case 150: + if (lookahead == 'e') ADVANCE(282); + END_STATE(); + case 151: + if (lookahead == 'i') ADVANCE(283); + END_STATE(); + case 152: + if (lookahead == 'a') ADVANCE(284); + END_STATE(); + case 153: + if (lookahead == 'g') ADVANCE(285); + END_STATE(); + case 154: + ACCEPT_TOKEN(anon_sym_asm); + END_STATE(); + case 155: + if (lookahead == 'o') ADVANCE(286); + END_STATE(); + case 156: + if (lookahead == 'i') ADVANCE(287); + END_STATE(); + case 157: + if (lookahead == 'l') ADVANCE(288); + END_STATE(); + case 158: + if (lookahead == 'a') ADVANCE(289); + END_STATE(); + case 159: + if (lookahead == 'o') ADVANCE(290); + END_STATE(); + case 160: + if (lookahead == 'e') ADVANCE(291); + END_STATE(); + case 161: + if (lookahead == 'e') ADVANCE(292); + END_STATE(); + case 162: + if (lookahead == 'r') ADVANCE(293); + END_STATE(); + case 163: + if (lookahead == 's') ADVANCE(294); + END_STATE(); + case 164: + if (lookahead == 's') ADVANCE(295); + if (lookahead == 't') ADVANCE(296); + END_STATE(); + case 165: + if (lookahead == 'a') ADVANCE(297); + if (lookahead == 'i') ADVANCE(298); + END_STATE(); + case 166: + if (lookahead == 'b') ADVANCE(299); + END_STATE(); + case 167: + if (lookahead == 'e') ADVANCE(300); + END_STATE(); + case 168: + if (lookahead == 'm') ADVANCE(301); + END_STATE(); + case 169: + if (lookahead == 'e') ADVANCE(302); + END_STATE(); + case 170: + if (lookahead == 's') ADVANCE(303); + END_STATE(); + case 171: + if (lookahead == 'a') ADVANCE(304); + END_STATE(); + case 172: + ACCEPT_TOKEN(anon_sym_for); + END_STATE(); + case 173: + if (lookahead == 'o') ADVANCE(305); + END_STATE(); + case 174: + if (lookahead == 'i') ADVANCE(306); + END_STATE(); + case 175: + if (lookahead == 'u') ADVANCE(307); + END_STATE(); + case 176: + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '1') ADVANCE(308); + if (lookahead == '3') ADVANCE(309); + if (lookahead == '6') ADVANCE(310); + if (lookahead == '8') ADVANCE(311); + if (lookahead == 'p') ADVANCE(312); + END_STATE(); + case 177: + ACCEPT_TOKEN(anon_sym_ios); + END_STATE(); + case 178: + if (lookahead == 'g') ADVANCE(313); + END_STATE(); + case 179: + if (lookahead == 'o') ADVANCE(314); + END_STATE(); + case 180: + if (lookahead == '_') ADVANCE(315); + END_STATE(); + case 181: + if (lookahead == 'e') ADVANCE(316); + END_STATE(); + case 182: + if (lookahead == 'h') ADVANCE(317); + END_STATE(); + case 183: + if (lookahead == 'l') ADVANCE(318); + END_STATE(); + case 184: + if (lookahead == 'c') ADVANCE(319); + END_STATE(); + case 185: + if (lookahead == 's') ADVANCE(320); + END_STATE(); + case 186: + if (lookahead == 'w') ADVANCE(321); + END_STATE(); + case 187: + ACCEPT_TOKEN(anon_sym_out); + END_STATE(); + case 188: + if (lookahead == 'd') ADVANCE(322); + END_STATE(); + case 189: + if (lookahead == 'i') ADVANCE(323); + END_STATE(); + case 190: + if (lookahead == 't') ADVANCE(324); + END_STATE(); + case 191: + if (lookahead == 'u') ADVANCE(325); + END_STATE(); + case 192: + if (lookahead == 'r') ADVANCE(326); + END_STATE(); + case 193: + if (lookahead == 'n') ADVANCE(327); + END_STATE(); + case 194: + if (lookahead == 'e') ADVANCE(328); + END_STATE(); + case 195: + if (lookahead == 'z') ADVANCE(329); + END_STATE(); + case 196: + if (lookahead == 't') ADVANCE(330); + END_STATE(); + case 197: + if (lookahead == 'u') ADVANCE(331); + END_STATE(); + case 198: + if (lookahead == 't') ADVANCE(332); + END_STATE(); + case 199: + if (lookahead == 'e') ADVANCE(333); + END_STATE(); + case 200: + if (lookahead == 'e') ADVANCE(236); + END_STATE(); + case 201: + if (lookahead == 's') ADVANCE(334); + END_STATE(); + case 202: + if (lookahead == 'e') ADVANCE(335); + END_STATE(); + case 203: + if (lookahead == 't') ADVANCE(336); + END_STATE(); + case 204: + if (lookahead == 'o') ADVANCE(337); + END_STATE(); + case 205: + if (lookahead == 'i') ADVANCE(338); + END_STATE(); + case 206: + if (lookahead == 'a') ADVANCE(339); + END_STATE(); + case 207: + if (lookahead == 'd') ADVANCE(288); + END_STATE(); + case 208: + if (lookahead == 'a') ADVANCE(340); + END_STATE(); + case 209: + if (lookahead == 'c') ADVANCE(341); + END_STATE(); + case 210: + if (lookahead == 'l') ADVANCE(342); + END_STATE(); + case 211: + if (lookahead == 'A') ADVANCE(343); + if (lookahead == 'D') ADVANCE(344); + if (lookahead == 'U') ADVANCE(345); + END_STATE(); + case 212: + ACCEPT_TOKEN(anon_sym_BOOL); + END_STATE(); + case 213: + if (lookahead == 'O') ADVANCE(346); + END_STATE(); + case 214: + if (lookahead == 'E') ADVANCE(347); + END_STATE(); + case 215: + if (lookahead == 'X') ADVANCE(348); + END_STATE(); + case 216: + if (lookahead == 'N') ADVANCE(349); + END_STATE(); + case 217: + if (lookahead == 's') ADVANCE(350); + END_STATE(); + case 218: + if (lookahead == 'E') ADVANCE(351); + END_STATE(); + case 219: + if (lookahead == 'E') ADVANCE(352); + END_STATE(); + case 220: + if (lookahead == 'D') ADVANCE(353); + END_STATE(); + case 221: + if (lookahead == 's') ADVANCE(354); + END_STATE(); + case 222: + if (lookahead == 't') ADVANCE(355); + END_STATE(); + case 223: + if (lookahead == 'E') ADVANCE(356); + END_STATE(); + case 224: + if (lookahead == 'U') ADVANCE(357); + if (lookahead == 'V') ADVANCE(358); + END_STATE(); + case 225: + if (lookahead == 'L') ADVANCE(359); + END_STATE(); + case 226: + if (lookahead == 'E') ADVANCE(360); + END_STATE(); + case 227: + if (lookahead == 'N') ADVANCE(361); + if (lookahead == 'X') ADVANCE(362); + END_STATE(); + case 228: + if (lookahead == 'O') ADVANCE(363); + END_STATE(); + case 229: + if (lookahead == 'N') ADVANCE(364); + END_STATE(); + case 230: + if (lookahead == 'E') ADVANCE(365); + if (lookahead == 'O') ADVANCE(366); + END_STATE(); + case 231: + if (lookahead == 'W') ADVANCE(367); + END_STATE(); + case 232: + if (lookahead == 'N') ADVANCE(368); + END_STATE(); + case 233: + if (lookahead == 'A') ADVANCE(369); + END_STATE(); + case 234: + ACCEPT_TOKEN(anon_sym_NULL); + END_STATE(); + case 235: + if (lookahead == '_') ADVANCE(370); + END_STATE(); + case 236: + ACCEPT_TOKEN(sym_true); + END_STATE(); + case 237: + if (lookahead == 'T') ADVANCE(371); + END_STATE(); + case 238: + if (lookahead == 'P') ADVANCE(372); + END_STATE(); + case 239: + if (lookahead == 'A') ADVANCE(373); + END_STATE(); + case 240: + if (lookahead == 'g') ADVANCE(374); + END_STATE(); + case 241: + if (lookahead == 'm') ADVANCE(375); + END_STATE(); + case 242: + if (lookahead == 'p') ADVANCE(376); + END_STATE(); + case 243: + if (lookahead == 'e') ADVANCE(377); + END_STATE(); + case 244: + if (lookahead == 'n') ADVANCE(378); + END_STATE(); + case 245: + if (lookahead == 'e') ADVANCE(379); + END_STATE(); + case 246: + if (lookahead == 'l') ADVANCE(380); + END_STATE(); + case 247: + if (lookahead == 'S') ADVANCE(381); + END_STATE(); + case 248: + if (lookahead == 'X') ADVANCE(382); + END_STATE(); + case 249: + if (lookahead == 'i') ADVANCE(383); + END_STATE(); + case 250: + if (lookahead == 'm') ADVANCE(384); + END_STATE(); + case 251: + if (lookahead == 't') ADVANCE(385); + END_STATE(); + case 252: + if (lookahead == 't') ADVANCE(386); + END_STATE(); + case 253: + if (lookahead == 's') ADVANCE(387); + END_STATE(); + case 254: + if (lookahead == 'o') ADVANCE(388); + END_STATE(); + case 255: + if (lookahead == 'i') ADVANCE(389); + END_STATE(); + case 256: + if (lookahead == 'i') ADVANCE(390); + END_STATE(); + case 257: + if (lookahead == 't') ADVANCE(391); + END_STATE(); + case 258: + if (lookahead == 'e') ADVANCE(392); + END_STATE(); + case 259: + if (lookahead == 'r') ADVANCE(393); + END_STATE(); + case 260: + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'n') ADVANCE(395); + if (lookahead == 'v') ADVANCE(396); + END_STATE(); + case 261: + if (lookahead == 'c') ADVANCE(397); + if (lookahead == 'p') ADVANCE(398); + END_STATE(); + case 262: + if (lookahead == 't') ADVANCE(399); + END_STATE(); + case 263: + if (lookahead == 's') ADVANCE(400); + END_STATE(); + case 264: + if (lookahead == 'n') ADVANCE(401); + END_STATE(); + case 265: + if (lookahead == 'r') ADVANCE(402); + END_STATE(); + case 266: + if (lookahead == 'a') ADVANCE(403); + END_STATE(); + case 267: + if (lookahead == 'l') ADVANCE(404); + END_STATE(); + case 268: + if (lookahead == 'n') ADVANCE(405); + END_STATE(); + case 269: + if (lookahead == 'n') ADVANCE(406); + END_STATE(); + case 270: + if (lookahead == 'l') ADVANCE(407); + END_STATE(); + case 271: + if (lookahead == 'r') ADVANCE(408); + END_STATE(); + case 272: + if (lookahead == 'a') ADVANCE(409); + if (lookahead == 's') ADVANCE(410); + END_STATE(); + case 273: + if (lookahead == 't') ADVANCE(411); + END_STATE(); + case 274: + if (lookahead == 'd') ADVANCE(412); + if (lookahead == 'r') ADVANCE(413); + END_STATE(); + case 275: + if (lookahead == 'i') ADVANCE(414); + if (lookahead == 'r') ADVANCE(415); + END_STATE(); + case 276: + if (lookahead == 'y') ADVANCE(416); + END_STATE(); + case 277: + if (lookahead == 'p') ADVANCE(417); + END_STATE(); + case 278: + if (lookahead == 'a') ADVANCE(418); + if (lookahead == 's') ADVANCE(419); + if (lookahead == 'u') ADVANCE(420); + END_STATE(); + case 279: + if (lookahead == 't') ADVANCE(421); + END_STATE(); + case 280: + if (lookahead == 'c') ADVANCE(422); + END_STATE(); + case 281: + if (lookahead == 'l') ADVANCE(423); + END_STATE(); + case 282: + if (lookahead == 'a') ADVANCE(424); + END_STATE(); + case 283: + if (lookahead == 'g') ADVANCE(425); + END_STATE(); + case 284: + if (lookahead == 'l') ADVANCE(426); + END_STATE(); + case 285: + if (lookahead == 'n') ADVANCE(427); + END_STATE(); + case 286: + ACCEPT_TOKEN(anon_sym_auto); + END_STATE(); + case 287: + if (lookahead == 'l') ADVANCE(428); + END_STATE(); + case 288: + ACCEPT_TOKEN(sym_primitive_type); + END_STATE(); + case 289: + if (lookahead == 'k') ADVANCE(429); + END_STATE(); + case 290: + if (lookahead == 'p') ADVANCE(430); + END_STATE(); + case 291: + if (lookahead == 'f') ADVANCE(431); + END_STATE(); + case 292: + ACCEPT_TOKEN(anon_sym_case); + END_STATE(); + case 293: + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '1') ADVANCE(432); + if (lookahead == '3') ADVANCE(433); + if (lookahead == '6') ADVANCE(434); + if (lookahead == '8') ADVANCE(435); + if (lookahead == 'p') ADVANCE(436); + END_STATE(); + case 294: + if (lookahead == 's') ADVANCE(437); + END_STATE(); + case 295: + if (lookahead == 't') ADVANCE(438); + END_STATE(); + case 296: + if (lookahead == 'i') ADVANCE(439); + END_STATE(); + case 297: + if (lookahead == 'u') ADVANCE(440); + END_STATE(); + case 298: + if (lookahead == 'n') ADVANCE(441); + END_STATE(); + case 299: + if (lookahead == 'l') ADVANCE(442); + END_STATE(); + case 300: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 301: + ACCEPT_TOKEN(anon_sym_enum); + END_STATE(); + case 302: + if (lookahead == 'r') ADVANCE(443); + END_STATE(); + case 303: + if (lookahead == 'e') ADVANCE(352); + END_STATE(); + case 304: + if (lookahead == 't') ADVANCE(288); + END_STATE(); + case 305: + ACCEPT_TOKEN(anon_sym_goto); + END_STATE(); + case 306: + if (lookahead == 'n') ADVANCE(444); + END_STATE(); + case 307: + if (lookahead == 't') ADVANCE(445); + END_STATE(); + case 308: + if (lookahead == '6') ADVANCE(446); + END_STATE(); + case 309: + if (lookahead == '2') ADVANCE(447); + END_STATE(); + case 310: + if (lookahead == '4') ADVANCE(448); + END_STATE(); + case 311: + if (lookahead == '_') ADVANCE(449); + END_STATE(); + case 312: + if (lookahead == 't') ADVANCE(450); + END_STATE(); + case 313: + ACCEPT_TOKEN(anon_sym_long); + END_STATE(); + case 314: + if (lookahead == 's') ADVANCE(451); + END_STATE(); + case 315: + if (lookahead == 'a') ADVANCE(452); + END_STATE(); + case 316: + if (lookahead == 't') ADVANCE(453); + END_STATE(); + case 317: + if (lookahead == 'r') ADVANCE(454); + END_STATE(); + case 318: + if (lookahead == 'a') ADVANCE(455); + if (lookahead == 'p') ADVANCE(456); + END_STATE(); + case 319: + if (lookahead == '_') ADVANCE(457); + END_STATE(); + case 320: + if (lookahead == 'e') ADVANCE(458); + END_STATE(); + case 321: + if (lookahead == 'a') ADVANCE(459); + END_STATE(); + case 322: + if (lookahead == 'i') ADVANCE(460); + END_STATE(); + case 323: + if (lookahead == 's') ADVANCE(461); + END_STATE(); + case 324: + if (lookahead == 'r') ADVANCE(462); + END_STATE(); + case 325: + if (lookahead == 'r') ADVANCE(463); + END_STATE(); + case 326: + if (lookahead == 't') ADVANCE(464); + END_STATE(); + case 327: + if (lookahead == 'e') ADVANCE(465); + END_STATE(); + case 328: + if (lookahead == '_') ADVANCE(466); + if (lookahead == 'o') ADVANCE(467); + END_STATE(); + case 329: + if (lookahead == 'e') ADVANCE(468); + END_STATE(); + case 330: + if (lookahead == 'i') ADVANCE(469); + END_STATE(); + case 331: + if (lookahead == 'c') ADVANCE(470); + END_STATE(); + case 332: + if (lookahead == 'c') ADVANCE(471); + END_STATE(); + case 333: + if (lookahead == 'a') ADVANCE(472); + END_STATE(); + case 334: + ACCEPT_TOKEN(anon_sym_tvos); + END_STATE(); + case 335: + if (lookahead == 'd') ADVANCE(473); + if (lookahead == 'o') ADVANCE(474); + END_STATE(); + case 336: + if (lookahead == '1') ADVANCE(475); + if (lookahead == '3') ADVANCE(476); + if (lookahead == '6') ADVANCE(477); + if (lookahead == '8') ADVANCE(478); + if (lookahead == 'p') ADVANCE(479); + END_STATE(); + case 337: + if (lookahead == 'n') ADVANCE(480); + END_STATE(); + case 338: + if (lookahead == 'g') ADVANCE(481); + END_STATE(); + case 339: + if (lookahead == 'r') ADVANCE(482); + END_STATE(); + case 340: + if (lookahead == 't') ADVANCE(483); + END_STATE(); + case 341: + if (lookahead == 'h') ADVANCE(484); + END_STATE(); + case 342: + if (lookahead == 'e') ADVANCE(485); + END_STATE(); + case 343: + if (lookahead == 'V') ADVANCE(486); + END_STATE(); + case 344: + if (lookahead == 'E') ADVANCE(487); + END_STATE(); + case 345: + if (lookahead == 'N') ADVANCE(488); + END_STATE(); + case 346: + if (lookahead == 'R') ADVANCE(489); + END_STATE(); + case 347: + if (lookahead == 'T') ADVANCE(490); + END_STATE(); + case 348: + if (lookahead == 'T') ADVANCE(491); + END_STATE(); + case 349: + if (lookahead == 'L') ADVANCE(492); + END_STATE(); + case 350: + ACCEPT_TOKEN(anon_sym_Class); + END_STATE(); + case 351: + if (lookahead == 'C') ADVANCE(493); + END_STATE(); + case 352: + ACCEPT_TOKEN(sym_false); + END_STATE(); + case 353: + if (lookahead == 'A') ADVANCE(494); + END_STATE(); + case 354: + if (lookahead == 'p') ADVANCE(495); + END_STATE(); + case 355: + if (lookahead == 'l') ADVANCE(496); + END_STATE(); + case 356: + if (lookahead == 'S') ADVANCE(497); + END_STATE(); + case 357: + if (lookahead == 'T') ADVANCE(498); + END_STATE(); + case 358: + if (lookahead == 'A') ADVANCE(499); + END_STATE(); + case 359: + if (lookahead == 'A') ADVANCE(500); + END_STATE(); + case 360: + if (lookahead == 'P') ADVANCE(501); + END_STATE(); + case 361: + if (lookahead == 'U') ADVANCE(502); + END_STATE(); + case 362: + if (lookahead == 'T') ADVANCE(503); + END_STATE(); + case 363: + if (lookahead == 'R') ADVANCE(504); + END_STATE(); + case 364: + if (lookahead == 'L') ADVANCE(505); + END_STATE(); + case 365: + if (lookahead == 'Q') ADVANCE(506); + END_STATE(); + case 366: + if (lookahead == 'O') ADVANCE(507); + END_STATE(); + case 367: + if (lookahead == 'I') ADVANCE(508); + END_STATE(); + case 368: + if (lookahead == 'A') ADVANCE(509); + END_STATE(); + case 369: + if (lookahead == 'L') ADVANCE(510); + END_STATE(); + case 370: + if (lookahead == 'E') ADVANCE(511); + if (lookahead == 'R') ADVANCE(512); + END_STATE(); + case 371: + if (lookahead == '_') ADVANCE(513); + END_STATE(); + case 372: + if (lookahead == 'P') ADVANCE(514); + END_STATE(); + case 373: + if (lookahead == 'I') ADVANCE(515); + END_STATE(); + case 374: + if (lookahead == 'n') ADVANCE(516); + END_STATE(); + case 375: + if (lookahead == 'i') ADVANCE(517); + END_STATE(); + case 376: + if (lookahead == 'l') ADVANCE(518); + END_STATE(); + case 377: + if (lookahead == 'r') ADVANCE(519); + END_STATE(); + case 378: + if (lookahead == 'u') ADVANCE(520); + END_STATE(); + case 379: + if (lookahead == 't') ADVANCE(521); + END_STATE(); + case 380: + if (lookahead == '_') ADVANCE(522); + if (lookahead == 'a') ADVANCE(523); + END_STATE(); + case 381: + if (lookahead == '_') ADVANCE(524); + END_STATE(); + case 382: + if (lookahead == '_') ADVANCE(525); + END_STATE(); + case 383: + if (lookahead == 'g') ADVANCE(526); + END_STATE(); + case 384: + ACCEPT_TOKEN(anon_sym___asm); + if (lookahead == '_') ADVANCE(527); + END_STATE(); + case 385: + if (lookahead == 'r') ADVANCE(528); + END_STATE(); + case 386: + if (lookahead == 'o') ADVANCE(529); + END_STATE(); + case 387: + if (lookahead == 'e') ADVANCE(530); + END_STATE(); + case 388: + if (lookahead == 'c') ADVANCE(531); + END_STATE(); + case 389: + if (lookahead == 'd') ADVANCE(532); + END_STATE(); + case 390: + if (lookahead == 'l') ADVANCE(533); + END_STATE(); + case 391: + if (lookahead == 'c') ADVANCE(534); + END_STATE(); + case 392: + if (lookahead == 'c') ADVANCE(535); + END_STATE(); + case 393: + if (lookahead == 'c') ADVANCE(536); + END_STATE(); + case 394: + if (lookahead == 'p') ADVANCE(537); + END_STATE(); + case 395: + if (lookahead == 's') ADVANCE(538); + if (lookahead == 't') ADVANCE(539); + END_STATE(); + case 396: + if (lookahead == 'a') ADVANCE(540); + END_STATE(); + case 397: + if (lookahead == 'l') ADVANCE(541); + END_STATE(); + case 398: + if (lookahead == 'r') ADVANCE(542); + END_STATE(); + case 399: + if (lookahead == 'e') ADVANCE(543); + END_STATE(); + case 400: + if (lookahead == 't') ADVANCE(544); + END_STATE(); + case 401: + if (lookahead == 'a') ADVANCE(545); + END_STATE(); + case 402: + if (lookahead == 'c') ADVANCE(546); + END_STATE(); + case 403: + if (lookahead == 'g') ADVANCE(547); + END_STATE(); + case 404: + if (lookahead == 'i') ADVANCE(548); + END_STATE(); + case 405: + if (lookahead == 'd') ADVANCE(549); + END_STATE(); + case 406: + if (lookahead == 'n') ADVANCE(550); + END_STATE(); + case 407: + if (lookahead == 'l') ADVANCE(551); + END_STATE(); + case 408: + if (lookahead == 'a') ADVANCE(552); + END_STATE(); + case 409: + if (lookahead == 'l') ADVANCE(553); + END_STATE(); + case 410: + if (lookahead == 't') ADVANCE(554); + END_STATE(); + case 411: + if (lookahead == 'r') ADVANCE(555); + END_STATE(); + case 412: + if (lookahead == 'c') ADVANCE(556); + END_STATE(); + case 413: + if (lookahead == 'o') ADVANCE(557); + END_STATE(); + case 414: + if (lookahead == 's') ADVANCE(558); + END_STATE(); + case 415: + if (lookahead == 'e') ADVANCE(559); + END_STATE(); + case 416: + ACCEPT_TOKEN(anon_sym___try); + END_STATE(); + case 417: + if (lookahead == 'e') ADVANCE(560); + END_STATE(); + case 418: + if (lookahead == 'l') ADVANCE(561); + END_STATE(); + case 419: + if (lookahead == 'a') ADVANCE(562); + END_STATE(); + case 420: + if (lookahead == 's') ADVANCE(563); + END_STATE(); + case 421: + if (lookahead == 'r') ADVANCE(564); + END_STATE(); + case 422: + if (lookahead == 't') ADVANCE(565); + END_STATE(); + case 423: + if (lookahead == 'a') ADVANCE(566); + END_STATE(); + case 424: + if (lookahead == 'k') ADVANCE(567); + END_STATE(); + case 425: + if (lookahead == 'n') ADVANCE(568); + END_STATE(); + case 426: + if (lookahead == 'i') ADVANCE(569); + END_STATE(); + case 427: + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'o') ADVANCE(571); + END_STATE(); + case 428: + if (lookahead == 'a') ADVANCE(572); + END_STATE(); + case 429: + ACCEPT_TOKEN(anon_sym_break); + END_STATE(); + case 430: + if (lookahead == 'y') ADVANCE(573); + END_STATE(); + case 431: + ACCEPT_TOKEN(anon_sym_byref); + END_STATE(); + case 432: + if (lookahead == '6') ADVANCE(574); + END_STATE(); + case 433: + if (lookahead == '2') ADVANCE(575); + END_STATE(); + case 434: + if (lookahead == '4') ADVANCE(576); + END_STATE(); + case 435: + if (lookahead == '_') ADVANCE(577); + END_STATE(); + case 436: + if (lookahead == 't') ADVANCE(578); + END_STATE(); + case 437: + ACCEPT_TOKEN(anon_sym_class); + END_STATE(); + case 438: + ACCEPT_TOKEN(anon_sym_const); + if (lookahead == 'e') ADVANCE(579); + END_STATE(); + case 439: + if (lookahead == 'n') ADVANCE(580); + END_STATE(); + case 440: + if (lookahead == 'l') ADVANCE(581); + END_STATE(); + case 441: + if (lookahead == 'e') ADVANCE(582); + END_STATE(); + case 442: + if (lookahead == 'e') ADVANCE(288); + END_STATE(); + case 443: + if (lookahead == 'n') ADVANCE(583); + END_STATE(); + case 444: + if (lookahead == 'e') ADVANCE(584); + END_STATE(); + case 445: + ACCEPT_TOKEN(anon_sym_inout); + END_STATE(); + case 446: + if (lookahead == '_') ADVANCE(585); + END_STATE(); + case 447: + if (lookahead == '_') ADVANCE(586); + END_STATE(); + case 448: + if (lookahead == '_') ADVANCE(587); + END_STATE(); + case 449: + if (lookahead == 't') ADVANCE(288); + END_STATE(); + case 450: + if (lookahead == 'r') ADVANCE(588); + END_STATE(); + case 451: + ACCEPT_TOKEN(anon_sym_macos); + if (lookahead == 'x') ADVANCE(589); + END_STATE(); + case 452: + if (lookahead == 'l') ADVANCE(590); + END_STATE(); + case 453: + if (lookahead == 'u') ADVANCE(591); + END_STATE(); + case 454: + if (lookahead == 'o') ADVANCE(592); + END_STATE(); + case 455: + if (lookahead == 'b') ADVANCE(593); + END_STATE(); + case 456: + if (lookahead == 't') ADVANCE(594); + END_STATE(); + case 457: + if (lookahead == 'b') ADVANCE(595); + END_STATE(); + case 458: + if (lookahead == 't') ADVANCE(596); + END_STATE(); + case 459: + if (lookahead == 'y') ADVANCE(597); + END_STATE(); + case 460: + if (lookahead == 'f') ADVANCE(598); + END_STATE(); + case 461: + if (lookahead == 't') ADVANCE(599); + END_STATE(); + case 462: + if (lookahead == 'i') ADVANCE(600); + END_STATE(); + case 463: + if (lookahead == 'n') ADVANCE(601); + END_STATE(); + case 464: + ACCEPT_TOKEN(anon_sym_short); + END_STATE(); + case 465: + if (lookahead == 'd') ADVANCE(602); + END_STATE(); + case 466: + if (lookahead == 't') ADVANCE(288); + END_STATE(); + case 467: + if (lookahead == 'f') ADVANCE(603); + END_STATE(); + case 468: + if (lookahead == '_') ADVANCE(604); + END_STATE(); + case 469: + if (lookahead == 'c') ADVANCE(605); + END_STATE(); + case 470: + if (lookahead == 't') ADVANCE(606); + END_STATE(); + case 471: + if (lookahead == 'h') ADVANCE(607); + END_STATE(); + case 472: + if (lookahead == 'd') ADVANCE(608); + END_STATE(); + case 473: + if (lookahead == 'e') ADVANCE(609); + END_STATE(); + case 474: + if (lookahead == 'f') ADVANCE(610); + END_STATE(); + case 475: + if (lookahead == '6') ADVANCE(611); + END_STATE(); + case 476: + if (lookahead == '2') ADVANCE(612); + END_STATE(); + case 477: + if (lookahead == '4') ADVANCE(613); + END_STATE(); + case 478: + if (lookahead == '_') ADVANCE(614); + END_STATE(); + case 479: + if (lookahead == 't') ADVANCE(615); + END_STATE(); + case 480: + ACCEPT_TOKEN(anon_sym_union); + END_STATE(); + case 481: + if (lookahead == 'n') ADVANCE(616); + END_STATE(); + case 482: + if (lookahead == 'g') ADVANCE(617); + END_STATE(); + case 483: + if (lookahead == 'i') ADVANCE(618); + END_STATE(); + case 484: + if (lookahead == 'o') ADVANCE(619); + END_STATE(); + case 485: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 486: + if (lookahead == 'A') ADVANCE(620); + END_STATE(); + case 487: + if (lookahead == 'P') ADVANCE(621); + END_STATE(); + case 488: + if (lookahead == 'A') ADVANCE(622); + END_STATE(); + case 489: + if (lookahead == 'M') ADVANCE(623); + END_STATE(); + case 490: + if (lookahead == 'U') ADVANCE(624); + END_STATE(); + case 491: + if (lookahead == 'E') ADVANCE(625); + END_STATE(); + case 492: + if (lookahead == 'I') ADVANCE(626); + END_STATE(); + case 493: + if (lookahead == 'A') ADVANCE(627); + END_STATE(); + case 494: + if (lookahead == 'T') ADVANCE(628); + END_STATE(); + case 495: + if (lookahead == 'e') ADVANCE(629); + END_STATE(); + case 496: + if (lookahead == 'e') ADVANCE(630); + END_STATE(); + case 497: + if (lookahead == 'I') ADVANCE(631); + END_STATE(); + case 498: + if (lookahead == 'O') ADVANCE(632); + END_STATE(); + case 499: + if (lookahead == 'I') ADVANCE(633); + END_STATE(); + case 500: + if (lookahead == 'S') ADVANCE(634); + END_STATE(); + case 501: + if (lookahead == 'R') ADVANCE(635); + END_STATE(); + case 502: + if (lookahead == 'M') ADVANCE(636); + END_STATE(); + case 503: + if (lookahead == 'E') ADVANCE(637); + END_STATE(); + case 504: + if (lookahead == 'M') ADVANCE(638); + END_STATE(); + case 505: + if (lookahead == 'I') ADVANCE(639); + END_STATE(); + case 506: + if (lookahead == 'U') ADVANCE(640); + END_STATE(); + case 507: + if (lookahead == 'T') ADVANCE(641); + END_STATE(); + case 508: + if (lookahead == 'F') ADVANCE(642); + END_STATE(); + case 509: + if (lookahead == 'V') ADVANCE(643); + END_STATE(); + case 510: + if (lookahead == 'I') ADVANCE(644); + END_STATE(); + case 511: + if (lookahead == 'X') ADVANCE(645); + END_STATE(); + case 512: + if (lookahead == 'O') ADVANCE(646); + END_STATE(); + case 513: + if (lookahead == 'E') ADVANCE(647); + END_STATE(); + case 514: + if (lookahead == 'E') ADVANCE(648); + END_STATE(); + case 515: + if (lookahead == 'L') ADVANCE(649); + END_STATE(); + case 516: + if (lookahead == 'a') ADVANCE(650); + if (lookahead == 'o') ADVANCE(651); + END_STATE(); + case 517: + if (lookahead == 'c') ADVANCE(652); + END_STATE(); + case 518: + if (lookahead == 'e') ADVANCE(653); + END_STATE(); + case 519: + if (lookahead == 'i') ADVANCE(654); + END_STATE(); + case 520: + if (lookahead == 'l') ADVANCE(655); + END_STATE(); + case 521: + if (lookahead == 'u') ADVANCE(656); + END_STATE(); + case 522: + if (lookahead == 'u') ADVANCE(657); + END_STATE(); + case 523: + if (lookahead == 'b') ADVANCE(658); + END_STATE(); + case 524: + if (lookahead == 'A') ADVANCE(659); + END_STATE(); + case 525: + if (lookahead == 'A') ADVANCE(660); + END_STATE(); + case 526: + if (lookahead == 'n') ADVANCE(661); + END_STATE(); + case 527: + if (lookahead == '_') ADVANCE(662); + END_STATE(); + case 528: + if (lookahead == 'i') ADVANCE(663); + END_STATE(); + case 529: + if (lookahead == 'r') ADVANCE(664); + END_STATE(); + case 530: + if (lookahead == 'd') ADVANCE(665); + END_STATE(); + case 531: + if (lookahead == 'k') ADVANCE(666); + END_STATE(); + case 532: + if (lookahead == 'g') ADVANCE(667); + END_STATE(); + case 533: + if (lookahead == 't') ADVANCE(668); + END_STATE(); + case 534: + if (lookahead == 'h') ADVANCE(669); + END_STATE(); + case 535: + if (lookahead == 'l') ADVANCE(670); + END_STATE(); + case 536: + if (lookahead == 'a') ADVANCE(671); + END_STATE(); + case 537: + if (lookahead == 'l') ADVANCE(672); + END_STATE(); + case 538: + if (lookahead == 't') ADVANCE(673); + END_STATE(); + case 539: + if (lookahead == 'r') ADVANCE(674); + END_STATE(); + case 540: + if (lookahead == 'r') ADVANCE(675); + END_STATE(); + case 541: + if (lookahead == 's') ADVANCE(676); + END_STATE(); + case 542: + if (lookahead == 'e') ADVANCE(677); + END_STATE(); + case 543: + if (lookahead == 'n') ADVANCE(678); + END_STATE(); + case 544: + if (lookahead == 'c') ADVANCE(679); + END_STATE(); + case 545: + if (lookahead == 'l') ADVANCE(680); + END_STATE(); + case 546: + if (lookahead == 'e') ADVANCE(681); + END_STATE(); + case 547: + ACCEPT_TOKEN(anon_sym___imag); + END_STATE(); + case 548: + if (lookahead == 'n') ADVANCE(682); + END_STATE(); + case 549: + if (lookahead == 'o') ADVANCE(683); + END_STATE(); + case 550: + if (lookahead == 'u') ADVANCE(684); + END_STATE(); + case 551: + if (lookahead == 'a') ADVANCE(685); + END_STATE(); + case 552: + if (lookahead == 'u') ADVANCE(686); + END_STATE(); + case 553: + ACCEPT_TOKEN(anon_sym___real); + END_STATE(); + case 554: + if (lookahead == 'r') ADVANCE(687); + END_STATE(); + case 555: + ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); + END_STATE(); + case 556: + if (lookahead == 'a') ADVANCE(688); + END_STATE(); + case 557: + if (lookahead == 'n') ADVANCE(689); + END_STATE(); + case 558: + if (lookahead == 'c') ADVANCE(690); + END_STATE(); + case 559: + if (lookahead == 'a') ADVANCE(691); + END_STATE(); + case 560: + if (lookahead == 'o') ADVANCE(692); + END_STATE(); + case 561: + if (lookahead == 'i') ADVANCE(693); + END_STATE(); + case 562: + if (lookahead == 'f') ADVANCE(694); + END_STATE(); + case 563: + if (lookahead == 'e') ADVANCE(695); + END_STATE(); + case 564: + ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); + END_STATE(); + case 565: + if (lookahead == 'o') ADVANCE(696); + END_STATE(); + case 566: + if (lookahead == 't') ADVANCE(697); + END_STATE(); + case 567: + ACCEPT_TOKEN(anon_sym___weak); + END_STATE(); + case 568: + if (lookahead == 'o') ADVANCE(698); + END_STATE(); + case 569: + if (lookahead == 'g') ADVANCE(699); + END_STATE(); + case 570: + if (lookahead == 's') ADVANCE(700); + END_STATE(); + case 571: + if (lookahead == 'f') ADVANCE(701); + END_STATE(); + case 572: + if (lookahead == 'b') ADVANCE(702); + END_STATE(); + case 573: + ACCEPT_TOKEN(anon_sym_bycopy); + END_STATE(); + case 574: + if (lookahead == '_') ADVANCE(703); + END_STATE(); + case 575: + if (lookahead == '_') ADVANCE(704); + END_STATE(); + case 576: + if (lookahead == '_') ADVANCE(705); + END_STATE(); + case 577: + if (lookahead == 't') ADVANCE(288); + END_STATE(); + case 578: + if (lookahead == 'r') ADVANCE(706); + END_STATE(); + case 579: + if (lookahead == 'x') ADVANCE(707); + END_STATE(); + case 580: + if (lookahead == 'u') ADVANCE(708); + END_STATE(); + case 581: + if (lookahead == 't') ADVANCE(709); + END_STATE(); + case 582: + if (lookahead == 'd') ADVANCE(710); + END_STATE(); + case 583: + ACCEPT_TOKEN(anon_sym_extern); + END_STATE(); + case 584: + ACCEPT_TOKEN(anon_sym_inline); + END_STATE(); + case 585: + if (lookahead == 't') ADVANCE(288); + END_STATE(); + case 586: + if (lookahead == 't') ADVANCE(288); + END_STATE(); + case 587: + if (lookahead == 't') ADVANCE(288); + END_STATE(); + case 588: + if (lookahead == '_') ADVANCE(711); + END_STATE(); + case 589: + ACCEPT_TOKEN(anon_sym_macosx); + END_STATE(); + case 590: + if (lookahead == 'i') ADVANCE(712); + END_STATE(); + case 591: + if (lookahead == 'r') ADVANCE(713); + END_STATE(); + case 592: + if (lookahead == 'w') ADVANCE(714); + END_STATE(); + case 593: + if (lookahead == 'l') ADVANCE(715); + END_STATE(); + case 594: + if (lookahead == 'r') ADVANCE(716); + END_STATE(); + case 595: + if (lookahead == 'r') ADVANCE(717); + END_STATE(); + case 596: + if (lookahead == 'o') ADVANCE(718); + END_STATE(); + case 597: + ACCEPT_TOKEN(anon_sym_oneway); + END_STATE(); + case 598: + if (lookahead == 'f') ADVANCE(719); + END_STATE(); + case 599: + if (lookahead == 'e') ADVANCE(720); + END_STATE(); + case 600: + if (lookahead == 'c') ADVANCE(721); + END_STATE(); + case 601: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 602: + ACCEPT_TOKEN(anon_sym_signed); + END_STATE(); + case 603: + ACCEPT_TOKEN(anon_sym_sizeof); + END_STATE(); + case 604: + if (lookahead == 't') ADVANCE(288); + END_STATE(); + case 605: + ACCEPT_TOKEN(anon_sym_static); + END_STATE(); + case 606: + ACCEPT_TOKEN(anon_sym_struct); + END_STATE(); + case 607: + ACCEPT_TOKEN(anon_sym_switch); + END_STATE(); + case 608: + if (lookahead == '_') ADVANCE(722); + END_STATE(); + case 609: + if (lookahead == 'f') ADVANCE(723); + END_STATE(); + case 610: + ACCEPT_TOKEN(anon_sym_typeof); + END_STATE(); + case 611: + if (lookahead == '_') ADVANCE(724); + END_STATE(); + case 612: + if (lookahead == '_') ADVANCE(725); + END_STATE(); + case 613: + if (lookahead == '_') ADVANCE(726); + END_STATE(); + case 614: + if (lookahead == 't') ADVANCE(288); + END_STATE(); + case 615: + if (lookahead == 'r') ADVANCE(727); + END_STATE(); + case 616: + if (lookahead == 'e') ADVANCE(728); + END_STATE(); + case 617: + ACCEPT_TOKEN(anon_sym_va_arg); + END_STATE(); + case 618: + if (lookahead == 'l') ADVANCE(729); + END_STATE(); + case 619: + if (lookahead == 's') ADVANCE(730); + END_STATE(); + case 620: + if (lookahead == 'I') ADVANCE(731); + END_STATE(); + case 621: + if (lookahead == 'R') ADVANCE(732); + END_STATE(); + case 622: + if (lookahead == 'V') ADVANCE(733); + END_STATE(); + case 623: + if (lookahead == 'A') ADVANCE(734); + END_STATE(); + case 624: + if (lookahead == 'R') ADVANCE(735); + END_STATE(); + case 625: + if (lookahead == 'R') ADVANCE(736); + END_STATE(); + case 626: + if (lookahead == 'N') ADVANCE(737); + END_STATE(); + case 627: + if (lookahead == 'T') ADVANCE(738); + END_STATE(); + case 628: + if (lookahead == 'I') ADVANCE(739); + END_STATE(); + case 629: + if (lookahead == 'c') ADVANCE(740); + END_STATE(); + case 630: + if (lookahead == 't') ADVANCE(741); + END_STATE(); + case 631: + if (lookahead == 'G') ADVANCE(742); + END_STATE(); + case 632: + if (lookahead == 'M') ADVANCE(743); + END_STATE(); + case 633: + if (lookahead == 'L') ADVANCE(744); + END_STATE(); + case 634: + if (lookahead == 'S') ADVANCE(745); + END_STATE(); + case 635: + if (lookahead == 'E') ADVANCE(746); + END_STATE(); + case 636: + if (lookahead == '_') ADVANCE(747); + END_STATE(); + case 637: + if (lookahead == 'N') ADVANCE(748); + END_STATE(); + case 638: + if (lookahead == 'A') ADVANCE(749); + END_STATE(); + case 639: + if (lookahead == 'N') ADVANCE(750); + END_STATE(); + case 640: + if (lookahead == 'I') ADVANCE(751); + END_STATE(); + case 641: + if (lookahead == '_') ADVANCE(752); + END_STATE(); + case 642: + if (lookahead == 'T') ADVANCE(753); + END_STATE(); + case 643: + if (lookahead == 'A') ADVANCE(754); + END_STATE(); + case 644: + if (lookahead == 'D') ADVANCE(755); + END_STATE(); + case 645: + if (lookahead == 'P') ADVANCE(756); + END_STATE(); + case 646: + if (lookahead == 'O') ADVANCE(757); + END_STATE(); + case 647: + if (lookahead == 'X') ADVANCE(758); + END_STATE(); + case 648: + if (lookahead == 'A') ADVANCE(759); + END_STATE(); + case 649: + if (lookahead == 'A') ADVANCE(760); + END_STATE(); + case 650: + if (lookahead == 's') ADVANCE(761); + END_STATE(); + case 651: + if (lookahead == 'f') ADVANCE(762); + END_STATE(); + case 652: + ACCEPT_TOKEN(anon_sym__Atomic); + END_STATE(); + case 653: + if (lookahead == 'x') ADVANCE(763); + END_STATE(); + case 654: + if (lookahead == 'c') ADVANCE(764); + END_STATE(); + case 655: + if (lookahead == 'l') ADVANCE(765); + END_STATE(); + case 656: + if (lookahead == 'r') ADVANCE(766); + END_STATE(); + case 657: + if (lookahead == 'n') ADVANCE(767); + END_STATE(); + case 658: + if (lookahead == 'l') ADVANCE(768); + END_STATE(); + case 659: + if (lookahead == 'V') ADVANCE(769); + END_STATE(); + case 660: + if (lookahead == 'V') ADVANCE(770); + END_STATE(); + case 661: + if (lookahead == 'o') ADVANCE(771); + END_STATE(); + case 662: + ACCEPT_TOKEN(anon_sym___asm__); + END_STATE(); + case 663: + if (lookahead == 'b') ADVANCE(772); + END_STATE(); + case 664: + if (lookahead == 'e') ADVANCE(773); + END_STATE(); + case 665: + ACCEPT_TOKEN(anon_sym___based); + END_STATE(); + case 666: + ACCEPT_TOKEN(anon_sym___block); + END_STATE(); + case 667: + if (lookahead == 'e') ADVANCE(774); + END_STATE(); + case 668: + if (lookahead == 'i') ADVANCE(775); + END_STATE(); + case 669: + ACCEPT_TOKEN(anon_sym___catch); + END_STATE(); + case 670: + ACCEPT_TOKEN(anon_sym___cdecl); + END_STATE(); + case 671: + if (lookahead == 'l') ADVANCE(776); + END_STATE(); + case 672: + if (lookahead == 'e') ADVANCE(777); + END_STATE(); + case 673: + ACCEPT_TOKEN(anon_sym___const); + END_STATE(); + case 674: + if (lookahead == 'a') ADVANCE(778); + END_STATE(); + case 675: + if (lookahead == 'i') ADVANCE(779); + END_STATE(); + case 676: + if (lookahead == 'p') ADVANCE(780); + END_STATE(); + case 677: + if (lookahead == 'c') ADVANCE(781); + END_STATE(); + case 678: + if (lookahead == 's') ADVANCE(782); + END_STATE(); + case 679: + if (lookahead == 'a') ADVANCE(783); + END_STATE(); + case 680: + if (lookahead == 'l') ADVANCE(784); + END_STATE(); + case 681: + if (lookahead == 'i') ADVANCE(785); + END_STATE(); + case 682: + if (lookahead == 'e') ADVANCE(786); + END_STATE(); + case 683: + if (lookahead == 'f') ADVANCE(787); + END_STATE(); + case 684: + if (lookahead == 'l') ADVANCE(788); + END_STATE(); + case 685: + if (lookahead == 'b') ADVANCE(789); + END_STATE(); + case 686: + if (lookahead == 't') ADVANCE(790); + END_STATE(); + case 687: + if (lookahead == 'i') ADVANCE(791); + END_STATE(); + case 688: + if (lookahead == 'l') ADVANCE(792); + END_STATE(); + case 689: + if (lookahead == 'g') ADVANCE(793); + END_STATE(); + case 690: + if (lookahead == 'a') ADVANCE(794); + END_STATE(); + case 691: + if (lookahead == 'd') ADVANCE(795); + END_STATE(); + case 692: + if (lookahead == 'f') ADVANCE(796); + END_STATE(); + case 693: + if (lookahead == 'g') ADVANCE(797); + END_STATE(); + case 694: + if (lookahead == 'e') ADVANCE(798); + END_STATE(); + case 695: + if (lookahead == 'd') ADVANCE(799); + END_STATE(); + case 696: + if (lookahead == 'r') ADVANCE(800); + END_STATE(); + case 697: + if (lookahead == 'i') ADVANCE(801); + END_STATE(); + case 698: + if (lookahead == 'f') ADVANCE(802); + END_STATE(); + case 699: + if (lookahead == 'n') ADVANCE(803); + END_STATE(); + case 700: + ACCEPT_TOKEN(anon_sym_alignas); + END_STATE(); + case 701: + ACCEPT_TOKEN(anon_sym_alignof); + END_STATE(); + case 702: + if (lookahead == 'i') ADVANCE(804); + END_STATE(); + case 703: + if (lookahead == 't') ADVANCE(288); + END_STATE(); + case 704: + if (lookahead == 't') ADVANCE(288); + END_STATE(); + case 705: + if (lookahead == 't') ADVANCE(288); + END_STATE(); + case 706: + if (lookahead == '_') ADVANCE(805); + END_STATE(); + case 707: + if (lookahead == 'p') ADVANCE(806); + END_STATE(); + case 708: + if (lookahead == 'e') ADVANCE(807); + END_STATE(); + case 709: + ACCEPT_TOKEN(anon_sym_default); + END_STATE(); + case 710: + ACCEPT_TOKEN(anon_sym_defined); + END_STATE(); + case 711: + if (lookahead == 't') ADVANCE(288); + END_STATE(); + case 712: + if (lookahead == 'g') ADVANCE(808); + END_STATE(); + case 713: + if (lookahead == 'n') ADVANCE(809); + END_STATE(); + case 714: + ACCEPT_TOKEN(anon_sym_nothrow); + END_STATE(); + case 715: + if (lookahead == 'e') ADVANCE(810); + END_STATE(); + case 716: + ACCEPT_TOKEN(anon_sym_nullptr); + if (lookahead == '_') ADVANCE(811); + END_STATE(); + case 717: + if (lookahead == 'i') ADVANCE(812); + END_STATE(); + case 718: + if (lookahead == 'f') ADVANCE(813); + END_STATE(); + case 719: + if (lookahead == '_') ADVANCE(814); + END_STATE(); + case 720: + if (lookahead == 'r') ADVANCE(815); + END_STATE(); + case 721: + if (lookahead == 't') ADVANCE(816); + END_STATE(); + case 722: + if (lookahead == 'l') ADVANCE(817); + END_STATE(); + case 723: + ACCEPT_TOKEN(anon_sym_typedef); + END_STATE(); + case 724: + if (lookahead == 't') ADVANCE(288); + END_STATE(); + case 725: + if (lookahead == 't') ADVANCE(288); + END_STATE(); + case 726: + if (lookahead == 't') ADVANCE(288); + END_STATE(); + case 727: + if (lookahead == '_') ADVANCE(818); + END_STATE(); + case 728: + if (lookahead == 'd') ADVANCE(819); + END_STATE(); + case 729: + if (lookahead == 'e') ADVANCE(820); + END_STATE(); + case 730: + ACCEPT_TOKEN(anon_sym_watchos); + END_STATE(); + case 731: + if (lookahead == 'L') ADVANCE(821); + END_STATE(); + case 732: + if (lookahead == 'E') ADVANCE(822); + END_STATE(); + case 733: + if (lookahead == 'A') ADVANCE(823); + END_STATE(); + case 734: + if (lookahead == 'T') ADVANCE(824); + END_STATE(); + case 735: + if (lookahead == 'N') ADVANCE(825); + END_STATE(); + case 736: + if (lookahead == 'N') ADVANCE(826); + END_STATE(); + case 737: + if (lookahead == 'E') ADVANCE(827); + END_STATE(); + case 738: + if (lookahead == 'E') ADVANCE(828); + END_STATE(); + case 739: + if (lookahead == 'O') ADVANCE(829); + END_STATE(); + case 740: + if (lookahead == 't') ADVANCE(830); + END_STATE(); + case 741: + ACCEPT_TOKEN(anon_sym_IBOutlet); + END_STATE(); + case 742: + if (lookahead == 'N') ADVANCE(831); + END_STATE(); + case 743: + if (lookahead == 'A') ADVANCE(832); + END_STATE(); + case 744: + if (lookahead == 'A') ADVANCE(833); + END_STATE(); + case 745: + if (lookahead == '_') ADVANCE(834); + END_STATE(); + case 746: + if (lookahead == 'C') ADVANCE(835); + END_STATE(); + case 747: + if (lookahead == 'A') ADVANCE(836); + if (lookahead == 'D') ADVANCE(837); + END_STATE(); + case 748: + if (lookahead == 'S') ADVANCE(838); + END_STATE(); + case 749: + if (lookahead == 'T') ADVANCE(839); + END_STATE(); + case 750: + if (lookahead == 'E') ADVANCE(840); + END_STATE(); + case 751: + if (lookahead == 'R') ADVANCE(841); + END_STATE(); + case 752: + if (lookahead == 'C') ADVANCE(842); + END_STATE(); + case 753: + if (lookahead == '_') ADVANCE(843); + END_STATE(); + case 754: + if (lookahead == 'I') ADVANCE(844); + END_STATE(); + case 755: + if (lookahead == '_') ADVANCE(845); + END_STATE(); + case 756: + if (lookahead == 'O') ADVANCE(846); + END_STATE(); + case 757: + if (lookahead == 'T') ADVANCE(847); + END_STATE(); + case 758: + if (lookahead == 'T') ADVANCE(848); + END_STATE(); + case 759: + if (lookahead == 'R') ADVANCE(849); + END_STATE(); + case 760: + if (lookahead == 'B') ADVANCE(850); + END_STATE(); + case 761: + ACCEPT_TOKEN(anon_sym__Alignas); + END_STATE(); + case 762: + ACCEPT_TOKEN(anon_sym__Alignof); + END_STATE(); + case 763: + ACCEPT_TOKEN(anon_sym__Complex); + END_STATE(); + case 764: + ACCEPT_TOKEN(anon_sym__Generic); + END_STATE(); + case 765: + ACCEPT_TOKEN(anon_sym__Nonnull); + END_STATE(); + case 766: + if (lookahead == 'n') ADVANCE(851); + END_STATE(); + case 767: + if (lookahead == 's') ADVANCE(852); + END_STATE(); + case 768: + if (lookahead == 'e') ADVANCE(853); + END_STATE(); + case 769: + if (lookahead == 'A') ADVANCE(854); + END_STATE(); + case 770: + if (lookahead == 'A') ADVANCE(855); + END_STATE(); + case 771: + if (lookahead == 'f') ADVANCE(856); + END_STATE(); + case 772: + if (lookahead == 'u') ADVANCE(857); + END_STATE(); + case 773: + if (lookahead == 'l') ADVANCE(858); + END_STATE(); + case 774: + ACCEPT_TOKEN(anon_sym___bridge); + if (lookahead == '_') ADVANCE(859); + END_STATE(); + case 775: + if (lookahead == 'n') ADVANCE(860); + END_STATE(); + case 776: + if (lookahead == 'l') ADVANCE(861); + END_STATE(); + case 777: + if (lookahead == 'x') ADVANCE(862); + END_STATE(); + case 778: + if (lookahead == 'v') ADVANCE(863); + END_STATE(); + case 779: + if (lookahead == 'a') ADVANCE(864); + END_STATE(); + case 780: + if (lookahead == 'e') ADVANCE(865); + END_STATE(); + case 781: + if (lookahead == 'a') ADVANCE(866); + END_STATE(); + case 782: + if (lookahead == 'i') ADVANCE(867); + END_STATE(); + case 783: + if (lookahead == 'l') ADVANCE(868); + END_STATE(); + case 784: + if (lookahead == 'y') ADVANCE(869); + END_STATE(); + case 785: + if (lookahead == 'n') ADVANCE(870); + END_STATE(); + case 786: + ACCEPT_TOKEN(anon_sym___inline); + if (lookahead == '_') ADVANCE(871); + END_STATE(); + case 787: + ACCEPT_TOKEN(anon_sym___kindof); + END_STATE(); + case 788: + if (lookahead == 'l') ADVANCE(872); + END_STATE(); + case 789: + if (lookahead == 'l') ADVANCE(873); + END_STATE(); + case 790: + if (lookahead == 'h') ADVANCE(874); + END_STATE(); + case 791: + if (lookahead == 'c') ADVANCE(875); + END_STATE(); + case 792: + if (lookahead == 'l') ADVANCE(876); + END_STATE(); + case 793: + ACCEPT_TOKEN(anon_sym___strong); + END_STATE(); + case 794: + if (lookahead == 'l') ADVANCE(877); + END_STATE(); + case 795: + ACCEPT_TOKEN(anon_sym___thread); + END_STATE(); + case 796: + ACCEPT_TOKEN(anon_sym___typeof); + if (lookahead == '_') ADVANCE(878); + END_STATE(); + case 797: + if (lookahead == 'n') ADVANCE(879); + END_STATE(); + case 798: + if (lookahead == '_') ADVANCE(880); + END_STATE(); + case 799: + ACCEPT_TOKEN(anon_sym___unused); + END_STATE(); + case 800: + if (lookahead == 'c') ADVANCE(881); + END_STATE(); + case 801: + if (lookahead == 'l') ADVANCE(882); + END_STATE(); + case 802: + ACCEPT_TOKEN(anon_sym__alignof); + END_STATE(); + case 803: + if (lookahead == 'e') ADVANCE(883); + END_STATE(); + case 804: + if (lookahead == 'l') ADVANCE(884); + END_STATE(); + case 805: + if (lookahead == 't') ADVANCE(288); + END_STATE(); + case 806: + if (lookahead == 'r') ADVANCE(885); + END_STATE(); + case 807: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 808: + if (lookahead == 'n') ADVANCE(886); + END_STATE(); + case 809: + ACCEPT_TOKEN(anon_sym_noreturn); + END_STATE(); + case 810: + ACCEPT_TOKEN(anon_sym_nullable); + END_STATE(); + case 811: + if (lookahead == 't') ADVANCE(288); + END_STATE(); + case 812: + if (lookahead == 'd') ADVANCE(887); + END_STATE(); + case 813: + ACCEPT_TOKEN(anon_sym_offsetof); + END_STATE(); + case 814: + if (lookahead == 't') ADVANCE(288); + END_STATE(); + case 815: + ACCEPT_TOKEN(anon_sym_register); + END_STATE(); + case 816: + ACCEPT_TOKEN(anon_sym_restrict); + END_STATE(); + case 817: + if (lookahead == 'o') ADVANCE(888); + END_STATE(); + case 818: + if (lookahead == 't') ADVANCE(288); + END_STATE(); + case 819: + ACCEPT_TOKEN(anon_sym_unsigned); + END_STATE(); + case 820: + ACCEPT_TOKEN(anon_sym_volatile); + END_STATE(); + case 821: + if (lookahead == 'A') ADVANCE(889); + END_STATE(); + case 822: + if (lookahead == 'C') ADVANCE(890); + END_STATE(); + case 823: + if (lookahead == 'I') ADVANCE(891); + END_STATE(); + case 824: + if (lookahead == '_') ADVANCE(892); + END_STATE(); + case 825: + if (lookahead == 'S') ADVANCE(893); + END_STATE(); + case 826: + ACCEPT_TOKEN(anon_sym_CG_EXTERN); + END_STATE(); + case 827: + ACCEPT_TOKEN(anon_sym_CG_INLINE); + END_STATE(); + case 828: + if (lookahead == 'D') ADVANCE(894); + END_STATE(); + case 829: + if (lookahead == 'N') ADVANCE(895); + END_STATE(); + case 830: + if (lookahead == 'a') ADVANCE(896); + END_STATE(); + case 831: + if (lookahead == 'A') ADVANCE(897); + END_STATE(); + case 832: + if (lookahead == 'T') ADVANCE(898); + END_STATE(); + case 833: + if (lookahead == 'B') ADVANCE(899); + END_STATE(); + case 834: + if (lookahead == 'A') ADVANCE(900); + if (lookahead == 'D') ADVANCE(901); + END_STATE(); + case 835: + if (lookahead == 'A') ADVANCE(902); + END_STATE(); + case 836: + if (lookahead == 'V') ADVANCE(903); + END_STATE(); + case 837: + if (lookahead == 'E') ADVANCE(904); + END_STATE(); + case 838: + if (lookahead == 'I') ADVANCE(905); + END_STATE(); + case 839: + if (lookahead == '_') ADVANCE(906); + END_STATE(); + case 840: + ACCEPT_TOKEN(anon_sym_NS_INLINE); + END_STATE(); + case 841: + if (lookahead == 'E') ADVANCE(907); + END_STATE(); + case 842: + if (lookahead == 'L') ADVANCE(908); + END_STATE(); + case 843: + if (lookahead == 'N') ADVANCE(909); + if (lookahead == 'U') ADVANCE(910); + END_STATE(); + case 844: + if (lookahead == 'L') ADVANCE(911); + END_STATE(); + case 845: + if (lookahead == 'U') ADVANCE(912); + END_STATE(); + case 846: + if (lookahead == 'R') ADVANCE(913); + END_STATE(); + case 847: + if (lookahead == '_') ADVANCE(914); + END_STATE(); + case 848: + if (lookahead == 'E') ADVANCE(915); + END_STATE(); + case 849: + if (lookahead == 'A') ADVANCE(916); + END_STATE(); + case 850: + if (lookahead == 'L') ADVANCE(917); + END_STATE(); + case 851: + ACCEPT_TOKEN(anon_sym__Noreturn); + END_STATE(); + case 852: + if (lookahead == 'p') ADVANCE(918); + END_STATE(); + case 853: + ACCEPT_TOKEN(anon_sym__Nullable); + if (lookahead == '_') ADVANCE(919); + END_STATE(); + case 854: + if (lookahead == 'I') ADVANCE(920); + END_STATE(); + case 855: + if (lookahead == 'I') ADVANCE(921); + END_STATE(); + case 856: + ACCEPT_TOKEN(anon_sym___alignof); + if (lookahead == '_') ADVANCE(922); + END_STATE(); + case 857: + if (lookahead == 't') ADVANCE(923); + END_STATE(); + case 858: + if (lookahead == 'e') ADVANCE(924); + END_STATE(); + case 859: + if (lookahead == 'r') ADVANCE(925); + if (lookahead == 't') ADVANCE(926); + END_STATE(); + case 860: + if (lookahead == '_') ADVANCE(927); + END_STATE(); + case 861: + ACCEPT_TOKEN(anon_sym___clrcall); + END_STATE(); + case 862: + ACCEPT_TOKEN(anon_sym___complex); + END_STATE(); + case 863: + if (lookahead == 'a') ADVANCE(928); + END_STATE(); + case 864: + if (lookahead == 'n') ADVANCE(929); + END_STATE(); + case 865: + if (lookahead == 'c') ADVANCE(930); + END_STATE(); + case 866: + if (lookahead == 't') ADVANCE(931); + END_STATE(); + case 867: + if (lookahead == 'o') ADVANCE(932); + END_STATE(); + case 868: + if (lookahead == 'l') ADVANCE(933); + END_STATE(); + case 869: + ACCEPT_TOKEN(anon_sym___finally); + END_STATE(); + case 870: + if (lookahead == 'l') ADVANCE(934); + END_STATE(); + case 871: + if (lookahead == '_') ADVANCE(935); + END_STATE(); + case 872: + ACCEPT_TOKEN(anon_sym___nonnull); + END_STATE(); + case 873: + if (lookahead == 'e') ADVANCE(936); + END_STATE(); + case 874: + if (lookahead == '_') ADVANCE(937); + END_STATE(); + case 875: + if (lookahead == 't') ADVANCE(938); + END_STATE(); + case 876: + ACCEPT_TOKEN(anon_sym___stdcall); + END_STATE(); + case 877: + if (lookahead == 'l') ADVANCE(939); + END_STATE(); + case 878: + if (lookahead == '_') ADVANCE(940); + END_STATE(); + case 879: + if (lookahead == 'e') ADVANCE(941); + END_STATE(); + case 880: + if (lookahead == 'u') ADVANCE(942); + END_STATE(); + case 881: + if (lookahead == 'a') ADVANCE(943); + END_STATE(); + case 882: + if (lookahead == 'e') ADVANCE(944); + END_STATE(); + case 883: + if (lookahead == 'd') ADVANCE(945); + END_STATE(); + case 884: + if (lookahead == 'i') ADVANCE(946); + END_STATE(); + case 885: + ACCEPT_TOKEN(anon_sym_constexpr); + END_STATE(); + case 886: + if (lookahead == '_') ADVANCE(947); + END_STATE(); + case 887: + if (lookahead == 'g') ADVANCE(948); + END_STATE(); + case 888: + if (lookahead == 'c') ADVANCE(949); + END_STATE(); + case 889: + if (lookahead == 'B') ADVANCE(950); + END_STATE(); + case 890: + if (lookahead == 'A') ADVANCE(951); + END_STATE(); + case 891: + if (lookahead == 'L') ADVANCE(952); + END_STATE(); + case 892: + if (lookahead == 'F') ADVANCE(953); + END_STATE(); + case 893: + if (lookahead == '_') ADVANCE(954); + END_STATE(); + case 894: + if (lookahead == '_') ADVANCE(955); + END_STATE(); + case 895: + if (lookahead == '_') ADVANCE(956); + END_STATE(); + case 896: + if (lookahead == 'b') ADVANCE(957); + END_STATE(); + case 897: + if (lookahead == 'B') ADVANCE(958); + END_STATE(); + case 898: + if (lookahead == 'E') ADVANCE(959); + END_STATE(); + case 899: + if (lookahead == 'L') ADVANCE(960); + END_STATE(); + case 900: + if (lookahead == 'V') ADVANCE(961); + END_STATE(); + case 901: + if (lookahead == 'E') ADVANCE(962); + END_STATE(); + case 902: + if (lookahead == 'T') ADVANCE(963); + END_STATE(); + case 903: + if (lookahead == 'A') ADVANCE(964); + END_STATE(); + case 904: + if (lookahead == 'P') ADVANCE(965); + END_STATE(); + case 905: + if (lookahead == 'O') ADVANCE(966); + END_STATE(); + case 906: + if (lookahead == 'F') ADVANCE(967); + END_STATE(); + case 907: + if (lookahead == 'S') ADVANCE(968); + END_STATE(); + case 908: + if (lookahead == 'A') ADVANCE(969); + END_STATE(); + case 909: + if (lookahead == 'A') ADVANCE(970); + END_STATE(); + case 910: + if (lookahead == 'N') ADVANCE(971); + END_STATE(); + case 911: + if (lookahead == 'A') ADVANCE(972); + END_STATE(); + case 912: + if (lookahead == 'N') ADVANCE(973); + END_STATE(); + case 913: + if (lookahead == 'T') ADVANCE(974); + END_STATE(); + case 914: + if (lookahead == 'C') ADVANCE(975); + END_STATE(); + case 915: + if (lookahead == 'R') ADVANCE(976); + END_STATE(); + case 916: + if (lookahead == 'N') ADVANCE(977); + END_STATE(); + case 917: + if (lookahead == 'E') ADVANCE(978); + END_STATE(); + case 918: + if (lookahead == 'e') ADVANCE(979); + END_STATE(); + case 919: + if (lookahead == 'r') ADVANCE(980); + END_STATE(); + case 920: + if (lookahead == 'L') ADVANCE(981); + END_STATE(); + case 921: + if (lookahead == 'L') ADVANCE(982); + END_STATE(); + case 922: + if (lookahead == '_') ADVANCE(983); + END_STATE(); + case 923: + if (lookahead == 'e') ADVANCE(984); + END_STATE(); + case 924: + if (lookahead == 'a') ADVANCE(985); + END_STATE(); + case 925: + if (lookahead == 'e') ADVANCE(986); + END_STATE(); + case 926: + if (lookahead == 'r') ADVANCE(987); + END_STATE(); + case 927: + if (lookahead == 'a') ADVANCE(988); + END_STATE(); + case 928: + if (lookahead == 'r') ADVANCE(989); + END_STATE(); + case 929: + if (lookahead == 't') ADVANCE(990); + END_STATE(); + case 930: + ACCEPT_TOKEN(anon_sym___declspec); + END_STATE(); + case 931: + if (lookahead == 'e') ADVANCE(991); + END_STATE(); + case 932: + if (lookahead == 'n') ADVANCE(992); + END_STATE(); + case 933: + ACCEPT_TOKEN(anon_sym___fastcall); + END_STATE(); + case 934: + if (lookahead == 'i') ADVANCE(993); + END_STATE(); + case 935: + ACCEPT_TOKEN(anon_sym___inline__); + END_STATE(); + case 936: + ACCEPT_TOKEN(anon_sym___nullable); + END_STATE(); + case 937: + if (lookahead == 'o') ADVANCE(994); + END_STATE(); + case 938: + ACCEPT_TOKEN(sym_ms_restrict_modifier); + if (lookahead == '_') ADVANCE(995); + END_STATE(); + case 939: + ACCEPT_TOKEN(anon_sym___thiscall); + END_STATE(); + case 940: + ACCEPT_TOKEN(anon_sym___typeof__); + END_STATE(); + case 941: + if (lookahead == 'd') ADVANCE(996); + END_STATE(); + case 942: + if (lookahead == 'n') ADVANCE(997); + END_STATE(); + case 943: + if (lookahead == 'l') ADVANCE(998); + END_STATE(); + case 944: + if (lookahead == '_') ADVANCE(999); + END_STATE(); + case 945: + ACCEPT_TOKEN(anon_sym__unaligned); + END_STATE(); + case 946: + if (lookahead == 't') ADVANCE(1000); + END_STATE(); + case 947: + if (lookahead == 't') ADVANCE(288); + END_STATE(); + case 948: + if (lookahead == 'e') ADVANCE(1001); + END_STATE(); + case 949: + if (lookahead == 'a') ADVANCE(1002); + END_STATE(); + case 950: + if (lookahead == 'L') ADVANCE(1003); + END_STATE(); + case 951: + if (lookahead == 'T') ADVANCE(1004); + END_STATE(); + case 952: + if (lookahead == 'A') ADVANCE(1005); + END_STATE(); + case 953: + if (lookahead == 'U') ADVANCE(1006); + END_STATE(); + case 954: + if (lookahead == 'N') ADVANCE(1007); + if (lookahead == 'R') ADVANCE(1008); + END_STATE(); + case 955: + if (lookahead == 'A') ADVANCE(1009); + if (lookahead == 'M') ADVANCE(1010); + END_STATE(); + case 956: + if (lookahead == 'E') ADVANCE(1011); + if (lookahead == 'S') ADVANCE(1012); + END_STATE(); + case 957: + if (lookahead == 'l') ADVANCE(1013); + END_STATE(); + case 958: + if (lookahead == 'L') ADVANCE(1014); + END_STATE(); + case 959: + if (lookahead == 'D') ADVANCE(1015); + END_STATE(); + case 960: + if (lookahead == 'E') ADVANCE(1016); + END_STATE(); + case 961: + if (lookahead == 'A') ADVANCE(1017); + END_STATE(); + case 962: + if (lookahead == 'P') ADVANCE(1018); + END_STATE(); + case 963: + if (lookahead == 'E') ADVANCE(1019); + END_STATE(); + case 964: + if (lookahead == 'I') ADVANCE(1020); + END_STATE(); + case 965: + if (lookahead == 'R') ADVANCE(1021); + END_STATE(); + case 966: + if (lookahead == 'N') ADVANCE(1022); + END_STATE(); + case 967: + if (lookahead == 'U') ADVANCE(1023); + END_STATE(); + case 968: + if (lookahead == '_') ADVANCE(1024); + END_STATE(); + case 969: + if (lookahead == 'S') ADVANCE(1025); + END_STATE(); + case 970: + if (lookahead == 'M') ADVANCE(1026); + END_STATE(); + case 971: + if (lookahead == 'A') ADVANCE(1027); + END_STATE(); + case 972: + if (lookahead == 'B') ADVANCE(1028); + END_STATE(); + case 973: + if (lookahead == 'T') ADVANCE(1029); + END_STATE(); + case 974: + ACCEPT_TOKEN(anon_sym_OBJC_EXPORT); + END_STATE(); + case 975: + if (lookahead == 'L') ADVANCE(1030); + END_STATE(); + case 976: + if (lookahead == 'N') ADVANCE(1031); + END_STATE(); + case 977: + if (lookahead == 'C') ADVANCE(1032); + END_STATE(); + case 978: + if (lookahead == '_') ADVANCE(1033); + END_STATE(); + case 979: + if (lookahead == 'c') ADVANCE(1034); + END_STATE(); + case 980: + if (lookahead == 'e') ADVANCE(1035); + END_STATE(); + case 981: + if (lookahead == 'A') ADVANCE(1036); + END_STATE(); + case 982: + if (lookahead == 'A') ADVANCE(1037); + END_STATE(); + case 983: + ACCEPT_TOKEN(anon_sym___alignof__); + END_STATE(); + case 984: + ACCEPT_TOKEN(anon_sym___attribute); + if (lookahead == '_') ADVANCE(1038); + END_STATE(); + case 985: + if (lookahead == 's') ADVANCE(1039); + END_STATE(); + case 986: + if (lookahead == 't') ADVANCE(1040); + END_STATE(); + case 987: + if (lookahead == 'a') ADVANCE(1041); + END_STATE(); + case 988: + if (lookahead == 'v') ADVANCE(1042); + END_STATE(); + case 989: + if (lookahead == 'i') ADVANCE(1043); + END_STATE(); + case 990: + ACCEPT_TOKEN(anon_sym___covariant); + END_STATE(); + case 991: + if (lookahead == 'd') ADVANCE(1044); + END_STATE(); + case 992: + if (lookahead == '_') ADVANCE(1045); + END_STATE(); + case 993: + if (lookahead == 'n') ADVANCE(1046); + END_STATE(); + case 994: + if (lookahead == 'b') ADVANCE(1047); + END_STATE(); + case 995: + if (lookahead == '_') ADVANCE(1048); + END_STATE(); + case 996: + ACCEPT_TOKEN(anon_sym___unaligned); + END_STATE(); + case 997: + if (lookahead == 'r') ADVANCE(1049); + END_STATE(); + case 998: + if (lookahead == 'l') ADVANCE(1050); + END_STATE(); + case 999: + if (lookahead == '_') ADVANCE(1051); + END_STATE(); + case 1000: + if (lookahead == 'y') ADVANCE(1052); + END_STATE(); + case 1001: + if (lookahead == '_') ADVANCE(1053); + END_STATE(); + case 1002: + if (lookahead == 'l') ADVANCE(1054); + END_STATE(); + case 1003: + if (lookahead == 'E') ADVANCE(1055); + END_STATE(); + case 1004: + if (lookahead == 'E') ADVANCE(1056); + END_STATE(); + case 1005: + if (lookahead == 'B') ADVANCE(1057); + END_STATE(); + case 1006: + if (lookahead == 'N') ADVANCE(1058); + END_STATE(); + case 1007: + if (lookahead == 'O') ADVANCE(1059); + END_STATE(); + case 1008: + if (lookahead == 'E') ADVANCE(1060); + END_STATE(); + case 1009: + if (lookahead == 'T') ADVANCE(1061); + END_STATE(); + case 1010: + if (lookahead == 'S') ADVANCE(1062); + END_STATE(); + case 1011: + if (lookahead == 'X') ADVANCE(1063); + END_STATE(); + case 1012: + if (lookahead == 'T') ADVANCE(1064); + END_STATE(); + case 1013: + if (lookahead == 'e') ADVANCE(1065); + END_STATE(); + case 1014: + if (lookahead == 'E') ADVANCE(1066); + END_STATE(); + case 1015: + if (lookahead == '_') ADVANCE(1067); + END_STATE(); + case 1016: + ACCEPT_TOKEN(anon_sym_NS_AVAILABLE); + if (lookahead == '_') ADVANCE(1068); + END_STATE(); + case 1017: + if (lookahead == 'I') ADVANCE(1069); + END_STATE(); + case 1018: + if (lookahead == 'R') ADVANCE(1070); + END_STATE(); + case 1019: + if (lookahead == 'D') ADVANCE(1071); + END_STATE(); + case 1020: + if (lookahead == 'L') ADVANCE(1072); + END_STATE(); + case 1021: + if (lookahead == 'E') ADVANCE(1073); + END_STATE(); + case 1022: + if (lookahead == '_') ADVANCE(1074); + END_STATE(); + case 1023: + if (lookahead == 'N') ADVANCE(1075); + END_STATE(); + case 1024: + if (lookahead == 'N') ADVANCE(1076); + END_STATE(); + case 1025: + if (lookahead == 'S') ADVANCE(1077); + END_STATE(); + case 1026: + if (lookahead == 'E') ADVANCE(1078); + END_STATE(); + case 1027: + if (lookahead == 'V') ADVANCE(1079); + END_STATE(); + case 1028: + if (lookahead == 'L') ADVANCE(1080); + END_STATE(); + case 1029: + if (lookahead == 'I') ADVANCE(1081); + END_STATE(); + case 1030: + if (lookahead == 'A') ADVANCE(1082); + END_STATE(); + case 1031: + ACCEPT_TOKEN(anon_sym_UIKIT_EXTERN); + END_STATE(); + case 1032: + if (lookahead == 'E') ADVANCE(1083); + END_STATE(); + case 1033: + if (lookahead == 'A') ADVANCE(1084); + END_STATE(); + case 1034: + if (lookahead == 'i') ADVANCE(1085); + END_STATE(); + case 1035: + if (lookahead == 's') ADVANCE(1086); + END_STATE(); + case 1036: + if (lookahead == 'B') ADVANCE(1087); + END_STATE(); + case 1037: + if (lookahead == 'B') ADVANCE(1088); + END_STATE(); + case 1038: + if (lookahead == '_') ADVANCE(1089); + END_STATE(); + case 1039: + if (lookahead == 'i') ADVANCE(1090); + END_STATE(); + case 1040: + if (lookahead == 'a') ADVANCE(1091); + END_STATE(); + case 1041: + if (lookahead == 'n') ADVANCE(1092); + END_STATE(); + case 1042: + if (lookahead == 'a') ADVANCE(1093); + END_STATE(); + case 1043: + if (lookahead == 'a') ADVANCE(1094); + END_STATE(); + case 1044: + if (lookahead == '_') ADVANCE(1095); + END_STATE(); + case 1045: + if (lookahead == '_') ADVANCE(1096); + END_STATE(); + case 1046: + if (lookahead == 'e') ADVANCE(1097); + END_STATE(); + case 1047: + if (lookahead == 'j') ADVANCE(1098); + END_STATE(); + case 1048: + ACCEPT_TOKEN(anon_sym___restrict__); + END_STATE(); + case 1049: + if (lookahead == 'e') ADVANCE(1099); + END_STATE(); + case 1050: + ACCEPT_TOKEN(anon_sym___vectorcall); + END_STATE(); + case 1051: + ACCEPT_TOKEN(anon_sym___volatile__); + END_STATE(); + case 1052: + ACCEPT_TOKEN(anon_sym_availability); + END_STATE(); + case 1053: + if (lookahead == 'r') ADVANCE(1100); + END_STATE(); + case 1054: + ACCEPT_TOKEN(anon_sym_thread_local); + END_STATE(); + case 1055: + ACCEPT_TOKEN(anon_sym_API_AVAILABLE); + END_STATE(); + case 1056: + if (lookahead == 'D') ADVANCE(1101); + END_STATE(); + case 1057: + if (lookahead == 'L') ADVANCE(1102); + END_STATE(); + case 1058: + if (lookahead == 'C') ADVANCE(1103); + END_STATE(); + case 1059: + if (lookahead == 'T') ADVANCE(1104); + END_STATE(); + case 1060: + if (lookahead == 'T') ADVANCE(1105); + END_STATE(); + case 1061: + if (lookahead == 'T') ADVANCE(1106); + END_STATE(); + case 1062: + if (lookahead == 'G') ADVANCE(1107); + END_STATE(); + case 1063: + if (lookahead == 'P') ADVANCE(1108); + if (lookahead == 'T') ADVANCE(1109); + END_STATE(); + case 1064: + if (lookahead == 'A') ADVANCE(1110); + END_STATE(); + case 1065: + ACCEPT_TOKEN(anon_sym_IBInspectable); + END_STATE(); + case 1066: + ACCEPT_TOKEN(anon_sym_IB_DESIGNABLE); + END_STATE(); + case 1067: + if (lookahead == 'R') ADVANCE(1111); + END_STATE(); + case 1068: + if (lookahead == 'I') ADVANCE(1112); + END_STATE(); + case 1069: + if (lookahead == 'L') ADVANCE(1113); + END_STATE(); + case 1070: + if (lookahead == 'E') ADVANCE(1114); + END_STATE(); + case 1071: + if (lookahead == '_') ADVANCE(1115); + END_STATE(); + case 1072: + if (lookahead == 'A') ADVANCE(1116); + END_STATE(); + case 1073: + if (lookahead == 'C') ADVANCE(1117); + END_STATE(); + case 1074: + if (lookahead == 'U') ADVANCE(1118); + END_STATE(); + case 1075: + if (lookahead == 'C') ADVANCE(1119); + END_STATE(); + case 1076: + if (lookahead == 'I') ADVANCE(1120); + END_STATE(); + case 1077: + ACCEPT_TOKEN(anon_sym_NS_ROOT_CLASS); + END_STATE(); + case 1078: + ACCEPT_TOKEN(anon_sym_NS_SWIFT_NAME); + END_STATE(); + case 1079: + if (lookahead == 'A') ADVANCE(1121); + END_STATE(); + case 1080: + if (lookahead == 'E') ADVANCE(1122); + END_STATE(); + case 1081: + if (lookahead == 'L') ADVANCE(1123); + END_STATE(); + case 1082: + if (lookahead == 'S') ADVANCE(1124); + END_STATE(); + case 1083: + if (lookahead == '_') ADVANCE(1125); + END_STATE(); + case 1084: + if (lookahead == 'T') ADVANCE(1126); + END_STATE(); + case 1085: + if (lookahead == 'f') ADVANCE(1127); + END_STATE(); + case 1086: + if (lookahead == 'u') ADVANCE(1128); + END_STATE(); + case 1087: + if (lookahead == 'L') ADVANCE(1129); + END_STATE(); + case 1088: + if (lookahead == 'L') ADVANCE(1130); + END_STATE(); + case 1089: + ACCEPT_TOKEN(anon_sym___attribute__); + END_STATE(); + case 1090: + if (lookahead == 'n') ADVANCE(1131); + END_STATE(); + case 1091: + if (lookahead == 'i') ADVANCE(1132); + END_STATE(); + case 1092: + if (lookahead == 's') ADVANCE(1133); + END_STATE(); + case 1093: + if (lookahead == 'i') ADVANCE(1134); + END_STATE(); + case 1094: + if (lookahead == 'n') ADVANCE(1135); + END_STATE(); + case 1095: + if (lookahead == 'e') ADVANCE(1136); + if (lookahead == 'm') ADVANCE(1137); + END_STATE(); + case 1096: + ACCEPT_TOKEN(anon_sym___extension__); + END_STATE(); + case 1097: + ACCEPT_TOKEN(anon_sym___forceinline); + END_STATE(); + case 1098: + if (lookahead == 'c') ADVANCE(1138); + END_STATE(); + case 1099: + if (lookahead == 't') ADVANCE(1139); + END_STATE(); + case 1100: + if (lookahead == 'e') ADVANCE(1140); + END_STATE(); + case 1101: + ACCEPT_TOKEN(anon_sym_API_DEPRECATED); + END_STATE(); + case 1102: + if (lookahead == 'E') ADVANCE(1141); + END_STATE(); + case 1103: + if (lookahead == 'T') ADVANCE(1142); + END_STATE(); + case 1104: + if (lookahead == '_') ADVANCE(1143); + END_STATE(); + case 1105: + if (lookahead == 'A') ADVANCE(1144); + END_STATE(); + case 1106: + if (lookahead == 'R') ADVANCE(1145); + END_STATE(); + case 1107: + if (lookahead == '_') ADVANCE(1146); + END_STATE(); + case 1108: + if (lookahead == 'O') ADVANCE(1147); + END_STATE(); + case 1109: + if (lookahead == 'E') ADVANCE(1148); + END_STATE(); + case 1110: + if (lookahead == 'T') ADVANCE(1149); + END_STATE(); + case 1111: + if (lookahead == 'E') ADVANCE(1150); + END_STATE(); + case 1112: + if (lookahead == 'O') ADVANCE(1151); + END_STATE(); + case 1113: + if (lookahead == 'A') ADVANCE(1152); + END_STATE(); + case 1114: + if (lookahead == 'C') ADVANCE(1153); + END_STATE(); + case 1115: + if (lookahead == 'I') ADVANCE(1154); + END_STATE(); + case 1116: + if (lookahead == 'B') ADVANCE(1155); + END_STATE(); + case 1117: + if (lookahead == 'A') ADVANCE(1156); + END_STATE(); + case 1118: + if (lookahead == 'N') ADVANCE(1157); + END_STATE(); + case 1119: + if (lookahead == 'T') ADVANCE(1158); + END_STATE(); + case 1120: + if (lookahead == 'L') ADVANCE(1159); + END_STATE(); + case 1121: + if (lookahead == 'I') ADVANCE(1160); + END_STATE(); + case 1122: + ACCEPT_TOKEN(anon_sym_NS_UNAVAILABLE); + END_STATE(); + case 1123: + if (lookahead == '_') ADVANCE(1161); + END_STATE(); + case 1124: + if (lookahead == 'S') ADVANCE(1162); + END_STATE(); + case 1125: + if (lookahead == 'S') ADVANCE(1163); + END_STATE(); + case 1126: + if (lookahead == 'T') ADVANCE(1164); + END_STATE(); + case 1127: + if (lookahead == 'i') ADVANCE(1165); + END_STATE(); + case 1128: + if (lookahead == 'l') ADVANCE(1166); + END_STATE(); + case 1129: + if (lookahead == 'E') ADVANCE(1167); + END_STATE(); + case 1130: + if (lookahead == 'E') ADVANCE(1168); + END_STATE(); + case 1131: + if (lookahead == 'g') ADVANCE(1169); + END_STATE(); + case 1132: + if (lookahead == 'n') ADVANCE(1170); + END_STATE(); + case 1133: + if (lookahead == 'f') ADVANCE(1171); + END_STATE(); + case 1134: + if (lookahead == 'l') ADVANCE(1172); + END_STATE(); + case 1135: + if (lookahead == 't') ADVANCE(1173); + END_STATE(); + case 1136: + if (lookahead == 'n') ADVANCE(1174); + END_STATE(); + case 1137: + if (lookahead == 's') ADVANCE(1175); + END_STATE(); + case 1138: + if (lookahead == '_') ADVANCE(1176); + END_STATE(); + case 1139: + if (lookahead == 'a') ADVANCE(1177); + END_STATE(); + case 1140: + if (lookahead == 'l') ADVANCE(1178); + END_STATE(); + case 1141: + ACCEPT_TOKEN(anon_sym_API_UNAVAILABLE); + END_STATE(); + case 1142: + if (lookahead == 'I') ADVANCE(1179); + END_STATE(); + case 1143: + if (lookahead == 'R') ADVANCE(1180); + END_STATE(); + case 1144: + if (lookahead == 'I') ADVANCE(1181); + END_STATE(); + case 1145: + if (lookahead == 'I') ADVANCE(1182); + END_STATE(); + case 1146: + if (lookahead == 'A') ADVANCE(1183); + END_STATE(); + case 1147: + if (lookahead == 'R') ADVANCE(1184); + END_STATE(); + case 1148: + if (lookahead == 'R') ADVANCE(1185); + END_STATE(); + case 1149: + if (lookahead == 'I') ADVANCE(1186); + END_STATE(); + case 1150: + if (lookahead == 'F') ADVANCE(1187); + END_STATE(); + case 1151: + if (lookahead == 'S') ADVANCE(1188); + END_STATE(); + case 1152: + if (lookahead == 'B') ADVANCE(1189); + END_STATE(); + case 1153: + if (lookahead == 'A') ADVANCE(1190); + END_STATE(); + case 1154: + if (lookahead == 'O') ADVANCE(1191); + END_STATE(); + case 1155: + if (lookahead == 'L') ADVANCE(1192); + END_STATE(); + case 1156: + if (lookahead == 'T') ADVANCE(1193); + END_STATE(); + case 1157: + if (lookahead == 'A') ADVANCE(1194); + END_STATE(); + case 1158: + if (lookahead == 'I') ADVANCE(1195); + END_STATE(); + case 1159: + if (lookahead == '_') ADVANCE(1196); + END_STATE(); + case 1160: + if (lookahead == 'L') ADVANCE(1197); + END_STATE(); + case 1161: + if (lookahead == 'E') ADVANCE(1198); + END_STATE(); + case 1162: + ACCEPT_TOKEN(anon_sym_OBJC_ROOT_CLASS); + END_STATE(); + case 1163: + if (lookahead == 'E') ADVANCE(1199); + END_STATE(); + case 1164: + if (lookahead == 'R') ADVANCE(1200); + END_STATE(); + case 1165: + if (lookahead == 'e') ADVANCE(1201); + END_STATE(); + case 1166: + if (lookahead == 't') ADVANCE(1202); + END_STATE(); + case 1167: + ACCEPT_TOKEN(anon_sym___IOS_AVAILABLE); + END_STATE(); + case 1168: + if (lookahead == '_') ADVANCE(1203); + END_STATE(); + case 1169: + ACCEPT_TOKEN(anon_sym___autoreleasing); + END_STATE(); + case 1170: + if (lookahead == 'e') ADVANCE(1204); + END_STATE(); + case 1171: + if (lookahead == 'e') ADVANCE(1205); + END_STATE(); + case 1172: + if (lookahead == 'a') ADVANCE(1206); + END_STATE(); + case 1173: + ACCEPT_TOKEN(anon_sym___contravariant); + END_STATE(); + case 1174: + if (lookahead == 'u') ADVANCE(1207); + END_STATE(); + case 1175: + if (lookahead == 'g') ADVANCE(1208); + END_STATE(); + case 1176: + if (lookahead == 'c') ADVANCE(1209); + if (lookahead == 'i') ADVANCE(1210); + if (lookahead == 's') ADVANCE(1211); + END_STATE(); + case 1177: + if (lookahead == 'i') ADVANCE(1212); + END_STATE(); + case 1178: + if (lookahead == 'a') ADVANCE(1213); + END_STATE(); + case 1179: + if (lookahead == 'O') ADVANCE(1214); + END_STATE(); + case 1180: + if (lookahead == 'E') ADVANCE(1215); + END_STATE(); + case 1181: + if (lookahead == 'N') ADVANCE(1216); + END_STATE(); + case 1182: + if (lookahead == 'B') ADVANCE(1217); + END_STATE(); + case 1183: + if (lookahead == 'T') ADVANCE(1218); + END_STATE(); + case 1184: + if (lookahead == 'T') ADVANCE(1219); + END_STATE(); + case 1185: + if (lookahead == 'N') ADVANCE(1220); + END_STATE(); + case 1186: + if (lookahead == 'C') ADVANCE(1221); + END_STATE(); + case 1187: + if (lookahead == 'C') ADVANCE(1222); + END_STATE(); + case 1188: + ACCEPT_TOKEN(anon_sym_NS_AVAILABLE_IOS); + END_STATE(); + case 1189: + if (lookahead == 'L') ADVANCE(1223); + END_STATE(); + case 1190: + if (lookahead == 'T') ADVANCE(1224); + END_STATE(); + case 1191: + if (lookahead == 'S') ADVANCE(1225); + END_STATE(); + case 1192: + if (lookahead == 'E') ADVANCE(1226); + END_STATE(); + case 1193: + if (lookahead == 'E') ADVANCE(1227); + END_STATE(); + case 1194: + if (lookahead == 'V') ADVANCE(1228); + END_STATE(); + case 1195: + if (lookahead == 'O') ADVANCE(1229); + END_STATE(); + case 1196: + if (lookahead == 'T') ADVANCE(1230); + END_STATE(); + case 1197: + if (lookahead == 'A') ADVANCE(1231); + END_STATE(); + case 1198: + if (lookahead == 'N') ADVANCE(1232); + END_STATE(); + case 1199: + if (lookahead == 'L') ADVANCE(1233); + END_STATE(); + case 1200: + if (lookahead == 'I') ADVANCE(1234); + END_STATE(); + case 1201: + if (lookahead == 'd') ADVANCE(1235); + END_STATE(); + case 1202: + ACCEPT_TOKEN(anon_sym__Nullable_result); + END_STATE(); + case 1203: + if (lookahead == 'S') ADVANCE(1236); + END_STATE(); + case 1204: + if (lookahead == 'd') ADVANCE(1237); + END_STATE(); + case 1205: + if (lookahead == 'r') ADVANCE(1238); + END_STATE(); + case 1206: + if (lookahead == 'b') ADVANCE(1239); + END_STATE(); + case 1207: + if (lookahead == 'm') ADVANCE(1240); + END_STATE(); + case 1208: + ACCEPT_TOKEN(anon_sym___deprecated_msg); + END_STATE(); + case 1209: + if (lookahead == 'l') ADVANCE(1241); + END_STATE(); + case 1210: + if (lookahead == 's') ADVANCE(1242); + END_STATE(); + case 1211: + if (lookahead == 'u') ADVANCE(1243); + END_STATE(); + case 1212: + if (lookahead == 'n') ADVANCE(1244); + END_STATE(); + case 1213: + if (lookahead == 't') ADVANCE(1245); + END_STATE(); + case 1214: + if (lookahead == 'N') ADVANCE(1246); + END_STATE(); + case 1215: + if (lookahead == 'T') ADVANCE(1247); + END_STATE(); + case 1216: + if (lookahead == 'E') ADVANCE(1248); + END_STATE(); + case 1217: + if (lookahead == 'U') ADVANCE(1249); + END_STATE(); + case 1218: + if (lookahead == 'T') ADVANCE(1250); + END_STATE(); + case 1219: + ACCEPT_TOKEN(anon_sym_FOUNDATION_EXPORT); + END_STATE(); + case 1220: + ACCEPT_TOKEN(anon_sym_FOUNDATION_EXTERN); + END_STATE(); + case 1221: + if (lookahead == '_') ADVANCE(1251); + END_STATE(); + case 1222: + if (lookahead == 'O') ADVANCE(1252); + END_STATE(); + case 1223: + if (lookahead == 'E') ADVANCE(1253); + END_STATE(); + case 1224: + if (lookahead == 'E') ADVANCE(1254); + END_STATE(); + case 1225: + ACCEPT_TOKEN(anon_sym_NS_DEPRECATED_IOS); + END_STATE(); + case 1226: + if (lookahead == '_') ADVANCE(1255); + END_STATE(); + case 1227: + if (lookahead == 'D') ADVANCE(1256); + END_STATE(); + case 1228: + if (lookahead == 'A') ADVANCE(1257); + END_STATE(); + case 1229: + if (lookahead == 'N') ADVANCE(1258); + END_STATE(); + case 1230: + if (lookahead == 'E') ADVANCE(1259); + END_STATE(); + case 1231: + if (lookahead == 'B') ADVANCE(1260); + END_STATE(); + case 1232: + if (lookahead == 'D') ADVANCE(1261); + END_STATE(); + case 1233: + if (lookahead == 'E') ADVANCE(1262); + END_STATE(); + case 1234: + if (lookahead == 'B') ADVANCE(1263); + END_STATE(); + case 1235: + ACCEPT_TOKEN(anon_sym__Null_unspecified); + END_STATE(); + case 1236: + if (lookahead == 'T') ADVANCE(1264); + END_STATE(); + case 1237: + ACCEPT_TOKEN(anon_sym___bridge_retained); + END_STATE(); + case 1238: + ACCEPT_TOKEN(anon_sym___bridge_transfer); + END_STATE(); + case 1239: + if (lookahead == 'l') ADVANCE(1265); + END_STATE(); + case 1240: + if (lookahead == '_') ADVANCE(1266); + END_STATE(); + case 1241: + if (lookahead == 'a') ADVANCE(1267); + END_STATE(); + case 1242: + if (lookahead == 'a') ADVANCE(1268); + END_STATE(); + case 1243: + if (lookahead == 'p') ADVANCE(1269); + END_STATE(); + case 1244: + if (lookahead == 'e') ADVANCE(1270); + END_STATE(); + case 1245: + if (lookahead == 'e') ADVANCE(1271); + END_STATE(); + case 1246: + ACCEPT_TOKEN(anon_sym_CF_FORMAT_FUNCTION); + END_STATE(); + case 1247: + if (lookahead == 'A') ADVANCE(1272); + END_STATE(); + case 1248: + if (lookahead == 'D') ADVANCE(1273); + END_STATE(); + case 1249: + if (lookahead == 'T') ADVANCE(1274); + END_STATE(); + case 1250: + if (lookahead == 'R') ADVANCE(1275); + END_STATE(); + case 1251: + if (lookahead == 'I') ADVANCE(1276); + END_STATE(); + case 1252: + if (lookahead == 'U') ADVANCE(1277); + END_STATE(); + case 1253: + if (lookahead == '_') ADVANCE(1278); + END_STATE(); + case 1254: + if (lookahead == 'D') ADVANCE(1279); + END_STATE(); + case 1255: + if (lookahead == 'I') ADVANCE(1280); + END_STATE(); + case 1256: + if (lookahead == '_') ADVANCE(1281); + END_STATE(); + case 1257: + if (lookahead == 'I') ADVANCE(1282); + END_STATE(); + case 1258: + ACCEPT_TOKEN(anon_sym_NS_FORMAT_FUNCTION); + END_STATE(); + case 1259: + if (lookahead == 'R') ADVANCE(1283); + END_STATE(); + case 1260: + if (lookahead == 'L') ADVANCE(1284); + END_STATE(); + case 1261: + if (lookahead == '_') ADVANCE(1285); + END_STATE(); + case 1262: + if (lookahead == 'C') ADVANCE(1286); + END_STATE(); + case 1263: + if (lookahead == 'U') ADVANCE(1287); + END_STATE(); + case 1264: + if (lookahead == 'A') ADVANCE(1288); + END_STATE(); + case 1265: + if (lookahead == 'e') ADVANCE(1289); + END_STATE(); + case 1266: + if (lookahead == 'm') ADVANCE(1290); + END_STATE(); + case 1267: + if (lookahead == 's') ADVANCE(1291); + END_STATE(); + case 1268: + if (lookahead == '_') ADVANCE(1292); + END_STATE(); + case 1269: + if (lookahead == 'e') ADVANCE(1293); + END_STATE(); + case 1270: + if (lookahead == 'd') ADVANCE(1294); + END_STATE(); + case 1271: + if (lookahead == 'd') ADVANCE(1295); + END_STATE(); + case 1272: + if (lookahead == 'I') ADVANCE(1296); + END_STATE(); + case 1273: + ACCEPT_TOKEN(anon_sym_CF_RETURNS_RETAINED); + END_STATE(); + case 1274: + if (lookahead == 'E') ADVANCE(1297); + END_STATE(); + case 1275: + if (lookahead == 'I') ADVANCE(1298); + END_STATE(); + case 1276: + if (lookahead == 'N') ADVANCE(1299); + END_STATE(); + case 1277: + if (lookahead == 'N') ADVANCE(1300); + END_STATE(); + case 1278: + if (lookahead == 'I') ADVANCE(1301); + END_STATE(); + case 1279: + if (lookahead == '_') ADVANCE(1302); + END_STATE(); + case 1280: + if (lookahead == 'O') ADVANCE(1303); + END_STATE(); + case 1281: + if (lookahead == 'I') ADVANCE(1304); + END_STATE(); + case 1282: + if (lookahead == 'L') ADVANCE(1305); + END_STATE(); + case 1283: + if (lookahead == 'M') ADVANCE(1306); + END_STATE(); + case 1284: + if (lookahead == 'E') ADVANCE(1307); + END_STATE(); + case 1285: + if (lookahead == 'O') ADVANCE(1308); + END_STATE(); + case 1286: + if (lookahead == 'T') ADVANCE(1309); + END_STATE(); + case 1287: + if (lookahead == 'T') ADVANCE(1310); + END_STATE(); + case 1288: + if (lookahead == 'R') ADVANCE(1311); + END_STATE(); + case 1289: + ACCEPT_TOKEN(anon_sym___builtin_available); + END_STATE(); + case 1290: + if (lookahead == 's') ADVANCE(1312); + END_STATE(); + case 1291: + if (lookahead == 's') ADVANCE(1313); + END_STATE(); + case 1292: + if (lookahead == 'p') ADVANCE(1314); + END_STATE(); + case 1293: + if (lookahead == 'r') ADVANCE(1315); + END_STATE(); + case 1294: + ACCEPT_TOKEN(anon_sym___unsafe_unretained); + END_STATE(); + case 1295: + ACCEPT_TOKEN(anon_sym_objc_bridge_related); + END_STATE(); + case 1296: + if (lookahead == 'N') ADVANCE(1316); + END_STATE(); + case 1297: + ACCEPT_TOKEN(anon_sym_DEPRECATED_ATTRIBUTE); + END_STATE(); + case 1298: + if (lookahead == 'B') ADVANCE(1317); + END_STATE(); + case 1299: + if (lookahead == 'L') ADVANCE(1318); + END_STATE(); + case 1300: + if (lookahead == 'T') ADVANCE(1319); + END_STATE(); + case 1301: + if (lookahead == 'O') ADVANCE(1320); + END_STATE(); + case 1302: + if (lookahead == 'I') ADVANCE(1321); + END_STATE(); + case 1303: + if (lookahead == 'S') ADVANCE(1322); + END_STATE(); + case 1304: + if (lookahead == 'O') ADVANCE(1323); + END_STATE(); + case 1305: + if (lookahead == 'A') ADVANCE(1324); + END_STATE(); + case 1306: + if (lookahead == 'I') ADVANCE(1325); + END_STATE(); + case 1307: + ACCEPT_TOKEN(anon_sym_NS_SWIFT_UNAVAILABLE); + END_STATE(); + case 1308: + if (lookahead == 'F') ADVANCE(1326); + END_STATE(); + case 1309: + if (lookahead == 'O') ADVANCE(1327); + END_STATE(); + case 1310: + if (lookahead == 'E') ADVANCE(1328); + END_STATE(); + case 1311: + if (lookahead == 'T') ADVANCE(1329); + END_STATE(); + case 1312: + if (lookahead == 'g') ADVANCE(1330); + END_STATE(); + case 1313: + if (lookahead == '_') ADVANCE(1331); + END_STATE(); + case 1314: + if (lookahead == 'o') ADVANCE(1332); + END_STATE(); + case 1315: + if (lookahead == '_') ADVANCE(1333); + END_STATE(); + case 1316: + if (lookahead == 'E') ADVANCE(1334); + END_STATE(); + case 1317: + if (lookahead == 'U') ADVANCE(1335); + END_STATE(); + case 1318: + if (lookahead == 'I') ADVANCE(1336); + END_STATE(); + case 1319: + if (lookahead == '_') ADVANCE(1337); + END_STATE(); + case 1320: + if (lookahead == 'S') ADVANCE(1338); + END_STATE(); + case 1321: + if (lookahead == 'O') ADVANCE(1339); + END_STATE(); + case 1322: + ACCEPT_TOKEN(anon_sym_NS_ENUM_AVAILABLE_IOS); + END_STATE(); + case 1323: + if (lookahead == 'S') ADVANCE(1340); + END_STATE(); + case 1324: + if (lookahead == 'B') ADVANCE(1341); + END_STATE(); + case 1325: + if (lookahead == 'N') ADVANCE(1342); + END_STATE(); + case 1326: + if (lookahead == '_') ADVANCE(1343); + END_STATE(); + case 1327: + if (lookahead == 'R') ADVANCE(1344); + END_STATE(); + case 1328: + ACCEPT_TOKEN(anon_sym_UNAVAILABLE_ATTRIBUTE); + END_STATE(); + case 1329: + if (lookahead == 'I') ADVANCE(1345); + END_STATE(); + case 1330: + ACCEPT_TOKEN(anon_sym___deprecated_enum_msg); + END_STATE(); + case 1331: + if (lookahead == 'r') ADVANCE(1346); + END_STATE(); + case 1332: + if (lookahead == 'i') ADVANCE(1347); + END_STATE(); + case 1333: + if (lookahead == 'p') ADVANCE(1348); + END_STATE(); + case 1334: + if (lookahead == 'D') ADVANCE(1349); + END_STATE(); + case 1335: + if (lookahead == 'T') ADVANCE(1350); + END_STATE(); + case 1336: + if (lookahead == 'N') ADVANCE(1351); + END_STATE(); + case 1337: + if (lookahead == 'U') ADVANCE(1352); + END_STATE(); + case 1338: + ACCEPT_TOKEN(anon_sym_NS_CLASS_AVAILABLE_IOS); + END_STATE(); + case 1339: + if (lookahead == 'S') ADVANCE(1353); + END_STATE(); + case 1340: + ACCEPT_TOKEN(anon_sym_NS_ENUM_DEPRECATED_IOS); + END_STATE(); + case 1341: + if (lookahead == 'L') ADVANCE(1354); + END_STATE(); + case 1342: + if (lookahead == 'A') ADVANCE(1355); + END_STATE(); + case 1343: + if (lookahead == 'S') ADVANCE(1356); + END_STATE(); + case 1344: + ACCEPT_TOKEN(anon_sym_UI_APPEARANCE_SELECTOR); + END_STATE(); + case 1345: + if (lookahead == 'N') ADVANCE(1357); + END_STATE(); + case 1346: + if (lookahead == 'o') ADVANCE(1358); + END_STATE(); + case 1347: + if (lookahead == 'n') ADVANCE(1359); + END_STATE(); + case 1348: + if (lookahead == 'o') ADVANCE(1360); + END_STATE(); + case 1349: + ACCEPT_TOKEN(anon_sym_CF_RETURNS_NOT_RETAINED); + END_STATE(); + case 1350: + if (lookahead == 'E') ADVANCE(1361); + END_STATE(); + case 1351: + if (lookahead == 'E') ADVANCE(1362); + END_STATE(); + case 1352: + if (lookahead == 'N') ADVANCE(1363); + END_STATE(); + case 1353: + ACCEPT_TOKEN(anon_sym_NS_CLASS_DEPRECATED_IOS); + END_STATE(); + case 1354: + if (lookahead == 'E') ADVANCE(1364); + END_STATE(); + case 1355: + if (lookahead == 'T') ADVANCE(1365); + END_STATE(); + case 1356: + if (lookahead == 'C') ADVANCE(1366); + END_STATE(); + case 1357: + if (lookahead == 'G') ADVANCE(1367); + END_STATE(); + case 1358: + ACCEPT_TOKEN(anon_sym___ptrauth_objc_class_ro); + END_STATE(); + case 1359: + if (lookahead == 't') ADVANCE(1368); + END_STATE(); + case 1360: + if (lookahead == 'i') ADVANCE(1369); + END_STATE(); + case 1361: + ACCEPT_TOKEN(anon_sym_DEPRECATED_MSG_ATTRIBUTE); + END_STATE(); + case 1362: + ACCEPT_TOKEN(anon_sym_FOUNDATION_STATIC_INLINE); + END_STATE(); + case 1363: + if (lookahead == 'A') ADVANCE(1370); + END_STATE(); + case 1364: + if (lookahead == '_') ADVANCE(1371); + END_STATE(); + case 1365: + if (lookahead == 'I') ADVANCE(1372); + END_STATE(); + case 1366: + if (lookahead == 'O') ADVANCE(1373); + END_STATE(); + case 1367: + ACCEPT_TOKEN(anon_sym___OSX_AVAILABLE_STARTING); + END_STATE(); + case 1368: + if (lookahead == 'e') ADVANCE(1374); + END_STATE(); + case 1369: + if (lookahead == 'n') ADVANCE(1375); + END_STATE(); + case 1370: + if (lookahead == 'V') ADVANCE(1376); + END_STATE(); + case 1371: + if (lookahead == 'I') ADVANCE(1377); + END_STATE(); + case 1372: + if (lookahead == 'O') ADVANCE(1378); + END_STATE(); + case 1373: + if (lookahead == 'P') ADVANCE(1379); + END_STATE(); + case 1374: + if (lookahead == 'r') ADVANCE(1380); + END_STATE(); + case 1375: + if (lookahead == 't') ADVANCE(1381); + END_STATE(); + case 1376: + if (lookahead == 'A') ADVANCE(1382); + END_STATE(); + case 1377: + if (lookahead == 'O') ADVANCE(1383); + END_STATE(); + case 1378: + if (lookahead == 'N') ADVANCE(1384); + END_STATE(); + case 1379: + if (lookahead == 'E') ADVANCE(1385); + END_STATE(); + case 1380: + ACCEPT_TOKEN(anon_sym___ptrauth_objc_isa_pointer); + END_STATE(); + case 1381: + if (lookahead == 'e') ADVANCE(1386); + END_STATE(); + case 1382: + if (lookahead == 'I') ADVANCE(1387); + END_STATE(); + case 1383: + if (lookahead == 'S') ADVANCE(1388); + END_STATE(); + case 1384: + ACCEPT_TOKEN(anon_sym_NS_REQUIRES_NIL_TERMINATION); + END_STATE(); + case 1385: + ACCEPT_TOKEN(anon_sym_NS_VALID_UNTIL_END_OF_SCOPE); + END_STATE(); + case 1386: + if (lookahead == 'r') ADVANCE(1389); + END_STATE(); + case 1387: + if (lookahead == 'L') ADVANCE(1390); + END_STATE(); + case 1388: + ACCEPT_TOKEN(anon_sym_NS_EXTENSION_UNAVAILABLE_IOS); + END_STATE(); + case 1389: + ACCEPT_TOKEN(anon_sym___ptrauth_objc_super_pointer); + END_STATE(); + case 1390: + if (lookahead == 'A') ADVANCE(1391); + END_STATE(); + case 1391: + if (lookahead == 'B') ADVANCE(1392); + END_STATE(); + case 1392: + if (lookahead == 'L') ADVANCE(1393); + END_STATE(); + case 1393: + if (lookahead == 'E') ADVANCE(1394); + END_STATE(); + case 1394: + ACCEPT_TOKEN(anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0}, + [1] = {.lex_state = 416}, + [2] = {.lex_state = 98}, + [3] = {.lex_state = 98}, + [4] = {.lex_state = 98}, + [5] = {.lex_state = 98}, + [6] = {.lex_state = 98}, + [7] = {.lex_state = 98}, + [8] = {.lex_state = 98}, + [9] = {.lex_state = 98}, + [10] = {.lex_state = 98}, + [11] = {.lex_state = 98}, + [12] = {.lex_state = 98}, + [13] = {.lex_state = 98}, + [14] = {.lex_state = 98}, + [15] = {.lex_state = 98}, + [16] = {.lex_state = 98}, + [17] = {.lex_state = 98}, + [18] = {.lex_state = 98}, + [19] = {.lex_state = 98}, + [20] = {.lex_state = 108}, + [21] = {.lex_state = 108}, + [22] = {.lex_state = 98}, + [23] = {.lex_state = 108}, + [24] = {.lex_state = 108}, + [25] = {.lex_state = 108}, + [26] = {.lex_state = 108}, + [27] = {.lex_state = 108}, + [28] = {.lex_state = 108}, + [29] = {.lex_state = 108}, + [30] = {.lex_state = 108}, + [31] = {.lex_state = 108}, + [32] = {.lex_state = 108}, + [33] = {.lex_state = 108}, + [34] = {.lex_state = 108}, + [35] = {.lex_state = 108}, + [36] = {.lex_state = 108}, + [37] = {.lex_state = 108}, + [38] = {.lex_state = 107}, + [39] = {.lex_state = 107}, + [40] = {.lex_state = 107}, + [41] = {.lex_state = 417}, + [42] = {.lex_state = 417}, + [43] = {.lex_state = 417}, + [44] = {.lex_state = 417}, + [45] = {.lex_state = 417}, + [46] = {.lex_state = 417}, + [47] = {.lex_state = 417}, + [48] = {.lex_state = 417}, + [49] = {.lex_state = 417}, + [50] = {.lex_state = 417}, + [51] = {.lex_state = 417}, + [52] = {.lex_state = 417}, + [53] = {.lex_state = 417}, + [54] = {.lex_state = 417}, + [55] = {.lex_state = 417}, + [56] = {.lex_state = 417}, + [57] = {.lex_state = 417}, + [58] = {.lex_state = 417}, + [59] = {.lex_state = 417}, + [60] = {.lex_state = 417}, + [61] = {.lex_state = 417}, + [62] = {.lex_state = 417}, + [63] = {.lex_state = 417}, + [64] = {.lex_state = 417}, + [65] = {.lex_state = 417}, + [66] = {.lex_state = 417}, + [67] = {.lex_state = 417}, + [68] = {.lex_state = 417}, + [69] = {.lex_state = 417}, + [70] = {.lex_state = 417}, + [71] = {.lex_state = 417}, + [72] = {.lex_state = 417}, + [73] = {.lex_state = 417}, + [74] = {.lex_state = 417}, + [75] = {.lex_state = 417}, + [76] = {.lex_state = 417}, + [77] = {.lex_state = 417}, + [78] = {.lex_state = 417}, + [79] = {.lex_state = 417}, + [80] = {.lex_state = 417}, + [81] = {.lex_state = 417}, + [82] = {.lex_state = 417}, + [83] = {.lex_state = 417}, + [84] = {.lex_state = 417}, + [85] = {.lex_state = 417}, + [86] = {.lex_state = 417}, + [87] = {.lex_state = 417}, + [88] = {.lex_state = 417}, + [89] = {.lex_state = 417}, + [90] = {.lex_state = 417}, + [91] = {.lex_state = 417}, + [92] = {.lex_state = 417}, + [93] = {.lex_state = 417}, + [94] = {.lex_state = 417}, + [95] = {.lex_state = 417}, + [96] = {.lex_state = 417}, + [97] = {.lex_state = 417}, + [98] = {.lex_state = 417}, + [99] = {.lex_state = 417}, + [100] = {.lex_state = 417}, + [101] = {.lex_state = 417}, + [102] = {.lex_state = 417}, + [103] = {.lex_state = 417}, + [104] = {.lex_state = 417}, + [105] = {.lex_state = 417}, + [106] = {.lex_state = 417}, + [107] = {.lex_state = 417}, + [108] = {.lex_state = 417}, + [109] = {.lex_state = 417}, + [110] = {.lex_state = 417}, + [111] = {.lex_state = 417}, + [112] = {.lex_state = 417}, + [113] = {.lex_state = 417}, + [114] = {.lex_state = 417}, + [115] = {.lex_state = 417}, + [116] = {.lex_state = 417}, + [117] = {.lex_state = 417}, + [118] = {.lex_state = 417}, + [119] = {.lex_state = 417}, + [120] = {.lex_state = 417}, + [121] = {.lex_state = 417}, + [122] = {.lex_state = 417}, + [123] = {.lex_state = 417}, + [124] = {.lex_state = 417}, + [125] = {.lex_state = 417}, + [126] = {.lex_state = 417}, + [127] = {.lex_state = 417}, + [128] = {.lex_state = 416}, + [129] = {.lex_state = 416}, + [130] = {.lex_state = 98}, + [131] = {.lex_state = 98}, + [132] = {.lex_state = 98}, + [133] = {.lex_state = 98}, + [134] = {.lex_state = 98}, + [135] = {.lex_state = 108}, + [136] = {.lex_state = 108}, + [137] = {.lex_state = 108}, + [138] = {.lex_state = 108}, + [139] = {.lex_state = 108}, + [140] = {.lex_state = 107}, + [141] = {.lex_state = 107}, + [142] = {.lex_state = 107}, + [143] = {.lex_state = 107}, + [144] = {.lex_state = 107}, + [145] = {.lex_state = 417}, + [146] = {.lex_state = 417}, + [147] = {.lex_state = 417}, + [148] = {.lex_state = 417}, + [149] = {.lex_state = 417}, + [150] = {.lex_state = 417}, + [151] = {.lex_state = 417}, + [152] = {.lex_state = 417}, + [153] = {.lex_state = 417}, + [154] = {.lex_state = 417}, + [155] = {.lex_state = 105}, + [156] = {.lex_state = 105}, + [157] = {.lex_state = 105}, + [158] = {.lex_state = 105}, + [159] = {.lex_state = 105}, + [160] = {.lex_state = 105}, + [161] = {.lex_state = 105}, + [162] = {.lex_state = 105}, + [163] = {.lex_state = 105}, + [164] = {.lex_state = 105}, + [165] = {.lex_state = 105}, + [166] = {.lex_state = 105}, + [167] = {.lex_state = 105}, + [168] = {.lex_state = 96}, + [169] = {.lex_state = 111}, + [170] = {.lex_state = 111}, + [171] = {.lex_state = 111}, + [172] = {.lex_state = 111}, + [173] = {.lex_state = 111}, + [174] = {.lex_state = 111}, + [175] = {.lex_state = 111}, + [176] = {.lex_state = 111}, + [177] = {.lex_state = 97}, + [178] = {.lex_state = 100}, + [179] = {.lex_state = 94}, + [180] = {.lex_state = 100}, + [181] = {.lex_state = 109}, + [182] = {.lex_state = 94}, + [183] = {.lex_state = 100}, + [184] = {.lex_state = 100}, + [185] = {.lex_state = 100}, + [186] = {.lex_state = 109}, + [187] = {.lex_state = 100}, + [188] = {.lex_state = 100}, + [189] = {.lex_state = 106}, + [190] = {.lex_state = 106}, + [191] = {.lex_state = 109}, + [192] = {.lex_state = 109}, + [193] = {.lex_state = 109}, + [194] = {.lex_state = 109}, + [195] = {.lex_state = 109}, + [196] = {.lex_state = 418}, + [197] = {.lex_state = 418}, + [198] = {.lex_state = 98}, + [199] = {.lex_state = 98}, + [200] = {.lex_state = 98}, + [201] = {.lex_state = 98}, + [202] = {.lex_state = 98}, + [203] = {.lex_state = 98}, + [204] = {.lex_state = 98}, + [205] = {.lex_state = 98}, + [206] = {.lex_state = 98}, + [207] = {.lex_state = 98}, + [208] = {.lex_state = 98}, + [209] = {.lex_state = 98}, + [210] = {.lex_state = 98}, + [211] = {.lex_state = 98}, + [212] = {.lex_state = 98}, + [213] = {.lex_state = 418}, + [214] = {.lex_state = 98}, + [215] = {.lex_state = 98}, + [216] = {.lex_state = 98}, + [217] = {.lex_state = 98}, + [218] = {.lex_state = 98}, + [219] = {.lex_state = 98}, + [220] = {.lex_state = 98}, + [221] = {.lex_state = 98}, + [222] = {.lex_state = 98}, + [223] = {.lex_state = 98}, + [224] = {.lex_state = 98}, + [225] = {.lex_state = 98}, + [226] = {.lex_state = 98}, + [227] = {.lex_state = 98}, + [228] = {.lex_state = 98}, + [229] = {.lex_state = 98}, + [230] = {.lex_state = 98}, + [231] = {.lex_state = 98}, + [232] = {.lex_state = 98}, + [233] = {.lex_state = 98}, + [234] = {.lex_state = 98}, + [235] = {.lex_state = 106}, + [236] = {.lex_state = 418}, + [237] = {.lex_state = 106}, + [238] = {.lex_state = 98}, + [239] = {.lex_state = 98}, + [240] = {.lex_state = 106}, + [241] = {.lex_state = 106}, + [242] = {.lex_state = 98}, + [243] = {.lex_state = 98}, + [244] = {.lex_state = 98}, + [245] = {.lex_state = 98}, + [246] = {.lex_state = 98}, + [247] = {.lex_state = 98}, + [248] = {.lex_state = 98}, + [249] = {.lex_state = 98}, + [250] = {.lex_state = 98}, + [251] = {.lex_state = 98}, + [252] = {.lex_state = 98}, + [253] = {.lex_state = 98}, + [254] = {.lex_state = 98}, + [255] = {.lex_state = 98}, + [256] = {.lex_state = 98}, + [257] = {.lex_state = 98}, + [258] = {.lex_state = 98}, + [259] = {.lex_state = 98}, + [260] = {.lex_state = 98}, + [261] = {.lex_state = 98}, + [262] = {.lex_state = 98}, + [263] = {.lex_state = 98}, + [264] = {.lex_state = 98}, + [265] = {.lex_state = 98}, + [266] = {.lex_state = 98}, + [267] = {.lex_state = 98}, + [268] = {.lex_state = 98}, + [269] = {.lex_state = 98}, + [270] = {.lex_state = 98}, + [271] = {.lex_state = 98}, + [272] = {.lex_state = 98}, + [273] = {.lex_state = 98}, + [274] = {.lex_state = 98}, + [275] = {.lex_state = 98}, + [276] = {.lex_state = 106}, + [277] = {.lex_state = 98}, + [278] = {.lex_state = 98}, + [279] = {.lex_state = 108}, + [280] = {.lex_state = 98}, + [281] = {.lex_state = 98}, + [282] = {.lex_state = 98}, + [283] = {.lex_state = 98}, + [284] = {.lex_state = 98}, + [285] = {.lex_state = 98}, + [286] = {.lex_state = 98}, + [287] = {.lex_state = 98}, + [288] = {.lex_state = 98}, + [289] = {.lex_state = 98}, + [290] = {.lex_state = 98}, + [291] = {.lex_state = 98}, + [292] = {.lex_state = 98}, + [293] = {.lex_state = 98}, + [294] = {.lex_state = 98}, + [295] = {.lex_state = 98}, + [296] = {.lex_state = 98}, + [297] = {.lex_state = 98}, + [298] = {.lex_state = 98}, + [299] = {.lex_state = 98}, + [300] = {.lex_state = 98}, + [301] = {.lex_state = 98}, + [302] = {.lex_state = 98}, + [303] = {.lex_state = 98}, + [304] = {.lex_state = 98}, + [305] = {.lex_state = 98}, + [306] = {.lex_state = 98}, + [307] = {.lex_state = 98}, + [308] = {.lex_state = 98}, + [309] = {.lex_state = 98}, + [310] = {.lex_state = 98}, + [311] = {.lex_state = 98}, + [312] = {.lex_state = 98}, + [313] = {.lex_state = 98}, + [314] = {.lex_state = 98}, + [315] = {.lex_state = 98}, + [316] = {.lex_state = 98}, + [317] = {.lex_state = 98}, + [318] = {.lex_state = 98}, + [319] = {.lex_state = 98}, + [320] = {.lex_state = 98}, + [321] = {.lex_state = 98}, + [322] = {.lex_state = 98}, + [323] = {.lex_state = 98}, + [324] = {.lex_state = 98}, + [325] = {.lex_state = 98}, + [326] = {.lex_state = 98}, + [327] = {.lex_state = 98}, + [328] = {.lex_state = 98}, + [329] = {.lex_state = 98}, + [330] = {.lex_state = 98}, + [331] = {.lex_state = 98}, + [332] = {.lex_state = 98}, + [333] = {.lex_state = 98}, + [334] = {.lex_state = 98}, + [335] = {.lex_state = 98}, + [336] = {.lex_state = 98}, + [337] = {.lex_state = 98}, + [338] = {.lex_state = 98}, + [339] = {.lex_state = 98}, + [340] = {.lex_state = 98}, + [341] = {.lex_state = 98}, + [342] = {.lex_state = 98}, + [343] = {.lex_state = 98}, + [344] = {.lex_state = 98}, + [345] = {.lex_state = 98}, + [346] = {.lex_state = 98}, + [347] = {.lex_state = 98}, + [348] = {.lex_state = 98}, + [349] = {.lex_state = 98}, + [350] = {.lex_state = 98}, + [351] = {.lex_state = 98}, + [352] = {.lex_state = 98}, + [353] = {.lex_state = 98}, + [354] = {.lex_state = 98}, + [355] = {.lex_state = 98}, + [356] = {.lex_state = 98}, + [357] = {.lex_state = 98}, + [358] = {.lex_state = 98}, + [359] = {.lex_state = 98}, + [360] = {.lex_state = 98}, + [361] = {.lex_state = 98}, + [362] = {.lex_state = 98}, + [363] = {.lex_state = 418}, + [364] = {.lex_state = 108}, + [365] = {.lex_state = 108}, + [366] = {.lex_state = 108}, + [367] = {.lex_state = 108}, + [368] = {.lex_state = 108}, + [369] = {.lex_state = 108}, + [370] = {.lex_state = 108}, + [371] = {.lex_state = 108}, + [372] = {.lex_state = 108}, + [373] = {.lex_state = 108}, + [374] = {.lex_state = 108}, + [375] = {.lex_state = 108}, + [376] = {.lex_state = 108}, + [377] = {.lex_state = 108}, + [378] = {.lex_state = 108}, + [379] = {.lex_state = 108}, + [380] = {.lex_state = 108}, + [381] = {.lex_state = 108}, + [382] = {.lex_state = 108}, + [383] = {.lex_state = 108}, + [384] = {.lex_state = 108}, + [385] = {.lex_state = 108}, + [386] = {.lex_state = 108}, + [387] = {.lex_state = 108}, + [388] = {.lex_state = 108}, + [389] = {.lex_state = 108}, + [390] = {.lex_state = 108}, + [391] = {.lex_state = 108}, + [392] = {.lex_state = 108}, + [393] = {.lex_state = 108}, + [394] = {.lex_state = 108}, + [395] = {.lex_state = 418}, + [396] = {.lex_state = 418}, + [397] = {.lex_state = 418}, + [398] = {.lex_state = 108}, + [399] = {.lex_state = 108}, + [400] = {.lex_state = 418}, + [401] = {.lex_state = 418}, + [402] = {.lex_state = 418}, + [403] = {.lex_state = 108}, + [404] = {.lex_state = 108}, + [405] = {.lex_state = 418}, + [406] = {.lex_state = 108}, + [407] = {.lex_state = 108}, + [408] = {.lex_state = 108}, + [409] = {.lex_state = 108}, + [410] = {.lex_state = 108}, + [411] = {.lex_state = 108}, + [412] = {.lex_state = 108}, + [413] = {.lex_state = 108}, + [414] = {.lex_state = 108}, + [415] = {.lex_state = 108}, + [416] = {.lex_state = 418}, + [417] = {.lex_state = 108}, + [418] = {.lex_state = 108}, + [419] = {.lex_state = 108}, + [420] = {.lex_state = 108}, + [421] = {.lex_state = 108}, + [422] = {.lex_state = 108}, + [423] = {.lex_state = 108}, + [424] = {.lex_state = 108}, + [425] = {.lex_state = 108}, + [426] = {.lex_state = 108}, + [427] = {.lex_state = 108}, + [428] = {.lex_state = 108}, + [429] = {.lex_state = 108}, + [430] = {.lex_state = 108}, + [431] = {.lex_state = 108}, + [432] = {.lex_state = 108}, + [433] = {.lex_state = 108}, + [434] = {.lex_state = 108}, + [435] = {.lex_state = 108}, + [436] = {.lex_state = 108}, + [437] = {.lex_state = 108}, + [438] = {.lex_state = 108}, + [439] = {.lex_state = 108}, + [440] = {.lex_state = 108}, + [441] = {.lex_state = 108}, + [442] = {.lex_state = 418}, + [443] = {.lex_state = 108}, + [444] = {.lex_state = 108}, + [445] = {.lex_state = 108}, + [446] = {.lex_state = 108}, + [447] = {.lex_state = 419}, + [448] = {.lex_state = 108}, + [449] = {.lex_state = 108}, + [450] = {.lex_state = 108}, + [451] = {.lex_state = 108}, + [452] = {.lex_state = 108}, + [453] = {.lex_state = 108}, + [454] = {.lex_state = 108}, + [455] = {.lex_state = 108}, + [456] = {.lex_state = 108}, + [457] = {.lex_state = 108}, + [458] = {.lex_state = 108}, + [459] = {.lex_state = 108}, + [460] = {.lex_state = 108}, + [461] = {.lex_state = 108}, + [462] = {.lex_state = 108}, + [463] = {.lex_state = 108}, + [464] = {.lex_state = 108}, + [465] = {.lex_state = 108}, + [466] = {.lex_state = 108}, + [467] = {.lex_state = 108}, + [468] = {.lex_state = 108}, + [469] = {.lex_state = 108}, + [470] = {.lex_state = 108}, + [471] = {.lex_state = 108}, + [472] = {.lex_state = 108}, + [473] = {.lex_state = 108}, + [474] = {.lex_state = 108}, + [475] = {.lex_state = 108}, + [476] = {.lex_state = 108}, + [477] = {.lex_state = 108}, + [478] = {.lex_state = 108}, + [479] = {.lex_state = 108}, + [480] = {.lex_state = 108}, + [481] = {.lex_state = 108}, + [482] = {.lex_state = 108}, + [483] = {.lex_state = 108}, + [484] = {.lex_state = 108}, + [485] = {.lex_state = 108}, + [486] = {.lex_state = 108}, + [487] = {.lex_state = 108}, + [488] = {.lex_state = 108}, + [489] = {.lex_state = 108}, + [490] = {.lex_state = 108}, + [491] = {.lex_state = 108}, + [492] = {.lex_state = 108}, + [493] = {.lex_state = 108}, + [494] = {.lex_state = 108}, + [495] = {.lex_state = 108}, + [496] = {.lex_state = 108}, + [497] = {.lex_state = 108}, + [498] = {.lex_state = 108}, + [499] = {.lex_state = 108}, + [500] = {.lex_state = 108}, + [501] = {.lex_state = 108}, + [502] = {.lex_state = 108}, + [503] = {.lex_state = 108}, + [504] = {.lex_state = 108}, + [505] = {.lex_state = 108}, + [506] = {.lex_state = 108}, + [507] = {.lex_state = 108}, + [508] = {.lex_state = 108}, + [509] = {.lex_state = 108}, + [510] = {.lex_state = 108}, + [511] = {.lex_state = 108}, + [512] = {.lex_state = 108}, + [513] = {.lex_state = 108}, + [514] = {.lex_state = 108}, + [515] = {.lex_state = 107}, + [516] = {.lex_state = 108}, + [517] = {.lex_state = 108}, + [518] = {.lex_state = 108}, + [519] = {.lex_state = 108}, + [520] = {.lex_state = 108}, + [521] = {.lex_state = 108}, + [522] = {.lex_state = 108}, + [523] = {.lex_state = 108}, + [524] = {.lex_state = 108}, + [525] = {.lex_state = 108}, + [526] = {.lex_state = 108}, + [527] = {.lex_state = 108}, + [528] = {.lex_state = 108}, + [529] = {.lex_state = 108}, + [530] = {.lex_state = 108}, + [531] = {.lex_state = 107}, + [532] = {.lex_state = 107}, + [533] = {.lex_state = 107}, + [534] = {.lex_state = 107}, + [535] = {.lex_state = 107}, + [536] = {.lex_state = 107}, + [537] = {.lex_state = 107}, + [538] = {.lex_state = 107}, + [539] = {.lex_state = 107}, + [540] = {.lex_state = 107}, + [541] = {.lex_state = 107}, + [542] = {.lex_state = 107}, + [543] = {.lex_state = 107}, + [544] = {.lex_state = 107}, + [545] = {.lex_state = 107}, + [546] = {.lex_state = 107}, + [547] = {.lex_state = 107}, + [548] = {.lex_state = 107}, + [549] = {.lex_state = 107}, + [550] = {.lex_state = 107}, + [551] = {.lex_state = 107}, + [552] = {.lex_state = 107}, + [553] = {.lex_state = 107}, + [554] = {.lex_state = 107}, + [555] = {.lex_state = 107}, + [556] = {.lex_state = 107}, + [557] = {.lex_state = 107}, + [558] = {.lex_state = 419}, + [559] = {.lex_state = 107}, + [560] = {.lex_state = 107}, + [561] = {.lex_state = 107}, + [562] = {.lex_state = 107}, + [563] = {.lex_state = 107}, + [564] = {.lex_state = 107}, + [565] = {.lex_state = 107}, + [566] = {.lex_state = 107}, + [567] = {.lex_state = 107}, + [568] = {.lex_state = 107}, + [569] = {.lex_state = 107}, + [570] = {.lex_state = 107}, + [571] = {.lex_state = 107}, + [572] = {.lex_state = 107}, + [573] = {.lex_state = 107}, + [574] = {.lex_state = 107}, + [575] = {.lex_state = 107}, + [576] = {.lex_state = 107}, + [577] = {.lex_state = 107}, + [578] = {.lex_state = 107}, + [579] = {.lex_state = 107}, + [580] = {.lex_state = 107}, + [581] = {.lex_state = 107}, + [582] = {.lex_state = 107}, + [583] = {.lex_state = 107}, + [584] = {.lex_state = 107}, + [585] = {.lex_state = 107}, + [586] = {.lex_state = 107}, + [587] = {.lex_state = 107}, + [588] = {.lex_state = 107}, + [589] = {.lex_state = 95}, + [590] = {.lex_state = 107}, + [591] = {.lex_state = 107}, + [592] = {.lex_state = 107}, + [593] = {.lex_state = 107}, + [594] = {.lex_state = 107}, + [595] = {.lex_state = 107}, + [596] = {.lex_state = 107}, + [597] = {.lex_state = 107}, + [598] = {.lex_state = 107}, + [599] = {.lex_state = 107}, + [600] = {.lex_state = 107}, + [601] = {.lex_state = 107}, + [602] = {.lex_state = 107}, + [603] = {.lex_state = 107}, + [604] = {.lex_state = 107}, + [605] = {.lex_state = 107}, + [606] = {.lex_state = 107}, + [607] = {.lex_state = 417}, + [608] = {.lex_state = 107}, + [609] = {.lex_state = 107}, + [610] = {.lex_state = 107}, + [611] = {.lex_state = 107}, + [612] = {.lex_state = 107}, + [613] = {.lex_state = 107}, + [614] = {.lex_state = 107}, + [615] = {.lex_state = 107}, + [616] = {.lex_state = 107}, + [617] = {.lex_state = 107}, + [618] = {.lex_state = 107}, + [619] = {.lex_state = 107}, + [620] = {.lex_state = 107}, + [621] = {.lex_state = 107}, + [622] = {.lex_state = 107}, + [623] = {.lex_state = 107}, + [624] = {.lex_state = 107}, + [625] = {.lex_state = 107}, + [626] = {.lex_state = 107}, + [627] = {.lex_state = 107}, + [628] = {.lex_state = 107}, + [629] = {.lex_state = 107}, + [630] = {.lex_state = 107}, + [631] = {.lex_state = 107}, + [632] = {.lex_state = 107}, + [633] = {.lex_state = 107}, + [634] = {.lex_state = 107}, + [635] = {.lex_state = 107}, + [636] = {.lex_state = 107}, + [637] = {.lex_state = 107}, + [638] = {.lex_state = 107}, + [639] = {.lex_state = 107}, + [640] = {.lex_state = 107}, + [641] = {.lex_state = 107}, + [642] = {.lex_state = 107}, + [643] = {.lex_state = 107}, + [644] = {.lex_state = 107}, + [645] = {.lex_state = 107}, + [646] = {.lex_state = 107}, + [647] = {.lex_state = 107}, + [648] = {.lex_state = 417}, + [649] = {.lex_state = 107}, + [650] = {.lex_state = 107}, + [651] = {.lex_state = 107}, + [652] = {.lex_state = 107}, + [653] = {.lex_state = 107}, + [654] = {.lex_state = 107}, + [655] = {.lex_state = 107}, + [656] = {.lex_state = 107}, + [657] = {.lex_state = 107}, + [658] = {.lex_state = 107}, + [659] = {.lex_state = 107}, + [660] = {.lex_state = 107}, + [661] = {.lex_state = 107}, + [662] = {.lex_state = 107}, + [663] = {.lex_state = 107}, + [664] = {.lex_state = 107}, + [665] = {.lex_state = 107}, + [666] = {.lex_state = 107}, + [667] = {.lex_state = 107}, + [668] = {.lex_state = 107}, + [669] = {.lex_state = 107}, + [670] = {.lex_state = 107}, + [671] = {.lex_state = 107}, + [672] = {.lex_state = 107}, + [673] = {.lex_state = 107}, + [674] = {.lex_state = 107}, + [675] = {.lex_state = 107}, + [676] = {.lex_state = 107}, + [677] = {.lex_state = 107}, + [678] = {.lex_state = 107}, + [679] = {.lex_state = 107}, + [680] = {.lex_state = 107}, + [681] = {.lex_state = 107}, + [682] = {.lex_state = 107}, + [683] = {.lex_state = 107}, + [684] = {.lex_state = 107}, + [685] = {.lex_state = 107}, + [686] = {.lex_state = 107}, + [687] = {.lex_state = 107}, + [688] = {.lex_state = 107}, + [689] = {.lex_state = 107}, + [690] = {.lex_state = 107}, + [691] = {.lex_state = 417}, + [692] = {.lex_state = 417}, + [693] = {.lex_state = 417}, + [694] = {.lex_state = 417}, + [695] = {.lex_state = 417}, + [696] = {.lex_state = 417}, + [697] = {.lex_state = 417}, + [698] = {.lex_state = 417}, + [699] = {.lex_state = 417}, + [700] = {.lex_state = 417}, + [701] = {.lex_state = 417}, + [702] = {.lex_state = 417}, + [703] = {.lex_state = 417}, + [704] = {.lex_state = 417}, + [705] = {.lex_state = 417}, + [706] = {.lex_state = 417}, + [707] = {.lex_state = 417}, + [708] = {.lex_state = 417}, + [709] = {.lex_state = 95}, + [710] = {.lex_state = 417}, + [711] = {.lex_state = 417}, + [712] = {.lex_state = 417}, + [713] = {.lex_state = 417}, + [714] = {.lex_state = 417}, + [715] = {.lex_state = 417}, + [716] = {.lex_state = 417}, + [717] = {.lex_state = 417}, + [718] = {.lex_state = 417}, + [719] = {.lex_state = 417}, + [720] = {.lex_state = 417}, + [721] = {.lex_state = 417}, + [722] = {.lex_state = 417}, + [723] = {.lex_state = 417}, + [724] = {.lex_state = 417}, + [725] = {.lex_state = 417}, + [726] = {.lex_state = 417}, + [727] = {.lex_state = 417}, + [728] = {.lex_state = 417}, + [729] = {.lex_state = 419}, + [730] = {.lex_state = 417}, + [731] = {.lex_state = 417}, + [732] = {.lex_state = 417}, + [733] = {.lex_state = 417}, + [734] = {.lex_state = 417}, + [735] = {.lex_state = 417}, + [736] = {.lex_state = 417}, + [737] = {.lex_state = 417}, + [738] = {.lex_state = 417}, + [739] = {.lex_state = 417}, + [740] = {.lex_state = 417}, + [741] = {.lex_state = 417}, + [742] = {.lex_state = 417}, + [743] = {.lex_state = 417}, + [744] = {.lex_state = 417}, + [745] = {.lex_state = 417}, + [746] = {.lex_state = 417}, + [747] = {.lex_state = 417}, + [748] = {.lex_state = 417}, + [749] = {.lex_state = 417}, + [750] = {.lex_state = 417}, + [751] = {.lex_state = 417}, + [752] = {.lex_state = 417}, + [753] = {.lex_state = 417}, + [754] = {.lex_state = 417}, + [755] = {.lex_state = 417}, + [756] = {.lex_state = 417}, + [757] = {.lex_state = 417}, + [758] = {.lex_state = 417}, + [759] = {.lex_state = 417}, + [760] = {.lex_state = 417}, + [761] = {.lex_state = 417}, + [762] = {.lex_state = 417}, + [763] = {.lex_state = 417}, + [764] = {.lex_state = 417}, + [765] = {.lex_state = 417}, + [766] = {.lex_state = 417}, + [767] = {.lex_state = 417}, + [768] = {.lex_state = 417}, + [769] = {.lex_state = 417}, + [770] = {.lex_state = 417}, + [771] = {.lex_state = 417}, + [772] = {.lex_state = 417}, + [773] = {.lex_state = 417}, + [774] = {.lex_state = 417}, + [775] = {.lex_state = 417}, + [776] = {.lex_state = 417}, + [777] = {.lex_state = 417}, + [778] = {.lex_state = 417}, + [779] = {.lex_state = 417}, + [780] = {.lex_state = 417}, + [781] = {.lex_state = 417}, + [782] = {.lex_state = 417}, + [783] = {.lex_state = 417}, + [784] = {.lex_state = 417}, + [785] = {.lex_state = 417}, + [786] = {.lex_state = 417}, + [787] = {.lex_state = 417}, + [788] = {.lex_state = 419}, + [789] = {.lex_state = 417}, + [790] = {.lex_state = 417}, + [791] = {.lex_state = 417}, + [792] = {.lex_state = 417}, + [793] = {.lex_state = 417}, + [794] = {.lex_state = 417}, + [795] = {.lex_state = 417}, + [796] = {.lex_state = 417}, + [797] = {.lex_state = 417}, + [798] = {.lex_state = 417}, + [799] = {.lex_state = 417}, + [800] = {.lex_state = 417}, + [801] = {.lex_state = 417}, + [802] = {.lex_state = 417}, + [803] = {.lex_state = 417}, + [804] = {.lex_state = 417}, + [805] = {.lex_state = 417}, + [806] = {.lex_state = 417}, + [807] = {.lex_state = 417}, + [808] = {.lex_state = 417}, + [809] = {.lex_state = 417}, + [810] = {.lex_state = 417}, + [811] = {.lex_state = 417}, + [812] = {.lex_state = 417}, + [813] = {.lex_state = 417}, + [814] = {.lex_state = 417}, + [815] = {.lex_state = 419}, + [816] = {.lex_state = 419}, + [817] = {.lex_state = 419}, + [818] = {.lex_state = 417}, + [819] = {.lex_state = 417}, + [820] = {.lex_state = 417}, + [821] = {.lex_state = 417}, + [822] = {.lex_state = 417}, + [823] = {.lex_state = 417}, + [824] = {.lex_state = 417}, + [825] = {.lex_state = 417}, + [826] = {.lex_state = 417}, + [827] = {.lex_state = 417}, + [828] = {.lex_state = 417}, + [829] = {.lex_state = 417}, + [830] = {.lex_state = 417}, + [831] = {.lex_state = 417}, + [832] = {.lex_state = 417}, + [833] = {.lex_state = 417}, + [834] = {.lex_state = 417}, + [835] = {.lex_state = 417}, + [836] = {.lex_state = 417}, + [837] = {.lex_state = 417}, + [838] = {.lex_state = 417}, + [839] = {.lex_state = 417}, + [840] = {.lex_state = 417}, + [841] = {.lex_state = 417}, + [842] = {.lex_state = 417}, + [843] = {.lex_state = 417}, + [844] = {.lex_state = 417}, + [845] = {.lex_state = 417}, + [846] = {.lex_state = 417}, + [847] = {.lex_state = 417}, + [848] = {.lex_state = 417}, + [849] = {.lex_state = 417}, + [850] = {.lex_state = 417}, + [851] = {.lex_state = 417}, + [852] = {.lex_state = 417}, + [853] = {.lex_state = 417}, + [854] = {.lex_state = 417}, + [855] = {.lex_state = 417}, + [856] = {.lex_state = 417}, + [857] = {.lex_state = 417}, + [858] = {.lex_state = 417}, + [859] = {.lex_state = 417}, + [860] = {.lex_state = 417}, + [861] = {.lex_state = 417}, + [862] = {.lex_state = 417}, + [863] = {.lex_state = 417}, + [864] = {.lex_state = 417}, + [865] = {.lex_state = 417}, + [866] = {.lex_state = 417}, + [867] = {.lex_state = 417}, + [868] = {.lex_state = 417}, + [869] = {.lex_state = 417}, + [870] = {.lex_state = 417}, + [871] = {.lex_state = 417}, + [872] = {.lex_state = 417}, + [873] = {.lex_state = 417}, + [874] = {.lex_state = 417}, + [875] = {.lex_state = 417}, + [876] = {.lex_state = 417}, + [877] = {.lex_state = 417}, + [878] = {.lex_state = 417}, + [879] = {.lex_state = 417}, + [880] = {.lex_state = 417}, + [881] = {.lex_state = 417}, + [882] = {.lex_state = 417}, + [883] = {.lex_state = 417}, + [884] = {.lex_state = 417}, + [885] = {.lex_state = 417}, + [886] = {.lex_state = 417}, + [887] = {.lex_state = 417}, + [888] = {.lex_state = 417}, + [889] = {.lex_state = 417}, + [890] = {.lex_state = 417}, + [891] = {.lex_state = 417}, + [892] = {.lex_state = 417}, + [893] = {.lex_state = 417}, + [894] = {.lex_state = 417}, + [895] = {.lex_state = 417}, + [896] = {.lex_state = 417}, + [897] = {.lex_state = 417}, + [898] = {.lex_state = 417}, + [899] = {.lex_state = 417}, + [900] = {.lex_state = 417}, + [901] = {.lex_state = 417}, + [902] = {.lex_state = 417}, + [903] = {.lex_state = 417}, + [904] = {.lex_state = 417}, + [905] = {.lex_state = 417}, + [906] = {.lex_state = 417}, + [907] = {.lex_state = 417}, + [908] = {.lex_state = 417}, + [909] = {.lex_state = 417}, + [910] = {.lex_state = 417}, + [911] = {.lex_state = 417}, + [912] = {.lex_state = 417}, + [913] = {.lex_state = 417}, + [914] = {.lex_state = 417}, + [915] = {.lex_state = 417}, + [916] = {.lex_state = 417}, + [917] = {.lex_state = 115}, + [918] = {.lex_state = 115}, + [919] = {.lex_state = 416}, + [920] = {.lex_state = 416}, + [921] = {.lex_state = 416}, + [922] = {.lex_state = 115}, + [923] = {.lex_state = 115}, + [924] = {.lex_state = 115}, + [925] = {.lex_state = 416}, + [926] = {.lex_state = 416}, + [927] = {.lex_state = 416}, + [928] = {.lex_state = 416}, + [929] = {.lex_state = 416}, + [930] = {.lex_state = 416}, + [931] = {.lex_state = 416}, + [932] = {.lex_state = 416}, + [933] = {.lex_state = 416}, + [934] = {.lex_state = 416}, + [935] = {.lex_state = 416}, + [936] = {.lex_state = 416}, + [937] = {.lex_state = 416}, + [938] = {.lex_state = 416}, + [939] = {.lex_state = 416}, + [940] = {.lex_state = 416}, + [941] = {.lex_state = 416}, + [942] = {.lex_state = 416}, + [943] = {.lex_state = 416}, + [944] = {.lex_state = 416}, + [945] = {.lex_state = 416}, + [946] = {.lex_state = 416}, + [947] = {.lex_state = 416}, + [948] = {.lex_state = 416}, + [949] = {.lex_state = 416}, + [950] = {.lex_state = 416}, + [951] = {.lex_state = 416}, + [952] = {.lex_state = 416}, + [953] = {.lex_state = 416}, + [954] = {.lex_state = 416}, + [955] = {.lex_state = 416}, + [956] = {.lex_state = 115}, + [957] = {.lex_state = 416}, + [958] = {.lex_state = 416}, + [959] = {.lex_state = 416}, + [960] = {.lex_state = 416}, + [961] = {.lex_state = 416}, + [962] = {.lex_state = 416}, + [963] = {.lex_state = 416}, + [964] = {.lex_state = 416}, + [965] = {.lex_state = 416}, + [966] = {.lex_state = 416}, + [967] = {.lex_state = 416}, + [968] = {.lex_state = 416}, + [969] = {.lex_state = 416}, + [970] = {.lex_state = 416}, + [971] = {.lex_state = 416}, + [972] = {.lex_state = 416}, + [973] = {.lex_state = 416}, + [974] = {.lex_state = 416}, + [975] = {.lex_state = 416}, + [976] = {.lex_state = 416}, + [977] = {.lex_state = 416}, + [978] = {.lex_state = 416}, + [979] = {.lex_state = 416}, + [980] = {.lex_state = 416}, + [981] = {.lex_state = 416}, + [982] = {.lex_state = 416}, + [983] = {.lex_state = 416}, + [984] = {.lex_state = 416}, + [985] = {.lex_state = 416}, + [986] = {.lex_state = 416}, + [987] = {.lex_state = 416}, + [988] = {.lex_state = 416}, + [989] = {.lex_state = 416}, + [990] = {.lex_state = 416}, + [991] = {.lex_state = 416}, + [992] = {.lex_state = 416}, + [993] = {.lex_state = 416}, + [994] = {.lex_state = 416}, + [995] = {.lex_state = 416}, + [996] = {.lex_state = 416}, + [997] = {.lex_state = 416}, + [998] = {.lex_state = 416}, + [999] = {.lex_state = 416}, + [1000] = {.lex_state = 416}, + [1001] = {.lex_state = 416}, + [1002] = {.lex_state = 416}, + [1003] = {.lex_state = 416}, + [1004] = {.lex_state = 416}, + [1005] = {.lex_state = 416}, + [1006] = {.lex_state = 416}, + [1007] = {.lex_state = 416}, + [1008] = {.lex_state = 416}, + [1009] = {.lex_state = 416}, + [1010] = {.lex_state = 416}, + [1011] = {.lex_state = 416}, + [1012] = {.lex_state = 416}, + [1013] = {.lex_state = 416}, + [1014] = {.lex_state = 416}, + [1015] = {.lex_state = 416}, + [1016] = {.lex_state = 416}, + [1017] = {.lex_state = 416}, + [1018] = {.lex_state = 416}, + [1019] = {.lex_state = 416}, + [1020] = {.lex_state = 416}, + [1021] = {.lex_state = 416}, + [1022] = {.lex_state = 416}, + [1023] = {.lex_state = 416}, + [1024] = {.lex_state = 416}, + [1025] = {.lex_state = 416}, + [1026] = {.lex_state = 416}, + [1027] = {.lex_state = 416}, + [1028] = {.lex_state = 416}, + [1029] = {.lex_state = 416}, + [1030] = {.lex_state = 416}, + [1031] = {.lex_state = 416}, + [1032] = {.lex_state = 416}, + [1033] = {.lex_state = 416}, + [1034] = {.lex_state = 416}, + [1035] = {.lex_state = 416}, + [1036] = {.lex_state = 416}, + [1037] = {.lex_state = 416}, + [1038] = {.lex_state = 416}, + [1039] = {.lex_state = 416}, + [1040] = {.lex_state = 416}, + [1041] = {.lex_state = 416}, + [1042] = {.lex_state = 416}, + [1043] = {.lex_state = 416}, + [1044] = {.lex_state = 416}, + [1045] = {.lex_state = 416}, + [1046] = {.lex_state = 416}, + [1047] = {.lex_state = 416}, + [1048] = {.lex_state = 416}, + [1049] = {.lex_state = 416}, + [1050] = {.lex_state = 416}, + [1051] = {.lex_state = 416}, + [1052] = {.lex_state = 416}, + [1053] = {.lex_state = 416}, + [1054] = {.lex_state = 416}, + [1055] = {.lex_state = 416}, + [1056] = {.lex_state = 416}, + [1057] = {.lex_state = 416}, + [1058] = {.lex_state = 416}, + [1059] = {.lex_state = 416}, + [1060] = {.lex_state = 416}, + [1061] = {.lex_state = 416}, + [1062] = {.lex_state = 416}, + [1063] = {.lex_state = 416}, + [1064] = {.lex_state = 416}, + [1065] = {.lex_state = 416}, + [1066] = {.lex_state = 416}, + [1067] = {.lex_state = 111}, + [1068] = {.lex_state = 416}, + [1069] = {.lex_state = 416}, + [1070] = {.lex_state = 416}, + [1071] = {.lex_state = 416}, + [1072] = {.lex_state = 416}, + [1073] = {.lex_state = 416}, + [1074] = {.lex_state = 416}, + [1075] = {.lex_state = 111}, + [1076] = {.lex_state = 111}, + [1077] = {.lex_state = 416}, + [1078] = {.lex_state = 111}, + [1079] = {.lex_state = 111}, + [1080] = {.lex_state = 111}, + [1081] = {.lex_state = 416}, + [1082] = {.lex_state = 111}, + [1083] = {.lex_state = 111}, + [1084] = {.lex_state = 110}, + [1085] = {.lex_state = 110}, + [1086] = {.lex_state = 114}, + [1087] = {.lex_state = 114}, + [1088] = {.lex_state = 114}, + [1089] = {.lex_state = 114}, + [1090] = {.lex_state = 114}, + [1091] = {.lex_state = 114}, + [1092] = {.lex_state = 114}, + [1093] = {.lex_state = 110}, + [1094] = {.lex_state = 132}, + [1095] = {.lex_state = 132}, + [1096] = {.lex_state = 132}, + [1097] = {.lex_state = 132}, + [1098] = {.lex_state = 132}, + [1099] = {.lex_state = 105}, + [1100] = {.lex_state = 105}, + [1101] = {.lex_state = 105}, + [1102] = {.lex_state = 105}, + [1103] = {.lex_state = 105}, + [1104] = {.lex_state = 105}, + [1105] = {.lex_state = 105}, + [1106] = {.lex_state = 105}, + [1107] = {.lex_state = 105}, + [1108] = {.lex_state = 105}, + [1109] = {.lex_state = 105}, + [1110] = {.lex_state = 105}, + [1111] = {.lex_state = 105}, + [1112] = {.lex_state = 105}, + [1113] = {.lex_state = 105}, + [1114] = {.lex_state = 105}, + [1115] = {.lex_state = 105}, + [1116] = {.lex_state = 105}, + [1117] = {.lex_state = 105}, + [1118] = {.lex_state = 105}, + [1119] = {.lex_state = 105}, + [1120] = {.lex_state = 105}, + [1121] = {.lex_state = 105}, + [1122] = {.lex_state = 105}, + [1123] = {.lex_state = 105}, + [1124] = {.lex_state = 105}, + [1125] = {.lex_state = 105}, + [1126] = {.lex_state = 105}, + [1127] = {.lex_state = 105}, + [1128] = {.lex_state = 105}, + [1129] = {.lex_state = 105}, + [1130] = {.lex_state = 105}, + [1131] = {.lex_state = 105}, + [1132] = {.lex_state = 105}, + [1133] = {.lex_state = 105}, + [1134] = {.lex_state = 105}, + [1135] = {.lex_state = 105}, + [1136] = {.lex_state = 105}, + [1137] = {.lex_state = 105}, + [1138] = {.lex_state = 105}, + [1139] = {.lex_state = 105}, + [1140] = {.lex_state = 105}, + [1141] = {.lex_state = 105}, + [1142] = {.lex_state = 105}, + [1143] = {.lex_state = 105}, + [1144] = {.lex_state = 105}, + [1145] = {.lex_state = 105}, + [1146] = {.lex_state = 105}, + [1147] = {.lex_state = 105}, + [1148] = {.lex_state = 105}, + [1149] = {.lex_state = 105}, + [1150] = {.lex_state = 105}, + [1151] = {.lex_state = 105}, + [1152] = {.lex_state = 105}, + [1153] = {.lex_state = 105}, + [1154] = {.lex_state = 105}, + [1155] = {.lex_state = 105}, + [1156] = {.lex_state = 105}, + [1157] = {.lex_state = 105}, + [1158] = {.lex_state = 105}, + [1159] = {.lex_state = 105}, + [1160] = {.lex_state = 105}, + [1161] = {.lex_state = 105}, + [1162] = {.lex_state = 105}, + [1163] = {.lex_state = 105}, + [1164] = {.lex_state = 105}, + [1165] = {.lex_state = 105}, + [1166] = {.lex_state = 105}, + [1167] = {.lex_state = 105}, + [1168] = {.lex_state = 105}, + [1169] = {.lex_state = 105}, + [1170] = {.lex_state = 105}, + [1171] = {.lex_state = 105}, + [1172] = {.lex_state = 105}, + [1173] = {.lex_state = 105}, + [1174] = {.lex_state = 132}, + [1175] = {.lex_state = 132}, + [1176] = {.lex_state = 132}, + [1177] = {.lex_state = 132}, + [1178] = {.lex_state = 132}, + [1179] = {.lex_state = 132}, + [1180] = {.lex_state = 132}, + [1181] = {.lex_state = 132}, + [1182] = {.lex_state = 132}, + [1183] = {.lex_state = 132}, + [1184] = {.lex_state = 132}, + [1185] = {.lex_state = 132}, + [1186] = {.lex_state = 132}, + [1187] = {.lex_state = 132}, + [1188] = {.lex_state = 132}, + [1189] = {.lex_state = 132}, + [1190] = {.lex_state = 132}, + [1191] = {.lex_state = 132}, + [1192] = {.lex_state = 132}, + [1193] = {.lex_state = 132}, + [1194] = {.lex_state = 132}, + [1195] = {.lex_state = 126}, + [1196] = {.lex_state = 126}, + [1197] = {.lex_state = 132}, + [1198] = {.lex_state = 126}, + [1199] = {.lex_state = 132}, + [1200] = {.lex_state = 126}, + [1201] = {.lex_state = 126}, + [1202] = {.lex_state = 126}, + [1203] = {.lex_state = 132}, + [1204] = {.lex_state = 132}, + [1205] = {.lex_state = 126}, + [1206] = {.lex_state = 126}, + [1207] = {.lex_state = 132}, + [1208] = {.lex_state = 132}, + [1209] = {.lex_state = 132}, + [1210] = {.lex_state = 132}, + [1211] = {.lex_state = 132}, + [1212] = {.lex_state = 126}, + [1213] = {.lex_state = 132}, + [1214] = {.lex_state = 132}, + [1215] = {.lex_state = 132}, + [1216] = {.lex_state = 132}, + [1217] = {.lex_state = 132}, + [1218] = {.lex_state = 132}, + [1219] = {.lex_state = 132}, + [1220] = {.lex_state = 132}, + [1221] = {.lex_state = 132}, + [1222] = {.lex_state = 132}, + [1223] = {.lex_state = 132}, + [1224] = {.lex_state = 132}, + [1225] = {.lex_state = 132}, + [1226] = {.lex_state = 132}, + [1227] = {.lex_state = 132}, + [1228] = {.lex_state = 132}, + [1229] = {.lex_state = 126}, + [1230] = {.lex_state = 132}, + [1231] = {.lex_state = 126}, + [1232] = {.lex_state = 126}, + [1233] = {.lex_state = 132}, + [1234] = {.lex_state = 132}, + [1235] = {.lex_state = 132}, + [1236] = {.lex_state = 132}, + [1237] = {.lex_state = 126}, + [1238] = {.lex_state = 132}, + [1239] = {.lex_state = 132}, + [1240] = {.lex_state = 132}, + [1241] = {.lex_state = 126}, + [1242] = {.lex_state = 132}, + [1243] = {.lex_state = 132}, + [1244] = {.lex_state = 132}, + [1245] = {.lex_state = 132}, + [1246] = {.lex_state = 126}, + [1247] = {.lex_state = 132}, + [1248] = {.lex_state = 132}, + [1249] = {.lex_state = 132}, + [1250] = {.lex_state = 126}, + [1251] = {.lex_state = 132}, + [1252] = {.lex_state = 132}, + [1253] = {.lex_state = 132}, + [1254] = {.lex_state = 132}, + [1255] = {.lex_state = 132}, + [1256] = {.lex_state = 132}, + [1257] = {.lex_state = 126}, + [1258] = {.lex_state = 132}, + [1259] = {.lex_state = 132}, + [1260] = {.lex_state = 132}, + [1261] = {.lex_state = 132}, + [1262] = {.lex_state = 132}, + [1263] = {.lex_state = 132}, + [1264] = {.lex_state = 132}, + [1265] = {.lex_state = 132}, + [1266] = {.lex_state = 132}, + [1267] = {.lex_state = 132}, + [1268] = {.lex_state = 132}, + [1269] = {.lex_state = 132}, + [1270] = {.lex_state = 133}, + [1271] = {.lex_state = 132}, + [1272] = {.lex_state = 132}, + [1273] = {.lex_state = 132}, + [1274] = {.lex_state = 132}, + [1275] = {.lex_state = 132}, + [1276] = {.lex_state = 132}, + [1277] = {.lex_state = 132}, + [1278] = {.lex_state = 132}, + [1279] = {.lex_state = 132}, + [1280] = {.lex_state = 132}, + [1281] = {.lex_state = 132}, + [1282] = {.lex_state = 132}, + [1283] = {.lex_state = 132}, + [1284] = {.lex_state = 132}, + [1285] = {.lex_state = 132}, + [1286] = {.lex_state = 133}, + [1287] = {.lex_state = 132}, + [1288] = {.lex_state = 132}, + [1289] = {.lex_state = 132}, + [1290] = {.lex_state = 132}, + [1291] = {.lex_state = 132}, + [1292] = {.lex_state = 132}, + [1293] = {.lex_state = 132}, + [1294] = {.lex_state = 132}, + [1295] = {.lex_state = 132}, + [1296] = {.lex_state = 132}, + [1297] = {.lex_state = 132}, + [1298] = {.lex_state = 132}, + [1299] = {.lex_state = 133}, + [1300] = {.lex_state = 132}, + [1301] = {.lex_state = 132}, + [1302] = {.lex_state = 132}, + [1303] = {.lex_state = 132}, + [1304] = {.lex_state = 132}, + [1305] = {.lex_state = 132}, + [1306] = {.lex_state = 132}, + [1307] = {.lex_state = 132}, + [1308] = {.lex_state = 132}, + [1309] = {.lex_state = 132}, + [1310] = {.lex_state = 132}, + [1311] = {.lex_state = 132}, + [1312] = {.lex_state = 132}, + [1313] = {.lex_state = 132}, + [1314] = {.lex_state = 132}, + [1315] = {.lex_state = 132}, + [1316] = {.lex_state = 132}, + [1317] = {.lex_state = 132}, + [1318] = {.lex_state = 132}, + [1319] = {.lex_state = 132}, + [1320] = {.lex_state = 132}, + [1321] = {.lex_state = 132}, + [1322] = {.lex_state = 132}, + [1323] = {.lex_state = 132}, + [1324] = {.lex_state = 132}, + [1325] = {.lex_state = 132}, + [1326] = {.lex_state = 132}, + [1327] = {.lex_state = 126}, + [1328] = {.lex_state = 132}, + [1329] = {.lex_state = 132}, + [1330] = {.lex_state = 132}, + [1331] = {.lex_state = 132}, + [1332] = {.lex_state = 132}, + [1333] = {.lex_state = 132}, + [1334] = {.lex_state = 132}, + [1335] = {.lex_state = 132}, + [1336] = {.lex_state = 132}, + [1337] = {.lex_state = 132}, + [1338] = {.lex_state = 132}, + [1339] = {.lex_state = 132}, + [1340] = {.lex_state = 132}, + [1341] = {.lex_state = 132}, + [1342] = {.lex_state = 132}, + [1343] = {.lex_state = 132}, + [1344] = {.lex_state = 132}, + [1345] = {.lex_state = 132}, + [1346] = {.lex_state = 132}, + [1347] = {.lex_state = 132}, + [1348] = {.lex_state = 132}, + [1349] = {.lex_state = 132}, + [1350] = {.lex_state = 132}, + [1351] = {.lex_state = 132}, + [1352] = {.lex_state = 133}, + [1353] = {.lex_state = 133}, + [1354] = {.lex_state = 132}, + [1355] = {.lex_state = 132}, + [1356] = {.lex_state = 132}, + [1357] = {.lex_state = 132}, + [1358] = {.lex_state = 132}, + [1359] = {.lex_state = 133}, + [1360] = {.lex_state = 132}, + [1361] = {.lex_state = 132}, + [1362] = {.lex_state = 132}, + [1363] = {.lex_state = 132}, + [1364] = {.lex_state = 132}, + [1365] = {.lex_state = 132}, + [1366] = {.lex_state = 132}, + [1367] = {.lex_state = 132}, + [1368] = {.lex_state = 132}, + [1369] = {.lex_state = 132}, + [1370] = {.lex_state = 132}, + [1371] = {.lex_state = 132}, + [1372] = {.lex_state = 132}, + [1373] = {.lex_state = 132}, + [1374] = {.lex_state = 132}, + [1375] = {.lex_state = 132}, + [1376] = {.lex_state = 132}, + [1377] = {.lex_state = 132}, + [1378] = {.lex_state = 132}, + [1379] = {.lex_state = 132}, + [1380] = {.lex_state = 132}, + [1381] = {.lex_state = 132}, + [1382] = {.lex_state = 132}, + [1383] = {.lex_state = 132}, + [1384] = {.lex_state = 132}, + [1385] = {.lex_state = 132}, + [1386] = {.lex_state = 132}, + [1387] = {.lex_state = 132}, + [1388] = {.lex_state = 132}, + [1389] = {.lex_state = 132}, + [1390] = {.lex_state = 132}, + [1391] = {.lex_state = 132}, + [1392] = {.lex_state = 132}, + [1393] = {.lex_state = 132}, + [1394] = {.lex_state = 132}, + [1395] = {.lex_state = 132}, + [1396] = {.lex_state = 132}, + [1397] = {.lex_state = 132}, + [1398] = {.lex_state = 132}, + [1399] = {.lex_state = 132}, + [1400] = {.lex_state = 132}, + [1401] = {.lex_state = 132}, + [1402] = {.lex_state = 132}, + [1403] = {.lex_state = 132}, + [1404] = {.lex_state = 132}, + [1405] = {.lex_state = 132}, + [1406] = {.lex_state = 132}, + [1407] = {.lex_state = 132}, + [1408] = {.lex_state = 132}, + [1409] = {.lex_state = 132}, + [1410] = {.lex_state = 132}, + [1411] = {.lex_state = 132}, + [1412] = {.lex_state = 132}, + [1413] = {.lex_state = 132}, + [1414] = {.lex_state = 132}, + [1415] = {.lex_state = 132}, + [1416] = {.lex_state = 132}, + [1417] = {.lex_state = 132}, + [1418] = {.lex_state = 132}, + [1419] = {.lex_state = 132}, + [1420] = {.lex_state = 132}, + [1421] = {.lex_state = 132}, + [1422] = {.lex_state = 132}, + [1423] = {.lex_state = 132}, + [1424] = {.lex_state = 132}, + [1425] = {.lex_state = 132}, + [1426] = {.lex_state = 132}, + [1427] = {.lex_state = 132}, + [1428] = {.lex_state = 132}, + [1429] = {.lex_state = 132}, + [1430] = {.lex_state = 132}, + [1431] = {.lex_state = 132}, + [1432] = {.lex_state = 132}, + [1433] = {.lex_state = 132}, + [1434] = {.lex_state = 132}, + [1435] = {.lex_state = 132}, + [1436] = {.lex_state = 132}, + [1437] = {.lex_state = 132}, + [1438] = {.lex_state = 132}, + [1439] = {.lex_state = 132}, + [1440] = {.lex_state = 132}, + [1441] = {.lex_state = 132}, + [1442] = {.lex_state = 120}, + [1443] = {.lex_state = 120}, + [1444] = {.lex_state = 120}, + [1445] = {.lex_state = 120}, + [1446] = {.lex_state = 124}, + [1447] = {.lex_state = 120}, + [1448] = {.lex_state = 120}, + [1449] = {.lex_state = 124}, + [1450] = {.lex_state = 124}, + [1451] = {.lex_state = 124}, + [1452] = {.lex_state = 124}, + [1453] = {.lex_state = 124}, + [1454] = {.lex_state = 124}, + [1455] = {.lex_state = 124}, + [1456] = {.lex_state = 124}, + [1457] = {.lex_state = 124}, + [1458] = {.lex_state = 124}, + [1459] = {.lex_state = 124}, + [1460] = {.lex_state = 124}, + [1461] = {.lex_state = 124}, + [1462] = {.lex_state = 124}, + [1463] = {.lex_state = 124}, + [1464] = {.lex_state = 124}, + [1465] = {.lex_state = 120}, + [1466] = {.lex_state = 124}, + [1467] = {.lex_state = 124}, + [1468] = {.lex_state = 124}, + [1469] = {.lex_state = 124}, + [1470] = {.lex_state = 120}, + [1471] = {.lex_state = 124}, + [1472] = {.lex_state = 124}, + [1473] = {.lex_state = 124}, + [1474] = {.lex_state = 124}, + [1475] = {.lex_state = 120}, + [1476] = {.lex_state = 120}, + [1477] = {.lex_state = 124}, + [1478] = {.lex_state = 124}, + [1479] = {.lex_state = 124}, + [1480] = {.lex_state = 124}, + [1481] = {.lex_state = 124}, + [1482] = {.lex_state = 124}, + [1483] = {.lex_state = 124}, + [1484] = {.lex_state = 124}, + [1485] = {.lex_state = 124}, + [1486] = {.lex_state = 124}, + [1487] = {.lex_state = 132}, + [1488] = {.lex_state = 124}, + [1489] = {.lex_state = 124}, + [1490] = {.lex_state = 124}, + [1491] = {.lex_state = 120}, + [1492] = {.lex_state = 124}, + [1493] = {.lex_state = 124}, + [1494] = {.lex_state = 124}, + [1495] = {.lex_state = 124}, + [1496] = {.lex_state = 124}, + [1497] = {.lex_state = 124}, + [1498] = {.lex_state = 124}, + [1499] = {.lex_state = 124}, + [1500] = {.lex_state = 124}, + [1501] = {.lex_state = 124}, + [1502] = {.lex_state = 124}, + [1503] = {.lex_state = 124}, + [1504] = {.lex_state = 132}, + [1505] = {.lex_state = 124}, + [1506] = {.lex_state = 124}, + [1507] = {.lex_state = 124}, + [1508] = {.lex_state = 124}, + [1509] = {.lex_state = 124}, + [1510] = {.lex_state = 124}, + [1511] = {.lex_state = 124}, + [1512] = {.lex_state = 124}, + [1513] = {.lex_state = 124}, + [1514] = {.lex_state = 124}, + [1515] = {.lex_state = 124}, + [1516] = {.lex_state = 124}, + [1517] = {.lex_state = 124}, + [1518] = {.lex_state = 124}, + [1519] = {.lex_state = 124}, + [1520] = {.lex_state = 124}, + [1521] = {.lex_state = 124}, + [1522] = {.lex_state = 124}, + [1523] = {.lex_state = 125}, + [1524] = {.lex_state = 125}, + [1525] = {.lex_state = 125}, + [1526] = {.lex_state = 125}, + [1527] = {.lex_state = 125}, + [1528] = {.lex_state = 125}, + [1529] = {.lex_state = 125}, + [1530] = {.lex_state = 125}, + [1531] = {.lex_state = 125}, + [1532] = {.lex_state = 125}, + [1533] = {.lex_state = 125}, + [1534] = {.lex_state = 125}, + [1535] = {.lex_state = 125}, + [1536] = {.lex_state = 125}, + [1537] = {.lex_state = 125}, + [1538] = {.lex_state = 125}, + [1539] = {.lex_state = 112}, + [1540] = {.lex_state = 112}, + [1541] = {.lex_state = 112}, + [1542] = {.lex_state = 112}, + [1543] = {.lex_state = 112}, + [1544] = {.lex_state = 112}, + [1545] = {.lex_state = 112}, + [1546] = {.lex_state = 112}, + [1547] = {.lex_state = 112}, + [1548] = {.lex_state = 112}, + [1549] = {.lex_state = 112}, + [1550] = {.lex_state = 112}, + [1551] = {.lex_state = 112}, + [1552] = {.lex_state = 112}, + [1553] = {.lex_state = 112}, + [1554] = {.lex_state = 112}, + [1555] = {.lex_state = 112}, + [1556] = {.lex_state = 112}, + [1557] = {.lex_state = 112}, + [1558] = {.lex_state = 112}, + [1559] = {.lex_state = 112}, + [1560] = {.lex_state = 112}, + [1561] = {.lex_state = 112}, + [1562] = {.lex_state = 112}, + [1563] = {.lex_state = 128}, + [1564] = {.lex_state = 128}, + [1565] = {.lex_state = 125}, + [1566] = {.lex_state = 124}, + [1567] = {.lex_state = 124}, + [1568] = {.lex_state = 124}, + [1569] = {.lex_state = 124}, + [1570] = {.lex_state = 124}, + [1571] = {.lex_state = 124}, + [1572] = {.lex_state = 124}, + [1573] = {.lex_state = 124}, + [1574] = {.lex_state = 124}, + [1575] = {.lex_state = 124}, + [1576] = {.lex_state = 124}, + [1577] = {.lex_state = 124}, + [1578] = {.lex_state = 124}, + [1579] = {.lex_state = 124}, + [1580] = {.lex_state = 128}, + [1581] = {.lex_state = 124}, + [1582] = {.lex_state = 124}, + [1583] = {.lex_state = 132}, + [1584] = {.lex_state = 132}, + [1585] = {.lex_state = 132}, + [1586] = {.lex_state = 132}, + [1587] = {.lex_state = 117}, + [1588] = {.lex_state = 117}, + [1589] = {.lex_state = 117}, + [1590] = {.lex_state = 117}, + [1591] = {.lex_state = 111}, + [1592] = {.lex_state = 117}, + [1593] = {.lex_state = 132}, + [1594] = {.lex_state = 111}, + [1595] = {.lex_state = 132}, + [1596] = {.lex_state = 111}, + [1597] = {.lex_state = 123}, + [1598] = {.lex_state = 111}, + [1599] = {.lex_state = 117}, + [1600] = {.lex_state = 117}, + [1601] = {.lex_state = 117}, + [1602] = {.lex_state = 133}, + [1603] = {.lex_state = 117}, + [1604] = {.lex_state = 111}, + [1605] = {.lex_state = 133}, + [1606] = {.lex_state = 133}, + [1607] = {.lex_state = 117}, + [1608] = {.lex_state = 123}, + [1609] = {.lex_state = 111}, + [1610] = {.lex_state = 117}, + [1611] = {.lex_state = 123}, + [1612] = {.lex_state = 111}, + [1613] = {.lex_state = 117}, + [1614] = {.lex_state = 117}, + [1615] = {.lex_state = 117}, + [1616] = {.lex_state = 117}, + [1617] = {.lex_state = 117}, + [1618] = {.lex_state = 132}, + [1619] = {.lex_state = 132}, + [1620] = {.lex_state = 117}, + [1621] = {.lex_state = 132}, + [1622] = {.lex_state = 117}, + [1623] = {.lex_state = 117}, + [1624] = {.lex_state = 117}, + [1625] = {.lex_state = 128}, + [1626] = {.lex_state = 117}, + [1627] = {.lex_state = 128}, + [1628] = {.lex_state = 128}, + [1629] = {.lex_state = 128}, + [1630] = {.lex_state = 128}, + [1631] = {.lex_state = 123}, + [1632] = {.lex_state = 128}, + [1633] = {.lex_state = 117}, + [1634] = {.lex_state = 117}, + [1635] = {.lex_state = 128}, + [1636] = {.lex_state = 117}, + [1637] = {.lex_state = 128}, + [1638] = {.lex_state = 128}, + [1639] = {.lex_state = 128}, + [1640] = {.lex_state = 123}, + [1641] = {.lex_state = 128}, + [1642] = {.lex_state = 128}, + [1643] = {.lex_state = 128}, + [1644] = {.lex_state = 128}, + [1645] = {.lex_state = 128}, + [1646] = {.lex_state = 128}, + [1647] = {.lex_state = 123}, + [1648] = {.lex_state = 128}, + [1649] = {.lex_state = 123}, + [1650] = {.lex_state = 128}, + [1651] = {.lex_state = 128}, + [1652] = {.lex_state = 128}, + [1653] = {.lex_state = 128}, + [1654] = {.lex_state = 128}, + [1655] = {.lex_state = 128}, + [1656] = {.lex_state = 128}, + [1657] = {.lex_state = 123}, + [1658] = {.lex_state = 128}, + [1659] = {.lex_state = 123}, + [1660] = {.lex_state = 128}, + [1661] = {.lex_state = 128}, + [1662] = {.lex_state = 128}, + [1663] = {.lex_state = 128}, + [1664] = {.lex_state = 128}, + [1665] = {.lex_state = 128}, + [1666] = {.lex_state = 128}, + [1667] = {.lex_state = 117}, + [1668] = {.lex_state = 128}, + [1669] = {.lex_state = 128}, + [1670] = {.lex_state = 128}, + [1671] = {.lex_state = 128}, + [1672] = {.lex_state = 128}, + [1673] = {.lex_state = 128}, + [1674] = {.lex_state = 128}, + [1675] = {.lex_state = 128}, + [1676] = {.lex_state = 128}, + [1677] = {.lex_state = 128}, + [1678] = {.lex_state = 128}, + [1679] = {.lex_state = 117}, + [1680] = {.lex_state = 117}, + [1681] = {.lex_state = 117}, + [1682] = {.lex_state = 117}, + [1683] = {.lex_state = 117}, + [1684] = {.lex_state = 132}, + [1685] = {.lex_state = 132}, + [1686] = {.lex_state = 132}, + [1687] = {.lex_state = 132}, + [1688] = {.lex_state = 132}, + [1689] = {.lex_state = 132}, + [1690] = {.lex_state = 132}, + [1691] = {.lex_state = 132}, + [1692] = {.lex_state = 117}, + [1693] = {.lex_state = 132}, + [1694] = {.lex_state = 132}, + [1695] = {.lex_state = 132}, + [1696] = {.lex_state = 132}, + [1697] = {.lex_state = 132}, + [1698] = {.lex_state = 117}, + [1699] = {.lex_state = 132}, + [1700] = {.lex_state = 132}, + [1701] = {.lex_state = 132}, + [1702] = {.lex_state = 132}, + [1703] = {.lex_state = 132}, + [1704] = {.lex_state = 132}, + [1705] = {.lex_state = 132}, + [1706] = {.lex_state = 132}, + [1707] = {.lex_state = 132}, + [1708] = {.lex_state = 132}, + [1709] = {.lex_state = 132}, + [1710] = {.lex_state = 132}, + [1711] = {.lex_state = 132}, + [1712] = {.lex_state = 132}, + [1713] = {.lex_state = 132}, + [1714] = {.lex_state = 132}, + [1715] = {.lex_state = 132}, + [1716] = {.lex_state = 132}, + [1717] = {.lex_state = 132}, + [1718] = {.lex_state = 132}, + [1719] = {.lex_state = 132}, + [1720] = {.lex_state = 132}, + [1721] = {.lex_state = 132}, + [1722] = {.lex_state = 132}, + [1723] = {.lex_state = 132}, + [1724] = {.lex_state = 132}, + [1725] = {.lex_state = 132}, + [1726] = {.lex_state = 132}, + [1727] = {.lex_state = 132}, + [1728] = {.lex_state = 132}, + [1729] = {.lex_state = 132}, + [1730] = {.lex_state = 132}, + [1731] = {.lex_state = 132}, + [1732] = {.lex_state = 132}, + [1733] = {.lex_state = 132}, + [1734] = {.lex_state = 132}, + [1735] = {.lex_state = 132}, + [1736] = {.lex_state = 117}, + [1737] = {.lex_state = 132}, + [1738] = {.lex_state = 125}, + [1739] = {.lex_state = 125}, + [1740] = {.lex_state = 125}, + [1741] = {.lex_state = 125}, + [1742] = {.lex_state = 132}, + [1743] = {.lex_state = 132}, + [1744] = {.lex_state = 132}, + [1745] = {.lex_state = 125}, + [1746] = {.lex_state = 132}, + [1747] = {.lex_state = 132}, + [1748] = {.lex_state = 132}, + [1749] = {.lex_state = 132}, + [1750] = {.lex_state = 132}, + [1751] = {.lex_state = 125}, + [1752] = {.lex_state = 125}, + [1753] = {.lex_state = 132}, + [1754] = {.lex_state = 132}, + [1755] = {.lex_state = 132}, + [1756] = {.lex_state = 132}, + [1757] = {.lex_state = 125}, + [1758] = {.lex_state = 132}, + [1759] = {.lex_state = 132}, + [1760] = {.lex_state = 125}, + [1761] = {.lex_state = 132}, + [1762] = {.lex_state = 125}, + [1763] = {.lex_state = 132}, + [1764] = {.lex_state = 132}, + [1765] = {.lex_state = 125}, + [1766] = {.lex_state = 125}, + [1767] = {.lex_state = 125}, + [1768] = {.lex_state = 132}, + [1769] = {.lex_state = 132}, + [1770] = {.lex_state = 125}, + [1771] = {.lex_state = 125}, + [1772] = {.lex_state = 125}, + [1773] = {.lex_state = 132}, + [1774] = {.lex_state = 132}, + [1775] = {.lex_state = 125}, + [1776] = {.lex_state = 125}, + [1777] = {.lex_state = 125}, + [1778] = {.lex_state = 132}, + [1779] = {.lex_state = 132}, + [1780] = {.lex_state = 132}, + [1781] = {.lex_state = 132}, + [1782] = {.lex_state = 132}, + [1783] = {.lex_state = 132}, + [1784] = {.lex_state = 132}, + [1785] = {.lex_state = 132}, + [1786] = {.lex_state = 132}, + [1787] = {.lex_state = 132}, + [1788] = {.lex_state = 132}, + [1789] = {.lex_state = 125}, + [1790] = {.lex_state = 132}, + [1791] = {.lex_state = 132}, + [1792] = {.lex_state = 132}, + [1793] = {.lex_state = 132}, + [1794] = {.lex_state = 132}, + [1795] = {.lex_state = 125}, + [1796] = {.lex_state = 125}, + [1797] = {.lex_state = 132}, + [1798] = {.lex_state = 125}, + [1799] = {.lex_state = 132}, + [1800] = {.lex_state = 132}, + [1801] = {.lex_state = 132}, + [1802] = {.lex_state = 132}, + [1803] = {.lex_state = 132}, + [1804] = {.lex_state = 132}, + [1805] = {.lex_state = 125}, + [1806] = {.lex_state = 125}, + [1807] = {.lex_state = 132}, + [1808] = {.lex_state = 132}, + [1809] = {.lex_state = 132}, + [1810] = {.lex_state = 132}, + [1811] = {.lex_state = 132}, + [1812] = {.lex_state = 132}, + [1813] = {.lex_state = 132}, + [1814] = {.lex_state = 132}, + [1815] = {.lex_state = 132}, + [1816] = {.lex_state = 132}, + [1817] = {.lex_state = 132}, + [1818] = {.lex_state = 132}, + [1819] = {.lex_state = 132}, + [1820] = {.lex_state = 132}, + [1821] = {.lex_state = 125}, + [1822] = {.lex_state = 132}, + [1823] = {.lex_state = 132}, + [1824] = {.lex_state = 132}, + [1825] = {.lex_state = 125}, + [1826] = {.lex_state = 132}, + [1827] = {.lex_state = 125}, + [1828] = {.lex_state = 125}, + [1829] = {.lex_state = 132}, + [1830] = {.lex_state = 117}, + [1831] = {.lex_state = 132}, + [1832] = {.lex_state = 132}, + [1833] = {.lex_state = 132}, + [1834] = {.lex_state = 132}, + [1835] = {.lex_state = 132}, + [1836] = {.lex_state = 132}, + [1837] = {.lex_state = 132}, + [1838] = {.lex_state = 132}, + [1839] = {.lex_state = 132}, + [1840] = {.lex_state = 132}, + [1841] = {.lex_state = 132}, + [1842] = {.lex_state = 132}, + [1843] = {.lex_state = 132}, + [1844] = {.lex_state = 132}, + [1845] = {.lex_state = 132}, + [1846] = {.lex_state = 132}, + [1847] = {.lex_state = 132}, + [1848] = {.lex_state = 132}, + [1849] = {.lex_state = 132}, + [1850] = {.lex_state = 132}, + [1851] = {.lex_state = 132}, + [1852] = {.lex_state = 132}, + [1853] = {.lex_state = 132}, + [1854] = {.lex_state = 132}, + [1855] = {.lex_state = 132}, + [1856] = {.lex_state = 132}, + [1857] = {.lex_state = 132}, + [1858] = {.lex_state = 132}, + [1859] = {.lex_state = 132}, + [1860] = {.lex_state = 132}, + [1861] = {.lex_state = 132}, + [1862] = {.lex_state = 132}, + [1863] = {.lex_state = 132}, + [1864] = {.lex_state = 132}, + [1865] = {.lex_state = 132}, + [1866] = {.lex_state = 132}, + [1867] = {.lex_state = 132}, + [1868] = {.lex_state = 132}, + [1869] = {.lex_state = 132}, + [1870] = {.lex_state = 132}, + [1871] = {.lex_state = 132}, + [1872] = {.lex_state = 132}, + [1873] = {.lex_state = 132}, + [1874] = {.lex_state = 132}, + [1875] = {.lex_state = 132}, + [1876] = {.lex_state = 132}, + [1877] = {.lex_state = 132}, + [1878] = {.lex_state = 132}, + [1879] = {.lex_state = 132}, + [1880] = {.lex_state = 132}, + [1881] = {.lex_state = 132}, + [1882] = {.lex_state = 132}, + [1883] = {.lex_state = 132}, + [1884] = {.lex_state = 132}, + [1885] = {.lex_state = 132}, + [1886] = {.lex_state = 132}, + [1887] = {.lex_state = 132}, + [1888] = {.lex_state = 132}, + [1889] = {.lex_state = 132}, + [1890] = {.lex_state = 132}, + [1891] = {.lex_state = 132}, + [1892] = {.lex_state = 132}, + [1893] = {.lex_state = 132}, + [1894] = {.lex_state = 132}, + [1895] = {.lex_state = 132}, + [1896] = {.lex_state = 132}, + [1897] = {.lex_state = 132}, + [1898] = {.lex_state = 132}, + [1899] = {.lex_state = 132}, + [1900] = {.lex_state = 132}, + [1901] = {.lex_state = 132}, + [1902] = {.lex_state = 132}, + [1903] = {.lex_state = 132}, + [1904] = {.lex_state = 132}, + [1905] = {.lex_state = 132}, + [1906] = {.lex_state = 132}, + [1907] = {.lex_state = 132}, + [1908] = {.lex_state = 132}, + [1909] = {.lex_state = 132}, + [1910] = {.lex_state = 132}, + [1911] = {.lex_state = 132}, + [1912] = {.lex_state = 132}, + [1913] = {.lex_state = 132}, + [1914] = {.lex_state = 132}, + [1915] = {.lex_state = 132}, + [1916] = {.lex_state = 132}, + [1917] = {.lex_state = 132}, + [1918] = {.lex_state = 132}, + [1919] = {.lex_state = 132}, + [1920] = {.lex_state = 124}, + [1921] = {.lex_state = 124}, + [1922] = {.lex_state = 118}, + [1923] = {.lex_state = 118}, + [1924] = {.lex_state = 118}, + [1925] = {.lex_state = 124}, + [1926] = {.lex_state = 124}, + [1927] = {.lex_state = 124}, + [1928] = {.lex_state = 124}, + [1929] = {.lex_state = 124}, + [1930] = {.lex_state = 124}, + [1931] = {.lex_state = 124}, + [1932] = {.lex_state = 124}, + [1933] = {.lex_state = 124}, + [1934] = {.lex_state = 124}, + [1935] = {.lex_state = 124}, + [1936] = {.lex_state = 124}, + [1937] = {.lex_state = 124}, + [1938] = {.lex_state = 132}, + [1939] = {.lex_state = 132}, + [1940] = {.lex_state = 132}, + [1941] = {.lex_state = 132}, + [1942] = {.lex_state = 132}, + [1943] = {.lex_state = 132}, + [1944] = {.lex_state = 132}, + [1945] = {.lex_state = 132}, + [1946] = {.lex_state = 132}, + [1947] = {.lex_state = 132}, + [1948] = {.lex_state = 128}, + [1949] = {.lex_state = 128}, + [1950] = {.lex_state = 132}, + [1951] = {.lex_state = 132}, + [1952] = {.lex_state = 132}, + [1953] = {.lex_state = 132}, + [1954] = {.lex_state = 132}, + [1955] = {.lex_state = 128}, + [1956] = {.lex_state = 132}, + [1957] = {.lex_state = 132}, + [1958] = {.lex_state = 132}, + [1959] = {.lex_state = 132}, + [1960] = {.lex_state = 132}, + [1961] = {.lex_state = 132}, + [1962] = {.lex_state = 132}, + [1963] = {.lex_state = 132}, + [1964] = {.lex_state = 132}, + [1965] = {.lex_state = 132}, + [1966] = {.lex_state = 128}, + [1967] = {.lex_state = 128}, + [1968] = {.lex_state = 132}, + [1969] = {.lex_state = 132}, + [1970] = {.lex_state = 132}, + [1971] = {.lex_state = 132}, + [1972] = {.lex_state = 132}, + [1973] = {.lex_state = 132}, + [1974] = {.lex_state = 132}, + [1975] = {.lex_state = 128}, + [1976] = {.lex_state = 132}, + [1977] = {.lex_state = 126}, + [1978] = {.lex_state = 132}, + [1979] = {.lex_state = 132}, + [1980] = {.lex_state = 128}, + [1981] = {.lex_state = 128}, + [1982] = {.lex_state = 132}, + [1983] = {.lex_state = 132}, + [1984] = {.lex_state = 132}, + [1985] = {.lex_state = 132}, + [1986] = {.lex_state = 132}, + [1987] = {.lex_state = 128}, + [1988] = {.lex_state = 132}, + [1989] = {.lex_state = 132}, + [1990] = {.lex_state = 132}, + [1991] = {.lex_state = 132}, + [1992] = {.lex_state = 132}, + [1993] = {.lex_state = 126}, + [1994] = {.lex_state = 132}, + [1995] = {.lex_state = 124}, + [1996] = {.lex_state = 132}, + [1997] = {.lex_state = 132}, + [1998] = {.lex_state = 132}, + [1999] = {.lex_state = 132}, + [2000] = {.lex_state = 132}, + [2001] = {.lex_state = 128}, + [2002] = {.lex_state = 132}, + [2003] = {.lex_state = 118}, + [2004] = {.lex_state = 132}, + [2005] = {.lex_state = 132}, + [2006] = {.lex_state = 118}, + [2007] = {.lex_state = 132}, + [2008] = {.lex_state = 132}, + [2009] = {.lex_state = 132}, + [2010] = {.lex_state = 132}, + [2011] = {.lex_state = 132}, + [2012] = {.lex_state = 132}, + [2013] = {.lex_state = 132}, + [2014] = {.lex_state = 132}, + [2015] = {.lex_state = 132}, + [2016] = {.lex_state = 132}, + [2017] = {.lex_state = 132}, + [2018] = {.lex_state = 132}, + [2019] = {.lex_state = 132}, + [2020] = {.lex_state = 132}, + [2021] = {.lex_state = 132}, + [2022] = {.lex_state = 132}, + [2023] = {.lex_state = 132}, + [2024] = {.lex_state = 132}, + [2025] = {.lex_state = 132}, + [2026] = {.lex_state = 132}, + [2027] = {.lex_state = 132}, + [2028] = {.lex_state = 132}, + [2029] = {.lex_state = 132}, + [2030] = {.lex_state = 132}, + [2031] = {.lex_state = 132}, + [2032] = {.lex_state = 132}, + [2033] = {.lex_state = 132}, + [2034] = {.lex_state = 132}, + [2035] = {.lex_state = 132}, + [2036] = {.lex_state = 132}, + [2037] = {.lex_state = 112}, + [2038] = {.lex_state = 118}, + [2039] = {.lex_state = 132}, + [2040] = {.lex_state = 132}, + [2041] = {.lex_state = 132}, + [2042] = {.lex_state = 132}, + [2043] = {.lex_state = 132}, + [2044] = {.lex_state = 132}, + [2045] = {.lex_state = 132}, + [2046] = {.lex_state = 132}, + [2047] = {.lex_state = 118}, + [2048] = {.lex_state = 132}, + [2049] = {.lex_state = 132}, + [2050] = {.lex_state = 132}, + [2051] = {.lex_state = 132}, + [2052] = {.lex_state = 132}, + [2053] = {.lex_state = 132}, + [2054] = {.lex_state = 132}, + [2055] = {.lex_state = 112}, + [2056] = {.lex_state = 132}, + [2057] = {.lex_state = 112}, + [2058] = {.lex_state = 132}, + [2059] = {.lex_state = 112}, + [2060] = {.lex_state = 112}, + [2061] = {.lex_state = 112}, + [2062] = {.lex_state = 118}, + [2063] = {.lex_state = 112}, + [2064] = {.lex_state = 132}, + [2065] = {.lex_state = 132}, + [2066] = {.lex_state = 132}, + [2067] = {.lex_state = 132}, + [2068] = {.lex_state = 124}, + [2069] = {.lex_state = 132}, + [2070] = {.lex_state = 132}, + [2071] = {.lex_state = 118}, + [2072] = {.lex_state = 133}, + [2073] = {.lex_state = 132}, + [2074] = {.lex_state = 132}, + [2075] = {.lex_state = 132}, + [2076] = {.lex_state = 111}, + [2077] = {.lex_state = 132}, + [2078] = {.lex_state = 118}, + [2079] = {.lex_state = 132}, + [2080] = {.lex_state = 132}, + [2081] = {.lex_state = 132}, + [2082] = {.lex_state = 134}, + [2083] = {.lex_state = 134}, + [2084] = {.lex_state = 124}, + [2085] = {.lex_state = 132}, + [2086] = {.lex_state = 133}, + [2087] = {.lex_state = 132}, + [2088] = {.lex_state = 126}, + [2089] = {.lex_state = 126}, + [2090] = {.lex_state = 126}, + [2091] = {.lex_state = 111}, + [2092] = {.lex_state = 134}, + [2093] = {.lex_state = 132}, + [2094] = {.lex_state = 124}, + [2095] = {.lex_state = 124}, + [2096] = {.lex_state = 124}, + [2097] = {.lex_state = 124}, + [2098] = {.lex_state = 124}, + [2099] = {.lex_state = 124}, + [2100] = {.lex_state = 124}, + [2101] = {.lex_state = 124}, + [2102] = {.lex_state = 124}, + [2103] = {.lex_state = 124}, + [2104] = {.lex_state = 124}, + [2105] = {.lex_state = 124}, + [2106] = {.lex_state = 124}, + [2107] = {.lex_state = 112}, + [2108] = {.lex_state = 126}, + [2109] = {.lex_state = 126}, + [2110] = {.lex_state = 126}, + [2111] = {.lex_state = 126}, + [2112] = {.lex_state = 126}, + [2113] = {.lex_state = 126}, + [2114] = {.lex_state = 126}, + [2115] = {.lex_state = 126}, + [2116] = {.lex_state = 126}, + [2117] = {.lex_state = 126}, + [2118] = {.lex_state = 126}, + [2119] = {.lex_state = 126}, + [2120] = {.lex_state = 126}, + [2121] = {.lex_state = 126}, + [2122] = {.lex_state = 126}, + [2123] = {.lex_state = 126}, + [2124] = {.lex_state = 126}, + [2125] = {.lex_state = 126}, + [2126] = {.lex_state = 126}, + [2127] = {.lex_state = 126}, + [2128] = {.lex_state = 126}, + [2129] = {.lex_state = 126}, + [2130] = {.lex_state = 126}, + [2131] = {.lex_state = 126}, + [2132] = {.lex_state = 132}, + [2133] = {.lex_state = 132}, + [2134] = {.lex_state = 132}, + [2135] = {.lex_state = 132}, + [2136] = {.lex_state = 132}, + [2137] = {.lex_state = 132}, + [2138] = {.lex_state = 132}, + [2139] = {.lex_state = 132}, + [2140] = {.lex_state = 132}, + [2141] = {.lex_state = 132}, + [2142] = {.lex_state = 126}, + [2143] = {.lex_state = 126}, + [2144] = {.lex_state = 126}, + [2145] = {.lex_state = 132}, + [2146] = {.lex_state = 126}, + [2147] = {.lex_state = 126}, + [2148] = {.lex_state = 132}, + [2149] = {.lex_state = 132}, + [2150] = {.lex_state = 132}, + [2151] = {.lex_state = 132}, + [2152] = {.lex_state = 126}, + [2153] = {.lex_state = 132}, + [2154] = {.lex_state = 126}, + [2155] = {.lex_state = 132}, + [2156] = {.lex_state = 132}, + [2157] = {.lex_state = 132}, + [2158] = {.lex_state = 126}, + [2159] = {.lex_state = 132}, + [2160] = {.lex_state = 126}, + [2161] = {.lex_state = 132}, + [2162] = {.lex_state = 126}, + [2163] = {.lex_state = 132}, + [2164] = {.lex_state = 126}, + [2165] = {.lex_state = 126}, + [2166] = {.lex_state = 132}, + [2167] = {.lex_state = 132}, + [2168] = {.lex_state = 132}, + [2169] = {.lex_state = 132}, + [2170] = {.lex_state = 132}, + [2171] = {.lex_state = 126}, + [2172] = {.lex_state = 126}, + [2173] = {.lex_state = 126}, + [2174] = {.lex_state = 132}, + [2175] = {.lex_state = 126}, + [2176] = {.lex_state = 126}, + [2177] = {.lex_state = 132}, + [2178] = {.lex_state = 126}, + [2179] = {.lex_state = 132}, + [2180] = {.lex_state = 126}, + [2181] = {.lex_state = 132}, + [2182] = {.lex_state = 132}, + [2183] = {.lex_state = 132}, + [2184] = {.lex_state = 126}, + [2185] = {.lex_state = 132}, + [2186] = {.lex_state = 132}, + [2187] = {.lex_state = 132}, + [2188] = {.lex_state = 132}, + [2189] = {.lex_state = 126}, + [2190] = {.lex_state = 132}, + [2191] = {.lex_state = 132}, + [2192] = {.lex_state = 126}, + [2193] = {.lex_state = 126}, + [2194] = {.lex_state = 124}, + [2195] = {.lex_state = 132}, + [2196] = {.lex_state = 126}, + [2197] = {.lex_state = 126}, + [2198] = {.lex_state = 132}, + [2199] = {.lex_state = 126}, + [2200] = {.lex_state = 126}, + [2201] = {.lex_state = 126}, + [2202] = {.lex_state = 126}, + [2203] = {.lex_state = 132}, + [2204] = {.lex_state = 126}, + [2205] = {.lex_state = 126}, + [2206] = {.lex_state = 126}, + [2207] = {.lex_state = 126}, + [2208] = {.lex_state = 126}, + [2209] = {.lex_state = 132}, + [2210] = {.lex_state = 126}, + [2211] = {.lex_state = 126}, + [2212] = {.lex_state = 132}, + [2213] = {.lex_state = 126}, + [2214] = {.lex_state = 126}, + [2215] = {.lex_state = 132}, + [2216] = {.lex_state = 133}, + [2217] = {.lex_state = 133}, + [2218] = {.lex_state = 126}, + [2219] = {.lex_state = 126}, + [2220] = {.lex_state = 132}, + [2221] = {.lex_state = 133}, + [2222] = {.lex_state = 133}, + [2223] = {.lex_state = 126}, + [2224] = {.lex_state = 126}, + [2225] = {.lex_state = 132}, + [2226] = {.lex_state = 133}, + [2227] = {.lex_state = 126}, + [2228] = {.lex_state = 132}, + [2229] = {.lex_state = 126}, + [2230] = {.lex_state = 126}, + [2231] = {.lex_state = 126}, + [2232] = {.lex_state = 126}, + [2233] = {.lex_state = 133}, + [2234] = {.lex_state = 132}, + [2235] = {.lex_state = 126}, + [2236] = {.lex_state = 126}, + [2237] = {.lex_state = 126}, + [2238] = {.lex_state = 126}, + [2239] = {.lex_state = 126}, + [2240] = {.lex_state = 126}, + [2241] = {.lex_state = 126}, + [2242] = {.lex_state = 126}, + [2243] = {.lex_state = 126}, + [2244] = {.lex_state = 126}, + [2245] = {.lex_state = 126}, + [2246] = {.lex_state = 132}, + [2247] = {.lex_state = 133}, + [2248] = {.lex_state = 126}, + [2249] = {.lex_state = 132}, + [2250] = {.lex_state = 133}, + [2251] = {.lex_state = 133}, + [2252] = {.lex_state = 133}, + [2253] = {.lex_state = 133}, + [2254] = {.lex_state = 133}, + [2255] = {.lex_state = 133}, + [2256] = {.lex_state = 133}, + [2257] = {.lex_state = 132}, + [2258] = {.lex_state = 133}, + [2259] = {.lex_state = 132}, + [2260] = {.lex_state = 126}, + [2261] = {.lex_state = 132}, + [2262] = {.lex_state = 133}, + [2263] = {.lex_state = 133}, + [2264] = {.lex_state = 126}, + [2265] = {.lex_state = 132}, + [2266] = {.lex_state = 132}, + [2267] = {.lex_state = 126}, + [2268] = {.lex_state = 132}, + [2269] = {.lex_state = 133}, + [2270] = {.lex_state = 126}, + [2271] = {.lex_state = 132}, + [2272] = {.lex_state = 133}, + [2273] = {.lex_state = 132}, + [2274] = {.lex_state = 133}, + [2275] = {.lex_state = 132}, + [2276] = {.lex_state = 132}, + [2277] = {.lex_state = 126}, + [2278] = {.lex_state = 132}, + [2279] = {.lex_state = 133}, + [2280] = {.lex_state = 133}, + [2281] = {.lex_state = 133}, + [2282] = {.lex_state = 132}, + [2283] = {.lex_state = 133}, + [2284] = {.lex_state = 133}, + [2285] = {.lex_state = 133}, + [2286] = {.lex_state = 133}, + [2287] = {.lex_state = 133}, + [2288] = {.lex_state = 133}, + [2289] = {.lex_state = 133}, + [2290] = {.lex_state = 133}, + [2291] = {.lex_state = 133}, + [2292] = {.lex_state = 133}, + [2293] = {.lex_state = 132}, + [2294] = {.lex_state = 133}, + [2295] = {.lex_state = 133}, + [2296] = {.lex_state = 133}, + [2297] = {.lex_state = 133}, + [2298] = {.lex_state = 133}, + [2299] = {.lex_state = 133}, + [2300] = {.lex_state = 133}, + [2301] = {.lex_state = 133}, + [2302] = {.lex_state = 133}, + [2303] = {.lex_state = 133}, + [2304] = {.lex_state = 133}, + [2305] = {.lex_state = 133}, + [2306] = {.lex_state = 133}, + [2307] = {.lex_state = 132}, + [2308] = {.lex_state = 126}, + [2309] = {.lex_state = 132}, + [2310] = {.lex_state = 126}, + [2311] = {.lex_state = 132}, + [2312] = {.lex_state = 126}, + [2313] = {.lex_state = 132}, + [2314] = {.lex_state = 132}, + [2315] = {.lex_state = 133}, + [2316] = {.lex_state = 132}, + [2317] = {.lex_state = 133}, + [2318] = {.lex_state = 133}, + [2319] = {.lex_state = 126}, + [2320] = {.lex_state = 133}, + [2321] = {.lex_state = 132}, + [2322] = {.lex_state = 126}, + [2323] = {.lex_state = 133}, + [2324] = {.lex_state = 132}, + [2325] = {.lex_state = 134}, + [2326] = {.lex_state = 133}, + [2327] = {.lex_state = 133}, + [2328] = {.lex_state = 132}, + [2329] = {.lex_state = 132}, + [2330] = {.lex_state = 132}, + [2331] = {.lex_state = 126}, + [2332] = {.lex_state = 133}, + [2333] = {.lex_state = 132}, + [2334] = {.lex_state = 133}, + [2335] = {.lex_state = 126}, + [2336] = {.lex_state = 132}, + [2337] = {.lex_state = 133}, + [2338] = {.lex_state = 133}, + [2339] = {.lex_state = 133}, + [2340] = {.lex_state = 132}, + [2341] = {.lex_state = 132}, + [2342] = {.lex_state = 132}, + [2343] = {.lex_state = 132}, + [2344] = {.lex_state = 132}, + [2345] = {.lex_state = 133}, + [2346] = {.lex_state = 133}, + [2347] = {.lex_state = 133}, + [2348] = {.lex_state = 132}, + [2349] = {.lex_state = 133}, + [2350] = {.lex_state = 126}, + [2351] = {.lex_state = 132}, + [2352] = {.lex_state = 133}, + [2353] = {.lex_state = 132}, + [2354] = {.lex_state = 132}, + [2355] = {.lex_state = 132}, + [2356] = {.lex_state = 134}, + [2357] = {.lex_state = 132}, + [2358] = {.lex_state = 133}, + [2359] = {.lex_state = 132}, + [2360] = {.lex_state = 134}, + [2361] = {.lex_state = 134}, + [2362] = {.lex_state = 134}, + [2363] = {.lex_state = 132}, + [2364] = {.lex_state = 133}, + [2365] = {.lex_state = 132}, + [2366] = {.lex_state = 132}, + [2367] = {.lex_state = 134}, + [2368] = {.lex_state = 134}, + [2369] = {.lex_state = 133}, + [2370] = {.lex_state = 133}, + [2371] = {.lex_state = 134}, + [2372] = {.lex_state = 133}, + [2373] = {.lex_state = 134}, + [2374] = {.lex_state = 132}, + [2375] = {.lex_state = 132}, + [2376] = {.lex_state = 132}, + [2377] = {.lex_state = 133}, + [2378] = {.lex_state = 132}, + [2379] = {.lex_state = 132}, + [2380] = {.lex_state = 133}, + [2381] = {.lex_state = 134}, + [2382] = {.lex_state = 134}, + [2383] = {.lex_state = 133}, + [2384] = {.lex_state = 133}, + [2385] = {.lex_state = 132}, + [2386] = {.lex_state = 133}, + [2387] = {.lex_state = 132}, + [2388] = {.lex_state = 132}, + [2389] = {.lex_state = 133}, + [2390] = {.lex_state = 133}, + [2391] = {.lex_state = 133}, + [2392] = {.lex_state = 133}, + [2393] = {.lex_state = 133}, + [2394] = {.lex_state = 133}, + [2395] = {.lex_state = 133}, + [2396] = {.lex_state = 133}, + [2397] = {.lex_state = 132}, + [2398] = {.lex_state = 132}, + [2399] = {.lex_state = 133}, + [2400] = {.lex_state = 132}, + [2401] = {.lex_state = 133}, + [2402] = {.lex_state = 134}, + [2403] = {.lex_state = 133}, + [2404] = {.lex_state = 133}, + [2405] = {.lex_state = 132}, + [2406] = {.lex_state = 133}, + [2407] = {.lex_state = 132}, + [2408] = {.lex_state = 132}, + [2409] = {.lex_state = 132}, + [2410] = {.lex_state = 133}, + [2411] = {.lex_state = 133}, + [2412] = {.lex_state = 133}, + [2413] = {.lex_state = 132}, + [2414] = {.lex_state = 132}, + [2415] = {.lex_state = 132}, + [2416] = {.lex_state = 133}, + [2417] = {.lex_state = 132}, + [2418] = {.lex_state = 133}, + [2419] = {.lex_state = 133}, + [2420] = {.lex_state = 133}, + [2421] = {.lex_state = 132}, + [2422] = {.lex_state = 133}, + [2423] = {.lex_state = 112}, + [2424] = {.lex_state = 132}, + [2425] = {.lex_state = 132}, + [2426] = {.lex_state = 132}, + [2427] = {.lex_state = 133}, + [2428] = {.lex_state = 133}, + [2429] = {.lex_state = 133}, + [2430] = {.lex_state = 133}, + [2431] = {.lex_state = 133}, + [2432] = {.lex_state = 105}, + [2433] = {.lex_state = 105}, + [2434] = {.lex_state = 105}, + [2435] = {.lex_state = 105}, + [2436] = {.lex_state = 105}, + [2437] = {.lex_state = 105}, + [2438] = {.lex_state = 105}, + [2439] = {.lex_state = 105}, + [2440] = {.lex_state = 105}, + [2441] = {.lex_state = 105}, + [2442] = {.lex_state = 105}, + [2443] = {.lex_state = 105}, + [2444] = {.lex_state = 105}, + [2445] = {.lex_state = 105}, + [2446] = {.lex_state = 105}, + [2447] = {.lex_state = 105}, + [2448] = {.lex_state = 105}, + [2449] = {.lex_state = 132}, + [2450] = {.lex_state = 105}, + [2451] = {.lex_state = 105}, + [2452] = {.lex_state = 105}, + [2453] = {.lex_state = 105}, + [2454] = {.lex_state = 105}, + [2455] = {.lex_state = 105}, + [2456] = {.lex_state = 105}, + [2457] = {.lex_state = 105}, + [2458] = {.lex_state = 105}, + [2459] = {.lex_state = 105}, + [2460] = {.lex_state = 105}, + [2461] = {.lex_state = 105}, + [2462] = {.lex_state = 105}, + [2463] = {.lex_state = 105}, + [2464] = {.lex_state = 105}, + [2465] = {.lex_state = 105}, + [2466] = {.lex_state = 105}, + [2467] = {.lex_state = 105}, + [2468] = {.lex_state = 105}, + [2469] = {.lex_state = 105}, + [2470] = {.lex_state = 105}, + [2471] = {.lex_state = 105}, + [2472] = {.lex_state = 105}, + [2473] = {.lex_state = 105}, + [2474] = {.lex_state = 105}, + [2475] = {.lex_state = 105}, + [2476] = {.lex_state = 105}, + [2477] = {.lex_state = 105}, + [2478] = {.lex_state = 105}, + [2479] = {.lex_state = 105}, + [2480] = {.lex_state = 105}, + [2481] = {.lex_state = 105}, + [2482] = {.lex_state = 105}, + [2483] = {.lex_state = 105}, + [2484] = {.lex_state = 105}, + [2485] = {.lex_state = 105}, + [2486] = {.lex_state = 105}, + [2487] = {.lex_state = 105}, + [2488] = {.lex_state = 132}, + [2489] = {.lex_state = 132}, + [2490] = {.lex_state = 132}, + [2491] = {.lex_state = 132}, + [2492] = {.lex_state = 132}, + [2493] = {.lex_state = 132}, + [2494] = {.lex_state = 132}, + [2495] = {.lex_state = 132}, + [2496] = {.lex_state = 132}, + [2497] = {.lex_state = 132}, + [2498] = {.lex_state = 128}, + [2499] = {.lex_state = 128}, + [2500] = {.lex_state = 128}, + [2501] = {.lex_state = 128}, + [2502] = {.lex_state = 128}, + [2503] = {.lex_state = 128}, + [2504] = {.lex_state = 128}, + [2505] = {.lex_state = 128}, + [2506] = {.lex_state = 128}, + [2507] = {.lex_state = 128}, + [2508] = {.lex_state = 132}, + [2509] = {.lex_state = 128}, + [2510] = {.lex_state = 128}, + [2511] = {.lex_state = 132}, + [2512] = {.lex_state = 132}, + [2513] = {.lex_state = 132}, + [2514] = {.lex_state = 132}, + [2515] = {.lex_state = 132}, + [2516] = {.lex_state = 132}, + [2517] = {.lex_state = 132}, + [2518] = {.lex_state = 111}, + [2519] = {.lex_state = 132}, + [2520] = {.lex_state = 132}, + [2521] = {.lex_state = 125}, + [2522] = {.lex_state = 132}, + [2523] = {.lex_state = 132}, + [2524] = {.lex_state = 132}, + [2525] = {.lex_state = 128}, + [2526] = {.lex_state = 128}, + [2527] = {.lex_state = 128}, + [2528] = {.lex_state = 132}, + [2529] = {.lex_state = 128}, + [2530] = {.lex_state = 111}, + [2531] = {.lex_state = 111}, + [2532] = {.lex_state = 111}, + [2533] = {.lex_state = 125}, + [2534] = {.lex_state = 111}, + [2535] = {.lex_state = 132}, + [2536] = {.lex_state = 132}, + [2537] = {.lex_state = 94}, + [2538] = {.lex_state = 111}, + [2539] = {.lex_state = 111}, + [2540] = {.lex_state = 111}, + [2541] = {.lex_state = 111}, + [2542] = {.lex_state = 111}, + [2543] = {.lex_state = 132}, + [2544] = {.lex_state = 132}, + [2545] = {.lex_state = 132}, + [2546] = {.lex_state = 111}, + [2547] = {.lex_state = 111}, + [2548] = {.lex_state = 111}, + [2549] = {.lex_state = 111}, + [2550] = {.lex_state = 111}, + [2551] = {.lex_state = 111}, + [2552] = {.lex_state = 111}, + [2553] = {.lex_state = 132}, + [2554] = {.lex_state = 132}, + [2555] = {.lex_state = 132}, + [2556] = {.lex_state = 132}, + [2557] = {.lex_state = 111}, + [2558] = {.lex_state = 111}, + [2559] = {.lex_state = 132}, + [2560] = {.lex_state = 132}, + [2561] = {.lex_state = 105}, + [2562] = {.lex_state = 132}, + [2563] = {.lex_state = 105}, + [2564] = {.lex_state = 105}, + [2565] = {.lex_state = 132}, + [2566] = {.lex_state = 132}, + [2567] = {.lex_state = 132}, + [2568] = {.lex_state = 132}, + [2569] = {.lex_state = 132}, + [2570] = {.lex_state = 132}, + [2571] = {.lex_state = 132}, + [2572] = {.lex_state = 111}, + [2573] = {.lex_state = 105}, + [2574] = {.lex_state = 111}, + [2575] = {.lex_state = 105}, + [2576] = {.lex_state = 125}, + [2577] = {.lex_state = 105}, + [2578] = {.lex_state = 105}, + [2579] = {.lex_state = 105}, + [2580] = {.lex_state = 132}, + [2581] = {.lex_state = 132}, + [2582] = {.lex_state = 105}, + [2583] = {.lex_state = 105}, + [2584] = {.lex_state = 111}, + [2585] = {.lex_state = 105}, + [2586] = {.lex_state = 105}, + [2587] = {.lex_state = 132}, + [2588] = {.lex_state = 132}, + [2589] = {.lex_state = 105}, + [2590] = {.lex_state = 105}, + [2591] = {.lex_state = 105}, + [2592] = {.lex_state = 105}, + [2593] = {.lex_state = 132}, + [2594] = {.lex_state = 132}, + [2595] = {.lex_state = 132}, + [2596] = {.lex_state = 132}, + [2597] = {.lex_state = 132}, + [2598] = {.lex_state = 132}, + [2599] = {.lex_state = 132}, + [2600] = {.lex_state = 132}, + [2601] = {.lex_state = 132}, + [2602] = {.lex_state = 125}, + [2603] = {.lex_state = 125}, + [2604] = {.lex_state = 125}, + [2605] = {.lex_state = 125}, + [2606] = {.lex_state = 125}, + [2607] = {.lex_state = 125}, + [2608] = {.lex_state = 125}, + [2609] = {.lex_state = 125}, + [2610] = {.lex_state = 125}, + [2611] = {.lex_state = 125}, + [2612] = {.lex_state = 125}, + [2613] = {.lex_state = 125}, + [2614] = {.lex_state = 125}, + [2615] = {.lex_state = 125}, + [2616] = {.lex_state = 125}, + [2617] = {.lex_state = 125}, + [2618] = {.lex_state = 125}, + [2619] = {.lex_state = 125}, + [2620] = {.lex_state = 125}, + [2621] = {.lex_state = 125}, + [2622] = {.lex_state = 125}, + [2623] = {.lex_state = 125}, + [2624] = {.lex_state = 125}, + [2625] = {.lex_state = 125}, + [2626] = {.lex_state = 125}, + [2627] = {.lex_state = 125}, + [2628] = {.lex_state = 125}, + [2629] = {.lex_state = 125}, + [2630] = {.lex_state = 125}, + [2631] = {.lex_state = 125}, + [2632] = {.lex_state = 125}, + [2633] = {.lex_state = 125}, + [2634] = {.lex_state = 125}, + [2635] = {.lex_state = 125}, + [2636] = {.lex_state = 125}, + [2637] = {.lex_state = 111}, + [2638] = {.lex_state = 125}, + [2639] = {.lex_state = 125}, + [2640] = {.lex_state = 125}, + [2641] = {.lex_state = 125}, + [2642] = {.lex_state = 125}, + [2643] = {.lex_state = 111}, + [2644] = {.lex_state = 125}, + [2645] = {.lex_state = 125}, + [2646] = {.lex_state = 125}, + [2647] = {.lex_state = 125}, + [2648] = {.lex_state = 125}, + [2649] = {.lex_state = 125}, + [2650] = {.lex_state = 125}, + [2651] = {.lex_state = 125}, + [2652] = {.lex_state = 125}, + [2653] = {.lex_state = 125}, + [2654] = {.lex_state = 125}, + [2655] = {.lex_state = 125}, + [2656] = {.lex_state = 125}, + [2657] = {.lex_state = 125}, + [2658] = {.lex_state = 125}, + [2659] = {.lex_state = 125}, + [2660] = {.lex_state = 125}, + [2661] = {.lex_state = 125}, + [2662] = {.lex_state = 125}, + [2663] = {.lex_state = 125}, + [2664] = {.lex_state = 125}, + [2665] = {.lex_state = 125}, + [2666] = {.lex_state = 125}, + [2667] = {.lex_state = 125}, + [2668] = {.lex_state = 125}, + [2669] = {.lex_state = 125}, + [2670] = {.lex_state = 111}, + [2671] = {.lex_state = 130}, + [2672] = {.lex_state = 130}, + [2673] = {.lex_state = 130}, + [2674] = {.lex_state = 111}, + [2675] = {.lex_state = 130}, + [2676] = {.lex_state = 130}, + [2677] = {.lex_state = 132}, + [2678] = {.lex_state = 132}, + [2679] = {.lex_state = 132}, + [2680] = {.lex_state = 132}, + [2681] = {.lex_state = 94}, + [2682] = {.lex_state = 132}, + [2683] = {.lex_state = 132}, + [2684] = {.lex_state = 132}, + [2685] = {.lex_state = 132}, + [2686] = {.lex_state = 132}, + [2687] = {.lex_state = 132}, + [2688] = {.lex_state = 132}, + [2689] = {.lex_state = 132}, + [2690] = {.lex_state = 132}, + [2691] = {.lex_state = 132}, + [2692] = {.lex_state = 132}, + [2693] = {.lex_state = 132}, + [2694] = {.lex_state = 132}, + [2695] = {.lex_state = 132}, + [2696] = {.lex_state = 132}, + [2697] = {.lex_state = 132}, + [2698] = {.lex_state = 132}, + [2699] = {.lex_state = 94}, + [2700] = {.lex_state = 133}, + [2701] = {.lex_state = 132}, + [2702] = {.lex_state = 132}, + [2703] = {.lex_state = 132}, + [2704] = {.lex_state = 132}, + [2705] = {.lex_state = 132}, + [2706] = {.lex_state = 132}, + [2707] = {.lex_state = 132}, + [2708] = {.lex_state = 132}, + [2709] = {.lex_state = 132}, + [2710] = {.lex_state = 132}, + [2711] = {.lex_state = 132}, + [2712] = {.lex_state = 133}, + [2713] = {.lex_state = 133}, + [2714] = {.lex_state = 133}, + [2715] = {.lex_state = 133}, + [2716] = {.lex_state = 133}, + [2717] = {.lex_state = 133}, + [2718] = {.lex_state = 132}, + [2719] = {.lex_state = 133}, + [2720] = {.lex_state = 133}, + [2721] = {.lex_state = 133}, + [2722] = {.lex_state = 133}, + [2723] = {.lex_state = 133}, + [2724] = {.lex_state = 133}, + [2725] = {.lex_state = 133}, + [2726] = {.lex_state = 133}, + [2727] = {.lex_state = 133}, + [2728] = {.lex_state = 133}, + [2729] = {.lex_state = 133}, + [2730] = {.lex_state = 133}, + [2731] = {.lex_state = 133}, + [2732] = {.lex_state = 133}, + [2733] = {.lex_state = 133}, + [2734] = {.lex_state = 133}, + [2735] = {.lex_state = 133}, + [2736] = {.lex_state = 132}, + [2737] = {.lex_state = 132}, + [2738] = {.lex_state = 132}, + [2739] = {.lex_state = 133}, + [2740] = {.lex_state = 133}, + [2741] = {.lex_state = 133}, + [2742] = {.lex_state = 133}, + [2743] = {.lex_state = 133}, + [2744] = {.lex_state = 133}, + [2745] = {.lex_state = 133}, + [2746] = {.lex_state = 133}, + [2747] = {.lex_state = 133}, + [2748] = {.lex_state = 133}, + [2749] = {.lex_state = 132}, + [2750] = {.lex_state = 132}, + [2751] = {.lex_state = 133}, + [2752] = {.lex_state = 133}, + [2753] = {.lex_state = 132}, + [2754] = {.lex_state = 132}, + [2755] = {.lex_state = 132}, + [2756] = {.lex_state = 132}, + [2757] = {.lex_state = 132}, + [2758] = {.lex_state = 132}, + [2759] = {.lex_state = 132}, + [2760] = {.lex_state = 132}, + [2761] = {.lex_state = 133}, + [2762] = {.lex_state = 132}, + [2763] = {.lex_state = 132}, + [2764] = {.lex_state = 132}, + [2765] = {.lex_state = 132}, + [2766] = {.lex_state = 132}, + [2767] = {.lex_state = 132}, + [2768] = {.lex_state = 132}, + [2769] = {.lex_state = 132}, + [2770] = {.lex_state = 132}, + [2771] = {.lex_state = 132}, + [2772] = {.lex_state = 132}, + [2773] = {.lex_state = 132}, + [2774] = {.lex_state = 132}, + [2775] = {.lex_state = 132}, + [2776] = {.lex_state = 132}, + [2777] = {.lex_state = 132}, + [2778] = {.lex_state = 132}, + [2779] = {.lex_state = 132}, + [2780] = {.lex_state = 132}, + [2781] = {.lex_state = 132}, + [2782] = {.lex_state = 132}, + [2783] = {.lex_state = 132}, + [2784] = {.lex_state = 132}, + [2785] = {.lex_state = 132}, + [2786] = {.lex_state = 133}, + [2787] = {.lex_state = 133}, + [2788] = {.lex_state = 133}, + [2789] = {.lex_state = 133}, + [2790] = {.lex_state = 132}, + [2791] = {.lex_state = 132}, + [2792] = {.lex_state = 132}, + [2793] = {.lex_state = 132}, + [2794] = {.lex_state = 132}, + [2795] = {.lex_state = 132}, + [2796] = {.lex_state = 132}, + [2797] = {.lex_state = 132}, + [2798] = {.lex_state = 132}, + [2799] = {.lex_state = 132}, + [2800] = {.lex_state = 132}, + [2801] = {.lex_state = 132}, + [2802] = {.lex_state = 132}, + [2803] = {.lex_state = 132}, + [2804] = {.lex_state = 132}, + [2805] = {.lex_state = 132}, + [2806] = {.lex_state = 132}, + [2807] = {.lex_state = 132}, + [2808] = {.lex_state = 132}, + [2809] = {.lex_state = 132}, + [2810] = {.lex_state = 132}, + [2811] = {.lex_state = 132}, + [2812] = {.lex_state = 132}, + [2813] = {.lex_state = 132}, + [2814] = {.lex_state = 132}, + [2815] = {.lex_state = 132}, + [2816] = {.lex_state = 132}, + [2817] = {.lex_state = 132}, + [2818] = {.lex_state = 132}, + [2819] = {.lex_state = 132}, + [2820] = {.lex_state = 132}, + [2821] = {.lex_state = 132}, + [2822] = {.lex_state = 132}, + [2823] = {.lex_state = 132}, + [2824] = {.lex_state = 132}, + [2825] = {.lex_state = 132}, + [2826] = {.lex_state = 132}, + [2827] = {.lex_state = 132}, + [2828] = {.lex_state = 132}, + [2829] = {.lex_state = 132}, + [2830] = {.lex_state = 132}, + [2831] = {.lex_state = 132}, + [2832] = {.lex_state = 132}, + [2833] = {.lex_state = 132}, + [2834] = {.lex_state = 132}, + [2835] = {.lex_state = 132}, + [2836] = {.lex_state = 132}, + [2837] = {.lex_state = 132}, + [2838] = {.lex_state = 132}, + [2839] = {.lex_state = 132}, + [2840] = {.lex_state = 132}, + [2841] = {.lex_state = 132}, + [2842] = {.lex_state = 132}, + [2843] = {.lex_state = 132}, + [2844] = {.lex_state = 132}, + [2845] = {.lex_state = 132}, + [2846] = {.lex_state = 132}, + [2847] = {.lex_state = 132}, + [2848] = {.lex_state = 132}, + [2849] = {.lex_state = 132}, + [2850] = {.lex_state = 132}, + [2851] = {.lex_state = 132}, + [2852] = {.lex_state = 132}, + [2853] = {.lex_state = 132}, + [2854] = {.lex_state = 132}, + [2855] = {.lex_state = 132}, + [2856] = {.lex_state = 132}, + [2857] = {.lex_state = 132}, + [2858] = {.lex_state = 132}, + [2859] = {.lex_state = 132}, + [2860] = {.lex_state = 132}, + [2861] = {.lex_state = 132}, + [2862] = {.lex_state = 132}, + [2863] = {.lex_state = 132}, + [2864] = {.lex_state = 132}, + [2865] = {.lex_state = 132}, + [2866] = {.lex_state = 132}, + [2867] = {.lex_state = 132}, + [2868] = {.lex_state = 132}, + [2869] = {.lex_state = 132}, + [2870] = {.lex_state = 132}, + [2871] = {.lex_state = 132}, + [2872] = {.lex_state = 132}, + [2873] = {.lex_state = 132}, + [2874] = {.lex_state = 95}, + [2875] = {.lex_state = 132}, + [2876] = {.lex_state = 132}, + [2877] = {.lex_state = 132}, + [2878] = {.lex_state = 132}, + [2879] = {.lex_state = 132}, + [2880] = {.lex_state = 132}, + [2881] = {.lex_state = 132}, + [2882] = {.lex_state = 132}, + [2883] = {.lex_state = 132}, + [2884] = {.lex_state = 132}, + [2885] = {.lex_state = 132}, + [2886] = {.lex_state = 132}, + [2887] = {.lex_state = 132}, + [2888] = {.lex_state = 132}, + [2889] = {.lex_state = 132}, + [2890] = {.lex_state = 132}, + [2891] = {.lex_state = 132}, + [2892] = {.lex_state = 132}, + [2893] = {.lex_state = 132}, + [2894] = {.lex_state = 132}, + [2895] = {.lex_state = 132}, + [2896] = {.lex_state = 132}, + [2897] = {.lex_state = 132}, + [2898] = {.lex_state = 132}, + [2899] = {.lex_state = 132}, + [2900] = {.lex_state = 132}, + [2901] = {.lex_state = 132}, + [2902] = {.lex_state = 132}, + [2903] = {.lex_state = 132}, + [2904] = {.lex_state = 132}, + [2905] = {.lex_state = 132}, + [2906] = {.lex_state = 132}, + [2907] = {.lex_state = 132}, + [2908] = {.lex_state = 132}, + [2909] = {.lex_state = 132}, + [2910] = {.lex_state = 132}, + [2911] = {.lex_state = 132}, + [2912] = {.lex_state = 132}, + [2913] = {.lex_state = 132}, + [2914] = {.lex_state = 132}, + [2915] = {.lex_state = 132}, + [2916] = {.lex_state = 132}, + [2917] = {.lex_state = 132}, + [2918] = {.lex_state = 132}, + [2919] = {.lex_state = 132}, + [2920] = {.lex_state = 132}, + [2921] = {.lex_state = 132}, + [2922] = {.lex_state = 132}, + [2923] = {.lex_state = 132}, + [2924] = {.lex_state = 132}, + [2925] = {.lex_state = 132}, + [2926] = {.lex_state = 132}, + [2927] = {.lex_state = 132}, + [2928] = {.lex_state = 132}, + [2929] = {.lex_state = 132}, + [2930] = {.lex_state = 132}, + [2931] = {.lex_state = 124}, + [2932] = {.lex_state = 132}, + [2933] = {.lex_state = 132}, + [2934] = {.lex_state = 132}, + [2935] = {.lex_state = 132}, + [2936] = {.lex_state = 132}, + [2937] = {.lex_state = 132}, + [2938] = {.lex_state = 132}, + [2939] = {.lex_state = 132}, + [2940] = {.lex_state = 132}, + [2941] = {.lex_state = 124}, + [2942] = {.lex_state = 132}, + [2943] = {.lex_state = 132}, + [2944] = {.lex_state = 132}, + [2945] = {.lex_state = 132}, + [2946] = {.lex_state = 132}, + [2947] = {.lex_state = 132}, + [2948] = {.lex_state = 132}, + [2949] = {.lex_state = 132}, + [2950] = {.lex_state = 132}, + [2951] = {.lex_state = 132}, + [2952] = {.lex_state = 132}, + [2953] = {.lex_state = 132}, + [2954] = {.lex_state = 132}, + [2955] = {.lex_state = 132}, + [2956] = {.lex_state = 132}, + [2957] = {.lex_state = 132}, + [2958] = {.lex_state = 132}, + [2959] = {.lex_state = 132}, + [2960] = {.lex_state = 132}, + [2961] = {.lex_state = 132}, + [2962] = {.lex_state = 132}, + [2963] = {.lex_state = 132}, + [2964] = {.lex_state = 132}, + [2965] = {.lex_state = 132}, + [2966] = {.lex_state = 132}, + [2967] = {.lex_state = 132}, + [2968] = {.lex_state = 132}, + [2969] = {.lex_state = 132}, + [2970] = {.lex_state = 132}, + [2971] = {.lex_state = 132}, + [2972] = {.lex_state = 132}, + [2973] = {.lex_state = 132}, + [2974] = {.lex_state = 132}, + [2975] = {.lex_state = 132}, + [2976] = {.lex_state = 132}, + [2977] = {.lex_state = 132}, + [2978] = {.lex_state = 132}, + [2979] = {.lex_state = 132}, + [2980] = {.lex_state = 132}, + [2981] = {.lex_state = 132}, + [2982] = {.lex_state = 132}, + [2983] = {.lex_state = 132}, + [2984] = {.lex_state = 132}, + [2985] = {.lex_state = 132}, + [2986] = {.lex_state = 132}, + [2987] = {.lex_state = 132}, + [2988] = {.lex_state = 132}, + [2989] = {.lex_state = 132}, + [2990] = {.lex_state = 132}, + [2991] = {.lex_state = 132}, + [2992] = {.lex_state = 132}, + [2993] = {.lex_state = 132}, + [2994] = {.lex_state = 132}, + [2995] = {.lex_state = 132}, + [2996] = {.lex_state = 132}, + [2997] = {.lex_state = 132}, + [2998] = {.lex_state = 132}, + [2999] = {.lex_state = 132}, + [3000] = {.lex_state = 132}, + [3001] = {.lex_state = 132}, + [3002] = {.lex_state = 132}, + [3003] = {.lex_state = 132}, + [3004] = {.lex_state = 132}, + [3005] = {.lex_state = 132}, + [3006] = {.lex_state = 132}, + [3007] = {.lex_state = 95}, + [3008] = {.lex_state = 132}, + [3009] = {.lex_state = 132}, + [3010] = {.lex_state = 132}, + [3011] = {.lex_state = 132}, + [3012] = {.lex_state = 132}, + [3013] = {.lex_state = 132}, + [3014] = {.lex_state = 132}, + [3015] = {.lex_state = 132}, + [3016] = {.lex_state = 132}, + [3017] = {.lex_state = 132}, + [3018] = {.lex_state = 132}, + [3019] = {.lex_state = 132}, + [3020] = {.lex_state = 132}, + [3021] = {.lex_state = 132}, + [3022] = {.lex_state = 132}, + [3023] = {.lex_state = 132}, + [3024] = {.lex_state = 132}, + [3025] = {.lex_state = 132}, + [3026] = {.lex_state = 95}, + [3027] = {.lex_state = 132}, + [3028] = {.lex_state = 132}, + [3029] = {.lex_state = 132}, + [3030] = {.lex_state = 132}, + [3031] = {.lex_state = 132}, + [3032] = {.lex_state = 132}, + [3033] = {.lex_state = 132}, + [3034] = {.lex_state = 132}, + [3035] = {.lex_state = 132}, + [3036] = {.lex_state = 132}, + [3037] = {.lex_state = 132}, + [3038] = {.lex_state = 132}, + [3039] = {.lex_state = 132}, + [3040] = {.lex_state = 132}, + [3041] = {.lex_state = 132}, + [3042] = {.lex_state = 132}, + [3043] = {.lex_state = 132}, + [3044] = {.lex_state = 132}, + [3045] = {.lex_state = 132}, + [3046] = {.lex_state = 132}, + [3047] = {.lex_state = 132}, + [3048] = {.lex_state = 132}, + [3049] = {.lex_state = 124}, + [3050] = {.lex_state = 132}, + [3051] = {.lex_state = 132}, + [3052] = {.lex_state = 132}, + [3053] = {.lex_state = 132}, + [3054] = {.lex_state = 132}, + [3055] = {.lex_state = 132}, + [3056] = {.lex_state = 132}, + [3057] = {.lex_state = 132}, + [3058] = {.lex_state = 132}, + [3059] = {.lex_state = 132}, + [3060] = {.lex_state = 132}, + [3061] = {.lex_state = 132}, + [3062] = {.lex_state = 124}, + [3063] = {.lex_state = 132}, + [3064] = {.lex_state = 132}, + [3065] = {.lex_state = 132}, + [3066] = {.lex_state = 132}, + [3067] = {.lex_state = 132}, + [3068] = {.lex_state = 132}, + [3069] = {.lex_state = 132}, + [3070] = {.lex_state = 132}, + [3071] = {.lex_state = 132}, + [3072] = {.lex_state = 132}, + [3073] = {.lex_state = 132}, + [3074] = {.lex_state = 132}, + [3075] = {.lex_state = 132}, + [3076] = {.lex_state = 132}, + [3077] = {.lex_state = 132}, + [3078] = {.lex_state = 132}, + [3079] = {.lex_state = 132}, + [3080] = {.lex_state = 132}, + [3081] = {.lex_state = 132}, + [3082] = {.lex_state = 132}, + [3083] = {.lex_state = 132}, + [3084] = {.lex_state = 132}, + [3085] = {.lex_state = 132}, + [3086] = {.lex_state = 132}, + [3087] = {.lex_state = 132}, + [3088] = {.lex_state = 132}, + [3089] = {.lex_state = 132}, + [3090] = {.lex_state = 132}, + [3091] = {.lex_state = 132}, + [3092] = {.lex_state = 132}, + [3093] = {.lex_state = 132}, + [3094] = {.lex_state = 132}, + [3095] = {.lex_state = 132}, + [3096] = {.lex_state = 132}, + [3097] = {.lex_state = 132}, + [3098] = {.lex_state = 132}, + [3099] = {.lex_state = 132}, + [3100] = {.lex_state = 132}, + [3101] = {.lex_state = 132}, + [3102] = {.lex_state = 132}, + [3103] = {.lex_state = 132}, + [3104] = {.lex_state = 132}, + [3105] = {.lex_state = 132}, + [3106] = {.lex_state = 132}, + [3107] = {.lex_state = 132}, + [3108] = {.lex_state = 132}, + [3109] = {.lex_state = 132}, + [3110] = {.lex_state = 132}, + [3111] = {.lex_state = 132}, + [3112] = {.lex_state = 132}, + [3113] = {.lex_state = 132}, + [3114] = {.lex_state = 132}, + [3115] = {.lex_state = 132}, + [3116] = {.lex_state = 132}, + [3117] = {.lex_state = 132}, + [3118] = {.lex_state = 132}, + [3119] = {.lex_state = 132}, + [3120] = {.lex_state = 132}, + [3121] = {.lex_state = 132}, + [3122] = {.lex_state = 132}, + [3123] = {.lex_state = 132}, + [3124] = {.lex_state = 132}, + [3125] = {.lex_state = 132}, + [3126] = {.lex_state = 132}, + [3127] = {.lex_state = 132}, + [3128] = {.lex_state = 132}, + [3129] = {.lex_state = 132}, + [3130] = {.lex_state = 132}, + [3131] = {.lex_state = 132}, + [3132] = {.lex_state = 132}, + [3133] = {.lex_state = 132}, + [3134] = {.lex_state = 132}, + [3135] = {.lex_state = 132}, + [3136] = {.lex_state = 132}, + [3137] = {.lex_state = 132}, + [3138] = {.lex_state = 132}, + [3139] = {.lex_state = 132}, + [3140] = {.lex_state = 132}, + [3141] = {.lex_state = 132}, + [3142] = {.lex_state = 132}, + [3143] = {.lex_state = 132}, + [3144] = {.lex_state = 132}, + [3145] = {.lex_state = 132}, + [3146] = {.lex_state = 132}, + [3147] = {.lex_state = 132}, + [3148] = {.lex_state = 132}, + [3149] = {.lex_state = 132}, + [3150] = {.lex_state = 132}, + [3151] = {.lex_state = 132}, + [3152] = {.lex_state = 132}, + [3153] = {.lex_state = 132}, + [3154] = {.lex_state = 132}, + [3155] = {.lex_state = 132}, + [3156] = {.lex_state = 132}, + [3157] = {.lex_state = 132}, + [3158] = {.lex_state = 132}, + [3159] = {.lex_state = 132}, + [3160] = {.lex_state = 132}, + [3161] = {.lex_state = 132}, + [3162] = {.lex_state = 132}, + [3163] = {.lex_state = 132}, + [3164] = {.lex_state = 132}, + [3165] = {.lex_state = 132}, + [3166] = {.lex_state = 132}, + [3167] = {.lex_state = 132}, + [3168] = {.lex_state = 132}, + [3169] = {.lex_state = 132}, + [3170] = {.lex_state = 132}, + [3171] = {.lex_state = 132}, + [3172] = {.lex_state = 132}, + [3173] = {.lex_state = 132}, + [3174] = {.lex_state = 132}, + [3175] = {.lex_state = 132}, + [3176] = {.lex_state = 132}, + [3177] = {.lex_state = 132}, + [3178] = {.lex_state = 132}, + [3179] = {.lex_state = 132}, + [3180] = {.lex_state = 132}, + [3181] = {.lex_state = 132}, + [3182] = {.lex_state = 132}, + [3183] = {.lex_state = 132}, + [3184] = {.lex_state = 132}, + [3185] = {.lex_state = 132}, + [3186] = {.lex_state = 132}, + [3187] = {.lex_state = 132}, + [3188] = {.lex_state = 132}, + [3189] = {.lex_state = 132}, + [3190] = {.lex_state = 132}, + [3191] = {.lex_state = 132}, + [3192] = {.lex_state = 132}, + [3193] = {.lex_state = 132}, + [3194] = {.lex_state = 132}, + [3195] = {.lex_state = 132}, + [3196] = {.lex_state = 132}, + [3197] = {.lex_state = 132}, + [3198] = {.lex_state = 132}, + [3199] = {.lex_state = 132}, + [3200] = {.lex_state = 132}, + [3201] = {.lex_state = 132}, + [3202] = {.lex_state = 132}, + [3203] = {.lex_state = 132}, + [3204] = {.lex_state = 132}, + [3205] = {.lex_state = 132}, + [3206] = {.lex_state = 132}, + [3207] = {.lex_state = 132}, + [3208] = {.lex_state = 132}, + [3209] = {.lex_state = 132}, + [3210] = {.lex_state = 132}, + [3211] = {.lex_state = 132}, + [3212] = {.lex_state = 132}, + [3213] = {.lex_state = 132}, + [3214] = {.lex_state = 132}, + [3215] = {.lex_state = 132}, + [3216] = {.lex_state = 132}, + [3217] = {.lex_state = 132}, + [3218] = {.lex_state = 132}, + [3219] = {.lex_state = 132}, + [3220] = {.lex_state = 132}, + [3221] = {.lex_state = 132}, + [3222] = {.lex_state = 132}, + [3223] = {.lex_state = 132}, + [3224] = {.lex_state = 132}, + [3225] = {.lex_state = 132}, + [3226] = {.lex_state = 132}, + [3227] = {.lex_state = 132}, + [3228] = {.lex_state = 132}, + [3229] = {.lex_state = 95}, + [3230] = {.lex_state = 132}, + [3231] = {.lex_state = 132}, + [3232] = {.lex_state = 132}, + [3233] = {.lex_state = 132}, + [3234] = {.lex_state = 132}, + [3235] = {.lex_state = 132}, + [3236] = {.lex_state = 95}, + [3237] = {.lex_state = 132}, + [3238] = {.lex_state = 132}, + [3239] = {.lex_state = 132}, + [3240] = {.lex_state = 132}, + [3241] = {.lex_state = 132}, + [3242] = {.lex_state = 132}, + [3243] = {.lex_state = 132}, + [3244] = {.lex_state = 132}, + [3245] = {.lex_state = 132}, + [3246] = {.lex_state = 132}, + [3247] = {.lex_state = 132}, + [3248] = {.lex_state = 132}, + [3249] = {.lex_state = 132}, + [3250] = {.lex_state = 132}, + [3251] = {.lex_state = 132}, + [3252] = {.lex_state = 132}, + [3253] = {.lex_state = 132}, + [3254] = {.lex_state = 132}, + [3255] = {.lex_state = 132}, + [3256] = {.lex_state = 132}, + [3257] = {.lex_state = 132}, + [3258] = {.lex_state = 132}, + [3259] = {.lex_state = 132}, + [3260] = {.lex_state = 124}, + [3261] = {.lex_state = 132}, + [3262] = {.lex_state = 132}, + [3263] = {.lex_state = 132}, + [3264] = {.lex_state = 132}, + [3265] = {.lex_state = 132}, + [3266] = {.lex_state = 132}, + [3267] = {.lex_state = 132}, + [3268] = {.lex_state = 132}, + [3269] = {.lex_state = 132}, + [3270] = {.lex_state = 132}, + [3271] = {.lex_state = 132}, + [3272] = {.lex_state = 132}, + [3273] = {.lex_state = 132}, + [3274] = {.lex_state = 132}, + [3275] = {.lex_state = 132}, + [3276] = {.lex_state = 132}, + [3277] = {.lex_state = 132}, + [3278] = {.lex_state = 132}, + [3279] = {.lex_state = 132}, + [3280] = {.lex_state = 132}, + [3281] = {.lex_state = 132}, + [3282] = {.lex_state = 132}, + [3283] = {.lex_state = 132}, + [3284] = {.lex_state = 132}, + [3285] = {.lex_state = 132}, + [3286] = {.lex_state = 132}, + [3287] = {.lex_state = 132}, + [3288] = {.lex_state = 132}, + [3289] = {.lex_state = 132}, + [3290] = {.lex_state = 132}, + [3291] = {.lex_state = 132}, + [3292] = {.lex_state = 132}, + [3293] = {.lex_state = 132}, + [3294] = {.lex_state = 132}, + [3295] = {.lex_state = 132}, + [3296] = {.lex_state = 124}, + [3297] = {.lex_state = 132}, + [3298] = {.lex_state = 124}, + [3299] = {.lex_state = 111}, + [3300] = {.lex_state = 132}, + [3301] = {.lex_state = 124}, + [3302] = {.lex_state = 111}, + [3303] = {.lex_state = 132}, + [3304] = {.lex_state = 132}, + [3305] = {.lex_state = 132}, + [3306] = {.lex_state = 111}, + [3307] = {.lex_state = 132}, + [3308] = {.lex_state = 132}, + [3309] = {.lex_state = 111}, + [3310] = {.lex_state = 111}, + [3311] = {.lex_state = 132}, + [3312] = {.lex_state = 132}, + [3313] = {.lex_state = 132}, + [3314] = {.lex_state = 132}, + [3315] = {.lex_state = 111}, + [3316] = {.lex_state = 113}, + [3317] = {.lex_state = 132}, + [3318] = {.lex_state = 111}, + [3319] = {.lex_state = 113}, + [3320] = {.lex_state = 132}, + [3321] = {.lex_state = 132}, + [3322] = {.lex_state = 132}, + [3323] = {.lex_state = 132}, + [3324] = {.lex_state = 132}, + [3325] = {.lex_state = 132}, + [3326] = {.lex_state = 132}, + [3327] = {.lex_state = 132}, + [3328] = {.lex_state = 132}, + [3329] = {.lex_state = 132}, + [3330] = {.lex_state = 132}, + [3331] = {.lex_state = 132}, + [3332] = {.lex_state = 132}, + [3333] = {.lex_state = 132}, + [3334] = {.lex_state = 132}, + [3335] = {.lex_state = 132}, + [3336] = {.lex_state = 132}, + [3337] = {.lex_state = 132}, + [3338] = {.lex_state = 132}, + [3339] = {.lex_state = 132}, + [3340] = {.lex_state = 132}, + [3341] = {.lex_state = 132}, + [3342] = {.lex_state = 132}, + [3343] = {.lex_state = 132}, + [3344] = {.lex_state = 132}, + [3345] = {.lex_state = 111}, + [3346] = {.lex_state = 112}, + [3347] = {.lex_state = 111}, + [3348] = {.lex_state = 112}, + [3349] = {.lex_state = 111}, + [3350] = {.lex_state = 124}, + [3351] = {.lex_state = 132}, + [3352] = {.lex_state = 111}, + [3353] = {.lex_state = 132}, + [3354] = {.lex_state = 117}, + [3355] = {.lex_state = 132}, + [3356] = {.lex_state = 132}, + [3357] = {.lex_state = 111}, + [3358] = {.lex_state = 111}, + [3359] = {.lex_state = 111}, + [3360] = {.lex_state = 111}, + [3361] = {.lex_state = 111}, + [3362] = {.lex_state = 111}, + [3363] = {.lex_state = 111}, + [3364] = {.lex_state = 111}, + [3365] = {.lex_state = 111}, + [3366] = {.lex_state = 111}, + [3367] = {.lex_state = 111}, + [3368] = {.lex_state = 111}, + [3369] = {.lex_state = 111}, + [3370] = {.lex_state = 111}, + [3371] = {.lex_state = 111}, + [3372] = {.lex_state = 111}, + [3373] = {.lex_state = 111}, + [3374] = {.lex_state = 111}, + [3375] = {.lex_state = 111}, + [3376] = {.lex_state = 111}, + [3377] = {.lex_state = 111}, + [3378] = {.lex_state = 111}, + [3379] = {.lex_state = 111}, + [3380] = {.lex_state = 111}, + [3381] = {.lex_state = 111}, + [3382] = {.lex_state = 111}, + [3383] = {.lex_state = 111}, + [3384] = {.lex_state = 111}, + [3385] = {.lex_state = 111}, + [3386] = {.lex_state = 111}, + [3387] = {.lex_state = 111}, + [3388] = {.lex_state = 111}, + [3389] = {.lex_state = 111}, + [3390] = {.lex_state = 111}, + [3391] = {.lex_state = 111}, + [3392] = {.lex_state = 111}, + [3393] = {.lex_state = 111}, + [3394] = {.lex_state = 111}, + [3395] = {.lex_state = 111}, + [3396] = {.lex_state = 111}, + [3397] = {.lex_state = 111}, + [3398] = {.lex_state = 111}, + [3399] = {.lex_state = 111}, + [3400] = {.lex_state = 111}, + [3401] = {.lex_state = 111}, + [3402] = {.lex_state = 111}, + [3403] = {.lex_state = 111}, + [3404] = {.lex_state = 111}, + [3405] = {.lex_state = 111}, + [3406] = {.lex_state = 111}, + [3407] = {.lex_state = 111}, + [3408] = {.lex_state = 111}, + [3409] = {.lex_state = 111}, + [3410] = {.lex_state = 111}, + [3411] = {.lex_state = 111}, + [3412] = {.lex_state = 111}, + [3413] = {.lex_state = 111}, + [3414] = {.lex_state = 111}, + [3415] = {.lex_state = 111}, + [3416] = {.lex_state = 111}, + [3417] = {.lex_state = 111}, + [3418] = {.lex_state = 111}, + [3419] = {.lex_state = 111}, + [3420] = {.lex_state = 111}, + [3421] = {.lex_state = 111}, + [3422] = {.lex_state = 111}, + [3423] = {.lex_state = 111}, + [3424] = {.lex_state = 111}, + [3425] = {.lex_state = 111}, + [3426] = {.lex_state = 111}, + [3427] = {.lex_state = 111}, + [3428] = {.lex_state = 111}, + [3429] = {.lex_state = 111}, + [3430] = {.lex_state = 111}, + [3431] = {.lex_state = 111}, + [3432] = {.lex_state = 111}, + [3433] = {.lex_state = 111}, + [3434] = {.lex_state = 111}, + [3435] = {.lex_state = 111}, + [3436] = {.lex_state = 111}, + [3437] = {.lex_state = 111}, + [3438] = {.lex_state = 111}, + [3439] = {.lex_state = 111}, + [3440] = {.lex_state = 111}, + [3441] = {.lex_state = 111}, + [3442] = {.lex_state = 111}, + [3443] = {.lex_state = 111}, + [3444] = {.lex_state = 111}, + [3445] = {.lex_state = 111}, + [3446] = {.lex_state = 111}, + [3447] = {.lex_state = 111}, + [3448] = {.lex_state = 111}, + [3449] = {.lex_state = 111}, + [3450] = {.lex_state = 111}, + [3451] = {.lex_state = 111}, + [3452] = {.lex_state = 111}, + [3453] = {.lex_state = 111}, + [3454] = {.lex_state = 111}, + [3455] = {.lex_state = 111}, + [3456] = {.lex_state = 111}, + [3457] = {.lex_state = 111}, + [3458] = {.lex_state = 111}, + [3459] = {.lex_state = 111}, + [3460] = {.lex_state = 111}, + [3461] = {.lex_state = 111}, + [3462] = {.lex_state = 111}, + [3463] = {.lex_state = 111}, + [3464] = {.lex_state = 111}, + [3465] = {.lex_state = 111}, + [3466] = {.lex_state = 111}, + [3467] = {.lex_state = 111}, + [3468] = {.lex_state = 111}, + [3469] = {.lex_state = 111}, + [3470] = {.lex_state = 111}, + [3471] = {.lex_state = 111}, + [3472] = {.lex_state = 111}, + [3473] = {.lex_state = 111}, + [3474] = {.lex_state = 111}, + [3475] = {.lex_state = 111}, + [3476] = {.lex_state = 111}, + [3477] = {.lex_state = 111}, + [3478] = {.lex_state = 111}, + [3479] = {.lex_state = 111}, + [3480] = {.lex_state = 111}, + [3481] = {.lex_state = 111}, + [3482] = {.lex_state = 111}, + [3483] = {.lex_state = 111}, + [3484] = {.lex_state = 111}, + [3485] = {.lex_state = 111}, + [3486] = {.lex_state = 111}, + [3487] = {.lex_state = 111}, + [3488] = {.lex_state = 111}, + [3489] = {.lex_state = 111}, + [3490] = {.lex_state = 111}, + [3491] = {.lex_state = 111}, + [3492] = {.lex_state = 111}, + [3493] = {.lex_state = 111}, + [3494] = {.lex_state = 111}, + [3495] = {.lex_state = 111}, + [3496] = {.lex_state = 111}, + [3497] = {.lex_state = 111}, + [3498] = {.lex_state = 111}, + [3499] = {.lex_state = 111}, + [3500] = {.lex_state = 111}, + [3501] = {.lex_state = 111}, + [3502] = {.lex_state = 111}, + [3503] = {.lex_state = 111}, + [3504] = {.lex_state = 111}, + [3505] = {.lex_state = 111}, + [3506] = {.lex_state = 111}, + [3507] = {.lex_state = 111}, + [3508] = {.lex_state = 111}, + [3509] = {.lex_state = 111}, + [3510] = {.lex_state = 111}, + [3511] = {.lex_state = 111}, + [3512] = {.lex_state = 111}, + [3513] = {.lex_state = 111}, + [3514] = {.lex_state = 111}, + [3515] = {.lex_state = 111}, + [3516] = {.lex_state = 111}, + [3517] = {.lex_state = 111}, + [3518] = {.lex_state = 111}, + [3519] = {.lex_state = 111}, + [3520] = {.lex_state = 111}, + [3521] = {.lex_state = 111}, + [3522] = {.lex_state = 111}, + [3523] = {.lex_state = 111}, + [3524] = {.lex_state = 111}, + [3525] = {.lex_state = 111}, + [3526] = {.lex_state = 111}, + [3527] = {.lex_state = 111}, + [3528] = {.lex_state = 111}, + [3529] = {.lex_state = 111}, + [3530] = {.lex_state = 111}, + [3531] = {.lex_state = 111}, + [3532] = {.lex_state = 111}, + [3533] = {.lex_state = 111}, + [3534] = {.lex_state = 111}, + [3535] = {.lex_state = 111}, + [3536] = {.lex_state = 111}, + [3537] = {.lex_state = 111}, + [3538] = {.lex_state = 111}, + [3539] = {.lex_state = 111}, + [3540] = {.lex_state = 111}, + [3541] = {.lex_state = 111}, + [3542] = {.lex_state = 111}, + [3543] = {.lex_state = 111}, + [3544] = {.lex_state = 111}, + [3545] = {.lex_state = 111}, + [3546] = {.lex_state = 111}, + [3547] = {.lex_state = 111}, + [3548] = {.lex_state = 111}, + [3549] = {.lex_state = 111}, + [3550] = {.lex_state = 111}, + [3551] = {.lex_state = 111}, + [3552] = {.lex_state = 111}, + [3553] = {.lex_state = 111}, + [3554] = {.lex_state = 111}, + [3555] = {.lex_state = 111}, + [3556] = {.lex_state = 111}, + [3557] = {.lex_state = 111}, + [3558] = {.lex_state = 111}, + [3559] = {.lex_state = 111}, + [3560] = {.lex_state = 111}, + [3561] = {.lex_state = 111}, + [3562] = {.lex_state = 111}, + [3563] = {.lex_state = 111}, + [3564] = {.lex_state = 111}, + [3565] = {.lex_state = 111}, + [3566] = {.lex_state = 111}, + [3567] = {.lex_state = 111}, + [3568] = {.lex_state = 111}, + [3569] = {.lex_state = 111}, + [3570] = {.lex_state = 111}, + [3571] = {.lex_state = 111}, + [3572] = {.lex_state = 111}, + [3573] = {.lex_state = 111}, + [3574] = {.lex_state = 111}, + [3575] = {.lex_state = 111}, + [3576] = {.lex_state = 111}, + [3577] = {.lex_state = 111}, + [3578] = {.lex_state = 111}, + [3579] = {.lex_state = 111}, + [3580] = {.lex_state = 111}, + [3581] = {.lex_state = 111}, + [3582] = {.lex_state = 111}, + [3583] = {.lex_state = 111}, + [3584] = {.lex_state = 111}, + [3585] = {.lex_state = 111}, + [3586] = {.lex_state = 111}, + [3587] = {.lex_state = 111}, + [3588] = {.lex_state = 111}, + [3589] = {.lex_state = 111}, + [3590] = {.lex_state = 111}, + [3591] = {.lex_state = 111}, + [3592] = {.lex_state = 111}, + [3593] = {.lex_state = 111}, + [3594] = {.lex_state = 111}, + [3595] = {.lex_state = 111}, + [3596] = {.lex_state = 111}, + [3597] = {.lex_state = 111}, + [3598] = {.lex_state = 111}, + [3599] = {.lex_state = 111}, + [3600] = {.lex_state = 111}, + [3601] = {.lex_state = 111}, + [3602] = {.lex_state = 111}, + [3603] = {.lex_state = 111}, + [3604] = {.lex_state = 111}, + [3605] = {.lex_state = 111}, + [3606] = {.lex_state = 111}, + [3607] = {.lex_state = 111}, + [3608] = {.lex_state = 111}, + [3609] = {.lex_state = 111}, + [3610] = {.lex_state = 111}, + [3611] = {.lex_state = 111}, + [3612] = {.lex_state = 111}, + [3613] = {.lex_state = 111}, + [3614] = {.lex_state = 111}, + [3615] = {.lex_state = 111}, + [3616] = {.lex_state = 111}, + [3617] = {.lex_state = 111}, + [3618] = {.lex_state = 111}, + [3619] = {.lex_state = 111}, + [3620] = {.lex_state = 111}, + [3621] = {.lex_state = 111}, + [3622] = {.lex_state = 111}, + [3623] = {.lex_state = 111}, + [3624] = {.lex_state = 111}, + [3625] = {.lex_state = 111}, + [3626] = {.lex_state = 111}, + [3627] = {.lex_state = 111}, + [3628] = {.lex_state = 111}, + [3629] = {.lex_state = 111}, + [3630] = {.lex_state = 111}, + [3631] = {.lex_state = 111}, + [3632] = {.lex_state = 111}, + [3633] = {.lex_state = 111}, + [3634] = {.lex_state = 111}, + [3635] = {.lex_state = 111}, + [3636] = {.lex_state = 111}, + [3637] = {.lex_state = 111}, + [3638] = {.lex_state = 111}, + [3639] = {.lex_state = 111}, + [3640] = {.lex_state = 111}, + [3641] = {.lex_state = 111}, + [3642] = {.lex_state = 111}, + [3643] = {.lex_state = 111}, + [3644] = {.lex_state = 111}, + [3645] = {.lex_state = 111}, + [3646] = {.lex_state = 111}, + [3647] = {.lex_state = 111}, + [3648] = {.lex_state = 111}, + [3649] = {.lex_state = 111}, + [3650] = {.lex_state = 111}, + [3651] = {.lex_state = 111}, + [3652] = {.lex_state = 111}, + [3653] = {.lex_state = 111}, + [3654] = {.lex_state = 111}, + [3655] = {.lex_state = 111}, + [3656] = {.lex_state = 111}, + [3657] = {.lex_state = 111}, + [3658] = {.lex_state = 111}, + [3659] = {.lex_state = 111}, + [3660] = {.lex_state = 111}, + [3661] = {.lex_state = 111}, + [3662] = {.lex_state = 111}, + [3663] = {.lex_state = 111}, + [3664] = {.lex_state = 111}, + [3665] = {.lex_state = 111}, + [3666] = {.lex_state = 111}, + [3667] = {.lex_state = 111}, + [3668] = {.lex_state = 111}, + [3669] = {.lex_state = 111}, + [3670] = {.lex_state = 111}, + [3671] = {.lex_state = 111}, + [3672] = {.lex_state = 111}, + [3673] = {.lex_state = 111}, + [3674] = {.lex_state = 111}, + [3675] = {.lex_state = 111}, + [3676] = {.lex_state = 111}, + [3677] = {.lex_state = 111}, + [3678] = {.lex_state = 111}, + [3679] = {.lex_state = 111}, + [3680] = {.lex_state = 111}, + [3681] = {.lex_state = 111}, + [3682] = {.lex_state = 111}, + [3683] = {.lex_state = 111}, + [3684] = {.lex_state = 111}, + [3685] = {.lex_state = 111}, + [3686] = {.lex_state = 111}, + [3687] = {.lex_state = 111}, + [3688] = {.lex_state = 111}, + [3689] = {.lex_state = 111}, + [3690] = {.lex_state = 111}, + [3691] = {.lex_state = 111}, + [3692] = {.lex_state = 111}, + [3693] = {.lex_state = 111}, + [3694] = {.lex_state = 111}, + [3695] = {.lex_state = 111}, + [3696] = {.lex_state = 111}, + [3697] = {.lex_state = 111}, + [3698] = {.lex_state = 111}, + [3699] = {.lex_state = 111}, + [3700] = {.lex_state = 111}, + [3701] = {.lex_state = 111}, + [3702] = {.lex_state = 111}, + [3703] = {.lex_state = 111}, + [3704] = {.lex_state = 111}, + [3705] = {.lex_state = 111}, + [3706] = {.lex_state = 111}, + [3707] = {.lex_state = 111}, + [3708] = {.lex_state = 111}, + [3709] = {.lex_state = 111}, + [3710] = {.lex_state = 111}, + [3711] = {.lex_state = 111}, + [3712] = {.lex_state = 111}, + [3713] = {.lex_state = 111}, + [3714] = {.lex_state = 111}, + [3715] = {.lex_state = 111}, + [3716] = {.lex_state = 111}, + [3717] = {.lex_state = 111}, + [3718] = {.lex_state = 111}, + [3719] = {.lex_state = 111}, + [3720] = {.lex_state = 111}, + [3721] = {.lex_state = 111}, + [3722] = {.lex_state = 111}, + [3723] = {.lex_state = 111}, + [3724] = {.lex_state = 111}, + [3725] = {.lex_state = 111}, + [3726] = {.lex_state = 111}, + [3727] = {.lex_state = 111}, + [3728] = {.lex_state = 111}, + [3729] = {.lex_state = 111}, + [3730] = {.lex_state = 111}, + [3731] = {.lex_state = 111}, + [3732] = {.lex_state = 111}, + [3733] = {.lex_state = 111}, + [3734] = {.lex_state = 111}, + [3735] = {.lex_state = 111}, + [3736] = {.lex_state = 111}, + [3737] = {.lex_state = 111}, + [3738] = {.lex_state = 111}, + [3739] = {.lex_state = 111}, + [3740] = {.lex_state = 111}, + [3741] = {.lex_state = 111}, + [3742] = {.lex_state = 111}, + [3743] = {.lex_state = 111}, + [3744] = {.lex_state = 111}, + [3745] = {.lex_state = 111}, + [3746] = {.lex_state = 111}, + [3747] = {.lex_state = 111}, + [3748] = {.lex_state = 111}, + [3749] = {.lex_state = 111}, + [3750] = {.lex_state = 111}, + [3751] = {.lex_state = 111}, + [3752] = {.lex_state = 111}, + [3753] = {.lex_state = 111}, + [3754] = {.lex_state = 111}, + [3755] = {.lex_state = 111}, + [3756] = {.lex_state = 111}, + [3757] = {.lex_state = 111}, + [3758] = {.lex_state = 111}, + [3759] = {.lex_state = 111}, + [3760] = {.lex_state = 111}, + [3761] = {.lex_state = 111}, + [3762] = {.lex_state = 111}, + [3763] = {.lex_state = 111}, + [3764] = {.lex_state = 111}, + [3765] = {.lex_state = 111}, + [3766] = {.lex_state = 111}, + [3767] = {.lex_state = 111}, + [3768] = {.lex_state = 111}, + [3769] = {.lex_state = 111}, + [3770] = {.lex_state = 111}, + [3771] = {.lex_state = 111}, + [3772] = {.lex_state = 111}, + [3773] = {.lex_state = 132}, + [3774] = {.lex_state = 132}, + [3775] = {.lex_state = 132}, + [3776] = {.lex_state = 132}, + [3777] = {.lex_state = 132}, + [3778] = {.lex_state = 132}, + [3779] = {.lex_state = 132}, + [3780] = {.lex_state = 132}, + [3781] = {.lex_state = 132}, + [3782] = {.lex_state = 132}, + [3783] = {.lex_state = 132}, + [3784] = {.lex_state = 132}, + [3785] = {.lex_state = 125}, + [3786] = {.lex_state = 134}, + [3787] = {.lex_state = 134}, + [3788] = {.lex_state = 132}, + [3789] = {.lex_state = 134}, + [3790] = {.lex_state = 132}, + [3791] = {.lex_state = 132}, + [3792] = {.lex_state = 132}, + [3793] = {.lex_state = 132}, + [3794] = {.lex_state = 132}, + [3795] = {.lex_state = 132}, + [3796] = {.lex_state = 132}, + [3797] = {.lex_state = 132}, + [3798] = {.lex_state = 132}, + [3799] = {.lex_state = 132}, + [3800] = {.lex_state = 132}, + [3801] = {.lex_state = 132}, + [3802] = {.lex_state = 132}, + [3803] = {.lex_state = 132}, + [3804] = {.lex_state = 132}, + [3805] = {.lex_state = 132}, + [3806] = {.lex_state = 132}, + [3807] = {.lex_state = 132}, + [3808] = {.lex_state = 132}, + [3809] = {.lex_state = 132}, + [3810] = {.lex_state = 132}, + [3811] = {.lex_state = 132}, + [3812] = {.lex_state = 132}, + [3813] = {.lex_state = 132}, + [3814] = {.lex_state = 132}, + [3815] = {.lex_state = 132}, + [3816] = {.lex_state = 132}, + [3817] = {.lex_state = 132}, + [3818] = {.lex_state = 132}, + [3819] = {.lex_state = 132}, + [3820] = {.lex_state = 132}, + [3821] = {.lex_state = 132}, + [3822] = {.lex_state = 132}, + [3823] = {.lex_state = 132}, + [3824] = {.lex_state = 132}, + [3825] = {.lex_state = 132}, + [3826] = {.lex_state = 132}, + [3827] = {.lex_state = 132}, + [3828] = {.lex_state = 132}, + [3829] = {.lex_state = 132}, + [3830] = {.lex_state = 132}, + [3831] = {.lex_state = 132}, + [3832] = {.lex_state = 132}, + [3833] = {.lex_state = 132}, + [3834] = {.lex_state = 132}, + [3835] = {.lex_state = 132}, + [3836] = {.lex_state = 132}, + [3837] = {.lex_state = 132}, + [3838] = {.lex_state = 132}, + [3839] = {.lex_state = 132}, + [3840] = {.lex_state = 132}, + [3841] = {.lex_state = 132}, + [3842] = {.lex_state = 132}, + [3843] = {.lex_state = 132}, + [3844] = {.lex_state = 132}, + [3845] = {.lex_state = 132}, + [3846] = {.lex_state = 132}, + [3847] = {.lex_state = 132}, + [3848] = {.lex_state = 132}, + [3849] = {.lex_state = 132}, + [3850] = {.lex_state = 132}, + [3851] = {.lex_state = 132}, + [3852] = {.lex_state = 132}, + [3853] = {.lex_state = 132}, + [3854] = {.lex_state = 132}, + [3855] = {.lex_state = 132}, + [3856] = {.lex_state = 132}, + [3857] = {.lex_state = 132}, + [3858] = {.lex_state = 132}, + [3859] = {.lex_state = 132}, + [3860] = {.lex_state = 132}, + [3861] = {.lex_state = 132}, + [3862] = {.lex_state = 132}, + [3863] = {.lex_state = 132}, + [3864] = {.lex_state = 132}, + [3865] = {.lex_state = 132}, + [3866] = {.lex_state = 132}, + [3867] = {.lex_state = 132}, + [3868] = {.lex_state = 132}, + [3869] = {.lex_state = 132}, + [3870] = {.lex_state = 132}, + [3871] = {.lex_state = 132}, + [3872] = {.lex_state = 132}, + [3873] = {.lex_state = 132}, + [3874] = {.lex_state = 132}, + [3875] = {.lex_state = 132}, + [3876] = {.lex_state = 132}, + [3877] = {.lex_state = 132}, + [3878] = {.lex_state = 132}, + [3879] = {.lex_state = 132}, + [3880] = {.lex_state = 132}, + [3881] = {.lex_state = 132}, + [3882] = {.lex_state = 132}, + [3883] = {.lex_state = 132}, + [3884] = {.lex_state = 132}, + [3885] = {.lex_state = 132}, + [3886] = {.lex_state = 132}, + [3887] = {.lex_state = 132}, + [3888] = {.lex_state = 132}, + [3889] = {.lex_state = 132}, + [3890] = {.lex_state = 132}, + [3891] = {.lex_state = 132}, + [3892] = {.lex_state = 132}, + [3893] = {.lex_state = 132}, + [3894] = {.lex_state = 132}, + [3895] = {.lex_state = 132}, + [3896] = {.lex_state = 132}, + [3897] = {.lex_state = 132}, + [3898] = {.lex_state = 132}, + [3899] = {.lex_state = 132}, + [3900] = {.lex_state = 132}, + [3901] = {.lex_state = 132}, + [3902] = {.lex_state = 132}, + [3903] = {.lex_state = 132}, + [3904] = {.lex_state = 132}, + [3905] = {.lex_state = 132}, + [3906] = {.lex_state = 132}, + [3907] = {.lex_state = 132}, + [3908] = {.lex_state = 132}, + [3909] = {.lex_state = 132}, + [3910] = {.lex_state = 132}, + [3911] = {.lex_state = 132}, + [3912] = {.lex_state = 132}, + [3913] = {.lex_state = 132}, + [3914] = {.lex_state = 132}, + [3915] = {.lex_state = 132}, + [3916] = {.lex_state = 132}, + [3917] = {.lex_state = 132}, + [3918] = {.lex_state = 132}, + [3919] = {.lex_state = 132}, + [3920] = {.lex_state = 132}, + [3921] = {.lex_state = 132}, + [3922] = {.lex_state = 132}, + [3923] = {.lex_state = 132}, + [3924] = {.lex_state = 132}, + [3925] = {.lex_state = 132}, + [3926] = {.lex_state = 132}, + [3927] = {.lex_state = 132}, + [3928] = {.lex_state = 132}, + [3929] = {.lex_state = 132}, + [3930] = {.lex_state = 132}, + [3931] = {.lex_state = 132}, + [3932] = {.lex_state = 132}, + [3933] = {.lex_state = 132}, + [3934] = {.lex_state = 132}, + [3935] = {.lex_state = 132}, + [3936] = {.lex_state = 132}, + [3937] = {.lex_state = 132}, + [3938] = {.lex_state = 132}, + [3939] = {.lex_state = 132}, + [3940] = {.lex_state = 132}, + [3941] = {.lex_state = 132}, + [3942] = {.lex_state = 132}, + [3943] = {.lex_state = 132}, + [3944] = {.lex_state = 132}, + [3945] = {.lex_state = 132}, + [3946] = {.lex_state = 132}, + [3947] = {.lex_state = 132}, + [3948] = {.lex_state = 132}, + [3949] = {.lex_state = 132}, + [3950] = {.lex_state = 132}, + [3951] = {.lex_state = 132}, + [3952] = {.lex_state = 132}, + [3953] = {.lex_state = 132}, + [3954] = {.lex_state = 132}, + [3955] = {.lex_state = 132}, + [3956] = {.lex_state = 132}, + [3957] = {.lex_state = 132}, + [3958] = {.lex_state = 132}, + [3959] = {.lex_state = 132}, + [3960] = {.lex_state = 132}, + [3961] = {.lex_state = 132}, + [3962] = {.lex_state = 132}, + [3963] = {.lex_state = 132}, + [3964] = {.lex_state = 132}, + [3965] = {.lex_state = 132}, + [3966] = {.lex_state = 132}, + [3967] = {.lex_state = 132}, + [3968] = {.lex_state = 132}, + [3969] = {.lex_state = 132}, + [3970] = {.lex_state = 132}, + [3971] = {.lex_state = 132}, + [3972] = {.lex_state = 132}, + [3973] = {.lex_state = 132}, + [3974] = {.lex_state = 132}, + [3975] = {.lex_state = 132}, + [3976] = {.lex_state = 132}, + [3977] = {.lex_state = 95}, + [3978] = {.lex_state = 132}, + [3979] = {.lex_state = 132}, + [3980] = {.lex_state = 132}, + [3981] = {.lex_state = 132}, + [3982] = {.lex_state = 132}, + [3983] = {.lex_state = 132}, + [3984] = {.lex_state = 132}, + [3985] = {.lex_state = 132}, + [3986] = {.lex_state = 132}, + [3987] = {.lex_state = 132}, + [3988] = {.lex_state = 132}, + [3989] = {.lex_state = 132}, + [3990] = {.lex_state = 132}, + [3991] = {.lex_state = 132}, + [3992] = {.lex_state = 132}, + [3993] = {.lex_state = 132}, + [3994] = {.lex_state = 132}, + [3995] = {.lex_state = 132}, + [3996] = {.lex_state = 132}, + [3997] = {.lex_state = 132}, + [3998] = {.lex_state = 132}, + [3999] = {.lex_state = 132}, + [4000] = {.lex_state = 132}, + [4001] = {.lex_state = 132}, + [4002] = {.lex_state = 132}, + [4003] = {.lex_state = 132}, + [4004] = {.lex_state = 132}, + [4005] = {.lex_state = 132}, + [4006] = {.lex_state = 132}, + [4007] = {.lex_state = 132}, + [4008] = {.lex_state = 132}, + [4009] = {.lex_state = 132}, + [4010] = {.lex_state = 132}, + [4011] = {.lex_state = 132}, + [4012] = {.lex_state = 132}, + [4013] = {.lex_state = 132}, + [4014] = {.lex_state = 132}, + [4015] = {.lex_state = 132}, + [4016] = {.lex_state = 132}, + [4017] = {.lex_state = 132}, + [4018] = {.lex_state = 132}, + [4019] = {.lex_state = 132}, + [4020] = {.lex_state = 132}, + [4021] = {.lex_state = 132}, + [4022] = {.lex_state = 132}, + [4023] = {.lex_state = 132}, + [4024] = {.lex_state = 132}, + [4025] = {.lex_state = 132}, + [4026] = {.lex_state = 132}, + [4027] = {.lex_state = 132}, + [4028] = {.lex_state = 132}, + [4029] = {.lex_state = 132}, + [4030] = {.lex_state = 132}, + [4031] = {.lex_state = 132}, + [4032] = {.lex_state = 132}, + [4033] = {.lex_state = 132}, + [4034] = {.lex_state = 132}, + [4035] = {.lex_state = 132}, + [4036] = {.lex_state = 132}, + [4037] = {.lex_state = 132}, + [4038] = {.lex_state = 132}, + [4039] = {.lex_state = 132}, + [4040] = {.lex_state = 132}, + [4041] = {.lex_state = 132}, + [4042] = {.lex_state = 132}, + [4043] = {.lex_state = 132}, + [4044] = {.lex_state = 132}, + [4045] = {.lex_state = 132}, + [4046] = {.lex_state = 132}, + [4047] = {.lex_state = 132}, + [4048] = {.lex_state = 132}, + [4049] = {.lex_state = 132}, + [4050] = {.lex_state = 132}, + [4051] = {.lex_state = 132}, + [4052] = {.lex_state = 132}, + [4053] = {.lex_state = 132}, + [4054] = {.lex_state = 132}, + [4055] = {.lex_state = 132}, + [4056] = {.lex_state = 132}, + [4057] = {.lex_state = 132}, + [4058] = {.lex_state = 132}, + [4059] = {.lex_state = 132}, + [4060] = {.lex_state = 132}, + [4061] = {.lex_state = 132}, + [4062] = {.lex_state = 132}, + [4063] = {.lex_state = 132}, + [4064] = {.lex_state = 132}, + [4065] = {.lex_state = 132}, + [4066] = {.lex_state = 132}, + [4067] = {.lex_state = 132}, + [4068] = {.lex_state = 132}, + [4069] = {.lex_state = 132}, + [4070] = {.lex_state = 132}, + [4071] = {.lex_state = 132}, + [4072] = {.lex_state = 124}, + [4073] = {.lex_state = 132}, + [4074] = {.lex_state = 124}, + [4075] = {.lex_state = 124}, + [4076] = {.lex_state = 132}, + [4077] = {.lex_state = 132}, + [4078] = {.lex_state = 124}, + [4079] = {.lex_state = 124}, + [4080] = {.lex_state = 132}, + [4081] = {.lex_state = 132}, + [4082] = {.lex_state = 124}, + [4083] = {.lex_state = 124}, + [4084] = {.lex_state = 124}, + [4085] = {.lex_state = 124}, + [4086] = {.lex_state = 124}, + [4087] = {.lex_state = 132}, + [4088] = {.lex_state = 124}, + [4089] = {.lex_state = 132}, + [4090] = {.lex_state = 132}, + [4091] = {.lex_state = 132}, + [4092] = {.lex_state = 124}, + [4093] = {.lex_state = 124}, + [4094] = {.lex_state = 124}, + [4095] = {.lex_state = 124}, + [4096] = {.lex_state = 132}, + [4097] = {.lex_state = 105}, + [4098] = {.lex_state = 105}, + [4099] = {.lex_state = 105}, + [4100] = {.lex_state = 132}, + [4101] = {.lex_state = 132}, + [4102] = {.lex_state = 132}, + [4103] = {.lex_state = 132}, + [4104] = {.lex_state = 132}, + [4105] = {.lex_state = 132}, + [4106] = {.lex_state = 132}, + [4107] = {.lex_state = 132}, + [4108] = {.lex_state = 132}, + [4109] = {.lex_state = 132}, + [4110] = {.lex_state = 132}, + [4111] = {.lex_state = 132}, + [4112] = {.lex_state = 132}, + [4113] = {.lex_state = 132}, + [4114] = {.lex_state = 132}, + [4115] = {.lex_state = 132}, + [4116] = {.lex_state = 132}, + [4117] = {.lex_state = 132}, + [4118] = {.lex_state = 132}, + [4119] = {.lex_state = 132}, + [4120] = {.lex_state = 132}, + [4121] = {.lex_state = 132}, + [4122] = {.lex_state = 132}, + [4123] = {.lex_state = 132}, + [4124] = {.lex_state = 132}, + [4125] = {.lex_state = 132}, + [4126] = {.lex_state = 132}, + [4127] = {.lex_state = 132}, + [4128] = {.lex_state = 132}, + [4129] = {.lex_state = 132}, + [4130] = {.lex_state = 132}, + [4131] = {.lex_state = 124}, + [4132] = {.lex_state = 124}, + [4133] = {.lex_state = 132}, + [4134] = {.lex_state = 132}, + [4135] = {.lex_state = 132}, + [4136] = {.lex_state = 132}, + [4137] = {.lex_state = 132}, + [4138] = {.lex_state = 132}, + [4139] = {.lex_state = 132}, + [4140] = {.lex_state = 132}, + [4141] = {.lex_state = 132}, + [4142] = {.lex_state = 132}, + [4143] = {.lex_state = 132}, + [4144] = {.lex_state = 132}, + [4145] = {.lex_state = 132}, + [4146] = {.lex_state = 132}, + [4147] = {.lex_state = 132}, + [4148] = {.lex_state = 111}, + [4149] = {.lex_state = 111}, + [4150] = {.lex_state = 111}, + [4151] = {.lex_state = 111}, + [4152] = {.lex_state = 111}, + [4153] = {.lex_state = 111}, + [4154] = {.lex_state = 111}, + [4155] = {.lex_state = 132}, + [4156] = {.lex_state = 132}, + [4157] = {.lex_state = 132}, + [4158] = {.lex_state = 132}, + [4159] = {.lex_state = 132}, + [4160] = {.lex_state = 132}, + [4161] = {.lex_state = 132}, + [4162] = {.lex_state = 132}, + [4163] = {.lex_state = 132}, + [4164] = {.lex_state = 132}, + [4165] = {.lex_state = 132}, + [4166] = {.lex_state = 132}, + [4167] = {.lex_state = 132}, + [4168] = {.lex_state = 132}, + [4169] = {.lex_state = 132}, + [4170] = {.lex_state = 132}, + [4171] = {.lex_state = 132}, + [4172] = {.lex_state = 132}, + [4173] = {.lex_state = 132}, + [4174] = {.lex_state = 132}, + [4175] = {.lex_state = 132}, + [4176] = {.lex_state = 132}, + [4177] = {.lex_state = 111}, + [4178] = {.lex_state = 132}, + [4179] = {.lex_state = 132}, + [4180] = {.lex_state = 132}, + [4181] = {.lex_state = 132}, + [4182] = {.lex_state = 132}, + [4183] = {.lex_state = 111}, + [4184] = {.lex_state = 132}, + [4185] = {.lex_state = 132}, + [4186] = {.lex_state = 132}, + [4187] = {.lex_state = 132}, + [4188] = {.lex_state = 132}, + [4189] = {.lex_state = 132}, + [4190] = {.lex_state = 132}, + [4191] = {.lex_state = 132}, + [4192] = {.lex_state = 132}, + [4193] = {.lex_state = 132}, + [4194] = {.lex_state = 132}, + [4195] = {.lex_state = 111}, + [4196] = {.lex_state = 111}, + [4197] = {.lex_state = 111}, + [4198] = {.lex_state = 132}, + [4199] = {.lex_state = 132}, + [4200] = {.lex_state = 111}, + [4201] = {.lex_state = 132}, + [4202] = {.lex_state = 132}, + [4203] = {.lex_state = 132}, + [4204] = {.lex_state = 111}, + [4205] = {.lex_state = 132}, + [4206] = {.lex_state = 111}, + [4207] = {.lex_state = 132}, + [4208] = {.lex_state = 111}, + [4209] = {.lex_state = 111}, + [4210] = {.lex_state = 132}, + [4211] = {.lex_state = 132}, + [4212] = {.lex_state = 132}, + [4213] = {.lex_state = 111}, + [4214] = {.lex_state = 111}, + [4215] = {.lex_state = 111}, + [4216] = {.lex_state = 132}, + [4217] = {.lex_state = 111}, + [4218] = {.lex_state = 132}, + [4219] = {.lex_state = 132}, + [4220] = {.lex_state = 132}, + [4221] = {.lex_state = 111}, + [4222] = {.lex_state = 111}, + [4223] = {.lex_state = 132}, + [4224] = {.lex_state = 111}, + [4225] = {.lex_state = 111}, + [4226] = {.lex_state = 132}, + [4227] = {.lex_state = 132}, + [4228] = {.lex_state = 132}, + [4229] = {.lex_state = 132}, + [4230] = {.lex_state = 117}, + [4231] = {.lex_state = 132}, + [4232] = {.lex_state = 132}, + [4233] = {.lex_state = 132}, + [4234] = {.lex_state = 132}, + [4235] = {.lex_state = 132}, + [4236] = {.lex_state = 132}, + [4237] = {.lex_state = 132}, + [4238] = {.lex_state = 132}, + [4239] = {.lex_state = 132}, + [4240] = {.lex_state = 132}, + [4241] = {.lex_state = 132}, + [4242] = {.lex_state = 132}, + [4243] = {.lex_state = 132}, + [4244] = {.lex_state = 132}, + [4245] = {.lex_state = 132}, + [4246] = {.lex_state = 132}, + [4247] = {.lex_state = 132}, + [4248] = {.lex_state = 132}, + [4249] = {.lex_state = 132}, + [4250] = {.lex_state = 132}, + [4251] = {.lex_state = 132}, + [4252] = {.lex_state = 132}, + [4253] = {.lex_state = 132}, + [4254] = {.lex_state = 132}, + [4255] = {.lex_state = 132}, + [4256] = {.lex_state = 132}, + [4257] = {.lex_state = 132}, + [4258] = {.lex_state = 132}, + [4259] = {.lex_state = 132}, + [4260] = {.lex_state = 132}, + [4261] = {.lex_state = 132}, + [4262] = {.lex_state = 132}, + [4263] = {.lex_state = 132}, + [4264] = {.lex_state = 132}, + [4265] = {.lex_state = 132}, + [4266] = {.lex_state = 132}, + [4267] = {.lex_state = 132}, + [4268] = {.lex_state = 132}, + [4269] = {.lex_state = 132}, + [4270] = {.lex_state = 132}, + [4271] = {.lex_state = 132}, + [4272] = {.lex_state = 122}, + [4273] = {.lex_state = 132}, + [4274] = {.lex_state = 132}, + [4275] = {.lex_state = 132}, + [4276] = {.lex_state = 132}, + [4277] = {.lex_state = 132}, + [4278] = {.lex_state = 132}, + [4279] = {.lex_state = 132}, + [4280] = {.lex_state = 132}, + [4281] = {.lex_state = 132}, + [4282] = {.lex_state = 132}, + [4283] = {.lex_state = 132}, + [4284] = {.lex_state = 132}, + [4285] = {.lex_state = 132}, + [4286] = {.lex_state = 132}, + [4287] = {.lex_state = 132}, + [4288] = {.lex_state = 132}, + [4289] = {.lex_state = 132}, + [4290] = {.lex_state = 117}, + [4291] = {.lex_state = 132}, + [4292] = {.lex_state = 132}, + [4293] = {.lex_state = 117}, + [4294] = {.lex_state = 132}, + [4295] = {.lex_state = 132}, + [4296] = {.lex_state = 132}, + [4297] = {.lex_state = 132}, + [4298] = {.lex_state = 117}, + [4299] = {.lex_state = 117}, + [4300] = {.lex_state = 132}, + [4301] = {.lex_state = 117}, + [4302] = {.lex_state = 117}, + [4303] = {.lex_state = 132}, + [4304] = {.lex_state = 117}, + [4305] = {.lex_state = 117}, + [4306] = {.lex_state = 117}, + [4307] = {.lex_state = 117}, + [4308] = {.lex_state = 119}, + [4309] = {.lex_state = 117}, + [4310] = {.lex_state = 132}, + [4311] = {.lex_state = 132}, + [4312] = {.lex_state = 132}, + [4313] = {.lex_state = 132}, + [4314] = {.lex_state = 132}, + [4315] = {.lex_state = 132}, + [4316] = {.lex_state = 117}, + [4317] = {.lex_state = 132}, + [4318] = {.lex_state = 124}, + [4319] = {.lex_state = 124}, + [4320] = {.lex_state = 124}, + [4321] = {.lex_state = 124}, + [4322] = {.lex_state = 124}, + [4323] = {.lex_state = 124}, + [4324] = {.lex_state = 132}, + [4325] = {.lex_state = 124}, + [4326] = {.lex_state = 124}, + [4327] = {.lex_state = 132}, + [4328] = {.lex_state = 132}, + [4329] = {.lex_state = 124}, + [4330] = {.lex_state = 124}, + [4331] = {.lex_state = 132}, + [4332] = {.lex_state = 124}, + [4333] = {.lex_state = 124}, + [4334] = {.lex_state = 124}, + [4335] = {.lex_state = 132}, + [4336] = {.lex_state = 124}, + [4337] = {.lex_state = 124}, + [4338] = {.lex_state = 124}, + [4339] = {.lex_state = 132}, + [4340] = {.lex_state = 132}, + [4341] = {.lex_state = 124}, + [4342] = {.lex_state = 124}, + [4343] = {.lex_state = 124}, + [4344] = {.lex_state = 124}, + [4345] = {.lex_state = 124}, + [4346] = {.lex_state = 124}, + [4347] = {.lex_state = 124}, + [4348] = {.lex_state = 124}, + [4349] = {.lex_state = 124}, + [4350] = {.lex_state = 124}, + [4351] = {.lex_state = 124}, + [4352] = {.lex_state = 124}, + [4353] = {.lex_state = 124}, + [4354] = {.lex_state = 124}, + [4355] = {.lex_state = 124}, + [4356] = {.lex_state = 132}, + [4357] = {.lex_state = 124}, + [4358] = {.lex_state = 132}, + [4359] = {.lex_state = 132}, + [4360] = {.lex_state = 132}, + [4361] = {.lex_state = 132}, + [4362] = {.lex_state = 132}, + [4363] = {.lex_state = 132}, + [4364] = {.lex_state = 132}, + [4365] = {.lex_state = 132}, + [4366] = {.lex_state = 132}, + [4367] = {.lex_state = 132}, + [4368] = {.lex_state = 132}, + [4369] = {.lex_state = 120}, + [4370] = {.lex_state = 120}, + [4371] = {.lex_state = 120}, + [4372] = {.lex_state = 120}, + [4373] = {.lex_state = 120}, + [4374] = {.lex_state = 120}, + [4375] = {.lex_state = 120}, + [4376] = {.lex_state = 120}, + [4377] = {.lex_state = 120}, + [4378] = {.lex_state = 120}, + [4379] = {.lex_state = 120}, + [4380] = {.lex_state = 120}, + [4381] = {.lex_state = 120}, + [4382] = {.lex_state = 120}, + [4383] = {.lex_state = 120}, + [4384] = {.lex_state = 120}, + [4385] = {.lex_state = 120}, + [4386] = {.lex_state = 120}, + [4387] = {.lex_state = 125}, + [4388] = {.lex_state = 125}, + [4389] = {.lex_state = 125}, + [4390] = {.lex_state = 125}, + [4391] = {.lex_state = 125}, + [4392] = {.lex_state = 125}, + [4393] = {.lex_state = 125}, + [4394] = {.lex_state = 125}, + [4395] = {.lex_state = 125}, + [4396] = {.lex_state = 125}, + [4397] = {.lex_state = 125}, + [4398] = {.lex_state = 125}, + [4399] = {.lex_state = 125}, + [4400] = {.lex_state = 125}, + [4401] = {.lex_state = 125}, + [4402] = {.lex_state = 125}, + [4403] = {.lex_state = 125}, + [4404] = {.lex_state = 125}, + [4405] = {.lex_state = 125}, + [4406] = {.lex_state = 125}, + [4407] = {.lex_state = 125}, + [4408] = {.lex_state = 125}, + [4409] = {.lex_state = 125}, + [4410] = {.lex_state = 125}, + [4411] = {.lex_state = 125}, + [4412] = {.lex_state = 125}, + [4413] = {.lex_state = 125}, + [4414] = {.lex_state = 125}, + [4415] = {.lex_state = 125}, + [4416] = {.lex_state = 125}, + [4417] = {.lex_state = 125}, + [4418] = {.lex_state = 125}, + [4419] = {.lex_state = 125}, + [4420] = {.lex_state = 125}, + [4421] = {.lex_state = 125}, + [4422] = {.lex_state = 125}, + [4423] = {.lex_state = 125}, + [4424] = {.lex_state = 125}, + [4425] = {.lex_state = 125}, + [4426] = {.lex_state = 125}, + [4427] = {.lex_state = 125}, + [4428] = {.lex_state = 125}, + [4429] = {.lex_state = 125}, + [4430] = {.lex_state = 125}, + [4431] = {.lex_state = 125}, + [4432] = {.lex_state = 125}, + [4433] = {.lex_state = 125}, + [4434] = {.lex_state = 125}, + [4435] = {.lex_state = 125}, + [4436] = {.lex_state = 125}, + [4437] = {.lex_state = 125}, + [4438] = {.lex_state = 125}, + [4439] = {.lex_state = 125}, + [4440] = {.lex_state = 125}, + [4441] = {.lex_state = 125}, + [4442] = {.lex_state = 125}, + [4443] = {.lex_state = 125}, + [4444] = {.lex_state = 125}, + [4445] = {.lex_state = 125}, + [4446] = {.lex_state = 125}, + [4447] = {.lex_state = 125}, + [4448] = {.lex_state = 125}, + [4449] = {.lex_state = 125}, + [4450] = {.lex_state = 125}, + [4451] = {.lex_state = 125}, + [4452] = {.lex_state = 125}, + [4453] = {.lex_state = 125}, + [4454] = {.lex_state = 125}, + [4455] = {.lex_state = 125}, + [4456] = {.lex_state = 125}, + [4457] = {.lex_state = 125}, + [4458] = {.lex_state = 125}, + [4459] = {.lex_state = 125}, + [4460] = {.lex_state = 125}, + [4461] = {.lex_state = 125}, + [4462] = {.lex_state = 125}, + [4463] = {.lex_state = 125}, + [4464] = {.lex_state = 125}, + [4465] = {.lex_state = 125}, + [4466] = {.lex_state = 125}, + [4467] = {.lex_state = 125}, + [4468] = {.lex_state = 125}, + [4469] = {.lex_state = 125}, + [4470] = {.lex_state = 125}, + [4471] = {.lex_state = 125}, + [4472] = {.lex_state = 125}, + [4473] = {.lex_state = 125}, + [4474] = {.lex_state = 125}, + [4475] = {.lex_state = 125}, + [4476] = {.lex_state = 125}, + [4477] = {.lex_state = 125}, + [4478] = {.lex_state = 125}, + [4479] = {.lex_state = 125}, + [4480] = {.lex_state = 125}, + [4481] = {.lex_state = 125}, + [4482] = {.lex_state = 125}, + [4483] = {.lex_state = 125}, + [4484] = {.lex_state = 125}, + [4485] = {.lex_state = 125}, + [4486] = {.lex_state = 125}, + [4487] = {.lex_state = 125}, + [4488] = {.lex_state = 125}, + [4489] = {.lex_state = 125}, + [4490] = {.lex_state = 125}, + [4491] = {.lex_state = 125}, + [4492] = {.lex_state = 125}, + [4493] = {.lex_state = 125}, + [4494] = {.lex_state = 125}, + [4495] = {.lex_state = 125}, + [4496] = {.lex_state = 125}, + [4497] = {.lex_state = 125}, + [4498] = {.lex_state = 125}, + [4499] = {.lex_state = 125}, + [4500] = {.lex_state = 125}, + [4501] = {.lex_state = 125}, + [4502] = {.lex_state = 125}, + [4503] = {.lex_state = 125}, + [4504] = {.lex_state = 125}, + [4505] = {.lex_state = 125}, + [4506] = {.lex_state = 125}, + [4507] = {.lex_state = 125}, + [4508] = {.lex_state = 125}, + [4509] = {.lex_state = 125}, + [4510] = {.lex_state = 125}, + [4511] = {.lex_state = 132}, + [4512] = {.lex_state = 125}, + [4513] = {.lex_state = 125}, + [4514] = {.lex_state = 125}, + [4515] = {.lex_state = 125}, + [4516] = {.lex_state = 125}, + [4517] = {.lex_state = 125}, + [4518] = {.lex_state = 125}, + [4519] = {.lex_state = 125}, + [4520] = {.lex_state = 125}, + [4521] = {.lex_state = 125}, + [4522] = {.lex_state = 125}, + [4523] = {.lex_state = 125}, + [4524] = {.lex_state = 125}, + [4525] = {.lex_state = 125}, + [4526] = {.lex_state = 125}, + [4527] = {.lex_state = 125}, + [4528] = {.lex_state = 125}, + [4529] = {.lex_state = 125}, + [4530] = {.lex_state = 125}, + [4531] = {.lex_state = 125}, + [4532] = {.lex_state = 125}, + [4533] = {.lex_state = 125}, + [4534] = {.lex_state = 125}, + [4535] = {.lex_state = 125}, + [4536] = {.lex_state = 125}, + [4537] = {.lex_state = 125}, + [4538] = {.lex_state = 125}, + [4539] = {.lex_state = 125}, + [4540] = {.lex_state = 125}, + [4541] = {.lex_state = 125}, + [4542] = {.lex_state = 125}, + [4543] = {.lex_state = 125}, + [4544] = {.lex_state = 132}, + [4545] = {.lex_state = 125}, + [4546] = {.lex_state = 132}, + [4547] = {.lex_state = 125}, + [4548] = {.lex_state = 125}, + [4549] = {.lex_state = 125}, + [4550] = {.lex_state = 125}, + [4551] = {.lex_state = 125}, + [4552] = {.lex_state = 125}, + [4553] = {.lex_state = 125}, + [4554] = {.lex_state = 125}, + [4555] = {.lex_state = 125}, + [4556] = {.lex_state = 125}, + [4557] = {.lex_state = 125}, + [4558] = {.lex_state = 125}, + [4559] = {.lex_state = 125}, + [4560] = {.lex_state = 132}, + [4561] = {.lex_state = 125}, + [4562] = {.lex_state = 125}, + [4563] = {.lex_state = 125}, + [4564] = {.lex_state = 125}, + [4565] = {.lex_state = 125}, + [4566] = {.lex_state = 125}, + [4567] = {.lex_state = 125}, + [4568] = {.lex_state = 125}, + [4569] = {.lex_state = 125}, + [4570] = {.lex_state = 125}, + [4571] = {.lex_state = 125}, + [4572] = {.lex_state = 125}, + [4573] = {.lex_state = 125}, + [4574] = {.lex_state = 125}, + [4575] = {.lex_state = 125}, + [4576] = {.lex_state = 125}, + [4577] = {.lex_state = 125}, + [4578] = {.lex_state = 125}, + [4579] = {.lex_state = 125}, + [4580] = {.lex_state = 125}, + [4581] = {.lex_state = 132}, + [4582] = {.lex_state = 125}, + [4583] = {.lex_state = 125}, + [4584] = {.lex_state = 125}, + [4585] = {.lex_state = 125}, + [4586] = {.lex_state = 125}, + [4587] = {.lex_state = 125}, + [4588] = {.lex_state = 132}, + [4589] = {.lex_state = 125}, + [4590] = {.lex_state = 125}, + [4591] = {.lex_state = 125}, + [4592] = {.lex_state = 132}, + [4593] = {.lex_state = 126}, + [4594] = {.lex_state = 116}, + [4595] = {.lex_state = 116}, + [4596] = {.lex_state = 116}, + [4597] = {.lex_state = 116}, + [4598] = {.lex_state = 132}, + [4599] = {.lex_state = 51}, + [4600] = {.lex_state = 116}, + [4601] = {.lex_state = 116}, + [4602] = {.lex_state = 116}, + [4603] = {.lex_state = 116}, + [4604] = {.lex_state = 116}, + [4605] = {.lex_state = 116}, + [4606] = {.lex_state = 116}, + [4607] = {.lex_state = 116}, + [4608] = {.lex_state = 116}, + [4609] = {.lex_state = 116}, + [4610] = {.lex_state = 126}, + [4611] = {.lex_state = 116}, + [4612] = {.lex_state = 116}, + [4613] = {.lex_state = 116}, + [4614] = {.lex_state = 116}, + [4615] = {.lex_state = 116}, + [4616] = {.lex_state = 126}, + [4617] = {.lex_state = 132}, + [4618] = {.lex_state = 116}, + [4619] = {.lex_state = 116}, + [4620] = {.lex_state = 116}, + [4621] = {.lex_state = 116}, + [4622] = {.lex_state = 116}, + [4623] = {.lex_state = 116}, + [4624] = {.lex_state = 116}, + [4625] = {.lex_state = 116}, + [4626] = {.lex_state = 132}, + [4627] = {.lex_state = 116}, + [4628] = {.lex_state = 116}, + [4629] = {.lex_state = 116}, + [4630] = {.lex_state = 116}, + [4631] = {.lex_state = 116}, + [4632] = {.lex_state = 116}, + [4633] = {.lex_state = 116}, + [4634] = {.lex_state = 126}, + [4635] = {.lex_state = 116}, + [4636] = {.lex_state = 116}, + [4637] = {.lex_state = 116}, + [4638] = {.lex_state = 116}, + [4639] = {.lex_state = 116}, + [4640] = {.lex_state = 116}, + [4641] = {.lex_state = 116}, + [4642] = {.lex_state = 116}, + [4643] = {.lex_state = 116}, + [4644] = {.lex_state = 116}, + [4645] = {.lex_state = 116}, + [4646] = {.lex_state = 116}, + [4647] = {.lex_state = 116}, + [4648] = {.lex_state = 116}, + [4649] = {.lex_state = 126}, + [4650] = {.lex_state = 126}, + [4651] = {.lex_state = 126}, + [4652] = {.lex_state = 126}, + [4653] = {.lex_state = 126}, + [4654] = {.lex_state = 126}, + [4655] = {.lex_state = 126}, + [4656] = {.lex_state = 119}, + [4657] = {.lex_state = 119}, + [4658] = {.lex_state = 126}, + [4659] = {.lex_state = 126}, + [4660] = {.lex_state = 126}, + [4661] = {.lex_state = 126}, + [4662] = {.lex_state = 126}, + [4663] = {.lex_state = 126}, + [4664] = {.lex_state = 126}, + [4665] = {.lex_state = 126}, + [4666] = {.lex_state = 126}, + [4667] = {.lex_state = 119}, + [4668] = {.lex_state = 126}, + [4669] = {.lex_state = 126}, + [4670] = {.lex_state = 126}, + [4671] = {.lex_state = 126}, + [4672] = {.lex_state = 51}, + [4673] = {.lex_state = 51}, + [4674] = {.lex_state = 51}, + [4675] = {.lex_state = 51}, + [4676] = {.lex_state = 51}, + [4677] = {.lex_state = 51}, + [4678] = {.lex_state = 51}, + [4679] = {.lex_state = 51}, + [4680] = {.lex_state = 51}, + [4681] = {.lex_state = 51}, + [4682] = {.lex_state = 51}, + [4683] = {.lex_state = 51}, + [4684] = {.lex_state = 51}, + [4685] = {.lex_state = 126}, + [4686] = {.lex_state = 51}, + [4687] = {.lex_state = 51}, + [4688] = {.lex_state = 51}, + [4689] = {.lex_state = 51}, + [4690] = {.lex_state = 51}, + [4691] = {.lex_state = 51}, + [4692] = {.lex_state = 51}, + [4693] = {.lex_state = 51}, + [4694] = {.lex_state = 51}, + [4695] = {.lex_state = 51}, + [4696] = {.lex_state = 51}, + [4697] = {.lex_state = 51}, + [4698] = {.lex_state = 51}, + [4699] = {.lex_state = 51}, + [4700] = {.lex_state = 51}, + [4701] = {.lex_state = 51}, + [4702] = {.lex_state = 51}, + [4703] = {.lex_state = 51}, + [4704] = {.lex_state = 51}, + [4705] = {.lex_state = 126}, + [4706] = {.lex_state = 51}, + [4707] = {.lex_state = 51}, + [4708] = {.lex_state = 51}, + [4709] = {.lex_state = 51}, + [4710] = {.lex_state = 51}, + [4711] = {.lex_state = 51}, + [4712] = {.lex_state = 51}, + [4713] = {.lex_state = 132}, + [4714] = {.lex_state = 132}, + [4715] = {.lex_state = 132}, + [4716] = {.lex_state = 132}, + [4717] = {.lex_state = 132}, + [4718] = {.lex_state = 132}, + [4719] = {.lex_state = 132}, + [4720] = {.lex_state = 132}, + [4721] = {.lex_state = 132}, + [4722] = {.lex_state = 132}, + [4723] = {.lex_state = 132}, + [4724] = {.lex_state = 132}, + [4725] = {.lex_state = 132}, + [4726] = {.lex_state = 132}, + [4727] = {.lex_state = 132}, + [4728] = {.lex_state = 132}, + [4729] = {.lex_state = 132}, + [4730] = {.lex_state = 132}, + [4731] = {.lex_state = 132}, + [4732] = {.lex_state = 132}, + [4733] = {.lex_state = 132}, + [4734] = {.lex_state = 132}, + [4735] = {.lex_state = 132}, + [4736] = {.lex_state = 132}, + [4737] = {.lex_state = 132}, + [4738] = {.lex_state = 132}, + [4739] = {.lex_state = 132}, + [4740] = {.lex_state = 132}, + [4741] = {.lex_state = 132}, + [4742] = {.lex_state = 132}, + [4743] = {.lex_state = 132}, + [4744] = {.lex_state = 132}, + [4745] = {.lex_state = 132}, + [4746] = {.lex_state = 132}, + [4747] = {.lex_state = 132}, + [4748] = {.lex_state = 132}, + [4749] = {.lex_state = 132}, + [4750] = {.lex_state = 132}, + [4751] = {.lex_state = 132}, + [4752] = {.lex_state = 132}, + [4753] = {.lex_state = 132}, + [4754] = {.lex_state = 132}, + [4755] = {.lex_state = 132}, + [4756] = {.lex_state = 132}, + [4757] = {.lex_state = 132}, + [4758] = {.lex_state = 132}, + [4759] = {.lex_state = 132}, + [4760] = {.lex_state = 132}, + [4761] = {.lex_state = 132}, + [4762] = {.lex_state = 132}, + [4763] = {.lex_state = 132}, + [4764] = {.lex_state = 132}, + [4765] = {.lex_state = 132}, + [4766] = {.lex_state = 132}, + [4767] = {.lex_state = 132}, + [4768] = {.lex_state = 132}, + [4769] = {.lex_state = 132}, + [4770] = {.lex_state = 132}, + [4771] = {.lex_state = 132}, + [4772] = {.lex_state = 132}, + [4773] = {.lex_state = 132}, + [4774] = {.lex_state = 132}, + [4775] = {.lex_state = 132}, + [4776] = {.lex_state = 132}, + [4777] = {.lex_state = 132}, + [4778] = {.lex_state = 132}, + [4779] = {.lex_state = 132}, + [4780] = {.lex_state = 132}, + [4781] = {.lex_state = 132}, + [4782] = {.lex_state = 132}, + [4783] = {.lex_state = 132}, + [4784] = {.lex_state = 132}, + [4785] = {.lex_state = 132}, + [4786] = {.lex_state = 132}, + [4787] = {.lex_state = 132}, + [4788] = {.lex_state = 132}, + [4789] = {.lex_state = 132}, + [4790] = {.lex_state = 132}, + [4791] = {.lex_state = 132}, + [4792] = {.lex_state = 132}, + [4793] = {.lex_state = 132}, + [4794] = {.lex_state = 132}, + [4795] = {.lex_state = 132}, + [4796] = {.lex_state = 132}, + [4797] = {.lex_state = 132}, + [4798] = {.lex_state = 132}, + [4799] = {.lex_state = 132}, + [4800] = {.lex_state = 132}, + [4801] = {.lex_state = 132}, + [4802] = {.lex_state = 132}, + [4803] = {.lex_state = 132}, + [4804] = {.lex_state = 132}, + [4805] = {.lex_state = 132}, + [4806] = {.lex_state = 132}, + [4807] = {.lex_state = 132}, + [4808] = {.lex_state = 132}, + [4809] = {.lex_state = 132}, + [4810] = {.lex_state = 132}, + [4811] = {.lex_state = 132}, + [4812] = {.lex_state = 132}, + [4813] = {.lex_state = 132}, + [4814] = {.lex_state = 132}, + [4815] = {.lex_state = 132}, + [4816] = {.lex_state = 132}, + [4817] = {.lex_state = 416}, + [4818] = {.lex_state = 132}, + [4819] = {.lex_state = 132}, + [4820] = {.lex_state = 132}, + [4821] = {.lex_state = 119}, + [4822] = {.lex_state = 132}, + [4823] = {.lex_state = 132}, + [4824] = {.lex_state = 132}, + [4825] = {.lex_state = 132}, + [4826] = {.lex_state = 132}, + [4827] = {.lex_state = 119}, + [4828] = {.lex_state = 132}, + [4829] = {.lex_state = 132}, + [4830] = {.lex_state = 132}, + [4831] = {.lex_state = 132}, + [4832] = {.lex_state = 132}, + [4833] = {.lex_state = 132}, + [4834] = {.lex_state = 132}, + [4835] = {.lex_state = 132}, + [4836] = {.lex_state = 119}, + [4837] = {.lex_state = 132}, + [4838] = {.lex_state = 132}, + [4839] = {.lex_state = 132}, + [4840] = {.lex_state = 132}, + [4841] = {.lex_state = 117}, + [4842] = {.lex_state = 132}, + [4843] = {.lex_state = 132}, + [4844] = {.lex_state = 132}, + [4845] = {.lex_state = 132}, + [4846] = {.lex_state = 132}, + [4847] = {.lex_state = 117}, + [4848] = {.lex_state = 132}, + [4849] = {.lex_state = 117}, + [4850] = {.lex_state = 117}, + [4851] = {.lex_state = 132}, + [4852] = {.lex_state = 124}, + [4853] = {.lex_state = 124}, + [4854] = {.lex_state = 132}, + [4855] = {.lex_state = 117}, + [4856] = {.lex_state = 132}, + [4857] = {.lex_state = 132}, + [4858] = {.lex_state = 132}, + [4859] = {.lex_state = 132}, + [4860] = {.lex_state = 132}, + [4861] = {.lex_state = 117}, + [4862] = {.lex_state = 132}, + [4863] = {.lex_state = 132}, + [4864] = {.lex_state = 132}, + [4865] = {.lex_state = 129}, + [4866] = {.lex_state = 132}, + [4867] = {.lex_state = 117}, + [4868] = {.lex_state = 117}, + [4869] = {.lex_state = 129}, + [4870] = {.lex_state = 117}, + [4871] = {.lex_state = 132}, + [4872] = {.lex_state = 129}, + [4873] = {.lex_state = 132}, + [4874] = {.lex_state = 117}, + [4875] = {.lex_state = 129}, + [4876] = {.lex_state = 132}, + [4877] = {.lex_state = 132}, + [4878] = {.lex_state = 132}, + [4879] = {.lex_state = 132}, + [4880] = {.lex_state = 132}, + [4881] = {.lex_state = 129}, + [4882] = {.lex_state = 117}, + [4883] = {.lex_state = 132}, + [4884] = {.lex_state = 132}, + [4885] = {.lex_state = 132}, + [4886] = {.lex_state = 132}, + [4887] = {.lex_state = 117}, + [4888] = {.lex_state = 132}, + [4889] = {.lex_state = 132}, + [4890] = {.lex_state = 132}, + [4891] = {.lex_state = 132}, + [4892] = {.lex_state = 132}, + [4893] = {.lex_state = 117}, + [4894] = {.lex_state = 132}, + [4895] = {.lex_state = 117}, + [4896] = {.lex_state = 117}, + [4897] = {.lex_state = 117}, + [4898] = {.lex_state = 132}, + [4899] = {.lex_state = 132}, + [4900] = {.lex_state = 132}, + [4901] = {.lex_state = 132}, + [4902] = {.lex_state = 132}, + [4903] = {.lex_state = 132}, + [4904] = {.lex_state = 132}, + [4905] = {.lex_state = 132}, + [4906] = {.lex_state = 132}, + [4907] = {.lex_state = 132}, + [4908] = {.lex_state = 132}, + [4909] = {.lex_state = 132}, + [4910] = {.lex_state = 117}, + [4911] = {.lex_state = 132}, + [4912] = {.lex_state = 132}, + [4913] = {.lex_state = 132}, + [4914] = {.lex_state = 132}, + [4915] = {.lex_state = 124}, + [4916] = {.lex_state = 132}, + [4917] = {.lex_state = 132}, + [4918] = {.lex_state = 124}, + [4919] = {.lex_state = 124}, + [4920] = {.lex_state = 132}, + [4921] = {.lex_state = 132}, + [4922] = {.lex_state = 132}, + [4923] = {.lex_state = 132}, + [4924] = {.lex_state = 124}, + [4925] = {.lex_state = 124}, + [4926] = {.lex_state = 132}, + [4927] = {.lex_state = 132}, + [4928] = {.lex_state = 124}, + [4929] = {.lex_state = 132}, + [4930] = {.lex_state = 132}, + [4931] = {.lex_state = 132}, + [4932] = {.lex_state = 132}, + [4933] = {.lex_state = 132}, + [4934] = {.lex_state = 132}, + [4935] = {.lex_state = 132}, + [4936] = {.lex_state = 132}, + [4937] = {.lex_state = 132}, + [4938] = {.lex_state = 132}, + [4939] = {.lex_state = 132}, + [4940] = {.lex_state = 132}, + [4941] = {.lex_state = 132}, + [4942] = {.lex_state = 132}, + [4943] = {.lex_state = 132}, + [4944] = {.lex_state = 128}, + [4945] = {.lex_state = 132}, + [4946] = {.lex_state = 128}, + [4947] = {.lex_state = 132}, + [4948] = {.lex_state = 132}, + [4949] = {.lex_state = 132}, + [4950] = {.lex_state = 124}, + [4951] = {.lex_state = 124}, + [4952] = {.lex_state = 132}, + [4953] = {.lex_state = 132}, + [4954] = {.lex_state = 132}, + [4955] = {.lex_state = 132}, + [4956] = {.lex_state = 132}, + [4957] = {.lex_state = 132}, + [4958] = {.lex_state = 132}, + [4959] = {.lex_state = 132}, + [4960] = {.lex_state = 132}, + [4961] = {.lex_state = 132}, + [4962] = {.lex_state = 124}, + [4963] = {.lex_state = 132}, + [4964] = {.lex_state = 132}, + [4965] = {.lex_state = 132}, + [4966] = {.lex_state = 132}, + [4967] = {.lex_state = 132}, + [4968] = {.lex_state = 132}, + [4969] = {.lex_state = 132}, + [4970] = {.lex_state = 124}, + [4971] = {.lex_state = 132}, + [4972] = {.lex_state = 132}, + [4973] = {.lex_state = 132}, + [4974] = {.lex_state = 132}, + [4975] = {.lex_state = 132}, + [4976] = {.lex_state = 124}, + [4977] = {.lex_state = 416}, + [4978] = {.lex_state = 132}, + [4979] = {.lex_state = 132}, + [4980] = {.lex_state = 132}, + [4981] = {.lex_state = 0}, + [4982] = {.lex_state = 132}, + [4983] = {.lex_state = 132}, + [4984] = {.lex_state = 704}, + [4985] = {.lex_state = 416}, + [4986] = {.lex_state = 132}, + [4987] = {.lex_state = 132}, + [4988] = {.lex_state = 704}, + [4989] = {.lex_state = 416}, + [4990] = {.lex_state = 117}, + [4991] = {.lex_state = 132}, + [4992] = {.lex_state = 132}, + [4993] = {.lex_state = 704}, + [4994] = {.lex_state = 117}, + [4995] = {.lex_state = 117}, + [4996] = {.lex_state = 132}, + [4997] = {.lex_state = 117}, + [4998] = {.lex_state = 132}, + [4999] = {.lex_state = 704}, + [5000] = {.lex_state = 124}, + [5001] = {.lex_state = 132}, + [5002] = {.lex_state = 132}, + [5003] = {.lex_state = 0}, + [5004] = {.lex_state = 416}, + [5005] = {.lex_state = 416}, + [5006] = {.lex_state = 132}, + [5007] = {.lex_state = 132}, + [5008] = {.lex_state = 416}, + [5009] = {.lex_state = 117}, + [5010] = {.lex_state = 416}, + [5011] = {.lex_state = 117}, + [5012] = {.lex_state = 132}, + [5013] = {.lex_state = 132}, + [5014] = {.lex_state = 132}, + [5015] = {.lex_state = 132}, + [5016] = {.lex_state = 117}, + [5017] = {.lex_state = 132}, + [5018] = {.lex_state = 132}, + [5019] = {.lex_state = 117}, + [5020] = {.lex_state = 416}, + [5021] = {.lex_state = 416}, + [5022] = {.lex_state = 132}, + [5023] = {.lex_state = 132}, + [5024] = {.lex_state = 416}, + [5025] = {.lex_state = 416}, + [5026] = {.lex_state = 416}, + [5027] = {.lex_state = 132}, + [5028] = {.lex_state = 132}, + [5029] = {.lex_state = 416}, + [5030] = {.lex_state = 416}, + [5031] = {.lex_state = 132}, + [5032] = {.lex_state = 132}, + [5033] = {.lex_state = 416}, + [5034] = {.lex_state = 416}, + [5035] = {.lex_state = 126}, + [5036] = {.lex_state = 132}, + [5037] = {.lex_state = 416}, + [5038] = {.lex_state = 416}, + [5039] = {.lex_state = 132}, + [5040] = {.lex_state = 416}, + [5041] = {.lex_state = 416}, + [5042] = {.lex_state = 132}, + [5043] = {.lex_state = 416}, + [5044] = {.lex_state = 416}, + [5045] = {.lex_state = 132}, + [5046] = {.lex_state = 416}, + [5047] = {.lex_state = 132}, + [5048] = {.lex_state = 132}, + [5049] = {.lex_state = 124}, + [5050] = {.lex_state = 416}, + [5051] = {.lex_state = 132}, + [5052] = {.lex_state = 416}, + [5053] = {.lex_state = 124}, + [5054] = {.lex_state = 132}, + [5055] = {.lex_state = 416}, + [5056] = {.lex_state = 132}, + [5057] = {.lex_state = 132}, + [5058] = {.lex_state = 124}, + [5059] = {.lex_state = 132}, + [5060] = {.lex_state = 124}, + [5061] = {.lex_state = 416}, + [5062] = {.lex_state = 132}, + [5063] = {.lex_state = 416}, + [5064] = {.lex_state = 124}, + [5065] = {.lex_state = 132}, + [5066] = {.lex_state = 132}, + [5067] = {.lex_state = 132}, + [5068] = {.lex_state = 126}, + [5069] = {.lex_state = 124}, + [5070] = {.lex_state = 128}, + [5071] = {.lex_state = 416}, + [5072] = {.lex_state = 132}, + [5073] = {.lex_state = 416}, + [5074] = {.lex_state = 416}, + [5075] = {.lex_state = 416}, + [5076] = {.lex_state = 124}, + [5077] = {.lex_state = 416}, + [5078] = {.lex_state = 416}, + [5079] = {.lex_state = 132}, + [5080] = {.lex_state = 416}, + [5081] = {.lex_state = 132}, + [5082] = {.lex_state = 416}, + [5083] = {.lex_state = 132}, + [5084] = {.lex_state = 416}, + [5085] = {.lex_state = 124}, + [5086] = {.lex_state = 132}, + [5087] = {.lex_state = 132}, + [5088] = {.lex_state = 416}, + [5089] = {.lex_state = 132}, + [5090] = {.lex_state = 132}, + [5091] = {.lex_state = 132}, + [5092] = {.lex_state = 132}, + [5093] = {.lex_state = 132}, + [5094] = {.lex_state = 132}, + [5095] = {.lex_state = 126}, + [5096] = {.lex_state = 132}, + [5097] = {.lex_state = 132}, + [5098] = {.lex_state = 132}, + [5099] = {.lex_state = 416}, + [5100] = {.lex_state = 132}, + [5101] = {.lex_state = 132}, + [5102] = {.lex_state = 132}, + [5103] = {.lex_state = 132}, + [5104] = {.lex_state = 132}, + [5105] = {.lex_state = 132}, + [5106] = {.lex_state = 132}, + [5107] = {.lex_state = 132}, + [5108] = {.lex_state = 132}, + [5109] = {.lex_state = 124}, + [5110] = {.lex_state = 132}, + [5111] = {.lex_state = 132}, + [5112] = {.lex_state = 132}, + [5113] = {.lex_state = 132}, + [5114] = {.lex_state = 416}, + [5115] = {.lex_state = 416}, + [5116] = {.lex_state = 124}, + [5117] = {.lex_state = 132}, + [5118] = {.lex_state = 132}, + [5119] = {.lex_state = 132}, + [5120] = {.lex_state = 132}, + [5121] = {.lex_state = 416}, + [5122] = {.lex_state = 132}, + [5123] = {.lex_state = 132}, + [5124] = {.lex_state = 126}, + [5125] = {.lex_state = 126}, + [5126] = {.lex_state = 132}, + [5127] = {.lex_state = 132}, + [5128] = {.lex_state = 132}, + [5129] = {.lex_state = 124}, + [5130] = {.lex_state = 124}, + [5131] = {.lex_state = 132}, + [5132] = {.lex_state = 132}, + [5133] = {.lex_state = 132}, + [5134] = {.lex_state = 126}, + [5135] = {.lex_state = 132}, + [5136] = {.lex_state = 416}, + [5137] = {.lex_state = 416}, + [5138] = {.lex_state = 416}, + [5139] = {.lex_state = 132}, + [5140] = {.lex_state = 132}, + [5141] = {.lex_state = 132}, + [5142] = {.lex_state = 132}, + [5143] = {.lex_state = 704}, + [5144] = {.lex_state = 132}, + [5145] = {.lex_state = 132}, + [5146] = {.lex_state = 132}, + [5147] = {.lex_state = 124}, + [5148] = {.lex_state = 132}, + [5149] = {.lex_state = 124}, + [5150] = {.lex_state = 132}, + [5151] = {.lex_state = 416}, + [5152] = {.lex_state = 132}, + [5153] = {.lex_state = 132}, + [5154] = {.lex_state = 132}, + [5155] = {.lex_state = 132}, + [5156] = {.lex_state = 132}, + [5157] = {.lex_state = 132}, + [5158] = {.lex_state = 126}, + [5159] = {.lex_state = 0}, + [5160] = {.lex_state = 54}, + [5161] = {.lex_state = 132}, + [5162] = {.lex_state = 54}, + [5163] = {.lex_state = 132}, + [5164] = {.lex_state = 416}, + [5165] = {.lex_state = 0}, + [5166] = {.lex_state = 132}, + [5167] = {.lex_state = 54}, + [5168] = {.lex_state = 54}, + [5169] = {.lex_state = 416}, + [5170] = {.lex_state = 416}, + [5171] = {.lex_state = 416}, + [5172] = {.lex_state = 98}, + [5173] = {.lex_state = 132}, + [5174] = {.lex_state = 416}, + [5175] = {.lex_state = 132}, + [5176] = {.lex_state = 416}, + [5177] = {.lex_state = 132}, + [5178] = {.lex_state = 54}, + [5179] = {.lex_state = 56}, + [5180] = {.lex_state = 416}, + [5181] = {.lex_state = 132}, + [5182] = {.lex_state = 416}, + [5183] = {.lex_state = 54}, + [5184] = {.lex_state = 416}, + [5185] = {.lex_state = 54}, + [5186] = {.lex_state = 61}, + [5187] = {.lex_state = 132}, + [5188] = {.lex_state = 0}, + [5189] = {.lex_state = 54}, + [5190] = {.lex_state = 416}, + [5191] = {.lex_state = 0}, + [5192] = {.lex_state = 56}, + [5193] = {.lex_state = 132}, + [5194] = {.lex_state = 54}, + [5195] = {.lex_state = 54}, + [5196] = {.lex_state = 132}, + [5197] = {.lex_state = 132}, + [5198] = {.lex_state = 416}, + [5199] = {.lex_state = 416}, + [5200] = {.lex_state = 56}, + [5201] = {.lex_state = 56}, + [5202] = {.lex_state = 0}, + [5203] = {.lex_state = 416}, + [5204] = {.lex_state = 416}, + [5205] = {.lex_state = 416}, + [5206] = {.lex_state = 132}, + [5207] = {.lex_state = 124}, + [5208] = {.lex_state = 416}, + [5209] = {.lex_state = 416}, + [5210] = {.lex_state = 416}, + [5211] = {.lex_state = 0}, + [5212] = {.lex_state = 416}, + [5213] = {.lex_state = 54}, + [5214] = {.lex_state = 416}, + [5215] = {.lex_state = 54}, + [5216] = {.lex_state = 132}, + [5217] = {.lex_state = 416}, + [5218] = {.lex_state = 61}, + [5219] = {.lex_state = 54}, + [5220] = {.lex_state = 54}, + [5221] = {.lex_state = 416}, + [5222] = {.lex_state = 416}, + [5223] = {.lex_state = 54}, + [5224] = {.lex_state = 132}, + [5225] = {.lex_state = 0}, + [5226] = {.lex_state = 132}, + [5227] = {.lex_state = 132}, + [5228] = {.lex_state = 132}, + [5229] = {.lex_state = 132}, + [5230] = {.lex_state = 132}, + [5231] = {.lex_state = 132}, + [5232] = {.lex_state = 54}, + [5233] = {.lex_state = 132}, + [5234] = {.lex_state = 132}, + [5235] = {.lex_state = 132}, + [5236] = {.lex_state = 56}, + [5237] = {.lex_state = 132}, + [5238] = {.lex_state = 416}, + [5239] = {.lex_state = 0}, + [5240] = {.lex_state = 416}, + [5241] = {.lex_state = 416}, + [5242] = {.lex_state = 54}, + [5243] = {.lex_state = 132}, + [5244] = {.lex_state = 416}, + [5245] = {.lex_state = 54}, + [5246] = {.lex_state = 56}, + [5247] = {.lex_state = 56}, + [5248] = {.lex_state = 132}, + [5249] = {.lex_state = 61}, + [5250] = {.lex_state = 132}, + [5251] = {.lex_state = 132}, + [5252] = {.lex_state = 54}, + [5253] = {.lex_state = 61}, + [5254] = {.lex_state = 54}, + [5255] = {.lex_state = 54}, + [5256] = {.lex_state = 54}, + [5257] = {.lex_state = 124}, + [5258] = {.lex_state = 54}, + [5259] = {.lex_state = 0}, + [5260] = {.lex_state = 54}, + [5261] = {.lex_state = 416}, + [5262] = {.lex_state = 416}, + [5263] = {.lex_state = 132}, + [5264] = {.lex_state = 54}, + [5265] = {.lex_state = 132}, + [5266] = {.lex_state = 416}, + [5267] = {.lex_state = 98}, + [5268] = {.lex_state = 54}, + [5269] = {.lex_state = 98}, + [5270] = {.lex_state = 98}, + [5271] = {.lex_state = 132}, + [5272] = {.lex_state = 132}, + [5273] = {.lex_state = 0}, + [5274] = {.lex_state = 108}, + [5275] = {.lex_state = 54}, + [5276] = {.lex_state = 416}, + [5277] = {.lex_state = 0}, + [5278] = {.lex_state = 54}, + [5279] = {.lex_state = 416}, + [5280] = {.lex_state = 56}, + [5281] = {.lex_state = 61}, + [5282] = {.lex_state = 54}, + [5283] = {.lex_state = 416}, + [5284] = {.lex_state = 54}, + [5285] = {.lex_state = 54}, + [5286] = {.lex_state = 54}, + [5287] = {.lex_state = 132}, + [5288] = {.lex_state = 416}, + [5289] = {.lex_state = 0}, + [5290] = {.lex_state = 416}, + [5291] = {.lex_state = 416}, + [5292] = {.lex_state = 416}, + [5293] = {.lex_state = 416}, + [5294] = {.lex_state = 132}, + [5295] = {.lex_state = 54}, + [5296] = {.lex_state = 132}, + [5297] = {.lex_state = 416}, + [5298] = {.lex_state = 132}, + [5299] = {.lex_state = 56}, + [5300] = {.lex_state = 416}, + [5301] = {.lex_state = 132}, + [5302] = {.lex_state = 132}, + [5303] = {.lex_state = 132}, + [5304] = {.lex_state = 132}, + [5305] = {.lex_state = 132}, + [5306] = {.lex_state = 416}, + [5307] = {.lex_state = 416}, + [5308] = {.lex_state = 54}, + [5309] = {.lex_state = 128}, + [5310] = {.lex_state = 416}, + [5311] = {.lex_state = 0}, + [5312] = {.lex_state = 416}, + [5313] = {.lex_state = 0}, + [5314] = {.lex_state = 0}, + [5315] = {.lex_state = 0}, + [5316] = {.lex_state = 0}, + [5317] = {.lex_state = 0}, + [5318] = {.lex_state = 0}, + [5319] = {.lex_state = 416}, + [5320] = {.lex_state = 416}, + [5321] = {.lex_state = 0}, + [5322] = {.lex_state = 0}, + [5323] = {.lex_state = 0}, + [5324] = {.lex_state = 0}, + [5325] = {.lex_state = 416}, + [5326] = {.lex_state = 0}, + [5327] = {.lex_state = 132}, + [5328] = {.lex_state = 0}, + [5329] = {.lex_state = 416}, + [5330] = {.lex_state = 132}, + [5331] = {.lex_state = 416}, + [5332] = {.lex_state = 0}, + [5333] = {.lex_state = 416}, + [5334] = {.lex_state = 0}, + [5335] = {.lex_state = 416}, + [5336] = {.lex_state = 0}, + [5337] = {.lex_state = 416}, + [5338] = {.lex_state = 416}, + [5339] = {.lex_state = 0}, + [5340] = {.lex_state = 0}, + [5341] = {.lex_state = 0}, + [5342] = {.lex_state = 416}, + [5343] = {.lex_state = 61}, + [5344] = {.lex_state = 0}, + [5345] = {.lex_state = 416}, + [5346] = {.lex_state = 0}, + [5347] = {.lex_state = 0}, + [5348] = {.lex_state = 0}, + [5349] = {.lex_state = 0}, + [5350] = {.lex_state = 0}, + [5351] = {.lex_state = 0}, + [5352] = {.lex_state = 0}, + [5353] = {.lex_state = 0}, + [5354] = {.lex_state = 0}, + [5355] = {.lex_state = 0}, + [5356] = {.lex_state = 0}, + [5357] = {.lex_state = 0}, + [5358] = {.lex_state = 0}, + [5359] = {.lex_state = 0}, + [5360] = {.lex_state = 0}, + [5361] = {.lex_state = 416}, + [5362] = {.lex_state = 0}, + [5363] = {.lex_state = 0}, + [5364] = {.lex_state = 416}, + [5365] = {.lex_state = 0}, + [5366] = {.lex_state = 416}, + [5367] = {.lex_state = 0}, + [5368] = {.lex_state = 0}, + [5369] = {.lex_state = 0}, + [5370] = {.lex_state = 0}, + [5371] = {.lex_state = 132}, + [5372] = {.lex_state = 0}, + [5373] = {.lex_state = 0}, + [5374] = {.lex_state = 0}, + [5375] = {.lex_state = 0}, + [5376] = {.lex_state = 0}, + [5377] = {.lex_state = 0}, + [5378] = {.lex_state = 0}, + [5379] = {.lex_state = 0}, + [5380] = {.lex_state = 0}, + [5381] = {.lex_state = 0}, + [5382] = {.lex_state = 0}, + [5383] = {.lex_state = 0}, + [5384] = {.lex_state = 0}, + [5385] = {.lex_state = 0}, + [5386] = {.lex_state = 0}, + [5387] = {.lex_state = 0}, + [5388] = {.lex_state = 0}, + [5389] = {.lex_state = 0}, + [5390] = {.lex_state = 0}, + [5391] = {.lex_state = 0}, + [5392] = {.lex_state = 416}, + [5393] = {.lex_state = 416}, + [5394] = {.lex_state = 0}, + [5395] = {.lex_state = 61}, + [5396] = {.lex_state = 0}, + [5397] = {.lex_state = 0}, + [5398] = {.lex_state = 416}, + [5399] = {.lex_state = 416}, + [5400] = {.lex_state = 0}, + [5401] = {.lex_state = 0}, + [5402] = {.lex_state = 0}, + [5403] = {.lex_state = 416}, + [5404] = {.lex_state = 132}, + [5405] = {.lex_state = 0}, + [5406] = {.lex_state = 0}, + [5407] = {.lex_state = 0}, + [5408] = {.lex_state = 0}, + [5409] = {.lex_state = 0}, + [5410] = {.lex_state = 0}, + [5411] = {.lex_state = 0}, + [5412] = {.lex_state = 0}, + [5413] = {.lex_state = 0}, + [5414] = {.lex_state = 416}, + [5415] = {.lex_state = 0}, + [5416] = {.lex_state = 0}, + [5417] = {.lex_state = 0}, + [5418] = {.lex_state = 0}, + [5419] = {.lex_state = 0}, + [5420] = {.lex_state = 0}, + [5421] = {.lex_state = 0}, + [5422] = {.lex_state = 0}, + [5423] = {.lex_state = 61}, + [5424] = {.lex_state = 0}, + [5425] = {.lex_state = 0}, + [5426] = {.lex_state = 0}, + [5427] = {.lex_state = 416}, + [5428] = {.lex_state = 0}, + [5429] = {.lex_state = 0}, + [5430] = {.lex_state = 0}, + [5431] = {.lex_state = 0}, + [5432] = {.lex_state = 0}, + [5433] = {.lex_state = 416}, + [5434] = {.lex_state = 0}, + [5435] = {.lex_state = 0}, + [5436] = {.lex_state = 416}, + [5437] = {.lex_state = 0}, + [5438] = {.lex_state = 0}, + [5439] = {.lex_state = 0}, + [5440] = {.lex_state = 416}, + [5441] = {.lex_state = 0}, + [5442] = {.lex_state = 0}, + [5443] = {.lex_state = 0}, + [5444] = {.lex_state = 0}, + [5445] = {.lex_state = 0}, + [5446] = {.lex_state = 0}, + [5447] = {.lex_state = 0}, + [5448] = {.lex_state = 0}, + [5449] = {.lex_state = 58}, + [5450] = {.lex_state = 0}, + [5451] = {.lex_state = 0}, + [5452] = {.lex_state = 0}, + [5453] = {.lex_state = 0}, + [5454] = {.lex_state = 0}, + [5455] = {.lex_state = 0}, + [5456] = {.lex_state = 0}, + [5457] = {.lex_state = 416}, + [5458] = {.lex_state = 0}, + [5459] = {.lex_state = 0}, + [5460] = {.lex_state = 0}, + [5461] = {.lex_state = 0}, + [5462] = {.lex_state = 0}, + [5463] = {.lex_state = 0}, + [5464] = {.lex_state = 132}, + [5465] = {.lex_state = 0}, + [5466] = {.lex_state = 0}, + [5467] = {.lex_state = 416}, + [5468] = {.lex_state = 0}, + [5469] = {.lex_state = 0}, + [5470] = {.lex_state = 0}, + [5471] = {.lex_state = 0}, + [5472] = {.lex_state = 0}, + [5473] = {.lex_state = 0}, + [5474] = {.lex_state = 0}, + [5475] = {.lex_state = 0}, + [5476] = {.lex_state = 0}, + [5477] = {.lex_state = 58}, + [5478] = {.lex_state = 416}, + [5479] = {.lex_state = 0}, + [5480] = {.lex_state = 416}, + [5481] = {.lex_state = 416}, + [5482] = {.lex_state = 0}, + [5483] = {.lex_state = 0}, + [5484] = {.lex_state = 0}, + [5485] = {.lex_state = 416}, + [5486] = {.lex_state = 0}, + [5487] = {.lex_state = 416}, + [5488] = {.lex_state = 0}, + [5489] = {.lex_state = 0}, + [5490] = {.lex_state = 0}, + [5491] = {.lex_state = 0}, + [5492] = {.lex_state = 0}, + [5493] = {.lex_state = 0}, + [5494] = {.lex_state = 0}, + [5495] = {.lex_state = 0}, + [5496] = {.lex_state = 132}, + [5497] = {.lex_state = 416}, + [5498] = {.lex_state = 58}, + [5499] = {.lex_state = 0}, + [5500] = {.lex_state = 0}, + [5501] = {.lex_state = 0}, + [5502] = {.lex_state = 0}, + [5503] = {.lex_state = 0}, + [5504] = {.lex_state = 416}, + [5505] = {.lex_state = 416}, + [5506] = {.lex_state = 58}, + [5507] = {.lex_state = 0}, + [5508] = {.lex_state = 0}, + [5509] = {.lex_state = 132}, + [5510] = {.lex_state = 132}, + [5511] = {.lex_state = 0}, + [5512] = {.lex_state = 0}, + [5513] = {.lex_state = 416}, + [5514] = {.lex_state = 0}, + [5515] = {.lex_state = 0}, + [5516] = {.lex_state = 0}, + [5517] = {.lex_state = 0}, + [5518] = {.lex_state = 0}, + [5519] = {.lex_state = 0}, + [5520] = {.lex_state = 0}, + [5521] = {.lex_state = 0}, + [5522] = {.lex_state = 0}, + [5523] = {.lex_state = 0}, + [5524] = {.lex_state = 416}, + [5525] = {.lex_state = 0}, + [5526] = {.lex_state = 0}, + [5527] = {.lex_state = 0}, + [5528] = {.lex_state = 0}, + [5529] = {.lex_state = 0}, + [5530] = {.lex_state = 0}, + [5531] = {.lex_state = 416}, + [5532] = {.lex_state = 0}, + [5533] = {.lex_state = 0}, + [5534] = {.lex_state = 0}, + [5535] = {.lex_state = 0}, + [5536] = {.lex_state = 0}, + [5537] = {.lex_state = 132}, + [5538] = {.lex_state = 0}, + [5539] = {.lex_state = 132}, + [5540] = {.lex_state = 416}, + [5541] = {.lex_state = 0}, + [5542] = {.lex_state = 0}, + [5543] = {.lex_state = 416}, + [5544] = {.lex_state = 0}, + [5545] = {.lex_state = 0}, + [5546] = {.lex_state = 0}, + [5547] = {.lex_state = 0}, + [5548] = {.lex_state = 0}, + [5549] = {.lex_state = 132}, + [5550] = {.lex_state = 132}, + [5551] = {.lex_state = 416}, + [5552] = {.lex_state = 0}, + [5553] = {.lex_state = 0}, + [5554] = {.lex_state = 132}, + [5555] = {.lex_state = 132}, + [5556] = {.lex_state = 132}, + [5557] = {.lex_state = 0}, + [5558] = {.lex_state = 0}, + [5559] = {.lex_state = 416}, + [5560] = {.lex_state = 0}, + [5561] = {.lex_state = 0}, + [5562] = {.lex_state = 416}, + [5563] = {.lex_state = 0}, + [5564] = {.lex_state = 0}, + [5565] = {.lex_state = 0}, + [5566] = {.lex_state = 0}, + [5567] = {.lex_state = 0}, + [5568] = {.lex_state = 0}, + [5569] = {.lex_state = 0}, + [5570] = {.lex_state = 0}, + [5571] = {.lex_state = 416}, + [5572] = {.lex_state = 0}, + [5573] = {.lex_state = 0}, + [5574] = {.lex_state = 416}, + [5575] = {.lex_state = 0}, + [5576] = {.lex_state = 0}, + [5577] = {.lex_state = 0}, + [5578] = {.lex_state = 0}, + [5579] = {.lex_state = 0}, + [5580] = {.lex_state = 132}, + [5581] = {.lex_state = 416}, + [5582] = {.lex_state = 416}, + [5583] = {.lex_state = 0}, + [5584] = {.lex_state = 0}, + [5585] = {.lex_state = 0}, + [5586] = {.lex_state = 0}, + [5587] = {.lex_state = 61}, + [5588] = {.lex_state = 0}, + [5589] = {.lex_state = 416}, + [5590] = {.lex_state = 0}, + [5591] = {.lex_state = 416}, + [5592] = {.lex_state = 0}, + [5593] = {.lex_state = 0}, + [5594] = {.lex_state = 0}, + [5595] = {.lex_state = 132}, + [5596] = {.lex_state = 0}, + [5597] = {.lex_state = 0}, + [5598] = {.lex_state = 0}, + [5599] = {.lex_state = 0}, + [5600] = {.lex_state = 0}, + [5601] = {.lex_state = 0}, + [5602] = {.lex_state = 0}, + [5603] = {.lex_state = 0}, + [5604] = {.lex_state = 0}, + [5605] = {.lex_state = 0}, + [5606] = {.lex_state = 0}, + [5607] = {.lex_state = 0}, + [5608] = {.lex_state = 0}, + [5609] = {.lex_state = 0}, + [5610] = {.lex_state = 0}, + [5611] = {.lex_state = 0}, + [5612] = {.lex_state = 0}, + [5613] = {.lex_state = 0}, + [5614] = {.lex_state = 0}, + [5615] = {.lex_state = 0}, + [5616] = {.lex_state = 416}, + [5617] = {.lex_state = 416}, + [5618] = {.lex_state = 0}, + [5619] = {.lex_state = 0}, + [5620] = {.lex_state = 0}, + [5621] = {.lex_state = 0}, + [5622] = {.lex_state = 416}, + [5623] = {.lex_state = 0}, + [5624] = {.lex_state = 0}, + [5625] = {.lex_state = 0}, + [5626] = {.lex_state = 0}, + [5627] = {.lex_state = 416}, + [5628] = {.lex_state = 416}, + [5629] = {.lex_state = 416}, + [5630] = {.lex_state = 0}, + [5631] = {.lex_state = 416}, + [5632] = {.lex_state = 416}, + [5633] = {.lex_state = 0}, + [5634] = {.lex_state = 0}, + [5635] = {.lex_state = 0}, + [5636] = {.lex_state = 0}, + [5637] = {.lex_state = 416}, + [5638] = {.lex_state = 0}, + [5639] = {.lex_state = 0}, + [5640] = {.lex_state = 0}, + [5641] = {.lex_state = 0}, + [5642] = {.lex_state = 0}, + [5643] = {.lex_state = 0}, + [5644] = {.lex_state = 0}, + [5645] = {.lex_state = 0}, + [5646] = {.lex_state = 0}, + [5647] = {.lex_state = 0}, + [5648] = {.lex_state = 0}, + [5649] = {.lex_state = 0}, + [5650] = {.lex_state = 0}, + [5651] = {.lex_state = 0}, + [5652] = {.lex_state = 0}, + [5653] = {.lex_state = 0}, + [5654] = {.lex_state = 0}, + [5655] = {.lex_state = 416}, + [5656] = {.lex_state = 416}, + [5657] = {.lex_state = 0}, + [5658] = {.lex_state = 0}, + [5659] = {.lex_state = 416}, + [5660] = {.lex_state = 0}, + [5661] = {.lex_state = 416}, + [5662] = {.lex_state = 416}, + [5663] = {.lex_state = 0}, + [5664] = {.lex_state = 132}, + [5665] = {.lex_state = 416}, + [5666] = {.lex_state = 416}, + [5667] = {.lex_state = 0}, + [5668] = {.lex_state = 132}, + [5669] = {.lex_state = 0}, + [5670] = {.lex_state = 0}, + [5671] = {.lex_state = 0}, + [5672] = {.lex_state = 0}, + [5673] = {.lex_state = 0}, + [5674] = {.lex_state = 58}, + [5675] = {.lex_state = 0}, + [5676] = {.lex_state = 0}, + [5677] = {.lex_state = 416}, + [5678] = {.lex_state = 132}, + [5679] = {.lex_state = 0}, + [5680] = {.lex_state = 0}, + [5681] = {.lex_state = 132}, + [5682] = {.lex_state = 0}, + [5683] = {.lex_state = 132}, + [5684] = {.lex_state = 0}, + [5685] = {.lex_state = 0}, + [5686] = {.lex_state = 0}, + [5687] = {.lex_state = 0}, + [5688] = {.lex_state = 0}, + [5689] = {.lex_state = 416}, + [5690] = {.lex_state = 0}, + [5691] = {.lex_state = 0}, + [5692] = {.lex_state = 0}, + [5693] = {.lex_state = 0}, + [5694] = {.lex_state = 0}, + [5695] = {.lex_state = 0}, + [5696] = {.lex_state = 0}, + [5697] = {.lex_state = 416}, + [5698] = {.lex_state = 416}, + [5699] = {.lex_state = 416}, + [5700] = {.lex_state = 0}, + [5701] = {.lex_state = 0}, + [5702] = {.lex_state = 416}, + [5703] = {.lex_state = 0}, + [5704] = {.lex_state = 0}, + [5705] = {.lex_state = 0}, + [5706] = {.lex_state = 416}, + [5707] = {.lex_state = 416}, + [5708] = {.lex_state = 0}, + [5709] = {.lex_state = 0}, + [5710] = {.lex_state = 416}, + [5711] = {.lex_state = 132}, + [5712] = {.lex_state = 0}, + [5713] = {.lex_state = 57}, + [5714] = {.lex_state = 0}, + [5715] = {.lex_state = 416}, + [5716] = {.lex_state = 132}, + [5717] = {.lex_state = 58}, + [5718] = {.lex_state = 134}, + [5719] = {.lex_state = 132}, + [5720] = {.lex_state = 0}, + [5721] = {.lex_state = 98}, + [5722] = {.lex_state = 57}, + [5723] = {.lex_state = 416}, + [5724] = {.lex_state = 132}, + [5725] = {.lex_state = 416}, + [5726] = {.lex_state = 57}, + [5727] = {.lex_state = 416}, + [5728] = {.lex_state = 416}, + [5729] = {.lex_state = 416}, + [5730] = {.lex_state = 416}, + [5731] = {.lex_state = 0}, + [5732] = {.lex_state = 132}, + [5733] = {.lex_state = 0}, + [5734] = {.lex_state = 0}, + [5735] = {.lex_state = 132}, + [5736] = {.lex_state = 416}, + [5737] = {.lex_state = 0}, + [5738] = {.lex_state = 132}, + [5739] = {.lex_state = 0}, + [5740] = {.lex_state = 416}, + [5741] = {.lex_state = 132}, + [5742] = {.lex_state = 416}, + [5743] = {.lex_state = 137}, + [5744] = {.lex_state = 0}, + [5745] = {.lex_state = 416}, + [5746] = {.lex_state = 137}, + [5747] = {.lex_state = 58}, + [5748] = {.lex_state = 134}, + [5749] = {.lex_state = 57}, + [5750] = {.lex_state = 0}, + [5751] = {.lex_state = 0}, + [5752] = {.lex_state = 0}, + [5753] = {.lex_state = 416}, + [5754] = {.lex_state = 0}, + [5755] = {.lex_state = 57}, + [5756] = {.lex_state = 0}, + [5757] = {.lex_state = 58}, + [5758] = {.lex_state = 0}, + [5759] = {.lex_state = 416}, + [5760] = {.lex_state = 416}, + [5761] = {.lex_state = 0}, + [5762] = {.lex_state = 0}, + [5763] = {.lex_state = 132}, + [5764] = {.lex_state = 57}, + [5765] = {.lex_state = 0}, + [5766] = {.lex_state = 58}, + [5767] = {.lex_state = 416}, + [5768] = {.lex_state = 416}, + [5769] = {.lex_state = 416}, + [5770] = {.lex_state = 0}, + [5771] = {.lex_state = 0}, + [5772] = {.lex_state = 132}, + [5773] = {.lex_state = 132}, + [5774] = {.lex_state = 0}, + [5775] = {.lex_state = 0}, + [5776] = {.lex_state = 0}, + [5777] = {.lex_state = 0}, + [5778] = {.lex_state = 0}, + [5779] = {.lex_state = 416}, + [5780] = {.lex_state = 58}, + [5781] = {.lex_state = 416}, + [5782] = {.lex_state = 0}, + [5783] = {.lex_state = 58}, + [5784] = {.lex_state = 132}, + [5785] = {.lex_state = 416}, + [5786] = {.lex_state = 0}, + [5787] = {.lex_state = 416}, + [5788] = {.lex_state = 416}, + [5789] = {.lex_state = 57}, + [5790] = {.lex_state = 0}, + [5791] = {.lex_state = 132}, + [5792] = {.lex_state = 57}, + [5793] = {.lex_state = 0}, + [5794] = {.lex_state = 132}, + [5795] = {.lex_state = 416}, + [5796] = {.lex_state = 57}, + [5797] = {.lex_state = 416}, + [5798] = {.lex_state = 416}, + [5799] = {.lex_state = 57}, + [5800] = {.lex_state = 416}, + [5801] = {.lex_state = 0}, + [5802] = {.lex_state = 57}, + [5803] = {.lex_state = 132}, + [5804] = {.lex_state = 132}, + [5805] = {.lex_state = 137}, + [5806] = {.lex_state = 132}, + [5807] = {.lex_state = 58}, + [5808] = {.lex_state = 416}, + [5809] = {.lex_state = 0}, + [5810] = {.lex_state = 0}, + [5811] = {.lex_state = 0}, + [5812] = {.lex_state = 416}, + [5813] = {.lex_state = 0}, + [5814] = {.lex_state = 416}, + [5815] = {.lex_state = 416}, + [5816] = {.lex_state = 0}, + [5817] = {.lex_state = 0}, + [5818] = {.lex_state = 132}, + [5819] = {.lex_state = 132}, + [5820] = {.lex_state = 57}, + [5821] = {.lex_state = 0}, + [5822] = {.lex_state = 98}, + [5823] = {.lex_state = 132}, + [5824] = {.lex_state = 132}, + [5825] = {.lex_state = 137}, + [5826] = {.lex_state = 132}, + [5827] = {.lex_state = 0}, + [5828] = {.lex_state = 0}, + [5829] = {.lex_state = 132}, + [5830] = {.lex_state = 416}, + [5831] = {.lex_state = 416}, + [5832] = {.lex_state = 57}, + [5833] = {.lex_state = 0}, + [5834] = {.lex_state = 132}, + [5835] = {.lex_state = 416}, + [5836] = {.lex_state = 416}, + [5837] = {.lex_state = 57}, + [5838] = {.lex_state = 57}, + [5839] = {.lex_state = 132}, + [5840] = {.lex_state = 416}, + [5841] = {.lex_state = 57}, + [5842] = {.lex_state = 0}, + [5843] = {.lex_state = 132}, + [5844] = {.lex_state = 416}, + [5845] = {.lex_state = 57}, + [5846] = {.lex_state = 0}, + [5847] = {.lex_state = 416}, + [5848] = {.lex_state = 0}, + [5849] = {.lex_state = 132}, + [5850] = {.lex_state = 58}, + [5851] = {.lex_state = 57}, + [5852] = {.lex_state = 137}, + [5853] = {.lex_state = 57}, + [5854] = {.lex_state = 58}, + [5855] = {.lex_state = 57}, + [5856] = {.lex_state = 416}, + [5857] = {.lex_state = 0}, + [5858] = {.lex_state = 0}, + [5859] = {.lex_state = 58}, + [5860] = {.lex_state = 132}, + [5861] = {.lex_state = 0}, + [5862] = {.lex_state = 416}, + [5863] = {.lex_state = 132}, + [5864] = {.lex_state = 0}, + [5865] = {.lex_state = 0}, + [5866] = {.lex_state = 58}, + [5867] = {.lex_state = 0}, + [5868] = {.lex_state = 416}, + [5869] = {.lex_state = 132}, + [5870] = {.lex_state = 0}, + [5871] = {.lex_state = 58}, + [5872] = {.lex_state = 0}, + [5873] = {.lex_state = 132}, + [5874] = {.lex_state = 416}, + [5875] = {.lex_state = 416}, + [5876] = {.lex_state = 57}, + [5877] = {.lex_state = 0}, + [5878] = {.lex_state = 0}, + [5879] = {.lex_state = 57}, + [5880] = {.lex_state = 416}, + [5881] = {.lex_state = 416}, + [5882] = {.lex_state = 137}, + [5883] = {.lex_state = 132}, + [5884] = {.lex_state = 0}, + [5885] = {.lex_state = 416}, + [5886] = {.lex_state = 416}, + [5887] = {.lex_state = 0}, + [5888] = {.lex_state = 57}, + [5889] = {.lex_state = 0}, + [5890] = {.lex_state = 58}, + [5891] = {.lex_state = 57}, + [5892] = {.lex_state = 416}, + [5893] = {.lex_state = 416}, + [5894] = {.lex_state = 0}, + [5895] = {.lex_state = 57}, + [5896] = {.lex_state = 0}, + [5897] = {.lex_state = 0}, + [5898] = {.lex_state = 132}, + [5899] = {.lex_state = 0}, + [5900] = {.lex_state = 0}, + [5901] = {.lex_state = 0}, + [5902] = {.lex_state = 0}, + [5903] = {.lex_state = 132}, + [5904] = {.lex_state = 0}, + [5905] = {.lex_state = 0}, + [5906] = {.lex_state = 132}, + [5907] = {.lex_state = 105}, + [5908] = {.lex_state = 0}, + [5909] = {.lex_state = 0}, + [5910] = {.lex_state = 132}, + [5911] = {.lex_state = 0}, + [5912] = {.lex_state = 0}, + [5913] = {.lex_state = 0}, + [5914] = {.lex_state = 0}, + [5915] = {.lex_state = 0}, + [5916] = {.lex_state = 0}, + [5917] = {.lex_state = 0}, + [5918] = {.lex_state = 0}, + [5919] = {.lex_state = 0}, + [5920] = {.lex_state = 132}, + [5921] = {.lex_state = 132}, + [5922] = {.lex_state = 58}, + [5923] = {.lex_state = 0}, + [5924] = {.lex_state = 0}, + [5925] = {.lex_state = 0}, + [5926] = {.lex_state = 0}, + [5927] = {.lex_state = 0}, + [5928] = {.lex_state = 0}, + [5929] = {.lex_state = 132}, + [5930] = {.lex_state = 0}, + [5931] = {.lex_state = 132}, + [5932] = {.lex_state = 132}, + [5933] = {.lex_state = 132}, + [5934] = {.lex_state = 0}, + [5935] = {.lex_state = 0}, + [5936] = {.lex_state = 105}, + [5937] = {.lex_state = 105}, + [5938] = {.lex_state = 0}, + [5939] = {.lex_state = 58}, + [5940] = {.lex_state = 105}, + [5941] = {.lex_state = 132}, + [5942] = {.lex_state = 0}, + [5943] = {.lex_state = 0}, + [5944] = {.lex_state = 132}, + [5945] = {.lex_state = 416}, + [5946] = {.lex_state = 0}, + [5947] = {.lex_state = 132}, + [5948] = {.lex_state = 58}, + [5949] = {.lex_state = 132}, + [5950] = {.lex_state = 0}, + [5951] = {.lex_state = 0}, + [5952] = {.lex_state = 132}, + [5953] = {.lex_state = 58}, + [5954] = {.lex_state = 132}, + [5955] = {.lex_state = 416}, + [5956] = {.lex_state = 0}, + [5957] = {.lex_state = 105}, + [5958] = {.lex_state = 416}, + [5959] = {.lex_state = 726}, + [5960] = {.lex_state = 132}, + [5961] = {.lex_state = 58}, + [5962] = {.lex_state = 0}, + [5963] = {.lex_state = 0}, + [5964] = {.lex_state = 0}, + [5965] = {.lex_state = 0}, + [5966] = {.lex_state = 0}, + [5967] = {.lex_state = 132}, + [5968] = {.lex_state = 0}, + [5969] = {.lex_state = 0}, + [5970] = {.lex_state = 132}, + [5971] = {.lex_state = 0}, + [5972] = {.lex_state = 0}, + [5973] = {.lex_state = 0}, + [5974] = {.lex_state = 0}, + [5975] = {.lex_state = 132}, + [5976] = {.lex_state = 132}, + [5977] = {.lex_state = 105}, + [5978] = {.lex_state = 132}, + [5979] = {.lex_state = 58}, + [5980] = {.lex_state = 105}, + [5981] = {.lex_state = 0}, + [5982] = {.lex_state = 0}, + [5983] = {.lex_state = 0}, + [5984] = {.lex_state = 105}, + [5985] = {.lex_state = 132}, + [5986] = {.lex_state = 0}, + [5987] = {.lex_state = 0}, + [5988] = {.lex_state = 132}, + [5989] = {.lex_state = 132}, + [5990] = {.lex_state = 0}, + [5991] = {.lex_state = 0}, + [5992] = {.lex_state = 0}, + [5993] = {.lex_state = 0}, + [5994] = {.lex_state = 0}, + [5995] = {.lex_state = 0}, + [5996] = {.lex_state = 0}, + [5997] = {.lex_state = 132}, + [5998] = {.lex_state = 132}, + [5999] = {.lex_state = 132}, + [6000] = {.lex_state = 132}, + [6001] = {.lex_state = 0}, + [6002] = {.lex_state = 0}, + [6003] = {.lex_state = 0}, + [6004] = {.lex_state = 0}, + [6005] = {.lex_state = 132}, + [6006] = {.lex_state = 0}, + [6007] = {.lex_state = 0}, + [6008] = {.lex_state = 132}, + [6009] = {.lex_state = 0}, + [6010] = {.lex_state = 132}, + [6011] = {.lex_state = 132}, + [6012] = {.lex_state = 0}, + [6013] = {.lex_state = 416}, + [6014] = {.lex_state = 132}, + [6015] = {.lex_state = 0}, + [6016] = {.lex_state = 132}, + [6017] = {.lex_state = 0}, + [6018] = {.lex_state = 0}, + [6019] = {.lex_state = 0}, + [6020] = {.lex_state = 0}, + [6021] = {.lex_state = 726}, + [6022] = {.lex_state = 58}, + [6023] = {.lex_state = 0}, + [6024] = {.lex_state = 0}, + [6025] = {.lex_state = 0}, + [6026] = {.lex_state = 132}, + [6027] = {.lex_state = 0}, + [6028] = {.lex_state = 0}, + [6029] = {.lex_state = 105}, + [6030] = {.lex_state = 0}, + [6031] = {.lex_state = 0}, + [6032] = {.lex_state = 416}, + [6033] = {.lex_state = 0}, + [6034] = {.lex_state = 132}, + [6035] = {.lex_state = 0}, + [6036] = {.lex_state = 0}, + [6037] = {.lex_state = 58}, + [6038] = {.lex_state = 0}, + [6039] = {.lex_state = 0}, + [6040] = {.lex_state = 0}, + [6041] = {.lex_state = 0}, + [6042] = {.lex_state = 0}, + [6043] = {.lex_state = 0}, + [6044] = {.lex_state = 132}, + [6045] = {.lex_state = 132}, + [6046] = {.lex_state = 0}, + [6047] = {.lex_state = 0}, + [6048] = {.lex_state = 58}, + [6049] = {.lex_state = 58}, + [6050] = {.lex_state = 105}, + [6051] = {.lex_state = 132}, + [6052] = {.lex_state = 132}, + [6053] = {.lex_state = 0}, + [6054] = {.lex_state = 0}, + [6055] = {.lex_state = 0}, + [6056] = {.lex_state = 0}, + [6057] = {.lex_state = 0}, + [6058] = {.lex_state = 132}, + [6059] = {.lex_state = 0}, + [6060] = {.lex_state = 132}, + [6061] = {.lex_state = 0}, + [6062] = {.lex_state = 0}, + [6063] = {.lex_state = 105}, + [6064] = {.lex_state = 0}, + [6065] = {.lex_state = 0}, + [6066] = {.lex_state = 726}, + [6067] = {.lex_state = 0}, + [6068] = {.lex_state = 0}, + [6069] = {.lex_state = 0}, + [6070] = {.lex_state = 58}, + [6071] = {.lex_state = 132}, + [6072] = {.lex_state = 58}, + [6073] = {.lex_state = 0}, + [6074] = {.lex_state = 0}, + [6075] = {.lex_state = 58}, + [6076] = {.lex_state = 105}, + [6077] = {.lex_state = 0}, + [6078] = {.lex_state = 0}, + [6079] = {.lex_state = 132}, + [6080] = {.lex_state = 0}, + [6081] = {.lex_state = 0}, + [6082] = {.lex_state = 0}, + [6083] = {.lex_state = 0}, + [6084] = {.lex_state = 416}, + [6085] = {.lex_state = 0}, + [6086] = {.lex_state = 0}, + [6087] = {.lex_state = 0}, + [6088] = {.lex_state = 132}, + [6089] = {.lex_state = 132}, + [6090] = {.lex_state = 0}, + [6091] = {.lex_state = 0}, + [6092] = {.lex_state = 132}, + [6093] = {.lex_state = 132}, + [6094] = {.lex_state = 0}, + [6095] = {.lex_state = 0}, + [6096] = {.lex_state = 0}, + [6097] = {.lex_state = 0}, + [6098] = {.lex_state = 132}, + [6099] = {.lex_state = 105}, + [6100] = {.lex_state = 0}, + [6101] = {.lex_state = 0}, + [6102] = {.lex_state = 0}, + [6103] = {.lex_state = 726}, + [6104] = {.lex_state = 0}, + [6105] = {.lex_state = 0}, + [6106] = {.lex_state = 0}, + [6107] = {.lex_state = 0}, + [6108] = {.lex_state = 0}, + [6109] = {.lex_state = 0}, + [6110] = {.lex_state = 0}, + [6111] = {.lex_state = 0}, + [6112] = {.lex_state = 0}, + [6113] = {.lex_state = 0}, + [6114] = {.lex_state = 0}, + [6115] = {.lex_state = 0}, + [6116] = {.lex_state = 0}, + [6117] = {.lex_state = 0}, + [6118] = {.lex_state = 0}, + [6119] = {.lex_state = 132}, + [6120] = {.lex_state = 132}, + [6121] = {.lex_state = 0}, + [6122] = {.lex_state = 132}, + [6123] = {.lex_state = 0}, + [6124] = {.lex_state = 132}, + [6125] = {.lex_state = 132}, + [6126] = {.lex_state = 0}, + [6127] = {.lex_state = 416}, + [6128] = {.lex_state = 0}, + [6129] = {.lex_state = 105}, + [6130] = {.lex_state = 0}, + [6131] = {.lex_state = 0}, + [6132] = {.lex_state = 0}, + [6133] = {.lex_state = 0}, + [6134] = {.lex_state = 0}, + [6135] = {.lex_state = 0}, + [6136] = {.lex_state = 0}, + [6137] = {.lex_state = 132}, + [6138] = {.lex_state = 132}, + [6139] = {.lex_state = 0}, + [6140] = {.lex_state = 0}, + [6141] = {.lex_state = 132}, + [6142] = {.lex_state = 0}, + [6143] = {.lex_state = 0}, + [6144] = {.lex_state = 0}, + [6145] = {.lex_state = 132}, + [6146] = {.lex_state = 0}, + [6147] = {.lex_state = 0}, + [6148] = {.lex_state = 0}, + [6149] = {.lex_state = 0}, + [6150] = {.lex_state = 0}, + [6151] = {.lex_state = 0}, + [6152] = {.lex_state = 0}, + [6153] = {.lex_state = 132}, + [6154] = {.lex_state = 0}, + [6155] = {.lex_state = 0}, + [6156] = {.lex_state = 0}, + [6157] = {.lex_state = 0}, + [6158] = {.lex_state = 0}, + [6159] = {.lex_state = 0}, + [6160] = {.lex_state = 0}, + [6161] = {.lex_state = 0}, + [6162] = {.lex_state = 0}, + [6163] = {.lex_state = 0}, + [6164] = {.lex_state = 132}, + [6165] = {.lex_state = 0}, + [6166] = {.lex_state = 0}, + [6167] = {.lex_state = 0}, + [6168] = {.lex_state = 0}, + [6169] = {.lex_state = 0}, + [6170] = {.lex_state = 0}, + [6171] = {.lex_state = 58}, + [6172] = {.lex_state = 0}, + [6173] = {.lex_state = 58}, + [6174] = {.lex_state = 416}, + [6175] = {.lex_state = 0}, + [6176] = {.lex_state = 416}, + [6177] = {.lex_state = 416}, + [6178] = {.lex_state = 416}, + [6179] = {.lex_state = 416}, + [6180] = {.lex_state = 416}, + [6181] = {.lex_state = 416}, + [6182] = {.lex_state = 132}, + [6183] = {.lex_state = 0}, + [6184] = {.lex_state = 416}, + [6185] = {.lex_state = 416}, + [6186] = {.lex_state = 416}, + [6187] = {.lex_state = 132}, + [6188] = {.lex_state = 0}, + [6189] = {.lex_state = 416}, + [6190] = {.lex_state = 416}, + [6191] = {.lex_state = 0}, + [6192] = {.lex_state = 0}, + [6193] = {.lex_state = 105}, + [6194] = {.lex_state = 132}, + [6195] = {.lex_state = 0}, + [6196] = {.lex_state = 416}, + [6197] = {.lex_state = 0}, + [6198] = {.lex_state = 105}, + [6199] = {.lex_state = 0}, + [6200] = {.lex_state = 0}, + [6201] = {.lex_state = 0}, + [6202] = {.lex_state = 0}, + [6203] = {.lex_state = 0}, + [6204] = {.lex_state = 0}, + [6205] = {.lex_state = 105}, + [6206] = {.lex_state = 132}, + [6207] = {.lex_state = 0}, + [6208] = {.lex_state = 0}, + [6209] = {.lex_state = 0}, + [6210] = {.lex_state = 0}, + [6211] = {.lex_state = 0}, + [6212] = {.lex_state = 58}, + [6213] = {.lex_state = 105}, + [6214] = {.lex_state = 0}, + [6215] = {.lex_state = 0}, + [6216] = {.lex_state = 105}, + [6217] = {.lex_state = 0}, + [6218] = {.lex_state = 0}, + [6219] = {.lex_state = 0}, + [6220] = {.lex_state = 58}, + [6221] = {.lex_state = 0}, + [6222] = {.lex_state = 0}, + [6223] = {.lex_state = 0}, + [6224] = {.lex_state = 58}, + [6225] = {.lex_state = 0}, + [6226] = {.lex_state = 0}, + [6227] = {.lex_state = 0}, + [6228] = {.lex_state = 0}, + [6229] = {.lex_state = 132}, + [6230] = {.lex_state = 0}, + [6231] = {.lex_state = 0}, + [6232] = {.lex_state = 0}, + [6233] = {.lex_state = 132}, + [6234] = {.lex_state = 58}, + [6235] = {.lex_state = 416}, + [6236] = {.lex_state = 0}, + [6237] = {.lex_state = 0}, + [6238] = {.lex_state = 0}, + [6239] = {.lex_state = 132}, + [6240] = {.lex_state = 0}, + [6241] = {.lex_state = 132}, + [6242] = {.lex_state = 58}, + [6243] = {.lex_state = 0}, + [6244] = {.lex_state = 0}, + [6245] = {.lex_state = 0}, + [6246] = {.lex_state = 0}, + [6247] = {.lex_state = 105}, + [6248] = {.lex_state = 132}, + [6249] = {.lex_state = 0}, + [6250] = {.lex_state = 0}, + [6251] = {.lex_state = 0}, + [6252] = {.lex_state = 0}, + [6253] = {.lex_state = 0}, + [6254] = {.lex_state = 0}, + [6255] = {.lex_state = 0}, + [6256] = {.lex_state = 0}, + [6257] = {.lex_state = 0}, + [6258] = {.lex_state = 0}, + [6259] = {.lex_state = 0}, + [6260] = {.lex_state = 58}, + [6261] = {.lex_state = 58}, + [6262] = {.lex_state = 0}, + [6263] = {.lex_state = 0}, + [6264] = {.lex_state = 105}, + [6265] = {.lex_state = 58}, + [6266] = {.lex_state = 416}, + [6267] = {.lex_state = 416}, + [6268] = {.lex_state = 416}, + [6269] = {.lex_state = 416}, + [6270] = {.lex_state = 58}, + [6271] = {.lex_state = 0}, + [6272] = {.lex_state = 416}, + [6273] = {.lex_state = 0}, + [6274] = {.lex_state = 0}, + [6275] = {.lex_state = 58}, + [6276] = {.lex_state = 0}, + [6277] = {.lex_state = 132}, + [6278] = {.lex_state = 132}, + [6279] = {.lex_state = 105}, + [6280] = {.lex_state = 0}, + [6281] = {.lex_state = 416}, + [6282] = {.lex_state = 105}, + [6283] = {.lex_state = 0}, + [6284] = {.lex_state = 0}, + [6285] = {.lex_state = 132}, + [6286] = {.lex_state = 132}, + [6287] = {.lex_state = 0}, + [6288] = {.lex_state = 0}, + [6289] = {.lex_state = 58}, + [6290] = {.lex_state = 132}, + [6291] = {.lex_state = 105}, + [6292] = {.lex_state = 132}, + [6293] = {.lex_state = 105}, + [6294] = {.lex_state = 58}, + [6295] = {.lex_state = 132}, + [6296] = {.lex_state = 58}, + [6297] = {.lex_state = 132}, + [6298] = {.lex_state = 0}, + [6299] = {.lex_state = 0}, + [6300] = {.lex_state = 0}, + [6301] = {.lex_state = 105}, + [6302] = {.lex_state = 58}, + [6303] = {.lex_state = 0}, + [6304] = {.lex_state = 105}, + [6305] = {.lex_state = 0}, + [6306] = {.lex_state = 105}, + [6307] = {.lex_state = 132}, + [6308] = {.lex_state = 0}, + [6309] = {.lex_state = 0}, + [6310] = {.lex_state = 0}, + [6311] = {.lex_state = 132}, + [6312] = {.lex_state = 0}, + [6313] = {.lex_state = 0}, + [6314] = {.lex_state = 0}, + [6315] = {.lex_state = 0}, + [6316] = {.lex_state = 0}, + [6317] = {.lex_state = 0}, + [6318] = {.lex_state = 0}, + [6319] = {.lex_state = 0}, + [6320] = {.lex_state = 0}, + [6321] = {.lex_state = 0}, + [6322] = {.lex_state = 0}, + [6323] = {.lex_state = 0}, + [6324] = {.lex_state = 0}, + [6325] = {.lex_state = 0}, + [6326] = {.lex_state = 132}, + [6327] = {.lex_state = 105}, + [6328] = {.lex_state = 0}, + [6329] = {.lex_state = 0}, + [6330] = {.lex_state = 0}, + [6331] = {.lex_state = 132}, + [6332] = {.lex_state = 0}, + [6333] = {.lex_state = 0}, + [6334] = {.lex_state = 0}, + [6335] = {.lex_state = 132}, + [6336] = {.lex_state = 0}, + [6337] = {.lex_state = 416}, + [6338] = {.lex_state = 0}, + [6339] = {.lex_state = 0}, + [6340] = {.lex_state = 0}, + [6341] = {.lex_state = 416}, + [6342] = {.lex_state = 0}, + [6343] = {.lex_state = 0}, + [6344] = {.lex_state = 0}, + [6345] = {.lex_state = 105}, + [6346] = {.lex_state = 132}, + [6347] = {.lex_state = 0}, + [6348] = {.lex_state = 0}, + [6349] = {.lex_state = 132}, + [6350] = {.lex_state = 0}, + [6351] = {.lex_state = 0}, + [6352] = {.lex_state = 0}, + [6353] = {.lex_state = 0}, + [6354] = {.lex_state = 0}, + [6355] = {.lex_state = 416}, + [6356] = {.lex_state = 416}, + [6357] = {.lex_state = 0}, + [6358] = {.lex_state = 0}, + [6359] = {.lex_state = 0}, + [6360] = {.lex_state = 0}, + [6361] = {.lex_state = 132}, + [6362] = {.lex_state = 0}, + [6363] = {.lex_state = 0}, + [6364] = {.lex_state = 0}, + [6365] = {.lex_state = 0}, + [6366] = {.lex_state = 58}, + [6367] = {.lex_state = 0}, + [6368] = {.lex_state = 416}, + [6369] = {.lex_state = 132}, + [6370] = {.lex_state = 0}, + [6371] = {.lex_state = 0}, + [6372] = {.lex_state = 0}, + [6373] = {.lex_state = 132}, + [6374] = {.lex_state = 0}, + [6375] = {.lex_state = 0}, + [6376] = {.lex_state = 416}, + [6377] = {.lex_state = 416}, + [6378] = {.lex_state = 416}, + [6379] = {.lex_state = 0}, + [6380] = {.lex_state = 132}, + [6381] = {.lex_state = 416}, + [6382] = {.lex_state = 132}, + [6383] = {.lex_state = 132}, + [6384] = {.lex_state = 0}, + [6385] = {.lex_state = 0}, + [6386] = {.lex_state = 0}, + [6387] = {.lex_state = 132}, + [6388] = {.lex_state = 0}, + [6389] = {.lex_state = 0}, + [6390] = {.lex_state = 0}, + [6391] = {.lex_state = 0}, + [6392] = {.lex_state = 132}, + [6393] = {.lex_state = 0}, + [6394] = {.lex_state = 132}, + [6395] = {.lex_state = 105}, + [6396] = {.lex_state = 0}, + [6397] = {.lex_state = 0}, + [6398] = {.lex_state = 132}, + [6399] = {.lex_state = 132}, + [6400] = {.lex_state = 0}, + [6401] = {.lex_state = 416}, + [6402] = {.lex_state = 105}, + [6403] = {.lex_state = 0}, + [6404] = {.lex_state = 0}, + [6405] = {.lex_state = 416}, + [6406] = {.lex_state = 132}, + [6407] = {.lex_state = 132}, + [6408] = {.lex_state = 132}, + [6409] = {.lex_state = 132}, + [6410] = {.lex_state = 132}, + [6411] = {.lex_state = 0}, + [6412] = {.lex_state = 132}, + [6413] = {.lex_state = 0}, + [6414] = {.lex_state = 132}, + [6415] = {.lex_state = 0}, + [6416] = {.lex_state = 132}, + [6417] = {.lex_state = 0}, + [6418] = {.lex_state = 0}, + [6419] = {.lex_state = 0}, + [6420] = {.lex_state = 416}, + [6421] = {.lex_state = 0}, + [6422] = {.lex_state = 105}, + [6423] = {.lex_state = 0}, + [6424] = {.lex_state = 58}, + [6425] = {.lex_state = 105}, + [6426] = {.lex_state = 132}, + [6427] = {.lex_state = 416}, + [6428] = {.lex_state = 0}, + [6429] = {.lex_state = 0}, + [6430] = {.lex_state = 0}, + [6431] = {.lex_state = 105}, + [6432] = {.lex_state = 132}, + [6433] = {.lex_state = 0}, + [6434] = {.lex_state = 0}, + [6435] = {.lex_state = 0}, + [6436] = {.lex_state = 0}, + [6437] = {.lex_state = 0}, + [6438] = {.lex_state = 0}, + [6439] = {.lex_state = 0}, + [6440] = {.lex_state = 0}, + [6441] = {.lex_state = 0}, + [6442] = {.lex_state = 0}, + [6443] = {.lex_state = 0}, + [6444] = {.lex_state = 726}, + [6445] = {.lex_state = 0}, + [6446] = {.lex_state = 0}, + [6447] = {.lex_state = 132}, + [6448] = {.lex_state = 416}, + [6449] = {.lex_state = 416}, + [6450] = {.lex_state = 132}, + [6451] = {.lex_state = 132}, + [6452] = {.lex_state = 416}, + [6453] = {.lex_state = 132}, + [6454] = {.lex_state = 0}, + [6455] = {.lex_state = 0}, + [6456] = {.lex_state = 0}, + [6457] = {.lex_state = 0}, + [6458] = {.lex_state = 0}, + [6459] = {.lex_state = 0}, + [6460] = {.lex_state = 0}, + [6461] = {.lex_state = 0}, + [6462] = {.lex_state = 132}, + [6463] = {.lex_state = 416}, + [6464] = {.lex_state = 105}, + [6465] = {.lex_state = 105}, + [6466] = {.lex_state = 58}, + [6467] = {.lex_state = 0}, + [6468] = {.lex_state = 105}, + [6469] = {.lex_state = 0}, + [6470] = {.lex_state = 105}, + [6471] = {.lex_state = 0}, + [6472] = {.lex_state = 105}, + [6473] = {.lex_state = 0}, + [6474] = {.lex_state = 105}, + [6475] = {.lex_state = 0}, + [6476] = {.lex_state = 0}, + [6477] = {.lex_state = 0}, + [6478] = {.lex_state = 0}, + [6479] = {.lex_state = 0}, + [6480] = {.lex_state = 416}, + [6481] = {.lex_state = 416}, + [6482] = {.lex_state = 0}, + [6483] = {.lex_state = 416}, + [6484] = {.lex_state = 132}, + [6485] = {.lex_state = 132}, + [6486] = {.lex_state = 0}, + [6487] = {.lex_state = 0}, + [6488] = {.lex_state = 0}, + [6489] = {.lex_state = 132}, + [6490] = {.lex_state = 416}, + [6491] = {.lex_state = 132}, + [6492] = {.lex_state = 0}, + [6493] = {.lex_state = 0}, + [6494] = {.lex_state = 132}, + [6495] = {.lex_state = 0}, + [6496] = {.lex_state = 0}, + [6497] = {.lex_state = 0}, + [6498] = {.lex_state = 0}, + [6499] = {.lex_state = 105}, + [6500] = {.lex_state = 0}, + [6501] = {.lex_state = 0}, + [6502] = {.lex_state = 105}, + [6503] = {.lex_state = 105}, + [6504] = {.lex_state = 0}, + [6505] = {.lex_state = 132}, + [6506] = {.lex_state = 0}, + [6507] = {.lex_state = 416}, + [6508] = {.lex_state = 105}, + [6509] = {.lex_state = 0}, + [6510] = {.lex_state = 0}, + [6511] = {.lex_state = 0}, + [6512] = {.lex_state = 132}, + [6513] = {.lex_state = 105}, + [6514] = {.lex_state = 132}, + [6515] = {.lex_state = 0}, + [6516] = {.lex_state = 132}, + [6517] = {.lex_state = 0}, + [6518] = {.lex_state = 132}, + [6519] = {.lex_state = 0}, + [6520] = {.lex_state = 0}, + [6521] = {.lex_state = 58}, + [6522] = {.lex_state = 105}, + [6523] = {.lex_state = 0}, + [6524] = {.lex_state = 0}, + [6525] = {.lex_state = 0}, + [6526] = {.lex_state = 0}, + [6527] = {.lex_state = 416}, + [6528] = {.lex_state = 0}, + [6529] = {.lex_state = 0}, + [6530] = {.lex_state = 0}, + [6531] = {.lex_state = 0}, + [6532] = {.lex_state = 132}, + [6533] = {.lex_state = 132}, + [6534] = {.lex_state = 0}, + [6535] = {.lex_state = 0}, + [6536] = {.lex_state = 416}, + [6537] = {.lex_state = 0}, + [6538] = {.lex_state = 0}, + [6539] = {.lex_state = 58}, + [6540] = {.lex_state = 0}, + [6541] = {.lex_state = 132}, + [6542] = {.lex_state = 0}, + [6543] = {.lex_state = 0}, + [6544] = {.lex_state = 132}, + [6545] = {.lex_state = 132}, + [6546] = {.lex_state = 132}, + [6547] = {.lex_state = 0}, + [6548] = {.lex_state = 0}, + [6549] = {.lex_state = 0}, + [6550] = {.lex_state = 0}, + [6551] = {.lex_state = 0}, + [6552] = {.lex_state = 0}, + [6553] = {.lex_state = 0}, + [6554] = {.lex_state = 0}, + [6555] = {.lex_state = 0}, + [6556] = {.lex_state = 0}, + [6557] = {.lex_state = 416}, + [6558] = {.lex_state = 416}, + [6559] = {.lex_state = 105}, + [6560] = {.lex_state = 132}, + [6561] = {.lex_state = 105}, + [6562] = {.lex_state = 416}, + [6563] = {.lex_state = 416}, + [6564] = {.lex_state = 0}, + [6565] = {.lex_state = 0}, + [6566] = {.lex_state = 0}, + [6567] = {.lex_state = 132}, + [6568] = {.lex_state = 0}, + [6569] = {.lex_state = 58}, + [6570] = {.lex_state = 105}, + [6571] = {.lex_state = 132}, + [6572] = {.lex_state = 0}, + [6573] = {.lex_state = 105}, + [6574] = {.lex_state = 0}, + [6575] = {.lex_state = 0}, + [6576] = {.lex_state = 132}, + [6577] = {.lex_state = 0}, + [6578] = {.lex_state = 132}, + [6579] = {.lex_state = 0}, + [6580] = {.lex_state = 416}, + [6581] = {.lex_state = 0}, + [6582] = {.lex_state = 416}, + [6583] = {.lex_state = 132}, + [6584] = {.lex_state = 58}, + [6585] = {.lex_state = 0}, + [6586] = {.lex_state = 0}, + [6587] = {.lex_state = 0}, + [6588] = {.lex_state = 0}, + [6589] = {.lex_state = 132}, + [6590] = {.lex_state = 416}, + [6591] = {.lex_state = 416}, + [6592] = {.lex_state = 0}, + [6593] = {.lex_state = 58}, + [6594] = {.lex_state = 0}, + [6595] = {.lex_state = 416}, + [6596] = {.lex_state = 0}, + [6597] = {.lex_state = 132}, + [6598] = {.lex_state = 58}, + [6599] = {.lex_state = 132}, + [6600] = {.lex_state = 105}, + [6601] = {.lex_state = 0}, + [6602] = {.lex_state = 58}, + [6603] = {.lex_state = 416}, + [6604] = {.lex_state = 0}, + [6605] = {.lex_state = 0}, + [6606] = {.lex_state = 0}, + [6607] = {.lex_state = 132}, + [6608] = {.lex_state = 105}, + [6609] = {.lex_state = 132}, + [6610] = {.lex_state = 58}, + [6611] = {.lex_state = 0}, + [6612] = {.lex_state = 0}, + [6613] = {.lex_state = 0}, + [6614] = {.lex_state = 0}, + [6615] = {.lex_state = 0}, + [6616] = {.lex_state = 0}, + [6617] = {.lex_state = 0}, + [6618] = {.lex_state = 132}, + [6619] = {.lex_state = 0}, + [6620] = {.lex_state = 0}, + [6621] = {.lex_state = 0}, + [6622] = {.lex_state = 132}, + [6623] = {.lex_state = 0}, + [6624] = {.lex_state = 0}, + [6625] = {.lex_state = 0}, + [6626] = {.lex_state = 105}, + [6627] = {.lex_state = 132}, + [6628] = {.lex_state = 0}, + [6629] = {.lex_state = 0}, + [6630] = {.lex_state = 0}, + [6631] = {.lex_state = 0}, + [6632] = {.lex_state = 0}, + [6633] = {.lex_state = 58}, + [6634] = {.lex_state = 132}, + [6635] = {.lex_state = 0}, + [6636] = {.lex_state = 105}, + [6637] = {.lex_state = 132}, + [6638] = {.lex_state = 0}, + [6639] = {.lex_state = 58}, + [6640] = {.lex_state = 0}, + [6641] = {.lex_state = 0}, + [6642] = {.lex_state = 132}, + [6643] = {.lex_state = 132}, + [6644] = {.lex_state = 132}, + [6645] = {.lex_state = 105}, + [6646] = {.lex_state = 105}, + [6647] = {.lex_state = 0}, + [6648] = {.lex_state = 0}, + [6649] = {.lex_state = 0}, + [6650] = {.lex_state = 0}, + [6651] = {.lex_state = 0}, + [6652] = {.lex_state = 0}, + [6653] = {.lex_state = 0}, + [6654] = {.lex_state = 416}, + [6655] = {.lex_state = 0}, + [6656] = {.lex_state = 0}, + [6657] = {.lex_state = 0}, + [6658] = {.lex_state = 132}, + [6659] = {.lex_state = 0}, + [6660] = {.lex_state = 0}, + [6661] = {.lex_state = 0}, + [6662] = {.lex_state = 0}, + [6663] = {.lex_state = 0}, + [6664] = {.lex_state = 0}, + [6665] = {.lex_state = 416}, + [6666] = {.lex_state = 0}, + [6667] = {.lex_state = 132}, + [6668] = {.lex_state = 0}, + [6669] = {.lex_state = 132}, + [6670] = {.lex_state = 105}, + [6671] = {.lex_state = 58}, + [6672] = {.lex_state = 416}, + [6673] = {.lex_state = 132}, + [6674] = {.lex_state = 0}, + [6675] = {.lex_state = 58}, + [6676] = {.lex_state = 0}, + [6677] = {.lex_state = 0}, + [6678] = {.lex_state = 0}, + [6679] = {.lex_state = 132}, + [6680] = {.lex_state = 132}, + [6681] = {.lex_state = 105}, + [6682] = {.lex_state = 416}, + [6683] = {.lex_state = 0}, + [6684] = {.lex_state = 0}, + [6685] = {.lex_state = 0}, + [6686] = {.lex_state = 0}, + [6687] = {.lex_state = 0}, + [6688] = {.lex_state = 132}, + [6689] = {.lex_state = 105}, + [6690] = {.lex_state = 416}, + [6691] = {.lex_state = 105}, + [6692] = {.lex_state = 58}, + [6693] = {.lex_state = 0}, + [6694] = {.lex_state = 132}, + [6695] = {.lex_state = 58}, + [6696] = {.lex_state = 0}, + [6697] = {.lex_state = 132}, + [6698] = {.lex_state = 0}, + [6699] = {.lex_state = 58}, + [6700] = {.lex_state = 0}, + [6701] = {.lex_state = 132}, + [6702] = {.lex_state = 58}, + [6703] = {.lex_state = 132}, + [6704] = {.lex_state = 105}, + [6705] = {.lex_state = 0}, + [6706] = {.lex_state = 105}, + [6707] = {.lex_state = 0}, + [6708] = {.lex_state = 105}, + [6709] = {.lex_state = 0}, + [6710] = {.lex_state = 132}, + [6711] = {.lex_state = 726}, + [6712] = {.lex_state = 0}, + [6713] = {.lex_state = 0}, + [6714] = {.lex_state = 132}, + [6715] = {.lex_state = 0}, + [6716] = {.lex_state = 726}, + [6717] = {.lex_state = 132}, + [6718] = {.lex_state = 0}, + [6719] = {.lex_state = 132}, + [6720] = {.lex_state = 132}, + [6721] = {.lex_state = 0}, + [6722] = {.lex_state = 0}, + [6723] = {.lex_state = 0}, + [6724] = {.lex_state = 0}, + [6725] = {.lex_state = 0}, + [6726] = {.lex_state = 0}, + [6727] = {.lex_state = 0}, + [6728] = {.lex_state = 0}, + [6729] = {.lex_state = 0}, + [6730] = {.lex_state = 0}, + [6731] = {.lex_state = 0}, + [6732] = {.lex_state = 416}, + [6733] = {.lex_state = 416}, + [6734] = {.lex_state = 105}, + [6735] = {.lex_state = 0}, + [6736] = {.lex_state = 105}, + [6737] = {.lex_state = 416}, + [6738] = {.lex_state = 0}, + [6739] = {.lex_state = 132}, + [6740] = {.lex_state = 416}, + [6741] = {.lex_state = 132}, + [6742] = {.lex_state = 0}, + [6743] = {.lex_state = 416}, + [6744] = {.lex_state = 0}, + [6745] = {.lex_state = 0}, + [6746] = {.lex_state = 0}, + [6747] = {.lex_state = 416}, + [6748] = {.lex_state = 416}, + [6749] = {.lex_state = 132}, + [6750] = {.lex_state = 416}, + [6751] = {.lex_state = 0}, + [6752] = {.lex_state = 132}, + [6753] = {.lex_state = 0}, + [6754] = {.lex_state = 0}, + [6755] = {.lex_state = 416}, + [6756] = {.lex_state = 105}, + [6757] = {.lex_state = 132}, + [6758] = {.lex_state = 416}, + [6759] = {.lex_state = 132}, + [6760] = {.lex_state = 0}, + [6761] = {.lex_state = 0}, + [6762] = {.lex_state = 0}, + [6763] = {.lex_state = 0}, + [6764] = {.lex_state = 132}, + [6765] = {.lex_state = 416}, + [6766] = {.lex_state = 132}, + [6767] = {.lex_state = 132}, + [6768] = {.lex_state = 416}, + [6769] = {.lex_state = 105}, + [6770] = {.lex_state = 132}, + [6771] = {.lex_state = 0}, + [6772] = {.lex_state = 132}, + [6773] = {.lex_state = 0}, + [6774] = {.lex_state = 416}, + [6775] = {.lex_state = 416}, + [6776] = {.lex_state = 0}, + [6777] = {.lex_state = 0}, + [6778] = {.lex_state = 0}, + [6779] = {.lex_state = 105}, + [6780] = {.lex_state = 416}, + [6781] = {.lex_state = 132}, + [6782] = {.lex_state = 0}, + [6783] = {.lex_state = 0}, + [6784] = {.lex_state = 132}, + [6785] = {.lex_state = 0}, + [6786] = {.lex_state = 58}, + [6787] = {.lex_state = 105}, + [6788] = {.lex_state = 0}, + [6789] = {.lex_state = 132}, + [6790] = {.lex_state = 0}, + [6791] = {.lex_state = 416}, + [6792] = {.lex_state = 0}, +}; + +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [0] = { + [ts_builtin_sym_end] = ACTIONS(1), + [sym_identifier] = ACTIONS(1), + [aux_sym_preproc_include_token1] = ACTIONS(1), + [aux_sym_preproc_include_token2] = ACTIONS(1), + [aux_sym_preproc_def_token1] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [aux_sym_preproc_if_token1] = ACTIONS(1), + [aux_sym_preproc_if_token2] = ACTIONS(1), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1), + [aux_sym_preproc_else_token1] = ACTIONS(1), + [aux_sym_preproc_elif_token1] = ACTIONS(1), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1), + [sym_preproc_directive] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1), + [anon_sym_defined] = ACTIONS(1), + [anon_sym_BANG] = ACTIONS(1), + [anon_sym_TILDE] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_PIPE_PIPE] = ACTIONS(1), + [anon_sym_AMP_AMP] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [anon_sym_EQ_EQ] = ACTIONS(1), + [anon_sym_BANG_EQ] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_LT_LT] = ACTIONS(1), + [anon_sym_GT_GT] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), + [anon_sym___extension__] = ACTIONS(1), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym___attribute__] = ACTIONS(1), + [anon_sym___attribute] = ACTIONS(1), + [anon_sym_noreturn] = ACTIONS(1), + [anon_sym_nothrow] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym___declspec] = ACTIONS(1), + [anon_sym___based] = ACTIONS(1), + [anon_sym___cdecl] = ACTIONS(1), + [anon_sym___clrcall] = ACTIONS(1), + [anon_sym___stdcall] = ACTIONS(1), + [anon_sym___fastcall] = ACTIONS(1), + [anon_sym___thiscall] = ACTIONS(1), + [anon_sym___vectorcall] = ACTIONS(1), + [sym_ms_restrict_modifier] = ACTIONS(1), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(1), + [sym_ms_signed_ptr_modifier] = ACTIONS(1), + [anon_sym__unaligned] = ACTIONS(1), + [anon_sym___unaligned] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_ATautoreleasepool] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym___inline] = ACTIONS(1), + [anon_sym___inline__] = ACTIONS(1), + [anon_sym___forceinline] = ACTIONS(1), + [anon_sym_thread_local] = ACTIONS(1), + [anon_sym___thread] = ACTIONS(1), + [anon_sym_CG_EXTERN] = ACTIONS(1), + [anon_sym_CG_INLINE] = ACTIONS(1), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(1), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(1), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(1), + [anon_sym_IBOutlet] = ACTIONS(1), + [anon_sym_IBInspectable] = ACTIONS(1), + [anon_sym_IB_DESIGNABLE] = ACTIONS(1), + [anon_sym_NS_INLINE] = ACTIONS(1), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1), + [anon_sym_OBJC_EXPORT] = ACTIONS(1), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(1), + [anon_sym_UIKIT_EXTERN] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_constexpr] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym___restrict__] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym__Noreturn] = ACTIONS(1), + [anon_sym__Nonnull] = ACTIONS(1), + [anon_sym_nullable] = ACTIONS(1), + [anon_sym__Complex] = ACTIONS(1), + [anon_sym__Nullable] = ACTIONS(1), + [anon_sym__Nullable_result] = ACTIONS(1), + [anon_sym__Null_unspecified] = ACTIONS(1), + [anon_sym___autoreleasing] = ACTIONS(1), + [anon_sym___block] = ACTIONS(1), + [anon_sym___bridge] = ACTIONS(1), + [anon_sym___bridge_retained] = ACTIONS(1), + [anon_sym___bridge_transfer] = ACTIONS(1), + [anon_sym___complex] = ACTIONS(1), + [anon_sym___const] = ACTIONS(1), + [anon_sym___imag] = ACTIONS(1), + [anon_sym___kindof] = ACTIONS(1), + [anon_sym___nonnull] = ACTIONS(1), + [anon_sym___nullable] = ACTIONS(1), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(1), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(1), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(1), + [anon_sym___real] = ACTIONS(1), + [anon_sym___strong] = ACTIONS(1), + [anon_sym___unsafe_unretained] = ACTIONS(1), + [anon_sym___unused] = ACTIONS(1), + [anon_sym___weak] = 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), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_else] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_default] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_in] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_goto] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1), + [anon_sym_STAR_EQ] = ACTIONS(1), + [anon_sym_SLASH_EQ] = ACTIONS(1), + [anon_sym_PERCENT_EQ] = ACTIONS(1), + [anon_sym_PLUS_EQ] = ACTIONS(1), + [anon_sym_DASH_EQ] = ACTIONS(1), + [anon_sym_LT_LT_EQ] = ACTIONS(1), + [anon_sym_GT_GT_EQ] = ACTIONS(1), + [anon_sym_AMP_EQ] = ACTIONS(1), + [anon_sym_CARET_EQ] = ACTIONS(1), + [anon_sym_PIPE_EQ] = ACTIONS(1), + [anon_sym_DASH_DASH] = ACTIONS(1), + [anon_sym_PLUS_PLUS] = ACTIONS(1), + [anon_sym_sizeof] = ACTIONS(1), + [anon_sym___alignof__] = ACTIONS(1), + [anon_sym___alignof] = ACTIONS(1), + [anon_sym__alignof] = ACTIONS(1), + [anon_sym_alignof] = ACTIONS(1), + [anon_sym__Alignof] = ACTIONS(1), + [anon_sym_offsetof] = ACTIONS(1), + [anon_sym__Generic] = ACTIONS(1), + [anon_sym_asm] = ACTIONS(1), + [anon_sym___asm__] = ACTIONS(1), + [anon_sym___asm] = ACTIONS(1), + [anon_sym___volatile__] = ACTIONS(1), + [anon_sym_LT2] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_DASH_GT] = ACTIONS(1), + [sym_number_literal] = ACTIONS(1), + [anon_sym_L_SQUOTE] = ACTIONS(1), + [anon_sym_u_SQUOTE] = ACTIONS(1), + [anon_sym_U_SQUOTE] = ACTIONS(1), + [anon_sym_u8_SQUOTE] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [anon_sym_L_DQUOTE] = ACTIONS(1), + [anon_sym_u_DQUOTE] = ACTIONS(1), + [anon_sym_U_DQUOTE] = ACTIONS(1), + [anon_sym_u8_DQUOTE] = ACTIONS(1), + [sym_true] = ACTIONS(1), + [sym_false] = ACTIONS(1), + [anon_sym_NULL] = ACTIONS(1), + [anon_sym_nullptr] = ACTIONS(1), + [sym_comment] = ACTIONS(3), + [anon_sym_objc_bridge_related] = ACTIONS(1), + [anon_sym___typeof__] = ACTIONS(1), + [anon_sym___typeof] = ACTIONS(1), + [anon_sym_typeof] = ACTIONS(1), + [anon_sym_availability] = ACTIONS(1), + [sym_version_number] = ACTIONS(1), + [anon_sym_ios] = ACTIONS(1), + [anon_sym_tvos] = ACTIONS(1), + [anon_sym_macos] = ACTIONS(1), + [anon_sym_macosx] = ACTIONS(1), + [anon_sym_watchos] = ACTIONS(1), + [anon_sym_ATimport] = ACTIONS(1), + [aux_sym_preproc_undef_token1] = ACTIONS(1), + [anon_sym_POUND] = ACTIONS(1), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(1), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(1), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(1), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(1), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(1), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1), + [anon_sym_NS_AVAILABLE] = ACTIONS(1), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1), + [anon_sym_API_AVAILABLE] = ACTIONS(1), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1), + [anon_sym_API_DEPRECATED] = ACTIONS(1), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1), + [anon_sym___deprecated_msg] = ACTIONS(1), + [anon_sym___deprecated_enum_msg] = ACTIONS(1), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(1), + [anon_sym_ATprotocol] = ACTIONS(1), + [anon_sym_class] = ACTIONS(1), + [anon_sym_ATinterface] = ACTIONS(1), + [anon_sym_ATimplementation] = ACTIONS(1), + [anon_sym___covariant] = ACTIONS(1), + [anon_sym___contravariant] = ACTIONS(1), + [anon_sym_ATcompatibility_alias] = ACTIONS(1), + [anon_sym_ATsynthesize] = ACTIONS(1), + [anon_sym_ATdynamic] = ACTIONS(1), + [anon_sym_ATtry] = ACTIONS(1), + [anon_sym___try] = ACTIONS(1), + [anon_sym_ATcatch] = ACTIONS(1), + [anon_sym___catch] = ACTIONS(1), + [anon_sym_ATfinally] = ACTIONS(1), + [anon_sym___finally] = ACTIONS(1), + [anon_sym_ATthrow] = ACTIONS(1), + [anon_sym_ATselector] = ACTIONS(1), + [anon_sym_ATavailable] = ACTIONS(1), + [anon_sym___builtin_available] = ACTIONS(1), + [anon_sym_va_arg] = ACTIONS(1), + [anon_sym_ATencode] = ACTIONS(1), + [anon_sym_ATsynchronized] = ACTIONS(1), + [anon_sym_BOOL] = ACTIONS(1), + [anon_sym_IMP] = ACTIONS(1), + [anon_sym_SEL] = ACTIONS(1), + [anon_sym_Class] = ACTIONS(1), + [anon_sym_id] = ACTIONS(1), + [anon_sym_out] = ACTIONS(1), + [anon_sym_inout] = ACTIONS(1), + [anon_sym_bycopy] = ACTIONS(1), + [anon_sym_byref] = ACTIONS(1), + [anon_sym_oneway] = ACTIONS(1), + [anon_sym_COLON2] = ACTIONS(1), + }, + [1] = { + [sym_translation_unit] = STATE(6385), + [sym__top_level_item] = STATE(128), + [sym_preproc_include] = STATE(128), + [sym_preproc_def] = STATE(128), + [sym_preproc_function_def] = STATE(128), + [sym_preproc_call] = STATE(128), + [sym_preproc_if] = STATE(128), + [sym_preproc_ifdef] = STATE(128), + [sym_function_definition] = STATE(128), + [sym__old_style_function_definition] = STATE(998), + [sym_declaration] = STATE(128), + [sym_type_definition] = STATE(128), + [sym__declaration_modifiers] = STATE(2052), + [sym__declaration_specifiers] = STATE(4223), + [sym_linkage_specification] = STATE(128), + [sym_attribute_specifier] = STATE(2052), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2834), + [sym_ms_call_modifier] = STATE(2186), + [sym_compound_statement] = STATE(128), + [sym_storage_class_specifier] = STATE(2052), + [sym_type_qualifier] = STATE(2052), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(3013), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(1005), + [sym__top_level_statement] = STATE(128), + [sym_labeled_statement] = STATE(128), + [sym__top_level_expression_statement] = STATE(128), + [sym_if_statement] = STATE(128), + [sym_switch_statement] = STATE(128), + [sym_case_statement] = STATE(128), + [sym_while_statement] = STATE(128), + [sym_do_statement] = STATE(128), + [sym_for_statement] = STATE(128), + [sym_return_statement] = STATE(128), + [sym_break_statement] = STATE(128), + [sym_continue_statement] = STATE(128), + [sym_goto_statement] = STATE(128), + [sym_expression] = STATE(4591), + [sym__string] = STATE(4589), + [sym_conditional_expression] = STATE(4589), + [sym_assignment_expression] = STATE(4589), + [sym_pointer_expression] = STATE(4386), + [sym_unary_expression] = STATE(4589), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(4589), + [sym_cast_expression] = STATE(4589), + [sym_sizeof_expression] = STATE(4589), + [sym_alignof_expression] = STATE(4589), + [sym_offsetof_expression] = STATE(4589), + [sym_generic_expression] = STATE(4589), + [sym_subscript_expression] = STATE(4386), + [sym_call_expression] = STATE(4386), + [sym_gnu_asm_expression] = STATE(4589), + [sym_extension_expression] = STATE(4589), + [sym_field_expression] = STATE(4386), + [sym_compound_literal_expression] = STATE(4589), + [sym_parenthesized_expression] = STATE(4386), + [sym_char_literal] = STATE(4589), + [sym_concatenated_string] = STATE(4589), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(4589), + [sym__empty_declaration] = STATE(128), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(128), + [sym_preproc_undef] = STATE(128), + [sym_preproc_linemarker] = STATE(128), + [sym_availability_attribute_specifier] = STATE(2052), + [sym_protocol_forward_declaration] = STATE(128), + [sym_class_declaration] = STATE(128), + [sym_class_interface] = STATE(128), + [sym__class_interface_header] = STATE(1181), + [sym_class_implementation] = STATE(128), + [sym__class_implementation_header] = STATE(1096), + [sym_protocol_declaration] = STATE(128), + [sym_compatibility_alias_declaration] = STATE(128), + [sym_selector_expression] = STATE(4589), + [sym_available_expression] = STATE(4589), + [sym_range_expression] = STATE(4589), + [sym_block_literal] = STATE(4589), + [sym_message_expression] = STATE(4589), + [sym_va_arg_expression] = STATE(4589), + [sym_encode_expression] = STATE(4589), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(4589), + [sym_dictionary_literal] = STATE(4589), + [sym_array_literal] = STATE(4589), + [aux_sym_translation_unit_repeat1] = STATE(128), + [aux_sym__declaration_specifiers_repeat1] = STATE(2052), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2472), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [ts_builtin_sym_end] = ACTIONS(5), + [sym_identifier] = ACTIONS(7), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_include_token2] = 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), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(31), + [anon_sym_typedef] = ACTIONS(33), + [anon_sym_extern] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(73), + [anon_sym_default] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_in] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(105), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(113), + [sym_false] = ACTIONS(113), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(119), + [aux_sym_preproc_undef_token1] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(129), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(135), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(149), + }, + [2] = { + [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(6076), + [sym_preproc_elif] = STATE(6076), + [sym_preproc_elifdef] = STATE(6076), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(285), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4219), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(22), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2859), + [sym_ms_call_modifier] = STATE(2177), + [sym_compound_statement] = STATE(274), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2985), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(286), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(22), + [sym_preproc_undef] = STATE(22), + [sym_preproc_linemarker] = STATE(22), + [sym_availability_attribute_specifier] = STATE(2054), + [sym_protocol_forward_declaration] = STATE(22), + [sym_class_declaration] = STATE(22), + [sym_class_interface] = STATE(22), + [sym__class_interface_header] = STATE(1177), + [sym_class_implementation] = STATE(22), + [sym__class_implementation_header] = STATE(1098), + [sym_protocol_declaration] = STATE(22), + [sym_compatibility_alias_declaration] = STATE(22), + [sym_property_implementation] = STATE(22), + [sym_try_statement] = STATE(274), + [sym_throw_statement] = STATE(274), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(274), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(274), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(151), + [aux_sym_preproc_include_token1] = ACTIONS(153), + [aux_sym_preproc_include_token2] = ACTIONS(153), + [aux_sym_preproc_def_token1] = ACTIONS(155), + [aux_sym_preproc_if_token1] = ACTIONS(157), + [aux_sym_preproc_if_token2] = ACTIONS(159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(161), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [aux_sym_preproc_elifdef_token1] = ACTIONS(167), + [aux_sym_preproc_elifdef_token2] = ACTIONS(167), + [sym_preproc_directive] = ACTIONS(169), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(173), + [anon_sym_typedef] = ACTIONS(175), + [anon_sym_extern] = ACTIONS(177), + [anon_sym___attribute__] = ACTIONS(179), + [anon_sym___attribute] = ACTIONS(179), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(221), + [aux_sym_preproc_undef_token1] = ACTIONS(223), + [anon_sym_POUND] = ACTIONS(225), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(227), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(229), + [anon_sym_ATsynthesize] = ACTIONS(231), + [anon_sym_ATdynamic] = ACTIONS(233), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [3] = { + [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(6050), + [sym_preproc_elif] = STATE(6050), + [sym_preproc_elifdef] = STATE(6050), + [sym_function_definition] = STATE(2), + [sym__old_style_function_definition] = STATE(285), + [sym_declaration] = STATE(2), + [sym_type_definition] = STATE(2), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4219), + [sym_linkage_specification] = STATE(2), + [sym_attribute_specifier] = STATE(2), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2859), + [sym_ms_call_modifier] = STATE(2177), + [sym_compound_statement] = STATE(274), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2985), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(286), + [sym_statement] = STATE(2), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(2), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(2), + [sym_preproc_undef] = STATE(2), + [sym_preproc_linemarker] = STATE(2), + [sym_availability_attribute_specifier] = STATE(2054), + [sym_protocol_forward_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_class_interface] = STATE(2), + [sym__class_interface_header] = STATE(1177), + [sym_class_implementation] = STATE(2), + [sym__class_implementation_header] = STATE(1098), + [sym_protocol_declaration] = STATE(2), + [sym_compatibility_alias_declaration] = STATE(2), + [sym_property_implementation] = STATE(2), + [sym_try_statement] = STATE(274), + [sym_throw_statement] = STATE(274), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(274), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(274), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(2), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(151), + [aux_sym_preproc_include_token1] = ACTIONS(153), + [aux_sym_preproc_include_token2] = ACTIONS(153), + [aux_sym_preproc_def_token1] = ACTIONS(155), + [aux_sym_preproc_if_token1] = ACTIONS(157), + [aux_sym_preproc_if_token2] = ACTIONS(245), + [aux_sym_preproc_ifdef_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(161), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [aux_sym_preproc_elifdef_token1] = ACTIONS(167), + [aux_sym_preproc_elifdef_token2] = ACTIONS(167), + [sym_preproc_directive] = ACTIONS(169), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(173), + [anon_sym_typedef] = ACTIONS(175), + [anon_sym_extern] = ACTIONS(177), + [anon_sym___attribute__] = ACTIONS(179), + [anon_sym___attribute] = ACTIONS(179), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(221), + [aux_sym_preproc_undef_token1] = ACTIONS(223), + [anon_sym_POUND] = ACTIONS(225), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(227), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(229), + [anon_sym_ATsynthesize] = ACTIONS(231), + [anon_sym_ATdynamic] = ACTIONS(233), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [4] = { + [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(6293), + [sym_preproc_elif] = STATE(6293), + [sym_preproc_elifdef] = STATE(6293), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(285), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4219), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(22), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2859), + [sym_ms_call_modifier] = STATE(2177), + [sym_compound_statement] = STATE(274), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2985), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(286), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(22), + [sym_preproc_undef] = STATE(22), + [sym_preproc_linemarker] = STATE(22), + [sym_availability_attribute_specifier] = STATE(2054), + [sym_protocol_forward_declaration] = STATE(22), + [sym_class_declaration] = STATE(22), + [sym_class_interface] = STATE(22), + [sym__class_interface_header] = STATE(1177), + [sym_class_implementation] = STATE(22), + [sym__class_implementation_header] = STATE(1098), + [sym_protocol_declaration] = STATE(22), + [sym_compatibility_alias_declaration] = STATE(22), + [sym_property_implementation] = STATE(22), + [sym_try_statement] = STATE(274), + [sym_throw_statement] = STATE(274), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(274), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(274), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(151), + [aux_sym_preproc_include_token1] = ACTIONS(153), + [aux_sym_preproc_include_token2] = ACTIONS(153), + [aux_sym_preproc_def_token1] = ACTIONS(155), + [aux_sym_preproc_if_token1] = ACTIONS(157), + [aux_sym_preproc_if_token2] = ACTIONS(247), + [aux_sym_preproc_ifdef_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(161), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [aux_sym_preproc_elifdef_token1] = ACTIONS(167), + [aux_sym_preproc_elifdef_token2] = ACTIONS(167), + [sym_preproc_directive] = ACTIONS(169), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(173), + [anon_sym_typedef] = ACTIONS(175), + [anon_sym_extern] = ACTIONS(177), + [anon_sym___attribute__] = ACTIONS(179), + [anon_sym___attribute] = ACTIONS(179), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(221), + [aux_sym_preproc_undef_token1] = ACTIONS(223), + [anon_sym_POUND] = ACTIONS(225), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(227), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(229), + [anon_sym_ATsynthesize] = ACTIONS(231), + [anon_sym_ATdynamic] = ACTIONS(233), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [5] = { + [sym__block_item] = STATE(6), + [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(6306), + [sym_preproc_elif] = STATE(6306), + [sym_preproc_elifdef] = STATE(6306), + [sym_function_definition] = STATE(6), + [sym__old_style_function_definition] = STATE(285), + [sym_declaration] = STATE(6), + [sym_type_definition] = STATE(6), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4219), + [sym_linkage_specification] = STATE(6), + [sym_attribute_specifier] = STATE(6), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2859), + [sym_ms_call_modifier] = STATE(2177), + [sym_compound_statement] = STATE(274), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2985), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(286), + [sym_statement] = STATE(6), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(6), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(6), + [sym_preproc_undef] = STATE(6), + [sym_preproc_linemarker] = STATE(6), + [sym_availability_attribute_specifier] = STATE(2054), + [sym_protocol_forward_declaration] = STATE(6), + [sym_class_declaration] = STATE(6), + [sym_class_interface] = STATE(6), + [sym__class_interface_header] = STATE(1177), + [sym_class_implementation] = STATE(6), + [sym__class_implementation_header] = STATE(1098), + [sym_protocol_declaration] = STATE(6), + [sym_compatibility_alias_declaration] = STATE(6), + [sym_property_implementation] = STATE(6), + [sym_try_statement] = STATE(274), + [sym_throw_statement] = STATE(274), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(274), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(274), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(6), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(151), + [aux_sym_preproc_include_token1] = ACTIONS(153), + [aux_sym_preproc_include_token2] = ACTIONS(153), + [aux_sym_preproc_def_token1] = ACTIONS(155), + [aux_sym_preproc_if_token1] = ACTIONS(157), + [aux_sym_preproc_if_token2] = ACTIONS(249), + [aux_sym_preproc_ifdef_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(161), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [aux_sym_preproc_elifdef_token1] = ACTIONS(167), + [aux_sym_preproc_elifdef_token2] = ACTIONS(167), + [sym_preproc_directive] = ACTIONS(169), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(173), + [anon_sym_typedef] = ACTIONS(175), + [anon_sym_extern] = ACTIONS(177), + [anon_sym___attribute__] = ACTIONS(179), + [anon_sym___attribute] = ACTIONS(179), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(221), + [aux_sym_preproc_undef_token1] = ACTIONS(223), + [anon_sym_POUND] = ACTIONS(225), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(227), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(229), + [anon_sym_ATsynthesize] = ACTIONS(231), + [anon_sym_ATdynamic] = ACTIONS(233), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [6] = { + [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(6470), + [sym_preproc_elif] = STATE(6470), + [sym_preproc_elifdef] = STATE(6470), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(285), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4219), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(22), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2859), + [sym_ms_call_modifier] = STATE(2177), + [sym_compound_statement] = STATE(274), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2985), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(286), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(22), + [sym_preproc_undef] = STATE(22), + [sym_preproc_linemarker] = STATE(22), + [sym_availability_attribute_specifier] = STATE(2054), + [sym_protocol_forward_declaration] = STATE(22), + [sym_class_declaration] = STATE(22), + [sym_class_interface] = STATE(22), + [sym__class_interface_header] = STATE(1177), + [sym_class_implementation] = STATE(22), + [sym__class_implementation_header] = STATE(1098), + [sym_protocol_declaration] = STATE(22), + [sym_compatibility_alias_declaration] = STATE(22), + [sym_property_implementation] = STATE(22), + [sym_try_statement] = STATE(274), + [sym_throw_statement] = STATE(274), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(274), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(274), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(151), + [aux_sym_preproc_include_token1] = ACTIONS(153), + [aux_sym_preproc_include_token2] = ACTIONS(153), + [aux_sym_preproc_def_token1] = ACTIONS(155), + [aux_sym_preproc_if_token1] = ACTIONS(157), + [aux_sym_preproc_if_token2] = ACTIONS(251), + [aux_sym_preproc_ifdef_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(161), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [aux_sym_preproc_elifdef_token1] = ACTIONS(167), + [aux_sym_preproc_elifdef_token2] = ACTIONS(167), + [sym_preproc_directive] = ACTIONS(169), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(173), + [anon_sym_typedef] = ACTIONS(175), + [anon_sym_extern] = ACTIONS(177), + [anon_sym___attribute__] = ACTIONS(179), + [anon_sym___attribute] = ACTIONS(179), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(221), + [aux_sym_preproc_undef_token1] = ACTIONS(223), + [anon_sym_POUND] = ACTIONS(225), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(227), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(229), + [anon_sym_ATsynthesize] = ACTIONS(231), + [anon_sym_ATdynamic] = ACTIONS(233), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [7] = { + [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(6264), + [sym_preproc_elif] = STATE(6264), + [sym_preproc_elifdef] = STATE(6264), + [sym_function_definition] = STATE(8), + [sym__old_style_function_definition] = STATE(285), + [sym_declaration] = STATE(8), + [sym_type_definition] = STATE(8), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4219), + [sym_linkage_specification] = STATE(8), + [sym_attribute_specifier] = STATE(8), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2859), + [sym_ms_call_modifier] = STATE(2177), + [sym_compound_statement] = STATE(274), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2985), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(286), + [sym_statement] = STATE(8), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(8), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(8), + [sym_preproc_undef] = STATE(8), + [sym_preproc_linemarker] = STATE(8), + [sym_availability_attribute_specifier] = STATE(2054), + [sym_protocol_forward_declaration] = STATE(8), + [sym_class_declaration] = STATE(8), + [sym_class_interface] = STATE(8), + [sym__class_interface_header] = STATE(1177), + [sym_class_implementation] = STATE(8), + [sym__class_implementation_header] = STATE(1098), + [sym_protocol_declaration] = STATE(8), + [sym_compatibility_alias_declaration] = STATE(8), + [sym_property_implementation] = STATE(8), + [sym_try_statement] = STATE(274), + [sym_throw_statement] = STATE(274), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(274), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(274), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(8), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(151), + [aux_sym_preproc_include_token1] = ACTIONS(153), + [aux_sym_preproc_include_token2] = ACTIONS(153), + [aux_sym_preproc_def_token1] = ACTIONS(155), + [aux_sym_preproc_if_token1] = ACTIONS(157), + [aux_sym_preproc_if_token2] = ACTIONS(253), + [aux_sym_preproc_ifdef_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(161), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [aux_sym_preproc_elifdef_token1] = ACTIONS(167), + [aux_sym_preproc_elifdef_token2] = ACTIONS(167), + [sym_preproc_directive] = ACTIONS(169), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(173), + [anon_sym_typedef] = ACTIONS(175), + [anon_sym_extern] = ACTIONS(177), + [anon_sym___attribute__] = ACTIONS(179), + [anon_sym___attribute] = ACTIONS(179), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(221), + [aux_sym_preproc_undef_token1] = ACTIONS(223), + [anon_sym_POUND] = ACTIONS(225), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(227), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(229), + [anon_sym_ATsynthesize] = ACTIONS(231), + [anon_sym_ATdynamic] = ACTIONS(233), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [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(6670), + [sym_preproc_elif] = STATE(6670), + [sym_preproc_elifdef] = STATE(6670), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(285), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4219), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(22), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2859), + [sym_ms_call_modifier] = STATE(2177), + [sym_compound_statement] = STATE(274), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2985), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(286), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(22), + [sym_preproc_undef] = STATE(22), + [sym_preproc_linemarker] = STATE(22), + [sym_availability_attribute_specifier] = STATE(2054), + [sym_protocol_forward_declaration] = STATE(22), + [sym_class_declaration] = STATE(22), + [sym_class_interface] = STATE(22), + [sym__class_interface_header] = STATE(1177), + [sym_class_implementation] = STATE(22), + [sym__class_implementation_header] = STATE(1098), + [sym_protocol_declaration] = STATE(22), + [sym_compatibility_alias_declaration] = STATE(22), + [sym_property_implementation] = STATE(22), + [sym_try_statement] = STATE(274), + [sym_throw_statement] = STATE(274), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(274), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(274), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(151), + [aux_sym_preproc_include_token1] = ACTIONS(153), + [aux_sym_preproc_include_token2] = ACTIONS(153), + [aux_sym_preproc_def_token1] = ACTIONS(155), + [aux_sym_preproc_if_token1] = ACTIONS(157), + [aux_sym_preproc_if_token2] = ACTIONS(255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(161), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [aux_sym_preproc_elifdef_token1] = ACTIONS(167), + [aux_sym_preproc_elifdef_token2] = ACTIONS(167), + [sym_preproc_directive] = ACTIONS(169), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(173), + [anon_sym_typedef] = ACTIONS(175), + [anon_sym_extern] = ACTIONS(177), + [anon_sym___attribute__] = ACTIONS(179), + [anon_sym___attribute] = ACTIONS(179), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(221), + [aux_sym_preproc_undef_token1] = ACTIONS(223), + [anon_sym_POUND] = ACTIONS(225), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(227), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(229), + [anon_sym_ATsynthesize] = ACTIONS(231), + [anon_sym_ATdynamic] = ACTIONS(233), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [9] = { + [sym__block_item] = STATE(10), + [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(6301), + [sym_preproc_elif] = STATE(6301), + [sym_preproc_elifdef] = STATE(6301), + [sym_function_definition] = STATE(10), + [sym__old_style_function_definition] = STATE(285), + [sym_declaration] = STATE(10), + [sym_type_definition] = STATE(10), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4219), + [sym_linkage_specification] = STATE(10), + [sym_attribute_specifier] = STATE(10), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2859), + [sym_ms_call_modifier] = STATE(2177), + [sym_compound_statement] = STATE(274), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2985), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(286), + [sym_statement] = STATE(10), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(10), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(10), + [sym_preproc_undef] = STATE(10), + [sym_preproc_linemarker] = STATE(10), + [sym_availability_attribute_specifier] = STATE(2054), + [sym_protocol_forward_declaration] = STATE(10), + [sym_class_declaration] = STATE(10), + [sym_class_interface] = STATE(10), + [sym__class_interface_header] = STATE(1177), + [sym_class_implementation] = STATE(10), + [sym__class_implementation_header] = STATE(1098), + [sym_protocol_declaration] = STATE(10), + [sym_compatibility_alias_declaration] = STATE(10), + [sym_property_implementation] = STATE(10), + [sym_try_statement] = STATE(274), + [sym_throw_statement] = STATE(274), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(274), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(274), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(10), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(151), + [aux_sym_preproc_include_token1] = ACTIONS(153), + [aux_sym_preproc_include_token2] = ACTIONS(153), + [aux_sym_preproc_def_token1] = ACTIONS(155), + [aux_sym_preproc_if_token1] = ACTIONS(157), + [aux_sym_preproc_if_token2] = ACTIONS(257), + [aux_sym_preproc_ifdef_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(161), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [aux_sym_preproc_elifdef_token1] = ACTIONS(167), + [aux_sym_preproc_elifdef_token2] = ACTIONS(167), + [sym_preproc_directive] = ACTIONS(169), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(173), + [anon_sym_typedef] = ACTIONS(175), + [anon_sym_extern] = ACTIONS(177), + [anon_sym___attribute__] = ACTIONS(179), + [anon_sym___attribute] = ACTIONS(179), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(221), + [aux_sym_preproc_undef_token1] = ACTIONS(223), + [anon_sym_POUND] = ACTIONS(225), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(227), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(229), + [anon_sym_ATsynthesize] = ACTIONS(231), + [anon_sym_ATdynamic] = ACTIONS(233), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [10] = { + [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(6431), + [sym_preproc_elif] = STATE(6431), + [sym_preproc_elifdef] = STATE(6431), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(285), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4219), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(22), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2859), + [sym_ms_call_modifier] = STATE(2177), + [sym_compound_statement] = STATE(274), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2985), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(286), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(22), + [sym_preproc_undef] = STATE(22), + [sym_preproc_linemarker] = STATE(22), + [sym_availability_attribute_specifier] = STATE(2054), + [sym_protocol_forward_declaration] = STATE(22), + [sym_class_declaration] = STATE(22), + [sym_class_interface] = STATE(22), + [sym__class_interface_header] = STATE(1177), + [sym_class_implementation] = STATE(22), + [sym__class_implementation_header] = STATE(1098), + [sym_protocol_declaration] = STATE(22), + [sym_compatibility_alias_declaration] = STATE(22), + [sym_property_implementation] = STATE(22), + [sym_try_statement] = STATE(274), + [sym_throw_statement] = STATE(274), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(274), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(274), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(151), + [aux_sym_preproc_include_token1] = ACTIONS(153), + [aux_sym_preproc_include_token2] = ACTIONS(153), + [aux_sym_preproc_def_token1] = ACTIONS(155), + [aux_sym_preproc_if_token1] = ACTIONS(157), + [aux_sym_preproc_if_token2] = ACTIONS(259), + [aux_sym_preproc_ifdef_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(161), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [aux_sym_preproc_elifdef_token1] = ACTIONS(167), + [aux_sym_preproc_elifdef_token2] = ACTIONS(167), + [sym_preproc_directive] = ACTIONS(169), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(173), + [anon_sym_typedef] = ACTIONS(175), + [anon_sym_extern] = ACTIONS(177), + [anon_sym___attribute__] = ACTIONS(179), + [anon_sym___attribute] = ACTIONS(179), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(221), + [aux_sym_preproc_undef_token1] = ACTIONS(223), + [anon_sym_POUND] = ACTIONS(225), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(227), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(229), + [anon_sym_ATsynthesize] = ACTIONS(231), + [anon_sym_ATdynamic] = ACTIONS(233), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [11] = { + [sym__block_item] = STATE(12), + [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(6508), + [sym_preproc_elif] = STATE(6508), + [sym_preproc_elifdef] = STATE(6508), + [sym_function_definition] = STATE(12), + [sym__old_style_function_definition] = STATE(285), + [sym_declaration] = STATE(12), + [sym_type_definition] = STATE(12), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4219), + [sym_linkage_specification] = STATE(12), + [sym_attribute_specifier] = STATE(12), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2859), + [sym_ms_call_modifier] = STATE(2177), + [sym_compound_statement] = STATE(274), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2985), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(286), + [sym_statement] = STATE(12), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(12), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(12), + [sym_preproc_undef] = STATE(12), + [sym_preproc_linemarker] = STATE(12), + [sym_availability_attribute_specifier] = STATE(2054), + [sym_protocol_forward_declaration] = STATE(12), + [sym_class_declaration] = STATE(12), + [sym_class_interface] = STATE(12), + [sym__class_interface_header] = STATE(1177), + [sym_class_implementation] = STATE(12), + [sym__class_implementation_header] = STATE(1098), + [sym_protocol_declaration] = STATE(12), + [sym_compatibility_alias_declaration] = STATE(12), + [sym_property_implementation] = STATE(12), + [sym_try_statement] = STATE(274), + [sym_throw_statement] = STATE(274), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(274), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(274), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(12), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(151), + [aux_sym_preproc_include_token1] = ACTIONS(153), + [aux_sym_preproc_include_token2] = ACTIONS(153), + [aux_sym_preproc_def_token1] = ACTIONS(155), + [aux_sym_preproc_if_token1] = ACTIONS(157), + [aux_sym_preproc_if_token2] = ACTIONS(261), + [aux_sym_preproc_ifdef_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(161), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [aux_sym_preproc_elifdef_token1] = ACTIONS(167), + [aux_sym_preproc_elifdef_token2] = ACTIONS(167), + [sym_preproc_directive] = ACTIONS(169), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(173), + [anon_sym_typedef] = ACTIONS(175), + [anon_sym_extern] = ACTIONS(177), + [anon_sym___attribute__] = ACTIONS(179), + [anon_sym___attribute] = ACTIONS(179), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(221), + [aux_sym_preproc_undef_token1] = ACTIONS(223), + [anon_sym_POUND] = ACTIONS(225), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(227), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(229), + [anon_sym_ATsynthesize] = ACTIONS(231), + [anon_sym_ATdynamic] = ACTIONS(233), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [12] = { + [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(5907), + [sym_preproc_elif] = STATE(5907), + [sym_preproc_elifdef] = STATE(5907), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(285), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4219), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(22), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2859), + [sym_ms_call_modifier] = STATE(2177), + [sym_compound_statement] = STATE(274), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2985), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(286), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(22), + [sym_preproc_undef] = STATE(22), + [sym_preproc_linemarker] = STATE(22), + [sym_availability_attribute_specifier] = STATE(2054), + [sym_protocol_forward_declaration] = STATE(22), + [sym_class_declaration] = STATE(22), + [sym_class_interface] = STATE(22), + [sym__class_interface_header] = STATE(1177), + [sym_class_implementation] = STATE(22), + [sym__class_implementation_header] = STATE(1098), + [sym_protocol_declaration] = STATE(22), + [sym_compatibility_alias_declaration] = STATE(22), + [sym_property_implementation] = STATE(22), + [sym_try_statement] = STATE(274), + [sym_throw_statement] = STATE(274), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(274), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(274), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(151), + [aux_sym_preproc_include_token1] = ACTIONS(153), + [aux_sym_preproc_include_token2] = ACTIONS(153), + [aux_sym_preproc_def_token1] = ACTIONS(155), + [aux_sym_preproc_if_token1] = ACTIONS(157), + [aux_sym_preproc_if_token2] = ACTIONS(263), + [aux_sym_preproc_ifdef_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(161), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [aux_sym_preproc_elifdef_token1] = ACTIONS(167), + [aux_sym_preproc_elifdef_token2] = ACTIONS(167), + [sym_preproc_directive] = ACTIONS(169), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(173), + [anon_sym_typedef] = ACTIONS(175), + [anon_sym_extern] = ACTIONS(177), + [anon_sym___attribute__] = ACTIONS(179), + [anon_sym___attribute] = ACTIONS(179), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(221), + [aux_sym_preproc_undef_token1] = ACTIONS(223), + [anon_sym_POUND] = ACTIONS(225), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(227), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(229), + [anon_sym_ATsynthesize] = ACTIONS(231), + [anon_sym_ATdynamic] = ACTIONS(233), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [13] = { + [sym__block_item] = STATE(4), + [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(6681), + [sym_preproc_elif] = STATE(6681), + [sym_preproc_elifdef] = STATE(6681), + [sym_function_definition] = STATE(4), + [sym__old_style_function_definition] = STATE(285), + [sym_declaration] = STATE(4), + [sym_type_definition] = STATE(4), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4219), + [sym_linkage_specification] = STATE(4), + [sym_attribute_specifier] = STATE(4), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2859), + [sym_ms_call_modifier] = STATE(2177), + [sym_compound_statement] = STATE(274), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2985), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(286), + [sym_statement] = STATE(4), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(4), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(4), + [sym_preproc_undef] = STATE(4), + [sym_preproc_linemarker] = STATE(4), + [sym_availability_attribute_specifier] = STATE(2054), + [sym_protocol_forward_declaration] = STATE(4), + [sym_class_declaration] = STATE(4), + [sym_class_interface] = STATE(4), + [sym__class_interface_header] = STATE(1177), + [sym_class_implementation] = STATE(4), + [sym__class_implementation_header] = STATE(1098), + [sym_protocol_declaration] = STATE(4), + [sym_compatibility_alias_declaration] = STATE(4), + [sym_property_implementation] = STATE(4), + [sym_try_statement] = STATE(274), + [sym_throw_statement] = STATE(274), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(274), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(274), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(4), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(151), + [aux_sym_preproc_include_token1] = ACTIONS(153), + [aux_sym_preproc_include_token2] = ACTIONS(153), + [aux_sym_preproc_def_token1] = ACTIONS(155), + [aux_sym_preproc_if_token1] = ACTIONS(157), + [aux_sym_preproc_if_token2] = ACTIONS(265), + [aux_sym_preproc_ifdef_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(161), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [aux_sym_preproc_elifdef_token1] = ACTIONS(167), + [aux_sym_preproc_elifdef_token2] = ACTIONS(167), + [sym_preproc_directive] = ACTIONS(169), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(173), + [anon_sym_typedef] = ACTIONS(175), + [anon_sym_extern] = ACTIONS(177), + [anon_sym___attribute__] = ACTIONS(179), + [anon_sym___attribute] = ACTIONS(179), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(221), + [aux_sym_preproc_undef_token1] = ACTIONS(223), + [anon_sym_POUND] = ACTIONS(225), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(227), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(229), + [anon_sym_ATsynthesize] = ACTIONS(231), + [anon_sym_ATdynamic] = ACTIONS(233), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [14] = { + [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(6247), + [sym_preproc_elif] = STATE(6247), + [sym_preproc_elifdef] = STATE(6247), + [sym_function_definition] = STATE(15), + [sym__old_style_function_definition] = STATE(285), + [sym_declaration] = STATE(15), + [sym_type_definition] = STATE(15), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4219), + [sym_linkage_specification] = STATE(15), + [sym_attribute_specifier] = STATE(15), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2859), + [sym_ms_call_modifier] = STATE(2177), + [sym_compound_statement] = STATE(274), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2985), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(286), + [sym_statement] = STATE(15), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(15), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(15), + [sym_preproc_undef] = STATE(15), + [sym_preproc_linemarker] = STATE(15), + [sym_availability_attribute_specifier] = STATE(2054), + [sym_protocol_forward_declaration] = STATE(15), + [sym_class_declaration] = STATE(15), + [sym_class_interface] = STATE(15), + [sym__class_interface_header] = STATE(1177), + [sym_class_implementation] = STATE(15), + [sym__class_implementation_header] = STATE(1098), + [sym_protocol_declaration] = STATE(15), + [sym_compatibility_alias_declaration] = STATE(15), + [sym_property_implementation] = STATE(15), + [sym_try_statement] = STATE(274), + [sym_throw_statement] = STATE(274), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(274), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(274), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(15), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(151), + [aux_sym_preproc_include_token1] = ACTIONS(153), + [aux_sym_preproc_include_token2] = ACTIONS(153), + [aux_sym_preproc_def_token1] = ACTIONS(155), + [aux_sym_preproc_if_token1] = ACTIONS(157), + [aux_sym_preproc_if_token2] = ACTIONS(267), + [aux_sym_preproc_ifdef_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(161), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [aux_sym_preproc_elifdef_token1] = ACTIONS(167), + [aux_sym_preproc_elifdef_token2] = ACTIONS(167), + [sym_preproc_directive] = ACTIONS(169), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(173), + [anon_sym_typedef] = ACTIONS(175), + [anon_sym_extern] = ACTIONS(177), + [anon_sym___attribute__] = ACTIONS(179), + [anon_sym___attribute] = ACTIONS(179), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(221), + [aux_sym_preproc_undef_token1] = ACTIONS(223), + [anon_sym_POUND] = ACTIONS(225), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(227), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(229), + [anon_sym_ATsynthesize] = ACTIONS(231), + [anon_sym_ATdynamic] = ACTIONS(233), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [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(6304), + [sym_preproc_elif] = STATE(6304), + [sym_preproc_elifdef] = STATE(6304), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(285), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4219), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(22), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2859), + [sym_ms_call_modifier] = STATE(2177), + [sym_compound_statement] = STATE(274), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2985), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(286), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(22), + [sym_preproc_undef] = STATE(22), + [sym_preproc_linemarker] = STATE(22), + [sym_availability_attribute_specifier] = STATE(2054), + [sym_protocol_forward_declaration] = STATE(22), + [sym_class_declaration] = STATE(22), + [sym_class_interface] = STATE(22), + [sym__class_interface_header] = STATE(1177), + [sym_class_implementation] = STATE(22), + [sym__class_implementation_header] = STATE(1098), + [sym_protocol_declaration] = STATE(22), + [sym_compatibility_alias_declaration] = STATE(22), + [sym_property_implementation] = STATE(22), + [sym_try_statement] = STATE(274), + [sym_throw_statement] = STATE(274), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(274), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(274), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(151), + [aux_sym_preproc_include_token1] = ACTIONS(153), + [aux_sym_preproc_include_token2] = ACTIONS(153), + [aux_sym_preproc_def_token1] = ACTIONS(155), + [aux_sym_preproc_if_token1] = ACTIONS(157), + [aux_sym_preproc_if_token2] = ACTIONS(269), + [aux_sym_preproc_ifdef_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(161), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [aux_sym_preproc_elifdef_token1] = ACTIONS(167), + [aux_sym_preproc_elifdef_token2] = ACTIONS(167), + [sym_preproc_directive] = ACTIONS(169), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(173), + [anon_sym_typedef] = ACTIONS(175), + [anon_sym_extern] = ACTIONS(177), + [anon_sym___attribute__] = ACTIONS(179), + [anon_sym___attribute] = ACTIONS(179), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(221), + [aux_sym_preproc_undef_token1] = ACTIONS(223), + [anon_sym_POUND] = ACTIONS(225), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(227), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(229), + [anon_sym_ATsynthesize] = ACTIONS(231), + [anon_sym_ATdynamic] = ACTIONS(233), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [16] = { + [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(6600), + [sym_preproc_elif] = STATE(6600), + [sym_preproc_elifdef] = STATE(6600), + [sym_function_definition] = STATE(17), + [sym__old_style_function_definition] = STATE(285), + [sym_declaration] = STATE(17), + [sym_type_definition] = STATE(17), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4219), + [sym_linkage_specification] = STATE(17), + [sym_attribute_specifier] = STATE(17), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2859), + [sym_ms_call_modifier] = STATE(2177), + [sym_compound_statement] = STATE(274), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2985), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(286), + [sym_statement] = STATE(17), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(17), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(17), + [sym_preproc_undef] = STATE(17), + [sym_preproc_linemarker] = STATE(17), + [sym_availability_attribute_specifier] = STATE(2054), + [sym_protocol_forward_declaration] = STATE(17), + [sym_class_declaration] = STATE(17), + [sym_class_interface] = STATE(17), + [sym__class_interface_header] = STATE(1177), + [sym_class_implementation] = STATE(17), + [sym__class_implementation_header] = STATE(1098), + [sym_protocol_declaration] = STATE(17), + [sym_compatibility_alias_declaration] = STATE(17), + [sym_property_implementation] = STATE(17), + [sym_try_statement] = STATE(274), + [sym_throw_statement] = STATE(274), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(274), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(274), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(17), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(151), + [aux_sym_preproc_include_token1] = ACTIONS(153), + [aux_sym_preproc_include_token2] = ACTIONS(153), + [aux_sym_preproc_def_token1] = ACTIONS(155), + [aux_sym_preproc_if_token1] = ACTIONS(157), + [aux_sym_preproc_if_token2] = ACTIONS(271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(161), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [aux_sym_preproc_elifdef_token1] = ACTIONS(167), + [aux_sym_preproc_elifdef_token2] = ACTIONS(167), + [sym_preproc_directive] = ACTIONS(169), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(173), + [anon_sym_typedef] = ACTIONS(175), + [anon_sym_extern] = ACTIONS(177), + [anon_sym___attribute__] = ACTIONS(179), + [anon_sym___attribute] = ACTIONS(179), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(221), + [aux_sym_preproc_undef_token1] = ACTIONS(223), + [anon_sym_POUND] = ACTIONS(225), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(227), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(229), + [anon_sym_ATsynthesize] = ACTIONS(231), + [anon_sym_ATdynamic] = ACTIONS(233), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [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(6708), + [sym_preproc_elif] = STATE(6708), + [sym_preproc_elifdef] = STATE(6708), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(285), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4219), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(22), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2859), + [sym_ms_call_modifier] = STATE(2177), + [sym_compound_statement] = STATE(274), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2985), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(286), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(22), + [sym_preproc_undef] = STATE(22), + [sym_preproc_linemarker] = STATE(22), + [sym_availability_attribute_specifier] = STATE(2054), + [sym_protocol_forward_declaration] = STATE(22), + [sym_class_declaration] = STATE(22), + [sym_class_interface] = STATE(22), + [sym__class_interface_header] = STATE(1177), + [sym_class_implementation] = STATE(22), + [sym__class_implementation_header] = STATE(1098), + [sym_protocol_declaration] = STATE(22), + [sym_compatibility_alias_declaration] = STATE(22), + [sym_property_implementation] = STATE(22), + [sym_try_statement] = STATE(274), + [sym_throw_statement] = STATE(274), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(274), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(274), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(151), + [aux_sym_preproc_include_token1] = ACTIONS(153), + [aux_sym_preproc_include_token2] = ACTIONS(153), + [aux_sym_preproc_def_token1] = ACTIONS(155), + [aux_sym_preproc_if_token1] = ACTIONS(157), + [aux_sym_preproc_if_token2] = ACTIONS(273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(161), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [aux_sym_preproc_elifdef_token1] = ACTIONS(167), + [aux_sym_preproc_elifdef_token2] = ACTIONS(167), + [sym_preproc_directive] = ACTIONS(169), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(173), + [anon_sym_typedef] = ACTIONS(175), + [anon_sym_extern] = ACTIONS(177), + [anon_sym___attribute__] = ACTIONS(179), + [anon_sym___attribute] = ACTIONS(179), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(221), + [aux_sym_preproc_undef_token1] = ACTIONS(223), + [anon_sym_POUND] = ACTIONS(225), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(227), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(229), + [anon_sym_ATsynthesize] = ACTIONS(231), + [anon_sym_ATdynamic] = ACTIONS(233), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [18] = { + [sym__block_item] = STATE(19), + [sym_preproc_include] = STATE(19), + [sym_preproc_def] = STATE(19), + [sym_preproc_function_def] = STATE(19), + [sym_preproc_call] = STATE(19), + [sym_preproc_if] = STATE(19), + [sym_preproc_ifdef] = STATE(19), + [sym_preproc_else] = STATE(5957), + [sym_preproc_elif] = STATE(5957), + [sym_preproc_elifdef] = STATE(5957), + [sym_function_definition] = STATE(19), + [sym__old_style_function_definition] = STATE(285), + [sym_declaration] = STATE(19), + [sym_type_definition] = STATE(19), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4219), + [sym_linkage_specification] = STATE(19), + [sym_attribute_specifier] = STATE(19), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2859), + [sym_ms_call_modifier] = STATE(2177), + [sym_compound_statement] = STATE(274), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2985), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(286), + [sym_statement] = STATE(19), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(19), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(19), + [sym_preproc_undef] = STATE(19), + [sym_preproc_linemarker] = STATE(19), + [sym_availability_attribute_specifier] = STATE(2054), + [sym_protocol_forward_declaration] = STATE(19), + [sym_class_declaration] = STATE(19), + [sym_class_interface] = STATE(19), + [sym__class_interface_header] = STATE(1177), + [sym_class_implementation] = STATE(19), + [sym__class_implementation_header] = STATE(1098), + [sym_protocol_declaration] = STATE(19), + [sym_compatibility_alias_declaration] = STATE(19), + [sym_property_implementation] = STATE(19), + [sym_try_statement] = STATE(274), + [sym_throw_statement] = STATE(274), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(274), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(274), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(19), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(151), + [aux_sym_preproc_include_token1] = ACTIONS(153), + [aux_sym_preproc_include_token2] = ACTIONS(153), + [aux_sym_preproc_def_token1] = ACTIONS(155), + [aux_sym_preproc_if_token1] = ACTIONS(157), + [aux_sym_preproc_if_token2] = ACTIONS(275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(161), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [aux_sym_preproc_elifdef_token1] = ACTIONS(167), + [aux_sym_preproc_elifdef_token2] = ACTIONS(167), + [sym_preproc_directive] = ACTIONS(169), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(173), + [anon_sym_typedef] = ACTIONS(175), + [anon_sym_extern] = ACTIONS(177), + [anon_sym___attribute__] = ACTIONS(179), + [anon_sym___attribute] = ACTIONS(179), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(221), + [aux_sym_preproc_undef_token1] = ACTIONS(223), + [anon_sym_POUND] = ACTIONS(225), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(227), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(229), + [anon_sym_ATsynthesize] = ACTIONS(231), + [anon_sym_ATdynamic] = ACTIONS(233), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [19] = { + [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(5980), + [sym_preproc_elif] = STATE(5980), + [sym_preproc_elifdef] = STATE(5980), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(285), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4219), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(22), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2859), + [sym_ms_call_modifier] = STATE(2177), + [sym_compound_statement] = STATE(274), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2985), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(286), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(22), + [sym_preproc_undef] = STATE(22), + [sym_preproc_linemarker] = STATE(22), + [sym_availability_attribute_specifier] = STATE(2054), + [sym_protocol_forward_declaration] = STATE(22), + [sym_class_declaration] = STATE(22), + [sym_class_interface] = STATE(22), + [sym__class_interface_header] = STATE(1177), + [sym_class_implementation] = STATE(22), + [sym__class_implementation_header] = STATE(1098), + [sym_protocol_declaration] = STATE(22), + [sym_compatibility_alias_declaration] = STATE(22), + [sym_property_implementation] = STATE(22), + [sym_try_statement] = STATE(274), + [sym_throw_statement] = STATE(274), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(274), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(274), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(151), + [aux_sym_preproc_include_token1] = ACTIONS(153), + [aux_sym_preproc_include_token2] = ACTIONS(153), + [aux_sym_preproc_def_token1] = ACTIONS(155), + [aux_sym_preproc_if_token1] = ACTIONS(157), + [aux_sym_preproc_if_token2] = ACTIONS(277), + [aux_sym_preproc_ifdef_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(161), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [aux_sym_preproc_elifdef_token1] = ACTIONS(167), + [aux_sym_preproc_elifdef_token2] = ACTIONS(167), + [sym_preproc_directive] = ACTIONS(169), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(173), + [anon_sym_typedef] = ACTIONS(175), + [anon_sym_extern] = ACTIONS(177), + [anon_sym___attribute__] = ACTIONS(179), + [anon_sym___attribute] = ACTIONS(179), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(221), + [aux_sym_preproc_undef_token1] = ACTIONS(223), + [anon_sym_POUND] = ACTIONS(225), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(227), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(229), + [anon_sym_ATsynthesize] = ACTIONS(231), + [anon_sym_ATdynamic] = ACTIONS(233), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [20] = { + [sym__block_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_preproc_else] = STATE(6465), + [sym_preproc_elif] = STATE(6465), + [sym_function_definition] = STATE(37), + [sym__old_style_function_definition] = STATE(510), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(2056), + [sym__declaration_specifiers] = STATE(4211), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(37), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2861), + [sym_ms_call_modifier] = STATE(2181), + [sym_compound_statement] = STATE(406), + [sym_storage_class_specifier] = STATE(2056), + [sym_type_qualifier] = STATE(2056), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2958), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(37), + [sym_labeled_statement] = STATE(406), + [sym_expression_statement] = STATE(406), + [sym_if_statement] = STATE(406), + [sym_switch_statement] = STATE(406), + [sym_case_statement] = STATE(406), + [sym_while_statement] = STATE(406), + [sym_do_statement] = STATE(406), + [sym_for_statement] = STATE(406), + [sym_return_statement] = STATE(406), + [sym_break_statement] = STATE(406), + [sym_continue_statement] = STATE(406), + [sym_goto_statement] = STATE(406), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(37), + [sym_preproc_undef] = STATE(37), + [sym_preproc_linemarker] = STATE(37), + [sym_availability_attribute_specifier] = STATE(2056), + [sym_protocol_forward_declaration] = STATE(37), + [sym_class_declaration] = STATE(37), + [sym_class_interface] = STATE(37), + [sym__class_interface_header] = STATE(1182), + [sym_class_implementation] = STATE(37), + [sym__class_implementation_header] = STATE(1094), + [sym_protocol_declaration] = STATE(37), + [sym_compatibility_alias_declaration] = STATE(37), + [sym_property_implementation] = STATE(37), + [sym_try_statement] = STATE(406), + [sym_throw_statement] = STATE(406), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(406), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(406), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2056), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_include_token2] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(287), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [sym_preproc_directive] = ACTIONS(291), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(295), + [anon_sym_typedef] = ACTIONS(297), + [anon_sym_extern] = ACTIONS(299), + [anon_sym___attribute__] = ACTIONS(301), + [anon_sym___attribute] = ACTIONS(301), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(307), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(333), + [aux_sym_preproc_undef_token1] = ACTIONS(335), + [anon_sym_POUND] = ACTIONS(337), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(339), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(341), + [anon_sym_ATsynthesize] = ACTIONS(343), + [anon_sym_ATdynamic] = ACTIONS(345), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [21] = { + [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_preproc_else] = STATE(6395), + [sym_preproc_elif] = STATE(6395), + [sym_function_definition] = STATE(28), + [sym__old_style_function_definition] = STATE(510), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(2056), + [sym__declaration_specifiers] = STATE(4211), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(28), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2861), + [sym_ms_call_modifier] = STATE(2181), + [sym_compound_statement] = STATE(406), + [sym_storage_class_specifier] = STATE(2056), + [sym_type_qualifier] = STATE(2056), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2958), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(28), + [sym_labeled_statement] = STATE(406), + [sym_expression_statement] = STATE(406), + [sym_if_statement] = STATE(406), + [sym_switch_statement] = STATE(406), + [sym_case_statement] = STATE(406), + [sym_while_statement] = STATE(406), + [sym_do_statement] = STATE(406), + [sym_for_statement] = STATE(406), + [sym_return_statement] = STATE(406), + [sym_break_statement] = STATE(406), + [sym_continue_statement] = STATE(406), + [sym_goto_statement] = STATE(406), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(28), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(28), + [sym_preproc_undef] = STATE(28), + [sym_preproc_linemarker] = STATE(28), + [sym_availability_attribute_specifier] = STATE(2056), + [sym_protocol_forward_declaration] = STATE(28), + [sym_class_declaration] = STATE(28), + [sym_class_interface] = STATE(28), + [sym__class_interface_header] = STATE(1182), + [sym_class_implementation] = STATE(28), + [sym__class_implementation_header] = STATE(1094), + [sym_protocol_declaration] = STATE(28), + [sym_compatibility_alias_declaration] = STATE(28), + [sym_property_implementation] = STATE(28), + [sym_try_statement] = STATE(406), + [sym_throw_statement] = STATE(406), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(406), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(406), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(2056), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_include_token2] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [sym_preproc_directive] = ACTIONS(291), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(295), + [anon_sym_typedef] = ACTIONS(297), + [anon_sym_extern] = ACTIONS(299), + [anon_sym___attribute__] = ACTIONS(301), + [anon_sym___attribute] = ACTIONS(301), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(307), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(333), + [aux_sym_preproc_undef_token1] = ACTIONS(335), + [anon_sym_POUND] = ACTIONS(337), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(339), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(341), + [anon_sym_ATsynthesize] = ACTIONS(343), + [anon_sym_ATdynamic] = ACTIONS(345), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [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(285), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4219), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(22), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2859), + [sym_ms_call_modifier] = STATE(2177), + [sym_compound_statement] = STATE(274), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2985), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(286), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(22), + [sym_preproc_undef] = STATE(22), + [sym_preproc_linemarker] = STATE(22), + [sym_availability_attribute_specifier] = STATE(2054), + [sym_protocol_forward_declaration] = STATE(22), + [sym_class_declaration] = STATE(22), + [sym_class_interface] = STATE(22), + [sym__class_interface_header] = STATE(1177), + [sym_class_implementation] = STATE(22), + [sym__class_implementation_header] = STATE(1098), + [sym_protocol_declaration] = STATE(22), + [sym_compatibility_alias_declaration] = STATE(22), + [sym_property_implementation] = STATE(22), + [sym_try_statement] = STATE(274), + [sym_throw_statement] = STATE(274), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(274), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(274), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(357), + [aux_sym_preproc_include_token1] = ACTIONS(360), + [aux_sym_preproc_include_token2] = ACTIONS(360), + [aux_sym_preproc_def_token1] = ACTIONS(363), + [aux_sym_preproc_if_token1] = ACTIONS(366), + [aux_sym_preproc_if_token2] = ACTIONS(369), + [aux_sym_preproc_ifdef_token1] = ACTIONS(371), + [aux_sym_preproc_ifdef_token2] = ACTIONS(371), + [aux_sym_preproc_else_token1] = ACTIONS(369), + [aux_sym_preproc_elif_token1] = ACTIONS(369), + [aux_sym_preproc_elifdef_token1] = ACTIONS(369), + [aux_sym_preproc_elifdef_token2] = ACTIONS(369), + [sym_preproc_directive] = ACTIONS(374), + [anon_sym_LPAREN2] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(380), + [anon_sym_TILDE] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_PLUS] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(386), + [anon_sym_CARET] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym___extension__] = ACTIONS(395), + [anon_sym_typedef] = ACTIONS(398), + [anon_sym_extern] = ACTIONS(401), + [anon_sym___attribute__] = ACTIONS(404), + [anon_sym___attribute] = ACTIONS(404), + [anon_sym_noreturn] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(410), + [anon_sym___declspec] = ACTIONS(413), + [anon_sym___cdecl] = ACTIONS(416), + [anon_sym___clrcall] = ACTIONS(416), + [anon_sym___stdcall] = ACTIONS(416), + [anon_sym___fastcall] = ACTIONS(416), + [anon_sym___thiscall] = ACTIONS(416), + [anon_sym___vectorcall] = ACTIONS(416), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_signed] = ACTIONS(422), + [anon_sym_unsigned] = ACTIONS(422), + [anon_sym_long] = ACTIONS(422), + [anon_sym_short] = ACTIONS(422), + [anon_sym_static] = ACTIONS(425), + [anon_sym_ATautoreleasepool] = ACTIONS(428), + [anon_sym_auto] = ACTIONS(425), + [anon_sym_register] = ACTIONS(425), + [anon_sym_inline] = ACTIONS(425), + [anon_sym___inline] = ACTIONS(425), + [anon_sym___inline__] = ACTIONS(425), + [anon_sym___forceinline] = ACTIONS(425), + [anon_sym_thread_local] = ACTIONS(425), + [anon_sym___thread] = ACTIONS(425), + [anon_sym_CG_EXTERN] = ACTIONS(425), + [anon_sym_CG_INLINE] = ACTIONS(425), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(425), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(425), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(425), + [anon_sym_IBOutlet] = ACTIONS(425), + [anon_sym_IBInspectable] = ACTIONS(425), + [anon_sym_IB_DESIGNABLE] = ACTIONS(425), + [anon_sym_NS_INLINE] = ACTIONS(425), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(425), + [anon_sym_OBJC_EXPORT] = ACTIONS(425), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(425), + [anon_sym_UIKIT_EXTERN] = ACTIONS(425), + [anon_sym_const] = ACTIONS(431), + [anon_sym_constexpr] = ACTIONS(407), + [anon_sym_volatile] = ACTIONS(407), + [anon_sym_restrict] = ACTIONS(407), + [anon_sym___restrict__] = ACTIONS(407), + [anon_sym__Atomic] = ACTIONS(407), + [anon_sym__Noreturn] = ACTIONS(407), + [anon_sym__Nonnull] = ACTIONS(407), + [anon_sym_nullable] = ACTIONS(407), + [anon_sym__Complex] = ACTIONS(407), + [anon_sym__Nullable] = ACTIONS(407), + [anon_sym__Nullable_result] = ACTIONS(407), + [anon_sym__Null_unspecified] = ACTIONS(407), + [anon_sym___autoreleasing] = ACTIONS(407), + [anon_sym___block] = ACTIONS(407), + [anon_sym___bridge] = ACTIONS(407), + [anon_sym___bridge_retained] = ACTIONS(407), + [anon_sym___bridge_transfer] = ACTIONS(407), + [anon_sym___complex] = ACTIONS(407), + [anon_sym___const] = ACTIONS(407), + [anon_sym___imag] = ACTIONS(434), + [anon_sym___kindof] = ACTIONS(407), + [anon_sym___nonnull] = ACTIONS(407), + [anon_sym___nullable] = ACTIONS(407), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(407), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(407), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(407), + [anon_sym___real] = ACTIONS(434), + [anon_sym___strong] = ACTIONS(407), + [anon_sym___unsafe_unretained] = ACTIONS(407), + [anon_sym___unused] = ACTIONS(407), + [anon_sym___weak] = ACTIONS(407), + [anon_sym_alignas] = ACTIONS(437), + [anon_sym__Alignas] = ACTIONS(437), + [sym_primitive_type] = ACTIONS(440), + [anon_sym_enum] = ACTIONS(443), + [anon_sym_struct] = ACTIONS(446), + [anon_sym_union] = ACTIONS(449), + [anon_sym_if] = ACTIONS(452), + [anon_sym_switch] = ACTIONS(455), + [anon_sym_case] = ACTIONS(458), + [anon_sym_default] = ACTIONS(461), + [anon_sym_while] = ACTIONS(464), + [anon_sym_do] = ACTIONS(467), + [anon_sym_for] = ACTIONS(470), + [anon_sym_in] = ACTIONS(473), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(485), + [anon_sym_DASH_DASH] = ACTIONS(488), + [anon_sym_PLUS_PLUS] = ACTIONS(488), + [anon_sym_sizeof] = ACTIONS(491), + [anon_sym___alignof__] = ACTIONS(494), + [anon_sym___alignof] = ACTIONS(494), + [anon_sym__alignof] = ACTIONS(494), + [anon_sym_alignof] = ACTIONS(494), + [anon_sym__Alignof] = ACTIONS(494), + [anon_sym_offsetof] = ACTIONS(497), + [anon_sym__Generic] = ACTIONS(500), + [anon_sym_asm] = ACTIONS(503), + [anon_sym___asm__] = ACTIONS(503), + [anon_sym___asm] = ACTIONS(506), + [sym_number_literal] = ACTIONS(509), + [anon_sym_L_SQUOTE] = ACTIONS(512), + [anon_sym_u_SQUOTE] = ACTIONS(512), + [anon_sym_U_SQUOTE] = ACTIONS(512), + [anon_sym_u8_SQUOTE] = ACTIONS(512), + [anon_sym_SQUOTE] = ACTIONS(512), + [anon_sym_AT] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(518), + [anon_sym_L_DQUOTE] = ACTIONS(518), + [anon_sym_u_DQUOTE] = ACTIONS(518), + [anon_sym_U_DQUOTE] = ACTIONS(518), + [anon_sym_u8_DQUOTE] = ACTIONS(518), + [sym_true] = ACTIONS(521), + [sym_false] = ACTIONS(521), + [anon_sym_NULL] = ACTIONS(524), + [anon_sym_nullptr] = ACTIONS(524), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(527), + [anon_sym___typeof] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(527), + [anon_sym_ATimport] = ACTIONS(530), + [aux_sym_preproc_undef_token1] = ACTIONS(533), + [anon_sym_POUND] = ACTIONS(536), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(539), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(539), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(539), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(539), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(539), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(539), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(539), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(539), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(539), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(542), + [anon_sym_NS_AVAILABLE] = ACTIONS(542), + [anon_sym___IOS_AVAILABLE] = ACTIONS(542), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(542), + [anon_sym_API_AVAILABLE] = ACTIONS(542), + [anon_sym_API_UNAVAILABLE] = ACTIONS(542), + [anon_sym_API_DEPRECATED] = ACTIONS(542), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(542), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(542), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(542), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(542), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(542), + [anon_sym___deprecated_msg] = ACTIONS(542), + [anon_sym___deprecated_enum_msg] = ACTIONS(542), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(542), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(542), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(542), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(542), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(542), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(542), + [anon_sym_ATprotocol] = ACTIONS(545), + [anon_sym_ATinterface] = ACTIONS(548), + [anon_sym_ATimplementation] = ACTIONS(551), + [anon_sym_ATcompatibility_alias] = ACTIONS(554), + [anon_sym_ATsynthesize] = ACTIONS(557), + [anon_sym_ATdynamic] = ACTIONS(560), + [anon_sym_ATtry] = ACTIONS(563), + [anon_sym___try] = ACTIONS(566), + [anon_sym_ATthrow] = ACTIONS(569), + [anon_sym_ATselector] = ACTIONS(572), + [anon_sym_ATavailable] = ACTIONS(575), + [anon_sym___builtin_available] = ACTIONS(578), + [anon_sym_va_arg] = ACTIONS(581), + [anon_sym_ATencode] = ACTIONS(584), + [anon_sym_ATsynchronized] = ACTIONS(587), + [anon_sym_BOOL] = ACTIONS(590), + [anon_sym_IMP] = ACTIONS(590), + [anon_sym_SEL] = ACTIONS(590), + [anon_sym_Class] = ACTIONS(590), + [anon_sym_id] = ACTIONS(593), + }, + [23] = { + [sym__block_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_preproc_else] = STATE(6503), + [sym_preproc_elif] = STATE(6503), + [sym_function_definition] = STATE(37), + [sym__old_style_function_definition] = STATE(510), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(2056), + [sym__declaration_specifiers] = STATE(4211), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(37), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2861), + [sym_ms_call_modifier] = STATE(2181), + [sym_compound_statement] = STATE(406), + [sym_storage_class_specifier] = STATE(2056), + [sym_type_qualifier] = STATE(2056), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2958), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(37), + [sym_labeled_statement] = STATE(406), + [sym_expression_statement] = STATE(406), + [sym_if_statement] = STATE(406), + [sym_switch_statement] = STATE(406), + [sym_case_statement] = STATE(406), + [sym_while_statement] = STATE(406), + [sym_do_statement] = STATE(406), + [sym_for_statement] = STATE(406), + [sym_return_statement] = STATE(406), + [sym_break_statement] = STATE(406), + [sym_continue_statement] = STATE(406), + [sym_goto_statement] = STATE(406), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(37), + [sym_preproc_undef] = STATE(37), + [sym_preproc_linemarker] = STATE(37), + [sym_availability_attribute_specifier] = STATE(2056), + [sym_protocol_forward_declaration] = STATE(37), + [sym_class_declaration] = STATE(37), + [sym_class_interface] = STATE(37), + [sym__class_interface_header] = STATE(1182), + [sym_class_implementation] = STATE(37), + [sym__class_implementation_header] = STATE(1094), + [sym_protocol_declaration] = STATE(37), + [sym_compatibility_alias_declaration] = STATE(37), + [sym_property_implementation] = STATE(37), + [sym_try_statement] = STATE(406), + [sym_throw_statement] = STATE(406), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(406), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(406), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2056), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_include_token2] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(596), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [sym_preproc_directive] = ACTIONS(291), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(295), + [anon_sym_typedef] = ACTIONS(297), + [anon_sym_extern] = ACTIONS(299), + [anon_sym___attribute__] = ACTIONS(301), + [anon_sym___attribute] = ACTIONS(301), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(307), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(333), + [aux_sym_preproc_undef_token1] = ACTIONS(335), + [anon_sym_POUND] = ACTIONS(337), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(339), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(341), + [anon_sym_ATsynthesize] = ACTIONS(343), + [anon_sym_ATdynamic] = ACTIONS(345), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [24] = { + [sym__block_item] = STATE(20), + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(6787), + [sym_preproc_elif] = STATE(6787), + [sym_function_definition] = STATE(20), + [sym__old_style_function_definition] = STATE(510), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(2056), + [sym__declaration_specifiers] = STATE(4211), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(20), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2861), + [sym_ms_call_modifier] = STATE(2181), + [sym_compound_statement] = STATE(406), + [sym_storage_class_specifier] = STATE(2056), + [sym_type_qualifier] = STATE(2056), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2958), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(20), + [sym_labeled_statement] = STATE(406), + [sym_expression_statement] = STATE(406), + [sym_if_statement] = STATE(406), + [sym_switch_statement] = STATE(406), + [sym_case_statement] = STATE(406), + [sym_while_statement] = STATE(406), + [sym_do_statement] = STATE(406), + [sym_for_statement] = STATE(406), + [sym_return_statement] = STATE(406), + [sym_break_statement] = STATE(406), + [sym_continue_statement] = STATE(406), + [sym_goto_statement] = STATE(406), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(20), + [sym_preproc_undef] = STATE(20), + [sym_preproc_linemarker] = STATE(20), + [sym_availability_attribute_specifier] = STATE(2056), + [sym_protocol_forward_declaration] = STATE(20), + [sym_class_declaration] = STATE(20), + [sym_class_interface] = STATE(20), + [sym__class_interface_header] = STATE(1182), + [sym_class_implementation] = STATE(20), + [sym__class_implementation_header] = STATE(1094), + [sym_protocol_declaration] = STATE(20), + [sym_compatibility_alias_declaration] = STATE(20), + [sym_property_implementation] = STATE(20), + [sym_try_statement] = STATE(406), + [sym_throw_statement] = STATE(406), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(406), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(406), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(2056), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_include_token2] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(598), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [sym_preproc_directive] = ACTIONS(291), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(295), + [anon_sym_typedef] = ACTIONS(297), + [anon_sym_extern] = ACTIONS(299), + [anon_sym___attribute__] = ACTIONS(301), + [anon_sym___attribute] = ACTIONS(301), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(307), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(333), + [aux_sym_preproc_undef_token1] = ACTIONS(335), + [anon_sym_POUND] = ACTIONS(337), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(339), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(341), + [anon_sym_ATsynthesize] = ACTIONS(343), + [anon_sym_ATdynamic] = ACTIONS(345), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [25] = { + [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_preproc_else] = STATE(6425), + [sym_preproc_elif] = STATE(6425), + [sym_function_definition] = STATE(27), + [sym__old_style_function_definition] = STATE(510), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(2056), + [sym__declaration_specifiers] = STATE(4211), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(27), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2861), + [sym_ms_call_modifier] = STATE(2181), + [sym_compound_statement] = STATE(406), + [sym_storage_class_specifier] = STATE(2056), + [sym_type_qualifier] = STATE(2056), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2958), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(27), + [sym_labeled_statement] = STATE(406), + [sym_expression_statement] = STATE(406), + [sym_if_statement] = STATE(406), + [sym_switch_statement] = STATE(406), + [sym_case_statement] = STATE(406), + [sym_while_statement] = STATE(406), + [sym_do_statement] = STATE(406), + [sym_for_statement] = STATE(406), + [sym_return_statement] = STATE(406), + [sym_break_statement] = STATE(406), + [sym_continue_statement] = STATE(406), + [sym_goto_statement] = STATE(406), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(27), + [sym_preproc_undef] = STATE(27), + [sym_preproc_linemarker] = STATE(27), + [sym_availability_attribute_specifier] = STATE(2056), + [sym_protocol_forward_declaration] = STATE(27), + [sym_class_declaration] = STATE(27), + [sym_class_interface] = STATE(27), + [sym__class_interface_header] = STATE(1182), + [sym_class_implementation] = STATE(27), + [sym__class_implementation_header] = STATE(1094), + [sym_protocol_declaration] = STATE(27), + [sym_compatibility_alias_declaration] = STATE(27), + [sym_property_implementation] = STATE(27), + [sym_try_statement] = STATE(406), + [sym_throw_statement] = STATE(406), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(406), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(406), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(2056), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_include_token2] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [sym_preproc_directive] = ACTIONS(291), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(295), + [anon_sym_typedef] = ACTIONS(297), + [anon_sym_extern] = ACTIONS(299), + [anon_sym___attribute__] = ACTIONS(301), + [anon_sym___attribute] = ACTIONS(301), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(307), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(333), + [aux_sym_preproc_undef_token1] = ACTIONS(335), + [anon_sym_POUND] = ACTIONS(337), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(339), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(341), + [anon_sym_ATsynthesize] = ACTIONS(343), + [anon_sym_ATdynamic] = ACTIONS(345), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [26] = { + [sym__block_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_preproc_else] = STATE(6474), + [sym_preproc_elif] = STATE(6474), + [sym_function_definition] = STATE(37), + [sym__old_style_function_definition] = STATE(510), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(2056), + [sym__declaration_specifiers] = STATE(4211), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(37), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2861), + [sym_ms_call_modifier] = STATE(2181), + [sym_compound_statement] = STATE(406), + [sym_storage_class_specifier] = STATE(2056), + [sym_type_qualifier] = STATE(2056), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2958), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(37), + [sym_labeled_statement] = STATE(406), + [sym_expression_statement] = STATE(406), + [sym_if_statement] = STATE(406), + [sym_switch_statement] = STATE(406), + [sym_case_statement] = STATE(406), + [sym_while_statement] = STATE(406), + [sym_do_statement] = STATE(406), + [sym_for_statement] = STATE(406), + [sym_return_statement] = STATE(406), + [sym_break_statement] = STATE(406), + [sym_continue_statement] = STATE(406), + [sym_goto_statement] = STATE(406), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(37), + [sym_preproc_undef] = STATE(37), + [sym_preproc_linemarker] = STATE(37), + [sym_availability_attribute_specifier] = STATE(2056), + [sym_protocol_forward_declaration] = STATE(37), + [sym_class_declaration] = STATE(37), + [sym_class_interface] = STATE(37), + [sym__class_interface_header] = STATE(1182), + [sym_class_implementation] = STATE(37), + [sym__class_implementation_header] = STATE(1094), + [sym_protocol_declaration] = STATE(37), + [sym_compatibility_alias_declaration] = STATE(37), + [sym_property_implementation] = STATE(37), + [sym_try_statement] = STATE(406), + [sym_throw_statement] = STATE(406), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(406), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(406), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2056), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_include_token2] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(602), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [sym_preproc_directive] = ACTIONS(291), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(295), + [anon_sym_typedef] = ACTIONS(297), + [anon_sym_extern] = ACTIONS(299), + [anon_sym___attribute__] = ACTIONS(301), + [anon_sym___attribute] = ACTIONS(301), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(307), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(333), + [aux_sym_preproc_undef_token1] = ACTIONS(335), + [anon_sym_POUND] = ACTIONS(337), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(339), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(341), + [anon_sym_ATsynthesize] = ACTIONS(343), + [anon_sym_ATdynamic] = ACTIONS(345), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [27] = { + [sym__block_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_preproc_else] = STATE(6522), + [sym_preproc_elif] = STATE(6522), + [sym_function_definition] = STATE(37), + [sym__old_style_function_definition] = STATE(510), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(2056), + [sym__declaration_specifiers] = STATE(4211), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(37), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2861), + [sym_ms_call_modifier] = STATE(2181), + [sym_compound_statement] = STATE(406), + [sym_storage_class_specifier] = STATE(2056), + [sym_type_qualifier] = STATE(2056), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2958), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(37), + [sym_labeled_statement] = STATE(406), + [sym_expression_statement] = STATE(406), + [sym_if_statement] = STATE(406), + [sym_switch_statement] = STATE(406), + [sym_case_statement] = STATE(406), + [sym_while_statement] = STATE(406), + [sym_do_statement] = STATE(406), + [sym_for_statement] = STATE(406), + [sym_return_statement] = STATE(406), + [sym_break_statement] = STATE(406), + [sym_continue_statement] = STATE(406), + [sym_goto_statement] = STATE(406), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(37), + [sym_preproc_undef] = STATE(37), + [sym_preproc_linemarker] = STATE(37), + [sym_availability_attribute_specifier] = STATE(2056), + [sym_protocol_forward_declaration] = STATE(37), + [sym_class_declaration] = STATE(37), + [sym_class_interface] = STATE(37), + [sym__class_interface_header] = STATE(1182), + [sym_class_implementation] = STATE(37), + [sym__class_implementation_header] = STATE(1094), + [sym_protocol_declaration] = STATE(37), + [sym_compatibility_alias_declaration] = STATE(37), + [sym_property_implementation] = STATE(37), + [sym_try_statement] = STATE(406), + [sym_throw_statement] = STATE(406), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(406), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(406), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2056), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_include_token2] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(604), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [sym_preproc_directive] = ACTIONS(291), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(295), + [anon_sym_typedef] = ACTIONS(297), + [anon_sym_extern] = ACTIONS(299), + [anon_sym___attribute__] = ACTIONS(301), + [anon_sym___attribute] = ACTIONS(301), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(307), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(333), + [aux_sym_preproc_undef_token1] = ACTIONS(335), + [anon_sym_POUND] = ACTIONS(337), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(339), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(341), + [anon_sym_ATsynthesize] = ACTIONS(343), + [anon_sym_ATdynamic] = ACTIONS(345), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [28] = { + [sym__block_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_preproc_else] = STATE(6689), + [sym_preproc_elif] = STATE(6689), + [sym_function_definition] = STATE(37), + [sym__old_style_function_definition] = STATE(510), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(2056), + [sym__declaration_specifiers] = STATE(4211), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(37), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2861), + [sym_ms_call_modifier] = STATE(2181), + [sym_compound_statement] = STATE(406), + [sym_storage_class_specifier] = STATE(2056), + [sym_type_qualifier] = STATE(2056), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2958), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(37), + [sym_labeled_statement] = STATE(406), + [sym_expression_statement] = STATE(406), + [sym_if_statement] = STATE(406), + [sym_switch_statement] = STATE(406), + [sym_case_statement] = STATE(406), + [sym_while_statement] = STATE(406), + [sym_do_statement] = STATE(406), + [sym_for_statement] = STATE(406), + [sym_return_statement] = STATE(406), + [sym_break_statement] = STATE(406), + [sym_continue_statement] = STATE(406), + [sym_goto_statement] = STATE(406), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(37), + [sym_preproc_undef] = STATE(37), + [sym_preproc_linemarker] = STATE(37), + [sym_availability_attribute_specifier] = STATE(2056), + [sym_protocol_forward_declaration] = STATE(37), + [sym_class_declaration] = STATE(37), + [sym_class_interface] = STATE(37), + [sym__class_interface_header] = STATE(1182), + [sym_class_implementation] = STATE(37), + [sym__class_implementation_header] = STATE(1094), + [sym_protocol_declaration] = STATE(37), + [sym_compatibility_alias_declaration] = STATE(37), + [sym_property_implementation] = STATE(37), + [sym_try_statement] = STATE(406), + [sym_throw_statement] = STATE(406), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(406), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(406), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2056), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_include_token2] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(606), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [sym_preproc_directive] = ACTIONS(291), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(295), + [anon_sym_typedef] = ACTIONS(297), + [anon_sym_extern] = ACTIONS(299), + [anon_sym___attribute__] = ACTIONS(301), + [anon_sym___attribute] = ACTIONS(301), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(307), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(333), + [aux_sym_preproc_undef_token1] = ACTIONS(335), + [anon_sym_POUND] = ACTIONS(337), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(339), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(341), + [anon_sym_ATsynthesize] = ACTIONS(343), + [anon_sym_ATdynamic] = ACTIONS(345), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [29] = { + [sym__block_item] = STATE(32), + [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_preproc_else] = STATE(6099), + [sym_preproc_elif] = STATE(6099), + [sym_function_definition] = STATE(32), + [sym__old_style_function_definition] = STATE(510), + [sym_declaration] = STATE(32), + [sym_type_definition] = STATE(32), + [sym__declaration_modifiers] = STATE(2056), + [sym__declaration_specifiers] = STATE(4211), + [sym_linkage_specification] = STATE(32), + [sym_attribute_specifier] = STATE(32), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2861), + [sym_ms_call_modifier] = STATE(2181), + [sym_compound_statement] = STATE(406), + [sym_storage_class_specifier] = STATE(2056), + [sym_type_qualifier] = STATE(2056), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2958), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(32), + [sym_labeled_statement] = STATE(406), + [sym_expression_statement] = STATE(406), + [sym_if_statement] = STATE(406), + [sym_switch_statement] = STATE(406), + [sym_case_statement] = STATE(406), + [sym_while_statement] = STATE(406), + [sym_do_statement] = STATE(406), + [sym_for_statement] = STATE(406), + [sym_return_statement] = STATE(406), + [sym_break_statement] = STATE(406), + [sym_continue_statement] = STATE(406), + [sym_goto_statement] = STATE(406), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(32), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(32), + [sym_preproc_undef] = STATE(32), + [sym_preproc_linemarker] = STATE(32), + [sym_availability_attribute_specifier] = STATE(2056), + [sym_protocol_forward_declaration] = STATE(32), + [sym_class_declaration] = STATE(32), + [sym_class_interface] = STATE(32), + [sym__class_interface_header] = STATE(1182), + [sym_class_implementation] = STATE(32), + [sym__class_implementation_header] = STATE(1094), + [sym_protocol_declaration] = STATE(32), + [sym_compatibility_alias_declaration] = STATE(32), + [sym_property_implementation] = STATE(32), + [sym_try_statement] = STATE(406), + [sym_throw_statement] = STATE(406), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(406), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(406), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(32), + [aux_sym__declaration_specifiers_repeat1] = STATE(2056), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_include_token2] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(608), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [sym_preproc_directive] = ACTIONS(291), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(295), + [anon_sym_typedef] = ACTIONS(297), + [anon_sym_extern] = ACTIONS(299), + [anon_sym___attribute__] = ACTIONS(301), + [anon_sym___attribute] = ACTIONS(301), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(307), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(333), + [aux_sym_preproc_undef_token1] = ACTIONS(335), + [anon_sym_POUND] = ACTIONS(337), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(339), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(341), + [anon_sym_ATsynthesize] = ACTIONS(343), + [anon_sym_ATdynamic] = ACTIONS(345), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [30] = { + [sym__block_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_preproc_else] = STATE(6608), + [sym_preproc_elif] = STATE(6608), + [sym_function_definition] = STATE(37), + [sym__old_style_function_definition] = STATE(510), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(2056), + [sym__declaration_specifiers] = STATE(4211), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(37), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2861), + [sym_ms_call_modifier] = STATE(2181), + [sym_compound_statement] = STATE(406), + [sym_storage_class_specifier] = STATE(2056), + [sym_type_qualifier] = STATE(2056), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2958), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(37), + [sym_labeled_statement] = STATE(406), + [sym_expression_statement] = STATE(406), + [sym_if_statement] = STATE(406), + [sym_switch_statement] = STATE(406), + [sym_case_statement] = STATE(406), + [sym_while_statement] = STATE(406), + [sym_do_statement] = STATE(406), + [sym_for_statement] = STATE(406), + [sym_return_statement] = STATE(406), + [sym_break_statement] = STATE(406), + [sym_continue_statement] = STATE(406), + [sym_goto_statement] = STATE(406), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(37), + [sym_preproc_undef] = STATE(37), + [sym_preproc_linemarker] = STATE(37), + [sym_availability_attribute_specifier] = STATE(2056), + [sym_protocol_forward_declaration] = STATE(37), + [sym_class_declaration] = STATE(37), + [sym_class_interface] = STATE(37), + [sym__class_interface_header] = STATE(1182), + [sym_class_implementation] = STATE(37), + [sym__class_implementation_header] = STATE(1094), + [sym_protocol_declaration] = STATE(37), + [sym_compatibility_alias_declaration] = STATE(37), + [sym_property_implementation] = STATE(37), + [sym_try_statement] = STATE(406), + [sym_throw_statement] = STATE(406), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(406), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(406), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2056), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_include_token2] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(610), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [sym_preproc_directive] = ACTIONS(291), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(295), + [anon_sym_typedef] = ACTIONS(297), + [anon_sym_extern] = ACTIONS(299), + [anon_sym___attribute__] = ACTIONS(301), + [anon_sym___attribute] = ACTIONS(301), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(307), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(333), + [aux_sym_preproc_undef_token1] = ACTIONS(335), + [anon_sym_POUND] = ACTIONS(337), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(339), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(341), + [anon_sym_ATsynthesize] = ACTIONS(343), + [anon_sym_ATdynamic] = ACTIONS(345), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [31] = { + [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_preproc_else] = STATE(6291), + [sym_preproc_elif] = STATE(6291), + [sym_function_definition] = STATE(33), + [sym__old_style_function_definition] = STATE(510), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(2056), + [sym__declaration_specifiers] = STATE(4211), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(33), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2861), + [sym_ms_call_modifier] = STATE(2181), + [sym_compound_statement] = STATE(406), + [sym_storage_class_specifier] = STATE(2056), + [sym_type_qualifier] = STATE(2056), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2958), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(33), + [sym_labeled_statement] = STATE(406), + [sym_expression_statement] = STATE(406), + [sym_if_statement] = STATE(406), + [sym_switch_statement] = STATE(406), + [sym_case_statement] = STATE(406), + [sym_while_statement] = STATE(406), + [sym_do_statement] = STATE(406), + [sym_for_statement] = STATE(406), + [sym_return_statement] = STATE(406), + [sym_break_statement] = STATE(406), + [sym_continue_statement] = STATE(406), + [sym_goto_statement] = STATE(406), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(33), + [sym_preproc_undef] = STATE(33), + [sym_preproc_linemarker] = STATE(33), + [sym_availability_attribute_specifier] = STATE(2056), + [sym_protocol_forward_declaration] = STATE(33), + [sym_class_declaration] = STATE(33), + [sym_class_interface] = STATE(33), + [sym__class_interface_header] = STATE(1182), + [sym_class_implementation] = STATE(33), + [sym__class_implementation_header] = STATE(1094), + [sym_protocol_declaration] = STATE(33), + [sym_compatibility_alias_declaration] = STATE(33), + [sym_property_implementation] = STATE(33), + [sym_try_statement] = STATE(406), + [sym_throw_statement] = STATE(406), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(406), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(406), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(2056), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_include_token2] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(612), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [sym_preproc_directive] = ACTIONS(291), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(295), + [anon_sym_typedef] = ACTIONS(297), + [anon_sym_extern] = ACTIONS(299), + [anon_sym___attribute__] = ACTIONS(301), + [anon_sym___attribute] = ACTIONS(301), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(307), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(333), + [aux_sym_preproc_undef_token1] = ACTIONS(335), + [anon_sym_POUND] = ACTIONS(337), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(339), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(341), + [anon_sym_ATsynthesize] = ACTIONS(343), + [anon_sym_ATdynamic] = ACTIONS(345), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [32] = { + [sym__block_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_preproc_else] = STATE(6198), + [sym_preproc_elif] = STATE(6198), + [sym_function_definition] = STATE(37), + [sym__old_style_function_definition] = STATE(510), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(2056), + [sym__declaration_specifiers] = STATE(4211), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(37), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2861), + [sym_ms_call_modifier] = STATE(2181), + [sym_compound_statement] = STATE(406), + [sym_storage_class_specifier] = STATE(2056), + [sym_type_qualifier] = STATE(2056), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2958), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(37), + [sym_labeled_statement] = STATE(406), + [sym_expression_statement] = STATE(406), + [sym_if_statement] = STATE(406), + [sym_switch_statement] = STATE(406), + [sym_case_statement] = STATE(406), + [sym_while_statement] = STATE(406), + [sym_do_statement] = STATE(406), + [sym_for_statement] = STATE(406), + [sym_return_statement] = STATE(406), + [sym_break_statement] = STATE(406), + [sym_continue_statement] = STATE(406), + [sym_goto_statement] = STATE(406), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(37), + [sym_preproc_undef] = STATE(37), + [sym_preproc_linemarker] = STATE(37), + [sym_availability_attribute_specifier] = STATE(2056), + [sym_protocol_forward_declaration] = STATE(37), + [sym_class_declaration] = STATE(37), + [sym_class_interface] = STATE(37), + [sym__class_interface_header] = STATE(1182), + [sym_class_implementation] = STATE(37), + [sym__class_implementation_header] = STATE(1094), + [sym_protocol_declaration] = STATE(37), + [sym_compatibility_alias_declaration] = STATE(37), + [sym_property_implementation] = STATE(37), + [sym_try_statement] = STATE(406), + [sym_throw_statement] = STATE(406), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(406), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(406), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2056), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_include_token2] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(614), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [sym_preproc_directive] = ACTIONS(291), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(295), + [anon_sym_typedef] = ACTIONS(297), + [anon_sym_extern] = ACTIONS(299), + [anon_sym___attribute__] = ACTIONS(301), + [anon_sym___attribute] = ACTIONS(301), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(307), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(333), + [aux_sym_preproc_undef_token1] = ACTIONS(335), + [anon_sym_POUND] = ACTIONS(337), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(339), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(341), + [anon_sym_ATsynthesize] = ACTIONS(343), + [anon_sym_ATdynamic] = ACTIONS(345), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [33] = { + [sym__block_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_preproc_else] = STATE(6422), + [sym_preproc_elif] = STATE(6422), + [sym_function_definition] = STATE(37), + [sym__old_style_function_definition] = STATE(510), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(2056), + [sym__declaration_specifiers] = STATE(4211), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(37), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2861), + [sym_ms_call_modifier] = STATE(2181), + [sym_compound_statement] = STATE(406), + [sym_storage_class_specifier] = STATE(2056), + [sym_type_qualifier] = STATE(2056), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2958), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(37), + [sym_labeled_statement] = STATE(406), + [sym_expression_statement] = STATE(406), + [sym_if_statement] = STATE(406), + [sym_switch_statement] = STATE(406), + [sym_case_statement] = STATE(406), + [sym_while_statement] = STATE(406), + [sym_do_statement] = STATE(406), + [sym_for_statement] = STATE(406), + [sym_return_statement] = STATE(406), + [sym_break_statement] = STATE(406), + [sym_continue_statement] = STATE(406), + [sym_goto_statement] = STATE(406), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(37), + [sym_preproc_undef] = STATE(37), + [sym_preproc_linemarker] = STATE(37), + [sym_availability_attribute_specifier] = STATE(2056), + [sym_protocol_forward_declaration] = STATE(37), + [sym_class_declaration] = STATE(37), + [sym_class_interface] = STATE(37), + [sym__class_interface_header] = STATE(1182), + [sym_class_implementation] = STATE(37), + [sym__class_implementation_header] = STATE(1094), + [sym_protocol_declaration] = STATE(37), + [sym_compatibility_alias_declaration] = STATE(37), + [sym_property_implementation] = STATE(37), + [sym_try_statement] = STATE(406), + [sym_throw_statement] = STATE(406), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(406), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(406), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2056), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_include_token2] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [sym_preproc_directive] = ACTIONS(291), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(295), + [anon_sym_typedef] = ACTIONS(297), + [anon_sym_extern] = ACTIONS(299), + [anon_sym___attribute__] = ACTIONS(301), + [anon_sym___attribute] = ACTIONS(301), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(307), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(333), + [aux_sym_preproc_undef_token1] = ACTIONS(335), + [anon_sym_POUND] = ACTIONS(337), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(339), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(341), + [anon_sym_ATsynthesize] = ACTIONS(343), + [anon_sym_ATdynamic] = ACTIONS(345), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [34] = { + [sym__block_item] = STATE(30), + [sym_preproc_include] = STATE(30), + [sym_preproc_def] = STATE(30), + [sym_preproc_function_def] = STATE(30), + [sym_preproc_call] = STATE(30), + [sym_preproc_if] = STATE(30), + [sym_preproc_ifdef] = STATE(30), + [sym_preproc_else] = STATE(6468), + [sym_preproc_elif] = STATE(6468), + [sym_function_definition] = STATE(30), + [sym__old_style_function_definition] = STATE(510), + [sym_declaration] = STATE(30), + [sym_type_definition] = STATE(30), + [sym__declaration_modifiers] = STATE(2056), + [sym__declaration_specifiers] = STATE(4211), + [sym_linkage_specification] = STATE(30), + [sym_attribute_specifier] = STATE(30), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2861), + [sym_ms_call_modifier] = STATE(2181), + [sym_compound_statement] = STATE(406), + [sym_storage_class_specifier] = STATE(2056), + [sym_type_qualifier] = STATE(2056), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2958), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(30), + [sym_labeled_statement] = STATE(406), + [sym_expression_statement] = STATE(406), + [sym_if_statement] = STATE(406), + [sym_switch_statement] = STATE(406), + [sym_case_statement] = STATE(406), + [sym_while_statement] = STATE(406), + [sym_do_statement] = STATE(406), + [sym_for_statement] = STATE(406), + [sym_return_statement] = STATE(406), + [sym_break_statement] = STATE(406), + [sym_continue_statement] = STATE(406), + [sym_goto_statement] = STATE(406), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(30), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(30), + [sym_preproc_undef] = STATE(30), + [sym_preproc_linemarker] = STATE(30), + [sym_availability_attribute_specifier] = STATE(2056), + [sym_protocol_forward_declaration] = STATE(30), + [sym_class_declaration] = STATE(30), + [sym_class_interface] = STATE(30), + [sym__class_interface_header] = STATE(1182), + [sym_class_implementation] = STATE(30), + [sym__class_implementation_header] = STATE(1094), + [sym_protocol_declaration] = STATE(30), + [sym_compatibility_alias_declaration] = STATE(30), + [sym_property_implementation] = STATE(30), + [sym_try_statement] = STATE(406), + [sym_throw_statement] = STATE(406), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(406), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(406), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(30), + [aux_sym__declaration_specifiers_repeat1] = STATE(2056), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_include_token2] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(618), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [sym_preproc_directive] = ACTIONS(291), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(295), + [anon_sym_typedef] = ACTIONS(297), + [anon_sym_extern] = ACTIONS(299), + [anon_sym___attribute__] = ACTIONS(301), + [anon_sym___attribute] = ACTIONS(301), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(307), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(333), + [aux_sym_preproc_undef_token1] = ACTIONS(335), + [anon_sym_POUND] = ACTIONS(337), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(339), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(341), + [anon_sym_ATsynthesize] = ACTIONS(343), + [anon_sym_ATdynamic] = ACTIONS(345), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [35] = { + [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_preproc_else] = STATE(6213), + [sym_preproc_elif] = STATE(6213), + [sym_function_definition] = STATE(26), + [sym__old_style_function_definition] = STATE(510), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(2056), + [sym__declaration_specifiers] = STATE(4211), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(26), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2861), + [sym_ms_call_modifier] = STATE(2181), + [sym_compound_statement] = STATE(406), + [sym_storage_class_specifier] = STATE(2056), + [sym_type_qualifier] = STATE(2056), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2958), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(26), + [sym_labeled_statement] = STATE(406), + [sym_expression_statement] = STATE(406), + [sym_if_statement] = STATE(406), + [sym_switch_statement] = STATE(406), + [sym_case_statement] = STATE(406), + [sym_while_statement] = STATE(406), + [sym_do_statement] = STATE(406), + [sym_for_statement] = STATE(406), + [sym_return_statement] = STATE(406), + [sym_break_statement] = STATE(406), + [sym_continue_statement] = STATE(406), + [sym_goto_statement] = STATE(406), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(26), + [sym_preproc_undef] = STATE(26), + [sym_preproc_linemarker] = STATE(26), + [sym_availability_attribute_specifier] = STATE(2056), + [sym_protocol_forward_declaration] = STATE(26), + [sym_class_declaration] = STATE(26), + [sym_class_interface] = STATE(26), + [sym__class_interface_header] = STATE(1182), + [sym_class_implementation] = STATE(26), + [sym__class_implementation_header] = STATE(1094), + [sym_protocol_declaration] = STATE(26), + [sym_compatibility_alias_declaration] = STATE(26), + [sym_property_implementation] = STATE(26), + [sym_try_statement] = STATE(406), + [sym_throw_statement] = STATE(406), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(406), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(406), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(2056), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_include_token2] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [sym_preproc_directive] = ACTIONS(291), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(295), + [anon_sym_typedef] = ACTIONS(297), + [anon_sym_extern] = ACTIONS(299), + [anon_sym___attribute__] = ACTIONS(301), + [anon_sym___attribute] = ACTIONS(301), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(307), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(333), + [aux_sym_preproc_undef_token1] = ACTIONS(335), + [anon_sym_POUND] = ACTIONS(337), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(339), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(341), + [anon_sym_ATsynthesize] = ACTIONS(343), + [anon_sym_ATdynamic] = ACTIONS(345), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [36] = { + [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_preproc_else] = STATE(6636), + [sym_preproc_elif] = STATE(6636), + [sym_function_definition] = STATE(23), + [sym__old_style_function_definition] = STATE(510), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), + [sym__declaration_modifiers] = STATE(2056), + [sym__declaration_specifiers] = STATE(4211), + [sym_linkage_specification] = STATE(23), + [sym_attribute_specifier] = STATE(23), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2861), + [sym_ms_call_modifier] = STATE(2181), + [sym_compound_statement] = STATE(406), + [sym_storage_class_specifier] = STATE(2056), + [sym_type_qualifier] = STATE(2056), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2958), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(23), + [sym_labeled_statement] = STATE(406), + [sym_expression_statement] = STATE(406), + [sym_if_statement] = STATE(406), + [sym_switch_statement] = STATE(406), + [sym_case_statement] = STATE(406), + [sym_while_statement] = STATE(406), + [sym_do_statement] = STATE(406), + [sym_for_statement] = STATE(406), + [sym_return_statement] = STATE(406), + [sym_break_statement] = STATE(406), + [sym_continue_statement] = STATE(406), + [sym_goto_statement] = STATE(406), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(23), + [sym_preproc_undef] = STATE(23), + [sym_preproc_linemarker] = STATE(23), + [sym_availability_attribute_specifier] = STATE(2056), + [sym_protocol_forward_declaration] = STATE(23), + [sym_class_declaration] = STATE(23), + [sym_class_interface] = STATE(23), + [sym__class_interface_header] = STATE(1182), + [sym_class_implementation] = STATE(23), + [sym__class_implementation_header] = STATE(1094), + [sym_protocol_declaration] = STATE(23), + [sym_compatibility_alias_declaration] = STATE(23), + [sym_property_implementation] = STATE(23), + [sym_try_statement] = STATE(406), + [sym_throw_statement] = STATE(406), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(406), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(406), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(2056), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_include_token2] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(622), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(163), + [aux_sym_preproc_elif_token1] = ACTIONS(165), + [sym_preproc_directive] = ACTIONS(291), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(295), + [anon_sym_typedef] = ACTIONS(297), + [anon_sym_extern] = ACTIONS(299), + [anon_sym___attribute__] = ACTIONS(301), + [anon_sym___attribute] = ACTIONS(301), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(307), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(333), + [aux_sym_preproc_undef_token1] = ACTIONS(335), + [anon_sym_POUND] = ACTIONS(337), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(339), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(341), + [anon_sym_ATsynthesize] = ACTIONS(343), + [anon_sym_ATdynamic] = ACTIONS(345), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [37] = { + [sym__block_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym__old_style_function_definition] = STATE(510), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(2056), + [sym__declaration_specifiers] = STATE(4211), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(37), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2861), + [sym_ms_call_modifier] = STATE(2181), + [sym_compound_statement] = STATE(406), + [sym_storage_class_specifier] = STATE(2056), + [sym_type_qualifier] = STATE(2056), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2958), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(37), + [sym_labeled_statement] = STATE(406), + [sym_expression_statement] = STATE(406), + [sym_if_statement] = STATE(406), + [sym_switch_statement] = STATE(406), + [sym_case_statement] = STATE(406), + [sym_while_statement] = STATE(406), + [sym_do_statement] = STATE(406), + [sym_for_statement] = STATE(406), + [sym_return_statement] = STATE(406), + [sym_break_statement] = STATE(406), + [sym_continue_statement] = STATE(406), + [sym_goto_statement] = STATE(406), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(37), + [sym_preproc_undef] = STATE(37), + [sym_preproc_linemarker] = STATE(37), + [sym_availability_attribute_specifier] = STATE(2056), + [sym_protocol_forward_declaration] = STATE(37), + [sym_class_declaration] = STATE(37), + [sym_class_interface] = STATE(37), + [sym__class_interface_header] = STATE(1182), + [sym_class_implementation] = STATE(37), + [sym__class_implementation_header] = STATE(1094), + [sym_protocol_declaration] = STATE(37), + [sym_compatibility_alias_declaration] = STATE(37), + [sym_property_implementation] = STATE(37), + [sym_try_statement] = STATE(406), + [sym_throw_statement] = STATE(406), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(406), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(406), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2056), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(624), + [aux_sym_preproc_include_token1] = ACTIONS(627), + [aux_sym_preproc_include_token2] = ACTIONS(627), + [aux_sym_preproc_def_token1] = ACTIONS(630), + [aux_sym_preproc_if_token1] = ACTIONS(633), + [aux_sym_preproc_if_token2] = ACTIONS(369), + [aux_sym_preproc_ifdef_token1] = ACTIONS(636), + [aux_sym_preproc_ifdef_token2] = ACTIONS(636), + [aux_sym_preproc_else_token1] = ACTIONS(369), + [aux_sym_preproc_elif_token1] = ACTIONS(369), + [sym_preproc_directive] = ACTIONS(639), + [anon_sym_LPAREN2] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(380), + [anon_sym_TILDE] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_PLUS] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(386), + [anon_sym_CARET] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym___extension__] = ACTIONS(645), + [anon_sym_typedef] = ACTIONS(648), + [anon_sym_extern] = ACTIONS(651), + [anon_sym___attribute__] = ACTIONS(654), + [anon_sym___attribute] = ACTIONS(654), + [anon_sym_noreturn] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(410), + [anon_sym___declspec] = ACTIONS(413), + [anon_sym___cdecl] = ACTIONS(416), + [anon_sym___clrcall] = ACTIONS(416), + [anon_sym___stdcall] = ACTIONS(416), + [anon_sym___fastcall] = ACTIONS(416), + [anon_sym___thiscall] = ACTIONS(416), + [anon_sym___vectorcall] = ACTIONS(416), + [anon_sym_LBRACE] = ACTIONS(657), + [anon_sym_signed] = ACTIONS(422), + [anon_sym_unsigned] = ACTIONS(422), + [anon_sym_long] = ACTIONS(422), + [anon_sym_short] = ACTIONS(422), + [anon_sym_static] = ACTIONS(425), + [anon_sym_ATautoreleasepool] = ACTIONS(660), + [anon_sym_auto] = ACTIONS(425), + [anon_sym_register] = ACTIONS(425), + [anon_sym_inline] = ACTIONS(425), + [anon_sym___inline] = ACTIONS(425), + [anon_sym___inline__] = ACTIONS(425), + [anon_sym___forceinline] = ACTIONS(425), + [anon_sym_thread_local] = ACTIONS(425), + [anon_sym___thread] = ACTIONS(425), + [anon_sym_CG_EXTERN] = ACTIONS(425), + [anon_sym_CG_INLINE] = ACTIONS(425), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(425), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(425), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(425), + [anon_sym_IBOutlet] = ACTIONS(425), + [anon_sym_IBInspectable] = ACTIONS(425), + [anon_sym_IB_DESIGNABLE] = ACTIONS(425), + [anon_sym_NS_INLINE] = ACTIONS(425), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(425), + [anon_sym_OBJC_EXPORT] = ACTIONS(425), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(425), + [anon_sym_UIKIT_EXTERN] = ACTIONS(425), + [anon_sym_const] = ACTIONS(431), + [anon_sym_constexpr] = ACTIONS(407), + [anon_sym_volatile] = ACTIONS(407), + [anon_sym_restrict] = ACTIONS(407), + [anon_sym___restrict__] = ACTIONS(407), + [anon_sym__Atomic] = ACTIONS(407), + [anon_sym__Noreturn] = ACTIONS(407), + [anon_sym__Nonnull] = ACTIONS(407), + [anon_sym_nullable] = ACTIONS(407), + [anon_sym__Complex] = ACTIONS(407), + [anon_sym__Nullable] = ACTIONS(407), + [anon_sym__Nullable_result] = ACTIONS(407), + [anon_sym__Null_unspecified] = ACTIONS(407), + [anon_sym___autoreleasing] = ACTIONS(407), + [anon_sym___block] = ACTIONS(407), + [anon_sym___bridge] = ACTIONS(407), + [anon_sym___bridge_retained] = ACTIONS(407), + [anon_sym___bridge_transfer] = ACTIONS(407), + [anon_sym___complex] = ACTIONS(407), + [anon_sym___const] = ACTIONS(407), + [anon_sym___imag] = ACTIONS(434), + [anon_sym___kindof] = ACTIONS(407), + [anon_sym___nonnull] = ACTIONS(407), + [anon_sym___nullable] = ACTIONS(407), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(407), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(407), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(407), + [anon_sym___real] = ACTIONS(434), + [anon_sym___strong] = ACTIONS(407), + [anon_sym___unsafe_unretained] = ACTIONS(407), + [anon_sym___unused] = ACTIONS(407), + [anon_sym___weak] = ACTIONS(407), + [anon_sym_alignas] = ACTIONS(437), + [anon_sym__Alignas] = ACTIONS(437), + [sym_primitive_type] = ACTIONS(440), + [anon_sym_enum] = ACTIONS(443), + [anon_sym_struct] = ACTIONS(446), + [anon_sym_union] = ACTIONS(449), + [anon_sym_if] = ACTIONS(663), + [anon_sym_switch] = ACTIONS(666), + [anon_sym_case] = ACTIONS(669), + [anon_sym_default] = ACTIONS(672), + [anon_sym_while] = ACTIONS(675), + [anon_sym_do] = ACTIONS(678), + [anon_sym_for] = ACTIONS(681), + [anon_sym_in] = ACTIONS(473), + [anon_sym_return] = ACTIONS(684), + [anon_sym_break] = ACTIONS(687), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_goto] = ACTIONS(693), + [anon_sym_DASH_DASH] = ACTIONS(488), + [anon_sym_PLUS_PLUS] = ACTIONS(488), + [anon_sym_sizeof] = ACTIONS(491), + [anon_sym___alignof__] = ACTIONS(494), + [anon_sym___alignof] = ACTIONS(494), + [anon_sym__alignof] = ACTIONS(494), + [anon_sym_alignof] = ACTIONS(494), + [anon_sym__Alignof] = ACTIONS(494), + [anon_sym_offsetof] = ACTIONS(497), + [anon_sym__Generic] = ACTIONS(500), + [anon_sym_asm] = ACTIONS(503), + [anon_sym___asm__] = ACTIONS(503), + [anon_sym___asm] = ACTIONS(696), + [sym_number_literal] = ACTIONS(509), + [anon_sym_L_SQUOTE] = ACTIONS(512), + [anon_sym_u_SQUOTE] = ACTIONS(512), + [anon_sym_U_SQUOTE] = ACTIONS(512), + [anon_sym_u8_SQUOTE] = ACTIONS(512), + [anon_sym_SQUOTE] = ACTIONS(512), + [anon_sym_AT] = ACTIONS(699), + [anon_sym_DQUOTE] = ACTIONS(518), + [anon_sym_L_DQUOTE] = ACTIONS(518), + [anon_sym_u_DQUOTE] = ACTIONS(518), + [anon_sym_U_DQUOTE] = ACTIONS(518), + [anon_sym_u8_DQUOTE] = ACTIONS(518), + [sym_true] = ACTIONS(521), + [sym_false] = ACTIONS(521), + [anon_sym_NULL] = ACTIONS(524), + [anon_sym_nullptr] = ACTIONS(524), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(527), + [anon_sym___typeof] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(527), + [anon_sym_ATimport] = ACTIONS(702), + [aux_sym_preproc_undef_token1] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(708), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(539), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(539), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(539), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(539), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(539), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(539), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(539), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(539), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(539), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(542), + [anon_sym_NS_AVAILABLE] = ACTIONS(542), + [anon_sym___IOS_AVAILABLE] = ACTIONS(542), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(542), + [anon_sym_API_AVAILABLE] = ACTIONS(542), + [anon_sym_API_UNAVAILABLE] = ACTIONS(542), + [anon_sym_API_DEPRECATED] = ACTIONS(542), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(542), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(542), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(542), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(542), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(542), + [anon_sym___deprecated_msg] = ACTIONS(542), + [anon_sym___deprecated_enum_msg] = ACTIONS(542), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(542), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(542), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(542), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(542), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(542), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(542), + [anon_sym_ATprotocol] = ACTIONS(711), + [anon_sym_ATinterface] = ACTIONS(548), + [anon_sym_ATimplementation] = ACTIONS(551), + [anon_sym_ATcompatibility_alias] = ACTIONS(714), + [anon_sym_ATsynthesize] = ACTIONS(717), + [anon_sym_ATdynamic] = ACTIONS(720), + [anon_sym_ATtry] = ACTIONS(723), + [anon_sym___try] = ACTIONS(726), + [anon_sym_ATthrow] = ACTIONS(729), + [anon_sym_ATselector] = ACTIONS(572), + [anon_sym_ATavailable] = ACTIONS(575), + [anon_sym___builtin_available] = ACTIONS(578), + [anon_sym_va_arg] = ACTIONS(581), + [anon_sym_ATencode] = ACTIONS(584), + [anon_sym_ATsynchronized] = ACTIONS(732), + [anon_sym_BOOL] = ACTIONS(590), + [anon_sym_IMP] = ACTIONS(590), + [anon_sym_SEL] = ACTIONS(590), + [anon_sym_Class] = ACTIONS(590), + [anon_sym_id] = ACTIONS(593), + }, + [38] = { + [sym__block_item] = STATE(39), + [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(688), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_modifiers] = STATE(2058), + [sym__declaration_specifiers] = STATE(4207), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(39), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2827), + [sym_ms_call_modifier] = STATE(2185), + [sym_compound_statement] = STATE(588), + [sym_storage_class_specifier] = STATE(2058), + [sym_type_qualifier] = STATE(2058), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2968), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(689), + [sym_statement] = STATE(39), + [sym_labeled_statement] = STATE(588), + [sym_expression_statement] = STATE(588), + [sym_if_statement] = STATE(588), + [sym_switch_statement] = STATE(588), + [sym_case_statement] = STATE(588), + [sym_while_statement] = STATE(588), + [sym_do_statement] = STATE(588), + [sym_for_statement] = STATE(588), + [sym_return_statement] = STATE(588), + [sym_break_statement] = STATE(588), + [sym_continue_statement] = STATE(588), + [sym_goto_statement] = STATE(588), + [sym_expression] = STATE(4448), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6083), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(39), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(39), + [sym_preproc_undef] = STATE(39), + [sym_preproc_linemarker] = STATE(39), + [sym_availability_attribute_specifier] = STATE(2058), + [sym_protocol_forward_declaration] = STATE(39), + [sym_class_declaration] = STATE(39), + [sym_class_interface] = STATE(39), + [sym__class_interface_header] = STATE(1178), + [sym_class_implementation] = STATE(39), + [sym__class_implementation_header] = STATE(1097), + [sym_protocol_declaration] = STATE(39), + [sym_compatibility_alias_declaration] = STATE(39), + [sym_property_implementation] = STATE(39), + [sym_try_statement] = STATE(588), + [sym_throw_statement] = STATE(588), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(588), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(588), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(2058), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2446), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(735), + [aux_sym_preproc_include_token1] = ACTIONS(737), + [aux_sym_preproc_include_token2] = ACTIONS(737), + [aux_sym_preproc_def_token1] = ACTIONS(739), + [aux_sym_preproc_if_token1] = ACTIONS(741), + [aux_sym_preproc_if_token2] = ACTIONS(743), + [aux_sym_preproc_ifdef_token1] = ACTIONS(745), + [aux_sym_preproc_ifdef_token2] = ACTIONS(745), + [sym_preproc_directive] = ACTIONS(747), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym___extension__] = ACTIONS(751), + [anon_sym_typedef] = ACTIONS(753), + [anon_sym_extern] = ACTIONS(755), + [anon_sym___attribute__] = ACTIONS(757), + [anon_sym___attribute] = ACTIONS(757), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(761), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(763), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_case] = ACTIONS(767), + [anon_sym_default] = ACTIONS(769), + [anon_sym_while] = ACTIONS(771), + [anon_sym_do] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(777), + [anon_sym_break] = ACTIONS(779), + [anon_sym_continue] = ACTIONS(781), + [anon_sym_goto] = ACTIONS(783), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(785), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(789), + [aux_sym_preproc_undef_token1] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(793), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(795), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(797), + [anon_sym_ATsynthesize] = ACTIONS(799), + [anon_sym_ATdynamic] = ACTIONS(801), + [anon_sym_ATtry] = ACTIONS(803), + [anon_sym___try] = ACTIONS(805), + [anon_sym_ATthrow] = ACTIONS(807), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(809), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [39] = { + [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(688), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(2058), + [sym__declaration_specifiers] = STATE(4207), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(40), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2827), + [sym_ms_call_modifier] = STATE(2185), + [sym_compound_statement] = STATE(588), + [sym_storage_class_specifier] = STATE(2058), + [sym_type_qualifier] = STATE(2058), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2968), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(689), + [sym_statement] = STATE(40), + [sym_labeled_statement] = STATE(588), + [sym_expression_statement] = STATE(588), + [sym_if_statement] = STATE(588), + [sym_switch_statement] = STATE(588), + [sym_case_statement] = STATE(588), + [sym_while_statement] = STATE(588), + [sym_do_statement] = STATE(588), + [sym_for_statement] = STATE(588), + [sym_return_statement] = STATE(588), + [sym_break_statement] = STATE(588), + [sym_continue_statement] = STATE(588), + [sym_goto_statement] = STATE(588), + [sym_expression] = STATE(4448), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6083), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(40), + [sym_preproc_undef] = STATE(40), + [sym_preproc_linemarker] = STATE(40), + [sym_availability_attribute_specifier] = STATE(2058), + [sym_protocol_forward_declaration] = STATE(40), + [sym_class_declaration] = STATE(40), + [sym_class_interface] = STATE(40), + [sym__class_interface_header] = STATE(1178), + [sym_class_implementation] = STATE(40), + [sym__class_implementation_header] = STATE(1097), + [sym_protocol_declaration] = STATE(40), + [sym_compatibility_alias_declaration] = STATE(40), + [sym_property_implementation] = STATE(40), + [sym_try_statement] = STATE(588), + [sym_throw_statement] = STATE(588), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(588), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(588), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(2058), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2446), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(735), + [aux_sym_preproc_include_token1] = ACTIONS(737), + [aux_sym_preproc_include_token2] = ACTIONS(737), + [aux_sym_preproc_def_token1] = ACTIONS(739), + [aux_sym_preproc_if_token1] = ACTIONS(741), + [aux_sym_preproc_if_token2] = ACTIONS(811), + [aux_sym_preproc_ifdef_token1] = ACTIONS(745), + [aux_sym_preproc_ifdef_token2] = ACTIONS(745), + [sym_preproc_directive] = ACTIONS(747), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym___extension__] = ACTIONS(751), + [anon_sym_typedef] = ACTIONS(753), + [anon_sym_extern] = ACTIONS(755), + [anon_sym___attribute__] = ACTIONS(757), + [anon_sym___attribute] = ACTIONS(757), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(761), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(763), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_case] = ACTIONS(767), + [anon_sym_default] = ACTIONS(769), + [anon_sym_while] = ACTIONS(771), + [anon_sym_do] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(777), + [anon_sym_break] = ACTIONS(779), + [anon_sym_continue] = ACTIONS(781), + [anon_sym_goto] = ACTIONS(783), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(785), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(789), + [aux_sym_preproc_undef_token1] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(793), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(795), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(797), + [anon_sym_ATsynthesize] = ACTIONS(799), + [anon_sym_ATdynamic] = ACTIONS(801), + [anon_sym_ATtry] = ACTIONS(803), + [anon_sym___try] = ACTIONS(805), + [anon_sym_ATthrow] = ACTIONS(807), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(809), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [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(688), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(2058), + [sym__declaration_specifiers] = STATE(4207), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(40), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2827), + [sym_ms_call_modifier] = STATE(2185), + [sym_compound_statement] = STATE(588), + [sym_storage_class_specifier] = STATE(2058), + [sym_type_qualifier] = STATE(2058), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2968), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(689), + [sym_statement] = STATE(40), + [sym_labeled_statement] = STATE(588), + [sym_expression_statement] = STATE(588), + [sym_if_statement] = STATE(588), + [sym_switch_statement] = STATE(588), + [sym_case_statement] = STATE(588), + [sym_while_statement] = STATE(588), + [sym_do_statement] = STATE(588), + [sym_for_statement] = STATE(588), + [sym_return_statement] = STATE(588), + [sym_break_statement] = STATE(588), + [sym_continue_statement] = STATE(588), + [sym_goto_statement] = STATE(588), + [sym_expression] = STATE(4448), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6083), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(40), + [sym_preproc_undef] = STATE(40), + [sym_preproc_linemarker] = STATE(40), + [sym_availability_attribute_specifier] = STATE(2058), + [sym_protocol_forward_declaration] = STATE(40), + [sym_class_declaration] = STATE(40), + [sym_class_interface] = STATE(40), + [sym__class_interface_header] = STATE(1178), + [sym_class_implementation] = STATE(40), + [sym__class_implementation_header] = STATE(1097), + [sym_protocol_declaration] = STATE(40), + [sym_compatibility_alias_declaration] = STATE(40), + [sym_property_implementation] = STATE(40), + [sym_try_statement] = STATE(588), + [sym_throw_statement] = STATE(588), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(588), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(588), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(2058), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2446), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(813), + [aux_sym_preproc_include_token1] = ACTIONS(816), + [aux_sym_preproc_include_token2] = ACTIONS(816), + [aux_sym_preproc_def_token1] = ACTIONS(819), + [aux_sym_preproc_if_token1] = ACTIONS(822), + [aux_sym_preproc_if_token2] = ACTIONS(369), + [aux_sym_preproc_ifdef_token1] = ACTIONS(825), + [aux_sym_preproc_ifdef_token2] = ACTIONS(825), + [sym_preproc_directive] = ACTIONS(828), + [anon_sym_LPAREN2] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(380), + [anon_sym_TILDE] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_PLUS] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(386), + [anon_sym_CARET] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_SEMI] = ACTIONS(831), + [anon_sym___extension__] = ACTIONS(834), + [anon_sym_typedef] = ACTIONS(837), + [anon_sym_extern] = ACTIONS(840), + [anon_sym___attribute__] = ACTIONS(843), + [anon_sym___attribute] = ACTIONS(843), + [anon_sym_noreturn] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(410), + [anon_sym___declspec] = ACTIONS(413), + [anon_sym___cdecl] = ACTIONS(416), + [anon_sym___clrcall] = ACTIONS(416), + [anon_sym___stdcall] = ACTIONS(416), + [anon_sym___fastcall] = ACTIONS(416), + [anon_sym___thiscall] = ACTIONS(416), + [anon_sym___vectorcall] = ACTIONS(416), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_signed] = ACTIONS(422), + [anon_sym_unsigned] = ACTIONS(422), + [anon_sym_long] = ACTIONS(422), + [anon_sym_short] = ACTIONS(422), + [anon_sym_static] = ACTIONS(425), + [anon_sym_ATautoreleasepool] = ACTIONS(849), + [anon_sym_auto] = ACTIONS(425), + [anon_sym_register] = ACTIONS(425), + [anon_sym_inline] = ACTIONS(425), + [anon_sym___inline] = ACTIONS(425), + [anon_sym___inline__] = ACTIONS(425), + [anon_sym___forceinline] = ACTIONS(425), + [anon_sym_thread_local] = ACTIONS(425), + [anon_sym___thread] = ACTIONS(425), + [anon_sym_CG_EXTERN] = ACTIONS(425), + [anon_sym_CG_INLINE] = ACTIONS(425), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(425), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(425), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(425), + [anon_sym_IBOutlet] = ACTIONS(425), + [anon_sym_IBInspectable] = ACTIONS(425), + [anon_sym_IB_DESIGNABLE] = ACTIONS(425), + [anon_sym_NS_INLINE] = ACTIONS(425), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(425), + [anon_sym_OBJC_EXPORT] = ACTIONS(425), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(425), + [anon_sym_UIKIT_EXTERN] = ACTIONS(425), + [anon_sym_const] = ACTIONS(431), + [anon_sym_constexpr] = ACTIONS(407), + [anon_sym_volatile] = ACTIONS(407), + [anon_sym_restrict] = ACTIONS(407), + [anon_sym___restrict__] = ACTIONS(407), + [anon_sym__Atomic] = ACTIONS(407), + [anon_sym__Noreturn] = ACTIONS(407), + [anon_sym__Nonnull] = ACTIONS(407), + [anon_sym_nullable] = ACTIONS(407), + [anon_sym__Complex] = ACTIONS(407), + [anon_sym__Nullable] = ACTIONS(407), + [anon_sym__Nullable_result] = ACTIONS(407), + [anon_sym__Null_unspecified] = ACTIONS(407), + [anon_sym___autoreleasing] = ACTIONS(407), + [anon_sym___block] = ACTIONS(407), + [anon_sym___bridge] = ACTIONS(407), + [anon_sym___bridge_retained] = ACTIONS(407), + [anon_sym___bridge_transfer] = ACTIONS(407), + [anon_sym___complex] = ACTIONS(407), + [anon_sym___const] = ACTIONS(407), + [anon_sym___imag] = ACTIONS(434), + [anon_sym___kindof] = ACTIONS(407), + [anon_sym___nonnull] = ACTIONS(407), + [anon_sym___nullable] = ACTIONS(407), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(407), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(407), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(407), + [anon_sym___real] = ACTIONS(434), + [anon_sym___strong] = ACTIONS(407), + [anon_sym___unsafe_unretained] = ACTIONS(407), + [anon_sym___unused] = ACTIONS(407), + [anon_sym___weak] = ACTIONS(407), + [anon_sym_alignas] = ACTIONS(437), + [anon_sym__Alignas] = ACTIONS(437), + [sym_primitive_type] = ACTIONS(440), + [anon_sym_enum] = ACTIONS(443), + [anon_sym_struct] = ACTIONS(446), + [anon_sym_union] = ACTIONS(449), + [anon_sym_if] = ACTIONS(852), + [anon_sym_switch] = ACTIONS(855), + [anon_sym_case] = ACTIONS(858), + [anon_sym_default] = ACTIONS(861), + [anon_sym_while] = ACTIONS(864), + [anon_sym_do] = ACTIONS(867), + [anon_sym_for] = ACTIONS(870), + [anon_sym_in] = ACTIONS(473), + [anon_sym_return] = ACTIONS(873), + [anon_sym_break] = ACTIONS(876), + [anon_sym_continue] = ACTIONS(879), + [anon_sym_goto] = ACTIONS(882), + [anon_sym_DASH_DASH] = ACTIONS(488), + [anon_sym_PLUS_PLUS] = ACTIONS(488), + [anon_sym_sizeof] = ACTIONS(491), + [anon_sym___alignof__] = ACTIONS(494), + [anon_sym___alignof] = ACTIONS(494), + [anon_sym__alignof] = ACTIONS(494), + [anon_sym_alignof] = ACTIONS(494), + [anon_sym__Alignof] = ACTIONS(494), + [anon_sym_offsetof] = ACTIONS(497), + [anon_sym__Generic] = ACTIONS(500), + [anon_sym_asm] = ACTIONS(503), + [anon_sym___asm__] = ACTIONS(503), + [anon_sym___asm] = ACTIONS(885), + [sym_number_literal] = ACTIONS(509), + [anon_sym_L_SQUOTE] = ACTIONS(512), + [anon_sym_u_SQUOTE] = ACTIONS(512), + [anon_sym_U_SQUOTE] = ACTIONS(512), + [anon_sym_u8_SQUOTE] = ACTIONS(512), + [anon_sym_SQUOTE] = ACTIONS(512), + [anon_sym_AT] = ACTIONS(888), + [anon_sym_DQUOTE] = ACTIONS(518), + [anon_sym_L_DQUOTE] = ACTIONS(518), + [anon_sym_u_DQUOTE] = ACTIONS(518), + [anon_sym_U_DQUOTE] = ACTIONS(518), + [anon_sym_u8_DQUOTE] = ACTIONS(518), + [sym_true] = ACTIONS(521), + [sym_false] = ACTIONS(521), + [anon_sym_NULL] = ACTIONS(524), + [anon_sym_nullptr] = ACTIONS(524), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(527), + [anon_sym___typeof] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(527), + [anon_sym_ATimport] = ACTIONS(891), + [aux_sym_preproc_undef_token1] = ACTIONS(894), + [anon_sym_POUND] = ACTIONS(897), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(539), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(539), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(539), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(539), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(539), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(539), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(539), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(539), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(539), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(542), + [anon_sym_NS_AVAILABLE] = ACTIONS(542), + [anon_sym___IOS_AVAILABLE] = ACTIONS(542), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(542), + [anon_sym_API_AVAILABLE] = ACTIONS(542), + [anon_sym_API_UNAVAILABLE] = ACTIONS(542), + [anon_sym_API_DEPRECATED] = ACTIONS(542), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(542), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(542), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(542), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(542), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(542), + [anon_sym___deprecated_msg] = ACTIONS(542), + [anon_sym___deprecated_enum_msg] = ACTIONS(542), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(542), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(542), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(542), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(542), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(542), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(542), + [anon_sym_ATprotocol] = ACTIONS(900), + [anon_sym_ATinterface] = ACTIONS(548), + [anon_sym_ATimplementation] = ACTIONS(551), + [anon_sym_ATcompatibility_alias] = ACTIONS(903), + [anon_sym_ATsynthesize] = ACTIONS(906), + [anon_sym_ATdynamic] = ACTIONS(909), + [anon_sym_ATtry] = ACTIONS(912), + [anon_sym___try] = ACTIONS(915), + [anon_sym_ATthrow] = ACTIONS(918), + [anon_sym_ATselector] = ACTIONS(572), + [anon_sym_ATavailable] = ACTIONS(575), + [anon_sym___builtin_available] = ACTIONS(578), + [anon_sym_va_arg] = ACTIONS(581), + [anon_sym_ATencode] = ACTIONS(584), + [anon_sym_ATsynchronized] = ACTIONS(921), + [anon_sym_BOOL] = ACTIONS(590), + [anon_sym_IMP] = ACTIONS(590), + [anon_sym_SEL] = ACTIONS(590), + [anon_sym_Class] = ACTIONS(590), + [anon_sym_id] = ACTIONS(593), + }, + [41] = { + [sym__block_item] = STATE(117), + [sym_preproc_include] = STATE(117), + [sym_preproc_def] = STATE(117), + [sym_preproc_function_def] = STATE(117), + [sym_preproc_call] = STATE(117), + [sym_preproc_if] = STATE(117), + [sym_preproc_ifdef] = STATE(117), + [sym_function_definition] = STATE(117), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(117), + [sym_type_definition] = STATE(117), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(117), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(117), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(117), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(117), + [sym_preproc_undef] = STATE(117), + [sym_preproc_linemarker] = STATE(117), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(117), + [sym_class_declaration] = STATE(117), + [sym_class_interface] = STATE(117), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(117), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(117), + [sym_compatibility_alias_declaration] = STATE(117), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(117), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(946), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [42] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [43] = { + [sym__block_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(869), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(44), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(44), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(44), + [sym_preproc_undef] = STATE(44), + [sym_preproc_linemarker] = STATE(44), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(44), + [sym_class_declaration] = STATE(44), + [sym_class_interface] = STATE(44), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(44), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(44), + [sym_compatibility_alias_declaration] = STATE(44), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(44), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [44] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [45] = { + [sym__block_item] = STATE(47), + [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(869), + [sym_declaration] = STATE(47), + [sym_type_definition] = STATE(47), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(47), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(47), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(47), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(47), + [sym_preproc_undef] = STATE(47), + [sym_preproc_linemarker] = STATE(47), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(47), + [sym_class_declaration] = STATE(47), + [sym_class_interface] = STATE(47), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(47), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(47), + [sym_compatibility_alias_declaration] = STATE(47), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(47), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [46] = { + [sym__block_item] = STATE(48), + [sym_preproc_include] = STATE(48), + [sym_preproc_def] = STATE(48), + [sym_preproc_function_def] = STATE(48), + [sym_preproc_call] = STATE(48), + [sym_preproc_if] = STATE(48), + [sym_preproc_ifdef] = STATE(48), + [sym_function_definition] = STATE(48), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(48), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(48), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(48), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(48), + [sym_preproc_undef] = STATE(48), + [sym_preproc_linemarker] = STATE(48), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(48), + [sym_class_declaration] = STATE(48), + [sym_class_interface] = STATE(48), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(48), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(48), + [sym_compatibility_alias_declaration] = STATE(48), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(48), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [47] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [48] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [49] = { + [sym__block_item] = STATE(51), + [sym_preproc_include] = STATE(51), + [sym_preproc_def] = STATE(51), + [sym_preproc_function_def] = STATE(51), + [sym_preproc_call] = STATE(51), + [sym_preproc_if] = STATE(51), + [sym_preproc_ifdef] = STATE(51), + [sym_function_definition] = STATE(51), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(51), + [sym_type_definition] = STATE(51), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(51), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(51), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(51), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(51), + [sym_preproc_undef] = STATE(51), + [sym_preproc_linemarker] = STATE(51), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(51), + [sym_class_declaration] = STATE(51), + [sym_class_interface] = STATE(51), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(51), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(51), + [sym_compatibility_alias_declaration] = STATE(51), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(51), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [50] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [51] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [52] = { + [sym__block_item] = STATE(55), + [sym_preproc_include] = STATE(55), + [sym_preproc_def] = STATE(55), + [sym_preproc_function_def] = STATE(55), + [sym_preproc_call] = STATE(55), + [sym_preproc_if] = STATE(55), + [sym_preproc_ifdef] = STATE(55), + [sym_function_definition] = STATE(55), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(55), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(55), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(55), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(55), + [sym_preproc_undef] = STATE(55), + [sym_preproc_linemarker] = STATE(55), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(55), + [sym_class_declaration] = STATE(55), + [sym_class_interface] = STATE(55), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(55), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(55), + [sym_compatibility_alias_declaration] = STATE(55), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(55), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [53] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1012), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [54] = { + [sym__block_item] = STATE(56), + [sym_preproc_include] = STATE(56), + [sym_preproc_def] = STATE(56), + [sym_preproc_function_def] = STATE(56), + [sym_preproc_call] = STATE(56), + [sym_preproc_if] = STATE(56), + [sym_preproc_ifdef] = STATE(56), + [sym_function_definition] = STATE(56), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(56), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(56), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(56), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(56), + [sym_preproc_undef] = STATE(56), + [sym_preproc_linemarker] = STATE(56), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(56), + [sym_class_declaration] = STATE(56), + [sym_class_interface] = STATE(56), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(56), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(56), + [sym_compatibility_alias_declaration] = STATE(56), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(56), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [55] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1016), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [56] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1018), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [57] = { + [sym__block_item] = STATE(58), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(58), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(58), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(58), + [sym_preproc_undef] = STATE(58), + [sym_preproc_linemarker] = STATE(58), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(58), + [sym_class_declaration] = STATE(58), + [sym_class_interface] = STATE(58), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(58), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(58), + [sym_compatibility_alias_declaration] = STATE(58), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(58), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [58] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [59] = { + [sym__block_item] = STATE(62), + [sym_preproc_include] = STATE(62), + [sym_preproc_def] = STATE(62), + [sym_preproc_function_def] = STATE(62), + [sym_preproc_call] = STATE(62), + [sym_preproc_if] = STATE(62), + [sym_preproc_ifdef] = STATE(62), + [sym_function_definition] = STATE(62), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(62), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(62), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(62), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(62), + [sym_preproc_undef] = STATE(62), + [sym_preproc_linemarker] = STATE(62), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(62), + [sym_class_declaration] = STATE(62), + [sym_class_interface] = STATE(62), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(62), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(62), + [sym_compatibility_alias_declaration] = STATE(62), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(62), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [60] = { + [sym__block_item] = STATE(82), + [sym_preproc_include] = STATE(82), + [sym_preproc_def] = STATE(82), + [sym_preproc_function_def] = STATE(82), + [sym_preproc_call] = STATE(82), + [sym_preproc_if] = STATE(82), + [sym_preproc_ifdef] = STATE(82), + [sym_function_definition] = STATE(82), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(82), + [sym_type_definition] = STATE(82), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(82), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(82), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(82), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(82), + [sym_preproc_undef] = STATE(82), + [sym_preproc_linemarker] = STATE(82), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(82), + [sym_class_declaration] = STATE(82), + [sym_class_interface] = STATE(82), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(82), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(82), + [sym_compatibility_alias_declaration] = STATE(82), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(82), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [61] = { + [sym__block_item] = STATE(64), + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(64), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(64), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(64), + [sym_preproc_undef] = STATE(64), + [sym_preproc_linemarker] = STATE(64), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(64), + [sym_class_declaration] = STATE(64), + [sym_class_interface] = STATE(64), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(64), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(64), + [sym_compatibility_alias_declaration] = STATE(64), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(64), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [62] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1026), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [63] = { + [sym__block_item] = STATE(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(869), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(53), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(53), + [sym_preproc_undef] = STATE(53), + [sym_preproc_linemarker] = STATE(53), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(53), + [sym_class_declaration] = STATE(53), + [sym_class_interface] = STATE(53), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(53), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(53), + [sym_compatibility_alias_declaration] = STATE(53), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(53), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [64] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [65] = { + [sym__block_item] = STATE(66), + [sym_preproc_include] = STATE(66), + [sym_preproc_def] = STATE(66), + [sym_preproc_function_def] = STATE(66), + [sym_preproc_call] = STATE(66), + [sym_preproc_if] = STATE(66), + [sym_preproc_ifdef] = STATE(66), + [sym_function_definition] = STATE(66), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(66), + [sym_type_definition] = STATE(66), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(66), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(66), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(66), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(66), + [sym_preproc_undef] = STATE(66), + [sym_preproc_linemarker] = STATE(66), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(66), + [sym_class_declaration] = STATE(66), + [sym_class_interface] = STATE(66), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(66), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(66), + [sym_compatibility_alias_declaration] = STATE(66), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(66), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1032), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [66] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [67] = { + [sym__block_item] = STATE(69), + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(69), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(69), + [sym_preproc_undef] = STATE(69), + [sym_preproc_linemarker] = STATE(69), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(69), + [sym_class_declaration] = STATE(69), + [sym_class_interface] = STATE(69), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(69), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(69), + [sym_compatibility_alias_declaration] = STATE(69), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [68] = { + [sym__block_item] = STATE(70), + [sym_preproc_include] = STATE(70), + [sym_preproc_def] = STATE(70), + [sym_preproc_function_def] = STATE(70), + [sym_preproc_call] = STATE(70), + [sym_preproc_if] = STATE(70), + [sym_preproc_ifdef] = STATE(70), + [sym_function_definition] = STATE(70), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(70), + [sym_type_definition] = STATE(70), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(70), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(70), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(70), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(70), + [sym_preproc_undef] = STATE(70), + [sym_preproc_linemarker] = STATE(70), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(70), + [sym_class_declaration] = STATE(70), + [sym_class_interface] = STATE(70), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(70), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(70), + [sym_compatibility_alias_declaration] = STATE(70), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(70), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [69] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [70] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [71] = { + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_preproc_if] = STATE(72), + [sym_preproc_ifdef] = STATE(72), + [sym_function_definition] = STATE(72), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(72), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(72), + [sym_preproc_undef] = STATE(72), + [sym_preproc_linemarker] = STATE(72), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(72), + [sym_class_declaration] = STATE(72), + [sym_class_interface] = STATE(72), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(72), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(72), + [sym_compatibility_alias_declaration] = STATE(72), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [72] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [73] = { + [sym__block_item] = STATE(74), + [sym_preproc_include] = STATE(74), + [sym_preproc_def] = STATE(74), + [sym_preproc_function_def] = STATE(74), + [sym_preproc_call] = STATE(74), + [sym_preproc_if] = STATE(74), + [sym_preproc_ifdef] = STATE(74), + [sym_function_definition] = STATE(74), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(74), + [sym_type_definition] = STATE(74), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(74), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(74), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(74), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(74), + [sym_preproc_undef] = STATE(74), + [sym_preproc_linemarker] = STATE(74), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(74), + [sym_class_declaration] = STATE(74), + [sym_class_interface] = STATE(74), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(74), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(74), + [sym_compatibility_alias_declaration] = STATE(74), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(74), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [74] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [75] = { + [sym__block_item] = STATE(76), + [sym_preproc_include] = STATE(76), + [sym_preproc_def] = STATE(76), + [sym_preproc_function_def] = STATE(76), + [sym_preproc_call] = STATE(76), + [sym_preproc_if] = STATE(76), + [sym_preproc_ifdef] = STATE(76), + [sym_function_definition] = STATE(76), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(76), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(76), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(76), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(76), + [sym_preproc_undef] = STATE(76), + [sym_preproc_linemarker] = STATE(76), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(76), + [sym_class_declaration] = STATE(76), + [sym_class_interface] = STATE(76), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(76), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(76), + [sym_compatibility_alias_declaration] = STATE(76), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(76), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1048), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [76] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [77] = { + [sym__block_item] = STATE(78), + [sym_preproc_include] = STATE(78), + [sym_preproc_def] = STATE(78), + [sym_preproc_function_def] = STATE(78), + [sym_preproc_call] = STATE(78), + [sym_preproc_if] = STATE(78), + [sym_preproc_ifdef] = STATE(78), + [sym_function_definition] = STATE(78), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(78), + [sym_type_definition] = STATE(78), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(78), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(78), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(78), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(78), + [sym_preproc_undef] = STATE(78), + [sym_preproc_linemarker] = STATE(78), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(78), + [sym_class_declaration] = STATE(78), + [sym_class_interface] = STATE(78), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(78), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(78), + [sym_compatibility_alias_declaration] = STATE(78), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(78), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [78] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1052), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [79] = { + [sym__block_item] = STATE(80), + [sym_preproc_include] = STATE(80), + [sym_preproc_def] = STATE(80), + [sym_preproc_function_def] = STATE(80), + [sym_preproc_call] = STATE(80), + [sym_preproc_if] = STATE(80), + [sym_preproc_ifdef] = STATE(80), + [sym_function_definition] = STATE(80), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(80), + [sym_type_definition] = STATE(80), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(80), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(80), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(80), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(80), + [sym_preproc_undef] = STATE(80), + [sym_preproc_linemarker] = STATE(80), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(80), + [sym_class_declaration] = STATE(80), + [sym_class_interface] = STATE(80), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(80), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(80), + [sym_compatibility_alias_declaration] = STATE(80), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(80), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [80] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [81] = { + [sym__block_item] = STATE(83), + [sym_preproc_include] = STATE(83), + [sym_preproc_def] = STATE(83), + [sym_preproc_function_def] = STATE(83), + [sym_preproc_call] = STATE(83), + [sym_preproc_if] = STATE(83), + [sym_preproc_ifdef] = STATE(83), + [sym_function_definition] = STATE(83), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(83), + [sym_type_definition] = STATE(83), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(83), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(83), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(83), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(83), + [sym_preproc_undef] = STATE(83), + [sym_preproc_linemarker] = STATE(83), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(83), + [sym_class_declaration] = STATE(83), + [sym_class_interface] = STATE(83), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(83), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(83), + [sym_compatibility_alias_declaration] = STATE(83), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(83), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [82] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [83] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [84] = { + [sym__block_item] = STATE(85), + [sym_preproc_include] = STATE(85), + [sym_preproc_def] = STATE(85), + [sym_preproc_function_def] = STATE(85), + [sym_preproc_call] = STATE(85), + [sym_preproc_if] = STATE(85), + [sym_preproc_ifdef] = STATE(85), + [sym_function_definition] = STATE(85), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(85), + [sym_type_definition] = STATE(85), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(85), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(85), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(85), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(85), + [sym_preproc_undef] = STATE(85), + [sym_preproc_linemarker] = STATE(85), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(85), + [sym_class_declaration] = STATE(85), + [sym_class_interface] = STATE(85), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(85), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(85), + [sym_compatibility_alias_declaration] = STATE(85), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(85), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1062), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [85] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [86] = { + [sym__block_item] = STATE(87), + [sym_preproc_include] = STATE(87), + [sym_preproc_def] = STATE(87), + [sym_preproc_function_def] = STATE(87), + [sym_preproc_call] = STATE(87), + [sym_preproc_if] = STATE(87), + [sym_preproc_ifdef] = STATE(87), + [sym_function_definition] = STATE(87), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(87), + [sym_type_definition] = STATE(87), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(87), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(87), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(87), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(87), + [sym_preproc_undef] = STATE(87), + [sym_preproc_linemarker] = STATE(87), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(87), + [sym_class_declaration] = STATE(87), + [sym_class_interface] = STATE(87), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(87), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(87), + [sym_compatibility_alias_declaration] = STATE(87), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(87), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [87] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1066), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [88] = { + [sym__block_item] = STATE(89), + [sym_preproc_include] = STATE(89), + [sym_preproc_def] = STATE(89), + [sym_preproc_function_def] = STATE(89), + [sym_preproc_call] = STATE(89), + [sym_preproc_if] = STATE(89), + [sym_preproc_ifdef] = STATE(89), + [sym_function_definition] = STATE(89), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(89), + [sym_type_definition] = STATE(89), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(89), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(89), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(89), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(89), + [sym_preproc_undef] = STATE(89), + [sym_preproc_linemarker] = STATE(89), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(89), + [sym_class_declaration] = STATE(89), + [sym_class_interface] = STATE(89), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(89), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(89), + [sym_compatibility_alias_declaration] = STATE(89), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(89), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [89] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [90] = { + [sym__block_item] = STATE(91), + [sym_preproc_include] = STATE(91), + [sym_preproc_def] = STATE(91), + [sym_preproc_function_def] = STATE(91), + [sym_preproc_call] = STATE(91), + [sym_preproc_if] = STATE(91), + [sym_preproc_ifdef] = STATE(91), + [sym_function_definition] = STATE(91), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(91), + [sym_type_definition] = STATE(91), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(91), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(91), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(91), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(91), + [sym_preproc_undef] = STATE(91), + [sym_preproc_linemarker] = STATE(91), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(91), + [sym_class_declaration] = STATE(91), + [sym_class_interface] = STATE(91), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(91), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(91), + [sym_compatibility_alias_declaration] = STATE(91), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(91), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [91] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1072), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [92] = { + [sym__block_item] = STATE(93), + [sym_preproc_include] = STATE(93), + [sym_preproc_def] = STATE(93), + [sym_preproc_function_def] = STATE(93), + [sym_preproc_call] = STATE(93), + [sym_preproc_if] = STATE(93), + [sym_preproc_ifdef] = STATE(93), + [sym_function_definition] = STATE(93), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(93), + [sym_type_definition] = STATE(93), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(93), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(93), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(93), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(93), + [sym_preproc_undef] = STATE(93), + [sym_preproc_linemarker] = STATE(93), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(93), + [sym_class_declaration] = STATE(93), + [sym_class_interface] = STATE(93), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(93), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(93), + [sym_compatibility_alias_declaration] = STATE(93), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(93), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1074), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [93] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [94] = { + [sym__block_item] = STATE(95), + [sym_preproc_include] = STATE(95), + [sym_preproc_def] = STATE(95), + [sym_preproc_function_def] = STATE(95), + [sym_preproc_call] = STATE(95), + [sym_preproc_if] = STATE(95), + [sym_preproc_ifdef] = STATE(95), + [sym_function_definition] = STATE(95), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(95), + [sym_type_definition] = STATE(95), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(95), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(95), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(95), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(95), + [sym_preproc_undef] = STATE(95), + [sym_preproc_linemarker] = STATE(95), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(95), + [sym_class_declaration] = STATE(95), + [sym_class_interface] = STATE(95), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(95), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(95), + [sym_compatibility_alias_declaration] = STATE(95), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(95), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [95] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [96] = { + [sym__block_item] = STATE(97), + [sym_preproc_include] = STATE(97), + [sym_preproc_def] = STATE(97), + [sym_preproc_function_def] = STATE(97), + [sym_preproc_call] = STATE(97), + [sym_preproc_if] = STATE(97), + [sym_preproc_ifdef] = STATE(97), + [sym_function_definition] = STATE(97), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(97), + [sym_type_definition] = STATE(97), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(97), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(97), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(97), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(97), + [sym_preproc_undef] = STATE(97), + [sym_preproc_linemarker] = STATE(97), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(97), + [sym_class_declaration] = STATE(97), + [sym_class_interface] = STATE(97), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(97), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(97), + [sym_compatibility_alias_declaration] = STATE(97), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(97), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1080), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [97] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [98] = { + [sym__block_item] = STATE(99), + [sym_preproc_include] = STATE(99), + [sym_preproc_def] = STATE(99), + [sym_preproc_function_def] = STATE(99), + [sym_preproc_call] = STATE(99), + [sym_preproc_if] = STATE(99), + [sym_preproc_ifdef] = STATE(99), + [sym_function_definition] = STATE(99), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(99), + [sym_type_definition] = STATE(99), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(99), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(99), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(99), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(99), + [sym_preproc_undef] = STATE(99), + [sym_preproc_linemarker] = STATE(99), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(99), + [sym_class_declaration] = STATE(99), + [sym_class_interface] = STATE(99), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(99), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(99), + [sym_compatibility_alias_declaration] = STATE(99), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(99), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [99] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1084), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [100] = { + [sym__block_item] = STATE(101), + [sym_preproc_include] = STATE(101), + [sym_preproc_def] = STATE(101), + [sym_preproc_function_def] = STATE(101), + [sym_preproc_call] = STATE(101), + [sym_preproc_if] = STATE(101), + [sym_preproc_ifdef] = STATE(101), + [sym_function_definition] = STATE(101), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(101), + [sym_type_definition] = STATE(101), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(101), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(101), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(101), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(101), + [sym_preproc_undef] = STATE(101), + [sym_preproc_linemarker] = STATE(101), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(101), + [sym_class_declaration] = STATE(101), + [sym_class_interface] = STATE(101), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(101), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(101), + [sym_compatibility_alias_declaration] = STATE(101), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(101), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [101] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1088), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [102] = { + [sym__block_item] = STATE(103), + [sym_preproc_include] = STATE(103), + [sym_preproc_def] = STATE(103), + [sym_preproc_function_def] = STATE(103), + [sym_preproc_call] = STATE(103), + [sym_preproc_if] = STATE(103), + [sym_preproc_ifdef] = STATE(103), + [sym_function_definition] = STATE(103), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(103), + [sym_type_definition] = STATE(103), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(103), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(103), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(103), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(103), + [sym_preproc_undef] = STATE(103), + [sym_preproc_linemarker] = STATE(103), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(103), + [sym_class_declaration] = STATE(103), + [sym_class_interface] = STATE(103), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(103), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(103), + [sym_compatibility_alias_declaration] = STATE(103), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(103), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1088), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [103] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1090), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [104] = { + [sym__block_item] = STATE(105), + [sym_preproc_include] = STATE(105), + [sym_preproc_def] = STATE(105), + [sym_preproc_function_def] = STATE(105), + [sym_preproc_call] = STATE(105), + [sym_preproc_if] = STATE(105), + [sym_preproc_ifdef] = STATE(105), + [sym_function_definition] = STATE(105), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(105), + [sym_type_definition] = STATE(105), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(105), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(105), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(105), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(105), + [sym_preproc_undef] = STATE(105), + [sym_preproc_linemarker] = STATE(105), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(105), + [sym_class_declaration] = STATE(105), + [sym_class_interface] = STATE(105), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(105), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(105), + [sym_compatibility_alias_declaration] = STATE(105), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(105), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1092), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [105] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [106] = { + [sym__block_item] = STATE(107), + [sym_preproc_include] = STATE(107), + [sym_preproc_def] = STATE(107), + [sym_preproc_function_def] = STATE(107), + [sym_preproc_call] = STATE(107), + [sym_preproc_if] = STATE(107), + [sym_preproc_ifdef] = STATE(107), + [sym_function_definition] = STATE(107), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(107), + [sym_type_definition] = STATE(107), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(107), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(107), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(107), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(107), + [sym_preproc_undef] = STATE(107), + [sym_preproc_linemarker] = STATE(107), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(107), + [sym_class_declaration] = STATE(107), + [sym_class_interface] = STATE(107), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(107), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(107), + [sym_compatibility_alias_declaration] = STATE(107), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(107), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [107] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1096), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [108] = { + [sym__block_item] = STATE(109), + [sym_preproc_include] = STATE(109), + [sym_preproc_def] = STATE(109), + [sym_preproc_function_def] = STATE(109), + [sym_preproc_call] = STATE(109), + [sym_preproc_if] = STATE(109), + [sym_preproc_ifdef] = STATE(109), + [sym_function_definition] = STATE(109), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(109), + [sym_type_definition] = STATE(109), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(109), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(109), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(109), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(109), + [sym_preproc_undef] = STATE(109), + [sym_preproc_linemarker] = STATE(109), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(109), + [sym_class_declaration] = STATE(109), + [sym_class_interface] = STATE(109), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(109), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(109), + [sym_compatibility_alias_declaration] = STATE(109), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(109), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1098), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [109] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1100), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [110] = { + [sym__block_item] = STATE(111), + [sym_preproc_include] = STATE(111), + [sym_preproc_def] = STATE(111), + [sym_preproc_function_def] = STATE(111), + [sym_preproc_call] = STATE(111), + [sym_preproc_if] = STATE(111), + [sym_preproc_ifdef] = STATE(111), + [sym_function_definition] = STATE(111), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(111), + [sym_type_definition] = STATE(111), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(111), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(111), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(111), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(111), + [sym_preproc_undef] = STATE(111), + [sym_preproc_linemarker] = STATE(111), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(111), + [sym_class_declaration] = STATE(111), + [sym_class_interface] = STATE(111), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(111), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(111), + [sym_compatibility_alias_declaration] = STATE(111), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(111), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1100), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [111] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1102), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [112] = { + [sym__block_item] = STATE(113), + [sym_preproc_include] = STATE(113), + [sym_preproc_def] = STATE(113), + [sym_preproc_function_def] = STATE(113), + [sym_preproc_call] = STATE(113), + [sym_preproc_if] = STATE(113), + [sym_preproc_ifdef] = STATE(113), + [sym_function_definition] = STATE(113), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(113), + [sym_type_definition] = STATE(113), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(113), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(113), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(113), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(113), + [sym_preproc_undef] = STATE(113), + [sym_preproc_linemarker] = STATE(113), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(113), + [sym_class_declaration] = STATE(113), + [sym_class_interface] = STATE(113), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(113), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(113), + [sym_compatibility_alias_declaration] = STATE(113), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(113), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1104), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [113] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1106), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [114] = { + [sym__block_item] = STATE(115), + [sym_preproc_include] = STATE(115), + [sym_preproc_def] = STATE(115), + [sym_preproc_function_def] = STATE(115), + [sym_preproc_call] = STATE(115), + [sym_preproc_if] = STATE(115), + [sym_preproc_ifdef] = STATE(115), + [sym_function_definition] = STATE(115), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(115), + [sym_type_definition] = STATE(115), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(115), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(115), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(115), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(115), + [sym_preproc_undef] = STATE(115), + [sym_preproc_linemarker] = STATE(115), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(115), + [sym_class_declaration] = STATE(115), + [sym_class_interface] = STATE(115), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(115), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(115), + [sym_compatibility_alias_declaration] = STATE(115), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(115), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1106), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [115] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1108), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [116] = { + [sym__block_item] = STATE(50), + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(50), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(50), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(50), + [sym_preproc_undef] = STATE(50), + [sym_preproc_linemarker] = STATE(50), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(50), + [sym_class_declaration] = STATE(50), + [sym_class_interface] = STATE(50), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(50), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(50), + [sym_compatibility_alias_declaration] = STATE(50), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(50), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [117] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1112), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [118] = { + [sym__block_item] = STATE(119), + [sym_preproc_include] = STATE(119), + [sym_preproc_def] = STATE(119), + [sym_preproc_function_def] = STATE(119), + [sym_preproc_call] = STATE(119), + [sym_preproc_if] = STATE(119), + [sym_preproc_ifdef] = STATE(119), + [sym_function_definition] = STATE(119), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(119), + [sym_type_definition] = STATE(119), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(119), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(119), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(119), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(119), + [sym_preproc_undef] = STATE(119), + [sym_preproc_linemarker] = STATE(119), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(119), + [sym_class_declaration] = STATE(119), + [sym_class_interface] = STATE(119), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(119), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(119), + [sym_compatibility_alias_declaration] = STATE(119), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(119), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1112), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [119] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1114), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [120] = { + [sym__block_item] = STATE(121), + [sym_preproc_include] = STATE(121), + [sym_preproc_def] = STATE(121), + [sym_preproc_function_def] = STATE(121), + [sym_preproc_call] = STATE(121), + [sym_preproc_if] = STATE(121), + [sym_preproc_ifdef] = STATE(121), + [sym_function_definition] = STATE(121), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(121), + [sym_type_definition] = STATE(121), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(121), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(121), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(121), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(121), + [sym_preproc_undef] = STATE(121), + [sym_preproc_linemarker] = STATE(121), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(121), + [sym_class_declaration] = STATE(121), + [sym_class_interface] = STATE(121), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(121), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(121), + [sym_compatibility_alias_declaration] = STATE(121), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(121), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1116), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [121] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1118), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [122] = { + [sym__block_item] = STATE(123), + [sym_preproc_include] = STATE(123), + [sym_preproc_def] = STATE(123), + [sym_preproc_function_def] = STATE(123), + [sym_preproc_call] = STATE(123), + [sym_preproc_if] = STATE(123), + [sym_preproc_ifdef] = STATE(123), + [sym_function_definition] = STATE(123), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(123), + [sym_type_definition] = STATE(123), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(123), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(123), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(123), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(123), + [sym_preproc_undef] = STATE(123), + [sym_preproc_linemarker] = STATE(123), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(123), + [sym_class_declaration] = STATE(123), + [sym_class_interface] = STATE(123), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(123), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(123), + [sym_compatibility_alias_declaration] = STATE(123), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(123), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1118), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [123] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1120), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [124] = { + [sym__block_item] = STATE(125), + [sym_preproc_include] = STATE(125), + [sym_preproc_def] = STATE(125), + [sym_preproc_function_def] = STATE(125), + [sym_preproc_call] = STATE(125), + [sym_preproc_if] = STATE(125), + [sym_preproc_ifdef] = STATE(125), + [sym_function_definition] = STATE(125), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(125), + [sym_type_definition] = STATE(125), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(125), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(125), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(125), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(125), + [sym_preproc_undef] = STATE(125), + [sym_preproc_linemarker] = STATE(125), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(125), + [sym_class_declaration] = STATE(125), + [sym_class_interface] = STATE(125), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(125), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(125), + [sym_compatibility_alias_declaration] = STATE(125), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(125), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1122), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [125] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1124), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [126] = { + [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(869), + [sym_declaration] = STATE(42), + [sym_type_definition] = STATE(42), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(42), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(42), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(42), + [sym_preproc_undef] = STATE(42), + [sym_preproc_linemarker] = STATE(42), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(42), + [sym_class_declaration] = STATE(42), + [sym_class_interface] = STATE(42), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(42), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(42), + [sym_compatibility_alias_declaration] = STATE(42), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(42), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_include_token2] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(934), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1124), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(976), + [aux_sym_preproc_undef_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(984), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [127] = { + [sym__block_item] = STATE(127), + [sym_preproc_include] = STATE(127), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if] = STATE(127), + [sym_preproc_ifdef] = STATE(127), + [sym_function_definition] = STATE(127), + [sym__old_style_function_definition] = STATE(869), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2036), + [sym__declaration_specifiers] = STATE(4203), + [sym_linkage_specification] = STATE(127), + [sym_attribute_specifier] = STATE(2036), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_ms_call_modifier] = STATE(2161), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2036), + [sym_type_qualifier] = STATE(2036), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2974), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(886), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym__empty_declaration] = STATE(127), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(127), + [sym_preproc_undef] = STATE(127), + [sym_preproc_linemarker] = STATE(127), + [sym_availability_attribute_specifier] = STATE(2036), + [sym_protocol_forward_declaration] = STATE(127), + [sym_class_declaration] = STATE(127), + [sym_class_interface] = STATE(127), + [sym__class_interface_header] = STATE(1186), + [sym_class_implementation] = STATE(127), + [sym__class_implementation_header] = STATE(1095), + [sym_protocol_declaration] = STATE(127), + [sym_compatibility_alias_declaration] = STATE(127), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_declaration_list_repeat1] = STATE(127), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(1126), + [aux_sym_preproc_include_token1] = ACTIONS(1129), + [aux_sym_preproc_include_token2] = ACTIONS(1129), + [aux_sym_preproc_def_token1] = ACTIONS(1132), + [aux_sym_preproc_if_token1] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), + [sym_preproc_directive] = ACTIONS(1141), + [anon_sym_LPAREN2] = ACTIONS(1144), + [anon_sym_BANG] = ACTIONS(1147), + [anon_sym_TILDE] = ACTIONS(1147), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1150), + [anon_sym_STAR] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym___extension__] = ACTIONS(1162), + [anon_sym_typedef] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1168), + [anon_sym___attribute__] = ACTIONS(1171), + [anon_sym___attribute] = ACTIONS(1171), + [anon_sym_noreturn] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1177), + [anon_sym___declspec] = ACTIONS(1180), + [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(1186), + [anon_sym_RBRACE] = ACTIONS(1189), + [anon_sym_signed] = ACTIONS(1191), + [anon_sym_unsigned] = ACTIONS(1191), + [anon_sym_long] = ACTIONS(1191), + [anon_sym_short] = ACTIONS(1191), + [anon_sym_static] = ACTIONS(1194), + [anon_sym_ATautoreleasepool] = ACTIONS(1197), + [anon_sym_auto] = ACTIONS(1194), + [anon_sym_register] = ACTIONS(1194), + [anon_sym_inline] = ACTIONS(1194), + [anon_sym___inline] = ACTIONS(1194), + [anon_sym___inline__] = ACTIONS(1194), + [anon_sym___forceinline] = ACTIONS(1194), + [anon_sym_thread_local] = ACTIONS(1194), + [anon_sym___thread] = ACTIONS(1194), + [anon_sym_CG_EXTERN] = ACTIONS(1194), + [anon_sym_CG_INLINE] = ACTIONS(1194), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(1194), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(1194), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(1194), + [anon_sym_IBOutlet] = ACTIONS(1194), + [anon_sym_IBInspectable] = ACTIONS(1194), + [anon_sym_IB_DESIGNABLE] = ACTIONS(1194), + [anon_sym_NS_INLINE] = ACTIONS(1194), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1194), + [anon_sym_OBJC_EXPORT] = ACTIONS(1194), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(1194), + [anon_sym_UIKIT_EXTERN] = ACTIONS(1194), + [anon_sym_const] = ACTIONS(1200), + [anon_sym_constexpr] = ACTIONS(1174), + [anon_sym_volatile] = ACTIONS(1174), + [anon_sym_restrict] = ACTIONS(1174), + [anon_sym___restrict__] = ACTIONS(1174), + [anon_sym__Atomic] = ACTIONS(1174), + [anon_sym__Noreturn] = ACTIONS(1174), + [anon_sym__Nonnull] = ACTIONS(1174), + [anon_sym_nullable] = ACTIONS(1174), + [anon_sym__Complex] = ACTIONS(1174), + [anon_sym__Nullable] = ACTIONS(1174), + [anon_sym__Nullable_result] = ACTIONS(1174), + [anon_sym__Null_unspecified] = ACTIONS(1174), + [anon_sym___autoreleasing] = ACTIONS(1174), + [anon_sym___block] = ACTIONS(1174), + [anon_sym___bridge] = ACTIONS(1174), + [anon_sym___bridge_retained] = ACTIONS(1174), + [anon_sym___bridge_transfer] = ACTIONS(1174), + [anon_sym___complex] = ACTIONS(1174), + [anon_sym___const] = ACTIONS(1174), + [anon_sym___imag] = ACTIONS(1203), + [anon_sym___kindof] = ACTIONS(1174), + [anon_sym___nonnull] = ACTIONS(1174), + [anon_sym___nullable] = ACTIONS(1174), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(1174), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(1174), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(1174), + [anon_sym___real] = ACTIONS(1203), + [anon_sym___strong] = ACTIONS(1174), + [anon_sym___unsafe_unretained] = ACTIONS(1174), + [anon_sym___unused] = ACTIONS(1174), + [anon_sym___weak] = ACTIONS(1174), + [anon_sym_alignas] = ACTIONS(1206), + [anon_sym__Alignas] = ACTIONS(1206), + [sym_primitive_type] = ACTIONS(1209), + [anon_sym_enum] = ACTIONS(1212), + [anon_sym_struct] = ACTIONS(1215), + [anon_sym_union] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_switch] = ACTIONS(1224), + [anon_sym_case] = ACTIONS(1227), + [anon_sym_default] = ACTIONS(1230), + [anon_sym_while] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1239), + [anon_sym_in] = ACTIONS(1242), + [anon_sym_return] = ACTIONS(1245), + [anon_sym_break] = ACTIONS(1248), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_goto] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_sizeof] = ACTIONS(1260), + [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(1266), + [anon_sym__Generic] = ACTIONS(1269), + [anon_sym_asm] = ACTIONS(1272), + [anon_sym___asm__] = ACTIONS(1272), + [anon_sym___asm] = ACTIONS(1275), + [sym_number_literal] = ACTIONS(1278), + [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_AT] = ACTIONS(1284), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_L_DQUOTE] = ACTIONS(1287), + [anon_sym_u_DQUOTE] = ACTIONS(1287), + [anon_sym_U_DQUOTE] = ACTIONS(1287), + [anon_sym_u8_DQUOTE] = ACTIONS(1287), + [sym_true] = ACTIONS(1290), + [sym_false] = ACTIONS(1290), + [anon_sym_NULL] = ACTIONS(1293), + [anon_sym_nullptr] = ACTIONS(1293), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(1296), + [anon_sym___typeof] = ACTIONS(1296), + [anon_sym_typeof] = ACTIONS(1296), + [anon_sym_ATimport] = ACTIONS(1299), + [aux_sym_preproc_undef_token1] = ACTIONS(1302), + [anon_sym_POUND] = ACTIONS(1305), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(1308), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(1308), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1308), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(1308), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(1308), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(1308), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1308), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1308), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1308), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1311), + [anon_sym_NS_AVAILABLE] = ACTIONS(1311), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1311), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1311), + [anon_sym_API_AVAILABLE] = ACTIONS(1311), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1311), + [anon_sym_API_DEPRECATED] = ACTIONS(1311), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1311), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1311), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1311), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1311), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1311), + [anon_sym___deprecated_msg] = ACTIONS(1311), + [anon_sym___deprecated_enum_msg] = ACTIONS(1311), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1311), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1311), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1311), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1311), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1311), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(1311), + [anon_sym_ATprotocol] = ACTIONS(1314), + [anon_sym_ATinterface] = ACTIONS(1317), + [anon_sym_ATimplementation] = ACTIONS(1320), + [anon_sym_ATcompatibility_alias] = ACTIONS(1323), + [anon_sym_ATtry] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1329), + [anon_sym_ATthrow] = ACTIONS(1332), + [anon_sym_ATselector] = ACTIONS(1335), + [anon_sym_ATavailable] = ACTIONS(1338), + [anon_sym___builtin_available] = ACTIONS(1341), + [anon_sym_va_arg] = ACTIONS(1344), + [anon_sym_ATencode] = ACTIONS(1347), + [anon_sym_ATsynchronized] = ACTIONS(1350), + [anon_sym_BOOL] = ACTIONS(1353), + [anon_sym_IMP] = ACTIONS(1353), + [anon_sym_SEL] = ACTIONS(1353), + [anon_sym_Class] = ACTIONS(1353), + [anon_sym_id] = ACTIONS(1356), + }, + [128] = { + [sym__top_level_item] = STATE(129), + [sym_preproc_include] = STATE(129), + [sym_preproc_def] = STATE(129), + [sym_preproc_function_def] = STATE(129), + [sym_preproc_call] = STATE(129), + [sym_preproc_if] = STATE(129), + [sym_preproc_ifdef] = STATE(129), + [sym_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(998), + [sym_declaration] = STATE(129), + [sym_type_definition] = STATE(129), + [sym__declaration_modifiers] = STATE(2052), + [sym__declaration_specifiers] = STATE(4223), + [sym_linkage_specification] = STATE(129), + [sym_attribute_specifier] = STATE(2052), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2834), + [sym_ms_call_modifier] = STATE(2186), + [sym_compound_statement] = STATE(129), + [sym_storage_class_specifier] = STATE(2052), + [sym_type_qualifier] = STATE(2052), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(3013), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(1005), + [sym__top_level_statement] = STATE(129), + [sym_labeled_statement] = STATE(129), + [sym__top_level_expression_statement] = STATE(129), + [sym_if_statement] = STATE(129), + [sym_switch_statement] = STATE(129), + [sym_case_statement] = STATE(129), + [sym_while_statement] = STATE(129), + [sym_do_statement] = STATE(129), + [sym_for_statement] = STATE(129), + [sym_return_statement] = STATE(129), + [sym_break_statement] = STATE(129), + [sym_continue_statement] = STATE(129), + [sym_goto_statement] = STATE(129), + [sym_expression] = STATE(4591), + [sym__string] = STATE(4589), + [sym_conditional_expression] = STATE(4589), + [sym_assignment_expression] = STATE(4589), + [sym_pointer_expression] = STATE(4386), + [sym_unary_expression] = STATE(4589), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(4589), + [sym_cast_expression] = STATE(4589), + [sym_sizeof_expression] = STATE(4589), + [sym_alignof_expression] = STATE(4589), + [sym_offsetof_expression] = STATE(4589), + [sym_generic_expression] = STATE(4589), + [sym_subscript_expression] = STATE(4386), + [sym_call_expression] = STATE(4386), + [sym_gnu_asm_expression] = STATE(4589), + [sym_extension_expression] = STATE(4589), + [sym_field_expression] = STATE(4386), + [sym_compound_literal_expression] = STATE(4589), + [sym_parenthesized_expression] = STATE(4386), + [sym_char_literal] = STATE(4589), + [sym_concatenated_string] = STATE(4589), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(4589), + [sym__empty_declaration] = STATE(129), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(129), + [sym_preproc_undef] = STATE(129), + [sym_preproc_linemarker] = STATE(129), + [sym_availability_attribute_specifier] = STATE(2052), + [sym_protocol_forward_declaration] = STATE(129), + [sym_class_declaration] = STATE(129), + [sym_class_interface] = STATE(129), + [sym__class_interface_header] = STATE(1181), + [sym_class_implementation] = STATE(129), + [sym__class_implementation_header] = STATE(1096), + [sym_protocol_declaration] = STATE(129), + [sym_compatibility_alias_declaration] = STATE(129), + [sym_selector_expression] = STATE(4589), + [sym_available_expression] = STATE(4589), + [sym_range_expression] = STATE(4589), + [sym_block_literal] = STATE(4589), + [sym_message_expression] = STATE(4589), + [sym_va_arg_expression] = STATE(4589), + [sym_encode_expression] = STATE(4589), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(4589), + [sym_dictionary_literal] = STATE(4589), + [sym_array_literal] = STATE(4589), + [aux_sym_translation_unit_repeat1] = STATE(129), + [aux_sym__declaration_specifiers_repeat1] = STATE(2052), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2472), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [ts_builtin_sym_end] = ACTIONS(1359), + [sym_identifier] = ACTIONS(7), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_include_token2] = 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), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(31), + [anon_sym_typedef] = ACTIONS(33), + [anon_sym_extern] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(57), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(57), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(73), + [anon_sym_default] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_in] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(105), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(113), + [sym_false] = ACTIONS(113), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(119), + [aux_sym_preproc_undef_token1] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(129), + [anon_sym_ATinterface] = ACTIONS(131), + [anon_sym_ATimplementation] = ACTIONS(133), + [anon_sym_ATcompatibility_alias] = ACTIONS(135), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(149), + }, + [129] = { + [sym__top_level_item] = STATE(129), + [sym_preproc_include] = STATE(129), + [sym_preproc_def] = STATE(129), + [sym_preproc_function_def] = STATE(129), + [sym_preproc_call] = STATE(129), + [sym_preproc_if] = STATE(129), + [sym_preproc_ifdef] = STATE(129), + [sym_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(998), + [sym_declaration] = STATE(129), + [sym_type_definition] = STATE(129), + [sym__declaration_modifiers] = STATE(2052), + [sym__declaration_specifiers] = STATE(4223), + [sym_linkage_specification] = STATE(129), + [sym_attribute_specifier] = STATE(2052), + [sym_attribute_declaration] = STATE(1093), + [sym_ms_declspec_modifier] = STATE(2834), + [sym_ms_call_modifier] = STATE(2186), + [sym_compound_statement] = STATE(129), + [sym_storage_class_specifier] = STATE(2052), + [sym_type_qualifier] = STATE(2052), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(3013), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(1005), + [sym__top_level_statement] = STATE(129), + [sym_labeled_statement] = STATE(129), + [sym__top_level_expression_statement] = STATE(129), + [sym_if_statement] = STATE(129), + [sym_switch_statement] = STATE(129), + [sym_case_statement] = STATE(129), + [sym_while_statement] = STATE(129), + [sym_do_statement] = STATE(129), + [sym_for_statement] = STATE(129), + [sym_return_statement] = STATE(129), + [sym_break_statement] = STATE(129), + [sym_continue_statement] = STATE(129), + [sym_goto_statement] = STATE(129), + [sym_expression] = STATE(4591), + [sym__string] = STATE(4589), + [sym_conditional_expression] = STATE(4589), + [sym_assignment_expression] = STATE(4589), + [sym_pointer_expression] = STATE(4386), + [sym_unary_expression] = STATE(4589), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(4589), + [sym_cast_expression] = STATE(4589), + [sym_sizeof_expression] = STATE(4589), + [sym_alignof_expression] = STATE(4589), + [sym_offsetof_expression] = STATE(4589), + [sym_generic_expression] = STATE(4589), + [sym_subscript_expression] = STATE(4386), + [sym_call_expression] = STATE(4386), + [sym_gnu_asm_expression] = STATE(4589), + [sym_extension_expression] = STATE(4589), + [sym_field_expression] = STATE(4386), + [sym_compound_literal_expression] = STATE(4589), + [sym_parenthesized_expression] = STATE(4386), + [sym_char_literal] = STATE(4589), + [sym_concatenated_string] = STATE(4589), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(4589), + [sym__empty_declaration] = STATE(129), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_module_import] = STATE(129), + [sym_preproc_undef] = STATE(129), + [sym_preproc_linemarker] = STATE(129), + [sym_availability_attribute_specifier] = STATE(2052), + [sym_protocol_forward_declaration] = STATE(129), + [sym_class_declaration] = STATE(129), + [sym_class_interface] = STATE(129), + [sym__class_interface_header] = STATE(1181), + [sym_class_implementation] = STATE(129), + [sym__class_implementation_header] = STATE(1096), + [sym_protocol_declaration] = STATE(129), + [sym_compatibility_alias_declaration] = STATE(129), + [sym_selector_expression] = STATE(4589), + [sym_available_expression] = STATE(4589), + [sym_range_expression] = STATE(4589), + [sym_block_literal] = STATE(4589), + [sym_message_expression] = STATE(4589), + [sym_va_arg_expression] = STATE(4589), + [sym_encode_expression] = STATE(4589), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(4589), + [sym_dictionary_literal] = STATE(4589), + [sym_array_literal] = STATE(4589), + [aux_sym_translation_unit_repeat1] = STATE(129), + [aux_sym__declaration_specifiers_repeat1] = STATE(2052), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2472), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [ts_builtin_sym_end] = ACTIONS(1361), + [sym_identifier] = ACTIONS(1363), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_include_token2] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1369), + [aux_sym_preproc_if_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1375), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1375), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_CARET] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym___extension__] = ACTIONS(1399), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1405), + [anon_sym___attribute__] = ACTIONS(1408), + [anon_sym___attribute] = ACTIONS(1408), + [anon_sym_noreturn] = ACTIONS(1411), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym___declspec] = ACTIONS(1417), + [anon_sym___cdecl] = ACTIONS(1420), + [anon_sym___clrcall] = ACTIONS(1420), + [anon_sym___stdcall] = ACTIONS(1420), + [anon_sym___fastcall] = ACTIONS(1420), + [anon_sym___thiscall] = ACTIONS(1420), + [anon_sym___vectorcall] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1423), + [anon_sym_signed] = ACTIONS(1426), + [anon_sym_unsigned] = ACTIONS(1426), + [anon_sym_long] = ACTIONS(1426), + [anon_sym_short] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_ATautoreleasepool] = ACTIONS(1432), + [anon_sym_auto] = ACTIONS(1429), + [anon_sym_register] = ACTIONS(1429), + [anon_sym_inline] = ACTIONS(1429), + [anon_sym___inline] = ACTIONS(1429), + [anon_sym___inline__] = ACTIONS(1429), + [anon_sym___forceinline] = ACTIONS(1429), + [anon_sym_thread_local] = ACTIONS(1429), + [anon_sym___thread] = ACTIONS(1429), + [anon_sym_CG_EXTERN] = ACTIONS(1429), + [anon_sym_CG_INLINE] = ACTIONS(1429), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(1429), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(1429), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(1429), + [anon_sym_IBOutlet] = ACTIONS(1429), + [anon_sym_IBInspectable] = ACTIONS(1429), + [anon_sym_IB_DESIGNABLE] = ACTIONS(1429), + [anon_sym_NS_INLINE] = ACTIONS(1429), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1429), + [anon_sym_OBJC_EXPORT] = ACTIONS(1429), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(1429), + [anon_sym_UIKIT_EXTERN] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1435), + [anon_sym_constexpr] = ACTIONS(1411), + [anon_sym_volatile] = ACTIONS(1411), + [anon_sym_restrict] = ACTIONS(1411), + [anon_sym___restrict__] = ACTIONS(1411), + [anon_sym__Atomic] = ACTIONS(1411), + [anon_sym__Noreturn] = ACTIONS(1411), + [anon_sym__Nonnull] = ACTIONS(1411), + [anon_sym_nullable] = ACTIONS(1411), + [anon_sym__Complex] = ACTIONS(1411), + [anon_sym__Nullable] = ACTIONS(1411), + [anon_sym__Nullable_result] = ACTIONS(1411), + [anon_sym__Null_unspecified] = ACTIONS(1411), + [anon_sym___autoreleasing] = ACTIONS(1411), + [anon_sym___block] = ACTIONS(1411), + [anon_sym___bridge] = ACTIONS(1411), + [anon_sym___bridge_retained] = ACTIONS(1411), + [anon_sym___bridge_transfer] = ACTIONS(1411), + [anon_sym___complex] = ACTIONS(1411), + [anon_sym___const] = ACTIONS(1411), + [anon_sym___imag] = ACTIONS(1438), + [anon_sym___kindof] = ACTIONS(1411), + [anon_sym___nonnull] = ACTIONS(1411), + [anon_sym___nullable] = ACTIONS(1411), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(1411), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(1411), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(1411), + [anon_sym___real] = ACTIONS(1438), + [anon_sym___strong] = ACTIONS(1411), + [anon_sym___unsafe_unretained] = ACTIONS(1411), + [anon_sym___unused] = ACTIONS(1411), + [anon_sym___weak] = ACTIONS(1411), + [anon_sym_alignas] = ACTIONS(1441), + [anon_sym__Alignas] = ACTIONS(1441), + [sym_primitive_type] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1447), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1453), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1459), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_in] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1483), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_goto] = ACTIONS(1489), + [anon_sym_DASH_DASH] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1492), + [anon_sym_sizeof] = ACTIONS(1495), + [anon_sym___alignof__] = ACTIONS(1498), + [anon_sym___alignof] = ACTIONS(1498), + [anon_sym__alignof] = ACTIONS(1498), + [anon_sym_alignof] = ACTIONS(1498), + [anon_sym__Alignof] = ACTIONS(1498), + [anon_sym_offsetof] = ACTIONS(1501), + [anon_sym__Generic] = ACTIONS(1504), + [anon_sym_asm] = ACTIONS(1507), + [anon_sym___asm__] = ACTIONS(1507), + [anon_sym___asm] = ACTIONS(1507), + [sym_number_literal] = ACTIONS(1510), + [anon_sym_L_SQUOTE] = ACTIONS(1513), + [anon_sym_u_SQUOTE] = ACTIONS(1513), + [anon_sym_U_SQUOTE] = ACTIONS(1513), + [anon_sym_u8_SQUOTE] = ACTIONS(1513), + [anon_sym_SQUOTE] = ACTIONS(1513), + [anon_sym_AT] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1519), + [anon_sym_L_DQUOTE] = ACTIONS(1519), + [anon_sym_u_DQUOTE] = ACTIONS(1519), + [anon_sym_U_DQUOTE] = ACTIONS(1519), + [anon_sym_u8_DQUOTE] = ACTIONS(1519), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [anon_sym_NULL] = ACTIONS(1525), + [anon_sym_nullptr] = ACTIONS(1525), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(1528), + [anon_sym___typeof] = ACTIONS(1528), + [anon_sym_typeof] = ACTIONS(1528), + [anon_sym_ATimport] = ACTIONS(1531), + [aux_sym_preproc_undef_token1] = ACTIONS(1534), + [anon_sym_POUND] = ACTIONS(1537), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(1540), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(1540), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1540), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(1540), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(1540), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(1540), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1540), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1540), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1540), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1543), + [anon_sym_NS_AVAILABLE] = ACTIONS(1543), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1543), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1543), + [anon_sym_API_AVAILABLE] = ACTIONS(1543), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1543), + [anon_sym_API_DEPRECATED] = ACTIONS(1543), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1543), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1543), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1543), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1543), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1543), + [anon_sym___deprecated_msg] = ACTIONS(1543), + [anon_sym___deprecated_enum_msg] = ACTIONS(1543), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1543), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1543), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1543), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1543), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1543), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(1543), + [anon_sym_ATprotocol] = ACTIONS(1546), + [anon_sym_ATinterface] = ACTIONS(1549), + [anon_sym_ATimplementation] = ACTIONS(1552), + [anon_sym_ATcompatibility_alias] = ACTIONS(1555), + [anon_sym_ATselector] = ACTIONS(1558), + [anon_sym_ATavailable] = ACTIONS(1561), + [anon_sym___builtin_available] = ACTIONS(1564), + [anon_sym_va_arg] = ACTIONS(1567), + [anon_sym_ATencode] = ACTIONS(1570), + [anon_sym_BOOL] = ACTIONS(1573), + [anon_sym_IMP] = ACTIONS(1573), + [anon_sym_SEL] = ACTIONS(1573), + [anon_sym_Class] = ACTIONS(1573), + [anon_sym_id] = ACTIONS(1576), + }, + [130] = { + [sym_declaration] = STATE(132), + [sym_type_definition] = STATE(132), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4246), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2859), + [sym_compound_statement] = STATE(132), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(132), + [sym_labeled_statement] = STATE(132), + [sym_expression_statement] = STATE(132), + [sym_if_statement] = STATE(132), + [sym_switch_statement] = STATE(132), + [sym_while_statement] = STATE(132), + [sym_do_statement] = STATE(132), + [sym_for_statement] = STATE(132), + [sym_return_statement] = STATE(132), + [sym_break_statement] = STATE(132), + [sym_continue_statement] = STATE(132), + [sym_goto_statement] = STATE(132), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(132), + [sym_throw_statement] = STATE(132), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(132), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(132), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(132), + [sym_identifier] = ACTIONS(1579), + [aux_sym_preproc_include_token1] = ACTIONS(1581), + [aux_sym_preproc_include_token2] = ACTIONS(1581), + [aux_sym_preproc_def_token1] = ACTIONS(1581), + [aux_sym_preproc_if_token1] = ACTIONS(1581), + [aux_sym_preproc_if_token2] = ACTIONS(1581), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1581), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1581), + [aux_sym_preproc_else_token1] = ACTIONS(1581), + [aux_sym_preproc_elif_token1] = ACTIONS(1581), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1581), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1581), + [sym_preproc_directive] = ACTIONS(1581), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(1583), + [anon_sym_typedef] = ACTIONS(175), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(1581), + [anon_sym___clrcall] = ACTIONS(1581), + [anon_sym___stdcall] = ACTIONS(1581), + [anon_sym___fastcall] = ACTIONS(1581), + [anon_sym___thiscall] = ACTIONS(1581), + [anon_sym___vectorcall] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(189), + [anon_sym_else] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(1581), + [anon_sym_default] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(1591), + [aux_sym_preproc_undef_token1] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(1581), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(1591), + [anon_sym_ATinterface] = ACTIONS(1591), + [anon_sym_ATimplementation] = ACTIONS(1591), + [anon_sym_ATcompatibility_alias] = ACTIONS(1591), + [anon_sym_ATsynthesize] = ACTIONS(1591), + [anon_sym_ATdynamic] = ACTIONS(1591), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [131] = { + [sym_declaration] = STATE(133), + [sym_type_definition] = STATE(133), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4246), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2859), + [sym_compound_statement] = STATE(133), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(133), + [sym_labeled_statement] = STATE(133), + [sym_expression_statement] = STATE(133), + [sym_if_statement] = STATE(133), + [sym_switch_statement] = STATE(133), + [sym_while_statement] = STATE(133), + [sym_do_statement] = STATE(133), + [sym_for_statement] = STATE(133), + [sym_return_statement] = STATE(133), + [sym_break_statement] = STATE(133), + [sym_continue_statement] = STATE(133), + [sym_goto_statement] = STATE(133), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(133), + [sym_throw_statement] = STATE(133), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(133), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(133), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(133), + [sym_identifier] = ACTIONS(1579), + [aux_sym_preproc_include_token1] = ACTIONS(1595), + [aux_sym_preproc_include_token2] = ACTIONS(1595), + [aux_sym_preproc_def_token1] = ACTIONS(1595), + [aux_sym_preproc_if_token1] = ACTIONS(1595), + [aux_sym_preproc_if_token2] = ACTIONS(1595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1595), + [aux_sym_preproc_else_token1] = ACTIONS(1595), + [aux_sym_preproc_elif_token1] = ACTIONS(1595), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1595), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1595), + [sym_preproc_directive] = ACTIONS(1595), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(1583), + [anon_sym_typedef] = ACTIONS(175), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(1595), + [anon_sym___clrcall] = ACTIONS(1595), + [anon_sym___stdcall] = ACTIONS(1595), + [anon_sym___fastcall] = ACTIONS(1595), + [anon_sym___thiscall] = ACTIONS(1595), + [anon_sym___vectorcall] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(189), + [anon_sym_else] = ACTIONS(1595), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(1597), + [aux_sym_preproc_undef_token1] = ACTIONS(1595), + [anon_sym_POUND] = ACTIONS(1595), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(1597), + [anon_sym_ATinterface] = ACTIONS(1597), + [anon_sym_ATimplementation] = ACTIONS(1597), + [anon_sym_ATcompatibility_alias] = ACTIONS(1597), + [anon_sym_ATsynthesize] = ACTIONS(1597), + [anon_sym_ATdynamic] = ACTIONS(1597), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [132] = { + [sym_declaration] = STATE(134), + [sym_type_definition] = STATE(134), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4246), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2859), + [sym_compound_statement] = STATE(134), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(134), + [sym_labeled_statement] = STATE(134), + [sym_expression_statement] = STATE(134), + [sym_if_statement] = STATE(134), + [sym_switch_statement] = STATE(134), + [sym_while_statement] = STATE(134), + [sym_do_statement] = STATE(134), + [sym_for_statement] = STATE(134), + [sym_return_statement] = STATE(134), + [sym_break_statement] = STATE(134), + [sym_continue_statement] = STATE(134), + [sym_goto_statement] = STATE(134), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(134), + [sym_throw_statement] = STATE(134), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(134), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(134), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(134), + [sym_identifier] = ACTIONS(1579), + [aux_sym_preproc_include_token1] = ACTIONS(1599), + [aux_sym_preproc_include_token2] = ACTIONS(1599), + [aux_sym_preproc_def_token1] = ACTIONS(1599), + [aux_sym_preproc_if_token1] = ACTIONS(1599), + [aux_sym_preproc_if_token2] = ACTIONS(1599), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1599), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1599), + [aux_sym_preproc_else_token1] = ACTIONS(1599), + [aux_sym_preproc_elif_token1] = ACTIONS(1599), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1599), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1599), + [sym_preproc_directive] = ACTIONS(1599), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(1583), + [anon_sym_typedef] = ACTIONS(175), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(1599), + [anon_sym___clrcall] = ACTIONS(1599), + [anon_sym___stdcall] = ACTIONS(1599), + [anon_sym___fastcall] = ACTIONS(1599), + [anon_sym___thiscall] = ACTIONS(1599), + [anon_sym___vectorcall] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(189), + [anon_sym_else] = ACTIONS(1599), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(1599), + [anon_sym_default] = ACTIONS(1599), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(1601), + [aux_sym_preproc_undef_token1] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(1599), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(1601), + [anon_sym_ATinterface] = ACTIONS(1601), + [anon_sym_ATimplementation] = ACTIONS(1601), + [anon_sym_ATcompatibility_alias] = ACTIONS(1601), + [anon_sym_ATsynthesize] = ACTIONS(1601), + [anon_sym_ATdynamic] = ACTIONS(1601), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [133] = { + [sym_declaration] = STATE(134), + [sym_type_definition] = STATE(134), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4246), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2859), + [sym_compound_statement] = STATE(134), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(134), + [sym_labeled_statement] = STATE(134), + [sym_expression_statement] = STATE(134), + [sym_if_statement] = STATE(134), + [sym_switch_statement] = STATE(134), + [sym_while_statement] = STATE(134), + [sym_do_statement] = STATE(134), + [sym_for_statement] = STATE(134), + [sym_return_statement] = STATE(134), + [sym_break_statement] = STATE(134), + [sym_continue_statement] = STATE(134), + [sym_goto_statement] = STATE(134), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(134), + [sym_throw_statement] = STATE(134), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(134), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(134), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(134), + [sym_identifier] = ACTIONS(1579), + [aux_sym_preproc_include_token1] = ACTIONS(1603), + [aux_sym_preproc_include_token2] = ACTIONS(1603), + [aux_sym_preproc_def_token1] = ACTIONS(1603), + [aux_sym_preproc_if_token1] = ACTIONS(1603), + [aux_sym_preproc_if_token2] = ACTIONS(1603), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1603), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1603), + [aux_sym_preproc_else_token1] = ACTIONS(1603), + [aux_sym_preproc_elif_token1] = ACTIONS(1603), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1603), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1603), + [sym_preproc_directive] = ACTIONS(1603), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(1583), + [anon_sym_typedef] = ACTIONS(175), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(1603), + [anon_sym___clrcall] = ACTIONS(1603), + [anon_sym___stdcall] = ACTIONS(1603), + [anon_sym___fastcall] = ACTIONS(1603), + [anon_sym___thiscall] = ACTIONS(1603), + [anon_sym___vectorcall] = ACTIONS(1603), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(189), + [anon_sym_else] = ACTIONS(1603), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1603), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(1605), + [aux_sym_preproc_undef_token1] = ACTIONS(1603), + [anon_sym_POUND] = ACTIONS(1603), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(1605), + [anon_sym_ATinterface] = ACTIONS(1605), + [anon_sym_ATimplementation] = ACTIONS(1605), + [anon_sym_ATcompatibility_alias] = ACTIONS(1605), + [anon_sym_ATsynthesize] = ACTIONS(1605), + [anon_sym_ATdynamic] = ACTIONS(1605), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [134] = { + [sym_declaration] = STATE(134), + [sym_type_definition] = STATE(134), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4246), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2859), + [sym_compound_statement] = STATE(134), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(134), + [sym_labeled_statement] = STATE(134), + [sym_expression_statement] = STATE(134), + [sym_if_statement] = STATE(134), + [sym_switch_statement] = STATE(134), + [sym_while_statement] = STATE(134), + [sym_do_statement] = STATE(134), + [sym_for_statement] = STATE(134), + [sym_return_statement] = STATE(134), + [sym_break_statement] = STATE(134), + [sym_continue_statement] = STATE(134), + [sym_goto_statement] = STATE(134), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(134), + [sym_throw_statement] = STATE(134), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(134), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(134), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(134), + [sym_identifier] = ACTIONS(1607), + [aux_sym_preproc_include_token1] = ACTIONS(1610), + [aux_sym_preproc_include_token2] = ACTIONS(1610), + [aux_sym_preproc_def_token1] = ACTIONS(1610), + [aux_sym_preproc_if_token1] = ACTIONS(1610), + [aux_sym_preproc_if_token2] = ACTIONS(1610), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1610), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1610), + [aux_sym_preproc_else_token1] = ACTIONS(1610), + [aux_sym_preproc_elif_token1] = ACTIONS(1610), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1610), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1610), + [sym_preproc_directive] = ACTIONS(1610), + [anon_sym_LPAREN2] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1618), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1624), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym___extension__] = ACTIONS(1630), + [anon_sym_typedef] = ACTIONS(1633), + [anon_sym_extern] = ACTIONS(1636), + [anon_sym___attribute__] = ACTIONS(1639), + [anon_sym___attribute] = ACTIONS(1639), + [anon_sym_noreturn] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym___declspec] = ACTIONS(1648), + [anon_sym___cdecl] = ACTIONS(1610), + [anon_sym___clrcall] = ACTIONS(1610), + [anon_sym___stdcall] = ACTIONS(1610), + [anon_sym___fastcall] = ACTIONS(1610), + [anon_sym___thiscall] = ACTIONS(1610), + [anon_sym___vectorcall] = ACTIONS(1610), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_signed] = ACTIONS(1654), + [anon_sym_unsigned] = ACTIONS(1654), + [anon_sym_long] = ACTIONS(1654), + [anon_sym_short] = ACTIONS(1654), + [anon_sym_static] = ACTIONS(1636), + [anon_sym_ATautoreleasepool] = ACTIONS(1657), + [anon_sym_auto] = ACTIONS(1636), + [anon_sym_register] = ACTIONS(1636), + [anon_sym_inline] = ACTIONS(1636), + [anon_sym___inline] = ACTIONS(1636), + [anon_sym___inline__] = ACTIONS(1636), + [anon_sym___forceinline] = ACTIONS(1636), + [anon_sym_thread_local] = ACTIONS(1636), + [anon_sym___thread] = ACTIONS(1636), + [anon_sym_CG_EXTERN] = ACTIONS(1636), + [anon_sym_CG_INLINE] = ACTIONS(1636), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(1636), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(1636), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(1636), + [anon_sym_IBOutlet] = ACTIONS(1636), + [anon_sym_IBInspectable] = ACTIONS(1636), + [anon_sym_IB_DESIGNABLE] = ACTIONS(1636), + [anon_sym_NS_INLINE] = ACTIONS(1636), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1636), + [anon_sym_OBJC_EXPORT] = ACTIONS(1636), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(1636), + [anon_sym_UIKIT_EXTERN] = ACTIONS(1636), + [anon_sym_const] = ACTIONS(1660), + [anon_sym_constexpr] = ACTIONS(1642), + [anon_sym_volatile] = ACTIONS(1642), + [anon_sym_restrict] = ACTIONS(1642), + [anon_sym___restrict__] = ACTIONS(1642), + [anon_sym__Atomic] = ACTIONS(1642), + [anon_sym__Noreturn] = ACTIONS(1642), + [anon_sym__Nonnull] = ACTIONS(1642), + [anon_sym_nullable] = ACTIONS(1642), + [anon_sym__Complex] = ACTIONS(1642), + [anon_sym__Nullable] = ACTIONS(1642), + [anon_sym__Nullable_result] = ACTIONS(1642), + [anon_sym__Null_unspecified] = ACTIONS(1642), + [anon_sym___autoreleasing] = ACTIONS(1642), + [anon_sym___block] = ACTIONS(1642), + [anon_sym___bridge] = ACTIONS(1642), + [anon_sym___bridge_retained] = ACTIONS(1642), + [anon_sym___bridge_transfer] = ACTIONS(1642), + [anon_sym___complex] = ACTIONS(1642), + [anon_sym___const] = ACTIONS(1642), + [anon_sym___imag] = ACTIONS(1663), + [anon_sym___kindof] = ACTIONS(1642), + [anon_sym___nonnull] = ACTIONS(1642), + [anon_sym___nullable] = ACTIONS(1642), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(1642), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(1642), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(1642), + [anon_sym___real] = ACTIONS(1663), + [anon_sym___strong] = ACTIONS(1642), + [anon_sym___unsafe_unretained] = ACTIONS(1642), + [anon_sym___unused] = ACTIONS(1642), + [anon_sym___weak] = ACTIONS(1642), + [anon_sym_alignas] = ACTIONS(1666), + [anon_sym__Alignas] = ACTIONS(1666), + [sym_primitive_type] = ACTIONS(1669), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_if] = ACTIONS(1681), + [anon_sym_else] = ACTIONS(1610), + [anon_sym_switch] = ACTIONS(1684), + [anon_sym_case] = ACTIONS(1610), + [anon_sym_default] = ACTIONS(1610), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_do] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_in] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1699), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_goto] = ACTIONS(1708), + [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_sizeof] = ACTIONS(1714), + [anon_sym___alignof__] = ACTIONS(1717), + [anon_sym___alignof] = ACTIONS(1717), + [anon_sym__alignof] = ACTIONS(1717), + [anon_sym_alignof] = ACTIONS(1717), + [anon_sym__Alignof] = ACTIONS(1717), + [anon_sym_offsetof] = ACTIONS(1720), + [anon_sym__Generic] = ACTIONS(1723), + [anon_sym_asm] = ACTIONS(1726), + [anon_sym___asm__] = ACTIONS(1726), + [anon_sym___asm] = ACTIONS(1729), + [sym_number_literal] = ACTIONS(1732), + [anon_sym_L_SQUOTE] = ACTIONS(1735), + [anon_sym_u_SQUOTE] = ACTIONS(1735), + [anon_sym_U_SQUOTE] = ACTIONS(1735), + [anon_sym_u8_SQUOTE] = ACTIONS(1735), + [anon_sym_SQUOTE] = ACTIONS(1735), + [anon_sym_AT] = ACTIONS(1738), + [anon_sym_DQUOTE] = ACTIONS(1741), + [anon_sym_L_DQUOTE] = ACTIONS(1741), + [anon_sym_u_DQUOTE] = ACTIONS(1741), + [anon_sym_U_DQUOTE] = ACTIONS(1741), + [anon_sym_u8_DQUOTE] = ACTIONS(1741), + [sym_true] = ACTIONS(1744), + [sym_false] = ACTIONS(1744), + [anon_sym_NULL] = ACTIONS(1747), + [anon_sym_nullptr] = ACTIONS(1747), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(1750), + [anon_sym___typeof] = ACTIONS(1750), + [anon_sym_typeof] = ACTIONS(1750), + [anon_sym_ATimport] = ACTIONS(1753), + [aux_sym_preproc_undef_token1] = ACTIONS(1610), + [anon_sym_POUND] = ACTIONS(1610), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(1755), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(1755), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1755), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(1755), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(1755), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(1755), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1755), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1755), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1755), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1758), + [anon_sym_NS_AVAILABLE] = ACTIONS(1758), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1758), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1758), + [anon_sym_API_AVAILABLE] = ACTIONS(1758), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1758), + [anon_sym_API_DEPRECATED] = ACTIONS(1758), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1758), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1758), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1758), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1758), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1758), + [anon_sym___deprecated_msg] = ACTIONS(1758), + [anon_sym___deprecated_enum_msg] = ACTIONS(1758), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1758), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1758), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1758), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1758), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1758), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(1758), + [anon_sym_ATprotocol] = ACTIONS(1753), + [anon_sym_ATinterface] = ACTIONS(1753), + [anon_sym_ATimplementation] = ACTIONS(1753), + [anon_sym_ATcompatibility_alias] = ACTIONS(1753), + [anon_sym_ATsynthesize] = ACTIONS(1753), + [anon_sym_ATdynamic] = ACTIONS(1753), + [anon_sym_ATtry] = ACTIONS(1761), + [anon_sym___try] = ACTIONS(1764), + [anon_sym_ATthrow] = ACTIONS(1767), + [anon_sym_ATselector] = ACTIONS(1770), + [anon_sym_ATavailable] = ACTIONS(1773), + [anon_sym___builtin_available] = ACTIONS(1776), + [anon_sym_va_arg] = ACTIONS(1779), + [anon_sym_ATencode] = ACTIONS(1782), + [anon_sym_ATsynchronized] = ACTIONS(1785), + [anon_sym_BOOL] = ACTIONS(1788), + [anon_sym_IMP] = ACTIONS(1788), + [anon_sym_SEL] = ACTIONS(1788), + [anon_sym_Class] = ACTIONS(1788), + [anon_sym_id] = ACTIONS(1791), + }, + [135] = { + [sym_declaration] = STATE(137), + [sym_type_definition] = STATE(137), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4253), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2861), + [sym_compound_statement] = STATE(137), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(137), + [sym_labeled_statement] = STATE(137), + [sym_expression_statement] = STATE(137), + [sym_if_statement] = STATE(137), + [sym_switch_statement] = STATE(137), + [sym_while_statement] = STATE(137), + [sym_do_statement] = STATE(137), + [sym_for_statement] = STATE(137), + [sym_return_statement] = STATE(137), + [sym_break_statement] = STATE(137), + [sym_continue_statement] = STATE(137), + [sym_goto_statement] = STATE(137), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(137), + [sym_throw_statement] = STATE(137), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(137), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(137), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(1794), + [aux_sym_preproc_include_token1] = ACTIONS(1581), + [aux_sym_preproc_include_token2] = ACTIONS(1581), + [aux_sym_preproc_def_token1] = ACTIONS(1581), + [aux_sym_preproc_if_token1] = ACTIONS(1581), + [aux_sym_preproc_if_token2] = ACTIONS(1581), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1581), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1581), + [aux_sym_preproc_else_token1] = ACTIONS(1581), + [aux_sym_preproc_elif_token1] = ACTIONS(1581), + [sym_preproc_directive] = ACTIONS(1581), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(1796), + [anon_sym_typedef] = ACTIONS(297), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(1581), + [anon_sym___clrcall] = ACTIONS(1581), + [anon_sym___stdcall] = ACTIONS(1581), + [anon_sym___fastcall] = ACTIONS(1581), + [anon_sym___thiscall] = ACTIONS(1581), + [anon_sym___vectorcall] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(307), + [anon_sym_else] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_case] = ACTIONS(1581), + [anon_sym_default] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(1591), + [aux_sym_preproc_undef_token1] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(1581), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(1591), + [anon_sym_ATinterface] = ACTIONS(1591), + [anon_sym_ATimplementation] = ACTIONS(1591), + [anon_sym_ATcompatibility_alias] = ACTIONS(1591), + [anon_sym_ATsynthesize] = ACTIONS(1591), + [anon_sym_ATdynamic] = ACTIONS(1591), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [136] = { + [sym_declaration] = STATE(138), + [sym_type_definition] = STATE(138), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4253), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2861), + [sym_compound_statement] = STATE(138), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(138), + [sym_labeled_statement] = STATE(138), + [sym_expression_statement] = STATE(138), + [sym_if_statement] = STATE(138), + [sym_switch_statement] = STATE(138), + [sym_while_statement] = STATE(138), + [sym_do_statement] = STATE(138), + [sym_for_statement] = STATE(138), + [sym_return_statement] = STATE(138), + [sym_break_statement] = STATE(138), + [sym_continue_statement] = STATE(138), + [sym_goto_statement] = STATE(138), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(138), + [sym_throw_statement] = STATE(138), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(138), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(138), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(138), + [sym_identifier] = ACTIONS(1794), + [aux_sym_preproc_include_token1] = ACTIONS(1595), + [aux_sym_preproc_include_token2] = ACTIONS(1595), + [aux_sym_preproc_def_token1] = ACTIONS(1595), + [aux_sym_preproc_if_token1] = ACTIONS(1595), + [aux_sym_preproc_if_token2] = ACTIONS(1595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1595), + [aux_sym_preproc_else_token1] = ACTIONS(1595), + [aux_sym_preproc_elif_token1] = ACTIONS(1595), + [sym_preproc_directive] = ACTIONS(1595), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(1796), + [anon_sym_typedef] = ACTIONS(297), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(1595), + [anon_sym___clrcall] = ACTIONS(1595), + [anon_sym___stdcall] = ACTIONS(1595), + [anon_sym___fastcall] = ACTIONS(1595), + [anon_sym___thiscall] = ACTIONS(1595), + [anon_sym___vectorcall] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(307), + [anon_sym_else] = ACTIONS(1595), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(1597), + [aux_sym_preproc_undef_token1] = ACTIONS(1595), + [anon_sym_POUND] = ACTIONS(1595), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(1597), + [anon_sym_ATinterface] = ACTIONS(1597), + [anon_sym_ATimplementation] = ACTIONS(1597), + [anon_sym_ATcompatibility_alias] = ACTIONS(1597), + [anon_sym_ATsynthesize] = ACTIONS(1597), + [anon_sym_ATdynamic] = ACTIONS(1597), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [137] = { + [sym_declaration] = STATE(139), + [sym_type_definition] = STATE(139), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4253), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2861), + [sym_compound_statement] = STATE(139), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(139), + [sym_labeled_statement] = STATE(139), + [sym_expression_statement] = STATE(139), + [sym_if_statement] = STATE(139), + [sym_switch_statement] = STATE(139), + [sym_while_statement] = STATE(139), + [sym_do_statement] = STATE(139), + [sym_for_statement] = STATE(139), + [sym_return_statement] = STATE(139), + [sym_break_statement] = STATE(139), + [sym_continue_statement] = STATE(139), + [sym_goto_statement] = STATE(139), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(139), + [sym_throw_statement] = STATE(139), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(139), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(139), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(1794), + [aux_sym_preproc_include_token1] = ACTIONS(1599), + [aux_sym_preproc_include_token2] = ACTIONS(1599), + [aux_sym_preproc_def_token1] = ACTIONS(1599), + [aux_sym_preproc_if_token1] = ACTIONS(1599), + [aux_sym_preproc_if_token2] = ACTIONS(1599), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1599), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1599), + [aux_sym_preproc_else_token1] = ACTIONS(1599), + [aux_sym_preproc_elif_token1] = ACTIONS(1599), + [sym_preproc_directive] = ACTIONS(1599), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(1796), + [anon_sym_typedef] = ACTIONS(297), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(1599), + [anon_sym___clrcall] = ACTIONS(1599), + [anon_sym___stdcall] = ACTIONS(1599), + [anon_sym___fastcall] = ACTIONS(1599), + [anon_sym___thiscall] = ACTIONS(1599), + [anon_sym___vectorcall] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(307), + [anon_sym_else] = ACTIONS(1599), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_case] = ACTIONS(1599), + [anon_sym_default] = ACTIONS(1599), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(1601), + [aux_sym_preproc_undef_token1] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(1599), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(1601), + [anon_sym_ATinterface] = ACTIONS(1601), + [anon_sym_ATimplementation] = ACTIONS(1601), + [anon_sym_ATcompatibility_alias] = ACTIONS(1601), + [anon_sym_ATsynthesize] = ACTIONS(1601), + [anon_sym_ATdynamic] = ACTIONS(1601), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [138] = { + [sym_declaration] = STATE(139), + [sym_type_definition] = STATE(139), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4253), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2861), + [sym_compound_statement] = STATE(139), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(139), + [sym_labeled_statement] = STATE(139), + [sym_expression_statement] = STATE(139), + [sym_if_statement] = STATE(139), + [sym_switch_statement] = STATE(139), + [sym_while_statement] = STATE(139), + [sym_do_statement] = STATE(139), + [sym_for_statement] = STATE(139), + [sym_return_statement] = STATE(139), + [sym_break_statement] = STATE(139), + [sym_continue_statement] = STATE(139), + [sym_goto_statement] = STATE(139), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(139), + [sym_throw_statement] = STATE(139), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(139), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(139), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(1794), + [aux_sym_preproc_include_token1] = ACTIONS(1603), + [aux_sym_preproc_include_token2] = ACTIONS(1603), + [aux_sym_preproc_def_token1] = ACTIONS(1603), + [aux_sym_preproc_if_token1] = ACTIONS(1603), + [aux_sym_preproc_if_token2] = ACTIONS(1603), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1603), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1603), + [aux_sym_preproc_else_token1] = ACTIONS(1603), + [aux_sym_preproc_elif_token1] = ACTIONS(1603), + [sym_preproc_directive] = ACTIONS(1603), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(1796), + [anon_sym_typedef] = ACTIONS(297), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(1603), + [anon_sym___clrcall] = ACTIONS(1603), + [anon_sym___stdcall] = ACTIONS(1603), + [anon_sym___fastcall] = ACTIONS(1603), + [anon_sym___thiscall] = ACTIONS(1603), + [anon_sym___vectorcall] = ACTIONS(1603), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(307), + [anon_sym_else] = ACTIONS(1603), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_case] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1603), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(1605), + [aux_sym_preproc_undef_token1] = ACTIONS(1603), + [anon_sym_POUND] = ACTIONS(1603), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(1605), + [anon_sym_ATinterface] = ACTIONS(1605), + [anon_sym_ATimplementation] = ACTIONS(1605), + [anon_sym_ATcompatibility_alias] = ACTIONS(1605), + [anon_sym_ATsynthesize] = ACTIONS(1605), + [anon_sym_ATdynamic] = ACTIONS(1605), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [139] = { + [sym_declaration] = STATE(139), + [sym_type_definition] = STATE(139), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4253), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2861), + [sym_compound_statement] = STATE(139), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(139), + [sym_labeled_statement] = STATE(139), + [sym_expression_statement] = STATE(139), + [sym_if_statement] = STATE(139), + [sym_switch_statement] = STATE(139), + [sym_while_statement] = STATE(139), + [sym_do_statement] = STATE(139), + [sym_for_statement] = STATE(139), + [sym_return_statement] = STATE(139), + [sym_break_statement] = STATE(139), + [sym_continue_statement] = STATE(139), + [sym_goto_statement] = STATE(139), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(139), + [sym_throw_statement] = STATE(139), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(139), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(139), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(1798), + [aux_sym_preproc_include_token1] = ACTIONS(1610), + [aux_sym_preproc_include_token2] = ACTIONS(1610), + [aux_sym_preproc_def_token1] = ACTIONS(1610), + [aux_sym_preproc_if_token1] = ACTIONS(1610), + [aux_sym_preproc_if_token2] = ACTIONS(1610), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1610), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1610), + [aux_sym_preproc_else_token1] = ACTIONS(1610), + [aux_sym_preproc_elif_token1] = ACTIONS(1610), + [sym_preproc_directive] = ACTIONS(1610), + [anon_sym_LPAREN2] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1618), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1624), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym___extension__] = ACTIONS(1804), + [anon_sym_typedef] = ACTIONS(1807), + [anon_sym_extern] = ACTIONS(1636), + [anon_sym___attribute__] = ACTIONS(1639), + [anon_sym___attribute] = ACTIONS(1639), + [anon_sym_noreturn] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym___declspec] = ACTIONS(1648), + [anon_sym___cdecl] = ACTIONS(1610), + [anon_sym___clrcall] = ACTIONS(1610), + [anon_sym___stdcall] = ACTIONS(1610), + [anon_sym___fastcall] = ACTIONS(1610), + [anon_sym___thiscall] = ACTIONS(1610), + [anon_sym___vectorcall] = ACTIONS(1610), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1654), + [anon_sym_unsigned] = ACTIONS(1654), + [anon_sym_long] = ACTIONS(1654), + [anon_sym_short] = ACTIONS(1654), + [anon_sym_static] = ACTIONS(1636), + [anon_sym_ATautoreleasepool] = ACTIONS(1813), + [anon_sym_auto] = ACTIONS(1636), + [anon_sym_register] = ACTIONS(1636), + [anon_sym_inline] = ACTIONS(1636), + [anon_sym___inline] = ACTIONS(1636), + [anon_sym___inline__] = ACTIONS(1636), + [anon_sym___forceinline] = ACTIONS(1636), + [anon_sym_thread_local] = ACTIONS(1636), + [anon_sym___thread] = ACTIONS(1636), + [anon_sym_CG_EXTERN] = ACTIONS(1636), + [anon_sym_CG_INLINE] = ACTIONS(1636), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(1636), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(1636), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(1636), + [anon_sym_IBOutlet] = ACTIONS(1636), + [anon_sym_IBInspectable] = ACTIONS(1636), + [anon_sym_IB_DESIGNABLE] = ACTIONS(1636), + [anon_sym_NS_INLINE] = ACTIONS(1636), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1636), + [anon_sym_OBJC_EXPORT] = ACTIONS(1636), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(1636), + [anon_sym_UIKIT_EXTERN] = ACTIONS(1636), + [anon_sym_const] = ACTIONS(1660), + [anon_sym_constexpr] = ACTIONS(1642), + [anon_sym_volatile] = ACTIONS(1642), + [anon_sym_restrict] = ACTIONS(1642), + [anon_sym___restrict__] = ACTIONS(1642), + [anon_sym__Atomic] = ACTIONS(1642), + [anon_sym__Noreturn] = ACTIONS(1642), + [anon_sym__Nonnull] = ACTIONS(1642), + [anon_sym_nullable] = ACTIONS(1642), + [anon_sym__Complex] = ACTIONS(1642), + [anon_sym__Nullable] = ACTIONS(1642), + [anon_sym__Nullable_result] = ACTIONS(1642), + [anon_sym__Null_unspecified] = ACTIONS(1642), + [anon_sym___autoreleasing] = ACTIONS(1642), + [anon_sym___block] = ACTIONS(1642), + [anon_sym___bridge] = ACTIONS(1642), + [anon_sym___bridge_retained] = ACTIONS(1642), + [anon_sym___bridge_transfer] = ACTIONS(1642), + [anon_sym___complex] = ACTIONS(1642), + [anon_sym___const] = ACTIONS(1642), + [anon_sym___imag] = ACTIONS(1663), + [anon_sym___kindof] = ACTIONS(1642), + [anon_sym___nonnull] = ACTIONS(1642), + [anon_sym___nullable] = ACTIONS(1642), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(1642), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(1642), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(1642), + [anon_sym___real] = ACTIONS(1663), + [anon_sym___strong] = ACTIONS(1642), + [anon_sym___unsafe_unretained] = ACTIONS(1642), + [anon_sym___unused] = ACTIONS(1642), + [anon_sym___weak] = ACTIONS(1642), + [anon_sym_alignas] = ACTIONS(1666), + [anon_sym__Alignas] = ACTIONS(1666), + [sym_primitive_type] = ACTIONS(1669), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_if] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1610), + [anon_sym_switch] = ACTIONS(1819), + [anon_sym_case] = ACTIONS(1610), + [anon_sym_default] = ACTIONS(1610), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_do] = ACTIONS(1825), + [anon_sym_for] = ACTIONS(1828), + [anon_sym_in] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1831), + [anon_sym_break] = ACTIONS(1834), + [anon_sym_continue] = ACTIONS(1837), + [anon_sym_goto] = ACTIONS(1840), + [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_sizeof] = ACTIONS(1714), + [anon_sym___alignof__] = ACTIONS(1717), + [anon_sym___alignof] = ACTIONS(1717), + [anon_sym__alignof] = ACTIONS(1717), + [anon_sym_alignof] = ACTIONS(1717), + [anon_sym__Alignof] = ACTIONS(1717), + [anon_sym_offsetof] = ACTIONS(1720), + [anon_sym__Generic] = ACTIONS(1723), + [anon_sym_asm] = ACTIONS(1726), + [anon_sym___asm__] = ACTIONS(1726), + [anon_sym___asm] = ACTIONS(1843), + [sym_number_literal] = ACTIONS(1732), + [anon_sym_L_SQUOTE] = ACTIONS(1735), + [anon_sym_u_SQUOTE] = ACTIONS(1735), + [anon_sym_U_SQUOTE] = ACTIONS(1735), + [anon_sym_u8_SQUOTE] = ACTIONS(1735), + [anon_sym_SQUOTE] = ACTIONS(1735), + [anon_sym_AT] = ACTIONS(1738), + [anon_sym_DQUOTE] = ACTIONS(1741), + [anon_sym_L_DQUOTE] = ACTIONS(1741), + [anon_sym_u_DQUOTE] = ACTIONS(1741), + [anon_sym_U_DQUOTE] = ACTIONS(1741), + [anon_sym_u8_DQUOTE] = ACTIONS(1741), + [sym_true] = ACTIONS(1744), + [sym_false] = ACTIONS(1744), + [anon_sym_NULL] = ACTIONS(1747), + [anon_sym_nullptr] = ACTIONS(1747), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(1750), + [anon_sym___typeof] = ACTIONS(1750), + [anon_sym_typeof] = ACTIONS(1750), + [anon_sym_ATimport] = ACTIONS(1753), + [aux_sym_preproc_undef_token1] = ACTIONS(1610), + [anon_sym_POUND] = ACTIONS(1610), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(1755), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(1755), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1755), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(1755), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(1755), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(1755), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1755), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1755), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1755), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1758), + [anon_sym_NS_AVAILABLE] = ACTIONS(1758), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1758), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1758), + [anon_sym_API_AVAILABLE] = ACTIONS(1758), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1758), + [anon_sym_API_DEPRECATED] = ACTIONS(1758), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1758), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1758), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1758), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1758), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1758), + [anon_sym___deprecated_msg] = ACTIONS(1758), + [anon_sym___deprecated_enum_msg] = ACTIONS(1758), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1758), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1758), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1758), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1758), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1758), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(1758), + [anon_sym_ATprotocol] = ACTIONS(1753), + [anon_sym_ATinterface] = ACTIONS(1753), + [anon_sym_ATimplementation] = ACTIONS(1753), + [anon_sym_ATcompatibility_alias] = ACTIONS(1753), + [anon_sym_ATsynthesize] = ACTIONS(1753), + [anon_sym_ATdynamic] = ACTIONS(1753), + [anon_sym_ATtry] = ACTIONS(1846), + [anon_sym___try] = ACTIONS(1849), + [anon_sym_ATthrow] = ACTIONS(1852), + [anon_sym_ATselector] = ACTIONS(1770), + [anon_sym_ATavailable] = ACTIONS(1773), + [anon_sym___builtin_available] = ACTIONS(1776), + [anon_sym_va_arg] = ACTIONS(1779), + [anon_sym_ATencode] = ACTIONS(1782), + [anon_sym_ATsynchronized] = ACTIONS(1855), + [anon_sym_BOOL] = ACTIONS(1788), + [anon_sym_IMP] = ACTIONS(1788), + [anon_sym_SEL] = ACTIONS(1788), + [anon_sym_Class] = ACTIONS(1788), + [anon_sym_id] = ACTIONS(1791), + }, + [140] = { + [sym_declaration] = STATE(142), + [sym_type_definition] = STATE(142), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4242), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2827), + [sym_compound_statement] = STATE(142), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(142), + [sym_labeled_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym_if_statement] = STATE(142), + [sym_switch_statement] = STATE(142), + [sym_while_statement] = STATE(142), + [sym_do_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym_return_statement] = STATE(142), + [sym_break_statement] = STATE(142), + [sym_continue_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_expression] = STATE(4448), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6083), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(142), + [sym_throw_statement] = STATE(142), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(142), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(142), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2446), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1858), + [aux_sym_preproc_include_token1] = ACTIONS(1581), + [aux_sym_preproc_include_token2] = ACTIONS(1581), + [aux_sym_preproc_def_token1] = ACTIONS(1581), + [aux_sym_preproc_if_token1] = ACTIONS(1581), + [aux_sym_preproc_if_token2] = ACTIONS(1581), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1581), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1581), + [sym_preproc_directive] = ACTIONS(1581), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym___extension__] = ACTIONS(1860), + [anon_sym_typedef] = ACTIONS(753), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(1581), + [anon_sym___clrcall] = ACTIONS(1581), + [anon_sym___stdcall] = ACTIONS(1581), + [anon_sym___fastcall] = ACTIONS(1581), + [anon_sym___thiscall] = ACTIONS(1581), + [anon_sym___vectorcall] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(761), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(763), + [anon_sym_else] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_case] = ACTIONS(1581), + [anon_sym_default] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(771), + [anon_sym_do] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(777), + [anon_sym_break] = ACTIONS(779), + [anon_sym_continue] = ACTIONS(781), + [anon_sym_goto] = ACTIONS(783), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(785), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(1591), + [aux_sym_preproc_undef_token1] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(1581), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(1591), + [anon_sym_ATinterface] = ACTIONS(1591), + [anon_sym_ATimplementation] = ACTIONS(1591), + [anon_sym_ATcompatibility_alias] = ACTIONS(1591), + [anon_sym_ATsynthesize] = ACTIONS(1591), + [anon_sym_ATdynamic] = ACTIONS(1591), + [anon_sym_ATtry] = ACTIONS(803), + [anon_sym___try] = ACTIONS(805), + [anon_sym_ATthrow] = ACTIONS(807), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(809), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [141] = { + [sym_declaration] = STATE(143), + [sym_type_definition] = STATE(143), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4242), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2827), + [sym_compound_statement] = STATE(143), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(143), + [sym_labeled_statement] = STATE(143), + [sym_expression_statement] = STATE(143), + [sym_if_statement] = STATE(143), + [sym_switch_statement] = STATE(143), + [sym_while_statement] = STATE(143), + [sym_do_statement] = STATE(143), + [sym_for_statement] = STATE(143), + [sym_return_statement] = STATE(143), + [sym_break_statement] = STATE(143), + [sym_continue_statement] = STATE(143), + [sym_goto_statement] = STATE(143), + [sym_expression] = STATE(4448), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6083), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(143), + [sym_throw_statement] = STATE(143), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(143), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(143), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2446), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(1858), + [aux_sym_preproc_include_token1] = ACTIONS(1595), + [aux_sym_preproc_include_token2] = ACTIONS(1595), + [aux_sym_preproc_def_token1] = ACTIONS(1595), + [aux_sym_preproc_if_token1] = ACTIONS(1595), + [aux_sym_preproc_if_token2] = ACTIONS(1595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1595), + [sym_preproc_directive] = ACTIONS(1595), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym___extension__] = ACTIONS(1860), + [anon_sym_typedef] = ACTIONS(753), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(1595), + [anon_sym___clrcall] = ACTIONS(1595), + [anon_sym___stdcall] = ACTIONS(1595), + [anon_sym___fastcall] = ACTIONS(1595), + [anon_sym___thiscall] = ACTIONS(1595), + [anon_sym___vectorcall] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(761), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(763), + [anon_sym_else] = ACTIONS(1595), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(771), + [anon_sym_do] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(777), + [anon_sym_break] = ACTIONS(779), + [anon_sym_continue] = ACTIONS(781), + [anon_sym_goto] = ACTIONS(783), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(785), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(1597), + [aux_sym_preproc_undef_token1] = ACTIONS(1595), + [anon_sym_POUND] = ACTIONS(1595), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(1597), + [anon_sym_ATinterface] = ACTIONS(1597), + [anon_sym_ATimplementation] = ACTIONS(1597), + [anon_sym_ATcompatibility_alias] = ACTIONS(1597), + [anon_sym_ATsynthesize] = ACTIONS(1597), + [anon_sym_ATdynamic] = ACTIONS(1597), + [anon_sym_ATtry] = ACTIONS(803), + [anon_sym___try] = ACTIONS(805), + [anon_sym_ATthrow] = ACTIONS(807), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(809), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [142] = { + [sym_declaration] = STATE(144), + [sym_type_definition] = STATE(144), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4242), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2827), + [sym_compound_statement] = STATE(144), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_expression] = STATE(4448), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6083), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(144), + [sym_throw_statement] = STATE(144), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(144), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(144), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2446), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(1858), + [aux_sym_preproc_include_token1] = ACTIONS(1599), + [aux_sym_preproc_include_token2] = ACTIONS(1599), + [aux_sym_preproc_def_token1] = ACTIONS(1599), + [aux_sym_preproc_if_token1] = ACTIONS(1599), + [aux_sym_preproc_if_token2] = ACTIONS(1599), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1599), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1599), + [sym_preproc_directive] = ACTIONS(1599), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym___extension__] = ACTIONS(1860), + [anon_sym_typedef] = ACTIONS(753), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(1599), + [anon_sym___clrcall] = ACTIONS(1599), + [anon_sym___stdcall] = ACTIONS(1599), + [anon_sym___fastcall] = ACTIONS(1599), + [anon_sym___thiscall] = ACTIONS(1599), + [anon_sym___vectorcall] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(761), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(763), + [anon_sym_else] = ACTIONS(1599), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_case] = ACTIONS(1599), + [anon_sym_default] = ACTIONS(1599), + [anon_sym_while] = ACTIONS(771), + [anon_sym_do] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(777), + [anon_sym_break] = ACTIONS(779), + [anon_sym_continue] = ACTIONS(781), + [anon_sym_goto] = ACTIONS(783), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(785), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(1601), + [aux_sym_preproc_undef_token1] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(1599), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(1601), + [anon_sym_ATinterface] = ACTIONS(1601), + [anon_sym_ATimplementation] = ACTIONS(1601), + [anon_sym_ATcompatibility_alias] = ACTIONS(1601), + [anon_sym_ATsynthesize] = ACTIONS(1601), + [anon_sym_ATdynamic] = ACTIONS(1601), + [anon_sym_ATtry] = ACTIONS(803), + [anon_sym___try] = ACTIONS(805), + [anon_sym_ATthrow] = ACTIONS(807), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(809), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [143] = { + [sym_declaration] = STATE(144), + [sym_type_definition] = STATE(144), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4242), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2827), + [sym_compound_statement] = STATE(144), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_expression] = STATE(4448), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6083), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(144), + [sym_throw_statement] = STATE(144), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(144), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(144), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2446), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(1858), + [aux_sym_preproc_include_token1] = ACTIONS(1603), + [aux_sym_preproc_include_token2] = ACTIONS(1603), + [aux_sym_preproc_def_token1] = ACTIONS(1603), + [aux_sym_preproc_if_token1] = ACTIONS(1603), + [aux_sym_preproc_if_token2] = ACTIONS(1603), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1603), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1603), + [sym_preproc_directive] = ACTIONS(1603), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym___extension__] = ACTIONS(1860), + [anon_sym_typedef] = ACTIONS(753), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(1603), + [anon_sym___clrcall] = ACTIONS(1603), + [anon_sym___stdcall] = ACTIONS(1603), + [anon_sym___fastcall] = ACTIONS(1603), + [anon_sym___thiscall] = ACTIONS(1603), + [anon_sym___vectorcall] = ACTIONS(1603), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(761), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(763), + [anon_sym_else] = ACTIONS(1603), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_case] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1603), + [anon_sym_while] = ACTIONS(771), + [anon_sym_do] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(777), + [anon_sym_break] = ACTIONS(779), + [anon_sym_continue] = ACTIONS(781), + [anon_sym_goto] = ACTIONS(783), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(785), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(1605), + [aux_sym_preproc_undef_token1] = ACTIONS(1603), + [anon_sym_POUND] = ACTIONS(1603), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(1605), + [anon_sym_ATinterface] = ACTIONS(1605), + [anon_sym_ATimplementation] = ACTIONS(1605), + [anon_sym_ATcompatibility_alias] = ACTIONS(1605), + [anon_sym_ATsynthesize] = ACTIONS(1605), + [anon_sym_ATdynamic] = ACTIONS(1605), + [anon_sym_ATtry] = ACTIONS(803), + [anon_sym___try] = ACTIONS(805), + [anon_sym_ATthrow] = ACTIONS(807), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(809), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [144] = { + [sym_declaration] = STATE(144), + [sym_type_definition] = STATE(144), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4242), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2827), + [sym_compound_statement] = STATE(144), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_expression] = STATE(4448), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6083), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(144), + [sym_throw_statement] = STATE(144), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(144), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(144), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2446), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(1862), + [aux_sym_preproc_include_token1] = ACTIONS(1610), + [aux_sym_preproc_include_token2] = ACTIONS(1610), + [aux_sym_preproc_def_token1] = ACTIONS(1610), + [aux_sym_preproc_if_token1] = ACTIONS(1610), + [aux_sym_preproc_if_token2] = ACTIONS(1610), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1610), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1610), + [sym_preproc_directive] = ACTIONS(1610), + [anon_sym_LPAREN2] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1618), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1624), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1865), + [anon_sym___extension__] = ACTIONS(1868), + [anon_sym_typedef] = ACTIONS(1871), + [anon_sym_extern] = ACTIONS(1636), + [anon_sym___attribute__] = ACTIONS(1639), + [anon_sym___attribute] = ACTIONS(1639), + [anon_sym_noreturn] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym___declspec] = ACTIONS(1648), + [anon_sym___cdecl] = ACTIONS(1610), + [anon_sym___clrcall] = ACTIONS(1610), + [anon_sym___stdcall] = ACTIONS(1610), + [anon_sym___fastcall] = ACTIONS(1610), + [anon_sym___thiscall] = ACTIONS(1610), + [anon_sym___vectorcall] = ACTIONS(1610), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_signed] = ACTIONS(1654), + [anon_sym_unsigned] = ACTIONS(1654), + [anon_sym_long] = ACTIONS(1654), + [anon_sym_short] = ACTIONS(1654), + [anon_sym_static] = ACTIONS(1636), + [anon_sym_ATautoreleasepool] = ACTIONS(1877), + [anon_sym_auto] = ACTIONS(1636), + [anon_sym_register] = ACTIONS(1636), + [anon_sym_inline] = ACTIONS(1636), + [anon_sym___inline] = ACTIONS(1636), + [anon_sym___inline__] = ACTIONS(1636), + [anon_sym___forceinline] = ACTIONS(1636), + [anon_sym_thread_local] = ACTIONS(1636), + [anon_sym___thread] = ACTIONS(1636), + [anon_sym_CG_EXTERN] = ACTIONS(1636), + [anon_sym_CG_INLINE] = ACTIONS(1636), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(1636), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(1636), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(1636), + [anon_sym_IBOutlet] = ACTIONS(1636), + [anon_sym_IBInspectable] = ACTIONS(1636), + [anon_sym_IB_DESIGNABLE] = ACTIONS(1636), + [anon_sym_NS_INLINE] = ACTIONS(1636), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1636), + [anon_sym_OBJC_EXPORT] = ACTIONS(1636), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(1636), + [anon_sym_UIKIT_EXTERN] = ACTIONS(1636), + [anon_sym_const] = ACTIONS(1660), + [anon_sym_constexpr] = ACTIONS(1642), + [anon_sym_volatile] = ACTIONS(1642), + [anon_sym_restrict] = ACTIONS(1642), + [anon_sym___restrict__] = ACTIONS(1642), + [anon_sym__Atomic] = ACTIONS(1642), + [anon_sym__Noreturn] = ACTIONS(1642), + [anon_sym__Nonnull] = ACTIONS(1642), + [anon_sym_nullable] = ACTIONS(1642), + [anon_sym__Complex] = ACTIONS(1642), + [anon_sym__Nullable] = ACTIONS(1642), + [anon_sym__Nullable_result] = ACTIONS(1642), + [anon_sym__Null_unspecified] = ACTIONS(1642), + [anon_sym___autoreleasing] = ACTIONS(1642), + [anon_sym___block] = ACTIONS(1642), + [anon_sym___bridge] = ACTIONS(1642), + [anon_sym___bridge_retained] = ACTIONS(1642), + [anon_sym___bridge_transfer] = ACTIONS(1642), + [anon_sym___complex] = ACTIONS(1642), + [anon_sym___const] = ACTIONS(1642), + [anon_sym___imag] = ACTIONS(1663), + [anon_sym___kindof] = ACTIONS(1642), + [anon_sym___nonnull] = ACTIONS(1642), + [anon_sym___nullable] = ACTIONS(1642), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(1642), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(1642), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(1642), + [anon_sym___real] = ACTIONS(1663), + [anon_sym___strong] = ACTIONS(1642), + [anon_sym___unsafe_unretained] = ACTIONS(1642), + [anon_sym___unused] = ACTIONS(1642), + [anon_sym___weak] = ACTIONS(1642), + [anon_sym_alignas] = ACTIONS(1666), + [anon_sym__Alignas] = ACTIONS(1666), + [sym_primitive_type] = ACTIONS(1669), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_if] = ACTIONS(1880), + [anon_sym_else] = ACTIONS(1610), + [anon_sym_switch] = ACTIONS(1883), + [anon_sym_case] = ACTIONS(1610), + [anon_sym_default] = ACTIONS(1610), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_do] = ACTIONS(1889), + [anon_sym_for] = ACTIONS(1892), + [anon_sym_in] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1895), + [anon_sym_break] = ACTIONS(1898), + [anon_sym_continue] = ACTIONS(1901), + [anon_sym_goto] = ACTIONS(1904), + [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_sizeof] = ACTIONS(1714), + [anon_sym___alignof__] = ACTIONS(1717), + [anon_sym___alignof] = ACTIONS(1717), + [anon_sym__alignof] = ACTIONS(1717), + [anon_sym_alignof] = ACTIONS(1717), + [anon_sym__Alignof] = ACTIONS(1717), + [anon_sym_offsetof] = ACTIONS(1720), + [anon_sym__Generic] = ACTIONS(1723), + [anon_sym_asm] = ACTIONS(1726), + [anon_sym___asm__] = ACTIONS(1726), + [anon_sym___asm] = ACTIONS(1907), + [sym_number_literal] = ACTIONS(1732), + [anon_sym_L_SQUOTE] = ACTIONS(1735), + [anon_sym_u_SQUOTE] = ACTIONS(1735), + [anon_sym_U_SQUOTE] = ACTIONS(1735), + [anon_sym_u8_SQUOTE] = ACTIONS(1735), + [anon_sym_SQUOTE] = ACTIONS(1735), + [anon_sym_AT] = ACTIONS(1738), + [anon_sym_DQUOTE] = ACTIONS(1741), + [anon_sym_L_DQUOTE] = ACTIONS(1741), + [anon_sym_u_DQUOTE] = ACTIONS(1741), + [anon_sym_U_DQUOTE] = ACTIONS(1741), + [anon_sym_u8_DQUOTE] = ACTIONS(1741), + [sym_true] = ACTIONS(1744), + [sym_false] = ACTIONS(1744), + [anon_sym_NULL] = ACTIONS(1747), + [anon_sym_nullptr] = ACTIONS(1747), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(1750), + [anon_sym___typeof] = ACTIONS(1750), + [anon_sym_typeof] = ACTIONS(1750), + [anon_sym_ATimport] = ACTIONS(1753), + [aux_sym_preproc_undef_token1] = ACTIONS(1610), + [anon_sym_POUND] = ACTIONS(1610), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(1755), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(1755), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1755), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(1755), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(1755), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(1755), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1755), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1755), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1755), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1758), + [anon_sym_NS_AVAILABLE] = ACTIONS(1758), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1758), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1758), + [anon_sym_API_AVAILABLE] = ACTIONS(1758), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1758), + [anon_sym_API_DEPRECATED] = ACTIONS(1758), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1758), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1758), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1758), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1758), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1758), + [anon_sym___deprecated_msg] = ACTIONS(1758), + [anon_sym___deprecated_enum_msg] = ACTIONS(1758), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1758), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1758), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1758), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1758), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1758), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(1758), + [anon_sym_ATprotocol] = ACTIONS(1753), + [anon_sym_ATinterface] = ACTIONS(1753), + [anon_sym_ATimplementation] = ACTIONS(1753), + [anon_sym_ATcompatibility_alias] = ACTIONS(1753), + [anon_sym_ATsynthesize] = ACTIONS(1753), + [anon_sym_ATdynamic] = ACTIONS(1753), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym___try] = ACTIONS(1913), + [anon_sym_ATthrow] = ACTIONS(1916), + [anon_sym_ATselector] = ACTIONS(1770), + [anon_sym_ATavailable] = ACTIONS(1773), + [anon_sym___builtin_available] = ACTIONS(1776), + [anon_sym_va_arg] = ACTIONS(1779), + [anon_sym_ATencode] = ACTIONS(1782), + [anon_sym_ATsynchronized] = ACTIONS(1919), + [anon_sym_BOOL] = ACTIONS(1788), + [anon_sym_IMP] = ACTIONS(1788), + [anon_sym_SEL] = ACTIONS(1788), + [anon_sym_Class] = ACTIONS(1788), + [anon_sym_id] = ACTIONS(1791), + }, + [145] = { + [sym_declaration] = STATE(152), + [sym_type_definition] = STATE(152), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4237), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_compound_statement] = STATE(152), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(152), + [sym_labeled_statement] = STATE(152), + [sym_expression_statement] = STATE(152), + [sym_if_statement] = STATE(152), + [sym_switch_statement] = STATE(152), + [sym_while_statement] = STATE(152), + [sym_do_statement] = STATE(152), + [sym_for_statement] = STATE(152), + [sym_return_statement] = STATE(152), + [sym_break_statement] = STATE(152), + [sym_continue_statement] = STATE(152), + [sym_goto_statement] = STATE(152), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(152), + [sym_throw_statement] = STATE(152), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(152), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(152), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(152), + [sym_identifier] = ACTIONS(1922), + [aux_sym_preproc_include_token1] = ACTIONS(1599), + [aux_sym_preproc_include_token2] = ACTIONS(1599), + [aux_sym_preproc_def_token1] = ACTIONS(1599), + [aux_sym_preproc_if_token1] = ACTIONS(1599), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1599), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1599), + [sym_preproc_directive] = ACTIONS(1599), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(1924), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(1599), + [anon_sym___clrcall] = ACTIONS(1599), + [anon_sym___stdcall] = ACTIONS(1599), + [anon_sym___fastcall] = ACTIONS(1599), + [anon_sym___thiscall] = ACTIONS(1599), + [anon_sym___vectorcall] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1601), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_else] = ACTIONS(1599), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(1599), + [anon_sym_default] = ACTIONS(1599), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(1601), + [aux_sym_preproc_undef_token1] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(1599), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(1601), + [anon_sym_ATinterface] = ACTIONS(1601), + [anon_sym_ATimplementation] = ACTIONS(1601), + [anon_sym_ATcompatibility_alias] = ACTIONS(1601), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [146] = { + [sym_declaration] = STATE(153), + [sym_type_definition] = STATE(153), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4237), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_compound_statement] = STATE(153), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(153), + [sym_labeled_statement] = STATE(153), + [sym_expression_statement] = STATE(153), + [sym_if_statement] = STATE(153), + [sym_switch_statement] = STATE(153), + [sym_while_statement] = STATE(153), + [sym_do_statement] = STATE(153), + [sym_for_statement] = STATE(153), + [sym_return_statement] = STATE(153), + [sym_break_statement] = STATE(153), + [sym_continue_statement] = STATE(153), + [sym_goto_statement] = STATE(153), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(153), + [sym_throw_statement] = STATE(153), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(153), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(153), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(1922), + [aux_sym_preproc_include_token1] = ACTIONS(1595), + [aux_sym_preproc_include_token2] = ACTIONS(1595), + [aux_sym_preproc_def_token1] = ACTIONS(1595), + [aux_sym_preproc_if_token1] = ACTIONS(1595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1595), + [sym_preproc_directive] = ACTIONS(1595), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(1924), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(1595), + [anon_sym___clrcall] = ACTIONS(1595), + [anon_sym___stdcall] = ACTIONS(1595), + [anon_sym___fastcall] = ACTIONS(1595), + [anon_sym___thiscall] = ACTIONS(1595), + [anon_sym___vectorcall] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_else] = ACTIONS(1595), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(1597), + [aux_sym_preproc_undef_token1] = ACTIONS(1595), + [anon_sym_POUND] = ACTIONS(1595), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(1597), + [anon_sym_ATinterface] = ACTIONS(1597), + [anon_sym_ATimplementation] = ACTIONS(1597), + [anon_sym_ATcompatibility_alias] = ACTIONS(1597), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [147] = { + [sym_declaration] = STATE(150), + [sym_type_definition] = STATE(150), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4255), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2917), + [sym_compound_statement] = STATE(150), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(150), + [sym_labeled_statement] = STATE(150), + [sym_expression_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_switch_statement] = STATE(150), + [sym_while_statement] = STATE(150), + [sym_do_statement] = STATE(150), + [sym_for_statement] = STATE(150), + [sym_return_statement] = STATE(150), + [sym_break_statement] = STATE(150), + [sym_continue_statement] = STATE(150), + [sym_goto_statement] = STATE(150), + [sym_expression] = STATE(4502), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6238), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(150), + [sym_throw_statement] = STATE(150), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(150), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(150), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2450), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(150), + [ts_builtin_sym_end] = ACTIONS(1601), + [sym_identifier] = ACTIONS(1926), + [aux_sym_preproc_include_token1] = ACTIONS(1599), + [aux_sym_preproc_include_token2] = ACTIONS(1599), + [aux_sym_preproc_def_token1] = ACTIONS(1599), + [aux_sym_preproc_if_token1] = ACTIONS(1599), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1599), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1599), + [sym_preproc_directive] = ACTIONS(1599), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1930), + [anon_sym_typedef] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(1599), + [anon_sym___clrcall] = ACTIONS(1599), + [anon_sym___stdcall] = ACTIONS(1599), + [anon_sym___fastcall] = ACTIONS(1599), + [anon_sym___thiscall] = ACTIONS(1599), + [anon_sym___vectorcall] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(1936), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(1938), + [anon_sym_else] = ACTIONS(1599), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1599), + [anon_sym_default] = ACTIONS(1599), + [anon_sym_while] = ACTIONS(1942), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1946), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1950), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_goto] = ACTIONS(1954), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(1956), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(1601), + [aux_sym_preproc_undef_token1] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(1599), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(1601), + [anon_sym_ATinterface] = ACTIONS(1601), + [anon_sym_ATimplementation] = ACTIONS(1601), + [anon_sym_ATcompatibility_alias] = ACTIONS(1601), + [anon_sym_ATtry] = ACTIONS(1958), + [anon_sym___try] = ACTIONS(1960), + [anon_sym_ATthrow] = ACTIONS(1962), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(1964), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [148] = { + [sym_declaration] = STATE(150), + [sym_type_definition] = STATE(150), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4255), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2917), + [sym_compound_statement] = STATE(150), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(150), + [sym_labeled_statement] = STATE(150), + [sym_expression_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_switch_statement] = STATE(150), + [sym_while_statement] = STATE(150), + [sym_do_statement] = STATE(150), + [sym_for_statement] = STATE(150), + [sym_return_statement] = STATE(150), + [sym_break_statement] = STATE(150), + [sym_continue_statement] = STATE(150), + [sym_goto_statement] = STATE(150), + [sym_expression] = STATE(4502), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6238), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(150), + [sym_throw_statement] = STATE(150), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(150), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(150), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2450), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(150), + [ts_builtin_sym_end] = ACTIONS(1605), + [sym_identifier] = ACTIONS(1926), + [aux_sym_preproc_include_token1] = ACTIONS(1603), + [aux_sym_preproc_include_token2] = ACTIONS(1603), + [aux_sym_preproc_def_token1] = ACTIONS(1603), + [aux_sym_preproc_if_token1] = ACTIONS(1603), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1603), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1603), + [sym_preproc_directive] = ACTIONS(1603), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1930), + [anon_sym_typedef] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(1603), + [anon_sym___clrcall] = ACTIONS(1603), + [anon_sym___stdcall] = ACTIONS(1603), + [anon_sym___fastcall] = ACTIONS(1603), + [anon_sym___thiscall] = ACTIONS(1603), + [anon_sym___vectorcall] = ACTIONS(1603), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(1936), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(1938), + [anon_sym_else] = ACTIONS(1603), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1603), + [anon_sym_while] = ACTIONS(1942), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1946), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1950), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_goto] = ACTIONS(1954), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(1956), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(1605), + [aux_sym_preproc_undef_token1] = ACTIONS(1603), + [anon_sym_POUND] = ACTIONS(1603), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(1605), + [anon_sym_ATinterface] = ACTIONS(1605), + [anon_sym_ATimplementation] = ACTIONS(1605), + [anon_sym_ATcompatibility_alias] = ACTIONS(1605), + [anon_sym_ATtry] = ACTIONS(1958), + [anon_sym___try] = ACTIONS(1960), + [anon_sym_ATthrow] = ACTIONS(1962), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(1964), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [149] = { + [sym_declaration] = STATE(148), + [sym_type_definition] = STATE(148), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4255), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2917), + [sym_compound_statement] = STATE(148), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(148), + [sym_labeled_statement] = STATE(148), + [sym_expression_statement] = STATE(148), + [sym_if_statement] = STATE(148), + [sym_switch_statement] = STATE(148), + [sym_while_statement] = STATE(148), + [sym_do_statement] = STATE(148), + [sym_for_statement] = STATE(148), + [sym_return_statement] = STATE(148), + [sym_break_statement] = STATE(148), + [sym_continue_statement] = STATE(148), + [sym_goto_statement] = STATE(148), + [sym_expression] = STATE(4502), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6238), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(148), + [sym_throw_statement] = STATE(148), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(148), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(148), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2450), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(148), + [ts_builtin_sym_end] = ACTIONS(1597), + [sym_identifier] = ACTIONS(1926), + [aux_sym_preproc_include_token1] = ACTIONS(1595), + [aux_sym_preproc_include_token2] = ACTIONS(1595), + [aux_sym_preproc_def_token1] = ACTIONS(1595), + [aux_sym_preproc_if_token1] = ACTIONS(1595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1595), + [sym_preproc_directive] = ACTIONS(1595), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1930), + [anon_sym_typedef] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(1595), + [anon_sym___clrcall] = ACTIONS(1595), + [anon_sym___stdcall] = ACTIONS(1595), + [anon_sym___fastcall] = ACTIONS(1595), + [anon_sym___thiscall] = ACTIONS(1595), + [anon_sym___vectorcall] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(1936), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(1938), + [anon_sym_else] = ACTIONS(1595), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1942), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1946), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1950), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_goto] = ACTIONS(1954), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(1956), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(1597), + [aux_sym_preproc_undef_token1] = ACTIONS(1595), + [anon_sym_POUND] = ACTIONS(1595), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(1597), + [anon_sym_ATinterface] = ACTIONS(1597), + [anon_sym_ATimplementation] = ACTIONS(1597), + [anon_sym_ATcompatibility_alias] = ACTIONS(1597), + [anon_sym_ATtry] = ACTIONS(1958), + [anon_sym___try] = ACTIONS(1960), + [anon_sym_ATthrow] = ACTIONS(1962), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(1964), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [150] = { + [sym_declaration] = STATE(150), + [sym_type_definition] = STATE(150), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4255), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2917), + [sym_compound_statement] = STATE(150), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(150), + [sym_labeled_statement] = STATE(150), + [sym_expression_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_switch_statement] = STATE(150), + [sym_while_statement] = STATE(150), + [sym_do_statement] = STATE(150), + [sym_for_statement] = STATE(150), + [sym_return_statement] = STATE(150), + [sym_break_statement] = STATE(150), + [sym_continue_statement] = STATE(150), + [sym_goto_statement] = STATE(150), + [sym_expression] = STATE(4502), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6238), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(150), + [sym_throw_statement] = STATE(150), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(150), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(150), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2450), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(150), + [ts_builtin_sym_end] = ACTIONS(1753), + [sym_identifier] = ACTIONS(1966), + [aux_sym_preproc_include_token1] = ACTIONS(1610), + [aux_sym_preproc_include_token2] = ACTIONS(1610), + [aux_sym_preproc_def_token1] = ACTIONS(1610), + [aux_sym_preproc_if_token1] = ACTIONS(1610), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1610), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1610), + [sym_preproc_directive] = ACTIONS(1610), + [anon_sym_LPAREN2] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1618), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1624), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1969), + [anon_sym___extension__] = ACTIONS(1972), + [anon_sym_typedef] = ACTIONS(1975), + [anon_sym_extern] = ACTIONS(1636), + [anon_sym___attribute__] = ACTIONS(1639), + [anon_sym___attribute] = ACTIONS(1639), + [anon_sym_noreturn] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym___declspec] = ACTIONS(1648), + [anon_sym___cdecl] = ACTIONS(1610), + [anon_sym___clrcall] = ACTIONS(1610), + [anon_sym___stdcall] = ACTIONS(1610), + [anon_sym___fastcall] = ACTIONS(1610), + [anon_sym___thiscall] = ACTIONS(1610), + [anon_sym___vectorcall] = ACTIONS(1610), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_signed] = ACTIONS(1654), + [anon_sym_unsigned] = ACTIONS(1654), + [anon_sym_long] = ACTIONS(1654), + [anon_sym_short] = ACTIONS(1654), + [anon_sym_static] = ACTIONS(1636), + [anon_sym_ATautoreleasepool] = ACTIONS(1981), + [anon_sym_auto] = ACTIONS(1636), + [anon_sym_register] = ACTIONS(1636), + [anon_sym_inline] = ACTIONS(1636), + [anon_sym___inline] = ACTIONS(1636), + [anon_sym___inline__] = ACTIONS(1636), + [anon_sym___forceinline] = ACTIONS(1636), + [anon_sym_thread_local] = ACTIONS(1636), + [anon_sym___thread] = ACTIONS(1636), + [anon_sym_CG_EXTERN] = ACTIONS(1636), + [anon_sym_CG_INLINE] = ACTIONS(1636), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(1636), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(1636), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(1636), + [anon_sym_IBOutlet] = ACTIONS(1636), + [anon_sym_IBInspectable] = ACTIONS(1636), + [anon_sym_IB_DESIGNABLE] = ACTIONS(1636), + [anon_sym_NS_INLINE] = ACTIONS(1636), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1636), + [anon_sym_OBJC_EXPORT] = ACTIONS(1636), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(1636), + [anon_sym_UIKIT_EXTERN] = ACTIONS(1636), + [anon_sym_const] = ACTIONS(1660), + [anon_sym_constexpr] = ACTIONS(1642), + [anon_sym_volatile] = ACTIONS(1642), + [anon_sym_restrict] = ACTIONS(1642), + [anon_sym___restrict__] = ACTIONS(1642), + [anon_sym__Atomic] = ACTIONS(1642), + [anon_sym__Noreturn] = ACTIONS(1642), + [anon_sym__Nonnull] = ACTIONS(1642), + [anon_sym_nullable] = ACTIONS(1642), + [anon_sym__Complex] = ACTIONS(1642), + [anon_sym__Nullable] = ACTIONS(1642), + [anon_sym__Nullable_result] = ACTIONS(1642), + [anon_sym__Null_unspecified] = ACTIONS(1642), + [anon_sym___autoreleasing] = ACTIONS(1642), + [anon_sym___block] = ACTIONS(1642), + [anon_sym___bridge] = ACTIONS(1642), + [anon_sym___bridge_retained] = ACTIONS(1642), + [anon_sym___bridge_transfer] = ACTIONS(1642), + [anon_sym___complex] = ACTIONS(1642), + [anon_sym___const] = ACTIONS(1642), + [anon_sym___imag] = ACTIONS(1663), + [anon_sym___kindof] = ACTIONS(1642), + [anon_sym___nonnull] = ACTIONS(1642), + [anon_sym___nullable] = ACTIONS(1642), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(1642), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(1642), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(1642), + [anon_sym___real] = ACTIONS(1663), + [anon_sym___strong] = ACTIONS(1642), + [anon_sym___unsafe_unretained] = ACTIONS(1642), + [anon_sym___unused] = ACTIONS(1642), + [anon_sym___weak] = ACTIONS(1642), + [anon_sym_alignas] = ACTIONS(1666), + [anon_sym__Alignas] = ACTIONS(1666), + [sym_primitive_type] = ACTIONS(1669), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_if] = ACTIONS(1984), + [anon_sym_else] = ACTIONS(1610), + [anon_sym_switch] = ACTIONS(1987), + [anon_sym_case] = ACTIONS(1610), + [anon_sym_default] = ACTIONS(1610), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(1993), + [anon_sym_for] = ACTIONS(1996), + [anon_sym_in] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1999), + [anon_sym_break] = ACTIONS(2002), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_sizeof] = ACTIONS(1714), + [anon_sym___alignof__] = ACTIONS(1717), + [anon_sym___alignof] = ACTIONS(1717), + [anon_sym__alignof] = ACTIONS(1717), + [anon_sym_alignof] = ACTIONS(1717), + [anon_sym__Alignof] = ACTIONS(1717), + [anon_sym_offsetof] = ACTIONS(1720), + [anon_sym__Generic] = ACTIONS(1723), + [anon_sym_asm] = ACTIONS(1726), + [anon_sym___asm__] = ACTIONS(1726), + [anon_sym___asm] = ACTIONS(2011), + [sym_number_literal] = ACTIONS(1732), + [anon_sym_L_SQUOTE] = ACTIONS(1735), + [anon_sym_u_SQUOTE] = ACTIONS(1735), + [anon_sym_U_SQUOTE] = ACTIONS(1735), + [anon_sym_u8_SQUOTE] = ACTIONS(1735), + [anon_sym_SQUOTE] = ACTIONS(1735), + [anon_sym_AT] = ACTIONS(1738), + [anon_sym_DQUOTE] = ACTIONS(1741), + [anon_sym_L_DQUOTE] = ACTIONS(1741), + [anon_sym_u_DQUOTE] = ACTIONS(1741), + [anon_sym_U_DQUOTE] = ACTIONS(1741), + [anon_sym_u8_DQUOTE] = ACTIONS(1741), + [sym_true] = ACTIONS(1744), + [sym_false] = ACTIONS(1744), + [anon_sym_NULL] = ACTIONS(1747), + [anon_sym_nullptr] = ACTIONS(1747), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(1750), + [anon_sym___typeof] = ACTIONS(1750), + [anon_sym_typeof] = ACTIONS(1750), + [anon_sym_ATimport] = ACTIONS(1753), + [aux_sym_preproc_undef_token1] = ACTIONS(1610), + [anon_sym_POUND] = ACTIONS(1610), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(1755), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(1755), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1755), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(1755), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(1755), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(1755), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1755), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1755), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1755), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1758), + [anon_sym_NS_AVAILABLE] = ACTIONS(1758), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1758), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1758), + [anon_sym_API_AVAILABLE] = ACTIONS(1758), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1758), + [anon_sym_API_DEPRECATED] = ACTIONS(1758), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1758), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1758), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1758), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1758), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1758), + [anon_sym___deprecated_msg] = ACTIONS(1758), + [anon_sym___deprecated_enum_msg] = ACTIONS(1758), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1758), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1758), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1758), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1758), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1758), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(1758), + [anon_sym_ATprotocol] = ACTIONS(1753), + [anon_sym_ATinterface] = ACTIONS(1753), + [anon_sym_ATimplementation] = ACTIONS(1753), + [anon_sym_ATcompatibility_alias] = ACTIONS(1753), + [anon_sym_ATtry] = ACTIONS(2014), + [anon_sym___try] = ACTIONS(2017), + [anon_sym_ATthrow] = ACTIONS(2020), + [anon_sym_ATselector] = ACTIONS(1770), + [anon_sym_ATavailable] = ACTIONS(1773), + [anon_sym___builtin_available] = ACTIONS(1776), + [anon_sym_va_arg] = ACTIONS(1779), + [anon_sym_ATencode] = ACTIONS(1782), + [anon_sym_ATsynchronized] = ACTIONS(2023), + [anon_sym_BOOL] = ACTIONS(1788), + [anon_sym_IMP] = ACTIONS(1788), + [anon_sym_SEL] = ACTIONS(1788), + [anon_sym_Class] = ACTIONS(1788), + [anon_sym_id] = ACTIONS(1791), + }, + [151] = { + [sym_declaration] = STATE(147), + [sym_type_definition] = STATE(147), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4255), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2917), + [sym_compound_statement] = STATE(147), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(147), + [sym_labeled_statement] = STATE(147), + [sym_expression_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_switch_statement] = STATE(147), + [sym_while_statement] = STATE(147), + [sym_do_statement] = STATE(147), + [sym_for_statement] = STATE(147), + [sym_return_statement] = STATE(147), + [sym_break_statement] = STATE(147), + [sym_continue_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym_expression] = STATE(4502), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6238), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(147), + [sym_throw_statement] = STATE(147), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(147), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(147), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2450), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(147), + [ts_builtin_sym_end] = ACTIONS(1591), + [sym_identifier] = ACTIONS(1926), + [aux_sym_preproc_include_token1] = ACTIONS(1581), + [aux_sym_preproc_include_token2] = ACTIONS(1581), + [aux_sym_preproc_def_token1] = ACTIONS(1581), + [aux_sym_preproc_if_token1] = ACTIONS(1581), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1581), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1581), + [sym_preproc_directive] = ACTIONS(1581), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1930), + [anon_sym_typedef] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(1581), + [anon_sym___clrcall] = ACTIONS(1581), + [anon_sym___stdcall] = ACTIONS(1581), + [anon_sym___fastcall] = ACTIONS(1581), + [anon_sym___thiscall] = ACTIONS(1581), + [anon_sym___vectorcall] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(1936), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(1938), + [anon_sym_else] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1581), + [anon_sym_default] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1942), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1946), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1950), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_goto] = ACTIONS(1954), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(1956), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(1591), + [aux_sym_preproc_undef_token1] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(1581), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(1591), + [anon_sym_ATinterface] = ACTIONS(1591), + [anon_sym_ATimplementation] = ACTIONS(1591), + [anon_sym_ATcompatibility_alias] = ACTIONS(1591), + [anon_sym_ATtry] = ACTIONS(1958), + [anon_sym___try] = ACTIONS(1960), + [anon_sym_ATthrow] = ACTIONS(1962), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(1964), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [152] = { + [sym_declaration] = STATE(152), + [sym_type_definition] = STATE(152), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4237), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_compound_statement] = STATE(152), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(152), + [sym_labeled_statement] = STATE(152), + [sym_expression_statement] = STATE(152), + [sym_if_statement] = STATE(152), + [sym_switch_statement] = STATE(152), + [sym_while_statement] = STATE(152), + [sym_do_statement] = STATE(152), + [sym_for_statement] = STATE(152), + [sym_return_statement] = STATE(152), + [sym_break_statement] = STATE(152), + [sym_continue_statement] = STATE(152), + [sym_goto_statement] = STATE(152), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(152), + [sym_throw_statement] = STATE(152), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(152), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(152), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(152), + [sym_identifier] = ACTIONS(2026), + [aux_sym_preproc_include_token1] = ACTIONS(1610), + [aux_sym_preproc_include_token2] = ACTIONS(1610), + [aux_sym_preproc_def_token1] = ACTIONS(1610), + [aux_sym_preproc_if_token1] = ACTIONS(1610), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1610), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1610), + [sym_preproc_directive] = ACTIONS(1610), + [anon_sym_LPAREN2] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1618), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1624), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(2029), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_typedef] = ACTIONS(2035), + [anon_sym_extern] = ACTIONS(1636), + [anon_sym___attribute__] = ACTIONS(1639), + [anon_sym___attribute] = ACTIONS(1639), + [anon_sym_noreturn] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym___declspec] = ACTIONS(1648), + [anon_sym___cdecl] = ACTIONS(1610), + [anon_sym___clrcall] = ACTIONS(1610), + [anon_sym___stdcall] = ACTIONS(1610), + [anon_sym___fastcall] = ACTIONS(1610), + [anon_sym___thiscall] = ACTIONS(1610), + [anon_sym___vectorcall] = ACTIONS(1610), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(1753), + [anon_sym_signed] = ACTIONS(1654), + [anon_sym_unsigned] = ACTIONS(1654), + [anon_sym_long] = ACTIONS(1654), + [anon_sym_short] = ACTIONS(1654), + [anon_sym_static] = ACTIONS(1636), + [anon_sym_ATautoreleasepool] = ACTIONS(2041), + [anon_sym_auto] = ACTIONS(1636), + [anon_sym_register] = ACTIONS(1636), + [anon_sym_inline] = ACTIONS(1636), + [anon_sym___inline] = ACTIONS(1636), + [anon_sym___inline__] = ACTIONS(1636), + [anon_sym___forceinline] = ACTIONS(1636), + [anon_sym_thread_local] = ACTIONS(1636), + [anon_sym___thread] = ACTIONS(1636), + [anon_sym_CG_EXTERN] = ACTIONS(1636), + [anon_sym_CG_INLINE] = ACTIONS(1636), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(1636), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(1636), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(1636), + [anon_sym_IBOutlet] = ACTIONS(1636), + [anon_sym_IBInspectable] = ACTIONS(1636), + [anon_sym_IB_DESIGNABLE] = ACTIONS(1636), + [anon_sym_NS_INLINE] = ACTIONS(1636), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1636), + [anon_sym_OBJC_EXPORT] = ACTIONS(1636), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(1636), + [anon_sym_UIKIT_EXTERN] = ACTIONS(1636), + [anon_sym_const] = ACTIONS(1660), + [anon_sym_constexpr] = ACTIONS(1642), + [anon_sym_volatile] = ACTIONS(1642), + [anon_sym_restrict] = ACTIONS(1642), + [anon_sym___restrict__] = ACTIONS(1642), + [anon_sym__Atomic] = ACTIONS(1642), + [anon_sym__Noreturn] = ACTIONS(1642), + [anon_sym__Nonnull] = ACTIONS(1642), + [anon_sym_nullable] = ACTIONS(1642), + [anon_sym__Complex] = ACTIONS(1642), + [anon_sym__Nullable] = ACTIONS(1642), + [anon_sym__Nullable_result] = ACTIONS(1642), + [anon_sym__Null_unspecified] = ACTIONS(1642), + [anon_sym___autoreleasing] = ACTIONS(1642), + [anon_sym___block] = ACTIONS(1642), + [anon_sym___bridge] = ACTIONS(1642), + [anon_sym___bridge_retained] = ACTIONS(1642), + [anon_sym___bridge_transfer] = ACTIONS(1642), + [anon_sym___complex] = ACTIONS(1642), + [anon_sym___const] = ACTIONS(1642), + [anon_sym___imag] = ACTIONS(1663), + [anon_sym___kindof] = ACTIONS(1642), + [anon_sym___nonnull] = ACTIONS(1642), + [anon_sym___nullable] = ACTIONS(1642), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(1642), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(1642), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(1642), + [anon_sym___real] = ACTIONS(1663), + [anon_sym___strong] = ACTIONS(1642), + [anon_sym___unsafe_unretained] = ACTIONS(1642), + [anon_sym___unused] = ACTIONS(1642), + [anon_sym___weak] = ACTIONS(1642), + [anon_sym_alignas] = ACTIONS(1666), + [anon_sym__Alignas] = ACTIONS(1666), + [sym_primitive_type] = ACTIONS(1669), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_else] = ACTIONS(1610), + [anon_sym_switch] = ACTIONS(2047), + [anon_sym_case] = ACTIONS(1610), + [anon_sym_default] = ACTIONS(1610), + [anon_sym_while] = ACTIONS(2050), + [anon_sym_do] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2056), + [anon_sym_in] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(2059), + [anon_sym_break] = ACTIONS(2062), + [anon_sym_continue] = ACTIONS(2065), + [anon_sym_goto] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_sizeof] = ACTIONS(1714), + [anon_sym___alignof__] = ACTIONS(1717), + [anon_sym___alignof] = ACTIONS(1717), + [anon_sym__alignof] = ACTIONS(1717), + [anon_sym_alignof] = ACTIONS(1717), + [anon_sym__Alignof] = ACTIONS(1717), + [anon_sym_offsetof] = ACTIONS(1720), + [anon_sym__Generic] = ACTIONS(1723), + [anon_sym_asm] = ACTIONS(1726), + [anon_sym___asm__] = ACTIONS(1726), + [anon_sym___asm] = ACTIONS(2071), + [sym_number_literal] = ACTIONS(1732), + [anon_sym_L_SQUOTE] = ACTIONS(1735), + [anon_sym_u_SQUOTE] = ACTIONS(1735), + [anon_sym_U_SQUOTE] = ACTIONS(1735), + [anon_sym_u8_SQUOTE] = ACTIONS(1735), + [anon_sym_SQUOTE] = ACTIONS(1735), + [anon_sym_AT] = ACTIONS(1738), + [anon_sym_DQUOTE] = ACTIONS(1741), + [anon_sym_L_DQUOTE] = ACTIONS(1741), + [anon_sym_u_DQUOTE] = ACTIONS(1741), + [anon_sym_U_DQUOTE] = ACTIONS(1741), + [anon_sym_u8_DQUOTE] = ACTIONS(1741), + [sym_true] = ACTIONS(1744), + [sym_false] = ACTIONS(1744), + [anon_sym_NULL] = ACTIONS(1747), + [anon_sym_nullptr] = ACTIONS(1747), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(1750), + [anon_sym___typeof] = ACTIONS(1750), + [anon_sym_typeof] = ACTIONS(1750), + [anon_sym_ATimport] = ACTIONS(1753), + [aux_sym_preproc_undef_token1] = ACTIONS(1610), + [anon_sym_POUND] = ACTIONS(1610), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(1755), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(1755), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1755), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(1755), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(1755), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(1755), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1755), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1755), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1755), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1758), + [anon_sym_NS_AVAILABLE] = ACTIONS(1758), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1758), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1758), + [anon_sym_API_AVAILABLE] = ACTIONS(1758), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1758), + [anon_sym_API_DEPRECATED] = ACTIONS(1758), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1758), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1758), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1758), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1758), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1758), + [anon_sym___deprecated_msg] = ACTIONS(1758), + [anon_sym___deprecated_enum_msg] = ACTIONS(1758), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1758), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1758), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1758), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1758), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1758), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(1758), + [anon_sym_ATprotocol] = ACTIONS(1753), + [anon_sym_ATinterface] = ACTIONS(1753), + [anon_sym_ATimplementation] = ACTIONS(1753), + [anon_sym_ATcompatibility_alias] = ACTIONS(1753), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym___try] = ACTIONS(2077), + [anon_sym_ATthrow] = ACTIONS(2080), + [anon_sym_ATselector] = ACTIONS(1770), + [anon_sym_ATavailable] = ACTIONS(1773), + [anon_sym___builtin_available] = ACTIONS(1776), + [anon_sym_va_arg] = ACTIONS(1779), + [anon_sym_ATencode] = ACTIONS(1782), + [anon_sym_ATsynchronized] = ACTIONS(2083), + [anon_sym_BOOL] = ACTIONS(1788), + [anon_sym_IMP] = ACTIONS(1788), + [anon_sym_SEL] = ACTIONS(1788), + [anon_sym_Class] = ACTIONS(1788), + [anon_sym_id] = ACTIONS(1791), + }, + [153] = { + [sym_declaration] = STATE(152), + [sym_type_definition] = STATE(152), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4237), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_compound_statement] = STATE(152), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(152), + [sym_labeled_statement] = STATE(152), + [sym_expression_statement] = STATE(152), + [sym_if_statement] = STATE(152), + [sym_switch_statement] = STATE(152), + [sym_while_statement] = STATE(152), + [sym_do_statement] = STATE(152), + [sym_for_statement] = STATE(152), + [sym_return_statement] = STATE(152), + [sym_break_statement] = STATE(152), + [sym_continue_statement] = STATE(152), + [sym_goto_statement] = STATE(152), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(152), + [sym_throw_statement] = STATE(152), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(152), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(152), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(152), + [sym_identifier] = ACTIONS(1922), + [aux_sym_preproc_include_token1] = ACTIONS(1603), + [aux_sym_preproc_include_token2] = ACTIONS(1603), + [aux_sym_preproc_def_token1] = ACTIONS(1603), + [aux_sym_preproc_if_token1] = ACTIONS(1603), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1603), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1603), + [sym_preproc_directive] = ACTIONS(1603), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(1924), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(1603), + [anon_sym___clrcall] = ACTIONS(1603), + [anon_sym___stdcall] = ACTIONS(1603), + [anon_sym___fastcall] = ACTIONS(1603), + [anon_sym___thiscall] = ACTIONS(1603), + [anon_sym___vectorcall] = ACTIONS(1603), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1605), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_else] = ACTIONS(1603), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1603), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(1605), + [aux_sym_preproc_undef_token1] = ACTIONS(1603), + [anon_sym_POUND] = ACTIONS(1603), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(1605), + [anon_sym_ATinterface] = ACTIONS(1605), + [anon_sym_ATimplementation] = ACTIONS(1605), + [anon_sym_ATcompatibility_alias] = ACTIONS(1605), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [154] = { + [sym_declaration] = STATE(145), + [sym_type_definition] = STATE(145), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4237), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2865), + [sym_compound_statement] = STATE(145), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(145), + [sym_labeled_statement] = STATE(145), + [sym_expression_statement] = STATE(145), + [sym_if_statement] = STATE(145), + [sym_switch_statement] = STATE(145), + [sym_while_statement] = STATE(145), + [sym_do_statement] = STATE(145), + [sym_for_statement] = STATE(145), + [sym_return_statement] = STATE(145), + [sym_break_statement] = STATE(145), + [sym_continue_statement] = STATE(145), + [sym_goto_statement] = STATE(145), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(145), + [sym_throw_statement] = STATE(145), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(145), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(145), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(145), + [sym_identifier] = ACTIONS(1922), + [aux_sym_preproc_include_token1] = ACTIONS(1581), + [aux_sym_preproc_include_token2] = ACTIONS(1581), + [aux_sym_preproc_def_token1] = ACTIONS(1581), + [aux_sym_preproc_if_token1] = ACTIONS(1581), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1581), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1581), + [sym_preproc_directive] = ACTIONS(1581), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(1924), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(1581), + [anon_sym___clrcall] = ACTIONS(1581), + [anon_sym___stdcall] = ACTIONS(1581), + [anon_sym___fastcall] = ACTIONS(1581), + [anon_sym___thiscall] = ACTIONS(1581), + [anon_sym___vectorcall] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_else] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(1581), + [anon_sym_default] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATimport] = ACTIONS(1591), + [aux_sym_preproc_undef_token1] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(1581), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(1591), + [anon_sym_ATinterface] = ACTIONS(1591), + [anon_sym_ATimplementation] = ACTIONS(1591), + [anon_sym_ATcompatibility_alias] = ACTIONS(1591), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [155] = { + [sym_declaration] = STATE(156), + [sym_type_definition] = STATE(156), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4233), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2911), + [sym_compound_statement] = STATE(156), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(156), + [sym_labeled_statement] = STATE(156), + [sym_expression_statement] = STATE(156), + [sym_if_statement] = STATE(156), + [sym_switch_statement] = STATE(156), + [sym_while_statement] = STATE(156), + [sym_do_statement] = STATE(156), + [sym_for_statement] = STATE(156), + [sym_return_statement] = STATE(156), + [sym_break_statement] = STATE(156), + [sym_continue_statement] = STATE(156), + [sym_goto_statement] = STATE(156), + [sym_expression] = STATE(4451), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6542), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(156), + [sym_throw_statement] = STATE(156), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(156), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(156), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2454), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(156), + [sym_identifier] = ACTIONS(2086), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym___extension__] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2092), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(2094), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(2096), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_else] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(2100), + [anon_sym_while] = ACTIONS(2102), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2106), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_goto] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym___try] = ACTIONS(2120), + [anon_sym_ATthrow] = ACTIONS(2122), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2124), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [156] = { + [sym_declaration] = STATE(165), + [sym_type_definition] = STATE(165), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4233), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2911), + [sym_compound_statement] = STATE(165), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(165), + [sym_labeled_statement] = STATE(165), + [sym_expression_statement] = STATE(165), + [sym_if_statement] = STATE(165), + [sym_switch_statement] = STATE(165), + [sym_while_statement] = STATE(165), + [sym_do_statement] = STATE(165), + [sym_for_statement] = STATE(165), + [sym_return_statement] = STATE(165), + [sym_break_statement] = STATE(165), + [sym_continue_statement] = STATE(165), + [sym_goto_statement] = STATE(165), + [sym_expression] = STATE(4451), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6542), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(165), + [sym_throw_statement] = STATE(165), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(165), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(165), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2454), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(165), + [sym_identifier] = ACTIONS(2086), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym___extension__] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2092), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(2094), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(2096), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_else] = ACTIONS(1599), + [anon_sym_switch] = ACTIONS(2100), + [anon_sym_while] = ACTIONS(2102), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2106), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_goto] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym___try] = ACTIONS(2120), + [anon_sym_ATthrow] = ACTIONS(2122), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2124), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [157] = { + [sym_declaration] = STATE(957), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4254), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(981), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(981), + [sym_statement] = STATE(957), + [sym_labeled_statement] = STATE(981), + [sym_expression_statement] = STATE(981), + [sym_if_statement] = STATE(981), + [sym_switch_statement] = STATE(981), + [sym_case_statement] = STATE(981), + [sym_while_statement] = STATE(981), + [sym_do_statement] = STATE(981), + [sym_for_statement] = STATE(981), + [sym_return_statement] = STATE(981), + [sym_break_statement] = STATE(981), + [sym_continue_statement] = STATE(981), + [sym_goto_statement] = STATE(981), + [sym_expression] = STATE(4465), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6211), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(981), + [sym_throw_statement] = STATE(981), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(981), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(981), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2472), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(2126), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2128), + [anon_sym___extension__] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(73), + [anon_sym_default] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym___try] = ACTIONS(2136), + [anon_sym_ATthrow] = ACTIONS(2138), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2140), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [158] = { + [sym_declaration] = STATE(411), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4253), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(406), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(406), + [sym_statement] = STATE(411), + [sym_labeled_statement] = STATE(406), + [sym_expression_statement] = STATE(406), + [sym_if_statement] = STATE(406), + [sym_switch_statement] = STATE(406), + [sym_case_statement] = STATE(406), + [sym_while_statement] = STATE(406), + [sym_do_statement] = STATE(406), + [sym_for_statement] = STATE(406), + [sym_return_statement] = STATE(406), + [sym_break_statement] = STATE(406), + [sym_continue_statement] = STATE(406), + [sym_goto_statement] = STATE(406), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(406), + [sym_throw_statement] = STATE(406), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(406), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(406), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(1794), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(307), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [159] = { + [sym_declaration] = STATE(167), + [sym_type_definition] = STATE(167), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4233), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2911), + [sym_compound_statement] = STATE(167), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(167), + [sym_labeled_statement] = STATE(167), + [sym_expression_statement] = STATE(167), + [sym_if_statement] = STATE(167), + [sym_switch_statement] = STATE(167), + [sym_while_statement] = STATE(167), + [sym_do_statement] = STATE(167), + [sym_for_statement] = STATE(167), + [sym_return_statement] = STATE(167), + [sym_break_statement] = STATE(167), + [sym_continue_statement] = STATE(167), + [sym_goto_statement] = STATE(167), + [sym_expression] = STATE(4451), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6542), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(167), + [sym_throw_statement] = STATE(167), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(167), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(167), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2454), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(167), + [sym_identifier] = ACTIONS(2086), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym___extension__] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2092), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(2094), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(2096), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_else] = ACTIONS(1595), + [anon_sym_switch] = ACTIONS(2100), + [anon_sym_while] = ACTIONS(2102), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2106), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_goto] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym___try] = ACTIONS(2120), + [anon_sym_ATthrow] = ACTIONS(2122), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2124), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [160] = { + [sym_declaration] = STATE(721), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4237), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(809), + [sym_statement] = STATE(721), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(1922), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [161] = { + [sym_declaration] = STATE(833), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4255), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(766), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(766), + [sym_statement] = STATE(833), + [sym_labeled_statement] = STATE(766), + [sym_expression_statement] = STATE(766), + [sym_if_statement] = STATE(766), + [sym_switch_statement] = STATE(766), + [sym_case_statement] = STATE(766), + [sym_while_statement] = STATE(766), + [sym_do_statement] = STATE(766), + [sym_for_statement] = STATE(766), + [sym_return_statement] = STATE(766), + [sym_break_statement] = STATE(766), + [sym_continue_statement] = STATE(766), + [sym_goto_statement] = STATE(766), + [sym_expression] = STATE(4502), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6238), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(766), + [sym_throw_statement] = STATE(766), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(766), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(766), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2450), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(1926), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(1936), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(1938), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(73), + [anon_sym_default] = ACTIONS(75), + [anon_sym_while] = ACTIONS(1942), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1946), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1950), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_goto] = ACTIONS(1954), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(1956), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATtry] = ACTIONS(1958), + [anon_sym___try] = ACTIONS(1960), + [anon_sym_ATthrow] = ACTIONS(1962), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(1964), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [162] = { + [sym_declaration] = STATE(238), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4246), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(274), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(274), + [sym_statement] = STATE(238), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(274), + [sym_throw_statement] = STATE(274), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(274), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(274), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(1579), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [163] = { + [sym_declaration] = STATE(957), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4254), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(809), + [sym_statement] = STATE(957), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2465), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(2142), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATtry] = ACTIONS(2154), + [anon_sym___try] = ACTIONS(2156), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2158), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [164] = { + [sym_declaration] = STATE(599), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4242), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(588), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(588), + [sym_statement] = STATE(599), + [sym_labeled_statement] = STATE(588), + [sym_expression_statement] = STATE(588), + [sym_if_statement] = STATE(588), + [sym_switch_statement] = STATE(588), + [sym_case_statement] = STATE(588), + [sym_while_statement] = STATE(588), + [sym_do_statement] = STATE(588), + [sym_for_statement] = STATE(588), + [sym_return_statement] = STATE(588), + [sym_break_statement] = STATE(588), + [sym_continue_statement] = STATE(588), + [sym_goto_statement] = STATE(588), + [sym_expression] = STATE(4448), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6083), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(588), + [sym_throw_statement] = STATE(588), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(588), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(588), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2446), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(1858), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym___extension__] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(761), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(763), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_case] = ACTIONS(767), + [anon_sym_default] = ACTIONS(769), + [anon_sym_while] = ACTIONS(771), + [anon_sym_do] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(777), + [anon_sym_break] = ACTIONS(779), + [anon_sym_continue] = ACTIONS(781), + [anon_sym_goto] = ACTIONS(783), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(785), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATtry] = ACTIONS(803), + [anon_sym___try] = ACTIONS(805), + [anon_sym_ATthrow] = ACTIONS(807), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(809), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [165] = { + [sym_declaration] = STATE(165), + [sym_type_definition] = STATE(165), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4233), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2911), + [sym_compound_statement] = STATE(165), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(165), + [sym_labeled_statement] = STATE(165), + [sym_expression_statement] = STATE(165), + [sym_if_statement] = STATE(165), + [sym_switch_statement] = STATE(165), + [sym_while_statement] = STATE(165), + [sym_do_statement] = STATE(165), + [sym_for_statement] = STATE(165), + [sym_return_statement] = STATE(165), + [sym_break_statement] = STATE(165), + [sym_continue_statement] = STATE(165), + [sym_goto_statement] = STATE(165), + [sym_expression] = STATE(4451), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6542), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(165), + [sym_throw_statement] = STATE(165), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(165), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(165), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2454), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(165), + [sym_identifier] = ACTIONS(2160), + [anon_sym_LPAREN2] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1618), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1624), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(2163), + [anon_sym___extension__] = ACTIONS(2166), + [anon_sym_typedef] = ACTIONS(2169), + [anon_sym_extern] = ACTIONS(1636), + [anon_sym___attribute__] = ACTIONS(1639), + [anon_sym___attribute] = ACTIONS(1639), + [anon_sym_noreturn] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym___declspec] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_signed] = ACTIONS(1654), + [anon_sym_unsigned] = ACTIONS(1654), + [anon_sym_long] = ACTIONS(1654), + [anon_sym_short] = ACTIONS(1654), + [anon_sym_static] = ACTIONS(1636), + [anon_sym_ATautoreleasepool] = ACTIONS(2175), + [anon_sym_auto] = ACTIONS(1636), + [anon_sym_register] = ACTIONS(1636), + [anon_sym_inline] = ACTIONS(1636), + [anon_sym___inline] = ACTIONS(1636), + [anon_sym___inline__] = ACTIONS(1636), + [anon_sym___forceinline] = ACTIONS(1636), + [anon_sym_thread_local] = ACTIONS(1636), + [anon_sym___thread] = ACTIONS(1636), + [anon_sym_CG_EXTERN] = ACTIONS(1636), + [anon_sym_CG_INLINE] = ACTIONS(1636), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(1636), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(1636), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(1636), + [anon_sym_IBOutlet] = ACTIONS(1636), + [anon_sym_IBInspectable] = ACTIONS(1636), + [anon_sym_IB_DESIGNABLE] = ACTIONS(1636), + [anon_sym_NS_INLINE] = ACTIONS(1636), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1636), + [anon_sym_OBJC_EXPORT] = ACTIONS(1636), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(1636), + [anon_sym_UIKIT_EXTERN] = ACTIONS(1636), + [anon_sym_const] = ACTIONS(1660), + [anon_sym_constexpr] = ACTIONS(1642), + [anon_sym_volatile] = ACTIONS(1642), + [anon_sym_restrict] = ACTIONS(1642), + [anon_sym___restrict__] = ACTIONS(1642), + [anon_sym__Atomic] = ACTIONS(1642), + [anon_sym__Noreturn] = ACTIONS(1642), + [anon_sym__Nonnull] = ACTIONS(1642), + [anon_sym_nullable] = ACTIONS(1642), + [anon_sym__Complex] = ACTIONS(1642), + [anon_sym__Nullable] = ACTIONS(1642), + [anon_sym__Nullable_result] = ACTIONS(1642), + [anon_sym__Null_unspecified] = ACTIONS(1642), + [anon_sym___autoreleasing] = ACTIONS(1642), + [anon_sym___block] = ACTIONS(1642), + [anon_sym___bridge] = ACTIONS(1642), + [anon_sym___bridge_retained] = ACTIONS(1642), + [anon_sym___bridge_transfer] = ACTIONS(1642), + [anon_sym___complex] = ACTIONS(1642), + [anon_sym___const] = ACTIONS(1642), + [anon_sym___imag] = ACTIONS(1663), + [anon_sym___kindof] = ACTIONS(1642), + [anon_sym___nonnull] = ACTIONS(1642), + [anon_sym___nullable] = ACTIONS(1642), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(1642), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(1642), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(1642), + [anon_sym___real] = ACTIONS(1663), + [anon_sym___strong] = ACTIONS(1642), + [anon_sym___unsafe_unretained] = ACTIONS(1642), + [anon_sym___unused] = ACTIONS(1642), + [anon_sym___weak] = ACTIONS(1642), + [anon_sym_alignas] = ACTIONS(1666), + [anon_sym__Alignas] = ACTIONS(1666), + [sym_primitive_type] = ACTIONS(1669), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_else] = ACTIONS(1610), + [anon_sym_switch] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2184), + [anon_sym_do] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2190), + [anon_sym_in] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2196), + [anon_sym_continue] = ACTIONS(2199), + [anon_sym_goto] = ACTIONS(2202), + [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_sizeof] = ACTIONS(1714), + [anon_sym___alignof__] = ACTIONS(1717), + [anon_sym___alignof] = ACTIONS(1717), + [anon_sym__alignof] = ACTIONS(1717), + [anon_sym_alignof] = ACTIONS(1717), + [anon_sym__Alignof] = ACTIONS(1717), + [anon_sym_offsetof] = ACTIONS(1720), + [anon_sym__Generic] = ACTIONS(1723), + [anon_sym_asm] = ACTIONS(1726), + [anon_sym___asm__] = ACTIONS(1726), + [anon_sym___asm] = ACTIONS(2205), + [sym_number_literal] = ACTIONS(1732), + [anon_sym_L_SQUOTE] = ACTIONS(1735), + [anon_sym_u_SQUOTE] = ACTIONS(1735), + [anon_sym_U_SQUOTE] = ACTIONS(1735), + [anon_sym_u8_SQUOTE] = ACTIONS(1735), + [anon_sym_SQUOTE] = ACTIONS(1735), + [anon_sym_AT] = ACTIONS(1738), + [anon_sym_DQUOTE] = ACTIONS(1741), + [anon_sym_L_DQUOTE] = ACTIONS(1741), + [anon_sym_u_DQUOTE] = ACTIONS(1741), + [anon_sym_U_DQUOTE] = ACTIONS(1741), + [anon_sym_u8_DQUOTE] = ACTIONS(1741), + [sym_true] = ACTIONS(1744), + [sym_false] = ACTIONS(1744), + [anon_sym_NULL] = ACTIONS(1747), + [anon_sym_nullptr] = ACTIONS(1747), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(1750), + [anon_sym___typeof] = ACTIONS(1750), + [anon_sym_typeof] = ACTIONS(1750), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(1755), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(1755), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1755), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(1755), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(1755), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(1755), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1755), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1755), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1755), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1758), + [anon_sym_NS_AVAILABLE] = ACTIONS(1758), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1758), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1758), + [anon_sym_API_AVAILABLE] = ACTIONS(1758), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1758), + [anon_sym_API_DEPRECATED] = ACTIONS(1758), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1758), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1758), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1758), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1758), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1758), + [anon_sym___deprecated_msg] = ACTIONS(1758), + [anon_sym___deprecated_enum_msg] = ACTIONS(1758), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1758), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1758), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1758), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1758), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1758), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(1758), + [anon_sym_ATtry] = ACTIONS(2208), + [anon_sym___try] = ACTIONS(2211), + [anon_sym_ATthrow] = ACTIONS(2214), + [anon_sym_ATselector] = ACTIONS(1770), + [anon_sym_ATavailable] = ACTIONS(1773), + [anon_sym___builtin_available] = ACTIONS(1776), + [anon_sym_va_arg] = ACTIONS(1779), + [anon_sym_ATencode] = ACTIONS(1782), + [anon_sym_ATsynchronized] = ACTIONS(2217), + [anon_sym_BOOL] = ACTIONS(1788), + [anon_sym_IMP] = ACTIONS(1788), + [anon_sym_SEL] = ACTIONS(1788), + [anon_sym_Class] = ACTIONS(1788), + [anon_sym_id] = ACTIONS(1791), + }, + [166] = { + [sym_declaration] = STATE(1137), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4233), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(1113), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(1113), + [sym_statement] = STATE(1137), + [sym_labeled_statement] = STATE(1113), + [sym_expression_statement] = STATE(1113), + [sym_if_statement] = STATE(1113), + [sym_switch_statement] = STATE(1113), + [sym_case_statement] = STATE(1113), + [sym_while_statement] = STATE(1113), + [sym_do_statement] = STATE(1113), + [sym_for_statement] = STATE(1113), + [sym_return_statement] = STATE(1113), + [sym_break_statement] = STATE(1113), + [sym_continue_statement] = STATE(1113), + [sym_goto_statement] = STATE(1113), + [sym_expression] = STATE(4451), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6542), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(1113), + [sym_throw_statement] = STATE(1113), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(1113), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(1113), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2454), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(2086), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym___extension__] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(2094), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(2096), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_switch] = ACTIONS(2100), + [anon_sym_case] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2102), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2106), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_goto] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym___try] = ACTIONS(2120), + [anon_sym_ATthrow] = ACTIONS(2122), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2124), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [167] = { + [sym_declaration] = STATE(165), + [sym_type_definition] = STATE(165), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4233), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(2911), + [sym_compound_statement] = STATE(165), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_attributed_statement] = STATE(165), + [sym_labeled_statement] = STATE(165), + [sym_expression_statement] = STATE(165), + [sym_if_statement] = STATE(165), + [sym_switch_statement] = STATE(165), + [sym_while_statement] = STATE(165), + [sym_do_statement] = STATE(165), + [sym_for_statement] = STATE(165), + [sym_return_statement] = STATE(165), + [sym_break_statement] = STATE(165), + [sym_continue_statement] = STATE(165), + [sym_goto_statement] = STATE(165), + [sym_expression] = STATE(4451), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6542), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_try_statement] = STATE(165), + [sym_throw_statement] = STATE(165), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(165), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(165), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2454), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_case_statement_repeat1] = STATE(165), + [sym_identifier] = ACTIONS(2086), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym___extension__] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2092), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(2094), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(2096), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_else] = ACTIONS(1603), + [anon_sym_switch] = ACTIONS(2100), + [anon_sym_while] = ACTIONS(2102), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2106), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_goto] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym___try] = ACTIONS(2120), + [anon_sym_ATthrow] = ACTIONS(2122), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2124), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [168] = { + [sym_expression] = STATE(1446), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_initializer_list] = STATE(1466), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1445), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_COMMA] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(2224), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_SLASH] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(2220), + [anon_sym_PIPE_PIPE] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2222), + [anon_sym_PIPE] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_EQ_EQ] = ACTIONS(2222), + [anon_sym_BANG_EQ] = ACTIONS(2222), + [anon_sym_GT] = ACTIONS(2220), + [anon_sym_GT_EQ] = ACTIONS(2222), + [anon_sym_LT_EQ] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2220), + [anon_sym_LT_LT] = ACTIONS(2220), + [anon_sym_GT_GT] = ACTIONS(2220), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym___extension__] = ACTIONS(2220), + [anon_sym_extern] = ACTIONS(2220), + [anon_sym___attribute__] = ACTIONS(2220), + [anon_sym___attribute] = ACTIONS(2220), + [anon_sym_noreturn] = ACTIONS(2220), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym___declspec] = ACTIONS(2220), + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_signed] = ACTIONS(2220), + [anon_sym_unsigned] = ACTIONS(2220), + [anon_sym_long] = ACTIONS(2220), + [anon_sym_short] = ACTIONS(2220), + [anon_sym_static] = ACTIONS(2220), + [anon_sym_EQ] = ACTIONS(2220), + [anon_sym_ATautoreleasepool] = ACTIONS(2222), + [anon_sym_auto] = ACTIONS(2220), + [anon_sym_register] = ACTIONS(2220), + [anon_sym_inline] = ACTIONS(2220), + [anon_sym___inline] = ACTIONS(2220), + [anon_sym___inline__] = ACTIONS(2220), + [anon_sym___forceinline] = ACTIONS(2220), + [anon_sym_thread_local] = ACTIONS(2220), + [anon_sym___thread] = ACTIONS(2220), + [anon_sym_CG_EXTERN] = ACTIONS(2220), + [anon_sym_CG_INLINE] = ACTIONS(2220), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2220), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2220), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2220), + [anon_sym_IBOutlet] = ACTIONS(2220), + [anon_sym_IBInspectable] = ACTIONS(2220), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2220), + [anon_sym_NS_INLINE] = ACTIONS(2220), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2220), + [anon_sym_OBJC_EXPORT] = ACTIONS(2220), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2220), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2220), + [anon_sym_const] = ACTIONS(2220), + [anon_sym_constexpr] = ACTIONS(2220), + [anon_sym_volatile] = ACTIONS(2220), + [anon_sym_restrict] = ACTIONS(2220), + [anon_sym___restrict__] = ACTIONS(2220), + [anon_sym__Atomic] = ACTIONS(2220), + [anon_sym__Noreturn] = ACTIONS(2220), + [anon_sym__Nonnull] = ACTIONS(2220), + [anon_sym_nullable] = ACTIONS(2220), + [anon_sym__Complex] = ACTIONS(2220), + [anon_sym__Nullable] = ACTIONS(2220), + [anon_sym__Nullable_result] = ACTIONS(2220), + [anon_sym__Null_unspecified] = ACTIONS(2220), + [anon_sym___autoreleasing] = ACTIONS(2220), + [anon_sym___block] = ACTIONS(2220), + [anon_sym___bridge] = ACTIONS(2220), + [anon_sym___bridge_retained] = ACTIONS(2220), + [anon_sym___bridge_transfer] = ACTIONS(2220), + [anon_sym___complex] = ACTIONS(2220), + [anon_sym___const] = ACTIONS(2220), + [anon_sym___imag] = ACTIONS(2220), + [anon_sym___kindof] = ACTIONS(2220), + [anon_sym___nonnull] = ACTIONS(2220), + [anon_sym___nullable] = ACTIONS(2220), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2220), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2220), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2220), + [anon_sym___real] = ACTIONS(2220), + [anon_sym___strong] = ACTIONS(2220), + [anon_sym___unsafe_unretained] = ACTIONS(2220), + [anon_sym___unused] = ACTIONS(2220), + [anon_sym___weak] = ACTIONS(2220), + [anon_sym_alignas] = ACTIONS(2220), + [anon_sym__Alignas] = ACTIONS(2220), + [sym_primitive_type] = ACTIONS(2220), + [anon_sym_enum] = ACTIONS(2220), + [anon_sym_struct] = ACTIONS(2220), + [anon_sym_union] = ACTIONS(2220), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_QMARK] = ACTIONS(2222), + [anon_sym_STAR_EQ] = ACTIONS(2222), + [anon_sym_SLASH_EQ] = ACTIONS(2222), + [anon_sym_PERCENT_EQ] = ACTIONS(2222), + [anon_sym_PLUS_EQ] = ACTIONS(2222), + [anon_sym_DASH_EQ] = ACTIONS(2222), + [anon_sym_LT_LT_EQ] = ACTIONS(2222), + [anon_sym_GT_GT_EQ] = ACTIONS(2222), + [anon_sym_AMP_EQ] = ACTIONS(2222), + [anon_sym_CARET_EQ] = ACTIONS(2222), + [anon_sym_PIPE_EQ] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_sizeof] = ACTIONS(2230), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [anon_sym_DOT] = ACTIONS(2220), + [anon_sym_DASH_GT] = ACTIONS(2222), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2220), + [anon_sym___typeof] = ACTIONS(2220), + [anon_sym_typeof] = ACTIONS(2220), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2220), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2220), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2220), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2220), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2220), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2220), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2220), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2220), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2220), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2220), + [anon_sym_NS_AVAILABLE] = ACTIONS(2220), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2220), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2220), + [anon_sym_API_AVAILABLE] = ACTIONS(2220), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2220), + [anon_sym_API_DEPRECATED] = ACTIONS(2220), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2220), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2220), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2220), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2220), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2220), + [anon_sym___deprecated_msg] = ACTIONS(2220), + [anon_sym___deprecated_enum_msg] = ACTIONS(2220), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2220), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2220), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2220), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2220), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2220), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2220), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_BOOL] = ACTIONS(2220), + [anon_sym_IMP] = ACTIONS(2220), + [anon_sym_SEL] = ACTIONS(2220), + [anon_sym_Class] = ACTIONS(2220), + [anon_sym_id] = ACTIONS(2220), + }, + [169] = { + [sym_declaration] = STATE(3359), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4229), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__for_statement_body] = STATE(6461), + [sym_expression] = STATE(4455), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6342), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(2262), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2264), + [anon_sym___extension__] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2266), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [170] = { + [sym_declaration] = STATE(3359), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4260), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__for_statement_body] = STATE(6024), + [sym_expression] = STATE(4455), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6342), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(2268), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2264), + [anon_sym___extension__] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2266), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [171] = { + [sym_declaration] = STATE(3359), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4256), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__for_statement_body] = STATE(6455), + [sym_expression] = STATE(4455), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6342), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(2270), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2264), + [anon_sym___extension__] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2266), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [172] = { + [sym_declaration] = STATE(3359), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4244), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__for_statement_body] = STATE(6352), + [sym_expression] = STATE(4455), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6342), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(2272), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2264), + [anon_sym___extension__] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2266), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [173] = { + [sym_declaration] = STATE(3359), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4231), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__for_statement_body] = STATE(6529), + [sym_expression] = STATE(4455), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6342), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(2274), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2264), + [anon_sym___extension__] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2266), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [174] = { + [sym_declaration] = STATE(3359), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4259), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__for_statement_body] = STATE(5963), + [sym_expression] = STATE(4455), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6342), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(2276), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2264), + [anon_sym___extension__] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2266), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [175] = { + [sym_declaration] = STATE(3359), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4257), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__for_statement_body] = STATE(6723), + [sym_expression] = STATE(4455), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6342), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(2278), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2264), + [anon_sym___extension__] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2266), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [176] = { + [sym_declaration] = STATE(3359), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4261), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__for_statement_body] = STATE(6069), + [sym_expression] = STATE(4455), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6342), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(2280), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2264), + [anon_sym___extension__] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2266), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(185), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(1587), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(1587), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(1593), + }, + [177] = { + [sym_expression] = STATE(1637), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1582), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1582), + [sym_call_expression] = STATE(1582), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1582), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1582), + [sym_initializer_list] = STATE(1655), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(1631), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_COMMA] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(2282), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(2222), + [anon_sym_PIPE_PIPE] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2222), + [anon_sym_PIPE] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2222), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_EQ_EQ] = ACTIONS(2222), + [anon_sym_BANG_EQ] = ACTIONS(2222), + [anon_sym_GT] = ACTIONS(2220), + [anon_sym_GT_EQ] = ACTIONS(2222), + [anon_sym_LT_EQ] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2220), + [anon_sym_LT_LT] = ACTIONS(2222), + [anon_sym_GT_GT] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym___extension__] = ACTIONS(2220), + [anon_sym_extern] = ACTIONS(2220), + [anon_sym___attribute__] = ACTIONS(2220), + [anon_sym___attribute] = ACTIONS(2220), + [anon_sym_noreturn] = ACTIONS(2220), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym___declspec] = ACTIONS(2220), + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_signed] = ACTIONS(2220), + [anon_sym_unsigned] = ACTIONS(2220), + [anon_sym_long] = ACTIONS(2220), + [anon_sym_short] = ACTIONS(2220), + [anon_sym_static] = ACTIONS(2220), + [anon_sym_ATautoreleasepool] = ACTIONS(2222), + [anon_sym_auto] = ACTIONS(2220), + [anon_sym_register] = ACTIONS(2220), + [anon_sym_inline] = ACTIONS(2220), + [anon_sym___inline] = ACTIONS(2220), + [anon_sym___inline__] = ACTIONS(2220), + [anon_sym___forceinline] = ACTIONS(2220), + [anon_sym_thread_local] = ACTIONS(2220), + [anon_sym___thread] = ACTIONS(2220), + [anon_sym_CG_EXTERN] = ACTIONS(2220), + [anon_sym_CG_INLINE] = ACTIONS(2220), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2220), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2220), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2220), + [anon_sym_IBOutlet] = ACTIONS(2220), + [anon_sym_IBInspectable] = ACTIONS(2220), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2220), + [anon_sym_NS_INLINE] = ACTIONS(2220), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2220), + [anon_sym_OBJC_EXPORT] = ACTIONS(2220), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2220), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2220), + [anon_sym_const] = ACTIONS(2220), + [anon_sym_constexpr] = ACTIONS(2220), + [anon_sym_volatile] = ACTIONS(2220), + [anon_sym_restrict] = ACTIONS(2220), + [anon_sym___restrict__] = ACTIONS(2220), + [anon_sym__Atomic] = ACTIONS(2220), + [anon_sym__Noreturn] = ACTIONS(2220), + [anon_sym__Nonnull] = ACTIONS(2220), + [anon_sym_nullable] = ACTIONS(2220), + [anon_sym__Complex] = ACTIONS(2220), + [anon_sym__Nullable] = ACTIONS(2220), + [anon_sym__Nullable_result] = ACTIONS(2220), + [anon_sym__Null_unspecified] = ACTIONS(2220), + [anon_sym___autoreleasing] = ACTIONS(2220), + [anon_sym___block] = ACTIONS(2220), + [anon_sym___bridge] = ACTIONS(2220), + [anon_sym___bridge_retained] = ACTIONS(2220), + [anon_sym___bridge_transfer] = ACTIONS(2220), + [anon_sym___complex] = ACTIONS(2220), + [anon_sym___const] = ACTIONS(2220), + [anon_sym___imag] = ACTIONS(2220), + [anon_sym___kindof] = ACTIONS(2220), + [anon_sym___nonnull] = ACTIONS(2220), + [anon_sym___nullable] = ACTIONS(2220), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2220), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2220), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2220), + [anon_sym___real] = ACTIONS(2220), + [anon_sym___strong] = ACTIONS(2220), + [anon_sym___unsafe_unretained] = ACTIONS(2220), + [anon_sym___unused] = ACTIONS(2220), + [anon_sym___weak] = ACTIONS(2220), + [anon_sym_alignas] = ACTIONS(2220), + [anon_sym__Alignas] = ACTIONS(2220), + [sym_primitive_type] = ACTIONS(2220), + [anon_sym_enum] = ACTIONS(2220), + [anon_sym_struct] = ACTIONS(2220), + [anon_sym_union] = ACTIONS(2220), + [anon_sym_in] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_sizeof] = ACTIONS(2286), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(2288), + [anon_sym___asm__] = ACTIONS(2288), + [anon_sym___asm] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(2220), + [anon_sym_DASH_GT] = ACTIONS(2222), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2220), + [anon_sym___typeof] = ACTIONS(2220), + [anon_sym_typeof] = ACTIONS(2220), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2220), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2220), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2220), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2220), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2220), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2220), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2220), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2220), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2220), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2220), + [anon_sym_NS_AVAILABLE] = ACTIONS(2220), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2220), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2220), + [anon_sym_API_AVAILABLE] = ACTIONS(2220), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2220), + [anon_sym_API_DEPRECATED] = ACTIONS(2220), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2220), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2220), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2220), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2220), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2220), + [anon_sym___deprecated_msg] = ACTIONS(2220), + [anon_sym___deprecated_enum_msg] = ACTIONS(2220), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2220), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2220), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2220), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2220), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2220), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2220), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(2220), + [anon_sym_IMP] = ACTIONS(2220), + [anon_sym_SEL] = ACTIONS(2220), + [anon_sym_Class] = ACTIONS(2220), + [anon_sym_id] = ACTIONS(2220), + }, + [178] = { + [sym_catch_clause] = STATE(180), + [sym_finally_clause] = STATE(247), + [aux_sym_try_statement_repeat1] = STATE(180), + [sym_identifier] = ACTIONS(2294), + [aux_sym_preproc_include_token1] = ACTIONS(2294), + [aux_sym_preproc_include_token2] = ACTIONS(2294), + [aux_sym_preproc_def_token1] = ACTIONS(2294), + [aux_sym_preproc_if_token1] = ACTIONS(2294), + [aux_sym_preproc_if_token2] = ACTIONS(2294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2294), + [aux_sym_preproc_else_token1] = ACTIONS(2294), + [aux_sym_preproc_elif_token1] = ACTIONS(2294), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2294), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2294), + [sym_preproc_directive] = ACTIONS(2294), + [anon_sym_LPAREN2] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_STAR] = ACTIONS(2296), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym___extension__] = ACTIONS(2294), + [anon_sym_typedef] = ACTIONS(2294), + [anon_sym_extern] = ACTIONS(2294), + [anon_sym___attribute__] = ACTIONS(2294), + [anon_sym___attribute] = ACTIONS(2294), + [anon_sym_noreturn] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym___declspec] = ACTIONS(2294), + [anon_sym___cdecl] = ACTIONS(2294), + [anon_sym___clrcall] = ACTIONS(2294), + [anon_sym___stdcall] = ACTIONS(2294), + [anon_sym___fastcall] = ACTIONS(2294), + [anon_sym___thiscall] = ACTIONS(2294), + [anon_sym___vectorcall] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_signed] = ACTIONS(2294), + [anon_sym_unsigned] = ACTIONS(2294), + [anon_sym_long] = ACTIONS(2294), + [anon_sym_short] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_ATautoreleasepool] = ACTIONS(2296), + [anon_sym_auto] = ACTIONS(2294), + [anon_sym_register] = ACTIONS(2294), + [anon_sym_inline] = ACTIONS(2294), + [anon_sym___inline] = ACTIONS(2294), + [anon_sym___inline__] = ACTIONS(2294), + [anon_sym___forceinline] = ACTIONS(2294), + [anon_sym_thread_local] = ACTIONS(2294), + [anon_sym___thread] = ACTIONS(2294), + [anon_sym_CG_EXTERN] = ACTIONS(2294), + [anon_sym_CG_INLINE] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2294), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2294), + [anon_sym_IBOutlet] = ACTIONS(2294), + [anon_sym_IBInspectable] = ACTIONS(2294), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2294), + [anon_sym_NS_INLINE] = ACTIONS(2294), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2294), + [anon_sym_OBJC_EXPORT] = ACTIONS(2294), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [anon_sym_constexpr] = ACTIONS(2294), + [anon_sym_volatile] = ACTIONS(2294), + [anon_sym_restrict] = ACTIONS(2294), + [anon_sym___restrict__] = ACTIONS(2294), + [anon_sym__Atomic] = ACTIONS(2294), + [anon_sym__Noreturn] = ACTIONS(2294), + [anon_sym__Nonnull] = ACTIONS(2294), + [anon_sym_nullable] = ACTIONS(2294), + [anon_sym__Complex] = ACTIONS(2294), + [anon_sym__Nullable] = ACTIONS(2294), + [anon_sym__Nullable_result] = ACTIONS(2294), + [anon_sym__Null_unspecified] = ACTIONS(2294), + [anon_sym___autoreleasing] = ACTIONS(2294), + [anon_sym___block] = ACTIONS(2294), + [anon_sym___bridge] = ACTIONS(2294), + [anon_sym___bridge_retained] = ACTIONS(2294), + [anon_sym___bridge_transfer] = ACTIONS(2294), + [anon_sym___complex] = ACTIONS(2294), + [anon_sym___const] = ACTIONS(2294), + [anon_sym___imag] = ACTIONS(2294), + [anon_sym___kindof] = ACTIONS(2294), + [anon_sym___nonnull] = ACTIONS(2294), + [anon_sym___nullable] = ACTIONS(2294), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2294), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2294), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2294), + [anon_sym___real] = ACTIONS(2294), + [anon_sym___strong] = ACTIONS(2294), + [anon_sym___unsafe_unretained] = ACTIONS(2294), + [anon_sym___unused] = ACTIONS(2294), + [anon_sym___weak] = ACTIONS(2294), + [anon_sym_alignas] = ACTIONS(2294), + [anon_sym__Alignas] = ACTIONS(2294), + [sym_primitive_type] = ACTIONS(2294), + [anon_sym_enum] = ACTIONS(2294), + [anon_sym_struct] = ACTIONS(2294), + [anon_sym_union] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_switch] = ACTIONS(2294), + [anon_sym_case] = ACTIONS(2294), + [anon_sym_default] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_goto] = ACTIONS(2294), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_sizeof] = ACTIONS(2294), + [anon_sym___alignof__] = ACTIONS(2294), + [anon_sym___alignof] = ACTIONS(2294), + [anon_sym__alignof] = ACTIONS(2294), + [anon_sym_alignof] = ACTIONS(2294), + [anon_sym__Alignof] = ACTIONS(2294), + [anon_sym_offsetof] = ACTIONS(2294), + [anon_sym__Generic] = ACTIONS(2294), + [anon_sym_asm] = ACTIONS(2294), + [anon_sym___asm__] = ACTIONS(2294), + [anon_sym___asm] = ACTIONS(2294), + [sym_number_literal] = ACTIONS(2296), + [anon_sym_L_SQUOTE] = ACTIONS(2296), + [anon_sym_u_SQUOTE] = ACTIONS(2296), + [anon_sym_U_SQUOTE] = ACTIONS(2296), + [anon_sym_u8_SQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_L_DQUOTE] = ACTIONS(2296), + [anon_sym_u_DQUOTE] = ACTIONS(2296), + [anon_sym_U_DQUOTE] = ACTIONS(2296), + [anon_sym_u8_DQUOTE] = ACTIONS(2296), + [sym_true] = ACTIONS(2294), + [sym_false] = ACTIONS(2294), + [anon_sym_NULL] = ACTIONS(2294), + [anon_sym_nullptr] = ACTIONS(2294), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2294), + [anon_sym___typeof] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(2294), + [anon_sym_ATimport] = ACTIONS(2296), + [aux_sym_preproc_undef_token1] = ACTIONS(2294), + [anon_sym_POUND] = ACTIONS(2294), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2294), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2294), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2294), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2294), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE] = ACTIONS(2294), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_API_AVAILABLE] = ACTIONS(2294), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_API_DEPRECATED] = ACTIONS(2294), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2294), + [anon_sym___deprecated_msg] = ACTIONS(2294), + [anon_sym___deprecated_enum_msg] = ACTIONS(2294), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2294), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2294), + [anon_sym_ATprotocol] = ACTIONS(2296), + [anon_sym_ATinterface] = ACTIONS(2296), + [anon_sym_ATimplementation] = ACTIONS(2296), + [anon_sym_ATcompatibility_alias] = ACTIONS(2296), + [anon_sym_ATsynthesize] = ACTIONS(2296), + [anon_sym_ATdynamic] = ACTIONS(2296), + [anon_sym_ATtry] = ACTIONS(2296), + [anon_sym___try] = ACTIONS(2294), + [anon_sym_ATcatch] = ACTIONS(2298), + [anon_sym___catch] = ACTIONS(2300), + [anon_sym_ATfinally] = ACTIONS(2302), + [anon_sym___finally] = ACTIONS(2304), + [anon_sym_ATthrow] = ACTIONS(2296), + [anon_sym_ATselector] = ACTIONS(2296), + [anon_sym_ATavailable] = ACTIONS(2296), + [anon_sym___builtin_available] = ACTIONS(2294), + [anon_sym_va_arg] = ACTIONS(2294), + [anon_sym_ATencode] = ACTIONS(2296), + [anon_sym_ATsynchronized] = ACTIONS(2296), + [anon_sym_BOOL] = ACTIONS(2294), + [anon_sym_IMP] = ACTIONS(2294), + [anon_sym_SEL] = ACTIONS(2294), + [anon_sym_Class] = ACTIONS(2294), + [anon_sym_id] = ACTIONS(2294), + }, + [179] = { + [sym_expression] = STATE(1446), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_initializer_list] = STATE(1466), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_COMMA] = ACTIONS(2222), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2222), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(2306), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_SLASH] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(2220), + [anon_sym_PIPE_PIPE] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2222), + [anon_sym_PIPE] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_EQ_EQ] = ACTIONS(2222), + [anon_sym_BANG_EQ] = ACTIONS(2222), + [anon_sym_GT] = ACTIONS(2220), + [anon_sym_GT_EQ] = ACTIONS(2222), + [anon_sym_LT_EQ] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2220), + [anon_sym_LT_LT] = ACTIONS(2220), + [anon_sym_GT_GT] = ACTIONS(2220), + [anon_sym___extension__] = ACTIONS(2220), + [anon_sym_extern] = ACTIONS(2220), + [anon_sym___attribute__] = ACTIONS(2220), + [anon_sym___attribute] = ACTIONS(2220), + [anon_sym_noreturn] = ACTIONS(2220), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym___declspec] = ACTIONS(2220), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2220), + [anon_sym_EQ] = ACTIONS(2220), + [anon_sym_auto] = ACTIONS(2220), + [anon_sym_register] = ACTIONS(2220), + [anon_sym_inline] = ACTIONS(2220), + [anon_sym___inline] = ACTIONS(2220), + [anon_sym___inline__] = ACTIONS(2220), + [anon_sym___forceinline] = ACTIONS(2220), + [anon_sym_thread_local] = ACTIONS(2220), + [anon_sym___thread] = ACTIONS(2220), + [anon_sym_CG_EXTERN] = ACTIONS(2220), + [anon_sym_CG_INLINE] = ACTIONS(2220), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2220), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2220), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2220), + [anon_sym_IBOutlet] = ACTIONS(2220), + [anon_sym_IBInspectable] = ACTIONS(2220), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2220), + [anon_sym_NS_INLINE] = ACTIONS(2220), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2220), + [anon_sym_OBJC_EXPORT] = ACTIONS(2220), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2220), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2220), + [anon_sym_const] = ACTIONS(2220), + [anon_sym_constexpr] = ACTIONS(2220), + [anon_sym_volatile] = ACTIONS(2220), + [anon_sym_restrict] = ACTIONS(2220), + [anon_sym___restrict__] = ACTIONS(2220), + [anon_sym__Atomic] = ACTIONS(2220), + [anon_sym__Noreturn] = ACTIONS(2220), + [anon_sym__Nonnull] = ACTIONS(2220), + [anon_sym_nullable] = ACTIONS(2220), + [anon_sym__Complex] = ACTIONS(2220), + [anon_sym__Nullable] = ACTIONS(2220), + [anon_sym__Nullable_result] = ACTIONS(2220), + [anon_sym__Null_unspecified] = ACTIONS(2220), + [anon_sym___autoreleasing] = ACTIONS(2220), + [anon_sym___block] = ACTIONS(2220), + [anon_sym___bridge] = ACTIONS(2220), + [anon_sym___bridge_retained] = ACTIONS(2220), + [anon_sym___bridge_transfer] = ACTIONS(2220), + [anon_sym___complex] = ACTIONS(2220), + [anon_sym___const] = ACTIONS(2220), + [anon_sym___imag] = ACTIONS(2220), + [anon_sym___kindof] = ACTIONS(2220), + [anon_sym___nonnull] = ACTIONS(2220), + [anon_sym___nullable] = ACTIONS(2220), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2220), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2220), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2220), + [anon_sym___real] = ACTIONS(2220), + [anon_sym___strong] = ACTIONS(2220), + [anon_sym___unsafe_unretained] = ACTIONS(2220), + [anon_sym___unused] = ACTIONS(2220), + [anon_sym___weak] = ACTIONS(2220), + [anon_sym_alignas] = ACTIONS(2220), + [anon_sym__Alignas] = ACTIONS(2220), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_QMARK] = ACTIONS(2222), + [anon_sym_STAR_EQ] = ACTIONS(2222), + [anon_sym_SLASH_EQ] = ACTIONS(2222), + [anon_sym_PERCENT_EQ] = ACTIONS(2222), + [anon_sym_PLUS_EQ] = ACTIONS(2222), + [anon_sym_DASH_EQ] = ACTIONS(2222), + [anon_sym_LT_LT_EQ] = ACTIONS(2222), + [anon_sym_GT_GT_EQ] = ACTIONS(2222), + [anon_sym_AMP_EQ] = ACTIONS(2222), + [anon_sym_CARET_EQ] = ACTIONS(2222), + [anon_sym_PIPE_EQ] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_sizeof] = ACTIONS(2312), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [anon_sym_DOT] = ACTIONS(2220), + [anon_sym_DASH_GT] = ACTIONS(2222), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2220), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2220), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2220), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2220), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2220), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2220), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2220), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2220), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2220), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2220), + [anon_sym_NS_AVAILABLE] = ACTIONS(2220), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2220), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2220), + [anon_sym_API_AVAILABLE] = ACTIONS(2220), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2220), + [anon_sym_API_DEPRECATED] = ACTIONS(2220), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2220), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2220), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2220), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2220), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2220), + [anon_sym___deprecated_msg] = ACTIONS(2220), + [anon_sym___deprecated_enum_msg] = ACTIONS(2220), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2220), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2220), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2220), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2220), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2220), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2220), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [180] = { + [sym_catch_clause] = STATE(180), + [aux_sym_try_statement_repeat1] = STATE(180), + [sym_identifier] = ACTIONS(2318), + [aux_sym_preproc_include_token1] = ACTIONS(2318), + [aux_sym_preproc_include_token2] = ACTIONS(2318), + [aux_sym_preproc_def_token1] = ACTIONS(2318), + [aux_sym_preproc_if_token1] = ACTIONS(2318), + [aux_sym_preproc_if_token2] = ACTIONS(2318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2318), + [aux_sym_preproc_else_token1] = ACTIONS(2318), + [aux_sym_preproc_elif_token1] = ACTIONS(2318), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2318), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2318), + [sym_preproc_directive] = ACTIONS(2318), + [anon_sym_LPAREN2] = ACTIONS(2320), + [anon_sym_BANG] = ACTIONS(2320), + [anon_sym_TILDE] = ACTIONS(2320), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2320), + [anon_sym_CARET] = ACTIONS(2320), + [anon_sym_AMP] = ACTIONS(2320), + [anon_sym_SEMI] = ACTIONS(2320), + [anon_sym___extension__] = ACTIONS(2318), + [anon_sym_typedef] = ACTIONS(2318), + [anon_sym_extern] = ACTIONS(2318), + [anon_sym___attribute__] = ACTIONS(2318), + [anon_sym___attribute] = ACTIONS(2318), + [anon_sym_noreturn] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2320), + [anon_sym___declspec] = ACTIONS(2318), + [anon_sym___cdecl] = ACTIONS(2318), + [anon_sym___clrcall] = ACTIONS(2318), + [anon_sym___stdcall] = ACTIONS(2318), + [anon_sym___fastcall] = ACTIONS(2318), + [anon_sym___thiscall] = ACTIONS(2318), + [anon_sym___vectorcall] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2320), + [anon_sym_signed] = ACTIONS(2318), + [anon_sym_unsigned] = ACTIONS(2318), + [anon_sym_long] = ACTIONS(2318), + [anon_sym_short] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_ATautoreleasepool] = ACTIONS(2320), + [anon_sym_auto] = ACTIONS(2318), + [anon_sym_register] = ACTIONS(2318), + [anon_sym_inline] = ACTIONS(2318), + [anon_sym___inline] = ACTIONS(2318), + [anon_sym___inline__] = ACTIONS(2318), + [anon_sym___forceinline] = ACTIONS(2318), + [anon_sym_thread_local] = ACTIONS(2318), + [anon_sym___thread] = ACTIONS(2318), + [anon_sym_CG_EXTERN] = ACTIONS(2318), + [anon_sym_CG_INLINE] = ACTIONS(2318), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2318), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2318), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2318), + [anon_sym_IBOutlet] = ACTIONS(2318), + [anon_sym_IBInspectable] = ACTIONS(2318), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2318), + [anon_sym_NS_INLINE] = ACTIONS(2318), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2318), + [anon_sym_OBJC_EXPORT] = ACTIONS(2318), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2318), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_constexpr] = ACTIONS(2318), + [anon_sym_volatile] = ACTIONS(2318), + [anon_sym_restrict] = ACTIONS(2318), + [anon_sym___restrict__] = ACTIONS(2318), + [anon_sym__Atomic] = ACTIONS(2318), + [anon_sym__Noreturn] = ACTIONS(2318), + [anon_sym__Nonnull] = ACTIONS(2318), + [anon_sym_nullable] = ACTIONS(2318), + [anon_sym__Complex] = ACTIONS(2318), + [anon_sym__Nullable] = ACTIONS(2318), + [anon_sym__Nullable_result] = ACTIONS(2318), + [anon_sym__Null_unspecified] = ACTIONS(2318), + [anon_sym___autoreleasing] = ACTIONS(2318), + [anon_sym___block] = ACTIONS(2318), + [anon_sym___bridge] = ACTIONS(2318), + [anon_sym___bridge_retained] = ACTIONS(2318), + [anon_sym___bridge_transfer] = ACTIONS(2318), + [anon_sym___complex] = ACTIONS(2318), + [anon_sym___const] = ACTIONS(2318), + [anon_sym___imag] = ACTIONS(2318), + [anon_sym___kindof] = ACTIONS(2318), + [anon_sym___nonnull] = ACTIONS(2318), + [anon_sym___nullable] = ACTIONS(2318), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2318), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2318), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2318), + [anon_sym___real] = ACTIONS(2318), + [anon_sym___strong] = ACTIONS(2318), + [anon_sym___unsafe_unretained] = ACTIONS(2318), + [anon_sym___unused] = ACTIONS(2318), + [anon_sym___weak] = ACTIONS(2318), + [anon_sym_alignas] = ACTIONS(2318), + [anon_sym__Alignas] = ACTIONS(2318), + [sym_primitive_type] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_case] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_goto] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2320), + [anon_sym_sizeof] = ACTIONS(2318), + [anon_sym___alignof__] = ACTIONS(2318), + [anon_sym___alignof] = ACTIONS(2318), + [anon_sym__alignof] = ACTIONS(2318), + [anon_sym_alignof] = ACTIONS(2318), + [anon_sym__Alignof] = ACTIONS(2318), + [anon_sym_offsetof] = ACTIONS(2318), + [anon_sym__Generic] = ACTIONS(2318), + [anon_sym_asm] = ACTIONS(2318), + [anon_sym___asm__] = ACTIONS(2318), + [anon_sym___asm] = ACTIONS(2318), + [sym_number_literal] = ACTIONS(2320), + [anon_sym_L_SQUOTE] = ACTIONS(2320), + [anon_sym_u_SQUOTE] = ACTIONS(2320), + [anon_sym_U_SQUOTE] = ACTIONS(2320), + [anon_sym_u8_SQUOTE] = ACTIONS(2320), + [anon_sym_SQUOTE] = ACTIONS(2320), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_DQUOTE] = ACTIONS(2320), + [anon_sym_L_DQUOTE] = ACTIONS(2320), + [anon_sym_u_DQUOTE] = ACTIONS(2320), + [anon_sym_U_DQUOTE] = ACTIONS(2320), + [anon_sym_u8_DQUOTE] = ACTIONS(2320), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [anon_sym_NULL] = ACTIONS(2318), + [anon_sym_nullptr] = ACTIONS(2318), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2318), + [anon_sym___typeof] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_ATimport] = ACTIONS(2320), + [aux_sym_preproc_undef_token1] = ACTIONS(2318), + [anon_sym_POUND] = ACTIONS(2318), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2318), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2318), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2318), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2318), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2318), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2318), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2318), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2318), + [anon_sym_NS_AVAILABLE] = ACTIONS(2318), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2318), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_API_AVAILABLE] = ACTIONS(2318), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_API_DEPRECATED] = ACTIONS(2318), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2318), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2318), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2318), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2318), + [anon_sym___deprecated_msg] = ACTIONS(2318), + [anon_sym___deprecated_enum_msg] = ACTIONS(2318), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2318), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2318), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2318), + [anon_sym_ATprotocol] = ACTIONS(2320), + [anon_sym_ATinterface] = ACTIONS(2320), + [anon_sym_ATimplementation] = ACTIONS(2320), + [anon_sym_ATcompatibility_alias] = ACTIONS(2320), + [anon_sym_ATsynthesize] = ACTIONS(2320), + [anon_sym_ATdynamic] = ACTIONS(2320), + [anon_sym_ATtry] = ACTIONS(2320), + [anon_sym___try] = ACTIONS(2318), + [anon_sym_ATcatch] = ACTIONS(2322), + [anon_sym___catch] = ACTIONS(2325), + [anon_sym_ATfinally] = ACTIONS(2320), + [anon_sym___finally] = ACTIONS(2318), + [anon_sym_ATthrow] = ACTIONS(2320), + [anon_sym_ATselector] = ACTIONS(2320), + [anon_sym_ATavailable] = ACTIONS(2320), + [anon_sym___builtin_available] = ACTIONS(2318), + [anon_sym_va_arg] = ACTIONS(2318), + [anon_sym_ATencode] = ACTIONS(2320), + [anon_sym_ATsynchronized] = ACTIONS(2320), + [anon_sym_BOOL] = ACTIONS(2318), + [anon_sym_IMP] = ACTIONS(2318), + [anon_sym_SEL] = ACTIONS(2318), + [anon_sym_Class] = ACTIONS(2318), + [anon_sym_id] = ACTIONS(2318), + }, + [181] = { + [sym_catch_clause] = STATE(186), + [sym_finally_clause] = STATE(418), + [aux_sym_try_statement_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(2294), + [aux_sym_preproc_include_token1] = ACTIONS(2294), + [aux_sym_preproc_include_token2] = ACTIONS(2294), + [aux_sym_preproc_def_token1] = ACTIONS(2294), + [aux_sym_preproc_if_token1] = ACTIONS(2294), + [aux_sym_preproc_if_token2] = ACTIONS(2294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2294), + [aux_sym_preproc_else_token1] = ACTIONS(2294), + [aux_sym_preproc_elif_token1] = ACTIONS(2294), + [sym_preproc_directive] = ACTIONS(2294), + [anon_sym_LPAREN2] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_STAR] = ACTIONS(2296), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym___extension__] = ACTIONS(2294), + [anon_sym_typedef] = ACTIONS(2294), + [anon_sym_extern] = ACTIONS(2294), + [anon_sym___attribute__] = ACTIONS(2294), + [anon_sym___attribute] = ACTIONS(2294), + [anon_sym_noreturn] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym___declspec] = ACTIONS(2294), + [anon_sym___cdecl] = ACTIONS(2294), + [anon_sym___clrcall] = ACTIONS(2294), + [anon_sym___stdcall] = ACTIONS(2294), + [anon_sym___fastcall] = ACTIONS(2294), + [anon_sym___thiscall] = ACTIONS(2294), + [anon_sym___vectorcall] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_signed] = ACTIONS(2294), + [anon_sym_unsigned] = ACTIONS(2294), + [anon_sym_long] = ACTIONS(2294), + [anon_sym_short] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_ATautoreleasepool] = ACTIONS(2296), + [anon_sym_auto] = ACTIONS(2294), + [anon_sym_register] = ACTIONS(2294), + [anon_sym_inline] = ACTIONS(2294), + [anon_sym___inline] = ACTIONS(2294), + [anon_sym___inline__] = ACTIONS(2294), + [anon_sym___forceinline] = ACTIONS(2294), + [anon_sym_thread_local] = ACTIONS(2294), + [anon_sym___thread] = ACTIONS(2294), + [anon_sym_CG_EXTERN] = ACTIONS(2294), + [anon_sym_CG_INLINE] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2294), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2294), + [anon_sym_IBOutlet] = ACTIONS(2294), + [anon_sym_IBInspectable] = ACTIONS(2294), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2294), + [anon_sym_NS_INLINE] = ACTIONS(2294), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2294), + [anon_sym_OBJC_EXPORT] = ACTIONS(2294), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [anon_sym_constexpr] = ACTIONS(2294), + [anon_sym_volatile] = ACTIONS(2294), + [anon_sym_restrict] = ACTIONS(2294), + [anon_sym___restrict__] = ACTIONS(2294), + [anon_sym__Atomic] = ACTIONS(2294), + [anon_sym__Noreturn] = ACTIONS(2294), + [anon_sym__Nonnull] = ACTIONS(2294), + [anon_sym_nullable] = ACTIONS(2294), + [anon_sym__Complex] = ACTIONS(2294), + [anon_sym__Nullable] = ACTIONS(2294), + [anon_sym__Nullable_result] = ACTIONS(2294), + [anon_sym__Null_unspecified] = ACTIONS(2294), + [anon_sym___autoreleasing] = ACTIONS(2294), + [anon_sym___block] = ACTIONS(2294), + [anon_sym___bridge] = ACTIONS(2294), + [anon_sym___bridge_retained] = ACTIONS(2294), + [anon_sym___bridge_transfer] = ACTIONS(2294), + [anon_sym___complex] = ACTIONS(2294), + [anon_sym___const] = ACTIONS(2294), + [anon_sym___imag] = ACTIONS(2294), + [anon_sym___kindof] = ACTIONS(2294), + [anon_sym___nonnull] = ACTIONS(2294), + [anon_sym___nullable] = ACTIONS(2294), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2294), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2294), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2294), + [anon_sym___real] = ACTIONS(2294), + [anon_sym___strong] = ACTIONS(2294), + [anon_sym___unsafe_unretained] = ACTIONS(2294), + [anon_sym___unused] = ACTIONS(2294), + [anon_sym___weak] = ACTIONS(2294), + [anon_sym_alignas] = ACTIONS(2294), + [anon_sym__Alignas] = ACTIONS(2294), + [sym_primitive_type] = ACTIONS(2294), + [anon_sym_enum] = ACTIONS(2294), + [anon_sym_struct] = ACTIONS(2294), + [anon_sym_union] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_switch] = ACTIONS(2294), + [anon_sym_case] = ACTIONS(2294), + [anon_sym_default] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_goto] = ACTIONS(2294), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_sizeof] = ACTIONS(2294), + [anon_sym___alignof__] = ACTIONS(2294), + [anon_sym___alignof] = ACTIONS(2294), + [anon_sym__alignof] = ACTIONS(2294), + [anon_sym_alignof] = ACTIONS(2294), + [anon_sym__Alignof] = ACTIONS(2294), + [anon_sym_offsetof] = ACTIONS(2294), + [anon_sym__Generic] = ACTIONS(2294), + [anon_sym_asm] = ACTIONS(2294), + [anon_sym___asm__] = ACTIONS(2294), + [anon_sym___asm] = ACTIONS(2294), + [sym_number_literal] = ACTIONS(2296), + [anon_sym_L_SQUOTE] = ACTIONS(2296), + [anon_sym_u_SQUOTE] = ACTIONS(2296), + [anon_sym_U_SQUOTE] = ACTIONS(2296), + [anon_sym_u8_SQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_L_DQUOTE] = ACTIONS(2296), + [anon_sym_u_DQUOTE] = ACTIONS(2296), + [anon_sym_U_DQUOTE] = ACTIONS(2296), + [anon_sym_u8_DQUOTE] = ACTIONS(2296), + [sym_true] = ACTIONS(2294), + [sym_false] = ACTIONS(2294), + [anon_sym_NULL] = ACTIONS(2294), + [anon_sym_nullptr] = ACTIONS(2294), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2294), + [anon_sym___typeof] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(2294), + [anon_sym_ATimport] = ACTIONS(2296), + [aux_sym_preproc_undef_token1] = ACTIONS(2294), + [anon_sym_POUND] = ACTIONS(2294), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2294), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2294), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2294), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2294), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE] = ACTIONS(2294), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_API_AVAILABLE] = ACTIONS(2294), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_API_DEPRECATED] = ACTIONS(2294), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2294), + [anon_sym___deprecated_msg] = ACTIONS(2294), + [anon_sym___deprecated_enum_msg] = ACTIONS(2294), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2294), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2294), + [anon_sym_ATprotocol] = ACTIONS(2296), + [anon_sym_ATinterface] = ACTIONS(2296), + [anon_sym_ATimplementation] = ACTIONS(2296), + [anon_sym_ATcompatibility_alias] = ACTIONS(2296), + [anon_sym_ATsynthesize] = ACTIONS(2296), + [anon_sym_ATdynamic] = ACTIONS(2296), + [anon_sym_ATtry] = ACTIONS(2296), + [anon_sym___try] = ACTIONS(2294), + [anon_sym_ATcatch] = ACTIONS(2328), + [anon_sym___catch] = ACTIONS(2330), + [anon_sym_ATfinally] = ACTIONS(2332), + [anon_sym___finally] = ACTIONS(2334), + [anon_sym_ATthrow] = ACTIONS(2296), + [anon_sym_ATselector] = ACTIONS(2296), + [anon_sym_ATavailable] = ACTIONS(2296), + [anon_sym___builtin_available] = ACTIONS(2294), + [anon_sym_va_arg] = ACTIONS(2294), + [anon_sym_ATencode] = ACTIONS(2296), + [anon_sym_ATsynchronized] = ACTIONS(2296), + [anon_sym_BOOL] = ACTIONS(2294), + [anon_sym_IMP] = ACTIONS(2294), + [anon_sym_SEL] = ACTIONS(2294), + [anon_sym_Class] = ACTIONS(2294), + [anon_sym_id] = ACTIONS(2294), + }, + [182] = { + [sym_expression] = STATE(1446), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_initializer_list] = STATE(1466), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_COMMA] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(2338), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_SLASH] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(2220), + [anon_sym_PIPE_PIPE] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2222), + [anon_sym_PIPE] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_EQ_EQ] = ACTIONS(2222), + [anon_sym_BANG_EQ] = ACTIONS(2222), + [anon_sym_GT] = ACTIONS(2220), + [anon_sym_GT_EQ] = ACTIONS(2222), + [anon_sym_LT_EQ] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2220), + [anon_sym_LT_LT] = ACTIONS(2220), + [anon_sym_GT_GT] = ACTIONS(2220), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym___extension__] = ACTIONS(2220), + [anon_sym_extern] = ACTIONS(2220), + [anon_sym___attribute__] = ACTIONS(2220), + [anon_sym___attribute] = ACTIONS(2220), + [anon_sym_noreturn] = ACTIONS(2220), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym___declspec] = ACTIONS(2220), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_static] = ACTIONS(2220), + [anon_sym_EQ] = ACTIONS(2220), + [anon_sym_auto] = ACTIONS(2220), + [anon_sym_register] = ACTIONS(2220), + [anon_sym_inline] = ACTIONS(2220), + [anon_sym___inline] = ACTIONS(2220), + [anon_sym___inline__] = ACTIONS(2220), + [anon_sym___forceinline] = ACTIONS(2220), + [anon_sym_thread_local] = ACTIONS(2220), + [anon_sym___thread] = ACTIONS(2220), + [anon_sym_CG_EXTERN] = ACTIONS(2220), + [anon_sym_CG_INLINE] = ACTIONS(2220), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2220), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2220), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2220), + [anon_sym_IBOutlet] = ACTIONS(2220), + [anon_sym_IBInspectable] = ACTIONS(2220), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2220), + [anon_sym_NS_INLINE] = ACTIONS(2220), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2220), + [anon_sym_OBJC_EXPORT] = ACTIONS(2220), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2220), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2220), + [anon_sym_const] = ACTIONS(2220), + [anon_sym_constexpr] = ACTIONS(2220), + [anon_sym_volatile] = ACTIONS(2220), + [anon_sym_restrict] = ACTIONS(2220), + [anon_sym___restrict__] = ACTIONS(2220), + [anon_sym__Atomic] = ACTIONS(2220), + [anon_sym__Noreturn] = ACTIONS(2220), + [anon_sym__Nonnull] = ACTIONS(2220), + [anon_sym_nullable] = ACTIONS(2220), + [anon_sym__Complex] = ACTIONS(2220), + [anon_sym__Nullable] = ACTIONS(2220), + [anon_sym__Nullable_result] = ACTIONS(2220), + [anon_sym__Null_unspecified] = ACTIONS(2220), + [anon_sym___autoreleasing] = ACTIONS(2220), + [anon_sym___block] = ACTIONS(2220), + [anon_sym___bridge] = ACTIONS(2220), + [anon_sym___bridge_retained] = ACTIONS(2220), + [anon_sym___bridge_transfer] = ACTIONS(2220), + [anon_sym___complex] = ACTIONS(2220), + [anon_sym___const] = ACTIONS(2220), + [anon_sym___imag] = ACTIONS(2220), + [anon_sym___kindof] = ACTIONS(2220), + [anon_sym___nonnull] = ACTIONS(2220), + [anon_sym___nullable] = ACTIONS(2220), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2220), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2220), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2220), + [anon_sym___real] = ACTIONS(2220), + [anon_sym___strong] = ACTIONS(2220), + [anon_sym___unsafe_unretained] = ACTIONS(2220), + [anon_sym___unused] = ACTIONS(2220), + [anon_sym___weak] = ACTIONS(2220), + [anon_sym_alignas] = ACTIONS(2220), + [anon_sym__Alignas] = ACTIONS(2220), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_QMARK] = ACTIONS(2222), + [anon_sym_STAR_EQ] = ACTIONS(2222), + [anon_sym_SLASH_EQ] = ACTIONS(2222), + [anon_sym_PERCENT_EQ] = ACTIONS(2222), + [anon_sym_PLUS_EQ] = ACTIONS(2222), + [anon_sym_DASH_EQ] = ACTIONS(2222), + [anon_sym_LT_LT_EQ] = ACTIONS(2222), + [anon_sym_GT_GT_EQ] = ACTIONS(2222), + [anon_sym_AMP_EQ] = ACTIONS(2222), + [anon_sym_CARET_EQ] = ACTIONS(2222), + [anon_sym_PIPE_EQ] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_sizeof] = ACTIONS(2342), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [anon_sym_DOT] = ACTIONS(2220), + [anon_sym_DASH_GT] = ACTIONS(2222), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2220), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2220), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2220), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2220), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2220), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2220), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2220), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2220), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2220), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2220), + [anon_sym_NS_AVAILABLE] = ACTIONS(2220), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2220), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2220), + [anon_sym_API_AVAILABLE] = ACTIONS(2220), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2220), + [anon_sym_API_DEPRECATED] = ACTIONS(2220), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2220), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2220), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2220), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2220), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2220), + [anon_sym___deprecated_msg] = ACTIONS(2220), + [anon_sym___deprecated_enum_msg] = ACTIONS(2220), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2220), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2220), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2220), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2220), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2220), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2220), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [183] = { + [sym_identifier] = ACTIONS(2346), + [aux_sym_preproc_include_token1] = ACTIONS(2346), + [aux_sym_preproc_include_token2] = ACTIONS(2346), + [aux_sym_preproc_def_token1] = ACTIONS(2346), + [aux_sym_preproc_if_token1] = ACTIONS(2346), + [aux_sym_preproc_if_token2] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2346), + [aux_sym_preproc_else_token1] = ACTIONS(2346), + [aux_sym_preproc_elif_token1] = ACTIONS(2346), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2346), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2346), + [sym_preproc_directive] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2346), + [anon_sym_PLUS] = ACTIONS(2346), + [anon_sym_STAR] = ACTIONS(2348), + [anon_sym_CARET] = ACTIONS(2348), + [anon_sym_AMP] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym___extension__] = ACTIONS(2346), + [anon_sym_typedef] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym___attribute__] = ACTIONS(2346), + [anon_sym___attribute] = ACTIONS(2346), + [anon_sym_noreturn] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym___declspec] = ACTIONS(2346), + [anon_sym___cdecl] = ACTIONS(2346), + [anon_sym___clrcall] = ACTIONS(2346), + [anon_sym___stdcall] = ACTIONS(2346), + [anon_sym___fastcall] = ACTIONS(2346), + [anon_sym___thiscall] = ACTIONS(2346), + [anon_sym___vectorcall] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_signed] = ACTIONS(2346), + [anon_sym_unsigned] = ACTIONS(2346), + [anon_sym_long] = ACTIONS(2346), + [anon_sym_short] = ACTIONS(2346), + [anon_sym_static] = ACTIONS(2346), + [anon_sym_ATautoreleasepool] = ACTIONS(2348), + [anon_sym_auto] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2346), + [anon_sym_inline] = ACTIONS(2346), + [anon_sym___inline] = ACTIONS(2346), + [anon_sym___inline__] = ACTIONS(2346), + [anon_sym___forceinline] = ACTIONS(2346), + [anon_sym_thread_local] = ACTIONS(2346), + [anon_sym___thread] = ACTIONS(2346), + [anon_sym_CG_EXTERN] = ACTIONS(2346), + [anon_sym_CG_INLINE] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2346), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2346), + [anon_sym_IBOutlet] = ACTIONS(2346), + [anon_sym_IBInspectable] = ACTIONS(2346), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2346), + [anon_sym_NS_INLINE] = ACTIONS(2346), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2346), + [anon_sym_OBJC_EXPORT] = ACTIONS(2346), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_constexpr] = ACTIONS(2346), + [anon_sym_volatile] = ACTIONS(2346), + [anon_sym_restrict] = ACTIONS(2346), + [anon_sym___restrict__] = ACTIONS(2346), + [anon_sym__Atomic] = ACTIONS(2346), + [anon_sym__Noreturn] = ACTIONS(2346), + [anon_sym__Nonnull] = ACTIONS(2346), + [anon_sym_nullable] = ACTIONS(2346), + [anon_sym__Complex] = ACTIONS(2346), + [anon_sym__Nullable] = ACTIONS(2346), + [anon_sym__Nullable_result] = ACTIONS(2346), + [anon_sym__Null_unspecified] = ACTIONS(2346), + [anon_sym___autoreleasing] = ACTIONS(2346), + [anon_sym___block] = ACTIONS(2346), + [anon_sym___bridge] = ACTIONS(2346), + [anon_sym___bridge_retained] = ACTIONS(2346), + [anon_sym___bridge_transfer] = ACTIONS(2346), + [anon_sym___complex] = ACTIONS(2346), + [anon_sym___const] = ACTIONS(2346), + [anon_sym___imag] = ACTIONS(2346), + [anon_sym___kindof] = ACTIONS(2346), + [anon_sym___nonnull] = ACTIONS(2346), + [anon_sym___nullable] = ACTIONS(2346), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2346), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2346), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2346), + [anon_sym___real] = ACTIONS(2346), + [anon_sym___strong] = ACTIONS(2346), + [anon_sym___unsafe_unretained] = ACTIONS(2346), + [anon_sym___unused] = ACTIONS(2346), + [anon_sym___weak] = ACTIONS(2346), + [anon_sym_alignas] = ACTIONS(2346), + [anon_sym__Alignas] = ACTIONS(2346), + [sym_primitive_type] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_switch] = ACTIONS(2346), + [anon_sym_case] = ACTIONS(2346), + [anon_sym_default] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_do] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_goto] = ACTIONS(2346), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2346), + [anon_sym__Generic] = ACTIONS(2346), + [anon_sym_asm] = ACTIONS(2346), + [anon_sym___asm__] = ACTIONS(2346), + [anon_sym___asm] = ACTIONS(2346), + [sym_number_literal] = ACTIONS(2348), + [anon_sym_L_SQUOTE] = ACTIONS(2348), + [anon_sym_u_SQUOTE] = ACTIONS(2348), + [anon_sym_U_SQUOTE] = ACTIONS(2348), + [anon_sym_u8_SQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_L_DQUOTE] = ACTIONS(2348), + [anon_sym_u_DQUOTE] = ACTIONS(2348), + [anon_sym_U_DQUOTE] = ACTIONS(2348), + [anon_sym_u8_DQUOTE] = ACTIONS(2348), + [sym_true] = ACTIONS(2346), + [sym_false] = ACTIONS(2346), + [anon_sym_NULL] = ACTIONS(2346), + [anon_sym_nullptr] = ACTIONS(2346), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2346), + [anon_sym___typeof] = ACTIONS(2346), + [anon_sym_typeof] = ACTIONS(2346), + [anon_sym_ATimport] = ACTIONS(2348), + [aux_sym_preproc_undef_token1] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(2346), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2346), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2346), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2346), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2346), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE] = ACTIONS(2346), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_API_AVAILABLE] = ACTIONS(2346), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_API_DEPRECATED] = ACTIONS(2346), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2346), + [anon_sym___deprecated_msg] = ACTIONS(2346), + [anon_sym___deprecated_enum_msg] = ACTIONS(2346), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2346), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2346), + [anon_sym_ATprotocol] = ACTIONS(2348), + [anon_sym_ATinterface] = ACTIONS(2348), + [anon_sym_ATimplementation] = ACTIONS(2348), + [anon_sym_ATcompatibility_alias] = ACTIONS(2348), + [anon_sym_ATsynthesize] = ACTIONS(2348), + [anon_sym_ATdynamic] = ACTIONS(2348), + [anon_sym_ATtry] = ACTIONS(2348), + [anon_sym___try] = ACTIONS(2346), + [anon_sym_ATcatch] = ACTIONS(2348), + [anon_sym___catch] = ACTIONS(2346), + [anon_sym_ATfinally] = ACTIONS(2348), + [anon_sym___finally] = ACTIONS(2346), + [anon_sym_ATthrow] = ACTIONS(2348), + [anon_sym_ATselector] = ACTIONS(2348), + [anon_sym_ATavailable] = ACTIONS(2348), + [anon_sym___builtin_available] = ACTIONS(2346), + [anon_sym_va_arg] = ACTIONS(2346), + [anon_sym_ATencode] = ACTIONS(2348), + [anon_sym_ATsynchronized] = ACTIONS(2348), + [anon_sym_BOOL] = ACTIONS(2346), + [anon_sym_IMP] = ACTIONS(2346), + [anon_sym_SEL] = ACTIONS(2346), + [anon_sym_Class] = ACTIONS(2346), + [anon_sym_id] = ACTIONS(2346), + }, + [184] = { + [sym_identifier] = ACTIONS(2350), + [aux_sym_preproc_include_token1] = ACTIONS(2350), + [aux_sym_preproc_include_token2] = ACTIONS(2350), + [aux_sym_preproc_def_token1] = ACTIONS(2350), + [aux_sym_preproc_if_token1] = ACTIONS(2350), + [aux_sym_preproc_if_token2] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2350), + [aux_sym_preproc_else_token1] = ACTIONS(2350), + [aux_sym_preproc_elif_token1] = ACTIONS(2350), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2350), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2350), + [sym_preproc_directive] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(2352), + [anon_sym_BANG] = ACTIONS(2352), + [anon_sym_TILDE] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2350), + [anon_sym_STAR] = ACTIONS(2352), + [anon_sym_CARET] = ACTIONS(2352), + [anon_sym_AMP] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2352), + [anon_sym___extension__] = ACTIONS(2350), + [anon_sym_typedef] = ACTIONS(2350), + [anon_sym_extern] = ACTIONS(2350), + [anon_sym___attribute__] = ACTIONS(2350), + [anon_sym___attribute] = ACTIONS(2350), + [anon_sym_noreturn] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2352), + [anon_sym___declspec] = ACTIONS(2350), + [anon_sym___cdecl] = ACTIONS(2350), + [anon_sym___clrcall] = ACTIONS(2350), + [anon_sym___stdcall] = ACTIONS(2350), + [anon_sym___fastcall] = ACTIONS(2350), + [anon_sym___thiscall] = ACTIONS(2350), + [anon_sym___vectorcall] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2352), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(2350), + [anon_sym_ATautoreleasepool] = ACTIONS(2352), + [anon_sym_auto] = ACTIONS(2350), + [anon_sym_register] = ACTIONS(2350), + [anon_sym_inline] = ACTIONS(2350), + [anon_sym___inline] = ACTIONS(2350), + [anon_sym___inline__] = ACTIONS(2350), + [anon_sym___forceinline] = ACTIONS(2350), + [anon_sym_thread_local] = ACTIONS(2350), + [anon_sym___thread] = ACTIONS(2350), + [anon_sym_CG_EXTERN] = ACTIONS(2350), + [anon_sym_CG_INLINE] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2350), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2350), + [anon_sym_IBOutlet] = ACTIONS(2350), + [anon_sym_IBInspectable] = ACTIONS(2350), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2350), + [anon_sym_NS_INLINE] = ACTIONS(2350), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2350), + [anon_sym_OBJC_EXPORT] = ACTIONS(2350), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2350), + [anon_sym_const] = ACTIONS(2350), + [anon_sym_constexpr] = ACTIONS(2350), + [anon_sym_volatile] = ACTIONS(2350), + [anon_sym_restrict] = ACTIONS(2350), + [anon_sym___restrict__] = ACTIONS(2350), + [anon_sym__Atomic] = ACTIONS(2350), + [anon_sym__Noreturn] = ACTIONS(2350), + [anon_sym__Nonnull] = ACTIONS(2350), + [anon_sym_nullable] = ACTIONS(2350), + [anon_sym__Complex] = ACTIONS(2350), + [anon_sym__Nullable] = ACTIONS(2350), + [anon_sym__Nullable_result] = ACTIONS(2350), + [anon_sym__Null_unspecified] = ACTIONS(2350), + [anon_sym___autoreleasing] = ACTIONS(2350), + [anon_sym___block] = ACTIONS(2350), + [anon_sym___bridge] = ACTIONS(2350), + [anon_sym___bridge_retained] = ACTIONS(2350), + [anon_sym___bridge_transfer] = ACTIONS(2350), + [anon_sym___complex] = ACTIONS(2350), + [anon_sym___const] = ACTIONS(2350), + [anon_sym___imag] = ACTIONS(2350), + [anon_sym___kindof] = ACTIONS(2350), + [anon_sym___nonnull] = ACTIONS(2350), + [anon_sym___nullable] = ACTIONS(2350), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2350), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2350), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2350), + [anon_sym___real] = ACTIONS(2350), + [anon_sym___strong] = ACTIONS(2350), + [anon_sym___unsafe_unretained] = ACTIONS(2350), + [anon_sym___unused] = ACTIONS(2350), + [anon_sym___weak] = ACTIONS(2350), + [anon_sym_alignas] = ACTIONS(2350), + [anon_sym__Alignas] = ACTIONS(2350), + [sym_primitive_type] = ACTIONS(2350), + [anon_sym_enum] = ACTIONS(2350), + [anon_sym_struct] = ACTIONS(2350), + [anon_sym_union] = ACTIONS(2350), + [anon_sym_if] = ACTIONS(2350), + [anon_sym_else] = ACTIONS(2350), + [anon_sym_switch] = ACTIONS(2350), + [anon_sym_case] = ACTIONS(2350), + [anon_sym_default] = ACTIONS(2350), + [anon_sym_while] = ACTIONS(2350), + [anon_sym_do] = ACTIONS(2350), + [anon_sym_for] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_return] = ACTIONS(2350), + [anon_sym_break] = ACTIONS(2350), + [anon_sym_continue] = ACTIONS(2350), + [anon_sym_goto] = ACTIONS(2350), + [anon_sym_DASH_DASH] = ACTIONS(2352), + [anon_sym_PLUS_PLUS] = ACTIONS(2352), + [anon_sym_sizeof] = ACTIONS(2350), + [anon_sym___alignof__] = ACTIONS(2350), + [anon_sym___alignof] = ACTIONS(2350), + [anon_sym__alignof] = ACTIONS(2350), + [anon_sym_alignof] = ACTIONS(2350), + [anon_sym__Alignof] = ACTIONS(2350), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_asm] = ACTIONS(2350), + [anon_sym___asm__] = ACTIONS(2350), + [anon_sym___asm] = ACTIONS(2350), + [sym_number_literal] = ACTIONS(2352), + [anon_sym_L_SQUOTE] = ACTIONS(2352), + [anon_sym_u_SQUOTE] = ACTIONS(2352), + [anon_sym_U_SQUOTE] = ACTIONS(2352), + [anon_sym_u8_SQUOTE] = ACTIONS(2352), + [anon_sym_SQUOTE] = ACTIONS(2352), + [anon_sym_AT] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2352), + [anon_sym_L_DQUOTE] = ACTIONS(2352), + [anon_sym_u_DQUOTE] = ACTIONS(2352), + [anon_sym_U_DQUOTE] = ACTIONS(2352), + [anon_sym_u8_DQUOTE] = ACTIONS(2352), + [sym_true] = ACTIONS(2350), + [sym_false] = ACTIONS(2350), + [anon_sym_NULL] = ACTIONS(2350), + [anon_sym_nullptr] = ACTIONS(2350), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2350), + [anon_sym___typeof] = ACTIONS(2350), + [anon_sym_typeof] = ACTIONS(2350), + [anon_sym_ATimport] = ACTIONS(2352), + [aux_sym_preproc_undef_token1] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(2350), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2350), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2350), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2350), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2350), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE] = ACTIONS(2350), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_API_AVAILABLE] = ACTIONS(2350), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_API_DEPRECATED] = ACTIONS(2350), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2350), + [anon_sym___deprecated_msg] = ACTIONS(2350), + [anon_sym___deprecated_enum_msg] = ACTIONS(2350), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2350), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2350), + [anon_sym_ATprotocol] = ACTIONS(2352), + [anon_sym_ATinterface] = ACTIONS(2352), + [anon_sym_ATimplementation] = ACTIONS(2352), + [anon_sym_ATcompatibility_alias] = ACTIONS(2352), + [anon_sym_ATsynthesize] = ACTIONS(2352), + [anon_sym_ATdynamic] = ACTIONS(2352), + [anon_sym_ATtry] = ACTIONS(2352), + [anon_sym___try] = ACTIONS(2350), + [anon_sym_ATcatch] = ACTIONS(2352), + [anon_sym___catch] = ACTIONS(2350), + [anon_sym_ATfinally] = ACTIONS(2352), + [anon_sym___finally] = ACTIONS(2350), + [anon_sym_ATthrow] = ACTIONS(2352), + [anon_sym_ATselector] = ACTIONS(2352), + [anon_sym_ATavailable] = ACTIONS(2352), + [anon_sym___builtin_available] = ACTIONS(2350), + [anon_sym_va_arg] = ACTIONS(2350), + [anon_sym_ATencode] = ACTIONS(2352), + [anon_sym_ATsynchronized] = ACTIONS(2352), + [anon_sym_BOOL] = ACTIONS(2350), + [anon_sym_IMP] = ACTIONS(2350), + [anon_sym_SEL] = ACTIONS(2350), + [anon_sym_Class] = ACTIONS(2350), + [anon_sym_id] = ACTIONS(2350), + }, + [185] = { + [sym_identifier] = ACTIONS(2354), + [aux_sym_preproc_include_token1] = ACTIONS(2354), + [aux_sym_preproc_include_token2] = ACTIONS(2354), + [aux_sym_preproc_def_token1] = ACTIONS(2354), + [aux_sym_preproc_if_token1] = ACTIONS(2354), + [aux_sym_preproc_if_token2] = ACTIONS(2354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2354), + [aux_sym_preproc_else_token1] = ACTIONS(2354), + [aux_sym_preproc_elif_token1] = ACTIONS(2354), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2354), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2354), + [sym_preproc_directive] = ACTIONS(2354), + [anon_sym_LPAREN2] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2354), + [anon_sym_PLUS] = ACTIONS(2354), + [anon_sym_STAR] = ACTIONS(2356), + [anon_sym_CARET] = ACTIONS(2356), + [anon_sym_AMP] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym___extension__] = ACTIONS(2354), + [anon_sym_typedef] = ACTIONS(2354), + [anon_sym_extern] = ACTIONS(2354), + [anon_sym___attribute__] = ACTIONS(2354), + [anon_sym___attribute] = ACTIONS(2354), + [anon_sym_noreturn] = ACTIONS(2354), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym___declspec] = ACTIONS(2354), + [anon_sym___cdecl] = ACTIONS(2354), + [anon_sym___clrcall] = ACTIONS(2354), + [anon_sym___stdcall] = ACTIONS(2354), + [anon_sym___fastcall] = ACTIONS(2354), + [anon_sym___thiscall] = ACTIONS(2354), + [anon_sym___vectorcall] = ACTIONS(2354), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_signed] = ACTIONS(2354), + [anon_sym_unsigned] = ACTIONS(2354), + [anon_sym_long] = ACTIONS(2354), + [anon_sym_short] = ACTIONS(2354), + [anon_sym_static] = ACTIONS(2354), + [anon_sym_ATautoreleasepool] = ACTIONS(2356), + [anon_sym_auto] = ACTIONS(2354), + [anon_sym_register] = ACTIONS(2354), + [anon_sym_inline] = ACTIONS(2354), + [anon_sym___inline] = ACTIONS(2354), + [anon_sym___inline__] = ACTIONS(2354), + [anon_sym___forceinline] = ACTIONS(2354), + [anon_sym_thread_local] = ACTIONS(2354), + [anon_sym___thread] = ACTIONS(2354), + [anon_sym_CG_EXTERN] = ACTIONS(2354), + [anon_sym_CG_INLINE] = ACTIONS(2354), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2354), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2354), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2354), + [anon_sym_IBOutlet] = ACTIONS(2354), + [anon_sym_IBInspectable] = ACTIONS(2354), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2354), + [anon_sym_NS_INLINE] = ACTIONS(2354), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2354), + [anon_sym_OBJC_EXPORT] = ACTIONS(2354), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2354), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2354), + [anon_sym_const] = ACTIONS(2354), + [anon_sym_constexpr] = ACTIONS(2354), + [anon_sym_volatile] = ACTIONS(2354), + [anon_sym_restrict] = ACTIONS(2354), + [anon_sym___restrict__] = ACTIONS(2354), + [anon_sym__Atomic] = ACTIONS(2354), + [anon_sym__Noreturn] = ACTIONS(2354), + [anon_sym__Nonnull] = ACTIONS(2354), + [anon_sym_nullable] = ACTIONS(2354), + [anon_sym__Complex] = ACTIONS(2354), + [anon_sym__Nullable] = ACTIONS(2354), + [anon_sym__Nullable_result] = ACTIONS(2354), + [anon_sym__Null_unspecified] = ACTIONS(2354), + [anon_sym___autoreleasing] = ACTIONS(2354), + [anon_sym___block] = ACTIONS(2354), + [anon_sym___bridge] = ACTIONS(2354), + [anon_sym___bridge_retained] = ACTIONS(2354), + [anon_sym___bridge_transfer] = ACTIONS(2354), + [anon_sym___complex] = ACTIONS(2354), + [anon_sym___const] = ACTIONS(2354), + [anon_sym___imag] = ACTIONS(2354), + [anon_sym___kindof] = ACTIONS(2354), + [anon_sym___nonnull] = ACTIONS(2354), + [anon_sym___nullable] = ACTIONS(2354), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2354), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2354), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2354), + [anon_sym___real] = ACTIONS(2354), + [anon_sym___strong] = ACTIONS(2354), + [anon_sym___unsafe_unretained] = ACTIONS(2354), + [anon_sym___unused] = ACTIONS(2354), + [anon_sym___weak] = ACTIONS(2354), + [anon_sym_alignas] = ACTIONS(2354), + [anon_sym__Alignas] = ACTIONS(2354), + [sym_primitive_type] = ACTIONS(2354), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(2354), + [anon_sym_union] = ACTIONS(2354), + [anon_sym_if] = ACTIONS(2354), + [anon_sym_else] = ACTIONS(2354), + [anon_sym_switch] = ACTIONS(2354), + [anon_sym_case] = ACTIONS(2354), + [anon_sym_default] = ACTIONS(2354), + [anon_sym_while] = ACTIONS(2354), + [anon_sym_do] = ACTIONS(2354), + [anon_sym_for] = ACTIONS(2354), + [anon_sym_in] = ACTIONS(2354), + [anon_sym_return] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_goto] = ACTIONS(2354), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_sizeof] = ACTIONS(2354), + [anon_sym___alignof__] = ACTIONS(2354), + [anon_sym___alignof] = ACTIONS(2354), + [anon_sym__alignof] = ACTIONS(2354), + [anon_sym_alignof] = ACTIONS(2354), + [anon_sym__Alignof] = ACTIONS(2354), + [anon_sym_offsetof] = ACTIONS(2354), + [anon_sym__Generic] = ACTIONS(2354), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2356), + [anon_sym_u_SQUOTE] = ACTIONS(2356), + [anon_sym_U_SQUOTE] = ACTIONS(2356), + [anon_sym_u8_SQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2354), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_L_DQUOTE] = ACTIONS(2356), + [anon_sym_u_DQUOTE] = ACTIONS(2356), + [anon_sym_U_DQUOTE] = ACTIONS(2356), + [anon_sym_u8_DQUOTE] = ACTIONS(2356), + [sym_true] = ACTIONS(2354), + [sym_false] = ACTIONS(2354), + [anon_sym_NULL] = ACTIONS(2354), + [anon_sym_nullptr] = ACTIONS(2354), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2354), + [anon_sym___typeof] = ACTIONS(2354), + [anon_sym_typeof] = ACTIONS(2354), + [anon_sym_ATimport] = ACTIONS(2356), + [aux_sym_preproc_undef_token1] = ACTIONS(2354), + [anon_sym_POUND] = ACTIONS(2354), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2354), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2354), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2354), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2354), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2354), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2354), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2354), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2354), + [anon_sym_NS_AVAILABLE] = ACTIONS(2354), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2354), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_API_AVAILABLE] = ACTIONS(2354), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_API_DEPRECATED] = ACTIONS(2354), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2354), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2354), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2354), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2354), + [anon_sym___deprecated_msg] = ACTIONS(2354), + [anon_sym___deprecated_enum_msg] = ACTIONS(2354), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2354), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2354), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2354), + [anon_sym_ATprotocol] = ACTIONS(2356), + [anon_sym_ATinterface] = ACTIONS(2356), + [anon_sym_ATimplementation] = ACTIONS(2356), + [anon_sym_ATcompatibility_alias] = ACTIONS(2356), + [anon_sym_ATsynthesize] = ACTIONS(2356), + [anon_sym_ATdynamic] = ACTIONS(2356), + [anon_sym_ATtry] = ACTIONS(2356), + [anon_sym___try] = ACTIONS(2354), + [anon_sym_ATcatch] = ACTIONS(2356), + [anon_sym___catch] = ACTIONS(2354), + [anon_sym_ATfinally] = ACTIONS(2356), + [anon_sym___finally] = ACTIONS(2354), + [anon_sym_ATthrow] = ACTIONS(2356), + [anon_sym_ATselector] = ACTIONS(2356), + [anon_sym_ATavailable] = ACTIONS(2356), + [anon_sym___builtin_available] = ACTIONS(2354), + [anon_sym_va_arg] = ACTIONS(2354), + [anon_sym_ATencode] = ACTIONS(2356), + [anon_sym_ATsynchronized] = ACTIONS(2356), + [anon_sym_BOOL] = ACTIONS(2354), + [anon_sym_IMP] = ACTIONS(2354), + [anon_sym_SEL] = ACTIONS(2354), + [anon_sym_Class] = ACTIONS(2354), + [anon_sym_id] = ACTIONS(2354), + }, + [186] = { + [sym_catch_clause] = STATE(186), + [aux_sym_try_statement_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(2318), + [aux_sym_preproc_include_token1] = ACTIONS(2318), + [aux_sym_preproc_include_token2] = ACTIONS(2318), + [aux_sym_preproc_def_token1] = ACTIONS(2318), + [aux_sym_preproc_if_token1] = ACTIONS(2318), + [aux_sym_preproc_if_token2] = ACTIONS(2318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2318), + [aux_sym_preproc_else_token1] = ACTIONS(2318), + [aux_sym_preproc_elif_token1] = ACTIONS(2318), + [sym_preproc_directive] = ACTIONS(2318), + [anon_sym_LPAREN2] = ACTIONS(2320), + [anon_sym_BANG] = ACTIONS(2320), + [anon_sym_TILDE] = ACTIONS(2320), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2320), + [anon_sym_CARET] = ACTIONS(2320), + [anon_sym_AMP] = ACTIONS(2320), + [anon_sym_SEMI] = ACTIONS(2320), + [anon_sym___extension__] = ACTIONS(2318), + [anon_sym_typedef] = ACTIONS(2318), + [anon_sym_extern] = ACTIONS(2318), + [anon_sym___attribute__] = ACTIONS(2318), + [anon_sym___attribute] = ACTIONS(2318), + [anon_sym_noreturn] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2320), + [anon_sym___declspec] = ACTIONS(2318), + [anon_sym___cdecl] = ACTIONS(2318), + [anon_sym___clrcall] = ACTIONS(2318), + [anon_sym___stdcall] = ACTIONS(2318), + [anon_sym___fastcall] = ACTIONS(2318), + [anon_sym___thiscall] = ACTIONS(2318), + [anon_sym___vectorcall] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2320), + [anon_sym_signed] = ACTIONS(2318), + [anon_sym_unsigned] = ACTIONS(2318), + [anon_sym_long] = ACTIONS(2318), + [anon_sym_short] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_ATautoreleasepool] = ACTIONS(2320), + [anon_sym_auto] = ACTIONS(2318), + [anon_sym_register] = ACTIONS(2318), + [anon_sym_inline] = ACTIONS(2318), + [anon_sym___inline] = ACTIONS(2318), + [anon_sym___inline__] = ACTIONS(2318), + [anon_sym___forceinline] = ACTIONS(2318), + [anon_sym_thread_local] = ACTIONS(2318), + [anon_sym___thread] = ACTIONS(2318), + [anon_sym_CG_EXTERN] = ACTIONS(2318), + [anon_sym_CG_INLINE] = ACTIONS(2318), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2318), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2318), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2318), + [anon_sym_IBOutlet] = ACTIONS(2318), + [anon_sym_IBInspectable] = ACTIONS(2318), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2318), + [anon_sym_NS_INLINE] = ACTIONS(2318), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2318), + [anon_sym_OBJC_EXPORT] = ACTIONS(2318), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2318), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_constexpr] = ACTIONS(2318), + [anon_sym_volatile] = ACTIONS(2318), + [anon_sym_restrict] = ACTIONS(2318), + [anon_sym___restrict__] = ACTIONS(2318), + [anon_sym__Atomic] = ACTIONS(2318), + [anon_sym__Noreturn] = ACTIONS(2318), + [anon_sym__Nonnull] = ACTIONS(2318), + [anon_sym_nullable] = ACTIONS(2318), + [anon_sym__Complex] = ACTIONS(2318), + [anon_sym__Nullable] = ACTIONS(2318), + [anon_sym__Nullable_result] = ACTIONS(2318), + [anon_sym__Null_unspecified] = ACTIONS(2318), + [anon_sym___autoreleasing] = ACTIONS(2318), + [anon_sym___block] = ACTIONS(2318), + [anon_sym___bridge] = ACTIONS(2318), + [anon_sym___bridge_retained] = ACTIONS(2318), + [anon_sym___bridge_transfer] = ACTIONS(2318), + [anon_sym___complex] = ACTIONS(2318), + [anon_sym___const] = ACTIONS(2318), + [anon_sym___imag] = ACTIONS(2318), + [anon_sym___kindof] = ACTIONS(2318), + [anon_sym___nonnull] = ACTIONS(2318), + [anon_sym___nullable] = ACTIONS(2318), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2318), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2318), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2318), + [anon_sym___real] = ACTIONS(2318), + [anon_sym___strong] = ACTIONS(2318), + [anon_sym___unsafe_unretained] = ACTIONS(2318), + [anon_sym___unused] = ACTIONS(2318), + [anon_sym___weak] = ACTIONS(2318), + [anon_sym_alignas] = ACTIONS(2318), + [anon_sym__Alignas] = ACTIONS(2318), + [sym_primitive_type] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_case] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_goto] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2320), + [anon_sym_sizeof] = ACTIONS(2318), + [anon_sym___alignof__] = ACTIONS(2318), + [anon_sym___alignof] = ACTIONS(2318), + [anon_sym__alignof] = ACTIONS(2318), + [anon_sym_alignof] = ACTIONS(2318), + [anon_sym__Alignof] = ACTIONS(2318), + [anon_sym_offsetof] = ACTIONS(2318), + [anon_sym__Generic] = ACTIONS(2318), + [anon_sym_asm] = ACTIONS(2318), + [anon_sym___asm__] = ACTIONS(2318), + [anon_sym___asm] = ACTIONS(2318), + [sym_number_literal] = ACTIONS(2320), + [anon_sym_L_SQUOTE] = ACTIONS(2320), + [anon_sym_u_SQUOTE] = ACTIONS(2320), + [anon_sym_U_SQUOTE] = ACTIONS(2320), + [anon_sym_u8_SQUOTE] = ACTIONS(2320), + [anon_sym_SQUOTE] = ACTIONS(2320), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_DQUOTE] = ACTIONS(2320), + [anon_sym_L_DQUOTE] = ACTIONS(2320), + [anon_sym_u_DQUOTE] = ACTIONS(2320), + [anon_sym_U_DQUOTE] = ACTIONS(2320), + [anon_sym_u8_DQUOTE] = ACTIONS(2320), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [anon_sym_NULL] = ACTIONS(2318), + [anon_sym_nullptr] = ACTIONS(2318), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2318), + [anon_sym___typeof] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_ATimport] = ACTIONS(2320), + [aux_sym_preproc_undef_token1] = ACTIONS(2318), + [anon_sym_POUND] = ACTIONS(2318), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2318), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2318), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2318), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2318), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2318), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2318), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2318), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2318), + [anon_sym_NS_AVAILABLE] = ACTIONS(2318), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2318), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_API_AVAILABLE] = ACTIONS(2318), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_API_DEPRECATED] = ACTIONS(2318), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2318), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2318), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2318), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2318), + [anon_sym___deprecated_msg] = ACTIONS(2318), + [anon_sym___deprecated_enum_msg] = ACTIONS(2318), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2318), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2318), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2318), + [anon_sym_ATprotocol] = ACTIONS(2320), + [anon_sym_ATinterface] = ACTIONS(2320), + [anon_sym_ATimplementation] = ACTIONS(2320), + [anon_sym_ATcompatibility_alias] = ACTIONS(2320), + [anon_sym_ATsynthesize] = ACTIONS(2320), + [anon_sym_ATdynamic] = ACTIONS(2320), + [anon_sym_ATtry] = ACTIONS(2320), + [anon_sym___try] = ACTIONS(2318), + [anon_sym_ATcatch] = ACTIONS(2358), + [anon_sym___catch] = ACTIONS(2361), + [anon_sym_ATfinally] = ACTIONS(2320), + [anon_sym___finally] = ACTIONS(2318), + [anon_sym_ATthrow] = ACTIONS(2320), + [anon_sym_ATselector] = ACTIONS(2320), + [anon_sym_ATavailable] = ACTIONS(2320), + [anon_sym___builtin_available] = ACTIONS(2318), + [anon_sym_va_arg] = ACTIONS(2318), + [anon_sym_ATencode] = ACTIONS(2320), + [anon_sym_ATsynchronized] = ACTIONS(2320), + [anon_sym_BOOL] = ACTIONS(2318), + [anon_sym_IMP] = ACTIONS(2318), + [anon_sym_SEL] = ACTIONS(2318), + [anon_sym_Class] = ACTIONS(2318), + [anon_sym_id] = ACTIONS(2318), + }, + [187] = { + [sym_identifier] = ACTIONS(2364), + [aux_sym_preproc_include_token1] = ACTIONS(2364), + [aux_sym_preproc_include_token2] = ACTIONS(2364), + [aux_sym_preproc_def_token1] = ACTIONS(2364), + [aux_sym_preproc_if_token1] = ACTIONS(2364), + [aux_sym_preproc_if_token2] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2364), + [aux_sym_preproc_else_token1] = ACTIONS(2364), + [aux_sym_preproc_elif_token1] = ACTIONS(2364), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2364), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2364), + [sym_preproc_directive] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_PLUS] = ACTIONS(2364), + [anon_sym_STAR] = ACTIONS(2366), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_AMP] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_typedef] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym___attribute__] = ACTIONS(2364), + [anon_sym___attribute] = ACTIONS(2364), + [anon_sym_noreturn] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym___declspec] = ACTIONS(2364), + [anon_sym___cdecl] = ACTIONS(2364), + [anon_sym___clrcall] = ACTIONS(2364), + [anon_sym___stdcall] = ACTIONS(2364), + [anon_sym___fastcall] = ACTIONS(2364), + [anon_sym___thiscall] = ACTIONS(2364), + [anon_sym___vectorcall] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_signed] = ACTIONS(2364), + [anon_sym_unsigned] = ACTIONS(2364), + [anon_sym_long] = ACTIONS(2364), + [anon_sym_short] = ACTIONS(2364), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_ATautoreleasepool] = ACTIONS(2366), + [anon_sym_auto] = ACTIONS(2364), + [anon_sym_register] = ACTIONS(2364), + [anon_sym_inline] = ACTIONS(2364), + [anon_sym___inline] = ACTIONS(2364), + [anon_sym___inline__] = ACTIONS(2364), + [anon_sym___forceinline] = ACTIONS(2364), + [anon_sym_thread_local] = ACTIONS(2364), + [anon_sym___thread] = ACTIONS(2364), + [anon_sym_CG_EXTERN] = ACTIONS(2364), + [anon_sym_CG_INLINE] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2364), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2364), + [anon_sym_IBOutlet] = ACTIONS(2364), + [anon_sym_IBInspectable] = ACTIONS(2364), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2364), + [anon_sym_NS_INLINE] = ACTIONS(2364), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2364), + [anon_sym_OBJC_EXPORT] = ACTIONS(2364), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [anon_sym_constexpr] = ACTIONS(2364), + [anon_sym_volatile] = ACTIONS(2364), + [anon_sym_restrict] = ACTIONS(2364), + [anon_sym___restrict__] = ACTIONS(2364), + [anon_sym__Atomic] = ACTIONS(2364), + [anon_sym__Noreturn] = ACTIONS(2364), + [anon_sym__Nonnull] = ACTIONS(2364), + [anon_sym_nullable] = ACTIONS(2364), + [anon_sym__Complex] = ACTIONS(2364), + [anon_sym__Nullable] = ACTIONS(2364), + [anon_sym__Nullable_result] = ACTIONS(2364), + [anon_sym__Null_unspecified] = ACTIONS(2364), + [anon_sym___autoreleasing] = ACTIONS(2364), + [anon_sym___block] = ACTIONS(2364), + [anon_sym___bridge] = ACTIONS(2364), + [anon_sym___bridge_retained] = ACTIONS(2364), + [anon_sym___bridge_transfer] = ACTIONS(2364), + [anon_sym___complex] = ACTIONS(2364), + [anon_sym___const] = ACTIONS(2364), + [anon_sym___imag] = ACTIONS(2364), + [anon_sym___kindof] = ACTIONS(2364), + [anon_sym___nonnull] = ACTIONS(2364), + [anon_sym___nullable] = ACTIONS(2364), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2364), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2364), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2364), + [anon_sym___real] = ACTIONS(2364), + [anon_sym___strong] = ACTIONS(2364), + [anon_sym___unsafe_unretained] = ACTIONS(2364), + [anon_sym___unused] = ACTIONS(2364), + [anon_sym___weak] = ACTIONS(2364), + [anon_sym_alignas] = ACTIONS(2364), + [anon_sym__Alignas] = ACTIONS(2364), + [sym_primitive_type] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(2364), + [anon_sym_union] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_switch] = ACTIONS(2364), + [anon_sym_case] = ACTIONS(2364), + [anon_sym_default] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_do] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_in] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_goto] = ACTIONS(2364), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_sizeof] = ACTIONS(2364), + [anon_sym___alignof__] = ACTIONS(2364), + [anon_sym___alignof] = ACTIONS(2364), + [anon_sym__alignof] = ACTIONS(2364), + [anon_sym_alignof] = ACTIONS(2364), + [anon_sym__Alignof] = ACTIONS(2364), + [anon_sym_offsetof] = ACTIONS(2364), + [anon_sym__Generic] = ACTIONS(2364), + [anon_sym_asm] = ACTIONS(2364), + [anon_sym___asm__] = ACTIONS(2364), + [anon_sym___asm] = ACTIONS(2364), + [sym_number_literal] = ACTIONS(2366), + [anon_sym_L_SQUOTE] = ACTIONS(2366), + [anon_sym_u_SQUOTE] = ACTIONS(2366), + [anon_sym_U_SQUOTE] = ACTIONS(2366), + [anon_sym_u8_SQUOTE] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2366), + [anon_sym_AT] = ACTIONS(2364), + [anon_sym_DQUOTE] = ACTIONS(2366), + [anon_sym_L_DQUOTE] = ACTIONS(2366), + [anon_sym_u_DQUOTE] = ACTIONS(2366), + [anon_sym_U_DQUOTE] = ACTIONS(2366), + [anon_sym_u8_DQUOTE] = ACTIONS(2366), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2364), + [anon_sym___typeof] = ACTIONS(2364), + [anon_sym_typeof] = ACTIONS(2364), + [anon_sym_ATimport] = ACTIONS(2366), + [aux_sym_preproc_undef_token1] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(2364), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2364), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2364), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2364), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2364), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE] = ACTIONS(2364), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_API_AVAILABLE] = ACTIONS(2364), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_API_DEPRECATED] = ACTIONS(2364), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2364), + [anon_sym___deprecated_msg] = ACTIONS(2364), + [anon_sym___deprecated_enum_msg] = ACTIONS(2364), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2364), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2364), + [anon_sym_ATprotocol] = ACTIONS(2366), + [anon_sym_ATinterface] = ACTIONS(2366), + [anon_sym_ATimplementation] = ACTIONS(2366), + [anon_sym_ATcompatibility_alias] = ACTIONS(2366), + [anon_sym_ATsynthesize] = ACTIONS(2366), + [anon_sym_ATdynamic] = ACTIONS(2366), + [anon_sym_ATtry] = ACTIONS(2366), + [anon_sym___try] = ACTIONS(2364), + [anon_sym_ATcatch] = ACTIONS(2366), + [anon_sym___catch] = ACTIONS(2364), + [anon_sym_ATfinally] = ACTIONS(2366), + [anon_sym___finally] = ACTIONS(2364), + [anon_sym_ATthrow] = ACTIONS(2366), + [anon_sym_ATselector] = ACTIONS(2366), + [anon_sym_ATavailable] = ACTIONS(2366), + [anon_sym___builtin_available] = ACTIONS(2364), + [anon_sym_va_arg] = ACTIONS(2364), + [anon_sym_ATencode] = ACTIONS(2366), + [anon_sym_ATsynchronized] = ACTIONS(2366), + [anon_sym_BOOL] = ACTIONS(2364), + [anon_sym_IMP] = ACTIONS(2364), + [anon_sym_SEL] = ACTIONS(2364), + [anon_sym_Class] = ACTIONS(2364), + [anon_sym_id] = ACTIONS(2364), + }, + [188] = { + [sym_identifier] = ACTIONS(2368), + [aux_sym_preproc_include_token1] = ACTIONS(2368), + [aux_sym_preproc_include_token2] = ACTIONS(2368), + [aux_sym_preproc_def_token1] = ACTIONS(2368), + [aux_sym_preproc_if_token1] = ACTIONS(2368), + [aux_sym_preproc_if_token2] = ACTIONS(2368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2368), + [aux_sym_preproc_else_token1] = ACTIONS(2368), + [aux_sym_preproc_elif_token1] = ACTIONS(2368), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2368), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2368), + [sym_preproc_directive] = ACTIONS(2368), + [anon_sym_LPAREN2] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym___extension__] = ACTIONS(2368), + [anon_sym_typedef] = ACTIONS(2368), + [anon_sym_extern] = ACTIONS(2368), + [anon_sym___attribute__] = ACTIONS(2368), + [anon_sym___attribute] = ACTIONS(2368), + [anon_sym_noreturn] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym___declspec] = ACTIONS(2368), + [anon_sym___cdecl] = ACTIONS(2368), + [anon_sym___clrcall] = ACTIONS(2368), + [anon_sym___stdcall] = ACTIONS(2368), + [anon_sym___fastcall] = ACTIONS(2368), + [anon_sym___thiscall] = ACTIONS(2368), + [anon_sym___vectorcall] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_signed] = ACTIONS(2368), + [anon_sym_unsigned] = ACTIONS(2368), + [anon_sym_long] = ACTIONS(2368), + [anon_sym_short] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_ATautoreleasepool] = ACTIONS(2370), + [anon_sym_auto] = ACTIONS(2368), + [anon_sym_register] = ACTIONS(2368), + [anon_sym_inline] = ACTIONS(2368), + [anon_sym___inline] = ACTIONS(2368), + [anon_sym___inline__] = ACTIONS(2368), + [anon_sym___forceinline] = ACTIONS(2368), + [anon_sym_thread_local] = ACTIONS(2368), + [anon_sym___thread] = ACTIONS(2368), + [anon_sym_CG_EXTERN] = ACTIONS(2368), + [anon_sym_CG_INLINE] = ACTIONS(2368), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2368), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2368), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2368), + [anon_sym_IBOutlet] = ACTIONS(2368), + [anon_sym_IBInspectable] = ACTIONS(2368), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2368), + [anon_sym_NS_INLINE] = ACTIONS(2368), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2368), + [anon_sym_OBJC_EXPORT] = ACTIONS(2368), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2368), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_constexpr] = ACTIONS(2368), + [anon_sym_volatile] = ACTIONS(2368), + [anon_sym_restrict] = ACTIONS(2368), + [anon_sym___restrict__] = ACTIONS(2368), + [anon_sym__Atomic] = ACTIONS(2368), + [anon_sym__Noreturn] = ACTIONS(2368), + [anon_sym__Nonnull] = ACTIONS(2368), + [anon_sym_nullable] = ACTIONS(2368), + [anon_sym__Complex] = ACTIONS(2368), + [anon_sym__Nullable] = ACTIONS(2368), + [anon_sym__Nullable_result] = ACTIONS(2368), + [anon_sym__Null_unspecified] = ACTIONS(2368), + [anon_sym___autoreleasing] = ACTIONS(2368), + [anon_sym___block] = ACTIONS(2368), + [anon_sym___bridge] = ACTIONS(2368), + [anon_sym___bridge_retained] = ACTIONS(2368), + [anon_sym___bridge_transfer] = ACTIONS(2368), + [anon_sym___complex] = ACTIONS(2368), + [anon_sym___const] = ACTIONS(2368), + [anon_sym___imag] = ACTIONS(2368), + [anon_sym___kindof] = ACTIONS(2368), + [anon_sym___nonnull] = ACTIONS(2368), + [anon_sym___nullable] = ACTIONS(2368), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2368), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2368), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2368), + [anon_sym___real] = ACTIONS(2368), + [anon_sym___strong] = ACTIONS(2368), + [anon_sym___unsafe_unretained] = ACTIONS(2368), + [anon_sym___unused] = ACTIONS(2368), + [anon_sym___weak] = ACTIONS(2368), + [anon_sym_alignas] = ACTIONS(2368), + [anon_sym__Alignas] = ACTIONS(2368), + [sym_primitive_type] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [anon_sym_struct] = ACTIONS(2368), + [anon_sym_union] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_in] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_goto] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_sizeof] = ACTIONS(2368), + [anon_sym___alignof__] = ACTIONS(2368), + [anon_sym___alignof] = ACTIONS(2368), + [anon_sym__alignof] = ACTIONS(2368), + [anon_sym_alignof] = ACTIONS(2368), + [anon_sym__Alignof] = ACTIONS(2368), + [anon_sym_offsetof] = ACTIONS(2368), + [anon_sym__Generic] = ACTIONS(2368), + [anon_sym_asm] = ACTIONS(2368), + [anon_sym___asm__] = ACTIONS(2368), + [anon_sym___asm] = ACTIONS(2368), + [sym_number_literal] = ACTIONS(2370), + [anon_sym_L_SQUOTE] = ACTIONS(2370), + [anon_sym_u_SQUOTE] = ACTIONS(2370), + [anon_sym_U_SQUOTE] = ACTIONS(2370), + [anon_sym_u8_SQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_L_DQUOTE] = ACTIONS(2370), + [anon_sym_u_DQUOTE] = ACTIONS(2370), + [anon_sym_U_DQUOTE] = ACTIONS(2370), + [anon_sym_u8_DQUOTE] = ACTIONS(2370), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [anon_sym_NULL] = ACTIONS(2368), + [anon_sym_nullptr] = ACTIONS(2368), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2368), + [anon_sym___typeof] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_ATimport] = ACTIONS(2370), + [aux_sym_preproc_undef_token1] = ACTIONS(2368), + [anon_sym_POUND] = ACTIONS(2368), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2368), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2368), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2368), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2368), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2368), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2368), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2368), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2368), + [anon_sym_NS_AVAILABLE] = ACTIONS(2368), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2368), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_API_AVAILABLE] = ACTIONS(2368), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_API_DEPRECATED] = ACTIONS(2368), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2368), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2368), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2368), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2368), + [anon_sym___deprecated_msg] = ACTIONS(2368), + [anon_sym___deprecated_enum_msg] = ACTIONS(2368), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2368), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2368), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2368), + [anon_sym_ATprotocol] = ACTIONS(2370), + [anon_sym_ATinterface] = ACTIONS(2370), + [anon_sym_ATimplementation] = ACTIONS(2370), + [anon_sym_ATcompatibility_alias] = ACTIONS(2370), + [anon_sym_ATsynthesize] = ACTIONS(2370), + [anon_sym_ATdynamic] = ACTIONS(2370), + [anon_sym_ATtry] = ACTIONS(2370), + [anon_sym___try] = ACTIONS(2368), + [anon_sym_ATcatch] = ACTIONS(2370), + [anon_sym___catch] = ACTIONS(2368), + [anon_sym_ATfinally] = ACTIONS(2370), + [anon_sym___finally] = ACTIONS(2368), + [anon_sym_ATthrow] = ACTIONS(2370), + [anon_sym_ATselector] = ACTIONS(2370), + [anon_sym_ATavailable] = ACTIONS(2370), + [anon_sym___builtin_available] = ACTIONS(2368), + [anon_sym_va_arg] = ACTIONS(2368), + [anon_sym_ATencode] = ACTIONS(2370), + [anon_sym_ATsynchronized] = ACTIONS(2370), + [anon_sym_BOOL] = ACTIONS(2368), + [anon_sym_IMP] = ACTIONS(2368), + [anon_sym_SEL] = ACTIONS(2368), + [anon_sym_Class] = ACTIONS(2368), + [anon_sym_id] = ACTIONS(2368), + }, + [189] = { + [sym_catch_clause] = STATE(190), + [sym_finally_clause] = STATE(534), + [aux_sym_try_statement_repeat1] = STATE(190), + [sym_identifier] = ACTIONS(2294), + [aux_sym_preproc_include_token1] = ACTIONS(2294), + [aux_sym_preproc_include_token2] = ACTIONS(2294), + [aux_sym_preproc_def_token1] = ACTIONS(2294), + [aux_sym_preproc_if_token1] = ACTIONS(2294), + [aux_sym_preproc_if_token2] = ACTIONS(2294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2294), + [sym_preproc_directive] = ACTIONS(2294), + [anon_sym_LPAREN2] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_STAR] = ACTIONS(2296), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym___extension__] = ACTIONS(2294), + [anon_sym_typedef] = ACTIONS(2294), + [anon_sym_extern] = ACTIONS(2294), + [anon_sym___attribute__] = ACTIONS(2294), + [anon_sym___attribute] = ACTIONS(2294), + [anon_sym_noreturn] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym___declspec] = ACTIONS(2294), + [anon_sym___cdecl] = ACTIONS(2294), + [anon_sym___clrcall] = ACTIONS(2294), + [anon_sym___stdcall] = ACTIONS(2294), + [anon_sym___fastcall] = ACTIONS(2294), + [anon_sym___thiscall] = ACTIONS(2294), + [anon_sym___vectorcall] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_signed] = ACTIONS(2294), + [anon_sym_unsigned] = ACTIONS(2294), + [anon_sym_long] = ACTIONS(2294), + [anon_sym_short] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_ATautoreleasepool] = ACTIONS(2296), + [anon_sym_auto] = ACTIONS(2294), + [anon_sym_register] = ACTIONS(2294), + [anon_sym_inline] = ACTIONS(2294), + [anon_sym___inline] = ACTIONS(2294), + [anon_sym___inline__] = ACTIONS(2294), + [anon_sym___forceinline] = ACTIONS(2294), + [anon_sym_thread_local] = ACTIONS(2294), + [anon_sym___thread] = ACTIONS(2294), + [anon_sym_CG_EXTERN] = ACTIONS(2294), + [anon_sym_CG_INLINE] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2294), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2294), + [anon_sym_IBOutlet] = ACTIONS(2294), + [anon_sym_IBInspectable] = ACTIONS(2294), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2294), + [anon_sym_NS_INLINE] = ACTIONS(2294), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2294), + [anon_sym_OBJC_EXPORT] = ACTIONS(2294), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [anon_sym_constexpr] = ACTIONS(2294), + [anon_sym_volatile] = ACTIONS(2294), + [anon_sym_restrict] = ACTIONS(2294), + [anon_sym___restrict__] = ACTIONS(2294), + [anon_sym__Atomic] = ACTIONS(2294), + [anon_sym__Noreturn] = ACTIONS(2294), + [anon_sym__Nonnull] = ACTIONS(2294), + [anon_sym_nullable] = ACTIONS(2294), + [anon_sym__Complex] = ACTIONS(2294), + [anon_sym__Nullable] = ACTIONS(2294), + [anon_sym__Nullable_result] = ACTIONS(2294), + [anon_sym__Null_unspecified] = ACTIONS(2294), + [anon_sym___autoreleasing] = ACTIONS(2294), + [anon_sym___block] = ACTIONS(2294), + [anon_sym___bridge] = ACTIONS(2294), + [anon_sym___bridge_retained] = ACTIONS(2294), + [anon_sym___bridge_transfer] = ACTIONS(2294), + [anon_sym___complex] = ACTIONS(2294), + [anon_sym___const] = ACTIONS(2294), + [anon_sym___imag] = ACTIONS(2294), + [anon_sym___kindof] = ACTIONS(2294), + [anon_sym___nonnull] = ACTIONS(2294), + [anon_sym___nullable] = ACTIONS(2294), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2294), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2294), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2294), + [anon_sym___real] = ACTIONS(2294), + [anon_sym___strong] = ACTIONS(2294), + [anon_sym___unsafe_unretained] = ACTIONS(2294), + [anon_sym___unused] = ACTIONS(2294), + [anon_sym___weak] = ACTIONS(2294), + [anon_sym_alignas] = ACTIONS(2294), + [anon_sym__Alignas] = ACTIONS(2294), + [sym_primitive_type] = ACTIONS(2294), + [anon_sym_enum] = ACTIONS(2294), + [anon_sym_struct] = ACTIONS(2294), + [anon_sym_union] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_switch] = ACTIONS(2294), + [anon_sym_case] = ACTIONS(2294), + [anon_sym_default] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_goto] = ACTIONS(2294), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_sizeof] = ACTIONS(2294), + [anon_sym___alignof__] = ACTIONS(2294), + [anon_sym___alignof] = ACTIONS(2294), + [anon_sym__alignof] = ACTIONS(2294), + [anon_sym_alignof] = ACTIONS(2294), + [anon_sym__Alignof] = ACTIONS(2294), + [anon_sym_offsetof] = ACTIONS(2294), + [anon_sym__Generic] = ACTIONS(2294), + [anon_sym_asm] = ACTIONS(2294), + [anon_sym___asm__] = ACTIONS(2294), + [anon_sym___asm] = ACTIONS(2294), + [sym_number_literal] = ACTIONS(2296), + [anon_sym_L_SQUOTE] = ACTIONS(2296), + [anon_sym_u_SQUOTE] = ACTIONS(2296), + [anon_sym_U_SQUOTE] = ACTIONS(2296), + [anon_sym_u8_SQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_L_DQUOTE] = ACTIONS(2296), + [anon_sym_u_DQUOTE] = ACTIONS(2296), + [anon_sym_U_DQUOTE] = ACTIONS(2296), + [anon_sym_u8_DQUOTE] = ACTIONS(2296), + [sym_true] = ACTIONS(2294), + [sym_false] = ACTIONS(2294), + [anon_sym_NULL] = ACTIONS(2294), + [anon_sym_nullptr] = ACTIONS(2294), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2294), + [anon_sym___typeof] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(2294), + [anon_sym_ATimport] = ACTIONS(2296), + [aux_sym_preproc_undef_token1] = ACTIONS(2294), + [anon_sym_POUND] = ACTIONS(2294), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2294), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2294), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2294), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2294), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE] = ACTIONS(2294), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_API_AVAILABLE] = ACTIONS(2294), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_API_DEPRECATED] = ACTIONS(2294), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2294), + [anon_sym___deprecated_msg] = ACTIONS(2294), + [anon_sym___deprecated_enum_msg] = ACTIONS(2294), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2294), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2294), + [anon_sym_ATprotocol] = ACTIONS(2296), + [anon_sym_ATinterface] = ACTIONS(2296), + [anon_sym_ATimplementation] = ACTIONS(2296), + [anon_sym_ATcompatibility_alias] = ACTIONS(2296), + [anon_sym_ATsynthesize] = ACTIONS(2296), + [anon_sym_ATdynamic] = ACTIONS(2296), + [anon_sym_ATtry] = ACTIONS(2296), + [anon_sym___try] = ACTIONS(2294), + [anon_sym_ATcatch] = ACTIONS(2372), + [anon_sym___catch] = ACTIONS(2374), + [anon_sym_ATfinally] = ACTIONS(2376), + [anon_sym___finally] = ACTIONS(2378), + [anon_sym_ATthrow] = ACTIONS(2296), + [anon_sym_ATselector] = ACTIONS(2296), + [anon_sym_ATavailable] = ACTIONS(2296), + [anon_sym___builtin_available] = ACTIONS(2294), + [anon_sym_va_arg] = ACTIONS(2294), + [anon_sym_ATencode] = ACTIONS(2296), + [anon_sym_ATsynchronized] = ACTIONS(2296), + [anon_sym_BOOL] = ACTIONS(2294), + [anon_sym_IMP] = ACTIONS(2294), + [anon_sym_SEL] = ACTIONS(2294), + [anon_sym_Class] = ACTIONS(2294), + [anon_sym_id] = ACTIONS(2294), + }, + [190] = { + [sym_catch_clause] = STATE(190), + [aux_sym_try_statement_repeat1] = STATE(190), + [sym_identifier] = ACTIONS(2318), + [aux_sym_preproc_include_token1] = ACTIONS(2318), + [aux_sym_preproc_include_token2] = ACTIONS(2318), + [aux_sym_preproc_def_token1] = ACTIONS(2318), + [aux_sym_preproc_if_token1] = ACTIONS(2318), + [aux_sym_preproc_if_token2] = ACTIONS(2318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2318), + [sym_preproc_directive] = ACTIONS(2318), + [anon_sym_LPAREN2] = ACTIONS(2320), + [anon_sym_BANG] = ACTIONS(2320), + [anon_sym_TILDE] = ACTIONS(2320), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2320), + [anon_sym_CARET] = ACTIONS(2320), + [anon_sym_AMP] = ACTIONS(2320), + [anon_sym_SEMI] = ACTIONS(2320), + [anon_sym___extension__] = ACTIONS(2318), + [anon_sym_typedef] = ACTIONS(2318), + [anon_sym_extern] = ACTIONS(2318), + [anon_sym___attribute__] = ACTIONS(2318), + [anon_sym___attribute] = ACTIONS(2318), + [anon_sym_noreturn] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2320), + [anon_sym___declspec] = ACTIONS(2318), + [anon_sym___cdecl] = ACTIONS(2318), + [anon_sym___clrcall] = ACTIONS(2318), + [anon_sym___stdcall] = ACTIONS(2318), + [anon_sym___fastcall] = ACTIONS(2318), + [anon_sym___thiscall] = ACTIONS(2318), + [anon_sym___vectorcall] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2320), + [anon_sym_signed] = ACTIONS(2318), + [anon_sym_unsigned] = ACTIONS(2318), + [anon_sym_long] = ACTIONS(2318), + [anon_sym_short] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_ATautoreleasepool] = ACTIONS(2320), + [anon_sym_auto] = ACTIONS(2318), + [anon_sym_register] = ACTIONS(2318), + [anon_sym_inline] = ACTIONS(2318), + [anon_sym___inline] = ACTIONS(2318), + [anon_sym___inline__] = ACTIONS(2318), + [anon_sym___forceinline] = ACTIONS(2318), + [anon_sym_thread_local] = ACTIONS(2318), + [anon_sym___thread] = ACTIONS(2318), + [anon_sym_CG_EXTERN] = ACTIONS(2318), + [anon_sym_CG_INLINE] = ACTIONS(2318), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2318), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2318), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2318), + [anon_sym_IBOutlet] = ACTIONS(2318), + [anon_sym_IBInspectable] = ACTIONS(2318), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2318), + [anon_sym_NS_INLINE] = ACTIONS(2318), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2318), + [anon_sym_OBJC_EXPORT] = ACTIONS(2318), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2318), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_constexpr] = ACTIONS(2318), + [anon_sym_volatile] = ACTIONS(2318), + [anon_sym_restrict] = ACTIONS(2318), + [anon_sym___restrict__] = ACTIONS(2318), + [anon_sym__Atomic] = ACTIONS(2318), + [anon_sym__Noreturn] = ACTIONS(2318), + [anon_sym__Nonnull] = ACTIONS(2318), + [anon_sym_nullable] = ACTIONS(2318), + [anon_sym__Complex] = ACTIONS(2318), + [anon_sym__Nullable] = ACTIONS(2318), + [anon_sym__Nullable_result] = ACTIONS(2318), + [anon_sym__Null_unspecified] = ACTIONS(2318), + [anon_sym___autoreleasing] = ACTIONS(2318), + [anon_sym___block] = ACTIONS(2318), + [anon_sym___bridge] = ACTIONS(2318), + [anon_sym___bridge_retained] = ACTIONS(2318), + [anon_sym___bridge_transfer] = ACTIONS(2318), + [anon_sym___complex] = ACTIONS(2318), + [anon_sym___const] = ACTIONS(2318), + [anon_sym___imag] = ACTIONS(2318), + [anon_sym___kindof] = ACTIONS(2318), + [anon_sym___nonnull] = ACTIONS(2318), + [anon_sym___nullable] = ACTIONS(2318), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2318), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2318), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2318), + [anon_sym___real] = ACTIONS(2318), + [anon_sym___strong] = ACTIONS(2318), + [anon_sym___unsafe_unretained] = ACTIONS(2318), + [anon_sym___unused] = ACTIONS(2318), + [anon_sym___weak] = ACTIONS(2318), + [anon_sym_alignas] = ACTIONS(2318), + [anon_sym__Alignas] = ACTIONS(2318), + [sym_primitive_type] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_case] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_goto] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2320), + [anon_sym_sizeof] = ACTIONS(2318), + [anon_sym___alignof__] = ACTIONS(2318), + [anon_sym___alignof] = ACTIONS(2318), + [anon_sym__alignof] = ACTIONS(2318), + [anon_sym_alignof] = ACTIONS(2318), + [anon_sym__Alignof] = ACTIONS(2318), + [anon_sym_offsetof] = ACTIONS(2318), + [anon_sym__Generic] = ACTIONS(2318), + [anon_sym_asm] = ACTIONS(2318), + [anon_sym___asm__] = ACTIONS(2318), + [anon_sym___asm] = ACTIONS(2318), + [sym_number_literal] = ACTIONS(2320), + [anon_sym_L_SQUOTE] = ACTIONS(2320), + [anon_sym_u_SQUOTE] = ACTIONS(2320), + [anon_sym_U_SQUOTE] = ACTIONS(2320), + [anon_sym_u8_SQUOTE] = ACTIONS(2320), + [anon_sym_SQUOTE] = ACTIONS(2320), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_DQUOTE] = ACTIONS(2320), + [anon_sym_L_DQUOTE] = ACTIONS(2320), + [anon_sym_u_DQUOTE] = ACTIONS(2320), + [anon_sym_U_DQUOTE] = ACTIONS(2320), + [anon_sym_u8_DQUOTE] = ACTIONS(2320), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [anon_sym_NULL] = ACTIONS(2318), + [anon_sym_nullptr] = ACTIONS(2318), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2318), + [anon_sym___typeof] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_ATimport] = ACTIONS(2320), + [aux_sym_preproc_undef_token1] = ACTIONS(2318), + [anon_sym_POUND] = ACTIONS(2318), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2318), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2318), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2318), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2318), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2318), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2318), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2318), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2318), + [anon_sym_NS_AVAILABLE] = ACTIONS(2318), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2318), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_API_AVAILABLE] = ACTIONS(2318), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_API_DEPRECATED] = ACTIONS(2318), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2318), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2318), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2318), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2318), + [anon_sym___deprecated_msg] = ACTIONS(2318), + [anon_sym___deprecated_enum_msg] = ACTIONS(2318), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2318), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2318), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2318), + [anon_sym_ATprotocol] = ACTIONS(2320), + [anon_sym_ATinterface] = ACTIONS(2320), + [anon_sym_ATimplementation] = ACTIONS(2320), + [anon_sym_ATcompatibility_alias] = ACTIONS(2320), + [anon_sym_ATsynthesize] = ACTIONS(2320), + [anon_sym_ATdynamic] = ACTIONS(2320), + [anon_sym_ATtry] = ACTIONS(2320), + [anon_sym___try] = ACTIONS(2318), + [anon_sym_ATcatch] = ACTIONS(2380), + [anon_sym___catch] = ACTIONS(2383), + [anon_sym_ATfinally] = ACTIONS(2320), + [anon_sym___finally] = ACTIONS(2318), + [anon_sym_ATthrow] = ACTIONS(2320), + [anon_sym_ATselector] = ACTIONS(2320), + [anon_sym_ATavailable] = ACTIONS(2320), + [anon_sym___builtin_available] = ACTIONS(2318), + [anon_sym_va_arg] = ACTIONS(2318), + [anon_sym_ATencode] = ACTIONS(2320), + [anon_sym_ATsynchronized] = ACTIONS(2320), + [anon_sym_BOOL] = ACTIONS(2318), + [anon_sym_IMP] = ACTIONS(2318), + [anon_sym_SEL] = ACTIONS(2318), + [anon_sym_Class] = ACTIONS(2318), + [anon_sym_id] = ACTIONS(2318), + }, + [191] = { + [sym_identifier] = ACTIONS(2368), + [aux_sym_preproc_include_token1] = ACTIONS(2368), + [aux_sym_preproc_include_token2] = ACTIONS(2368), + [aux_sym_preproc_def_token1] = ACTIONS(2368), + [aux_sym_preproc_if_token1] = ACTIONS(2368), + [aux_sym_preproc_if_token2] = ACTIONS(2368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2368), + [aux_sym_preproc_else_token1] = ACTIONS(2368), + [aux_sym_preproc_elif_token1] = ACTIONS(2368), + [sym_preproc_directive] = ACTIONS(2368), + [anon_sym_LPAREN2] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym___extension__] = ACTIONS(2368), + [anon_sym_typedef] = ACTIONS(2368), + [anon_sym_extern] = ACTIONS(2368), + [anon_sym___attribute__] = ACTIONS(2368), + [anon_sym___attribute] = ACTIONS(2368), + [anon_sym_noreturn] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym___declspec] = ACTIONS(2368), + [anon_sym___cdecl] = ACTIONS(2368), + [anon_sym___clrcall] = ACTIONS(2368), + [anon_sym___stdcall] = ACTIONS(2368), + [anon_sym___fastcall] = ACTIONS(2368), + [anon_sym___thiscall] = ACTIONS(2368), + [anon_sym___vectorcall] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_signed] = ACTIONS(2368), + [anon_sym_unsigned] = ACTIONS(2368), + [anon_sym_long] = ACTIONS(2368), + [anon_sym_short] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_ATautoreleasepool] = ACTIONS(2370), + [anon_sym_auto] = ACTIONS(2368), + [anon_sym_register] = ACTIONS(2368), + [anon_sym_inline] = ACTIONS(2368), + [anon_sym___inline] = ACTIONS(2368), + [anon_sym___inline__] = ACTIONS(2368), + [anon_sym___forceinline] = ACTIONS(2368), + [anon_sym_thread_local] = ACTIONS(2368), + [anon_sym___thread] = ACTIONS(2368), + [anon_sym_CG_EXTERN] = ACTIONS(2368), + [anon_sym_CG_INLINE] = ACTIONS(2368), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2368), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2368), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2368), + [anon_sym_IBOutlet] = ACTIONS(2368), + [anon_sym_IBInspectable] = ACTIONS(2368), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2368), + [anon_sym_NS_INLINE] = ACTIONS(2368), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2368), + [anon_sym_OBJC_EXPORT] = ACTIONS(2368), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2368), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_constexpr] = ACTIONS(2368), + [anon_sym_volatile] = ACTIONS(2368), + [anon_sym_restrict] = ACTIONS(2368), + [anon_sym___restrict__] = ACTIONS(2368), + [anon_sym__Atomic] = ACTIONS(2368), + [anon_sym__Noreturn] = ACTIONS(2368), + [anon_sym__Nonnull] = ACTIONS(2368), + [anon_sym_nullable] = ACTIONS(2368), + [anon_sym__Complex] = ACTIONS(2368), + [anon_sym__Nullable] = ACTIONS(2368), + [anon_sym__Nullable_result] = ACTIONS(2368), + [anon_sym__Null_unspecified] = ACTIONS(2368), + [anon_sym___autoreleasing] = ACTIONS(2368), + [anon_sym___block] = ACTIONS(2368), + [anon_sym___bridge] = ACTIONS(2368), + [anon_sym___bridge_retained] = ACTIONS(2368), + [anon_sym___bridge_transfer] = ACTIONS(2368), + [anon_sym___complex] = ACTIONS(2368), + [anon_sym___const] = ACTIONS(2368), + [anon_sym___imag] = ACTIONS(2368), + [anon_sym___kindof] = ACTIONS(2368), + [anon_sym___nonnull] = ACTIONS(2368), + [anon_sym___nullable] = ACTIONS(2368), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2368), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2368), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2368), + [anon_sym___real] = ACTIONS(2368), + [anon_sym___strong] = ACTIONS(2368), + [anon_sym___unsafe_unretained] = ACTIONS(2368), + [anon_sym___unused] = ACTIONS(2368), + [anon_sym___weak] = ACTIONS(2368), + [anon_sym_alignas] = ACTIONS(2368), + [anon_sym__Alignas] = ACTIONS(2368), + [sym_primitive_type] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [anon_sym_struct] = ACTIONS(2368), + [anon_sym_union] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_in] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_goto] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_sizeof] = ACTIONS(2368), + [anon_sym___alignof__] = ACTIONS(2368), + [anon_sym___alignof] = ACTIONS(2368), + [anon_sym__alignof] = ACTIONS(2368), + [anon_sym_alignof] = ACTIONS(2368), + [anon_sym__Alignof] = ACTIONS(2368), + [anon_sym_offsetof] = ACTIONS(2368), + [anon_sym__Generic] = ACTIONS(2368), + [anon_sym_asm] = ACTIONS(2368), + [anon_sym___asm__] = ACTIONS(2368), + [anon_sym___asm] = ACTIONS(2368), + [sym_number_literal] = ACTIONS(2370), + [anon_sym_L_SQUOTE] = ACTIONS(2370), + [anon_sym_u_SQUOTE] = ACTIONS(2370), + [anon_sym_U_SQUOTE] = ACTIONS(2370), + [anon_sym_u8_SQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_L_DQUOTE] = ACTIONS(2370), + [anon_sym_u_DQUOTE] = ACTIONS(2370), + [anon_sym_U_DQUOTE] = ACTIONS(2370), + [anon_sym_u8_DQUOTE] = ACTIONS(2370), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [anon_sym_NULL] = ACTIONS(2368), + [anon_sym_nullptr] = ACTIONS(2368), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2368), + [anon_sym___typeof] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_ATimport] = ACTIONS(2370), + [aux_sym_preproc_undef_token1] = ACTIONS(2368), + [anon_sym_POUND] = ACTIONS(2368), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2368), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2368), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2368), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2368), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2368), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2368), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2368), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2368), + [anon_sym_NS_AVAILABLE] = ACTIONS(2368), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2368), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_API_AVAILABLE] = ACTIONS(2368), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_API_DEPRECATED] = ACTIONS(2368), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2368), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2368), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2368), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2368), + [anon_sym___deprecated_msg] = ACTIONS(2368), + [anon_sym___deprecated_enum_msg] = ACTIONS(2368), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2368), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2368), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2368), + [anon_sym_ATprotocol] = ACTIONS(2370), + [anon_sym_ATinterface] = ACTIONS(2370), + [anon_sym_ATimplementation] = ACTIONS(2370), + [anon_sym_ATcompatibility_alias] = ACTIONS(2370), + [anon_sym_ATsynthesize] = ACTIONS(2370), + [anon_sym_ATdynamic] = ACTIONS(2370), + [anon_sym_ATtry] = ACTIONS(2370), + [anon_sym___try] = ACTIONS(2368), + [anon_sym_ATcatch] = ACTIONS(2370), + [anon_sym___catch] = ACTIONS(2368), + [anon_sym_ATfinally] = ACTIONS(2370), + [anon_sym___finally] = ACTIONS(2368), + [anon_sym_ATthrow] = ACTIONS(2370), + [anon_sym_ATselector] = ACTIONS(2370), + [anon_sym_ATavailable] = ACTIONS(2370), + [anon_sym___builtin_available] = ACTIONS(2368), + [anon_sym_va_arg] = ACTIONS(2368), + [anon_sym_ATencode] = ACTIONS(2370), + [anon_sym_ATsynchronized] = ACTIONS(2370), + [anon_sym_BOOL] = ACTIONS(2368), + [anon_sym_IMP] = ACTIONS(2368), + [anon_sym_SEL] = ACTIONS(2368), + [anon_sym_Class] = ACTIONS(2368), + [anon_sym_id] = ACTIONS(2368), + }, + [192] = { + [sym_identifier] = ACTIONS(2350), + [aux_sym_preproc_include_token1] = ACTIONS(2350), + [aux_sym_preproc_include_token2] = ACTIONS(2350), + [aux_sym_preproc_def_token1] = ACTIONS(2350), + [aux_sym_preproc_if_token1] = ACTIONS(2350), + [aux_sym_preproc_if_token2] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2350), + [aux_sym_preproc_else_token1] = ACTIONS(2350), + [aux_sym_preproc_elif_token1] = ACTIONS(2350), + [sym_preproc_directive] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(2352), + [anon_sym_BANG] = ACTIONS(2352), + [anon_sym_TILDE] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2350), + [anon_sym_STAR] = ACTIONS(2352), + [anon_sym_CARET] = ACTIONS(2352), + [anon_sym_AMP] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2352), + [anon_sym___extension__] = ACTIONS(2350), + [anon_sym_typedef] = ACTIONS(2350), + [anon_sym_extern] = ACTIONS(2350), + [anon_sym___attribute__] = ACTIONS(2350), + [anon_sym___attribute] = ACTIONS(2350), + [anon_sym_noreturn] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2352), + [anon_sym___declspec] = ACTIONS(2350), + [anon_sym___cdecl] = ACTIONS(2350), + [anon_sym___clrcall] = ACTIONS(2350), + [anon_sym___stdcall] = ACTIONS(2350), + [anon_sym___fastcall] = ACTIONS(2350), + [anon_sym___thiscall] = ACTIONS(2350), + [anon_sym___vectorcall] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2352), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(2350), + [anon_sym_ATautoreleasepool] = ACTIONS(2352), + [anon_sym_auto] = ACTIONS(2350), + [anon_sym_register] = ACTIONS(2350), + [anon_sym_inline] = ACTIONS(2350), + [anon_sym___inline] = ACTIONS(2350), + [anon_sym___inline__] = ACTIONS(2350), + [anon_sym___forceinline] = ACTIONS(2350), + [anon_sym_thread_local] = ACTIONS(2350), + [anon_sym___thread] = ACTIONS(2350), + [anon_sym_CG_EXTERN] = ACTIONS(2350), + [anon_sym_CG_INLINE] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2350), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2350), + [anon_sym_IBOutlet] = ACTIONS(2350), + [anon_sym_IBInspectable] = ACTIONS(2350), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2350), + [anon_sym_NS_INLINE] = ACTIONS(2350), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2350), + [anon_sym_OBJC_EXPORT] = ACTIONS(2350), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2350), + [anon_sym_const] = ACTIONS(2350), + [anon_sym_constexpr] = ACTIONS(2350), + [anon_sym_volatile] = ACTIONS(2350), + [anon_sym_restrict] = ACTIONS(2350), + [anon_sym___restrict__] = ACTIONS(2350), + [anon_sym__Atomic] = ACTIONS(2350), + [anon_sym__Noreturn] = ACTIONS(2350), + [anon_sym__Nonnull] = ACTIONS(2350), + [anon_sym_nullable] = ACTIONS(2350), + [anon_sym__Complex] = ACTIONS(2350), + [anon_sym__Nullable] = ACTIONS(2350), + [anon_sym__Nullable_result] = ACTIONS(2350), + [anon_sym__Null_unspecified] = ACTIONS(2350), + [anon_sym___autoreleasing] = ACTIONS(2350), + [anon_sym___block] = ACTIONS(2350), + [anon_sym___bridge] = ACTIONS(2350), + [anon_sym___bridge_retained] = ACTIONS(2350), + [anon_sym___bridge_transfer] = ACTIONS(2350), + [anon_sym___complex] = ACTIONS(2350), + [anon_sym___const] = ACTIONS(2350), + [anon_sym___imag] = ACTIONS(2350), + [anon_sym___kindof] = ACTIONS(2350), + [anon_sym___nonnull] = ACTIONS(2350), + [anon_sym___nullable] = ACTIONS(2350), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2350), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2350), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2350), + [anon_sym___real] = ACTIONS(2350), + [anon_sym___strong] = ACTIONS(2350), + [anon_sym___unsafe_unretained] = ACTIONS(2350), + [anon_sym___unused] = ACTIONS(2350), + [anon_sym___weak] = ACTIONS(2350), + [anon_sym_alignas] = ACTIONS(2350), + [anon_sym__Alignas] = ACTIONS(2350), + [sym_primitive_type] = ACTIONS(2350), + [anon_sym_enum] = ACTIONS(2350), + [anon_sym_struct] = ACTIONS(2350), + [anon_sym_union] = ACTIONS(2350), + [anon_sym_if] = ACTIONS(2350), + [anon_sym_else] = ACTIONS(2350), + [anon_sym_switch] = ACTIONS(2350), + [anon_sym_case] = ACTIONS(2350), + [anon_sym_default] = ACTIONS(2350), + [anon_sym_while] = ACTIONS(2350), + [anon_sym_do] = ACTIONS(2350), + [anon_sym_for] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_return] = ACTIONS(2350), + [anon_sym_break] = ACTIONS(2350), + [anon_sym_continue] = ACTIONS(2350), + [anon_sym_goto] = ACTIONS(2350), + [anon_sym_DASH_DASH] = ACTIONS(2352), + [anon_sym_PLUS_PLUS] = ACTIONS(2352), + [anon_sym_sizeof] = ACTIONS(2350), + [anon_sym___alignof__] = ACTIONS(2350), + [anon_sym___alignof] = ACTIONS(2350), + [anon_sym__alignof] = ACTIONS(2350), + [anon_sym_alignof] = ACTIONS(2350), + [anon_sym__Alignof] = ACTIONS(2350), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_asm] = ACTIONS(2350), + [anon_sym___asm__] = ACTIONS(2350), + [anon_sym___asm] = ACTIONS(2350), + [sym_number_literal] = ACTIONS(2352), + [anon_sym_L_SQUOTE] = ACTIONS(2352), + [anon_sym_u_SQUOTE] = ACTIONS(2352), + [anon_sym_U_SQUOTE] = ACTIONS(2352), + [anon_sym_u8_SQUOTE] = ACTIONS(2352), + [anon_sym_SQUOTE] = ACTIONS(2352), + [anon_sym_AT] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2352), + [anon_sym_L_DQUOTE] = ACTIONS(2352), + [anon_sym_u_DQUOTE] = ACTIONS(2352), + [anon_sym_U_DQUOTE] = ACTIONS(2352), + [anon_sym_u8_DQUOTE] = ACTIONS(2352), + [sym_true] = ACTIONS(2350), + [sym_false] = ACTIONS(2350), + [anon_sym_NULL] = ACTIONS(2350), + [anon_sym_nullptr] = ACTIONS(2350), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2350), + [anon_sym___typeof] = ACTIONS(2350), + [anon_sym_typeof] = ACTIONS(2350), + [anon_sym_ATimport] = ACTIONS(2352), + [aux_sym_preproc_undef_token1] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(2350), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2350), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2350), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2350), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2350), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE] = ACTIONS(2350), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_API_AVAILABLE] = ACTIONS(2350), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_API_DEPRECATED] = ACTIONS(2350), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2350), + [anon_sym___deprecated_msg] = ACTIONS(2350), + [anon_sym___deprecated_enum_msg] = ACTIONS(2350), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2350), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2350), + [anon_sym_ATprotocol] = ACTIONS(2352), + [anon_sym_ATinterface] = ACTIONS(2352), + [anon_sym_ATimplementation] = ACTIONS(2352), + [anon_sym_ATcompatibility_alias] = ACTIONS(2352), + [anon_sym_ATsynthesize] = ACTIONS(2352), + [anon_sym_ATdynamic] = ACTIONS(2352), + [anon_sym_ATtry] = ACTIONS(2352), + [anon_sym___try] = ACTIONS(2350), + [anon_sym_ATcatch] = ACTIONS(2352), + [anon_sym___catch] = ACTIONS(2350), + [anon_sym_ATfinally] = ACTIONS(2352), + [anon_sym___finally] = ACTIONS(2350), + [anon_sym_ATthrow] = ACTIONS(2352), + [anon_sym_ATselector] = ACTIONS(2352), + [anon_sym_ATavailable] = ACTIONS(2352), + [anon_sym___builtin_available] = ACTIONS(2350), + [anon_sym_va_arg] = ACTIONS(2350), + [anon_sym_ATencode] = ACTIONS(2352), + [anon_sym_ATsynchronized] = ACTIONS(2352), + [anon_sym_BOOL] = ACTIONS(2350), + [anon_sym_IMP] = ACTIONS(2350), + [anon_sym_SEL] = ACTIONS(2350), + [anon_sym_Class] = ACTIONS(2350), + [anon_sym_id] = ACTIONS(2350), + }, + [193] = { + [sym_identifier] = ACTIONS(2364), + [aux_sym_preproc_include_token1] = ACTIONS(2364), + [aux_sym_preproc_include_token2] = ACTIONS(2364), + [aux_sym_preproc_def_token1] = ACTIONS(2364), + [aux_sym_preproc_if_token1] = ACTIONS(2364), + [aux_sym_preproc_if_token2] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2364), + [aux_sym_preproc_else_token1] = ACTIONS(2364), + [aux_sym_preproc_elif_token1] = ACTIONS(2364), + [sym_preproc_directive] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_PLUS] = ACTIONS(2364), + [anon_sym_STAR] = ACTIONS(2366), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_AMP] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_typedef] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym___attribute__] = ACTIONS(2364), + [anon_sym___attribute] = ACTIONS(2364), + [anon_sym_noreturn] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym___declspec] = ACTIONS(2364), + [anon_sym___cdecl] = ACTIONS(2364), + [anon_sym___clrcall] = ACTIONS(2364), + [anon_sym___stdcall] = ACTIONS(2364), + [anon_sym___fastcall] = ACTIONS(2364), + [anon_sym___thiscall] = ACTIONS(2364), + [anon_sym___vectorcall] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_signed] = ACTIONS(2364), + [anon_sym_unsigned] = ACTIONS(2364), + [anon_sym_long] = ACTIONS(2364), + [anon_sym_short] = ACTIONS(2364), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_ATautoreleasepool] = ACTIONS(2366), + [anon_sym_auto] = ACTIONS(2364), + [anon_sym_register] = ACTIONS(2364), + [anon_sym_inline] = ACTIONS(2364), + [anon_sym___inline] = ACTIONS(2364), + [anon_sym___inline__] = ACTIONS(2364), + [anon_sym___forceinline] = ACTIONS(2364), + [anon_sym_thread_local] = ACTIONS(2364), + [anon_sym___thread] = ACTIONS(2364), + [anon_sym_CG_EXTERN] = ACTIONS(2364), + [anon_sym_CG_INLINE] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2364), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2364), + [anon_sym_IBOutlet] = ACTIONS(2364), + [anon_sym_IBInspectable] = ACTIONS(2364), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2364), + [anon_sym_NS_INLINE] = ACTIONS(2364), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2364), + [anon_sym_OBJC_EXPORT] = ACTIONS(2364), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [anon_sym_constexpr] = ACTIONS(2364), + [anon_sym_volatile] = ACTIONS(2364), + [anon_sym_restrict] = ACTIONS(2364), + [anon_sym___restrict__] = ACTIONS(2364), + [anon_sym__Atomic] = ACTIONS(2364), + [anon_sym__Noreturn] = ACTIONS(2364), + [anon_sym__Nonnull] = ACTIONS(2364), + [anon_sym_nullable] = ACTIONS(2364), + [anon_sym__Complex] = ACTIONS(2364), + [anon_sym__Nullable] = ACTIONS(2364), + [anon_sym__Nullable_result] = ACTIONS(2364), + [anon_sym__Null_unspecified] = ACTIONS(2364), + [anon_sym___autoreleasing] = ACTIONS(2364), + [anon_sym___block] = ACTIONS(2364), + [anon_sym___bridge] = ACTIONS(2364), + [anon_sym___bridge_retained] = ACTIONS(2364), + [anon_sym___bridge_transfer] = ACTIONS(2364), + [anon_sym___complex] = ACTIONS(2364), + [anon_sym___const] = ACTIONS(2364), + [anon_sym___imag] = ACTIONS(2364), + [anon_sym___kindof] = ACTIONS(2364), + [anon_sym___nonnull] = ACTIONS(2364), + [anon_sym___nullable] = ACTIONS(2364), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2364), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2364), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2364), + [anon_sym___real] = ACTIONS(2364), + [anon_sym___strong] = ACTIONS(2364), + [anon_sym___unsafe_unretained] = ACTIONS(2364), + [anon_sym___unused] = ACTIONS(2364), + [anon_sym___weak] = ACTIONS(2364), + [anon_sym_alignas] = ACTIONS(2364), + [anon_sym__Alignas] = ACTIONS(2364), + [sym_primitive_type] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(2364), + [anon_sym_union] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_switch] = ACTIONS(2364), + [anon_sym_case] = ACTIONS(2364), + [anon_sym_default] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_do] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_in] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_goto] = ACTIONS(2364), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_sizeof] = ACTIONS(2364), + [anon_sym___alignof__] = ACTIONS(2364), + [anon_sym___alignof] = ACTIONS(2364), + [anon_sym__alignof] = ACTIONS(2364), + [anon_sym_alignof] = ACTIONS(2364), + [anon_sym__Alignof] = ACTIONS(2364), + [anon_sym_offsetof] = ACTIONS(2364), + [anon_sym__Generic] = ACTIONS(2364), + [anon_sym_asm] = ACTIONS(2364), + [anon_sym___asm__] = ACTIONS(2364), + [anon_sym___asm] = ACTIONS(2364), + [sym_number_literal] = ACTIONS(2366), + [anon_sym_L_SQUOTE] = ACTIONS(2366), + [anon_sym_u_SQUOTE] = ACTIONS(2366), + [anon_sym_U_SQUOTE] = ACTIONS(2366), + [anon_sym_u8_SQUOTE] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2366), + [anon_sym_AT] = ACTIONS(2364), + [anon_sym_DQUOTE] = ACTIONS(2366), + [anon_sym_L_DQUOTE] = ACTIONS(2366), + [anon_sym_u_DQUOTE] = ACTIONS(2366), + [anon_sym_U_DQUOTE] = ACTIONS(2366), + [anon_sym_u8_DQUOTE] = ACTIONS(2366), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2364), + [anon_sym___typeof] = ACTIONS(2364), + [anon_sym_typeof] = ACTIONS(2364), + [anon_sym_ATimport] = ACTIONS(2366), + [aux_sym_preproc_undef_token1] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(2364), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2364), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2364), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2364), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2364), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE] = ACTIONS(2364), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_API_AVAILABLE] = ACTIONS(2364), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_API_DEPRECATED] = ACTIONS(2364), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2364), + [anon_sym___deprecated_msg] = ACTIONS(2364), + [anon_sym___deprecated_enum_msg] = ACTIONS(2364), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2364), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2364), + [anon_sym_ATprotocol] = ACTIONS(2366), + [anon_sym_ATinterface] = ACTIONS(2366), + [anon_sym_ATimplementation] = ACTIONS(2366), + [anon_sym_ATcompatibility_alias] = ACTIONS(2366), + [anon_sym_ATsynthesize] = ACTIONS(2366), + [anon_sym_ATdynamic] = ACTIONS(2366), + [anon_sym_ATtry] = ACTIONS(2366), + [anon_sym___try] = ACTIONS(2364), + [anon_sym_ATcatch] = ACTIONS(2366), + [anon_sym___catch] = ACTIONS(2364), + [anon_sym_ATfinally] = ACTIONS(2366), + [anon_sym___finally] = ACTIONS(2364), + [anon_sym_ATthrow] = ACTIONS(2366), + [anon_sym_ATselector] = ACTIONS(2366), + [anon_sym_ATavailable] = ACTIONS(2366), + [anon_sym___builtin_available] = ACTIONS(2364), + [anon_sym_va_arg] = ACTIONS(2364), + [anon_sym_ATencode] = ACTIONS(2366), + [anon_sym_ATsynchronized] = ACTIONS(2366), + [anon_sym_BOOL] = ACTIONS(2364), + [anon_sym_IMP] = ACTIONS(2364), + [anon_sym_SEL] = ACTIONS(2364), + [anon_sym_Class] = ACTIONS(2364), + [anon_sym_id] = ACTIONS(2364), + }, + [194] = { + [sym_identifier] = ACTIONS(2346), + [aux_sym_preproc_include_token1] = ACTIONS(2346), + [aux_sym_preproc_include_token2] = ACTIONS(2346), + [aux_sym_preproc_def_token1] = ACTIONS(2346), + [aux_sym_preproc_if_token1] = ACTIONS(2346), + [aux_sym_preproc_if_token2] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2346), + [aux_sym_preproc_else_token1] = ACTIONS(2346), + [aux_sym_preproc_elif_token1] = ACTIONS(2346), + [sym_preproc_directive] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2346), + [anon_sym_PLUS] = ACTIONS(2346), + [anon_sym_STAR] = ACTIONS(2348), + [anon_sym_CARET] = ACTIONS(2348), + [anon_sym_AMP] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym___extension__] = ACTIONS(2346), + [anon_sym_typedef] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym___attribute__] = ACTIONS(2346), + [anon_sym___attribute] = ACTIONS(2346), + [anon_sym_noreturn] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym___declspec] = ACTIONS(2346), + [anon_sym___cdecl] = ACTIONS(2346), + [anon_sym___clrcall] = ACTIONS(2346), + [anon_sym___stdcall] = ACTIONS(2346), + [anon_sym___fastcall] = ACTIONS(2346), + [anon_sym___thiscall] = ACTIONS(2346), + [anon_sym___vectorcall] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_signed] = ACTIONS(2346), + [anon_sym_unsigned] = ACTIONS(2346), + [anon_sym_long] = ACTIONS(2346), + [anon_sym_short] = ACTIONS(2346), + [anon_sym_static] = ACTIONS(2346), + [anon_sym_ATautoreleasepool] = ACTIONS(2348), + [anon_sym_auto] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2346), + [anon_sym_inline] = ACTIONS(2346), + [anon_sym___inline] = ACTIONS(2346), + [anon_sym___inline__] = ACTIONS(2346), + [anon_sym___forceinline] = ACTIONS(2346), + [anon_sym_thread_local] = ACTIONS(2346), + [anon_sym___thread] = ACTIONS(2346), + [anon_sym_CG_EXTERN] = ACTIONS(2346), + [anon_sym_CG_INLINE] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2346), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2346), + [anon_sym_IBOutlet] = ACTIONS(2346), + [anon_sym_IBInspectable] = ACTIONS(2346), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2346), + [anon_sym_NS_INLINE] = ACTIONS(2346), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2346), + [anon_sym_OBJC_EXPORT] = ACTIONS(2346), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_constexpr] = ACTIONS(2346), + [anon_sym_volatile] = ACTIONS(2346), + [anon_sym_restrict] = ACTIONS(2346), + [anon_sym___restrict__] = ACTIONS(2346), + [anon_sym__Atomic] = ACTIONS(2346), + [anon_sym__Noreturn] = ACTIONS(2346), + [anon_sym__Nonnull] = ACTIONS(2346), + [anon_sym_nullable] = ACTIONS(2346), + [anon_sym__Complex] = ACTIONS(2346), + [anon_sym__Nullable] = ACTIONS(2346), + [anon_sym__Nullable_result] = ACTIONS(2346), + [anon_sym__Null_unspecified] = ACTIONS(2346), + [anon_sym___autoreleasing] = ACTIONS(2346), + [anon_sym___block] = ACTIONS(2346), + [anon_sym___bridge] = ACTIONS(2346), + [anon_sym___bridge_retained] = ACTIONS(2346), + [anon_sym___bridge_transfer] = ACTIONS(2346), + [anon_sym___complex] = ACTIONS(2346), + [anon_sym___const] = ACTIONS(2346), + [anon_sym___imag] = ACTIONS(2346), + [anon_sym___kindof] = ACTIONS(2346), + [anon_sym___nonnull] = ACTIONS(2346), + [anon_sym___nullable] = ACTIONS(2346), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2346), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2346), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2346), + [anon_sym___real] = ACTIONS(2346), + [anon_sym___strong] = ACTIONS(2346), + [anon_sym___unsafe_unretained] = ACTIONS(2346), + [anon_sym___unused] = ACTIONS(2346), + [anon_sym___weak] = ACTIONS(2346), + [anon_sym_alignas] = ACTIONS(2346), + [anon_sym__Alignas] = ACTIONS(2346), + [sym_primitive_type] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_switch] = ACTIONS(2346), + [anon_sym_case] = ACTIONS(2346), + [anon_sym_default] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_do] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_goto] = ACTIONS(2346), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2346), + [anon_sym__Generic] = ACTIONS(2346), + [anon_sym_asm] = ACTIONS(2346), + [anon_sym___asm__] = ACTIONS(2346), + [anon_sym___asm] = ACTIONS(2346), + [sym_number_literal] = ACTIONS(2348), + [anon_sym_L_SQUOTE] = ACTIONS(2348), + [anon_sym_u_SQUOTE] = ACTIONS(2348), + [anon_sym_U_SQUOTE] = ACTIONS(2348), + [anon_sym_u8_SQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_L_DQUOTE] = ACTIONS(2348), + [anon_sym_u_DQUOTE] = ACTIONS(2348), + [anon_sym_U_DQUOTE] = ACTIONS(2348), + [anon_sym_u8_DQUOTE] = ACTIONS(2348), + [sym_true] = ACTIONS(2346), + [sym_false] = ACTIONS(2346), + [anon_sym_NULL] = ACTIONS(2346), + [anon_sym_nullptr] = ACTIONS(2346), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2346), + [anon_sym___typeof] = ACTIONS(2346), + [anon_sym_typeof] = ACTIONS(2346), + [anon_sym_ATimport] = ACTIONS(2348), + [aux_sym_preproc_undef_token1] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(2346), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2346), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2346), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2346), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2346), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE] = ACTIONS(2346), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_API_AVAILABLE] = ACTIONS(2346), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_API_DEPRECATED] = ACTIONS(2346), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2346), + [anon_sym___deprecated_msg] = ACTIONS(2346), + [anon_sym___deprecated_enum_msg] = ACTIONS(2346), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2346), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2346), + [anon_sym_ATprotocol] = ACTIONS(2348), + [anon_sym_ATinterface] = ACTIONS(2348), + [anon_sym_ATimplementation] = ACTIONS(2348), + [anon_sym_ATcompatibility_alias] = ACTIONS(2348), + [anon_sym_ATsynthesize] = ACTIONS(2348), + [anon_sym_ATdynamic] = ACTIONS(2348), + [anon_sym_ATtry] = ACTIONS(2348), + [anon_sym___try] = ACTIONS(2346), + [anon_sym_ATcatch] = ACTIONS(2348), + [anon_sym___catch] = ACTIONS(2346), + [anon_sym_ATfinally] = ACTIONS(2348), + [anon_sym___finally] = ACTIONS(2346), + [anon_sym_ATthrow] = ACTIONS(2348), + [anon_sym_ATselector] = ACTIONS(2348), + [anon_sym_ATavailable] = ACTIONS(2348), + [anon_sym___builtin_available] = ACTIONS(2346), + [anon_sym_va_arg] = ACTIONS(2346), + [anon_sym_ATencode] = ACTIONS(2348), + [anon_sym_ATsynchronized] = ACTIONS(2348), + [anon_sym_BOOL] = ACTIONS(2346), + [anon_sym_IMP] = ACTIONS(2346), + [anon_sym_SEL] = ACTIONS(2346), + [anon_sym_Class] = ACTIONS(2346), + [anon_sym_id] = ACTIONS(2346), + }, + [195] = { + [sym_identifier] = ACTIONS(2354), + [aux_sym_preproc_include_token1] = ACTIONS(2354), + [aux_sym_preproc_include_token2] = ACTIONS(2354), + [aux_sym_preproc_def_token1] = ACTIONS(2354), + [aux_sym_preproc_if_token1] = ACTIONS(2354), + [aux_sym_preproc_if_token2] = ACTIONS(2354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2354), + [aux_sym_preproc_else_token1] = ACTIONS(2354), + [aux_sym_preproc_elif_token1] = ACTIONS(2354), + [sym_preproc_directive] = ACTIONS(2354), + [anon_sym_LPAREN2] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2354), + [anon_sym_PLUS] = ACTIONS(2354), + [anon_sym_STAR] = ACTIONS(2356), + [anon_sym_CARET] = ACTIONS(2356), + [anon_sym_AMP] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym___extension__] = ACTIONS(2354), + [anon_sym_typedef] = ACTIONS(2354), + [anon_sym_extern] = ACTIONS(2354), + [anon_sym___attribute__] = ACTIONS(2354), + [anon_sym___attribute] = ACTIONS(2354), + [anon_sym_noreturn] = ACTIONS(2354), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym___declspec] = ACTIONS(2354), + [anon_sym___cdecl] = ACTIONS(2354), + [anon_sym___clrcall] = ACTIONS(2354), + [anon_sym___stdcall] = ACTIONS(2354), + [anon_sym___fastcall] = ACTIONS(2354), + [anon_sym___thiscall] = ACTIONS(2354), + [anon_sym___vectorcall] = ACTIONS(2354), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_signed] = ACTIONS(2354), + [anon_sym_unsigned] = ACTIONS(2354), + [anon_sym_long] = ACTIONS(2354), + [anon_sym_short] = ACTIONS(2354), + [anon_sym_static] = ACTIONS(2354), + [anon_sym_ATautoreleasepool] = ACTIONS(2356), + [anon_sym_auto] = ACTIONS(2354), + [anon_sym_register] = ACTIONS(2354), + [anon_sym_inline] = ACTIONS(2354), + [anon_sym___inline] = ACTIONS(2354), + [anon_sym___inline__] = ACTIONS(2354), + [anon_sym___forceinline] = ACTIONS(2354), + [anon_sym_thread_local] = ACTIONS(2354), + [anon_sym___thread] = ACTIONS(2354), + [anon_sym_CG_EXTERN] = ACTIONS(2354), + [anon_sym_CG_INLINE] = ACTIONS(2354), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2354), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2354), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2354), + [anon_sym_IBOutlet] = ACTIONS(2354), + [anon_sym_IBInspectable] = ACTIONS(2354), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2354), + [anon_sym_NS_INLINE] = ACTIONS(2354), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2354), + [anon_sym_OBJC_EXPORT] = ACTIONS(2354), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2354), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2354), + [anon_sym_const] = ACTIONS(2354), + [anon_sym_constexpr] = ACTIONS(2354), + [anon_sym_volatile] = ACTIONS(2354), + [anon_sym_restrict] = ACTIONS(2354), + [anon_sym___restrict__] = ACTIONS(2354), + [anon_sym__Atomic] = ACTIONS(2354), + [anon_sym__Noreturn] = ACTIONS(2354), + [anon_sym__Nonnull] = ACTIONS(2354), + [anon_sym_nullable] = ACTIONS(2354), + [anon_sym__Complex] = ACTIONS(2354), + [anon_sym__Nullable] = ACTIONS(2354), + [anon_sym__Nullable_result] = ACTIONS(2354), + [anon_sym__Null_unspecified] = ACTIONS(2354), + [anon_sym___autoreleasing] = ACTIONS(2354), + [anon_sym___block] = ACTIONS(2354), + [anon_sym___bridge] = ACTIONS(2354), + [anon_sym___bridge_retained] = ACTIONS(2354), + [anon_sym___bridge_transfer] = ACTIONS(2354), + [anon_sym___complex] = ACTIONS(2354), + [anon_sym___const] = ACTIONS(2354), + [anon_sym___imag] = ACTIONS(2354), + [anon_sym___kindof] = ACTIONS(2354), + [anon_sym___nonnull] = ACTIONS(2354), + [anon_sym___nullable] = ACTIONS(2354), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2354), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2354), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2354), + [anon_sym___real] = ACTIONS(2354), + [anon_sym___strong] = ACTIONS(2354), + [anon_sym___unsafe_unretained] = ACTIONS(2354), + [anon_sym___unused] = ACTIONS(2354), + [anon_sym___weak] = ACTIONS(2354), + [anon_sym_alignas] = ACTIONS(2354), + [anon_sym__Alignas] = ACTIONS(2354), + [sym_primitive_type] = ACTIONS(2354), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(2354), + [anon_sym_union] = ACTIONS(2354), + [anon_sym_if] = ACTIONS(2354), + [anon_sym_else] = ACTIONS(2354), + [anon_sym_switch] = ACTIONS(2354), + [anon_sym_case] = ACTIONS(2354), + [anon_sym_default] = ACTIONS(2354), + [anon_sym_while] = ACTIONS(2354), + [anon_sym_do] = ACTIONS(2354), + [anon_sym_for] = ACTIONS(2354), + [anon_sym_in] = ACTIONS(2354), + [anon_sym_return] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_goto] = ACTIONS(2354), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_sizeof] = ACTIONS(2354), + [anon_sym___alignof__] = ACTIONS(2354), + [anon_sym___alignof] = ACTIONS(2354), + [anon_sym__alignof] = ACTIONS(2354), + [anon_sym_alignof] = ACTIONS(2354), + [anon_sym__Alignof] = ACTIONS(2354), + [anon_sym_offsetof] = ACTIONS(2354), + [anon_sym__Generic] = ACTIONS(2354), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2356), + [anon_sym_u_SQUOTE] = ACTIONS(2356), + [anon_sym_U_SQUOTE] = ACTIONS(2356), + [anon_sym_u8_SQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2354), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_L_DQUOTE] = ACTIONS(2356), + [anon_sym_u_DQUOTE] = ACTIONS(2356), + [anon_sym_U_DQUOTE] = ACTIONS(2356), + [anon_sym_u8_DQUOTE] = ACTIONS(2356), + [sym_true] = ACTIONS(2354), + [sym_false] = ACTIONS(2354), + [anon_sym_NULL] = ACTIONS(2354), + [anon_sym_nullptr] = ACTIONS(2354), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2354), + [anon_sym___typeof] = ACTIONS(2354), + [anon_sym_typeof] = ACTIONS(2354), + [anon_sym_ATimport] = ACTIONS(2356), + [aux_sym_preproc_undef_token1] = ACTIONS(2354), + [anon_sym_POUND] = ACTIONS(2354), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2354), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2354), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2354), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2354), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2354), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2354), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2354), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2354), + [anon_sym_NS_AVAILABLE] = ACTIONS(2354), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2354), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_API_AVAILABLE] = ACTIONS(2354), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_API_DEPRECATED] = ACTIONS(2354), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2354), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2354), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2354), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2354), + [anon_sym___deprecated_msg] = ACTIONS(2354), + [anon_sym___deprecated_enum_msg] = ACTIONS(2354), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2354), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2354), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2354), + [anon_sym_ATprotocol] = ACTIONS(2356), + [anon_sym_ATinterface] = ACTIONS(2356), + [anon_sym_ATimplementation] = ACTIONS(2356), + [anon_sym_ATcompatibility_alias] = ACTIONS(2356), + [anon_sym_ATsynthesize] = ACTIONS(2356), + [anon_sym_ATdynamic] = ACTIONS(2356), + [anon_sym_ATtry] = ACTIONS(2356), + [anon_sym___try] = ACTIONS(2354), + [anon_sym_ATcatch] = ACTIONS(2356), + [anon_sym___catch] = ACTIONS(2354), + [anon_sym_ATfinally] = ACTIONS(2356), + [anon_sym___finally] = ACTIONS(2354), + [anon_sym_ATthrow] = ACTIONS(2356), + [anon_sym_ATselector] = ACTIONS(2356), + [anon_sym_ATavailable] = ACTIONS(2356), + [anon_sym___builtin_available] = ACTIONS(2354), + [anon_sym_va_arg] = ACTIONS(2354), + [anon_sym_ATencode] = ACTIONS(2356), + [anon_sym_ATsynchronized] = ACTIONS(2356), + [anon_sym_BOOL] = ACTIONS(2354), + [anon_sym_IMP] = ACTIONS(2354), + [anon_sym_SEL] = ACTIONS(2354), + [anon_sym_Class] = ACTIONS(2354), + [anon_sym_id] = ACTIONS(2354), + }, + [196] = { + [sym_catch_clause] = STATE(236), + [sym_finally_clause] = STATE(820), + [aux_sym_try_statement_repeat1] = STATE(236), + [sym_identifier] = ACTIONS(2294), + [aux_sym_preproc_include_token1] = ACTIONS(2294), + [aux_sym_preproc_include_token2] = ACTIONS(2294), + [aux_sym_preproc_def_token1] = ACTIONS(2294), + [aux_sym_preproc_if_token1] = ACTIONS(2294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2294), + [sym_preproc_directive] = ACTIONS(2294), + [anon_sym_LPAREN2] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_STAR] = ACTIONS(2296), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym___extension__] = ACTIONS(2294), + [anon_sym_typedef] = ACTIONS(2294), + [anon_sym_extern] = ACTIONS(2294), + [anon_sym___attribute__] = ACTIONS(2294), + [anon_sym___attribute] = ACTIONS(2294), + [anon_sym_noreturn] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym___declspec] = ACTIONS(2294), + [anon_sym___cdecl] = ACTIONS(2294), + [anon_sym___clrcall] = ACTIONS(2294), + [anon_sym___stdcall] = ACTIONS(2294), + [anon_sym___fastcall] = ACTIONS(2294), + [anon_sym___thiscall] = ACTIONS(2294), + [anon_sym___vectorcall] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_signed] = ACTIONS(2294), + [anon_sym_unsigned] = ACTIONS(2294), + [anon_sym_long] = ACTIONS(2294), + [anon_sym_short] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_ATautoreleasepool] = ACTIONS(2296), + [anon_sym_auto] = ACTIONS(2294), + [anon_sym_register] = ACTIONS(2294), + [anon_sym_inline] = ACTIONS(2294), + [anon_sym___inline] = ACTIONS(2294), + [anon_sym___inline__] = ACTIONS(2294), + [anon_sym___forceinline] = ACTIONS(2294), + [anon_sym_thread_local] = ACTIONS(2294), + [anon_sym___thread] = ACTIONS(2294), + [anon_sym_CG_EXTERN] = ACTIONS(2294), + [anon_sym_CG_INLINE] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2294), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2294), + [anon_sym_IBOutlet] = ACTIONS(2294), + [anon_sym_IBInspectable] = ACTIONS(2294), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2294), + [anon_sym_NS_INLINE] = ACTIONS(2294), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2294), + [anon_sym_OBJC_EXPORT] = ACTIONS(2294), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [anon_sym_constexpr] = ACTIONS(2294), + [anon_sym_volatile] = ACTIONS(2294), + [anon_sym_restrict] = ACTIONS(2294), + [anon_sym___restrict__] = ACTIONS(2294), + [anon_sym__Atomic] = ACTIONS(2294), + [anon_sym__Noreturn] = ACTIONS(2294), + [anon_sym__Nonnull] = ACTIONS(2294), + [anon_sym_nullable] = ACTIONS(2294), + [anon_sym__Complex] = ACTIONS(2294), + [anon_sym__Nullable] = ACTIONS(2294), + [anon_sym__Nullable_result] = ACTIONS(2294), + [anon_sym__Null_unspecified] = ACTIONS(2294), + [anon_sym___autoreleasing] = ACTIONS(2294), + [anon_sym___block] = ACTIONS(2294), + [anon_sym___bridge] = ACTIONS(2294), + [anon_sym___bridge_retained] = ACTIONS(2294), + [anon_sym___bridge_transfer] = ACTIONS(2294), + [anon_sym___complex] = ACTIONS(2294), + [anon_sym___const] = ACTIONS(2294), + [anon_sym___imag] = ACTIONS(2294), + [anon_sym___kindof] = ACTIONS(2294), + [anon_sym___nonnull] = ACTIONS(2294), + [anon_sym___nullable] = ACTIONS(2294), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2294), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2294), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2294), + [anon_sym___real] = ACTIONS(2294), + [anon_sym___strong] = ACTIONS(2294), + [anon_sym___unsafe_unretained] = ACTIONS(2294), + [anon_sym___unused] = ACTIONS(2294), + [anon_sym___weak] = ACTIONS(2294), + [anon_sym_alignas] = ACTIONS(2294), + [anon_sym__Alignas] = ACTIONS(2294), + [sym_primitive_type] = ACTIONS(2294), + [anon_sym_enum] = ACTIONS(2294), + [anon_sym_struct] = ACTIONS(2294), + [anon_sym_union] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_switch] = ACTIONS(2294), + [anon_sym_case] = ACTIONS(2294), + [anon_sym_default] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_goto] = ACTIONS(2294), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_sizeof] = ACTIONS(2294), + [anon_sym___alignof__] = ACTIONS(2294), + [anon_sym___alignof] = ACTIONS(2294), + [anon_sym__alignof] = ACTIONS(2294), + [anon_sym_alignof] = ACTIONS(2294), + [anon_sym__Alignof] = ACTIONS(2294), + [anon_sym_offsetof] = ACTIONS(2294), + [anon_sym__Generic] = ACTIONS(2294), + [anon_sym_asm] = ACTIONS(2294), + [anon_sym___asm__] = ACTIONS(2294), + [anon_sym___asm] = ACTIONS(2294), + [sym_number_literal] = ACTIONS(2296), + [anon_sym_L_SQUOTE] = ACTIONS(2296), + [anon_sym_u_SQUOTE] = ACTIONS(2296), + [anon_sym_U_SQUOTE] = ACTIONS(2296), + [anon_sym_u8_SQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_L_DQUOTE] = ACTIONS(2296), + [anon_sym_u_DQUOTE] = ACTIONS(2296), + [anon_sym_U_DQUOTE] = ACTIONS(2296), + [anon_sym_u8_DQUOTE] = ACTIONS(2296), + [sym_true] = ACTIONS(2294), + [sym_false] = ACTIONS(2294), + [anon_sym_NULL] = ACTIONS(2294), + [anon_sym_nullptr] = ACTIONS(2294), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2294), + [anon_sym___typeof] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(2294), + [anon_sym_ATimport] = ACTIONS(2296), + [aux_sym_preproc_undef_token1] = ACTIONS(2294), + [anon_sym_POUND] = ACTIONS(2294), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2294), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2294), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2294), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2294), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE] = ACTIONS(2294), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_API_AVAILABLE] = ACTIONS(2294), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_API_DEPRECATED] = ACTIONS(2294), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2294), + [anon_sym___deprecated_msg] = ACTIONS(2294), + [anon_sym___deprecated_enum_msg] = ACTIONS(2294), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2294), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2294), + [anon_sym_ATprotocol] = ACTIONS(2296), + [anon_sym_ATinterface] = ACTIONS(2296), + [anon_sym_ATimplementation] = ACTIONS(2296), + [anon_sym_ATcompatibility_alias] = ACTIONS(2296), + [anon_sym_ATtry] = ACTIONS(2296), + [anon_sym___try] = ACTIONS(2294), + [anon_sym_ATcatch] = ACTIONS(2386), + [anon_sym___catch] = ACTIONS(2388), + [anon_sym_ATfinally] = ACTIONS(2390), + [anon_sym___finally] = ACTIONS(2392), + [anon_sym_ATthrow] = ACTIONS(2296), + [anon_sym_ATselector] = ACTIONS(2296), + [anon_sym_ATavailable] = ACTIONS(2296), + [anon_sym___builtin_available] = ACTIONS(2294), + [anon_sym_va_arg] = ACTIONS(2294), + [anon_sym_ATencode] = ACTIONS(2296), + [anon_sym_ATsynchronized] = ACTIONS(2296), + [anon_sym_BOOL] = ACTIONS(2294), + [anon_sym_IMP] = ACTIONS(2294), + [anon_sym_SEL] = ACTIONS(2294), + [anon_sym_Class] = ACTIONS(2294), + [anon_sym_id] = ACTIONS(2294), + }, + [197] = { + [sym_catch_clause] = STATE(213), + [sym_finally_clause] = STATE(698), + [aux_sym_try_statement_repeat1] = STATE(213), + [ts_builtin_sym_end] = ACTIONS(2296), + [sym_identifier] = ACTIONS(2294), + [aux_sym_preproc_include_token1] = ACTIONS(2294), + [aux_sym_preproc_include_token2] = ACTIONS(2294), + [aux_sym_preproc_def_token1] = ACTIONS(2294), + [aux_sym_preproc_if_token1] = ACTIONS(2294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2294), + [sym_preproc_directive] = ACTIONS(2294), + [anon_sym_LPAREN2] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_STAR] = ACTIONS(2296), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym___extension__] = ACTIONS(2294), + [anon_sym_typedef] = ACTIONS(2294), + [anon_sym_extern] = ACTIONS(2294), + [anon_sym___attribute__] = ACTIONS(2294), + [anon_sym___attribute] = ACTIONS(2294), + [anon_sym_noreturn] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym___declspec] = ACTIONS(2294), + [anon_sym___cdecl] = ACTIONS(2294), + [anon_sym___clrcall] = ACTIONS(2294), + [anon_sym___stdcall] = ACTIONS(2294), + [anon_sym___fastcall] = ACTIONS(2294), + [anon_sym___thiscall] = ACTIONS(2294), + [anon_sym___vectorcall] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_signed] = ACTIONS(2294), + [anon_sym_unsigned] = ACTIONS(2294), + [anon_sym_long] = ACTIONS(2294), + [anon_sym_short] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_ATautoreleasepool] = ACTIONS(2296), + [anon_sym_auto] = ACTIONS(2294), + [anon_sym_register] = ACTIONS(2294), + [anon_sym_inline] = ACTIONS(2294), + [anon_sym___inline] = ACTIONS(2294), + [anon_sym___inline__] = ACTIONS(2294), + [anon_sym___forceinline] = ACTIONS(2294), + [anon_sym_thread_local] = ACTIONS(2294), + [anon_sym___thread] = ACTIONS(2294), + [anon_sym_CG_EXTERN] = ACTIONS(2294), + [anon_sym_CG_INLINE] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2294), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2294), + [anon_sym_IBOutlet] = ACTIONS(2294), + [anon_sym_IBInspectable] = ACTIONS(2294), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2294), + [anon_sym_NS_INLINE] = ACTIONS(2294), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2294), + [anon_sym_OBJC_EXPORT] = ACTIONS(2294), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [anon_sym_constexpr] = ACTIONS(2294), + [anon_sym_volatile] = ACTIONS(2294), + [anon_sym_restrict] = ACTIONS(2294), + [anon_sym___restrict__] = ACTIONS(2294), + [anon_sym__Atomic] = ACTIONS(2294), + [anon_sym__Noreturn] = ACTIONS(2294), + [anon_sym__Nonnull] = ACTIONS(2294), + [anon_sym_nullable] = ACTIONS(2294), + [anon_sym__Complex] = ACTIONS(2294), + [anon_sym__Nullable] = ACTIONS(2294), + [anon_sym__Nullable_result] = ACTIONS(2294), + [anon_sym__Null_unspecified] = ACTIONS(2294), + [anon_sym___autoreleasing] = ACTIONS(2294), + [anon_sym___block] = ACTIONS(2294), + [anon_sym___bridge] = ACTIONS(2294), + [anon_sym___bridge_retained] = ACTIONS(2294), + [anon_sym___bridge_transfer] = ACTIONS(2294), + [anon_sym___complex] = ACTIONS(2294), + [anon_sym___const] = ACTIONS(2294), + [anon_sym___imag] = ACTIONS(2294), + [anon_sym___kindof] = ACTIONS(2294), + [anon_sym___nonnull] = ACTIONS(2294), + [anon_sym___nullable] = ACTIONS(2294), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2294), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2294), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2294), + [anon_sym___real] = ACTIONS(2294), + [anon_sym___strong] = ACTIONS(2294), + [anon_sym___unsafe_unretained] = ACTIONS(2294), + [anon_sym___unused] = ACTIONS(2294), + [anon_sym___weak] = ACTIONS(2294), + [anon_sym_alignas] = ACTIONS(2294), + [anon_sym__Alignas] = ACTIONS(2294), + [sym_primitive_type] = ACTIONS(2294), + [anon_sym_enum] = ACTIONS(2294), + [anon_sym_struct] = ACTIONS(2294), + [anon_sym_union] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_switch] = ACTIONS(2294), + [anon_sym_case] = ACTIONS(2294), + [anon_sym_default] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_goto] = ACTIONS(2294), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_sizeof] = ACTIONS(2294), + [anon_sym___alignof__] = ACTIONS(2294), + [anon_sym___alignof] = ACTIONS(2294), + [anon_sym__alignof] = ACTIONS(2294), + [anon_sym_alignof] = ACTIONS(2294), + [anon_sym__Alignof] = ACTIONS(2294), + [anon_sym_offsetof] = ACTIONS(2294), + [anon_sym__Generic] = ACTIONS(2294), + [anon_sym_asm] = ACTIONS(2294), + [anon_sym___asm__] = ACTIONS(2294), + [anon_sym___asm] = ACTIONS(2294), + [sym_number_literal] = ACTIONS(2296), + [anon_sym_L_SQUOTE] = ACTIONS(2296), + [anon_sym_u_SQUOTE] = ACTIONS(2296), + [anon_sym_U_SQUOTE] = ACTIONS(2296), + [anon_sym_u8_SQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_L_DQUOTE] = ACTIONS(2296), + [anon_sym_u_DQUOTE] = ACTIONS(2296), + [anon_sym_U_DQUOTE] = ACTIONS(2296), + [anon_sym_u8_DQUOTE] = ACTIONS(2296), + [sym_true] = ACTIONS(2294), + [sym_false] = ACTIONS(2294), + [anon_sym_NULL] = ACTIONS(2294), + [anon_sym_nullptr] = ACTIONS(2294), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2294), + [anon_sym___typeof] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(2294), + [anon_sym_ATimport] = ACTIONS(2296), + [aux_sym_preproc_undef_token1] = ACTIONS(2294), + [anon_sym_POUND] = ACTIONS(2294), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2294), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2294), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2294), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2294), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE] = ACTIONS(2294), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_API_AVAILABLE] = ACTIONS(2294), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_API_DEPRECATED] = ACTIONS(2294), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2294), + [anon_sym___deprecated_msg] = ACTIONS(2294), + [anon_sym___deprecated_enum_msg] = ACTIONS(2294), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2294), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2294), + [anon_sym_ATprotocol] = ACTIONS(2296), + [anon_sym_ATinterface] = ACTIONS(2296), + [anon_sym_ATimplementation] = ACTIONS(2296), + [anon_sym_ATcompatibility_alias] = ACTIONS(2296), + [anon_sym_ATtry] = ACTIONS(2296), + [anon_sym___try] = ACTIONS(2294), + [anon_sym_ATcatch] = ACTIONS(2394), + [anon_sym___catch] = ACTIONS(2396), + [anon_sym_ATfinally] = ACTIONS(2398), + [anon_sym___finally] = ACTIONS(2400), + [anon_sym_ATthrow] = ACTIONS(2296), + [anon_sym_ATselector] = ACTIONS(2296), + [anon_sym_ATavailable] = ACTIONS(2296), + [anon_sym___builtin_available] = ACTIONS(2294), + [anon_sym_va_arg] = ACTIONS(2294), + [anon_sym_ATencode] = ACTIONS(2296), + [anon_sym_ATsynchronized] = ACTIONS(2296), + [anon_sym_BOOL] = ACTIONS(2294), + [anon_sym_IMP] = ACTIONS(2294), + [anon_sym_SEL] = ACTIONS(2294), + [anon_sym_Class] = ACTIONS(2294), + [anon_sym_id] = ACTIONS(2294), + }, + [198] = { + [sym_else_clause] = STATE(244), + [sym_identifier] = ACTIONS(2402), + [aux_sym_preproc_include_token1] = ACTIONS(2402), + [aux_sym_preproc_include_token2] = ACTIONS(2402), + [aux_sym_preproc_def_token1] = ACTIONS(2402), + [aux_sym_preproc_if_token1] = ACTIONS(2402), + [aux_sym_preproc_if_token2] = ACTIONS(2402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2402), + [aux_sym_preproc_else_token1] = ACTIONS(2402), + [aux_sym_preproc_elif_token1] = ACTIONS(2402), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2402), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2402), + [sym_preproc_directive] = ACTIONS(2402), + [anon_sym_LPAREN2] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_TILDE] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_PLUS] = ACTIONS(2402), + [anon_sym_STAR] = ACTIONS(2404), + [anon_sym_CARET] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym___extension__] = ACTIONS(2402), + [anon_sym_typedef] = ACTIONS(2402), + [anon_sym_extern] = ACTIONS(2402), + [anon_sym___attribute__] = ACTIONS(2402), + [anon_sym___attribute] = ACTIONS(2402), + [anon_sym_noreturn] = ACTIONS(2402), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym___declspec] = ACTIONS(2402), + [anon_sym___cdecl] = ACTIONS(2402), + [anon_sym___clrcall] = ACTIONS(2402), + [anon_sym___stdcall] = ACTIONS(2402), + [anon_sym___fastcall] = ACTIONS(2402), + [anon_sym___thiscall] = ACTIONS(2402), + [anon_sym___vectorcall] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2404), + [anon_sym_signed] = ACTIONS(2402), + [anon_sym_unsigned] = ACTIONS(2402), + [anon_sym_long] = ACTIONS(2402), + [anon_sym_short] = ACTIONS(2402), + [anon_sym_static] = ACTIONS(2402), + [anon_sym_ATautoreleasepool] = ACTIONS(2404), + [anon_sym_auto] = ACTIONS(2402), + [anon_sym_register] = ACTIONS(2402), + [anon_sym_inline] = ACTIONS(2402), + [anon_sym___inline] = ACTIONS(2402), + [anon_sym___inline__] = ACTIONS(2402), + [anon_sym___forceinline] = ACTIONS(2402), + [anon_sym_thread_local] = ACTIONS(2402), + [anon_sym___thread] = ACTIONS(2402), + [anon_sym_CG_EXTERN] = ACTIONS(2402), + [anon_sym_CG_INLINE] = ACTIONS(2402), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2402), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2402), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2402), + [anon_sym_IBOutlet] = ACTIONS(2402), + [anon_sym_IBInspectable] = ACTIONS(2402), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2402), + [anon_sym_NS_INLINE] = ACTIONS(2402), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2402), + [anon_sym_OBJC_EXPORT] = ACTIONS(2402), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2402), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2402), + [anon_sym_const] = ACTIONS(2402), + [anon_sym_constexpr] = ACTIONS(2402), + [anon_sym_volatile] = ACTIONS(2402), + [anon_sym_restrict] = ACTIONS(2402), + [anon_sym___restrict__] = ACTIONS(2402), + [anon_sym__Atomic] = ACTIONS(2402), + [anon_sym__Noreturn] = ACTIONS(2402), + [anon_sym__Nonnull] = ACTIONS(2402), + [anon_sym_nullable] = ACTIONS(2402), + [anon_sym__Complex] = ACTIONS(2402), + [anon_sym__Nullable] = ACTIONS(2402), + [anon_sym__Nullable_result] = ACTIONS(2402), + [anon_sym__Null_unspecified] = ACTIONS(2402), + [anon_sym___autoreleasing] = ACTIONS(2402), + [anon_sym___block] = ACTIONS(2402), + [anon_sym___bridge] = ACTIONS(2402), + [anon_sym___bridge_retained] = ACTIONS(2402), + [anon_sym___bridge_transfer] = ACTIONS(2402), + [anon_sym___complex] = ACTIONS(2402), + [anon_sym___const] = ACTIONS(2402), + [anon_sym___imag] = ACTIONS(2402), + [anon_sym___kindof] = ACTIONS(2402), + [anon_sym___nonnull] = ACTIONS(2402), + [anon_sym___nullable] = ACTIONS(2402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2402), + [anon_sym___real] = ACTIONS(2402), + [anon_sym___strong] = ACTIONS(2402), + [anon_sym___unsafe_unretained] = ACTIONS(2402), + [anon_sym___unused] = ACTIONS(2402), + [anon_sym___weak] = ACTIONS(2402), + [anon_sym_alignas] = ACTIONS(2402), + [anon_sym__Alignas] = ACTIONS(2402), + [sym_primitive_type] = ACTIONS(2402), + [anon_sym_enum] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(2402), + [anon_sym_union] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_else] = ACTIONS(2406), + [anon_sym_switch] = ACTIONS(2402), + [anon_sym_case] = ACTIONS(2402), + [anon_sym_default] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_in] = ACTIONS(2402), + [anon_sym_return] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_goto] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2404), + [anon_sym_sizeof] = ACTIONS(2402), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2402), + [anon_sym_asm] = ACTIONS(2402), + [anon_sym___asm__] = ACTIONS(2402), + [anon_sym___asm] = ACTIONS(2402), + [sym_number_literal] = ACTIONS(2404), + [anon_sym_L_SQUOTE] = ACTIONS(2404), + [anon_sym_u_SQUOTE] = ACTIONS(2404), + [anon_sym_U_SQUOTE] = ACTIONS(2404), + [anon_sym_u8_SQUOTE] = ACTIONS(2404), + [anon_sym_SQUOTE] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_L_DQUOTE] = ACTIONS(2404), + [anon_sym_u_DQUOTE] = ACTIONS(2404), + [anon_sym_U_DQUOTE] = ACTIONS(2404), + [anon_sym_u8_DQUOTE] = ACTIONS(2404), + [sym_true] = ACTIONS(2402), + [sym_false] = ACTIONS(2402), + [anon_sym_NULL] = ACTIONS(2402), + [anon_sym_nullptr] = ACTIONS(2402), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2402), + [anon_sym___typeof] = ACTIONS(2402), + [anon_sym_typeof] = ACTIONS(2402), + [anon_sym_ATimport] = ACTIONS(2404), + [aux_sym_preproc_undef_token1] = ACTIONS(2402), + [anon_sym_POUND] = ACTIONS(2402), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2402), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2402), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2402), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2402), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2402), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2402), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2402), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2402), + [anon_sym_NS_AVAILABLE] = ACTIONS(2402), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2402), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_API_AVAILABLE] = ACTIONS(2402), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_API_DEPRECATED] = ACTIONS(2402), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2402), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2402), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2402), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2402), + [anon_sym___deprecated_msg] = ACTIONS(2402), + [anon_sym___deprecated_enum_msg] = ACTIONS(2402), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2402), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2402), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2402), + [anon_sym_ATprotocol] = ACTIONS(2404), + [anon_sym_ATinterface] = ACTIONS(2404), + [anon_sym_ATimplementation] = ACTIONS(2404), + [anon_sym_ATcompatibility_alias] = ACTIONS(2404), + [anon_sym_ATsynthesize] = ACTIONS(2404), + [anon_sym_ATdynamic] = ACTIONS(2404), + [anon_sym_ATtry] = ACTIONS(2404), + [anon_sym___try] = ACTIONS(2402), + [anon_sym_ATthrow] = ACTIONS(2404), + [anon_sym_ATselector] = ACTIONS(2404), + [anon_sym_ATavailable] = ACTIONS(2404), + [anon_sym___builtin_available] = ACTIONS(2402), + [anon_sym_va_arg] = ACTIONS(2402), + [anon_sym_ATencode] = ACTIONS(2404), + [anon_sym_ATsynchronized] = ACTIONS(2404), + [anon_sym_BOOL] = ACTIONS(2402), + [anon_sym_IMP] = ACTIONS(2402), + [anon_sym_SEL] = ACTIONS(2402), + [anon_sym_Class] = ACTIONS(2402), + [anon_sym_id] = ACTIONS(2402), + }, + [199] = { + [sym_identifier] = ACTIONS(2408), + [aux_sym_preproc_include_token1] = ACTIONS(2408), + [aux_sym_preproc_include_token2] = ACTIONS(2408), + [aux_sym_preproc_def_token1] = ACTIONS(2408), + [aux_sym_preproc_if_token1] = ACTIONS(2408), + [aux_sym_preproc_if_token2] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2408), + [aux_sym_preproc_else_token1] = ACTIONS(2408), + [aux_sym_preproc_elif_token1] = ACTIONS(2408), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2408), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2408), + [sym_preproc_directive] = ACTIONS(2408), + [anon_sym_LPAREN2] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2408), + [anon_sym_PLUS] = ACTIONS(2408), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_CARET] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym___extension__] = ACTIONS(2408), + [anon_sym_typedef] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym___attribute__] = ACTIONS(2408), + [anon_sym___attribute] = ACTIONS(2408), + [anon_sym_noreturn] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym___declspec] = ACTIONS(2408), + [anon_sym___cdecl] = ACTIONS(2408), + [anon_sym___clrcall] = ACTIONS(2408), + [anon_sym___stdcall] = ACTIONS(2408), + [anon_sym___fastcall] = ACTIONS(2408), + [anon_sym___thiscall] = ACTIONS(2408), + [anon_sym___vectorcall] = ACTIONS(2408), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_signed] = ACTIONS(2408), + [anon_sym_unsigned] = ACTIONS(2408), + [anon_sym_long] = ACTIONS(2408), + [anon_sym_short] = ACTIONS(2408), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_ATautoreleasepool] = ACTIONS(2410), + [anon_sym_auto] = ACTIONS(2408), + [anon_sym_register] = ACTIONS(2408), + [anon_sym_inline] = ACTIONS(2408), + [anon_sym___inline] = ACTIONS(2408), + [anon_sym___inline__] = ACTIONS(2408), + [anon_sym___forceinline] = ACTIONS(2408), + [anon_sym_thread_local] = ACTIONS(2408), + [anon_sym___thread] = ACTIONS(2408), + [anon_sym_CG_EXTERN] = ACTIONS(2408), + [anon_sym_CG_INLINE] = ACTIONS(2408), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2408), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2408), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2408), + [anon_sym_IBOutlet] = ACTIONS(2408), + [anon_sym_IBInspectable] = ACTIONS(2408), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2408), + [anon_sym_NS_INLINE] = ACTIONS(2408), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2408), + [anon_sym_OBJC_EXPORT] = ACTIONS(2408), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2408), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_constexpr] = ACTIONS(2408), + [anon_sym_volatile] = ACTIONS(2408), + [anon_sym_restrict] = ACTIONS(2408), + [anon_sym___restrict__] = ACTIONS(2408), + [anon_sym__Atomic] = ACTIONS(2408), + [anon_sym__Noreturn] = ACTIONS(2408), + [anon_sym__Nonnull] = ACTIONS(2408), + [anon_sym_nullable] = ACTIONS(2408), + [anon_sym__Complex] = ACTIONS(2408), + [anon_sym__Nullable] = ACTIONS(2408), + [anon_sym__Nullable_result] = ACTIONS(2408), + [anon_sym__Null_unspecified] = ACTIONS(2408), + [anon_sym___autoreleasing] = ACTIONS(2408), + [anon_sym___block] = ACTIONS(2408), + [anon_sym___bridge] = ACTIONS(2408), + [anon_sym___bridge_retained] = ACTIONS(2408), + [anon_sym___bridge_transfer] = ACTIONS(2408), + [anon_sym___complex] = ACTIONS(2408), + [anon_sym___const] = ACTIONS(2408), + [anon_sym___imag] = ACTIONS(2408), + [anon_sym___kindof] = ACTIONS(2408), + [anon_sym___nonnull] = ACTIONS(2408), + [anon_sym___nullable] = ACTIONS(2408), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2408), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2408), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2408), + [anon_sym___real] = ACTIONS(2408), + [anon_sym___strong] = ACTIONS(2408), + [anon_sym___unsafe_unretained] = ACTIONS(2408), + [anon_sym___unused] = ACTIONS(2408), + [anon_sym___weak] = ACTIONS(2408), + [anon_sym_alignas] = ACTIONS(2408), + [anon_sym__Alignas] = ACTIONS(2408), + [sym_primitive_type] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_struct] = ACTIONS(2408), + [anon_sym_union] = ACTIONS(2408), + [anon_sym_if] = ACTIONS(2408), + [anon_sym_else] = ACTIONS(2408), + [anon_sym_switch] = ACTIONS(2408), + [anon_sym_case] = ACTIONS(2408), + [anon_sym_default] = ACTIONS(2408), + [anon_sym_while] = ACTIONS(2408), + [anon_sym_do] = ACTIONS(2408), + [anon_sym_for] = ACTIONS(2408), + [anon_sym_in] = ACTIONS(2408), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_break] = ACTIONS(2408), + [anon_sym_continue] = ACTIONS(2408), + [anon_sym_goto] = ACTIONS(2408), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_sizeof] = ACTIONS(2408), + [anon_sym___alignof__] = ACTIONS(2408), + [anon_sym___alignof] = ACTIONS(2408), + [anon_sym__alignof] = ACTIONS(2408), + [anon_sym_alignof] = ACTIONS(2408), + [anon_sym__Alignof] = ACTIONS(2408), + [anon_sym_offsetof] = ACTIONS(2408), + [anon_sym__Generic] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2410), + [anon_sym_u_SQUOTE] = ACTIONS(2410), + [anon_sym_U_SQUOTE] = ACTIONS(2410), + [anon_sym_u8_SQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(2408), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_L_DQUOTE] = ACTIONS(2410), + [anon_sym_u_DQUOTE] = ACTIONS(2410), + [anon_sym_U_DQUOTE] = ACTIONS(2410), + [anon_sym_u8_DQUOTE] = ACTIONS(2410), + [sym_true] = ACTIONS(2408), + [sym_false] = ACTIONS(2408), + [anon_sym_NULL] = ACTIONS(2408), + [anon_sym_nullptr] = ACTIONS(2408), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2408), + [anon_sym___typeof] = ACTIONS(2408), + [anon_sym_typeof] = ACTIONS(2408), + [anon_sym_ATimport] = ACTIONS(2410), + [aux_sym_preproc_undef_token1] = ACTIONS(2408), + [anon_sym_POUND] = ACTIONS(2408), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2408), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2408), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2408), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2408), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2408), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2408), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2408), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2408), + [anon_sym_NS_AVAILABLE] = ACTIONS(2408), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2408), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_API_AVAILABLE] = ACTIONS(2408), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_API_DEPRECATED] = ACTIONS(2408), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2408), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2408), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2408), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2408), + [anon_sym___deprecated_msg] = ACTIONS(2408), + [anon_sym___deprecated_enum_msg] = ACTIONS(2408), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2408), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2408), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2408), + [anon_sym_ATprotocol] = ACTIONS(2410), + [anon_sym_ATinterface] = ACTIONS(2410), + [anon_sym_ATimplementation] = ACTIONS(2410), + [anon_sym_ATcompatibility_alias] = ACTIONS(2410), + [anon_sym_ATsynthesize] = ACTIONS(2410), + [anon_sym_ATdynamic] = ACTIONS(2410), + [anon_sym_ATtry] = ACTIONS(2410), + [anon_sym___try] = ACTIONS(2408), + [anon_sym_ATthrow] = ACTIONS(2410), + [anon_sym_ATselector] = ACTIONS(2410), + [anon_sym_ATavailable] = ACTIONS(2410), + [anon_sym___builtin_available] = ACTIONS(2408), + [anon_sym_va_arg] = ACTIONS(2408), + [anon_sym_ATencode] = ACTIONS(2410), + [anon_sym_ATsynchronized] = ACTIONS(2410), + [anon_sym_BOOL] = ACTIONS(2408), + [anon_sym_IMP] = ACTIONS(2408), + [anon_sym_SEL] = ACTIONS(2408), + [anon_sym_Class] = ACTIONS(2408), + [anon_sym_id] = ACTIONS(2408), + }, + [200] = { + [sym_identifier] = ACTIONS(2412), + [aux_sym_preproc_include_token1] = ACTIONS(2412), + [aux_sym_preproc_include_token2] = ACTIONS(2412), + [aux_sym_preproc_def_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token2] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2412), + [aux_sym_preproc_else_token1] = ACTIONS(2412), + [aux_sym_preproc_elif_token1] = ACTIONS(2412), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2412), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2412), + [sym_preproc_directive] = ACTIONS(2412), + [anon_sym_LPAREN2] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2414), + [anon_sym_TILDE] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_STAR] = ACTIONS(2414), + [anon_sym_CARET] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym___extension__] = ACTIONS(2412), + [anon_sym_typedef] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym___attribute__] = ACTIONS(2412), + [anon_sym___attribute] = ACTIONS(2412), + [anon_sym_noreturn] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym___declspec] = ACTIONS(2412), + [anon_sym___cdecl] = ACTIONS(2412), + [anon_sym___clrcall] = ACTIONS(2412), + [anon_sym___stdcall] = ACTIONS(2412), + [anon_sym___fastcall] = ACTIONS(2412), + [anon_sym___thiscall] = ACTIONS(2412), + [anon_sym___vectorcall] = ACTIONS(2412), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_signed] = ACTIONS(2412), + [anon_sym_unsigned] = ACTIONS(2412), + [anon_sym_long] = ACTIONS(2412), + [anon_sym_short] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_ATautoreleasepool] = ACTIONS(2414), + [anon_sym_auto] = ACTIONS(2412), + [anon_sym_register] = ACTIONS(2412), + [anon_sym_inline] = ACTIONS(2412), + [anon_sym___inline] = ACTIONS(2412), + [anon_sym___inline__] = ACTIONS(2412), + [anon_sym___forceinline] = ACTIONS(2412), + [anon_sym_thread_local] = ACTIONS(2412), + [anon_sym___thread] = ACTIONS(2412), + [anon_sym_CG_EXTERN] = ACTIONS(2412), + [anon_sym_CG_INLINE] = ACTIONS(2412), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2412), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2412), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2412), + [anon_sym_IBOutlet] = ACTIONS(2412), + [anon_sym_IBInspectable] = ACTIONS(2412), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2412), + [anon_sym_NS_INLINE] = ACTIONS(2412), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2412), + [anon_sym_OBJC_EXPORT] = ACTIONS(2412), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2412), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_constexpr] = ACTIONS(2412), + [anon_sym_volatile] = ACTIONS(2412), + [anon_sym_restrict] = ACTIONS(2412), + [anon_sym___restrict__] = ACTIONS(2412), + [anon_sym__Atomic] = ACTIONS(2412), + [anon_sym__Noreturn] = ACTIONS(2412), + [anon_sym__Nonnull] = ACTIONS(2412), + [anon_sym_nullable] = ACTIONS(2412), + [anon_sym__Complex] = ACTIONS(2412), + [anon_sym__Nullable] = ACTIONS(2412), + [anon_sym__Nullable_result] = ACTIONS(2412), + [anon_sym__Null_unspecified] = ACTIONS(2412), + [anon_sym___autoreleasing] = ACTIONS(2412), + [anon_sym___block] = ACTIONS(2412), + [anon_sym___bridge] = ACTIONS(2412), + [anon_sym___bridge_retained] = ACTIONS(2412), + [anon_sym___bridge_transfer] = ACTIONS(2412), + [anon_sym___complex] = ACTIONS(2412), + [anon_sym___const] = ACTIONS(2412), + [anon_sym___imag] = ACTIONS(2412), + [anon_sym___kindof] = ACTIONS(2412), + [anon_sym___nonnull] = ACTIONS(2412), + [anon_sym___nullable] = ACTIONS(2412), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2412), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2412), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2412), + [anon_sym___real] = ACTIONS(2412), + [anon_sym___strong] = ACTIONS(2412), + [anon_sym___unsafe_unretained] = ACTIONS(2412), + [anon_sym___unused] = ACTIONS(2412), + [anon_sym___weak] = ACTIONS(2412), + [anon_sym_alignas] = ACTIONS(2412), + [anon_sym__Alignas] = ACTIONS(2412), + [sym_primitive_type] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [anon_sym_struct] = ACTIONS(2412), + [anon_sym_union] = ACTIONS(2412), + [anon_sym_if] = ACTIONS(2412), + [anon_sym_else] = ACTIONS(2412), + [anon_sym_switch] = ACTIONS(2412), + [anon_sym_case] = ACTIONS(2412), + [anon_sym_default] = ACTIONS(2412), + [anon_sym_while] = ACTIONS(2412), + [anon_sym_do] = ACTIONS(2412), + [anon_sym_for] = ACTIONS(2412), + [anon_sym_in] = ACTIONS(2412), + [anon_sym_return] = ACTIONS(2412), + [anon_sym_break] = ACTIONS(2412), + [anon_sym_continue] = ACTIONS(2412), + [anon_sym_goto] = ACTIONS(2412), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_sizeof] = ACTIONS(2412), + [anon_sym___alignof__] = ACTIONS(2412), + [anon_sym___alignof] = ACTIONS(2412), + [anon_sym__alignof] = ACTIONS(2412), + [anon_sym_alignof] = ACTIONS(2412), + [anon_sym__Alignof] = ACTIONS(2412), + [anon_sym_offsetof] = ACTIONS(2412), + [anon_sym__Generic] = ACTIONS(2412), + [anon_sym_asm] = ACTIONS(2412), + [anon_sym___asm__] = ACTIONS(2412), + [anon_sym___asm] = ACTIONS(2412), + [sym_number_literal] = ACTIONS(2414), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_AT] = ACTIONS(2412), + [anon_sym_DQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2412), + [sym_false] = ACTIONS(2412), + [anon_sym_NULL] = ACTIONS(2412), + [anon_sym_nullptr] = ACTIONS(2412), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2412), + [anon_sym___typeof] = ACTIONS(2412), + [anon_sym_typeof] = ACTIONS(2412), + [anon_sym_ATimport] = ACTIONS(2414), + [aux_sym_preproc_undef_token1] = ACTIONS(2412), + [anon_sym_POUND] = ACTIONS(2412), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2412), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2412), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2412), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2412), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2412), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2412), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2412), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2412), + [anon_sym_NS_AVAILABLE] = ACTIONS(2412), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2412), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_API_AVAILABLE] = ACTIONS(2412), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_API_DEPRECATED] = ACTIONS(2412), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2412), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2412), + [anon_sym___deprecated_msg] = ACTIONS(2412), + [anon_sym___deprecated_enum_msg] = ACTIONS(2412), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2412), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2412), + [anon_sym_ATprotocol] = ACTIONS(2414), + [anon_sym_ATinterface] = ACTIONS(2414), + [anon_sym_ATimplementation] = ACTIONS(2414), + [anon_sym_ATcompatibility_alias] = ACTIONS(2414), + [anon_sym_ATsynthesize] = ACTIONS(2414), + [anon_sym_ATdynamic] = ACTIONS(2414), + [anon_sym_ATtry] = ACTIONS(2414), + [anon_sym___try] = ACTIONS(2412), + [anon_sym_ATthrow] = ACTIONS(2414), + [anon_sym_ATselector] = ACTIONS(2414), + [anon_sym_ATavailable] = ACTIONS(2414), + [anon_sym___builtin_available] = ACTIONS(2412), + [anon_sym_va_arg] = ACTIONS(2412), + [anon_sym_ATencode] = ACTIONS(2414), + [anon_sym_ATsynchronized] = ACTIONS(2414), + [anon_sym_BOOL] = ACTIONS(2412), + [anon_sym_IMP] = ACTIONS(2412), + [anon_sym_SEL] = ACTIONS(2412), + [anon_sym_Class] = ACTIONS(2412), + [anon_sym_id] = ACTIONS(2412), + }, + [201] = { + [sym_identifier] = ACTIONS(2350), + [aux_sym_preproc_include_token1] = ACTIONS(2350), + [aux_sym_preproc_include_token2] = ACTIONS(2350), + [aux_sym_preproc_def_token1] = ACTIONS(2350), + [aux_sym_preproc_if_token1] = ACTIONS(2350), + [aux_sym_preproc_if_token2] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2350), + [aux_sym_preproc_else_token1] = ACTIONS(2350), + [aux_sym_preproc_elif_token1] = ACTIONS(2350), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2350), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2350), + [sym_preproc_directive] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(2352), + [anon_sym_BANG] = ACTIONS(2352), + [anon_sym_TILDE] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2350), + [anon_sym_STAR] = ACTIONS(2352), + [anon_sym_CARET] = ACTIONS(2352), + [anon_sym_AMP] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2352), + [anon_sym___extension__] = ACTIONS(2350), + [anon_sym_typedef] = ACTIONS(2350), + [anon_sym_extern] = ACTIONS(2350), + [anon_sym___attribute__] = ACTIONS(2350), + [anon_sym___attribute] = ACTIONS(2350), + [anon_sym_noreturn] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2352), + [anon_sym___declspec] = ACTIONS(2350), + [anon_sym___cdecl] = ACTIONS(2350), + [anon_sym___clrcall] = ACTIONS(2350), + [anon_sym___stdcall] = ACTIONS(2350), + [anon_sym___fastcall] = ACTIONS(2350), + [anon_sym___thiscall] = ACTIONS(2350), + [anon_sym___vectorcall] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2352), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(2350), + [anon_sym_ATautoreleasepool] = ACTIONS(2352), + [anon_sym_auto] = ACTIONS(2350), + [anon_sym_register] = ACTIONS(2350), + [anon_sym_inline] = ACTIONS(2350), + [anon_sym___inline] = ACTIONS(2350), + [anon_sym___inline__] = ACTIONS(2350), + [anon_sym___forceinline] = ACTIONS(2350), + [anon_sym_thread_local] = ACTIONS(2350), + [anon_sym___thread] = ACTIONS(2350), + [anon_sym_CG_EXTERN] = ACTIONS(2350), + [anon_sym_CG_INLINE] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2350), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2350), + [anon_sym_IBOutlet] = ACTIONS(2350), + [anon_sym_IBInspectable] = ACTIONS(2350), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2350), + [anon_sym_NS_INLINE] = ACTIONS(2350), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2350), + [anon_sym_OBJC_EXPORT] = ACTIONS(2350), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2350), + [anon_sym_const] = ACTIONS(2350), + [anon_sym_constexpr] = ACTIONS(2350), + [anon_sym_volatile] = ACTIONS(2350), + [anon_sym_restrict] = ACTIONS(2350), + [anon_sym___restrict__] = ACTIONS(2350), + [anon_sym__Atomic] = ACTIONS(2350), + [anon_sym__Noreturn] = ACTIONS(2350), + [anon_sym__Nonnull] = ACTIONS(2350), + [anon_sym_nullable] = ACTIONS(2350), + [anon_sym__Complex] = ACTIONS(2350), + [anon_sym__Nullable] = ACTIONS(2350), + [anon_sym__Nullable_result] = ACTIONS(2350), + [anon_sym__Null_unspecified] = ACTIONS(2350), + [anon_sym___autoreleasing] = ACTIONS(2350), + [anon_sym___block] = ACTIONS(2350), + [anon_sym___bridge] = ACTIONS(2350), + [anon_sym___bridge_retained] = ACTIONS(2350), + [anon_sym___bridge_transfer] = ACTIONS(2350), + [anon_sym___complex] = ACTIONS(2350), + [anon_sym___const] = ACTIONS(2350), + [anon_sym___imag] = ACTIONS(2350), + [anon_sym___kindof] = ACTIONS(2350), + [anon_sym___nonnull] = ACTIONS(2350), + [anon_sym___nullable] = ACTIONS(2350), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2350), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2350), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2350), + [anon_sym___real] = ACTIONS(2350), + [anon_sym___strong] = ACTIONS(2350), + [anon_sym___unsafe_unretained] = ACTIONS(2350), + [anon_sym___unused] = ACTIONS(2350), + [anon_sym___weak] = ACTIONS(2350), + [anon_sym_alignas] = ACTIONS(2350), + [anon_sym__Alignas] = ACTIONS(2350), + [sym_primitive_type] = ACTIONS(2350), + [anon_sym_enum] = ACTIONS(2350), + [anon_sym_struct] = ACTIONS(2350), + [anon_sym_union] = ACTIONS(2350), + [anon_sym_if] = ACTIONS(2350), + [anon_sym_else] = ACTIONS(2350), + [anon_sym_switch] = ACTIONS(2350), + [anon_sym_case] = ACTIONS(2350), + [anon_sym_default] = ACTIONS(2350), + [anon_sym_while] = ACTIONS(2350), + [anon_sym_do] = ACTIONS(2350), + [anon_sym_for] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_return] = ACTIONS(2350), + [anon_sym_break] = ACTIONS(2350), + [anon_sym_continue] = ACTIONS(2350), + [anon_sym_goto] = ACTIONS(2350), + [anon_sym_DASH_DASH] = ACTIONS(2352), + [anon_sym_PLUS_PLUS] = ACTIONS(2352), + [anon_sym_sizeof] = ACTIONS(2350), + [anon_sym___alignof__] = ACTIONS(2350), + [anon_sym___alignof] = ACTIONS(2350), + [anon_sym__alignof] = ACTIONS(2350), + [anon_sym_alignof] = ACTIONS(2350), + [anon_sym__Alignof] = ACTIONS(2350), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_asm] = ACTIONS(2350), + [anon_sym___asm__] = ACTIONS(2350), + [anon_sym___asm] = ACTIONS(2350), + [sym_number_literal] = ACTIONS(2352), + [anon_sym_L_SQUOTE] = ACTIONS(2352), + [anon_sym_u_SQUOTE] = ACTIONS(2352), + [anon_sym_U_SQUOTE] = ACTIONS(2352), + [anon_sym_u8_SQUOTE] = ACTIONS(2352), + [anon_sym_SQUOTE] = ACTIONS(2352), + [anon_sym_AT] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2352), + [anon_sym_L_DQUOTE] = ACTIONS(2352), + [anon_sym_u_DQUOTE] = ACTIONS(2352), + [anon_sym_U_DQUOTE] = ACTIONS(2352), + [anon_sym_u8_DQUOTE] = ACTIONS(2352), + [sym_true] = ACTIONS(2350), + [sym_false] = ACTIONS(2350), + [anon_sym_NULL] = ACTIONS(2350), + [anon_sym_nullptr] = ACTIONS(2350), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2350), + [anon_sym___typeof] = ACTIONS(2350), + [anon_sym_typeof] = ACTIONS(2350), + [anon_sym_ATimport] = ACTIONS(2352), + [aux_sym_preproc_undef_token1] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(2350), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2350), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2350), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2350), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2350), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE] = ACTIONS(2350), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_API_AVAILABLE] = ACTIONS(2350), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_API_DEPRECATED] = ACTIONS(2350), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2350), + [anon_sym___deprecated_msg] = ACTIONS(2350), + [anon_sym___deprecated_enum_msg] = ACTIONS(2350), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2350), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2350), + [anon_sym_ATprotocol] = ACTIONS(2352), + [anon_sym_ATinterface] = ACTIONS(2352), + [anon_sym_ATimplementation] = ACTIONS(2352), + [anon_sym_ATcompatibility_alias] = ACTIONS(2352), + [anon_sym_ATsynthesize] = ACTIONS(2352), + [anon_sym_ATdynamic] = ACTIONS(2352), + [anon_sym_ATtry] = ACTIONS(2352), + [anon_sym___try] = ACTIONS(2350), + [anon_sym_ATthrow] = ACTIONS(2352), + [anon_sym_ATselector] = ACTIONS(2352), + [anon_sym_ATavailable] = ACTIONS(2352), + [anon_sym___builtin_available] = ACTIONS(2350), + [anon_sym_va_arg] = ACTIONS(2350), + [anon_sym_ATencode] = ACTIONS(2352), + [anon_sym_ATsynchronized] = ACTIONS(2352), + [anon_sym_BOOL] = ACTIONS(2350), + [anon_sym_IMP] = ACTIONS(2350), + [anon_sym_SEL] = ACTIONS(2350), + [anon_sym_Class] = ACTIONS(2350), + [anon_sym_id] = ACTIONS(2350), + }, + [202] = { + [sym_identifier] = ACTIONS(2416), + [aux_sym_preproc_include_token1] = ACTIONS(2416), + [aux_sym_preproc_include_token2] = ACTIONS(2416), + [aux_sym_preproc_def_token1] = ACTIONS(2416), + [aux_sym_preproc_if_token1] = ACTIONS(2416), + [aux_sym_preproc_if_token2] = ACTIONS(2416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2416), + [aux_sym_preproc_else_token1] = ACTIONS(2416), + [aux_sym_preproc_elif_token1] = ACTIONS(2416), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2416), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2416), + [sym_preproc_directive] = ACTIONS(2416), + [anon_sym_LPAREN2] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym___extension__] = ACTIONS(2416), + [anon_sym_typedef] = ACTIONS(2416), + [anon_sym_extern] = ACTIONS(2416), + [anon_sym___attribute__] = ACTIONS(2416), + [anon_sym___attribute] = ACTIONS(2416), + [anon_sym_noreturn] = ACTIONS(2416), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym___declspec] = ACTIONS(2416), + [anon_sym___cdecl] = ACTIONS(2416), + [anon_sym___clrcall] = ACTIONS(2416), + [anon_sym___stdcall] = ACTIONS(2416), + [anon_sym___fastcall] = ACTIONS(2416), + [anon_sym___thiscall] = ACTIONS(2416), + [anon_sym___vectorcall] = ACTIONS(2416), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_signed] = ACTIONS(2416), + [anon_sym_unsigned] = ACTIONS(2416), + [anon_sym_long] = ACTIONS(2416), + [anon_sym_short] = ACTIONS(2416), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_ATautoreleasepool] = ACTIONS(2418), + [anon_sym_auto] = ACTIONS(2416), + [anon_sym_register] = ACTIONS(2416), + [anon_sym_inline] = ACTIONS(2416), + [anon_sym___inline] = ACTIONS(2416), + [anon_sym___inline__] = ACTIONS(2416), + [anon_sym___forceinline] = ACTIONS(2416), + [anon_sym_thread_local] = ACTIONS(2416), + [anon_sym___thread] = ACTIONS(2416), + [anon_sym_CG_EXTERN] = ACTIONS(2416), + [anon_sym_CG_INLINE] = ACTIONS(2416), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2416), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2416), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2416), + [anon_sym_IBOutlet] = ACTIONS(2416), + [anon_sym_IBInspectable] = ACTIONS(2416), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2416), + [anon_sym_NS_INLINE] = ACTIONS(2416), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2416), + [anon_sym_OBJC_EXPORT] = ACTIONS(2416), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2416), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2416), + [anon_sym_const] = ACTIONS(2416), + [anon_sym_constexpr] = ACTIONS(2416), + [anon_sym_volatile] = ACTIONS(2416), + [anon_sym_restrict] = ACTIONS(2416), + [anon_sym___restrict__] = ACTIONS(2416), + [anon_sym__Atomic] = ACTIONS(2416), + [anon_sym__Noreturn] = ACTIONS(2416), + [anon_sym__Nonnull] = ACTIONS(2416), + [anon_sym_nullable] = ACTIONS(2416), + [anon_sym__Complex] = ACTIONS(2416), + [anon_sym__Nullable] = ACTIONS(2416), + [anon_sym__Nullable_result] = ACTIONS(2416), + [anon_sym__Null_unspecified] = ACTIONS(2416), + [anon_sym___autoreleasing] = ACTIONS(2416), + [anon_sym___block] = ACTIONS(2416), + [anon_sym___bridge] = ACTIONS(2416), + [anon_sym___bridge_retained] = ACTIONS(2416), + [anon_sym___bridge_transfer] = ACTIONS(2416), + [anon_sym___complex] = ACTIONS(2416), + [anon_sym___const] = ACTIONS(2416), + [anon_sym___imag] = ACTIONS(2416), + [anon_sym___kindof] = ACTIONS(2416), + [anon_sym___nonnull] = ACTIONS(2416), + [anon_sym___nullable] = ACTIONS(2416), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2416), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2416), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2416), + [anon_sym___real] = ACTIONS(2416), + [anon_sym___strong] = ACTIONS(2416), + [anon_sym___unsafe_unretained] = ACTIONS(2416), + [anon_sym___unused] = ACTIONS(2416), + [anon_sym___weak] = ACTIONS(2416), + [anon_sym_alignas] = ACTIONS(2416), + [anon_sym__Alignas] = ACTIONS(2416), + [sym_primitive_type] = ACTIONS(2416), + [anon_sym_enum] = ACTIONS(2416), + [anon_sym_struct] = ACTIONS(2416), + [anon_sym_union] = ACTIONS(2416), + [anon_sym_if] = ACTIONS(2416), + [anon_sym_else] = ACTIONS(2416), + [anon_sym_switch] = ACTIONS(2416), + [anon_sym_case] = ACTIONS(2416), + [anon_sym_default] = ACTIONS(2416), + [anon_sym_while] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2416), + [anon_sym_for] = ACTIONS(2416), + [anon_sym_in] = ACTIONS(2416), + [anon_sym_return] = ACTIONS(2416), + [anon_sym_break] = ACTIONS(2416), + [anon_sym_continue] = ACTIONS(2416), + [anon_sym_goto] = ACTIONS(2416), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_sizeof] = ACTIONS(2416), + [anon_sym___alignof__] = ACTIONS(2416), + [anon_sym___alignof] = ACTIONS(2416), + [anon_sym__alignof] = ACTIONS(2416), + [anon_sym_alignof] = ACTIONS(2416), + [anon_sym__Alignof] = ACTIONS(2416), + [anon_sym_offsetof] = ACTIONS(2416), + [anon_sym__Generic] = ACTIONS(2416), + [anon_sym_asm] = ACTIONS(2416), + [anon_sym___asm__] = ACTIONS(2416), + [anon_sym___asm] = ACTIONS(2416), + [sym_number_literal] = ACTIONS(2418), + [anon_sym_L_SQUOTE] = ACTIONS(2418), + [anon_sym_u_SQUOTE] = ACTIONS(2418), + [anon_sym_U_SQUOTE] = ACTIONS(2418), + [anon_sym_u8_SQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_L_DQUOTE] = ACTIONS(2418), + [anon_sym_u_DQUOTE] = ACTIONS(2418), + [anon_sym_U_DQUOTE] = ACTIONS(2418), + [anon_sym_u8_DQUOTE] = ACTIONS(2418), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2416), + [anon_sym_nullptr] = ACTIONS(2416), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2416), + [anon_sym___typeof] = ACTIONS(2416), + [anon_sym_typeof] = ACTIONS(2416), + [anon_sym_ATimport] = ACTIONS(2418), + [aux_sym_preproc_undef_token1] = ACTIONS(2416), + [anon_sym_POUND] = ACTIONS(2416), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2416), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2416), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2416), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2416), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2416), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2416), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2416), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2416), + [anon_sym_NS_AVAILABLE] = ACTIONS(2416), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2416), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_API_AVAILABLE] = ACTIONS(2416), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_API_DEPRECATED] = ACTIONS(2416), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2416), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2416), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2416), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2416), + [anon_sym___deprecated_msg] = ACTIONS(2416), + [anon_sym___deprecated_enum_msg] = ACTIONS(2416), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2416), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2416), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2416), + [anon_sym_ATprotocol] = ACTIONS(2418), + [anon_sym_ATinterface] = ACTIONS(2418), + [anon_sym_ATimplementation] = ACTIONS(2418), + [anon_sym_ATcompatibility_alias] = ACTIONS(2418), + [anon_sym_ATsynthesize] = ACTIONS(2418), + [anon_sym_ATdynamic] = ACTIONS(2418), + [anon_sym_ATtry] = ACTIONS(2418), + [anon_sym___try] = ACTIONS(2416), + [anon_sym_ATthrow] = ACTIONS(2418), + [anon_sym_ATselector] = ACTIONS(2418), + [anon_sym_ATavailable] = ACTIONS(2418), + [anon_sym___builtin_available] = ACTIONS(2416), + [anon_sym_va_arg] = ACTIONS(2416), + [anon_sym_ATencode] = ACTIONS(2418), + [anon_sym_ATsynchronized] = ACTIONS(2418), + [anon_sym_BOOL] = ACTIONS(2416), + [anon_sym_IMP] = ACTIONS(2416), + [anon_sym_SEL] = ACTIONS(2416), + [anon_sym_Class] = ACTIONS(2416), + [anon_sym_id] = ACTIONS(2416), + }, + [203] = { + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_include_token1] = ACTIONS(2420), + [aux_sym_preproc_include_token2] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2420), + [aux_sym_preproc_if_token1] = ACTIONS(2420), + [aux_sym_preproc_if_token2] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2420), + [aux_sym_preproc_else_token1] = ACTIONS(2420), + [aux_sym_preproc_elif_token1] = ACTIONS(2420), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2420), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2420), + [sym_preproc_directive] = ACTIONS(2420), + [anon_sym_LPAREN2] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(2422), + [anon_sym_CARET] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym___extension__] = ACTIONS(2420), + [anon_sym_typedef] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym___attribute__] = ACTIONS(2420), + [anon_sym___attribute] = ACTIONS(2420), + [anon_sym_noreturn] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2422), + [anon_sym___declspec] = ACTIONS(2420), + [anon_sym___cdecl] = ACTIONS(2420), + [anon_sym___clrcall] = ACTIONS(2420), + [anon_sym___stdcall] = ACTIONS(2420), + [anon_sym___fastcall] = ACTIONS(2420), + [anon_sym___thiscall] = ACTIONS(2420), + [anon_sym___vectorcall] = ACTIONS(2420), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_signed] = ACTIONS(2420), + [anon_sym_unsigned] = ACTIONS(2420), + [anon_sym_long] = ACTIONS(2420), + [anon_sym_short] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_ATautoreleasepool] = ACTIONS(2422), + [anon_sym_auto] = ACTIONS(2420), + [anon_sym_register] = ACTIONS(2420), + [anon_sym_inline] = ACTIONS(2420), + [anon_sym___inline] = ACTIONS(2420), + [anon_sym___inline__] = ACTIONS(2420), + [anon_sym___forceinline] = ACTIONS(2420), + [anon_sym_thread_local] = ACTIONS(2420), + [anon_sym___thread] = ACTIONS(2420), + [anon_sym_CG_EXTERN] = ACTIONS(2420), + [anon_sym_CG_INLINE] = ACTIONS(2420), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2420), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2420), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2420), + [anon_sym_IBOutlet] = ACTIONS(2420), + [anon_sym_IBInspectable] = ACTIONS(2420), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2420), + [anon_sym_NS_INLINE] = ACTIONS(2420), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2420), + [anon_sym_OBJC_EXPORT] = ACTIONS(2420), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2420), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [anon_sym_constexpr] = ACTIONS(2420), + [anon_sym_volatile] = ACTIONS(2420), + [anon_sym_restrict] = ACTIONS(2420), + [anon_sym___restrict__] = ACTIONS(2420), + [anon_sym__Atomic] = ACTIONS(2420), + [anon_sym__Noreturn] = ACTIONS(2420), + [anon_sym__Nonnull] = ACTIONS(2420), + [anon_sym_nullable] = ACTIONS(2420), + [anon_sym__Complex] = ACTIONS(2420), + [anon_sym__Nullable] = ACTIONS(2420), + [anon_sym__Nullable_result] = ACTIONS(2420), + [anon_sym__Null_unspecified] = ACTIONS(2420), + [anon_sym___autoreleasing] = ACTIONS(2420), + [anon_sym___block] = ACTIONS(2420), + [anon_sym___bridge] = ACTIONS(2420), + [anon_sym___bridge_retained] = ACTIONS(2420), + [anon_sym___bridge_transfer] = ACTIONS(2420), + [anon_sym___complex] = ACTIONS(2420), + [anon_sym___const] = ACTIONS(2420), + [anon_sym___imag] = ACTIONS(2420), + [anon_sym___kindof] = ACTIONS(2420), + [anon_sym___nonnull] = ACTIONS(2420), + [anon_sym___nullable] = ACTIONS(2420), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2420), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2420), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2420), + [anon_sym___real] = ACTIONS(2420), + [anon_sym___strong] = ACTIONS(2420), + [anon_sym___unsafe_unretained] = ACTIONS(2420), + [anon_sym___unused] = ACTIONS(2420), + [anon_sym___weak] = ACTIONS(2420), + [anon_sym_alignas] = ACTIONS(2420), + [anon_sym__Alignas] = ACTIONS(2420), + [sym_primitive_type] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), + [anon_sym_struct] = ACTIONS(2420), + [anon_sym_union] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_else] = ACTIONS(2420), + [anon_sym_switch] = ACTIONS(2420), + [anon_sym_case] = ACTIONS(2420), + [anon_sym_default] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_do] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_in] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_goto] = ACTIONS(2420), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_sizeof] = ACTIONS(2420), + [anon_sym___alignof__] = ACTIONS(2420), + [anon_sym___alignof] = ACTIONS(2420), + [anon_sym__alignof] = ACTIONS(2420), + [anon_sym_alignof] = ACTIONS(2420), + [anon_sym__Alignof] = ACTIONS(2420), + [anon_sym_offsetof] = ACTIONS(2420), + [anon_sym__Generic] = ACTIONS(2420), + [anon_sym_asm] = ACTIONS(2420), + [anon_sym___asm__] = ACTIONS(2420), + [anon_sym___asm] = ACTIONS(2420), + [sym_number_literal] = ACTIONS(2422), + [anon_sym_L_SQUOTE] = ACTIONS(2422), + [anon_sym_u_SQUOTE] = ACTIONS(2422), + [anon_sym_U_SQUOTE] = ACTIONS(2422), + [anon_sym_u8_SQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [anon_sym_AT] = ACTIONS(2420), + [anon_sym_DQUOTE] = ACTIONS(2422), + [anon_sym_L_DQUOTE] = ACTIONS(2422), + [anon_sym_u_DQUOTE] = ACTIONS(2422), + [anon_sym_U_DQUOTE] = ACTIONS(2422), + [anon_sym_u8_DQUOTE] = ACTIONS(2422), + [sym_true] = ACTIONS(2420), + [sym_false] = ACTIONS(2420), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2420), + [anon_sym___typeof] = ACTIONS(2420), + [anon_sym_typeof] = ACTIONS(2420), + [anon_sym_ATimport] = ACTIONS(2422), + [aux_sym_preproc_undef_token1] = ACTIONS(2420), + [anon_sym_POUND] = ACTIONS(2420), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2420), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2420), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2420), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2420), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2420), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2420), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2420), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2420), + [anon_sym_NS_AVAILABLE] = ACTIONS(2420), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2420), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_API_AVAILABLE] = ACTIONS(2420), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_API_DEPRECATED] = ACTIONS(2420), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2420), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2420), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2420), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2420), + [anon_sym___deprecated_msg] = ACTIONS(2420), + [anon_sym___deprecated_enum_msg] = ACTIONS(2420), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2420), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2420), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2420), + [anon_sym_ATprotocol] = ACTIONS(2422), + [anon_sym_ATinterface] = ACTIONS(2422), + [anon_sym_ATimplementation] = ACTIONS(2422), + [anon_sym_ATcompatibility_alias] = ACTIONS(2422), + [anon_sym_ATsynthesize] = ACTIONS(2422), + [anon_sym_ATdynamic] = ACTIONS(2422), + [anon_sym_ATtry] = ACTIONS(2422), + [anon_sym___try] = ACTIONS(2420), + [anon_sym_ATthrow] = ACTIONS(2422), + [anon_sym_ATselector] = ACTIONS(2422), + [anon_sym_ATavailable] = ACTIONS(2422), + [anon_sym___builtin_available] = ACTIONS(2420), + [anon_sym_va_arg] = ACTIONS(2420), + [anon_sym_ATencode] = ACTIONS(2422), + [anon_sym_ATsynchronized] = ACTIONS(2422), + [anon_sym_BOOL] = ACTIONS(2420), + [anon_sym_IMP] = ACTIONS(2420), + [anon_sym_SEL] = ACTIONS(2420), + [anon_sym_Class] = ACTIONS(2420), + [anon_sym_id] = ACTIONS(2420), + }, + [204] = { + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_include_token1] = ACTIONS(2424), + [aux_sym_preproc_include_token2] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token2] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [aux_sym_preproc_else_token1] = ACTIONS(2424), + [aux_sym_preproc_elif_token1] = ACTIONS(2424), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_CARET] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_ATautoreleasepool] = ACTIONS(2426), + [anon_sym_auto] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_CG_EXTERN] = ACTIONS(2424), + [anon_sym_CG_INLINE] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2424), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2424), + [anon_sym_IBOutlet] = ACTIONS(2424), + [anon_sym_IBInspectable] = ACTIONS(2424), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2424), + [anon_sym_NS_INLINE] = ACTIONS(2424), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2424), + [anon_sym_OBJC_EXPORT] = ACTIONS(2424), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_nullable] = ACTIONS(2424), + [anon_sym__Complex] = ACTIONS(2424), + [anon_sym__Nullable] = ACTIONS(2424), + [anon_sym__Nullable_result] = ACTIONS(2424), + [anon_sym__Null_unspecified] = ACTIONS(2424), + [anon_sym___autoreleasing] = ACTIONS(2424), + [anon_sym___block] = ACTIONS(2424), + [anon_sym___bridge] = ACTIONS(2424), + [anon_sym___bridge_retained] = ACTIONS(2424), + [anon_sym___bridge_transfer] = ACTIONS(2424), + [anon_sym___complex] = ACTIONS(2424), + [anon_sym___const] = ACTIONS(2424), + [anon_sym___imag] = ACTIONS(2424), + [anon_sym___kindof] = ACTIONS(2424), + [anon_sym___nonnull] = ACTIONS(2424), + [anon_sym___nullable] = ACTIONS(2424), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2424), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2424), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2424), + [anon_sym___real] = ACTIONS(2424), + [anon_sym___strong] = ACTIONS(2424), + [anon_sym___unsafe_unretained] = ACTIONS(2424), + [anon_sym___unused] = ACTIONS(2424), + [anon_sym___weak] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_else] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_in] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_goto] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_sizeof] = ACTIONS(2424), + [anon_sym___alignof__] = ACTIONS(2424), + [anon_sym___alignof] = ACTIONS(2424), + [anon_sym__alignof] = ACTIONS(2424), + [anon_sym_alignof] = ACTIONS(2424), + [anon_sym__Alignof] = ACTIONS(2424), + [anon_sym_offsetof] = ACTIONS(2424), + [anon_sym__Generic] = ACTIONS(2424), + [anon_sym_asm] = ACTIONS(2424), + [anon_sym___asm__] = ACTIONS(2424), + [anon_sym___asm] = ACTIONS(2424), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_L_SQUOTE] = ACTIONS(2426), + [anon_sym_u_SQUOTE] = ACTIONS(2426), + [anon_sym_U_SQUOTE] = ACTIONS(2426), + [anon_sym_u8_SQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_AT] = ACTIONS(2424), + [anon_sym_DQUOTE] = ACTIONS(2426), + [anon_sym_L_DQUOTE] = ACTIONS(2426), + [anon_sym_u_DQUOTE] = ACTIONS(2426), + [anon_sym_U_DQUOTE] = ACTIONS(2426), + [anon_sym_u8_DQUOTE] = ACTIONS(2426), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [anon_sym_NULL] = ACTIONS(2424), + [anon_sym_nullptr] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2424), + [anon_sym___typeof] = ACTIONS(2424), + [anon_sym_typeof] = ACTIONS(2424), + [anon_sym_ATimport] = ACTIONS(2426), + [aux_sym_preproc_undef_token1] = ACTIONS(2424), + [anon_sym_POUND] = ACTIONS(2424), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2424), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2424), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2424), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2424), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE] = ACTIONS(2424), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_API_AVAILABLE] = ACTIONS(2424), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_API_DEPRECATED] = ACTIONS(2424), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2424), + [anon_sym___deprecated_msg] = ACTIONS(2424), + [anon_sym___deprecated_enum_msg] = ACTIONS(2424), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2424), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2424), + [anon_sym_ATprotocol] = ACTIONS(2426), + [anon_sym_ATinterface] = ACTIONS(2426), + [anon_sym_ATimplementation] = ACTIONS(2426), + [anon_sym_ATcompatibility_alias] = ACTIONS(2426), + [anon_sym_ATsynthesize] = ACTIONS(2426), + [anon_sym_ATdynamic] = ACTIONS(2426), + [anon_sym_ATtry] = ACTIONS(2426), + [anon_sym___try] = ACTIONS(2424), + [anon_sym_ATthrow] = ACTIONS(2426), + [anon_sym_ATselector] = ACTIONS(2426), + [anon_sym_ATavailable] = ACTIONS(2426), + [anon_sym___builtin_available] = ACTIONS(2424), + [anon_sym_va_arg] = ACTIONS(2424), + [anon_sym_ATencode] = ACTIONS(2426), + [anon_sym_ATsynchronized] = ACTIONS(2426), + [anon_sym_BOOL] = ACTIONS(2424), + [anon_sym_IMP] = ACTIONS(2424), + [anon_sym_SEL] = ACTIONS(2424), + [anon_sym_Class] = ACTIONS(2424), + [anon_sym_id] = ACTIONS(2424), + }, + [205] = { + [sym_identifier] = ACTIONS(2428), + [aux_sym_preproc_include_token1] = ACTIONS(2428), + [aux_sym_preproc_include_token2] = ACTIONS(2428), + [aux_sym_preproc_def_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token2] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2428), + [aux_sym_preproc_else_token1] = ACTIONS(2428), + [aux_sym_preproc_elif_token1] = ACTIONS(2428), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2428), + [sym_preproc_directive] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_STAR] = ACTIONS(2430), + [anon_sym_CARET] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym___cdecl] = ACTIONS(2428), + [anon_sym___clrcall] = ACTIONS(2428), + [anon_sym___stdcall] = ACTIONS(2428), + [anon_sym___fastcall] = ACTIONS(2428), + [anon_sym___thiscall] = ACTIONS(2428), + [anon_sym___vectorcall] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_ATautoreleasepool] = ACTIONS(2430), + [anon_sym_auto] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_CG_EXTERN] = ACTIONS(2428), + [anon_sym_CG_INLINE] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2428), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2428), + [anon_sym_IBOutlet] = ACTIONS(2428), + [anon_sym_IBInspectable] = ACTIONS(2428), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2428), + [anon_sym_NS_INLINE] = ACTIONS(2428), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2428), + [anon_sym_OBJC_EXPORT] = ACTIONS(2428), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_nullable] = ACTIONS(2428), + [anon_sym__Complex] = ACTIONS(2428), + [anon_sym__Nullable] = ACTIONS(2428), + [anon_sym__Nullable_result] = ACTIONS(2428), + [anon_sym__Null_unspecified] = ACTIONS(2428), + [anon_sym___autoreleasing] = ACTIONS(2428), + [anon_sym___block] = ACTIONS(2428), + [anon_sym___bridge] = ACTIONS(2428), + [anon_sym___bridge_retained] = ACTIONS(2428), + [anon_sym___bridge_transfer] = ACTIONS(2428), + [anon_sym___complex] = ACTIONS(2428), + [anon_sym___const] = ACTIONS(2428), + [anon_sym___imag] = ACTIONS(2428), + [anon_sym___kindof] = ACTIONS(2428), + [anon_sym___nonnull] = ACTIONS(2428), + [anon_sym___nullable] = ACTIONS(2428), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2428), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2428), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2428), + [anon_sym___real] = ACTIONS(2428), + [anon_sym___strong] = ACTIONS(2428), + [anon_sym___unsafe_unretained] = ACTIONS(2428), + [anon_sym___unused] = ACTIONS(2428), + [anon_sym___weak] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_else] = ACTIONS(2428), + [anon_sym_switch] = ACTIONS(2428), + [anon_sym_case] = ACTIONS(2428), + [anon_sym_default] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_do] = ACTIONS(2428), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_in] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_goto] = ACTIONS(2428), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_sizeof] = ACTIONS(2428), + [anon_sym___alignof__] = ACTIONS(2428), + [anon_sym___alignof] = ACTIONS(2428), + [anon_sym__alignof] = ACTIONS(2428), + [anon_sym_alignof] = ACTIONS(2428), + [anon_sym__Alignof] = ACTIONS(2428), + [anon_sym_offsetof] = ACTIONS(2428), + [anon_sym__Generic] = ACTIONS(2428), + [anon_sym_asm] = ACTIONS(2428), + [anon_sym___asm__] = ACTIONS(2428), + [anon_sym___asm] = ACTIONS(2428), + [sym_number_literal] = ACTIONS(2430), + [anon_sym_L_SQUOTE] = ACTIONS(2430), + [anon_sym_u_SQUOTE] = ACTIONS(2430), + [anon_sym_U_SQUOTE] = ACTIONS(2430), + [anon_sym_u8_SQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_AT] = ACTIONS(2428), + [anon_sym_DQUOTE] = ACTIONS(2430), + [anon_sym_L_DQUOTE] = ACTIONS(2430), + [anon_sym_u_DQUOTE] = ACTIONS(2430), + [anon_sym_U_DQUOTE] = ACTIONS(2430), + [anon_sym_u8_DQUOTE] = ACTIONS(2430), + [sym_true] = ACTIONS(2428), + [sym_false] = ACTIONS(2428), + [anon_sym_NULL] = ACTIONS(2428), + [anon_sym_nullptr] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2428), + [anon_sym___typeof] = ACTIONS(2428), + [anon_sym_typeof] = ACTIONS(2428), + [anon_sym_ATimport] = ACTIONS(2430), + [aux_sym_preproc_undef_token1] = ACTIONS(2428), + [anon_sym_POUND] = ACTIONS(2428), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2428), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2428), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2428), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2428), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE] = ACTIONS(2428), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_API_AVAILABLE] = ACTIONS(2428), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_API_DEPRECATED] = ACTIONS(2428), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2428), + [anon_sym___deprecated_msg] = ACTIONS(2428), + [anon_sym___deprecated_enum_msg] = ACTIONS(2428), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2428), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2428), + [anon_sym_ATprotocol] = ACTIONS(2430), + [anon_sym_ATinterface] = ACTIONS(2430), + [anon_sym_ATimplementation] = ACTIONS(2430), + [anon_sym_ATcompatibility_alias] = ACTIONS(2430), + [anon_sym_ATsynthesize] = ACTIONS(2430), + [anon_sym_ATdynamic] = ACTIONS(2430), + [anon_sym_ATtry] = ACTIONS(2430), + [anon_sym___try] = ACTIONS(2428), + [anon_sym_ATthrow] = ACTIONS(2430), + [anon_sym_ATselector] = ACTIONS(2430), + [anon_sym_ATavailable] = ACTIONS(2430), + [anon_sym___builtin_available] = ACTIONS(2428), + [anon_sym_va_arg] = ACTIONS(2428), + [anon_sym_ATencode] = ACTIONS(2430), + [anon_sym_ATsynchronized] = ACTIONS(2430), + [anon_sym_BOOL] = ACTIONS(2428), + [anon_sym_IMP] = ACTIONS(2428), + [anon_sym_SEL] = ACTIONS(2428), + [anon_sym_Class] = ACTIONS(2428), + [anon_sym_id] = ACTIONS(2428), + }, + [206] = { + [sym_identifier] = ACTIONS(2432), + [aux_sym_preproc_include_token1] = ACTIONS(2432), + [aux_sym_preproc_include_token2] = ACTIONS(2432), + [aux_sym_preproc_def_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token2] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2432), + [aux_sym_preproc_else_token1] = ACTIONS(2432), + [aux_sym_preproc_elif_token1] = ACTIONS(2432), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2432), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2432), + [sym_preproc_directive] = ACTIONS(2432), + [anon_sym_LPAREN2] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym___extension__] = ACTIONS(2432), + [anon_sym_typedef] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym___attribute__] = ACTIONS(2432), + [anon_sym___attribute] = ACTIONS(2432), + [anon_sym_noreturn] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym___declspec] = ACTIONS(2432), + [anon_sym___cdecl] = ACTIONS(2432), + [anon_sym___clrcall] = ACTIONS(2432), + [anon_sym___stdcall] = ACTIONS(2432), + [anon_sym___fastcall] = ACTIONS(2432), + [anon_sym___thiscall] = ACTIONS(2432), + [anon_sym___vectorcall] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_signed] = ACTIONS(2432), + [anon_sym_unsigned] = ACTIONS(2432), + [anon_sym_long] = ACTIONS(2432), + [anon_sym_short] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_ATautoreleasepool] = ACTIONS(2434), + [anon_sym_auto] = ACTIONS(2432), + [anon_sym_register] = ACTIONS(2432), + [anon_sym_inline] = ACTIONS(2432), + [anon_sym___inline] = ACTIONS(2432), + [anon_sym___inline__] = ACTIONS(2432), + [anon_sym___forceinline] = ACTIONS(2432), + [anon_sym_thread_local] = ACTIONS(2432), + [anon_sym___thread] = ACTIONS(2432), + [anon_sym_CG_EXTERN] = ACTIONS(2432), + [anon_sym_CG_INLINE] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2432), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2432), + [anon_sym_IBOutlet] = ACTIONS(2432), + [anon_sym_IBInspectable] = ACTIONS(2432), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2432), + [anon_sym_NS_INLINE] = ACTIONS(2432), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2432), + [anon_sym_OBJC_EXPORT] = ACTIONS(2432), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_constexpr] = ACTIONS(2432), + [anon_sym_volatile] = ACTIONS(2432), + [anon_sym_restrict] = ACTIONS(2432), + [anon_sym___restrict__] = ACTIONS(2432), + [anon_sym__Atomic] = ACTIONS(2432), + [anon_sym__Noreturn] = ACTIONS(2432), + [anon_sym__Nonnull] = ACTIONS(2432), + [anon_sym_nullable] = ACTIONS(2432), + [anon_sym__Complex] = ACTIONS(2432), + [anon_sym__Nullable] = ACTIONS(2432), + [anon_sym__Nullable_result] = ACTIONS(2432), + [anon_sym__Null_unspecified] = ACTIONS(2432), + [anon_sym___autoreleasing] = ACTIONS(2432), + [anon_sym___block] = ACTIONS(2432), + [anon_sym___bridge] = ACTIONS(2432), + [anon_sym___bridge_retained] = ACTIONS(2432), + [anon_sym___bridge_transfer] = ACTIONS(2432), + [anon_sym___complex] = ACTIONS(2432), + [anon_sym___const] = ACTIONS(2432), + [anon_sym___imag] = ACTIONS(2432), + [anon_sym___kindof] = ACTIONS(2432), + [anon_sym___nonnull] = ACTIONS(2432), + [anon_sym___nullable] = ACTIONS(2432), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2432), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2432), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2432), + [anon_sym___real] = ACTIONS(2432), + [anon_sym___strong] = ACTIONS(2432), + [anon_sym___unsafe_unretained] = ACTIONS(2432), + [anon_sym___unused] = ACTIONS(2432), + [anon_sym___weak] = ACTIONS(2432), + [anon_sym_alignas] = ACTIONS(2432), + [anon_sym__Alignas] = ACTIONS(2432), + [sym_primitive_type] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_else] = ACTIONS(2432), + [anon_sym_switch] = ACTIONS(2432), + [anon_sym_case] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_in] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_goto] = ACTIONS(2432), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_sizeof] = ACTIONS(2432), + [anon_sym___alignof__] = ACTIONS(2432), + [anon_sym___alignof] = ACTIONS(2432), + [anon_sym__alignof] = ACTIONS(2432), + [anon_sym_alignof] = ACTIONS(2432), + [anon_sym__Alignof] = ACTIONS(2432), + [anon_sym_offsetof] = ACTIONS(2432), + [anon_sym__Generic] = ACTIONS(2432), + [anon_sym_asm] = ACTIONS(2432), + [anon_sym___asm__] = ACTIONS(2432), + [anon_sym___asm] = ACTIONS(2432), + [sym_number_literal] = ACTIONS(2434), + [anon_sym_L_SQUOTE] = ACTIONS(2434), + [anon_sym_u_SQUOTE] = ACTIONS(2434), + [anon_sym_U_SQUOTE] = ACTIONS(2434), + [anon_sym_u8_SQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_AT] = ACTIONS(2432), + [anon_sym_DQUOTE] = ACTIONS(2434), + [anon_sym_L_DQUOTE] = ACTIONS(2434), + [anon_sym_u_DQUOTE] = ACTIONS(2434), + [anon_sym_U_DQUOTE] = ACTIONS(2434), + [anon_sym_u8_DQUOTE] = ACTIONS(2434), + [sym_true] = ACTIONS(2432), + [sym_false] = ACTIONS(2432), + [anon_sym_NULL] = ACTIONS(2432), + [anon_sym_nullptr] = ACTIONS(2432), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2432), + [anon_sym___typeof] = ACTIONS(2432), + [anon_sym_typeof] = ACTIONS(2432), + [anon_sym_ATimport] = ACTIONS(2434), + [aux_sym_preproc_undef_token1] = ACTIONS(2432), + [anon_sym_POUND] = ACTIONS(2432), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2432), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2432), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2432), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2432), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE] = ACTIONS(2432), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_API_AVAILABLE] = ACTIONS(2432), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_API_DEPRECATED] = ACTIONS(2432), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2432), + [anon_sym___deprecated_msg] = ACTIONS(2432), + [anon_sym___deprecated_enum_msg] = ACTIONS(2432), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2432), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2432), + [anon_sym_ATprotocol] = ACTIONS(2434), + [anon_sym_ATinterface] = ACTIONS(2434), + [anon_sym_ATimplementation] = ACTIONS(2434), + [anon_sym_ATcompatibility_alias] = ACTIONS(2434), + [anon_sym_ATsynthesize] = ACTIONS(2434), + [anon_sym_ATdynamic] = ACTIONS(2434), + [anon_sym_ATtry] = ACTIONS(2434), + [anon_sym___try] = ACTIONS(2432), + [anon_sym_ATthrow] = ACTIONS(2434), + [anon_sym_ATselector] = ACTIONS(2434), + [anon_sym_ATavailable] = ACTIONS(2434), + [anon_sym___builtin_available] = ACTIONS(2432), + [anon_sym_va_arg] = ACTIONS(2432), + [anon_sym_ATencode] = ACTIONS(2434), + [anon_sym_ATsynchronized] = ACTIONS(2434), + [anon_sym_BOOL] = ACTIONS(2432), + [anon_sym_IMP] = ACTIONS(2432), + [anon_sym_SEL] = ACTIONS(2432), + [anon_sym_Class] = ACTIONS(2432), + [anon_sym_id] = ACTIONS(2432), + }, + [207] = { + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_include_token1] = ACTIONS(2424), + [aux_sym_preproc_include_token2] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token2] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [aux_sym_preproc_else_token1] = ACTIONS(2424), + [aux_sym_preproc_elif_token1] = ACTIONS(2424), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_CARET] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_ATautoreleasepool] = ACTIONS(2426), + [anon_sym_auto] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_CG_EXTERN] = ACTIONS(2424), + [anon_sym_CG_INLINE] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2424), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2424), + [anon_sym_IBOutlet] = ACTIONS(2424), + [anon_sym_IBInspectable] = ACTIONS(2424), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2424), + [anon_sym_NS_INLINE] = ACTIONS(2424), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2424), + [anon_sym_OBJC_EXPORT] = ACTIONS(2424), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_nullable] = ACTIONS(2424), + [anon_sym__Complex] = ACTIONS(2424), + [anon_sym__Nullable] = ACTIONS(2424), + [anon_sym__Nullable_result] = ACTIONS(2424), + [anon_sym__Null_unspecified] = ACTIONS(2424), + [anon_sym___autoreleasing] = ACTIONS(2424), + [anon_sym___block] = ACTIONS(2424), + [anon_sym___bridge] = ACTIONS(2424), + [anon_sym___bridge_retained] = ACTIONS(2424), + [anon_sym___bridge_transfer] = ACTIONS(2424), + [anon_sym___complex] = ACTIONS(2424), + [anon_sym___const] = ACTIONS(2424), + [anon_sym___imag] = ACTIONS(2424), + [anon_sym___kindof] = ACTIONS(2424), + [anon_sym___nonnull] = ACTIONS(2424), + [anon_sym___nullable] = ACTIONS(2424), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2424), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2424), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2424), + [anon_sym___real] = ACTIONS(2424), + [anon_sym___strong] = ACTIONS(2424), + [anon_sym___unsafe_unretained] = ACTIONS(2424), + [anon_sym___unused] = ACTIONS(2424), + [anon_sym___weak] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_else] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_in] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_goto] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_sizeof] = ACTIONS(2424), + [anon_sym___alignof__] = ACTIONS(2424), + [anon_sym___alignof] = ACTIONS(2424), + [anon_sym__alignof] = ACTIONS(2424), + [anon_sym_alignof] = ACTIONS(2424), + [anon_sym__Alignof] = ACTIONS(2424), + [anon_sym_offsetof] = ACTIONS(2424), + [anon_sym__Generic] = ACTIONS(2424), + [anon_sym_asm] = ACTIONS(2424), + [anon_sym___asm__] = ACTIONS(2424), + [anon_sym___asm] = ACTIONS(2424), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_L_SQUOTE] = ACTIONS(2426), + [anon_sym_u_SQUOTE] = ACTIONS(2426), + [anon_sym_U_SQUOTE] = ACTIONS(2426), + [anon_sym_u8_SQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_AT] = ACTIONS(2424), + [anon_sym_DQUOTE] = ACTIONS(2426), + [anon_sym_L_DQUOTE] = ACTIONS(2426), + [anon_sym_u_DQUOTE] = ACTIONS(2426), + [anon_sym_U_DQUOTE] = ACTIONS(2426), + [anon_sym_u8_DQUOTE] = ACTIONS(2426), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [anon_sym_NULL] = ACTIONS(2424), + [anon_sym_nullptr] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2424), + [anon_sym___typeof] = ACTIONS(2424), + [anon_sym_typeof] = ACTIONS(2424), + [anon_sym_ATimport] = ACTIONS(2426), + [aux_sym_preproc_undef_token1] = ACTIONS(2424), + [anon_sym_POUND] = ACTIONS(2424), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2424), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2424), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2424), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2424), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE] = ACTIONS(2424), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_API_AVAILABLE] = ACTIONS(2424), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_API_DEPRECATED] = ACTIONS(2424), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2424), + [anon_sym___deprecated_msg] = ACTIONS(2424), + [anon_sym___deprecated_enum_msg] = ACTIONS(2424), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2424), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2424), + [anon_sym_ATprotocol] = ACTIONS(2426), + [anon_sym_ATinterface] = ACTIONS(2426), + [anon_sym_ATimplementation] = ACTIONS(2426), + [anon_sym_ATcompatibility_alias] = ACTIONS(2426), + [anon_sym_ATsynthesize] = ACTIONS(2426), + [anon_sym_ATdynamic] = ACTIONS(2426), + [anon_sym_ATtry] = ACTIONS(2426), + [anon_sym___try] = ACTIONS(2424), + [anon_sym_ATthrow] = ACTIONS(2426), + [anon_sym_ATselector] = ACTIONS(2426), + [anon_sym_ATavailable] = ACTIONS(2426), + [anon_sym___builtin_available] = ACTIONS(2424), + [anon_sym_va_arg] = ACTIONS(2424), + [anon_sym_ATencode] = ACTIONS(2426), + [anon_sym_ATsynchronized] = ACTIONS(2426), + [anon_sym_BOOL] = ACTIONS(2424), + [anon_sym_IMP] = ACTIONS(2424), + [anon_sym_SEL] = ACTIONS(2424), + [anon_sym_Class] = ACTIONS(2424), + [anon_sym_id] = ACTIONS(2424), + }, + [208] = { + [sym_identifier] = ACTIONS(2432), + [aux_sym_preproc_include_token1] = ACTIONS(2432), + [aux_sym_preproc_include_token2] = ACTIONS(2432), + [aux_sym_preproc_def_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token2] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2432), + [aux_sym_preproc_else_token1] = ACTIONS(2432), + [aux_sym_preproc_elif_token1] = ACTIONS(2432), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2432), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2432), + [sym_preproc_directive] = ACTIONS(2432), + [anon_sym_LPAREN2] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym___extension__] = ACTIONS(2432), + [anon_sym_typedef] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym___attribute__] = ACTIONS(2432), + [anon_sym___attribute] = ACTIONS(2432), + [anon_sym_noreturn] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym___declspec] = ACTIONS(2432), + [anon_sym___cdecl] = ACTIONS(2432), + [anon_sym___clrcall] = ACTIONS(2432), + [anon_sym___stdcall] = ACTIONS(2432), + [anon_sym___fastcall] = ACTIONS(2432), + [anon_sym___thiscall] = ACTIONS(2432), + [anon_sym___vectorcall] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_signed] = ACTIONS(2432), + [anon_sym_unsigned] = ACTIONS(2432), + [anon_sym_long] = ACTIONS(2432), + [anon_sym_short] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_ATautoreleasepool] = ACTIONS(2434), + [anon_sym_auto] = ACTIONS(2432), + [anon_sym_register] = ACTIONS(2432), + [anon_sym_inline] = ACTIONS(2432), + [anon_sym___inline] = ACTIONS(2432), + [anon_sym___inline__] = ACTIONS(2432), + [anon_sym___forceinline] = ACTIONS(2432), + [anon_sym_thread_local] = ACTIONS(2432), + [anon_sym___thread] = ACTIONS(2432), + [anon_sym_CG_EXTERN] = ACTIONS(2432), + [anon_sym_CG_INLINE] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2432), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2432), + [anon_sym_IBOutlet] = ACTIONS(2432), + [anon_sym_IBInspectable] = ACTIONS(2432), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2432), + [anon_sym_NS_INLINE] = ACTIONS(2432), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2432), + [anon_sym_OBJC_EXPORT] = ACTIONS(2432), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_constexpr] = ACTIONS(2432), + [anon_sym_volatile] = ACTIONS(2432), + [anon_sym_restrict] = ACTIONS(2432), + [anon_sym___restrict__] = ACTIONS(2432), + [anon_sym__Atomic] = ACTIONS(2432), + [anon_sym__Noreturn] = ACTIONS(2432), + [anon_sym__Nonnull] = ACTIONS(2432), + [anon_sym_nullable] = ACTIONS(2432), + [anon_sym__Complex] = ACTIONS(2432), + [anon_sym__Nullable] = ACTIONS(2432), + [anon_sym__Nullable_result] = ACTIONS(2432), + [anon_sym__Null_unspecified] = ACTIONS(2432), + [anon_sym___autoreleasing] = ACTIONS(2432), + [anon_sym___block] = ACTIONS(2432), + [anon_sym___bridge] = ACTIONS(2432), + [anon_sym___bridge_retained] = ACTIONS(2432), + [anon_sym___bridge_transfer] = ACTIONS(2432), + [anon_sym___complex] = ACTIONS(2432), + [anon_sym___const] = ACTIONS(2432), + [anon_sym___imag] = ACTIONS(2432), + [anon_sym___kindof] = ACTIONS(2432), + [anon_sym___nonnull] = ACTIONS(2432), + [anon_sym___nullable] = ACTIONS(2432), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2432), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2432), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2432), + [anon_sym___real] = ACTIONS(2432), + [anon_sym___strong] = ACTIONS(2432), + [anon_sym___unsafe_unretained] = ACTIONS(2432), + [anon_sym___unused] = ACTIONS(2432), + [anon_sym___weak] = ACTIONS(2432), + [anon_sym_alignas] = ACTIONS(2432), + [anon_sym__Alignas] = ACTIONS(2432), + [sym_primitive_type] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_else] = ACTIONS(2432), + [anon_sym_switch] = ACTIONS(2432), + [anon_sym_case] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_in] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_goto] = ACTIONS(2432), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_sizeof] = ACTIONS(2432), + [anon_sym___alignof__] = ACTIONS(2432), + [anon_sym___alignof] = ACTIONS(2432), + [anon_sym__alignof] = ACTIONS(2432), + [anon_sym_alignof] = ACTIONS(2432), + [anon_sym__Alignof] = ACTIONS(2432), + [anon_sym_offsetof] = ACTIONS(2432), + [anon_sym__Generic] = ACTIONS(2432), + [anon_sym_asm] = ACTIONS(2432), + [anon_sym___asm__] = ACTIONS(2432), + [anon_sym___asm] = ACTIONS(2432), + [sym_number_literal] = ACTIONS(2434), + [anon_sym_L_SQUOTE] = ACTIONS(2434), + [anon_sym_u_SQUOTE] = ACTIONS(2434), + [anon_sym_U_SQUOTE] = ACTIONS(2434), + [anon_sym_u8_SQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_AT] = ACTIONS(2432), + [anon_sym_DQUOTE] = ACTIONS(2434), + [anon_sym_L_DQUOTE] = ACTIONS(2434), + [anon_sym_u_DQUOTE] = ACTIONS(2434), + [anon_sym_U_DQUOTE] = ACTIONS(2434), + [anon_sym_u8_DQUOTE] = ACTIONS(2434), + [sym_true] = ACTIONS(2432), + [sym_false] = ACTIONS(2432), + [anon_sym_NULL] = ACTIONS(2432), + [anon_sym_nullptr] = ACTIONS(2432), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2432), + [anon_sym___typeof] = ACTIONS(2432), + [anon_sym_typeof] = ACTIONS(2432), + [anon_sym_ATimport] = ACTIONS(2434), + [aux_sym_preproc_undef_token1] = ACTIONS(2432), + [anon_sym_POUND] = ACTIONS(2432), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2432), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2432), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2432), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2432), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE] = ACTIONS(2432), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_API_AVAILABLE] = ACTIONS(2432), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_API_DEPRECATED] = ACTIONS(2432), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2432), + [anon_sym___deprecated_msg] = ACTIONS(2432), + [anon_sym___deprecated_enum_msg] = ACTIONS(2432), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2432), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2432), + [anon_sym_ATprotocol] = ACTIONS(2434), + [anon_sym_ATinterface] = ACTIONS(2434), + [anon_sym_ATimplementation] = ACTIONS(2434), + [anon_sym_ATcompatibility_alias] = ACTIONS(2434), + [anon_sym_ATsynthesize] = ACTIONS(2434), + [anon_sym_ATdynamic] = ACTIONS(2434), + [anon_sym_ATtry] = ACTIONS(2434), + [anon_sym___try] = ACTIONS(2432), + [anon_sym_ATthrow] = ACTIONS(2434), + [anon_sym_ATselector] = ACTIONS(2434), + [anon_sym_ATavailable] = ACTIONS(2434), + [anon_sym___builtin_available] = ACTIONS(2432), + [anon_sym_va_arg] = ACTIONS(2432), + [anon_sym_ATencode] = ACTIONS(2434), + [anon_sym_ATsynchronized] = ACTIONS(2434), + [anon_sym_BOOL] = ACTIONS(2432), + [anon_sym_IMP] = ACTIONS(2432), + [anon_sym_SEL] = ACTIONS(2432), + [anon_sym_Class] = ACTIONS(2432), + [anon_sym_id] = ACTIONS(2432), + }, + [209] = { + [sym_identifier] = ACTIONS(2428), + [aux_sym_preproc_include_token1] = ACTIONS(2428), + [aux_sym_preproc_include_token2] = ACTIONS(2428), + [aux_sym_preproc_def_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token2] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2428), + [aux_sym_preproc_else_token1] = ACTIONS(2428), + [aux_sym_preproc_elif_token1] = ACTIONS(2428), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2428), + [sym_preproc_directive] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_STAR] = ACTIONS(2430), + [anon_sym_CARET] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym___cdecl] = ACTIONS(2428), + [anon_sym___clrcall] = ACTIONS(2428), + [anon_sym___stdcall] = ACTIONS(2428), + [anon_sym___fastcall] = ACTIONS(2428), + [anon_sym___thiscall] = ACTIONS(2428), + [anon_sym___vectorcall] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_ATautoreleasepool] = ACTIONS(2430), + [anon_sym_auto] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_CG_EXTERN] = ACTIONS(2428), + [anon_sym_CG_INLINE] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2428), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2428), + [anon_sym_IBOutlet] = ACTIONS(2428), + [anon_sym_IBInspectable] = ACTIONS(2428), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2428), + [anon_sym_NS_INLINE] = ACTIONS(2428), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2428), + [anon_sym_OBJC_EXPORT] = ACTIONS(2428), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_nullable] = ACTIONS(2428), + [anon_sym__Complex] = ACTIONS(2428), + [anon_sym__Nullable] = ACTIONS(2428), + [anon_sym__Nullable_result] = ACTIONS(2428), + [anon_sym__Null_unspecified] = ACTIONS(2428), + [anon_sym___autoreleasing] = ACTIONS(2428), + [anon_sym___block] = ACTIONS(2428), + [anon_sym___bridge] = ACTIONS(2428), + [anon_sym___bridge_retained] = ACTIONS(2428), + [anon_sym___bridge_transfer] = ACTIONS(2428), + [anon_sym___complex] = ACTIONS(2428), + [anon_sym___const] = ACTIONS(2428), + [anon_sym___imag] = ACTIONS(2428), + [anon_sym___kindof] = ACTIONS(2428), + [anon_sym___nonnull] = ACTIONS(2428), + [anon_sym___nullable] = ACTIONS(2428), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2428), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2428), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2428), + [anon_sym___real] = ACTIONS(2428), + [anon_sym___strong] = ACTIONS(2428), + [anon_sym___unsafe_unretained] = ACTIONS(2428), + [anon_sym___unused] = ACTIONS(2428), + [anon_sym___weak] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_else] = ACTIONS(2428), + [anon_sym_switch] = ACTIONS(2428), + [anon_sym_case] = ACTIONS(2428), + [anon_sym_default] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_do] = ACTIONS(2428), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_in] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_goto] = ACTIONS(2428), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_sizeof] = ACTIONS(2428), + [anon_sym___alignof__] = ACTIONS(2428), + [anon_sym___alignof] = ACTIONS(2428), + [anon_sym__alignof] = ACTIONS(2428), + [anon_sym_alignof] = ACTIONS(2428), + [anon_sym__Alignof] = ACTIONS(2428), + [anon_sym_offsetof] = ACTIONS(2428), + [anon_sym__Generic] = ACTIONS(2428), + [anon_sym_asm] = ACTIONS(2428), + [anon_sym___asm__] = ACTIONS(2428), + [anon_sym___asm] = ACTIONS(2428), + [sym_number_literal] = ACTIONS(2430), + [anon_sym_L_SQUOTE] = ACTIONS(2430), + [anon_sym_u_SQUOTE] = ACTIONS(2430), + [anon_sym_U_SQUOTE] = ACTIONS(2430), + [anon_sym_u8_SQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_AT] = ACTIONS(2428), + [anon_sym_DQUOTE] = ACTIONS(2430), + [anon_sym_L_DQUOTE] = ACTIONS(2430), + [anon_sym_u_DQUOTE] = ACTIONS(2430), + [anon_sym_U_DQUOTE] = ACTIONS(2430), + [anon_sym_u8_DQUOTE] = ACTIONS(2430), + [sym_true] = ACTIONS(2428), + [sym_false] = ACTIONS(2428), + [anon_sym_NULL] = ACTIONS(2428), + [anon_sym_nullptr] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2428), + [anon_sym___typeof] = ACTIONS(2428), + [anon_sym_typeof] = ACTIONS(2428), + [anon_sym_ATimport] = ACTIONS(2430), + [aux_sym_preproc_undef_token1] = ACTIONS(2428), + [anon_sym_POUND] = ACTIONS(2428), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2428), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2428), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2428), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2428), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE] = ACTIONS(2428), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_API_AVAILABLE] = ACTIONS(2428), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_API_DEPRECATED] = ACTIONS(2428), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2428), + [anon_sym___deprecated_msg] = ACTIONS(2428), + [anon_sym___deprecated_enum_msg] = ACTIONS(2428), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2428), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2428), + [anon_sym_ATprotocol] = ACTIONS(2430), + [anon_sym_ATinterface] = ACTIONS(2430), + [anon_sym_ATimplementation] = ACTIONS(2430), + [anon_sym_ATcompatibility_alias] = ACTIONS(2430), + [anon_sym_ATsynthesize] = ACTIONS(2430), + [anon_sym_ATdynamic] = ACTIONS(2430), + [anon_sym_ATtry] = ACTIONS(2430), + [anon_sym___try] = ACTIONS(2428), + [anon_sym_ATthrow] = ACTIONS(2430), + [anon_sym_ATselector] = ACTIONS(2430), + [anon_sym_ATavailable] = ACTIONS(2430), + [anon_sym___builtin_available] = ACTIONS(2428), + [anon_sym_va_arg] = ACTIONS(2428), + [anon_sym_ATencode] = ACTIONS(2430), + [anon_sym_ATsynchronized] = ACTIONS(2430), + [anon_sym_BOOL] = ACTIONS(2428), + [anon_sym_IMP] = ACTIONS(2428), + [anon_sym_SEL] = ACTIONS(2428), + [anon_sym_Class] = ACTIONS(2428), + [anon_sym_id] = ACTIONS(2428), + }, + [210] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_include_token1] = ACTIONS(2436), + [aux_sym_preproc_include_token2] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token2] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [aux_sym_preproc_else_token1] = ACTIONS(2436), + [aux_sym_preproc_elif_token1] = ACTIONS(2436), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_ATautoreleasepool] = ACTIONS(2438), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_case] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_goto] = ACTIONS(2436), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_sizeof] = ACTIONS(2436), + [anon_sym___alignof__] = ACTIONS(2436), + [anon_sym___alignof] = ACTIONS(2436), + [anon_sym__alignof] = ACTIONS(2436), + [anon_sym_alignof] = ACTIONS(2436), + [anon_sym__Alignof] = ACTIONS(2436), + [anon_sym_offsetof] = ACTIONS(2436), + [anon_sym__Generic] = ACTIONS(2436), + [anon_sym_asm] = ACTIONS(2436), + [anon_sym___asm__] = ACTIONS(2436), + [anon_sym___asm] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_L_SQUOTE] = ACTIONS(2438), + [anon_sym_u_SQUOTE] = ACTIONS(2438), + [anon_sym_U_SQUOTE] = ACTIONS(2438), + [anon_sym_u8_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_L_DQUOTE] = ACTIONS(2438), + [anon_sym_u_DQUOTE] = ACTIONS(2438), + [anon_sym_U_DQUOTE] = ACTIONS(2438), + [anon_sym_u8_DQUOTE] = ACTIONS(2438), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_nullptr] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [anon_sym_ATimport] = ACTIONS(2438), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_POUND] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATprotocol] = ACTIONS(2438), + [anon_sym_ATinterface] = ACTIONS(2438), + [anon_sym_ATimplementation] = ACTIONS(2438), + [anon_sym_ATcompatibility_alias] = ACTIONS(2438), + [anon_sym_ATsynthesize] = ACTIONS(2438), + [anon_sym_ATdynamic] = ACTIONS(2438), + [anon_sym_ATtry] = ACTIONS(2438), + [anon_sym___try] = ACTIONS(2436), + [anon_sym_ATthrow] = ACTIONS(2438), + [anon_sym_ATselector] = ACTIONS(2438), + [anon_sym_ATavailable] = ACTIONS(2438), + [anon_sym___builtin_available] = ACTIONS(2436), + [anon_sym_va_arg] = ACTIONS(2436), + [anon_sym_ATencode] = ACTIONS(2438), + [anon_sym_ATsynchronized] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [211] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_include_token1] = ACTIONS(2436), + [aux_sym_preproc_include_token2] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token2] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [aux_sym_preproc_else_token1] = ACTIONS(2436), + [aux_sym_preproc_elif_token1] = ACTIONS(2436), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_ATautoreleasepool] = ACTIONS(2438), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_case] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_goto] = ACTIONS(2436), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_sizeof] = ACTIONS(2436), + [anon_sym___alignof__] = ACTIONS(2436), + [anon_sym___alignof] = ACTIONS(2436), + [anon_sym__alignof] = ACTIONS(2436), + [anon_sym_alignof] = ACTIONS(2436), + [anon_sym__Alignof] = ACTIONS(2436), + [anon_sym_offsetof] = ACTIONS(2436), + [anon_sym__Generic] = ACTIONS(2436), + [anon_sym_asm] = ACTIONS(2436), + [anon_sym___asm__] = ACTIONS(2436), + [anon_sym___asm] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_L_SQUOTE] = ACTIONS(2438), + [anon_sym_u_SQUOTE] = ACTIONS(2438), + [anon_sym_U_SQUOTE] = ACTIONS(2438), + [anon_sym_u8_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_L_DQUOTE] = ACTIONS(2438), + [anon_sym_u_DQUOTE] = ACTIONS(2438), + [anon_sym_U_DQUOTE] = ACTIONS(2438), + [anon_sym_u8_DQUOTE] = ACTIONS(2438), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_nullptr] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [anon_sym_ATimport] = ACTIONS(2438), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_POUND] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATprotocol] = ACTIONS(2438), + [anon_sym_ATinterface] = ACTIONS(2438), + [anon_sym_ATimplementation] = ACTIONS(2438), + [anon_sym_ATcompatibility_alias] = ACTIONS(2438), + [anon_sym_ATsynthesize] = ACTIONS(2438), + [anon_sym_ATdynamic] = ACTIONS(2438), + [anon_sym_ATtry] = ACTIONS(2438), + [anon_sym___try] = ACTIONS(2436), + [anon_sym_ATthrow] = ACTIONS(2438), + [anon_sym_ATselector] = ACTIONS(2438), + [anon_sym_ATavailable] = ACTIONS(2438), + [anon_sym___builtin_available] = ACTIONS(2436), + [anon_sym_va_arg] = ACTIONS(2436), + [anon_sym_ATencode] = ACTIONS(2438), + [anon_sym_ATsynchronized] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [212] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_include_token1] = ACTIONS(2436), + [aux_sym_preproc_include_token2] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token2] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [aux_sym_preproc_else_token1] = ACTIONS(2436), + [aux_sym_preproc_elif_token1] = ACTIONS(2436), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_ATautoreleasepool] = ACTIONS(2438), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_case] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_goto] = ACTIONS(2436), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_sizeof] = ACTIONS(2436), + [anon_sym___alignof__] = ACTIONS(2436), + [anon_sym___alignof] = ACTIONS(2436), + [anon_sym__alignof] = ACTIONS(2436), + [anon_sym_alignof] = ACTIONS(2436), + [anon_sym__Alignof] = ACTIONS(2436), + [anon_sym_offsetof] = ACTIONS(2436), + [anon_sym__Generic] = ACTIONS(2436), + [anon_sym_asm] = ACTIONS(2436), + [anon_sym___asm__] = ACTIONS(2436), + [anon_sym___asm] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_L_SQUOTE] = ACTIONS(2438), + [anon_sym_u_SQUOTE] = ACTIONS(2438), + [anon_sym_U_SQUOTE] = ACTIONS(2438), + [anon_sym_u8_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_L_DQUOTE] = ACTIONS(2438), + [anon_sym_u_DQUOTE] = ACTIONS(2438), + [anon_sym_U_DQUOTE] = ACTIONS(2438), + [anon_sym_u8_DQUOTE] = ACTIONS(2438), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_nullptr] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [anon_sym_ATimport] = ACTIONS(2438), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_POUND] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATprotocol] = ACTIONS(2438), + [anon_sym_ATinterface] = ACTIONS(2438), + [anon_sym_ATimplementation] = ACTIONS(2438), + [anon_sym_ATcompatibility_alias] = ACTIONS(2438), + [anon_sym_ATsynthesize] = ACTIONS(2438), + [anon_sym_ATdynamic] = ACTIONS(2438), + [anon_sym_ATtry] = ACTIONS(2438), + [anon_sym___try] = ACTIONS(2436), + [anon_sym_ATthrow] = ACTIONS(2438), + [anon_sym_ATselector] = ACTIONS(2438), + [anon_sym_ATavailable] = ACTIONS(2438), + [anon_sym___builtin_available] = ACTIONS(2436), + [anon_sym_va_arg] = ACTIONS(2436), + [anon_sym_ATencode] = ACTIONS(2438), + [anon_sym_ATsynchronized] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [213] = { + [sym_catch_clause] = STATE(213), + [aux_sym_try_statement_repeat1] = STATE(213), + [ts_builtin_sym_end] = ACTIONS(2320), + [sym_identifier] = ACTIONS(2318), + [aux_sym_preproc_include_token1] = ACTIONS(2318), + [aux_sym_preproc_include_token2] = ACTIONS(2318), + [aux_sym_preproc_def_token1] = ACTIONS(2318), + [aux_sym_preproc_if_token1] = ACTIONS(2318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2318), + [sym_preproc_directive] = ACTIONS(2318), + [anon_sym_LPAREN2] = ACTIONS(2320), + [anon_sym_BANG] = ACTIONS(2320), + [anon_sym_TILDE] = ACTIONS(2320), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2320), + [anon_sym_CARET] = ACTIONS(2320), + [anon_sym_AMP] = ACTIONS(2320), + [anon_sym_SEMI] = ACTIONS(2320), + [anon_sym___extension__] = ACTIONS(2318), + [anon_sym_typedef] = ACTIONS(2318), + [anon_sym_extern] = ACTIONS(2318), + [anon_sym___attribute__] = ACTIONS(2318), + [anon_sym___attribute] = ACTIONS(2318), + [anon_sym_noreturn] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2320), + [anon_sym___declspec] = ACTIONS(2318), + [anon_sym___cdecl] = ACTIONS(2318), + [anon_sym___clrcall] = ACTIONS(2318), + [anon_sym___stdcall] = ACTIONS(2318), + [anon_sym___fastcall] = ACTIONS(2318), + [anon_sym___thiscall] = ACTIONS(2318), + [anon_sym___vectorcall] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2320), + [anon_sym_signed] = ACTIONS(2318), + [anon_sym_unsigned] = ACTIONS(2318), + [anon_sym_long] = ACTIONS(2318), + [anon_sym_short] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_ATautoreleasepool] = ACTIONS(2320), + [anon_sym_auto] = ACTIONS(2318), + [anon_sym_register] = ACTIONS(2318), + [anon_sym_inline] = ACTIONS(2318), + [anon_sym___inline] = ACTIONS(2318), + [anon_sym___inline__] = ACTIONS(2318), + [anon_sym___forceinline] = ACTIONS(2318), + [anon_sym_thread_local] = ACTIONS(2318), + [anon_sym___thread] = ACTIONS(2318), + [anon_sym_CG_EXTERN] = ACTIONS(2318), + [anon_sym_CG_INLINE] = ACTIONS(2318), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2318), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2318), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2318), + [anon_sym_IBOutlet] = ACTIONS(2318), + [anon_sym_IBInspectable] = ACTIONS(2318), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2318), + [anon_sym_NS_INLINE] = ACTIONS(2318), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2318), + [anon_sym_OBJC_EXPORT] = ACTIONS(2318), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2318), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_constexpr] = ACTIONS(2318), + [anon_sym_volatile] = ACTIONS(2318), + [anon_sym_restrict] = ACTIONS(2318), + [anon_sym___restrict__] = ACTIONS(2318), + [anon_sym__Atomic] = ACTIONS(2318), + [anon_sym__Noreturn] = ACTIONS(2318), + [anon_sym__Nonnull] = ACTIONS(2318), + [anon_sym_nullable] = ACTIONS(2318), + [anon_sym__Complex] = ACTIONS(2318), + [anon_sym__Nullable] = ACTIONS(2318), + [anon_sym__Nullable_result] = ACTIONS(2318), + [anon_sym__Null_unspecified] = ACTIONS(2318), + [anon_sym___autoreleasing] = ACTIONS(2318), + [anon_sym___block] = ACTIONS(2318), + [anon_sym___bridge] = ACTIONS(2318), + [anon_sym___bridge_retained] = ACTIONS(2318), + [anon_sym___bridge_transfer] = ACTIONS(2318), + [anon_sym___complex] = ACTIONS(2318), + [anon_sym___const] = ACTIONS(2318), + [anon_sym___imag] = ACTIONS(2318), + [anon_sym___kindof] = ACTIONS(2318), + [anon_sym___nonnull] = ACTIONS(2318), + [anon_sym___nullable] = ACTIONS(2318), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2318), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2318), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2318), + [anon_sym___real] = ACTIONS(2318), + [anon_sym___strong] = ACTIONS(2318), + [anon_sym___unsafe_unretained] = ACTIONS(2318), + [anon_sym___unused] = ACTIONS(2318), + [anon_sym___weak] = ACTIONS(2318), + [anon_sym_alignas] = ACTIONS(2318), + [anon_sym__Alignas] = ACTIONS(2318), + [sym_primitive_type] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_case] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_goto] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2320), + [anon_sym_sizeof] = ACTIONS(2318), + [anon_sym___alignof__] = ACTIONS(2318), + [anon_sym___alignof] = ACTIONS(2318), + [anon_sym__alignof] = ACTIONS(2318), + [anon_sym_alignof] = ACTIONS(2318), + [anon_sym__Alignof] = ACTIONS(2318), + [anon_sym_offsetof] = ACTIONS(2318), + [anon_sym__Generic] = ACTIONS(2318), + [anon_sym_asm] = ACTIONS(2318), + [anon_sym___asm__] = ACTIONS(2318), + [anon_sym___asm] = ACTIONS(2318), + [sym_number_literal] = ACTIONS(2320), + [anon_sym_L_SQUOTE] = ACTIONS(2320), + [anon_sym_u_SQUOTE] = ACTIONS(2320), + [anon_sym_U_SQUOTE] = ACTIONS(2320), + [anon_sym_u8_SQUOTE] = ACTIONS(2320), + [anon_sym_SQUOTE] = ACTIONS(2320), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_DQUOTE] = ACTIONS(2320), + [anon_sym_L_DQUOTE] = ACTIONS(2320), + [anon_sym_u_DQUOTE] = ACTIONS(2320), + [anon_sym_U_DQUOTE] = ACTIONS(2320), + [anon_sym_u8_DQUOTE] = ACTIONS(2320), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [anon_sym_NULL] = ACTIONS(2318), + [anon_sym_nullptr] = ACTIONS(2318), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2318), + [anon_sym___typeof] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_ATimport] = ACTIONS(2320), + [aux_sym_preproc_undef_token1] = ACTIONS(2318), + [anon_sym_POUND] = ACTIONS(2318), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2318), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2318), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2318), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2318), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2318), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2318), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2318), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2318), + [anon_sym_NS_AVAILABLE] = ACTIONS(2318), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2318), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_API_AVAILABLE] = ACTIONS(2318), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_API_DEPRECATED] = ACTIONS(2318), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2318), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2318), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2318), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2318), + [anon_sym___deprecated_msg] = ACTIONS(2318), + [anon_sym___deprecated_enum_msg] = ACTIONS(2318), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2318), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2318), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2318), + [anon_sym_ATprotocol] = ACTIONS(2320), + [anon_sym_ATinterface] = ACTIONS(2320), + [anon_sym_ATimplementation] = ACTIONS(2320), + [anon_sym_ATcompatibility_alias] = ACTIONS(2320), + [anon_sym_ATtry] = ACTIONS(2320), + [anon_sym___try] = ACTIONS(2318), + [anon_sym_ATcatch] = ACTIONS(2440), + [anon_sym___catch] = ACTIONS(2443), + [anon_sym_ATfinally] = ACTIONS(2320), + [anon_sym___finally] = ACTIONS(2318), + [anon_sym_ATthrow] = ACTIONS(2320), + [anon_sym_ATselector] = ACTIONS(2320), + [anon_sym_ATavailable] = ACTIONS(2320), + [anon_sym___builtin_available] = ACTIONS(2318), + [anon_sym_va_arg] = ACTIONS(2318), + [anon_sym_ATencode] = ACTIONS(2320), + [anon_sym_ATsynchronized] = ACTIONS(2320), + [anon_sym_BOOL] = ACTIONS(2318), + [anon_sym_IMP] = ACTIONS(2318), + [anon_sym_SEL] = ACTIONS(2318), + [anon_sym_Class] = ACTIONS(2318), + [anon_sym_id] = ACTIONS(2318), + }, + [214] = { + [sym_identifier] = ACTIONS(2446), + [aux_sym_preproc_include_token1] = ACTIONS(2446), + [aux_sym_preproc_include_token2] = ACTIONS(2446), + [aux_sym_preproc_def_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token2] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2446), + [aux_sym_preproc_else_token1] = ACTIONS(2446), + [aux_sym_preproc_elif_token1] = ACTIONS(2446), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2446), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2446), + [sym_preproc_directive] = ACTIONS(2446), + [anon_sym_LPAREN2] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_TILDE] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_STAR] = ACTIONS(2448), + [anon_sym_CARET] = ACTIONS(2448), + [anon_sym_AMP] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym___extension__] = ACTIONS(2446), + [anon_sym_typedef] = ACTIONS(2446), + [anon_sym_extern] = ACTIONS(2446), + [anon_sym___attribute__] = ACTIONS(2446), + [anon_sym___attribute] = ACTIONS(2446), + [anon_sym_noreturn] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym___declspec] = ACTIONS(2446), + [anon_sym___cdecl] = ACTIONS(2446), + [anon_sym___clrcall] = ACTIONS(2446), + [anon_sym___stdcall] = ACTIONS(2446), + [anon_sym___fastcall] = ACTIONS(2446), + [anon_sym___thiscall] = ACTIONS(2446), + [anon_sym___vectorcall] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_signed] = ACTIONS(2446), + [anon_sym_unsigned] = ACTIONS(2446), + [anon_sym_long] = ACTIONS(2446), + [anon_sym_short] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_ATautoreleasepool] = ACTIONS(2448), + [anon_sym_auto] = ACTIONS(2446), + [anon_sym_register] = ACTIONS(2446), + [anon_sym_inline] = ACTIONS(2446), + [anon_sym___inline] = ACTIONS(2446), + [anon_sym___inline__] = ACTIONS(2446), + [anon_sym___forceinline] = ACTIONS(2446), + [anon_sym_thread_local] = ACTIONS(2446), + [anon_sym___thread] = ACTIONS(2446), + [anon_sym_CG_EXTERN] = ACTIONS(2446), + [anon_sym_CG_INLINE] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2446), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2446), + [anon_sym_IBOutlet] = ACTIONS(2446), + [anon_sym_IBInspectable] = ACTIONS(2446), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2446), + [anon_sym_NS_INLINE] = ACTIONS(2446), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2446), + [anon_sym_OBJC_EXPORT] = ACTIONS(2446), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [anon_sym_constexpr] = ACTIONS(2446), + [anon_sym_volatile] = ACTIONS(2446), + [anon_sym_restrict] = ACTIONS(2446), + [anon_sym___restrict__] = ACTIONS(2446), + [anon_sym__Atomic] = ACTIONS(2446), + [anon_sym__Noreturn] = ACTIONS(2446), + [anon_sym__Nonnull] = ACTIONS(2446), + [anon_sym_nullable] = ACTIONS(2446), + [anon_sym__Complex] = ACTIONS(2446), + [anon_sym__Nullable] = ACTIONS(2446), + [anon_sym__Nullable_result] = ACTIONS(2446), + [anon_sym__Null_unspecified] = ACTIONS(2446), + [anon_sym___autoreleasing] = ACTIONS(2446), + [anon_sym___block] = ACTIONS(2446), + [anon_sym___bridge] = ACTIONS(2446), + [anon_sym___bridge_retained] = ACTIONS(2446), + [anon_sym___bridge_transfer] = ACTIONS(2446), + [anon_sym___complex] = ACTIONS(2446), + [anon_sym___const] = ACTIONS(2446), + [anon_sym___imag] = ACTIONS(2446), + [anon_sym___kindof] = ACTIONS(2446), + [anon_sym___nonnull] = ACTIONS(2446), + [anon_sym___nullable] = ACTIONS(2446), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2446), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2446), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2446), + [anon_sym___real] = ACTIONS(2446), + [anon_sym___strong] = ACTIONS(2446), + [anon_sym___unsafe_unretained] = ACTIONS(2446), + [anon_sym___unused] = ACTIONS(2446), + [anon_sym___weak] = ACTIONS(2446), + [anon_sym_alignas] = ACTIONS(2446), + [anon_sym__Alignas] = ACTIONS(2446), + [sym_primitive_type] = ACTIONS(2446), + [anon_sym_enum] = ACTIONS(2446), + [anon_sym_struct] = ACTIONS(2446), + [anon_sym_union] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2446), + [anon_sym_else] = ACTIONS(2446), + [anon_sym_switch] = ACTIONS(2446), + [anon_sym_case] = ACTIONS(2446), + [anon_sym_default] = ACTIONS(2446), + [anon_sym_while] = ACTIONS(2446), + [anon_sym_do] = ACTIONS(2446), + [anon_sym_for] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_return] = ACTIONS(2446), + [anon_sym_break] = ACTIONS(2446), + [anon_sym_continue] = ACTIONS(2446), + [anon_sym_goto] = ACTIONS(2446), + [anon_sym_DASH_DASH] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2448), + [anon_sym_sizeof] = ACTIONS(2446), + [anon_sym___alignof__] = ACTIONS(2446), + [anon_sym___alignof] = ACTIONS(2446), + [anon_sym__alignof] = ACTIONS(2446), + [anon_sym_alignof] = ACTIONS(2446), + [anon_sym__Alignof] = ACTIONS(2446), + [anon_sym_offsetof] = ACTIONS(2446), + [anon_sym__Generic] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(2446), + [anon_sym___asm__] = ACTIONS(2446), + [anon_sym___asm] = ACTIONS(2446), + [sym_number_literal] = ACTIONS(2448), + [anon_sym_L_SQUOTE] = ACTIONS(2448), + [anon_sym_u_SQUOTE] = ACTIONS(2448), + [anon_sym_U_SQUOTE] = ACTIONS(2448), + [anon_sym_u8_SQUOTE] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_L_DQUOTE] = ACTIONS(2448), + [anon_sym_u_DQUOTE] = ACTIONS(2448), + [anon_sym_U_DQUOTE] = ACTIONS(2448), + [anon_sym_u8_DQUOTE] = ACTIONS(2448), + [sym_true] = ACTIONS(2446), + [sym_false] = ACTIONS(2446), + [anon_sym_NULL] = ACTIONS(2446), + [anon_sym_nullptr] = ACTIONS(2446), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2446), + [anon_sym___typeof] = ACTIONS(2446), + [anon_sym_typeof] = ACTIONS(2446), + [anon_sym_ATimport] = ACTIONS(2448), + [aux_sym_preproc_undef_token1] = ACTIONS(2446), + [anon_sym_POUND] = ACTIONS(2446), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2446), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2446), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2446), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2446), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE] = ACTIONS(2446), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_API_AVAILABLE] = ACTIONS(2446), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_API_DEPRECATED] = ACTIONS(2446), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2446), + [anon_sym___deprecated_msg] = ACTIONS(2446), + [anon_sym___deprecated_enum_msg] = ACTIONS(2446), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2446), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2446), + [anon_sym_ATprotocol] = ACTIONS(2448), + [anon_sym_ATinterface] = ACTIONS(2448), + [anon_sym_ATimplementation] = ACTIONS(2448), + [anon_sym_ATcompatibility_alias] = ACTIONS(2448), + [anon_sym_ATsynthesize] = ACTIONS(2448), + [anon_sym_ATdynamic] = ACTIONS(2448), + [anon_sym_ATtry] = ACTIONS(2448), + [anon_sym___try] = ACTIONS(2446), + [anon_sym_ATthrow] = ACTIONS(2448), + [anon_sym_ATselector] = ACTIONS(2448), + [anon_sym_ATavailable] = ACTIONS(2448), + [anon_sym___builtin_available] = ACTIONS(2446), + [anon_sym_va_arg] = ACTIONS(2446), + [anon_sym_ATencode] = ACTIONS(2448), + [anon_sym_ATsynchronized] = ACTIONS(2448), + [anon_sym_BOOL] = ACTIONS(2446), + [anon_sym_IMP] = ACTIONS(2446), + [anon_sym_SEL] = ACTIONS(2446), + [anon_sym_Class] = ACTIONS(2446), + [anon_sym_id] = ACTIONS(2446), + }, + [215] = { + [sym_identifier] = ACTIONS(2450), + [aux_sym_preproc_include_token1] = ACTIONS(2450), + [aux_sym_preproc_include_token2] = ACTIONS(2450), + [aux_sym_preproc_def_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token2] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2450), + [aux_sym_preproc_else_token1] = ACTIONS(2450), + [aux_sym_preproc_elif_token1] = ACTIONS(2450), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2450), + [anon_sym_LPAREN2] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_CARET] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym___cdecl] = ACTIONS(2450), + [anon_sym___clrcall] = ACTIONS(2450), + [anon_sym___stdcall] = ACTIONS(2450), + [anon_sym___fastcall] = ACTIONS(2450), + [anon_sym___thiscall] = ACTIONS(2450), + [anon_sym___vectorcall] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2452), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_ATautoreleasepool] = ACTIONS(2452), + [anon_sym_auto] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_CG_EXTERN] = ACTIONS(2450), + [anon_sym_CG_INLINE] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2450), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2450), + [anon_sym_IBOutlet] = ACTIONS(2450), + [anon_sym_IBInspectable] = ACTIONS(2450), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2450), + [anon_sym_NS_INLINE] = ACTIONS(2450), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2450), + [anon_sym_OBJC_EXPORT] = ACTIONS(2450), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_nullable] = ACTIONS(2450), + [anon_sym__Complex] = ACTIONS(2450), + [anon_sym__Nullable] = ACTIONS(2450), + [anon_sym__Nullable_result] = ACTIONS(2450), + [anon_sym__Null_unspecified] = ACTIONS(2450), + [anon_sym___autoreleasing] = ACTIONS(2450), + [anon_sym___block] = ACTIONS(2450), + [anon_sym___bridge] = ACTIONS(2450), + [anon_sym___bridge_retained] = ACTIONS(2450), + [anon_sym___bridge_transfer] = ACTIONS(2450), + [anon_sym___complex] = ACTIONS(2450), + [anon_sym___const] = ACTIONS(2450), + [anon_sym___imag] = ACTIONS(2450), + [anon_sym___kindof] = ACTIONS(2450), + [anon_sym___nonnull] = ACTIONS(2450), + [anon_sym___nullable] = ACTIONS(2450), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2450), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2450), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2450), + [anon_sym___real] = ACTIONS(2450), + [anon_sym___strong] = ACTIONS(2450), + [anon_sym___unsafe_unretained] = ACTIONS(2450), + [anon_sym___unused] = ACTIONS(2450), + [anon_sym___weak] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_else] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2450), + [anon_sym_case] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2450), + [anon_sym_while] = ACTIONS(2450), + [anon_sym_do] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_break] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_goto] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2452), + [anon_sym_sizeof] = ACTIONS(2450), + [anon_sym___alignof__] = ACTIONS(2450), + [anon_sym___alignof] = ACTIONS(2450), + [anon_sym__alignof] = ACTIONS(2450), + [anon_sym_alignof] = ACTIONS(2450), + [anon_sym__Alignof] = ACTIONS(2450), + [anon_sym_offsetof] = ACTIONS(2450), + [anon_sym__Generic] = ACTIONS(2450), + [anon_sym_asm] = ACTIONS(2450), + [anon_sym___asm__] = ACTIONS(2450), + [anon_sym___asm] = ACTIONS(2450), + [sym_number_literal] = ACTIONS(2452), + [anon_sym_L_SQUOTE] = ACTIONS(2452), + [anon_sym_u_SQUOTE] = ACTIONS(2452), + [anon_sym_U_SQUOTE] = ACTIONS(2452), + [anon_sym_u8_SQUOTE] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(2452), + [anon_sym_AT] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2452), + [anon_sym_L_DQUOTE] = ACTIONS(2452), + [anon_sym_u_DQUOTE] = ACTIONS(2452), + [anon_sym_U_DQUOTE] = ACTIONS(2452), + [anon_sym_u8_DQUOTE] = ACTIONS(2452), + [sym_true] = ACTIONS(2450), + [sym_false] = ACTIONS(2450), + [anon_sym_NULL] = ACTIONS(2450), + [anon_sym_nullptr] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2450), + [anon_sym___typeof] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [anon_sym_ATimport] = ACTIONS(2452), + [aux_sym_preproc_undef_token1] = ACTIONS(2450), + [anon_sym_POUND] = ACTIONS(2450), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2450), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2450), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2450), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2450), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE] = ACTIONS(2450), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_API_AVAILABLE] = ACTIONS(2450), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_API_DEPRECATED] = ACTIONS(2450), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2450), + [anon_sym___deprecated_msg] = ACTIONS(2450), + [anon_sym___deprecated_enum_msg] = ACTIONS(2450), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2450), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2450), + [anon_sym_ATprotocol] = ACTIONS(2452), + [anon_sym_ATinterface] = ACTIONS(2452), + [anon_sym_ATimplementation] = ACTIONS(2452), + [anon_sym_ATcompatibility_alias] = ACTIONS(2452), + [anon_sym_ATsynthesize] = ACTIONS(2452), + [anon_sym_ATdynamic] = ACTIONS(2452), + [anon_sym_ATtry] = ACTIONS(2452), + [anon_sym___try] = ACTIONS(2450), + [anon_sym_ATthrow] = ACTIONS(2452), + [anon_sym_ATselector] = ACTIONS(2452), + [anon_sym_ATavailable] = ACTIONS(2452), + [anon_sym___builtin_available] = ACTIONS(2450), + [anon_sym_va_arg] = ACTIONS(2450), + [anon_sym_ATencode] = ACTIONS(2452), + [anon_sym_ATsynchronized] = ACTIONS(2452), + [anon_sym_BOOL] = ACTIONS(2450), + [anon_sym_IMP] = ACTIONS(2450), + [anon_sym_SEL] = ACTIONS(2450), + [anon_sym_Class] = ACTIONS(2450), + [anon_sym_id] = ACTIONS(2450), + }, + [216] = { + [sym_identifier] = ACTIONS(2454), + [aux_sym_preproc_include_token1] = ACTIONS(2454), + [aux_sym_preproc_include_token2] = ACTIONS(2454), + [aux_sym_preproc_def_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token2] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2454), + [aux_sym_preproc_else_token1] = ACTIONS(2454), + [aux_sym_preproc_elif_token1] = ACTIONS(2454), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2454), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2454), + [sym_preproc_directive] = ACTIONS(2454), + [anon_sym_LPAREN2] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_CARET] = ACTIONS(2456), + [anon_sym_AMP] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym___extension__] = ACTIONS(2454), + [anon_sym_typedef] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym___attribute__] = ACTIONS(2454), + [anon_sym___attribute] = ACTIONS(2454), + [anon_sym_noreturn] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym___declspec] = ACTIONS(2454), + [anon_sym___cdecl] = ACTIONS(2454), + [anon_sym___clrcall] = ACTIONS(2454), + [anon_sym___stdcall] = ACTIONS(2454), + [anon_sym___fastcall] = ACTIONS(2454), + [anon_sym___thiscall] = ACTIONS(2454), + [anon_sym___vectorcall] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_signed] = ACTIONS(2454), + [anon_sym_unsigned] = ACTIONS(2454), + [anon_sym_long] = ACTIONS(2454), + [anon_sym_short] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_ATautoreleasepool] = ACTIONS(2456), + [anon_sym_auto] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_inline] = ACTIONS(2454), + [anon_sym___inline] = ACTIONS(2454), + [anon_sym___inline__] = ACTIONS(2454), + [anon_sym___forceinline] = ACTIONS(2454), + [anon_sym_thread_local] = ACTIONS(2454), + [anon_sym___thread] = ACTIONS(2454), + [anon_sym_CG_EXTERN] = ACTIONS(2454), + [anon_sym_CG_INLINE] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2454), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2454), + [anon_sym_IBOutlet] = ACTIONS(2454), + [anon_sym_IBInspectable] = ACTIONS(2454), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2454), + [anon_sym_NS_INLINE] = ACTIONS(2454), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2454), + [anon_sym_OBJC_EXPORT] = ACTIONS(2454), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_constexpr] = ACTIONS(2454), + [anon_sym_volatile] = ACTIONS(2454), + [anon_sym_restrict] = ACTIONS(2454), + [anon_sym___restrict__] = ACTIONS(2454), + [anon_sym__Atomic] = ACTIONS(2454), + [anon_sym__Noreturn] = ACTIONS(2454), + [anon_sym__Nonnull] = ACTIONS(2454), + [anon_sym_nullable] = ACTIONS(2454), + [anon_sym__Complex] = ACTIONS(2454), + [anon_sym__Nullable] = ACTIONS(2454), + [anon_sym__Nullable_result] = ACTIONS(2454), + [anon_sym__Null_unspecified] = ACTIONS(2454), + [anon_sym___autoreleasing] = ACTIONS(2454), + [anon_sym___block] = ACTIONS(2454), + [anon_sym___bridge] = ACTIONS(2454), + [anon_sym___bridge_retained] = ACTIONS(2454), + [anon_sym___bridge_transfer] = ACTIONS(2454), + [anon_sym___complex] = ACTIONS(2454), + [anon_sym___const] = ACTIONS(2454), + [anon_sym___imag] = ACTIONS(2454), + [anon_sym___kindof] = ACTIONS(2454), + [anon_sym___nonnull] = ACTIONS(2454), + [anon_sym___nullable] = ACTIONS(2454), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2454), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2454), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2454), + [anon_sym___real] = ACTIONS(2454), + [anon_sym___strong] = ACTIONS(2454), + [anon_sym___unsafe_unretained] = ACTIONS(2454), + [anon_sym___unused] = ACTIONS(2454), + [anon_sym___weak] = ACTIONS(2454), + [anon_sym_alignas] = ACTIONS(2454), + [anon_sym__Alignas] = ACTIONS(2454), + [sym_primitive_type] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2454), + [anon_sym_else] = ACTIONS(2454), + [anon_sym_switch] = ACTIONS(2454), + [anon_sym_case] = ACTIONS(2454), + [anon_sym_default] = ACTIONS(2454), + [anon_sym_while] = ACTIONS(2454), + [anon_sym_do] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_in] = ACTIONS(2454), + [anon_sym_return] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_goto] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_sizeof] = ACTIONS(2454), + [anon_sym___alignof__] = ACTIONS(2454), + [anon_sym___alignof] = ACTIONS(2454), + [anon_sym__alignof] = ACTIONS(2454), + [anon_sym_alignof] = ACTIONS(2454), + [anon_sym__Alignof] = ACTIONS(2454), + [anon_sym_offsetof] = ACTIONS(2454), + [anon_sym__Generic] = ACTIONS(2454), + [anon_sym_asm] = ACTIONS(2454), + [anon_sym___asm__] = ACTIONS(2454), + [anon_sym___asm] = ACTIONS(2454), + [sym_number_literal] = ACTIONS(2456), + [anon_sym_L_SQUOTE] = ACTIONS(2456), + [anon_sym_u_SQUOTE] = ACTIONS(2456), + [anon_sym_U_SQUOTE] = ACTIONS(2456), + [anon_sym_u8_SQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_L_DQUOTE] = ACTIONS(2456), + [anon_sym_u_DQUOTE] = ACTIONS(2456), + [anon_sym_U_DQUOTE] = ACTIONS(2456), + [anon_sym_u8_DQUOTE] = ACTIONS(2456), + [sym_true] = ACTIONS(2454), + [sym_false] = ACTIONS(2454), + [anon_sym_NULL] = ACTIONS(2454), + [anon_sym_nullptr] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2454), + [anon_sym___typeof] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(2454), + [anon_sym_ATimport] = ACTIONS(2456), + [aux_sym_preproc_undef_token1] = ACTIONS(2454), + [anon_sym_POUND] = ACTIONS(2454), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2454), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2454), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2454), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2454), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE] = ACTIONS(2454), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_API_AVAILABLE] = ACTIONS(2454), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_API_DEPRECATED] = ACTIONS(2454), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2454), + [anon_sym___deprecated_msg] = ACTIONS(2454), + [anon_sym___deprecated_enum_msg] = ACTIONS(2454), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2454), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2454), + [anon_sym_ATprotocol] = ACTIONS(2456), + [anon_sym_ATinterface] = ACTIONS(2456), + [anon_sym_ATimplementation] = ACTIONS(2456), + [anon_sym_ATcompatibility_alias] = ACTIONS(2456), + [anon_sym_ATsynthesize] = ACTIONS(2456), + [anon_sym_ATdynamic] = ACTIONS(2456), + [anon_sym_ATtry] = ACTIONS(2456), + [anon_sym___try] = ACTIONS(2454), + [anon_sym_ATthrow] = ACTIONS(2456), + [anon_sym_ATselector] = ACTIONS(2456), + [anon_sym_ATavailable] = ACTIONS(2456), + [anon_sym___builtin_available] = ACTIONS(2454), + [anon_sym_va_arg] = ACTIONS(2454), + [anon_sym_ATencode] = ACTIONS(2456), + [anon_sym_ATsynchronized] = ACTIONS(2456), + [anon_sym_BOOL] = ACTIONS(2454), + [anon_sym_IMP] = ACTIONS(2454), + [anon_sym_SEL] = ACTIONS(2454), + [anon_sym_Class] = ACTIONS(2454), + [anon_sym_id] = ACTIONS(2454), + }, + [217] = { + [sym_identifier] = ACTIONS(2454), + [aux_sym_preproc_include_token1] = ACTIONS(2454), + [aux_sym_preproc_include_token2] = ACTIONS(2454), + [aux_sym_preproc_def_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token2] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2454), + [aux_sym_preproc_else_token1] = ACTIONS(2454), + [aux_sym_preproc_elif_token1] = ACTIONS(2454), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2454), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2454), + [sym_preproc_directive] = ACTIONS(2454), + [anon_sym_LPAREN2] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_CARET] = ACTIONS(2456), + [anon_sym_AMP] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym___extension__] = ACTIONS(2454), + [anon_sym_typedef] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym___attribute__] = ACTIONS(2454), + [anon_sym___attribute] = ACTIONS(2454), + [anon_sym_noreturn] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym___declspec] = ACTIONS(2454), + [anon_sym___cdecl] = ACTIONS(2454), + [anon_sym___clrcall] = ACTIONS(2454), + [anon_sym___stdcall] = ACTIONS(2454), + [anon_sym___fastcall] = ACTIONS(2454), + [anon_sym___thiscall] = ACTIONS(2454), + [anon_sym___vectorcall] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_signed] = ACTIONS(2454), + [anon_sym_unsigned] = ACTIONS(2454), + [anon_sym_long] = ACTIONS(2454), + [anon_sym_short] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_ATautoreleasepool] = ACTIONS(2456), + [anon_sym_auto] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_inline] = ACTIONS(2454), + [anon_sym___inline] = ACTIONS(2454), + [anon_sym___inline__] = ACTIONS(2454), + [anon_sym___forceinline] = ACTIONS(2454), + [anon_sym_thread_local] = ACTIONS(2454), + [anon_sym___thread] = ACTIONS(2454), + [anon_sym_CG_EXTERN] = ACTIONS(2454), + [anon_sym_CG_INLINE] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2454), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2454), + [anon_sym_IBOutlet] = ACTIONS(2454), + [anon_sym_IBInspectable] = ACTIONS(2454), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2454), + [anon_sym_NS_INLINE] = ACTIONS(2454), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2454), + [anon_sym_OBJC_EXPORT] = ACTIONS(2454), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_constexpr] = ACTIONS(2454), + [anon_sym_volatile] = ACTIONS(2454), + [anon_sym_restrict] = ACTIONS(2454), + [anon_sym___restrict__] = ACTIONS(2454), + [anon_sym__Atomic] = ACTIONS(2454), + [anon_sym__Noreturn] = ACTIONS(2454), + [anon_sym__Nonnull] = ACTIONS(2454), + [anon_sym_nullable] = ACTIONS(2454), + [anon_sym__Complex] = ACTIONS(2454), + [anon_sym__Nullable] = ACTIONS(2454), + [anon_sym__Nullable_result] = ACTIONS(2454), + [anon_sym__Null_unspecified] = ACTIONS(2454), + [anon_sym___autoreleasing] = ACTIONS(2454), + [anon_sym___block] = ACTIONS(2454), + [anon_sym___bridge] = ACTIONS(2454), + [anon_sym___bridge_retained] = ACTIONS(2454), + [anon_sym___bridge_transfer] = ACTIONS(2454), + [anon_sym___complex] = ACTIONS(2454), + [anon_sym___const] = ACTIONS(2454), + [anon_sym___imag] = ACTIONS(2454), + [anon_sym___kindof] = ACTIONS(2454), + [anon_sym___nonnull] = ACTIONS(2454), + [anon_sym___nullable] = ACTIONS(2454), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2454), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2454), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2454), + [anon_sym___real] = ACTIONS(2454), + [anon_sym___strong] = ACTIONS(2454), + [anon_sym___unsafe_unretained] = ACTIONS(2454), + [anon_sym___unused] = ACTIONS(2454), + [anon_sym___weak] = ACTIONS(2454), + [anon_sym_alignas] = ACTIONS(2454), + [anon_sym__Alignas] = ACTIONS(2454), + [sym_primitive_type] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2454), + [anon_sym_else] = ACTIONS(2454), + [anon_sym_switch] = ACTIONS(2454), + [anon_sym_case] = ACTIONS(2454), + [anon_sym_default] = ACTIONS(2454), + [anon_sym_while] = ACTIONS(2454), + [anon_sym_do] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_in] = ACTIONS(2454), + [anon_sym_return] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_goto] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_sizeof] = ACTIONS(2454), + [anon_sym___alignof__] = ACTIONS(2454), + [anon_sym___alignof] = ACTIONS(2454), + [anon_sym__alignof] = ACTIONS(2454), + [anon_sym_alignof] = ACTIONS(2454), + [anon_sym__Alignof] = ACTIONS(2454), + [anon_sym_offsetof] = ACTIONS(2454), + [anon_sym__Generic] = ACTIONS(2454), + [anon_sym_asm] = ACTIONS(2454), + [anon_sym___asm__] = ACTIONS(2454), + [anon_sym___asm] = ACTIONS(2454), + [sym_number_literal] = ACTIONS(2456), + [anon_sym_L_SQUOTE] = ACTIONS(2456), + [anon_sym_u_SQUOTE] = ACTIONS(2456), + [anon_sym_U_SQUOTE] = ACTIONS(2456), + [anon_sym_u8_SQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_L_DQUOTE] = ACTIONS(2456), + [anon_sym_u_DQUOTE] = ACTIONS(2456), + [anon_sym_U_DQUOTE] = ACTIONS(2456), + [anon_sym_u8_DQUOTE] = ACTIONS(2456), + [sym_true] = ACTIONS(2454), + [sym_false] = ACTIONS(2454), + [anon_sym_NULL] = ACTIONS(2454), + [anon_sym_nullptr] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2454), + [anon_sym___typeof] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(2454), + [anon_sym_ATimport] = ACTIONS(2456), + [aux_sym_preproc_undef_token1] = ACTIONS(2454), + [anon_sym_POUND] = ACTIONS(2454), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2454), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2454), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2454), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2454), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE] = ACTIONS(2454), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_API_AVAILABLE] = ACTIONS(2454), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_API_DEPRECATED] = ACTIONS(2454), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2454), + [anon_sym___deprecated_msg] = ACTIONS(2454), + [anon_sym___deprecated_enum_msg] = ACTIONS(2454), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2454), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2454), + [anon_sym_ATprotocol] = ACTIONS(2456), + [anon_sym_ATinterface] = ACTIONS(2456), + [anon_sym_ATimplementation] = ACTIONS(2456), + [anon_sym_ATcompatibility_alias] = ACTIONS(2456), + [anon_sym_ATsynthesize] = ACTIONS(2456), + [anon_sym_ATdynamic] = ACTIONS(2456), + [anon_sym_ATtry] = ACTIONS(2456), + [anon_sym___try] = ACTIONS(2454), + [anon_sym_ATthrow] = ACTIONS(2456), + [anon_sym_ATselector] = ACTIONS(2456), + [anon_sym_ATavailable] = ACTIONS(2456), + [anon_sym___builtin_available] = ACTIONS(2454), + [anon_sym_va_arg] = ACTIONS(2454), + [anon_sym_ATencode] = ACTIONS(2456), + [anon_sym_ATsynchronized] = ACTIONS(2456), + [anon_sym_BOOL] = ACTIONS(2454), + [anon_sym_IMP] = ACTIONS(2454), + [anon_sym_SEL] = ACTIONS(2454), + [anon_sym_Class] = ACTIONS(2454), + [anon_sym_id] = ACTIONS(2454), + }, + [218] = { + [sym_identifier] = ACTIONS(2446), + [aux_sym_preproc_include_token1] = ACTIONS(2446), + [aux_sym_preproc_include_token2] = ACTIONS(2446), + [aux_sym_preproc_def_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token2] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2446), + [aux_sym_preproc_else_token1] = ACTIONS(2446), + [aux_sym_preproc_elif_token1] = ACTIONS(2446), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2446), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2446), + [sym_preproc_directive] = ACTIONS(2446), + [anon_sym_LPAREN2] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_TILDE] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_STAR] = ACTIONS(2448), + [anon_sym_CARET] = ACTIONS(2448), + [anon_sym_AMP] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym___extension__] = ACTIONS(2446), + [anon_sym_typedef] = ACTIONS(2446), + [anon_sym_extern] = ACTIONS(2446), + [anon_sym___attribute__] = ACTIONS(2446), + [anon_sym___attribute] = ACTIONS(2446), + [anon_sym_noreturn] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym___declspec] = ACTIONS(2446), + [anon_sym___cdecl] = ACTIONS(2446), + [anon_sym___clrcall] = ACTIONS(2446), + [anon_sym___stdcall] = ACTIONS(2446), + [anon_sym___fastcall] = ACTIONS(2446), + [anon_sym___thiscall] = ACTIONS(2446), + [anon_sym___vectorcall] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_signed] = ACTIONS(2446), + [anon_sym_unsigned] = ACTIONS(2446), + [anon_sym_long] = ACTIONS(2446), + [anon_sym_short] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_ATautoreleasepool] = ACTIONS(2448), + [anon_sym_auto] = ACTIONS(2446), + [anon_sym_register] = ACTIONS(2446), + [anon_sym_inline] = ACTIONS(2446), + [anon_sym___inline] = ACTIONS(2446), + [anon_sym___inline__] = ACTIONS(2446), + [anon_sym___forceinline] = ACTIONS(2446), + [anon_sym_thread_local] = ACTIONS(2446), + [anon_sym___thread] = ACTIONS(2446), + [anon_sym_CG_EXTERN] = ACTIONS(2446), + [anon_sym_CG_INLINE] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2446), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2446), + [anon_sym_IBOutlet] = ACTIONS(2446), + [anon_sym_IBInspectable] = ACTIONS(2446), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2446), + [anon_sym_NS_INLINE] = ACTIONS(2446), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2446), + [anon_sym_OBJC_EXPORT] = ACTIONS(2446), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [anon_sym_constexpr] = ACTIONS(2446), + [anon_sym_volatile] = ACTIONS(2446), + [anon_sym_restrict] = ACTIONS(2446), + [anon_sym___restrict__] = ACTIONS(2446), + [anon_sym__Atomic] = ACTIONS(2446), + [anon_sym__Noreturn] = ACTIONS(2446), + [anon_sym__Nonnull] = ACTIONS(2446), + [anon_sym_nullable] = ACTIONS(2446), + [anon_sym__Complex] = ACTIONS(2446), + [anon_sym__Nullable] = ACTIONS(2446), + [anon_sym__Nullable_result] = ACTIONS(2446), + [anon_sym__Null_unspecified] = ACTIONS(2446), + [anon_sym___autoreleasing] = ACTIONS(2446), + [anon_sym___block] = ACTIONS(2446), + [anon_sym___bridge] = ACTIONS(2446), + [anon_sym___bridge_retained] = ACTIONS(2446), + [anon_sym___bridge_transfer] = ACTIONS(2446), + [anon_sym___complex] = ACTIONS(2446), + [anon_sym___const] = ACTIONS(2446), + [anon_sym___imag] = ACTIONS(2446), + [anon_sym___kindof] = ACTIONS(2446), + [anon_sym___nonnull] = ACTIONS(2446), + [anon_sym___nullable] = ACTIONS(2446), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2446), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2446), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2446), + [anon_sym___real] = ACTIONS(2446), + [anon_sym___strong] = ACTIONS(2446), + [anon_sym___unsafe_unretained] = ACTIONS(2446), + [anon_sym___unused] = ACTIONS(2446), + [anon_sym___weak] = ACTIONS(2446), + [anon_sym_alignas] = ACTIONS(2446), + [anon_sym__Alignas] = ACTIONS(2446), + [sym_primitive_type] = ACTIONS(2446), + [anon_sym_enum] = ACTIONS(2446), + [anon_sym_struct] = ACTIONS(2446), + [anon_sym_union] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2446), + [anon_sym_else] = ACTIONS(2446), + [anon_sym_switch] = ACTIONS(2446), + [anon_sym_case] = ACTIONS(2446), + [anon_sym_default] = ACTIONS(2446), + [anon_sym_while] = ACTIONS(2446), + [anon_sym_do] = ACTIONS(2446), + [anon_sym_for] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_return] = ACTIONS(2446), + [anon_sym_break] = ACTIONS(2446), + [anon_sym_continue] = ACTIONS(2446), + [anon_sym_goto] = ACTIONS(2446), + [anon_sym_DASH_DASH] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2448), + [anon_sym_sizeof] = ACTIONS(2446), + [anon_sym___alignof__] = ACTIONS(2446), + [anon_sym___alignof] = ACTIONS(2446), + [anon_sym__alignof] = ACTIONS(2446), + [anon_sym_alignof] = ACTIONS(2446), + [anon_sym__Alignof] = ACTIONS(2446), + [anon_sym_offsetof] = ACTIONS(2446), + [anon_sym__Generic] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(2446), + [anon_sym___asm__] = ACTIONS(2446), + [anon_sym___asm] = ACTIONS(2446), + [sym_number_literal] = ACTIONS(2448), + [anon_sym_L_SQUOTE] = ACTIONS(2448), + [anon_sym_u_SQUOTE] = ACTIONS(2448), + [anon_sym_U_SQUOTE] = ACTIONS(2448), + [anon_sym_u8_SQUOTE] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_L_DQUOTE] = ACTIONS(2448), + [anon_sym_u_DQUOTE] = ACTIONS(2448), + [anon_sym_U_DQUOTE] = ACTIONS(2448), + [anon_sym_u8_DQUOTE] = ACTIONS(2448), + [sym_true] = ACTIONS(2446), + [sym_false] = ACTIONS(2446), + [anon_sym_NULL] = ACTIONS(2446), + [anon_sym_nullptr] = ACTIONS(2446), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2446), + [anon_sym___typeof] = ACTIONS(2446), + [anon_sym_typeof] = ACTIONS(2446), + [anon_sym_ATimport] = ACTIONS(2448), + [aux_sym_preproc_undef_token1] = ACTIONS(2446), + [anon_sym_POUND] = ACTIONS(2446), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2446), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2446), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2446), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2446), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE] = ACTIONS(2446), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_API_AVAILABLE] = ACTIONS(2446), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_API_DEPRECATED] = ACTIONS(2446), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2446), + [anon_sym___deprecated_msg] = ACTIONS(2446), + [anon_sym___deprecated_enum_msg] = ACTIONS(2446), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2446), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2446), + [anon_sym_ATprotocol] = ACTIONS(2448), + [anon_sym_ATinterface] = ACTIONS(2448), + [anon_sym_ATimplementation] = ACTIONS(2448), + [anon_sym_ATcompatibility_alias] = ACTIONS(2448), + [anon_sym_ATsynthesize] = ACTIONS(2448), + [anon_sym_ATdynamic] = ACTIONS(2448), + [anon_sym_ATtry] = ACTIONS(2448), + [anon_sym___try] = ACTIONS(2446), + [anon_sym_ATthrow] = ACTIONS(2448), + [anon_sym_ATselector] = ACTIONS(2448), + [anon_sym_ATavailable] = ACTIONS(2448), + [anon_sym___builtin_available] = ACTIONS(2446), + [anon_sym_va_arg] = ACTIONS(2446), + [anon_sym_ATencode] = ACTIONS(2448), + [anon_sym_ATsynchronized] = ACTIONS(2448), + [anon_sym_BOOL] = ACTIONS(2446), + [anon_sym_IMP] = ACTIONS(2446), + [anon_sym_SEL] = ACTIONS(2446), + [anon_sym_Class] = ACTIONS(2446), + [anon_sym_id] = ACTIONS(2446), + }, + [219] = { + [sym_identifier] = ACTIONS(2450), + [aux_sym_preproc_include_token1] = ACTIONS(2450), + [aux_sym_preproc_include_token2] = ACTIONS(2450), + [aux_sym_preproc_def_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token2] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2450), + [aux_sym_preproc_else_token1] = ACTIONS(2450), + [aux_sym_preproc_elif_token1] = ACTIONS(2450), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2450), + [anon_sym_LPAREN2] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_CARET] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym___cdecl] = ACTIONS(2450), + [anon_sym___clrcall] = ACTIONS(2450), + [anon_sym___stdcall] = ACTIONS(2450), + [anon_sym___fastcall] = ACTIONS(2450), + [anon_sym___thiscall] = ACTIONS(2450), + [anon_sym___vectorcall] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2452), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_ATautoreleasepool] = ACTIONS(2452), + [anon_sym_auto] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_CG_EXTERN] = ACTIONS(2450), + [anon_sym_CG_INLINE] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2450), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2450), + [anon_sym_IBOutlet] = ACTIONS(2450), + [anon_sym_IBInspectable] = ACTIONS(2450), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2450), + [anon_sym_NS_INLINE] = ACTIONS(2450), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2450), + [anon_sym_OBJC_EXPORT] = ACTIONS(2450), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_nullable] = ACTIONS(2450), + [anon_sym__Complex] = ACTIONS(2450), + [anon_sym__Nullable] = ACTIONS(2450), + [anon_sym__Nullable_result] = ACTIONS(2450), + [anon_sym__Null_unspecified] = ACTIONS(2450), + [anon_sym___autoreleasing] = ACTIONS(2450), + [anon_sym___block] = ACTIONS(2450), + [anon_sym___bridge] = ACTIONS(2450), + [anon_sym___bridge_retained] = ACTIONS(2450), + [anon_sym___bridge_transfer] = ACTIONS(2450), + [anon_sym___complex] = ACTIONS(2450), + [anon_sym___const] = ACTIONS(2450), + [anon_sym___imag] = ACTIONS(2450), + [anon_sym___kindof] = ACTIONS(2450), + [anon_sym___nonnull] = ACTIONS(2450), + [anon_sym___nullable] = ACTIONS(2450), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2450), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2450), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2450), + [anon_sym___real] = ACTIONS(2450), + [anon_sym___strong] = ACTIONS(2450), + [anon_sym___unsafe_unretained] = ACTIONS(2450), + [anon_sym___unused] = ACTIONS(2450), + [anon_sym___weak] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_else] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2450), + [anon_sym_case] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2450), + [anon_sym_while] = ACTIONS(2450), + [anon_sym_do] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_break] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_goto] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2452), + [anon_sym_sizeof] = ACTIONS(2450), + [anon_sym___alignof__] = ACTIONS(2450), + [anon_sym___alignof] = ACTIONS(2450), + [anon_sym__alignof] = ACTIONS(2450), + [anon_sym_alignof] = ACTIONS(2450), + [anon_sym__Alignof] = ACTIONS(2450), + [anon_sym_offsetof] = ACTIONS(2450), + [anon_sym__Generic] = ACTIONS(2450), + [anon_sym_asm] = ACTIONS(2450), + [anon_sym___asm__] = ACTIONS(2450), + [anon_sym___asm] = ACTIONS(2450), + [sym_number_literal] = ACTIONS(2452), + [anon_sym_L_SQUOTE] = ACTIONS(2452), + [anon_sym_u_SQUOTE] = ACTIONS(2452), + [anon_sym_U_SQUOTE] = ACTIONS(2452), + [anon_sym_u8_SQUOTE] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(2452), + [anon_sym_AT] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2452), + [anon_sym_L_DQUOTE] = ACTIONS(2452), + [anon_sym_u_DQUOTE] = ACTIONS(2452), + [anon_sym_U_DQUOTE] = ACTIONS(2452), + [anon_sym_u8_DQUOTE] = ACTIONS(2452), + [sym_true] = ACTIONS(2450), + [sym_false] = ACTIONS(2450), + [anon_sym_NULL] = ACTIONS(2450), + [anon_sym_nullptr] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2450), + [anon_sym___typeof] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [anon_sym_ATimport] = ACTIONS(2452), + [aux_sym_preproc_undef_token1] = ACTIONS(2450), + [anon_sym_POUND] = ACTIONS(2450), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2450), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2450), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2450), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2450), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE] = ACTIONS(2450), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_API_AVAILABLE] = ACTIONS(2450), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_API_DEPRECATED] = ACTIONS(2450), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2450), + [anon_sym___deprecated_msg] = ACTIONS(2450), + [anon_sym___deprecated_enum_msg] = ACTIONS(2450), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2450), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2450), + [anon_sym_ATprotocol] = ACTIONS(2452), + [anon_sym_ATinterface] = ACTIONS(2452), + [anon_sym_ATimplementation] = ACTIONS(2452), + [anon_sym_ATcompatibility_alias] = ACTIONS(2452), + [anon_sym_ATsynthesize] = ACTIONS(2452), + [anon_sym_ATdynamic] = ACTIONS(2452), + [anon_sym_ATtry] = ACTIONS(2452), + [anon_sym___try] = ACTIONS(2450), + [anon_sym_ATthrow] = ACTIONS(2452), + [anon_sym_ATselector] = ACTIONS(2452), + [anon_sym_ATavailable] = ACTIONS(2452), + [anon_sym___builtin_available] = ACTIONS(2450), + [anon_sym_va_arg] = ACTIONS(2450), + [anon_sym_ATencode] = ACTIONS(2452), + [anon_sym_ATsynchronized] = ACTIONS(2452), + [anon_sym_BOOL] = ACTIONS(2450), + [anon_sym_IMP] = ACTIONS(2450), + [anon_sym_SEL] = ACTIONS(2450), + [anon_sym_Class] = ACTIONS(2450), + [anon_sym_id] = ACTIONS(2450), + }, + [220] = { + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_include_token1] = ACTIONS(2458), + [aux_sym_preproc_include_token2] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token2] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [aux_sym_preproc_else_token1] = ACTIONS(2458), + [aux_sym_preproc_elif_token1] = ACTIONS(2458), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2460), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2460), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_ATautoreleasepool] = ACTIONS(2460), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_goto] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2460), + [anon_sym_sizeof] = ACTIONS(2458), + [anon_sym___alignof__] = ACTIONS(2458), + [anon_sym___alignof] = ACTIONS(2458), + [anon_sym__alignof] = ACTIONS(2458), + [anon_sym_alignof] = ACTIONS(2458), + [anon_sym__Alignof] = ACTIONS(2458), + [anon_sym_offsetof] = ACTIONS(2458), + [anon_sym__Generic] = ACTIONS(2458), + [anon_sym_asm] = ACTIONS(2458), + [anon_sym___asm__] = ACTIONS(2458), + [anon_sym___asm] = ACTIONS(2458), + [sym_number_literal] = ACTIONS(2460), + [anon_sym_L_SQUOTE] = ACTIONS(2460), + [anon_sym_u_SQUOTE] = ACTIONS(2460), + [anon_sym_U_SQUOTE] = ACTIONS(2460), + [anon_sym_u8_SQUOTE] = ACTIONS(2460), + [anon_sym_SQUOTE] = ACTIONS(2460), + [anon_sym_AT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_L_DQUOTE] = ACTIONS(2460), + [anon_sym_u_DQUOTE] = ACTIONS(2460), + [anon_sym_U_DQUOTE] = ACTIONS(2460), + [anon_sym_u8_DQUOTE] = ACTIONS(2460), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [anon_sym_NULL] = ACTIONS(2458), + [anon_sym_nullptr] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_ATimport] = ACTIONS(2460), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_POUND] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATprotocol] = ACTIONS(2460), + [anon_sym_ATinterface] = ACTIONS(2460), + [anon_sym_ATimplementation] = ACTIONS(2460), + [anon_sym_ATcompatibility_alias] = ACTIONS(2460), + [anon_sym_ATsynthesize] = ACTIONS(2460), + [anon_sym_ATdynamic] = ACTIONS(2460), + [anon_sym_ATtry] = ACTIONS(2460), + [anon_sym___try] = ACTIONS(2458), + [anon_sym_ATthrow] = ACTIONS(2460), + [anon_sym_ATselector] = ACTIONS(2460), + [anon_sym_ATavailable] = ACTIONS(2460), + [anon_sym___builtin_available] = ACTIONS(2458), + [anon_sym_va_arg] = ACTIONS(2458), + [anon_sym_ATencode] = ACTIONS(2460), + [anon_sym_ATsynchronized] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [221] = { + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_include_token1] = ACTIONS(2458), + [aux_sym_preproc_include_token2] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token2] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [aux_sym_preproc_else_token1] = ACTIONS(2458), + [aux_sym_preproc_elif_token1] = ACTIONS(2458), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2460), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2460), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_ATautoreleasepool] = ACTIONS(2460), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_goto] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2460), + [anon_sym_sizeof] = ACTIONS(2458), + [anon_sym___alignof__] = ACTIONS(2458), + [anon_sym___alignof] = ACTIONS(2458), + [anon_sym__alignof] = ACTIONS(2458), + [anon_sym_alignof] = ACTIONS(2458), + [anon_sym__Alignof] = ACTIONS(2458), + [anon_sym_offsetof] = ACTIONS(2458), + [anon_sym__Generic] = ACTIONS(2458), + [anon_sym_asm] = ACTIONS(2458), + [anon_sym___asm__] = ACTIONS(2458), + [anon_sym___asm] = ACTIONS(2458), + [sym_number_literal] = ACTIONS(2460), + [anon_sym_L_SQUOTE] = ACTIONS(2460), + [anon_sym_u_SQUOTE] = ACTIONS(2460), + [anon_sym_U_SQUOTE] = ACTIONS(2460), + [anon_sym_u8_SQUOTE] = ACTIONS(2460), + [anon_sym_SQUOTE] = ACTIONS(2460), + [anon_sym_AT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_L_DQUOTE] = ACTIONS(2460), + [anon_sym_u_DQUOTE] = ACTIONS(2460), + [anon_sym_U_DQUOTE] = ACTIONS(2460), + [anon_sym_u8_DQUOTE] = ACTIONS(2460), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [anon_sym_NULL] = ACTIONS(2458), + [anon_sym_nullptr] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_ATimport] = ACTIONS(2460), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_POUND] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATprotocol] = ACTIONS(2460), + [anon_sym_ATinterface] = ACTIONS(2460), + [anon_sym_ATimplementation] = ACTIONS(2460), + [anon_sym_ATcompatibility_alias] = ACTIONS(2460), + [anon_sym_ATsynthesize] = ACTIONS(2460), + [anon_sym_ATdynamic] = ACTIONS(2460), + [anon_sym_ATtry] = ACTIONS(2460), + [anon_sym___try] = ACTIONS(2458), + [anon_sym_ATthrow] = ACTIONS(2460), + [anon_sym_ATselector] = ACTIONS(2460), + [anon_sym_ATavailable] = ACTIONS(2460), + [anon_sym___builtin_available] = ACTIONS(2458), + [anon_sym_va_arg] = ACTIONS(2458), + [anon_sym_ATencode] = ACTIONS(2460), + [anon_sym_ATsynchronized] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [222] = { + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_include_token1] = ACTIONS(2458), + [aux_sym_preproc_include_token2] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token2] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [aux_sym_preproc_else_token1] = ACTIONS(2458), + [aux_sym_preproc_elif_token1] = ACTIONS(2458), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2460), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2460), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_ATautoreleasepool] = ACTIONS(2460), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_goto] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2460), + [anon_sym_sizeof] = ACTIONS(2458), + [anon_sym___alignof__] = ACTIONS(2458), + [anon_sym___alignof] = ACTIONS(2458), + [anon_sym__alignof] = ACTIONS(2458), + [anon_sym_alignof] = ACTIONS(2458), + [anon_sym__Alignof] = ACTIONS(2458), + [anon_sym_offsetof] = ACTIONS(2458), + [anon_sym__Generic] = ACTIONS(2458), + [anon_sym_asm] = ACTIONS(2458), + [anon_sym___asm__] = ACTIONS(2458), + [anon_sym___asm] = ACTIONS(2458), + [sym_number_literal] = ACTIONS(2460), + [anon_sym_L_SQUOTE] = ACTIONS(2460), + [anon_sym_u_SQUOTE] = ACTIONS(2460), + [anon_sym_U_SQUOTE] = ACTIONS(2460), + [anon_sym_u8_SQUOTE] = ACTIONS(2460), + [anon_sym_SQUOTE] = ACTIONS(2460), + [anon_sym_AT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_L_DQUOTE] = ACTIONS(2460), + [anon_sym_u_DQUOTE] = ACTIONS(2460), + [anon_sym_U_DQUOTE] = ACTIONS(2460), + [anon_sym_u8_DQUOTE] = ACTIONS(2460), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [anon_sym_NULL] = ACTIONS(2458), + [anon_sym_nullptr] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_ATimport] = ACTIONS(2460), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_POUND] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATprotocol] = ACTIONS(2460), + [anon_sym_ATinterface] = ACTIONS(2460), + [anon_sym_ATimplementation] = ACTIONS(2460), + [anon_sym_ATcompatibility_alias] = ACTIONS(2460), + [anon_sym_ATsynthesize] = ACTIONS(2460), + [anon_sym_ATdynamic] = ACTIONS(2460), + [anon_sym_ATtry] = ACTIONS(2460), + [anon_sym___try] = ACTIONS(2458), + [anon_sym_ATthrow] = ACTIONS(2460), + [anon_sym_ATselector] = ACTIONS(2460), + [anon_sym_ATavailable] = ACTIONS(2460), + [anon_sym___builtin_available] = ACTIONS(2458), + [anon_sym_va_arg] = ACTIONS(2458), + [anon_sym_ATencode] = ACTIONS(2460), + [anon_sym_ATsynchronized] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [223] = { + [sym_identifier] = ACTIONS(2462), + [aux_sym_preproc_include_token1] = ACTIONS(2462), + [aux_sym_preproc_include_token2] = ACTIONS(2462), + [aux_sym_preproc_def_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token2] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2462), + [aux_sym_preproc_else_token1] = ACTIONS(2462), + [aux_sym_preproc_elif_token1] = ACTIONS(2462), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2462), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2462), + [sym_preproc_directive] = ACTIONS(2462), + [anon_sym_LPAREN2] = ACTIONS(2464), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_CARET] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym___extension__] = ACTIONS(2462), + [anon_sym_typedef] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym___attribute__] = ACTIONS(2462), + [anon_sym___attribute] = ACTIONS(2462), + [anon_sym_noreturn] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2464), + [anon_sym___declspec] = ACTIONS(2462), + [anon_sym___cdecl] = ACTIONS(2462), + [anon_sym___clrcall] = ACTIONS(2462), + [anon_sym___stdcall] = ACTIONS(2462), + [anon_sym___fastcall] = ACTIONS(2462), + [anon_sym___thiscall] = ACTIONS(2462), + [anon_sym___vectorcall] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_signed] = ACTIONS(2462), + [anon_sym_unsigned] = ACTIONS(2462), + [anon_sym_long] = ACTIONS(2462), + [anon_sym_short] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_ATautoreleasepool] = ACTIONS(2464), + [anon_sym_auto] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_inline] = ACTIONS(2462), + [anon_sym___inline] = ACTIONS(2462), + [anon_sym___inline__] = ACTIONS(2462), + [anon_sym___forceinline] = ACTIONS(2462), + [anon_sym_thread_local] = ACTIONS(2462), + [anon_sym___thread] = ACTIONS(2462), + [anon_sym_CG_EXTERN] = ACTIONS(2462), + [anon_sym_CG_INLINE] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2462), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2462), + [anon_sym_IBOutlet] = ACTIONS(2462), + [anon_sym_IBInspectable] = ACTIONS(2462), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2462), + [anon_sym_NS_INLINE] = ACTIONS(2462), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2462), + [anon_sym_OBJC_EXPORT] = ACTIONS(2462), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_constexpr] = ACTIONS(2462), + [anon_sym_volatile] = ACTIONS(2462), + [anon_sym_restrict] = ACTIONS(2462), + [anon_sym___restrict__] = ACTIONS(2462), + [anon_sym__Atomic] = ACTIONS(2462), + [anon_sym__Noreturn] = ACTIONS(2462), + [anon_sym__Nonnull] = ACTIONS(2462), + [anon_sym_nullable] = ACTIONS(2462), + [anon_sym__Complex] = ACTIONS(2462), + [anon_sym__Nullable] = ACTIONS(2462), + [anon_sym__Nullable_result] = ACTIONS(2462), + [anon_sym__Null_unspecified] = ACTIONS(2462), + [anon_sym___autoreleasing] = ACTIONS(2462), + [anon_sym___block] = ACTIONS(2462), + [anon_sym___bridge] = ACTIONS(2462), + [anon_sym___bridge_retained] = ACTIONS(2462), + [anon_sym___bridge_transfer] = ACTIONS(2462), + [anon_sym___complex] = ACTIONS(2462), + [anon_sym___const] = ACTIONS(2462), + [anon_sym___imag] = ACTIONS(2462), + [anon_sym___kindof] = ACTIONS(2462), + [anon_sym___nonnull] = ACTIONS(2462), + [anon_sym___nullable] = ACTIONS(2462), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2462), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2462), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2462), + [anon_sym___real] = ACTIONS(2462), + [anon_sym___strong] = ACTIONS(2462), + [anon_sym___unsafe_unretained] = ACTIONS(2462), + [anon_sym___unused] = ACTIONS(2462), + [anon_sym___weak] = ACTIONS(2462), + [anon_sym_alignas] = ACTIONS(2462), + [anon_sym__Alignas] = ACTIONS(2462), + [sym_primitive_type] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_case] = ACTIONS(2462), + [anon_sym_default] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_in] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_goto] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(2464), + [anon_sym_sizeof] = ACTIONS(2462), + [anon_sym___alignof__] = ACTIONS(2462), + [anon_sym___alignof] = ACTIONS(2462), + [anon_sym__alignof] = ACTIONS(2462), + [anon_sym_alignof] = ACTIONS(2462), + [anon_sym__Alignof] = ACTIONS(2462), + [anon_sym_offsetof] = ACTIONS(2462), + [anon_sym__Generic] = ACTIONS(2462), + [anon_sym_asm] = ACTIONS(2462), + [anon_sym___asm__] = ACTIONS(2462), + [anon_sym___asm] = ACTIONS(2462), + [sym_number_literal] = ACTIONS(2464), + [anon_sym_L_SQUOTE] = ACTIONS(2464), + [anon_sym_u_SQUOTE] = ACTIONS(2464), + [anon_sym_U_SQUOTE] = ACTIONS(2464), + [anon_sym_u8_SQUOTE] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2464), + [anon_sym_AT] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2464), + [anon_sym_L_DQUOTE] = ACTIONS(2464), + [anon_sym_u_DQUOTE] = ACTIONS(2464), + [anon_sym_U_DQUOTE] = ACTIONS(2464), + [anon_sym_u8_DQUOTE] = ACTIONS(2464), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [anon_sym_NULL] = ACTIONS(2462), + [anon_sym_nullptr] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2462), + [anon_sym___typeof] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [anon_sym_ATimport] = ACTIONS(2464), + [aux_sym_preproc_undef_token1] = ACTIONS(2462), + [anon_sym_POUND] = ACTIONS(2462), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2462), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2462), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2462), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2462), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE] = ACTIONS(2462), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_API_AVAILABLE] = ACTIONS(2462), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_API_DEPRECATED] = ACTIONS(2462), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2462), + [anon_sym___deprecated_msg] = ACTIONS(2462), + [anon_sym___deprecated_enum_msg] = ACTIONS(2462), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2462), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2462), + [anon_sym_ATprotocol] = ACTIONS(2464), + [anon_sym_ATinterface] = ACTIONS(2464), + [anon_sym_ATimplementation] = ACTIONS(2464), + [anon_sym_ATcompatibility_alias] = ACTIONS(2464), + [anon_sym_ATsynthesize] = ACTIONS(2464), + [anon_sym_ATdynamic] = ACTIONS(2464), + [anon_sym_ATtry] = ACTIONS(2464), + [anon_sym___try] = ACTIONS(2462), + [anon_sym_ATthrow] = ACTIONS(2464), + [anon_sym_ATselector] = ACTIONS(2464), + [anon_sym_ATavailable] = ACTIONS(2464), + [anon_sym___builtin_available] = ACTIONS(2462), + [anon_sym_va_arg] = ACTIONS(2462), + [anon_sym_ATencode] = ACTIONS(2464), + [anon_sym_ATsynchronized] = ACTIONS(2464), + [anon_sym_BOOL] = ACTIONS(2462), + [anon_sym_IMP] = ACTIONS(2462), + [anon_sym_SEL] = ACTIONS(2462), + [anon_sym_Class] = ACTIONS(2462), + [anon_sym_id] = ACTIONS(2462), + }, + [224] = { + [sym_identifier] = ACTIONS(2462), + [aux_sym_preproc_include_token1] = ACTIONS(2462), + [aux_sym_preproc_include_token2] = ACTIONS(2462), + [aux_sym_preproc_def_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token2] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2462), + [aux_sym_preproc_else_token1] = ACTIONS(2462), + [aux_sym_preproc_elif_token1] = ACTIONS(2462), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2462), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2462), + [sym_preproc_directive] = ACTIONS(2462), + [anon_sym_LPAREN2] = ACTIONS(2464), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_CARET] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym___extension__] = ACTIONS(2462), + [anon_sym_typedef] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym___attribute__] = ACTIONS(2462), + [anon_sym___attribute] = ACTIONS(2462), + [anon_sym_noreturn] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2464), + [anon_sym___declspec] = ACTIONS(2462), + [anon_sym___cdecl] = ACTIONS(2462), + [anon_sym___clrcall] = ACTIONS(2462), + [anon_sym___stdcall] = ACTIONS(2462), + [anon_sym___fastcall] = ACTIONS(2462), + [anon_sym___thiscall] = ACTIONS(2462), + [anon_sym___vectorcall] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_signed] = ACTIONS(2462), + [anon_sym_unsigned] = ACTIONS(2462), + [anon_sym_long] = ACTIONS(2462), + [anon_sym_short] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_ATautoreleasepool] = ACTIONS(2464), + [anon_sym_auto] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_inline] = ACTIONS(2462), + [anon_sym___inline] = ACTIONS(2462), + [anon_sym___inline__] = ACTIONS(2462), + [anon_sym___forceinline] = ACTIONS(2462), + [anon_sym_thread_local] = ACTIONS(2462), + [anon_sym___thread] = ACTIONS(2462), + [anon_sym_CG_EXTERN] = ACTIONS(2462), + [anon_sym_CG_INLINE] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2462), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2462), + [anon_sym_IBOutlet] = ACTIONS(2462), + [anon_sym_IBInspectable] = ACTIONS(2462), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2462), + [anon_sym_NS_INLINE] = ACTIONS(2462), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2462), + [anon_sym_OBJC_EXPORT] = ACTIONS(2462), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_constexpr] = ACTIONS(2462), + [anon_sym_volatile] = ACTIONS(2462), + [anon_sym_restrict] = ACTIONS(2462), + [anon_sym___restrict__] = ACTIONS(2462), + [anon_sym__Atomic] = ACTIONS(2462), + [anon_sym__Noreturn] = ACTIONS(2462), + [anon_sym__Nonnull] = ACTIONS(2462), + [anon_sym_nullable] = ACTIONS(2462), + [anon_sym__Complex] = ACTIONS(2462), + [anon_sym__Nullable] = ACTIONS(2462), + [anon_sym__Nullable_result] = ACTIONS(2462), + [anon_sym__Null_unspecified] = ACTIONS(2462), + [anon_sym___autoreleasing] = ACTIONS(2462), + [anon_sym___block] = ACTIONS(2462), + [anon_sym___bridge] = ACTIONS(2462), + [anon_sym___bridge_retained] = ACTIONS(2462), + [anon_sym___bridge_transfer] = ACTIONS(2462), + [anon_sym___complex] = ACTIONS(2462), + [anon_sym___const] = ACTIONS(2462), + [anon_sym___imag] = ACTIONS(2462), + [anon_sym___kindof] = ACTIONS(2462), + [anon_sym___nonnull] = ACTIONS(2462), + [anon_sym___nullable] = ACTIONS(2462), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2462), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2462), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2462), + [anon_sym___real] = ACTIONS(2462), + [anon_sym___strong] = ACTIONS(2462), + [anon_sym___unsafe_unretained] = ACTIONS(2462), + [anon_sym___unused] = ACTIONS(2462), + [anon_sym___weak] = ACTIONS(2462), + [anon_sym_alignas] = ACTIONS(2462), + [anon_sym__Alignas] = ACTIONS(2462), + [sym_primitive_type] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_case] = ACTIONS(2462), + [anon_sym_default] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_in] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_goto] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(2464), + [anon_sym_sizeof] = ACTIONS(2462), + [anon_sym___alignof__] = ACTIONS(2462), + [anon_sym___alignof] = ACTIONS(2462), + [anon_sym__alignof] = ACTIONS(2462), + [anon_sym_alignof] = ACTIONS(2462), + [anon_sym__Alignof] = ACTIONS(2462), + [anon_sym_offsetof] = ACTIONS(2462), + [anon_sym__Generic] = ACTIONS(2462), + [anon_sym_asm] = ACTIONS(2462), + [anon_sym___asm__] = ACTIONS(2462), + [anon_sym___asm] = ACTIONS(2462), + [sym_number_literal] = ACTIONS(2464), + [anon_sym_L_SQUOTE] = ACTIONS(2464), + [anon_sym_u_SQUOTE] = ACTIONS(2464), + [anon_sym_U_SQUOTE] = ACTIONS(2464), + [anon_sym_u8_SQUOTE] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2464), + [anon_sym_AT] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2464), + [anon_sym_L_DQUOTE] = ACTIONS(2464), + [anon_sym_u_DQUOTE] = ACTIONS(2464), + [anon_sym_U_DQUOTE] = ACTIONS(2464), + [anon_sym_u8_DQUOTE] = ACTIONS(2464), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [anon_sym_NULL] = ACTIONS(2462), + [anon_sym_nullptr] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2462), + [anon_sym___typeof] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [anon_sym_ATimport] = ACTIONS(2464), + [aux_sym_preproc_undef_token1] = ACTIONS(2462), + [anon_sym_POUND] = ACTIONS(2462), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2462), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2462), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2462), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2462), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE] = ACTIONS(2462), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_API_AVAILABLE] = ACTIONS(2462), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_API_DEPRECATED] = ACTIONS(2462), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2462), + [anon_sym___deprecated_msg] = ACTIONS(2462), + [anon_sym___deprecated_enum_msg] = ACTIONS(2462), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2462), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2462), + [anon_sym_ATprotocol] = ACTIONS(2464), + [anon_sym_ATinterface] = ACTIONS(2464), + [anon_sym_ATimplementation] = ACTIONS(2464), + [anon_sym_ATcompatibility_alias] = ACTIONS(2464), + [anon_sym_ATsynthesize] = ACTIONS(2464), + [anon_sym_ATdynamic] = ACTIONS(2464), + [anon_sym_ATtry] = ACTIONS(2464), + [anon_sym___try] = ACTIONS(2462), + [anon_sym_ATthrow] = ACTIONS(2464), + [anon_sym_ATselector] = ACTIONS(2464), + [anon_sym_ATavailable] = ACTIONS(2464), + [anon_sym___builtin_available] = ACTIONS(2462), + [anon_sym_va_arg] = ACTIONS(2462), + [anon_sym_ATencode] = ACTIONS(2464), + [anon_sym_ATsynchronized] = ACTIONS(2464), + [anon_sym_BOOL] = ACTIONS(2462), + [anon_sym_IMP] = ACTIONS(2462), + [anon_sym_SEL] = ACTIONS(2462), + [anon_sym_Class] = ACTIONS(2462), + [anon_sym_id] = ACTIONS(2462), + }, + [225] = { + [sym_identifier] = ACTIONS(2466), + [aux_sym_preproc_include_token1] = ACTIONS(2466), + [aux_sym_preproc_include_token2] = ACTIONS(2466), + [aux_sym_preproc_def_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token2] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2466), + [aux_sym_preproc_else_token1] = ACTIONS(2466), + [aux_sym_preproc_elif_token1] = ACTIONS(2466), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2466), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2466), + [sym_preproc_directive] = ACTIONS(2466), + [anon_sym_LPAREN2] = ACTIONS(2468), + [anon_sym_BANG] = ACTIONS(2468), + [anon_sym_TILDE] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_PLUS] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2468), + [anon_sym_CARET] = ACTIONS(2468), + [anon_sym_AMP] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym___extension__] = ACTIONS(2466), + [anon_sym_typedef] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym___attribute__] = ACTIONS(2466), + [anon_sym___attribute] = ACTIONS(2466), + [anon_sym_noreturn] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2468), + [anon_sym___declspec] = ACTIONS(2466), + [anon_sym___cdecl] = ACTIONS(2466), + [anon_sym___clrcall] = ACTIONS(2466), + [anon_sym___stdcall] = ACTIONS(2466), + [anon_sym___fastcall] = ACTIONS(2466), + [anon_sym___thiscall] = ACTIONS(2466), + [anon_sym___vectorcall] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_signed] = ACTIONS(2466), + [anon_sym_unsigned] = ACTIONS(2466), + [anon_sym_long] = ACTIONS(2466), + [anon_sym_short] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_ATautoreleasepool] = ACTIONS(2468), + [anon_sym_auto] = ACTIONS(2466), + [anon_sym_register] = ACTIONS(2466), + [anon_sym_inline] = ACTIONS(2466), + [anon_sym___inline] = ACTIONS(2466), + [anon_sym___inline__] = ACTIONS(2466), + [anon_sym___forceinline] = ACTIONS(2466), + [anon_sym_thread_local] = ACTIONS(2466), + [anon_sym___thread] = ACTIONS(2466), + [anon_sym_CG_EXTERN] = ACTIONS(2466), + [anon_sym_CG_INLINE] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2466), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2466), + [anon_sym_IBOutlet] = ACTIONS(2466), + [anon_sym_IBInspectable] = ACTIONS(2466), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2466), + [anon_sym_NS_INLINE] = ACTIONS(2466), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2466), + [anon_sym_OBJC_EXPORT] = ACTIONS(2466), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_constexpr] = ACTIONS(2466), + [anon_sym_volatile] = ACTIONS(2466), + [anon_sym_restrict] = ACTIONS(2466), + [anon_sym___restrict__] = ACTIONS(2466), + [anon_sym__Atomic] = ACTIONS(2466), + [anon_sym__Noreturn] = ACTIONS(2466), + [anon_sym__Nonnull] = ACTIONS(2466), + [anon_sym_nullable] = ACTIONS(2466), + [anon_sym__Complex] = ACTIONS(2466), + [anon_sym__Nullable] = ACTIONS(2466), + [anon_sym__Nullable_result] = ACTIONS(2466), + [anon_sym__Null_unspecified] = ACTIONS(2466), + [anon_sym___autoreleasing] = ACTIONS(2466), + [anon_sym___block] = ACTIONS(2466), + [anon_sym___bridge] = ACTIONS(2466), + [anon_sym___bridge_retained] = ACTIONS(2466), + [anon_sym___bridge_transfer] = ACTIONS(2466), + [anon_sym___complex] = ACTIONS(2466), + [anon_sym___const] = ACTIONS(2466), + [anon_sym___imag] = ACTIONS(2466), + [anon_sym___kindof] = ACTIONS(2466), + [anon_sym___nonnull] = ACTIONS(2466), + [anon_sym___nullable] = ACTIONS(2466), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2466), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2466), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2466), + [anon_sym___real] = ACTIONS(2466), + [anon_sym___strong] = ACTIONS(2466), + [anon_sym___unsafe_unretained] = ACTIONS(2466), + [anon_sym___unused] = ACTIONS(2466), + [anon_sym___weak] = ACTIONS(2466), + [anon_sym_alignas] = ACTIONS(2466), + [anon_sym__Alignas] = ACTIONS(2466), + [sym_primitive_type] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), + [anon_sym_struct] = ACTIONS(2466), + [anon_sym_union] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_else] = ACTIONS(2466), + [anon_sym_switch] = ACTIONS(2466), + [anon_sym_case] = ACTIONS(2466), + [anon_sym_default] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_do] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_in] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_goto] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2468), + [anon_sym_PLUS_PLUS] = ACTIONS(2468), + [anon_sym_sizeof] = ACTIONS(2466), + [anon_sym___alignof__] = ACTIONS(2466), + [anon_sym___alignof] = ACTIONS(2466), + [anon_sym__alignof] = ACTIONS(2466), + [anon_sym_alignof] = ACTIONS(2466), + [anon_sym__Alignof] = ACTIONS(2466), + [anon_sym_offsetof] = ACTIONS(2466), + [anon_sym__Generic] = ACTIONS(2466), + [anon_sym_asm] = ACTIONS(2466), + [anon_sym___asm__] = ACTIONS(2466), + [anon_sym___asm] = ACTIONS(2466), + [sym_number_literal] = ACTIONS(2468), + [anon_sym_L_SQUOTE] = ACTIONS(2468), + [anon_sym_u_SQUOTE] = ACTIONS(2468), + [anon_sym_U_SQUOTE] = ACTIONS(2468), + [anon_sym_u8_SQUOTE] = ACTIONS(2468), + [anon_sym_SQUOTE] = ACTIONS(2468), + [anon_sym_AT] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2468), + [anon_sym_L_DQUOTE] = ACTIONS(2468), + [anon_sym_u_DQUOTE] = ACTIONS(2468), + [anon_sym_U_DQUOTE] = ACTIONS(2468), + [anon_sym_u8_DQUOTE] = ACTIONS(2468), + [sym_true] = ACTIONS(2466), + [sym_false] = ACTIONS(2466), + [anon_sym_NULL] = ACTIONS(2466), + [anon_sym_nullptr] = ACTIONS(2466), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2466), + [anon_sym___typeof] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2466), + [anon_sym_ATimport] = ACTIONS(2468), + [aux_sym_preproc_undef_token1] = ACTIONS(2466), + [anon_sym_POUND] = ACTIONS(2466), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2466), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2466), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2466), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2466), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE] = ACTIONS(2466), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_API_AVAILABLE] = ACTIONS(2466), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_API_DEPRECATED] = ACTIONS(2466), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2466), + [anon_sym___deprecated_msg] = ACTIONS(2466), + [anon_sym___deprecated_enum_msg] = ACTIONS(2466), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2466), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2466), + [anon_sym_ATprotocol] = ACTIONS(2468), + [anon_sym_ATinterface] = ACTIONS(2468), + [anon_sym_ATimplementation] = ACTIONS(2468), + [anon_sym_ATcompatibility_alias] = ACTIONS(2468), + [anon_sym_ATsynthesize] = ACTIONS(2468), + [anon_sym_ATdynamic] = ACTIONS(2468), + [anon_sym_ATtry] = ACTIONS(2468), + [anon_sym___try] = ACTIONS(2466), + [anon_sym_ATthrow] = ACTIONS(2468), + [anon_sym_ATselector] = ACTIONS(2468), + [anon_sym_ATavailable] = ACTIONS(2468), + [anon_sym___builtin_available] = ACTIONS(2466), + [anon_sym_va_arg] = ACTIONS(2466), + [anon_sym_ATencode] = ACTIONS(2468), + [anon_sym_ATsynchronized] = ACTIONS(2468), + [anon_sym_BOOL] = ACTIONS(2466), + [anon_sym_IMP] = ACTIONS(2466), + [anon_sym_SEL] = ACTIONS(2466), + [anon_sym_Class] = ACTIONS(2466), + [anon_sym_id] = ACTIONS(2466), + }, + [226] = { + [sym_identifier] = ACTIONS(2466), + [aux_sym_preproc_include_token1] = ACTIONS(2466), + [aux_sym_preproc_include_token2] = ACTIONS(2466), + [aux_sym_preproc_def_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token2] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2466), + [aux_sym_preproc_else_token1] = ACTIONS(2466), + [aux_sym_preproc_elif_token1] = ACTIONS(2466), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2466), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2466), + [sym_preproc_directive] = ACTIONS(2466), + [anon_sym_LPAREN2] = ACTIONS(2468), + [anon_sym_BANG] = ACTIONS(2468), + [anon_sym_TILDE] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_PLUS] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2468), + [anon_sym_CARET] = ACTIONS(2468), + [anon_sym_AMP] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym___extension__] = ACTIONS(2466), + [anon_sym_typedef] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym___attribute__] = ACTIONS(2466), + [anon_sym___attribute] = ACTIONS(2466), + [anon_sym_noreturn] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2468), + [anon_sym___declspec] = ACTIONS(2466), + [anon_sym___cdecl] = ACTIONS(2466), + [anon_sym___clrcall] = ACTIONS(2466), + [anon_sym___stdcall] = ACTIONS(2466), + [anon_sym___fastcall] = ACTIONS(2466), + [anon_sym___thiscall] = ACTIONS(2466), + [anon_sym___vectorcall] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_signed] = ACTIONS(2466), + [anon_sym_unsigned] = ACTIONS(2466), + [anon_sym_long] = ACTIONS(2466), + [anon_sym_short] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_ATautoreleasepool] = ACTIONS(2468), + [anon_sym_auto] = ACTIONS(2466), + [anon_sym_register] = ACTIONS(2466), + [anon_sym_inline] = ACTIONS(2466), + [anon_sym___inline] = ACTIONS(2466), + [anon_sym___inline__] = ACTIONS(2466), + [anon_sym___forceinline] = ACTIONS(2466), + [anon_sym_thread_local] = ACTIONS(2466), + [anon_sym___thread] = ACTIONS(2466), + [anon_sym_CG_EXTERN] = ACTIONS(2466), + [anon_sym_CG_INLINE] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2466), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2466), + [anon_sym_IBOutlet] = ACTIONS(2466), + [anon_sym_IBInspectable] = ACTIONS(2466), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2466), + [anon_sym_NS_INLINE] = ACTIONS(2466), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2466), + [anon_sym_OBJC_EXPORT] = ACTIONS(2466), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_constexpr] = ACTIONS(2466), + [anon_sym_volatile] = ACTIONS(2466), + [anon_sym_restrict] = ACTIONS(2466), + [anon_sym___restrict__] = ACTIONS(2466), + [anon_sym__Atomic] = ACTIONS(2466), + [anon_sym__Noreturn] = ACTIONS(2466), + [anon_sym__Nonnull] = ACTIONS(2466), + [anon_sym_nullable] = ACTIONS(2466), + [anon_sym__Complex] = ACTIONS(2466), + [anon_sym__Nullable] = ACTIONS(2466), + [anon_sym__Nullable_result] = ACTIONS(2466), + [anon_sym__Null_unspecified] = ACTIONS(2466), + [anon_sym___autoreleasing] = ACTIONS(2466), + [anon_sym___block] = ACTIONS(2466), + [anon_sym___bridge] = ACTIONS(2466), + [anon_sym___bridge_retained] = ACTIONS(2466), + [anon_sym___bridge_transfer] = ACTIONS(2466), + [anon_sym___complex] = ACTIONS(2466), + [anon_sym___const] = ACTIONS(2466), + [anon_sym___imag] = ACTIONS(2466), + [anon_sym___kindof] = ACTIONS(2466), + [anon_sym___nonnull] = ACTIONS(2466), + [anon_sym___nullable] = ACTIONS(2466), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2466), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2466), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2466), + [anon_sym___real] = ACTIONS(2466), + [anon_sym___strong] = ACTIONS(2466), + [anon_sym___unsafe_unretained] = ACTIONS(2466), + [anon_sym___unused] = ACTIONS(2466), + [anon_sym___weak] = ACTIONS(2466), + [anon_sym_alignas] = ACTIONS(2466), + [anon_sym__Alignas] = ACTIONS(2466), + [sym_primitive_type] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), + [anon_sym_struct] = ACTIONS(2466), + [anon_sym_union] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_else] = ACTIONS(2466), + [anon_sym_switch] = ACTIONS(2466), + [anon_sym_case] = ACTIONS(2466), + [anon_sym_default] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_do] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_in] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_goto] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2468), + [anon_sym_PLUS_PLUS] = ACTIONS(2468), + [anon_sym_sizeof] = ACTIONS(2466), + [anon_sym___alignof__] = ACTIONS(2466), + [anon_sym___alignof] = ACTIONS(2466), + [anon_sym__alignof] = ACTIONS(2466), + [anon_sym_alignof] = ACTIONS(2466), + [anon_sym__Alignof] = ACTIONS(2466), + [anon_sym_offsetof] = ACTIONS(2466), + [anon_sym__Generic] = ACTIONS(2466), + [anon_sym_asm] = ACTIONS(2466), + [anon_sym___asm__] = ACTIONS(2466), + [anon_sym___asm] = ACTIONS(2466), + [sym_number_literal] = ACTIONS(2468), + [anon_sym_L_SQUOTE] = ACTIONS(2468), + [anon_sym_u_SQUOTE] = ACTIONS(2468), + [anon_sym_U_SQUOTE] = ACTIONS(2468), + [anon_sym_u8_SQUOTE] = ACTIONS(2468), + [anon_sym_SQUOTE] = ACTIONS(2468), + [anon_sym_AT] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2468), + [anon_sym_L_DQUOTE] = ACTIONS(2468), + [anon_sym_u_DQUOTE] = ACTIONS(2468), + [anon_sym_U_DQUOTE] = ACTIONS(2468), + [anon_sym_u8_DQUOTE] = ACTIONS(2468), + [sym_true] = ACTIONS(2466), + [sym_false] = ACTIONS(2466), + [anon_sym_NULL] = ACTIONS(2466), + [anon_sym_nullptr] = ACTIONS(2466), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2466), + [anon_sym___typeof] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2466), + [anon_sym_ATimport] = ACTIONS(2468), + [aux_sym_preproc_undef_token1] = ACTIONS(2466), + [anon_sym_POUND] = ACTIONS(2466), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2466), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2466), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2466), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2466), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE] = ACTIONS(2466), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_API_AVAILABLE] = ACTIONS(2466), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_API_DEPRECATED] = ACTIONS(2466), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2466), + [anon_sym___deprecated_msg] = ACTIONS(2466), + [anon_sym___deprecated_enum_msg] = ACTIONS(2466), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2466), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2466), + [anon_sym_ATprotocol] = ACTIONS(2468), + [anon_sym_ATinterface] = ACTIONS(2468), + [anon_sym_ATimplementation] = ACTIONS(2468), + [anon_sym_ATcompatibility_alias] = ACTIONS(2468), + [anon_sym_ATsynthesize] = ACTIONS(2468), + [anon_sym_ATdynamic] = ACTIONS(2468), + [anon_sym_ATtry] = ACTIONS(2468), + [anon_sym___try] = ACTIONS(2466), + [anon_sym_ATthrow] = ACTIONS(2468), + [anon_sym_ATselector] = ACTIONS(2468), + [anon_sym_ATavailable] = ACTIONS(2468), + [anon_sym___builtin_available] = ACTIONS(2466), + [anon_sym_va_arg] = ACTIONS(2466), + [anon_sym_ATencode] = ACTIONS(2468), + [anon_sym_ATsynchronized] = ACTIONS(2468), + [anon_sym_BOOL] = ACTIONS(2466), + [anon_sym_IMP] = ACTIONS(2466), + [anon_sym_SEL] = ACTIONS(2466), + [anon_sym_Class] = ACTIONS(2466), + [anon_sym_id] = ACTIONS(2466), + }, + [227] = { + [sym_identifier] = ACTIONS(2470), + [aux_sym_preproc_include_token1] = ACTIONS(2470), + [aux_sym_preproc_include_token2] = ACTIONS(2470), + [aux_sym_preproc_def_token1] = ACTIONS(2470), + [aux_sym_preproc_if_token1] = ACTIONS(2470), + [aux_sym_preproc_if_token2] = ACTIONS(2470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2470), + [aux_sym_preproc_else_token1] = ACTIONS(2470), + [aux_sym_preproc_elif_token1] = ACTIONS(2470), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2470), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2470), + [sym_preproc_directive] = ACTIONS(2470), + [anon_sym_LPAREN2] = ACTIONS(2472), + [anon_sym_BANG] = ACTIONS(2472), + [anon_sym_TILDE] = ACTIONS(2472), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_CARET] = ACTIONS(2472), + [anon_sym_AMP] = ACTIONS(2472), + [anon_sym_SEMI] = ACTIONS(2472), + [anon_sym___extension__] = ACTIONS(2470), + [anon_sym_typedef] = ACTIONS(2470), + [anon_sym_extern] = ACTIONS(2470), + [anon_sym___attribute__] = ACTIONS(2470), + [anon_sym___attribute] = ACTIONS(2470), + [anon_sym_noreturn] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2472), + [anon_sym___declspec] = ACTIONS(2470), + [anon_sym___cdecl] = ACTIONS(2470), + [anon_sym___clrcall] = ACTIONS(2470), + [anon_sym___stdcall] = ACTIONS(2470), + [anon_sym___fastcall] = ACTIONS(2470), + [anon_sym___thiscall] = ACTIONS(2470), + [anon_sym___vectorcall] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2472), + [anon_sym_signed] = ACTIONS(2470), + [anon_sym_unsigned] = ACTIONS(2470), + [anon_sym_long] = ACTIONS(2470), + [anon_sym_short] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_ATautoreleasepool] = ACTIONS(2472), + [anon_sym_auto] = ACTIONS(2470), + [anon_sym_register] = ACTIONS(2470), + [anon_sym_inline] = ACTIONS(2470), + [anon_sym___inline] = ACTIONS(2470), + [anon_sym___inline__] = ACTIONS(2470), + [anon_sym___forceinline] = ACTIONS(2470), + [anon_sym_thread_local] = ACTIONS(2470), + [anon_sym___thread] = ACTIONS(2470), + [anon_sym_CG_EXTERN] = ACTIONS(2470), + [anon_sym_CG_INLINE] = ACTIONS(2470), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2470), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2470), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2470), + [anon_sym_IBOutlet] = ACTIONS(2470), + [anon_sym_IBInspectable] = ACTIONS(2470), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2470), + [anon_sym_NS_INLINE] = ACTIONS(2470), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2470), + [anon_sym_OBJC_EXPORT] = ACTIONS(2470), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2470), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_constexpr] = ACTIONS(2470), + [anon_sym_volatile] = ACTIONS(2470), + [anon_sym_restrict] = ACTIONS(2470), + [anon_sym___restrict__] = ACTIONS(2470), + [anon_sym__Atomic] = ACTIONS(2470), + [anon_sym__Noreturn] = ACTIONS(2470), + [anon_sym__Nonnull] = ACTIONS(2470), + [anon_sym_nullable] = ACTIONS(2470), + [anon_sym__Complex] = ACTIONS(2470), + [anon_sym__Nullable] = ACTIONS(2470), + [anon_sym__Nullable_result] = ACTIONS(2470), + [anon_sym__Null_unspecified] = ACTIONS(2470), + [anon_sym___autoreleasing] = ACTIONS(2470), + [anon_sym___block] = ACTIONS(2470), + [anon_sym___bridge] = ACTIONS(2470), + [anon_sym___bridge_retained] = ACTIONS(2470), + [anon_sym___bridge_transfer] = ACTIONS(2470), + [anon_sym___complex] = ACTIONS(2470), + [anon_sym___const] = ACTIONS(2470), + [anon_sym___imag] = ACTIONS(2470), + [anon_sym___kindof] = ACTIONS(2470), + [anon_sym___nonnull] = ACTIONS(2470), + [anon_sym___nullable] = ACTIONS(2470), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2470), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2470), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2470), + [anon_sym___real] = ACTIONS(2470), + [anon_sym___strong] = ACTIONS(2470), + [anon_sym___unsafe_unretained] = ACTIONS(2470), + [anon_sym___unused] = ACTIONS(2470), + [anon_sym___weak] = ACTIONS(2470), + [anon_sym_alignas] = ACTIONS(2470), + [anon_sym__Alignas] = ACTIONS(2470), + [sym_primitive_type] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [anon_sym_struct] = ACTIONS(2470), + [anon_sym_union] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_else] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_case] = ACTIONS(2470), + [anon_sym_default] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_in] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_goto] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2472), + [anon_sym_PLUS_PLUS] = ACTIONS(2472), + [anon_sym_sizeof] = ACTIONS(2470), + [anon_sym___alignof__] = ACTIONS(2470), + [anon_sym___alignof] = ACTIONS(2470), + [anon_sym__alignof] = ACTIONS(2470), + [anon_sym_alignof] = ACTIONS(2470), + [anon_sym__Alignof] = ACTIONS(2470), + [anon_sym_offsetof] = ACTIONS(2470), + [anon_sym__Generic] = ACTIONS(2470), + [anon_sym_asm] = ACTIONS(2470), + [anon_sym___asm__] = ACTIONS(2470), + [anon_sym___asm] = ACTIONS(2470), + [sym_number_literal] = ACTIONS(2472), + [anon_sym_L_SQUOTE] = ACTIONS(2472), + [anon_sym_u_SQUOTE] = ACTIONS(2472), + [anon_sym_U_SQUOTE] = ACTIONS(2472), + [anon_sym_u8_SQUOTE] = ACTIONS(2472), + [anon_sym_SQUOTE] = ACTIONS(2472), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2472), + [anon_sym_L_DQUOTE] = ACTIONS(2472), + [anon_sym_u_DQUOTE] = ACTIONS(2472), + [anon_sym_U_DQUOTE] = ACTIONS(2472), + [anon_sym_u8_DQUOTE] = ACTIONS(2472), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [anon_sym_NULL] = ACTIONS(2470), + [anon_sym_nullptr] = ACTIONS(2470), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2470), + [anon_sym___typeof] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_ATimport] = ACTIONS(2472), + [aux_sym_preproc_undef_token1] = ACTIONS(2470), + [anon_sym_POUND] = ACTIONS(2470), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2470), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2470), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2470), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2470), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2470), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2470), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2470), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2470), + [anon_sym_NS_AVAILABLE] = ACTIONS(2470), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2470), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_API_AVAILABLE] = ACTIONS(2470), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_API_DEPRECATED] = ACTIONS(2470), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2470), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2470), + [anon_sym___deprecated_msg] = ACTIONS(2470), + [anon_sym___deprecated_enum_msg] = ACTIONS(2470), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2470), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2470), + [anon_sym_ATprotocol] = ACTIONS(2472), + [anon_sym_ATinterface] = ACTIONS(2472), + [anon_sym_ATimplementation] = ACTIONS(2472), + [anon_sym_ATcompatibility_alias] = ACTIONS(2472), + [anon_sym_ATsynthesize] = ACTIONS(2472), + [anon_sym_ATdynamic] = ACTIONS(2472), + [anon_sym_ATtry] = ACTIONS(2472), + [anon_sym___try] = ACTIONS(2470), + [anon_sym_ATthrow] = ACTIONS(2472), + [anon_sym_ATselector] = ACTIONS(2472), + [anon_sym_ATavailable] = ACTIONS(2472), + [anon_sym___builtin_available] = ACTIONS(2470), + [anon_sym_va_arg] = ACTIONS(2470), + [anon_sym_ATencode] = ACTIONS(2472), + [anon_sym_ATsynchronized] = ACTIONS(2472), + [anon_sym_BOOL] = ACTIONS(2470), + [anon_sym_IMP] = ACTIONS(2470), + [anon_sym_SEL] = ACTIONS(2470), + [anon_sym_Class] = ACTIONS(2470), + [anon_sym_id] = ACTIONS(2470), + }, + [228] = { + [sym_identifier] = ACTIONS(2474), + [aux_sym_preproc_include_token1] = ACTIONS(2474), + [aux_sym_preproc_include_token2] = ACTIONS(2474), + [aux_sym_preproc_def_token1] = ACTIONS(2474), + [aux_sym_preproc_if_token1] = ACTIONS(2474), + [aux_sym_preproc_if_token2] = ACTIONS(2474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2474), + [aux_sym_preproc_else_token1] = ACTIONS(2474), + [aux_sym_preproc_elif_token1] = ACTIONS(2474), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2474), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2474), + [sym_preproc_directive] = ACTIONS(2474), + [anon_sym_LPAREN2] = ACTIONS(2476), + [anon_sym_BANG] = ACTIONS(2476), + [anon_sym_TILDE] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2474), + [anon_sym_PLUS] = ACTIONS(2474), + [anon_sym_STAR] = ACTIONS(2476), + [anon_sym_CARET] = ACTIONS(2476), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2476), + [anon_sym___extension__] = ACTIONS(2474), + [anon_sym_typedef] = ACTIONS(2474), + [anon_sym_extern] = ACTIONS(2474), + [anon_sym___attribute__] = ACTIONS(2474), + [anon_sym___attribute] = ACTIONS(2474), + [anon_sym_noreturn] = ACTIONS(2474), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym___declspec] = ACTIONS(2474), + [anon_sym___cdecl] = ACTIONS(2474), + [anon_sym___clrcall] = ACTIONS(2474), + [anon_sym___stdcall] = ACTIONS(2474), + [anon_sym___fastcall] = ACTIONS(2474), + [anon_sym___thiscall] = ACTIONS(2474), + [anon_sym___vectorcall] = ACTIONS(2474), + [anon_sym_LBRACE] = ACTIONS(2476), + [anon_sym_signed] = ACTIONS(2474), + [anon_sym_unsigned] = ACTIONS(2474), + [anon_sym_long] = ACTIONS(2474), + [anon_sym_short] = ACTIONS(2474), + [anon_sym_static] = ACTIONS(2474), + [anon_sym_ATautoreleasepool] = ACTIONS(2476), + [anon_sym_auto] = ACTIONS(2474), + [anon_sym_register] = ACTIONS(2474), + [anon_sym_inline] = ACTIONS(2474), + [anon_sym___inline] = ACTIONS(2474), + [anon_sym___inline__] = ACTIONS(2474), + [anon_sym___forceinline] = ACTIONS(2474), + [anon_sym_thread_local] = ACTIONS(2474), + [anon_sym___thread] = ACTIONS(2474), + [anon_sym_CG_EXTERN] = ACTIONS(2474), + [anon_sym_CG_INLINE] = ACTIONS(2474), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2474), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2474), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2474), + [anon_sym_IBOutlet] = ACTIONS(2474), + [anon_sym_IBInspectable] = ACTIONS(2474), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2474), + [anon_sym_NS_INLINE] = ACTIONS(2474), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2474), + [anon_sym_OBJC_EXPORT] = ACTIONS(2474), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2474), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2474), + [anon_sym_const] = ACTIONS(2474), + [anon_sym_constexpr] = ACTIONS(2474), + [anon_sym_volatile] = ACTIONS(2474), + [anon_sym_restrict] = ACTIONS(2474), + [anon_sym___restrict__] = ACTIONS(2474), + [anon_sym__Atomic] = ACTIONS(2474), + [anon_sym__Noreturn] = ACTIONS(2474), + [anon_sym__Nonnull] = ACTIONS(2474), + [anon_sym_nullable] = ACTIONS(2474), + [anon_sym__Complex] = ACTIONS(2474), + [anon_sym__Nullable] = ACTIONS(2474), + [anon_sym__Nullable_result] = ACTIONS(2474), + [anon_sym__Null_unspecified] = ACTIONS(2474), + [anon_sym___autoreleasing] = ACTIONS(2474), + [anon_sym___block] = ACTIONS(2474), + [anon_sym___bridge] = ACTIONS(2474), + [anon_sym___bridge_retained] = ACTIONS(2474), + [anon_sym___bridge_transfer] = ACTIONS(2474), + [anon_sym___complex] = ACTIONS(2474), + [anon_sym___const] = ACTIONS(2474), + [anon_sym___imag] = ACTIONS(2474), + [anon_sym___kindof] = ACTIONS(2474), + [anon_sym___nonnull] = ACTIONS(2474), + [anon_sym___nullable] = ACTIONS(2474), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2474), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2474), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2474), + [anon_sym___real] = ACTIONS(2474), + [anon_sym___strong] = ACTIONS(2474), + [anon_sym___unsafe_unretained] = ACTIONS(2474), + [anon_sym___unused] = ACTIONS(2474), + [anon_sym___weak] = ACTIONS(2474), + [anon_sym_alignas] = ACTIONS(2474), + [anon_sym__Alignas] = ACTIONS(2474), + [sym_primitive_type] = ACTIONS(2474), + [anon_sym_enum] = ACTIONS(2474), + [anon_sym_struct] = ACTIONS(2474), + [anon_sym_union] = ACTIONS(2474), + [anon_sym_if] = ACTIONS(2474), + [anon_sym_else] = ACTIONS(2474), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_case] = ACTIONS(2474), + [anon_sym_default] = ACTIONS(2474), + [anon_sym_while] = ACTIONS(2474), + [anon_sym_do] = ACTIONS(2474), + [anon_sym_for] = ACTIONS(2474), + [anon_sym_in] = ACTIONS(2474), + [anon_sym_return] = ACTIONS(2474), + [anon_sym_break] = ACTIONS(2474), + [anon_sym_continue] = ACTIONS(2474), + [anon_sym_goto] = ACTIONS(2474), + [anon_sym_DASH_DASH] = ACTIONS(2476), + [anon_sym_PLUS_PLUS] = ACTIONS(2476), + [anon_sym_sizeof] = ACTIONS(2474), + [anon_sym___alignof__] = ACTIONS(2474), + [anon_sym___alignof] = ACTIONS(2474), + [anon_sym__alignof] = ACTIONS(2474), + [anon_sym_alignof] = ACTIONS(2474), + [anon_sym__Alignof] = ACTIONS(2474), + [anon_sym_offsetof] = ACTIONS(2474), + [anon_sym__Generic] = ACTIONS(2474), + [anon_sym_asm] = ACTIONS(2474), + [anon_sym___asm__] = ACTIONS(2474), + [anon_sym___asm] = ACTIONS(2474), + [sym_number_literal] = ACTIONS(2476), + [anon_sym_L_SQUOTE] = ACTIONS(2476), + [anon_sym_u_SQUOTE] = ACTIONS(2476), + [anon_sym_U_SQUOTE] = ACTIONS(2476), + [anon_sym_u8_SQUOTE] = ACTIONS(2476), + [anon_sym_SQUOTE] = ACTIONS(2476), + [anon_sym_AT] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_L_DQUOTE] = ACTIONS(2476), + [anon_sym_u_DQUOTE] = ACTIONS(2476), + [anon_sym_U_DQUOTE] = ACTIONS(2476), + [anon_sym_u8_DQUOTE] = ACTIONS(2476), + [sym_true] = ACTIONS(2474), + [sym_false] = ACTIONS(2474), + [anon_sym_NULL] = ACTIONS(2474), + [anon_sym_nullptr] = ACTIONS(2474), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2474), + [anon_sym___typeof] = ACTIONS(2474), + [anon_sym_typeof] = ACTIONS(2474), + [anon_sym_ATimport] = ACTIONS(2476), + [aux_sym_preproc_undef_token1] = ACTIONS(2474), + [anon_sym_POUND] = ACTIONS(2474), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2474), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2474), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2474), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2474), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2474), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2474), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2474), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2474), + [anon_sym_NS_AVAILABLE] = ACTIONS(2474), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2474), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_API_AVAILABLE] = ACTIONS(2474), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_API_DEPRECATED] = ACTIONS(2474), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2474), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2474), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2474), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2474), + [anon_sym___deprecated_msg] = ACTIONS(2474), + [anon_sym___deprecated_enum_msg] = ACTIONS(2474), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2474), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2474), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2474), + [anon_sym_ATprotocol] = ACTIONS(2476), + [anon_sym_ATinterface] = ACTIONS(2476), + [anon_sym_ATimplementation] = ACTIONS(2476), + [anon_sym_ATcompatibility_alias] = ACTIONS(2476), + [anon_sym_ATsynthesize] = ACTIONS(2476), + [anon_sym_ATdynamic] = ACTIONS(2476), + [anon_sym_ATtry] = ACTIONS(2476), + [anon_sym___try] = ACTIONS(2474), + [anon_sym_ATthrow] = ACTIONS(2476), + [anon_sym_ATselector] = ACTIONS(2476), + [anon_sym_ATavailable] = ACTIONS(2476), + [anon_sym___builtin_available] = ACTIONS(2474), + [anon_sym_va_arg] = ACTIONS(2474), + [anon_sym_ATencode] = ACTIONS(2476), + [anon_sym_ATsynchronized] = ACTIONS(2476), + [anon_sym_BOOL] = ACTIONS(2474), + [anon_sym_IMP] = ACTIONS(2474), + [anon_sym_SEL] = ACTIONS(2474), + [anon_sym_Class] = ACTIONS(2474), + [anon_sym_id] = ACTIONS(2474), + }, + [229] = { + [sym_identifier] = ACTIONS(2478), + [aux_sym_preproc_include_token1] = ACTIONS(2478), + [aux_sym_preproc_include_token2] = ACTIONS(2478), + [aux_sym_preproc_def_token1] = ACTIONS(2478), + [aux_sym_preproc_if_token1] = ACTIONS(2478), + [aux_sym_preproc_if_token2] = ACTIONS(2478), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2478), + [aux_sym_preproc_else_token1] = ACTIONS(2478), + [aux_sym_preproc_elif_token1] = ACTIONS(2478), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2478), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2478), + [sym_preproc_directive] = ACTIONS(2478), + [anon_sym_LPAREN2] = ACTIONS(2480), + [anon_sym_BANG] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2478), + [anon_sym_PLUS] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2480), + [anon_sym_CARET] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2480), + [anon_sym_SEMI] = ACTIONS(2480), + [anon_sym___extension__] = ACTIONS(2478), + [anon_sym_typedef] = ACTIONS(2478), + [anon_sym_extern] = ACTIONS(2478), + [anon_sym___attribute__] = ACTIONS(2478), + [anon_sym___attribute] = ACTIONS(2478), + [anon_sym_noreturn] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2480), + [anon_sym___declspec] = ACTIONS(2478), + [anon_sym___cdecl] = ACTIONS(2478), + [anon_sym___clrcall] = ACTIONS(2478), + [anon_sym___stdcall] = ACTIONS(2478), + [anon_sym___fastcall] = ACTIONS(2478), + [anon_sym___thiscall] = ACTIONS(2478), + [anon_sym___vectorcall] = ACTIONS(2478), + [anon_sym_LBRACE] = ACTIONS(2480), + [anon_sym_signed] = ACTIONS(2478), + [anon_sym_unsigned] = ACTIONS(2478), + [anon_sym_long] = ACTIONS(2478), + [anon_sym_short] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_ATautoreleasepool] = ACTIONS(2480), + [anon_sym_auto] = ACTIONS(2478), + [anon_sym_register] = ACTIONS(2478), + [anon_sym_inline] = ACTIONS(2478), + [anon_sym___inline] = ACTIONS(2478), + [anon_sym___inline__] = ACTIONS(2478), + [anon_sym___forceinline] = ACTIONS(2478), + [anon_sym_thread_local] = ACTIONS(2478), + [anon_sym___thread] = ACTIONS(2478), + [anon_sym_CG_EXTERN] = ACTIONS(2478), + [anon_sym_CG_INLINE] = ACTIONS(2478), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2478), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2478), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2478), + [anon_sym_IBOutlet] = ACTIONS(2478), + [anon_sym_IBInspectable] = ACTIONS(2478), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2478), + [anon_sym_NS_INLINE] = ACTIONS(2478), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2478), + [anon_sym_OBJC_EXPORT] = ACTIONS(2478), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2478), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [anon_sym_constexpr] = ACTIONS(2478), + [anon_sym_volatile] = ACTIONS(2478), + [anon_sym_restrict] = ACTIONS(2478), + [anon_sym___restrict__] = ACTIONS(2478), + [anon_sym__Atomic] = ACTIONS(2478), + [anon_sym__Noreturn] = ACTIONS(2478), + [anon_sym__Nonnull] = ACTIONS(2478), + [anon_sym_nullable] = ACTIONS(2478), + [anon_sym__Complex] = ACTIONS(2478), + [anon_sym__Nullable] = ACTIONS(2478), + [anon_sym__Nullable_result] = ACTIONS(2478), + [anon_sym__Null_unspecified] = ACTIONS(2478), + [anon_sym___autoreleasing] = ACTIONS(2478), + [anon_sym___block] = ACTIONS(2478), + [anon_sym___bridge] = ACTIONS(2478), + [anon_sym___bridge_retained] = ACTIONS(2478), + [anon_sym___bridge_transfer] = ACTIONS(2478), + [anon_sym___complex] = ACTIONS(2478), + [anon_sym___const] = ACTIONS(2478), + [anon_sym___imag] = ACTIONS(2478), + [anon_sym___kindof] = ACTIONS(2478), + [anon_sym___nonnull] = ACTIONS(2478), + [anon_sym___nullable] = ACTIONS(2478), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2478), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2478), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2478), + [anon_sym___real] = ACTIONS(2478), + [anon_sym___strong] = ACTIONS(2478), + [anon_sym___unsafe_unretained] = ACTIONS(2478), + [anon_sym___unused] = ACTIONS(2478), + [anon_sym___weak] = ACTIONS(2478), + [anon_sym_alignas] = ACTIONS(2478), + [anon_sym__Alignas] = ACTIONS(2478), + [sym_primitive_type] = ACTIONS(2478), + [anon_sym_enum] = ACTIONS(2478), + [anon_sym_struct] = ACTIONS(2478), + [anon_sym_union] = ACTIONS(2478), + [anon_sym_if] = ACTIONS(2478), + [anon_sym_else] = ACTIONS(2478), + [anon_sym_switch] = ACTIONS(2478), + [anon_sym_case] = ACTIONS(2478), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2478), + [anon_sym_do] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_in] = ACTIONS(2478), + [anon_sym_return] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_goto] = ACTIONS(2478), + [anon_sym_DASH_DASH] = ACTIONS(2480), + [anon_sym_PLUS_PLUS] = ACTIONS(2480), + [anon_sym_sizeof] = ACTIONS(2478), + [anon_sym___alignof__] = ACTIONS(2478), + [anon_sym___alignof] = ACTIONS(2478), + [anon_sym__alignof] = ACTIONS(2478), + [anon_sym_alignof] = ACTIONS(2478), + [anon_sym__Alignof] = ACTIONS(2478), + [anon_sym_offsetof] = ACTIONS(2478), + [anon_sym__Generic] = ACTIONS(2478), + [anon_sym_asm] = ACTIONS(2478), + [anon_sym___asm__] = ACTIONS(2478), + [anon_sym___asm] = ACTIONS(2478), + [sym_number_literal] = ACTIONS(2480), + [anon_sym_L_SQUOTE] = ACTIONS(2480), + [anon_sym_u_SQUOTE] = ACTIONS(2480), + [anon_sym_U_SQUOTE] = ACTIONS(2480), + [anon_sym_u8_SQUOTE] = ACTIONS(2480), + [anon_sym_SQUOTE] = ACTIONS(2480), + [anon_sym_AT] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2480), + [anon_sym_L_DQUOTE] = ACTIONS(2480), + [anon_sym_u_DQUOTE] = ACTIONS(2480), + [anon_sym_U_DQUOTE] = ACTIONS(2480), + [anon_sym_u8_DQUOTE] = ACTIONS(2480), + [sym_true] = ACTIONS(2478), + [sym_false] = ACTIONS(2478), + [anon_sym_NULL] = ACTIONS(2478), + [anon_sym_nullptr] = ACTIONS(2478), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2478), + [anon_sym___typeof] = ACTIONS(2478), + [anon_sym_typeof] = ACTIONS(2478), + [anon_sym_ATimport] = ACTIONS(2480), + [aux_sym_preproc_undef_token1] = ACTIONS(2478), + [anon_sym_POUND] = ACTIONS(2478), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2478), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2478), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2478), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2478), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2478), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2478), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2478), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2478), + [anon_sym_NS_AVAILABLE] = ACTIONS(2478), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2478), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_API_AVAILABLE] = ACTIONS(2478), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_API_DEPRECATED] = ACTIONS(2478), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2478), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2478), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2478), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2478), + [anon_sym___deprecated_msg] = ACTIONS(2478), + [anon_sym___deprecated_enum_msg] = ACTIONS(2478), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2478), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2478), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2478), + [anon_sym_ATprotocol] = ACTIONS(2480), + [anon_sym_ATinterface] = ACTIONS(2480), + [anon_sym_ATimplementation] = ACTIONS(2480), + [anon_sym_ATcompatibility_alias] = ACTIONS(2480), + [anon_sym_ATsynthesize] = ACTIONS(2480), + [anon_sym_ATdynamic] = ACTIONS(2480), + [anon_sym_ATtry] = ACTIONS(2480), + [anon_sym___try] = ACTIONS(2478), + [anon_sym_ATthrow] = ACTIONS(2480), + [anon_sym_ATselector] = ACTIONS(2480), + [anon_sym_ATavailable] = ACTIONS(2480), + [anon_sym___builtin_available] = ACTIONS(2478), + [anon_sym_va_arg] = ACTIONS(2478), + [anon_sym_ATencode] = ACTIONS(2480), + [anon_sym_ATsynchronized] = ACTIONS(2480), + [anon_sym_BOOL] = ACTIONS(2478), + [anon_sym_IMP] = ACTIONS(2478), + [anon_sym_SEL] = ACTIONS(2478), + [anon_sym_Class] = ACTIONS(2478), + [anon_sym_id] = ACTIONS(2478), + }, + [230] = { + [sym_identifier] = ACTIONS(2482), + [aux_sym_preproc_include_token1] = ACTIONS(2482), + [aux_sym_preproc_include_token2] = ACTIONS(2482), + [aux_sym_preproc_def_token1] = ACTIONS(2482), + [aux_sym_preproc_if_token1] = ACTIONS(2482), + [aux_sym_preproc_if_token2] = ACTIONS(2482), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2482), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2482), + [aux_sym_preproc_else_token1] = ACTIONS(2482), + [aux_sym_preproc_elif_token1] = ACTIONS(2482), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2482), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2482), + [sym_preproc_directive] = ACTIONS(2482), + [anon_sym_LPAREN2] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2484), + [anon_sym_TILDE] = ACTIONS(2484), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_STAR] = ACTIONS(2484), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym___extension__] = ACTIONS(2482), + [anon_sym_typedef] = ACTIONS(2482), + [anon_sym_extern] = ACTIONS(2482), + [anon_sym___attribute__] = ACTIONS(2482), + [anon_sym___attribute] = ACTIONS(2482), + [anon_sym_noreturn] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2484), + [anon_sym___declspec] = ACTIONS(2482), + [anon_sym___cdecl] = ACTIONS(2482), + [anon_sym___clrcall] = ACTIONS(2482), + [anon_sym___stdcall] = ACTIONS(2482), + [anon_sym___fastcall] = ACTIONS(2482), + [anon_sym___thiscall] = ACTIONS(2482), + [anon_sym___vectorcall] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_signed] = ACTIONS(2482), + [anon_sym_unsigned] = ACTIONS(2482), + [anon_sym_long] = ACTIONS(2482), + [anon_sym_short] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_ATautoreleasepool] = ACTIONS(2484), + [anon_sym_auto] = ACTIONS(2482), + [anon_sym_register] = ACTIONS(2482), + [anon_sym_inline] = ACTIONS(2482), + [anon_sym___inline] = ACTIONS(2482), + [anon_sym___inline__] = ACTIONS(2482), + [anon_sym___forceinline] = ACTIONS(2482), + [anon_sym_thread_local] = ACTIONS(2482), + [anon_sym___thread] = ACTIONS(2482), + [anon_sym_CG_EXTERN] = ACTIONS(2482), + [anon_sym_CG_INLINE] = ACTIONS(2482), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2482), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2482), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2482), + [anon_sym_IBOutlet] = ACTIONS(2482), + [anon_sym_IBInspectable] = ACTIONS(2482), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2482), + [anon_sym_NS_INLINE] = ACTIONS(2482), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2482), + [anon_sym_OBJC_EXPORT] = ACTIONS(2482), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2482), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2482), + [anon_sym_const] = ACTIONS(2482), + [anon_sym_constexpr] = ACTIONS(2482), + [anon_sym_volatile] = ACTIONS(2482), + [anon_sym_restrict] = ACTIONS(2482), + [anon_sym___restrict__] = ACTIONS(2482), + [anon_sym__Atomic] = ACTIONS(2482), + [anon_sym__Noreturn] = ACTIONS(2482), + [anon_sym__Nonnull] = ACTIONS(2482), + [anon_sym_nullable] = ACTIONS(2482), + [anon_sym__Complex] = ACTIONS(2482), + [anon_sym__Nullable] = ACTIONS(2482), + [anon_sym__Nullable_result] = ACTIONS(2482), + [anon_sym__Null_unspecified] = ACTIONS(2482), + [anon_sym___autoreleasing] = ACTIONS(2482), + [anon_sym___block] = ACTIONS(2482), + [anon_sym___bridge] = ACTIONS(2482), + [anon_sym___bridge_retained] = ACTIONS(2482), + [anon_sym___bridge_transfer] = ACTIONS(2482), + [anon_sym___complex] = ACTIONS(2482), + [anon_sym___const] = ACTIONS(2482), + [anon_sym___imag] = ACTIONS(2482), + [anon_sym___kindof] = ACTIONS(2482), + [anon_sym___nonnull] = ACTIONS(2482), + [anon_sym___nullable] = ACTIONS(2482), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2482), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2482), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2482), + [anon_sym___real] = ACTIONS(2482), + [anon_sym___strong] = ACTIONS(2482), + [anon_sym___unsafe_unretained] = ACTIONS(2482), + [anon_sym___unused] = ACTIONS(2482), + [anon_sym___weak] = ACTIONS(2482), + [anon_sym_alignas] = ACTIONS(2482), + [anon_sym__Alignas] = ACTIONS(2482), + [sym_primitive_type] = ACTIONS(2482), + [anon_sym_enum] = ACTIONS(2482), + [anon_sym_struct] = ACTIONS(2482), + [anon_sym_union] = ACTIONS(2482), + [anon_sym_if] = ACTIONS(2482), + [anon_sym_else] = ACTIONS(2482), + [anon_sym_switch] = ACTIONS(2482), + [anon_sym_case] = ACTIONS(2482), + [anon_sym_default] = ACTIONS(2482), + [anon_sym_while] = ACTIONS(2482), + [anon_sym_do] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2482), + [anon_sym_continue] = ACTIONS(2482), + [anon_sym_goto] = ACTIONS(2482), + [anon_sym_DASH_DASH] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(2484), + [anon_sym_sizeof] = ACTIONS(2482), + [anon_sym___alignof__] = ACTIONS(2482), + [anon_sym___alignof] = ACTIONS(2482), + [anon_sym__alignof] = ACTIONS(2482), + [anon_sym_alignof] = ACTIONS(2482), + [anon_sym__Alignof] = ACTIONS(2482), + [anon_sym_offsetof] = ACTIONS(2482), + [anon_sym__Generic] = ACTIONS(2482), + [anon_sym_asm] = ACTIONS(2482), + [anon_sym___asm__] = ACTIONS(2482), + [anon_sym___asm] = ACTIONS(2482), + [sym_number_literal] = ACTIONS(2484), + [anon_sym_L_SQUOTE] = ACTIONS(2484), + [anon_sym_u_SQUOTE] = ACTIONS(2484), + [anon_sym_U_SQUOTE] = ACTIONS(2484), + [anon_sym_u8_SQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [anon_sym_AT] = ACTIONS(2482), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_L_DQUOTE] = ACTIONS(2484), + [anon_sym_u_DQUOTE] = ACTIONS(2484), + [anon_sym_U_DQUOTE] = ACTIONS(2484), + [anon_sym_u8_DQUOTE] = ACTIONS(2484), + [sym_true] = ACTIONS(2482), + [sym_false] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_nullptr] = ACTIONS(2482), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2482), + [anon_sym___typeof] = ACTIONS(2482), + [anon_sym_typeof] = ACTIONS(2482), + [anon_sym_ATimport] = ACTIONS(2484), + [aux_sym_preproc_undef_token1] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2482), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2482), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2482), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2482), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2482), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2482), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2482), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2482), + [anon_sym_NS_AVAILABLE] = ACTIONS(2482), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2482), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_API_AVAILABLE] = ACTIONS(2482), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_API_DEPRECATED] = ACTIONS(2482), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2482), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2482), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2482), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2482), + [anon_sym___deprecated_msg] = ACTIONS(2482), + [anon_sym___deprecated_enum_msg] = ACTIONS(2482), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2482), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2482), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2482), + [anon_sym_ATprotocol] = ACTIONS(2484), + [anon_sym_ATinterface] = ACTIONS(2484), + [anon_sym_ATimplementation] = ACTIONS(2484), + [anon_sym_ATcompatibility_alias] = ACTIONS(2484), + [anon_sym_ATsynthesize] = ACTIONS(2484), + [anon_sym_ATdynamic] = ACTIONS(2484), + [anon_sym_ATtry] = ACTIONS(2484), + [anon_sym___try] = ACTIONS(2482), + [anon_sym_ATthrow] = ACTIONS(2484), + [anon_sym_ATselector] = ACTIONS(2484), + [anon_sym_ATavailable] = ACTIONS(2484), + [anon_sym___builtin_available] = ACTIONS(2482), + [anon_sym_va_arg] = ACTIONS(2482), + [anon_sym_ATencode] = ACTIONS(2484), + [anon_sym_ATsynchronized] = ACTIONS(2484), + [anon_sym_BOOL] = ACTIONS(2482), + [anon_sym_IMP] = ACTIONS(2482), + [anon_sym_SEL] = ACTIONS(2482), + [anon_sym_Class] = ACTIONS(2482), + [anon_sym_id] = ACTIONS(2482), + }, + [231] = { + [sym_identifier] = ACTIONS(2486), + [aux_sym_preproc_include_token1] = ACTIONS(2486), + [aux_sym_preproc_include_token2] = ACTIONS(2486), + [aux_sym_preproc_def_token1] = ACTIONS(2486), + [aux_sym_preproc_if_token1] = ACTIONS(2486), + [aux_sym_preproc_if_token2] = ACTIONS(2486), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2486), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2486), + [aux_sym_preproc_else_token1] = ACTIONS(2486), + [aux_sym_preproc_elif_token1] = ACTIONS(2486), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2486), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2486), + [sym_preproc_directive] = ACTIONS(2486), + [anon_sym_LPAREN2] = ACTIONS(2488), + [anon_sym_BANG] = ACTIONS(2488), + [anon_sym_TILDE] = ACTIONS(2488), + [anon_sym_DASH] = ACTIONS(2486), + [anon_sym_PLUS] = ACTIONS(2486), + [anon_sym_STAR] = ACTIONS(2488), + [anon_sym_CARET] = ACTIONS(2488), + [anon_sym_AMP] = ACTIONS(2488), + [anon_sym_SEMI] = ACTIONS(2488), + [anon_sym___extension__] = ACTIONS(2486), + [anon_sym_typedef] = ACTIONS(2486), + [anon_sym_extern] = ACTIONS(2486), + [anon_sym___attribute__] = ACTIONS(2486), + [anon_sym___attribute] = ACTIONS(2486), + [anon_sym_noreturn] = ACTIONS(2486), + [anon_sym_LBRACK] = ACTIONS(2488), + [anon_sym___declspec] = ACTIONS(2486), + [anon_sym___cdecl] = ACTIONS(2486), + [anon_sym___clrcall] = ACTIONS(2486), + [anon_sym___stdcall] = ACTIONS(2486), + [anon_sym___fastcall] = ACTIONS(2486), + [anon_sym___thiscall] = ACTIONS(2486), + [anon_sym___vectorcall] = ACTIONS(2486), + [anon_sym_LBRACE] = ACTIONS(2488), + [anon_sym_signed] = ACTIONS(2486), + [anon_sym_unsigned] = ACTIONS(2486), + [anon_sym_long] = ACTIONS(2486), + [anon_sym_short] = ACTIONS(2486), + [anon_sym_static] = ACTIONS(2486), + [anon_sym_ATautoreleasepool] = ACTIONS(2488), + [anon_sym_auto] = ACTIONS(2486), + [anon_sym_register] = ACTIONS(2486), + [anon_sym_inline] = ACTIONS(2486), + [anon_sym___inline] = ACTIONS(2486), + [anon_sym___inline__] = ACTIONS(2486), + [anon_sym___forceinline] = ACTIONS(2486), + [anon_sym_thread_local] = ACTIONS(2486), + [anon_sym___thread] = ACTIONS(2486), + [anon_sym_CG_EXTERN] = ACTIONS(2486), + [anon_sym_CG_INLINE] = ACTIONS(2486), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2486), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2486), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2486), + [anon_sym_IBOutlet] = ACTIONS(2486), + [anon_sym_IBInspectable] = ACTIONS(2486), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2486), + [anon_sym_NS_INLINE] = ACTIONS(2486), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2486), + [anon_sym_OBJC_EXPORT] = ACTIONS(2486), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2486), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2486), + [anon_sym_const] = ACTIONS(2486), + [anon_sym_constexpr] = ACTIONS(2486), + [anon_sym_volatile] = ACTIONS(2486), + [anon_sym_restrict] = ACTIONS(2486), + [anon_sym___restrict__] = ACTIONS(2486), + [anon_sym__Atomic] = ACTIONS(2486), + [anon_sym__Noreturn] = ACTIONS(2486), + [anon_sym__Nonnull] = ACTIONS(2486), + [anon_sym_nullable] = ACTIONS(2486), + [anon_sym__Complex] = ACTIONS(2486), + [anon_sym__Nullable] = ACTIONS(2486), + [anon_sym__Nullable_result] = ACTIONS(2486), + [anon_sym__Null_unspecified] = ACTIONS(2486), + [anon_sym___autoreleasing] = ACTIONS(2486), + [anon_sym___block] = ACTIONS(2486), + [anon_sym___bridge] = ACTIONS(2486), + [anon_sym___bridge_retained] = ACTIONS(2486), + [anon_sym___bridge_transfer] = ACTIONS(2486), + [anon_sym___complex] = ACTIONS(2486), + [anon_sym___const] = ACTIONS(2486), + [anon_sym___imag] = ACTIONS(2486), + [anon_sym___kindof] = ACTIONS(2486), + [anon_sym___nonnull] = ACTIONS(2486), + [anon_sym___nullable] = ACTIONS(2486), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2486), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2486), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2486), + [anon_sym___real] = ACTIONS(2486), + [anon_sym___strong] = ACTIONS(2486), + [anon_sym___unsafe_unretained] = ACTIONS(2486), + [anon_sym___unused] = ACTIONS(2486), + [anon_sym___weak] = ACTIONS(2486), + [anon_sym_alignas] = ACTIONS(2486), + [anon_sym__Alignas] = ACTIONS(2486), + [sym_primitive_type] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2486), + [anon_sym_struct] = ACTIONS(2486), + [anon_sym_union] = ACTIONS(2486), + [anon_sym_if] = ACTIONS(2486), + [anon_sym_else] = ACTIONS(2486), + [anon_sym_switch] = ACTIONS(2486), + [anon_sym_case] = ACTIONS(2486), + [anon_sym_default] = ACTIONS(2486), + [anon_sym_while] = ACTIONS(2486), + [anon_sym_do] = ACTIONS(2486), + [anon_sym_for] = ACTIONS(2486), + [anon_sym_in] = ACTIONS(2486), + [anon_sym_return] = ACTIONS(2486), + [anon_sym_break] = ACTIONS(2486), + [anon_sym_continue] = ACTIONS(2486), + [anon_sym_goto] = ACTIONS(2486), + [anon_sym_DASH_DASH] = ACTIONS(2488), + [anon_sym_PLUS_PLUS] = ACTIONS(2488), + [anon_sym_sizeof] = ACTIONS(2486), + [anon_sym___alignof__] = ACTIONS(2486), + [anon_sym___alignof] = ACTIONS(2486), + [anon_sym__alignof] = ACTIONS(2486), + [anon_sym_alignof] = ACTIONS(2486), + [anon_sym__Alignof] = ACTIONS(2486), + [anon_sym_offsetof] = ACTIONS(2486), + [anon_sym__Generic] = ACTIONS(2486), + [anon_sym_asm] = ACTIONS(2486), + [anon_sym___asm__] = ACTIONS(2486), + [anon_sym___asm] = ACTIONS(2486), + [sym_number_literal] = ACTIONS(2488), + [anon_sym_L_SQUOTE] = ACTIONS(2488), + [anon_sym_u_SQUOTE] = ACTIONS(2488), + [anon_sym_U_SQUOTE] = ACTIONS(2488), + [anon_sym_u8_SQUOTE] = ACTIONS(2488), + [anon_sym_SQUOTE] = ACTIONS(2488), + [anon_sym_AT] = ACTIONS(2486), + [anon_sym_DQUOTE] = ACTIONS(2488), + [anon_sym_L_DQUOTE] = ACTIONS(2488), + [anon_sym_u_DQUOTE] = ACTIONS(2488), + [anon_sym_U_DQUOTE] = ACTIONS(2488), + [anon_sym_u8_DQUOTE] = ACTIONS(2488), + [sym_true] = ACTIONS(2486), + [sym_false] = ACTIONS(2486), + [anon_sym_NULL] = ACTIONS(2486), + [anon_sym_nullptr] = ACTIONS(2486), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2486), + [anon_sym___typeof] = ACTIONS(2486), + [anon_sym_typeof] = ACTIONS(2486), + [anon_sym_ATimport] = ACTIONS(2488), + [aux_sym_preproc_undef_token1] = ACTIONS(2486), + [anon_sym_POUND] = ACTIONS(2486), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2486), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2486), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2486), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2486), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2486), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2486), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2486), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2486), + [anon_sym_NS_AVAILABLE] = ACTIONS(2486), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2486), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_API_AVAILABLE] = ACTIONS(2486), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_API_DEPRECATED] = ACTIONS(2486), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2486), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2486), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2486), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2486), + [anon_sym___deprecated_msg] = ACTIONS(2486), + [anon_sym___deprecated_enum_msg] = ACTIONS(2486), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2486), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2486), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2486), + [anon_sym_ATprotocol] = ACTIONS(2488), + [anon_sym_ATinterface] = ACTIONS(2488), + [anon_sym_ATimplementation] = ACTIONS(2488), + [anon_sym_ATcompatibility_alias] = ACTIONS(2488), + [anon_sym_ATsynthesize] = ACTIONS(2488), + [anon_sym_ATdynamic] = ACTIONS(2488), + [anon_sym_ATtry] = ACTIONS(2488), + [anon_sym___try] = ACTIONS(2486), + [anon_sym_ATthrow] = ACTIONS(2488), + [anon_sym_ATselector] = ACTIONS(2488), + [anon_sym_ATavailable] = ACTIONS(2488), + [anon_sym___builtin_available] = ACTIONS(2486), + [anon_sym_va_arg] = ACTIONS(2486), + [anon_sym_ATencode] = ACTIONS(2488), + [anon_sym_ATsynchronized] = ACTIONS(2488), + [anon_sym_BOOL] = ACTIONS(2486), + [anon_sym_IMP] = ACTIONS(2486), + [anon_sym_SEL] = ACTIONS(2486), + [anon_sym_Class] = ACTIONS(2486), + [anon_sym_id] = ACTIONS(2486), + }, + [232] = { + [sym_identifier] = ACTIONS(2490), + [aux_sym_preproc_include_token1] = ACTIONS(2490), + [aux_sym_preproc_include_token2] = ACTIONS(2490), + [aux_sym_preproc_def_token1] = ACTIONS(2490), + [aux_sym_preproc_if_token1] = ACTIONS(2490), + [aux_sym_preproc_if_token2] = ACTIONS(2490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2490), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2490), + [aux_sym_preproc_else_token1] = ACTIONS(2490), + [aux_sym_preproc_elif_token1] = ACTIONS(2490), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2490), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2490), + [sym_preproc_directive] = ACTIONS(2490), + [anon_sym_LPAREN2] = ACTIONS(2492), + [anon_sym_BANG] = ACTIONS(2492), + [anon_sym_TILDE] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2490), + [anon_sym_PLUS] = ACTIONS(2490), + [anon_sym_STAR] = ACTIONS(2492), + [anon_sym_CARET] = ACTIONS(2492), + [anon_sym_AMP] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym___extension__] = ACTIONS(2490), + [anon_sym_typedef] = ACTIONS(2490), + [anon_sym_extern] = ACTIONS(2490), + [anon_sym___attribute__] = ACTIONS(2490), + [anon_sym___attribute] = ACTIONS(2490), + [anon_sym_noreturn] = ACTIONS(2490), + [anon_sym_LBRACK] = ACTIONS(2492), + [anon_sym___declspec] = ACTIONS(2490), + [anon_sym___cdecl] = ACTIONS(2490), + [anon_sym___clrcall] = ACTIONS(2490), + [anon_sym___stdcall] = ACTIONS(2490), + [anon_sym___fastcall] = ACTIONS(2490), + [anon_sym___thiscall] = ACTIONS(2490), + [anon_sym___vectorcall] = ACTIONS(2490), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_signed] = ACTIONS(2490), + [anon_sym_unsigned] = ACTIONS(2490), + [anon_sym_long] = ACTIONS(2490), + [anon_sym_short] = ACTIONS(2490), + [anon_sym_static] = ACTIONS(2490), + [anon_sym_ATautoreleasepool] = ACTIONS(2492), + [anon_sym_auto] = ACTIONS(2490), + [anon_sym_register] = ACTIONS(2490), + [anon_sym_inline] = ACTIONS(2490), + [anon_sym___inline] = ACTIONS(2490), + [anon_sym___inline__] = ACTIONS(2490), + [anon_sym___forceinline] = ACTIONS(2490), + [anon_sym_thread_local] = ACTIONS(2490), + [anon_sym___thread] = ACTIONS(2490), + [anon_sym_CG_EXTERN] = ACTIONS(2490), + [anon_sym_CG_INLINE] = ACTIONS(2490), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2490), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2490), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2490), + [anon_sym_IBOutlet] = ACTIONS(2490), + [anon_sym_IBInspectable] = ACTIONS(2490), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2490), + [anon_sym_NS_INLINE] = ACTIONS(2490), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2490), + [anon_sym_OBJC_EXPORT] = ACTIONS(2490), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2490), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(2490), + [anon_sym_constexpr] = ACTIONS(2490), + [anon_sym_volatile] = ACTIONS(2490), + [anon_sym_restrict] = ACTIONS(2490), + [anon_sym___restrict__] = ACTIONS(2490), + [anon_sym__Atomic] = ACTIONS(2490), + [anon_sym__Noreturn] = ACTIONS(2490), + [anon_sym__Nonnull] = ACTIONS(2490), + [anon_sym_nullable] = ACTIONS(2490), + [anon_sym__Complex] = ACTIONS(2490), + [anon_sym__Nullable] = ACTIONS(2490), + [anon_sym__Nullable_result] = ACTIONS(2490), + [anon_sym__Null_unspecified] = ACTIONS(2490), + [anon_sym___autoreleasing] = ACTIONS(2490), + [anon_sym___block] = ACTIONS(2490), + [anon_sym___bridge] = ACTIONS(2490), + [anon_sym___bridge_retained] = ACTIONS(2490), + [anon_sym___bridge_transfer] = ACTIONS(2490), + [anon_sym___complex] = ACTIONS(2490), + [anon_sym___const] = ACTIONS(2490), + [anon_sym___imag] = ACTIONS(2490), + [anon_sym___kindof] = ACTIONS(2490), + [anon_sym___nonnull] = ACTIONS(2490), + [anon_sym___nullable] = ACTIONS(2490), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2490), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2490), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2490), + [anon_sym___real] = ACTIONS(2490), + [anon_sym___strong] = ACTIONS(2490), + [anon_sym___unsafe_unretained] = ACTIONS(2490), + [anon_sym___unused] = ACTIONS(2490), + [anon_sym___weak] = ACTIONS(2490), + [anon_sym_alignas] = ACTIONS(2490), + [anon_sym__Alignas] = ACTIONS(2490), + [sym_primitive_type] = ACTIONS(2490), + [anon_sym_enum] = ACTIONS(2490), + [anon_sym_struct] = ACTIONS(2490), + [anon_sym_union] = ACTIONS(2490), + [anon_sym_if] = ACTIONS(2490), + [anon_sym_else] = ACTIONS(2490), + [anon_sym_switch] = ACTIONS(2490), + [anon_sym_case] = ACTIONS(2490), + [anon_sym_default] = ACTIONS(2490), + [anon_sym_while] = ACTIONS(2490), + [anon_sym_do] = ACTIONS(2490), + [anon_sym_for] = ACTIONS(2490), + [anon_sym_in] = ACTIONS(2490), + [anon_sym_return] = ACTIONS(2490), + [anon_sym_break] = ACTIONS(2490), + [anon_sym_continue] = ACTIONS(2490), + [anon_sym_goto] = ACTIONS(2490), + [anon_sym_DASH_DASH] = ACTIONS(2492), + [anon_sym_PLUS_PLUS] = ACTIONS(2492), + [anon_sym_sizeof] = ACTIONS(2490), + [anon_sym___alignof__] = ACTIONS(2490), + [anon_sym___alignof] = ACTIONS(2490), + [anon_sym__alignof] = ACTIONS(2490), + [anon_sym_alignof] = ACTIONS(2490), + [anon_sym__Alignof] = ACTIONS(2490), + [anon_sym_offsetof] = ACTIONS(2490), + [anon_sym__Generic] = ACTIONS(2490), + [anon_sym_asm] = ACTIONS(2490), + [anon_sym___asm__] = ACTIONS(2490), + [anon_sym___asm] = ACTIONS(2490), + [sym_number_literal] = ACTIONS(2492), + [anon_sym_L_SQUOTE] = ACTIONS(2492), + [anon_sym_u_SQUOTE] = ACTIONS(2492), + [anon_sym_U_SQUOTE] = ACTIONS(2492), + [anon_sym_u8_SQUOTE] = ACTIONS(2492), + [anon_sym_SQUOTE] = ACTIONS(2492), + [anon_sym_AT] = ACTIONS(2490), + [anon_sym_DQUOTE] = ACTIONS(2492), + [anon_sym_L_DQUOTE] = ACTIONS(2492), + [anon_sym_u_DQUOTE] = ACTIONS(2492), + [anon_sym_U_DQUOTE] = ACTIONS(2492), + [anon_sym_u8_DQUOTE] = ACTIONS(2492), + [sym_true] = ACTIONS(2490), + [sym_false] = ACTIONS(2490), + [anon_sym_NULL] = ACTIONS(2490), + [anon_sym_nullptr] = ACTIONS(2490), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2490), + [anon_sym___typeof] = ACTIONS(2490), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_ATimport] = ACTIONS(2492), + [aux_sym_preproc_undef_token1] = ACTIONS(2490), + [anon_sym_POUND] = ACTIONS(2490), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2490), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2490), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2490), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2490), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2490), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2490), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2490), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2490), + [anon_sym_NS_AVAILABLE] = ACTIONS(2490), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2490), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_API_AVAILABLE] = ACTIONS(2490), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_API_DEPRECATED] = ACTIONS(2490), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2490), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2490), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2490), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2490), + [anon_sym___deprecated_msg] = ACTIONS(2490), + [anon_sym___deprecated_enum_msg] = ACTIONS(2490), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2490), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2490), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2490), + [anon_sym_ATprotocol] = ACTIONS(2492), + [anon_sym_ATinterface] = ACTIONS(2492), + [anon_sym_ATimplementation] = ACTIONS(2492), + [anon_sym_ATcompatibility_alias] = ACTIONS(2492), + [anon_sym_ATsynthesize] = ACTIONS(2492), + [anon_sym_ATdynamic] = ACTIONS(2492), + [anon_sym_ATtry] = ACTIONS(2492), + [anon_sym___try] = ACTIONS(2490), + [anon_sym_ATthrow] = ACTIONS(2492), + [anon_sym_ATselector] = ACTIONS(2492), + [anon_sym_ATavailable] = ACTIONS(2492), + [anon_sym___builtin_available] = ACTIONS(2490), + [anon_sym_va_arg] = ACTIONS(2490), + [anon_sym_ATencode] = ACTIONS(2492), + [anon_sym_ATsynchronized] = ACTIONS(2492), + [anon_sym_BOOL] = ACTIONS(2490), + [anon_sym_IMP] = ACTIONS(2490), + [anon_sym_SEL] = ACTIONS(2490), + [anon_sym_Class] = ACTIONS(2490), + [anon_sym_id] = ACTIONS(2490), + }, + [233] = { + [sym_identifier] = ACTIONS(2494), + [aux_sym_preproc_include_token1] = ACTIONS(2494), + [aux_sym_preproc_include_token2] = ACTIONS(2494), + [aux_sym_preproc_def_token1] = ACTIONS(2494), + [aux_sym_preproc_if_token1] = ACTIONS(2494), + [aux_sym_preproc_if_token2] = ACTIONS(2494), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2494), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2494), + [aux_sym_preproc_else_token1] = ACTIONS(2494), + [aux_sym_preproc_elif_token1] = ACTIONS(2494), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2494), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2494), + [sym_preproc_directive] = ACTIONS(2494), + [anon_sym_LPAREN2] = ACTIONS(2496), + [anon_sym_BANG] = ACTIONS(2496), + [anon_sym_TILDE] = ACTIONS(2496), + [anon_sym_DASH] = ACTIONS(2494), + [anon_sym_PLUS] = ACTIONS(2494), + [anon_sym_STAR] = ACTIONS(2496), + [anon_sym_CARET] = ACTIONS(2496), + [anon_sym_AMP] = ACTIONS(2496), + [anon_sym_SEMI] = ACTIONS(2496), + [anon_sym___extension__] = ACTIONS(2494), + [anon_sym_typedef] = ACTIONS(2494), + [anon_sym_extern] = ACTIONS(2494), + [anon_sym___attribute__] = ACTIONS(2494), + [anon_sym___attribute] = ACTIONS(2494), + [anon_sym_noreturn] = ACTIONS(2494), + [anon_sym_LBRACK] = ACTIONS(2496), + [anon_sym___declspec] = ACTIONS(2494), + [anon_sym___cdecl] = ACTIONS(2494), + [anon_sym___clrcall] = ACTIONS(2494), + [anon_sym___stdcall] = ACTIONS(2494), + [anon_sym___fastcall] = ACTIONS(2494), + [anon_sym___thiscall] = ACTIONS(2494), + [anon_sym___vectorcall] = ACTIONS(2494), + [anon_sym_LBRACE] = ACTIONS(2496), + [anon_sym_signed] = ACTIONS(2494), + [anon_sym_unsigned] = ACTIONS(2494), + [anon_sym_long] = ACTIONS(2494), + [anon_sym_short] = ACTIONS(2494), + [anon_sym_static] = ACTIONS(2494), + [anon_sym_ATautoreleasepool] = ACTIONS(2496), + [anon_sym_auto] = ACTIONS(2494), + [anon_sym_register] = ACTIONS(2494), + [anon_sym_inline] = ACTIONS(2494), + [anon_sym___inline] = ACTIONS(2494), + [anon_sym___inline__] = ACTIONS(2494), + [anon_sym___forceinline] = ACTIONS(2494), + [anon_sym_thread_local] = ACTIONS(2494), + [anon_sym___thread] = ACTIONS(2494), + [anon_sym_CG_EXTERN] = ACTIONS(2494), + [anon_sym_CG_INLINE] = ACTIONS(2494), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2494), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2494), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2494), + [anon_sym_IBOutlet] = ACTIONS(2494), + [anon_sym_IBInspectable] = ACTIONS(2494), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2494), + [anon_sym_NS_INLINE] = ACTIONS(2494), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2494), + [anon_sym_OBJC_EXPORT] = ACTIONS(2494), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2494), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2494), + [anon_sym_const] = ACTIONS(2494), + [anon_sym_constexpr] = ACTIONS(2494), + [anon_sym_volatile] = ACTIONS(2494), + [anon_sym_restrict] = ACTIONS(2494), + [anon_sym___restrict__] = ACTIONS(2494), + [anon_sym__Atomic] = ACTIONS(2494), + [anon_sym__Noreturn] = ACTIONS(2494), + [anon_sym__Nonnull] = ACTIONS(2494), + [anon_sym_nullable] = ACTIONS(2494), + [anon_sym__Complex] = ACTIONS(2494), + [anon_sym__Nullable] = ACTIONS(2494), + [anon_sym__Nullable_result] = ACTIONS(2494), + [anon_sym__Null_unspecified] = ACTIONS(2494), + [anon_sym___autoreleasing] = ACTIONS(2494), + [anon_sym___block] = ACTIONS(2494), + [anon_sym___bridge] = ACTIONS(2494), + [anon_sym___bridge_retained] = ACTIONS(2494), + [anon_sym___bridge_transfer] = ACTIONS(2494), + [anon_sym___complex] = ACTIONS(2494), + [anon_sym___const] = ACTIONS(2494), + [anon_sym___imag] = ACTIONS(2494), + [anon_sym___kindof] = ACTIONS(2494), + [anon_sym___nonnull] = ACTIONS(2494), + [anon_sym___nullable] = ACTIONS(2494), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2494), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2494), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2494), + [anon_sym___real] = ACTIONS(2494), + [anon_sym___strong] = ACTIONS(2494), + [anon_sym___unsafe_unretained] = ACTIONS(2494), + [anon_sym___unused] = ACTIONS(2494), + [anon_sym___weak] = ACTIONS(2494), + [anon_sym_alignas] = ACTIONS(2494), + [anon_sym__Alignas] = ACTIONS(2494), + [sym_primitive_type] = ACTIONS(2494), + [anon_sym_enum] = ACTIONS(2494), + [anon_sym_struct] = ACTIONS(2494), + [anon_sym_union] = ACTIONS(2494), + [anon_sym_if] = ACTIONS(2494), + [anon_sym_else] = ACTIONS(2494), + [anon_sym_switch] = ACTIONS(2494), + [anon_sym_case] = ACTIONS(2494), + [anon_sym_default] = ACTIONS(2494), + [anon_sym_while] = ACTIONS(2494), + [anon_sym_do] = ACTIONS(2494), + [anon_sym_for] = ACTIONS(2494), + [anon_sym_in] = ACTIONS(2494), + [anon_sym_return] = ACTIONS(2494), + [anon_sym_break] = ACTIONS(2494), + [anon_sym_continue] = ACTIONS(2494), + [anon_sym_goto] = ACTIONS(2494), + [anon_sym_DASH_DASH] = ACTIONS(2496), + [anon_sym_PLUS_PLUS] = ACTIONS(2496), + [anon_sym_sizeof] = ACTIONS(2494), + [anon_sym___alignof__] = ACTIONS(2494), + [anon_sym___alignof] = ACTIONS(2494), + [anon_sym__alignof] = ACTIONS(2494), + [anon_sym_alignof] = ACTIONS(2494), + [anon_sym__Alignof] = ACTIONS(2494), + [anon_sym_offsetof] = ACTIONS(2494), + [anon_sym__Generic] = ACTIONS(2494), + [anon_sym_asm] = ACTIONS(2494), + [anon_sym___asm__] = ACTIONS(2494), + [anon_sym___asm] = ACTIONS(2494), + [sym_number_literal] = ACTIONS(2496), + [anon_sym_L_SQUOTE] = ACTIONS(2496), + [anon_sym_u_SQUOTE] = ACTIONS(2496), + [anon_sym_U_SQUOTE] = ACTIONS(2496), + [anon_sym_u8_SQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2496), + [anon_sym_AT] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_L_DQUOTE] = ACTIONS(2496), + [anon_sym_u_DQUOTE] = ACTIONS(2496), + [anon_sym_U_DQUOTE] = ACTIONS(2496), + [anon_sym_u8_DQUOTE] = ACTIONS(2496), + [sym_true] = ACTIONS(2494), + [sym_false] = ACTIONS(2494), + [anon_sym_NULL] = ACTIONS(2494), + [anon_sym_nullptr] = ACTIONS(2494), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2494), + [anon_sym___typeof] = ACTIONS(2494), + [anon_sym_typeof] = ACTIONS(2494), + [anon_sym_ATimport] = ACTIONS(2496), + [aux_sym_preproc_undef_token1] = ACTIONS(2494), + [anon_sym_POUND] = ACTIONS(2494), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2494), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2494), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2494), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2494), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2494), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2494), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2494), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2494), + [anon_sym_NS_AVAILABLE] = ACTIONS(2494), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2494), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_API_AVAILABLE] = ACTIONS(2494), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_API_DEPRECATED] = ACTIONS(2494), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2494), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2494), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2494), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2494), + [anon_sym___deprecated_msg] = ACTIONS(2494), + [anon_sym___deprecated_enum_msg] = ACTIONS(2494), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2494), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2494), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2494), + [anon_sym_ATprotocol] = ACTIONS(2496), + [anon_sym_ATinterface] = ACTIONS(2496), + [anon_sym_ATimplementation] = ACTIONS(2496), + [anon_sym_ATcompatibility_alias] = ACTIONS(2496), + [anon_sym_ATsynthesize] = ACTIONS(2496), + [anon_sym_ATdynamic] = ACTIONS(2496), + [anon_sym_ATtry] = ACTIONS(2496), + [anon_sym___try] = ACTIONS(2494), + [anon_sym_ATthrow] = ACTIONS(2496), + [anon_sym_ATselector] = ACTIONS(2496), + [anon_sym_ATavailable] = ACTIONS(2496), + [anon_sym___builtin_available] = ACTIONS(2494), + [anon_sym_va_arg] = ACTIONS(2494), + [anon_sym_ATencode] = ACTIONS(2496), + [anon_sym_ATsynchronized] = ACTIONS(2496), + [anon_sym_BOOL] = ACTIONS(2494), + [anon_sym_IMP] = ACTIONS(2494), + [anon_sym_SEL] = ACTIONS(2494), + [anon_sym_Class] = ACTIONS(2494), + [anon_sym_id] = ACTIONS(2494), + }, + [234] = { + [sym_identifier] = ACTIONS(2498), + [aux_sym_preproc_include_token1] = ACTIONS(2498), + [aux_sym_preproc_include_token2] = ACTIONS(2498), + [aux_sym_preproc_def_token1] = ACTIONS(2498), + [aux_sym_preproc_if_token1] = ACTIONS(2498), + [aux_sym_preproc_if_token2] = ACTIONS(2498), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2498), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2498), + [aux_sym_preproc_else_token1] = ACTIONS(2498), + [aux_sym_preproc_elif_token1] = ACTIONS(2498), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2498), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2498), + [sym_preproc_directive] = ACTIONS(2498), + [anon_sym_LPAREN2] = ACTIONS(2500), + [anon_sym_BANG] = ACTIONS(2500), + [anon_sym_TILDE] = ACTIONS(2500), + [anon_sym_DASH] = ACTIONS(2498), + [anon_sym_PLUS] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(2500), + [anon_sym_CARET] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(2500), + [anon_sym_SEMI] = ACTIONS(2500), + [anon_sym___extension__] = ACTIONS(2498), + [anon_sym_typedef] = ACTIONS(2498), + [anon_sym_extern] = ACTIONS(2498), + [anon_sym___attribute__] = ACTIONS(2498), + [anon_sym___attribute] = ACTIONS(2498), + [anon_sym_noreturn] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2500), + [anon_sym___declspec] = ACTIONS(2498), + [anon_sym___cdecl] = ACTIONS(2498), + [anon_sym___clrcall] = ACTIONS(2498), + [anon_sym___stdcall] = ACTIONS(2498), + [anon_sym___fastcall] = ACTIONS(2498), + [anon_sym___thiscall] = ACTIONS(2498), + [anon_sym___vectorcall] = ACTIONS(2498), + [anon_sym_LBRACE] = ACTIONS(2500), + [anon_sym_signed] = ACTIONS(2498), + [anon_sym_unsigned] = ACTIONS(2498), + [anon_sym_long] = ACTIONS(2498), + [anon_sym_short] = ACTIONS(2498), + [anon_sym_static] = ACTIONS(2498), + [anon_sym_ATautoreleasepool] = ACTIONS(2500), + [anon_sym_auto] = ACTIONS(2498), + [anon_sym_register] = ACTIONS(2498), + [anon_sym_inline] = ACTIONS(2498), + [anon_sym___inline] = ACTIONS(2498), + [anon_sym___inline__] = ACTIONS(2498), + [anon_sym___forceinline] = ACTIONS(2498), + [anon_sym_thread_local] = ACTIONS(2498), + [anon_sym___thread] = ACTIONS(2498), + [anon_sym_CG_EXTERN] = ACTIONS(2498), + [anon_sym_CG_INLINE] = ACTIONS(2498), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2498), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2498), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2498), + [anon_sym_IBOutlet] = ACTIONS(2498), + [anon_sym_IBInspectable] = ACTIONS(2498), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2498), + [anon_sym_NS_INLINE] = ACTIONS(2498), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2498), + [anon_sym_OBJC_EXPORT] = ACTIONS(2498), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2498), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2498), + [anon_sym_const] = ACTIONS(2498), + [anon_sym_constexpr] = ACTIONS(2498), + [anon_sym_volatile] = ACTIONS(2498), + [anon_sym_restrict] = ACTIONS(2498), + [anon_sym___restrict__] = ACTIONS(2498), + [anon_sym__Atomic] = ACTIONS(2498), + [anon_sym__Noreturn] = ACTIONS(2498), + [anon_sym__Nonnull] = ACTIONS(2498), + [anon_sym_nullable] = ACTIONS(2498), + [anon_sym__Complex] = ACTIONS(2498), + [anon_sym__Nullable] = ACTIONS(2498), + [anon_sym__Nullable_result] = ACTIONS(2498), + [anon_sym__Null_unspecified] = ACTIONS(2498), + [anon_sym___autoreleasing] = ACTIONS(2498), + [anon_sym___block] = ACTIONS(2498), + [anon_sym___bridge] = ACTIONS(2498), + [anon_sym___bridge_retained] = ACTIONS(2498), + [anon_sym___bridge_transfer] = ACTIONS(2498), + [anon_sym___complex] = ACTIONS(2498), + [anon_sym___const] = ACTIONS(2498), + [anon_sym___imag] = ACTIONS(2498), + [anon_sym___kindof] = ACTIONS(2498), + [anon_sym___nonnull] = ACTIONS(2498), + [anon_sym___nullable] = ACTIONS(2498), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2498), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2498), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2498), + [anon_sym___real] = ACTIONS(2498), + [anon_sym___strong] = ACTIONS(2498), + [anon_sym___unsafe_unretained] = ACTIONS(2498), + [anon_sym___unused] = ACTIONS(2498), + [anon_sym___weak] = ACTIONS(2498), + [anon_sym_alignas] = ACTIONS(2498), + [anon_sym__Alignas] = ACTIONS(2498), + [sym_primitive_type] = ACTIONS(2498), + [anon_sym_enum] = ACTIONS(2498), + [anon_sym_struct] = ACTIONS(2498), + [anon_sym_union] = ACTIONS(2498), + [anon_sym_if] = ACTIONS(2498), + [anon_sym_else] = ACTIONS(2498), + [anon_sym_switch] = ACTIONS(2498), + [anon_sym_case] = ACTIONS(2498), + [anon_sym_default] = ACTIONS(2498), + [anon_sym_while] = ACTIONS(2498), + [anon_sym_do] = ACTIONS(2498), + [anon_sym_for] = ACTIONS(2498), + [anon_sym_in] = ACTIONS(2498), + [anon_sym_return] = ACTIONS(2498), + [anon_sym_break] = ACTIONS(2498), + [anon_sym_continue] = ACTIONS(2498), + [anon_sym_goto] = ACTIONS(2498), + [anon_sym_DASH_DASH] = ACTIONS(2500), + [anon_sym_PLUS_PLUS] = ACTIONS(2500), + [anon_sym_sizeof] = ACTIONS(2498), + [anon_sym___alignof__] = ACTIONS(2498), + [anon_sym___alignof] = ACTIONS(2498), + [anon_sym__alignof] = ACTIONS(2498), + [anon_sym_alignof] = ACTIONS(2498), + [anon_sym__Alignof] = ACTIONS(2498), + [anon_sym_offsetof] = ACTIONS(2498), + [anon_sym__Generic] = ACTIONS(2498), + [anon_sym_asm] = ACTIONS(2498), + [anon_sym___asm__] = ACTIONS(2498), + [anon_sym___asm] = ACTIONS(2498), + [sym_number_literal] = ACTIONS(2500), + [anon_sym_L_SQUOTE] = ACTIONS(2500), + [anon_sym_u_SQUOTE] = ACTIONS(2500), + [anon_sym_U_SQUOTE] = ACTIONS(2500), + [anon_sym_u8_SQUOTE] = ACTIONS(2500), + [anon_sym_SQUOTE] = ACTIONS(2500), + [anon_sym_AT] = ACTIONS(2498), + [anon_sym_DQUOTE] = ACTIONS(2500), + [anon_sym_L_DQUOTE] = ACTIONS(2500), + [anon_sym_u_DQUOTE] = ACTIONS(2500), + [anon_sym_U_DQUOTE] = ACTIONS(2500), + [anon_sym_u8_DQUOTE] = ACTIONS(2500), + [sym_true] = ACTIONS(2498), + [sym_false] = ACTIONS(2498), + [anon_sym_NULL] = ACTIONS(2498), + [anon_sym_nullptr] = ACTIONS(2498), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2498), + [anon_sym___typeof] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(2498), + [anon_sym_ATimport] = ACTIONS(2500), + [aux_sym_preproc_undef_token1] = ACTIONS(2498), + [anon_sym_POUND] = ACTIONS(2498), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2498), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2498), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2498), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2498), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2498), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2498), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2498), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2498), + [anon_sym_NS_AVAILABLE] = ACTIONS(2498), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2498), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_API_AVAILABLE] = ACTIONS(2498), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_API_DEPRECATED] = ACTIONS(2498), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2498), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2498), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2498), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2498), + [anon_sym___deprecated_msg] = ACTIONS(2498), + [anon_sym___deprecated_enum_msg] = ACTIONS(2498), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2498), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2498), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2498), + [anon_sym_ATprotocol] = ACTIONS(2500), + [anon_sym_ATinterface] = ACTIONS(2500), + [anon_sym_ATimplementation] = ACTIONS(2500), + [anon_sym_ATcompatibility_alias] = ACTIONS(2500), + [anon_sym_ATsynthesize] = ACTIONS(2500), + [anon_sym_ATdynamic] = ACTIONS(2500), + [anon_sym_ATtry] = ACTIONS(2500), + [anon_sym___try] = ACTIONS(2498), + [anon_sym_ATthrow] = ACTIONS(2500), + [anon_sym_ATselector] = ACTIONS(2500), + [anon_sym_ATavailable] = ACTIONS(2500), + [anon_sym___builtin_available] = ACTIONS(2498), + [anon_sym_va_arg] = ACTIONS(2498), + [anon_sym_ATencode] = ACTIONS(2500), + [anon_sym_ATsynchronized] = ACTIONS(2500), + [anon_sym_BOOL] = ACTIONS(2498), + [anon_sym_IMP] = ACTIONS(2498), + [anon_sym_SEL] = ACTIONS(2498), + [anon_sym_Class] = ACTIONS(2498), + [anon_sym_id] = ACTIONS(2498), + }, + [235] = { + [sym_identifier] = ACTIONS(2354), + [aux_sym_preproc_include_token1] = ACTIONS(2354), + [aux_sym_preproc_include_token2] = ACTIONS(2354), + [aux_sym_preproc_def_token1] = ACTIONS(2354), + [aux_sym_preproc_if_token1] = ACTIONS(2354), + [aux_sym_preproc_if_token2] = ACTIONS(2354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2354), + [sym_preproc_directive] = ACTIONS(2354), + [anon_sym_LPAREN2] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2354), + [anon_sym_PLUS] = ACTIONS(2354), + [anon_sym_STAR] = ACTIONS(2356), + [anon_sym_CARET] = ACTIONS(2356), + [anon_sym_AMP] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym___extension__] = ACTIONS(2354), + [anon_sym_typedef] = ACTIONS(2354), + [anon_sym_extern] = ACTIONS(2354), + [anon_sym___attribute__] = ACTIONS(2354), + [anon_sym___attribute] = ACTIONS(2354), + [anon_sym_noreturn] = ACTIONS(2354), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym___declspec] = ACTIONS(2354), + [anon_sym___cdecl] = ACTIONS(2354), + [anon_sym___clrcall] = ACTIONS(2354), + [anon_sym___stdcall] = ACTIONS(2354), + [anon_sym___fastcall] = ACTIONS(2354), + [anon_sym___thiscall] = ACTIONS(2354), + [anon_sym___vectorcall] = ACTIONS(2354), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_signed] = ACTIONS(2354), + [anon_sym_unsigned] = ACTIONS(2354), + [anon_sym_long] = ACTIONS(2354), + [anon_sym_short] = ACTIONS(2354), + [anon_sym_static] = ACTIONS(2354), + [anon_sym_ATautoreleasepool] = ACTIONS(2356), + [anon_sym_auto] = ACTIONS(2354), + [anon_sym_register] = ACTIONS(2354), + [anon_sym_inline] = ACTIONS(2354), + [anon_sym___inline] = ACTIONS(2354), + [anon_sym___inline__] = ACTIONS(2354), + [anon_sym___forceinline] = ACTIONS(2354), + [anon_sym_thread_local] = ACTIONS(2354), + [anon_sym___thread] = ACTIONS(2354), + [anon_sym_CG_EXTERN] = ACTIONS(2354), + [anon_sym_CG_INLINE] = ACTIONS(2354), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2354), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2354), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2354), + [anon_sym_IBOutlet] = ACTIONS(2354), + [anon_sym_IBInspectable] = ACTIONS(2354), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2354), + [anon_sym_NS_INLINE] = ACTIONS(2354), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2354), + [anon_sym_OBJC_EXPORT] = ACTIONS(2354), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2354), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2354), + [anon_sym_const] = ACTIONS(2354), + [anon_sym_constexpr] = ACTIONS(2354), + [anon_sym_volatile] = ACTIONS(2354), + [anon_sym_restrict] = ACTIONS(2354), + [anon_sym___restrict__] = ACTIONS(2354), + [anon_sym__Atomic] = ACTIONS(2354), + [anon_sym__Noreturn] = ACTIONS(2354), + [anon_sym__Nonnull] = ACTIONS(2354), + [anon_sym_nullable] = ACTIONS(2354), + [anon_sym__Complex] = ACTIONS(2354), + [anon_sym__Nullable] = ACTIONS(2354), + [anon_sym__Nullable_result] = ACTIONS(2354), + [anon_sym__Null_unspecified] = ACTIONS(2354), + [anon_sym___autoreleasing] = ACTIONS(2354), + [anon_sym___block] = ACTIONS(2354), + [anon_sym___bridge] = ACTIONS(2354), + [anon_sym___bridge_retained] = ACTIONS(2354), + [anon_sym___bridge_transfer] = ACTIONS(2354), + [anon_sym___complex] = ACTIONS(2354), + [anon_sym___const] = ACTIONS(2354), + [anon_sym___imag] = ACTIONS(2354), + [anon_sym___kindof] = ACTIONS(2354), + [anon_sym___nonnull] = ACTIONS(2354), + [anon_sym___nullable] = ACTIONS(2354), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2354), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2354), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2354), + [anon_sym___real] = ACTIONS(2354), + [anon_sym___strong] = ACTIONS(2354), + [anon_sym___unsafe_unretained] = ACTIONS(2354), + [anon_sym___unused] = ACTIONS(2354), + [anon_sym___weak] = ACTIONS(2354), + [anon_sym_alignas] = ACTIONS(2354), + [anon_sym__Alignas] = ACTIONS(2354), + [sym_primitive_type] = ACTIONS(2354), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(2354), + [anon_sym_union] = ACTIONS(2354), + [anon_sym_if] = ACTIONS(2354), + [anon_sym_else] = ACTIONS(2354), + [anon_sym_switch] = ACTIONS(2354), + [anon_sym_case] = ACTIONS(2354), + [anon_sym_default] = ACTIONS(2354), + [anon_sym_while] = ACTIONS(2354), + [anon_sym_do] = ACTIONS(2354), + [anon_sym_for] = ACTIONS(2354), + [anon_sym_in] = ACTIONS(2354), + [anon_sym_return] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_goto] = ACTIONS(2354), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_sizeof] = ACTIONS(2354), + [anon_sym___alignof__] = ACTIONS(2354), + [anon_sym___alignof] = ACTIONS(2354), + [anon_sym__alignof] = ACTIONS(2354), + [anon_sym_alignof] = ACTIONS(2354), + [anon_sym__Alignof] = ACTIONS(2354), + [anon_sym_offsetof] = ACTIONS(2354), + [anon_sym__Generic] = ACTIONS(2354), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2356), + [anon_sym_u_SQUOTE] = ACTIONS(2356), + [anon_sym_U_SQUOTE] = ACTIONS(2356), + [anon_sym_u8_SQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2354), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_L_DQUOTE] = ACTIONS(2356), + [anon_sym_u_DQUOTE] = ACTIONS(2356), + [anon_sym_U_DQUOTE] = ACTIONS(2356), + [anon_sym_u8_DQUOTE] = ACTIONS(2356), + [sym_true] = ACTIONS(2354), + [sym_false] = ACTIONS(2354), + [anon_sym_NULL] = ACTIONS(2354), + [anon_sym_nullptr] = ACTIONS(2354), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2354), + [anon_sym___typeof] = ACTIONS(2354), + [anon_sym_typeof] = ACTIONS(2354), + [anon_sym_ATimport] = ACTIONS(2356), + [aux_sym_preproc_undef_token1] = ACTIONS(2354), + [anon_sym_POUND] = ACTIONS(2354), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2354), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2354), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2354), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2354), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2354), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2354), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2354), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2354), + [anon_sym_NS_AVAILABLE] = ACTIONS(2354), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2354), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_API_AVAILABLE] = ACTIONS(2354), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_API_DEPRECATED] = ACTIONS(2354), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2354), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2354), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2354), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2354), + [anon_sym___deprecated_msg] = ACTIONS(2354), + [anon_sym___deprecated_enum_msg] = ACTIONS(2354), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2354), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2354), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2354), + [anon_sym_ATprotocol] = ACTIONS(2356), + [anon_sym_ATinterface] = ACTIONS(2356), + [anon_sym_ATimplementation] = ACTIONS(2356), + [anon_sym_ATcompatibility_alias] = ACTIONS(2356), + [anon_sym_ATsynthesize] = ACTIONS(2356), + [anon_sym_ATdynamic] = ACTIONS(2356), + [anon_sym_ATtry] = ACTIONS(2356), + [anon_sym___try] = ACTIONS(2354), + [anon_sym_ATcatch] = ACTIONS(2356), + [anon_sym___catch] = ACTIONS(2354), + [anon_sym_ATfinally] = ACTIONS(2356), + [anon_sym___finally] = ACTIONS(2354), + [anon_sym_ATthrow] = ACTIONS(2356), + [anon_sym_ATselector] = ACTIONS(2356), + [anon_sym_ATavailable] = ACTIONS(2356), + [anon_sym___builtin_available] = ACTIONS(2354), + [anon_sym_va_arg] = ACTIONS(2354), + [anon_sym_ATencode] = ACTIONS(2356), + [anon_sym_ATsynchronized] = ACTIONS(2356), + [anon_sym_BOOL] = ACTIONS(2354), + [anon_sym_IMP] = ACTIONS(2354), + [anon_sym_SEL] = ACTIONS(2354), + [anon_sym_Class] = ACTIONS(2354), + [anon_sym_id] = ACTIONS(2354), + }, + [236] = { + [sym_catch_clause] = STATE(236), + [aux_sym_try_statement_repeat1] = STATE(236), + [sym_identifier] = ACTIONS(2318), + [aux_sym_preproc_include_token1] = ACTIONS(2318), + [aux_sym_preproc_include_token2] = ACTIONS(2318), + [aux_sym_preproc_def_token1] = ACTIONS(2318), + [aux_sym_preproc_if_token1] = ACTIONS(2318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2318), + [sym_preproc_directive] = ACTIONS(2318), + [anon_sym_LPAREN2] = ACTIONS(2320), + [anon_sym_BANG] = ACTIONS(2320), + [anon_sym_TILDE] = ACTIONS(2320), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2320), + [anon_sym_CARET] = ACTIONS(2320), + [anon_sym_AMP] = ACTIONS(2320), + [anon_sym_SEMI] = ACTIONS(2320), + [anon_sym___extension__] = ACTIONS(2318), + [anon_sym_typedef] = ACTIONS(2318), + [anon_sym_extern] = ACTIONS(2318), + [anon_sym___attribute__] = ACTIONS(2318), + [anon_sym___attribute] = ACTIONS(2318), + [anon_sym_noreturn] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2320), + [anon_sym___declspec] = ACTIONS(2318), + [anon_sym___cdecl] = ACTIONS(2318), + [anon_sym___clrcall] = ACTIONS(2318), + [anon_sym___stdcall] = ACTIONS(2318), + [anon_sym___fastcall] = ACTIONS(2318), + [anon_sym___thiscall] = ACTIONS(2318), + [anon_sym___vectorcall] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2320), + [anon_sym_RBRACE] = ACTIONS(2320), + [anon_sym_signed] = ACTIONS(2318), + [anon_sym_unsigned] = ACTIONS(2318), + [anon_sym_long] = ACTIONS(2318), + [anon_sym_short] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_ATautoreleasepool] = ACTIONS(2320), + [anon_sym_auto] = ACTIONS(2318), + [anon_sym_register] = ACTIONS(2318), + [anon_sym_inline] = ACTIONS(2318), + [anon_sym___inline] = ACTIONS(2318), + [anon_sym___inline__] = ACTIONS(2318), + [anon_sym___forceinline] = ACTIONS(2318), + [anon_sym_thread_local] = ACTIONS(2318), + [anon_sym___thread] = ACTIONS(2318), + [anon_sym_CG_EXTERN] = ACTIONS(2318), + [anon_sym_CG_INLINE] = ACTIONS(2318), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2318), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2318), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2318), + [anon_sym_IBOutlet] = ACTIONS(2318), + [anon_sym_IBInspectable] = ACTIONS(2318), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2318), + [anon_sym_NS_INLINE] = ACTIONS(2318), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2318), + [anon_sym_OBJC_EXPORT] = ACTIONS(2318), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2318), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_constexpr] = ACTIONS(2318), + [anon_sym_volatile] = ACTIONS(2318), + [anon_sym_restrict] = ACTIONS(2318), + [anon_sym___restrict__] = ACTIONS(2318), + [anon_sym__Atomic] = ACTIONS(2318), + [anon_sym__Noreturn] = ACTIONS(2318), + [anon_sym__Nonnull] = ACTIONS(2318), + [anon_sym_nullable] = ACTIONS(2318), + [anon_sym__Complex] = ACTIONS(2318), + [anon_sym__Nullable] = ACTIONS(2318), + [anon_sym__Nullable_result] = ACTIONS(2318), + [anon_sym__Null_unspecified] = ACTIONS(2318), + [anon_sym___autoreleasing] = ACTIONS(2318), + [anon_sym___block] = ACTIONS(2318), + [anon_sym___bridge] = ACTIONS(2318), + [anon_sym___bridge_retained] = ACTIONS(2318), + [anon_sym___bridge_transfer] = ACTIONS(2318), + [anon_sym___complex] = ACTIONS(2318), + [anon_sym___const] = ACTIONS(2318), + [anon_sym___imag] = ACTIONS(2318), + [anon_sym___kindof] = ACTIONS(2318), + [anon_sym___nonnull] = ACTIONS(2318), + [anon_sym___nullable] = ACTIONS(2318), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2318), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2318), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2318), + [anon_sym___real] = ACTIONS(2318), + [anon_sym___strong] = ACTIONS(2318), + [anon_sym___unsafe_unretained] = ACTIONS(2318), + [anon_sym___unused] = ACTIONS(2318), + [anon_sym___weak] = ACTIONS(2318), + [anon_sym_alignas] = ACTIONS(2318), + [anon_sym__Alignas] = ACTIONS(2318), + [sym_primitive_type] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_case] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_goto] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2320), + [anon_sym_sizeof] = ACTIONS(2318), + [anon_sym___alignof__] = ACTIONS(2318), + [anon_sym___alignof] = ACTIONS(2318), + [anon_sym__alignof] = ACTIONS(2318), + [anon_sym_alignof] = ACTIONS(2318), + [anon_sym__Alignof] = ACTIONS(2318), + [anon_sym_offsetof] = ACTIONS(2318), + [anon_sym__Generic] = ACTIONS(2318), + [anon_sym_asm] = ACTIONS(2318), + [anon_sym___asm__] = ACTIONS(2318), + [anon_sym___asm] = ACTIONS(2318), + [sym_number_literal] = ACTIONS(2320), + [anon_sym_L_SQUOTE] = ACTIONS(2320), + [anon_sym_u_SQUOTE] = ACTIONS(2320), + [anon_sym_U_SQUOTE] = ACTIONS(2320), + [anon_sym_u8_SQUOTE] = ACTIONS(2320), + [anon_sym_SQUOTE] = ACTIONS(2320), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_DQUOTE] = ACTIONS(2320), + [anon_sym_L_DQUOTE] = ACTIONS(2320), + [anon_sym_u_DQUOTE] = ACTIONS(2320), + [anon_sym_U_DQUOTE] = ACTIONS(2320), + [anon_sym_u8_DQUOTE] = ACTIONS(2320), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [anon_sym_NULL] = ACTIONS(2318), + [anon_sym_nullptr] = ACTIONS(2318), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2318), + [anon_sym___typeof] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_ATimport] = ACTIONS(2320), + [aux_sym_preproc_undef_token1] = ACTIONS(2318), + [anon_sym_POUND] = ACTIONS(2318), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2318), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2318), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2318), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2318), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2318), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2318), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2318), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2318), + [anon_sym_NS_AVAILABLE] = ACTIONS(2318), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2318), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_API_AVAILABLE] = ACTIONS(2318), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_API_DEPRECATED] = ACTIONS(2318), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2318), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2318), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2318), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2318), + [anon_sym___deprecated_msg] = ACTIONS(2318), + [anon_sym___deprecated_enum_msg] = ACTIONS(2318), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2318), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2318), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2318), + [anon_sym_ATprotocol] = ACTIONS(2320), + [anon_sym_ATinterface] = ACTIONS(2320), + [anon_sym_ATimplementation] = ACTIONS(2320), + [anon_sym_ATcompatibility_alias] = ACTIONS(2320), + [anon_sym_ATtry] = ACTIONS(2320), + [anon_sym___try] = ACTIONS(2318), + [anon_sym_ATcatch] = ACTIONS(2502), + [anon_sym___catch] = ACTIONS(2505), + [anon_sym_ATfinally] = ACTIONS(2320), + [anon_sym___finally] = ACTIONS(2318), + [anon_sym_ATthrow] = ACTIONS(2320), + [anon_sym_ATselector] = ACTIONS(2320), + [anon_sym_ATavailable] = ACTIONS(2320), + [anon_sym___builtin_available] = ACTIONS(2318), + [anon_sym_va_arg] = ACTIONS(2318), + [anon_sym_ATencode] = ACTIONS(2320), + [anon_sym_ATsynchronized] = ACTIONS(2320), + [anon_sym_BOOL] = ACTIONS(2318), + [anon_sym_IMP] = ACTIONS(2318), + [anon_sym_SEL] = ACTIONS(2318), + [anon_sym_Class] = ACTIONS(2318), + [anon_sym_id] = ACTIONS(2318), + }, + [237] = { + [sym_identifier] = ACTIONS(2368), + [aux_sym_preproc_include_token1] = ACTIONS(2368), + [aux_sym_preproc_include_token2] = ACTIONS(2368), + [aux_sym_preproc_def_token1] = ACTIONS(2368), + [aux_sym_preproc_if_token1] = ACTIONS(2368), + [aux_sym_preproc_if_token2] = ACTIONS(2368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2368), + [sym_preproc_directive] = ACTIONS(2368), + [anon_sym_LPAREN2] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym___extension__] = ACTIONS(2368), + [anon_sym_typedef] = ACTIONS(2368), + [anon_sym_extern] = ACTIONS(2368), + [anon_sym___attribute__] = ACTIONS(2368), + [anon_sym___attribute] = ACTIONS(2368), + [anon_sym_noreturn] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym___declspec] = ACTIONS(2368), + [anon_sym___cdecl] = ACTIONS(2368), + [anon_sym___clrcall] = ACTIONS(2368), + [anon_sym___stdcall] = ACTIONS(2368), + [anon_sym___fastcall] = ACTIONS(2368), + [anon_sym___thiscall] = ACTIONS(2368), + [anon_sym___vectorcall] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_signed] = ACTIONS(2368), + [anon_sym_unsigned] = ACTIONS(2368), + [anon_sym_long] = ACTIONS(2368), + [anon_sym_short] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_ATautoreleasepool] = ACTIONS(2370), + [anon_sym_auto] = ACTIONS(2368), + [anon_sym_register] = ACTIONS(2368), + [anon_sym_inline] = ACTIONS(2368), + [anon_sym___inline] = ACTIONS(2368), + [anon_sym___inline__] = ACTIONS(2368), + [anon_sym___forceinline] = ACTIONS(2368), + [anon_sym_thread_local] = ACTIONS(2368), + [anon_sym___thread] = ACTIONS(2368), + [anon_sym_CG_EXTERN] = ACTIONS(2368), + [anon_sym_CG_INLINE] = ACTIONS(2368), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2368), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2368), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2368), + [anon_sym_IBOutlet] = ACTIONS(2368), + [anon_sym_IBInspectable] = ACTIONS(2368), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2368), + [anon_sym_NS_INLINE] = ACTIONS(2368), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2368), + [anon_sym_OBJC_EXPORT] = ACTIONS(2368), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2368), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_constexpr] = ACTIONS(2368), + [anon_sym_volatile] = ACTIONS(2368), + [anon_sym_restrict] = ACTIONS(2368), + [anon_sym___restrict__] = ACTIONS(2368), + [anon_sym__Atomic] = ACTIONS(2368), + [anon_sym__Noreturn] = ACTIONS(2368), + [anon_sym__Nonnull] = ACTIONS(2368), + [anon_sym_nullable] = ACTIONS(2368), + [anon_sym__Complex] = ACTIONS(2368), + [anon_sym__Nullable] = ACTIONS(2368), + [anon_sym__Nullable_result] = ACTIONS(2368), + [anon_sym__Null_unspecified] = ACTIONS(2368), + [anon_sym___autoreleasing] = ACTIONS(2368), + [anon_sym___block] = ACTIONS(2368), + [anon_sym___bridge] = ACTIONS(2368), + [anon_sym___bridge_retained] = ACTIONS(2368), + [anon_sym___bridge_transfer] = ACTIONS(2368), + [anon_sym___complex] = ACTIONS(2368), + [anon_sym___const] = ACTIONS(2368), + [anon_sym___imag] = ACTIONS(2368), + [anon_sym___kindof] = ACTIONS(2368), + [anon_sym___nonnull] = ACTIONS(2368), + [anon_sym___nullable] = ACTIONS(2368), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2368), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2368), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2368), + [anon_sym___real] = ACTIONS(2368), + [anon_sym___strong] = ACTIONS(2368), + [anon_sym___unsafe_unretained] = ACTIONS(2368), + [anon_sym___unused] = ACTIONS(2368), + [anon_sym___weak] = ACTIONS(2368), + [anon_sym_alignas] = ACTIONS(2368), + [anon_sym__Alignas] = ACTIONS(2368), + [sym_primitive_type] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [anon_sym_struct] = ACTIONS(2368), + [anon_sym_union] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_in] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_goto] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_sizeof] = ACTIONS(2368), + [anon_sym___alignof__] = ACTIONS(2368), + [anon_sym___alignof] = ACTIONS(2368), + [anon_sym__alignof] = ACTIONS(2368), + [anon_sym_alignof] = ACTIONS(2368), + [anon_sym__Alignof] = ACTIONS(2368), + [anon_sym_offsetof] = ACTIONS(2368), + [anon_sym__Generic] = ACTIONS(2368), + [anon_sym_asm] = ACTIONS(2368), + [anon_sym___asm__] = ACTIONS(2368), + [anon_sym___asm] = ACTIONS(2368), + [sym_number_literal] = ACTIONS(2370), + [anon_sym_L_SQUOTE] = ACTIONS(2370), + [anon_sym_u_SQUOTE] = ACTIONS(2370), + [anon_sym_U_SQUOTE] = ACTIONS(2370), + [anon_sym_u8_SQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_L_DQUOTE] = ACTIONS(2370), + [anon_sym_u_DQUOTE] = ACTIONS(2370), + [anon_sym_U_DQUOTE] = ACTIONS(2370), + [anon_sym_u8_DQUOTE] = ACTIONS(2370), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [anon_sym_NULL] = ACTIONS(2368), + [anon_sym_nullptr] = ACTIONS(2368), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2368), + [anon_sym___typeof] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_ATimport] = ACTIONS(2370), + [aux_sym_preproc_undef_token1] = ACTIONS(2368), + [anon_sym_POUND] = ACTIONS(2368), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2368), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2368), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2368), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2368), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2368), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2368), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2368), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2368), + [anon_sym_NS_AVAILABLE] = ACTIONS(2368), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2368), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_API_AVAILABLE] = ACTIONS(2368), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_API_DEPRECATED] = ACTIONS(2368), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2368), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2368), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2368), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2368), + [anon_sym___deprecated_msg] = ACTIONS(2368), + [anon_sym___deprecated_enum_msg] = ACTIONS(2368), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2368), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2368), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2368), + [anon_sym_ATprotocol] = ACTIONS(2370), + [anon_sym_ATinterface] = ACTIONS(2370), + [anon_sym_ATimplementation] = ACTIONS(2370), + [anon_sym_ATcompatibility_alias] = ACTIONS(2370), + [anon_sym_ATsynthesize] = ACTIONS(2370), + [anon_sym_ATdynamic] = ACTIONS(2370), + [anon_sym_ATtry] = ACTIONS(2370), + [anon_sym___try] = ACTIONS(2368), + [anon_sym_ATcatch] = ACTIONS(2370), + [anon_sym___catch] = ACTIONS(2368), + [anon_sym_ATfinally] = ACTIONS(2370), + [anon_sym___finally] = ACTIONS(2368), + [anon_sym_ATthrow] = ACTIONS(2370), + [anon_sym_ATselector] = ACTIONS(2370), + [anon_sym_ATavailable] = ACTIONS(2370), + [anon_sym___builtin_available] = ACTIONS(2368), + [anon_sym_va_arg] = ACTIONS(2368), + [anon_sym_ATencode] = ACTIONS(2370), + [anon_sym_ATsynchronized] = ACTIONS(2370), + [anon_sym_BOOL] = ACTIONS(2368), + [anon_sym_IMP] = ACTIONS(2368), + [anon_sym_SEL] = ACTIONS(2368), + [anon_sym_Class] = ACTIONS(2368), + [anon_sym_id] = ACTIONS(2368), + }, + [238] = { + [sym_identifier] = ACTIONS(2508), + [aux_sym_preproc_include_token1] = ACTIONS(2508), + [aux_sym_preproc_include_token2] = ACTIONS(2508), + [aux_sym_preproc_def_token1] = ACTIONS(2508), + [aux_sym_preproc_if_token1] = ACTIONS(2508), + [aux_sym_preproc_if_token2] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2508), + [aux_sym_preproc_else_token1] = ACTIONS(2508), + [aux_sym_preproc_elif_token1] = ACTIONS(2508), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2508), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2508), + [sym_preproc_directive] = ACTIONS(2508), + [anon_sym_LPAREN2] = ACTIONS(2510), + [anon_sym_BANG] = ACTIONS(2510), + [anon_sym_TILDE] = ACTIONS(2510), + [anon_sym_DASH] = ACTIONS(2508), + [anon_sym_PLUS] = ACTIONS(2508), + [anon_sym_STAR] = ACTIONS(2510), + [anon_sym_CARET] = ACTIONS(2510), + [anon_sym_AMP] = ACTIONS(2510), + [anon_sym_SEMI] = ACTIONS(2510), + [anon_sym___extension__] = ACTIONS(2508), + [anon_sym_typedef] = ACTIONS(2508), + [anon_sym_extern] = ACTIONS(2508), + [anon_sym___attribute__] = ACTIONS(2508), + [anon_sym___attribute] = ACTIONS(2508), + [anon_sym_noreturn] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym___declspec] = ACTIONS(2508), + [anon_sym___cdecl] = ACTIONS(2508), + [anon_sym___clrcall] = ACTIONS(2508), + [anon_sym___stdcall] = ACTIONS(2508), + [anon_sym___fastcall] = ACTIONS(2508), + [anon_sym___thiscall] = ACTIONS(2508), + [anon_sym___vectorcall] = ACTIONS(2508), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_signed] = ACTIONS(2508), + [anon_sym_unsigned] = ACTIONS(2508), + [anon_sym_long] = ACTIONS(2508), + [anon_sym_short] = ACTIONS(2508), + [anon_sym_static] = ACTIONS(2508), + [anon_sym_ATautoreleasepool] = ACTIONS(2510), + [anon_sym_auto] = ACTIONS(2508), + [anon_sym_register] = ACTIONS(2508), + [anon_sym_inline] = ACTIONS(2508), + [anon_sym___inline] = ACTIONS(2508), + [anon_sym___inline__] = ACTIONS(2508), + [anon_sym___forceinline] = ACTIONS(2508), + [anon_sym_thread_local] = ACTIONS(2508), + [anon_sym___thread] = ACTIONS(2508), + [anon_sym_CG_EXTERN] = ACTIONS(2508), + [anon_sym_CG_INLINE] = ACTIONS(2508), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2508), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2508), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2508), + [anon_sym_IBOutlet] = ACTIONS(2508), + [anon_sym_IBInspectable] = ACTIONS(2508), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2508), + [anon_sym_NS_INLINE] = ACTIONS(2508), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2508), + [anon_sym_OBJC_EXPORT] = ACTIONS(2508), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2508), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2508), + [anon_sym_const] = ACTIONS(2508), + [anon_sym_constexpr] = ACTIONS(2508), + [anon_sym_volatile] = ACTIONS(2508), + [anon_sym_restrict] = ACTIONS(2508), + [anon_sym___restrict__] = ACTIONS(2508), + [anon_sym__Atomic] = ACTIONS(2508), + [anon_sym__Noreturn] = ACTIONS(2508), + [anon_sym__Nonnull] = ACTIONS(2508), + [anon_sym_nullable] = ACTIONS(2508), + [anon_sym__Complex] = ACTIONS(2508), + [anon_sym__Nullable] = ACTIONS(2508), + [anon_sym__Nullable_result] = ACTIONS(2508), + [anon_sym__Null_unspecified] = ACTIONS(2508), + [anon_sym___autoreleasing] = ACTIONS(2508), + [anon_sym___block] = ACTIONS(2508), + [anon_sym___bridge] = ACTIONS(2508), + [anon_sym___bridge_retained] = ACTIONS(2508), + [anon_sym___bridge_transfer] = ACTIONS(2508), + [anon_sym___complex] = ACTIONS(2508), + [anon_sym___const] = ACTIONS(2508), + [anon_sym___imag] = ACTIONS(2508), + [anon_sym___kindof] = ACTIONS(2508), + [anon_sym___nonnull] = ACTIONS(2508), + [anon_sym___nullable] = ACTIONS(2508), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2508), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2508), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2508), + [anon_sym___real] = ACTIONS(2508), + [anon_sym___strong] = ACTIONS(2508), + [anon_sym___unsafe_unretained] = ACTIONS(2508), + [anon_sym___unused] = ACTIONS(2508), + [anon_sym___weak] = ACTIONS(2508), + [anon_sym_alignas] = ACTIONS(2508), + [anon_sym__Alignas] = ACTIONS(2508), + [sym_primitive_type] = ACTIONS(2508), + [anon_sym_enum] = ACTIONS(2508), + [anon_sym_struct] = ACTIONS(2508), + [anon_sym_union] = ACTIONS(2508), + [anon_sym_if] = ACTIONS(2508), + [anon_sym_else] = ACTIONS(2508), + [anon_sym_switch] = ACTIONS(2508), + [anon_sym_case] = ACTIONS(2508), + [anon_sym_default] = ACTIONS(2508), + [anon_sym_while] = ACTIONS(2508), + [anon_sym_do] = ACTIONS(2508), + [anon_sym_for] = ACTIONS(2508), + [anon_sym_in] = ACTIONS(2508), + [anon_sym_return] = ACTIONS(2508), + [anon_sym_break] = ACTIONS(2508), + [anon_sym_continue] = ACTIONS(2508), + [anon_sym_goto] = ACTIONS(2508), + [anon_sym_DASH_DASH] = ACTIONS(2510), + [anon_sym_PLUS_PLUS] = ACTIONS(2510), + [anon_sym_sizeof] = ACTIONS(2508), + [anon_sym___alignof__] = ACTIONS(2508), + [anon_sym___alignof] = ACTIONS(2508), + [anon_sym__alignof] = ACTIONS(2508), + [anon_sym_alignof] = ACTIONS(2508), + [anon_sym__Alignof] = ACTIONS(2508), + [anon_sym_offsetof] = ACTIONS(2508), + [anon_sym__Generic] = ACTIONS(2508), + [anon_sym_asm] = ACTIONS(2508), + [anon_sym___asm__] = ACTIONS(2508), + [anon_sym___asm] = ACTIONS(2508), + [sym_number_literal] = ACTIONS(2510), + [anon_sym_L_SQUOTE] = ACTIONS(2510), + [anon_sym_u_SQUOTE] = ACTIONS(2510), + [anon_sym_U_SQUOTE] = ACTIONS(2510), + [anon_sym_u8_SQUOTE] = ACTIONS(2510), + [anon_sym_SQUOTE] = ACTIONS(2510), + [anon_sym_AT] = ACTIONS(2508), + [anon_sym_DQUOTE] = ACTIONS(2510), + [anon_sym_L_DQUOTE] = ACTIONS(2510), + [anon_sym_u_DQUOTE] = ACTIONS(2510), + [anon_sym_U_DQUOTE] = ACTIONS(2510), + [anon_sym_u8_DQUOTE] = ACTIONS(2510), + [sym_true] = ACTIONS(2508), + [sym_false] = ACTIONS(2508), + [anon_sym_NULL] = ACTIONS(2508), + [anon_sym_nullptr] = ACTIONS(2508), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2508), + [anon_sym___typeof] = ACTIONS(2508), + [anon_sym_typeof] = ACTIONS(2508), + [anon_sym_ATimport] = ACTIONS(2510), + [aux_sym_preproc_undef_token1] = ACTIONS(2508), + [anon_sym_POUND] = ACTIONS(2508), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2508), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2508), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2508), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2508), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2508), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2508), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2508), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2508), + [anon_sym_NS_AVAILABLE] = ACTIONS(2508), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2508), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_API_AVAILABLE] = ACTIONS(2508), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_API_DEPRECATED] = ACTIONS(2508), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2508), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2508), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2508), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2508), + [anon_sym___deprecated_msg] = ACTIONS(2508), + [anon_sym___deprecated_enum_msg] = ACTIONS(2508), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2508), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2508), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2508), + [anon_sym_ATprotocol] = ACTIONS(2510), + [anon_sym_ATinterface] = ACTIONS(2510), + [anon_sym_ATimplementation] = ACTIONS(2510), + [anon_sym_ATcompatibility_alias] = ACTIONS(2510), + [anon_sym_ATsynthesize] = ACTIONS(2510), + [anon_sym_ATdynamic] = ACTIONS(2510), + [anon_sym_ATtry] = ACTIONS(2510), + [anon_sym___try] = ACTIONS(2508), + [anon_sym_ATthrow] = ACTIONS(2510), + [anon_sym_ATselector] = ACTIONS(2510), + [anon_sym_ATavailable] = ACTIONS(2510), + [anon_sym___builtin_available] = ACTIONS(2508), + [anon_sym_va_arg] = ACTIONS(2508), + [anon_sym_ATencode] = ACTIONS(2510), + [anon_sym_ATsynchronized] = ACTIONS(2510), + [anon_sym_BOOL] = ACTIONS(2508), + [anon_sym_IMP] = ACTIONS(2508), + [anon_sym_SEL] = ACTIONS(2508), + [anon_sym_Class] = ACTIONS(2508), + [anon_sym_id] = ACTIONS(2508), + }, + [239] = { + [sym_identifier] = ACTIONS(2512), + [aux_sym_preproc_include_token1] = ACTIONS(2512), + [aux_sym_preproc_include_token2] = ACTIONS(2512), + [aux_sym_preproc_def_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token2] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2512), + [aux_sym_preproc_else_token1] = ACTIONS(2512), + [aux_sym_preproc_elif_token1] = ACTIONS(2512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2512), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2512), + [sym_preproc_directive] = ACTIONS(2512), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_TILDE] = ACTIONS(2514), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_STAR] = ACTIONS(2514), + [anon_sym_CARET] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym___extension__] = ACTIONS(2512), + [anon_sym_typedef] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym___attribute__] = ACTIONS(2512), + [anon_sym___attribute] = ACTIONS(2512), + [anon_sym_noreturn] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym___declspec] = ACTIONS(2512), + [anon_sym___cdecl] = ACTIONS(2512), + [anon_sym___clrcall] = ACTIONS(2512), + [anon_sym___stdcall] = ACTIONS(2512), + [anon_sym___fastcall] = ACTIONS(2512), + [anon_sym___thiscall] = ACTIONS(2512), + [anon_sym___vectorcall] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_signed] = ACTIONS(2512), + [anon_sym_unsigned] = ACTIONS(2512), + [anon_sym_long] = ACTIONS(2512), + [anon_sym_short] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_ATautoreleasepool] = ACTIONS(2514), + [anon_sym_auto] = ACTIONS(2512), + [anon_sym_register] = ACTIONS(2512), + [anon_sym_inline] = ACTIONS(2512), + [anon_sym___inline] = ACTIONS(2512), + [anon_sym___inline__] = ACTIONS(2512), + [anon_sym___forceinline] = ACTIONS(2512), + [anon_sym_thread_local] = ACTIONS(2512), + [anon_sym___thread] = ACTIONS(2512), + [anon_sym_CG_EXTERN] = ACTIONS(2512), + [anon_sym_CG_INLINE] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2512), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2512), + [anon_sym_IBOutlet] = ACTIONS(2512), + [anon_sym_IBInspectable] = ACTIONS(2512), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2512), + [anon_sym_NS_INLINE] = ACTIONS(2512), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2512), + [anon_sym_OBJC_EXPORT] = ACTIONS(2512), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_constexpr] = ACTIONS(2512), + [anon_sym_volatile] = ACTIONS(2512), + [anon_sym_restrict] = ACTIONS(2512), + [anon_sym___restrict__] = ACTIONS(2512), + [anon_sym__Atomic] = ACTIONS(2512), + [anon_sym__Noreturn] = ACTIONS(2512), + [anon_sym__Nonnull] = ACTIONS(2512), + [anon_sym_nullable] = ACTIONS(2512), + [anon_sym__Complex] = ACTIONS(2512), + [anon_sym__Nullable] = ACTIONS(2512), + [anon_sym__Nullable_result] = ACTIONS(2512), + [anon_sym__Null_unspecified] = ACTIONS(2512), + [anon_sym___autoreleasing] = ACTIONS(2512), + [anon_sym___block] = ACTIONS(2512), + [anon_sym___bridge] = ACTIONS(2512), + [anon_sym___bridge_retained] = ACTIONS(2512), + [anon_sym___bridge_transfer] = ACTIONS(2512), + [anon_sym___complex] = ACTIONS(2512), + [anon_sym___const] = ACTIONS(2512), + [anon_sym___imag] = ACTIONS(2512), + [anon_sym___kindof] = ACTIONS(2512), + [anon_sym___nonnull] = ACTIONS(2512), + [anon_sym___nullable] = ACTIONS(2512), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2512), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2512), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2512), + [anon_sym___real] = ACTIONS(2512), + [anon_sym___strong] = ACTIONS(2512), + [anon_sym___unsafe_unretained] = ACTIONS(2512), + [anon_sym___unused] = ACTIONS(2512), + [anon_sym___weak] = ACTIONS(2512), + [anon_sym_alignas] = ACTIONS(2512), + [anon_sym__Alignas] = ACTIONS(2512), + [sym_primitive_type] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [anon_sym_struct] = ACTIONS(2512), + [anon_sym_union] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_else] = ACTIONS(2512), + [anon_sym_switch] = ACTIONS(2512), + [anon_sym_case] = ACTIONS(2512), + [anon_sym_default] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_do] = ACTIONS(2512), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_in] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_goto] = ACTIONS(2512), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_sizeof] = ACTIONS(2512), + [anon_sym___alignof__] = ACTIONS(2512), + [anon_sym___alignof] = ACTIONS(2512), + [anon_sym__alignof] = ACTIONS(2512), + [anon_sym_alignof] = ACTIONS(2512), + [anon_sym__Alignof] = ACTIONS(2512), + [anon_sym_offsetof] = ACTIONS(2512), + [anon_sym__Generic] = ACTIONS(2512), + [anon_sym_asm] = ACTIONS(2512), + [anon_sym___asm__] = ACTIONS(2512), + [anon_sym___asm] = ACTIONS(2512), + [sym_number_literal] = ACTIONS(2514), + [anon_sym_L_SQUOTE] = ACTIONS(2514), + [anon_sym_u_SQUOTE] = ACTIONS(2514), + [anon_sym_U_SQUOTE] = ACTIONS(2514), + [anon_sym_u8_SQUOTE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_AT] = ACTIONS(2512), + [anon_sym_DQUOTE] = ACTIONS(2514), + [anon_sym_L_DQUOTE] = ACTIONS(2514), + [anon_sym_u_DQUOTE] = ACTIONS(2514), + [anon_sym_U_DQUOTE] = ACTIONS(2514), + [anon_sym_u8_DQUOTE] = ACTIONS(2514), + [sym_true] = ACTIONS(2512), + [sym_false] = ACTIONS(2512), + [anon_sym_NULL] = ACTIONS(2512), + [anon_sym_nullptr] = ACTIONS(2512), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2512), + [anon_sym___typeof] = ACTIONS(2512), + [anon_sym_typeof] = ACTIONS(2512), + [anon_sym_ATimport] = ACTIONS(2514), + [aux_sym_preproc_undef_token1] = ACTIONS(2512), + [anon_sym_POUND] = ACTIONS(2512), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2512), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2512), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2512), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2512), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE] = ACTIONS(2512), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_API_AVAILABLE] = ACTIONS(2512), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_API_DEPRECATED] = ACTIONS(2512), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2512), + [anon_sym___deprecated_msg] = ACTIONS(2512), + [anon_sym___deprecated_enum_msg] = ACTIONS(2512), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2512), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2512), + [anon_sym_ATprotocol] = ACTIONS(2514), + [anon_sym_ATinterface] = ACTIONS(2514), + [anon_sym_ATimplementation] = ACTIONS(2514), + [anon_sym_ATcompatibility_alias] = ACTIONS(2514), + [anon_sym_ATsynthesize] = ACTIONS(2514), + [anon_sym_ATdynamic] = ACTIONS(2514), + [anon_sym_ATtry] = ACTIONS(2514), + [anon_sym___try] = ACTIONS(2512), + [anon_sym_ATthrow] = ACTIONS(2514), + [anon_sym_ATselector] = ACTIONS(2514), + [anon_sym_ATavailable] = ACTIONS(2514), + [anon_sym___builtin_available] = ACTIONS(2512), + [anon_sym_va_arg] = ACTIONS(2512), + [anon_sym_ATencode] = ACTIONS(2514), + [anon_sym_ATsynchronized] = ACTIONS(2514), + [anon_sym_BOOL] = ACTIONS(2512), + [anon_sym_IMP] = ACTIONS(2512), + [anon_sym_SEL] = ACTIONS(2512), + [anon_sym_Class] = ACTIONS(2512), + [anon_sym_id] = ACTIONS(2512), + }, + [240] = { + [sym_identifier] = ACTIONS(2364), + [aux_sym_preproc_include_token1] = ACTIONS(2364), + [aux_sym_preproc_include_token2] = ACTIONS(2364), + [aux_sym_preproc_def_token1] = ACTIONS(2364), + [aux_sym_preproc_if_token1] = ACTIONS(2364), + [aux_sym_preproc_if_token2] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2364), + [sym_preproc_directive] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_PLUS] = ACTIONS(2364), + [anon_sym_STAR] = ACTIONS(2366), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_AMP] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_typedef] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym___attribute__] = ACTIONS(2364), + [anon_sym___attribute] = ACTIONS(2364), + [anon_sym_noreturn] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym___declspec] = ACTIONS(2364), + [anon_sym___cdecl] = ACTIONS(2364), + [anon_sym___clrcall] = ACTIONS(2364), + [anon_sym___stdcall] = ACTIONS(2364), + [anon_sym___fastcall] = ACTIONS(2364), + [anon_sym___thiscall] = ACTIONS(2364), + [anon_sym___vectorcall] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_signed] = ACTIONS(2364), + [anon_sym_unsigned] = ACTIONS(2364), + [anon_sym_long] = ACTIONS(2364), + [anon_sym_short] = ACTIONS(2364), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_ATautoreleasepool] = ACTIONS(2366), + [anon_sym_auto] = ACTIONS(2364), + [anon_sym_register] = ACTIONS(2364), + [anon_sym_inline] = ACTIONS(2364), + [anon_sym___inline] = ACTIONS(2364), + [anon_sym___inline__] = ACTIONS(2364), + [anon_sym___forceinline] = ACTIONS(2364), + [anon_sym_thread_local] = ACTIONS(2364), + [anon_sym___thread] = ACTIONS(2364), + [anon_sym_CG_EXTERN] = ACTIONS(2364), + [anon_sym_CG_INLINE] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2364), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2364), + [anon_sym_IBOutlet] = ACTIONS(2364), + [anon_sym_IBInspectable] = ACTIONS(2364), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2364), + [anon_sym_NS_INLINE] = ACTIONS(2364), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2364), + [anon_sym_OBJC_EXPORT] = ACTIONS(2364), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [anon_sym_constexpr] = ACTIONS(2364), + [anon_sym_volatile] = ACTIONS(2364), + [anon_sym_restrict] = ACTIONS(2364), + [anon_sym___restrict__] = ACTIONS(2364), + [anon_sym__Atomic] = ACTIONS(2364), + [anon_sym__Noreturn] = ACTIONS(2364), + [anon_sym__Nonnull] = ACTIONS(2364), + [anon_sym_nullable] = ACTIONS(2364), + [anon_sym__Complex] = ACTIONS(2364), + [anon_sym__Nullable] = ACTIONS(2364), + [anon_sym__Nullable_result] = ACTIONS(2364), + [anon_sym__Null_unspecified] = ACTIONS(2364), + [anon_sym___autoreleasing] = ACTIONS(2364), + [anon_sym___block] = ACTIONS(2364), + [anon_sym___bridge] = ACTIONS(2364), + [anon_sym___bridge_retained] = ACTIONS(2364), + [anon_sym___bridge_transfer] = ACTIONS(2364), + [anon_sym___complex] = ACTIONS(2364), + [anon_sym___const] = ACTIONS(2364), + [anon_sym___imag] = ACTIONS(2364), + [anon_sym___kindof] = ACTIONS(2364), + [anon_sym___nonnull] = ACTIONS(2364), + [anon_sym___nullable] = ACTIONS(2364), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2364), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2364), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2364), + [anon_sym___real] = ACTIONS(2364), + [anon_sym___strong] = ACTIONS(2364), + [anon_sym___unsafe_unretained] = ACTIONS(2364), + [anon_sym___unused] = ACTIONS(2364), + [anon_sym___weak] = ACTIONS(2364), + [anon_sym_alignas] = ACTIONS(2364), + [anon_sym__Alignas] = ACTIONS(2364), + [sym_primitive_type] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(2364), + [anon_sym_union] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_switch] = ACTIONS(2364), + [anon_sym_case] = ACTIONS(2364), + [anon_sym_default] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_do] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_in] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_goto] = ACTIONS(2364), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_sizeof] = ACTIONS(2364), + [anon_sym___alignof__] = ACTIONS(2364), + [anon_sym___alignof] = ACTIONS(2364), + [anon_sym__alignof] = ACTIONS(2364), + [anon_sym_alignof] = ACTIONS(2364), + [anon_sym__Alignof] = ACTIONS(2364), + [anon_sym_offsetof] = ACTIONS(2364), + [anon_sym__Generic] = ACTIONS(2364), + [anon_sym_asm] = ACTIONS(2364), + [anon_sym___asm__] = ACTIONS(2364), + [anon_sym___asm] = ACTIONS(2364), + [sym_number_literal] = ACTIONS(2366), + [anon_sym_L_SQUOTE] = ACTIONS(2366), + [anon_sym_u_SQUOTE] = ACTIONS(2366), + [anon_sym_U_SQUOTE] = ACTIONS(2366), + [anon_sym_u8_SQUOTE] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2366), + [anon_sym_AT] = ACTIONS(2364), + [anon_sym_DQUOTE] = ACTIONS(2366), + [anon_sym_L_DQUOTE] = ACTIONS(2366), + [anon_sym_u_DQUOTE] = ACTIONS(2366), + [anon_sym_U_DQUOTE] = ACTIONS(2366), + [anon_sym_u8_DQUOTE] = ACTIONS(2366), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2364), + [anon_sym___typeof] = ACTIONS(2364), + [anon_sym_typeof] = ACTIONS(2364), + [anon_sym_ATimport] = ACTIONS(2366), + [aux_sym_preproc_undef_token1] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(2364), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2364), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2364), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2364), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2364), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE] = ACTIONS(2364), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_API_AVAILABLE] = ACTIONS(2364), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_API_DEPRECATED] = ACTIONS(2364), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2364), + [anon_sym___deprecated_msg] = ACTIONS(2364), + [anon_sym___deprecated_enum_msg] = ACTIONS(2364), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2364), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2364), + [anon_sym_ATprotocol] = ACTIONS(2366), + [anon_sym_ATinterface] = ACTIONS(2366), + [anon_sym_ATimplementation] = ACTIONS(2366), + [anon_sym_ATcompatibility_alias] = ACTIONS(2366), + [anon_sym_ATsynthesize] = ACTIONS(2366), + [anon_sym_ATdynamic] = ACTIONS(2366), + [anon_sym_ATtry] = ACTIONS(2366), + [anon_sym___try] = ACTIONS(2364), + [anon_sym_ATcatch] = ACTIONS(2366), + [anon_sym___catch] = ACTIONS(2364), + [anon_sym_ATfinally] = ACTIONS(2366), + [anon_sym___finally] = ACTIONS(2364), + [anon_sym_ATthrow] = ACTIONS(2366), + [anon_sym_ATselector] = ACTIONS(2366), + [anon_sym_ATavailable] = ACTIONS(2366), + [anon_sym___builtin_available] = ACTIONS(2364), + [anon_sym_va_arg] = ACTIONS(2364), + [anon_sym_ATencode] = ACTIONS(2366), + [anon_sym_ATsynchronized] = ACTIONS(2366), + [anon_sym_BOOL] = ACTIONS(2364), + [anon_sym_IMP] = ACTIONS(2364), + [anon_sym_SEL] = ACTIONS(2364), + [anon_sym_Class] = ACTIONS(2364), + [anon_sym_id] = ACTIONS(2364), + }, + [241] = { + [sym_identifier] = ACTIONS(2350), + [aux_sym_preproc_include_token1] = ACTIONS(2350), + [aux_sym_preproc_include_token2] = ACTIONS(2350), + [aux_sym_preproc_def_token1] = ACTIONS(2350), + [aux_sym_preproc_if_token1] = ACTIONS(2350), + [aux_sym_preproc_if_token2] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2350), + [sym_preproc_directive] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(2352), + [anon_sym_BANG] = ACTIONS(2352), + [anon_sym_TILDE] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2350), + [anon_sym_STAR] = ACTIONS(2352), + [anon_sym_CARET] = ACTIONS(2352), + [anon_sym_AMP] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2352), + [anon_sym___extension__] = ACTIONS(2350), + [anon_sym_typedef] = ACTIONS(2350), + [anon_sym_extern] = ACTIONS(2350), + [anon_sym___attribute__] = ACTIONS(2350), + [anon_sym___attribute] = ACTIONS(2350), + [anon_sym_noreturn] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2352), + [anon_sym___declspec] = ACTIONS(2350), + [anon_sym___cdecl] = ACTIONS(2350), + [anon_sym___clrcall] = ACTIONS(2350), + [anon_sym___stdcall] = ACTIONS(2350), + [anon_sym___fastcall] = ACTIONS(2350), + [anon_sym___thiscall] = ACTIONS(2350), + [anon_sym___vectorcall] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2352), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(2350), + [anon_sym_ATautoreleasepool] = ACTIONS(2352), + [anon_sym_auto] = ACTIONS(2350), + [anon_sym_register] = ACTIONS(2350), + [anon_sym_inline] = ACTIONS(2350), + [anon_sym___inline] = ACTIONS(2350), + [anon_sym___inline__] = ACTIONS(2350), + [anon_sym___forceinline] = ACTIONS(2350), + [anon_sym_thread_local] = ACTIONS(2350), + [anon_sym___thread] = ACTIONS(2350), + [anon_sym_CG_EXTERN] = ACTIONS(2350), + [anon_sym_CG_INLINE] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2350), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2350), + [anon_sym_IBOutlet] = ACTIONS(2350), + [anon_sym_IBInspectable] = ACTIONS(2350), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2350), + [anon_sym_NS_INLINE] = ACTIONS(2350), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2350), + [anon_sym_OBJC_EXPORT] = ACTIONS(2350), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2350), + [anon_sym_const] = ACTIONS(2350), + [anon_sym_constexpr] = ACTIONS(2350), + [anon_sym_volatile] = ACTIONS(2350), + [anon_sym_restrict] = ACTIONS(2350), + [anon_sym___restrict__] = ACTIONS(2350), + [anon_sym__Atomic] = ACTIONS(2350), + [anon_sym__Noreturn] = ACTIONS(2350), + [anon_sym__Nonnull] = ACTIONS(2350), + [anon_sym_nullable] = ACTIONS(2350), + [anon_sym__Complex] = ACTIONS(2350), + [anon_sym__Nullable] = ACTIONS(2350), + [anon_sym__Nullable_result] = ACTIONS(2350), + [anon_sym__Null_unspecified] = ACTIONS(2350), + [anon_sym___autoreleasing] = ACTIONS(2350), + [anon_sym___block] = ACTIONS(2350), + [anon_sym___bridge] = ACTIONS(2350), + [anon_sym___bridge_retained] = ACTIONS(2350), + [anon_sym___bridge_transfer] = ACTIONS(2350), + [anon_sym___complex] = ACTIONS(2350), + [anon_sym___const] = ACTIONS(2350), + [anon_sym___imag] = ACTIONS(2350), + [anon_sym___kindof] = ACTIONS(2350), + [anon_sym___nonnull] = ACTIONS(2350), + [anon_sym___nullable] = ACTIONS(2350), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2350), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2350), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2350), + [anon_sym___real] = ACTIONS(2350), + [anon_sym___strong] = ACTIONS(2350), + [anon_sym___unsafe_unretained] = ACTIONS(2350), + [anon_sym___unused] = ACTIONS(2350), + [anon_sym___weak] = ACTIONS(2350), + [anon_sym_alignas] = ACTIONS(2350), + [anon_sym__Alignas] = ACTIONS(2350), + [sym_primitive_type] = ACTIONS(2350), + [anon_sym_enum] = ACTIONS(2350), + [anon_sym_struct] = ACTIONS(2350), + [anon_sym_union] = ACTIONS(2350), + [anon_sym_if] = ACTIONS(2350), + [anon_sym_else] = ACTIONS(2350), + [anon_sym_switch] = ACTIONS(2350), + [anon_sym_case] = ACTIONS(2350), + [anon_sym_default] = ACTIONS(2350), + [anon_sym_while] = ACTIONS(2350), + [anon_sym_do] = ACTIONS(2350), + [anon_sym_for] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_return] = ACTIONS(2350), + [anon_sym_break] = ACTIONS(2350), + [anon_sym_continue] = ACTIONS(2350), + [anon_sym_goto] = ACTIONS(2350), + [anon_sym_DASH_DASH] = ACTIONS(2352), + [anon_sym_PLUS_PLUS] = ACTIONS(2352), + [anon_sym_sizeof] = ACTIONS(2350), + [anon_sym___alignof__] = ACTIONS(2350), + [anon_sym___alignof] = ACTIONS(2350), + [anon_sym__alignof] = ACTIONS(2350), + [anon_sym_alignof] = ACTIONS(2350), + [anon_sym__Alignof] = ACTIONS(2350), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_asm] = ACTIONS(2350), + [anon_sym___asm__] = ACTIONS(2350), + [anon_sym___asm] = ACTIONS(2350), + [sym_number_literal] = ACTIONS(2352), + [anon_sym_L_SQUOTE] = ACTIONS(2352), + [anon_sym_u_SQUOTE] = ACTIONS(2352), + [anon_sym_U_SQUOTE] = ACTIONS(2352), + [anon_sym_u8_SQUOTE] = ACTIONS(2352), + [anon_sym_SQUOTE] = ACTIONS(2352), + [anon_sym_AT] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2352), + [anon_sym_L_DQUOTE] = ACTIONS(2352), + [anon_sym_u_DQUOTE] = ACTIONS(2352), + [anon_sym_U_DQUOTE] = ACTIONS(2352), + [anon_sym_u8_DQUOTE] = ACTIONS(2352), + [sym_true] = ACTIONS(2350), + [sym_false] = ACTIONS(2350), + [anon_sym_NULL] = ACTIONS(2350), + [anon_sym_nullptr] = ACTIONS(2350), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2350), + [anon_sym___typeof] = ACTIONS(2350), + [anon_sym_typeof] = ACTIONS(2350), + [anon_sym_ATimport] = ACTIONS(2352), + [aux_sym_preproc_undef_token1] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(2350), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2350), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2350), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2350), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2350), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE] = ACTIONS(2350), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_API_AVAILABLE] = ACTIONS(2350), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_API_DEPRECATED] = ACTIONS(2350), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2350), + [anon_sym___deprecated_msg] = ACTIONS(2350), + [anon_sym___deprecated_enum_msg] = ACTIONS(2350), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2350), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2350), + [anon_sym_ATprotocol] = ACTIONS(2352), + [anon_sym_ATinterface] = ACTIONS(2352), + [anon_sym_ATimplementation] = ACTIONS(2352), + [anon_sym_ATcompatibility_alias] = ACTIONS(2352), + [anon_sym_ATsynthesize] = ACTIONS(2352), + [anon_sym_ATdynamic] = ACTIONS(2352), + [anon_sym_ATtry] = ACTIONS(2352), + [anon_sym___try] = ACTIONS(2350), + [anon_sym_ATcatch] = ACTIONS(2352), + [anon_sym___catch] = ACTIONS(2350), + [anon_sym_ATfinally] = ACTIONS(2352), + [anon_sym___finally] = ACTIONS(2350), + [anon_sym_ATthrow] = ACTIONS(2352), + [anon_sym_ATselector] = ACTIONS(2352), + [anon_sym_ATavailable] = ACTIONS(2352), + [anon_sym___builtin_available] = ACTIONS(2350), + [anon_sym_va_arg] = ACTIONS(2350), + [anon_sym_ATencode] = ACTIONS(2352), + [anon_sym_ATsynchronized] = ACTIONS(2352), + [anon_sym_BOOL] = ACTIONS(2350), + [anon_sym_IMP] = ACTIONS(2350), + [anon_sym_SEL] = ACTIONS(2350), + [anon_sym_Class] = ACTIONS(2350), + [anon_sym_id] = ACTIONS(2350), + }, + [242] = { + [sym_identifier] = ACTIONS(2294), + [aux_sym_preproc_include_token1] = ACTIONS(2294), + [aux_sym_preproc_include_token2] = ACTIONS(2294), + [aux_sym_preproc_def_token1] = ACTIONS(2294), + [aux_sym_preproc_if_token1] = ACTIONS(2294), + [aux_sym_preproc_if_token2] = ACTIONS(2294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2294), + [aux_sym_preproc_else_token1] = ACTIONS(2294), + [aux_sym_preproc_elif_token1] = ACTIONS(2294), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2294), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2294), + [sym_preproc_directive] = ACTIONS(2294), + [anon_sym_LPAREN2] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_STAR] = ACTIONS(2296), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym___extension__] = ACTIONS(2294), + [anon_sym_typedef] = ACTIONS(2294), + [anon_sym_extern] = ACTIONS(2294), + [anon_sym___attribute__] = ACTIONS(2294), + [anon_sym___attribute] = ACTIONS(2294), + [anon_sym_noreturn] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym___declspec] = ACTIONS(2294), + [anon_sym___cdecl] = ACTIONS(2294), + [anon_sym___clrcall] = ACTIONS(2294), + [anon_sym___stdcall] = ACTIONS(2294), + [anon_sym___fastcall] = ACTIONS(2294), + [anon_sym___thiscall] = ACTIONS(2294), + [anon_sym___vectorcall] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_signed] = ACTIONS(2294), + [anon_sym_unsigned] = ACTIONS(2294), + [anon_sym_long] = ACTIONS(2294), + [anon_sym_short] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_ATautoreleasepool] = ACTIONS(2296), + [anon_sym_auto] = ACTIONS(2294), + [anon_sym_register] = ACTIONS(2294), + [anon_sym_inline] = ACTIONS(2294), + [anon_sym___inline] = ACTIONS(2294), + [anon_sym___inline__] = ACTIONS(2294), + [anon_sym___forceinline] = ACTIONS(2294), + [anon_sym_thread_local] = ACTIONS(2294), + [anon_sym___thread] = ACTIONS(2294), + [anon_sym_CG_EXTERN] = ACTIONS(2294), + [anon_sym_CG_INLINE] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2294), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2294), + [anon_sym_IBOutlet] = ACTIONS(2294), + [anon_sym_IBInspectable] = ACTIONS(2294), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2294), + [anon_sym_NS_INLINE] = ACTIONS(2294), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2294), + [anon_sym_OBJC_EXPORT] = ACTIONS(2294), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [anon_sym_constexpr] = ACTIONS(2294), + [anon_sym_volatile] = ACTIONS(2294), + [anon_sym_restrict] = ACTIONS(2294), + [anon_sym___restrict__] = ACTIONS(2294), + [anon_sym__Atomic] = ACTIONS(2294), + [anon_sym__Noreturn] = ACTIONS(2294), + [anon_sym__Nonnull] = ACTIONS(2294), + [anon_sym_nullable] = ACTIONS(2294), + [anon_sym__Complex] = ACTIONS(2294), + [anon_sym__Nullable] = ACTIONS(2294), + [anon_sym__Nullable_result] = ACTIONS(2294), + [anon_sym__Null_unspecified] = ACTIONS(2294), + [anon_sym___autoreleasing] = ACTIONS(2294), + [anon_sym___block] = ACTIONS(2294), + [anon_sym___bridge] = ACTIONS(2294), + [anon_sym___bridge_retained] = ACTIONS(2294), + [anon_sym___bridge_transfer] = ACTIONS(2294), + [anon_sym___complex] = ACTIONS(2294), + [anon_sym___const] = ACTIONS(2294), + [anon_sym___imag] = ACTIONS(2294), + [anon_sym___kindof] = ACTIONS(2294), + [anon_sym___nonnull] = ACTIONS(2294), + [anon_sym___nullable] = ACTIONS(2294), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2294), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2294), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2294), + [anon_sym___real] = ACTIONS(2294), + [anon_sym___strong] = ACTIONS(2294), + [anon_sym___unsafe_unretained] = ACTIONS(2294), + [anon_sym___unused] = ACTIONS(2294), + [anon_sym___weak] = ACTIONS(2294), + [anon_sym_alignas] = ACTIONS(2294), + [anon_sym__Alignas] = ACTIONS(2294), + [sym_primitive_type] = ACTIONS(2294), + [anon_sym_enum] = ACTIONS(2294), + [anon_sym_struct] = ACTIONS(2294), + [anon_sym_union] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_switch] = ACTIONS(2294), + [anon_sym_case] = ACTIONS(2294), + [anon_sym_default] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_goto] = ACTIONS(2294), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_sizeof] = ACTIONS(2294), + [anon_sym___alignof__] = ACTIONS(2294), + [anon_sym___alignof] = ACTIONS(2294), + [anon_sym__alignof] = ACTIONS(2294), + [anon_sym_alignof] = ACTIONS(2294), + [anon_sym__Alignof] = ACTIONS(2294), + [anon_sym_offsetof] = ACTIONS(2294), + [anon_sym__Generic] = ACTIONS(2294), + [anon_sym_asm] = ACTIONS(2294), + [anon_sym___asm__] = ACTIONS(2294), + [anon_sym___asm] = ACTIONS(2294), + [sym_number_literal] = ACTIONS(2296), + [anon_sym_L_SQUOTE] = ACTIONS(2296), + [anon_sym_u_SQUOTE] = ACTIONS(2296), + [anon_sym_U_SQUOTE] = ACTIONS(2296), + [anon_sym_u8_SQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_L_DQUOTE] = ACTIONS(2296), + [anon_sym_u_DQUOTE] = ACTIONS(2296), + [anon_sym_U_DQUOTE] = ACTIONS(2296), + [anon_sym_u8_DQUOTE] = ACTIONS(2296), + [sym_true] = ACTIONS(2294), + [sym_false] = ACTIONS(2294), + [anon_sym_NULL] = ACTIONS(2294), + [anon_sym_nullptr] = ACTIONS(2294), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2294), + [anon_sym___typeof] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(2294), + [anon_sym_ATimport] = ACTIONS(2296), + [aux_sym_preproc_undef_token1] = ACTIONS(2294), + [anon_sym_POUND] = ACTIONS(2294), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2294), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2294), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2294), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2294), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE] = ACTIONS(2294), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_API_AVAILABLE] = ACTIONS(2294), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_API_DEPRECATED] = ACTIONS(2294), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2294), + [anon_sym___deprecated_msg] = ACTIONS(2294), + [anon_sym___deprecated_enum_msg] = ACTIONS(2294), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2294), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2294), + [anon_sym_ATprotocol] = ACTIONS(2296), + [anon_sym_ATinterface] = ACTIONS(2296), + [anon_sym_ATimplementation] = ACTIONS(2296), + [anon_sym_ATcompatibility_alias] = ACTIONS(2296), + [anon_sym_ATsynthesize] = ACTIONS(2296), + [anon_sym_ATdynamic] = ACTIONS(2296), + [anon_sym_ATtry] = ACTIONS(2296), + [anon_sym___try] = ACTIONS(2294), + [anon_sym_ATthrow] = ACTIONS(2296), + [anon_sym_ATselector] = ACTIONS(2296), + [anon_sym_ATavailable] = ACTIONS(2296), + [anon_sym___builtin_available] = ACTIONS(2294), + [anon_sym_va_arg] = ACTIONS(2294), + [anon_sym_ATencode] = ACTIONS(2296), + [anon_sym_ATsynchronized] = ACTIONS(2296), + [anon_sym_BOOL] = ACTIONS(2294), + [anon_sym_IMP] = ACTIONS(2294), + [anon_sym_SEL] = ACTIONS(2294), + [anon_sym_Class] = ACTIONS(2294), + [anon_sym_id] = ACTIONS(2294), + }, + [243] = { + [sym_identifier] = ACTIONS(2516), + [aux_sym_preproc_include_token1] = ACTIONS(2516), + [aux_sym_preproc_include_token2] = ACTIONS(2516), + [aux_sym_preproc_def_token1] = ACTIONS(2516), + [aux_sym_preproc_if_token1] = ACTIONS(2516), + [aux_sym_preproc_if_token2] = ACTIONS(2516), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2516), + [aux_sym_preproc_else_token1] = ACTIONS(2516), + [aux_sym_preproc_elif_token1] = ACTIONS(2516), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2516), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2516), + [sym_preproc_directive] = ACTIONS(2516), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_BANG] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_PLUS] = ACTIONS(2516), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_CARET] = ACTIONS(2518), + [anon_sym_AMP] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym___extension__] = ACTIONS(2516), + [anon_sym_typedef] = ACTIONS(2516), + [anon_sym_extern] = ACTIONS(2516), + [anon_sym___attribute__] = ACTIONS(2516), + [anon_sym___attribute] = ACTIONS(2516), + [anon_sym_noreturn] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2518), + [anon_sym___declspec] = ACTIONS(2516), + [anon_sym___cdecl] = ACTIONS(2516), + [anon_sym___clrcall] = ACTIONS(2516), + [anon_sym___stdcall] = ACTIONS(2516), + [anon_sym___fastcall] = ACTIONS(2516), + [anon_sym___thiscall] = ACTIONS(2516), + [anon_sym___vectorcall] = ACTIONS(2516), + [anon_sym_LBRACE] = ACTIONS(2518), + [anon_sym_signed] = ACTIONS(2516), + [anon_sym_unsigned] = ACTIONS(2516), + [anon_sym_long] = ACTIONS(2516), + [anon_sym_short] = ACTIONS(2516), + [anon_sym_static] = ACTIONS(2516), + [anon_sym_ATautoreleasepool] = ACTIONS(2518), + [anon_sym_auto] = ACTIONS(2516), + [anon_sym_register] = ACTIONS(2516), + [anon_sym_inline] = ACTIONS(2516), + [anon_sym___inline] = ACTIONS(2516), + [anon_sym___inline__] = ACTIONS(2516), + [anon_sym___forceinline] = ACTIONS(2516), + [anon_sym_thread_local] = ACTIONS(2516), + [anon_sym___thread] = ACTIONS(2516), + [anon_sym_CG_EXTERN] = ACTIONS(2516), + [anon_sym_CG_INLINE] = ACTIONS(2516), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2516), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2516), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2516), + [anon_sym_IBOutlet] = ACTIONS(2516), + [anon_sym_IBInspectable] = ACTIONS(2516), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2516), + [anon_sym_NS_INLINE] = ACTIONS(2516), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2516), + [anon_sym_OBJC_EXPORT] = ACTIONS(2516), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2516), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2516), + [anon_sym_const] = ACTIONS(2516), + [anon_sym_constexpr] = ACTIONS(2516), + [anon_sym_volatile] = ACTIONS(2516), + [anon_sym_restrict] = ACTIONS(2516), + [anon_sym___restrict__] = ACTIONS(2516), + [anon_sym__Atomic] = ACTIONS(2516), + [anon_sym__Noreturn] = ACTIONS(2516), + [anon_sym__Nonnull] = ACTIONS(2516), + [anon_sym_nullable] = ACTIONS(2516), + [anon_sym__Complex] = ACTIONS(2516), + [anon_sym__Nullable] = ACTIONS(2516), + [anon_sym__Nullable_result] = ACTIONS(2516), + [anon_sym__Null_unspecified] = ACTIONS(2516), + [anon_sym___autoreleasing] = ACTIONS(2516), + [anon_sym___block] = ACTIONS(2516), + [anon_sym___bridge] = ACTIONS(2516), + [anon_sym___bridge_retained] = ACTIONS(2516), + [anon_sym___bridge_transfer] = ACTIONS(2516), + [anon_sym___complex] = ACTIONS(2516), + [anon_sym___const] = ACTIONS(2516), + [anon_sym___imag] = ACTIONS(2516), + [anon_sym___kindof] = ACTIONS(2516), + [anon_sym___nonnull] = ACTIONS(2516), + [anon_sym___nullable] = ACTIONS(2516), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2516), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2516), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2516), + [anon_sym___real] = ACTIONS(2516), + [anon_sym___strong] = ACTIONS(2516), + [anon_sym___unsafe_unretained] = ACTIONS(2516), + [anon_sym___unused] = ACTIONS(2516), + [anon_sym___weak] = ACTIONS(2516), + [anon_sym_alignas] = ACTIONS(2516), + [anon_sym__Alignas] = ACTIONS(2516), + [sym_primitive_type] = ACTIONS(2516), + [anon_sym_enum] = ACTIONS(2516), + [anon_sym_struct] = ACTIONS(2516), + [anon_sym_union] = ACTIONS(2516), + [anon_sym_if] = ACTIONS(2516), + [anon_sym_else] = ACTIONS(2516), + [anon_sym_switch] = ACTIONS(2516), + [anon_sym_case] = ACTIONS(2516), + [anon_sym_default] = ACTIONS(2516), + [anon_sym_while] = ACTIONS(2516), + [anon_sym_do] = ACTIONS(2516), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_in] = ACTIONS(2516), + [anon_sym_return] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_goto] = ACTIONS(2516), + [anon_sym_DASH_DASH] = ACTIONS(2518), + [anon_sym_PLUS_PLUS] = ACTIONS(2518), + [anon_sym_sizeof] = ACTIONS(2516), + [anon_sym___alignof__] = ACTIONS(2516), + [anon_sym___alignof] = ACTIONS(2516), + [anon_sym__alignof] = ACTIONS(2516), + [anon_sym_alignof] = ACTIONS(2516), + [anon_sym__Alignof] = ACTIONS(2516), + [anon_sym_offsetof] = ACTIONS(2516), + [anon_sym__Generic] = ACTIONS(2516), + [anon_sym_asm] = ACTIONS(2516), + [anon_sym___asm__] = ACTIONS(2516), + [anon_sym___asm] = ACTIONS(2516), + [sym_number_literal] = ACTIONS(2518), + [anon_sym_L_SQUOTE] = ACTIONS(2518), + [anon_sym_u_SQUOTE] = ACTIONS(2518), + [anon_sym_U_SQUOTE] = ACTIONS(2518), + [anon_sym_u8_SQUOTE] = ACTIONS(2518), + [anon_sym_SQUOTE] = ACTIONS(2518), + [anon_sym_AT] = ACTIONS(2516), + [anon_sym_DQUOTE] = ACTIONS(2518), + [anon_sym_L_DQUOTE] = ACTIONS(2518), + [anon_sym_u_DQUOTE] = ACTIONS(2518), + [anon_sym_U_DQUOTE] = ACTIONS(2518), + [anon_sym_u8_DQUOTE] = ACTIONS(2518), + [sym_true] = ACTIONS(2516), + [sym_false] = ACTIONS(2516), + [anon_sym_NULL] = ACTIONS(2516), + [anon_sym_nullptr] = ACTIONS(2516), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2516), + [anon_sym___typeof] = ACTIONS(2516), + [anon_sym_typeof] = ACTIONS(2516), + [anon_sym_ATimport] = ACTIONS(2518), + [aux_sym_preproc_undef_token1] = ACTIONS(2516), + [anon_sym_POUND] = ACTIONS(2516), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2516), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2516), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2516), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2516), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2516), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2516), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2516), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2516), + [anon_sym_NS_AVAILABLE] = ACTIONS(2516), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2516), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_API_AVAILABLE] = ACTIONS(2516), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_API_DEPRECATED] = ACTIONS(2516), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2516), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2516), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2516), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2516), + [anon_sym___deprecated_msg] = ACTIONS(2516), + [anon_sym___deprecated_enum_msg] = ACTIONS(2516), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2516), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2516), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2516), + [anon_sym_ATprotocol] = ACTIONS(2518), + [anon_sym_ATinterface] = ACTIONS(2518), + [anon_sym_ATimplementation] = ACTIONS(2518), + [anon_sym_ATcompatibility_alias] = ACTIONS(2518), + [anon_sym_ATsynthesize] = ACTIONS(2518), + [anon_sym_ATdynamic] = ACTIONS(2518), + [anon_sym_ATtry] = ACTIONS(2518), + [anon_sym___try] = ACTIONS(2516), + [anon_sym_ATthrow] = ACTIONS(2518), + [anon_sym_ATselector] = ACTIONS(2518), + [anon_sym_ATavailable] = ACTIONS(2518), + [anon_sym___builtin_available] = ACTIONS(2516), + [anon_sym_va_arg] = ACTIONS(2516), + [anon_sym_ATencode] = ACTIONS(2518), + [anon_sym_ATsynchronized] = ACTIONS(2518), + [anon_sym_BOOL] = ACTIONS(2516), + [anon_sym_IMP] = ACTIONS(2516), + [anon_sym_SEL] = ACTIONS(2516), + [anon_sym_Class] = ACTIONS(2516), + [anon_sym_id] = ACTIONS(2516), + }, + [244] = { + [sym_identifier] = ACTIONS(2520), + [aux_sym_preproc_include_token1] = ACTIONS(2520), + [aux_sym_preproc_include_token2] = ACTIONS(2520), + [aux_sym_preproc_def_token1] = ACTIONS(2520), + [aux_sym_preproc_if_token1] = ACTIONS(2520), + [aux_sym_preproc_if_token2] = ACTIONS(2520), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2520), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2520), + [aux_sym_preproc_else_token1] = ACTIONS(2520), + [aux_sym_preproc_elif_token1] = ACTIONS(2520), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2520), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2520), + [sym_preproc_directive] = ACTIONS(2520), + [anon_sym_LPAREN2] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2522), + [anon_sym_TILDE] = ACTIONS(2522), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_PLUS] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_CARET] = ACTIONS(2522), + [anon_sym_AMP] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym___extension__] = ACTIONS(2520), + [anon_sym_typedef] = ACTIONS(2520), + [anon_sym_extern] = ACTIONS(2520), + [anon_sym___attribute__] = ACTIONS(2520), + [anon_sym___attribute] = ACTIONS(2520), + [anon_sym_noreturn] = ACTIONS(2520), + [anon_sym_LBRACK] = ACTIONS(2522), + [anon_sym___declspec] = ACTIONS(2520), + [anon_sym___cdecl] = ACTIONS(2520), + [anon_sym___clrcall] = ACTIONS(2520), + [anon_sym___stdcall] = ACTIONS(2520), + [anon_sym___fastcall] = ACTIONS(2520), + [anon_sym___thiscall] = ACTIONS(2520), + [anon_sym___vectorcall] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_signed] = ACTIONS(2520), + [anon_sym_unsigned] = ACTIONS(2520), + [anon_sym_long] = ACTIONS(2520), + [anon_sym_short] = ACTIONS(2520), + [anon_sym_static] = ACTIONS(2520), + [anon_sym_ATautoreleasepool] = ACTIONS(2522), + [anon_sym_auto] = ACTIONS(2520), + [anon_sym_register] = ACTIONS(2520), + [anon_sym_inline] = ACTIONS(2520), + [anon_sym___inline] = ACTIONS(2520), + [anon_sym___inline__] = ACTIONS(2520), + [anon_sym___forceinline] = ACTIONS(2520), + [anon_sym_thread_local] = ACTIONS(2520), + [anon_sym___thread] = ACTIONS(2520), + [anon_sym_CG_EXTERN] = ACTIONS(2520), + [anon_sym_CG_INLINE] = ACTIONS(2520), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2520), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2520), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2520), + [anon_sym_IBOutlet] = ACTIONS(2520), + [anon_sym_IBInspectable] = ACTIONS(2520), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2520), + [anon_sym_NS_INLINE] = ACTIONS(2520), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2520), + [anon_sym_OBJC_EXPORT] = ACTIONS(2520), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2520), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2520), + [anon_sym_const] = ACTIONS(2520), + [anon_sym_constexpr] = ACTIONS(2520), + [anon_sym_volatile] = ACTIONS(2520), + [anon_sym_restrict] = ACTIONS(2520), + [anon_sym___restrict__] = ACTIONS(2520), + [anon_sym__Atomic] = ACTIONS(2520), + [anon_sym__Noreturn] = ACTIONS(2520), + [anon_sym__Nonnull] = ACTIONS(2520), + [anon_sym_nullable] = ACTIONS(2520), + [anon_sym__Complex] = ACTIONS(2520), + [anon_sym__Nullable] = ACTIONS(2520), + [anon_sym__Nullable_result] = ACTIONS(2520), + [anon_sym__Null_unspecified] = ACTIONS(2520), + [anon_sym___autoreleasing] = ACTIONS(2520), + [anon_sym___block] = ACTIONS(2520), + [anon_sym___bridge] = ACTIONS(2520), + [anon_sym___bridge_retained] = ACTIONS(2520), + [anon_sym___bridge_transfer] = ACTIONS(2520), + [anon_sym___complex] = ACTIONS(2520), + [anon_sym___const] = ACTIONS(2520), + [anon_sym___imag] = ACTIONS(2520), + [anon_sym___kindof] = ACTIONS(2520), + [anon_sym___nonnull] = ACTIONS(2520), + [anon_sym___nullable] = ACTIONS(2520), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2520), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2520), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2520), + [anon_sym___real] = ACTIONS(2520), + [anon_sym___strong] = ACTIONS(2520), + [anon_sym___unsafe_unretained] = ACTIONS(2520), + [anon_sym___unused] = ACTIONS(2520), + [anon_sym___weak] = ACTIONS(2520), + [anon_sym_alignas] = ACTIONS(2520), + [anon_sym__Alignas] = ACTIONS(2520), + [sym_primitive_type] = ACTIONS(2520), + [anon_sym_enum] = ACTIONS(2520), + [anon_sym_struct] = ACTIONS(2520), + [anon_sym_union] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2520), + [anon_sym_else] = ACTIONS(2520), + [anon_sym_switch] = ACTIONS(2520), + [anon_sym_case] = ACTIONS(2520), + [anon_sym_default] = ACTIONS(2520), + [anon_sym_while] = ACTIONS(2520), + [anon_sym_do] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2520), + [anon_sym_in] = ACTIONS(2520), + [anon_sym_return] = ACTIONS(2520), + [anon_sym_break] = ACTIONS(2520), + [anon_sym_continue] = ACTIONS(2520), + [anon_sym_goto] = ACTIONS(2520), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_sizeof] = ACTIONS(2520), + [anon_sym___alignof__] = ACTIONS(2520), + [anon_sym___alignof] = ACTIONS(2520), + [anon_sym__alignof] = ACTIONS(2520), + [anon_sym_alignof] = ACTIONS(2520), + [anon_sym__Alignof] = ACTIONS(2520), + [anon_sym_offsetof] = ACTIONS(2520), + [anon_sym__Generic] = ACTIONS(2520), + [anon_sym_asm] = ACTIONS(2520), + [anon_sym___asm__] = ACTIONS(2520), + [anon_sym___asm] = ACTIONS(2520), + [sym_number_literal] = ACTIONS(2522), + [anon_sym_L_SQUOTE] = ACTIONS(2522), + [anon_sym_u_SQUOTE] = ACTIONS(2522), + [anon_sym_U_SQUOTE] = ACTIONS(2522), + [anon_sym_u8_SQUOTE] = ACTIONS(2522), + [anon_sym_SQUOTE] = ACTIONS(2522), + [anon_sym_AT] = ACTIONS(2520), + [anon_sym_DQUOTE] = ACTIONS(2522), + [anon_sym_L_DQUOTE] = ACTIONS(2522), + [anon_sym_u_DQUOTE] = ACTIONS(2522), + [anon_sym_U_DQUOTE] = ACTIONS(2522), + [anon_sym_u8_DQUOTE] = ACTIONS(2522), + [sym_true] = ACTIONS(2520), + [sym_false] = ACTIONS(2520), + [anon_sym_NULL] = ACTIONS(2520), + [anon_sym_nullptr] = ACTIONS(2520), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2520), + [anon_sym___typeof] = ACTIONS(2520), + [anon_sym_typeof] = ACTIONS(2520), + [anon_sym_ATimport] = ACTIONS(2522), + [aux_sym_preproc_undef_token1] = ACTIONS(2520), + [anon_sym_POUND] = ACTIONS(2520), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2520), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2520), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2520), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2520), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2520), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2520), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2520), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2520), + [anon_sym_NS_AVAILABLE] = ACTIONS(2520), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2520), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_API_AVAILABLE] = ACTIONS(2520), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_API_DEPRECATED] = ACTIONS(2520), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2520), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2520), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2520), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2520), + [anon_sym___deprecated_msg] = ACTIONS(2520), + [anon_sym___deprecated_enum_msg] = ACTIONS(2520), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2520), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2520), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2520), + [anon_sym_ATprotocol] = ACTIONS(2522), + [anon_sym_ATinterface] = ACTIONS(2522), + [anon_sym_ATimplementation] = ACTIONS(2522), + [anon_sym_ATcompatibility_alias] = ACTIONS(2522), + [anon_sym_ATsynthesize] = ACTIONS(2522), + [anon_sym_ATdynamic] = ACTIONS(2522), + [anon_sym_ATtry] = ACTIONS(2522), + [anon_sym___try] = ACTIONS(2520), + [anon_sym_ATthrow] = ACTIONS(2522), + [anon_sym_ATselector] = ACTIONS(2522), + [anon_sym_ATavailable] = ACTIONS(2522), + [anon_sym___builtin_available] = ACTIONS(2520), + [anon_sym_va_arg] = ACTIONS(2520), + [anon_sym_ATencode] = ACTIONS(2522), + [anon_sym_ATsynchronized] = ACTIONS(2522), + [anon_sym_BOOL] = ACTIONS(2520), + [anon_sym_IMP] = ACTIONS(2520), + [anon_sym_SEL] = ACTIONS(2520), + [anon_sym_Class] = ACTIONS(2520), + [anon_sym_id] = ACTIONS(2520), + }, + [245] = { + [sym_identifier] = ACTIONS(2524), + [aux_sym_preproc_include_token1] = ACTIONS(2524), + [aux_sym_preproc_include_token2] = ACTIONS(2524), + [aux_sym_preproc_def_token1] = ACTIONS(2524), + [aux_sym_preproc_if_token1] = ACTIONS(2524), + [aux_sym_preproc_if_token2] = ACTIONS(2524), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2524), + [aux_sym_preproc_else_token1] = ACTIONS(2524), + [aux_sym_preproc_elif_token1] = ACTIONS(2524), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2524), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2524), + [sym_preproc_directive] = ACTIONS(2524), + [anon_sym_LPAREN2] = ACTIONS(2526), + [anon_sym_BANG] = ACTIONS(2526), + [anon_sym_TILDE] = ACTIONS(2526), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_STAR] = ACTIONS(2526), + [anon_sym_CARET] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2526), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym___extension__] = ACTIONS(2524), + [anon_sym_typedef] = ACTIONS(2524), + [anon_sym_extern] = ACTIONS(2524), + [anon_sym___attribute__] = ACTIONS(2524), + [anon_sym___attribute] = ACTIONS(2524), + [anon_sym_noreturn] = ACTIONS(2524), + [anon_sym_LBRACK] = ACTIONS(2526), + [anon_sym___declspec] = ACTIONS(2524), + [anon_sym___cdecl] = ACTIONS(2524), + [anon_sym___clrcall] = ACTIONS(2524), + [anon_sym___stdcall] = ACTIONS(2524), + [anon_sym___fastcall] = ACTIONS(2524), + [anon_sym___thiscall] = ACTIONS(2524), + [anon_sym___vectorcall] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2526), + [anon_sym_signed] = ACTIONS(2524), + [anon_sym_unsigned] = ACTIONS(2524), + [anon_sym_long] = ACTIONS(2524), + [anon_sym_short] = ACTIONS(2524), + [anon_sym_static] = ACTIONS(2524), + [anon_sym_ATautoreleasepool] = ACTIONS(2526), + [anon_sym_auto] = ACTIONS(2524), + [anon_sym_register] = ACTIONS(2524), + [anon_sym_inline] = ACTIONS(2524), + [anon_sym___inline] = ACTIONS(2524), + [anon_sym___inline__] = ACTIONS(2524), + [anon_sym___forceinline] = ACTIONS(2524), + [anon_sym_thread_local] = ACTIONS(2524), + [anon_sym___thread] = ACTIONS(2524), + [anon_sym_CG_EXTERN] = ACTIONS(2524), + [anon_sym_CG_INLINE] = ACTIONS(2524), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2524), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2524), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2524), + [anon_sym_IBOutlet] = ACTIONS(2524), + [anon_sym_IBInspectable] = ACTIONS(2524), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2524), + [anon_sym_NS_INLINE] = ACTIONS(2524), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2524), + [anon_sym_OBJC_EXPORT] = ACTIONS(2524), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2524), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2524), + [anon_sym_const] = ACTIONS(2524), + [anon_sym_constexpr] = ACTIONS(2524), + [anon_sym_volatile] = ACTIONS(2524), + [anon_sym_restrict] = ACTIONS(2524), + [anon_sym___restrict__] = ACTIONS(2524), + [anon_sym__Atomic] = ACTIONS(2524), + [anon_sym__Noreturn] = ACTIONS(2524), + [anon_sym__Nonnull] = ACTIONS(2524), + [anon_sym_nullable] = ACTIONS(2524), + [anon_sym__Complex] = ACTIONS(2524), + [anon_sym__Nullable] = ACTIONS(2524), + [anon_sym__Nullable_result] = ACTIONS(2524), + [anon_sym__Null_unspecified] = ACTIONS(2524), + [anon_sym___autoreleasing] = ACTIONS(2524), + [anon_sym___block] = ACTIONS(2524), + [anon_sym___bridge] = ACTIONS(2524), + [anon_sym___bridge_retained] = ACTIONS(2524), + [anon_sym___bridge_transfer] = ACTIONS(2524), + [anon_sym___complex] = ACTIONS(2524), + [anon_sym___const] = ACTIONS(2524), + [anon_sym___imag] = ACTIONS(2524), + [anon_sym___kindof] = ACTIONS(2524), + [anon_sym___nonnull] = ACTIONS(2524), + [anon_sym___nullable] = ACTIONS(2524), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2524), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2524), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2524), + [anon_sym___real] = ACTIONS(2524), + [anon_sym___strong] = ACTIONS(2524), + [anon_sym___unsafe_unretained] = ACTIONS(2524), + [anon_sym___unused] = ACTIONS(2524), + [anon_sym___weak] = ACTIONS(2524), + [anon_sym_alignas] = ACTIONS(2524), + [anon_sym__Alignas] = ACTIONS(2524), + [sym_primitive_type] = ACTIONS(2524), + [anon_sym_enum] = ACTIONS(2524), + [anon_sym_struct] = ACTIONS(2524), + [anon_sym_union] = ACTIONS(2524), + [anon_sym_if] = ACTIONS(2524), + [anon_sym_else] = ACTIONS(2524), + [anon_sym_switch] = ACTIONS(2524), + [anon_sym_case] = ACTIONS(2524), + [anon_sym_default] = ACTIONS(2524), + [anon_sym_while] = ACTIONS(2524), + [anon_sym_do] = ACTIONS(2524), + [anon_sym_for] = ACTIONS(2524), + [anon_sym_in] = ACTIONS(2524), + [anon_sym_return] = ACTIONS(2524), + [anon_sym_break] = ACTIONS(2524), + [anon_sym_continue] = ACTIONS(2524), + [anon_sym_goto] = ACTIONS(2524), + [anon_sym_DASH_DASH] = ACTIONS(2526), + [anon_sym_PLUS_PLUS] = ACTIONS(2526), + [anon_sym_sizeof] = ACTIONS(2524), + [anon_sym___alignof__] = ACTIONS(2524), + [anon_sym___alignof] = ACTIONS(2524), + [anon_sym__alignof] = ACTIONS(2524), + [anon_sym_alignof] = ACTIONS(2524), + [anon_sym__Alignof] = ACTIONS(2524), + [anon_sym_offsetof] = ACTIONS(2524), + [anon_sym__Generic] = ACTIONS(2524), + [anon_sym_asm] = ACTIONS(2524), + [anon_sym___asm__] = ACTIONS(2524), + [anon_sym___asm] = ACTIONS(2524), + [sym_number_literal] = ACTIONS(2526), + [anon_sym_L_SQUOTE] = ACTIONS(2526), + [anon_sym_u_SQUOTE] = ACTIONS(2526), + [anon_sym_U_SQUOTE] = ACTIONS(2526), + [anon_sym_u8_SQUOTE] = ACTIONS(2526), + [anon_sym_SQUOTE] = ACTIONS(2526), + [anon_sym_AT] = ACTIONS(2524), + [anon_sym_DQUOTE] = ACTIONS(2526), + [anon_sym_L_DQUOTE] = ACTIONS(2526), + [anon_sym_u_DQUOTE] = ACTIONS(2526), + [anon_sym_U_DQUOTE] = ACTIONS(2526), + [anon_sym_u8_DQUOTE] = ACTIONS(2526), + [sym_true] = ACTIONS(2524), + [sym_false] = ACTIONS(2524), + [anon_sym_NULL] = ACTIONS(2524), + [anon_sym_nullptr] = ACTIONS(2524), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2524), + [anon_sym___typeof] = ACTIONS(2524), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_ATimport] = ACTIONS(2526), + [aux_sym_preproc_undef_token1] = ACTIONS(2524), + [anon_sym_POUND] = ACTIONS(2524), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2524), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2524), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2524), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2524), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2524), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2524), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2524), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2524), + [anon_sym_NS_AVAILABLE] = ACTIONS(2524), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2524), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_API_AVAILABLE] = ACTIONS(2524), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_API_DEPRECATED] = ACTIONS(2524), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2524), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2524), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2524), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2524), + [anon_sym___deprecated_msg] = ACTIONS(2524), + [anon_sym___deprecated_enum_msg] = ACTIONS(2524), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2524), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2524), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2524), + [anon_sym_ATprotocol] = ACTIONS(2526), + [anon_sym_ATinterface] = ACTIONS(2526), + [anon_sym_ATimplementation] = ACTIONS(2526), + [anon_sym_ATcompatibility_alias] = ACTIONS(2526), + [anon_sym_ATsynthesize] = ACTIONS(2526), + [anon_sym_ATdynamic] = ACTIONS(2526), + [anon_sym_ATtry] = ACTIONS(2526), + [anon_sym___try] = ACTIONS(2524), + [anon_sym_ATthrow] = ACTIONS(2526), + [anon_sym_ATselector] = ACTIONS(2526), + [anon_sym_ATavailable] = ACTIONS(2526), + [anon_sym___builtin_available] = ACTIONS(2524), + [anon_sym_va_arg] = ACTIONS(2524), + [anon_sym_ATencode] = ACTIONS(2526), + [anon_sym_ATsynchronized] = ACTIONS(2526), + [anon_sym_BOOL] = ACTIONS(2524), + [anon_sym_IMP] = ACTIONS(2524), + [anon_sym_SEL] = ACTIONS(2524), + [anon_sym_Class] = ACTIONS(2524), + [anon_sym_id] = ACTIONS(2524), + }, + [246] = { + [sym_identifier] = ACTIONS(2528), + [aux_sym_preproc_include_token1] = ACTIONS(2528), + [aux_sym_preproc_include_token2] = ACTIONS(2528), + [aux_sym_preproc_def_token1] = ACTIONS(2528), + [aux_sym_preproc_if_token1] = ACTIONS(2528), + [aux_sym_preproc_if_token2] = ACTIONS(2528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2528), + [aux_sym_preproc_else_token1] = ACTIONS(2528), + [aux_sym_preproc_elif_token1] = ACTIONS(2528), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2528), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2528), + [sym_preproc_directive] = ACTIONS(2528), + [anon_sym_LPAREN2] = ACTIONS(2530), + [anon_sym_BANG] = ACTIONS(2530), + [anon_sym_TILDE] = ACTIONS(2530), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_CARET] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2530), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym___extension__] = ACTIONS(2528), + [anon_sym_typedef] = ACTIONS(2528), + [anon_sym_extern] = ACTIONS(2528), + [anon_sym___attribute__] = ACTIONS(2528), + [anon_sym___attribute] = ACTIONS(2528), + [anon_sym_noreturn] = ACTIONS(2528), + [anon_sym_LBRACK] = ACTIONS(2530), + [anon_sym___declspec] = ACTIONS(2528), + [anon_sym___cdecl] = ACTIONS(2528), + [anon_sym___clrcall] = ACTIONS(2528), + [anon_sym___stdcall] = ACTIONS(2528), + [anon_sym___fastcall] = ACTIONS(2528), + [anon_sym___thiscall] = ACTIONS(2528), + [anon_sym___vectorcall] = ACTIONS(2528), + [anon_sym_LBRACE] = ACTIONS(2530), + [anon_sym_signed] = ACTIONS(2528), + [anon_sym_unsigned] = ACTIONS(2528), + [anon_sym_long] = ACTIONS(2528), + [anon_sym_short] = ACTIONS(2528), + [anon_sym_static] = ACTIONS(2528), + [anon_sym_ATautoreleasepool] = ACTIONS(2530), + [anon_sym_auto] = ACTIONS(2528), + [anon_sym_register] = ACTIONS(2528), + [anon_sym_inline] = ACTIONS(2528), + [anon_sym___inline] = ACTIONS(2528), + [anon_sym___inline__] = ACTIONS(2528), + [anon_sym___forceinline] = ACTIONS(2528), + [anon_sym_thread_local] = ACTIONS(2528), + [anon_sym___thread] = ACTIONS(2528), + [anon_sym_CG_EXTERN] = ACTIONS(2528), + [anon_sym_CG_INLINE] = ACTIONS(2528), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2528), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2528), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2528), + [anon_sym_IBOutlet] = ACTIONS(2528), + [anon_sym_IBInspectable] = ACTIONS(2528), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2528), + [anon_sym_NS_INLINE] = ACTIONS(2528), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2528), + [anon_sym_OBJC_EXPORT] = ACTIONS(2528), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2528), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2528), + [anon_sym_const] = ACTIONS(2528), + [anon_sym_constexpr] = ACTIONS(2528), + [anon_sym_volatile] = ACTIONS(2528), + [anon_sym_restrict] = ACTIONS(2528), + [anon_sym___restrict__] = ACTIONS(2528), + [anon_sym__Atomic] = ACTIONS(2528), + [anon_sym__Noreturn] = ACTIONS(2528), + [anon_sym__Nonnull] = ACTIONS(2528), + [anon_sym_nullable] = ACTIONS(2528), + [anon_sym__Complex] = ACTIONS(2528), + [anon_sym__Nullable] = ACTIONS(2528), + [anon_sym__Nullable_result] = ACTIONS(2528), + [anon_sym__Null_unspecified] = ACTIONS(2528), + [anon_sym___autoreleasing] = ACTIONS(2528), + [anon_sym___block] = ACTIONS(2528), + [anon_sym___bridge] = ACTIONS(2528), + [anon_sym___bridge_retained] = ACTIONS(2528), + [anon_sym___bridge_transfer] = ACTIONS(2528), + [anon_sym___complex] = ACTIONS(2528), + [anon_sym___const] = ACTIONS(2528), + [anon_sym___imag] = ACTIONS(2528), + [anon_sym___kindof] = ACTIONS(2528), + [anon_sym___nonnull] = ACTIONS(2528), + [anon_sym___nullable] = ACTIONS(2528), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2528), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2528), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2528), + [anon_sym___real] = ACTIONS(2528), + [anon_sym___strong] = ACTIONS(2528), + [anon_sym___unsafe_unretained] = ACTIONS(2528), + [anon_sym___unused] = ACTIONS(2528), + [anon_sym___weak] = ACTIONS(2528), + [anon_sym_alignas] = ACTIONS(2528), + [anon_sym__Alignas] = ACTIONS(2528), + [sym_primitive_type] = ACTIONS(2528), + [anon_sym_enum] = ACTIONS(2528), + [anon_sym_struct] = ACTIONS(2528), + [anon_sym_union] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_else] = ACTIONS(2528), + [anon_sym_switch] = ACTIONS(2528), + [anon_sym_case] = ACTIONS(2528), + [anon_sym_default] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_in] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_break] = ACTIONS(2528), + [anon_sym_continue] = ACTIONS(2528), + [anon_sym_goto] = ACTIONS(2528), + [anon_sym_DASH_DASH] = ACTIONS(2530), + [anon_sym_PLUS_PLUS] = ACTIONS(2530), + [anon_sym_sizeof] = ACTIONS(2528), + [anon_sym___alignof__] = ACTIONS(2528), + [anon_sym___alignof] = ACTIONS(2528), + [anon_sym__alignof] = ACTIONS(2528), + [anon_sym_alignof] = ACTIONS(2528), + [anon_sym__Alignof] = ACTIONS(2528), + [anon_sym_offsetof] = ACTIONS(2528), + [anon_sym__Generic] = ACTIONS(2528), + [anon_sym_asm] = ACTIONS(2528), + [anon_sym___asm__] = ACTIONS(2528), + [anon_sym___asm] = ACTIONS(2528), + [sym_number_literal] = ACTIONS(2530), + [anon_sym_L_SQUOTE] = ACTIONS(2530), + [anon_sym_u_SQUOTE] = ACTIONS(2530), + [anon_sym_U_SQUOTE] = ACTIONS(2530), + [anon_sym_u8_SQUOTE] = ACTIONS(2530), + [anon_sym_SQUOTE] = ACTIONS(2530), + [anon_sym_AT] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2530), + [anon_sym_L_DQUOTE] = ACTIONS(2530), + [anon_sym_u_DQUOTE] = ACTIONS(2530), + [anon_sym_U_DQUOTE] = ACTIONS(2530), + [anon_sym_u8_DQUOTE] = ACTIONS(2530), + [sym_true] = ACTIONS(2528), + [sym_false] = ACTIONS(2528), + [anon_sym_NULL] = ACTIONS(2528), + [anon_sym_nullptr] = ACTIONS(2528), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2528), + [anon_sym___typeof] = ACTIONS(2528), + [anon_sym_typeof] = ACTIONS(2528), + [anon_sym_ATimport] = ACTIONS(2530), + [aux_sym_preproc_undef_token1] = ACTIONS(2528), + [anon_sym_POUND] = ACTIONS(2528), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2528), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2528), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2528), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2528), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2528), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2528), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2528), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2528), + [anon_sym_NS_AVAILABLE] = ACTIONS(2528), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2528), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_API_AVAILABLE] = ACTIONS(2528), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_API_DEPRECATED] = ACTIONS(2528), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2528), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2528), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2528), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2528), + [anon_sym___deprecated_msg] = ACTIONS(2528), + [anon_sym___deprecated_enum_msg] = ACTIONS(2528), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2528), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2528), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2528), + [anon_sym_ATprotocol] = ACTIONS(2530), + [anon_sym_ATinterface] = ACTIONS(2530), + [anon_sym_ATimplementation] = ACTIONS(2530), + [anon_sym_ATcompatibility_alias] = ACTIONS(2530), + [anon_sym_ATsynthesize] = ACTIONS(2530), + [anon_sym_ATdynamic] = ACTIONS(2530), + [anon_sym_ATtry] = ACTIONS(2530), + [anon_sym___try] = ACTIONS(2528), + [anon_sym_ATthrow] = ACTIONS(2530), + [anon_sym_ATselector] = ACTIONS(2530), + [anon_sym_ATavailable] = ACTIONS(2530), + [anon_sym___builtin_available] = ACTIONS(2528), + [anon_sym_va_arg] = ACTIONS(2528), + [anon_sym_ATencode] = ACTIONS(2530), + [anon_sym_ATsynchronized] = ACTIONS(2530), + [anon_sym_BOOL] = ACTIONS(2528), + [anon_sym_IMP] = ACTIONS(2528), + [anon_sym_SEL] = ACTIONS(2528), + [anon_sym_Class] = ACTIONS(2528), + [anon_sym_id] = ACTIONS(2528), + }, + [247] = { + [sym_identifier] = ACTIONS(2532), + [aux_sym_preproc_include_token1] = ACTIONS(2532), + [aux_sym_preproc_include_token2] = ACTIONS(2532), + [aux_sym_preproc_def_token1] = ACTIONS(2532), + [aux_sym_preproc_if_token1] = ACTIONS(2532), + [aux_sym_preproc_if_token2] = ACTIONS(2532), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2532), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2532), + [aux_sym_preproc_else_token1] = ACTIONS(2532), + [aux_sym_preproc_elif_token1] = ACTIONS(2532), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2532), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2532), + [sym_preproc_directive] = ACTIONS(2532), + [anon_sym_LPAREN2] = ACTIONS(2534), + [anon_sym_BANG] = ACTIONS(2534), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2532), + [anon_sym_STAR] = ACTIONS(2534), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2534), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym___extension__] = ACTIONS(2532), + [anon_sym_typedef] = ACTIONS(2532), + [anon_sym_extern] = ACTIONS(2532), + [anon_sym___attribute__] = ACTIONS(2532), + [anon_sym___attribute] = ACTIONS(2532), + [anon_sym_noreturn] = ACTIONS(2532), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym___declspec] = ACTIONS(2532), + [anon_sym___cdecl] = ACTIONS(2532), + [anon_sym___clrcall] = ACTIONS(2532), + [anon_sym___stdcall] = ACTIONS(2532), + [anon_sym___fastcall] = ACTIONS(2532), + [anon_sym___thiscall] = ACTIONS(2532), + [anon_sym___vectorcall] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_signed] = ACTIONS(2532), + [anon_sym_unsigned] = ACTIONS(2532), + [anon_sym_long] = ACTIONS(2532), + [anon_sym_short] = ACTIONS(2532), + [anon_sym_static] = ACTIONS(2532), + [anon_sym_ATautoreleasepool] = ACTIONS(2534), + [anon_sym_auto] = ACTIONS(2532), + [anon_sym_register] = ACTIONS(2532), + [anon_sym_inline] = ACTIONS(2532), + [anon_sym___inline] = ACTIONS(2532), + [anon_sym___inline__] = ACTIONS(2532), + [anon_sym___forceinline] = ACTIONS(2532), + [anon_sym_thread_local] = ACTIONS(2532), + [anon_sym___thread] = ACTIONS(2532), + [anon_sym_CG_EXTERN] = ACTIONS(2532), + [anon_sym_CG_INLINE] = ACTIONS(2532), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2532), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2532), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2532), + [anon_sym_IBOutlet] = ACTIONS(2532), + [anon_sym_IBInspectable] = ACTIONS(2532), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2532), + [anon_sym_NS_INLINE] = ACTIONS(2532), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2532), + [anon_sym_OBJC_EXPORT] = ACTIONS(2532), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2532), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2532), + [anon_sym_const] = ACTIONS(2532), + [anon_sym_constexpr] = ACTIONS(2532), + [anon_sym_volatile] = ACTIONS(2532), + [anon_sym_restrict] = ACTIONS(2532), + [anon_sym___restrict__] = ACTIONS(2532), + [anon_sym__Atomic] = ACTIONS(2532), + [anon_sym__Noreturn] = ACTIONS(2532), + [anon_sym__Nonnull] = ACTIONS(2532), + [anon_sym_nullable] = ACTIONS(2532), + [anon_sym__Complex] = ACTIONS(2532), + [anon_sym__Nullable] = ACTIONS(2532), + [anon_sym__Nullable_result] = ACTIONS(2532), + [anon_sym__Null_unspecified] = ACTIONS(2532), + [anon_sym___autoreleasing] = ACTIONS(2532), + [anon_sym___block] = ACTIONS(2532), + [anon_sym___bridge] = ACTIONS(2532), + [anon_sym___bridge_retained] = ACTIONS(2532), + [anon_sym___bridge_transfer] = ACTIONS(2532), + [anon_sym___complex] = ACTIONS(2532), + [anon_sym___const] = ACTIONS(2532), + [anon_sym___imag] = ACTIONS(2532), + [anon_sym___kindof] = ACTIONS(2532), + [anon_sym___nonnull] = ACTIONS(2532), + [anon_sym___nullable] = ACTIONS(2532), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2532), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2532), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2532), + [anon_sym___real] = ACTIONS(2532), + [anon_sym___strong] = ACTIONS(2532), + [anon_sym___unsafe_unretained] = ACTIONS(2532), + [anon_sym___unused] = ACTIONS(2532), + [anon_sym___weak] = ACTIONS(2532), + [anon_sym_alignas] = ACTIONS(2532), + [anon_sym__Alignas] = ACTIONS(2532), + [sym_primitive_type] = ACTIONS(2532), + [anon_sym_enum] = ACTIONS(2532), + [anon_sym_struct] = ACTIONS(2532), + [anon_sym_union] = ACTIONS(2532), + [anon_sym_if] = ACTIONS(2532), + [anon_sym_else] = ACTIONS(2532), + [anon_sym_switch] = ACTIONS(2532), + [anon_sym_case] = ACTIONS(2532), + [anon_sym_default] = ACTIONS(2532), + [anon_sym_while] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_for] = ACTIONS(2532), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_return] = ACTIONS(2532), + [anon_sym_break] = ACTIONS(2532), + [anon_sym_continue] = ACTIONS(2532), + [anon_sym_goto] = ACTIONS(2532), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), + [anon_sym_sizeof] = ACTIONS(2532), + [anon_sym___alignof__] = ACTIONS(2532), + [anon_sym___alignof] = ACTIONS(2532), + [anon_sym__alignof] = ACTIONS(2532), + [anon_sym_alignof] = ACTIONS(2532), + [anon_sym__Alignof] = ACTIONS(2532), + [anon_sym_offsetof] = ACTIONS(2532), + [anon_sym__Generic] = ACTIONS(2532), + [anon_sym_asm] = ACTIONS(2532), + [anon_sym___asm__] = ACTIONS(2532), + [anon_sym___asm] = ACTIONS(2532), + [sym_number_literal] = ACTIONS(2534), + [anon_sym_L_SQUOTE] = ACTIONS(2534), + [anon_sym_u_SQUOTE] = ACTIONS(2534), + [anon_sym_U_SQUOTE] = ACTIONS(2534), + [anon_sym_u8_SQUOTE] = ACTIONS(2534), + [anon_sym_SQUOTE] = ACTIONS(2534), + [anon_sym_AT] = ACTIONS(2532), + [anon_sym_DQUOTE] = ACTIONS(2534), + [anon_sym_L_DQUOTE] = ACTIONS(2534), + [anon_sym_u_DQUOTE] = ACTIONS(2534), + [anon_sym_U_DQUOTE] = ACTIONS(2534), + [anon_sym_u8_DQUOTE] = ACTIONS(2534), + [sym_true] = ACTIONS(2532), + [sym_false] = ACTIONS(2532), + [anon_sym_NULL] = ACTIONS(2532), + [anon_sym_nullptr] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2532), + [anon_sym___typeof] = ACTIONS(2532), + [anon_sym_typeof] = ACTIONS(2532), + [anon_sym_ATimport] = ACTIONS(2534), + [aux_sym_preproc_undef_token1] = ACTIONS(2532), + [anon_sym_POUND] = ACTIONS(2532), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2532), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2532), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2532), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2532), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2532), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2532), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2532), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2532), + [anon_sym_NS_AVAILABLE] = ACTIONS(2532), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2532), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_API_AVAILABLE] = ACTIONS(2532), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_API_DEPRECATED] = ACTIONS(2532), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2532), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2532), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2532), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2532), + [anon_sym___deprecated_msg] = ACTIONS(2532), + [anon_sym___deprecated_enum_msg] = ACTIONS(2532), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2532), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2532), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2532), + [anon_sym_ATprotocol] = ACTIONS(2534), + [anon_sym_ATinterface] = ACTIONS(2534), + [anon_sym_ATimplementation] = ACTIONS(2534), + [anon_sym_ATcompatibility_alias] = ACTIONS(2534), + [anon_sym_ATsynthesize] = ACTIONS(2534), + [anon_sym_ATdynamic] = ACTIONS(2534), + [anon_sym_ATtry] = ACTIONS(2534), + [anon_sym___try] = ACTIONS(2532), + [anon_sym_ATthrow] = ACTIONS(2534), + [anon_sym_ATselector] = ACTIONS(2534), + [anon_sym_ATavailable] = ACTIONS(2534), + [anon_sym___builtin_available] = ACTIONS(2532), + [anon_sym_va_arg] = ACTIONS(2532), + [anon_sym_ATencode] = ACTIONS(2534), + [anon_sym_ATsynchronized] = ACTIONS(2534), + [anon_sym_BOOL] = ACTIONS(2532), + [anon_sym_IMP] = ACTIONS(2532), + [anon_sym_SEL] = ACTIONS(2532), + [anon_sym_Class] = ACTIONS(2532), + [anon_sym_id] = ACTIONS(2532), + }, + [248] = { + [sym_identifier] = ACTIONS(2536), + [aux_sym_preproc_include_token1] = ACTIONS(2536), + [aux_sym_preproc_include_token2] = ACTIONS(2536), + [aux_sym_preproc_def_token1] = ACTIONS(2536), + [aux_sym_preproc_if_token1] = ACTIONS(2536), + [aux_sym_preproc_if_token2] = ACTIONS(2536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2536), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2536), + [aux_sym_preproc_else_token1] = ACTIONS(2536), + [aux_sym_preproc_elif_token1] = ACTIONS(2536), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2536), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2536), + [sym_preproc_directive] = ACTIONS(2536), + [anon_sym_LPAREN2] = ACTIONS(2538), + [anon_sym_BANG] = ACTIONS(2538), + [anon_sym_TILDE] = ACTIONS(2538), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_STAR] = ACTIONS(2538), + [anon_sym_CARET] = ACTIONS(2538), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_SEMI] = ACTIONS(2538), + [anon_sym___extension__] = ACTIONS(2536), + [anon_sym_typedef] = ACTIONS(2536), + [anon_sym_extern] = ACTIONS(2536), + [anon_sym___attribute__] = ACTIONS(2536), + [anon_sym___attribute] = ACTIONS(2536), + [anon_sym_noreturn] = ACTIONS(2536), + [anon_sym_LBRACK] = ACTIONS(2538), + [anon_sym___declspec] = ACTIONS(2536), + [anon_sym___cdecl] = ACTIONS(2536), + [anon_sym___clrcall] = ACTIONS(2536), + [anon_sym___stdcall] = ACTIONS(2536), + [anon_sym___fastcall] = ACTIONS(2536), + [anon_sym___thiscall] = ACTIONS(2536), + [anon_sym___vectorcall] = ACTIONS(2536), + [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_signed] = ACTIONS(2536), + [anon_sym_unsigned] = ACTIONS(2536), + [anon_sym_long] = ACTIONS(2536), + [anon_sym_short] = ACTIONS(2536), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_ATautoreleasepool] = ACTIONS(2538), + [anon_sym_auto] = ACTIONS(2536), + [anon_sym_register] = ACTIONS(2536), + [anon_sym_inline] = ACTIONS(2536), + [anon_sym___inline] = ACTIONS(2536), + [anon_sym___inline__] = ACTIONS(2536), + [anon_sym___forceinline] = ACTIONS(2536), + [anon_sym_thread_local] = ACTIONS(2536), + [anon_sym___thread] = ACTIONS(2536), + [anon_sym_CG_EXTERN] = ACTIONS(2536), + [anon_sym_CG_INLINE] = ACTIONS(2536), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2536), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2536), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2536), + [anon_sym_IBOutlet] = ACTIONS(2536), + [anon_sym_IBInspectable] = ACTIONS(2536), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2536), + [anon_sym_NS_INLINE] = ACTIONS(2536), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2536), + [anon_sym_OBJC_EXPORT] = ACTIONS(2536), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2536), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2536), + [anon_sym_const] = ACTIONS(2536), + [anon_sym_constexpr] = ACTIONS(2536), + [anon_sym_volatile] = ACTIONS(2536), + [anon_sym_restrict] = ACTIONS(2536), + [anon_sym___restrict__] = ACTIONS(2536), + [anon_sym__Atomic] = ACTIONS(2536), + [anon_sym__Noreturn] = ACTIONS(2536), + [anon_sym__Nonnull] = ACTIONS(2536), + [anon_sym_nullable] = ACTIONS(2536), + [anon_sym__Complex] = ACTIONS(2536), + [anon_sym__Nullable] = ACTIONS(2536), + [anon_sym__Nullable_result] = ACTIONS(2536), + [anon_sym__Null_unspecified] = ACTIONS(2536), + [anon_sym___autoreleasing] = ACTIONS(2536), + [anon_sym___block] = ACTIONS(2536), + [anon_sym___bridge] = ACTIONS(2536), + [anon_sym___bridge_retained] = ACTIONS(2536), + [anon_sym___bridge_transfer] = ACTIONS(2536), + [anon_sym___complex] = ACTIONS(2536), + [anon_sym___const] = ACTIONS(2536), + [anon_sym___imag] = ACTIONS(2536), + [anon_sym___kindof] = ACTIONS(2536), + [anon_sym___nonnull] = ACTIONS(2536), + [anon_sym___nullable] = ACTIONS(2536), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2536), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2536), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2536), + [anon_sym___real] = ACTIONS(2536), + [anon_sym___strong] = ACTIONS(2536), + [anon_sym___unsafe_unretained] = ACTIONS(2536), + [anon_sym___unused] = ACTIONS(2536), + [anon_sym___weak] = ACTIONS(2536), + [anon_sym_alignas] = ACTIONS(2536), + [anon_sym__Alignas] = ACTIONS(2536), + [sym_primitive_type] = ACTIONS(2536), + [anon_sym_enum] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2536), + [anon_sym_union] = ACTIONS(2536), + [anon_sym_if] = ACTIONS(2536), + [anon_sym_else] = ACTIONS(2536), + [anon_sym_switch] = ACTIONS(2536), + [anon_sym_case] = ACTIONS(2536), + [anon_sym_default] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2536), + [anon_sym_do] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2536), + [anon_sym_in] = ACTIONS(2536), + [anon_sym_return] = ACTIONS(2536), + [anon_sym_break] = ACTIONS(2536), + [anon_sym_continue] = ACTIONS(2536), + [anon_sym_goto] = ACTIONS(2536), + [anon_sym_DASH_DASH] = ACTIONS(2538), + [anon_sym_PLUS_PLUS] = ACTIONS(2538), + [anon_sym_sizeof] = ACTIONS(2536), + [anon_sym___alignof__] = ACTIONS(2536), + [anon_sym___alignof] = ACTIONS(2536), + [anon_sym__alignof] = ACTIONS(2536), + [anon_sym_alignof] = ACTIONS(2536), + [anon_sym__Alignof] = ACTIONS(2536), + [anon_sym_offsetof] = ACTIONS(2536), + [anon_sym__Generic] = ACTIONS(2536), + [anon_sym_asm] = ACTIONS(2536), + [anon_sym___asm__] = ACTIONS(2536), + [anon_sym___asm] = ACTIONS(2536), + [sym_number_literal] = ACTIONS(2538), + [anon_sym_L_SQUOTE] = ACTIONS(2538), + [anon_sym_u_SQUOTE] = ACTIONS(2538), + [anon_sym_U_SQUOTE] = ACTIONS(2538), + [anon_sym_u8_SQUOTE] = ACTIONS(2538), + [anon_sym_SQUOTE] = ACTIONS(2538), + [anon_sym_AT] = ACTIONS(2536), + [anon_sym_DQUOTE] = ACTIONS(2538), + [anon_sym_L_DQUOTE] = ACTIONS(2538), + [anon_sym_u_DQUOTE] = ACTIONS(2538), + [anon_sym_U_DQUOTE] = ACTIONS(2538), + [anon_sym_u8_DQUOTE] = ACTIONS(2538), + [sym_true] = ACTIONS(2536), + [sym_false] = ACTIONS(2536), + [anon_sym_NULL] = ACTIONS(2536), + [anon_sym_nullptr] = ACTIONS(2536), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2536), + [anon_sym___typeof] = ACTIONS(2536), + [anon_sym_typeof] = ACTIONS(2536), + [anon_sym_ATimport] = ACTIONS(2538), + [aux_sym_preproc_undef_token1] = ACTIONS(2536), + [anon_sym_POUND] = ACTIONS(2536), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2536), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2536), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2536), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2536), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2536), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2536), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2536), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2536), + [anon_sym_NS_AVAILABLE] = ACTIONS(2536), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2536), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_API_AVAILABLE] = ACTIONS(2536), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_API_DEPRECATED] = ACTIONS(2536), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2536), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2536), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2536), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2536), + [anon_sym___deprecated_msg] = ACTIONS(2536), + [anon_sym___deprecated_enum_msg] = ACTIONS(2536), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2536), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2536), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2536), + [anon_sym_ATprotocol] = ACTIONS(2538), + [anon_sym_ATinterface] = ACTIONS(2538), + [anon_sym_ATimplementation] = ACTIONS(2538), + [anon_sym_ATcompatibility_alias] = ACTIONS(2538), + [anon_sym_ATsynthesize] = ACTIONS(2538), + [anon_sym_ATdynamic] = ACTIONS(2538), + [anon_sym_ATtry] = ACTIONS(2538), + [anon_sym___try] = ACTIONS(2536), + [anon_sym_ATthrow] = ACTIONS(2538), + [anon_sym_ATselector] = ACTIONS(2538), + [anon_sym_ATavailable] = ACTIONS(2538), + [anon_sym___builtin_available] = ACTIONS(2536), + [anon_sym_va_arg] = ACTIONS(2536), + [anon_sym_ATencode] = ACTIONS(2538), + [anon_sym_ATsynchronized] = ACTIONS(2538), + [anon_sym_BOOL] = ACTIONS(2536), + [anon_sym_IMP] = ACTIONS(2536), + [anon_sym_SEL] = ACTIONS(2536), + [anon_sym_Class] = ACTIONS(2536), + [anon_sym_id] = ACTIONS(2536), + }, + [249] = { + [sym_identifier] = ACTIONS(2540), + [aux_sym_preproc_include_token1] = ACTIONS(2540), + [aux_sym_preproc_include_token2] = ACTIONS(2540), + [aux_sym_preproc_def_token1] = ACTIONS(2540), + [aux_sym_preproc_if_token1] = ACTIONS(2540), + [aux_sym_preproc_if_token2] = ACTIONS(2540), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2540), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2540), + [aux_sym_preproc_else_token1] = ACTIONS(2540), + [aux_sym_preproc_elif_token1] = ACTIONS(2540), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2540), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2540), + [sym_preproc_directive] = ACTIONS(2540), + [anon_sym_LPAREN2] = ACTIONS(2542), + [anon_sym_BANG] = ACTIONS(2542), + [anon_sym_TILDE] = ACTIONS(2542), + [anon_sym_DASH] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2540), + [anon_sym_STAR] = ACTIONS(2542), + [anon_sym_CARET] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2542), + [anon_sym___extension__] = ACTIONS(2540), + [anon_sym_typedef] = ACTIONS(2540), + [anon_sym_extern] = ACTIONS(2540), + [anon_sym___attribute__] = ACTIONS(2540), + [anon_sym___attribute] = ACTIONS(2540), + [anon_sym_noreturn] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym___declspec] = ACTIONS(2540), + [anon_sym___cdecl] = ACTIONS(2540), + [anon_sym___clrcall] = ACTIONS(2540), + [anon_sym___stdcall] = ACTIONS(2540), + [anon_sym___fastcall] = ACTIONS(2540), + [anon_sym___thiscall] = ACTIONS(2540), + [anon_sym___vectorcall] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2542), + [anon_sym_signed] = ACTIONS(2540), + [anon_sym_unsigned] = ACTIONS(2540), + [anon_sym_long] = ACTIONS(2540), + [anon_sym_short] = ACTIONS(2540), + [anon_sym_static] = ACTIONS(2540), + [anon_sym_ATautoreleasepool] = ACTIONS(2542), + [anon_sym_auto] = ACTIONS(2540), + [anon_sym_register] = ACTIONS(2540), + [anon_sym_inline] = ACTIONS(2540), + [anon_sym___inline] = ACTIONS(2540), + [anon_sym___inline__] = ACTIONS(2540), + [anon_sym___forceinline] = ACTIONS(2540), + [anon_sym_thread_local] = ACTIONS(2540), + [anon_sym___thread] = ACTIONS(2540), + [anon_sym_CG_EXTERN] = ACTIONS(2540), + [anon_sym_CG_INLINE] = ACTIONS(2540), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2540), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2540), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2540), + [anon_sym_IBOutlet] = ACTIONS(2540), + [anon_sym_IBInspectable] = ACTIONS(2540), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2540), + [anon_sym_NS_INLINE] = ACTIONS(2540), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2540), + [anon_sym_OBJC_EXPORT] = ACTIONS(2540), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2540), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2540), + [anon_sym_const] = ACTIONS(2540), + [anon_sym_constexpr] = ACTIONS(2540), + [anon_sym_volatile] = ACTIONS(2540), + [anon_sym_restrict] = ACTIONS(2540), + [anon_sym___restrict__] = ACTIONS(2540), + [anon_sym__Atomic] = ACTIONS(2540), + [anon_sym__Noreturn] = ACTIONS(2540), + [anon_sym__Nonnull] = ACTIONS(2540), + [anon_sym_nullable] = ACTIONS(2540), + [anon_sym__Complex] = ACTIONS(2540), + [anon_sym__Nullable] = ACTIONS(2540), + [anon_sym__Nullable_result] = ACTIONS(2540), + [anon_sym__Null_unspecified] = ACTIONS(2540), + [anon_sym___autoreleasing] = ACTIONS(2540), + [anon_sym___block] = ACTIONS(2540), + [anon_sym___bridge] = ACTIONS(2540), + [anon_sym___bridge_retained] = ACTIONS(2540), + [anon_sym___bridge_transfer] = ACTIONS(2540), + [anon_sym___complex] = ACTIONS(2540), + [anon_sym___const] = ACTIONS(2540), + [anon_sym___imag] = ACTIONS(2540), + [anon_sym___kindof] = ACTIONS(2540), + [anon_sym___nonnull] = ACTIONS(2540), + [anon_sym___nullable] = ACTIONS(2540), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2540), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2540), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2540), + [anon_sym___real] = ACTIONS(2540), + [anon_sym___strong] = ACTIONS(2540), + [anon_sym___unsafe_unretained] = ACTIONS(2540), + [anon_sym___unused] = ACTIONS(2540), + [anon_sym___weak] = ACTIONS(2540), + [anon_sym_alignas] = ACTIONS(2540), + [anon_sym__Alignas] = ACTIONS(2540), + [sym_primitive_type] = ACTIONS(2540), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_struct] = ACTIONS(2540), + [anon_sym_union] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_else] = ACTIONS(2540), + [anon_sym_switch] = ACTIONS(2540), + [anon_sym_case] = ACTIONS(2540), + [anon_sym_default] = ACTIONS(2540), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_do] = ACTIONS(2540), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_in] = ACTIONS(2540), + [anon_sym_return] = ACTIONS(2540), + [anon_sym_break] = ACTIONS(2540), + [anon_sym_continue] = ACTIONS(2540), + [anon_sym_goto] = ACTIONS(2540), + [anon_sym_DASH_DASH] = ACTIONS(2542), + [anon_sym_PLUS_PLUS] = ACTIONS(2542), + [anon_sym_sizeof] = ACTIONS(2540), + [anon_sym___alignof__] = ACTIONS(2540), + [anon_sym___alignof] = ACTIONS(2540), + [anon_sym__alignof] = ACTIONS(2540), + [anon_sym_alignof] = ACTIONS(2540), + [anon_sym__Alignof] = ACTIONS(2540), + [anon_sym_offsetof] = ACTIONS(2540), + [anon_sym__Generic] = ACTIONS(2540), + [anon_sym_asm] = ACTIONS(2540), + [anon_sym___asm__] = ACTIONS(2540), + [anon_sym___asm] = ACTIONS(2540), + [sym_number_literal] = ACTIONS(2542), + [anon_sym_L_SQUOTE] = ACTIONS(2542), + [anon_sym_u_SQUOTE] = ACTIONS(2542), + [anon_sym_U_SQUOTE] = ACTIONS(2542), + [anon_sym_u8_SQUOTE] = ACTIONS(2542), + [anon_sym_SQUOTE] = ACTIONS(2542), + [anon_sym_AT] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2542), + [anon_sym_L_DQUOTE] = ACTIONS(2542), + [anon_sym_u_DQUOTE] = ACTIONS(2542), + [anon_sym_U_DQUOTE] = ACTIONS(2542), + [anon_sym_u8_DQUOTE] = ACTIONS(2542), + [sym_true] = ACTIONS(2540), + [sym_false] = ACTIONS(2540), + [anon_sym_NULL] = ACTIONS(2540), + [anon_sym_nullptr] = ACTIONS(2540), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2540), + [anon_sym___typeof] = ACTIONS(2540), + [anon_sym_typeof] = ACTIONS(2540), + [anon_sym_ATimport] = ACTIONS(2542), + [aux_sym_preproc_undef_token1] = ACTIONS(2540), + [anon_sym_POUND] = ACTIONS(2540), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2540), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2540), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2540), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2540), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2540), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2540), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2540), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2540), + [anon_sym_NS_AVAILABLE] = ACTIONS(2540), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2540), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_API_AVAILABLE] = ACTIONS(2540), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_API_DEPRECATED] = ACTIONS(2540), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2540), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2540), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2540), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2540), + [anon_sym___deprecated_msg] = ACTIONS(2540), + [anon_sym___deprecated_enum_msg] = ACTIONS(2540), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2540), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2540), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2540), + [anon_sym_ATprotocol] = ACTIONS(2542), + [anon_sym_ATinterface] = ACTIONS(2542), + [anon_sym_ATimplementation] = ACTIONS(2542), + [anon_sym_ATcompatibility_alias] = ACTIONS(2542), + [anon_sym_ATsynthesize] = ACTIONS(2542), + [anon_sym_ATdynamic] = ACTIONS(2542), + [anon_sym_ATtry] = ACTIONS(2542), + [anon_sym___try] = ACTIONS(2540), + [anon_sym_ATthrow] = ACTIONS(2542), + [anon_sym_ATselector] = ACTIONS(2542), + [anon_sym_ATavailable] = ACTIONS(2542), + [anon_sym___builtin_available] = ACTIONS(2540), + [anon_sym_va_arg] = ACTIONS(2540), + [anon_sym_ATencode] = ACTIONS(2542), + [anon_sym_ATsynchronized] = ACTIONS(2542), + [anon_sym_BOOL] = ACTIONS(2540), + [anon_sym_IMP] = ACTIONS(2540), + [anon_sym_SEL] = ACTIONS(2540), + [anon_sym_Class] = ACTIONS(2540), + [anon_sym_id] = ACTIONS(2540), + }, + [250] = { + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_include_token1] = ACTIONS(2544), + [aux_sym_preproc_include_token2] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(2544), + [aux_sym_preproc_if_token1] = ACTIONS(2544), + [aux_sym_preproc_if_token2] = ACTIONS(2544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2544), + [aux_sym_preproc_else_token1] = ACTIONS(2544), + [aux_sym_preproc_elif_token1] = ACTIONS(2544), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2544), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2544), + [sym_preproc_directive] = ACTIONS(2544), + [anon_sym_LPAREN2] = ACTIONS(2546), + [anon_sym_BANG] = ACTIONS(2546), + [anon_sym_TILDE] = ACTIONS(2546), + [anon_sym_DASH] = ACTIONS(2544), + [anon_sym_PLUS] = ACTIONS(2544), + [anon_sym_STAR] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2546), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym___extension__] = ACTIONS(2544), + [anon_sym_typedef] = ACTIONS(2544), + [anon_sym_extern] = ACTIONS(2544), + [anon_sym___attribute__] = ACTIONS(2544), + [anon_sym___attribute] = ACTIONS(2544), + [anon_sym_noreturn] = ACTIONS(2544), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym___declspec] = ACTIONS(2544), + [anon_sym___cdecl] = ACTIONS(2544), + [anon_sym___clrcall] = ACTIONS(2544), + [anon_sym___stdcall] = ACTIONS(2544), + [anon_sym___fastcall] = ACTIONS(2544), + [anon_sym___thiscall] = ACTIONS(2544), + [anon_sym___vectorcall] = ACTIONS(2544), + [anon_sym_LBRACE] = ACTIONS(2546), + [anon_sym_signed] = ACTIONS(2544), + [anon_sym_unsigned] = ACTIONS(2544), + [anon_sym_long] = ACTIONS(2544), + [anon_sym_short] = ACTIONS(2544), + [anon_sym_static] = ACTIONS(2544), + [anon_sym_ATautoreleasepool] = ACTIONS(2546), + [anon_sym_auto] = ACTIONS(2544), + [anon_sym_register] = ACTIONS(2544), + [anon_sym_inline] = ACTIONS(2544), + [anon_sym___inline] = ACTIONS(2544), + [anon_sym___inline__] = ACTIONS(2544), + [anon_sym___forceinline] = ACTIONS(2544), + [anon_sym_thread_local] = ACTIONS(2544), + [anon_sym___thread] = ACTIONS(2544), + [anon_sym_CG_EXTERN] = ACTIONS(2544), + [anon_sym_CG_INLINE] = ACTIONS(2544), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2544), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2544), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2544), + [anon_sym_IBOutlet] = ACTIONS(2544), + [anon_sym_IBInspectable] = ACTIONS(2544), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2544), + [anon_sym_NS_INLINE] = ACTIONS(2544), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2544), + [anon_sym_OBJC_EXPORT] = ACTIONS(2544), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2544), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2544), + [anon_sym_const] = ACTIONS(2544), + [anon_sym_constexpr] = ACTIONS(2544), + [anon_sym_volatile] = ACTIONS(2544), + [anon_sym_restrict] = ACTIONS(2544), + [anon_sym___restrict__] = ACTIONS(2544), + [anon_sym__Atomic] = ACTIONS(2544), + [anon_sym__Noreturn] = ACTIONS(2544), + [anon_sym__Nonnull] = ACTIONS(2544), + [anon_sym_nullable] = ACTIONS(2544), + [anon_sym__Complex] = ACTIONS(2544), + [anon_sym__Nullable] = ACTIONS(2544), + [anon_sym__Nullable_result] = ACTIONS(2544), + [anon_sym__Null_unspecified] = ACTIONS(2544), + [anon_sym___autoreleasing] = ACTIONS(2544), + [anon_sym___block] = ACTIONS(2544), + [anon_sym___bridge] = ACTIONS(2544), + [anon_sym___bridge_retained] = ACTIONS(2544), + [anon_sym___bridge_transfer] = ACTIONS(2544), + [anon_sym___complex] = ACTIONS(2544), + [anon_sym___const] = ACTIONS(2544), + [anon_sym___imag] = ACTIONS(2544), + [anon_sym___kindof] = ACTIONS(2544), + [anon_sym___nonnull] = ACTIONS(2544), + [anon_sym___nullable] = ACTIONS(2544), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2544), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2544), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2544), + [anon_sym___real] = ACTIONS(2544), + [anon_sym___strong] = ACTIONS(2544), + [anon_sym___unsafe_unretained] = ACTIONS(2544), + [anon_sym___unused] = ACTIONS(2544), + [anon_sym___weak] = ACTIONS(2544), + [anon_sym_alignas] = ACTIONS(2544), + [anon_sym__Alignas] = ACTIONS(2544), + [sym_primitive_type] = ACTIONS(2544), + [anon_sym_enum] = ACTIONS(2544), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2544), + [anon_sym_if] = ACTIONS(2544), + [anon_sym_else] = ACTIONS(2544), + [anon_sym_switch] = ACTIONS(2544), + [anon_sym_case] = ACTIONS(2544), + [anon_sym_default] = ACTIONS(2544), + [anon_sym_while] = ACTIONS(2544), + [anon_sym_do] = ACTIONS(2544), + [anon_sym_for] = ACTIONS(2544), + [anon_sym_in] = ACTIONS(2544), + [anon_sym_return] = ACTIONS(2544), + [anon_sym_break] = ACTIONS(2544), + [anon_sym_continue] = ACTIONS(2544), + [anon_sym_goto] = ACTIONS(2544), + [anon_sym_DASH_DASH] = ACTIONS(2546), + [anon_sym_PLUS_PLUS] = ACTIONS(2546), + [anon_sym_sizeof] = ACTIONS(2544), + [anon_sym___alignof__] = ACTIONS(2544), + [anon_sym___alignof] = ACTIONS(2544), + [anon_sym__alignof] = ACTIONS(2544), + [anon_sym_alignof] = ACTIONS(2544), + [anon_sym__Alignof] = ACTIONS(2544), + [anon_sym_offsetof] = ACTIONS(2544), + [anon_sym__Generic] = ACTIONS(2544), + [anon_sym_asm] = ACTIONS(2544), + [anon_sym___asm__] = ACTIONS(2544), + [anon_sym___asm] = ACTIONS(2544), + [sym_number_literal] = ACTIONS(2546), + [anon_sym_L_SQUOTE] = ACTIONS(2546), + [anon_sym_u_SQUOTE] = ACTIONS(2546), + [anon_sym_U_SQUOTE] = ACTIONS(2546), + [anon_sym_u8_SQUOTE] = ACTIONS(2546), + [anon_sym_SQUOTE] = ACTIONS(2546), + [anon_sym_AT] = ACTIONS(2544), + [anon_sym_DQUOTE] = ACTIONS(2546), + [anon_sym_L_DQUOTE] = ACTIONS(2546), + [anon_sym_u_DQUOTE] = ACTIONS(2546), + [anon_sym_U_DQUOTE] = ACTIONS(2546), + [anon_sym_u8_DQUOTE] = ACTIONS(2546), + [sym_true] = ACTIONS(2544), + [sym_false] = ACTIONS(2544), + [anon_sym_NULL] = ACTIONS(2544), + [anon_sym_nullptr] = ACTIONS(2544), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2544), + [anon_sym___typeof] = ACTIONS(2544), + [anon_sym_typeof] = ACTIONS(2544), + [anon_sym_ATimport] = ACTIONS(2546), + [aux_sym_preproc_undef_token1] = ACTIONS(2544), + [anon_sym_POUND] = ACTIONS(2544), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2544), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2544), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2544), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2544), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2544), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2544), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2544), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2544), + [anon_sym_NS_AVAILABLE] = ACTIONS(2544), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2544), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_API_AVAILABLE] = ACTIONS(2544), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_API_DEPRECATED] = ACTIONS(2544), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2544), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2544), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2544), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2544), + [anon_sym___deprecated_msg] = ACTIONS(2544), + [anon_sym___deprecated_enum_msg] = ACTIONS(2544), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2544), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2544), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2544), + [anon_sym_ATprotocol] = ACTIONS(2546), + [anon_sym_ATinterface] = ACTIONS(2546), + [anon_sym_ATimplementation] = ACTIONS(2546), + [anon_sym_ATcompatibility_alias] = ACTIONS(2546), + [anon_sym_ATsynthesize] = ACTIONS(2546), + [anon_sym_ATdynamic] = ACTIONS(2546), + [anon_sym_ATtry] = ACTIONS(2546), + [anon_sym___try] = ACTIONS(2544), + [anon_sym_ATthrow] = ACTIONS(2546), + [anon_sym_ATselector] = ACTIONS(2546), + [anon_sym_ATavailable] = ACTIONS(2546), + [anon_sym___builtin_available] = ACTIONS(2544), + [anon_sym_va_arg] = ACTIONS(2544), + [anon_sym_ATencode] = ACTIONS(2546), + [anon_sym_ATsynchronized] = ACTIONS(2546), + [anon_sym_BOOL] = ACTIONS(2544), + [anon_sym_IMP] = ACTIONS(2544), + [anon_sym_SEL] = ACTIONS(2544), + [anon_sym_Class] = ACTIONS(2544), + [anon_sym_id] = ACTIONS(2544), + }, + [251] = { + [sym_identifier] = ACTIONS(2548), + [aux_sym_preproc_include_token1] = ACTIONS(2548), + [aux_sym_preproc_include_token2] = ACTIONS(2548), + [aux_sym_preproc_def_token1] = ACTIONS(2548), + [aux_sym_preproc_if_token1] = ACTIONS(2548), + [aux_sym_preproc_if_token2] = ACTIONS(2548), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2548), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2548), + [aux_sym_preproc_else_token1] = ACTIONS(2548), + [aux_sym_preproc_elif_token1] = ACTIONS(2548), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2548), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2548), + [sym_preproc_directive] = ACTIONS(2548), + [anon_sym_LPAREN2] = ACTIONS(2550), + [anon_sym_BANG] = ACTIONS(2550), + [anon_sym_TILDE] = ACTIONS(2550), + [anon_sym_DASH] = ACTIONS(2548), + [anon_sym_PLUS] = ACTIONS(2548), + [anon_sym_STAR] = ACTIONS(2550), + [anon_sym_CARET] = ACTIONS(2550), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_SEMI] = ACTIONS(2550), + [anon_sym___extension__] = ACTIONS(2548), + [anon_sym_typedef] = ACTIONS(2548), + [anon_sym_extern] = ACTIONS(2548), + [anon_sym___attribute__] = ACTIONS(2548), + [anon_sym___attribute] = ACTIONS(2548), + [anon_sym_noreturn] = ACTIONS(2548), + [anon_sym_LBRACK] = ACTIONS(2550), + [anon_sym___declspec] = ACTIONS(2548), + [anon_sym___cdecl] = ACTIONS(2548), + [anon_sym___clrcall] = ACTIONS(2548), + [anon_sym___stdcall] = ACTIONS(2548), + [anon_sym___fastcall] = ACTIONS(2548), + [anon_sym___thiscall] = ACTIONS(2548), + [anon_sym___vectorcall] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2550), + [anon_sym_signed] = ACTIONS(2548), + [anon_sym_unsigned] = ACTIONS(2548), + [anon_sym_long] = ACTIONS(2548), + [anon_sym_short] = ACTIONS(2548), + [anon_sym_static] = ACTIONS(2548), + [anon_sym_ATautoreleasepool] = ACTIONS(2550), + [anon_sym_auto] = ACTIONS(2548), + [anon_sym_register] = ACTIONS(2548), + [anon_sym_inline] = ACTIONS(2548), + [anon_sym___inline] = ACTIONS(2548), + [anon_sym___inline__] = ACTIONS(2548), + [anon_sym___forceinline] = ACTIONS(2548), + [anon_sym_thread_local] = ACTIONS(2548), + [anon_sym___thread] = ACTIONS(2548), + [anon_sym_CG_EXTERN] = ACTIONS(2548), + [anon_sym_CG_INLINE] = ACTIONS(2548), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2548), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2548), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2548), + [anon_sym_IBOutlet] = ACTIONS(2548), + [anon_sym_IBInspectable] = ACTIONS(2548), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2548), + [anon_sym_NS_INLINE] = ACTIONS(2548), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2548), + [anon_sym_OBJC_EXPORT] = ACTIONS(2548), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2548), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2548), + [anon_sym_const] = ACTIONS(2548), + [anon_sym_constexpr] = ACTIONS(2548), + [anon_sym_volatile] = ACTIONS(2548), + [anon_sym_restrict] = ACTIONS(2548), + [anon_sym___restrict__] = ACTIONS(2548), + [anon_sym__Atomic] = ACTIONS(2548), + [anon_sym__Noreturn] = ACTIONS(2548), + [anon_sym__Nonnull] = ACTIONS(2548), + [anon_sym_nullable] = ACTIONS(2548), + [anon_sym__Complex] = ACTIONS(2548), + [anon_sym__Nullable] = ACTIONS(2548), + [anon_sym__Nullable_result] = ACTIONS(2548), + [anon_sym__Null_unspecified] = ACTIONS(2548), + [anon_sym___autoreleasing] = ACTIONS(2548), + [anon_sym___block] = ACTIONS(2548), + [anon_sym___bridge] = ACTIONS(2548), + [anon_sym___bridge_retained] = ACTIONS(2548), + [anon_sym___bridge_transfer] = ACTIONS(2548), + [anon_sym___complex] = ACTIONS(2548), + [anon_sym___const] = ACTIONS(2548), + [anon_sym___imag] = ACTIONS(2548), + [anon_sym___kindof] = ACTIONS(2548), + [anon_sym___nonnull] = ACTIONS(2548), + [anon_sym___nullable] = ACTIONS(2548), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2548), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2548), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2548), + [anon_sym___real] = ACTIONS(2548), + [anon_sym___strong] = ACTIONS(2548), + [anon_sym___unsafe_unretained] = ACTIONS(2548), + [anon_sym___unused] = ACTIONS(2548), + [anon_sym___weak] = ACTIONS(2548), + [anon_sym_alignas] = ACTIONS(2548), + [anon_sym__Alignas] = ACTIONS(2548), + [sym_primitive_type] = ACTIONS(2548), + [anon_sym_enum] = ACTIONS(2548), + [anon_sym_struct] = ACTIONS(2548), + [anon_sym_union] = ACTIONS(2548), + [anon_sym_if] = ACTIONS(2548), + [anon_sym_else] = ACTIONS(2548), + [anon_sym_switch] = ACTIONS(2548), + [anon_sym_case] = ACTIONS(2548), + [anon_sym_default] = ACTIONS(2548), + [anon_sym_while] = ACTIONS(2548), + [anon_sym_do] = ACTIONS(2548), + [anon_sym_for] = ACTIONS(2548), + [anon_sym_in] = ACTIONS(2548), + [anon_sym_return] = ACTIONS(2548), + [anon_sym_break] = ACTIONS(2548), + [anon_sym_continue] = ACTIONS(2548), + [anon_sym_goto] = ACTIONS(2548), + [anon_sym_DASH_DASH] = ACTIONS(2550), + [anon_sym_PLUS_PLUS] = ACTIONS(2550), + [anon_sym_sizeof] = ACTIONS(2548), + [anon_sym___alignof__] = ACTIONS(2548), + [anon_sym___alignof] = ACTIONS(2548), + [anon_sym__alignof] = ACTIONS(2548), + [anon_sym_alignof] = ACTIONS(2548), + [anon_sym__Alignof] = ACTIONS(2548), + [anon_sym_offsetof] = ACTIONS(2548), + [anon_sym__Generic] = ACTIONS(2548), + [anon_sym_asm] = ACTIONS(2548), + [anon_sym___asm__] = ACTIONS(2548), + [anon_sym___asm] = ACTIONS(2548), + [sym_number_literal] = ACTIONS(2550), + [anon_sym_L_SQUOTE] = ACTIONS(2550), + [anon_sym_u_SQUOTE] = ACTIONS(2550), + [anon_sym_U_SQUOTE] = ACTIONS(2550), + [anon_sym_u8_SQUOTE] = ACTIONS(2550), + [anon_sym_SQUOTE] = ACTIONS(2550), + [anon_sym_AT] = ACTIONS(2548), + [anon_sym_DQUOTE] = ACTIONS(2550), + [anon_sym_L_DQUOTE] = ACTIONS(2550), + [anon_sym_u_DQUOTE] = ACTIONS(2550), + [anon_sym_U_DQUOTE] = ACTIONS(2550), + [anon_sym_u8_DQUOTE] = ACTIONS(2550), + [sym_true] = ACTIONS(2548), + [sym_false] = ACTIONS(2548), + [anon_sym_NULL] = ACTIONS(2548), + [anon_sym_nullptr] = ACTIONS(2548), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2548), + [anon_sym___typeof] = ACTIONS(2548), + [anon_sym_typeof] = ACTIONS(2548), + [anon_sym_ATimport] = ACTIONS(2550), + [aux_sym_preproc_undef_token1] = ACTIONS(2548), + [anon_sym_POUND] = ACTIONS(2548), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2548), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2548), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2548), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2548), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2548), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2548), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2548), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2548), + [anon_sym_NS_AVAILABLE] = ACTIONS(2548), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2548), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_API_AVAILABLE] = ACTIONS(2548), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_API_DEPRECATED] = ACTIONS(2548), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2548), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2548), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2548), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2548), + [anon_sym___deprecated_msg] = ACTIONS(2548), + [anon_sym___deprecated_enum_msg] = ACTIONS(2548), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2548), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2548), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2548), + [anon_sym_ATprotocol] = ACTIONS(2550), + [anon_sym_ATinterface] = ACTIONS(2550), + [anon_sym_ATimplementation] = ACTIONS(2550), + [anon_sym_ATcompatibility_alias] = ACTIONS(2550), + [anon_sym_ATsynthesize] = ACTIONS(2550), + [anon_sym_ATdynamic] = ACTIONS(2550), + [anon_sym_ATtry] = ACTIONS(2550), + [anon_sym___try] = ACTIONS(2548), + [anon_sym_ATthrow] = ACTIONS(2550), + [anon_sym_ATselector] = ACTIONS(2550), + [anon_sym_ATavailable] = ACTIONS(2550), + [anon_sym___builtin_available] = ACTIONS(2548), + [anon_sym_va_arg] = ACTIONS(2548), + [anon_sym_ATencode] = ACTIONS(2550), + [anon_sym_ATsynchronized] = ACTIONS(2550), + [anon_sym_BOOL] = ACTIONS(2548), + [anon_sym_IMP] = ACTIONS(2548), + [anon_sym_SEL] = ACTIONS(2548), + [anon_sym_Class] = ACTIONS(2548), + [anon_sym_id] = ACTIONS(2548), + }, + [252] = { + [sym_identifier] = ACTIONS(2552), + [aux_sym_preproc_include_token1] = ACTIONS(2552), + [aux_sym_preproc_include_token2] = ACTIONS(2552), + [aux_sym_preproc_def_token1] = ACTIONS(2552), + [aux_sym_preproc_if_token1] = ACTIONS(2552), + [aux_sym_preproc_if_token2] = ACTIONS(2552), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2552), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2552), + [aux_sym_preproc_else_token1] = ACTIONS(2552), + [aux_sym_preproc_elif_token1] = ACTIONS(2552), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2552), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2552), + [sym_preproc_directive] = ACTIONS(2552), + [anon_sym_LPAREN2] = ACTIONS(2554), + [anon_sym_BANG] = ACTIONS(2554), + [anon_sym_TILDE] = ACTIONS(2554), + [anon_sym_DASH] = ACTIONS(2552), + [anon_sym_PLUS] = ACTIONS(2552), + [anon_sym_STAR] = ACTIONS(2554), + [anon_sym_CARET] = ACTIONS(2554), + [anon_sym_AMP] = ACTIONS(2554), + [anon_sym_SEMI] = ACTIONS(2554), + [anon_sym___extension__] = ACTIONS(2552), + [anon_sym_typedef] = ACTIONS(2552), + [anon_sym_extern] = ACTIONS(2552), + [anon_sym___attribute__] = ACTIONS(2552), + [anon_sym___attribute] = ACTIONS(2552), + [anon_sym_noreturn] = ACTIONS(2552), + [anon_sym_LBRACK] = ACTIONS(2554), + [anon_sym___declspec] = ACTIONS(2552), + [anon_sym___cdecl] = ACTIONS(2552), + [anon_sym___clrcall] = ACTIONS(2552), + [anon_sym___stdcall] = ACTIONS(2552), + [anon_sym___fastcall] = ACTIONS(2552), + [anon_sym___thiscall] = ACTIONS(2552), + [anon_sym___vectorcall] = ACTIONS(2552), + [anon_sym_LBRACE] = ACTIONS(2554), + [anon_sym_signed] = ACTIONS(2552), + [anon_sym_unsigned] = ACTIONS(2552), + [anon_sym_long] = ACTIONS(2552), + [anon_sym_short] = ACTIONS(2552), + [anon_sym_static] = ACTIONS(2552), + [anon_sym_ATautoreleasepool] = ACTIONS(2554), + [anon_sym_auto] = ACTIONS(2552), + [anon_sym_register] = ACTIONS(2552), + [anon_sym_inline] = ACTIONS(2552), + [anon_sym___inline] = ACTIONS(2552), + [anon_sym___inline__] = ACTIONS(2552), + [anon_sym___forceinline] = ACTIONS(2552), + [anon_sym_thread_local] = ACTIONS(2552), + [anon_sym___thread] = ACTIONS(2552), + [anon_sym_CG_EXTERN] = ACTIONS(2552), + [anon_sym_CG_INLINE] = ACTIONS(2552), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2552), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2552), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2552), + [anon_sym_IBOutlet] = ACTIONS(2552), + [anon_sym_IBInspectable] = ACTIONS(2552), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2552), + [anon_sym_NS_INLINE] = ACTIONS(2552), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2552), + [anon_sym_OBJC_EXPORT] = ACTIONS(2552), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2552), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2552), + [anon_sym_const] = ACTIONS(2552), + [anon_sym_constexpr] = ACTIONS(2552), + [anon_sym_volatile] = ACTIONS(2552), + [anon_sym_restrict] = ACTIONS(2552), + [anon_sym___restrict__] = ACTIONS(2552), + [anon_sym__Atomic] = ACTIONS(2552), + [anon_sym__Noreturn] = ACTIONS(2552), + [anon_sym__Nonnull] = ACTIONS(2552), + [anon_sym_nullable] = ACTIONS(2552), + [anon_sym__Complex] = ACTIONS(2552), + [anon_sym__Nullable] = ACTIONS(2552), + [anon_sym__Nullable_result] = ACTIONS(2552), + [anon_sym__Null_unspecified] = ACTIONS(2552), + [anon_sym___autoreleasing] = ACTIONS(2552), + [anon_sym___block] = ACTIONS(2552), + [anon_sym___bridge] = ACTIONS(2552), + [anon_sym___bridge_retained] = ACTIONS(2552), + [anon_sym___bridge_transfer] = ACTIONS(2552), + [anon_sym___complex] = ACTIONS(2552), + [anon_sym___const] = ACTIONS(2552), + [anon_sym___imag] = ACTIONS(2552), + [anon_sym___kindof] = ACTIONS(2552), + [anon_sym___nonnull] = ACTIONS(2552), + [anon_sym___nullable] = ACTIONS(2552), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2552), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2552), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2552), + [anon_sym___real] = ACTIONS(2552), + [anon_sym___strong] = ACTIONS(2552), + [anon_sym___unsafe_unretained] = ACTIONS(2552), + [anon_sym___unused] = ACTIONS(2552), + [anon_sym___weak] = ACTIONS(2552), + [anon_sym_alignas] = ACTIONS(2552), + [anon_sym__Alignas] = ACTIONS(2552), + [sym_primitive_type] = ACTIONS(2552), + [anon_sym_enum] = ACTIONS(2552), + [anon_sym_struct] = ACTIONS(2552), + [anon_sym_union] = ACTIONS(2552), + [anon_sym_if] = ACTIONS(2552), + [anon_sym_else] = ACTIONS(2552), + [anon_sym_switch] = ACTIONS(2552), + [anon_sym_case] = ACTIONS(2552), + [anon_sym_default] = ACTIONS(2552), + [anon_sym_while] = ACTIONS(2552), + [anon_sym_do] = ACTIONS(2552), + [anon_sym_for] = ACTIONS(2552), + [anon_sym_in] = ACTIONS(2552), + [anon_sym_return] = ACTIONS(2552), + [anon_sym_break] = ACTIONS(2552), + [anon_sym_continue] = ACTIONS(2552), + [anon_sym_goto] = ACTIONS(2552), + [anon_sym_DASH_DASH] = ACTIONS(2554), + [anon_sym_PLUS_PLUS] = ACTIONS(2554), + [anon_sym_sizeof] = ACTIONS(2552), + [anon_sym___alignof__] = ACTIONS(2552), + [anon_sym___alignof] = ACTIONS(2552), + [anon_sym__alignof] = ACTIONS(2552), + [anon_sym_alignof] = ACTIONS(2552), + [anon_sym__Alignof] = ACTIONS(2552), + [anon_sym_offsetof] = ACTIONS(2552), + [anon_sym__Generic] = ACTIONS(2552), + [anon_sym_asm] = ACTIONS(2552), + [anon_sym___asm__] = ACTIONS(2552), + [anon_sym___asm] = ACTIONS(2552), + [sym_number_literal] = ACTIONS(2554), + [anon_sym_L_SQUOTE] = ACTIONS(2554), + [anon_sym_u_SQUOTE] = ACTIONS(2554), + [anon_sym_U_SQUOTE] = ACTIONS(2554), + [anon_sym_u8_SQUOTE] = ACTIONS(2554), + [anon_sym_SQUOTE] = ACTIONS(2554), + [anon_sym_AT] = ACTIONS(2552), + [anon_sym_DQUOTE] = ACTIONS(2554), + [anon_sym_L_DQUOTE] = ACTIONS(2554), + [anon_sym_u_DQUOTE] = ACTIONS(2554), + [anon_sym_U_DQUOTE] = ACTIONS(2554), + [anon_sym_u8_DQUOTE] = ACTIONS(2554), + [sym_true] = ACTIONS(2552), + [sym_false] = ACTIONS(2552), + [anon_sym_NULL] = ACTIONS(2552), + [anon_sym_nullptr] = ACTIONS(2552), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2552), + [anon_sym___typeof] = ACTIONS(2552), + [anon_sym_typeof] = ACTIONS(2552), + [anon_sym_ATimport] = ACTIONS(2554), + [aux_sym_preproc_undef_token1] = ACTIONS(2552), + [anon_sym_POUND] = ACTIONS(2552), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2552), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2552), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2552), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2552), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2552), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2552), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2552), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2552), + [anon_sym_NS_AVAILABLE] = ACTIONS(2552), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2552), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_API_AVAILABLE] = ACTIONS(2552), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_API_DEPRECATED] = ACTIONS(2552), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2552), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2552), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2552), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2552), + [anon_sym___deprecated_msg] = ACTIONS(2552), + [anon_sym___deprecated_enum_msg] = ACTIONS(2552), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2552), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2552), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2552), + [anon_sym_ATprotocol] = ACTIONS(2554), + [anon_sym_ATinterface] = ACTIONS(2554), + [anon_sym_ATimplementation] = ACTIONS(2554), + [anon_sym_ATcompatibility_alias] = ACTIONS(2554), + [anon_sym_ATsynthesize] = ACTIONS(2554), + [anon_sym_ATdynamic] = ACTIONS(2554), + [anon_sym_ATtry] = ACTIONS(2554), + [anon_sym___try] = ACTIONS(2552), + [anon_sym_ATthrow] = ACTIONS(2554), + [anon_sym_ATselector] = ACTIONS(2554), + [anon_sym_ATavailable] = ACTIONS(2554), + [anon_sym___builtin_available] = ACTIONS(2552), + [anon_sym_va_arg] = ACTIONS(2552), + [anon_sym_ATencode] = ACTIONS(2554), + [anon_sym_ATsynchronized] = ACTIONS(2554), + [anon_sym_BOOL] = ACTIONS(2552), + [anon_sym_IMP] = ACTIONS(2552), + [anon_sym_SEL] = ACTIONS(2552), + [anon_sym_Class] = ACTIONS(2552), + [anon_sym_id] = ACTIONS(2552), + }, + [253] = { + [sym_identifier] = ACTIONS(2556), + [aux_sym_preproc_include_token1] = ACTIONS(2556), + [aux_sym_preproc_include_token2] = ACTIONS(2556), + [aux_sym_preproc_def_token1] = ACTIONS(2556), + [aux_sym_preproc_if_token1] = ACTIONS(2556), + [aux_sym_preproc_if_token2] = ACTIONS(2556), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2556), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2556), + [aux_sym_preproc_else_token1] = ACTIONS(2556), + [aux_sym_preproc_elif_token1] = ACTIONS(2556), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2556), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2556), + [sym_preproc_directive] = ACTIONS(2556), + [anon_sym_LPAREN2] = ACTIONS(2558), + [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_TILDE] = ACTIONS(2558), + [anon_sym_DASH] = ACTIONS(2556), + [anon_sym_PLUS] = ACTIONS(2556), + [anon_sym_STAR] = ACTIONS(2558), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym_AMP] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym___extension__] = ACTIONS(2556), + [anon_sym_typedef] = ACTIONS(2556), + [anon_sym_extern] = ACTIONS(2556), + [anon_sym___attribute__] = ACTIONS(2556), + [anon_sym___attribute] = ACTIONS(2556), + [anon_sym_noreturn] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym___declspec] = ACTIONS(2556), + [anon_sym___cdecl] = ACTIONS(2556), + [anon_sym___clrcall] = ACTIONS(2556), + [anon_sym___stdcall] = ACTIONS(2556), + [anon_sym___fastcall] = ACTIONS(2556), + [anon_sym___thiscall] = ACTIONS(2556), + [anon_sym___vectorcall] = ACTIONS(2556), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_signed] = ACTIONS(2556), + [anon_sym_unsigned] = ACTIONS(2556), + [anon_sym_long] = ACTIONS(2556), + [anon_sym_short] = ACTIONS(2556), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_ATautoreleasepool] = ACTIONS(2558), + [anon_sym_auto] = ACTIONS(2556), + [anon_sym_register] = ACTIONS(2556), + [anon_sym_inline] = ACTIONS(2556), + [anon_sym___inline] = ACTIONS(2556), + [anon_sym___inline__] = ACTIONS(2556), + [anon_sym___forceinline] = ACTIONS(2556), + [anon_sym_thread_local] = ACTIONS(2556), + [anon_sym___thread] = ACTIONS(2556), + [anon_sym_CG_EXTERN] = ACTIONS(2556), + [anon_sym_CG_INLINE] = ACTIONS(2556), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2556), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2556), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2556), + [anon_sym_IBOutlet] = ACTIONS(2556), + [anon_sym_IBInspectable] = ACTIONS(2556), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2556), + [anon_sym_NS_INLINE] = ACTIONS(2556), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2556), + [anon_sym_OBJC_EXPORT] = ACTIONS(2556), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2556), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2556), + [anon_sym_const] = ACTIONS(2556), + [anon_sym_constexpr] = ACTIONS(2556), + [anon_sym_volatile] = ACTIONS(2556), + [anon_sym_restrict] = ACTIONS(2556), + [anon_sym___restrict__] = ACTIONS(2556), + [anon_sym__Atomic] = ACTIONS(2556), + [anon_sym__Noreturn] = ACTIONS(2556), + [anon_sym__Nonnull] = ACTIONS(2556), + [anon_sym_nullable] = ACTIONS(2556), + [anon_sym__Complex] = ACTIONS(2556), + [anon_sym__Nullable] = ACTIONS(2556), + [anon_sym__Nullable_result] = ACTIONS(2556), + [anon_sym__Null_unspecified] = ACTIONS(2556), + [anon_sym___autoreleasing] = ACTIONS(2556), + [anon_sym___block] = ACTIONS(2556), + [anon_sym___bridge] = ACTIONS(2556), + [anon_sym___bridge_retained] = ACTIONS(2556), + [anon_sym___bridge_transfer] = ACTIONS(2556), + [anon_sym___complex] = ACTIONS(2556), + [anon_sym___const] = ACTIONS(2556), + [anon_sym___imag] = ACTIONS(2556), + [anon_sym___kindof] = ACTIONS(2556), + [anon_sym___nonnull] = ACTIONS(2556), + [anon_sym___nullable] = ACTIONS(2556), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2556), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2556), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2556), + [anon_sym___real] = ACTIONS(2556), + [anon_sym___strong] = ACTIONS(2556), + [anon_sym___unsafe_unretained] = ACTIONS(2556), + [anon_sym___unused] = ACTIONS(2556), + [anon_sym___weak] = ACTIONS(2556), + [anon_sym_alignas] = ACTIONS(2556), + [anon_sym__Alignas] = ACTIONS(2556), + [sym_primitive_type] = ACTIONS(2556), + [anon_sym_enum] = ACTIONS(2556), + [anon_sym_struct] = ACTIONS(2556), + [anon_sym_union] = ACTIONS(2556), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_else] = ACTIONS(2556), + [anon_sym_switch] = ACTIONS(2556), + [anon_sym_case] = ACTIONS(2556), + [anon_sym_default] = ACTIONS(2556), + [anon_sym_while] = ACTIONS(2556), + [anon_sym_do] = ACTIONS(2556), + [anon_sym_for] = ACTIONS(2556), + [anon_sym_in] = ACTIONS(2556), + [anon_sym_return] = ACTIONS(2556), + [anon_sym_break] = ACTIONS(2556), + [anon_sym_continue] = ACTIONS(2556), + [anon_sym_goto] = ACTIONS(2556), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_sizeof] = ACTIONS(2556), + [anon_sym___alignof__] = ACTIONS(2556), + [anon_sym___alignof] = ACTIONS(2556), + [anon_sym__alignof] = ACTIONS(2556), + [anon_sym_alignof] = ACTIONS(2556), + [anon_sym__Alignof] = ACTIONS(2556), + [anon_sym_offsetof] = ACTIONS(2556), + [anon_sym__Generic] = ACTIONS(2556), + [anon_sym_asm] = ACTIONS(2556), + [anon_sym___asm__] = ACTIONS(2556), + [anon_sym___asm] = ACTIONS(2556), + [sym_number_literal] = ACTIONS(2558), + [anon_sym_L_SQUOTE] = ACTIONS(2558), + [anon_sym_u_SQUOTE] = ACTIONS(2558), + [anon_sym_U_SQUOTE] = ACTIONS(2558), + [anon_sym_u8_SQUOTE] = ACTIONS(2558), + [anon_sym_SQUOTE] = ACTIONS(2558), + [anon_sym_AT] = ACTIONS(2556), + [anon_sym_DQUOTE] = ACTIONS(2558), + [anon_sym_L_DQUOTE] = ACTIONS(2558), + [anon_sym_u_DQUOTE] = ACTIONS(2558), + [anon_sym_U_DQUOTE] = ACTIONS(2558), + [anon_sym_u8_DQUOTE] = ACTIONS(2558), + [sym_true] = ACTIONS(2556), + [sym_false] = ACTIONS(2556), + [anon_sym_NULL] = ACTIONS(2556), + [anon_sym_nullptr] = ACTIONS(2556), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2556), + [anon_sym___typeof] = ACTIONS(2556), + [anon_sym_typeof] = ACTIONS(2556), + [anon_sym_ATimport] = ACTIONS(2558), + [aux_sym_preproc_undef_token1] = ACTIONS(2556), + [anon_sym_POUND] = ACTIONS(2556), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2556), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2556), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2556), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2556), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2556), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2556), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2556), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2556), + [anon_sym_NS_AVAILABLE] = ACTIONS(2556), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2556), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_API_AVAILABLE] = ACTIONS(2556), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_API_DEPRECATED] = ACTIONS(2556), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2556), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2556), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2556), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2556), + [anon_sym___deprecated_msg] = ACTIONS(2556), + [anon_sym___deprecated_enum_msg] = ACTIONS(2556), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2556), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2556), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2556), + [anon_sym_ATprotocol] = ACTIONS(2558), + [anon_sym_ATinterface] = ACTIONS(2558), + [anon_sym_ATimplementation] = ACTIONS(2558), + [anon_sym_ATcompatibility_alias] = ACTIONS(2558), + [anon_sym_ATsynthesize] = ACTIONS(2558), + [anon_sym_ATdynamic] = ACTIONS(2558), + [anon_sym_ATtry] = ACTIONS(2558), + [anon_sym___try] = ACTIONS(2556), + [anon_sym_ATthrow] = ACTIONS(2558), + [anon_sym_ATselector] = ACTIONS(2558), + [anon_sym_ATavailable] = ACTIONS(2558), + [anon_sym___builtin_available] = ACTIONS(2556), + [anon_sym_va_arg] = ACTIONS(2556), + [anon_sym_ATencode] = ACTIONS(2558), + [anon_sym_ATsynchronized] = ACTIONS(2558), + [anon_sym_BOOL] = ACTIONS(2556), + [anon_sym_IMP] = ACTIONS(2556), + [anon_sym_SEL] = ACTIONS(2556), + [anon_sym_Class] = ACTIONS(2556), + [anon_sym_id] = ACTIONS(2556), + }, + [254] = { + [sym_identifier] = ACTIONS(2560), + [aux_sym_preproc_include_token1] = ACTIONS(2560), + [aux_sym_preproc_include_token2] = ACTIONS(2560), + [aux_sym_preproc_def_token1] = ACTIONS(2560), + [aux_sym_preproc_if_token1] = ACTIONS(2560), + [aux_sym_preproc_if_token2] = ACTIONS(2560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2560), + [aux_sym_preproc_else_token1] = ACTIONS(2560), + [aux_sym_preproc_elif_token1] = ACTIONS(2560), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2560), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2560), + [sym_preproc_directive] = ACTIONS(2560), + [anon_sym_LPAREN2] = ACTIONS(2562), + [anon_sym_BANG] = ACTIONS(2562), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_DASH] = ACTIONS(2560), + [anon_sym_PLUS] = ACTIONS(2560), + [anon_sym_STAR] = ACTIONS(2562), + [anon_sym_CARET] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2562), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym___extension__] = ACTIONS(2560), + [anon_sym_typedef] = ACTIONS(2560), + [anon_sym_extern] = ACTIONS(2560), + [anon_sym___attribute__] = ACTIONS(2560), + [anon_sym___attribute] = ACTIONS(2560), + [anon_sym_noreturn] = ACTIONS(2560), + [anon_sym_LBRACK] = ACTIONS(2562), + [anon_sym___declspec] = ACTIONS(2560), + [anon_sym___cdecl] = ACTIONS(2560), + [anon_sym___clrcall] = ACTIONS(2560), + [anon_sym___stdcall] = ACTIONS(2560), + [anon_sym___fastcall] = ACTIONS(2560), + [anon_sym___thiscall] = ACTIONS(2560), + [anon_sym___vectorcall] = ACTIONS(2560), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_signed] = ACTIONS(2560), + [anon_sym_unsigned] = ACTIONS(2560), + [anon_sym_long] = ACTIONS(2560), + [anon_sym_short] = ACTIONS(2560), + [anon_sym_static] = ACTIONS(2560), + [anon_sym_ATautoreleasepool] = ACTIONS(2562), + [anon_sym_auto] = ACTIONS(2560), + [anon_sym_register] = ACTIONS(2560), + [anon_sym_inline] = ACTIONS(2560), + [anon_sym___inline] = ACTIONS(2560), + [anon_sym___inline__] = ACTIONS(2560), + [anon_sym___forceinline] = ACTIONS(2560), + [anon_sym_thread_local] = ACTIONS(2560), + [anon_sym___thread] = ACTIONS(2560), + [anon_sym_CG_EXTERN] = ACTIONS(2560), + [anon_sym_CG_INLINE] = ACTIONS(2560), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2560), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2560), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2560), + [anon_sym_IBOutlet] = ACTIONS(2560), + [anon_sym_IBInspectable] = ACTIONS(2560), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2560), + [anon_sym_NS_INLINE] = ACTIONS(2560), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2560), + [anon_sym_OBJC_EXPORT] = ACTIONS(2560), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2560), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2560), + [anon_sym_const] = ACTIONS(2560), + [anon_sym_constexpr] = ACTIONS(2560), + [anon_sym_volatile] = ACTIONS(2560), + [anon_sym_restrict] = ACTIONS(2560), + [anon_sym___restrict__] = ACTIONS(2560), + [anon_sym__Atomic] = ACTIONS(2560), + [anon_sym__Noreturn] = ACTIONS(2560), + [anon_sym__Nonnull] = ACTIONS(2560), + [anon_sym_nullable] = ACTIONS(2560), + [anon_sym__Complex] = ACTIONS(2560), + [anon_sym__Nullable] = ACTIONS(2560), + [anon_sym__Nullable_result] = ACTIONS(2560), + [anon_sym__Null_unspecified] = ACTIONS(2560), + [anon_sym___autoreleasing] = ACTIONS(2560), + [anon_sym___block] = ACTIONS(2560), + [anon_sym___bridge] = ACTIONS(2560), + [anon_sym___bridge_retained] = ACTIONS(2560), + [anon_sym___bridge_transfer] = ACTIONS(2560), + [anon_sym___complex] = ACTIONS(2560), + [anon_sym___const] = ACTIONS(2560), + [anon_sym___imag] = ACTIONS(2560), + [anon_sym___kindof] = ACTIONS(2560), + [anon_sym___nonnull] = ACTIONS(2560), + [anon_sym___nullable] = ACTIONS(2560), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2560), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2560), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2560), + [anon_sym___real] = ACTIONS(2560), + [anon_sym___strong] = ACTIONS(2560), + [anon_sym___unsafe_unretained] = ACTIONS(2560), + [anon_sym___unused] = ACTIONS(2560), + [anon_sym___weak] = ACTIONS(2560), + [anon_sym_alignas] = ACTIONS(2560), + [anon_sym__Alignas] = ACTIONS(2560), + [sym_primitive_type] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2560), + [anon_sym_struct] = ACTIONS(2560), + [anon_sym_union] = ACTIONS(2560), + [anon_sym_if] = ACTIONS(2560), + [anon_sym_else] = ACTIONS(2560), + [anon_sym_switch] = ACTIONS(2560), + [anon_sym_case] = ACTIONS(2560), + [anon_sym_default] = ACTIONS(2560), + [anon_sym_while] = ACTIONS(2560), + [anon_sym_do] = ACTIONS(2560), + [anon_sym_for] = ACTIONS(2560), + [anon_sym_in] = ACTIONS(2560), + [anon_sym_return] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_goto] = ACTIONS(2560), + [anon_sym_DASH_DASH] = ACTIONS(2562), + [anon_sym_PLUS_PLUS] = ACTIONS(2562), + [anon_sym_sizeof] = ACTIONS(2560), + [anon_sym___alignof__] = ACTIONS(2560), + [anon_sym___alignof] = ACTIONS(2560), + [anon_sym__alignof] = ACTIONS(2560), + [anon_sym_alignof] = ACTIONS(2560), + [anon_sym__Alignof] = ACTIONS(2560), + [anon_sym_offsetof] = ACTIONS(2560), + [anon_sym__Generic] = ACTIONS(2560), + [anon_sym_asm] = ACTIONS(2560), + [anon_sym___asm__] = ACTIONS(2560), + [anon_sym___asm] = ACTIONS(2560), + [sym_number_literal] = ACTIONS(2562), + [anon_sym_L_SQUOTE] = ACTIONS(2562), + [anon_sym_u_SQUOTE] = ACTIONS(2562), + [anon_sym_U_SQUOTE] = ACTIONS(2562), + [anon_sym_u8_SQUOTE] = ACTIONS(2562), + [anon_sym_SQUOTE] = ACTIONS(2562), + [anon_sym_AT] = ACTIONS(2560), + [anon_sym_DQUOTE] = ACTIONS(2562), + [anon_sym_L_DQUOTE] = ACTIONS(2562), + [anon_sym_u_DQUOTE] = ACTIONS(2562), + [anon_sym_U_DQUOTE] = ACTIONS(2562), + [anon_sym_u8_DQUOTE] = ACTIONS(2562), + [sym_true] = ACTIONS(2560), + [sym_false] = ACTIONS(2560), + [anon_sym_NULL] = ACTIONS(2560), + [anon_sym_nullptr] = ACTIONS(2560), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2560), + [anon_sym___typeof] = ACTIONS(2560), + [anon_sym_typeof] = ACTIONS(2560), + [anon_sym_ATimport] = ACTIONS(2562), + [aux_sym_preproc_undef_token1] = ACTIONS(2560), + [anon_sym_POUND] = ACTIONS(2560), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2560), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2560), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2560), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2560), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2560), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2560), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2560), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2560), + [anon_sym_NS_AVAILABLE] = ACTIONS(2560), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2560), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_API_AVAILABLE] = ACTIONS(2560), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_API_DEPRECATED] = ACTIONS(2560), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2560), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2560), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2560), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2560), + [anon_sym___deprecated_msg] = ACTIONS(2560), + [anon_sym___deprecated_enum_msg] = ACTIONS(2560), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2560), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2560), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2560), + [anon_sym_ATprotocol] = ACTIONS(2562), + [anon_sym_ATinterface] = ACTIONS(2562), + [anon_sym_ATimplementation] = ACTIONS(2562), + [anon_sym_ATcompatibility_alias] = ACTIONS(2562), + [anon_sym_ATsynthesize] = ACTIONS(2562), + [anon_sym_ATdynamic] = ACTIONS(2562), + [anon_sym_ATtry] = ACTIONS(2562), + [anon_sym___try] = ACTIONS(2560), + [anon_sym_ATthrow] = ACTIONS(2562), + [anon_sym_ATselector] = ACTIONS(2562), + [anon_sym_ATavailable] = ACTIONS(2562), + [anon_sym___builtin_available] = ACTIONS(2560), + [anon_sym_va_arg] = ACTIONS(2560), + [anon_sym_ATencode] = ACTIONS(2562), + [anon_sym_ATsynchronized] = ACTIONS(2562), + [anon_sym_BOOL] = ACTIONS(2560), + [anon_sym_IMP] = ACTIONS(2560), + [anon_sym_SEL] = ACTIONS(2560), + [anon_sym_Class] = ACTIONS(2560), + [anon_sym_id] = ACTIONS(2560), + }, + [255] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [256] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [257] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [258] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [259] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [260] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [261] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [262] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [263] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [264] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [265] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [266] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [267] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [268] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [269] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [270] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [271] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [272] = { + [sym_identifier] = ACTIONS(2346), + [aux_sym_preproc_include_token1] = ACTIONS(2346), + [aux_sym_preproc_include_token2] = ACTIONS(2346), + [aux_sym_preproc_def_token1] = ACTIONS(2346), + [aux_sym_preproc_if_token1] = ACTIONS(2346), + [aux_sym_preproc_if_token2] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2346), + [aux_sym_preproc_else_token1] = ACTIONS(2346), + [aux_sym_preproc_elif_token1] = ACTIONS(2346), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2346), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2346), + [sym_preproc_directive] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2346), + [anon_sym_PLUS] = ACTIONS(2346), + [anon_sym_STAR] = ACTIONS(2348), + [anon_sym_CARET] = ACTIONS(2348), + [anon_sym_AMP] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym___extension__] = ACTIONS(2346), + [anon_sym_typedef] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym___attribute__] = ACTIONS(2346), + [anon_sym___attribute] = ACTIONS(2346), + [anon_sym_noreturn] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym___declspec] = ACTIONS(2346), + [anon_sym___cdecl] = ACTIONS(2346), + [anon_sym___clrcall] = ACTIONS(2346), + [anon_sym___stdcall] = ACTIONS(2346), + [anon_sym___fastcall] = ACTIONS(2346), + [anon_sym___thiscall] = ACTIONS(2346), + [anon_sym___vectorcall] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_signed] = ACTIONS(2346), + [anon_sym_unsigned] = ACTIONS(2346), + [anon_sym_long] = ACTIONS(2346), + [anon_sym_short] = ACTIONS(2346), + [anon_sym_static] = ACTIONS(2346), + [anon_sym_ATautoreleasepool] = ACTIONS(2348), + [anon_sym_auto] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2346), + [anon_sym_inline] = ACTIONS(2346), + [anon_sym___inline] = ACTIONS(2346), + [anon_sym___inline__] = ACTIONS(2346), + [anon_sym___forceinline] = ACTIONS(2346), + [anon_sym_thread_local] = ACTIONS(2346), + [anon_sym___thread] = ACTIONS(2346), + [anon_sym_CG_EXTERN] = ACTIONS(2346), + [anon_sym_CG_INLINE] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2346), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2346), + [anon_sym_IBOutlet] = ACTIONS(2346), + [anon_sym_IBInspectable] = ACTIONS(2346), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2346), + [anon_sym_NS_INLINE] = ACTIONS(2346), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2346), + [anon_sym_OBJC_EXPORT] = ACTIONS(2346), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_constexpr] = ACTIONS(2346), + [anon_sym_volatile] = ACTIONS(2346), + [anon_sym_restrict] = ACTIONS(2346), + [anon_sym___restrict__] = ACTIONS(2346), + [anon_sym__Atomic] = ACTIONS(2346), + [anon_sym__Noreturn] = ACTIONS(2346), + [anon_sym__Nonnull] = ACTIONS(2346), + [anon_sym_nullable] = ACTIONS(2346), + [anon_sym__Complex] = ACTIONS(2346), + [anon_sym__Nullable] = ACTIONS(2346), + [anon_sym__Nullable_result] = ACTIONS(2346), + [anon_sym__Null_unspecified] = ACTIONS(2346), + [anon_sym___autoreleasing] = ACTIONS(2346), + [anon_sym___block] = ACTIONS(2346), + [anon_sym___bridge] = ACTIONS(2346), + [anon_sym___bridge_retained] = ACTIONS(2346), + [anon_sym___bridge_transfer] = ACTIONS(2346), + [anon_sym___complex] = ACTIONS(2346), + [anon_sym___const] = ACTIONS(2346), + [anon_sym___imag] = ACTIONS(2346), + [anon_sym___kindof] = ACTIONS(2346), + [anon_sym___nonnull] = ACTIONS(2346), + [anon_sym___nullable] = ACTIONS(2346), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2346), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2346), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2346), + [anon_sym___real] = ACTIONS(2346), + [anon_sym___strong] = ACTIONS(2346), + [anon_sym___unsafe_unretained] = ACTIONS(2346), + [anon_sym___unused] = ACTIONS(2346), + [anon_sym___weak] = ACTIONS(2346), + [anon_sym_alignas] = ACTIONS(2346), + [anon_sym__Alignas] = ACTIONS(2346), + [sym_primitive_type] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_switch] = ACTIONS(2346), + [anon_sym_case] = ACTIONS(2346), + [anon_sym_default] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_do] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_goto] = ACTIONS(2346), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2346), + [anon_sym__Generic] = ACTIONS(2346), + [anon_sym_asm] = ACTIONS(2346), + [anon_sym___asm__] = ACTIONS(2346), + [anon_sym___asm] = ACTIONS(2346), + [sym_number_literal] = ACTIONS(2348), + [anon_sym_L_SQUOTE] = ACTIONS(2348), + [anon_sym_u_SQUOTE] = ACTIONS(2348), + [anon_sym_U_SQUOTE] = ACTIONS(2348), + [anon_sym_u8_SQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_L_DQUOTE] = ACTIONS(2348), + [anon_sym_u_DQUOTE] = ACTIONS(2348), + [anon_sym_U_DQUOTE] = ACTIONS(2348), + [anon_sym_u8_DQUOTE] = ACTIONS(2348), + [sym_true] = ACTIONS(2346), + [sym_false] = ACTIONS(2346), + [anon_sym_NULL] = ACTIONS(2346), + [anon_sym_nullptr] = ACTIONS(2346), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2346), + [anon_sym___typeof] = ACTIONS(2346), + [anon_sym_typeof] = ACTIONS(2346), + [anon_sym_ATimport] = ACTIONS(2348), + [aux_sym_preproc_undef_token1] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(2346), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2346), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2346), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2346), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2346), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE] = ACTIONS(2346), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_API_AVAILABLE] = ACTIONS(2346), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_API_DEPRECATED] = ACTIONS(2346), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2346), + [anon_sym___deprecated_msg] = ACTIONS(2346), + [anon_sym___deprecated_enum_msg] = ACTIONS(2346), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2346), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2346), + [anon_sym_ATprotocol] = ACTIONS(2348), + [anon_sym_ATinterface] = ACTIONS(2348), + [anon_sym_ATimplementation] = ACTIONS(2348), + [anon_sym_ATcompatibility_alias] = ACTIONS(2348), + [anon_sym_ATsynthesize] = ACTIONS(2348), + [anon_sym_ATdynamic] = ACTIONS(2348), + [anon_sym_ATtry] = ACTIONS(2348), + [anon_sym___try] = ACTIONS(2346), + [anon_sym_ATthrow] = ACTIONS(2348), + [anon_sym_ATselector] = ACTIONS(2348), + [anon_sym_ATavailable] = ACTIONS(2348), + [anon_sym___builtin_available] = ACTIONS(2346), + [anon_sym_va_arg] = ACTIONS(2346), + [anon_sym_ATencode] = ACTIONS(2348), + [anon_sym_ATsynchronized] = ACTIONS(2348), + [anon_sym_BOOL] = ACTIONS(2346), + [anon_sym_IMP] = ACTIONS(2346), + [anon_sym_SEL] = ACTIONS(2346), + [anon_sym_Class] = ACTIONS(2346), + [anon_sym_id] = ACTIONS(2346), + }, + [273] = { + [sym_identifier] = ACTIONS(2364), + [aux_sym_preproc_include_token1] = ACTIONS(2364), + [aux_sym_preproc_include_token2] = ACTIONS(2364), + [aux_sym_preproc_def_token1] = ACTIONS(2364), + [aux_sym_preproc_if_token1] = ACTIONS(2364), + [aux_sym_preproc_if_token2] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2364), + [aux_sym_preproc_else_token1] = ACTIONS(2364), + [aux_sym_preproc_elif_token1] = ACTIONS(2364), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2364), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2364), + [sym_preproc_directive] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_PLUS] = ACTIONS(2364), + [anon_sym_STAR] = ACTIONS(2366), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_AMP] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_typedef] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym___attribute__] = ACTIONS(2364), + [anon_sym___attribute] = ACTIONS(2364), + [anon_sym_noreturn] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym___declspec] = ACTIONS(2364), + [anon_sym___cdecl] = ACTIONS(2364), + [anon_sym___clrcall] = ACTIONS(2364), + [anon_sym___stdcall] = ACTIONS(2364), + [anon_sym___fastcall] = ACTIONS(2364), + [anon_sym___thiscall] = ACTIONS(2364), + [anon_sym___vectorcall] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_signed] = ACTIONS(2364), + [anon_sym_unsigned] = ACTIONS(2364), + [anon_sym_long] = ACTIONS(2364), + [anon_sym_short] = ACTIONS(2364), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_ATautoreleasepool] = ACTIONS(2366), + [anon_sym_auto] = ACTIONS(2364), + [anon_sym_register] = ACTIONS(2364), + [anon_sym_inline] = ACTIONS(2364), + [anon_sym___inline] = ACTIONS(2364), + [anon_sym___inline__] = ACTIONS(2364), + [anon_sym___forceinline] = ACTIONS(2364), + [anon_sym_thread_local] = ACTIONS(2364), + [anon_sym___thread] = ACTIONS(2364), + [anon_sym_CG_EXTERN] = ACTIONS(2364), + [anon_sym_CG_INLINE] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2364), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2364), + [anon_sym_IBOutlet] = ACTIONS(2364), + [anon_sym_IBInspectable] = ACTIONS(2364), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2364), + [anon_sym_NS_INLINE] = ACTIONS(2364), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2364), + [anon_sym_OBJC_EXPORT] = ACTIONS(2364), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [anon_sym_constexpr] = ACTIONS(2364), + [anon_sym_volatile] = ACTIONS(2364), + [anon_sym_restrict] = ACTIONS(2364), + [anon_sym___restrict__] = ACTIONS(2364), + [anon_sym__Atomic] = ACTIONS(2364), + [anon_sym__Noreturn] = ACTIONS(2364), + [anon_sym__Nonnull] = ACTIONS(2364), + [anon_sym_nullable] = ACTIONS(2364), + [anon_sym__Complex] = ACTIONS(2364), + [anon_sym__Nullable] = ACTIONS(2364), + [anon_sym__Nullable_result] = ACTIONS(2364), + [anon_sym__Null_unspecified] = ACTIONS(2364), + [anon_sym___autoreleasing] = ACTIONS(2364), + [anon_sym___block] = ACTIONS(2364), + [anon_sym___bridge] = ACTIONS(2364), + [anon_sym___bridge_retained] = ACTIONS(2364), + [anon_sym___bridge_transfer] = ACTIONS(2364), + [anon_sym___complex] = ACTIONS(2364), + [anon_sym___const] = ACTIONS(2364), + [anon_sym___imag] = ACTIONS(2364), + [anon_sym___kindof] = ACTIONS(2364), + [anon_sym___nonnull] = ACTIONS(2364), + [anon_sym___nullable] = ACTIONS(2364), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2364), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2364), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2364), + [anon_sym___real] = ACTIONS(2364), + [anon_sym___strong] = ACTIONS(2364), + [anon_sym___unsafe_unretained] = ACTIONS(2364), + [anon_sym___unused] = ACTIONS(2364), + [anon_sym___weak] = ACTIONS(2364), + [anon_sym_alignas] = ACTIONS(2364), + [anon_sym__Alignas] = ACTIONS(2364), + [sym_primitive_type] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(2364), + [anon_sym_union] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_switch] = ACTIONS(2364), + [anon_sym_case] = ACTIONS(2364), + [anon_sym_default] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_do] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_in] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_goto] = ACTIONS(2364), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_sizeof] = ACTIONS(2364), + [anon_sym___alignof__] = ACTIONS(2364), + [anon_sym___alignof] = ACTIONS(2364), + [anon_sym__alignof] = ACTIONS(2364), + [anon_sym_alignof] = ACTIONS(2364), + [anon_sym__Alignof] = ACTIONS(2364), + [anon_sym_offsetof] = ACTIONS(2364), + [anon_sym__Generic] = ACTIONS(2364), + [anon_sym_asm] = ACTIONS(2364), + [anon_sym___asm__] = ACTIONS(2364), + [anon_sym___asm] = ACTIONS(2364), + [sym_number_literal] = ACTIONS(2366), + [anon_sym_L_SQUOTE] = ACTIONS(2366), + [anon_sym_u_SQUOTE] = ACTIONS(2366), + [anon_sym_U_SQUOTE] = ACTIONS(2366), + [anon_sym_u8_SQUOTE] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2366), + [anon_sym_AT] = ACTIONS(2364), + [anon_sym_DQUOTE] = ACTIONS(2366), + [anon_sym_L_DQUOTE] = ACTIONS(2366), + [anon_sym_u_DQUOTE] = ACTIONS(2366), + [anon_sym_U_DQUOTE] = ACTIONS(2366), + [anon_sym_u8_DQUOTE] = ACTIONS(2366), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2364), + [anon_sym___typeof] = ACTIONS(2364), + [anon_sym_typeof] = ACTIONS(2364), + [anon_sym_ATimport] = ACTIONS(2366), + [aux_sym_preproc_undef_token1] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(2364), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2364), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2364), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2364), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2364), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE] = ACTIONS(2364), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_API_AVAILABLE] = ACTIONS(2364), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_API_DEPRECATED] = ACTIONS(2364), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2364), + [anon_sym___deprecated_msg] = ACTIONS(2364), + [anon_sym___deprecated_enum_msg] = ACTIONS(2364), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2364), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2364), + [anon_sym_ATprotocol] = ACTIONS(2366), + [anon_sym_ATinterface] = ACTIONS(2366), + [anon_sym_ATimplementation] = ACTIONS(2366), + [anon_sym_ATcompatibility_alias] = ACTIONS(2366), + [anon_sym_ATsynthesize] = ACTIONS(2366), + [anon_sym_ATdynamic] = ACTIONS(2366), + [anon_sym_ATtry] = ACTIONS(2366), + [anon_sym___try] = ACTIONS(2364), + [anon_sym_ATthrow] = ACTIONS(2366), + [anon_sym_ATselector] = ACTIONS(2366), + [anon_sym_ATavailable] = ACTIONS(2366), + [anon_sym___builtin_available] = ACTIONS(2364), + [anon_sym_va_arg] = ACTIONS(2364), + [anon_sym_ATencode] = ACTIONS(2366), + [anon_sym_ATsynchronized] = ACTIONS(2366), + [anon_sym_BOOL] = ACTIONS(2364), + [anon_sym_IMP] = ACTIONS(2364), + [anon_sym_SEL] = ACTIONS(2364), + [anon_sym_Class] = ACTIONS(2364), + [anon_sym_id] = ACTIONS(2364), + }, + [274] = { + [sym_identifier] = ACTIONS(2568), + [aux_sym_preproc_include_token1] = ACTIONS(2568), + [aux_sym_preproc_include_token2] = ACTIONS(2568), + [aux_sym_preproc_def_token1] = ACTIONS(2568), + [aux_sym_preproc_if_token1] = ACTIONS(2568), + [aux_sym_preproc_if_token2] = ACTIONS(2568), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2568), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2568), + [aux_sym_preproc_else_token1] = ACTIONS(2568), + [aux_sym_preproc_elif_token1] = ACTIONS(2568), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2568), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2568), + [sym_preproc_directive] = ACTIONS(2568), + [anon_sym_LPAREN2] = ACTIONS(2570), + [anon_sym_BANG] = ACTIONS(2570), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_CARET] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym___extension__] = ACTIONS(2568), + [anon_sym_typedef] = ACTIONS(2568), + [anon_sym_extern] = ACTIONS(2568), + [anon_sym___attribute__] = ACTIONS(2568), + [anon_sym___attribute] = ACTIONS(2568), + [anon_sym_noreturn] = ACTIONS(2568), + [anon_sym_LBRACK] = ACTIONS(2570), + [anon_sym___declspec] = ACTIONS(2568), + [anon_sym___cdecl] = ACTIONS(2568), + [anon_sym___clrcall] = ACTIONS(2568), + [anon_sym___stdcall] = ACTIONS(2568), + [anon_sym___fastcall] = ACTIONS(2568), + [anon_sym___thiscall] = ACTIONS(2568), + [anon_sym___vectorcall] = ACTIONS(2568), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_signed] = ACTIONS(2568), + [anon_sym_unsigned] = ACTIONS(2568), + [anon_sym_long] = ACTIONS(2568), + [anon_sym_short] = ACTIONS(2568), + [anon_sym_static] = ACTIONS(2568), + [anon_sym_ATautoreleasepool] = ACTIONS(2570), + [anon_sym_auto] = ACTIONS(2568), + [anon_sym_register] = ACTIONS(2568), + [anon_sym_inline] = ACTIONS(2568), + [anon_sym___inline] = ACTIONS(2568), + [anon_sym___inline__] = ACTIONS(2568), + [anon_sym___forceinline] = ACTIONS(2568), + [anon_sym_thread_local] = ACTIONS(2568), + [anon_sym___thread] = ACTIONS(2568), + [anon_sym_CG_EXTERN] = ACTIONS(2568), + [anon_sym_CG_INLINE] = ACTIONS(2568), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2568), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2568), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2568), + [anon_sym_IBOutlet] = ACTIONS(2568), + [anon_sym_IBInspectable] = ACTIONS(2568), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2568), + [anon_sym_NS_INLINE] = ACTIONS(2568), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2568), + [anon_sym_OBJC_EXPORT] = ACTIONS(2568), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2568), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2568), + [anon_sym_const] = ACTIONS(2568), + [anon_sym_constexpr] = ACTIONS(2568), + [anon_sym_volatile] = ACTIONS(2568), + [anon_sym_restrict] = ACTIONS(2568), + [anon_sym___restrict__] = ACTIONS(2568), + [anon_sym__Atomic] = ACTIONS(2568), + [anon_sym__Noreturn] = ACTIONS(2568), + [anon_sym__Nonnull] = ACTIONS(2568), + [anon_sym_nullable] = ACTIONS(2568), + [anon_sym__Complex] = ACTIONS(2568), + [anon_sym__Nullable] = ACTIONS(2568), + [anon_sym__Nullable_result] = ACTIONS(2568), + [anon_sym__Null_unspecified] = ACTIONS(2568), + [anon_sym___autoreleasing] = ACTIONS(2568), + [anon_sym___block] = ACTIONS(2568), + [anon_sym___bridge] = ACTIONS(2568), + [anon_sym___bridge_retained] = ACTIONS(2568), + [anon_sym___bridge_transfer] = ACTIONS(2568), + [anon_sym___complex] = ACTIONS(2568), + [anon_sym___const] = ACTIONS(2568), + [anon_sym___imag] = ACTIONS(2568), + [anon_sym___kindof] = ACTIONS(2568), + [anon_sym___nonnull] = ACTIONS(2568), + [anon_sym___nullable] = ACTIONS(2568), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2568), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2568), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2568), + [anon_sym___real] = ACTIONS(2568), + [anon_sym___strong] = ACTIONS(2568), + [anon_sym___unsafe_unretained] = ACTIONS(2568), + [anon_sym___unused] = ACTIONS(2568), + [anon_sym___weak] = ACTIONS(2568), + [anon_sym_alignas] = ACTIONS(2568), + [anon_sym__Alignas] = ACTIONS(2568), + [sym_primitive_type] = ACTIONS(2568), + [anon_sym_enum] = ACTIONS(2568), + [anon_sym_struct] = ACTIONS(2568), + [anon_sym_union] = ACTIONS(2568), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_else] = ACTIONS(2568), + [anon_sym_switch] = ACTIONS(2568), + [anon_sym_case] = ACTIONS(2568), + [anon_sym_default] = ACTIONS(2568), + [anon_sym_while] = ACTIONS(2568), + [anon_sym_do] = ACTIONS(2568), + [anon_sym_for] = ACTIONS(2568), + [anon_sym_in] = ACTIONS(2568), + [anon_sym_return] = ACTIONS(2568), + [anon_sym_break] = ACTIONS(2568), + [anon_sym_continue] = ACTIONS(2568), + [anon_sym_goto] = ACTIONS(2568), + [anon_sym_DASH_DASH] = ACTIONS(2570), + [anon_sym_PLUS_PLUS] = ACTIONS(2570), + [anon_sym_sizeof] = ACTIONS(2568), + [anon_sym___alignof__] = ACTIONS(2568), + [anon_sym___alignof] = ACTIONS(2568), + [anon_sym__alignof] = ACTIONS(2568), + [anon_sym_alignof] = ACTIONS(2568), + [anon_sym__Alignof] = ACTIONS(2568), + [anon_sym_offsetof] = ACTIONS(2568), + [anon_sym__Generic] = ACTIONS(2568), + [anon_sym_asm] = ACTIONS(2568), + [anon_sym___asm__] = ACTIONS(2568), + [anon_sym___asm] = ACTIONS(2568), + [sym_number_literal] = ACTIONS(2570), + [anon_sym_L_SQUOTE] = ACTIONS(2570), + [anon_sym_u_SQUOTE] = ACTIONS(2570), + [anon_sym_U_SQUOTE] = ACTIONS(2570), + [anon_sym_u8_SQUOTE] = ACTIONS(2570), + [anon_sym_SQUOTE] = ACTIONS(2570), + [anon_sym_AT] = ACTIONS(2568), + [anon_sym_DQUOTE] = ACTIONS(2570), + [anon_sym_L_DQUOTE] = ACTIONS(2570), + [anon_sym_u_DQUOTE] = ACTIONS(2570), + [anon_sym_U_DQUOTE] = ACTIONS(2570), + [anon_sym_u8_DQUOTE] = ACTIONS(2570), + [sym_true] = ACTIONS(2568), + [sym_false] = ACTIONS(2568), + [anon_sym_NULL] = ACTIONS(2568), + [anon_sym_nullptr] = ACTIONS(2568), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2568), + [anon_sym___typeof] = ACTIONS(2568), + [anon_sym_typeof] = ACTIONS(2568), + [anon_sym_ATimport] = ACTIONS(2570), + [aux_sym_preproc_undef_token1] = ACTIONS(2568), + [anon_sym_POUND] = ACTIONS(2568), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2568), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2568), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2568), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2568), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2568), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2568), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2568), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2568), + [anon_sym_NS_AVAILABLE] = ACTIONS(2568), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2568), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_API_AVAILABLE] = ACTIONS(2568), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_API_DEPRECATED] = ACTIONS(2568), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2568), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2568), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2568), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2568), + [anon_sym___deprecated_msg] = ACTIONS(2568), + [anon_sym___deprecated_enum_msg] = ACTIONS(2568), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2568), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2568), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2568), + [anon_sym_ATprotocol] = ACTIONS(2570), + [anon_sym_ATinterface] = ACTIONS(2570), + [anon_sym_ATimplementation] = ACTIONS(2570), + [anon_sym_ATcompatibility_alias] = ACTIONS(2570), + [anon_sym_ATsynthesize] = ACTIONS(2570), + [anon_sym_ATdynamic] = ACTIONS(2570), + [anon_sym_ATtry] = ACTIONS(2570), + [anon_sym___try] = ACTIONS(2568), + [anon_sym_ATthrow] = ACTIONS(2570), + [anon_sym_ATselector] = ACTIONS(2570), + [anon_sym_ATavailable] = ACTIONS(2570), + [anon_sym___builtin_available] = ACTIONS(2568), + [anon_sym_va_arg] = ACTIONS(2568), + [anon_sym_ATencode] = ACTIONS(2570), + [anon_sym_ATsynchronized] = ACTIONS(2570), + [anon_sym_BOOL] = ACTIONS(2568), + [anon_sym_IMP] = ACTIONS(2568), + [anon_sym_SEL] = ACTIONS(2568), + [anon_sym_Class] = ACTIONS(2568), + [anon_sym_id] = ACTIONS(2568), + }, + [275] = { + [sym_identifier] = ACTIONS(2512), + [aux_sym_preproc_include_token1] = ACTIONS(2512), + [aux_sym_preproc_include_token2] = ACTIONS(2512), + [aux_sym_preproc_def_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token2] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2512), + [aux_sym_preproc_else_token1] = ACTIONS(2512), + [aux_sym_preproc_elif_token1] = ACTIONS(2512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2512), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2512), + [sym_preproc_directive] = ACTIONS(2512), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_TILDE] = ACTIONS(2514), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_STAR] = ACTIONS(2514), + [anon_sym_CARET] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym___extension__] = ACTIONS(2512), + [anon_sym_typedef] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym___attribute__] = ACTIONS(2512), + [anon_sym___attribute] = ACTIONS(2512), + [anon_sym_noreturn] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym___declspec] = ACTIONS(2512), + [anon_sym___cdecl] = ACTIONS(2512), + [anon_sym___clrcall] = ACTIONS(2512), + [anon_sym___stdcall] = ACTIONS(2512), + [anon_sym___fastcall] = ACTIONS(2512), + [anon_sym___thiscall] = ACTIONS(2512), + [anon_sym___vectorcall] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_signed] = ACTIONS(2512), + [anon_sym_unsigned] = ACTIONS(2512), + [anon_sym_long] = ACTIONS(2512), + [anon_sym_short] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_ATautoreleasepool] = ACTIONS(2514), + [anon_sym_auto] = ACTIONS(2512), + [anon_sym_register] = ACTIONS(2512), + [anon_sym_inline] = ACTIONS(2512), + [anon_sym___inline] = ACTIONS(2512), + [anon_sym___inline__] = ACTIONS(2512), + [anon_sym___forceinline] = ACTIONS(2512), + [anon_sym_thread_local] = ACTIONS(2512), + [anon_sym___thread] = ACTIONS(2512), + [anon_sym_CG_EXTERN] = ACTIONS(2512), + [anon_sym_CG_INLINE] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2512), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2512), + [anon_sym_IBOutlet] = ACTIONS(2512), + [anon_sym_IBInspectable] = ACTIONS(2512), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2512), + [anon_sym_NS_INLINE] = ACTIONS(2512), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2512), + [anon_sym_OBJC_EXPORT] = ACTIONS(2512), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_constexpr] = ACTIONS(2512), + [anon_sym_volatile] = ACTIONS(2512), + [anon_sym_restrict] = ACTIONS(2512), + [anon_sym___restrict__] = ACTIONS(2512), + [anon_sym__Atomic] = ACTIONS(2512), + [anon_sym__Noreturn] = ACTIONS(2512), + [anon_sym__Nonnull] = ACTIONS(2512), + [anon_sym_nullable] = ACTIONS(2512), + [anon_sym__Complex] = ACTIONS(2512), + [anon_sym__Nullable] = ACTIONS(2512), + [anon_sym__Nullable_result] = ACTIONS(2512), + [anon_sym__Null_unspecified] = ACTIONS(2512), + [anon_sym___autoreleasing] = ACTIONS(2512), + [anon_sym___block] = ACTIONS(2512), + [anon_sym___bridge] = ACTIONS(2512), + [anon_sym___bridge_retained] = ACTIONS(2512), + [anon_sym___bridge_transfer] = ACTIONS(2512), + [anon_sym___complex] = ACTIONS(2512), + [anon_sym___const] = ACTIONS(2512), + [anon_sym___imag] = ACTIONS(2512), + [anon_sym___kindof] = ACTIONS(2512), + [anon_sym___nonnull] = ACTIONS(2512), + [anon_sym___nullable] = ACTIONS(2512), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2512), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2512), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2512), + [anon_sym___real] = ACTIONS(2512), + [anon_sym___strong] = ACTIONS(2512), + [anon_sym___unsafe_unretained] = ACTIONS(2512), + [anon_sym___unused] = ACTIONS(2512), + [anon_sym___weak] = ACTIONS(2512), + [anon_sym_alignas] = ACTIONS(2512), + [anon_sym__Alignas] = ACTIONS(2512), + [sym_primitive_type] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [anon_sym_struct] = ACTIONS(2512), + [anon_sym_union] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_else] = ACTIONS(2512), + [anon_sym_switch] = ACTIONS(2512), + [anon_sym_case] = ACTIONS(2512), + [anon_sym_default] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_do] = ACTIONS(2512), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_in] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_goto] = ACTIONS(2512), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_sizeof] = ACTIONS(2512), + [anon_sym___alignof__] = ACTIONS(2512), + [anon_sym___alignof] = ACTIONS(2512), + [anon_sym__alignof] = ACTIONS(2512), + [anon_sym_alignof] = ACTIONS(2512), + [anon_sym__Alignof] = ACTIONS(2512), + [anon_sym_offsetof] = ACTIONS(2512), + [anon_sym__Generic] = ACTIONS(2512), + [anon_sym_asm] = ACTIONS(2512), + [anon_sym___asm__] = ACTIONS(2512), + [anon_sym___asm] = ACTIONS(2512), + [sym_number_literal] = ACTIONS(2514), + [anon_sym_L_SQUOTE] = ACTIONS(2514), + [anon_sym_u_SQUOTE] = ACTIONS(2514), + [anon_sym_U_SQUOTE] = ACTIONS(2514), + [anon_sym_u8_SQUOTE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_AT] = ACTIONS(2512), + [anon_sym_DQUOTE] = ACTIONS(2514), + [anon_sym_L_DQUOTE] = ACTIONS(2514), + [anon_sym_u_DQUOTE] = ACTIONS(2514), + [anon_sym_U_DQUOTE] = ACTIONS(2514), + [anon_sym_u8_DQUOTE] = ACTIONS(2514), + [sym_true] = ACTIONS(2512), + [sym_false] = ACTIONS(2512), + [anon_sym_NULL] = ACTIONS(2512), + [anon_sym_nullptr] = ACTIONS(2512), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2512), + [anon_sym___typeof] = ACTIONS(2512), + [anon_sym_typeof] = ACTIONS(2512), + [anon_sym_ATimport] = ACTIONS(2514), + [aux_sym_preproc_undef_token1] = ACTIONS(2512), + [anon_sym_POUND] = ACTIONS(2512), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2512), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2512), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2512), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2512), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE] = ACTIONS(2512), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_API_AVAILABLE] = ACTIONS(2512), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_API_DEPRECATED] = ACTIONS(2512), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2512), + [anon_sym___deprecated_msg] = ACTIONS(2512), + [anon_sym___deprecated_enum_msg] = ACTIONS(2512), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2512), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2512), + [anon_sym_ATprotocol] = ACTIONS(2514), + [anon_sym_ATinterface] = ACTIONS(2514), + [anon_sym_ATimplementation] = ACTIONS(2514), + [anon_sym_ATcompatibility_alias] = ACTIONS(2514), + [anon_sym_ATsynthesize] = ACTIONS(2514), + [anon_sym_ATdynamic] = ACTIONS(2514), + [anon_sym_ATtry] = ACTIONS(2514), + [anon_sym___try] = ACTIONS(2512), + [anon_sym_ATthrow] = ACTIONS(2514), + [anon_sym_ATselector] = ACTIONS(2514), + [anon_sym_ATavailable] = ACTIONS(2514), + [anon_sym___builtin_available] = ACTIONS(2512), + [anon_sym_va_arg] = ACTIONS(2512), + [anon_sym_ATencode] = ACTIONS(2514), + [anon_sym_ATsynchronized] = ACTIONS(2514), + [anon_sym_BOOL] = ACTIONS(2512), + [anon_sym_IMP] = ACTIONS(2512), + [anon_sym_SEL] = ACTIONS(2512), + [anon_sym_Class] = ACTIONS(2512), + [anon_sym_id] = ACTIONS(2512), + }, + [276] = { + [sym_identifier] = ACTIONS(2346), + [aux_sym_preproc_include_token1] = ACTIONS(2346), + [aux_sym_preproc_include_token2] = ACTIONS(2346), + [aux_sym_preproc_def_token1] = ACTIONS(2346), + [aux_sym_preproc_if_token1] = ACTIONS(2346), + [aux_sym_preproc_if_token2] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2346), + [sym_preproc_directive] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2346), + [anon_sym_PLUS] = ACTIONS(2346), + [anon_sym_STAR] = ACTIONS(2348), + [anon_sym_CARET] = ACTIONS(2348), + [anon_sym_AMP] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym___extension__] = ACTIONS(2346), + [anon_sym_typedef] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym___attribute__] = ACTIONS(2346), + [anon_sym___attribute] = ACTIONS(2346), + [anon_sym_noreturn] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym___declspec] = ACTIONS(2346), + [anon_sym___cdecl] = ACTIONS(2346), + [anon_sym___clrcall] = ACTIONS(2346), + [anon_sym___stdcall] = ACTIONS(2346), + [anon_sym___fastcall] = ACTIONS(2346), + [anon_sym___thiscall] = ACTIONS(2346), + [anon_sym___vectorcall] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_signed] = ACTIONS(2346), + [anon_sym_unsigned] = ACTIONS(2346), + [anon_sym_long] = ACTIONS(2346), + [anon_sym_short] = ACTIONS(2346), + [anon_sym_static] = ACTIONS(2346), + [anon_sym_ATautoreleasepool] = ACTIONS(2348), + [anon_sym_auto] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2346), + [anon_sym_inline] = ACTIONS(2346), + [anon_sym___inline] = ACTIONS(2346), + [anon_sym___inline__] = ACTIONS(2346), + [anon_sym___forceinline] = ACTIONS(2346), + [anon_sym_thread_local] = ACTIONS(2346), + [anon_sym___thread] = ACTIONS(2346), + [anon_sym_CG_EXTERN] = ACTIONS(2346), + [anon_sym_CG_INLINE] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2346), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2346), + [anon_sym_IBOutlet] = ACTIONS(2346), + [anon_sym_IBInspectable] = ACTIONS(2346), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2346), + [anon_sym_NS_INLINE] = ACTIONS(2346), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2346), + [anon_sym_OBJC_EXPORT] = ACTIONS(2346), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_constexpr] = ACTIONS(2346), + [anon_sym_volatile] = ACTIONS(2346), + [anon_sym_restrict] = ACTIONS(2346), + [anon_sym___restrict__] = ACTIONS(2346), + [anon_sym__Atomic] = ACTIONS(2346), + [anon_sym__Noreturn] = ACTIONS(2346), + [anon_sym__Nonnull] = ACTIONS(2346), + [anon_sym_nullable] = ACTIONS(2346), + [anon_sym__Complex] = ACTIONS(2346), + [anon_sym__Nullable] = ACTIONS(2346), + [anon_sym__Nullable_result] = ACTIONS(2346), + [anon_sym__Null_unspecified] = ACTIONS(2346), + [anon_sym___autoreleasing] = ACTIONS(2346), + [anon_sym___block] = ACTIONS(2346), + [anon_sym___bridge] = ACTIONS(2346), + [anon_sym___bridge_retained] = ACTIONS(2346), + [anon_sym___bridge_transfer] = ACTIONS(2346), + [anon_sym___complex] = ACTIONS(2346), + [anon_sym___const] = ACTIONS(2346), + [anon_sym___imag] = ACTIONS(2346), + [anon_sym___kindof] = ACTIONS(2346), + [anon_sym___nonnull] = ACTIONS(2346), + [anon_sym___nullable] = ACTIONS(2346), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2346), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2346), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2346), + [anon_sym___real] = ACTIONS(2346), + [anon_sym___strong] = ACTIONS(2346), + [anon_sym___unsafe_unretained] = ACTIONS(2346), + [anon_sym___unused] = ACTIONS(2346), + [anon_sym___weak] = ACTIONS(2346), + [anon_sym_alignas] = ACTIONS(2346), + [anon_sym__Alignas] = ACTIONS(2346), + [sym_primitive_type] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_switch] = ACTIONS(2346), + [anon_sym_case] = ACTIONS(2346), + [anon_sym_default] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_do] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_goto] = ACTIONS(2346), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2346), + [anon_sym__Generic] = ACTIONS(2346), + [anon_sym_asm] = ACTIONS(2346), + [anon_sym___asm__] = ACTIONS(2346), + [anon_sym___asm] = ACTIONS(2346), + [sym_number_literal] = ACTIONS(2348), + [anon_sym_L_SQUOTE] = ACTIONS(2348), + [anon_sym_u_SQUOTE] = ACTIONS(2348), + [anon_sym_U_SQUOTE] = ACTIONS(2348), + [anon_sym_u8_SQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_L_DQUOTE] = ACTIONS(2348), + [anon_sym_u_DQUOTE] = ACTIONS(2348), + [anon_sym_U_DQUOTE] = ACTIONS(2348), + [anon_sym_u8_DQUOTE] = ACTIONS(2348), + [sym_true] = ACTIONS(2346), + [sym_false] = ACTIONS(2346), + [anon_sym_NULL] = ACTIONS(2346), + [anon_sym_nullptr] = ACTIONS(2346), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2346), + [anon_sym___typeof] = ACTIONS(2346), + [anon_sym_typeof] = ACTIONS(2346), + [anon_sym_ATimport] = ACTIONS(2348), + [aux_sym_preproc_undef_token1] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(2346), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2346), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2346), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2346), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2346), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE] = ACTIONS(2346), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_API_AVAILABLE] = ACTIONS(2346), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_API_DEPRECATED] = ACTIONS(2346), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2346), + [anon_sym___deprecated_msg] = ACTIONS(2346), + [anon_sym___deprecated_enum_msg] = ACTIONS(2346), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2346), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2346), + [anon_sym_ATprotocol] = ACTIONS(2348), + [anon_sym_ATinterface] = ACTIONS(2348), + [anon_sym_ATimplementation] = ACTIONS(2348), + [anon_sym_ATcompatibility_alias] = ACTIONS(2348), + [anon_sym_ATsynthesize] = ACTIONS(2348), + [anon_sym_ATdynamic] = ACTIONS(2348), + [anon_sym_ATtry] = ACTIONS(2348), + [anon_sym___try] = ACTIONS(2346), + [anon_sym_ATcatch] = ACTIONS(2348), + [anon_sym___catch] = ACTIONS(2346), + [anon_sym_ATfinally] = ACTIONS(2348), + [anon_sym___finally] = ACTIONS(2346), + [anon_sym_ATthrow] = ACTIONS(2348), + [anon_sym_ATselector] = ACTIONS(2348), + [anon_sym_ATavailable] = ACTIONS(2348), + [anon_sym___builtin_available] = ACTIONS(2346), + [anon_sym_va_arg] = ACTIONS(2346), + [anon_sym_ATencode] = ACTIONS(2348), + [anon_sym_ATsynchronized] = ACTIONS(2348), + [anon_sym_BOOL] = ACTIONS(2346), + [anon_sym_IMP] = ACTIONS(2346), + [anon_sym_SEL] = ACTIONS(2346), + [anon_sym_Class] = ACTIONS(2346), + [anon_sym_id] = ACTIONS(2346), + }, + [277] = { + [sym_identifier] = ACTIONS(2572), + [aux_sym_preproc_include_token1] = ACTIONS(2572), + [aux_sym_preproc_include_token2] = ACTIONS(2572), + [aux_sym_preproc_def_token1] = ACTIONS(2572), + [aux_sym_preproc_if_token1] = ACTIONS(2572), + [aux_sym_preproc_if_token2] = ACTIONS(2572), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2572), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2572), + [aux_sym_preproc_else_token1] = ACTIONS(2572), + [aux_sym_preproc_elif_token1] = ACTIONS(2572), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2572), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2572), + [sym_preproc_directive] = ACTIONS(2572), + [anon_sym_LPAREN2] = ACTIONS(2574), + [anon_sym_BANG] = ACTIONS(2574), + [anon_sym_TILDE] = ACTIONS(2574), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_STAR] = ACTIONS(2574), + [anon_sym_CARET] = ACTIONS(2574), + [anon_sym_AMP] = ACTIONS(2574), + [anon_sym_SEMI] = ACTIONS(2574), + [anon_sym___extension__] = ACTIONS(2572), + [anon_sym_typedef] = ACTIONS(2572), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym___attribute__] = ACTIONS(2572), + [anon_sym___attribute] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym___declspec] = ACTIONS(2572), + [anon_sym___cdecl] = ACTIONS(2572), + [anon_sym___clrcall] = ACTIONS(2572), + [anon_sym___stdcall] = ACTIONS(2572), + [anon_sym___fastcall] = ACTIONS(2572), + [anon_sym___thiscall] = ACTIONS(2572), + [anon_sym___vectorcall] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2574), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_ATautoreleasepool] = ACTIONS(2574), + [anon_sym_auto] = ACTIONS(2572), + [anon_sym_register] = ACTIONS(2572), + [anon_sym_inline] = ACTIONS(2572), + [anon_sym___inline] = ACTIONS(2572), + [anon_sym___inline__] = ACTIONS(2572), + [anon_sym___forceinline] = ACTIONS(2572), + [anon_sym_thread_local] = ACTIONS(2572), + [anon_sym___thread] = ACTIONS(2572), + [anon_sym_CG_EXTERN] = ACTIONS(2572), + [anon_sym_CG_INLINE] = ACTIONS(2572), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2572), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2572), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2572), + [anon_sym_IBOutlet] = ACTIONS(2572), + [anon_sym_IBInspectable] = ACTIONS(2572), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2572), + [anon_sym_NS_INLINE] = ACTIONS(2572), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2572), + [anon_sym_OBJC_EXPORT] = ACTIONS(2572), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2572), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_nullable] = ACTIONS(2572), + [anon_sym__Complex] = ACTIONS(2572), + [anon_sym__Nullable] = ACTIONS(2572), + [anon_sym__Nullable_result] = ACTIONS(2572), + [anon_sym__Null_unspecified] = ACTIONS(2572), + [anon_sym___autoreleasing] = ACTIONS(2572), + [anon_sym___block] = ACTIONS(2572), + [anon_sym___bridge] = ACTIONS(2572), + [anon_sym___bridge_retained] = ACTIONS(2572), + [anon_sym___bridge_transfer] = ACTIONS(2572), + [anon_sym___complex] = ACTIONS(2572), + [anon_sym___const] = ACTIONS(2572), + [anon_sym___imag] = ACTIONS(2572), + [anon_sym___kindof] = ACTIONS(2572), + [anon_sym___nonnull] = ACTIONS(2572), + [anon_sym___nullable] = ACTIONS(2572), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2572), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2572), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2572), + [anon_sym___real] = ACTIONS(2572), + [anon_sym___strong] = ACTIONS(2572), + [anon_sym___unsafe_unretained] = ACTIONS(2572), + [anon_sym___unused] = ACTIONS(2572), + [anon_sym___weak] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(2572), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_struct] = ACTIONS(2572), + [anon_sym_union] = ACTIONS(2572), + [anon_sym_if] = ACTIONS(2572), + [anon_sym_switch] = ACTIONS(2572), + [anon_sym_case] = ACTIONS(2572), + [anon_sym_default] = ACTIONS(2572), + [anon_sym_while] = ACTIONS(2572), + [anon_sym_do] = ACTIONS(2572), + [anon_sym_for] = ACTIONS(2572), + [anon_sym_in] = ACTIONS(2572), + [anon_sym_return] = ACTIONS(2572), + [anon_sym_break] = ACTIONS(2572), + [anon_sym_continue] = ACTIONS(2572), + [anon_sym_goto] = ACTIONS(2572), + [anon_sym_DASH_DASH] = ACTIONS(2574), + [anon_sym_PLUS_PLUS] = ACTIONS(2574), + [anon_sym_sizeof] = ACTIONS(2572), + [anon_sym___alignof__] = ACTIONS(2572), + [anon_sym___alignof] = ACTIONS(2572), + [anon_sym__alignof] = ACTIONS(2572), + [anon_sym_alignof] = ACTIONS(2572), + [anon_sym__Alignof] = ACTIONS(2572), + [anon_sym_offsetof] = ACTIONS(2572), + [anon_sym__Generic] = ACTIONS(2572), + [anon_sym_asm] = ACTIONS(2572), + [anon_sym___asm__] = ACTIONS(2572), + [anon_sym___asm] = ACTIONS(2572), + [sym_number_literal] = ACTIONS(2574), + [anon_sym_L_SQUOTE] = ACTIONS(2574), + [anon_sym_u_SQUOTE] = ACTIONS(2574), + [anon_sym_U_SQUOTE] = ACTIONS(2574), + [anon_sym_u8_SQUOTE] = ACTIONS(2574), + [anon_sym_SQUOTE] = ACTIONS(2574), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_DQUOTE] = ACTIONS(2574), + [anon_sym_L_DQUOTE] = ACTIONS(2574), + [anon_sym_u_DQUOTE] = ACTIONS(2574), + [anon_sym_U_DQUOTE] = ACTIONS(2574), + [anon_sym_u8_DQUOTE] = ACTIONS(2574), + [sym_true] = ACTIONS(2572), + [sym_false] = ACTIONS(2572), + [anon_sym_NULL] = ACTIONS(2572), + [anon_sym_nullptr] = ACTIONS(2572), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2572), + [anon_sym___typeof] = ACTIONS(2572), + [anon_sym_typeof] = ACTIONS(2572), + [anon_sym_ATimport] = ACTIONS(2574), + [aux_sym_preproc_undef_token1] = ACTIONS(2572), + [anon_sym_POUND] = ACTIONS(2572), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2572), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2572), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2572), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2572), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2572), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2572), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2572), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2572), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2572), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2572), + [anon_sym_NS_AVAILABLE] = ACTIONS(2572), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2572), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2572), + [anon_sym_API_AVAILABLE] = ACTIONS(2572), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2572), + [anon_sym_API_DEPRECATED] = ACTIONS(2572), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2572), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2572), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2572), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2572), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2572), + [anon_sym___deprecated_msg] = ACTIONS(2572), + [anon_sym___deprecated_enum_msg] = ACTIONS(2572), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2572), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2572), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2572), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2572), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2572), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2572), + [anon_sym_ATprotocol] = ACTIONS(2574), + [anon_sym_ATinterface] = ACTIONS(2574), + [anon_sym_ATimplementation] = ACTIONS(2574), + [anon_sym_ATcompatibility_alias] = ACTIONS(2574), + [anon_sym_ATsynthesize] = ACTIONS(2574), + [anon_sym_ATdynamic] = ACTIONS(2574), + [anon_sym_ATtry] = ACTIONS(2574), + [anon_sym___try] = ACTIONS(2572), + [anon_sym_ATthrow] = ACTIONS(2574), + [anon_sym_ATselector] = ACTIONS(2574), + [anon_sym_ATavailable] = ACTIONS(2574), + [anon_sym___builtin_available] = ACTIONS(2572), + [anon_sym_va_arg] = ACTIONS(2572), + [anon_sym_ATencode] = ACTIONS(2574), + [anon_sym_ATsynchronized] = ACTIONS(2574), + [anon_sym_BOOL] = ACTIONS(2572), + [anon_sym_IMP] = ACTIONS(2572), + [anon_sym_SEL] = ACTIONS(2572), + [anon_sym_Class] = ACTIONS(2572), + [anon_sym_id] = ACTIONS(2572), + }, + [278] = { + [sym_identifier] = ACTIONS(2576), + [aux_sym_preproc_include_token1] = ACTIONS(2576), + [aux_sym_preproc_include_token2] = ACTIONS(2576), + [aux_sym_preproc_def_token1] = ACTIONS(2576), + [aux_sym_preproc_if_token1] = ACTIONS(2576), + [aux_sym_preproc_if_token2] = ACTIONS(2576), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2576), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2576), + [aux_sym_preproc_else_token1] = ACTIONS(2576), + [aux_sym_preproc_elif_token1] = ACTIONS(2576), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2576), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2576), + [sym_preproc_directive] = ACTIONS(2576), + [anon_sym_LPAREN2] = ACTIONS(2578), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_CARET] = ACTIONS(2578), + [anon_sym_AMP] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym___extension__] = ACTIONS(2576), + [anon_sym_typedef] = ACTIONS(2576), + [anon_sym_extern] = ACTIONS(2576), + [anon_sym___attribute__] = ACTIONS(2576), + [anon_sym___attribute] = ACTIONS(2576), + [anon_sym_noreturn] = ACTIONS(2576), + [anon_sym_LBRACK] = ACTIONS(2578), + [anon_sym___declspec] = ACTIONS(2576), + [anon_sym___cdecl] = ACTIONS(2576), + [anon_sym___clrcall] = ACTIONS(2576), + [anon_sym___stdcall] = ACTIONS(2576), + [anon_sym___fastcall] = ACTIONS(2576), + [anon_sym___thiscall] = ACTIONS(2576), + [anon_sym___vectorcall] = ACTIONS(2576), + [anon_sym_LBRACE] = ACTIONS(2578), + [anon_sym_signed] = ACTIONS(2576), + [anon_sym_unsigned] = ACTIONS(2576), + [anon_sym_long] = ACTIONS(2576), + [anon_sym_short] = ACTIONS(2576), + [anon_sym_static] = ACTIONS(2576), + [anon_sym_ATautoreleasepool] = ACTIONS(2578), + [anon_sym_auto] = ACTIONS(2576), + [anon_sym_register] = ACTIONS(2576), + [anon_sym_inline] = ACTIONS(2576), + [anon_sym___inline] = ACTIONS(2576), + [anon_sym___inline__] = ACTIONS(2576), + [anon_sym___forceinline] = ACTIONS(2576), + [anon_sym_thread_local] = ACTIONS(2576), + [anon_sym___thread] = ACTIONS(2576), + [anon_sym_CG_EXTERN] = ACTIONS(2576), + [anon_sym_CG_INLINE] = ACTIONS(2576), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2576), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2576), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2576), + [anon_sym_IBOutlet] = ACTIONS(2576), + [anon_sym_IBInspectable] = ACTIONS(2576), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2576), + [anon_sym_NS_INLINE] = ACTIONS(2576), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2576), + [anon_sym_OBJC_EXPORT] = ACTIONS(2576), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2576), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2576), + [anon_sym_const] = ACTIONS(2576), + [anon_sym_constexpr] = ACTIONS(2576), + [anon_sym_volatile] = ACTIONS(2576), + [anon_sym_restrict] = ACTIONS(2576), + [anon_sym___restrict__] = ACTIONS(2576), + [anon_sym__Atomic] = ACTIONS(2576), + [anon_sym__Noreturn] = ACTIONS(2576), + [anon_sym__Nonnull] = ACTIONS(2576), + [anon_sym_nullable] = ACTIONS(2576), + [anon_sym__Complex] = ACTIONS(2576), + [anon_sym__Nullable] = ACTIONS(2576), + [anon_sym__Nullable_result] = ACTIONS(2576), + [anon_sym__Null_unspecified] = ACTIONS(2576), + [anon_sym___autoreleasing] = ACTIONS(2576), + [anon_sym___block] = ACTIONS(2576), + [anon_sym___bridge] = ACTIONS(2576), + [anon_sym___bridge_retained] = ACTIONS(2576), + [anon_sym___bridge_transfer] = ACTIONS(2576), + [anon_sym___complex] = ACTIONS(2576), + [anon_sym___const] = ACTIONS(2576), + [anon_sym___imag] = ACTIONS(2576), + [anon_sym___kindof] = ACTIONS(2576), + [anon_sym___nonnull] = ACTIONS(2576), + [anon_sym___nullable] = ACTIONS(2576), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2576), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2576), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2576), + [anon_sym___real] = ACTIONS(2576), + [anon_sym___strong] = ACTIONS(2576), + [anon_sym___unsafe_unretained] = ACTIONS(2576), + [anon_sym___unused] = ACTIONS(2576), + [anon_sym___weak] = ACTIONS(2576), + [anon_sym_alignas] = ACTIONS(2576), + [anon_sym__Alignas] = ACTIONS(2576), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2576), + [anon_sym_struct] = ACTIONS(2576), + [anon_sym_union] = ACTIONS(2576), + [anon_sym_if] = ACTIONS(2576), + [anon_sym_switch] = ACTIONS(2576), + [anon_sym_case] = ACTIONS(2576), + [anon_sym_default] = ACTIONS(2576), + [anon_sym_while] = ACTIONS(2576), + [anon_sym_do] = ACTIONS(2576), + [anon_sym_for] = ACTIONS(2576), + [anon_sym_in] = ACTIONS(2576), + [anon_sym_return] = ACTIONS(2576), + [anon_sym_break] = ACTIONS(2576), + [anon_sym_continue] = ACTIONS(2576), + [anon_sym_goto] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(2578), + [anon_sym_PLUS_PLUS] = ACTIONS(2578), + [anon_sym_sizeof] = ACTIONS(2576), + [anon_sym___alignof__] = ACTIONS(2576), + [anon_sym___alignof] = ACTIONS(2576), + [anon_sym__alignof] = ACTIONS(2576), + [anon_sym_alignof] = ACTIONS(2576), + [anon_sym__Alignof] = ACTIONS(2576), + [anon_sym_offsetof] = ACTIONS(2576), + [anon_sym__Generic] = ACTIONS(2576), + [anon_sym_asm] = ACTIONS(2576), + [anon_sym___asm__] = ACTIONS(2576), + [anon_sym___asm] = ACTIONS(2576), + [sym_number_literal] = ACTIONS(2578), + [anon_sym_L_SQUOTE] = ACTIONS(2578), + [anon_sym_u_SQUOTE] = ACTIONS(2578), + [anon_sym_U_SQUOTE] = ACTIONS(2578), + [anon_sym_u8_SQUOTE] = ACTIONS(2578), + [anon_sym_SQUOTE] = ACTIONS(2578), + [anon_sym_AT] = ACTIONS(2576), + [anon_sym_DQUOTE] = ACTIONS(2578), + [anon_sym_L_DQUOTE] = ACTIONS(2578), + [anon_sym_u_DQUOTE] = ACTIONS(2578), + [anon_sym_U_DQUOTE] = ACTIONS(2578), + [anon_sym_u8_DQUOTE] = ACTIONS(2578), + [sym_true] = ACTIONS(2576), + [sym_false] = ACTIONS(2576), + [anon_sym_NULL] = ACTIONS(2576), + [anon_sym_nullptr] = ACTIONS(2576), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2576), + [anon_sym___typeof] = ACTIONS(2576), + [anon_sym_typeof] = ACTIONS(2576), + [anon_sym_ATimport] = ACTIONS(2578), + [aux_sym_preproc_undef_token1] = ACTIONS(2576), + [anon_sym_POUND] = ACTIONS(2576), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2576), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2576), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2576), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2576), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2576), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2576), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2576), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2576), + [anon_sym_NS_AVAILABLE] = ACTIONS(2576), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2576), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_API_AVAILABLE] = ACTIONS(2576), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_API_DEPRECATED] = ACTIONS(2576), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2576), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2576), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2576), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2576), + [anon_sym___deprecated_msg] = ACTIONS(2576), + [anon_sym___deprecated_enum_msg] = ACTIONS(2576), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2576), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2576), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2576), + [anon_sym_ATprotocol] = ACTIONS(2578), + [anon_sym_ATinterface] = ACTIONS(2578), + [anon_sym_ATimplementation] = ACTIONS(2578), + [anon_sym_ATcompatibility_alias] = ACTIONS(2578), + [anon_sym_ATsynthesize] = ACTIONS(2578), + [anon_sym_ATdynamic] = ACTIONS(2578), + [anon_sym_ATtry] = ACTIONS(2578), + [anon_sym___try] = ACTIONS(2576), + [anon_sym_ATthrow] = ACTIONS(2578), + [anon_sym_ATselector] = ACTIONS(2578), + [anon_sym_ATavailable] = ACTIONS(2578), + [anon_sym___builtin_available] = ACTIONS(2576), + [anon_sym_va_arg] = ACTIONS(2576), + [anon_sym_ATencode] = ACTIONS(2578), + [anon_sym_ATsynchronized] = ACTIONS(2578), + [anon_sym_BOOL] = ACTIONS(2576), + [anon_sym_IMP] = ACTIONS(2576), + [anon_sym_SEL] = ACTIONS(2576), + [anon_sym_Class] = ACTIONS(2576), + [anon_sym_id] = ACTIONS(2576), + }, + [279] = { + [sym_else_clause] = STATE(414), + [sym_identifier] = ACTIONS(2402), + [aux_sym_preproc_include_token1] = ACTIONS(2402), + [aux_sym_preproc_include_token2] = ACTIONS(2402), + [aux_sym_preproc_def_token1] = ACTIONS(2402), + [aux_sym_preproc_if_token1] = ACTIONS(2402), + [aux_sym_preproc_if_token2] = ACTIONS(2402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2402), + [aux_sym_preproc_else_token1] = ACTIONS(2402), + [aux_sym_preproc_elif_token1] = ACTIONS(2402), + [sym_preproc_directive] = ACTIONS(2402), + [anon_sym_LPAREN2] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_TILDE] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_PLUS] = ACTIONS(2402), + [anon_sym_STAR] = ACTIONS(2404), + [anon_sym_CARET] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym___extension__] = ACTIONS(2402), + [anon_sym_typedef] = ACTIONS(2402), + [anon_sym_extern] = ACTIONS(2402), + [anon_sym___attribute__] = ACTIONS(2402), + [anon_sym___attribute] = ACTIONS(2402), + [anon_sym_noreturn] = ACTIONS(2402), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym___declspec] = ACTIONS(2402), + [anon_sym___cdecl] = ACTIONS(2402), + [anon_sym___clrcall] = ACTIONS(2402), + [anon_sym___stdcall] = ACTIONS(2402), + [anon_sym___fastcall] = ACTIONS(2402), + [anon_sym___thiscall] = ACTIONS(2402), + [anon_sym___vectorcall] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2404), + [anon_sym_signed] = ACTIONS(2402), + [anon_sym_unsigned] = ACTIONS(2402), + [anon_sym_long] = ACTIONS(2402), + [anon_sym_short] = ACTIONS(2402), + [anon_sym_static] = ACTIONS(2402), + [anon_sym_ATautoreleasepool] = ACTIONS(2404), + [anon_sym_auto] = ACTIONS(2402), + [anon_sym_register] = ACTIONS(2402), + [anon_sym_inline] = ACTIONS(2402), + [anon_sym___inline] = ACTIONS(2402), + [anon_sym___inline__] = ACTIONS(2402), + [anon_sym___forceinline] = ACTIONS(2402), + [anon_sym_thread_local] = ACTIONS(2402), + [anon_sym___thread] = ACTIONS(2402), + [anon_sym_CG_EXTERN] = ACTIONS(2402), + [anon_sym_CG_INLINE] = ACTIONS(2402), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2402), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2402), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2402), + [anon_sym_IBOutlet] = ACTIONS(2402), + [anon_sym_IBInspectable] = ACTIONS(2402), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2402), + [anon_sym_NS_INLINE] = ACTIONS(2402), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2402), + [anon_sym_OBJC_EXPORT] = ACTIONS(2402), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2402), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2402), + [anon_sym_const] = ACTIONS(2402), + [anon_sym_constexpr] = ACTIONS(2402), + [anon_sym_volatile] = ACTIONS(2402), + [anon_sym_restrict] = ACTIONS(2402), + [anon_sym___restrict__] = ACTIONS(2402), + [anon_sym__Atomic] = ACTIONS(2402), + [anon_sym__Noreturn] = ACTIONS(2402), + [anon_sym__Nonnull] = ACTIONS(2402), + [anon_sym_nullable] = ACTIONS(2402), + [anon_sym__Complex] = ACTIONS(2402), + [anon_sym__Nullable] = ACTIONS(2402), + [anon_sym__Nullable_result] = ACTIONS(2402), + [anon_sym__Null_unspecified] = ACTIONS(2402), + [anon_sym___autoreleasing] = ACTIONS(2402), + [anon_sym___block] = ACTIONS(2402), + [anon_sym___bridge] = ACTIONS(2402), + [anon_sym___bridge_retained] = ACTIONS(2402), + [anon_sym___bridge_transfer] = ACTIONS(2402), + [anon_sym___complex] = ACTIONS(2402), + [anon_sym___const] = ACTIONS(2402), + [anon_sym___imag] = ACTIONS(2402), + [anon_sym___kindof] = ACTIONS(2402), + [anon_sym___nonnull] = ACTIONS(2402), + [anon_sym___nullable] = ACTIONS(2402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2402), + [anon_sym___real] = ACTIONS(2402), + [anon_sym___strong] = ACTIONS(2402), + [anon_sym___unsafe_unretained] = ACTIONS(2402), + [anon_sym___unused] = ACTIONS(2402), + [anon_sym___weak] = ACTIONS(2402), + [anon_sym_alignas] = ACTIONS(2402), + [anon_sym__Alignas] = ACTIONS(2402), + [sym_primitive_type] = ACTIONS(2402), + [anon_sym_enum] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(2402), + [anon_sym_union] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_else] = ACTIONS(2580), + [anon_sym_switch] = ACTIONS(2402), + [anon_sym_case] = ACTIONS(2402), + [anon_sym_default] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_in] = ACTIONS(2402), + [anon_sym_return] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_goto] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2404), + [anon_sym_sizeof] = ACTIONS(2402), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2402), + [anon_sym_asm] = ACTIONS(2402), + [anon_sym___asm__] = ACTIONS(2402), + [anon_sym___asm] = ACTIONS(2402), + [sym_number_literal] = ACTIONS(2404), + [anon_sym_L_SQUOTE] = ACTIONS(2404), + [anon_sym_u_SQUOTE] = ACTIONS(2404), + [anon_sym_U_SQUOTE] = ACTIONS(2404), + [anon_sym_u8_SQUOTE] = ACTIONS(2404), + [anon_sym_SQUOTE] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_L_DQUOTE] = ACTIONS(2404), + [anon_sym_u_DQUOTE] = ACTIONS(2404), + [anon_sym_U_DQUOTE] = ACTIONS(2404), + [anon_sym_u8_DQUOTE] = ACTIONS(2404), + [sym_true] = ACTIONS(2402), + [sym_false] = ACTIONS(2402), + [anon_sym_NULL] = ACTIONS(2402), + [anon_sym_nullptr] = ACTIONS(2402), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2402), + [anon_sym___typeof] = ACTIONS(2402), + [anon_sym_typeof] = ACTIONS(2402), + [anon_sym_ATimport] = ACTIONS(2404), + [aux_sym_preproc_undef_token1] = ACTIONS(2402), + [anon_sym_POUND] = ACTIONS(2402), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2402), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2402), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2402), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2402), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2402), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2402), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2402), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2402), + [anon_sym_NS_AVAILABLE] = ACTIONS(2402), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2402), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_API_AVAILABLE] = ACTIONS(2402), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_API_DEPRECATED] = ACTIONS(2402), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2402), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2402), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2402), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2402), + [anon_sym___deprecated_msg] = ACTIONS(2402), + [anon_sym___deprecated_enum_msg] = ACTIONS(2402), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2402), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2402), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2402), + [anon_sym_ATprotocol] = ACTIONS(2404), + [anon_sym_ATinterface] = ACTIONS(2404), + [anon_sym_ATimplementation] = ACTIONS(2404), + [anon_sym_ATcompatibility_alias] = ACTIONS(2404), + [anon_sym_ATsynthesize] = ACTIONS(2404), + [anon_sym_ATdynamic] = ACTIONS(2404), + [anon_sym_ATtry] = ACTIONS(2404), + [anon_sym___try] = ACTIONS(2402), + [anon_sym_ATthrow] = ACTIONS(2404), + [anon_sym_ATselector] = ACTIONS(2404), + [anon_sym_ATavailable] = ACTIONS(2404), + [anon_sym___builtin_available] = ACTIONS(2402), + [anon_sym_va_arg] = ACTIONS(2402), + [anon_sym_ATencode] = ACTIONS(2404), + [anon_sym_ATsynchronized] = ACTIONS(2404), + [anon_sym_BOOL] = ACTIONS(2402), + [anon_sym_IMP] = ACTIONS(2402), + [anon_sym_SEL] = ACTIONS(2402), + [anon_sym_Class] = ACTIONS(2402), + [anon_sym_id] = ACTIONS(2402), + }, + [280] = { + [sym_identifier] = ACTIONS(2582), + [aux_sym_preproc_include_token1] = ACTIONS(2582), + [aux_sym_preproc_include_token2] = ACTIONS(2582), + [aux_sym_preproc_def_token1] = ACTIONS(2582), + [aux_sym_preproc_if_token1] = ACTIONS(2582), + [aux_sym_preproc_if_token2] = ACTIONS(2582), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2582), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2582), + [aux_sym_preproc_else_token1] = ACTIONS(2582), + [aux_sym_preproc_elif_token1] = ACTIONS(2582), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2582), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2582), + [sym_preproc_directive] = ACTIONS(2582), + [anon_sym_LPAREN2] = ACTIONS(2584), + [anon_sym_BANG] = ACTIONS(2584), + [anon_sym_TILDE] = ACTIONS(2584), + [anon_sym_DASH] = ACTIONS(2582), + [anon_sym_PLUS] = ACTIONS(2582), + [anon_sym_STAR] = ACTIONS(2584), + [anon_sym_CARET] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym___extension__] = ACTIONS(2582), + [anon_sym_typedef] = ACTIONS(2582), + [anon_sym_extern] = ACTIONS(2582), + [anon_sym___attribute__] = ACTIONS(2582), + [anon_sym___attribute] = ACTIONS(2582), + [anon_sym_noreturn] = ACTIONS(2582), + [anon_sym_LBRACK] = ACTIONS(2584), + [anon_sym___declspec] = ACTIONS(2582), + [anon_sym___cdecl] = ACTIONS(2582), + [anon_sym___clrcall] = ACTIONS(2582), + [anon_sym___stdcall] = ACTIONS(2582), + [anon_sym___fastcall] = ACTIONS(2582), + [anon_sym___thiscall] = ACTIONS(2582), + [anon_sym___vectorcall] = ACTIONS(2582), + [anon_sym_LBRACE] = ACTIONS(2584), + [anon_sym_signed] = ACTIONS(2582), + [anon_sym_unsigned] = ACTIONS(2582), + [anon_sym_long] = ACTIONS(2582), + [anon_sym_short] = ACTIONS(2582), + [anon_sym_static] = ACTIONS(2582), + [anon_sym_ATautoreleasepool] = ACTIONS(2584), + [anon_sym_auto] = ACTIONS(2582), + [anon_sym_register] = ACTIONS(2582), + [anon_sym_inline] = ACTIONS(2582), + [anon_sym___inline] = ACTIONS(2582), + [anon_sym___inline__] = ACTIONS(2582), + [anon_sym___forceinline] = ACTIONS(2582), + [anon_sym_thread_local] = ACTIONS(2582), + [anon_sym___thread] = ACTIONS(2582), + [anon_sym_CG_EXTERN] = ACTIONS(2582), + [anon_sym_CG_INLINE] = ACTIONS(2582), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2582), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2582), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2582), + [anon_sym_IBOutlet] = ACTIONS(2582), + [anon_sym_IBInspectable] = ACTIONS(2582), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2582), + [anon_sym_NS_INLINE] = ACTIONS(2582), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2582), + [anon_sym_OBJC_EXPORT] = ACTIONS(2582), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2582), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2582), + [anon_sym_const] = ACTIONS(2582), + [anon_sym_constexpr] = ACTIONS(2582), + [anon_sym_volatile] = ACTIONS(2582), + [anon_sym_restrict] = ACTIONS(2582), + [anon_sym___restrict__] = ACTIONS(2582), + [anon_sym__Atomic] = ACTIONS(2582), + [anon_sym__Noreturn] = ACTIONS(2582), + [anon_sym__Nonnull] = ACTIONS(2582), + [anon_sym_nullable] = ACTIONS(2582), + [anon_sym__Complex] = ACTIONS(2582), + [anon_sym__Nullable] = ACTIONS(2582), + [anon_sym__Nullable_result] = ACTIONS(2582), + [anon_sym__Null_unspecified] = ACTIONS(2582), + [anon_sym___autoreleasing] = ACTIONS(2582), + [anon_sym___block] = ACTIONS(2582), + [anon_sym___bridge] = ACTIONS(2582), + [anon_sym___bridge_retained] = ACTIONS(2582), + [anon_sym___bridge_transfer] = ACTIONS(2582), + [anon_sym___complex] = ACTIONS(2582), + [anon_sym___const] = ACTIONS(2582), + [anon_sym___imag] = ACTIONS(2582), + [anon_sym___kindof] = ACTIONS(2582), + [anon_sym___nonnull] = ACTIONS(2582), + [anon_sym___nullable] = ACTIONS(2582), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2582), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2582), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2582), + [anon_sym___real] = ACTIONS(2582), + [anon_sym___strong] = ACTIONS(2582), + [anon_sym___unsafe_unretained] = ACTIONS(2582), + [anon_sym___unused] = ACTIONS(2582), + [anon_sym___weak] = ACTIONS(2582), + [anon_sym_alignas] = ACTIONS(2582), + [anon_sym__Alignas] = ACTIONS(2582), + [sym_primitive_type] = ACTIONS(2582), + [anon_sym_enum] = ACTIONS(2582), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2582), + [anon_sym_if] = ACTIONS(2582), + [anon_sym_switch] = ACTIONS(2582), + [anon_sym_case] = ACTIONS(2582), + [anon_sym_default] = ACTIONS(2582), + [anon_sym_while] = ACTIONS(2582), + [anon_sym_do] = ACTIONS(2582), + [anon_sym_for] = ACTIONS(2582), + [anon_sym_in] = ACTIONS(2582), + [anon_sym_return] = ACTIONS(2582), + [anon_sym_break] = ACTIONS(2582), + [anon_sym_continue] = ACTIONS(2582), + [anon_sym_goto] = ACTIONS(2582), + [anon_sym_DASH_DASH] = ACTIONS(2584), + [anon_sym_PLUS_PLUS] = ACTIONS(2584), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2582), + [anon_sym___alignof] = ACTIONS(2582), + [anon_sym__alignof] = ACTIONS(2582), + [anon_sym_alignof] = ACTIONS(2582), + [anon_sym__Alignof] = ACTIONS(2582), + [anon_sym_offsetof] = ACTIONS(2582), + [anon_sym__Generic] = ACTIONS(2582), + [anon_sym_asm] = ACTIONS(2582), + [anon_sym___asm__] = ACTIONS(2582), + [anon_sym___asm] = ACTIONS(2582), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2584), + [anon_sym_u_SQUOTE] = ACTIONS(2584), + [anon_sym_U_SQUOTE] = ACTIONS(2584), + [anon_sym_u8_SQUOTE] = ACTIONS(2584), + [anon_sym_SQUOTE] = ACTIONS(2584), + [anon_sym_AT] = ACTIONS(2582), + [anon_sym_DQUOTE] = ACTIONS(2584), + [anon_sym_L_DQUOTE] = ACTIONS(2584), + [anon_sym_u_DQUOTE] = ACTIONS(2584), + [anon_sym_U_DQUOTE] = ACTIONS(2584), + [anon_sym_u8_DQUOTE] = ACTIONS(2584), + [sym_true] = ACTIONS(2582), + [sym_false] = ACTIONS(2582), + [anon_sym_NULL] = ACTIONS(2582), + [anon_sym_nullptr] = ACTIONS(2582), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2582), + [anon_sym___typeof] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(2582), + [anon_sym_ATimport] = ACTIONS(2584), + [aux_sym_preproc_undef_token1] = ACTIONS(2582), + [anon_sym_POUND] = ACTIONS(2582), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2582), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2582), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2582), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2582), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2582), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2582), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2582), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2582), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2582), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2582), + [anon_sym_NS_AVAILABLE] = ACTIONS(2582), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2582), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2582), + [anon_sym_API_AVAILABLE] = ACTIONS(2582), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2582), + [anon_sym_API_DEPRECATED] = ACTIONS(2582), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2582), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2582), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2582), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2582), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2582), + [anon_sym___deprecated_msg] = ACTIONS(2582), + [anon_sym___deprecated_enum_msg] = ACTIONS(2582), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2582), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2582), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2582), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2582), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2582), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2582), + [anon_sym_ATprotocol] = ACTIONS(2584), + [anon_sym_ATinterface] = ACTIONS(2584), + [anon_sym_ATimplementation] = ACTIONS(2584), + [anon_sym_ATcompatibility_alias] = ACTIONS(2584), + [anon_sym_ATsynthesize] = ACTIONS(2584), + [anon_sym_ATdynamic] = ACTIONS(2584), + [anon_sym_ATtry] = ACTIONS(2584), + [anon_sym___try] = ACTIONS(2582), + [anon_sym_ATthrow] = ACTIONS(2584), + [anon_sym_ATselector] = ACTIONS(2584), + [anon_sym_ATavailable] = ACTIONS(2584), + [anon_sym___builtin_available] = ACTIONS(2582), + [anon_sym_va_arg] = ACTIONS(2582), + [anon_sym_ATencode] = ACTIONS(2584), + [anon_sym_ATsynchronized] = ACTIONS(2584), + [anon_sym_BOOL] = ACTIONS(2582), + [anon_sym_IMP] = ACTIONS(2582), + [anon_sym_SEL] = ACTIONS(2582), + [anon_sym_Class] = ACTIONS(2582), + [anon_sym_id] = ACTIONS(2582), + }, + [281] = { + [sym_identifier] = ACTIONS(2586), + [aux_sym_preproc_include_token1] = ACTIONS(2586), + [aux_sym_preproc_include_token2] = ACTIONS(2586), + [aux_sym_preproc_def_token1] = ACTIONS(2586), + [aux_sym_preproc_if_token1] = ACTIONS(2586), + [aux_sym_preproc_if_token2] = ACTIONS(2586), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2586), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2586), + [aux_sym_preproc_else_token1] = ACTIONS(2586), + [aux_sym_preproc_elif_token1] = ACTIONS(2586), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2586), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2586), + [sym_preproc_directive] = ACTIONS(2586), + [anon_sym_LPAREN2] = ACTIONS(2588), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2588), + [anon_sym_DASH] = ACTIONS(2586), + [anon_sym_PLUS] = ACTIONS(2586), + [anon_sym_STAR] = ACTIONS(2588), + [anon_sym_CARET] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2588), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym___extension__] = ACTIONS(2586), + [anon_sym_typedef] = ACTIONS(2586), + [anon_sym_extern] = ACTIONS(2586), + [anon_sym___attribute__] = ACTIONS(2586), + [anon_sym___attribute] = ACTIONS(2586), + [anon_sym_noreturn] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(2588), + [anon_sym___declspec] = ACTIONS(2586), + [anon_sym___cdecl] = ACTIONS(2586), + [anon_sym___clrcall] = ACTIONS(2586), + [anon_sym___stdcall] = ACTIONS(2586), + [anon_sym___fastcall] = ACTIONS(2586), + [anon_sym___thiscall] = ACTIONS(2586), + [anon_sym___vectorcall] = ACTIONS(2586), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_signed] = ACTIONS(2586), + [anon_sym_unsigned] = ACTIONS(2586), + [anon_sym_long] = ACTIONS(2586), + [anon_sym_short] = ACTIONS(2586), + [anon_sym_static] = ACTIONS(2586), + [anon_sym_ATautoreleasepool] = ACTIONS(2588), + [anon_sym_auto] = ACTIONS(2586), + [anon_sym_register] = ACTIONS(2586), + [anon_sym_inline] = ACTIONS(2586), + [anon_sym___inline] = ACTIONS(2586), + [anon_sym___inline__] = ACTIONS(2586), + [anon_sym___forceinline] = ACTIONS(2586), + [anon_sym_thread_local] = ACTIONS(2586), + [anon_sym___thread] = ACTIONS(2586), + [anon_sym_CG_EXTERN] = ACTIONS(2586), + [anon_sym_CG_INLINE] = ACTIONS(2586), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2586), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2586), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2586), + [anon_sym_IBOutlet] = ACTIONS(2586), + [anon_sym_IBInspectable] = ACTIONS(2586), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2586), + [anon_sym_NS_INLINE] = ACTIONS(2586), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2586), + [anon_sym_OBJC_EXPORT] = ACTIONS(2586), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2586), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2586), + [anon_sym_const] = ACTIONS(2586), + [anon_sym_constexpr] = ACTIONS(2586), + [anon_sym_volatile] = ACTIONS(2586), + [anon_sym_restrict] = ACTIONS(2586), + [anon_sym___restrict__] = ACTIONS(2586), + [anon_sym__Atomic] = ACTIONS(2586), + [anon_sym__Noreturn] = ACTIONS(2586), + [anon_sym__Nonnull] = ACTIONS(2586), + [anon_sym_nullable] = ACTIONS(2586), + [anon_sym__Complex] = ACTIONS(2586), + [anon_sym__Nullable] = ACTIONS(2586), + [anon_sym__Nullable_result] = ACTIONS(2586), + [anon_sym__Null_unspecified] = ACTIONS(2586), + [anon_sym___autoreleasing] = ACTIONS(2586), + [anon_sym___block] = ACTIONS(2586), + [anon_sym___bridge] = ACTIONS(2586), + [anon_sym___bridge_retained] = ACTIONS(2586), + [anon_sym___bridge_transfer] = ACTIONS(2586), + [anon_sym___complex] = ACTIONS(2586), + [anon_sym___const] = ACTIONS(2586), + [anon_sym___imag] = ACTIONS(2586), + [anon_sym___kindof] = ACTIONS(2586), + [anon_sym___nonnull] = ACTIONS(2586), + [anon_sym___nullable] = ACTIONS(2586), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2586), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2586), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2586), + [anon_sym___real] = ACTIONS(2586), + [anon_sym___strong] = ACTIONS(2586), + [anon_sym___unsafe_unretained] = ACTIONS(2586), + [anon_sym___unused] = ACTIONS(2586), + [anon_sym___weak] = ACTIONS(2586), + [anon_sym_alignas] = ACTIONS(2586), + [anon_sym__Alignas] = ACTIONS(2586), + [sym_primitive_type] = ACTIONS(2586), + [anon_sym_enum] = ACTIONS(2586), + [anon_sym_struct] = ACTIONS(2586), + [anon_sym_union] = ACTIONS(2586), + [anon_sym_if] = ACTIONS(2586), + [anon_sym_switch] = ACTIONS(2586), + [anon_sym_case] = ACTIONS(2586), + [anon_sym_default] = ACTIONS(2586), + [anon_sym_while] = ACTIONS(2586), + [anon_sym_do] = ACTIONS(2586), + [anon_sym_for] = ACTIONS(2586), + [anon_sym_in] = ACTIONS(2586), + [anon_sym_return] = ACTIONS(2586), + [anon_sym_break] = ACTIONS(2586), + [anon_sym_continue] = ACTIONS(2586), + [anon_sym_goto] = ACTIONS(2586), + [anon_sym_DASH_DASH] = ACTIONS(2588), + [anon_sym_PLUS_PLUS] = ACTIONS(2588), + [anon_sym_sizeof] = ACTIONS(2586), + [anon_sym___alignof__] = ACTIONS(2586), + [anon_sym___alignof] = ACTIONS(2586), + [anon_sym__alignof] = ACTIONS(2586), + [anon_sym_alignof] = ACTIONS(2586), + [anon_sym__Alignof] = ACTIONS(2586), + [anon_sym_offsetof] = ACTIONS(2586), + [anon_sym__Generic] = ACTIONS(2586), + [anon_sym_asm] = ACTIONS(2586), + [anon_sym___asm__] = ACTIONS(2586), + [anon_sym___asm] = ACTIONS(2586), + [sym_number_literal] = ACTIONS(2588), + [anon_sym_L_SQUOTE] = ACTIONS(2588), + [anon_sym_u_SQUOTE] = ACTIONS(2588), + [anon_sym_U_SQUOTE] = ACTIONS(2588), + [anon_sym_u8_SQUOTE] = ACTIONS(2588), + [anon_sym_SQUOTE] = ACTIONS(2588), + [anon_sym_AT] = ACTIONS(2586), + [anon_sym_DQUOTE] = ACTIONS(2588), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2586), + [sym_false] = ACTIONS(2586), + [anon_sym_NULL] = ACTIONS(2586), + [anon_sym_nullptr] = ACTIONS(2586), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2586), + [anon_sym___typeof] = ACTIONS(2586), + [anon_sym_typeof] = ACTIONS(2586), + [anon_sym_ATimport] = ACTIONS(2588), + [aux_sym_preproc_undef_token1] = ACTIONS(2586), + [anon_sym_POUND] = ACTIONS(2586), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2586), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2586), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2586), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2586), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2586), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2586), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2586), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2586), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2586), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2586), + [anon_sym_NS_AVAILABLE] = ACTIONS(2586), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2586), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2586), + [anon_sym_API_AVAILABLE] = ACTIONS(2586), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2586), + [anon_sym_API_DEPRECATED] = ACTIONS(2586), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2586), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2586), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2586), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2586), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2586), + [anon_sym___deprecated_msg] = ACTIONS(2586), + [anon_sym___deprecated_enum_msg] = ACTIONS(2586), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2586), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2586), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2586), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2586), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2586), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2586), + [anon_sym_ATprotocol] = ACTIONS(2588), + [anon_sym_ATinterface] = ACTIONS(2588), + [anon_sym_ATimplementation] = ACTIONS(2588), + [anon_sym_ATcompatibility_alias] = ACTIONS(2588), + [anon_sym_ATsynthesize] = ACTIONS(2588), + [anon_sym_ATdynamic] = ACTIONS(2588), + [anon_sym_ATtry] = ACTIONS(2588), + [anon_sym___try] = ACTIONS(2586), + [anon_sym_ATthrow] = ACTIONS(2588), + [anon_sym_ATselector] = ACTIONS(2588), + [anon_sym_ATavailable] = ACTIONS(2588), + [anon_sym___builtin_available] = ACTIONS(2586), + [anon_sym_va_arg] = ACTIONS(2586), + [anon_sym_ATencode] = ACTIONS(2588), + [anon_sym_ATsynchronized] = ACTIONS(2588), + [anon_sym_BOOL] = ACTIONS(2586), + [anon_sym_IMP] = ACTIONS(2586), + [anon_sym_SEL] = ACTIONS(2586), + [anon_sym_Class] = ACTIONS(2586), + [anon_sym_id] = ACTIONS(2586), + }, + [282] = { + [sym_identifier] = ACTIONS(2590), + [aux_sym_preproc_include_token1] = ACTIONS(2590), + [aux_sym_preproc_include_token2] = ACTIONS(2590), + [aux_sym_preproc_def_token1] = ACTIONS(2590), + [aux_sym_preproc_if_token1] = ACTIONS(2590), + [aux_sym_preproc_if_token2] = ACTIONS(2590), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2590), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2590), + [aux_sym_preproc_else_token1] = ACTIONS(2590), + [aux_sym_preproc_elif_token1] = ACTIONS(2590), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2590), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2590), + [sym_preproc_directive] = ACTIONS(2590), + [anon_sym_LPAREN2] = ACTIONS(2592), + [anon_sym_BANG] = ACTIONS(2592), + [anon_sym_TILDE] = ACTIONS(2592), + [anon_sym_DASH] = ACTIONS(2590), + [anon_sym_PLUS] = ACTIONS(2590), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_CARET] = ACTIONS(2592), + [anon_sym_AMP] = ACTIONS(2592), + [anon_sym_SEMI] = ACTIONS(2592), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_typedef] = ACTIONS(2590), + [anon_sym_extern] = ACTIONS(2590), + [anon_sym___attribute__] = ACTIONS(2590), + [anon_sym___attribute] = ACTIONS(2590), + [anon_sym_noreturn] = ACTIONS(2590), + [anon_sym_LBRACK] = ACTIONS(2592), + [anon_sym___declspec] = ACTIONS(2590), + [anon_sym___cdecl] = ACTIONS(2590), + [anon_sym___clrcall] = ACTIONS(2590), + [anon_sym___stdcall] = ACTIONS(2590), + [anon_sym___fastcall] = ACTIONS(2590), + [anon_sym___thiscall] = ACTIONS(2590), + [anon_sym___vectorcall] = ACTIONS(2590), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_signed] = ACTIONS(2590), + [anon_sym_unsigned] = ACTIONS(2590), + [anon_sym_long] = ACTIONS(2590), + [anon_sym_short] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(2590), + [anon_sym_ATautoreleasepool] = ACTIONS(2592), + [anon_sym_auto] = ACTIONS(2590), + [anon_sym_register] = ACTIONS(2590), + [anon_sym_inline] = ACTIONS(2590), + [anon_sym___inline] = ACTIONS(2590), + [anon_sym___inline__] = ACTIONS(2590), + [anon_sym___forceinline] = ACTIONS(2590), + [anon_sym_thread_local] = ACTIONS(2590), + [anon_sym___thread] = ACTIONS(2590), + [anon_sym_CG_EXTERN] = ACTIONS(2590), + [anon_sym_CG_INLINE] = ACTIONS(2590), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2590), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2590), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2590), + [anon_sym_IBOutlet] = ACTIONS(2590), + [anon_sym_IBInspectable] = ACTIONS(2590), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2590), + [anon_sym_NS_INLINE] = ACTIONS(2590), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2590), + [anon_sym_OBJC_EXPORT] = ACTIONS(2590), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2590), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2590), + [anon_sym_const] = ACTIONS(2590), + [anon_sym_constexpr] = ACTIONS(2590), + [anon_sym_volatile] = ACTIONS(2590), + [anon_sym_restrict] = ACTIONS(2590), + [anon_sym___restrict__] = ACTIONS(2590), + [anon_sym__Atomic] = ACTIONS(2590), + [anon_sym__Noreturn] = ACTIONS(2590), + [anon_sym__Nonnull] = ACTIONS(2590), + [anon_sym_nullable] = ACTIONS(2590), + [anon_sym__Complex] = ACTIONS(2590), + [anon_sym__Nullable] = ACTIONS(2590), + [anon_sym__Nullable_result] = ACTIONS(2590), + [anon_sym__Null_unspecified] = ACTIONS(2590), + [anon_sym___autoreleasing] = ACTIONS(2590), + [anon_sym___block] = ACTIONS(2590), + [anon_sym___bridge] = ACTIONS(2590), + [anon_sym___bridge_retained] = ACTIONS(2590), + [anon_sym___bridge_transfer] = ACTIONS(2590), + [anon_sym___complex] = ACTIONS(2590), + [anon_sym___const] = ACTIONS(2590), + [anon_sym___imag] = ACTIONS(2590), + [anon_sym___kindof] = ACTIONS(2590), + [anon_sym___nonnull] = ACTIONS(2590), + [anon_sym___nullable] = ACTIONS(2590), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2590), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2590), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2590), + [anon_sym___real] = ACTIONS(2590), + [anon_sym___strong] = ACTIONS(2590), + [anon_sym___unsafe_unretained] = ACTIONS(2590), + [anon_sym___unused] = ACTIONS(2590), + [anon_sym___weak] = ACTIONS(2590), + [anon_sym_alignas] = ACTIONS(2590), + [anon_sym__Alignas] = ACTIONS(2590), + [sym_primitive_type] = ACTIONS(2590), + [anon_sym_enum] = ACTIONS(2590), + [anon_sym_struct] = ACTIONS(2590), + [anon_sym_union] = ACTIONS(2590), + [anon_sym_if] = ACTIONS(2590), + [anon_sym_switch] = ACTIONS(2590), + [anon_sym_case] = ACTIONS(2590), + [anon_sym_default] = ACTIONS(2590), + [anon_sym_while] = ACTIONS(2590), + [anon_sym_do] = ACTIONS(2590), + [anon_sym_for] = ACTIONS(2590), + [anon_sym_in] = ACTIONS(2590), + [anon_sym_return] = ACTIONS(2590), + [anon_sym_break] = ACTIONS(2590), + [anon_sym_continue] = ACTIONS(2590), + [anon_sym_goto] = ACTIONS(2590), + [anon_sym_DASH_DASH] = ACTIONS(2592), + [anon_sym_PLUS_PLUS] = ACTIONS(2592), + [anon_sym_sizeof] = ACTIONS(2590), + [anon_sym___alignof__] = ACTIONS(2590), + [anon_sym___alignof] = ACTIONS(2590), + [anon_sym__alignof] = ACTIONS(2590), + [anon_sym_alignof] = ACTIONS(2590), + [anon_sym__Alignof] = ACTIONS(2590), + [anon_sym_offsetof] = ACTIONS(2590), + [anon_sym__Generic] = ACTIONS(2590), + [anon_sym_asm] = ACTIONS(2590), + [anon_sym___asm__] = ACTIONS(2590), + [anon_sym___asm] = ACTIONS(2590), + [sym_number_literal] = ACTIONS(2592), + [anon_sym_L_SQUOTE] = ACTIONS(2592), + [anon_sym_u_SQUOTE] = ACTIONS(2592), + [anon_sym_U_SQUOTE] = ACTIONS(2592), + [anon_sym_u8_SQUOTE] = ACTIONS(2592), + [anon_sym_SQUOTE] = ACTIONS(2592), + [anon_sym_AT] = ACTIONS(2590), + [anon_sym_DQUOTE] = ACTIONS(2592), + [anon_sym_L_DQUOTE] = ACTIONS(2592), + [anon_sym_u_DQUOTE] = ACTIONS(2592), + [anon_sym_U_DQUOTE] = ACTIONS(2592), + [anon_sym_u8_DQUOTE] = ACTIONS(2592), + [sym_true] = ACTIONS(2590), + [sym_false] = ACTIONS(2590), + [anon_sym_NULL] = ACTIONS(2590), + [anon_sym_nullptr] = ACTIONS(2590), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2590), + [anon_sym___typeof] = ACTIONS(2590), + [anon_sym_typeof] = ACTIONS(2590), + [anon_sym_ATimport] = ACTIONS(2592), + [aux_sym_preproc_undef_token1] = ACTIONS(2590), + [anon_sym_POUND] = ACTIONS(2590), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2590), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2590), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2590), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2590), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2590), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2590), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2590), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2590), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2590), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2590), + [anon_sym_NS_AVAILABLE] = ACTIONS(2590), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2590), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2590), + [anon_sym_API_AVAILABLE] = ACTIONS(2590), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2590), + [anon_sym_API_DEPRECATED] = ACTIONS(2590), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2590), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2590), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2590), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2590), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2590), + [anon_sym___deprecated_msg] = ACTIONS(2590), + [anon_sym___deprecated_enum_msg] = ACTIONS(2590), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2590), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2590), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2590), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2590), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2590), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2590), + [anon_sym_ATprotocol] = ACTIONS(2592), + [anon_sym_ATinterface] = ACTIONS(2592), + [anon_sym_ATimplementation] = ACTIONS(2592), + [anon_sym_ATcompatibility_alias] = ACTIONS(2592), + [anon_sym_ATsynthesize] = ACTIONS(2592), + [anon_sym_ATdynamic] = ACTIONS(2592), + [anon_sym_ATtry] = ACTIONS(2592), + [anon_sym___try] = ACTIONS(2590), + [anon_sym_ATthrow] = ACTIONS(2592), + [anon_sym_ATselector] = ACTIONS(2592), + [anon_sym_ATavailable] = ACTIONS(2592), + [anon_sym___builtin_available] = ACTIONS(2590), + [anon_sym_va_arg] = ACTIONS(2590), + [anon_sym_ATencode] = ACTIONS(2592), + [anon_sym_ATsynchronized] = ACTIONS(2592), + [anon_sym_BOOL] = ACTIONS(2590), + [anon_sym_IMP] = ACTIONS(2590), + [anon_sym_SEL] = ACTIONS(2590), + [anon_sym_Class] = ACTIONS(2590), + [anon_sym_id] = ACTIONS(2590), + }, + [283] = { + [sym_identifier] = ACTIONS(2594), + [aux_sym_preproc_include_token1] = ACTIONS(2594), + [aux_sym_preproc_include_token2] = ACTIONS(2594), + [aux_sym_preproc_def_token1] = ACTIONS(2594), + [aux_sym_preproc_if_token1] = ACTIONS(2594), + [aux_sym_preproc_if_token2] = ACTIONS(2594), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2594), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2594), + [aux_sym_preproc_else_token1] = ACTIONS(2594), + [aux_sym_preproc_elif_token1] = ACTIONS(2594), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2594), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2594), + [sym_preproc_directive] = ACTIONS(2594), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_BANG] = ACTIONS(2596), + [anon_sym_TILDE] = ACTIONS(2596), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_CARET] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2596), + [anon_sym_SEMI] = ACTIONS(2596), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_typedef] = ACTIONS(2594), + [anon_sym_extern] = ACTIONS(2594), + [anon_sym___attribute__] = ACTIONS(2594), + [anon_sym___attribute] = ACTIONS(2594), + [anon_sym_noreturn] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2596), + [anon_sym___declspec] = ACTIONS(2594), + [anon_sym___cdecl] = ACTIONS(2594), + [anon_sym___clrcall] = ACTIONS(2594), + [anon_sym___stdcall] = ACTIONS(2594), + [anon_sym___fastcall] = ACTIONS(2594), + [anon_sym___thiscall] = ACTIONS(2594), + [anon_sym___vectorcall] = ACTIONS(2594), + [anon_sym_LBRACE] = ACTIONS(2596), + [anon_sym_signed] = ACTIONS(2594), + [anon_sym_unsigned] = ACTIONS(2594), + [anon_sym_long] = ACTIONS(2594), + [anon_sym_short] = ACTIONS(2594), + [anon_sym_static] = ACTIONS(2594), + [anon_sym_ATautoreleasepool] = ACTIONS(2596), + [anon_sym_auto] = ACTIONS(2594), + [anon_sym_register] = ACTIONS(2594), + [anon_sym_inline] = ACTIONS(2594), + [anon_sym___inline] = ACTIONS(2594), + [anon_sym___inline__] = ACTIONS(2594), + [anon_sym___forceinline] = ACTIONS(2594), + [anon_sym_thread_local] = ACTIONS(2594), + [anon_sym___thread] = ACTIONS(2594), + [anon_sym_CG_EXTERN] = ACTIONS(2594), + [anon_sym_CG_INLINE] = ACTIONS(2594), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2594), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2594), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2594), + [anon_sym_IBOutlet] = ACTIONS(2594), + [anon_sym_IBInspectable] = ACTIONS(2594), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2594), + [anon_sym_NS_INLINE] = ACTIONS(2594), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2594), + [anon_sym_OBJC_EXPORT] = ACTIONS(2594), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2594), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2594), + [anon_sym_const] = ACTIONS(2594), + [anon_sym_constexpr] = ACTIONS(2594), + [anon_sym_volatile] = ACTIONS(2594), + [anon_sym_restrict] = ACTIONS(2594), + [anon_sym___restrict__] = ACTIONS(2594), + [anon_sym__Atomic] = ACTIONS(2594), + [anon_sym__Noreturn] = ACTIONS(2594), + [anon_sym__Nonnull] = ACTIONS(2594), + [anon_sym_nullable] = ACTIONS(2594), + [anon_sym__Complex] = ACTIONS(2594), + [anon_sym__Nullable] = ACTIONS(2594), + [anon_sym__Nullable_result] = ACTIONS(2594), + [anon_sym__Null_unspecified] = ACTIONS(2594), + [anon_sym___autoreleasing] = ACTIONS(2594), + [anon_sym___block] = ACTIONS(2594), + [anon_sym___bridge] = ACTIONS(2594), + [anon_sym___bridge_retained] = ACTIONS(2594), + [anon_sym___bridge_transfer] = ACTIONS(2594), + [anon_sym___complex] = ACTIONS(2594), + [anon_sym___const] = ACTIONS(2594), + [anon_sym___imag] = ACTIONS(2594), + [anon_sym___kindof] = ACTIONS(2594), + [anon_sym___nonnull] = ACTIONS(2594), + [anon_sym___nullable] = ACTIONS(2594), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2594), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2594), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2594), + [anon_sym___real] = ACTIONS(2594), + [anon_sym___strong] = ACTIONS(2594), + [anon_sym___unsafe_unretained] = ACTIONS(2594), + [anon_sym___unused] = ACTIONS(2594), + [anon_sym___weak] = ACTIONS(2594), + [anon_sym_alignas] = ACTIONS(2594), + [anon_sym__Alignas] = ACTIONS(2594), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_enum] = ACTIONS(2594), + [anon_sym_struct] = ACTIONS(2594), + [anon_sym_union] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_switch] = ACTIONS(2594), + [anon_sym_case] = ACTIONS(2594), + [anon_sym_default] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_in] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_break] = ACTIONS(2594), + [anon_sym_continue] = ACTIONS(2594), + [anon_sym_goto] = ACTIONS(2594), + [anon_sym_DASH_DASH] = ACTIONS(2596), + [anon_sym_PLUS_PLUS] = ACTIONS(2596), + [anon_sym_sizeof] = ACTIONS(2594), + [anon_sym___alignof__] = ACTIONS(2594), + [anon_sym___alignof] = ACTIONS(2594), + [anon_sym__alignof] = ACTIONS(2594), + [anon_sym_alignof] = ACTIONS(2594), + [anon_sym__Alignof] = ACTIONS(2594), + [anon_sym_offsetof] = ACTIONS(2594), + [anon_sym__Generic] = ACTIONS(2594), + [anon_sym_asm] = ACTIONS(2594), + [anon_sym___asm__] = ACTIONS(2594), + [anon_sym___asm] = ACTIONS(2594), + [sym_number_literal] = ACTIONS(2596), + [anon_sym_L_SQUOTE] = ACTIONS(2596), + [anon_sym_u_SQUOTE] = ACTIONS(2596), + [anon_sym_U_SQUOTE] = ACTIONS(2596), + [anon_sym_u8_SQUOTE] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_AT] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2596), + [anon_sym_L_DQUOTE] = ACTIONS(2596), + [anon_sym_u_DQUOTE] = ACTIONS(2596), + [anon_sym_U_DQUOTE] = ACTIONS(2596), + [anon_sym_u8_DQUOTE] = ACTIONS(2596), + [sym_true] = ACTIONS(2594), + [sym_false] = ACTIONS(2594), + [anon_sym_NULL] = ACTIONS(2594), + [anon_sym_nullptr] = ACTIONS(2594), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2594), + [anon_sym___typeof] = ACTIONS(2594), + [anon_sym_typeof] = ACTIONS(2594), + [anon_sym_ATimport] = ACTIONS(2596), + [aux_sym_preproc_undef_token1] = ACTIONS(2594), + [anon_sym_POUND] = ACTIONS(2594), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2594), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2594), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2594), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2594), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2594), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2594), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2594), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2594), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2594), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2594), + [anon_sym_NS_AVAILABLE] = ACTIONS(2594), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2594), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2594), + [anon_sym_API_AVAILABLE] = ACTIONS(2594), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2594), + [anon_sym_API_DEPRECATED] = ACTIONS(2594), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2594), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2594), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2594), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2594), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2594), + [anon_sym___deprecated_msg] = ACTIONS(2594), + [anon_sym___deprecated_enum_msg] = ACTIONS(2594), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2594), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2594), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2594), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2594), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2594), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2594), + [anon_sym_ATprotocol] = ACTIONS(2596), + [anon_sym_ATinterface] = ACTIONS(2596), + [anon_sym_ATimplementation] = ACTIONS(2596), + [anon_sym_ATcompatibility_alias] = ACTIONS(2596), + [anon_sym_ATsynthesize] = ACTIONS(2596), + [anon_sym_ATdynamic] = ACTIONS(2596), + [anon_sym_ATtry] = ACTIONS(2596), + [anon_sym___try] = ACTIONS(2594), + [anon_sym_ATthrow] = ACTIONS(2596), + [anon_sym_ATselector] = ACTIONS(2596), + [anon_sym_ATavailable] = ACTIONS(2596), + [anon_sym___builtin_available] = ACTIONS(2594), + [anon_sym_va_arg] = ACTIONS(2594), + [anon_sym_ATencode] = ACTIONS(2596), + [anon_sym_ATsynchronized] = ACTIONS(2596), + [anon_sym_BOOL] = ACTIONS(2594), + [anon_sym_IMP] = ACTIONS(2594), + [anon_sym_SEL] = ACTIONS(2594), + [anon_sym_Class] = ACTIONS(2594), + [anon_sym_id] = ACTIONS(2594), + }, + [284] = { + [sym_identifier] = ACTIONS(2598), + [aux_sym_preproc_include_token1] = ACTIONS(2598), + [aux_sym_preproc_include_token2] = ACTIONS(2598), + [aux_sym_preproc_def_token1] = ACTIONS(2598), + [aux_sym_preproc_if_token1] = ACTIONS(2598), + [aux_sym_preproc_if_token2] = ACTIONS(2598), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2598), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2598), + [aux_sym_preproc_else_token1] = ACTIONS(2598), + [aux_sym_preproc_elif_token1] = ACTIONS(2598), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2598), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2598), + [sym_preproc_directive] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(2600), + [anon_sym_BANG] = ACTIONS(2600), + [anon_sym_TILDE] = ACTIONS(2600), + [anon_sym_DASH] = ACTIONS(2598), + [anon_sym_PLUS] = ACTIONS(2598), + [anon_sym_STAR] = ACTIONS(2600), + [anon_sym_CARET] = ACTIONS(2600), + [anon_sym_AMP] = ACTIONS(2600), + [anon_sym_SEMI] = ACTIONS(2600), + [anon_sym___extension__] = ACTIONS(2598), + [anon_sym_typedef] = ACTIONS(2598), + [anon_sym_extern] = ACTIONS(2598), + [anon_sym___attribute__] = ACTIONS(2598), + [anon_sym___attribute] = ACTIONS(2598), + [anon_sym_noreturn] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(2600), + [anon_sym___declspec] = ACTIONS(2598), + [anon_sym___cdecl] = ACTIONS(2598), + [anon_sym___clrcall] = ACTIONS(2598), + [anon_sym___stdcall] = ACTIONS(2598), + [anon_sym___fastcall] = ACTIONS(2598), + [anon_sym___thiscall] = ACTIONS(2598), + [anon_sym___vectorcall] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_signed] = ACTIONS(2598), + [anon_sym_unsigned] = ACTIONS(2598), + [anon_sym_long] = ACTIONS(2598), + [anon_sym_short] = ACTIONS(2598), + [anon_sym_static] = ACTIONS(2598), + [anon_sym_ATautoreleasepool] = ACTIONS(2600), + [anon_sym_auto] = ACTIONS(2598), + [anon_sym_register] = ACTIONS(2598), + [anon_sym_inline] = ACTIONS(2598), + [anon_sym___inline] = ACTIONS(2598), + [anon_sym___inline__] = ACTIONS(2598), + [anon_sym___forceinline] = ACTIONS(2598), + [anon_sym_thread_local] = ACTIONS(2598), + [anon_sym___thread] = ACTIONS(2598), + [anon_sym_CG_EXTERN] = ACTIONS(2598), + [anon_sym_CG_INLINE] = ACTIONS(2598), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2598), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2598), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2598), + [anon_sym_IBOutlet] = ACTIONS(2598), + [anon_sym_IBInspectable] = ACTIONS(2598), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2598), + [anon_sym_NS_INLINE] = ACTIONS(2598), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2598), + [anon_sym_OBJC_EXPORT] = ACTIONS(2598), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2598), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2598), + [anon_sym_const] = ACTIONS(2598), + [anon_sym_constexpr] = ACTIONS(2598), + [anon_sym_volatile] = ACTIONS(2598), + [anon_sym_restrict] = ACTIONS(2598), + [anon_sym___restrict__] = ACTIONS(2598), + [anon_sym__Atomic] = ACTIONS(2598), + [anon_sym__Noreturn] = ACTIONS(2598), + [anon_sym__Nonnull] = ACTIONS(2598), + [anon_sym_nullable] = ACTIONS(2598), + [anon_sym__Complex] = ACTIONS(2598), + [anon_sym__Nullable] = ACTIONS(2598), + [anon_sym__Nullable_result] = ACTIONS(2598), + [anon_sym__Null_unspecified] = ACTIONS(2598), + [anon_sym___autoreleasing] = ACTIONS(2598), + [anon_sym___block] = ACTIONS(2598), + [anon_sym___bridge] = ACTIONS(2598), + [anon_sym___bridge_retained] = ACTIONS(2598), + [anon_sym___bridge_transfer] = ACTIONS(2598), + [anon_sym___complex] = ACTIONS(2598), + [anon_sym___const] = ACTIONS(2598), + [anon_sym___imag] = ACTIONS(2598), + [anon_sym___kindof] = ACTIONS(2598), + [anon_sym___nonnull] = ACTIONS(2598), + [anon_sym___nullable] = ACTIONS(2598), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2598), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2598), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2598), + [anon_sym___real] = ACTIONS(2598), + [anon_sym___strong] = ACTIONS(2598), + [anon_sym___unsafe_unretained] = ACTIONS(2598), + [anon_sym___unused] = ACTIONS(2598), + [anon_sym___weak] = ACTIONS(2598), + [anon_sym_alignas] = ACTIONS(2598), + [anon_sym__Alignas] = ACTIONS(2598), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_enum] = ACTIONS(2598), + [anon_sym_struct] = ACTIONS(2598), + [anon_sym_union] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2598), + [anon_sym_switch] = ACTIONS(2598), + [anon_sym_case] = ACTIONS(2598), + [anon_sym_default] = ACTIONS(2598), + [anon_sym_while] = ACTIONS(2598), + [anon_sym_do] = ACTIONS(2598), + [anon_sym_for] = ACTIONS(2598), + [anon_sym_in] = ACTIONS(2598), + [anon_sym_return] = ACTIONS(2598), + [anon_sym_break] = ACTIONS(2598), + [anon_sym_continue] = ACTIONS(2598), + [anon_sym_goto] = ACTIONS(2598), + [anon_sym_DASH_DASH] = ACTIONS(2600), + [anon_sym_PLUS_PLUS] = ACTIONS(2600), + [anon_sym_sizeof] = ACTIONS(2598), + [anon_sym___alignof__] = ACTIONS(2598), + [anon_sym___alignof] = ACTIONS(2598), + [anon_sym__alignof] = ACTIONS(2598), + [anon_sym_alignof] = ACTIONS(2598), + [anon_sym__Alignof] = ACTIONS(2598), + [anon_sym_offsetof] = ACTIONS(2598), + [anon_sym__Generic] = ACTIONS(2598), + [anon_sym_asm] = ACTIONS(2598), + [anon_sym___asm__] = ACTIONS(2598), + [anon_sym___asm] = ACTIONS(2598), + [sym_number_literal] = ACTIONS(2600), + [anon_sym_L_SQUOTE] = ACTIONS(2600), + [anon_sym_u_SQUOTE] = ACTIONS(2600), + [anon_sym_U_SQUOTE] = ACTIONS(2600), + [anon_sym_u8_SQUOTE] = ACTIONS(2600), + [anon_sym_SQUOTE] = ACTIONS(2600), + [anon_sym_AT] = ACTIONS(2598), + [anon_sym_DQUOTE] = ACTIONS(2600), + [anon_sym_L_DQUOTE] = ACTIONS(2600), + [anon_sym_u_DQUOTE] = ACTIONS(2600), + [anon_sym_U_DQUOTE] = ACTIONS(2600), + [anon_sym_u8_DQUOTE] = ACTIONS(2600), + [sym_true] = ACTIONS(2598), + [sym_false] = ACTIONS(2598), + [anon_sym_NULL] = ACTIONS(2598), + [anon_sym_nullptr] = ACTIONS(2598), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2598), + [anon_sym___typeof] = ACTIONS(2598), + [anon_sym_typeof] = ACTIONS(2598), + [anon_sym_ATimport] = ACTIONS(2600), + [aux_sym_preproc_undef_token1] = ACTIONS(2598), + [anon_sym_POUND] = ACTIONS(2598), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2598), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2598), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2598), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2598), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2598), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2598), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2598), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2598), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2598), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2598), + [anon_sym_NS_AVAILABLE] = ACTIONS(2598), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2598), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2598), + [anon_sym_API_AVAILABLE] = ACTIONS(2598), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2598), + [anon_sym_API_DEPRECATED] = ACTIONS(2598), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2598), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2598), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2598), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2598), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2598), + [anon_sym___deprecated_msg] = ACTIONS(2598), + [anon_sym___deprecated_enum_msg] = ACTIONS(2598), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2598), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2598), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2598), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2598), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2598), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2598), + [anon_sym_ATprotocol] = ACTIONS(2600), + [anon_sym_ATinterface] = ACTIONS(2600), + [anon_sym_ATimplementation] = ACTIONS(2600), + [anon_sym_ATcompatibility_alias] = ACTIONS(2600), + [anon_sym_ATsynthesize] = ACTIONS(2600), + [anon_sym_ATdynamic] = ACTIONS(2600), + [anon_sym_ATtry] = ACTIONS(2600), + [anon_sym___try] = ACTIONS(2598), + [anon_sym_ATthrow] = ACTIONS(2600), + [anon_sym_ATselector] = ACTIONS(2600), + [anon_sym_ATavailable] = ACTIONS(2600), + [anon_sym___builtin_available] = ACTIONS(2598), + [anon_sym_va_arg] = ACTIONS(2598), + [anon_sym_ATencode] = ACTIONS(2600), + [anon_sym_ATsynchronized] = ACTIONS(2600), + [anon_sym_BOOL] = ACTIONS(2598), + [anon_sym_IMP] = ACTIONS(2598), + [anon_sym_SEL] = ACTIONS(2598), + [anon_sym_Class] = ACTIONS(2598), + [anon_sym_id] = ACTIONS(2598), + }, + [285] = { + [sym_identifier] = ACTIONS(2602), + [aux_sym_preproc_include_token1] = ACTIONS(2602), + [aux_sym_preproc_include_token2] = ACTIONS(2602), + [aux_sym_preproc_def_token1] = ACTIONS(2602), + [aux_sym_preproc_if_token1] = ACTIONS(2602), + [aux_sym_preproc_if_token2] = ACTIONS(2602), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2602), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2602), + [aux_sym_preproc_else_token1] = ACTIONS(2602), + [aux_sym_preproc_elif_token1] = ACTIONS(2602), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2602), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2602), + [sym_preproc_directive] = ACTIONS(2602), + [anon_sym_LPAREN2] = ACTIONS(2604), + [anon_sym_BANG] = ACTIONS(2604), + [anon_sym_TILDE] = ACTIONS(2604), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_CARET] = ACTIONS(2604), + [anon_sym_AMP] = ACTIONS(2604), + [anon_sym_SEMI] = ACTIONS(2604), + [anon_sym___extension__] = ACTIONS(2602), + [anon_sym_typedef] = ACTIONS(2602), + [anon_sym_extern] = ACTIONS(2602), + [anon_sym___attribute__] = ACTIONS(2602), + [anon_sym___attribute] = ACTIONS(2602), + [anon_sym_noreturn] = ACTIONS(2602), + [anon_sym_LBRACK] = ACTIONS(2604), + [anon_sym___declspec] = ACTIONS(2602), + [anon_sym___cdecl] = ACTIONS(2602), + [anon_sym___clrcall] = ACTIONS(2602), + [anon_sym___stdcall] = ACTIONS(2602), + [anon_sym___fastcall] = ACTIONS(2602), + [anon_sym___thiscall] = ACTIONS(2602), + [anon_sym___vectorcall] = ACTIONS(2602), + [anon_sym_LBRACE] = ACTIONS(2604), + [anon_sym_signed] = ACTIONS(2602), + [anon_sym_unsigned] = ACTIONS(2602), + [anon_sym_long] = ACTIONS(2602), + [anon_sym_short] = ACTIONS(2602), + [anon_sym_static] = ACTIONS(2602), + [anon_sym_ATautoreleasepool] = ACTIONS(2604), + [anon_sym_auto] = ACTIONS(2602), + [anon_sym_register] = ACTIONS(2602), + [anon_sym_inline] = ACTIONS(2602), + [anon_sym___inline] = ACTIONS(2602), + [anon_sym___inline__] = ACTIONS(2602), + [anon_sym___forceinline] = ACTIONS(2602), + [anon_sym_thread_local] = ACTIONS(2602), + [anon_sym___thread] = ACTIONS(2602), + [anon_sym_CG_EXTERN] = ACTIONS(2602), + [anon_sym_CG_INLINE] = ACTIONS(2602), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2602), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2602), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2602), + [anon_sym_IBOutlet] = ACTIONS(2602), + [anon_sym_IBInspectable] = ACTIONS(2602), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2602), + [anon_sym_NS_INLINE] = ACTIONS(2602), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2602), + [anon_sym_OBJC_EXPORT] = ACTIONS(2602), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2602), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2602), + [anon_sym_const] = ACTIONS(2602), + [anon_sym_constexpr] = ACTIONS(2602), + [anon_sym_volatile] = ACTIONS(2602), + [anon_sym_restrict] = ACTIONS(2602), + [anon_sym___restrict__] = ACTIONS(2602), + [anon_sym__Atomic] = ACTIONS(2602), + [anon_sym__Noreturn] = ACTIONS(2602), + [anon_sym__Nonnull] = ACTIONS(2602), + [anon_sym_nullable] = ACTIONS(2602), + [anon_sym__Complex] = ACTIONS(2602), + [anon_sym__Nullable] = ACTIONS(2602), + [anon_sym__Nullable_result] = ACTIONS(2602), + [anon_sym__Null_unspecified] = ACTIONS(2602), + [anon_sym___autoreleasing] = ACTIONS(2602), + [anon_sym___block] = ACTIONS(2602), + [anon_sym___bridge] = ACTIONS(2602), + [anon_sym___bridge_retained] = ACTIONS(2602), + [anon_sym___bridge_transfer] = ACTIONS(2602), + [anon_sym___complex] = ACTIONS(2602), + [anon_sym___const] = ACTIONS(2602), + [anon_sym___imag] = ACTIONS(2602), + [anon_sym___kindof] = ACTIONS(2602), + [anon_sym___nonnull] = ACTIONS(2602), + [anon_sym___nullable] = ACTIONS(2602), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2602), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2602), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2602), + [anon_sym___real] = ACTIONS(2602), + [anon_sym___strong] = ACTIONS(2602), + [anon_sym___unsafe_unretained] = ACTIONS(2602), + [anon_sym___unused] = ACTIONS(2602), + [anon_sym___weak] = ACTIONS(2602), + [anon_sym_alignas] = ACTIONS(2602), + [anon_sym__Alignas] = ACTIONS(2602), + [sym_primitive_type] = ACTIONS(2602), + [anon_sym_enum] = ACTIONS(2602), + [anon_sym_struct] = ACTIONS(2602), + [anon_sym_union] = ACTIONS(2602), + [anon_sym_if] = ACTIONS(2602), + [anon_sym_switch] = ACTIONS(2602), + [anon_sym_case] = ACTIONS(2602), + [anon_sym_default] = ACTIONS(2602), + [anon_sym_while] = ACTIONS(2602), + [anon_sym_do] = ACTIONS(2602), + [anon_sym_for] = ACTIONS(2602), + [anon_sym_in] = ACTIONS(2602), + [anon_sym_return] = ACTIONS(2602), + [anon_sym_break] = ACTIONS(2602), + [anon_sym_continue] = ACTIONS(2602), + [anon_sym_goto] = ACTIONS(2602), + [anon_sym_DASH_DASH] = ACTIONS(2604), + [anon_sym_PLUS_PLUS] = ACTIONS(2604), + [anon_sym_sizeof] = ACTIONS(2602), + [anon_sym___alignof__] = ACTIONS(2602), + [anon_sym___alignof] = ACTIONS(2602), + [anon_sym__alignof] = ACTIONS(2602), + [anon_sym_alignof] = ACTIONS(2602), + [anon_sym__Alignof] = ACTIONS(2602), + [anon_sym_offsetof] = ACTIONS(2602), + [anon_sym__Generic] = ACTIONS(2602), + [anon_sym_asm] = ACTIONS(2602), + [anon_sym___asm__] = ACTIONS(2602), + [anon_sym___asm] = ACTIONS(2602), + [sym_number_literal] = ACTIONS(2604), + [anon_sym_L_SQUOTE] = ACTIONS(2604), + [anon_sym_u_SQUOTE] = ACTIONS(2604), + [anon_sym_U_SQUOTE] = ACTIONS(2604), + [anon_sym_u8_SQUOTE] = ACTIONS(2604), + [anon_sym_SQUOTE] = ACTIONS(2604), + [anon_sym_AT] = ACTIONS(2602), + [anon_sym_DQUOTE] = ACTIONS(2604), + [anon_sym_L_DQUOTE] = ACTIONS(2604), + [anon_sym_u_DQUOTE] = ACTIONS(2604), + [anon_sym_U_DQUOTE] = ACTIONS(2604), + [anon_sym_u8_DQUOTE] = ACTIONS(2604), + [sym_true] = ACTIONS(2602), + [sym_false] = ACTIONS(2602), + [anon_sym_NULL] = ACTIONS(2602), + [anon_sym_nullptr] = ACTIONS(2602), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2602), + [anon_sym___typeof] = ACTIONS(2602), + [anon_sym_typeof] = ACTIONS(2602), + [anon_sym_ATimport] = ACTIONS(2604), + [aux_sym_preproc_undef_token1] = ACTIONS(2602), + [anon_sym_POUND] = ACTIONS(2602), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2602), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2602), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2602), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2602), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2602), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2602), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2602), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2602), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2602), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2602), + [anon_sym_NS_AVAILABLE] = ACTIONS(2602), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2602), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2602), + [anon_sym_API_AVAILABLE] = ACTIONS(2602), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2602), + [anon_sym_API_DEPRECATED] = ACTIONS(2602), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2602), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2602), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2602), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2602), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2602), + [anon_sym___deprecated_msg] = ACTIONS(2602), + [anon_sym___deprecated_enum_msg] = ACTIONS(2602), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2602), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2602), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2602), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2602), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2602), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2602), + [anon_sym_ATprotocol] = ACTIONS(2604), + [anon_sym_ATinterface] = ACTIONS(2604), + [anon_sym_ATimplementation] = ACTIONS(2604), + [anon_sym_ATcompatibility_alias] = ACTIONS(2604), + [anon_sym_ATsynthesize] = ACTIONS(2604), + [anon_sym_ATdynamic] = ACTIONS(2604), + [anon_sym_ATtry] = ACTIONS(2604), + [anon_sym___try] = ACTIONS(2602), + [anon_sym_ATthrow] = ACTIONS(2604), + [anon_sym_ATselector] = ACTIONS(2604), + [anon_sym_ATavailable] = ACTIONS(2604), + [anon_sym___builtin_available] = ACTIONS(2602), + [anon_sym_va_arg] = ACTIONS(2602), + [anon_sym_ATencode] = ACTIONS(2604), + [anon_sym_ATsynchronized] = ACTIONS(2604), + [anon_sym_BOOL] = ACTIONS(2602), + [anon_sym_IMP] = ACTIONS(2602), + [anon_sym_SEL] = ACTIONS(2602), + [anon_sym_Class] = ACTIONS(2602), + [anon_sym_id] = ACTIONS(2602), + }, + [286] = { + [sym_identifier] = ACTIONS(2606), + [aux_sym_preproc_include_token1] = ACTIONS(2606), + [aux_sym_preproc_include_token2] = ACTIONS(2606), + [aux_sym_preproc_def_token1] = ACTIONS(2606), + [aux_sym_preproc_if_token1] = ACTIONS(2606), + [aux_sym_preproc_if_token2] = ACTIONS(2606), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2606), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2606), + [aux_sym_preproc_else_token1] = ACTIONS(2606), + [aux_sym_preproc_elif_token1] = ACTIONS(2606), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2606), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2606), + [sym_preproc_directive] = ACTIONS(2606), + [anon_sym_LPAREN2] = ACTIONS(2609), + [anon_sym_BANG] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2606), + [anon_sym_PLUS] = ACTIONS(2606), + [anon_sym_STAR] = ACTIONS(2609), + [anon_sym_CARET] = ACTIONS(2609), + [anon_sym_AMP] = ACTIONS(2609), + [anon_sym_SEMI] = ACTIONS(2609), + [anon_sym___extension__] = ACTIONS(2606), + [anon_sym_typedef] = ACTIONS(2606), + [anon_sym_extern] = ACTIONS(2606), + [anon_sym___attribute__] = ACTIONS(2606), + [anon_sym___attribute] = ACTIONS(2606), + [anon_sym_noreturn] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(2609), + [anon_sym___declspec] = ACTIONS(2606), + [anon_sym___cdecl] = ACTIONS(2606), + [anon_sym___clrcall] = ACTIONS(2606), + [anon_sym___stdcall] = ACTIONS(2606), + [anon_sym___fastcall] = ACTIONS(2606), + [anon_sym___thiscall] = ACTIONS(2606), + [anon_sym___vectorcall] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2609), + [anon_sym_signed] = ACTIONS(2606), + [anon_sym_unsigned] = ACTIONS(2606), + [anon_sym_long] = ACTIONS(2606), + [anon_sym_short] = ACTIONS(2606), + [anon_sym_static] = ACTIONS(2606), + [anon_sym_ATautoreleasepool] = ACTIONS(2609), + [anon_sym_auto] = ACTIONS(2606), + [anon_sym_register] = ACTIONS(2606), + [anon_sym_inline] = ACTIONS(2606), + [anon_sym___inline] = ACTIONS(2606), + [anon_sym___inline__] = ACTIONS(2606), + [anon_sym___forceinline] = ACTIONS(2606), + [anon_sym_thread_local] = ACTIONS(2606), + [anon_sym___thread] = ACTIONS(2606), + [anon_sym_CG_EXTERN] = ACTIONS(2606), + [anon_sym_CG_INLINE] = ACTIONS(2606), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2606), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2606), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2606), + [anon_sym_IBOutlet] = ACTIONS(2606), + [anon_sym_IBInspectable] = ACTIONS(2606), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2606), + [anon_sym_NS_INLINE] = ACTIONS(2606), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2606), + [anon_sym_OBJC_EXPORT] = ACTIONS(2606), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2606), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2606), + [anon_sym_const] = ACTIONS(2606), + [anon_sym_constexpr] = ACTIONS(2606), + [anon_sym_volatile] = ACTIONS(2606), + [anon_sym_restrict] = ACTIONS(2606), + [anon_sym___restrict__] = ACTIONS(2606), + [anon_sym__Atomic] = ACTIONS(2606), + [anon_sym__Noreturn] = ACTIONS(2606), + [anon_sym__Nonnull] = ACTIONS(2606), + [anon_sym_nullable] = ACTIONS(2606), + [anon_sym__Complex] = ACTIONS(2606), + [anon_sym__Nullable] = ACTIONS(2606), + [anon_sym__Nullable_result] = ACTIONS(2606), + [anon_sym__Null_unspecified] = ACTIONS(2606), + [anon_sym___autoreleasing] = ACTIONS(2606), + [anon_sym___block] = ACTIONS(2606), + [anon_sym___bridge] = ACTIONS(2606), + [anon_sym___bridge_retained] = ACTIONS(2606), + [anon_sym___bridge_transfer] = ACTIONS(2606), + [anon_sym___complex] = ACTIONS(2606), + [anon_sym___const] = ACTIONS(2606), + [anon_sym___imag] = ACTIONS(2606), + [anon_sym___kindof] = ACTIONS(2606), + [anon_sym___nonnull] = ACTIONS(2606), + [anon_sym___nullable] = ACTIONS(2606), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2606), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2606), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2606), + [anon_sym___real] = ACTIONS(2606), + [anon_sym___strong] = ACTIONS(2606), + [anon_sym___unsafe_unretained] = ACTIONS(2606), + [anon_sym___unused] = ACTIONS(2606), + [anon_sym___weak] = ACTIONS(2606), + [anon_sym_alignas] = ACTIONS(2606), + [anon_sym__Alignas] = ACTIONS(2606), + [sym_primitive_type] = ACTIONS(2606), + [anon_sym_enum] = ACTIONS(2606), + [anon_sym_struct] = ACTIONS(2606), + [anon_sym_union] = ACTIONS(2606), + [anon_sym_if] = ACTIONS(2606), + [anon_sym_switch] = ACTIONS(2606), + [anon_sym_case] = ACTIONS(2606), + [anon_sym_default] = ACTIONS(2606), + [anon_sym_while] = ACTIONS(2606), + [anon_sym_do] = ACTIONS(2606), + [anon_sym_for] = ACTIONS(2606), + [anon_sym_in] = ACTIONS(2606), + [anon_sym_return] = ACTIONS(2606), + [anon_sym_break] = ACTIONS(2606), + [anon_sym_continue] = ACTIONS(2606), + [anon_sym_goto] = ACTIONS(2606), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2606), + [anon_sym___alignof__] = ACTIONS(2606), + [anon_sym___alignof] = ACTIONS(2606), + [anon_sym__alignof] = ACTIONS(2606), + [anon_sym_alignof] = ACTIONS(2606), + [anon_sym__Alignof] = ACTIONS(2606), + [anon_sym_offsetof] = ACTIONS(2606), + [anon_sym__Generic] = ACTIONS(2606), + [anon_sym_asm] = ACTIONS(2606), + [anon_sym___asm__] = ACTIONS(2606), + [anon_sym___asm] = ACTIONS(2606), + [sym_number_literal] = ACTIONS(2609), + [anon_sym_L_SQUOTE] = ACTIONS(2609), + [anon_sym_u_SQUOTE] = ACTIONS(2609), + [anon_sym_U_SQUOTE] = ACTIONS(2609), + [anon_sym_u8_SQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE] = ACTIONS(2609), + [anon_sym_AT] = ACTIONS(2606), + [anon_sym_DQUOTE] = ACTIONS(2609), + [anon_sym_L_DQUOTE] = ACTIONS(2609), + [anon_sym_u_DQUOTE] = ACTIONS(2609), + [anon_sym_U_DQUOTE] = ACTIONS(2609), + [anon_sym_u8_DQUOTE] = ACTIONS(2609), + [sym_true] = ACTIONS(2606), + [sym_false] = ACTIONS(2606), + [anon_sym_NULL] = ACTIONS(2606), + [anon_sym_nullptr] = ACTIONS(2606), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2606), + [anon_sym___typeof] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(2606), + [anon_sym_ATimport] = ACTIONS(2609), + [aux_sym_preproc_undef_token1] = ACTIONS(2606), + [anon_sym_POUND] = ACTIONS(2606), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2606), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2606), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2606), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2606), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2606), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2606), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2606), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2606), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2606), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2606), + [anon_sym_NS_AVAILABLE] = ACTIONS(2606), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2606), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2606), + [anon_sym_API_AVAILABLE] = ACTIONS(2606), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2606), + [anon_sym_API_DEPRECATED] = ACTIONS(2606), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2606), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2606), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2606), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2606), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2606), + [anon_sym___deprecated_msg] = ACTIONS(2606), + [anon_sym___deprecated_enum_msg] = ACTIONS(2606), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2606), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2606), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2606), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2606), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2606), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2606), + [anon_sym_ATprotocol] = ACTIONS(2609), + [anon_sym_ATinterface] = ACTIONS(2609), + [anon_sym_ATimplementation] = ACTIONS(2609), + [anon_sym_ATcompatibility_alias] = ACTIONS(2609), + [anon_sym_ATsynthesize] = ACTIONS(2609), + [anon_sym_ATdynamic] = ACTIONS(2609), + [anon_sym_ATtry] = ACTIONS(2609), + [anon_sym___try] = ACTIONS(2606), + [anon_sym_ATthrow] = ACTIONS(2609), + [anon_sym_ATselector] = ACTIONS(2609), + [anon_sym_ATavailable] = ACTIONS(2609), + [anon_sym___builtin_available] = ACTIONS(2606), + [anon_sym_va_arg] = ACTIONS(2606), + [anon_sym_ATencode] = ACTIONS(2609), + [anon_sym_ATsynchronized] = ACTIONS(2609), + [anon_sym_BOOL] = ACTIONS(2606), + [anon_sym_IMP] = ACTIONS(2606), + [anon_sym_SEL] = ACTIONS(2606), + [anon_sym_Class] = ACTIONS(2606), + [anon_sym_id] = ACTIONS(2606), + }, + [287] = { + [sym_identifier] = ACTIONS(2612), + [aux_sym_preproc_include_token1] = ACTIONS(2612), + [aux_sym_preproc_include_token2] = ACTIONS(2612), + [aux_sym_preproc_def_token1] = ACTIONS(2612), + [aux_sym_preproc_if_token1] = ACTIONS(2612), + [aux_sym_preproc_if_token2] = ACTIONS(2612), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2612), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2612), + [aux_sym_preproc_else_token1] = ACTIONS(2612), + [aux_sym_preproc_elif_token1] = ACTIONS(2612), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2612), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2612), + [sym_preproc_directive] = ACTIONS(2612), + [anon_sym_LPAREN2] = ACTIONS(2614), + [anon_sym_BANG] = ACTIONS(2614), + [anon_sym_TILDE] = ACTIONS(2614), + [anon_sym_DASH] = ACTIONS(2612), + [anon_sym_PLUS] = ACTIONS(2612), + [anon_sym_STAR] = ACTIONS(2614), + [anon_sym_CARET] = ACTIONS(2614), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_SEMI] = ACTIONS(2614), + [anon_sym___extension__] = ACTIONS(2612), + [anon_sym_typedef] = ACTIONS(2612), + [anon_sym_extern] = ACTIONS(2612), + [anon_sym___attribute__] = ACTIONS(2612), + [anon_sym___attribute] = ACTIONS(2612), + [anon_sym_noreturn] = ACTIONS(2612), + [anon_sym_LBRACK] = ACTIONS(2614), + [anon_sym___declspec] = ACTIONS(2612), + [anon_sym___cdecl] = ACTIONS(2612), + [anon_sym___clrcall] = ACTIONS(2612), + [anon_sym___stdcall] = ACTIONS(2612), + [anon_sym___fastcall] = ACTIONS(2612), + [anon_sym___thiscall] = ACTIONS(2612), + [anon_sym___vectorcall] = ACTIONS(2612), + [anon_sym_LBRACE] = ACTIONS(2614), + [anon_sym_signed] = ACTIONS(2612), + [anon_sym_unsigned] = ACTIONS(2612), + [anon_sym_long] = ACTIONS(2612), + [anon_sym_short] = ACTIONS(2612), + [anon_sym_static] = ACTIONS(2612), + [anon_sym_ATautoreleasepool] = ACTIONS(2614), + [anon_sym_auto] = ACTIONS(2612), + [anon_sym_register] = ACTIONS(2612), + [anon_sym_inline] = ACTIONS(2612), + [anon_sym___inline] = ACTIONS(2612), + [anon_sym___inline__] = ACTIONS(2612), + [anon_sym___forceinline] = ACTIONS(2612), + [anon_sym_thread_local] = ACTIONS(2612), + [anon_sym___thread] = ACTIONS(2612), + [anon_sym_CG_EXTERN] = ACTIONS(2612), + [anon_sym_CG_INLINE] = ACTIONS(2612), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2612), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2612), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2612), + [anon_sym_IBOutlet] = ACTIONS(2612), + [anon_sym_IBInspectable] = ACTIONS(2612), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2612), + [anon_sym_NS_INLINE] = ACTIONS(2612), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2612), + [anon_sym_OBJC_EXPORT] = ACTIONS(2612), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2612), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2612), + [anon_sym_const] = ACTIONS(2612), + [anon_sym_constexpr] = ACTIONS(2612), + [anon_sym_volatile] = ACTIONS(2612), + [anon_sym_restrict] = ACTIONS(2612), + [anon_sym___restrict__] = ACTIONS(2612), + [anon_sym__Atomic] = ACTIONS(2612), + [anon_sym__Noreturn] = ACTIONS(2612), + [anon_sym__Nonnull] = ACTIONS(2612), + [anon_sym_nullable] = ACTIONS(2612), + [anon_sym__Complex] = ACTIONS(2612), + [anon_sym__Nullable] = ACTIONS(2612), + [anon_sym__Nullable_result] = ACTIONS(2612), + [anon_sym__Null_unspecified] = ACTIONS(2612), + [anon_sym___autoreleasing] = ACTIONS(2612), + [anon_sym___block] = ACTIONS(2612), + [anon_sym___bridge] = ACTIONS(2612), + [anon_sym___bridge_retained] = ACTIONS(2612), + [anon_sym___bridge_transfer] = ACTIONS(2612), + [anon_sym___complex] = ACTIONS(2612), + [anon_sym___const] = ACTIONS(2612), + [anon_sym___imag] = ACTIONS(2612), + [anon_sym___kindof] = ACTIONS(2612), + [anon_sym___nonnull] = ACTIONS(2612), + [anon_sym___nullable] = ACTIONS(2612), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2612), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2612), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2612), + [anon_sym___real] = ACTIONS(2612), + [anon_sym___strong] = ACTIONS(2612), + [anon_sym___unsafe_unretained] = ACTIONS(2612), + [anon_sym___unused] = ACTIONS(2612), + [anon_sym___weak] = ACTIONS(2612), + [anon_sym_alignas] = ACTIONS(2612), + [anon_sym__Alignas] = ACTIONS(2612), + [sym_primitive_type] = ACTIONS(2612), + [anon_sym_enum] = ACTIONS(2612), + [anon_sym_struct] = ACTIONS(2612), + [anon_sym_union] = ACTIONS(2612), + [anon_sym_if] = ACTIONS(2612), + [anon_sym_switch] = ACTIONS(2612), + [anon_sym_case] = ACTIONS(2612), + [anon_sym_default] = ACTIONS(2612), + [anon_sym_while] = ACTIONS(2612), + [anon_sym_do] = ACTIONS(2612), + [anon_sym_for] = ACTIONS(2612), + [anon_sym_in] = ACTIONS(2612), + [anon_sym_return] = ACTIONS(2612), + [anon_sym_break] = ACTIONS(2612), + [anon_sym_continue] = ACTIONS(2612), + [anon_sym_goto] = ACTIONS(2612), + [anon_sym_DASH_DASH] = ACTIONS(2614), + [anon_sym_PLUS_PLUS] = ACTIONS(2614), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2612), + [anon_sym___alignof] = ACTIONS(2612), + [anon_sym__alignof] = ACTIONS(2612), + [anon_sym_alignof] = ACTIONS(2612), + [anon_sym__Alignof] = ACTIONS(2612), + [anon_sym_offsetof] = ACTIONS(2612), + [anon_sym__Generic] = ACTIONS(2612), + [anon_sym_asm] = ACTIONS(2612), + [anon_sym___asm__] = ACTIONS(2612), + [anon_sym___asm] = ACTIONS(2612), + [sym_number_literal] = ACTIONS(2614), + [anon_sym_L_SQUOTE] = ACTIONS(2614), + [anon_sym_u_SQUOTE] = ACTIONS(2614), + [anon_sym_U_SQUOTE] = ACTIONS(2614), + [anon_sym_u8_SQUOTE] = ACTIONS(2614), + [anon_sym_SQUOTE] = ACTIONS(2614), + [anon_sym_AT] = ACTIONS(2612), + [anon_sym_DQUOTE] = ACTIONS(2614), + [anon_sym_L_DQUOTE] = ACTIONS(2614), + [anon_sym_u_DQUOTE] = ACTIONS(2614), + [anon_sym_U_DQUOTE] = ACTIONS(2614), + [anon_sym_u8_DQUOTE] = ACTIONS(2614), + [sym_true] = ACTIONS(2612), + [sym_false] = ACTIONS(2612), + [anon_sym_NULL] = ACTIONS(2612), + [anon_sym_nullptr] = ACTIONS(2612), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2612), + [anon_sym___typeof] = ACTIONS(2612), + [anon_sym_typeof] = ACTIONS(2612), + [anon_sym_ATimport] = ACTIONS(2614), + [aux_sym_preproc_undef_token1] = ACTIONS(2612), + [anon_sym_POUND] = ACTIONS(2612), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2612), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2612), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2612), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2612), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2612), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2612), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2612), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2612), + [anon_sym_NS_AVAILABLE] = ACTIONS(2612), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2612), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_API_AVAILABLE] = ACTIONS(2612), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_API_DEPRECATED] = ACTIONS(2612), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2612), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2612), + [anon_sym___deprecated_msg] = ACTIONS(2612), + [anon_sym___deprecated_enum_msg] = ACTIONS(2612), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2612), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2612), + [anon_sym_ATprotocol] = ACTIONS(2614), + [anon_sym_ATinterface] = ACTIONS(2614), + [anon_sym_ATimplementation] = ACTIONS(2614), + [anon_sym_ATcompatibility_alias] = ACTIONS(2614), + [anon_sym_ATsynthesize] = ACTIONS(2614), + [anon_sym_ATdynamic] = ACTIONS(2614), + [anon_sym_ATtry] = ACTIONS(2614), + [anon_sym___try] = ACTIONS(2612), + [anon_sym_ATthrow] = ACTIONS(2614), + [anon_sym_ATselector] = ACTIONS(2614), + [anon_sym_ATavailable] = ACTIONS(2614), + [anon_sym___builtin_available] = ACTIONS(2612), + [anon_sym_va_arg] = ACTIONS(2612), + [anon_sym_ATencode] = ACTIONS(2614), + [anon_sym_ATsynchronized] = ACTIONS(2614), + [anon_sym_BOOL] = ACTIONS(2612), + [anon_sym_IMP] = ACTIONS(2612), + [anon_sym_SEL] = ACTIONS(2612), + [anon_sym_Class] = ACTIONS(2612), + [anon_sym_id] = ACTIONS(2612), + }, + [288] = { + [sym_identifier] = ACTIONS(2616), + [aux_sym_preproc_include_token1] = ACTIONS(2616), + [aux_sym_preproc_include_token2] = ACTIONS(2616), + [aux_sym_preproc_def_token1] = ACTIONS(2616), + [aux_sym_preproc_if_token1] = ACTIONS(2616), + [aux_sym_preproc_if_token2] = ACTIONS(2616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2616), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2616), + [aux_sym_preproc_else_token1] = ACTIONS(2616), + [aux_sym_preproc_elif_token1] = ACTIONS(2616), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2616), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2616), + [sym_preproc_directive] = ACTIONS(2616), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2618), + [anon_sym_TILDE] = ACTIONS(2618), + [anon_sym_DASH] = ACTIONS(2616), + [anon_sym_PLUS] = ACTIONS(2616), + [anon_sym_STAR] = ACTIONS(2618), + [anon_sym_CARET] = ACTIONS(2618), + [anon_sym_AMP] = ACTIONS(2618), + [anon_sym_SEMI] = ACTIONS(2618), + [anon_sym___extension__] = ACTIONS(2616), + [anon_sym_typedef] = ACTIONS(2616), + [anon_sym_extern] = ACTIONS(2616), + [anon_sym___attribute__] = ACTIONS(2616), + [anon_sym___attribute] = ACTIONS(2616), + [anon_sym_noreturn] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(2618), + [anon_sym___declspec] = ACTIONS(2616), + [anon_sym___cdecl] = ACTIONS(2616), + [anon_sym___clrcall] = ACTIONS(2616), + [anon_sym___stdcall] = ACTIONS(2616), + [anon_sym___fastcall] = ACTIONS(2616), + [anon_sym___thiscall] = ACTIONS(2616), + [anon_sym___vectorcall] = ACTIONS(2616), + [anon_sym_LBRACE] = ACTIONS(2618), + [anon_sym_signed] = ACTIONS(2616), + [anon_sym_unsigned] = ACTIONS(2616), + [anon_sym_long] = ACTIONS(2616), + [anon_sym_short] = ACTIONS(2616), + [anon_sym_static] = ACTIONS(2616), + [anon_sym_ATautoreleasepool] = ACTIONS(2618), + [anon_sym_auto] = ACTIONS(2616), + [anon_sym_register] = ACTIONS(2616), + [anon_sym_inline] = ACTIONS(2616), + [anon_sym___inline] = ACTIONS(2616), + [anon_sym___inline__] = ACTIONS(2616), + [anon_sym___forceinline] = ACTIONS(2616), + [anon_sym_thread_local] = ACTIONS(2616), + [anon_sym___thread] = ACTIONS(2616), + [anon_sym_CG_EXTERN] = ACTIONS(2616), + [anon_sym_CG_INLINE] = ACTIONS(2616), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2616), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2616), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2616), + [anon_sym_IBOutlet] = ACTIONS(2616), + [anon_sym_IBInspectable] = ACTIONS(2616), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2616), + [anon_sym_NS_INLINE] = ACTIONS(2616), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2616), + [anon_sym_OBJC_EXPORT] = ACTIONS(2616), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2616), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2616), + [anon_sym_const] = ACTIONS(2616), + [anon_sym_constexpr] = ACTIONS(2616), + [anon_sym_volatile] = ACTIONS(2616), + [anon_sym_restrict] = ACTIONS(2616), + [anon_sym___restrict__] = ACTIONS(2616), + [anon_sym__Atomic] = ACTIONS(2616), + [anon_sym__Noreturn] = ACTIONS(2616), + [anon_sym__Nonnull] = ACTIONS(2616), + [anon_sym_nullable] = ACTIONS(2616), + [anon_sym__Complex] = ACTIONS(2616), + [anon_sym__Nullable] = ACTIONS(2616), + [anon_sym__Nullable_result] = ACTIONS(2616), + [anon_sym__Null_unspecified] = ACTIONS(2616), + [anon_sym___autoreleasing] = ACTIONS(2616), + [anon_sym___block] = ACTIONS(2616), + [anon_sym___bridge] = ACTIONS(2616), + [anon_sym___bridge_retained] = ACTIONS(2616), + [anon_sym___bridge_transfer] = ACTIONS(2616), + [anon_sym___complex] = ACTIONS(2616), + [anon_sym___const] = ACTIONS(2616), + [anon_sym___imag] = ACTIONS(2616), + [anon_sym___kindof] = ACTIONS(2616), + [anon_sym___nonnull] = ACTIONS(2616), + [anon_sym___nullable] = ACTIONS(2616), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2616), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2616), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2616), + [anon_sym___real] = ACTIONS(2616), + [anon_sym___strong] = ACTIONS(2616), + [anon_sym___unsafe_unretained] = ACTIONS(2616), + [anon_sym___unused] = ACTIONS(2616), + [anon_sym___weak] = ACTIONS(2616), + [anon_sym_alignas] = ACTIONS(2616), + [anon_sym__Alignas] = ACTIONS(2616), + [sym_primitive_type] = ACTIONS(2616), + [anon_sym_enum] = ACTIONS(2616), + [anon_sym_struct] = ACTIONS(2616), + [anon_sym_union] = ACTIONS(2616), + [anon_sym_if] = ACTIONS(2616), + [anon_sym_switch] = ACTIONS(2616), + [anon_sym_case] = ACTIONS(2616), + [anon_sym_default] = ACTIONS(2616), + [anon_sym_while] = ACTIONS(2616), + [anon_sym_do] = ACTIONS(2616), + [anon_sym_for] = ACTIONS(2616), + [anon_sym_in] = ACTIONS(2616), + [anon_sym_return] = ACTIONS(2616), + [anon_sym_break] = ACTIONS(2616), + [anon_sym_continue] = ACTIONS(2616), + [anon_sym_goto] = ACTIONS(2616), + [anon_sym_DASH_DASH] = ACTIONS(2618), + [anon_sym_PLUS_PLUS] = ACTIONS(2618), + [anon_sym_sizeof] = ACTIONS(2616), + [anon_sym___alignof__] = ACTIONS(2616), + [anon_sym___alignof] = ACTIONS(2616), + [anon_sym__alignof] = ACTIONS(2616), + [anon_sym_alignof] = ACTIONS(2616), + [anon_sym__Alignof] = ACTIONS(2616), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2616), + [anon_sym_asm] = ACTIONS(2616), + [anon_sym___asm__] = ACTIONS(2616), + [anon_sym___asm] = ACTIONS(2616), + [sym_number_literal] = ACTIONS(2618), + [anon_sym_L_SQUOTE] = ACTIONS(2618), + [anon_sym_u_SQUOTE] = ACTIONS(2618), + [anon_sym_U_SQUOTE] = ACTIONS(2618), + [anon_sym_u8_SQUOTE] = ACTIONS(2618), + [anon_sym_SQUOTE] = ACTIONS(2618), + [anon_sym_AT] = ACTIONS(2616), + [anon_sym_DQUOTE] = ACTIONS(2618), + [anon_sym_L_DQUOTE] = ACTIONS(2618), + [anon_sym_u_DQUOTE] = ACTIONS(2618), + [anon_sym_U_DQUOTE] = ACTIONS(2618), + [anon_sym_u8_DQUOTE] = ACTIONS(2618), + [sym_true] = ACTIONS(2616), + [sym_false] = ACTIONS(2616), + [anon_sym_NULL] = ACTIONS(2616), + [anon_sym_nullptr] = ACTIONS(2616), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2616), + [anon_sym___typeof] = ACTIONS(2616), + [anon_sym_typeof] = ACTIONS(2616), + [anon_sym_ATimport] = ACTIONS(2618), + [aux_sym_preproc_undef_token1] = ACTIONS(2616), + [anon_sym_POUND] = ACTIONS(2616), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2616), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2616), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2616), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2616), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2616), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2616), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2616), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2616), + [anon_sym_NS_AVAILABLE] = ACTIONS(2616), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2616), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_API_AVAILABLE] = ACTIONS(2616), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_API_DEPRECATED] = ACTIONS(2616), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2616), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2616), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2616), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2616), + [anon_sym___deprecated_msg] = ACTIONS(2616), + [anon_sym___deprecated_enum_msg] = ACTIONS(2616), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2616), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2616), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2616), + [anon_sym_ATprotocol] = ACTIONS(2618), + [anon_sym_ATinterface] = ACTIONS(2618), + [anon_sym_ATimplementation] = ACTIONS(2618), + [anon_sym_ATcompatibility_alias] = ACTIONS(2618), + [anon_sym_ATsynthesize] = ACTIONS(2618), + [anon_sym_ATdynamic] = ACTIONS(2618), + [anon_sym_ATtry] = ACTIONS(2618), + [anon_sym___try] = ACTIONS(2616), + [anon_sym_ATthrow] = ACTIONS(2618), + [anon_sym_ATselector] = ACTIONS(2618), + [anon_sym_ATavailable] = ACTIONS(2618), + [anon_sym___builtin_available] = ACTIONS(2616), + [anon_sym_va_arg] = ACTIONS(2616), + [anon_sym_ATencode] = ACTIONS(2618), + [anon_sym_ATsynchronized] = ACTIONS(2618), + [anon_sym_BOOL] = ACTIONS(2616), + [anon_sym_IMP] = ACTIONS(2616), + [anon_sym_SEL] = ACTIONS(2616), + [anon_sym_Class] = ACTIONS(2616), + [anon_sym_id] = ACTIONS(2616), + }, + [289] = { + [sym_identifier] = ACTIONS(2620), + [aux_sym_preproc_include_token1] = ACTIONS(2620), + [aux_sym_preproc_include_token2] = ACTIONS(2620), + [aux_sym_preproc_def_token1] = ACTIONS(2620), + [aux_sym_preproc_if_token1] = ACTIONS(2620), + [aux_sym_preproc_if_token2] = ACTIONS(2620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2620), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2620), + [aux_sym_preproc_else_token1] = ACTIONS(2620), + [aux_sym_preproc_elif_token1] = ACTIONS(2620), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2620), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2620), + [sym_preproc_directive] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(2622), + [anon_sym_BANG] = ACTIONS(2622), + [anon_sym_TILDE] = ACTIONS(2622), + [anon_sym_DASH] = ACTIONS(2620), + [anon_sym_PLUS] = ACTIONS(2620), + [anon_sym_STAR] = ACTIONS(2622), + [anon_sym_CARET] = ACTIONS(2622), + [anon_sym_AMP] = ACTIONS(2622), + [anon_sym_SEMI] = ACTIONS(2622), + [anon_sym___extension__] = ACTIONS(2620), + [anon_sym_typedef] = ACTIONS(2620), + [anon_sym_extern] = ACTIONS(2620), + [anon_sym___attribute__] = ACTIONS(2620), + [anon_sym___attribute] = ACTIONS(2620), + [anon_sym_noreturn] = ACTIONS(2620), + [anon_sym_LBRACK] = ACTIONS(2622), + [anon_sym___declspec] = ACTIONS(2620), + [anon_sym___cdecl] = ACTIONS(2620), + [anon_sym___clrcall] = ACTIONS(2620), + [anon_sym___stdcall] = ACTIONS(2620), + [anon_sym___fastcall] = ACTIONS(2620), + [anon_sym___thiscall] = ACTIONS(2620), + [anon_sym___vectorcall] = ACTIONS(2620), + [anon_sym_LBRACE] = ACTIONS(2622), + [anon_sym_signed] = ACTIONS(2620), + [anon_sym_unsigned] = ACTIONS(2620), + [anon_sym_long] = ACTIONS(2620), + [anon_sym_short] = ACTIONS(2620), + [anon_sym_static] = ACTIONS(2620), + [anon_sym_ATautoreleasepool] = ACTIONS(2622), + [anon_sym_auto] = ACTIONS(2620), + [anon_sym_register] = ACTIONS(2620), + [anon_sym_inline] = ACTIONS(2620), + [anon_sym___inline] = ACTIONS(2620), + [anon_sym___inline__] = ACTIONS(2620), + [anon_sym___forceinline] = ACTIONS(2620), + [anon_sym_thread_local] = ACTIONS(2620), + [anon_sym___thread] = ACTIONS(2620), + [anon_sym_CG_EXTERN] = ACTIONS(2620), + [anon_sym_CG_INLINE] = ACTIONS(2620), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2620), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2620), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2620), + [anon_sym_IBOutlet] = ACTIONS(2620), + [anon_sym_IBInspectable] = ACTIONS(2620), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2620), + [anon_sym_NS_INLINE] = ACTIONS(2620), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2620), + [anon_sym_OBJC_EXPORT] = ACTIONS(2620), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2620), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2620), + [anon_sym_const] = ACTIONS(2620), + [anon_sym_constexpr] = ACTIONS(2620), + [anon_sym_volatile] = ACTIONS(2620), + [anon_sym_restrict] = ACTIONS(2620), + [anon_sym___restrict__] = ACTIONS(2620), + [anon_sym__Atomic] = ACTIONS(2620), + [anon_sym__Noreturn] = ACTIONS(2620), + [anon_sym__Nonnull] = ACTIONS(2620), + [anon_sym_nullable] = ACTIONS(2620), + [anon_sym__Complex] = ACTIONS(2620), + [anon_sym__Nullable] = ACTIONS(2620), + [anon_sym__Nullable_result] = ACTIONS(2620), + [anon_sym__Null_unspecified] = ACTIONS(2620), + [anon_sym___autoreleasing] = ACTIONS(2620), + [anon_sym___block] = ACTIONS(2620), + [anon_sym___bridge] = ACTIONS(2620), + [anon_sym___bridge_retained] = ACTIONS(2620), + [anon_sym___bridge_transfer] = ACTIONS(2620), + [anon_sym___complex] = ACTIONS(2620), + [anon_sym___const] = ACTIONS(2620), + [anon_sym___imag] = ACTIONS(2620), + [anon_sym___kindof] = ACTIONS(2620), + [anon_sym___nonnull] = ACTIONS(2620), + [anon_sym___nullable] = ACTIONS(2620), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2620), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2620), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2620), + [anon_sym___real] = ACTIONS(2620), + [anon_sym___strong] = ACTIONS(2620), + [anon_sym___unsafe_unretained] = ACTIONS(2620), + [anon_sym___unused] = ACTIONS(2620), + [anon_sym___weak] = ACTIONS(2620), + [anon_sym_alignas] = ACTIONS(2620), + [anon_sym__Alignas] = ACTIONS(2620), + [sym_primitive_type] = ACTIONS(2620), + [anon_sym_enum] = ACTIONS(2620), + [anon_sym_struct] = ACTIONS(2620), + [anon_sym_union] = ACTIONS(2620), + [anon_sym_if] = ACTIONS(2620), + [anon_sym_switch] = ACTIONS(2620), + [anon_sym_case] = ACTIONS(2620), + [anon_sym_default] = ACTIONS(2620), + [anon_sym_while] = ACTIONS(2620), + [anon_sym_do] = ACTIONS(2620), + [anon_sym_for] = ACTIONS(2620), + [anon_sym_in] = ACTIONS(2620), + [anon_sym_return] = ACTIONS(2620), + [anon_sym_break] = ACTIONS(2620), + [anon_sym_continue] = ACTIONS(2620), + [anon_sym_goto] = ACTIONS(2620), + [anon_sym_DASH_DASH] = ACTIONS(2622), + [anon_sym_PLUS_PLUS] = ACTIONS(2622), + [anon_sym_sizeof] = ACTIONS(2620), + [anon_sym___alignof__] = ACTIONS(2620), + [anon_sym___alignof] = ACTIONS(2620), + [anon_sym__alignof] = ACTIONS(2620), + [anon_sym_alignof] = ACTIONS(2620), + [anon_sym__Alignof] = ACTIONS(2620), + [anon_sym_offsetof] = ACTIONS(2620), + [anon_sym__Generic] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2620), + [anon_sym___asm__] = ACTIONS(2620), + [anon_sym___asm] = ACTIONS(2620), + [sym_number_literal] = ACTIONS(2622), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_AT] = ACTIONS(2620), + [anon_sym_DQUOTE] = ACTIONS(2622), + [anon_sym_L_DQUOTE] = ACTIONS(2622), + [anon_sym_u_DQUOTE] = ACTIONS(2622), + [anon_sym_U_DQUOTE] = ACTIONS(2622), + [anon_sym_u8_DQUOTE] = ACTIONS(2622), + [sym_true] = ACTIONS(2620), + [sym_false] = ACTIONS(2620), + [anon_sym_NULL] = ACTIONS(2620), + [anon_sym_nullptr] = ACTIONS(2620), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2620), + [anon_sym___typeof] = ACTIONS(2620), + [anon_sym_typeof] = ACTIONS(2620), + [anon_sym_ATimport] = ACTIONS(2622), + [aux_sym_preproc_undef_token1] = ACTIONS(2620), + [anon_sym_POUND] = ACTIONS(2620), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2620), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2620), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2620), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2620), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2620), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2620), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2620), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2620), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2620), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2620), + [anon_sym_NS_AVAILABLE] = ACTIONS(2620), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2620), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2620), + [anon_sym_API_AVAILABLE] = ACTIONS(2620), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2620), + [anon_sym_API_DEPRECATED] = ACTIONS(2620), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2620), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2620), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2620), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2620), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2620), + [anon_sym___deprecated_msg] = ACTIONS(2620), + [anon_sym___deprecated_enum_msg] = ACTIONS(2620), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2620), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2620), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2620), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2620), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2620), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2620), + [anon_sym_ATprotocol] = ACTIONS(2622), + [anon_sym_ATinterface] = ACTIONS(2622), + [anon_sym_ATimplementation] = ACTIONS(2622), + [anon_sym_ATcompatibility_alias] = ACTIONS(2622), + [anon_sym_ATsynthesize] = ACTIONS(2622), + [anon_sym_ATdynamic] = ACTIONS(2622), + [anon_sym_ATtry] = ACTIONS(2622), + [anon_sym___try] = ACTIONS(2620), + [anon_sym_ATthrow] = ACTIONS(2622), + [anon_sym_ATselector] = ACTIONS(2622), + [anon_sym_ATavailable] = ACTIONS(2622), + [anon_sym___builtin_available] = ACTIONS(2620), + [anon_sym_va_arg] = ACTIONS(2620), + [anon_sym_ATencode] = ACTIONS(2622), + [anon_sym_ATsynchronized] = ACTIONS(2622), + [anon_sym_BOOL] = ACTIONS(2620), + [anon_sym_IMP] = ACTIONS(2620), + [anon_sym_SEL] = ACTIONS(2620), + [anon_sym_Class] = ACTIONS(2620), + [anon_sym_id] = ACTIONS(2620), + }, + [290] = { + [sym_identifier] = ACTIONS(2624), + [aux_sym_preproc_include_token1] = ACTIONS(2624), + [aux_sym_preproc_include_token2] = ACTIONS(2624), + [aux_sym_preproc_def_token1] = ACTIONS(2624), + [aux_sym_preproc_if_token1] = ACTIONS(2624), + [aux_sym_preproc_if_token2] = ACTIONS(2624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2624), + [aux_sym_preproc_else_token1] = ACTIONS(2624), + [aux_sym_preproc_elif_token1] = ACTIONS(2624), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2624), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2624), + [sym_preproc_directive] = ACTIONS(2624), + [anon_sym_LPAREN2] = ACTIONS(2626), + [anon_sym_BANG] = ACTIONS(2626), + [anon_sym_TILDE] = ACTIONS(2626), + [anon_sym_DASH] = ACTIONS(2624), + [anon_sym_PLUS] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2626), + [anon_sym_CARET] = ACTIONS(2626), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_SEMI] = ACTIONS(2626), + [anon_sym___extension__] = ACTIONS(2624), + [anon_sym_typedef] = ACTIONS(2624), + [anon_sym_extern] = ACTIONS(2624), + [anon_sym___attribute__] = ACTIONS(2624), + [anon_sym___attribute] = ACTIONS(2624), + [anon_sym_noreturn] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2626), + [anon_sym___declspec] = ACTIONS(2624), + [anon_sym___cdecl] = ACTIONS(2624), + [anon_sym___clrcall] = ACTIONS(2624), + [anon_sym___stdcall] = ACTIONS(2624), + [anon_sym___fastcall] = ACTIONS(2624), + [anon_sym___thiscall] = ACTIONS(2624), + [anon_sym___vectorcall] = ACTIONS(2624), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_signed] = ACTIONS(2624), + [anon_sym_unsigned] = ACTIONS(2624), + [anon_sym_long] = ACTIONS(2624), + [anon_sym_short] = ACTIONS(2624), + [anon_sym_static] = ACTIONS(2624), + [anon_sym_ATautoreleasepool] = ACTIONS(2626), + [anon_sym_auto] = ACTIONS(2624), + [anon_sym_register] = ACTIONS(2624), + [anon_sym_inline] = ACTIONS(2624), + [anon_sym___inline] = ACTIONS(2624), + [anon_sym___inline__] = ACTIONS(2624), + [anon_sym___forceinline] = ACTIONS(2624), + [anon_sym_thread_local] = ACTIONS(2624), + [anon_sym___thread] = ACTIONS(2624), + [anon_sym_CG_EXTERN] = ACTIONS(2624), + [anon_sym_CG_INLINE] = ACTIONS(2624), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2624), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2624), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2624), + [anon_sym_IBOutlet] = ACTIONS(2624), + [anon_sym_IBInspectable] = ACTIONS(2624), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2624), + [anon_sym_NS_INLINE] = ACTIONS(2624), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2624), + [anon_sym_OBJC_EXPORT] = ACTIONS(2624), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2624), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2624), + [anon_sym_const] = ACTIONS(2624), + [anon_sym_constexpr] = ACTIONS(2624), + [anon_sym_volatile] = ACTIONS(2624), + [anon_sym_restrict] = ACTIONS(2624), + [anon_sym___restrict__] = ACTIONS(2624), + [anon_sym__Atomic] = ACTIONS(2624), + [anon_sym__Noreturn] = ACTIONS(2624), + [anon_sym__Nonnull] = ACTIONS(2624), + [anon_sym_nullable] = ACTIONS(2624), + [anon_sym__Complex] = ACTIONS(2624), + [anon_sym__Nullable] = ACTIONS(2624), + [anon_sym__Nullable_result] = ACTIONS(2624), + [anon_sym__Null_unspecified] = ACTIONS(2624), + [anon_sym___autoreleasing] = ACTIONS(2624), + [anon_sym___block] = ACTIONS(2624), + [anon_sym___bridge] = ACTIONS(2624), + [anon_sym___bridge_retained] = ACTIONS(2624), + [anon_sym___bridge_transfer] = ACTIONS(2624), + [anon_sym___complex] = ACTIONS(2624), + [anon_sym___const] = ACTIONS(2624), + [anon_sym___imag] = ACTIONS(2624), + [anon_sym___kindof] = ACTIONS(2624), + [anon_sym___nonnull] = ACTIONS(2624), + [anon_sym___nullable] = ACTIONS(2624), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2624), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2624), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2624), + [anon_sym___real] = ACTIONS(2624), + [anon_sym___strong] = ACTIONS(2624), + [anon_sym___unsafe_unretained] = ACTIONS(2624), + [anon_sym___unused] = ACTIONS(2624), + [anon_sym___weak] = ACTIONS(2624), + [anon_sym_alignas] = ACTIONS(2624), + [anon_sym__Alignas] = ACTIONS(2624), + [sym_primitive_type] = ACTIONS(2624), + [anon_sym_enum] = ACTIONS(2624), + [anon_sym_struct] = ACTIONS(2624), + [anon_sym_union] = ACTIONS(2624), + [anon_sym_if] = ACTIONS(2624), + [anon_sym_switch] = ACTIONS(2624), + [anon_sym_case] = ACTIONS(2624), + [anon_sym_default] = ACTIONS(2624), + [anon_sym_while] = ACTIONS(2624), + [anon_sym_do] = ACTIONS(2624), + [anon_sym_for] = ACTIONS(2624), + [anon_sym_in] = ACTIONS(2624), + [anon_sym_return] = ACTIONS(2624), + [anon_sym_break] = ACTIONS(2624), + [anon_sym_continue] = ACTIONS(2624), + [anon_sym_goto] = ACTIONS(2624), + [anon_sym_DASH_DASH] = ACTIONS(2626), + [anon_sym_PLUS_PLUS] = ACTIONS(2626), + [anon_sym_sizeof] = ACTIONS(2624), + [anon_sym___alignof__] = ACTIONS(2624), + [anon_sym___alignof] = ACTIONS(2624), + [anon_sym__alignof] = ACTIONS(2624), + [anon_sym_alignof] = ACTIONS(2624), + [anon_sym__Alignof] = ACTIONS(2624), + [anon_sym_offsetof] = ACTIONS(2624), + [anon_sym__Generic] = ACTIONS(2624), + [anon_sym_asm] = ACTIONS(2624), + [anon_sym___asm__] = ACTIONS(2624), + [anon_sym___asm] = ACTIONS(2624), + [sym_number_literal] = ACTIONS(2626), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_AT] = ACTIONS(2624), + [anon_sym_DQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2626), + [anon_sym_u_DQUOTE] = ACTIONS(2626), + [anon_sym_U_DQUOTE] = ACTIONS(2626), + [anon_sym_u8_DQUOTE] = ACTIONS(2626), + [sym_true] = ACTIONS(2624), + [sym_false] = ACTIONS(2624), + [anon_sym_NULL] = ACTIONS(2624), + [anon_sym_nullptr] = ACTIONS(2624), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2624), + [anon_sym___typeof] = ACTIONS(2624), + [anon_sym_typeof] = ACTIONS(2624), + [anon_sym_ATimport] = ACTIONS(2626), + [aux_sym_preproc_undef_token1] = ACTIONS(2624), + [anon_sym_POUND] = ACTIONS(2624), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2624), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2624), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2624), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2624), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2624), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2624), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2624), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2624), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2624), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2624), + [anon_sym_NS_AVAILABLE] = ACTIONS(2624), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2624), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2624), + [anon_sym_API_AVAILABLE] = ACTIONS(2624), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2624), + [anon_sym_API_DEPRECATED] = ACTIONS(2624), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2624), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2624), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2624), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2624), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2624), + [anon_sym___deprecated_msg] = ACTIONS(2624), + [anon_sym___deprecated_enum_msg] = ACTIONS(2624), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2624), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2624), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2624), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2624), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2624), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2624), + [anon_sym_ATprotocol] = ACTIONS(2626), + [anon_sym_ATinterface] = ACTIONS(2626), + [anon_sym_ATimplementation] = ACTIONS(2626), + [anon_sym_ATcompatibility_alias] = ACTIONS(2626), + [anon_sym_ATsynthesize] = ACTIONS(2626), + [anon_sym_ATdynamic] = ACTIONS(2626), + [anon_sym_ATtry] = ACTIONS(2626), + [anon_sym___try] = ACTIONS(2624), + [anon_sym_ATthrow] = ACTIONS(2626), + [anon_sym_ATselector] = ACTIONS(2626), + [anon_sym_ATavailable] = ACTIONS(2626), + [anon_sym___builtin_available] = ACTIONS(2624), + [anon_sym_va_arg] = ACTIONS(2624), + [anon_sym_ATencode] = ACTIONS(2626), + [anon_sym_ATsynchronized] = ACTIONS(2626), + [anon_sym_BOOL] = ACTIONS(2624), + [anon_sym_IMP] = ACTIONS(2624), + [anon_sym_SEL] = ACTIONS(2624), + [anon_sym_Class] = ACTIONS(2624), + [anon_sym_id] = ACTIONS(2624), + }, + [291] = { + [sym_identifier] = ACTIONS(2628), + [aux_sym_preproc_include_token1] = ACTIONS(2628), + [aux_sym_preproc_include_token2] = ACTIONS(2628), + [aux_sym_preproc_def_token1] = ACTIONS(2628), + [aux_sym_preproc_if_token1] = ACTIONS(2628), + [aux_sym_preproc_if_token2] = ACTIONS(2628), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2628), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2628), + [aux_sym_preproc_else_token1] = ACTIONS(2628), + [aux_sym_preproc_elif_token1] = ACTIONS(2628), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2628), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2628), + [sym_preproc_directive] = ACTIONS(2628), + [anon_sym_LPAREN2] = ACTIONS(2630), + [anon_sym_BANG] = ACTIONS(2630), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2628), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_CARET] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2630), + [anon_sym_SEMI] = ACTIONS(2630), + [anon_sym___extension__] = ACTIONS(2628), + [anon_sym_typedef] = ACTIONS(2628), + [anon_sym_extern] = ACTIONS(2628), + [anon_sym___attribute__] = ACTIONS(2628), + [anon_sym___attribute] = ACTIONS(2628), + [anon_sym_noreturn] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2630), + [anon_sym___declspec] = ACTIONS(2628), + [anon_sym___cdecl] = ACTIONS(2628), + [anon_sym___clrcall] = ACTIONS(2628), + [anon_sym___stdcall] = ACTIONS(2628), + [anon_sym___fastcall] = ACTIONS(2628), + [anon_sym___thiscall] = ACTIONS(2628), + [anon_sym___vectorcall] = ACTIONS(2628), + [anon_sym_LBRACE] = ACTIONS(2630), + [anon_sym_signed] = ACTIONS(2628), + [anon_sym_unsigned] = ACTIONS(2628), + [anon_sym_long] = ACTIONS(2628), + [anon_sym_short] = ACTIONS(2628), + [anon_sym_static] = ACTIONS(2628), + [anon_sym_ATautoreleasepool] = ACTIONS(2630), + [anon_sym_auto] = ACTIONS(2628), + [anon_sym_register] = ACTIONS(2628), + [anon_sym_inline] = ACTIONS(2628), + [anon_sym___inline] = ACTIONS(2628), + [anon_sym___inline__] = ACTIONS(2628), + [anon_sym___forceinline] = ACTIONS(2628), + [anon_sym_thread_local] = ACTIONS(2628), + [anon_sym___thread] = ACTIONS(2628), + [anon_sym_CG_EXTERN] = ACTIONS(2628), + [anon_sym_CG_INLINE] = ACTIONS(2628), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2628), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2628), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2628), + [anon_sym_IBOutlet] = ACTIONS(2628), + [anon_sym_IBInspectable] = ACTIONS(2628), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2628), + [anon_sym_NS_INLINE] = ACTIONS(2628), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2628), + [anon_sym_OBJC_EXPORT] = ACTIONS(2628), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2628), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2628), + [anon_sym_const] = ACTIONS(2628), + [anon_sym_constexpr] = ACTIONS(2628), + [anon_sym_volatile] = ACTIONS(2628), + [anon_sym_restrict] = ACTIONS(2628), + [anon_sym___restrict__] = ACTIONS(2628), + [anon_sym__Atomic] = ACTIONS(2628), + [anon_sym__Noreturn] = ACTIONS(2628), + [anon_sym__Nonnull] = ACTIONS(2628), + [anon_sym_nullable] = ACTIONS(2628), + [anon_sym__Complex] = ACTIONS(2628), + [anon_sym__Nullable] = ACTIONS(2628), + [anon_sym__Nullable_result] = ACTIONS(2628), + [anon_sym__Null_unspecified] = ACTIONS(2628), + [anon_sym___autoreleasing] = ACTIONS(2628), + [anon_sym___block] = ACTIONS(2628), + [anon_sym___bridge] = ACTIONS(2628), + [anon_sym___bridge_retained] = ACTIONS(2628), + [anon_sym___bridge_transfer] = ACTIONS(2628), + [anon_sym___complex] = ACTIONS(2628), + [anon_sym___const] = ACTIONS(2628), + [anon_sym___imag] = ACTIONS(2628), + [anon_sym___kindof] = ACTIONS(2628), + [anon_sym___nonnull] = ACTIONS(2628), + [anon_sym___nullable] = ACTIONS(2628), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2628), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2628), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2628), + [anon_sym___real] = ACTIONS(2628), + [anon_sym___strong] = ACTIONS(2628), + [anon_sym___unsafe_unretained] = ACTIONS(2628), + [anon_sym___unused] = ACTIONS(2628), + [anon_sym___weak] = ACTIONS(2628), + [anon_sym_alignas] = ACTIONS(2628), + [anon_sym__Alignas] = ACTIONS(2628), + [sym_primitive_type] = ACTIONS(2628), + [anon_sym_enum] = ACTIONS(2628), + [anon_sym_struct] = ACTIONS(2628), + [anon_sym_union] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_switch] = ACTIONS(2628), + [anon_sym_case] = ACTIONS(2628), + [anon_sym_default] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [anon_sym_do] = ACTIONS(2628), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_in] = ACTIONS(2628), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_break] = ACTIONS(2628), + [anon_sym_continue] = ACTIONS(2628), + [anon_sym_goto] = ACTIONS(2628), + [anon_sym_DASH_DASH] = ACTIONS(2630), + [anon_sym_PLUS_PLUS] = ACTIONS(2630), + [anon_sym_sizeof] = ACTIONS(2628), + [anon_sym___alignof__] = ACTIONS(2628), + [anon_sym___alignof] = ACTIONS(2628), + [anon_sym__alignof] = ACTIONS(2628), + [anon_sym_alignof] = ACTIONS(2628), + [anon_sym__Alignof] = ACTIONS(2628), + [anon_sym_offsetof] = ACTIONS(2628), + [anon_sym__Generic] = ACTIONS(2628), + [anon_sym_asm] = ACTIONS(2628), + [anon_sym___asm__] = ACTIONS(2628), + [anon_sym___asm] = ACTIONS(2628), + [sym_number_literal] = ACTIONS(2630), + [anon_sym_L_SQUOTE] = ACTIONS(2630), + [anon_sym_u_SQUOTE] = ACTIONS(2630), + [anon_sym_U_SQUOTE] = ACTIONS(2630), + [anon_sym_u8_SQUOTE] = ACTIONS(2630), + [anon_sym_SQUOTE] = ACTIONS(2630), + [anon_sym_AT] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2630), + [anon_sym_L_DQUOTE] = ACTIONS(2630), + [anon_sym_u_DQUOTE] = ACTIONS(2630), + [anon_sym_U_DQUOTE] = ACTIONS(2630), + [anon_sym_u8_DQUOTE] = ACTIONS(2630), + [sym_true] = ACTIONS(2628), + [sym_false] = ACTIONS(2628), + [anon_sym_NULL] = ACTIONS(2628), + [anon_sym_nullptr] = ACTIONS(2628), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2628), + [anon_sym___typeof] = ACTIONS(2628), + [anon_sym_typeof] = ACTIONS(2628), + [anon_sym_ATimport] = ACTIONS(2630), + [aux_sym_preproc_undef_token1] = ACTIONS(2628), + [anon_sym_POUND] = ACTIONS(2628), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2628), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2628), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2628), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2628), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2628), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2628), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2628), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2628), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2628), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2628), + [anon_sym_NS_AVAILABLE] = ACTIONS(2628), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2628), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2628), + [anon_sym_API_AVAILABLE] = ACTIONS(2628), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2628), + [anon_sym_API_DEPRECATED] = ACTIONS(2628), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2628), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2628), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2628), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2628), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2628), + [anon_sym___deprecated_msg] = ACTIONS(2628), + [anon_sym___deprecated_enum_msg] = ACTIONS(2628), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2628), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2628), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2628), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2628), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2628), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2628), + [anon_sym_ATprotocol] = ACTIONS(2630), + [anon_sym_ATinterface] = ACTIONS(2630), + [anon_sym_ATimplementation] = ACTIONS(2630), + [anon_sym_ATcompatibility_alias] = ACTIONS(2630), + [anon_sym_ATsynthesize] = ACTIONS(2630), + [anon_sym_ATdynamic] = ACTIONS(2630), + [anon_sym_ATtry] = ACTIONS(2630), + [anon_sym___try] = ACTIONS(2628), + [anon_sym_ATthrow] = ACTIONS(2630), + [anon_sym_ATselector] = ACTIONS(2630), + [anon_sym_ATavailable] = ACTIONS(2630), + [anon_sym___builtin_available] = ACTIONS(2628), + [anon_sym_va_arg] = ACTIONS(2628), + [anon_sym_ATencode] = ACTIONS(2630), + [anon_sym_ATsynchronized] = ACTIONS(2630), + [anon_sym_BOOL] = ACTIONS(2628), + [anon_sym_IMP] = ACTIONS(2628), + [anon_sym_SEL] = ACTIONS(2628), + [anon_sym_Class] = ACTIONS(2628), + [anon_sym_id] = ACTIONS(2628), + }, + [292] = { + [sym_identifier] = ACTIONS(2632), + [aux_sym_preproc_include_token1] = ACTIONS(2632), + [aux_sym_preproc_include_token2] = ACTIONS(2632), + [aux_sym_preproc_def_token1] = ACTIONS(2632), + [aux_sym_preproc_if_token1] = ACTIONS(2632), + [aux_sym_preproc_if_token2] = ACTIONS(2632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2632), + [aux_sym_preproc_else_token1] = ACTIONS(2632), + [aux_sym_preproc_elif_token1] = ACTIONS(2632), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2632), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2632), + [sym_preproc_directive] = ACTIONS(2632), + [anon_sym_LPAREN2] = ACTIONS(2634), + [anon_sym_BANG] = ACTIONS(2634), + [anon_sym_TILDE] = ACTIONS(2634), + [anon_sym_DASH] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(2632), + [anon_sym_STAR] = ACTIONS(2634), + [anon_sym_CARET] = ACTIONS(2634), + [anon_sym_AMP] = ACTIONS(2634), + [anon_sym_SEMI] = ACTIONS(2634), + [anon_sym___extension__] = ACTIONS(2632), + [anon_sym_typedef] = ACTIONS(2632), + [anon_sym_extern] = ACTIONS(2632), + [anon_sym___attribute__] = ACTIONS(2632), + [anon_sym___attribute] = ACTIONS(2632), + [anon_sym_noreturn] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2634), + [anon_sym___declspec] = ACTIONS(2632), + [anon_sym___cdecl] = ACTIONS(2632), + [anon_sym___clrcall] = ACTIONS(2632), + [anon_sym___stdcall] = ACTIONS(2632), + [anon_sym___fastcall] = ACTIONS(2632), + [anon_sym___thiscall] = ACTIONS(2632), + [anon_sym___vectorcall] = ACTIONS(2632), + [anon_sym_LBRACE] = ACTIONS(2634), + [anon_sym_signed] = ACTIONS(2632), + [anon_sym_unsigned] = ACTIONS(2632), + [anon_sym_long] = ACTIONS(2632), + [anon_sym_short] = ACTIONS(2632), + [anon_sym_static] = ACTIONS(2632), + [anon_sym_ATautoreleasepool] = ACTIONS(2634), + [anon_sym_auto] = ACTIONS(2632), + [anon_sym_register] = ACTIONS(2632), + [anon_sym_inline] = ACTIONS(2632), + [anon_sym___inline] = ACTIONS(2632), + [anon_sym___inline__] = ACTIONS(2632), + [anon_sym___forceinline] = ACTIONS(2632), + [anon_sym_thread_local] = ACTIONS(2632), + [anon_sym___thread] = ACTIONS(2632), + [anon_sym_CG_EXTERN] = ACTIONS(2632), + [anon_sym_CG_INLINE] = ACTIONS(2632), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2632), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2632), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2632), + [anon_sym_IBOutlet] = ACTIONS(2632), + [anon_sym_IBInspectable] = ACTIONS(2632), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2632), + [anon_sym_NS_INLINE] = ACTIONS(2632), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2632), + [anon_sym_OBJC_EXPORT] = ACTIONS(2632), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2632), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2632), + [anon_sym_const] = ACTIONS(2632), + [anon_sym_constexpr] = ACTIONS(2632), + [anon_sym_volatile] = ACTIONS(2632), + [anon_sym_restrict] = ACTIONS(2632), + [anon_sym___restrict__] = ACTIONS(2632), + [anon_sym__Atomic] = ACTIONS(2632), + [anon_sym__Noreturn] = ACTIONS(2632), + [anon_sym__Nonnull] = ACTIONS(2632), + [anon_sym_nullable] = ACTIONS(2632), + [anon_sym__Complex] = ACTIONS(2632), + [anon_sym__Nullable] = ACTIONS(2632), + [anon_sym__Nullable_result] = ACTIONS(2632), + [anon_sym__Null_unspecified] = ACTIONS(2632), + [anon_sym___autoreleasing] = ACTIONS(2632), + [anon_sym___block] = ACTIONS(2632), + [anon_sym___bridge] = ACTIONS(2632), + [anon_sym___bridge_retained] = ACTIONS(2632), + [anon_sym___bridge_transfer] = ACTIONS(2632), + [anon_sym___complex] = ACTIONS(2632), + [anon_sym___const] = ACTIONS(2632), + [anon_sym___imag] = ACTIONS(2632), + [anon_sym___kindof] = ACTIONS(2632), + [anon_sym___nonnull] = ACTIONS(2632), + [anon_sym___nullable] = ACTIONS(2632), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2632), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2632), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2632), + [anon_sym___real] = ACTIONS(2632), + [anon_sym___strong] = ACTIONS(2632), + [anon_sym___unsafe_unretained] = ACTIONS(2632), + [anon_sym___unused] = ACTIONS(2632), + [anon_sym___weak] = ACTIONS(2632), + [anon_sym_alignas] = ACTIONS(2632), + [anon_sym__Alignas] = ACTIONS(2632), + [sym_primitive_type] = ACTIONS(2632), + [anon_sym_enum] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2632), + [anon_sym_union] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_switch] = ACTIONS(2632), + [anon_sym_case] = ACTIONS(2632), + [anon_sym_default] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_do] = ACTIONS(2632), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_in] = ACTIONS(2632), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_break] = ACTIONS(2632), + [anon_sym_continue] = ACTIONS(2632), + [anon_sym_goto] = ACTIONS(2632), + [anon_sym_DASH_DASH] = ACTIONS(2634), + [anon_sym_PLUS_PLUS] = ACTIONS(2634), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2632), + [anon_sym___alignof] = ACTIONS(2632), + [anon_sym__alignof] = ACTIONS(2632), + [anon_sym_alignof] = ACTIONS(2632), + [anon_sym__Alignof] = ACTIONS(2632), + [anon_sym_offsetof] = ACTIONS(2632), + [anon_sym__Generic] = ACTIONS(2632), + [anon_sym_asm] = ACTIONS(2632), + [anon_sym___asm__] = ACTIONS(2632), + [anon_sym___asm] = ACTIONS(2632), + [sym_number_literal] = ACTIONS(2634), + [anon_sym_L_SQUOTE] = ACTIONS(2634), + [anon_sym_u_SQUOTE] = ACTIONS(2634), + [anon_sym_U_SQUOTE] = ACTIONS(2634), + [anon_sym_u8_SQUOTE] = ACTIONS(2634), + [anon_sym_SQUOTE] = ACTIONS(2634), + [anon_sym_AT] = ACTIONS(2632), + [anon_sym_DQUOTE] = ACTIONS(2634), + [anon_sym_L_DQUOTE] = ACTIONS(2634), + [anon_sym_u_DQUOTE] = ACTIONS(2634), + [anon_sym_U_DQUOTE] = ACTIONS(2634), + [anon_sym_u8_DQUOTE] = ACTIONS(2634), + [sym_true] = ACTIONS(2632), + [sym_false] = ACTIONS(2632), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2632), + [anon_sym___typeof] = ACTIONS(2632), + [anon_sym_typeof] = ACTIONS(2632), + [anon_sym_ATimport] = ACTIONS(2634), + [aux_sym_preproc_undef_token1] = ACTIONS(2632), + [anon_sym_POUND] = ACTIONS(2632), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2632), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2632), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2632), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2632), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2632), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2632), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2632), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2632), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2632), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2632), + [anon_sym_NS_AVAILABLE] = ACTIONS(2632), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2632), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2632), + [anon_sym_API_AVAILABLE] = ACTIONS(2632), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2632), + [anon_sym_API_DEPRECATED] = ACTIONS(2632), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2632), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2632), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2632), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2632), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2632), + [anon_sym___deprecated_msg] = ACTIONS(2632), + [anon_sym___deprecated_enum_msg] = ACTIONS(2632), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2632), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2632), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2632), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2632), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2632), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2632), + [anon_sym_ATprotocol] = ACTIONS(2634), + [anon_sym_ATinterface] = ACTIONS(2634), + [anon_sym_ATimplementation] = ACTIONS(2634), + [anon_sym_ATcompatibility_alias] = ACTIONS(2634), + [anon_sym_ATsynthesize] = ACTIONS(2634), + [anon_sym_ATdynamic] = ACTIONS(2634), + [anon_sym_ATtry] = ACTIONS(2634), + [anon_sym___try] = ACTIONS(2632), + [anon_sym_ATthrow] = ACTIONS(2634), + [anon_sym_ATselector] = ACTIONS(2634), + [anon_sym_ATavailable] = ACTIONS(2634), + [anon_sym___builtin_available] = ACTIONS(2632), + [anon_sym_va_arg] = ACTIONS(2632), + [anon_sym_ATencode] = ACTIONS(2634), + [anon_sym_ATsynchronized] = ACTIONS(2634), + [anon_sym_BOOL] = ACTIONS(2632), + [anon_sym_IMP] = ACTIONS(2632), + [anon_sym_SEL] = ACTIONS(2632), + [anon_sym_Class] = ACTIONS(2632), + [anon_sym_id] = ACTIONS(2632), + }, + [293] = { + [sym_identifier] = ACTIONS(2636), + [aux_sym_preproc_include_token1] = ACTIONS(2636), + [aux_sym_preproc_include_token2] = ACTIONS(2636), + [aux_sym_preproc_def_token1] = ACTIONS(2636), + [aux_sym_preproc_if_token1] = ACTIONS(2636), + [aux_sym_preproc_if_token2] = ACTIONS(2636), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2636), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2636), + [aux_sym_preproc_else_token1] = ACTIONS(2636), + [aux_sym_preproc_elif_token1] = ACTIONS(2636), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2636), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2636), + [sym_preproc_directive] = ACTIONS(2636), + [anon_sym_LPAREN2] = ACTIONS(2638), + [anon_sym_BANG] = ACTIONS(2638), + [anon_sym_TILDE] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_PLUS] = ACTIONS(2636), + [anon_sym_STAR] = ACTIONS(2638), + [anon_sym_CARET] = ACTIONS(2638), + [anon_sym_AMP] = ACTIONS(2638), + [anon_sym_SEMI] = ACTIONS(2638), + [anon_sym___extension__] = ACTIONS(2636), + [anon_sym_typedef] = ACTIONS(2636), + [anon_sym_extern] = ACTIONS(2636), + [anon_sym___attribute__] = ACTIONS(2636), + [anon_sym___attribute] = ACTIONS(2636), + [anon_sym_noreturn] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2638), + [anon_sym___declspec] = ACTIONS(2636), + [anon_sym___cdecl] = ACTIONS(2636), + [anon_sym___clrcall] = ACTIONS(2636), + [anon_sym___stdcall] = ACTIONS(2636), + [anon_sym___fastcall] = ACTIONS(2636), + [anon_sym___thiscall] = ACTIONS(2636), + [anon_sym___vectorcall] = ACTIONS(2636), + [anon_sym_LBRACE] = ACTIONS(2638), + [anon_sym_signed] = ACTIONS(2636), + [anon_sym_unsigned] = ACTIONS(2636), + [anon_sym_long] = ACTIONS(2636), + [anon_sym_short] = ACTIONS(2636), + [anon_sym_static] = ACTIONS(2636), + [anon_sym_ATautoreleasepool] = ACTIONS(2638), + [anon_sym_auto] = ACTIONS(2636), + [anon_sym_register] = ACTIONS(2636), + [anon_sym_inline] = ACTIONS(2636), + [anon_sym___inline] = ACTIONS(2636), + [anon_sym___inline__] = ACTIONS(2636), + [anon_sym___forceinline] = ACTIONS(2636), + [anon_sym_thread_local] = ACTIONS(2636), + [anon_sym___thread] = ACTIONS(2636), + [anon_sym_CG_EXTERN] = ACTIONS(2636), + [anon_sym_CG_INLINE] = ACTIONS(2636), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2636), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2636), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2636), + [anon_sym_IBOutlet] = ACTIONS(2636), + [anon_sym_IBInspectable] = ACTIONS(2636), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2636), + [anon_sym_NS_INLINE] = ACTIONS(2636), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2636), + [anon_sym_OBJC_EXPORT] = ACTIONS(2636), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2636), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2636), + [anon_sym_const] = ACTIONS(2636), + [anon_sym_constexpr] = ACTIONS(2636), + [anon_sym_volatile] = ACTIONS(2636), + [anon_sym_restrict] = ACTIONS(2636), + [anon_sym___restrict__] = ACTIONS(2636), + [anon_sym__Atomic] = ACTIONS(2636), + [anon_sym__Noreturn] = ACTIONS(2636), + [anon_sym__Nonnull] = ACTIONS(2636), + [anon_sym_nullable] = ACTIONS(2636), + [anon_sym__Complex] = ACTIONS(2636), + [anon_sym__Nullable] = ACTIONS(2636), + [anon_sym__Nullable_result] = ACTIONS(2636), + [anon_sym__Null_unspecified] = ACTIONS(2636), + [anon_sym___autoreleasing] = ACTIONS(2636), + [anon_sym___block] = ACTIONS(2636), + [anon_sym___bridge] = ACTIONS(2636), + [anon_sym___bridge_retained] = ACTIONS(2636), + [anon_sym___bridge_transfer] = ACTIONS(2636), + [anon_sym___complex] = ACTIONS(2636), + [anon_sym___const] = ACTIONS(2636), + [anon_sym___imag] = ACTIONS(2636), + [anon_sym___kindof] = ACTIONS(2636), + [anon_sym___nonnull] = ACTIONS(2636), + [anon_sym___nullable] = ACTIONS(2636), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2636), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2636), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2636), + [anon_sym___real] = ACTIONS(2636), + [anon_sym___strong] = ACTIONS(2636), + [anon_sym___unsafe_unretained] = ACTIONS(2636), + [anon_sym___unused] = ACTIONS(2636), + [anon_sym___weak] = ACTIONS(2636), + [anon_sym_alignas] = ACTIONS(2636), + [anon_sym__Alignas] = ACTIONS(2636), + [sym_primitive_type] = ACTIONS(2636), + [anon_sym_enum] = ACTIONS(2636), + [anon_sym_struct] = ACTIONS(2636), + [anon_sym_union] = ACTIONS(2636), + [anon_sym_if] = ACTIONS(2636), + [anon_sym_switch] = ACTIONS(2636), + [anon_sym_case] = ACTIONS(2636), + [anon_sym_default] = ACTIONS(2636), + [anon_sym_while] = ACTIONS(2636), + [anon_sym_do] = ACTIONS(2636), + [anon_sym_for] = ACTIONS(2636), + [anon_sym_in] = ACTIONS(2636), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_break] = ACTIONS(2636), + [anon_sym_continue] = ACTIONS(2636), + [anon_sym_goto] = ACTIONS(2636), + [anon_sym_DASH_DASH] = ACTIONS(2638), + [anon_sym_PLUS_PLUS] = ACTIONS(2638), + [anon_sym_sizeof] = ACTIONS(2636), + [anon_sym___alignof__] = ACTIONS(2636), + [anon_sym___alignof] = ACTIONS(2636), + [anon_sym__alignof] = ACTIONS(2636), + [anon_sym_alignof] = ACTIONS(2636), + [anon_sym__Alignof] = ACTIONS(2636), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2636), + [anon_sym_asm] = ACTIONS(2636), + [anon_sym___asm__] = ACTIONS(2636), + [anon_sym___asm] = ACTIONS(2636), + [sym_number_literal] = ACTIONS(2638), + [anon_sym_L_SQUOTE] = ACTIONS(2638), + [anon_sym_u_SQUOTE] = ACTIONS(2638), + [anon_sym_U_SQUOTE] = ACTIONS(2638), + [anon_sym_u8_SQUOTE] = ACTIONS(2638), + [anon_sym_SQUOTE] = ACTIONS(2638), + [anon_sym_AT] = ACTIONS(2636), + [anon_sym_DQUOTE] = ACTIONS(2638), + [anon_sym_L_DQUOTE] = ACTIONS(2638), + [anon_sym_u_DQUOTE] = ACTIONS(2638), + [anon_sym_U_DQUOTE] = ACTIONS(2638), + [anon_sym_u8_DQUOTE] = ACTIONS(2638), + [sym_true] = ACTIONS(2636), + [sym_false] = ACTIONS(2636), + [anon_sym_NULL] = ACTIONS(2636), + [anon_sym_nullptr] = ACTIONS(2636), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2636), + [anon_sym___typeof] = ACTIONS(2636), + [anon_sym_typeof] = ACTIONS(2636), + [anon_sym_ATimport] = ACTIONS(2638), + [aux_sym_preproc_undef_token1] = ACTIONS(2636), + [anon_sym_POUND] = ACTIONS(2636), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2636), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2636), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2636), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2636), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2636), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2636), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2636), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2636), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2636), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2636), + [anon_sym_NS_AVAILABLE] = ACTIONS(2636), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2636), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2636), + [anon_sym_API_AVAILABLE] = ACTIONS(2636), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2636), + [anon_sym_API_DEPRECATED] = ACTIONS(2636), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2636), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2636), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2636), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2636), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2636), + [anon_sym___deprecated_msg] = ACTIONS(2636), + [anon_sym___deprecated_enum_msg] = ACTIONS(2636), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2636), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2636), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2636), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2636), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2636), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2636), + [anon_sym_ATprotocol] = ACTIONS(2638), + [anon_sym_ATinterface] = ACTIONS(2638), + [anon_sym_ATimplementation] = ACTIONS(2638), + [anon_sym_ATcompatibility_alias] = ACTIONS(2638), + [anon_sym_ATsynthesize] = ACTIONS(2638), + [anon_sym_ATdynamic] = ACTIONS(2638), + [anon_sym_ATtry] = ACTIONS(2638), + [anon_sym___try] = ACTIONS(2636), + [anon_sym_ATthrow] = ACTIONS(2638), + [anon_sym_ATselector] = ACTIONS(2638), + [anon_sym_ATavailable] = ACTIONS(2638), + [anon_sym___builtin_available] = ACTIONS(2636), + [anon_sym_va_arg] = ACTIONS(2636), + [anon_sym_ATencode] = ACTIONS(2638), + [anon_sym_ATsynchronized] = ACTIONS(2638), + [anon_sym_BOOL] = ACTIONS(2636), + [anon_sym_IMP] = ACTIONS(2636), + [anon_sym_SEL] = ACTIONS(2636), + [anon_sym_Class] = ACTIONS(2636), + [anon_sym_id] = ACTIONS(2636), + }, + [294] = { + [sym_identifier] = ACTIONS(2640), + [aux_sym_preproc_include_token1] = ACTIONS(2640), + [aux_sym_preproc_include_token2] = ACTIONS(2640), + [aux_sym_preproc_def_token1] = ACTIONS(2640), + [aux_sym_preproc_if_token1] = ACTIONS(2640), + [aux_sym_preproc_if_token2] = ACTIONS(2640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2640), + [aux_sym_preproc_else_token1] = ACTIONS(2640), + [aux_sym_preproc_elif_token1] = ACTIONS(2640), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2640), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2640), + [sym_preproc_directive] = ACTIONS(2640), + [anon_sym_LPAREN2] = ACTIONS(2642), + [anon_sym_BANG] = ACTIONS(2642), + [anon_sym_TILDE] = ACTIONS(2642), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2642), + [anon_sym_CARET] = ACTIONS(2642), + [anon_sym_AMP] = ACTIONS(2642), + [anon_sym_SEMI] = ACTIONS(2642), + [anon_sym___extension__] = ACTIONS(2640), + [anon_sym_typedef] = ACTIONS(2640), + [anon_sym_extern] = ACTIONS(2640), + [anon_sym___attribute__] = ACTIONS(2640), + [anon_sym___attribute] = ACTIONS(2640), + [anon_sym_noreturn] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym___declspec] = ACTIONS(2640), + [anon_sym___cdecl] = ACTIONS(2640), + [anon_sym___clrcall] = ACTIONS(2640), + [anon_sym___stdcall] = ACTIONS(2640), + [anon_sym___fastcall] = ACTIONS(2640), + [anon_sym___thiscall] = ACTIONS(2640), + [anon_sym___vectorcall] = ACTIONS(2640), + [anon_sym_LBRACE] = ACTIONS(2642), + [anon_sym_signed] = ACTIONS(2640), + [anon_sym_unsigned] = ACTIONS(2640), + [anon_sym_long] = ACTIONS(2640), + [anon_sym_short] = ACTIONS(2640), + [anon_sym_static] = ACTIONS(2640), + [anon_sym_ATautoreleasepool] = ACTIONS(2642), + [anon_sym_auto] = ACTIONS(2640), + [anon_sym_register] = ACTIONS(2640), + [anon_sym_inline] = ACTIONS(2640), + [anon_sym___inline] = ACTIONS(2640), + [anon_sym___inline__] = ACTIONS(2640), + [anon_sym___forceinline] = ACTIONS(2640), + [anon_sym_thread_local] = ACTIONS(2640), + [anon_sym___thread] = ACTIONS(2640), + [anon_sym_CG_EXTERN] = ACTIONS(2640), + [anon_sym_CG_INLINE] = ACTIONS(2640), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2640), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2640), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2640), + [anon_sym_IBOutlet] = ACTIONS(2640), + [anon_sym_IBInspectable] = ACTIONS(2640), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2640), + [anon_sym_NS_INLINE] = ACTIONS(2640), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2640), + [anon_sym_OBJC_EXPORT] = ACTIONS(2640), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2640), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2640), + [anon_sym_const] = ACTIONS(2640), + [anon_sym_constexpr] = ACTIONS(2640), + [anon_sym_volatile] = ACTIONS(2640), + [anon_sym_restrict] = ACTIONS(2640), + [anon_sym___restrict__] = ACTIONS(2640), + [anon_sym__Atomic] = ACTIONS(2640), + [anon_sym__Noreturn] = ACTIONS(2640), + [anon_sym__Nonnull] = ACTIONS(2640), + [anon_sym_nullable] = ACTIONS(2640), + [anon_sym__Complex] = ACTIONS(2640), + [anon_sym__Nullable] = ACTIONS(2640), + [anon_sym__Nullable_result] = ACTIONS(2640), + [anon_sym__Null_unspecified] = ACTIONS(2640), + [anon_sym___autoreleasing] = ACTIONS(2640), + [anon_sym___block] = ACTIONS(2640), + [anon_sym___bridge] = ACTIONS(2640), + [anon_sym___bridge_retained] = ACTIONS(2640), + [anon_sym___bridge_transfer] = ACTIONS(2640), + [anon_sym___complex] = ACTIONS(2640), + [anon_sym___const] = ACTIONS(2640), + [anon_sym___imag] = ACTIONS(2640), + [anon_sym___kindof] = ACTIONS(2640), + [anon_sym___nonnull] = ACTIONS(2640), + [anon_sym___nullable] = ACTIONS(2640), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2640), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2640), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2640), + [anon_sym___real] = ACTIONS(2640), + [anon_sym___strong] = ACTIONS(2640), + [anon_sym___unsafe_unretained] = ACTIONS(2640), + [anon_sym___unused] = ACTIONS(2640), + [anon_sym___weak] = ACTIONS(2640), + [anon_sym_alignas] = ACTIONS(2640), + [anon_sym__Alignas] = ACTIONS(2640), + [sym_primitive_type] = ACTIONS(2640), + [anon_sym_enum] = ACTIONS(2640), + [anon_sym_struct] = ACTIONS(2640), + [anon_sym_union] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_switch] = ACTIONS(2640), + [anon_sym_case] = ACTIONS(2640), + [anon_sym_default] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_in] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_break] = ACTIONS(2640), + [anon_sym_continue] = ACTIONS(2640), + [anon_sym_goto] = ACTIONS(2640), + [anon_sym_DASH_DASH] = ACTIONS(2642), + [anon_sym_PLUS_PLUS] = ACTIONS(2642), + [anon_sym_sizeof] = ACTIONS(2640), + [anon_sym___alignof__] = ACTIONS(2640), + [anon_sym___alignof] = ACTIONS(2640), + [anon_sym__alignof] = ACTIONS(2640), + [anon_sym_alignof] = ACTIONS(2640), + [anon_sym__Alignof] = ACTIONS(2640), + [anon_sym_offsetof] = ACTIONS(2640), + [anon_sym__Generic] = ACTIONS(2640), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [anon_sym___asm] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2642), + [anon_sym_u_SQUOTE] = ACTIONS(2642), + [anon_sym_U_SQUOTE] = ACTIONS(2642), + [anon_sym_u8_SQUOTE] = ACTIONS(2642), + [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_AT] = ACTIONS(2640), + [anon_sym_DQUOTE] = ACTIONS(2642), + [anon_sym_L_DQUOTE] = ACTIONS(2642), + [anon_sym_u_DQUOTE] = ACTIONS(2642), + [anon_sym_U_DQUOTE] = ACTIONS(2642), + [anon_sym_u8_DQUOTE] = ACTIONS(2642), + [sym_true] = ACTIONS(2640), + [sym_false] = ACTIONS(2640), + [anon_sym_NULL] = ACTIONS(2640), + [anon_sym_nullptr] = ACTIONS(2640), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2640), + [anon_sym___typeof] = ACTIONS(2640), + [anon_sym_typeof] = ACTIONS(2640), + [anon_sym_ATimport] = ACTIONS(2642), + [aux_sym_preproc_undef_token1] = ACTIONS(2640), + [anon_sym_POUND] = ACTIONS(2640), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2640), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2640), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2640), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2640), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2640), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2640), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2640), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2640), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2640), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2640), + [anon_sym_NS_AVAILABLE] = ACTIONS(2640), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2640), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2640), + [anon_sym_API_AVAILABLE] = ACTIONS(2640), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2640), + [anon_sym_API_DEPRECATED] = ACTIONS(2640), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2640), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2640), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2640), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2640), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2640), + [anon_sym___deprecated_msg] = ACTIONS(2640), + [anon_sym___deprecated_enum_msg] = ACTIONS(2640), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2640), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2640), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2640), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2640), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2640), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2640), + [anon_sym_ATprotocol] = ACTIONS(2642), + [anon_sym_ATinterface] = ACTIONS(2642), + [anon_sym_ATimplementation] = ACTIONS(2642), + [anon_sym_ATcompatibility_alias] = ACTIONS(2642), + [anon_sym_ATsynthesize] = ACTIONS(2642), + [anon_sym_ATdynamic] = ACTIONS(2642), + [anon_sym_ATtry] = ACTIONS(2642), + [anon_sym___try] = ACTIONS(2640), + [anon_sym_ATthrow] = ACTIONS(2642), + [anon_sym_ATselector] = ACTIONS(2642), + [anon_sym_ATavailable] = ACTIONS(2642), + [anon_sym___builtin_available] = ACTIONS(2640), + [anon_sym_va_arg] = ACTIONS(2640), + [anon_sym_ATencode] = ACTIONS(2642), + [anon_sym_ATsynchronized] = ACTIONS(2642), + [anon_sym_BOOL] = ACTIONS(2640), + [anon_sym_IMP] = ACTIONS(2640), + [anon_sym_SEL] = ACTIONS(2640), + [anon_sym_Class] = ACTIONS(2640), + [anon_sym_id] = ACTIONS(2640), + }, + [295] = { + [sym_identifier] = ACTIONS(2644), + [aux_sym_preproc_include_token1] = ACTIONS(2644), + [aux_sym_preproc_include_token2] = ACTIONS(2644), + [aux_sym_preproc_def_token1] = ACTIONS(2644), + [aux_sym_preproc_if_token1] = ACTIONS(2644), + [aux_sym_preproc_if_token2] = ACTIONS(2644), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2644), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2644), + [aux_sym_preproc_else_token1] = ACTIONS(2644), + [aux_sym_preproc_elif_token1] = ACTIONS(2644), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2644), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2644), + [sym_preproc_directive] = ACTIONS(2644), + [anon_sym_LPAREN2] = ACTIONS(2646), + [anon_sym_BANG] = ACTIONS(2646), + [anon_sym_TILDE] = ACTIONS(2646), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_PLUS] = ACTIONS(2644), + [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_CARET] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2646), + [anon_sym_SEMI] = ACTIONS(2646), + [anon_sym___extension__] = ACTIONS(2644), + [anon_sym_typedef] = ACTIONS(2644), + [anon_sym_extern] = ACTIONS(2644), + [anon_sym___attribute__] = ACTIONS(2644), + [anon_sym___attribute] = ACTIONS(2644), + [anon_sym_noreturn] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2646), + [anon_sym___declspec] = ACTIONS(2644), + [anon_sym___cdecl] = ACTIONS(2644), + [anon_sym___clrcall] = ACTIONS(2644), + [anon_sym___stdcall] = ACTIONS(2644), + [anon_sym___fastcall] = ACTIONS(2644), + [anon_sym___thiscall] = ACTIONS(2644), + [anon_sym___vectorcall] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2646), + [anon_sym_signed] = ACTIONS(2644), + [anon_sym_unsigned] = ACTIONS(2644), + [anon_sym_long] = ACTIONS(2644), + [anon_sym_short] = ACTIONS(2644), + [anon_sym_static] = ACTIONS(2644), + [anon_sym_ATautoreleasepool] = ACTIONS(2646), + [anon_sym_auto] = ACTIONS(2644), + [anon_sym_register] = ACTIONS(2644), + [anon_sym_inline] = ACTIONS(2644), + [anon_sym___inline] = ACTIONS(2644), + [anon_sym___inline__] = ACTIONS(2644), + [anon_sym___forceinline] = ACTIONS(2644), + [anon_sym_thread_local] = ACTIONS(2644), + [anon_sym___thread] = ACTIONS(2644), + [anon_sym_CG_EXTERN] = ACTIONS(2644), + [anon_sym_CG_INLINE] = ACTIONS(2644), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2644), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2644), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2644), + [anon_sym_IBOutlet] = ACTIONS(2644), + [anon_sym_IBInspectable] = ACTIONS(2644), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2644), + [anon_sym_NS_INLINE] = ACTIONS(2644), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2644), + [anon_sym_OBJC_EXPORT] = ACTIONS(2644), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2644), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2644), + [anon_sym_const] = ACTIONS(2644), + [anon_sym_constexpr] = ACTIONS(2644), + [anon_sym_volatile] = ACTIONS(2644), + [anon_sym_restrict] = ACTIONS(2644), + [anon_sym___restrict__] = ACTIONS(2644), + [anon_sym__Atomic] = ACTIONS(2644), + [anon_sym__Noreturn] = ACTIONS(2644), + [anon_sym__Nonnull] = ACTIONS(2644), + [anon_sym_nullable] = ACTIONS(2644), + [anon_sym__Complex] = ACTIONS(2644), + [anon_sym__Nullable] = ACTIONS(2644), + [anon_sym__Nullable_result] = ACTIONS(2644), + [anon_sym__Null_unspecified] = ACTIONS(2644), + [anon_sym___autoreleasing] = ACTIONS(2644), + [anon_sym___block] = ACTIONS(2644), + [anon_sym___bridge] = ACTIONS(2644), + [anon_sym___bridge_retained] = ACTIONS(2644), + [anon_sym___bridge_transfer] = ACTIONS(2644), + [anon_sym___complex] = ACTIONS(2644), + [anon_sym___const] = ACTIONS(2644), + [anon_sym___imag] = ACTIONS(2644), + [anon_sym___kindof] = ACTIONS(2644), + [anon_sym___nonnull] = ACTIONS(2644), + [anon_sym___nullable] = ACTIONS(2644), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2644), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2644), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2644), + [anon_sym___real] = ACTIONS(2644), + [anon_sym___strong] = ACTIONS(2644), + [anon_sym___unsafe_unretained] = ACTIONS(2644), + [anon_sym___unused] = ACTIONS(2644), + [anon_sym___weak] = ACTIONS(2644), + [anon_sym_alignas] = ACTIONS(2644), + [anon_sym__Alignas] = ACTIONS(2644), + [sym_primitive_type] = ACTIONS(2644), + [anon_sym_enum] = ACTIONS(2644), + [anon_sym_struct] = ACTIONS(2644), + [anon_sym_union] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_switch] = ACTIONS(2644), + [anon_sym_case] = ACTIONS(2644), + [anon_sym_default] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_do] = ACTIONS(2644), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_in] = ACTIONS(2644), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_break] = ACTIONS(2644), + [anon_sym_continue] = ACTIONS(2644), + [anon_sym_goto] = ACTIONS(2644), + [anon_sym_DASH_DASH] = ACTIONS(2646), + [anon_sym_PLUS_PLUS] = ACTIONS(2646), + [anon_sym_sizeof] = ACTIONS(2644), + [anon_sym___alignof__] = ACTIONS(2644), + [anon_sym___alignof] = ACTIONS(2644), + [anon_sym__alignof] = ACTIONS(2644), + [anon_sym_alignof] = ACTIONS(2644), + [anon_sym__Alignof] = ACTIONS(2644), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2644), + [anon_sym_asm] = ACTIONS(2644), + [anon_sym___asm__] = ACTIONS(2644), + [anon_sym___asm] = ACTIONS(2644), + [sym_number_literal] = ACTIONS(2646), + [anon_sym_L_SQUOTE] = ACTIONS(2646), + [anon_sym_u_SQUOTE] = ACTIONS(2646), + [anon_sym_U_SQUOTE] = ACTIONS(2646), + [anon_sym_u8_SQUOTE] = ACTIONS(2646), + [anon_sym_SQUOTE] = ACTIONS(2646), + [anon_sym_AT] = ACTIONS(2644), + [anon_sym_DQUOTE] = ACTIONS(2646), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2644), + [sym_false] = ACTIONS(2644), + [anon_sym_NULL] = ACTIONS(2644), + [anon_sym_nullptr] = ACTIONS(2644), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2644), + [anon_sym___typeof] = ACTIONS(2644), + [anon_sym_typeof] = ACTIONS(2644), + [anon_sym_ATimport] = ACTIONS(2646), + [aux_sym_preproc_undef_token1] = ACTIONS(2644), + [anon_sym_POUND] = ACTIONS(2644), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2644), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2644), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2644), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2644), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2644), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2644), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2644), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2644), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2644), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2644), + [anon_sym_NS_AVAILABLE] = ACTIONS(2644), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2644), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2644), + [anon_sym_API_AVAILABLE] = ACTIONS(2644), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2644), + [anon_sym_API_DEPRECATED] = ACTIONS(2644), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2644), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2644), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2644), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2644), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2644), + [anon_sym___deprecated_msg] = ACTIONS(2644), + [anon_sym___deprecated_enum_msg] = ACTIONS(2644), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2644), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2644), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2644), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2644), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2644), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2644), + [anon_sym_ATprotocol] = ACTIONS(2646), + [anon_sym_ATinterface] = ACTIONS(2646), + [anon_sym_ATimplementation] = ACTIONS(2646), + [anon_sym_ATcompatibility_alias] = ACTIONS(2646), + [anon_sym_ATsynthesize] = ACTIONS(2646), + [anon_sym_ATdynamic] = ACTIONS(2646), + [anon_sym_ATtry] = ACTIONS(2646), + [anon_sym___try] = ACTIONS(2644), + [anon_sym_ATthrow] = ACTIONS(2646), + [anon_sym_ATselector] = ACTIONS(2646), + [anon_sym_ATavailable] = ACTIONS(2646), + [anon_sym___builtin_available] = ACTIONS(2644), + [anon_sym_va_arg] = ACTIONS(2644), + [anon_sym_ATencode] = ACTIONS(2646), + [anon_sym_ATsynchronized] = ACTIONS(2646), + [anon_sym_BOOL] = ACTIONS(2644), + [anon_sym_IMP] = ACTIONS(2644), + [anon_sym_SEL] = ACTIONS(2644), + [anon_sym_Class] = ACTIONS(2644), + [anon_sym_id] = ACTIONS(2644), + }, + [296] = { + [sym_identifier] = ACTIONS(2648), + [aux_sym_preproc_include_token1] = ACTIONS(2648), + [aux_sym_preproc_include_token2] = ACTIONS(2648), + [aux_sym_preproc_def_token1] = ACTIONS(2648), + [aux_sym_preproc_if_token1] = ACTIONS(2648), + [aux_sym_preproc_if_token2] = ACTIONS(2648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2648), + [aux_sym_preproc_else_token1] = ACTIONS(2648), + [aux_sym_preproc_elif_token1] = ACTIONS(2648), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2648), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2648), + [sym_preproc_directive] = ACTIONS(2648), + [anon_sym_LPAREN2] = ACTIONS(2650), + [anon_sym_BANG] = ACTIONS(2650), + [anon_sym_TILDE] = ACTIONS(2650), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_PLUS] = ACTIONS(2648), + [anon_sym_STAR] = ACTIONS(2650), + [anon_sym_CARET] = ACTIONS(2650), + [anon_sym_AMP] = ACTIONS(2650), + [anon_sym_SEMI] = ACTIONS(2650), + [anon_sym___extension__] = ACTIONS(2648), + [anon_sym_typedef] = ACTIONS(2648), + [anon_sym_extern] = ACTIONS(2648), + [anon_sym___attribute__] = ACTIONS(2648), + [anon_sym___attribute] = ACTIONS(2648), + [anon_sym_noreturn] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(2650), + [anon_sym___declspec] = ACTIONS(2648), + [anon_sym___cdecl] = ACTIONS(2648), + [anon_sym___clrcall] = ACTIONS(2648), + [anon_sym___stdcall] = ACTIONS(2648), + [anon_sym___fastcall] = ACTIONS(2648), + [anon_sym___thiscall] = ACTIONS(2648), + [anon_sym___vectorcall] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2650), + [anon_sym_signed] = ACTIONS(2648), + [anon_sym_unsigned] = ACTIONS(2648), + [anon_sym_long] = ACTIONS(2648), + [anon_sym_short] = ACTIONS(2648), + [anon_sym_static] = ACTIONS(2648), + [anon_sym_ATautoreleasepool] = ACTIONS(2650), + [anon_sym_auto] = ACTIONS(2648), + [anon_sym_register] = ACTIONS(2648), + [anon_sym_inline] = ACTIONS(2648), + [anon_sym___inline] = ACTIONS(2648), + [anon_sym___inline__] = ACTIONS(2648), + [anon_sym___forceinline] = ACTIONS(2648), + [anon_sym_thread_local] = ACTIONS(2648), + [anon_sym___thread] = ACTIONS(2648), + [anon_sym_CG_EXTERN] = ACTIONS(2648), + [anon_sym_CG_INLINE] = ACTIONS(2648), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2648), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2648), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2648), + [anon_sym_IBOutlet] = ACTIONS(2648), + [anon_sym_IBInspectable] = ACTIONS(2648), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2648), + [anon_sym_NS_INLINE] = ACTIONS(2648), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2648), + [anon_sym_OBJC_EXPORT] = ACTIONS(2648), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2648), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2648), + [anon_sym_const] = ACTIONS(2648), + [anon_sym_constexpr] = ACTIONS(2648), + [anon_sym_volatile] = ACTIONS(2648), + [anon_sym_restrict] = ACTIONS(2648), + [anon_sym___restrict__] = ACTIONS(2648), + [anon_sym__Atomic] = ACTIONS(2648), + [anon_sym__Noreturn] = ACTIONS(2648), + [anon_sym__Nonnull] = ACTIONS(2648), + [anon_sym_nullable] = ACTIONS(2648), + [anon_sym__Complex] = ACTIONS(2648), + [anon_sym__Nullable] = ACTIONS(2648), + [anon_sym__Nullable_result] = ACTIONS(2648), + [anon_sym__Null_unspecified] = ACTIONS(2648), + [anon_sym___autoreleasing] = ACTIONS(2648), + [anon_sym___block] = ACTIONS(2648), + [anon_sym___bridge] = ACTIONS(2648), + [anon_sym___bridge_retained] = ACTIONS(2648), + [anon_sym___bridge_transfer] = ACTIONS(2648), + [anon_sym___complex] = ACTIONS(2648), + [anon_sym___const] = ACTIONS(2648), + [anon_sym___imag] = ACTIONS(2648), + [anon_sym___kindof] = ACTIONS(2648), + [anon_sym___nonnull] = ACTIONS(2648), + [anon_sym___nullable] = ACTIONS(2648), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2648), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2648), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2648), + [anon_sym___real] = ACTIONS(2648), + [anon_sym___strong] = ACTIONS(2648), + [anon_sym___unsafe_unretained] = ACTIONS(2648), + [anon_sym___unused] = ACTIONS(2648), + [anon_sym___weak] = ACTIONS(2648), + [anon_sym_alignas] = ACTIONS(2648), + [anon_sym__Alignas] = ACTIONS(2648), + [sym_primitive_type] = ACTIONS(2648), + [anon_sym_enum] = ACTIONS(2648), + [anon_sym_struct] = ACTIONS(2648), + [anon_sym_union] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2648), + [anon_sym_switch] = ACTIONS(2648), + [anon_sym_case] = ACTIONS(2648), + [anon_sym_default] = ACTIONS(2648), + [anon_sym_while] = ACTIONS(2648), + [anon_sym_do] = ACTIONS(2648), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_in] = ACTIONS(2648), + [anon_sym_return] = ACTIONS(2648), + [anon_sym_break] = ACTIONS(2648), + [anon_sym_continue] = ACTIONS(2648), + [anon_sym_goto] = ACTIONS(2648), + [anon_sym_DASH_DASH] = ACTIONS(2650), + [anon_sym_PLUS_PLUS] = ACTIONS(2650), + [anon_sym_sizeof] = ACTIONS(2648), + [anon_sym___alignof__] = ACTIONS(2648), + [anon_sym___alignof] = ACTIONS(2648), + [anon_sym__alignof] = ACTIONS(2648), + [anon_sym_alignof] = ACTIONS(2648), + [anon_sym__Alignof] = ACTIONS(2648), + [anon_sym_offsetof] = ACTIONS(2648), + [anon_sym__Generic] = ACTIONS(2648), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [anon_sym___asm] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2650), + [anon_sym_u_SQUOTE] = ACTIONS(2650), + [anon_sym_U_SQUOTE] = ACTIONS(2650), + [anon_sym_u8_SQUOTE] = ACTIONS(2650), + [anon_sym_SQUOTE] = ACTIONS(2650), + [anon_sym_AT] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(2650), + [anon_sym_L_DQUOTE] = ACTIONS(2650), + [anon_sym_u_DQUOTE] = ACTIONS(2650), + [anon_sym_U_DQUOTE] = ACTIONS(2650), + [anon_sym_u8_DQUOTE] = ACTIONS(2650), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2648), + [anon_sym_nullptr] = ACTIONS(2648), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2648), + [anon_sym___typeof] = ACTIONS(2648), + [anon_sym_typeof] = ACTIONS(2648), + [anon_sym_ATimport] = ACTIONS(2650), + [aux_sym_preproc_undef_token1] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(2648), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2648), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2648), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2648), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2648), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2648), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2648), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2648), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2648), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2648), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2648), + [anon_sym_NS_AVAILABLE] = ACTIONS(2648), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2648), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2648), + [anon_sym_API_AVAILABLE] = ACTIONS(2648), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2648), + [anon_sym_API_DEPRECATED] = ACTIONS(2648), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2648), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2648), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2648), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2648), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2648), + [anon_sym___deprecated_msg] = ACTIONS(2648), + [anon_sym___deprecated_enum_msg] = ACTIONS(2648), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2648), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2648), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2648), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2648), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2648), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2648), + [anon_sym_ATprotocol] = ACTIONS(2650), + [anon_sym_ATinterface] = ACTIONS(2650), + [anon_sym_ATimplementation] = ACTIONS(2650), + [anon_sym_ATcompatibility_alias] = ACTIONS(2650), + [anon_sym_ATsynthesize] = ACTIONS(2650), + [anon_sym_ATdynamic] = ACTIONS(2650), + [anon_sym_ATtry] = ACTIONS(2650), + [anon_sym___try] = ACTIONS(2648), + [anon_sym_ATthrow] = ACTIONS(2650), + [anon_sym_ATselector] = ACTIONS(2650), + [anon_sym_ATavailable] = ACTIONS(2650), + [anon_sym___builtin_available] = ACTIONS(2648), + [anon_sym_va_arg] = ACTIONS(2648), + [anon_sym_ATencode] = ACTIONS(2650), + [anon_sym_ATsynchronized] = ACTIONS(2650), + [anon_sym_BOOL] = ACTIONS(2648), + [anon_sym_IMP] = ACTIONS(2648), + [anon_sym_SEL] = ACTIONS(2648), + [anon_sym_Class] = ACTIONS(2648), + [anon_sym_id] = ACTIONS(2648), + }, + [297] = { + [sym_identifier] = ACTIONS(2652), + [aux_sym_preproc_include_token1] = ACTIONS(2652), + [aux_sym_preproc_include_token2] = ACTIONS(2652), + [aux_sym_preproc_def_token1] = ACTIONS(2652), + [aux_sym_preproc_if_token1] = ACTIONS(2652), + [aux_sym_preproc_if_token2] = ACTIONS(2652), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2652), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2652), + [aux_sym_preproc_else_token1] = ACTIONS(2652), + [aux_sym_preproc_elif_token1] = ACTIONS(2652), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2652), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2652), + [sym_preproc_directive] = ACTIONS(2652), + [anon_sym_LPAREN2] = ACTIONS(2654), + [anon_sym_BANG] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2654), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_STAR] = ACTIONS(2654), + [anon_sym_CARET] = ACTIONS(2654), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_SEMI] = ACTIONS(2654), + [anon_sym___extension__] = ACTIONS(2652), + [anon_sym_typedef] = ACTIONS(2652), + [anon_sym_extern] = ACTIONS(2652), + [anon_sym___attribute__] = ACTIONS(2652), + [anon_sym___attribute] = ACTIONS(2652), + [anon_sym_noreturn] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2654), + [anon_sym___declspec] = ACTIONS(2652), + [anon_sym___cdecl] = ACTIONS(2652), + [anon_sym___clrcall] = ACTIONS(2652), + [anon_sym___stdcall] = ACTIONS(2652), + [anon_sym___fastcall] = ACTIONS(2652), + [anon_sym___thiscall] = ACTIONS(2652), + [anon_sym___vectorcall] = ACTIONS(2652), + [anon_sym_LBRACE] = ACTIONS(2654), + [anon_sym_signed] = ACTIONS(2652), + [anon_sym_unsigned] = ACTIONS(2652), + [anon_sym_long] = ACTIONS(2652), + [anon_sym_short] = ACTIONS(2652), + [anon_sym_static] = ACTIONS(2652), + [anon_sym_ATautoreleasepool] = ACTIONS(2654), + [anon_sym_auto] = ACTIONS(2652), + [anon_sym_register] = ACTIONS(2652), + [anon_sym_inline] = ACTIONS(2652), + [anon_sym___inline] = ACTIONS(2652), + [anon_sym___inline__] = ACTIONS(2652), + [anon_sym___forceinline] = ACTIONS(2652), + [anon_sym_thread_local] = ACTIONS(2652), + [anon_sym___thread] = ACTIONS(2652), + [anon_sym_CG_EXTERN] = ACTIONS(2652), + [anon_sym_CG_INLINE] = ACTIONS(2652), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2652), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2652), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2652), + [anon_sym_IBOutlet] = ACTIONS(2652), + [anon_sym_IBInspectable] = ACTIONS(2652), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2652), + [anon_sym_NS_INLINE] = ACTIONS(2652), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2652), + [anon_sym_OBJC_EXPORT] = ACTIONS(2652), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2652), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2652), + [anon_sym_const] = ACTIONS(2652), + [anon_sym_constexpr] = ACTIONS(2652), + [anon_sym_volatile] = ACTIONS(2652), + [anon_sym_restrict] = ACTIONS(2652), + [anon_sym___restrict__] = ACTIONS(2652), + [anon_sym__Atomic] = ACTIONS(2652), + [anon_sym__Noreturn] = ACTIONS(2652), + [anon_sym__Nonnull] = ACTIONS(2652), + [anon_sym_nullable] = ACTIONS(2652), + [anon_sym__Complex] = ACTIONS(2652), + [anon_sym__Nullable] = ACTIONS(2652), + [anon_sym__Nullable_result] = ACTIONS(2652), + [anon_sym__Null_unspecified] = ACTIONS(2652), + [anon_sym___autoreleasing] = ACTIONS(2652), + [anon_sym___block] = ACTIONS(2652), + [anon_sym___bridge] = ACTIONS(2652), + [anon_sym___bridge_retained] = ACTIONS(2652), + [anon_sym___bridge_transfer] = ACTIONS(2652), + [anon_sym___complex] = ACTIONS(2652), + [anon_sym___const] = ACTIONS(2652), + [anon_sym___imag] = ACTIONS(2652), + [anon_sym___kindof] = ACTIONS(2652), + [anon_sym___nonnull] = ACTIONS(2652), + [anon_sym___nullable] = ACTIONS(2652), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2652), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2652), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2652), + [anon_sym___real] = ACTIONS(2652), + [anon_sym___strong] = ACTIONS(2652), + [anon_sym___unsafe_unretained] = ACTIONS(2652), + [anon_sym___unused] = ACTIONS(2652), + [anon_sym___weak] = ACTIONS(2652), + [anon_sym_alignas] = ACTIONS(2652), + [anon_sym__Alignas] = ACTIONS(2652), + [sym_primitive_type] = ACTIONS(2652), + [anon_sym_enum] = ACTIONS(2652), + [anon_sym_struct] = ACTIONS(2652), + [anon_sym_union] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_switch] = ACTIONS(2652), + [anon_sym_case] = ACTIONS(2652), + [anon_sym_default] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_do] = ACTIONS(2652), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_in] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_break] = ACTIONS(2652), + [anon_sym_continue] = ACTIONS(2652), + [anon_sym_goto] = ACTIONS(2652), + [anon_sym_DASH_DASH] = ACTIONS(2654), + [anon_sym_PLUS_PLUS] = ACTIONS(2654), + [anon_sym_sizeof] = ACTIONS(2652), + [anon_sym___alignof__] = ACTIONS(2652), + [anon_sym___alignof] = ACTIONS(2652), + [anon_sym__alignof] = ACTIONS(2652), + [anon_sym_alignof] = ACTIONS(2652), + [anon_sym__Alignof] = ACTIONS(2652), + [anon_sym_offsetof] = ACTIONS(2652), + [anon_sym__Generic] = ACTIONS(2652), + [anon_sym_asm] = ACTIONS(2652), + [anon_sym___asm__] = ACTIONS(2652), + [anon_sym___asm] = ACTIONS(2652), + [sym_number_literal] = ACTIONS(2654), + [anon_sym_L_SQUOTE] = ACTIONS(2654), + [anon_sym_u_SQUOTE] = ACTIONS(2654), + [anon_sym_U_SQUOTE] = ACTIONS(2654), + [anon_sym_u8_SQUOTE] = ACTIONS(2654), + [anon_sym_SQUOTE] = ACTIONS(2654), + [anon_sym_AT] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2654), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2652), + [sym_false] = ACTIONS(2652), + [anon_sym_NULL] = ACTIONS(2652), + [anon_sym_nullptr] = ACTIONS(2652), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2652), + [anon_sym___typeof] = ACTIONS(2652), + [anon_sym_typeof] = ACTIONS(2652), + [anon_sym_ATimport] = ACTIONS(2654), + [aux_sym_preproc_undef_token1] = ACTIONS(2652), + [anon_sym_POUND] = ACTIONS(2652), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2652), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2652), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2652), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2652), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2652), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2652), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2652), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2652), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2652), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2652), + [anon_sym_NS_AVAILABLE] = ACTIONS(2652), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2652), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2652), + [anon_sym_API_AVAILABLE] = ACTIONS(2652), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2652), + [anon_sym_API_DEPRECATED] = ACTIONS(2652), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2652), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2652), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2652), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2652), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2652), + [anon_sym___deprecated_msg] = ACTIONS(2652), + [anon_sym___deprecated_enum_msg] = ACTIONS(2652), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2652), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2652), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2652), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2652), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2652), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2652), + [anon_sym_ATprotocol] = ACTIONS(2654), + [anon_sym_ATinterface] = ACTIONS(2654), + [anon_sym_ATimplementation] = ACTIONS(2654), + [anon_sym_ATcompatibility_alias] = ACTIONS(2654), + [anon_sym_ATsynthesize] = ACTIONS(2654), + [anon_sym_ATdynamic] = ACTIONS(2654), + [anon_sym_ATtry] = ACTIONS(2654), + [anon_sym___try] = ACTIONS(2652), + [anon_sym_ATthrow] = ACTIONS(2654), + [anon_sym_ATselector] = ACTIONS(2654), + [anon_sym_ATavailable] = ACTIONS(2654), + [anon_sym___builtin_available] = ACTIONS(2652), + [anon_sym_va_arg] = ACTIONS(2652), + [anon_sym_ATencode] = ACTIONS(2654), + [anon_sym_ATsynchronized] = ACTIONS(2654), + [anon_sym_BOOL] = ACTIONS(2652), + [anon_sym_IMP] = ACTIONS(2652), + [anon_sym_SEL] = ACTIONS(2652), + [anon_sym_Class] = ACTIONS(2652), + [anon_sym_id] = ACTIONS(2652), + }, + [298] = { + [sym_identifier] = ACTIONS(2656), + [aux_sym_preproc_include_token1] = ACTIONS(2656), + [aux_sym_preproc_include_token2] = ACTIONS(2656), + [aux_sym_preproc_def_token1] = ACTIONS(2656), + [aux_sym_preproc_if_token1] = ACTIONS(2656), + [aux_sym_preproc_if_token2] = ACTIONS(2656), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2656), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2656), + [aux_sym_preproc_else_token1] = ACTIONS(2656), + [aux_sym_preproc_elif_token1] = ACTIONS(2656), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2656), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2656), + [sym_preproc_directive] = ACTIONS(2656), + [anon_sym_LPAREN2] = ACTIONS(2658), + [anon_sym_BANG] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2656), + [anon_sym_PLUS] = ACTIONS(2656), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_CARET] = ACTIONS(2658), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym___extension__] = ACTIONS(2656), + [anon_sym_typedef] = ACTIONS(2656), + [anon_sym_extern] = ACTIONS(2656), + [anon_sym___attribute__] = ACTIONS(2656), + [anon_sym___attribute] = ACTIONS(2656), + [anon_sym_noreturn] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym___declspec] = ACTIONS(2656), + [anon_sym___cdecl] = ACTIONS(2656), + [anon_sym___clrcall] = ACTIONS(2656), + [anon_sym___stdcall] = ACTIONS(2656), + [anon_sym___fastcall] = ACTIONS(2656), + [anon_sym___thiscall] = ACTIONS(2656), + [anon_sym___vectorcall] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_signed] = ACTIONS(2656), + [anon_sym_unsigned] = ACTIONS(2656), + [anon_sym_long] = ACTIONS(2656), + [anon_sym_short] = ACTIONS(2656), + [anon_sym_static] = ACTIONS(2656), + [anon_sym_ATautoreleasepool] = ACTIONS(2658), + [anon_sym_auto] = ACTIONS(2656), + [anon_sym_register] = ACTIONS(2656), + [anon_sym_inline] = ACTIONS(2656), + [anon_sym___inline] = ACTIONS(2656), + [anon_sym___inline__] = ACTIONS(2656), + [anon_sym___forceinline] = ACTIONS(2656), + [anon_sym_thread_local] = ACTIONS(2656), + [anon_sym___thread] = ACTIONS(2656), + [anon_sym_CG_EXTERN] = ACTIONS(2656), + [anon_sym_CG_INLINE] = ACTIONS(2656), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2656), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2656), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2656), + [anon_sym_IBOutlet] = ACTIONS(2656), + [anon_sym_IBInspectable] = ACTIONS(2656), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2656), + [anon_sym_NS_INLINE] = ACTIONS(2656), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2656), + [anon_sym_OBJC_EXPORT] = ACTIONS(2656), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2656), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2656), + [anon_sym_const] = ACTIONS(2656), + [anon_sym_constexpr] = ACTIONS(2656), + [anon_sym_volatile] = ACTIONS(2656), + [anon_sym_restrict] = ACTIONS(2656), + [anon_sym___restrict__] = ACTIONS(2656), + [anon_sym__Atomic] = ACTIONS(2656), + [anon_sym__Noreturn] = ACTIONS(2656), + [anon_sym__Nonnull] = ACTIONS(2656), + [anon_sym_nullable] = ACTIONS(2656), + [anon_sym__Complex] = ACTIONS(2656), + [anon_sym__Nullable] = ACTIONS(2656), + [anon_sym__Nullable_result] = ACTIONS(2656), + [anon_sym__Null_unspecified] = ACTIONS(2656), + [anon_sym___autoreleasing] = ACTIONS(2656), + [anon_sym___block] = ACTIONS(2656), + [anon_sym___bridge] = ACTIONS(2656), + [anon_sym___bridge_retained] = ACTIONS(2656), + [anon_sym___bridge_transfer] = ACTIONS(2656), + [anon_sym___complex] = ACTIONS(2656), + [anon_sym___const] = ACTIONS(2656), + [anon_sym___imag] = ACTIONS(2656), + [anon_sym___kindof] = ACTIONS(2656), + [anon_sym___nonnull] = ACTIONS(2656), + [anon_sym___nullable] = ACTIONS(2656), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2656), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2656), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2656), + [anon_sym___real] = ACTIONS(2656), + [anon_sym___strong] = ACTIONS(2656), + [anon_sym___unsafe_unretained] = ACTIONS(2656), + [anon_sym___unused] = ACTIONS(2656), + [anon_sym___weak] = ACTIONS(2656), + [anon_sym_alignas] = ACTIONS(2656), + [anon_sym__Alignas] = ACTIONS(2656), + [sym_primitive_type] = ACTIONS(2656), + [anon_sym_enum] = ACTIONS(2656), + [anon_sym_struct] = ACTIONS(2656), + [anon_sym_union] = ACTIONS(2656), + [anon_sym_if] = ACTIONS(2656), + [anon_sym_switch] = ACTIONS(2656), + [anon_sym_case] = ACTIONS(2656), + [anon_sym_default] = ACTIONS(2656), + [anon_sym_while] = ACTIONS(2656), + [anon_sym_do] = ACTIONS(2656), + [anon_sym_for] = ACTIONS(2656), + [anon_sym_in] = ACTIONS(2656), + [anon_sym_return] = ACTIONS(2656), + [anon_sym_break] = ACTIONS(2656), + [anon_sym_continue] = ACTIONS(2656), + [anon_sym_goto] = ACTIONS(2656), + [anon_sym_DASH_DASH] = ACTIONS(2658), + [anon_sym_PLUS_PLUS] = ACTIONS(2658), + [anon_sym_sizeof] = ACTIONS(2656), + [anon_sym___alignof__] = ACTIONS(2656), + [anon_sym___alignof] = ACTIONS(2656), + [anon_sym__alignof] = ACTIONS(2656), + [anon_sym_alignof] = ACTIONS(2656), + [anon_sym__Alignof] = ACTIONS(2656), + [anon_sym_offsetof] = ACTIONS(2656), + [anon_sym__Generic] = ACTIONS(2656), + [anon_sym_asm] = ACTIONS(2656), + [anon_sym___asm__] = ACTIONS(2656), + [anon_sym___asm] = ACTIONS(2656), + [sym_number_literal] = ACTIONS(2658), + [anon_sym_L_SQUOTE] = ACTIONS(2658), + [anon_sym_u_SQUOTE] = ACTIONS(2658), + [anon_sym_U_SQUOTE] = ACTIONS(2658), + [anon_sym_u8_SQUOTE] = ACTIONS(2658), + [anon_sym_SQUOTE] = ACTIONS(2658), + [anon_sym_AT] = ACTIONS(2656), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_L_DQUOTE] = ACTIONS(2658), + [anon_sym_u_DQUOTE] = ACTIONS(2658), + [anon_sym_U_DQUOTE] = ACTIONS(2658), + [anon_sym_u8_DQUOTE] = ACTIONS(2658), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2656), + [anon_sym_nullptr] = ACTIONS(2656), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2656), + [anon_sym___typeof] = ACTIONS(2656), + [anon_sym_typeof] = ACTIONS(2656), + [anon_sym_ATimport] = ACTIONS(2658), + [aux_sym_preproc_undef_token1] = ACTIONS(2656), + [anon_sym_POUND] = ACTIONS(2656), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2656), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2656), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2656), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2656), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2656), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2656), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2656), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2656), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2656), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2656), + [anon_sym_NS_AVAILABLE] = ACTIONS(2656), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2656), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2656), + [anon_sym_API_AVAILABLE] = ACTIONS(2656), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2656), + [anon_sym_API_DEPRECATED] = ACTIONS(2656), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2656), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2656), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2656), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2656), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2656), + [anon_sym___deprecated_msg] = ACTIONS(2656), + [anon_sym___deprecated_enum_msg] = ACTIONS(2656), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2656), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2656), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2656), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2656), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2656), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2656), + [anon_sym_ATprotocol] = ACTIONS(2658), + [anon_sym_ATinterface] = ACTIONS(2658), + [anon_sym_ATimplementation] = ACTIONS(2658), + [anon_sym_ATcompatibility_alias] = ACTIONS(2658), + [anon_sym_ATsynthesize] = ACTIONS(2658), + [anon_sym_ATdynamic] = ACTIONS(2658), + [anon_sym_ATtry] = ACTIONS(2658), + [anon_sym___try] = ACTIONS(2656), + [anon_sym_ATthrow] = ACTIONS(2658), + [anon_sym_ATselector] = ACTIONS(2658), + [anon_sym_ATavailable] = ACTIONS(2658), + [anon_sym___builtin_available] = ACTIONS(2656), + [anon_sym_va_arg] = ACTIONS(2656), + [anon_sym_ATencode] = ACTIONS(2658), + [anon_sym_ATsynchronized] = ACTIONS(2658), + [anon_sym_BOOL] = ACTIONS(2656), + [anon_sym_IMP] = ACTIONS(2656), + [anon_sym_SEL] = ACTIONS(2656), + [anon_sym_Class] = ACTIONS(2656), + [anon_sym_id] = ACTIONS(2656), + }, + [299] = { + [sym_identifier] = ACTIONS(2660), + [aux_sym_preproc_include_token1] = ACTIONS(2660), + [aux_sym_preproc_include_token2] = ACTIONS(2660), + [aux_sym_preproc_def_token1] = ACTIONS(2660), + [aux_sym_preproc_if_token1] = ACTIONS(2660), + [aux_sym_preproc_if_token2] = ACTIONS(2660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2660), + [aux_sym_preproc_else_token1] = ACTIONS(2660), + [aux_sym_preproc_elif_token1] = ACTIONS(2660), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2660), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2660), + [sym_preproc_directive] = ACTIONS(2660), + [anon_sym_LPAREN2] = ACTIONS(2662), + [anon_sym_BANG] = ACTIONS(2662), + [anon_sym_TILDE] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2660), + [anon_sym_PLUS] = ACTIONS(2660), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_CARET] = ACTIONS(2662), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym___extension__] = ACTIONS(2660), + [anon_sym_typedef] = ACTIONS(2660), + [anon_sym_extern] = ACTIONS(2660), + [anon_sym___attribute__] = ACTIONS(2660), + [anon_sym___attribute] = ACTIONS(2660), + [anon_sym_noreturn] = ACTIONS(2660), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym___declspec] = ACTIONS(2660), + [anon_sym___cdecl] = ACTIONS(2660), + [anon_sym___clrcall] = ACTIONS(2660), + [anon_sym___stdcall] = ACTIONS(2660), + [anon_sym___fastcall] = ACTIONS(2660), + [anon_sym___thiscall] = ACTIONS(2660), + [anon_sym___vectorcall] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_signed] = ACTIONS(2660), + [anon_sym_unsigned] = ACTIONS(2660), + [anon_sym_long] = ACTIONS(2660), + [anon_sym_short] = ACTIONS(2660), + [anon_sym_static] = ACTIONS(2660), + [anon_sym_ATautoreleasepool] = ACTIONS(2662), + [anon_sym_auto] = ACTIONS(2660), + [anon_sym_register] = ACTIONS(2660), + [anon_sym_inline] = ACTIONS(2660), + [anon_sym___inline] = ACTIONS(2660), + [anon_sym___inline__] = ACTIONS(2660), + [anon_sym___forceinline] = ACTIONS(2660), + [anon_sym_thread_local] = ACTIONS(2660), + [anon_sym___thread] = ACTIONS(2660), + [anon_sym_CG_EXTERN] = ACTIONS(2660), + [anon_sym_CG_INLINE] = ACTIONS(2660), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2660), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2660), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2660), + [anon_sym_IBOutlet] = ACTIONS(2660), + [anon_sym_IBInspectable] = ACTIONS(2660), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2660), + [anon_sym_NS_INLINE] = ACTIONS(2660), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2660), + [anon_sym_OBJC_EXPORT] = ACTIONS(2660), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2660), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2660), + [anon_sym_const] = ACTIONS(2660), + [anon_sym_constexpr] = ACTIONS(2660), + [anon_sym_volatile] = ACTIONS(2660), + [anon_sym_restrict] = ACTIONS(2660), + [anon_sym___restrict__] = ACTIONS(2660), + [anon_sym__Atomic] = ACTIONS(2660), + [anon_sym__Noreturn] = ACTIONS(2660), + [anon_sym__Nonnull] = ACTIONS(2660), + [anon_sym_nullable] = ACTIONS(2660), + [anon_sym__Complex] = ACTIONS(2660), + [anon_sym__Nullable] = ACTIONS(2660), + [anon_sym__Nullable_result] = ACTIONS(2660), + [anon_sym__Null_unspecified] = ACTIONS(2660), + [anon_sym___autoreleasing] = ACTIONS(2660), + [anon_sym___block] = ACTIONS(2660), + [anon_sym___bridge] = ACTIONS(2660), + [anon_sym___bridge_retained] = ACTIONS(2660), + [anon_sym___bridge_transfer] = ACTIONS(2660), + [anon_sym___complex] = ACTIONS(2660), + [anon_sym___const] = ACTIONS(2660), + [anon_sym___imag] = ACTIONS(2660), + [anon_sym___kindof] = ACTIONS(2660), + [anon_sym___nonnull] = ACTIONS(2660), + [anon_sym___nullable] = ACTIONS(2660), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2660), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2660), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2660), + [anon_sym___real] = ACTIONS(2660), + [anon_sym___strong] = ACTIONS(2660), + [anon_sym___unsafe_unretained] = ACTIONS(2660), + [anon_sym___unused] = ACTIONS(2660), + [anon_sym___weak] = ACTIONS(2660), + [anon_sym_alignas] = ACTIONS(2660), + [anon_sym__Alignas] = ACTIONS(2660), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_enum] = ACTIONS(2660), + [anon_sym_struct] = ACTIONS(2660), + [anon_sym_union] = ACTIONS(2660), + [anon_sym_if] = ACTIONS(2660), + [anon_sym_switch] = ACTIONS(2660), + [anon_sym_case] = ACTIONS(2660), + [anon_sym_default] = ACTIONS(2660), + [anon_sym_while] = ACTIONS(2660), + [anon_sym_do] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2660), + [anon_sym_in] = ACTIONS(2660), + [anon_sym_return] = ACTIONS(2660), + [anon_sym_break] = ACTIONS(2660), + [anon_sym_continue] = ACTIONS(2660), + [anon_sym_goto] = ACTIONS(2660), + [anon_sym_DASH_DASH] = ACTIONS(2662), + [anon_sym_PLUS_PLUS] = ACTIONS(2662), + [anon_sym_sizeof] = ACTIONS(2660), + [anon_sym___alignof__] = ACTIONS(2660), + [anon_sym___alignof] = ACTIONS(2660), + [anon_sym__alignof] = ACTIONS(2660), + [anon_sym_alignof] = ACTIONS(2660), + [anon_sym__Alignof] = ACTIONS(2660), + [anon_sym_offsetof] = ACTIONS(2660), + [anon_sym__Generic] = ACTIONS(2660), + [anon_sym_asm] = ACTIONS(2660), + [anon_sym___asm__] = ACTIONS(2660), + [anon_sym___asm] = ACTIONS(2660), + [sym_number_literal] = ACTIONS(2662), + [anon_sym_L_SQUOTE] = ACTIONS(2662), + [anon_sym_u_SQUOTE] = ACTIONS(2662), + [anon_sym_U_SQUOTE] = ACTIONS(2662), + [anon_sym_u8_SQUOTE] = ACTIONS(2662), + [anon_sym_SQUOTE] = ACTIONS(2662), + [anon_sym_AT] = ACTIONS(2660), + [anon_sym_DQUOTE] = ACTIONS(2662), + [anon_sym_L_DQUOTE] = ACTIONS(2662), + [anon_sym_u_DQUOTE] = ACTIONS(2662), + [anon_sym_U_DQUOTE] = ACTIONS(2662), + [anon_sym_u8_DQUOTE] = ACTIONS(2662), + [sym_true] = ACTIONS(2660), + [sym_false] = ACTIONS(2660), + [anon_sym_NULL] = ACTIONS(2660), + [anon_sym_nullptr] = ACTIONS(2660), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2660), + [anon_sym___typeof] = ACTIONS(2660), + [anon_sym_typeof] = ACTIONS(2660), + [anon_sym_ATimport] = ACTIONS(2662), + [aux_sym_preproc_undef_token1] = ACTIONS(2660), + [anon_sym_POUND] = ACTIONS(2660), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2660), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2660), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2660), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2660), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2660), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2660), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2660), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2660), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2660), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2660), + [anon_sym_NS_AVAILABLE] = ACTIONS(2660), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2660), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2660), + [anon_sym_API_AVAILABLE] = ACTIONS(2660), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2660), + [anon_sym_API_DEPRECATED] = ACTIONS(2660), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2660), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2660), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2660), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2660), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2660), + [anon_sym___deprecated_msg] = ACTIONS(2660), + [anon_sym___deprecated_enum_msg] = ACTIONS(2660), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2660), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2660), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2660), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2660), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2660), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2660), + [anon_sym_ATprotocol] = ACTIONS(2662), + [anon_sym_ATinterface] = ACTIONS(2662), + [anon_sym_ATimplementation] = ACTIONS(2662), + [anon_sym_ATcompatibility_alias] = ACTIONS(2662), + [anon_sym_ATsynthesize] = ACTIONS(2662), + [anon_sym_ATdynamic] = ACTIONS(2662), + [anon_sym_ATtry] = ACTIONS(2662), + [anon_sym___try] = ACTIONS(2660), + [anon_sym_ATthrow] = ACTIONS(2662), + [anon_sym_ATselector] = ACTIONS(2662), + [anon_sym_ATavailable] = ACTIONS(2662), + [anon_sym___builtin_available] = ACTIONS(2660), + [anon_sym_va_arg] = ACTIONS(2660), + [anon_sym_ATencode] = ACTIONS(2662), + [anon_sym_ATsynchronized] = ACTIONS(2662), + [anon_sym_BOOL] = ACTIONS(2660), + [anon_sym_IMP] = ACTIONS(2660), + [anon_sym_SEL] = ACTIONS(2660), + [anon_sym_Class] = ACTIONS(2660), + [anon_sym_id] = ACTIONS(2660), + }, + [300] = { + [sym_identifier] = ACTIONS(2664), + [aux_sym_preproc_include_token1] = ACTIONS(2664), + [aux_sym_preproc_include_token2] = ACTIONS(2664), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token2] = ACTIONS(2664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2664), + [aux_sym_preproc_else_token1] = ACTIONS(2664), + [aux_sym_preproc_elif_token1] = ACTIONS(2664), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2664), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2664), + [sym_preproc_directive] = ACTIONS(2664), + [anon_sym_LPAREN2] = ACTIONS(2666), + [anon_sym_BANG] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2666), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_PLUS] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_CARET] = ACTIONS(2666), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym___extension__] = ACTIONS(2664), + [anon_sym_typedef] = ACTIONS(2664), + [anon_sym_extern] = ACTIONS(2664), + [anon_sym___attribute__] = ACTIONS(2664), + [anon_sym___attribute] = ACTIONS(2664), + [anon_sym_noreturn] = ACTIONS(2664), + [anon_sym_LBRACK] = ACTIONS(2666), + [anon_sym___declspec] = ACTIONS(2664), + [anon_sym___cdecl] = ACTIONS(2664), + [anon_sym___clrcall] = ACTIONS(2664), + [anon_sym___stdcall] = ACTIONS(2664), + [anon_sym___fastcall] = ACTIONS(2664), + [anon_sym___thiscall] = ACTIONS(2664), + [anon_sym___vectorcall] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_signed] = ACTIONS(2664), + [anon_sym_unsigned] = ACTIONS(2664), + [anon_sym_long] = ACTIONS(2664), + [anon_sym_short] = ACTIONS(2664), + [anon_sym_static] = ACTIONS(2664), + [anon_sym_ATautoreleasepool] = ACTIONS(2666), + [anon_sym_auto] = ACTIONS(2664), + [anon_sym_register] = ACTIONS(2664), + [anon_sym_inline] = ACTIONS(2664), + [anon_sym___inline] = ACTIONS(2664), + [anon_sym___inline__] = ACTIONS(2664), + [anon_sym___forceinline] = ACTIONS(2664), + [anon_sym_thread_local] = ACTIONS(2664), + [anon_sym___thread] = ACTIONS(2664), + [anon_sym_CG_EXTERN] = ACTIONS(2664), + [anon_sym_CG_INLINE] = ACTIONS(2664), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2664), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2664), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2664), + [anon_sym_IBOutlet] = ACTIONS(2664), + [anon_sym_IBInspectable] = ACTIONS(2664), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2664), + [anon_sym_NS_INLINE] = ACTIONS(2664), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2664), + [anon_sym_OBJC_EXPORT] = ACTIONS(2664), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2664), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2664), + [anon_sym_const] = ACTIONS(2664), + [anon_sym_constexpr] = ACTIONS(2664), + [anon_sym_volatile] = ACTIONS(2664), + [anon_sym_restrict] = ACTIONS(2664), + [anon_sym___restrict__] = ACTIONS(2664), + [anon_sym__Atomic] = ACTIONS(2664), + [anon_sym__Noreturn] = ACTIONS(2664), + [anon_sym__Nonnull] = ACTIONS(2664), + [anon_sym_nullable] = ACTIONS(2664), + [anon_sym__Complex] = ACTIONS(2664), + [anon_sym__Nullable] = ACTIONS(2664), + [anon_sym__Nullable_result] = ACTIONS(2664), + [anon_sym__Null_unspecified] = ACTIONS(2664), + [anon_sym___autoreleasing] = ACTIONS(2664), + [anon_sym___block] = ACTIONS(2664), + [anon_sym___bridge] = ACTIONS(2664), + [anon_sym___bridge_retained] = ACTIONS(2664), + [anon_sym___bridge_transfer] = ACTIONS(2664), + [anon_sym___complex] = ACTIONS(2664), + [anon_sym___const] = ACTIONS(2664), + [anon_sym___imag] = ACTIONS(2664), + [anon_sym___kindof] = ACTIONS(2664), + [anon_sym___nonnull] = ACTIONS(2664), + [anon_sym___nullable] = ACTIONS(2664), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2664), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2664), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2664), + [anon_sym___real] = ACTIONS(2664), + [anon_sym___strong] = ACTIONS(2664), + [anon_sym___unsafe_unretained] = ACTIONS(2664), + [anon_sym___unused] = ACTIONS(2664), + [anon_sym___weak] = ACTIONS(2664), + [anon_sym_alignas] = ACTIONS(2664), + [anon_sym__Alignas] = ACTIONS(2664), + [sym_primitive_type] = ACTIONS(2664), + [anon_sym_enum] = ACTIONS(2664), + [anon_sym_struct] = ACTIONS(2664), + [anon_sym_union] = ACTIONS(2664), + [anon_sym_if] = ACTIONS(2664), + [anon_sym_switch] = ACTIONS(2664), + [anon_sym_case] = ACTIONS(2664), + [anon_sym_default] = ACTIONS(2664), + [anon_sym_while] = ACTIONS(2664), + [anon_sym_do] = ACTIONS(2664), + [anon_sym_for] = ACTIONS(2664), + [anon_sym_in] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2664), + [anon_sym_break] = ACTIONS(2664), + [anon_sym_continue] = ACTIONS(2664), + [anon_sym_goto] = ACTIONS(2664), + [anon_sym_DASH_DASH] = ACTIONS(2666), + [anon_sym_PLUS_PLUS] = ACTIONS(2666), + [anon_sym_sizeof] = ACTIONS(2664), + [anon_sym___alignof__] = ACTIONS(2664), + [anon_sym___alignof] = ACTIONS(2664), + [anon_sym__alignof] = ACTIONS(2664), + [anon_sym_alignof] = ACTIONS(2664), + [anon_sym__Alignof] = ACTIONS(2664), + [anon_sym_offsetof] = ACTIONS(2664), + [anon_sym__Generic] = ACTIONS(2664), + [anon_sym_asm] = ACTIONS(2664), + [anon_sym___asm__] = ACTIONS(2664), + [anon_sym___asm] = ACTIONS(2664), + [sym_number_literal] = ACTIONS(2666), + [anon_sym_L_SQUOTE] = ACTIONS(2666), + [anon_sym_u_SQUOTE] = ACTIONS(2666), + [anon_sym_U_SQUOTE] = ACTIONS(2666), + [anon_sym_u8_SQUOTE] = ACTIONS(2666), + [anon_sym_SQUOTE] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2666), + [anon_sym_L_DQUOTE] = ACTIONS(2666), + [anon_sym_u_DQUOTE] = ACTIONS(2666), + [anon_sym_U_DQUOTE] = ACTIONS(2666), + [anon_sym_u8_DQUOTE] = ACTIONS(2666), + [sym_true] = ACTIONS(2664), + [sym_false] = ACTIONS(2664), + [anon_sym_NULL] = ACTIONS(2664), + [anon_sym_nullptr] = ACTIONS(2664), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2664), + [anon_sym___typeof] = ACTIONS(2664), + [anon_sym_typeof] = ACTIONS(2664), + [anon_sym_ATimport] = ACTIONS(2666), + [aux_sym_preproc_undef_token1] = ACTIONS(2664), + [anon_sym_POUND] = ACTIONS(2664), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2664), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2664), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2664), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2664), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2664), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2664), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2664), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2664), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2664), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2664), + [anon_sym_NS_AVAILABLE] = ACTIONS(2664), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2664), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2664), + [anon_sym_API_AVAILABLE] = ACTIONS(2664), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2664), + [anon_sym_API_DEPRECATED] = ACTIONS(2664), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2664), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2664), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2664), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2664), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2664), + [anon_sym___deprecated_msg] = ACTIONS(2664), + [anon_sym___deprecated_enum_msg] = ACTIONS(2664), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2664), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2664), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2664), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2664), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2664), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2664), + [anon_sym_ATprotocol] = ACTIONS(2666), + [anon_sym_ATinterface] = ACTIONS(2666), + [anon_sym_ATimplementation] = ACTIONS(2666), + [anon_sym_ATcompatibility_alias] = ACTIONS(2666), + [anon_sym_ATsynthesize] = ACTIONS(2666), + [anon_sym_ATdynamic] = ACTIONS(2666), + [anon_sym_ATtry] = ACTIONS(2666), + [anon_sym___try] = ACTIONS(2664), + [anon_sym_ATthrow] = ACTIONS(2666), + [anon_sym_ATselector] = ACTIONS(2666), + [anon_sym_ATavailable] = ACTIONS(2666), + [anon_sym___builtin_available] = ACTIONS(2664), + [anon_sym_va_arg] = ACTIONS(2664), + [anon_sym_ATencode] = ACTIONS(2666), + [anon_sym_ATsynchronized] = ACTIONS(2666), + [anon_sym_BOOL] = ACTIONS(2664), + [anon_sym_IMP] = ACTIONS(2664), + [anon_sym_SEL] = ACTIONS(2664), + [anon_sym_Class] = ACTIONS(2664), + [anon_sym_id] = ACTIONS(2664), + }, + [301] = { + [sym_identifier] = ACTIONS(2668), + [aux_sym_preproc_include_token1] = ACTIONS(2668), + [aux_sym_preproc_include_token2] = ACTIONS(2668), + [aux_sym_preproc_def_token1] = ACTIONS(2668), + [aux_sym_preproc_if_token1] = ACTIONS(2668), + [aux_sym_preproc_if_token2] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2668), + [aux_sym_preproc_elif_token1] = ACTIONS(2668), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2668), + [sym_preproc_directive] = ACTIONS(2668), + [anon_sym_LPAREN2] = ACTIONS(2670), + [anon_sym_BANG] = ACTIONS(2670), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2668), + [anon_sym_PLUS] = ACTIONS(2668), + [anon_sym_STAR] = ACTIONS(2670), + [anon_sym_CARET] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2670), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym___extension__] = ACTIONS(2668), + [anon_sym_typedef] = ACTIONS(2668), + [anon_sym_extern] = ACTIONS(2668), + [anon_sym___attribute__] = ACTIONS(2668), + [anon_sym___attribute] = ACTIONS(2668), + [anon_sym_noreturn] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym___declspec] = ACTIONS(2668), + [anon_sym___cdecl] = ACTIONS(2668), + [anon_sym___clrcall] = ACTIONS(2668), + [anon_sym___stdcall] = ACTIONS(2668), + [anon_sym___fastcall] = ACTIONS(2668), + [anon_sym___thiscall] = ACTIONS(2668), + [anon_sym___vectorcall] = ACTIONS(2668), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_signed] = ACTIONS(2668), + [anon_sym_unsigned] = ACTIONS(2668), + [anon_sym_long] = ACTIONS(2668), + [anon_sym_short] = ACTIONS(2668), + [anon_sym_static] = ACTIONS(2668), + [anon_sym_ATautoreleasepool] = ACTIONS(2670), + [anon_sym_auto] = ACTIONS(2668), + [anon_sym_register] = ACTIONS(2668), + [anon_sym_inline] = ACTIONS(2668), + [anon_sym___inline] = ACTIONS(2668), + [anon_sym___inline__] = ACTIONS(2668), + [anon_sym___forceinline] = ACTIONS(2668), + [anon_sym_thread_local] = ACTIONS(2668), + [anon_sym___thread] = ACTIONS(2668), + [anon_sym_CG_EXTERN] = ACTIONS(2668), + [anon_sym_CG_INLINE] = ACTIONS(2668), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2668), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2668), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2668), + [anon_sym_IBOutlet] = ACTIONS(2668), + [anon_sym_IBInspectable] = ACTIONS(2668), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2668), + [anon_sym_NS_INLINE] = ACTIONS(2668), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2668), + [anon_sym_OBJC_EXPORT] = ACTIONS(2668), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2668), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2668), + [anon_sym_const] = ACTIONS(2668), + [anon_sym_constexpr] = ACTIONS(2668), + [anon_sym_volatile] = ACTIONS(2668), + [anon_sym_restrict] = ACTIONS(2668), + [anon_sym___restrict__] = ACTIONS(2668), + [anon_sym__Atomic] = ACTIONS(2668), + [anon_sym__Noreturn] = ACTIONS(2668), + [anon_sym__Nonnull] = ACTIONS(2668), + [anon_sym_nullable] = ACTIONS(2668), + [anon_sym__Complex] = ACTIONS(2668), + [anon_sym__Nullable] = ACTIONS(2668), + [anon_sym__Nullable_result] = ACTIONS(2668), + [anon_sym__Null_unspecified] = ACTIONS(2668), + [anon_sym___autoreleasing] = ACTIONS(2668), + [anon_sym___block] = ACTIONS(2668), + [anon_sym___bridge] = ACTIONS(2668), + [anon_sym___bridge_retained] = ACTIONS(2668), + [anon_sym___bridge_transfer] = ACTIONS(2668), + [anon_sym___complex] = ACTIONS(2668), + [anon_sym___const] = ACTIONS(2668), + [anon_sym___imag] = ACTIONS(2668), + [anon_sym___kindof] = ACTIONS(2668), + [anon_sym___nonnull] = ACTIONS(2668), + [anon_sym___nullable] = ACTIONS(2668), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2668), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2668), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2668), + [anon_sym___real] = ACTIONS(2668), + [anon_sym___strong] = ACTIONS(2668), + [anon_sym___unsafe_unretained] = ACTIONS(2668), + [anon_sym___unused] = ACTIONS(2668), + [anon_sym___weak] = ACTIONS(2668), + [anon_sym_alignas] = ACTIONS(2668), + [anon_sym__Alignas] = ACTIONS(2668), + [sym_primitive_type] = ACTIONS(2668), + [anon_sym_enum] = ACTIONS(2668), + [anon_sym_struct] = ACTIONS(2668), + [anon_sym_union] = ACTIONS(2668), + [anon_sym_if] = ACTIONS(2668), + [anon_sym_switch] = ACTIONS(2668), + [anon_sym_case] = ACTIONS(2668), + [anon_sym_default] = ACTIONS(2668), + [anon_sym_while] = ACTIONS(2668), + [anon_sym_do] = ACTIONS(2668), + [anon_sym_for] = ACTIONS(2668), + [anon_sym_in] = ACTIONS(2668), + [anon_sym_return] = ACTIONS(2668), + [anon_sym_break] = ACTIONS(2668), + [anon_sym_continue] = ACTIONS(2668), + [anon_sym_goto] = ACTIONS(2668), + [anon_sym_DASH_DASH] = ACTIONS(2670), + [anon_sym_PLUS_PLUS] = ACTIONS(2670), + [anon_sym_sizeof] = ACTIONS(2668), + [anon_sym___alignof__] = ACTIONS(2668), + [anon_sym___alignof] = ACTIONS(2668), + [anon_sym__alignof] = ACTIONS(2668), + [anon_sym_alignof] = ACTIONS(2668), + [anon_sym__Alignof] = ACTIONS(2668), + [anon_sym_offsetof] = ACTIONS(2668), + [anon_sym__Generic] = ACTIONS(2668), + [anon_sym_asm] = ACTIONS(2668), + [anon_sym___asm__] = ACTIONS(2668), + [anon_sym___asm] = ACTIONS(2668), + [sym_number_literal] = ACTIONS(2670), + [anon_sym_L_SQUOTE] = ACTIONS(2670), + [anon_sym_u_SQUOTE] = ACTIONS(2670), + [anon_sym_U_SQUOTE] = ACTIONS(2670), + [anon_sym_u8_SQUOTE] = ACTIONS(2670), + [anon_sym_SQUOTE] = ACTIONS(2670), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_DQUOTE] = ACTIONS(2670), + [anon_sym_L_DQUOTE] = ACTIONS(2670), + [anon_sym_u_DQUOTE] = ACTIONS(2670), + [anon_sym_U_DQUOTE] = ACTIONS(2670), + [anon_sym_u8_DQUOTE] = ACTIONS(2670), + [sym_true] = ACTIONS(2668), + [sym_false] = ACTIONS(2668), + [anon_sym_NULL] = ACTIONS(2668), + [anon_sym_nullptr] = ACTIONS(2668), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2668), + [anon_sym___typeof] = ACTIONS(2668), + [anon_sym_typeof] = ACTIONS(2668), + [anon_sym_ATimport] = ACTIONS(2670), + [aux_sym_preproc_undef_token1] = ACTIONS(2668), + [anon_sym_POUND] = ACTIONS(2668), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2668), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2668), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2668), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2668), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2668), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2668), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2668), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2668), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2668), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2668), + [anon_sym_NS_AVAILABLE] = ACTIONS(2668), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2668), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2668), + [anon_sym_API_AVAILABLE] = ACTIONS(2668), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2668), + [anon_sym_API_DEPRECATED] = ACTIONS(2668), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2668), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2668), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2668), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2668), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2668), + [anon_sym___deprecated_msg] = ACTIONS(2668), + [anon_sym___deprecated_enum_msg] = ACTIONS(2668), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2668), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2668), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2668), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2668), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2668), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2668), + [anon_sym_ATprotocol] = ACTIONS(2670), + [anon_sym_ATinterface] = ACTIONS(2670), + [anon_sym_ATimplementation] = ACTIONS(2670), + [anon_sym_ATcompatibility_alias] = ACTIONS(2670), + [anon_sym_ATsynthesize] = ACTIONS(2670), + [anon_sym_ATdynamic] = ACTIONS(2670), + [anon_sym_ATtry] = ACTIONS(2670), + [anon_sym___try] = ACTIONS(2668), + [anon_sym_ATthrow] = ACTIONS(2670), + [anon_sym_ATselector] = ACTIONS(2670), + [anon_sym_ATavailable] = ACTIONS(2670), + [anon_sym___builtin_available] = ACTIONS(2668), + [anon_sym_va_arg] = ACTIONS(2668), + [anon_sym_ATencode] = ACTIONS(2670), + [anon_sym_ATsynchronized] = ACTIONS(2670), + [anon_sym_BOOL] = ACTIONS(2668), + [anon_sym_IMP] = ACTIONS(2668), + [anon_sym_SEL] = ACTIONS(2668), + [anon_sym_Class] = ACTIONS(2668), + [anon_sym_id] = ACTIONS(2668), + }, + [302] = { + [sym_identifier] = ACTIONS(2672), + [aux_sym_preproc_include_token1] = ACTIONS(2672), + [aux_sym_preproc_include_token2] = ACTIONS(2672), + [aux_sym_preproc_def_token1] = ACTIONS(2672), + [aux_sym_preproc_if_token1] = ACTIONS(2672), + [aux_sym_preproc_if_token2] = ACTIONS(2672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2672), + [aux_sym_preproc_else_token1] = ACTIONS(2672), + [aux_sym_preproc_elif_token1] = ACTIONS(2672), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2672), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2672), + [sym_preproc_directive] = ACTIONS(2672), + [anon_sym_LPAREN2] = ACTIONS(2674), + [anon_sym_BANG] = ACTIONS(2674), + [anon_sym_TILDE] = ACTIONS(2674), + [anon_sym_DASH] = ACTIONS(2672), + [anon_sym_PLUS] = ACTIONS(2672), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_CARET] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2674), + [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym___extension__] = ACTIONS(2672), + [anon_sym_typedef] = ACTIONS(2672), + [anon_sym_extern] = ACTIONS(2672), + [anon_sym___attribute__] = ACTIONS(2672), + [anon_sym___attribute] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(2674), + [anon_sym___declspec] = ACTIONS(2672), + [anon_sym___cdecl] = ACTIONS(2672), + [anon_sym___clrcall] = ACTIONS(2672), + [anon_sym___stdcall] = ACTIONS(2672), + [anon_sym___fastcall] = ACTIONS(2672), + [anon_sym___thiscall] = ACTIONS(2672), + [anon_sym___vectorcall] = ACTIONS(2672), + [anon_sym_LBRACE] = ACTIONS(2674), + [anon_sym_signed] = ACTIONS(2672), + [anon_sym_unsigned] = ACTIONS(2672), + [anon_sym_long] = ACTIONS(2672), + [anon_sym_short] = ACTIONS(2672), + [anon_sym_static] = ACTIONS(2672), + [anon_sym_ATautoreleasepool] = ACTIONS(2674), + [anon_sym_auto] = ACTIONS(2672), + [anon_sym_register] = ACTIONS(2672), + [anon_sym_inline] = ACTIONS(2672), + [anon_sym___inline] = ACTIONS(2672), + [anon_sym___inline__] = ACTIONS(2672), + [anon_sym___forceinline] = ACTIONS(2672), + [anon_sym_thread_local] = ACTIONS(2672), + [anon_sym___thread] = ACTIONS(2672), + [anon_sym_CG_EXTERN] = ACTIONS(2672), + [anon_sym_CG_INLINE] = ACTIONS(2672), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2672), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2672), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2672), + [anon_sym_IBOutlet] = ACTIONS(2672), + [anon_sym_IBInspectable] = ACTIONS(2672), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2672), + [anon_sym_NS_INLINE] = ACTIONS(2672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2672), + [anon_sym_OBJC_EXPORT] = ACTIONS(2672), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2672), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2672), + [anon_sym_const] = ACTIONS(2672), + [anon_sym_constexpr] = ACTIONS(2672), + [anon_sym_volatile] = ACTIONS(2672), + [anon_sym_restrict] = ACTIONS(2672), + [anon_sym___restrict__] = ACTIONS(2672), + [anon_sym__Atomic] = ACTIONS(2672), + [anon_sym__Noreturn] = ACTIONS(2672), + [anon_sym__Nonnull] = ACTIONS(2672), + [anon_sym_nullable] = ACTIONS(2672), + [anon_sym__Complex] = ACTIONS(2672), + [anon_sym__Nullable] = ACTIONS(2672), + [anon_sym__Nullable_result] = ACTIONS(2672), + [anon_sym__Null_unspecified] = ACTIONS(2672), + [anon_sym___autoreleasing] = ACTIONS(2672), + [anon_sym___block] = ACTIONS(2672), + [anon_sym___bridge] = ACTIONS(2672), + [anon_sym___bridge_retained] = ACTIONS(2672), + [anon_sym___bridge_transfer] = ACTIONS(2672), + [anon_sym___complex] = ACTIONS(2672), + [anon_sym___const] = ACTIONS(2672), + [anon_sym___imag] = ACTIONS(2672), + [anon_sym___kindof] = ACTIONS(2672), + [anon_sym___nonnull] = ACTIONS(2672), + [anon_sym___nullable] = ACTIONS(2672), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2672), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2672), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2672), + [anon_sym___real] = ACTIONS(2672), + [anon_sym___strong] = ACTIONS(2672), + [anon_sym___unsafe_unretained] = ACTIONS(2672), + [anon_sym___unused] = ACTIONS(2672), + [anon_sym___weak] = ACTIONS(2672), + [anon_sym_alignas] = ACTIONS(2672), + [anon_sym__Alignas] = ACTIONS(2672), + [sym_primitive_type] = ACTIONS(2672), + [anon_sym_enum] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_union] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_switch] = ACTIONS(2672), + [anon_sym_case] = ACTIONS(2672), + [anon_sym_default] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_do] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_in] = ACTIONS(2672), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_goto] = ACTIONS(2672), + [anon_sym_DASH_DASH] = ACTIONS(2674), + [anon_sym_PLUS_PLUS] = ACTIONS(2674), + [anon_sym_sizeof] = ACTIONS(2672), + [anon_sym___alignof__] = ACTIONS(2672), + [anon_sym___alignof] = ACTIONS(2672), + [anon_sym__alignof] = ACTIONS(2672), + [anon_sym_alignof] = ACTIONS(2672), + [anon_sym__Alignof] = ACTIONS(2672), + [anon_sym_offsetof] = ACTIONS(2672), + [anon_sym__Generic] = ACTIONS(2672), + [anon_sym_asm] = ACTIONS(2672), + [anon_sym___asm__] = ACTIONS(2672), + [anon_sym___asm] = ACTIONS(2672), + [sym_number_literal] = ACTIONS(2674), + [anon_sym_L_SQUOTE] = ACTIONS(2674), + [anon_sym_u_SQUOTE] = ACTIONS(2674), + [anon_sym_U_SQUOTE] = ACTIONS(2674), + [anon_sym_u8_SQUOTE] = ACTIONS(2674), + [anon_sym_SQUOTE] = ACTIONS(2674), + [anon_sym_AT] = ACTIONS(2672), + [anon_sym_DQUOTE] = ACTIONS(2674), + [anon_sym_L_DQUOTE] = ACTIONS(2674), + [anon_sym_u_DQUOTE] = ACTIONS(2674), + [anon_sym_U_DQUOTE] = ACTIONS(2674), + [anon_sym_u8_DQUOTE] = ACTIONS(2674), + [sym_true] = ACTIONS(2672), + [sym_false] = ACTIONS(2672), + [anon_sym_NULL] = ACTIONS(2672), + [anon_sym_nullptr] = ACTIONS(2672), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2672), + [anon_sym___typeof] = ACTIONS(2672), + [anon_sym_typeof] = ACTIONS(2672), + [anon_sym_ATimport] = ACTIONS(2674), + [aux_sym_preproc_undef_token1] = ACTIONS(2672), + [anon_sym_POUND] = ACTIONS(2672), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2672), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2672), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2672), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2672), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2672), + [anon_sym_NS_AVAILABLE] = ACTIONS(2672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2672), + [anon_sym_API_AVAILABLE] = ACTIONS(2672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2672), + [anon_sym_API_DEPRECATED] = ACTIONS(2672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2672), + [anon_sym___deprecated_msg] = ACTIONS(2672), + [anon_sym___deprecated_enum_msg] = ACTIONS(2672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2672), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2672), + [anon_sym_ATprotocol] = ACTIONS(2674), + [anon_sym_ATinterface] = ACTIONS(2674), + [anon_sym_ATimplementation] = ACTIONS(2674), + [anon_sym_ATcompatibility_alias] = ACTIONS(2674), + [anon_sym_ATsynthesize] = ACTIONS(2674), + [anon_sym_ATdynamic] = ACTIONS(2674), + [anon_sym_ATtry] = ACTIONS(2674), + [anon_sym___try] = ACTIONS(2672), + [anon_sym_ATthrow] = ACTIONS(2674), + [anon_sym_ATselector] = ACTIONS(2674), + [anon_sym_ATavailable] = ACTIONS(2674), + [anon_sym___builtin_available] = ACTIONS(2672), + [anon_sym_va_arg] = ACTIONS(2672), + [anon_sym_ATencode] = ACTIONS(2674), + [anon_sym_ATsynchronized] = ACTIONS(2674), + [anon_sym_BOOL] = ACTIONS(2672), + [anon_sym_IMP] = ACTIONS(2672), + [anon_sym_SEL] = ACTIONS(2672), + [anon_sym_Class] = ACTIONS(2672), + [anon_sym_id] = ACTIONS(2672), + }, + [303] = { + [sym_identifier] = ACTIONS(2676), + [aux_sym_preproc_include_token1] = ACTIONS(2676), + [aux_sym_preproc_include_token2] = ACTIONS(2676), + [aux_sym_preproc_def_token1] = ACTIONS(2676), + [aux_sym_preproc_if_token1] = ACTIONS(2676), + [aux_sym_preproc_if_token2] = ACTIONS(2676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2676), + [aux_sym_preproc_else_token1] = ACTIONS(2676), + [aux_sym_preproc_elif_token1] = ACTIONS(2676), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2676), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2676), + [sym_preproc_directive] = ACTIONS(2676), + [anon_sym_LPAREN2] = ACTIONS(2678), + [anon_sym_BANG] = ACTIONS(2678), + [anon_sym_TILDE] = ACTIONS(2678), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_STAR] = ACTIONS(2678), + [anon_sym_CARET] = ACTIONS(2678), + [anon_sym_AMP] = ACTIONS(2678), + [anon_sym_SEMI] = ACTIONS(2678), + [anon_sym___extension__] = ACTIONS(2676), + [anon_sym_typedef] = ACTIONS(2676), + [anon_sym_extern] = ACTIONS(2676), + [anon_sym___attribute__] = ACTIONS(2676), + [anon_sym___attribute] = ACTIONS(2676), + [anon_sym_noreturn] = ACTIONS(2676), + [anon_sym_LBRACK] = ACTIONS(2678), + [anon_sym___declspec] = ACTIONS(2676), + [anon_sym___cdecl] = ACTIONS(2676), + [anon_sym___clrcall] = ACTIONS(2676), + [anon_sym___stdcall] = ACTIONS(2676), + [anon_sym___fastcall] = ACTIONS(2676), + [anon_sym___thiscall] = ACTIONS(2676), + [anon_sym___vectorcall] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_signed] = ACTIONS(2676), + [anon_sym_unsigned] = ACTIONS(2676), + [anon_sym_long] = ACTIONS(2676), + [anon_sym_short] = ACTIONS(2676), + [anon_sym_static] = ACTIONS(2676), + [anon_sym_ATautoreleasepool] = ACTIONS(2678), + [anon_sym_auto] = ACTIONS(2676), + [anon_sym_register] = ACTIONS(2676), + [anon_sym_inline] = ACTIONS(2676), + [anon_sym___inline] = ACTIONS(2676), + [anon_sym___inline__] = ACTIONS(2676), + [anon_sym___forceinline] = ACTIONS(2676), + [anon_sym_thread_local] = ACTIONS(2676), + [anon_sym___thread] = ACTIONS(2676), + [anon_sym_CG_EXTERN] = ACTIONS(2676), + [anon_sym_CG_INLINE] = ACTIONS(2676), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2676), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2676), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2676), + [anon_sym_IBOutlet] = ACTIONS(2676), + [anon_sym_IBInspectable] = ACTIONS(2676), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2676), + [anon_sym_NS_INLINE] = ACTIONS(2676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2676), + [anon_sym_OBJC_EXPORT] = ACTIONS(2676), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2676), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2676), + [anon_sym_const] = ACTIONS(2676), + [anon_sym_constexpr] = ACTIONS(2676), + [anon_sym_volatile] = ACTIONS(2676), + [anon_sym_restrict] = ACTIONS(2676), + [anon_sym___restrict__] = ACTIONS(2676), + [anon_sym__Atomic] = ACTIONS(2676), + [anon_sym__Noreturn] = ACTIONS(2676), + [anon_sym__Nonnull] = ACTIONS(2676), + [anon_sym_nullable] = ACTIONS(2676), + [anon_sym__Complex] = ACTIONS(2676), + [anon_sym__Nullable] = ACTIONS(2676), + [anon_sym__Nullable_result] = ACTIONS(2676), + [anon_sym__Null_unspecified] = ACTIONS(2676), + [anon_sym___autoreleasing] = ACTIONS(2676), + [anon_sym___block] = ACTIONS(2676), + [anon_sym___bridge] = ACTIONS(2676), + [anon_sym___bridge_retained] = ACTIONS(2676), + [anon_sym___bridge_transfer] = ACTIONS(2676), + [anon_sym___complex] = ACTIONS(2676), + [anon_sym___const] = ACTIONS(2676), + [anon_sym___imag] = ACTIONS(2676), + [anon_sym___kindof] = ACTIONS(2676), + [anon_sym___nonnull] = ACTIONS(2676), + [anon_sym___nullable] = ACTIONS(2676), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2676), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2676), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2676), + [anon_sym___real] = ACTIONS(2676), + [anon_sym___strong] = ACTIONS(2676), + [anon_sym___unsafe_unretained] = ACTIONS(2676), + [anon_sym___unused] = ACTIONS(2676), + [anon_sym___weak] = ACTIONS(2676), + [anon_sym_alignas] = ACTIONS(2676), + [anon_sym__Alignas] = ACTIONS(2676), + [sym_primitive_type] = ACTIONS(2676), + [anon_sym_enum] = ACTIONS(2676), + [anon_sym_struct] = ACTIONS(2676), + [anon_sym_union] = ACTIONS(2676), + [anon_sym_if] = ACTIONS(2676), + [anon_sym_switch] = ACTIONS(2676), + [anon_sym_case] = ACTIONS(2676), + [anon_sym_default] = ACTIONS(2676), + [anon_sym_while] = ACTIONS(2676), + [anon_sym_do] = ACTIONS(2676), + [anon_sym_for] = ACTIONS(2676), + [anon_sym_in] = ACTIONS(2676), + [anon_sym_return] = ACTIONS(2676), + [anon_sym_break] = ACTIONS(2676), + [anon_sym_continue] = ACTIONS(2676), + [anon_sym_goto] = ACTIONS(2676), + [anon_sym_DASH_DASH] = ACTIONS(2678), + [anon_sym_PLUS_PLUS] = ACTIONS(2678), + [anon_sym_sizeof] = ACTIONS(2676), + [anon_sym___alignof__] = ACTIONS(2676), + [anon_sym___alignof] = ACTIONS(2676), + [anon_sym__alignof] = ACTIONS(2676), + [anon_sym_alignof] = ACTIONS(2676), + [anon_sym__Alignof] = ACTIONS(2676), + [anon_sym_offsetof] = ACTIONS(2676), + [anon_sym__Generic] = ACTIONS(2676), + [anon_sym_asm] = ACTIONS(2676), + [anon_sym___asm__] = ACTIONS(2676), + [anon_sym___asm] = ACTIONS(2676), + [sym_number_literal] = ACTIONS(2678), + [anon_sym_L_SQUOTE] = ACTIONS(2678), + [anon_sym_u_SQUOTE] = ACTIONS(2678), + [anon_sym_U_SQUOTE] = ACTIONS(2678), + [anon_sym_u8_SQUOTE] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2678), + [anon_sym_AT] = ACTIONS(2676), + [anon_sym_DQUOTE] = ACTIONS(2678), + [anon_sym_L_DQUOTE] = ACTIONS(2678), + [anon_sym_u_DQUOTE] = ACTIONS(2678), + [anon_sym_U_DQUOTE] = ACTIONS(2678), + [anon_sym_u8_DQUOTE] = ACTIONS(2678), + [sym_true] = ACTIONS(2676), + [sym_false] = ACTIONS(2676), + [anon_sym_NULL] = ACTIONS(2676), + [anon_sym_nullptr] = ACTIONS(2676), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2676), + [anon_sym___typeof] = ACTIONS(2676), + [anon_sym_typeof] = ACTIONS(2676), + [anon_sym_ATimport] = ACTIONS(2678), + [aux_sym_preproc_undef_token1] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(2676), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2676), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2676), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2676), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2676), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2676), + [anon_sym_NS_AVAILABLE] = ACTIONS(2676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2676), + [anon_sym_API_AVAILABLE] = ACTIONS(2676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2676), + [anon_sym_API_DEPRECATED] = ACTIONS(2676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2676), + [anon_sym___deprecated_msg] = ACTIONS(2676), + [anon_sym___deprecated_enum_msg] = ACTIONS(2676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2676), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2676), + [anon_sym_ATprotocol] = ACTIONS(2678), + [anon_sym_ATinterface] = ACTIONS(2678), + [anon_sym_ATimplementation] = ACTIONS(2678), + [anon_sym_ATcompatibility_alias] = ACTIONS(2678), + [anon_sym_ATsynthesize] = ACTIONS(2678), + [anon_sym_ATdynamic] = ACTIONS(2678), + [anon_sym_ATtry] = ACTIONS(2678), + [anon_sym___try] = ACTIONS(2676), + [anon_sym_ATthrow] = ACTIONS(2678), + [anon_sym_ATselector] = ACTIONS(2678), + [anon_sym_ATavailable] = ACTIONS(2678), + [anon_sym___builtin_available] = ACTIONS(2676), + [anon_sym_va_arg] = ACTIONS(2676), + [anon_sym_ATencode] = ACTIONS(2678), + [anon_sym_ATsynchronized] = ACTIONS(2678), + [anon_sym_BOOL] = ACTIONS(2676), + [anon_sym_IMP] = ACTIONS(2676), + [anon_sym_SEL] = ACTIONS(2676), + [anon_sym_Class] = ACTIONS(2676), + [anon_sym_id] = ACTIONS(2676), + }, + [304] = { + [sym_identifier] = ACTIONS(2680), + [aux_sym_preproc_include_token1] = ACTIONS(2680), + [aux_sym_preproc_include_token2] = ACTIONS(2680), + [aux_sym_preproc_def_token1] = ACTIONS(2680), + [aux_sym_preproc_if_token1] = ACTIONS(2680), + [aux_sym_preproc_if_token2] = ACTIONS(2680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2680), + [aux_sym_preproc_else_token1] = ACTIONS(2680), + [aux_sym_preproc_elif_token1] = ACTIONS(2680), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2680), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2680), + [sym_preproc_directive] = ACTIONS(2680), + [anon_sym_LPAREN2] = ACTIONS(2682), + [anon_sym_BANG] = ACTIONS(2682), + [anon_sym_TILDE] = ACTIONS(2682), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_CARET] = ACTIONS(2682), + [anon_sym_AMP] = ACTIONS(2682), + [anon_sym_SEMI] = ACTIONS(2682), + [anon_sym___extension__] = ACTIONS(2680), + [anon_sym_typedef] = ACTIONS(2680), + [anon_sym_extern] = ACTIONS(2680), + [anon_sym___attribute__] = ACTIONS(2680), + [anon_sym___attribute] = ACTIONS(2680), + [anon_sym_noreturn] = ACTIONS(2680), + [anon_sym_LBRACK] = ACTIONS(2682), + [anon_sym___declspec] = ACTIONS(2680), + [anon_sym___cdecl] = ACTIONS(2680), + [anon_sym___clrcall] = ACTIONS(2680), + [anon_sym___stdcall] = ACTIONS(2680), + [anon_sym___fastcall] = ACTIONS(2680), + [anon_sym___thiscall] = ACTIONS(2680), + [anon_sym___vectorcall] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2682), + [anon_sym_signed] = ACTIONS(2680), + [anon_sym_unsigned] = ACTIONS(2680), + [anon_sym_long] = ACTIONS(2680), + [anon_sym_short] = ACTIONS(2680), + [anon_sym_static] = ACTIONS(2680), + [anon_sym_ATautoreleasepool] = ACTIONS(2682), + [anon_sym_auto] = ACTIONS(2680), + [anon_sym_register] = ACTIONS(2680), + [anon_sym_inline] = ACTIONS(2680), + [anon_sym___inline] = ACTIONS(2680), + [anon_sym___inline__] = ACTIONS(2680), + [anon_sym___forceinline] = ACTIONS(2680), + [anon_sym_thread_local] = ACTIONS(2680), + [anon_sym___thread] = ACTIONS(2680), + [anon_sym_CG_EXTERN] = ACTIONS(2680), + [anon_sym_CG_INLINE] = ACTIONS(2680), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2680), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2680), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2680), + [anon_sym_IBOutlet] = ACTIONS(2680), + [anon_sym_IBInspectable] = ACTIONS(2680), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2680), + [anon_sym_NS_INLINE] = ACTIONS(2680), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2680), + [anon_sym_OBJC_EXPORT] = ACTIONS(2680), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2680), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2680), + [anon_sym_const] = ACTIONS(2680), + [anon_sym_constexpr] = ACTIONS(2680), + [anon_sym_volatile] = ACTIONS(2680), + [anon_sym_restrict] = ACTIONS(2680), + [anon_sym___restrict__] = ACTIONS(2680), + [anon_sym__Atomic] = ACTIONS(2680), + [anon_sym__Noreturn] = ACTIONS(2680), + [anon_sym__Nonnull] = ACTIONS(2680), + [anon_sym_nullable] = ACTIONS(2680), + [anon_sym__Complex] = ACTIONS(2680), + [anon_sym__Nullable] = ACTIONS(2680), + [anon_sym__Nullable_result] = ACTIONS(2680), + [anon_sym__Null_unspecified] = ACTIONS(2680), + [anon_sym___autoreleasing] = ACTIONS(2680), + [anon_sym___block] = ACTIONS(2680), + [anon_sym___bridge] = ACTIONS(2680), + [anon_sym___bridge_retained] = ACTIONS(2680), + [anon_sym___bridge_transfer] = ACTIONS(2680), + [anon_sym___complex] = ACTIONS(2680), + [anon_sym___const] = ACTIONS(2680), + [anon_sym___imag] = ACTIONS(2680), + [anon_sym___kindof] = ACTIONS(2680), + [anon_sym___nonnull] = ACTIONS(2680), + [anon_sym___nullable] = ACTIONS(2680), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2680), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2680), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2680), + [anon_sym___real] = ACTIONS(2680), + [anon_sym___strong] = ACTIONS(2680), + [anon_sym___unsafe_unretained] = ACTIONS(2680), + [anon_sym___unused] = ACTIONS(2680), + [anon_sym___weak] = ACTIONS(2680), + [anon_sym_alignas] = ACTIONS(2680), + [anon_sym__Alignas] = ACTIONS(2680), + [sym_primitive_type] = ACTIONS(2680), + [anon_sym_enum] = ACTIONS(2680), + [anon_sym_struct] = ACTIONS(2680), + [anon_sym_union] = ACTIONS(2680), + [anon_sym_if] = ACTIONS(2680), + [anon_sym_switch] = ACTIONS(2680), + [anon_sym_case] = ACTIONS(2680), + [anon_sym_default] = ACTIONS(2680), + [anon_sym_while] = ACTIONS(2680), + [anon_sym_do] = ACTIONS(2680), + [anon_sym_for] = ACTIONS(2680), + [anon_sym_in] = ACTIONS(2680), + [anon_sym_return] = ACTIONS(2680), + [anon_sym_break] = ACTIONS(2680), + [anon_sym_continue] = ACTIONS(2680), + [anon_sym_goto] = ACTIONS(2680), + [anon_sym_DASH_DASH] = ACTIONS(2682), + [anon_sym_PLUS_PLUS] = ACTIONS(2682), + [anon_sym_sizeof] = ACTIONS(2680), + [anon_sym___alignof__] = ACTIONS(2680), + [anon_sym___alignof] = ACTIONS(2680), + [anon_sym__alignof] = ACTIONS(2680), + [anon_sym_alignof] = ACTIONS(2680), + [anon_sym__Alignof] = ACTIONS(2680), + [anon_sym_offsetof] = ACTIONS(2680), + [anon_sym__Generic] = ACTIONS(2680), + [anon_sym_asm] = ACTIONS(2680), + [anon_sym___asm__] = ACTIONS(2680), + [anon_sym___asm] = ACTIONS(2680), + [sym_number_literal] = ACTIONS(2682), + [anon_sym_L_SQUOTE] = ACTIONS(2682), + [anon_sym_u_SQUOTE] = ACTIONS(2682), + [anon_sym_U_SQUOTE] = ACTIONS(2682), + [anon_sym_u8_SQUOTE] = ACTIONS(2682), + [anon_sym_SQUOTE] = ACTIONS(2682), + [anon_sym_AT] = ACTIONS(2680), + [anon_sym_DQUOTE] = ACTIONS(2682), + [anon_sym_L_DQUOTE] = ACTIONS(2682), + [anon_sym_u_DQUOTE] = ACTIONS(2682), + [anon_sym_U_DQUOTE] = ACTIONS(2682), + [anon_sym_u8_DQUOTE] = ACTIONS(2682), + [sym_true] = ACTIONS(2680), + [sym_false] = ACTIONS(2680), + [anon_sym_NULL] = ACTIONS(2680), + [anon_sym_nullptr] = ACTIONS(2680), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2680), + [anon_sym___typeof] = ACTIONS(2680), + [anon_sym_typeof] = ACTIONS(2680), + [anon_sym_ATimport] = ACTIONS(2682), + [aux_sym_preproc_undef_token1] = ACTIONS(2680), + [anon_sym_POUND] = ACTIONS(2680), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2680), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2680), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2680), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2680), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2680), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2680), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2680), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2680), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2680), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2680), + [anon_sym_NS_AVAILABLE] = ACTIONS(2680), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2680), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2680), + [anon_sym_API_AVAILABLE] = ACTIONS(2680), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2680), + [anon_sym_API_DEPRECATED] = ACTIONS(2680), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2680), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2680), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2680), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2680), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2680), + [anon_sym___deprecated_msg] = ACTIONS(2680), + [anon_sym___deprecated_enum_msg] = ACTIONS(2680), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2680), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2680), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2680), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2680), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2680), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2680), + [anon_sym_ATprotocol] = ACTIONS(2682), + [anon_sym_ATinterface] = ACTIONS(2682), + [anon_sym_ATimplementation] = ACTIONS(2682), + [anon_sym_ATcompatibility_alias] = ACTIONS(2682), + [anon_sym_ATsynthesize] = ACTIONS(2682), + [anon_sym_ATdynamic] = ACTIONS(2682), + [anon_sym_ATtry] = ACTIONS(2682), + [anon_sym___try] = ACTIONS(2680), + [anon_sym_ATthrow] = ACTIONS(2682), + [anon_sym_ATselector] = ACTIONS(2682), + [anon_sym_ATavailable] = ACTIONS(2682), + [anon_sym___builtin_available] = ACTIONS(2680), + [anon_sym_va_arg] = ACTIONS(2680), + [anon_sym_ATencode] = ACTIONS(2682), + [anon_sym_ATsynchronized] = ACTIONS(2682), + [anon_sym_BOOL] = ACTIONS(2680), + [anon_sym_IMP] = ACTIONS(2680), + [anon_sym_SEL] = ACTIONS(2680), + [anon_sym_Class] = ACTIONS(2680), + [anon_sym_id] = ACTIONS(2680), + }, + [305] = { + [sym_identifier] = ACTIONS(2684), + [aux_sym_preproc_include_token1] = ACTIONS(2684), + [aux_sym_preproc_include_token2] = ACTIONS(2684), + [aux_sym_preproc_def_token1] = ACTIONS(2684), + [aux_sym_preproc_if_token1] = ACTIONS(2684), + [aux_sym_preproc_if_token2] = ACTIONS(2684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2684), + [aux_sym_preproc_else_token1] = ACTIONS(2684), + [aux_sym_preproc_elif_token1] = ACTIONS(2684), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2684), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2684), + [sym_preproc_directive] = ACTIONS(2684), + [anon_sym_LPAREN2] = ACTIONS(2686), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_CARET] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_SEMI] = ACTIONS(2686), + [anon_sym___extension__] = ACTIONS(2684), + [anon_sym_typedef] = ACTIONS(2684), + [anon_sym_extern] = ACTIONS(2684), + [anon_sym___attribute__] = ACTIONS(2684), + [anon_sym___attribute] = ACTIONS(2684), + [anon_sym_noreturn] = ACTIONS(2684), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym___declspec] = ACTIONS(2684), + [anon_sym___cdecl] = ACTIONS(2684), + [anon_sym___clrcall] = ACTIONS(2684), + [anon_sym___stdcall] = ACTIONS(2684), + [anon_sym___fastcall] = ACTIONS(2684), + [anon_sym___thiscall] = ACTIONS(2684), + [anon_sym___vectorcall] = ACTIONS(2684), + [anon_sym_LBRACE] = ACTIONS(2686), + [anon_sym_signed] = ACTIONS(2684), + [anon_sym_unsigned] = ACTIONS(2684), + [anon_sym_long] = ACTIONS(2684), + [anon_sym_short] = ACTIONS(2684), + [anon_sym_static] = ACTIONS(2684), + [anon_sym_ATautoreleasepool] = ACTIONS(2686), + [anon_sym_auto] = ACTIONS(2684), + [anon_sym_register] = ACTIONS(2684), + [anon_sym_inline] = ACTIONS(2684), + [anon_sym___inline] = ACTIONS(2684), + [anon_sym___inline__] = ACTIONS(2684), + [anon_sym___forceinline] = ACTIONS(2684), + [anon_sym_thread_local] = ACTIONS(2684), + [anon_sym___thread] = ACTIONS(2684), + [anon_sym_CG_EXTERN] = ACTIONS(2684), + [anon_sym_CG_INLINE] = ACTIONS(2684), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2684), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2684), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2684), + [anon_sym_IBOutlet] = ACTIONS(2684), + [anon_sym_IBInspectable] = ACTIONS(2684), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2684), + [anon_sym_NS_INLINE] = ACTIONS(2684), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2684), + [anon_sym_OBJC_EXPORT] = ACTIONS(2684), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2684), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2684), + [anon_sym_const] = ACTIONS(2684), + [anon_sym_constexpr] = ACTIONS(2684), + [anon_sym_volatile] = ACTIONS(2684), + [anon_sym_restrict] = ACTIONS(2684), + [anon_sym___restrict__] = ACTIONS(2684), + [anon_sym__Atomic] = ACTIONS(2684), + [anon_sym__Noreturn] = ACTIONS(2684), + [anon_sym__Nonnull] = ACTIONS(2684), + [anon_sym_nullable] = ACTIONS(2684), + [anon_sym__Complex] = ACTIONS(2684), + [anon_sym__Nullable] = ACTIONS(2684), + [anon_sym__Nullable_result] = ACTIONS(2684), + [anon_sym__Null_unspecified] = ACTIONS(2684), + [anon_sym___autoreleasing] = ACTIONS(2684), + [anon_sym___block] = ACTIONS(2684), + [anon_sym___bridge] = ACTIONS(2684), + [anon_sym___bridge_retained] = ACTIONS(2684), + [anon_sym___bridge_transfer] = ACTIONS(2684), + [anon_sym___complex] = ACTIONS(2684), + [anon_sym___const] = ACTIONS(2684), + [anon_sym___imag] = ACTIONS(2684), + [anon_sym___kindof] = ACTIONS(2684), + [anon_sym___nonnull] = ACTIONS(2684), + [anon_sym___nullable] = ACTIONS(2684), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2684), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2684), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2684), + [anon_sym___real] = ACTIONS(2684), + [anon_sym___strong] = ACTIONS(2684), + [anon_sym___unsafe_unretained] = ACTIONS(2684), + [anon_sym___unused] = ACTIONS(2684), + [anon_sym___weak] = ACTIONS(2684), + [anon_sym_alignas] = ACTIONS(2684), + [anon_sym__Alignas] = ACTIONS(2684), + [sym_primitive_type] = ACTIONS(2684), + [anon_sym_enum] = ACTIONS(2684), + [anon_sym_struct] = ACTIONS(2684), + [anon_sym_union] = ACTIONS(2684), + [anon_sym_if] = ACTIONS(2684), + [anon_sym_switch] = ACTIONS(2684), + [anon_sym_case] = ACTIONS(2684), + [anon_sym_default] = ACTIONS(2684), + [anon_sym_while] = ACTIONS(2684), + [anon_sym_do] = ACTIONS(2684), + [anon_sym_for] = ACTIONS(2684), + [anon_sym_in] = ACTIONS(2684), + [anon_sym_return] = ACTIONS(2684), + [anon_sym_break] = ACTIONS(2684), + [anon_sym_continue] = ACTIONS(2684), + [anon_sym_goto] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(2686), + [anon_sym_PLUS_PLUS] = ACTIONS(2686), + [anon_sym_sizeof] = ACTIONS(2684), + [anon_sym___alignof__] = ACTIONS(2684), + [anon_sym___alignof] = ACTIONS(2684), + [anon_sym__alignof] = ACTIONS(2684), + [anon_sym_alignof] = ACTIONS(2684), + [anon_sym__Alignof] = ACTIONS(2684), + [anon_sym_offsetof] = ACTIONS(2684), + [anon_sym__Generic] = ACTIONS(2684), + [anon_sym_asm] = ACTIONS(2684), + [anon_sym___asm__] = ACTIONS(2684), + [anon_sym___asm] = ACTIONS(2684), + [sym_number_literal] = ACTIONS(2686), + [anon_sym_L_SQUOTE] = ACTIONS(2686), + [anon_sym_u_SQUOTE] = ACTIONS(2686), + [anon_sym_U_SQUOTE] = ACTIONS(2686), + [anon_sym_u8_SQUOTE] = ACTIONS(2686), + [anon_sym_SQUOTE] = ACTIONS(2686), + [anon_sym_AT] = ACTIONS(2684), + [anon_sym_DQUOTE] = ACTIONS(2686), + [anon_sym_L_DQUOTE] = ACTIONS(2686), + [anon_sym_u_DQUOTE] = ACTIONS(2686), + [anon_sym_U_DQUOTE] = ACTIONS(2686), + [anon_sym_u8_DQUOTE] = ACTIONS(2686), + [sym_true] = ACTIONS(2684), + [sym_false] = ACTIONS(2684), + [anon_sym_NULL] = ACTIONS(2684), + [anon_sym_nullptr] = ACTIONS(2684), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2684), + [anon_sym___typeof] = ACTIONS(2684), + [anon_sym_typeof] = ACTIONS(2684), + [anon_sym_ATimport] = ACTIONS(2686), + [aux_sym_preproc_undef_token1] = ACTIONS(2684), + [anon_sym_POUND] = ACTIONS(2684), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2684), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2684), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2684), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2684), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2684), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2684), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2684), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2684), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2684), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2684), + [anon_sym_NS_AVAILABLE] = ACTIONS(2684), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2684), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2684), + [anon_sym_API_AVAILABLE] = ACTIONS(2684), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2684), + [anon_sym_API_DEPRECATED] = ACTIONS(2684), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2684), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2684), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2684), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2684), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2684), + [anon_sym___deprecated_msg] = ACTIONS(2684), + [anon_sym___deprecated_enum_msg] = ACTIONS(2684), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2684), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2684), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2684), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2684), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2684), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2684), + [anon_sym_ATprotocol] = ACTIONS(2686), + [anon_sym_ATinterface] = ACTIONS(2686), + [anon_sym_ATimplementation] = ACTIONS(2686), + [anon_sym_ATcompatibility_alias] = ACTIONS(2686), + [anon_sym_ATsynthesize] = ACTIONS(2686), + [anon_sym_ATdynamic] = ACTIONS(2686), + [anon_sym_ATtry] = ACTIONS(2686), + [anon_sym___try] = ACTIONS(2684), + [anon_sym_ATthrow] = ACTIONS(2686), + [anon_sym_ATselector] = ACTIONS(2686), + [anon_sym_ATavailable] = ACTIONS(2686), + [anon_sym___builtin_available] = ACTIONS(2684), + [anon_sym_va_arg] = ACTIONS(2684), + [anon_sym_ATencode] = ACTIONS(2686), + [anon_sym_ATsynchronized] = ACTIONS(2686), + [anon_sym_BOOL] = ACTIONS(2684), + [anon_sym_IMP] = ACTIONS(2684), + [anon_sym_SEL] = ACTIONS(2684), + [anon_sym_Class] = ACTIONS(2684), + [anon_sym_id] = ACTIONS(2684), + }, + [306] = { + [sym_identifier] = ACTIONS(2688), + [aux_sym_preproc_include_token1] = ACTIONS(2688), + [aux_sym_preproc_include_token2] = ACTIONS(2688), + [aux_sym_preproc_def_token1] = ACTIONS(2688), + [aux_sym_preproc_if_token1] = ACTIONS(2688), + [aux_sym_preproc_if_token2] = ACTIONS(2688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2688), + [aux_sym_preproc_else_token1] = ACTIONS(2688), + [aux_sym_preproc_elif_token1] = ACTIONS(2688), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2688), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2688), + [sym_preproc_directive] = ACTIONS(2688), + [anon_sym_LPAREN2] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_TILDE] = ACTIONS(2690), + [anon_sym_DASH] = ACTIONS(2688), + [anon_sym_PLUS] = ACTIONS(2688), + [anon_sym_STAR] = ACTIONS(2690), + [anon_sym_CARET] = ACTIONS(2690), + [anon_sym_AMP] = ACTIONS(2690), + [anon_sym_SEMI] = ACTIONS(2690), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_typedef] = ACTIONS(2688), + [anon_sym_extern] = ACTIONS(2688), + [anon_sym___attribute__] = ACTIONS(2688), + [anon_sym___attribute] = ACTIONS(2688), + [anon_sym_noreturn] = ACTIONS(2688), + [anon_sym_LBRACK] = ACTIONS(2690), + [anon_sym___declspec] = ACTIONS(2688), + [anon_sym___cdecl] = ACTIONS(2688), + [anon_sym___clrcall] = ACTIONS(2688), + [anon_sym___stdcall] = ACTIONS(2688), + [anon_sym___fastcall] = ACTIONS(2688), + [anon_sym___thiscall] = ACTIONS(2688), + [anon_sym___vectorcall] = ACTIONS(2688), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_signed] = ACTIONS(2688), + [anon_sym_unsigned] = ACTIONS(2688), + [anon_sym_long] = ACTIONS(2688), + [anon_sym_short] = ACTIONS(2688), + [anon_sym_static] = ACTIONS(2688), + [anon_sym_ATautoreleasepool] = ACTIONS(2690), + [anon_sym_auto] = ACTIONS(2688), + [anon_sym_register] = ACTIONS(2688), + [anon_sym_inline] = ACTIONS(2688), + [anon_sym___inline] = ACTIONS(2688), + [anon_sym___inline__] = ACTIONS(2688), + [anon_sym___forceinline] = ACTIONS(2688), + [anon_sym_thread_local] = ACTIONS(2688), + [anon_sym___thread] = ACTIONS(2688), + [anon_sym_CG_EXTERN] = ACTIONS(2688), + [anon_sym_CG_INLINE] = ACTIONS(2688), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2688), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2688), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2688), + [anon_sym_IBOutlet] = ACTIONS(2688), + [anon_sym_IBInspectable] = ACTIONS(2688), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2688), + [anon_sym_NS_INLINE] = ACTIONS(2688), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2688), + [anon_sym_OBJC_EXPORT] = ACTIONS(2688), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2688), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2688), + [anon_sym_const] = ACTIONS(2688), + [anon_sym_constexpr] = ACTIONS(2688), + [anon_sym_volatile] = ACTIONS(2688), + [anon_sym_restrict] = ACTIONS(2688), + [anon_sym___restrict__] = ACTIONS(2688), + [anon_sym__Atomic] = ACTIONS(2688), + [anon_sym__Noreturn] = ACTIONS(2688), + [anon_sym__Nonnull] = ACTIONS(2688), + [anon_sym_nullable] = ACTIONS(2688), + [anon_sym__Complex] = ACTIONS(2688), + [anon_sym__Nullable] = ACTIONS(2688), + [anon_sym__Nullable_result] = ACTIONS(2688), + [anon_sym__Null_unspecified] = ACTIONS(2688), + [anon_sym___autoreleasing] = ACTIONS(2688), + [anon_sym___block] = ACTIONS(2688), + [anon_sym___bridge] = ACTIONS(2688), + [anon_sym___bridge_retained] = ACTIONS(2688), + [anon_sym___bridge_transfer] = ACTIONS(2688), + [anon_sym___complex] = ACTIONS(2688), + [anon_sym___const] = ACTIONS(2688), + [anon_sym___imag] = ACTIONS(2688), + [anon_sym___kindof] = ACTIONS(2688), + [anon_sym___nonnull] = ACTIONS(2688), + [anon_sym___nullable] = ACTIONS(2688), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2688), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2688), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2688), + [anon_sym___real] = ACTIONS(2688), + [anon_sym___strong] = ACTIONS(2688), + [anon_sym___unsafe_unretained] = ACTIONS(2688), + [anon_sym___unused] = ACTIONS(2688), + [anon_sym___weak] = ACTIONS(2688), + [anon_sym_alignas] = ACTIONS(2688), + [anon_sym__Alignas] = ACTIONS(2688), + [sym_primitive_type] = ACTIONS(2688), + [anon_sym_enum] = ACTIONS(2688), + [anon_sym_struct] = ACTIONS(2688), + [anon_sym_union] = ACTIONS(2688), + [anon_sym_if] = ACTIONS(2688), + [anon_sym_switch] = ACTIONS(2688), + [anon_sym_case] = ACTIONS(2688), + [anon_sym_default] = ACTIONS(2688), + [anon_sym_while] = ACTIONS(2688), + [anon_sym_do] = ACTIONS(2688), + [anon_sym_for] = ACTIONS(2688), + [anon_sym_in] = ACTIONS(2688), + [anon_sym_return] = ACTIONS(2688), + [anon_sym_break] = ACTIONS(2688), + [anon_sym_continue] = ACTIONS(2688), + [anon_sym_goto] = ACTIONS(2688), + [anon_sym_DASH_DASH] = ACTIONS(2690), + [anon_sym_PLUS_PLUS] = ACTIONS(2690), + [anon_sym_sizeof] = ACTIONS(2688), + [anon_sym___alignof__] = ACTIONS(2688), + [anon_sym___alignof] = ACTIONS(2688), + [anon_sym__alignof] = ACTIONS(2688), + [anon_sym_alignof] = ACTIONS(2688), + [anon_sym__Alignof] = ACTIONS(2688), + [anon_sym_offsetof] = ACTIONS(2688), + [anon_sym__Generic] = ACTIONS(2688), + [anon_sym_asm] = ACTIONS(2688), + [anon_sym___asm__] = ACTIONS(2688), + [anon_sym___asm] = ACTIONS(2688), + [sym_number_literal] = ACTIONS(2690), + [anon_sym_L_SQUOTE] = ACTIONS(2690), + [anon_sym_u_SQUOTE] = ACTIONS(2690), + [anon_sym_U_SQUOTE] = ACTIONS(2690), + [anon_sym_u8_SQUOTE] = ACTIONS(2690), + [anon_sym_SQUOTE] = ACTIONS(2690), + [anon_sym_AT] = ACTIONS(2688), + [anon_sym_DQUOTE] = ACTIONS(2690), + [anon_sym_L_DQUOTE] = ACTIONS(2690), + [anon_sym_u_DQUOTE] = ACTIONS(2690), + [anon_sym_U_DQUOTE] = ACTIONS(2690), + [anon_sym_u8_DQUOTE] = ACTIONS(2690), + [sym_true] = ACTIONS(2688), + [sym_false] = ACTIONS(2688), + [anon_sym_NULL] = ACTIONS(2688), + [anon_sym_nullptr] = ACTIONS(2688), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2688), + [anon_sym___typeof] = ACTIONS(2688), + [anon_sym_typeof] = ACTIONS(2688), + [anon_sym_ATimport] = ACTIONS(2690), + [aux_sym_preproc_undef_token1] = ACTIONS(2688), + [anon_sym_POUND] = ACTIONS(2688), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2688), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2688), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2688), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2688), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2688), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2688), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2688), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2688), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2688), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2688), + [anon_sym_NS_AVAILABLE] = ACTIONS(2688), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2688), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2688), + [anon_sym_API_AVAILABLE] = ACTIONS(2688), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2688), + [anon_sym_API_DEPRECATED] = ACTIONS(2688), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2688), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2688), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2688), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2688), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2688), + [anon_sym___deprecated_msg] = ACTIONS(2688), + [anon_sym___deprecated_enum_msg] = ACTIONS(2688), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2688), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2688), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2688), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2688), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2688), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2688), + [anon_sym_ATprotocol] = ACTIONS(2690), + [anon_sym_ATinterface] = ACTIONS(2690), + [anon_sym_ATimplementation] = ACTIONS(2690), + [anon_sym_ATcompatibility_alias] = ACTIONS(2690), + [anon_sym_ATsynthesize] = ACTIONS(2690), + [anon_sym_ATdynamic] = ACTIONS(2690), + [anon_sym_ATtry] = ACTIONS(2690), + [anon_sym___try] = ACTIONS(2688), + [anon_sym_ATthrow] = ACTIONS(2690), + [anon_sym_ATselector] = ACTIONS(2690), + [anon_sym_ATavailable] = ACTIONS(2690), + [anon_sym___builtin_available] = ACTIONS(2688), + [anon_sym_va_arg] = ACTIONS(2688), + [anon_sym_ATencode] = ACTIONS(2690), + [anon_sym_ATsynchronized] = ACTIONS(2690), + [anon_sym_BOOL] = ACTIONS(2688), + [anon_sym_IMP] = ACTIONS(2688), + [anon_sym_SEL] = ACTIONS(2688), + [anon_sym_Class] = ACTIONS(2688), + [anon_sym_id] = ACTIONS(2688), + }, + [307] = { + [sym_identifier] = ACTIONS(2692), + [aux_sym_preproc_include_token1] = ACTIONS(2692), + [aux_sym_preproc_include_token2] = ACTIONS(2692), + [aux_sym_preproc_def_token1] = ACTIONS(2692), + [aux_sym_preproc_if_token1] = ACTIONS(2692), + [aux_sym_preproc_if_token2] = ACTIONS(2692), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2692), + [aux_sym_preproc_else_token1] = ACTIONS(2692), + [aux_sym_preproc_elif_token1] = ACTIONS(2692), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2692), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2692), + [sym_preproc_directive] = ACTIONS(2692), + [anon_sym_LPAREN2] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2694), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2692), + [anon_sym_PLUS] = ACTIONS(2692), + [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_CARET] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_SEMI] = ACTIONS(2694), + [anon_sym___extension__] = ACTIONS(2692), + [anon_sym_typedef] = ACTIONS(2692), + [anon_sym_extern] = ACTIONS(2692), + [anon_sym___attribute__] = ACTIONS(2692), + [anon_sym___attribute] = ACTIONS(2692), + [anon_sym_noreturn] = ACTIONS(2692), + [anon_sym_LBRACK] = ACTIONS(2694), + [anon_sym___declspec] = ACTIONS(2692), + [anon_sym___cdecl] = ACTIONS(2692), + [anon_sym___clrcall] = ACTIONS(2692), + [anon_sym___stdcall] = ACTIONS(2692), + [anon_sym___fastcall] = ACTIONS(2692), + [anon_sym___thiscall] = ACTIONS(2692), + [anon_sym___vectorcall] = ACTIONS(2692), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_signed] = ACTIONS(2692), + [anon_sym_unsigned] = ACTIONS(2692), + [anon_sym_long] = ACTIONS(2692), + [anon_sym_short] = ACTIONS(2692), + [anon_sym_static] = ACTIONS(2692), + [anon_sym_ATautoreleasepool] = ACTIONS(2694), + [anon_sym_auto] = ACTIONS(2692), + [anon_sym_register] = ACTIONS(2692), + [anon_sym_inline] = ACTIONS(2692), + [anon_sym___inline] = ACTIONS(2692), + [anon_sym___inline__] = ACTIONS(2692), + [anon_sym___forceinline] = ACTIONS(2692), + [anon_sym_thread_local] = ACTIONS(2692), + [anon_sym___thread] = ACTIONS(2692), + [anon_sym_CG_EXTERN] = ACTIONS(2692), + [anon_sym_CG_INLINE] = ACTIONS(2692), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2692), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2692), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2692), + [anon_sym_IBOutlet] = ACTIONS(2692), + [anon_sym_IBInspectable] = ACTIONS(2692), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2692), + [anon_sym_NS_INLINE] = ACTIONS(2692), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2692), + [anon_sym_OBJC_EXPORT] = ACTIONS(2692), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2692), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2692), + [anon_sym_const] = ACTIONS(2692), + [anon_sym_constexpr] = ACTIONS(2692), + [anon_sym_volatile] = ACTIONS(2692), + [anon_sym_restrict] = ACTIONS(2692), + [anon_sym___restrict__] = ACTIONS(2692), + [anon_sym__Atomic] = ACTIONS(2692), + [anon_sym__Noreturn] = ACTIONS(2692), + [anon_sym__Nonnull] = ACTIONS(2692), + [anon_sym_nullable] = ACTIONS(2692), + [anon_sym__Complex] = ACTIONS(2692), + [anon_sym__Nullable] = ACTIONS(2692), + [anon_sym__Nullable_result] = ACTIONS(2692), + [anon_sym__Null_unspecified] = ACTIONS(2692), + [anon_sym___autoreleasing] = ACTIONS(2692), + [anon_sym___block] = ACTIONS(2692), + [anon_sym___bridge] = ACTIONS(2692), + [anon_sym___bridge_retained] = ACTIONS(2692), + [anon_sym___bridge_transfer] = ACTIONS(2692), + [anon_sym___complex] = ACTIONS(2692), + [anon_sym___const] = ACTIONS(2692), + [anon_sym___imag] = ACTIONS(2692), + [anon_sym___kindof] = ACTIONS(2692), + [anon_sym___nonnull] = ACTIONS(2692), + [anon_sym___nullable] = ACTIONS(2692), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2692), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2692), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2692), + [anon_sym___real] = ACTIONS(2692), + [anon_sym___strong] = ACTIONS(2692), + [anon_sym___unsafe_unretained] = ACTIONS(2692), + [anon_sym___unused] = ACTIONS(2692), + [anon_sym___weak] = ACTIONS(2692), + [anon_sym_alignas] = ACTIONS(2692), + [anon_sym__Alignas] = ACTIONS(2692), + [sym_primitive_type] = ACTIONS(2692), + [anon_sym_enum] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_union] = ACTIONS(2692), + [anon_sym_if] = ACTIONS(2692), + [anon_sym_switch] = ACTIONS(2692), + [anon_sym_case] = ACTIONS(2692), + [anon_sym_default] = ACTIONS(2692), + [anon_sym_while] = ACTIONS(2692), + [anon_sym_do] = ACTIONS(2692), + [anon_sym_for] = ACTIONS(2692), + [anon_sym_in] = ACTIONS(2692), + [anon_sym_return] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_goto] = ACTIONS(2692), + [anon_sym_DASH_DASH] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2694), + [anon_sym_sizeof] = ACTIONS(2692), + [anon_sym___alignof__] = ACTIONS(2692), + [anon_sym___alignof] = ACTIONS(2692), + [anon_sym__alignof] = ACTIONS(2692), + [anon_sym_alignof] = ACTIONS(2692), + [anon_sym__Alignof] = ACTIONS(2692), + [anon_sym_offsetof] = ACTIONS(2692), + [anon_sym__Generic] = ACTIONS(2692), + [anon_sym_asm] = ACTIONS(2692), + [anon_sym___asm__] = ACTIONS(2692), + [anon_sym___asm] = ACTIONS(2692), + [sym_number_literal] = ACTIONS(2694), + [anon_sym_L_SQUOTE] = ACTIONS(2694), + [anon_sym_u_SQUOTE] = ACTIONS(2694), + [anon_sym_U_SQUOTE] = ACTIONS(2694), + [anon_sym_u8_SQUOTE] = ACTIONS(2694), + [anon_sym_SQUOTE] = ACTIONS(2694), + [anon_sym_AT] = ACTIONS(2692), + [anon_sym_DQUOTE] = ACTIONS(2694), + [anon_sym_L_DQUOTE] = ACTIONS(2694), + [anon_sym_u_DQUOTE] = ACTIONS(2694), + [anon_sym_U_DQUOTE] = ACTIONS(2694), + [anon_sym_u8_DQUOTE] = ACTIONS(2694), + [sym_true] = ACTIONS(2692), + [sym_false] = ACTIONS(2692), + [anon_sym_NULL] = ACTIONS(2692), + [anon_sym_nullptr] = ACTIONS(2692), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2692), + [anon_sym___typeof] = ACTIONS(2692), + [anon_sym_typeof] = ACTIONS(2692), + [anon_sym_ATimport] = ACTIONS(2694), + [aux_sym_preproc_undef_token1] = ACTIONS(2692), + [anon_sym_POUND] = ACTIONS(2692), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2692), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2692), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2692), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2692), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2692), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2692), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2692), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2692), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2692), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2692), + [anon_sym_NS_AVAILABLE] = ACTIONS(2692), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2692), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2692), + [anon_sym_API_AVAILABLE] = ACTIONS(2692), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2692), + [anon_sym_API_DEPRECATED] = ACTIONS(2692), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2692), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2692), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2692), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2692), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2692), + [anon_sym___deprecated_msg] = ACTIONS(2692), + [anon_sym___deprecated_enum_msg] = ACTIONS(2692), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2692), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2692), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2692), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2692), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2692), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2692), + [anon_sym_ATprotocol] = ACTIONS(2694), + [anon_sym_ATinterface] = ACTIONS(2694), + [anon_sym_ATimplementation] = ACTIONS(2694), + [anon_sym_ATcompatibility_alias] = ACTIONS(2694), + [anon_sym_ATsynthesize] = ACTIONS(2694), + [anon_sym_ATdynamic] = ACTIONS(2694), + [anon_sym_ATtry] = ACTIONS(2694), + [anon_sym___try] = ACTIONS(2692), + [anon_sym_ATthrow] = ACTIONS(2694), + [anon_sym_ATselector] = ACTIONS(2694), + [anon_sym_ATavailable] = ACTIONS(2694), + [anon_sym___builtin_available] = ACTIONS(2692), + [anon_sym_va_arg] = ACTIONS(2692), + [anon_sym_ATencode] = ACTIONS(2694), + [anon_sym_ATsynchronized] = ACTIONS(2694), + [anon_sym_BOOL] = ACTIONS(2692), + [anon_sym_IMP] = ACTIONS(2692), + [anon_sym_SEL] = ACTIONS(2692), + [anon_sym_Class] = ACTIONS(2692), + [anon_sym_id] = ACTIONS(2692), + }, + [308] = { + [sym_identifier] = ACTIONS(2696), + [aux_sym_preproc_include_token1] = ACTIONS(2696), + [aux_sym_preproc_include_token2] = ACTIONS(2696), + [aux_sym_preproc_def_token1] = ACTIONS(2696), + [aux_sym_preproc_if_token1] = ACTIONS(2696), + [aux_sym_preproc_if_token2] = ACTIONS(2696), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2696), + [aux_sym_preproc_else_token1] = ACTIONS(2696), + [aux_sym_preproc_elif_token1] = ACTIONS(2696), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2696), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2696), + [sym_preproc_directive] = ACTIONS(2696), + [anon_sym_LPAREN2] = ACTIONS(2698), + [anon_sym_BANG] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2698), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_CARET] = ACTIONS(2698), + [anon_sym_AMP] = ACTIONS(2698), + [anon_sym_SEMI] = ACTIONS(2698), + [anon_sym___extension__] = ACTIONS(2696), + [anon_sym_typedef] = ACTIONS(2696), + [anon_sym_extern] = ACTIONS(2696), + [anon_sym___attribute__] = ACTIONS(2696), + [anon_sym___attribute] = ACTIONS(2696), + [anon_sym_noreturn] = ACTIONS(2696), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym___declspec] = ACTIONS(2696), + [anon_sym___cdecl] = ACTIONS(2696), + [anon_sym___clrcall] = ACTIONS(2696), + [anon_sym___stdcall] = ACTIONS(2696), + [anon_sym___fastcall] = ACTIONS(2696), + [anon_sym___thiscall] = ACTIONS(2696), + [anon_sym___vectorcall] = ACTIONS(2696), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_signed] = ACTIONS(2696), + [anon_sym_unsigned] = ACTIONS(2696), + [anon_sym_long] = ACTIONS(2696), + [anon_sym_short] = ACTIONS(2696), + [anon_sym_static] = ACTIONS(2696), + [anon_sym_ATautoreleasepool] = ACTIONS(2698), + [anon_sym_auto] = ACTIONS(2696), + [anon_sym_register] = ACTIONS(2696), + [anon_sym_inline] = ACTIONS(2696), + [anon_sym___inline] = ACTIONS(2696), + [anon_sym___inline__] = ACTIONS(2696), + [anon_sym___forceinline] = ACTIONS(2696), + [anon_sym_thread_local] = ACTIONS(2696), + [anon_sym___thread] = ACTIONS(2696), + [anon_sym_CG_EXTERN] = ACTIONS(2696), + [anon_sym_CG_INLINE] = ACTIONS(2696), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2696), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2696), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2696), + [anon_sym_IBOutlet] = ACTIONS(2696), + [anon_sym_IBInspectable] = ACTIONS(2696), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2696), + [anon_sym_NS_INLINE] = ACTIONS(2696), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2696), + [anon_sym_OBJC_EXPORT] = ACTIONS(2696), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2696), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2696), + [anon_sym_const] = ACTIONS(2696), + [anon_sym_constexpr] = ACTIONS(2696), + [anon_sym_volatile] = ACTIONS(2696), + [anon_sym_restrict] = ACTIONS(2696), + [anon_sym___restrict__] = ACTIONS(2696), + [anon_sym__Atomic] = ACTIONS(2696), + [anon_sym__Noreturn] = ACTIONS(2696), + [anon_sym__Nonnull] = ACTIONS(2696), + [anon_sym_nullable] = ACTIONS(2696), + [anon_sym__Complex] = ACTIONS(2696), + [anon_sym__Nullable] = ACTIONS(2696), + [anon_sym__Nullable_result] = ACTIONS(2696), + [anon_sym__Null_unspecified] = ACTIONS(2696), + [anon_sym___autoreleasing] = ACTIONS(2696), + [anon_sym___block] = ACTIONS(2696), + [anon_sym___bridge] = ACTIONS(2696), + [anon_sym___bridge_retained] = ACTIONS(2696), + [anon_sym___bridge_transfer] = ACTIONS(2696), + [anon_sym___complex] = ACTIONS(2696), + [anon_sym___const] = ACTIONS(2696), + [anon_sym___imag] = ACTIONS(2696), + [anon_sym___kindof] = ACTIONS(2696), + [anon_sym___nonnull] = ACTIONS(2696), + [anon_sym___nullable] = ACTIONS(2696), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2696), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2696), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2696), + [anon_sym___real] = ACTIONS(2696), + [anon_sym___strong] = ACTIONS(2696), + [anon_sym___unsafe_unretained] = ACTIONS(2696), + [anon_sym___unused] = ACTIONS(2696), + [anon_sym___weak] = ACTIONS(2696), + [anon_sym_alignas] = ACTIONS(2696), + [anon_sym__Alignas] = ACTIONS(2696), + [sym_primitive_type] = ACTIONS(2696), + [anon_sym_enum] = ACTIONS(2696), + [anon_sym_struct] = ACTIONS(2696), + [anon_sym_union] = ACTIONS(2696), + [anon_sym_if] = ACTIONS(2696), + [anon_sym_switch] = ACTIONS(2696), + [anon_sym_case] = ACTIONS(2696), + [anon_sym_default] = ACTIONS(2696), + [anon_sym_while] = ACTIONS(2696), + [anon_sym_do] = ACTIONS(2696), + [anon_sym_for] = ACTIONS(2696), + [anon_sym_in] = ACTIONS(2696), + [anon_sym_return] = ACTIONS(2696), + [anon_sym_break] = ACTIONS(2696), + [anon_sym_continue] = ACTIONS(2696), + [anon_sym_goto] = ACTIONS(2696), + [anon_sym_DASH_DASH] = ACTIONS(2698), + [anon_sym_PLUS_PLUS] = ACTIONS(2698), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2696), + [anon_sym___alignof] = ACTIONS(2696), + [anon_sym__alignof] = ACTIONS(2696), + [anon_sym_alignof] = ACTIONS(2696), + [anon_sym__Alignof] = ACTIONS(2696), + [anon_sym_offsetof] = ACTIONS(2696), + [anon_sym__Generic] = ACTIONS(2696), + [anon_sym_asm] = ACTIONS(2696), + [anon_sym___asm__] = ACTIONS(2696), + [anon_sym___asm] = ACTIONS(2696), + [sym_number_literal] = ACTIONS(2698), + [anon_sym_L_SQUOTE] = ACTIONS(2698), + [anon_sym_u_SQUOTE] = ACTIONS(2698), + [anon_sym_U_SQUOTE] = ACTIONS(2698), + [anon_sym_u8_SQUOTE] = ACTIONS(2698), + [anon_sym_SQUOTE] = ACTIONS(2698), + [anon_sym_AT] = ACTIONS(2696), + [anon_sym_DQUOTE] = ACTIONS(2698), + [anon_sym_L_DQUOTE] = ACTIONS(2698), + [anon_sym_u_DQUOTE] = ACTIONS(2698), + [anon_sym_U_DQUOTE] = ACTIONS(2698), + [anon_sym_u8_DQUOTE] = ACTIONS(2698), + [sym_true] = ACTIONS(2696), + [sym_false] = ACTIONS(2696), + [anon_sym_NULL] = ACTIONS(2696), + [anon_sym_nullptr] = ACTIONS(2696), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2696), + [anon_sym___typeof] = ACTIONS(2696), + [anon_sym_typeof] = ACTIONS(2696), + [anon_sym_ATimport] = ACTIONS(2698), + [aux_sym_preproc_undef_token1] = ACTIONS(2696), + [anon_sym_POUND] = ACTIONS(2696), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2696), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2696), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2696), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2696), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2696), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2696), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2696), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2696), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2696), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2696), + [anon_sym_NS_AVAILABLE] = ACTIONS(2696), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2696), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2696), + [anon_sym_API_AVAILABLE] = ACTIONS(2696), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2696), + [anon_sym_API_DEPRECATED] = ACTIONS(2696), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2696), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2696), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2696), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2696), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2696), + [anon_sym___deprecated_msg] = ACTIONS(2696), + [anon_sym___deprecated_enum_msg] = ACTIONS(2696), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2696), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2696), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2696), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2696), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2696), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2696), + [anon_sym_ATprotocol] = ACTIONS(2698), + [anon_sym_ATinterface] = ACTIONS(2698), + [anon_sym_ATimplementation] = ACTIONS(2698), + [anon_sym_ATcompatibility_alias] = ACTIONS(2698), + [anon_sym_ATsynthesize] = ACTIONS(2698), + [anon_sym_ATdynamic] = ACTIONS(2698), + [anon_sym_ATtry] = ACTIONS(2698), + [anon_sym___try] = ACTIONS(2696), + [anon_sym_ATthrow] = ACTIONS(2698), + [anon_sym_ATselector] = ACTIONS(2698), + [anon_sym_ATavailable] = ACTIONS(2698), + [anon_sym___builtin_available] = ACTIONS(2696), + [anon_sym_va_arg] = ACTIONS(2696), + [anon_sym_ATencode] = ACTIONS(2698), + [anon_sym_ATsynchronized] = ACTIONS(2698), + [anon_sym_BOOL] = ACTIONS(2696), + [anon_sym_IMP] = ACTIONS(2696), + [anon_sym_SEL] = ACTIONS(2696), + [anon_sym_Class] = ACTIONS(2696), + [anon_sym_id] = ACTIONS(2696), + }, + [309] = { + [sym_identifier] = ACTIONS(2700), + [aux_sym_preproc_include_token1] = ACTIONS(2700), + [aux_sym_preproc_include_token2] = ACTIONS(2700), + [aux_sym_preproc_def_token1] = ACTIONS(2700), + [aux_sym_preproc_if_token1] = ACTIONS(2700), + [aux_sym_preproc_if_token2] = ACTIONS(2700), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2700), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2700), + [aux_sym_preproc_else_token1] = ACTIONS(2700), + [aux_sym_preproc_elif_token1] = ACTIONS(2700), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2700), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2700), + [sym_preproc_directive] = ACTIONS(2700), + [anon_sym_LPAREN2] = ACTIONS(2702), + [anon_sym_BANG] = ACTIONS(2702), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_STAR] = ACTIONS(2702), + [anon_sym_CARET] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2702), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym___extension__] = ACTIONS(2700), + [anon_sym_typedef] = ACTIONS(2700), + [anon_sym_extern] = ACTIONS(2700), + [anon_sym___attribute__] = ACTIONS(2700), + [anon_sym___attribute] = ACTIONS(2700), + [anon_sym_noreturn] = ACTIONS(2700), + [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym___declspec] = ACTIONS(2700), + [anon_sym___cdecl] = ACTIONS(2700), + [anon_sym___clrcall] = ACTIONS(2700), + [anon_sym___stdcall] = ACTIONS(2700), + [anon_sym___fastcall] = ACTIONS(2700), + [anon_sym___thiscall] = ACTIONS(2700), + [anon_sym___vectorcall] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_signed] = ACTIONS(2700), + [anon_sym_unsigned] = ACTIONS(2700), + [anon_sym_long] = ACTIONS(2700), + [anon_sym_short] = ACTIONS(2700), + [anon_sym_static] = ACTIONS(2700), + [anon_sym_ATautoreleasepool] = ACTIONS(2702), + [anon_sym_auto] = ACTIONS(2700), + [anon_sym_register] = ACTIONS(2700), + [anon_sym_inline] = ACTIONS(2700), + [anon_sym___inline] = ACTIONS(2700), + [anon_sym___inline__] = ACTIONS(2700), + [anon_sym___forceinline] = ACTIONS(2700), + [anon_sym_thread_local] = ACTIONS(2700), + [anon_sym___thread] = ACTIONS(2700), + [anon_sym_CG_EXTERN] = ACTIONS(2700), + [anon_sym_CG_INLINE] = ACTIONS(2700), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2700), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2700), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2700), + [anon_sym_IBOutlet] = ACTIONS(2700), + [anon_sym_IBInspectable] = ACTIONS(2700), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2700), + [anon_sym_NS_INLINE] = ACTIONS(2700), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2700), + [anon_sym_OBJC_EXPORT] = ACTIONS(2700), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2700), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2700), + [anon_sym_const] = ACTIONS(2700), + [anon_sym_constexpr] = ACTIONS(2700), + [anon_sym_volatile] = ACTIONS(2700), + [anon_sym_restrict] = ACTIONS(2700), + [anon_sym___restrict__] = ACTIONS(2700), + [anon_sym__Atomic] = ACTIONS(2700), + [anon_sym__Noreturn] = ACTIONS(2700), + [anon_sym__Nonnull] = ACTIONS(2700), + [anon_sym_nullable] = ACTIONS(2700), + [anon_sym__Complex] = ACTIONS(2700), + [anon_sym__Nullable] = ACTIONS(2700), + [anon_sym__Nullable_result] = ACTIONS(2700), + [anon_sym__Null_unspecified] = ACTIONS(2700), + [anon_sym___autoreleasing] = ACTIONS(2700), + [anon_sym___block] = ACTIONS(2700), + [anon_sym___bridge] = ACTIONS(2700), + [anon_sym___bridge_retained] = ACTIONS(2700), + [anon_sym___bridge_transfer] = ACTIONS(2700), + [anon_sym___complex] = ACTIONS(2700), + [anon_sym___const] = ACTIONS(2700), + [anon_sym___imag] = ACTIONS(2700), + [anon_sym___kindof] = ACTIONS(2700), + [anon_sym___nonnull] = ACTIONS(2700), + [anon_sym___nullable] = ACTIONS(2700), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2700), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2700), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2700), + [anon_sym___real] = ACTIONS(2700), + [anon_sym___strong] = ACTIONS(2700), + [anon_sym___unsafe_unretained] = ACTIONS(2700), + [anon_sym___unused] = ACTIONS(2700), + [anon_sym___weak] = ACTIONS(2700), + [anon_sym_alignas] = ACTIONS(2700), + [anon_sym__Alignas] = ACTIONS(2700), + [sym_primitive_type] = ACTIONS(2700), + [anon_sym_enum] = ACTIONS(2700), + [anon_sym_struct] = ACTIONS(2700), + [anon_sym_union] = ACTIONS(2700), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_switch] = ACTIONS(2700), + [anon_sym_case] = ACTIONS(2700), + [anon_sym_default] = ACTIONS(2700), + [anon_sym_while] = ACTIONS(2700), + [anon_sym_do] = ACTIONS(2700), + [anon_sym_for] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(2700), + [anon_sym_return] = ACTIONS(2700), + [anon_sym_break] = ACTIONS(2700), + [anon_sym_continue] = ACTIONS(2700), + [anon_sym_goto] = ACTIONS(2700), + [anon_sym_DASH_DASH] = ACTIONS(2702), + [anon_sym_PLUS_PLUS] = ACTIONS(2702), + [anon_sym_sizeof] = ACTIONS(2700), + [anon_sym___alignof__] = ACTIONS(2700), + [anon_sym___alignof] = ACTIONS(2700), + [anon_sym__alignof] = ACTIONS(2700), + [anon_sym_alignof] = ACTIONS(2700), + [anon_sym__Alignof] = ACTIONS(2700), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2700), + [anon_sym_asm] = ACTIONS(2700), + [anon_sym___asm__] = ACTIONS(2700), + [anon_sym___asm] = ACTIONS(2700), + [sym_number_literal] = ACTIONS(2702), + [anon_sym_L_SQUOTE] = ACTIONS(2702), + [anon_sym_u_SQUOTE] = ACTIONS(2702), + [anon_sym_U_SQUOTE] = ACTIONS(2702), + [anon_sym_u8_SQUOTE] = ACTIONS(2702), + [anon_sym_SQUOTE] = ACTIONS(2702), + [anon_sym_AT] = ACTIONS(2700), + [anon_sym_DQUOTE] = ACTIONS(2702), + [anon_sym_L_DQUOTE] = ACTIONS(2702), + [anon_sym_u_DQUOTE] = ACTIONS(2702), + [anon_sym_U_DQUOTE] = ACTIONS(2702), + [anon_sym_u8_DQUOTE] = ACTIONS(2702), + [sym_true] = ACTIONS(2700), + [sym_false] = ACTIONS(2700), + [anon_sym_NULL] = ACTIONS(2700), + [anon_sym_nullptr] = ACTIONS(2700), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2700), + [anon_sym___typeof] = ACTIONS(2700), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_ATimport] = ACTIONS(2702), + [aux_sym_preproc_undef_token1] = ACTIONS(2700), + [anon_sym_POUND] = ACTIONS(2700), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2700), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2700), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2700), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2700), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2700), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2700), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2700), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2700), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2700), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2700), + [anon_sym_NS_AVAILABLE] = ACTIONS(2700), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2700), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2700), + [anon_sym_API_AVAILABLE] = ACTIONS(2700), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2700), + [anon_sym_API_DEPRECATED] = ACTIONS(2700), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2700), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2700), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2700), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2700), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2700), + [anon_sym___deprecated_msg] = ACTIONS(2700), + [anon_sym___deprecated_enum_msg] = ACTIONS(2700), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2700), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2700), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2700), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2700), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2700), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2700), + [anon_sym_ATprotocol] = ACTIONS(2702), + [anon_sym_ATinterface] = ACTIONS(2702), + [anon_sym_ATimplementation] = ACTIONS(2702), + [anon_sym_ATcompatibility_alias] = ACTIONS(2702), + [anon_sym_ATsynthesize] = ACTIONS(2702), + [anon_sym_ATdynamic] = ACTIONS(2702), + [anon_sym_ATtry] = ACTIONS(2702), + [anon_sym___try] = ACTIONS(2700), + [anon_sym_ATthrow] = ACTIONS(2702), + [anon_sym_ATselector] = ACTIONS(2702), + [anon_sym_ATavailable] = ACTIONS(2702), + [anon_sym___builtin_available] = ACTIONS(2700), + [anon_sym_va_arg] = ACTIONS(2700), + [anon_sym_ATencode] = ACTIONS(2702), + [anon_sym_ATsynchronized] = ACTIONS(2702), + [anon_sym_BOOL] = ACTIONS(2700), + [anon_sym_IMP] = ACTIONS(2700), + [anon_sym_SEL] = ACTIONS(2700), + [anon_sym_Class] = ACTIONS(2700), + [anon_sym_id] = ACTIONS(2700), + }, + [310] = { + [sym_identifier] = ACTIONS(2704), + [aux_sym_preproc_include_token1] = ACTIONS(2704), + [aux_sym_preproc_include_token2] = ACTIONS(2704), + [aux_sym_preproc_def_token1] = ACTIONS(2704), + [aux_sym_preproc_if_token1] = ACTIONS(2704), + [aux_sym_preproc_if_token2] = ACTIONS(2704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2704), + [aux_sym_preproc_else_token1] = ACTIONS(2704), + [aux_sym_preproc_elif_token1] = ACTIONS(2704), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2704), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2704), + [sym_preproc_directive] = ACTIONS(2704), + [anon_sym_LPAREN2] = ACTIONS(2706), + [anon_sym_BANG] = ACTIONS(2706), + [anon_sym_TILDE] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_STAR] = ACTIONS(2706), + [anon_sym_CARET] = ACTIONS(2706), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym___extension__] = ACTIONS(2704), + [anon_sym_typedef] = ACTIONS(2704), + [anon_sym_extern] = ACTIONS(2704), + [anon_sym___attribute__] = ACTIONS(2704), + [anon_sym___attribute] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_LBRACK] = ACTIONS(2706), + [anon_sym___declspec] = ACTIONS(2704), + [anon_sym___cdecl] = ACTIONS(2704), + [anon_sym___clrcall] = ACTIONS(2704), + [anon_sym___stdcall] = ACTIONS(2704), + [anon_sym___fastcall] = ACTIONS(2704), + [anon_sym___thiscall] = ACTIONS(2704), + [anon_sym___vectorcall] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_signed] = ACTIONS(2704), + [anon_sym_unsigned] = ACTIONS(2704), + [anon_sym_long] = ACTIONS(2704), + [anon_sym_short] = ACTIONS(2704), + [anon_sym_static] = ACTIONS(2704), + [anon_sym_ATautoreleasepool] = ACTIONS(2706), + [anon_sym_auto] = ACTIONS(2704), + [anon_sym_register] = ACTIONS(2704), + [anon_sym_inline] = ACTIONS(2704), + [anon_sym___inline] = ACTIONS(2704), + [anon_sym___inline__] = ACTIONS(2704), + [anon_sym___forceinline] = ACTIONS(2704), + [anon_sym_thread_local] = ACTIONS(2704), + [anon_sym___thread] = ACTIONS(2704), + [anon_sym_CG_EXTERN] = ACTIONS(2704), + [anon_sym_CG_INLINE] = ACTIONS(2704), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2704), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2704), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2704), + [anon_sym_IBOutlet] = ACTIONS(2704), + [anon_sym_IBInspectable] = ACTIONS(2704), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2704), + [anon_sym_NS_INLINE] = ACTIONS(2704), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2704), + [anon_sym_OBJC_EXPORT] = ACTIONS(2704), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2704), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2704), + [anon_sym_const] = ACTIONS(2704), + [anon_sym_constexpr] = ACTIONS(2704), + [anon_sym_volatile] = ACTIONS(2704), + [anon_sym_restrict] = ACTIONS(2704), + [anon_sym___restrict__] = ACTIONS(2704), + [anon_sym__Atomic] = ACTIONS(2704), + [anon_sym__Noreturn] = ACTIONS(2704), + [anon_sym__Nonnull] = ACTIONS(2704), + [anon_sym_nullable] = ACTIONS(2704), + [anon_sym__Complex] = ACTIONS(2704), + [anon_sym__Nullable] = ACTIONS(2704), + [anon_sym__Nullable_result] = ACTIONS(2704), + [anon_sym__Null_unspecified] = ACTIONS(2704), + [anon_sym___autoreleasing] = ACTIONS(2704), + [anon_sym___block] = ACTIONS(2704), + [anon_sym___bridge] = ACTIONS(2704), + [anon_sym___bridge_retained] = ACTIONS(2704), + [anon_sym___bridge_transfer] = ACTIONS(2704), + [anon_sym___complex] = ACTIONS(2704), + [anon_sym___const] = ACTIONS(2704), + [anon_sym___imag] = ACTIONS(2704), + [anon_sym___kindof] = ACTIONS(2704), + [anon_sym___nonnull] = ACTIONS(2704), + [anon_sym___nullable] = ACTIONS(2704), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2704), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2704), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2704), + [anon_sym___real] = ACTIONS(2704), + [anon_sym___strong] = ACTIONS(2704), + [anon_sym___unsafe_unretained] = ACTIONS(2704), + [anon_sym___unused] = ACTIONS(2704), + [anon_sym___weak] = ACTIONS(2704), + [anon_sym_alignas] = ACTIONS(2704), + [anon_sym__Alignas] = ACTIONS(2704), + [sym_primitive_type] = ACTIONS(2704), + [anon_sym_enum] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_union] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_switch] = ACTIONS(2704), + [anon_sym_case] = ACTIONS(2704), + [anon_sym_default] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_do] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_in] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_goto] = ACTIONS(2704), + [anon_sym_DASH_DASH] = ACTIONS(2706), + [anon_sym_PLUS_PLUS] = ACTIONS(2706), + [anon_sym_sizeof] = ACTIONS(2704), + [anon_sym___alignof__] = ACTIONS(2704), + [anon_sym___alignof] = ACTIONS(2704), + [anon_sym__alignof] = ACTIONS(2704), + [anon_sym_alignof] = ACTIONS(2704), + [anon_sym__Alignof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2704), + [anon_sym__Generic] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2704), + [anon_sym___asm__] = ACTIONS(2704), + [anon_sym___asm] = ACTIONS(2704), + [sym_number_literal] = ACTIONS(2706), + [anon_sym_L_SQUOTE] = ACTIONS(2706), + [anon_sym_u_SQUOTE] = ACTIONS(2706), + [anon_sym_U_SQUOTE] = ACTIONS(2706), + [anon_sym_u8_SQUOTE] = ACTIONS(2706), + [anon_sym_SQUOTE] = ACTIONS(2706), + [anon_sym_AT] = ACTIONS(2704), + [anon_sym_DQUOTE] = ACTIONS(2706), + [anon_sym_L_DQUOTE] = ACTIONS(2706), + [anon_sym_u_DQUOTE] = ACTIONS(2706), + [anon_sym_U_DQUOTE] = ACTIONS(2706), + [anon_sym_u8_DQUOTE] = ACTIONS(2706), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [anon_sym_NULL] = ACTIONS(2704), + [anon_sym_nullptr] = ACTIONS(2704), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2704), + [anon_sym___typeof] = ACTIONS(2704), + [anon_sym_typeof] = ACTIONS(2704), + [anon_sym_ATimport] = ACTIONS(2706), + [aux_sym_preproc_undef_token1] = ACTIONS(2704), + [anon_sym_POUND] = ACTIONS(2704), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2704), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2704), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2704), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2704), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2704), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2704), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2704), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2704), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2704), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2704), + [anon_sym_NS_AVAILABLE] = ACTIONS(2704), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2704), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2704), + [anon_sym_API_AVAILABLE] = ACTIONS(2704), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2704), + [anon_sym_API_DEPRECATED] = ACTIONS(2704), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2704), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2704), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2704), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2704), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2704), + [anon_sym___deprecated_msg] = ACTIONS(2704), + [anon_sym___deprecated_enum_msg] = ACTIONS(2704), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2704), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2704), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2704), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2704), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2704), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2704), + [anon_sym_ATprotocol] = ACTIONS(2706), + [anon_sym_ATinterface] = ACTIONS(2706), + [anon_sym_ATimplementation] = ACTIONS(2706), + [anon_sym_ATcompatibility_alias] = ACTIONS(2706), + [anon_sym_ATsynthesize] = ACTIONS(2706), + [anon_sym_ATdynamic] = ACTIONS(2706), + [anon_sym_ATtry] = ACTIONS(2706), + [anon_sym___try] = ACTIONS(2704), + [anon_sym_ATthrow] = ACTIONS(2706), + [anon_sym_ATselector] = ACTIONS(2706), + [anon_sym_ATavailable] = ACTIONS(2706), + [anon_sym___builtin_available] = ACTIONS(2704), + [anon_sym_va_arg] = ACTIONS(2704), + [anon_sym_ATencode] = ACTIONS(2706), + [anon_sym_ATsynchronized] = ACTIONS(2706), + [anon_sym_BOOL] = ACTIONS(2704), + [anon_sym_IMP] = ACTIONS(2704), + [anon_sym_SEL] = ACTIONS(2704), + [anon_sym_Class] = ACTIONS(2704), + [anon_sym_id] = ACTIONS(2704), + }, + [311] = { + [sym_identifier] = ACTIONS(2708), + [aux_sym_preproc_include_token1] = ACTIONS(2708), + [aux_sym_preproc_include_token2] = ACTIONS(2708), + [aux_sym_preproc_def_token1] = ACTIONS(2708), + [aux_sym_preproc_if_token1] = ACTIONS(2708), + [aux_sym_preproc_if_token2] = ACTIONS(2708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2708), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2708), + [aux_sym_preproc_else_token1] = ACTIONS(2708), + [aux_sym_preproc_elif_token1] = ACTIONS(2708), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2708), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2708), + [sym_preproc_directive] = ACTIONS(2708), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_BANG] = ACTIONS(2710), + [anon_sym_TILDE] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_STAR] = ACTIONS(2710), + [anon_sym_CARET] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym___extension__] = ACTIONS(2708), + [anon_sym_typedef] = ACTIONS(2708), + [anon_sym_extern] = ACTIONS(2708), + [anon_sym___attribute__] = ACTIONS(2708), + [anon_sym___attribute] = ACTIONS(2708), + [anon_sym_noreturn] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2710), + [anon_sym___declspec] = ACTIONS(2708), + [anon_sym___cdecl] = ACTIONS(2708), + [anon_sym___clrcall] = ACTIONS(2708), + [anon_sym___stdcall] = ACTIONS(2708), + [anon_sym___fastcall] = ACTIONS(2708), + [anon_sym___thiscall] = ACTIONS(2708), + [anon_sym___vectorcall] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_signed] = ACTIONS(2708), + [anon_sym_unsigned] = ACTIONS(2708), + [anon_sym_long] = ACTIONS(2708), + [anon_sym_short] = ACTIONS(2708), + [anon_sym_static] = ACTIONS(2708), + [anon_sym_ATautoreleasepool] = ACTIONS(2710), + [anon_sym_auto] = ACTIONS(2708), + [anon_sym_register] = ACTIONS(2708), + [anon_sym_inline] = ACTIONS(2708), + [anon_sym___inline] = ACTIONS(2708), + [anon_sym___inline__] = ACTIONS(2708), + [anon_sym___forceinline] = ACTIONS(2708), + [anon_sym_thread_local] = ACTIONS(2708), + [anon_sym___thread] = ACTIONS(2708), + [anon_sym_CG_EXTERN] = ACTIONS(2708), + [anon_sym_CG_INLINE] = ACTIONS(2708), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2708), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2708), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2708), + [anon_sym_IBOutlet] = ACTIONS(2708), + [anon_sym_IBInspectable] = ACTIONS(2708), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2708), + [anon_sym_NS_INLINE] = ACTIONS(2708), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2708), + [anon_sym_OBJC_EXPORT] = ACTIONS(2708), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2708), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2708), + [anon_sym_const] = ACTIONS(2708), + [anon_sym_constexpr] = ACTIONS(2708), + [anon_sym_volatile] = ACTIONS(2708), + [anon_sym_restrict] = ACTIONS(2708), + [anon_sym___restrict__] = ACTIONS(2708), + [anon_sym__Atomic] = ACTIONS(2708), + [anon_sym__Noreturn] = ACTIONS(2708), + [anon_sym__Nonnull] = ACTIONS(2708), + [anon_sym_nullable] = ACTIONS(2708), + [anon_sym__Complex] = ACTIONS(2708), + [anon_sym__Nullable] = ACTIONS(2708), + [anon_sym__Nullable_result] = ACTIONS(2708), + [anon_sym__Null_unspecified] = ACTIONS(2708), + [anon_sym___autoreleasing] = ACTIONS(2708), + [anon_sym___block] = ACTIONS(2708), + [anon_sym___bridge] = ACTIONS(2708), + [anon_sym___bridge_retained] = ACTIONS(2708), + [anon_sym___bridge_transfer] = ACTIONS(2708), + [anon_sym___complex] = ACTIONS(2708), + [anon_sym___const] = ACTIONS(2708), + [anon_sym___imag] = ACTIONS(2708), + [anon_sym___kindof] = ACTIONS(2708), + [anon_sym___nonnull] = ACTIONS(2708), + [anon_sym___nullable] = ACTIONS(2708), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2708), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2708), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2708), + [anon_sym___real] = ACTIONS(2708), + [anon_sym___strong] = ACTIONS(2708), + [anon_sym___unsafe_unretained] = ACTIONS(2708), + [anon_sym___unused] = ACTIONS(2708), + [anon_sym___weak] = ACTIONS(2708), + [anon_sym_alignas] = ACTIONS(2708), + [anon_sym__Alignas] = ACTIONS(2708), + [sym_primitive_type] = ACTIONS(2708), + [anon_sym_enum] = ACTIONS(2708), + [anon_sym_struct] = ACTIONS(2708), + [anon_sym_union] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_switch] = ACTIONS(2708), + [anon_sym_case] = ACTIONS(2708), + [anon_sym_default] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_in] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_break] = ACTIONS(2708), + [anon_sym_continue] = ACTIONS(2708), + [anon_sym_goto] = ACTIONS(2708), + [anon_sym_DASH_DASH] = ACTIONS(2710), + [anon_sym_PLUS_PLUS] = ACTIONS(2710), + [anon_sym_sizeof] = ACTIONS(2708), + [anon_sym___alignof__] = ACTIONS(2708), + [anon_sym___alignof] = ACTIONS(2708), + [anon_sym__alignof] = ACTIONS(2708), + [anon_sym_alignof] = ACTIONS(2708), + [anon_sym__Alignof] = ACTIONS(2708), + [anon_sym_offsetof] = ACTIONS(2708), + [anon_sym__Generic] = ACTIONS(2708), + [anon_sym_asm] = ACTIONS(2708), + [anon_sym___asm__] = ACTIONS(2708), + [anon_sym___asm] = ACTIONS(2708), + [sym_number_literal] = ACTIONS(2710), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_AT] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2710), + [anon_sym_u_DQUOTE] = ACTIONS(2710), + [anon_sym_U_DQUOTE] = ACTIONS(2710), + [anon_sym_u8_DQUOTE] = ACTIONS(2710), + [sym_true] = ACTIONS(2708), + [sym_false] = ACTIONS(2708), + [anon_sym_NULL] = ACTIONS(2708), + [anon_sym_nullptr] = ACTIONS(2708), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2708), + [anon_sym___typeof] = ACTIONS(2708), + [anon_sym_typeof] = ACTIONS(2708), + [anon_sym_ATimport] = ACTIONS(2710), + [aux_sym_preproc_undef_token1] = ACTIONS(2708), + [anon_sym_POUND] = ACTIONS(2708), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2708), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2708), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2708), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2708), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2708), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2708), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2708), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2708), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2708), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2708), + [anon_sym_NS_AVAILABLE] = ACTIONS(2708), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2708), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2708), + [anon_sym_API_AVAILABLE] = ACTIONS(2708), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2708), + [anon_sym_API_DEPRECATED] = ACTIONS(2708), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2708), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2708), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2708), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2708), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2708), + [anon_sym___deprecated_msg] = ACTIONS(2708), + [anon_sym___deprecated_enum_msg] = ACTIONS(2708), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2708), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2708), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2708), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2708), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2708), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2708), + [anon_sym_ATprotocol] = ACTIONS(2710), + [anon_sym_ATinterface] = ACTIONS(2710), + [anon_sym_ATimplementation] = ACTIONS(2710), + [anon_sym_ATcompatibility_alias] = ACTIONS(2710), + [anon_sym_ATsynthesize] = ACTIONS(2710), + [anon_sym_ATdynamic] = ACTIONS(2710), + [anon_sym_ATtry] = ACTIONS(2710), + [anon_sym___try] = ACTIONS(2708), + [anon_sym_ATthrow] = ACTIONS(2710), + [anon_sym_ATselector] = ACTIONS(2710), + [anon_sym_ATavailable] = ACTIONS(2710), + [anon_sym___builtin_available] = ACTIONS(2708), + [anon_sym_va_arg] = ACTIONS(2708), + [anon_sym_ATencode] = ACTIONS(2710), + [anon_sym_ATsynchronized] = ACTIONS(2710), + [anon_sym_BOOL] = ACTIONS(2708), + [anon_sym_IMP] = ACTIONS(2708), + [anon_sym_SEL] = ACTIONS(2708), + [anon_sym_Class] = ACTIONS(2708), + [anon_sym_id] = ACTIONS(2708), + }, + [312] = { + [sym_identifier] = ACTIONS(2712), + [aux_sym_preproc_include_token1] = ACTIONS(2712), + [aux_sym_preproc_include_token2] = ACTIONS(2712), + [aux_sym_preproc_def_token1] = ACTIONS(2712), + [aux_sym_preproc_if_token1] = ACTIONS(2712), + [aux_sym_preproc_if_token2] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2712), + [aux_sym_preproc_else_token1] = ACTIONS(2712), + [aux_sym_preproc_elif_token1] = ACTIONS(2712), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2712), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2712), + [sym_preproc_directive] = ACTIONS(2712), + [anon_sym_LPAREN2] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_PLUS] = ACTIONS(2712), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_CARET] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym___extension__] = ACTIONS(2712), + [anon_sym_typedef] = ACTIONS(2712), + [anon_sym_extern] = ACTIONS(2712), + [anon_sym___attribute__] = ACTIONS(2712), + [anon_sym___attribute] = ACTIONS(2712), + [anon_sym_noreturn] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym___declspec] = ACTIONS(2712), + [anon_sym___cdecl] = ACTIONS(2712), + [anon_sym___clrcall] = ACTIONS(2712), + [anon_sym___stdcall] = ACTIONS(2712), + [anon_sym___fastcall] = ACTIONS(2712), + [anon_sym___thiscall] = ACTIONS(2712), + [anon_sym___vectorcall] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_signed] = ACTIONS(2712), + [anon_sym_unsigned] = ACTIONS(2712), + [anon_sym_long] = ACTIONS(2712), + [anon_sym_short] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2712), + [anon_sym_ATautoreleasepool] = ACTIONS(2714), + [anon_sym_auto] = ACTIONS(2712), + [anon_sym_register] = ACTIONS(2712), + [anon_sym_inline] = ACTIONS(2712), + [anon_sym___inline] = ACTIONS(2712), + [anon_sym___inline__] = ACTIONS(2712), + [anon_sym___forceinline] = ACTIONS(2712), + [anon_sym_thread_local] = ACTIONS(2712), + [anon_sym___thread] = ACTIONS(2712), + [anon_sym_CG_EXTERN] = ACTIONS(2712), + [anon_sym_CG_INLINE] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2712), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2712), + [anon_sym_IBOutlet] = ACTIONS(2712), + [anon_sym_IBInspectable] = ACTIONS(2712), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2712), + [anon_sym_NS_INLINE] = ACTIONS(2712), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2712), + [anon_sym_OBJC_EXPORT] = ACTIONS(2712), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2712), + [anon_sym_const] = ACTIONS(2712), + [anon_sym_constexpr] = ACTIONS(2712), + [anon_sym_volatile] = ACTIONS(2712), + [anon_sym_restrict] = ACTIONS(2712), + [anon_sym___restrict__] = ACTIONS(2712), + [anon_sym__Atomic] = ACTIONS(2712), + [anon_sym__Noreturn] = ACTIONS(2712), + [anon_sym__Nonnull] = ACTIONS(2712), + [anon_sym_nullable] = ACTIONS(2712), + [anon_sym__Complex] = ACTIONS(2712), + [anon_sym__Nullable] = ACTIONS(2712), + [anon_sym__Nullable_result] = ACTIONS(2712), + [anon_sym__Null_unspecified] = ACTIONS(2712), + [anon_sym___autoreleasing] = ACTIONS(2712), + [anon_sym___block] = ACTIONS(2712), + [anon_sym___bridge] = ACTIONS(2712), + [anon_sym___bridge_retained] = ACTIONS(2712), + [anon_sym___bridge_transfer] = ACTIONS(2712), + [anon_sym___complex] = ACTIONS(2712), + [anon_sym___const] = ACTIONS(2712), + [anon_sym___imag] = ACTIONS(2712), + [anon_sym___kindof] = ACTIONS(2712), + [anon_sym___nonnull] = ACTIONS(2712), + [anon_sym___nullable] = ACTIONS(2712), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2712), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2712), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2712), + [anon_sym___real] = ACTIONS(2712), + [anon_sym___strong] = ACTIONS(2712), + [anon_sym___unsafe_unretained] = ACTIONS(2712), + [anon_sym___unused] = ACTIONS(2712), + [anon_sym___weak] = ACTIONS(2712), + [anon_sym_alignas] = ACTIONS(2712), + [anon_sym__Alignas] = ACTIONS(2712), + [sym_primitive_type] = ACTIONS(2712), + [anon_sym_enum] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_union] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_switch] = ACTIONS(2712), + [anon_sym_case] = ACTIONS(2712), + [anon_sym_default] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_do] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_goto] = ACTIONS(2712), + [anon_sym_DASH_DASH] = ACTIONS(2714), + [anon_sym_PLUS_PLUS] = ACTIONS(2714), + [anon_sym_sizeof] = ACTIONS(2712), + [anon_sym___alignof__] = ACTIONS(2712), + [anon_sym___alignof] = ACTIONS(2712), + [anon_sym__alignof] = ACTIONS(2712), + [anon_sym_alignof] = ACTIONS(2712), + [anon_sym__Alignof] = ACTIONS(2712), + [anon_sym_offsetof] = ACTIONS(2712), + [anon_sym__Generic] = ACTIONS(2712), + [anon_sym_asm] = ACTIONS(2712), + [anon_sym___asm__] = ACTIONS(2712), + [anon_sym___asm] = ACTIONS(2712), + [sym_number_literal] = ACTIONS(2714), + [anon_sym_L_SQUOTE] = ACTIONS(2714), + [anon_sym_u_SQUOTE] = ACTIONS(2714), + [anon_sym_U_SQUOTE] = ACTIONS(2714), + [anon_sym_u8_SQUOTE] = ACTIONS(2714), + [anon_sym_SQUOTE] = ACTIONS(2714), + [anon_sym_AT] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2714), + [anon_sym_L_DQUOTE] = ACTIONS(2714), + [anon_sym_u_DQUOTE] = ACTIONS(2714), + [anon_sym_U_DQUOTE] = ACTIONS(2714), + [anon_sym_u8_DQUOTE] = ACTIONS(2714), + [sym_true] = ACTIONS(2712), + [sym_false] = ACTIONS(2712), + [anon_sym_NULL] = ACTIONS(2712), + [anon_sym_nullptr] = ACTIONS(2712), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2712), + [anon_sym___typeof] = ACTIONS(2712), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_ATimport] = ACTIONS(2714), + [aux_sym_preproc_undef_token1] = ACTIONS(2712), + [anon_sym_POUND] = ACTIONS(2712), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2712), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2712), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2712), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2712), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE] = ACTIONS(2712), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_API_AVAILABLE] = ACTIONS(2712), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_API_DEPRECATED] = ACTIONS(2712), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2712), + [anon_sym___deprecated_msg] = ACTIONS(2712), + [anon_sym___deprecated_enum_msg] = ACTIONS(2712), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2712), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2712), + [anon_sym_ATprotocol] = ACTIONS(2714), + [anon_sym_ATinterface] = ACTIONS(2714), + [anon_sym_ATimplementation] = ACTIONS(2714), + [anon_sym_ATcompatibility_alias] = ACTIONS(2714), + [anon_sym_ATsynthesize] = ACTIONS(2714), + [anon_sym_ATdynamic] = ACTIONS(2714), + [anon_sym_ATtry] = ACTIONS(2714), + [anon_sym___try] = ACTIONS(2712), + [anon_sym_ATthrow] = ACTIONS(2714), + [anon_sym_ATselector] = ACTIONS(2714), + [anon_sym_ATavailable] = ACTIONS(2714), + [anon_sym___builtin_available] = ACTIONS(2712), + [anon_sym_va_arg] = ACTIONS(2712), + [anon_sym_ATencode] = ACTIONS(2714), + [anon_sym_ATsynchronized] = ACTIONS(2714), + [anon_sym_BOOL] = ACTIONS(2712), + [anon_sym_IMP] = ACTIONS(2712), + [anon_sym_SEL] = ACTIONS(2712), + [anon_sym_Class] = ACTIONS(2712), + [anon_sym_id] = ACTIONS(2712), + }, + [313] = { + [sym_identifier] = ACTIONS(2712), + [aux_sym_preproc_include_token1] = ACTIONS(2712), + [aux_sym_preproc_include_token2] = ACTIONS(2712), + [aux_sym_preproc_def_token1] = ACTIONS(2712), + [aux_sym_preproc_if_token1] = ACTIONS(2712), + [aux_sym_preproc_if_token2] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2712), + [aux_sym_preproc_else_token1] = ACTIONS(2712), + [aux_sym_preproc_elif_token1] = ACTIONS(2712), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2712), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2712), + [sym_preproc_directive] = ACTIONS(2712), + [anon_sym_LPAREN2] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_PLUS] = ACTIONS(2712), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_CARET] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym___extension__] = ACTIONS(2712), + [anon_sym_typedef] = ACTIONS(2712), + [anon_sym_extern] = ACTIONS(2712), + [anon_sym___attribute__] = ACTIONS(2712), + [anon_sym___attribute] = ACTIONS(2712), + [anon_sym_noreturn] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym___declspec] = ACTIONS(2712), + [anon_sym___cdecl] = ACTIONS(2712), + [anon_sym___clrcall] = ACTIONS(2712), + [anon_sym___stdcall] = ACTIONS(2712), + [anon_sym___fastcall] = ACTIONS(2712), + [anon_sym___thiscall] = ACTIONS(2712), + [anon_sym___vectorcall] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_signed] = ACTIONS(2712), + [anon_sym_unsigned] = ACTIONS(2712), + [anon_sym_long] = ACTIONS(2712), + [anon_sym_short] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2712), + [anon_sym_ATautoreleasepool] = ACTIONS(2714), + [anon_sym_auto] = ACTIONS(2712), + [anon_sym_register] = ACTIONS(2712), + [anon_sym_inline] = ACTIONS(2712), + [anon_sym___inline] = ACTIONS(2712), + [anon_sym___inline__] = ACTIONS(2712), + [anon_sym___forceinline] = ACTIONS(2712), + [anon_sym_thread_local] = ACTIONS(2712), + [anon_sym___thread] = ACTIONS(2712), + [anon_sym_CG_EXTERN] = ACTIONS(2712), + [anon_sym_CG_INLINE] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2712), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2712), + [anon_sym_IBOutlet] = ACTIONS(2712), + [anon_sym_IBInspectable] = ACTIONS(2712), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2712), + [anon_sym_NS_INLINE] = ACTIONS(2712), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2712), + [anon_sym_OBJC_EXPORT] = ACTIONS(2712), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2712), + [anon_sym_const] = ACTIONS(2712), + [anon_sym_constexpr] = ACTIONS(2712), + [anon_sym_volatile] = ACTIONS(2712), + [anon_sym_restrict] = ACTIONS(2712), + [anon_sym___restrict__] = ACTIONS(2712), + [anon_sym__Atomic] = ACTIONS(2712), + [anon_sym__Noreturn] = ACTIONS(2712), + [anon_sym__Nonnull] = ACTIONS(2712), + [anon_sym_nullable] = ACTIONS(2712), + [anon_sym__Complex] = ACTIONS(2712), + [anon_sym__Nullable] = ACTIONS(2712), + [anon_sym__Nullable_result] = ACTIONS(2712), + [anon_sym__Null_unspecified] = ACTIONS(2712), + [anon_sym___autoreleasing] = ACTIONS(2712), + [anon_sym___block] = ACTIONS(2712), + [anon_sym___bridge] = ACTIONS(2712), + [anon_sym___bridge_retained] = ACTIONS(2712), + [anon_sym___bridge_transfer] = ACTIONS(2712), + [anon_sym___complex] = ACTIONS(2712), + [anon_sym___const] = ACTIONS(2712), + [anon_sym___imag] = ACTIONS(2712), + [anon_sym___kindof] = ACTIONS(2712), + [anon_sym___nonnull] = ACTIONS(2712), + [anon_sym___nullable] = ACTIONS(2712), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2712), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2712), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2712), + [anon_sym___real] = ACTIONS(2712), + [anon_sym___strong] = ACTIONS(2712), + [anon_sym___unsafe_unretained] = ACTIONS(2712), + [anon_sym___unused] = ACTIONS(2712), + [anon_sym___weak] = ACTIONS(2712), + [anon_sym_alignas] = ACTIONS(2712), + [anon_sym__Alignas] = ACTIONS(2712), + [sym_primitive_type] = ACTIONS(2712), + [anon_sym_enum] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_union] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_switch] = ACTIONS(2712), + [anon_sym_case] = ACTIONS(2712), + [anon_sym_default] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_do] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_goto] = ACTIONS(2712), + [anon_sym_DASH_DASH] = ACTIONS(2714), + [anon_sym_PLUS_PLUS] = ACTIONS(2714), + [anon_sym_sizeof] = ACTIONS(2712), + [anon_sym___alignof__] = ACTIONS(2712), + [anon_sym___alignof] = ACTIONS(2712), + [anon_sym__alignof] = ACTIONS(2712), + [anon_sym_alignof] = ACTIONS(2712), + [anon_sym__Alignof] = ACTIONS(2712), + [anon_sym_offsetof] = ACTIONS(2712), + [anon_sym__Generic] = ACTIONS(2712), + [anon_sym_asm] = ACTIONS(2712), + [anon_sym___asm__] = ACTIONS(2712), + [anon_sym___asm] = ACTIONS(2712), + [sym_number_literal] = ACTIONS(2714), + [anon_sym_L_SQUOTE] = ACTIONS(2714), + [anon_sym_u_SQUOTE] = ACTIONS(2714), + [anon_sym_U_SQUOTE] = ACTIONS(2714), + [anon_sym_u8_SQUOTE] = ACTIONS(2714), + [anon_sym_SQUOTE] = ACTIONS(2714), + [anon_sym_AT] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2714), + [anon_sym_L_DQUOTE] = ACTIONS(2714), + [anon_sym_u_DQUOTE] = ACTIONS(2714), + [anon_sym_U_DQUOTE] = ACTIONS(2714), + [anon_sym_u8_DQUOTE] = ACTIONS(2714), + [sym_true] = ACTIONS(2712), + [sym_false] = ACTIONS(2712), + [anon_sym_NULL] = ACTIONS(2712), + [anon_sym_nullptr] = ACTIONS(2712), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2712), + [anon_sym___typeof] = ACTIONS(2712), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_ATimport] = ACTIONS(2714), + [aux_sym_preproc_undef_token1] = ACTIONS(2712), + [anon_sym_POUND] = ACTIONS(2712), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2712), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2712), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2712), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2712), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE] = ACTIONS(2712), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_API_AVAILABLE] = ACTIONS(2712), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_API_DEPRECATED] = ACTIONS(2712), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2712), + [anon_sym___deprecated_msg] = ACTIONS(2712), + [anon_sym___deprecated_enum_msg] = ACTIONS(2712), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2712), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2712), + [anon_sym_ATprotocol] = ACTIONS(2714), + [anon_sym_ATinterface] = ACTIONS(2714), + [anon_sym_ATimplementation] = ACTIONS(2714), + [anon_sym_ATcompatibility_alias] = ACTIONS(2714), + [anon_sym_ATsynthesize] = ACTIONS(2714), + [anon_sym_ATdynamic] = ACTIONS(2714), + [anon_sym_ATtry] = ACTIONS(2714), + [anon_sym___try] = ACTIONS(2712), + [anon_sym_ATthrow] = ACTIONS(2714), + [anon_sym_ATselector] = ACTIONS(2714), + [anon_sym_ATavailable] = ACTIONS(2714), + [anon_sym___builtin_available] = ACTIONS(2712), + [anon_sym_va_arg] = ACTIONS(2712), + [anon_sym_ATencode] = ACTIONS(2714), + [anon_sym_ATsynchronized] = ACTIONS(2714), + [anon_sym_BOOL] = ACTIONS(2712), + [anon_sym_IMP] = ACTIONS(2712), + [anon_sym_SEL] = ACTIONS(2712), + [anon_sym_Class] = ACTIONS(2712), + [anon_sym_id] = ACTIONS(2712), + }, + [314] = { + [sym_identifier] = ACTIONS(2712), + [aux_sym_preproc_include_token1] = ACTIONS(2712), + [aux_sym_preproc_include_token2] = ACTIONS(2712), + [aux_sym_preproc_def_token1] = ACTIONS(2712), + [aux_sym_preproc_if_token1] = ACTIONS(2712), + [aux_sym_preproc_if_token2] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2712), + [aux_sym_preproc_else_token1] = ACTIONS(2712), + [aux_sym_preproc_elif_token1] = ACTIONS(2712), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2712), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2712), + [sym_preproc_directive] = ACTIONS(2712), + [anon_sym_LPAREN2] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_PLUS] = ACTIONS(2712), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_CARET] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym___extension__] = ACTIONS(2712), + [anon_sym_typedef] = ACTIONS(2712), + [anon_sym_extern] = ACTIONS(2712), + [anon_sym___attribute__] = ACTIONS(2712), + [anon_sym___attribute] = ACTIONS(2712), + [anon_sym_noreturn] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym___declspec] = ACTIONS(2712), + [anon_sym___cdecl] = ACTIONS(2712), + [anon_sym___clrcall] = ACTIONS(2712), + [anon_sym___stdcall] = ACTIONS(2712), + [anon_sym___fastcall] = ACTIONS(2712), + [anon_sym___thiscall] = ACTIONS(2712), + [anon_sym___vectorcall] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_signed] = ACTIONS(2712), + [anon_sym_unsigned] = ACTIONS(2712), + [anon_sym_long] = ACTIONS(2712), + [anon_sym_short] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2712), + [anon_sym_ATautoreleasepool] = ACTIONS(2714), + [anon_sym_auto] = ACTIONS(2712), + [anon_sym_register] = ACTIONS(2712), + [anon_sym_inline] = ACTIONS(2712), + [anon_sym___inline] = ACTIONS(2712), + [anon_sym___inline__] = ACTIONS(2712), + [anon_sym___forceinline] = ACTIONS(2712), + [anon_sym_thread_local] = ACTIONS(2712), + [anon_sym___thread] = ACTIONS(2712), + [anon_sym_CG_EXTERN] = ACTIONS(2712), + [anon_sym_CG_INLINE] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2712), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2712), + [anon_sym_IBOutlet] = ACTIONS(2712), + [anon_sym_IBInspectable] = ACTIONS(2712), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2712), + [anon_sym_NS_INLINE] = ACTIONS(2712), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2712), + [anon_sym_OBJC_EXPORT] = ACTIONS(2712), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2712), + [anon_sym_const] = ACTIONS(2712), + [anon_sym_constexpr] = ACTIONS(2712), + [anon_sym_volatile] = ACTIONS(2712), + [anon_sym_restrict] = ACTIONS(2712), + [anon_sym___restrict__] = ACTIONS(2712), + [anon_sym__Atomic] = ACTIONS(2712), + [anon_sym__Noreturn] = ACTIONS(2712), + [anon_sym__Nonnull] = ACTIONS(2712), + [anon_sym_nullable] = ACTIONS(2712), + [anon_sym__Complex] = ACTIONS(2712), + [anon_sym__Nullable] = ACTIONS(2712), + [anon_sym__Nullable_result] = ACTIONS(2712), + [anon_sym__Null_unspecified] = ACTIONS(2712), + [anon_sym___autoreleasing] = ACTIONS(2712), + [anon_sym___block] = ACTIONS(2712), + [anon_sym___bridge] = ACTIONS(2712), + [anon_sym___bridge_retained] = ACTIONS(2712), + [anon_sym___bridge_transfer] = ACTIONS(2712), + [anon_sym___complex] = ACTIONS(2712), + [anon_sym___const] = ACTIONS(2712), + [anon_sym___imag] = ACTIONS(2712), + [anon_sym___kindof] = ACTIONS(2712), + [anon_sym___nonnull] = ACTIONS(2712), + [anon_sym___nullable] = ACTIONS(2712), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2712), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2712), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2712), + [anon_sym___real] = ACTIONS(2712), + [anon_sym___strong] = ACTIONS(2712), + [anon_sym___unsafe_unretained] = ACTIONS(2712), + [anon_sym___unused] = ACTIONS(2712), + [anon_sym___weak] = ACTIONS(2712), + [anon_sym_alignas] = ACTIONS(2712), + [anon_sym__Alignas] = ACTIONS(2712), + [sym_primitive_type] = ACTIONS(2712), + [anon_sym_enum] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_union] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_switch] = ACTIONS(2712), + [anon_sym_case] = ACTIONS(2712), + [anon_sym_default] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_do] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_goto] = ACTIONS(2712), + [anon_sym_DASH_DASH] = ACTIONS(2714), + [anon_sym_PLUS_PLUS] = ACTIONS(2714), + [anon_sym_sizeof] = ACTIONS(2712), + [anon_sym___alignof__] = ACTIONS(2712), + [anon_sym___alignof] = ACTIONS(2712), + [anon_sym__alignof] = ACTIONS(2712), + [anon_sym_alignof] = ACTIONS(2712), + [anon_sym__Alignof] = ACTIONS(2712), + [anon_sym_offsetof] = ACTIONS(2712), + [anon_sym__Generic] = ACTIONS(2712), + [anon_sym_asm] = ACTIONS(2712), + [anon_sym___asm__] = ACTIONS(2712), + [anon_sym___asm] = ACTIONS(2712), + [sym_number_literal] = ACTIONS(2714), + [anon_sym_L_SQUOTE] = ACTIONS(2714), + [anon_sym_u_SQUOTE] = ACTIONS(2714), + [anon_sym_U_SQUOTE] = ACTIONS(2714), + [anon_sym_u8_SQUOTE] = ACTIONS(2714), + [anon_sym_SQUOTE] = ACTIONS(2714), + [anon_sym_AT] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2714), + [anon_sym_L_DQUOTE] = ACTIONS(2714), + [anon_sym_u_DQUOTE] = ACTIONS(2714), + [anon_sym_U_DQUOTE] = ACTIONS(2714), + [anon_sym_u8_DQUOTE] = ACTIONS(2714), + [sym_true] = ACTIONS(2712), + [sym_false] = ACTIONS(2712), + [anon_sym_NULL] = ACTIONS(2712), + [anon_sym_nullptr] = ACTIONS(2712), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2712), + [anon_sym___typeof] = ACTIONS(2712), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_ATimport] = ACTIONS(2714), + [aux_sym_preproc_undef_token1] = ACTIONS(2712), + [anon_sym_POUND] = ACTIONS(2712), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2712), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2712), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2712), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2712), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE] = ACTIONS(2712), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_API_AVAILABLE] = ACTIONS(2712), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_API_DEPRECATED] = ACTIONS(2712), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2712), + [anon_sym___deprecated_msg] = ACTIONS(2712), + [anon_sym___deprecated_enum_msg] = ACTIONS(2712), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2712), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2712), + [anon_sym_ATprotocol] = ACTIONS(2714), + [anon_sym_ATinterface] = ACTIONS(2714), + [anon_sym_ATimplementation] = ACTIONS(2714), + [anon_sym_ATcompatibility_alias] = ACTIONS(2714), + [anon_sym_ATsynthesize] = ACTIONS(2714), + [anon_sym_ATdynamic] = ACTIONS(2714), + [anon_sym_ATtry] = ACTIONS(2714), + [anon_sym___try] = ACTIONS(2712), + [anon_sym_ATthrow] = ACTIONS(2714), + [anon_sym_ATselector] = ACTIONS(2714), + [anon_sym_ATavailable] = ACTIONS(2714), + [anon_sym___builtin_available] = ACTIONS(2712), + [anon_sym_va_arg] = ACTIONS(2712), + [anon_sym_ATencode] = ACTIONS(2714), + [anon_sym_ATsynchronized] = ACTIONS(2714), + [anon_sym_BOOL] = ACTIONS(2712), + [anon_sym_IMP] = ACTIONS(2712), + [anon_sym_SEL] = ACTIONS(2712), + [anon_sym_Class] = ACTIONS(2712), + [anon_sym_id] = ACTIONS(2712), + }, + [315] = { + [sym_identifier] = ACTIONS(2716), + [aux_sym_preproc_include_token1] = ACTIONS(2716), + [aux_sym_preproc_include_token2] = ACTIONS(2716), + [aux_sym_preproc_def_token1] = ACTIONS(2716), + [aux_sym_preproc_if_token1] = ACTIONS(2716), + [aux_sym_preproc_if_token2] = ACTIONS(2716), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2716), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2716), + [aux_sym_preproc_else_token1] = ACTIONS(2716), + [aux_sym_preproc_elif_token1] = ACTIONS(2716), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2716), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2716), + [sym_preproc_directive] = ACTIONS(2716), + [anon_sym_LPAREN2] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2718), + [anon_sym_TILDE] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2716), + [anon_sym_PLUS] = ACTIONS(2716), + [anon_sym_STAR] = ACTIONS(2718), + [anon_sym_CARET] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2718), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym___extension__] = ACTIONS(2716), + [anon_sym_typedef] = ACTIONS(2716), + [anon_sym_extern] = ACTIONS(2716), + [anon_sym___attribute__] = ACTIONS(2716), + [anon_sym___attribute] = ACTIONS(2716), + [anon_sym_noreturn] = ACTIONS(2716), + [anon_sym_LBRACK] = ACTIONS(2718), + [anon_sym___declspec] = ACTIONS(2716), + [anon_sym___cdecl] = ACTIONS(2716), + [anon_sym___clrcall] = ACTIONS(2716), + [anon_sym___stdcall] = ACTIONS(2716), + [anon_sym___fastcall] = ACTIONS(2716), + [anon_sym___thiscall] = ACTIONS(2716), + [anon_sym___vectorcall] = ACTIONS(2716), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_signed] = ACTIONS(2716), + [anon_sym_unsigned] = ACTIONS(2716), + [anon_sym_long] = ACTIONS(2716), + [anon_sym_short] = ACTIONS(2716), + [anon_sym_static] = ACTIONS(2716), + [anon_sym_ATautoreleasepool] = ACTIONS(2718), + [anon_sym_auto] = ACTIONS(2716), + [anon_sym_register] = ACTIONS(2716), + [anon_sym_inline] = ACTIONS(2716), + [anon_sym___inline] = ACTIONS(2716), + [anon_sym___inline__] = ACTIONS(2716), + [anon_sym___forceinline] = ACTIONS(2716), + [anon_sym_thread_local] = ACTIONS(2716), + [anon_sym___thread] = ACTIONS(2716), + [anon_sym_CG_EXTERN] = ACTIONS(2716), + [anon_sym_CG_INLINE] = ACTIONS(2716), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2716), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2716), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2716), + [anon_sym_IBOutlet] = ACTIONS(2716), + [anon_sym_IBInspectable] = ACTIONS(2716), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2716), + [anon_sym_NS_INLINE] = ACTIONS(2716), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2716), + [anon_sym_OBJC_EXPORT] = ACTIONS(2716), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2716), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2716), + [anon_sym_const] = ACTIONS(2716), + [anon_sym_constexpr] = ACTIONS(2716), + [anon_sym_volatile] = ACTIONS(2716), + [anon_sym_restrict] = ACTIONS(2716), + [anon_sym___restrict__] = ACTIONS(2716), + [anon_sym__Atomic] = ACTIONS(2716), + [anon_sym__Noreturn] = ACTIONS(2716), + [anon_sym__Nonnull] = ACTIONS(2716), + [anon_sym_nullable] = ACTIONS(2716), + [anon_sym__Complex] = ACTIONS(2716), + [anon_sym__Nullable] = ACTIONS(2716), + [anon_sym__Nullable_result] = ACTIONS(2716), + [anon_sym__Null_unspecified] = ACTIONS(2716), + [anon_sym___autoreleasing] = ACTIONS(2716), + [anon_sym___block] = ACTIONS(2716), + [anon_sym___bridge] = ACTIONS(2716), + [anon_sym___bridge_retained] = ACTIONS(2716), + [anon_sym___bridge_transfer] = ACTIONS(2716), + [anon_sym___complex] = ACTIONS(2716), + [anon_sym___const] = ACTIONS(2716), + [anon_sym___imag] = ACTIONS(2716), + [anon_sym___kindof] = ACTIONS(2716), + [anon_sym___nonnull] = ACTIONS(2716), + [anon_sym___nullable] = ACTIONS(2716), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2716), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2716), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2716), + [anon_sym___real] = ACTIONS(2716), + [anon_sym___strong] = ACTIONS(2716), + [anon_sym___unsafe_unretained] = ACTIONS(2716), + [anon_sym___unused] = ACTIONS(2716), + [anon_sym___weak] = ACTIONS(2716), + [anon_sym_alignas] = ACTIONS(2716), + [anon_sym__Alignas] = ACTIONS(2716), + [sym_primitive_type] = ACTIONS(2716), + [anon_sym_enum] = ACTIONS(2716), + [anon_sym_struct] = ACTIONS(2716), + [anon_sym_union] = ACTIONS(2716), + [anon_sym_if] = ACTIONS(2716), + [anon_sym_switch] = ACTIONS(2716), + [anon_sym_case] = ACTIONS(2716), + [anon_sym_default] = ACTIONS(2716), + [anon_sym_while] = ACTIONS(2716), + [anon_sym_do] = ACTIONS(2716), + [anon_sym_for] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2716), + [anon_sym_return] = ACTIONS(2716), + [anon_sym_break] = ACTIONS(2716), + [anon_sym_continue] = ACTIONS(2716), + [anon_sym_goto] = ACTIONS(2716), + [anon_sym_DASH_DASH] = ACTIONS(2718), + [anon_sym_PLUS_PLUS] = ACTIONS(2718), + [anon_sym_sizeof] = ACTIONS(2716), + [anon_sym___alignof__] = ACTIONS(2716), + [anon_sym___alignof] = ACTIONS(2716), + [anon_sym__alignof] = ACTIONS(2716), + [anon_sym_alignof] = ACTIONS(2716), + [anon_sym__Alignof] = ACTIONS(2716), + [anon_sym_offsetof] = ACTIONS(2716), + [anon_sym__Generic] = ACTIONS(2716), + [anon_sym_asm] = ACTIONS(2716), + [anon_sym___asm__] = ACTIONS(2716), + [anon_sym___asm] = ACTIONS(2716), + [sym_number_literal] = ACTIONS(2718), + [anon_sym_L_SQUOTE] = ACTIONS(2718), + [anon_sym_u_SQUOTE] = ACTIONS(2718), + [anon_sym_U_SQUOTE] = ACTIONS(2718), + [anon_sym_u8_SQUOTE] = ACTIONS(2718), + [anon_sym_SQUOTE] = ACTIONS(2718), + [anon_sym_AT] = ACTIONS(2716), + [anon_sym_DQUOTE] = ACTIONS(2718), + [anon_sym_L_DQUOTE] = ACTIONS(2718), + [anon_sym_u_DQUOTE] = ACTIONS(2718), + [anon_sym_U_DQUOTE] = ACTIONS(2718), + [anon_sym_u8_DQUOTE] = ACTIONS(2718), + [sym_true] = ACTIONS(2716), + [sym_false] = ACTIONS(2716), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2716), + [anon_sym___typeof] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(2716), + [anon_sym_ATimport] = ACTIONS(2718), + [aux_sym_preproc_undef_token1] = ACTIONS(2716), + [anon_sym_POUND] = ACTIONS(2716), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2716), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2716), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2716), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2716), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2716), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2716), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2716), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2716), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2716), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2716), + [anon_sym_NS_AVAILABLE] = ACTIONS(2716), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2716), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2716), + [anon_sym_API_AVAILABLE] = ACTIONS(2716), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2716), + [anon_sym_API_DEPRECATED] = ACTIONS(2716), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2716), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2716), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2716), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2716), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2716), + [anon_sym___deprecated_msg] = ACTIONS(2716), + [anon_sym___deprecated_enum_msg] = ACTIONS(2716), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2716), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2716), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2716), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2716), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2716), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2716), + [anon_sym_ATprotocol] = ACTIONS(2718), + [anon_sym_ATinterface] = ACTIONS(2718), + [anon_sym_ATimplementation] = ACTIONS(2718), + [anon_sym_ATcompatibility_alias] = ACTIONS(2718), + [anon_sym_ATsynthesize] = ACTIONS(2718), + [anon_sym_ATdynamic] = ACTIONS(2718), + [anon_sym_ATtry] = ACTIONS(2718), + [anon_sym___try] = ACTIONS(2716), + [anon_sym_ATthrow] = ACTIONS(2718), + [anon_sym_ATselector] = ACTIONS(2718), + [anon_sym_ATavailable] = ACTIONS(2718), + [anon_sym___builtin_available] = ACTIONS(2716), + [anon_sym_va_arg] = ACTIONS(2716), + [anon_sym_ATencode] = ACTIONS(2718), + [anon_sym_ATsynchronized] = ACTIONS(2718), + [anon_sym_BOOL] = ACTIONS(2716), + [anon_sym_IMP] = ACTIONS(2716), + [anon_sym_SEL] = ACTIONS(2716), + [anon_sym_Class] = ACTIONS(2716), + [anon_sym_id] = ACTIONS(2716), + }, + [316] = { + [sym_identifier] = ACTIONS(2720), + [aux_sym_preproc_include_token1] = ACTIONS(2720), + [aux_sym_preproc_include_token2] = ACTIONS(2720), + [aux_sym_preproc_def_token1] = ACTIONS(2720), + [aux_sym_preproc_if_token1] = ACTIONS(2720), + [aux_sym_preproc_if_token2] = ACTIONS(2720), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2720), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2720), + [aux_sym_preproc_else_token1] = ACTIONS(2720), + [aux_sym_preproc_elif_token1] = ACTIONS(2720), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2720), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2720), + [sym_preproc_directive] = ACTIONS(2720), + [anon_sym_LPAREN2] = ACTIONS(2722), + [anon_sym_BANG] = ACTIONS(2722), + [anon_sym_TILDE] = ACTIONS(2722), + [anon_sym_DASH] = ACTIONS(2720), + [anon_sym_PLUS] = ACTIONS(2720), + [anon_sym_STAR] = ACTIONS(2722), + [anon_sym_CARET] = ACTIONS(2722), + [anon_sym_AMP] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_typedef] = ACTIONS(2720), + [anon_sym_extern] = ACTIONS(2720), + [anon_sym___attribute__] = ACTIONS(2720), + [anon_sym___attribute] = ACTIONS(2720), + [anon_sym_noreturn] = ACTIONS(2720), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym___declspec] = ACTIONS(2720), + [anon_sym___cdecl] = ACTIONS(2720), + [anon_sym___clrcall] = ACTIONS(2720), + [anon_sym___stdcall] = ACTIONS(2720), + [anon_sym___fastcall] = ACTIONS(2720), + [anon_sym___thiscall] = ACTIONS(2720), + [anon_sym___vectorcall] = ACTIONS(2720), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_signed] = ACTIONS(2720), + [anon_sym_unsigned] = ACTIONS(2720), + [anon_sym_long] = ACTIONS(2720), + [anon_sym_short] = ACTIONS(2720), + [anon_sym_static] = ACTIONS(2720), + [anon_sym_ATautoreleasepool] = ACTIONS(2722), + [anon_sym_auto] = ACTIONS(2720), + [anon_sym_register] = ACTIONS(2720), + [anon_sym_inline] = ACTIONS(2720), + [anon_sym___inline] = ACTIONS(2720), + [anon_sym___inline__] = ACTIONS(2720), + [anon_sym___forceinline] = ACTIONS(2720), + [anon_sym_thread_local] = ACTIONS(2720), + [anon_sym___thread] = ACTIONS(2720), + [anon_sym_CG_EXTERN] = ACTIONS(2720), + [anon_sym_CG_INLINE] = ACTIONS(2720), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2720), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2720), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2720), + [anon_sym_IBOutlet] = ACTIONS(2720), + [anon_sym_IBInspectable] = ACTIONS(2720), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2720), + [anon_sym_NS_INLINE] = ACTIONS(2720), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2720), + [anon_sym_OBJC_EXPORT] = ACTIONS(2720), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2720), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2720), + [anon_sym_const] = ACTIONS(2720), + [anon_sym_constexpr] = ACTIONS(2720), + [anon_sym_volatile] = ACTIONS(2720), + [anon_sym_restrict] = ACTIONS(2720), + [anon_sym___restrict__] = ACTIONS(2720), + [anon_sym__Atomic] = ACTIONS(2720), + [anon_sym__Noreturn] = ACTIONS(2720), + [anon_sym__Nonnull] = ACTIONS(2720), + [anon_sym_nullable] = ACTIONS(2720), + [anon_sym__Complex] = ACTIONS(2720), + [anon_sym__Nullable] = ACTIONS(2720), + [anon_sym__Nullable_result] = ACTIONS(2720), + [anon_sym__Null_unspecified] = ACTIONS(2720), + [anon_sym___autoreleasing] = ACTIONS(2720), + [anon_sym___block] = ACTIONS(2720), + [anon_sym___bridge] = ACTIONS(2720), + [anon_sym___bridge_retained] = ACTIONS(2720), + [anon_sym___bridge_transfer] = ACTIONS(2720), + [anon_sym___complex] = ACTIONS(2720), + [anon_sym___const] = ACTIONS(2720), + [anon_sym___imag] = ACTIONS(2720), + [anon_sym___kindof] = ACTIONS(2720), + [anon_sym___nonnull] = ACTIONS(2720), + [anon_sym___nullable] = ACTIONS(2720), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2720), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2720), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2720), + [anon_sym___real] = ACTIONS(2720), + [anon_sym___strong] = ACTIONS(2720), + [anon_sym___unsafe_unretained] = ACTIONS(2720), + [anon_sym___unused] = ACTIONS(2720), + [anon_sym___weak] = ACTIONS(2720), + [anon_sym_alignas] = ACTIONS(2720), + [anon_sym__Alignas] = ACTIONS(2720), + [sym_primitive_type] = ACTIONS(2720), + [anon_sym_enum] = ACTIONS(2720), + [anon_sym_struct] = ACTIONS(2720), + [anon_sym_union] = ACTIONS(2720), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_switch] = ACTIONS(2720), + [anon_sym_case] = ACTIONS(2720), + [anon_sym_default] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2720), + [anon_sym_do] = ACTIONS(2720), + [anon_sym_for] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2720), + [anon_sym_return] = ACTIONS(2720), + [anon_sym_break] = ACTIONS(2720), + [anon_sym_continue] = ACTIONS(2720), + [anon_sym_goto] = ACTIONS(2720), + [anon_sym_DASH_DASH] = ACTIONS(2722), + [anon_sym_PLUS_PLUS] = ACTIONS(2722), + [anon_sym_sizeof] = ACTIONS(2720), + [anon_sym___alignof__] = ACTIONS(2720), + [anon_sym___alignof] = ACTIONS(2720), + [anon_sym__alignof] = ACTIONS(2720), + [anon_sym_alignof] = ACTIONS(2720), + [anon_sym__Alignof] = ACTIONS(2720), + [anon_sym_offsetof] = ACTIONS(2720), + [anon_sym__Generic] = ACTIONS(2720), + [anon_sym_asm] = ACTIONS(2720), + [anon_sym___asm__] = ACTIONS(2720), + [anon_sym___asm] = ACTIONS(2720), + [sym_number_literal] = ACTIONS(2722), + [anon_sym_L_SQUOTE] = ACTIONS(2722), + [anon_sym_u_SQUOTE] = ACTIONS(2722), + [anon_sym_U_SQUOTE] = ACTIONS(2722), + [anon_sym_u8_SQUOTE] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2722), + [anon_sym_AT] = ACTIONS(2720), + [anon_sym_DQUOTE] = ACTIONS(2722), + [anon_sym_L_DQUOTE] = ACTIONS(2722), + [anon_sym_u_DQUOTE] = ACTIONS(2722), + [anon_sym_U_DQUOTE] = ACTIONS(2722), + [anon_sym_u8_DQUOTE] = ACTIONS(2722), + [sym_true] = ACTIONS(2720), + [sym_false] = ACTIONS(2720), + [anon_sym_NULL] = ACTIONS(2720), + [anon_sym_nullptr] = ACTIONS(2720), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2720), + [anon_sym___typeof] = ACTIONS(2720), + [anon_sym_typeof] = ACTIONS(2720), + [anon_sym_ATimport] = ACTIONS(2722), + [aux_sym_preproc_undef_token1] = ACTIONS(2720), + [anon_sym_POUND] = ACTIONS(2720), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2720), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2720), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2720), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2720), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2720), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2720), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2720), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2720), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2720), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2720), + [anon_sym_NS_AVAILABLE] = ACTIONS(2720), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2720), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2720), + [anon_sym_API_AVAILABLE] = ACTIONS(2720), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2720), + [anon_sym_API_DEPRECATED] = ACTIONS(2720), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2720), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2720), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2720), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2720), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2720), + [anon_sym___deprecated_msg] = ACTIONS(2720), + [anon_sym___deprecated_enum_msg] = ACTIONS(2720), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2720), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2720), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2720), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2720), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2720), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2720), + [anon_sym_ATprotocol] = ACTIONS(2722), + [anon_sym_ATinterface] = ACTIONS(2722), + [anon_sym_ATimplementation] = ACTIONS(2722), + [anon_sym_ATcompatibility_alias] = ACTIONS(2722), + [anon_sym_ATsynthesize] = ACTIONS(2722), + [anon_sym_ATdynamic] = ACTIONS(2722), + [anon_sym_ATtry] = ACTIONS(2722), + [anon_sym___try] = ACTIONS(2720), + [anon_sym_ATthrow] = ACTIONS(2722), + [anon_sym_ATselector] = ACTIONS(2722), + [anon_sym_ATavailable] = ACTIONS(2722), + [anon_sym___builtin_available] = ACTIONS(2720), + [anon_sym_va_arg] = ACTIONS(2720), + [anon_sym_ATencode] = ACTIONS(2722), + [anon_sym_ATsynchronized] = ACTIONS(2722), + [anon_sym_BOOL] = ACTIONS(2720), + [anon_sym_IMP] = ACTIONS(2720), + [anon_sym_SEL] = ACTIONS(2720), + [anon_sym_Class] = ACTIONS(2720), + [anon_sym_id] = ACTIONS(2720), + }, + [317] = { + [sym_identifier] = ACTIONS(2724), + [aux_sym_preproc_include_token1] = ACTIONS(2724), + [aux_sym_preproc_include_token2] = ACTIONS(2724), + [aux_sym_preproc_def_token1] = ACTIONS(2724), + [aux_sym_preproc_if_token1] = ACTIONS(2724), + [aux_sym_preproc_if_token2] = ACTIONS(2724), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2724), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2724), + [aux_sym_preproc_else_token1] = ACTIONS(2724), + [aux_sym_preproc_elif_token1] = ACTIONS(2724), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2724), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2724), + [sym_preproc_directive] = ACTIONS(2724), + [anon_sym_LPAREN2] = ACTIONS(2726), + [anon_sym_BANG] = ACTIONS(2726), + [anon_sym_TILDE] = ACTIONS(2726), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2726), + [anon_sym_CARET] = ACTIONS(2726), + [anon_sym_AMP] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym___extension__] = ACTIONS(2724), + [anon_sym_typedef] = ACTIONS(2724), + [anon_sym_extern] = ACTIONS(2724), + [anon_sym___attribute__] = ACTIONS(2724), + [anon_sym___attribute] = ACTIONS(2724), + [anon_sym_noreturn] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2726), + [anon_sym___declspec] = ACTIONS(2724), + [anon_sym___cdecl] = ACTIONS(2724), + [anon_sym___clrcall] = ACTIONS(2724), + [anon_sym___stdcall] = ACTIONS(2724), + [anon_sym___fastcall] = ACTIONS(2724), + [anon_sym___thiscall] = ACTIONS(2724), + [anon_sym___vectorcall] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2726), + [anon_sym_signed] = ACTIONS(2724), + [anon_sym_unsigned] = ACTIONS(2724), + [anon_sym_long] = ACTIONS(2724), + [anon_sym_short] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2724), + [anon_sym_ATautoreleasepool] = ACTIONS(2726), + [anon_sym_auto] = ACTIONS(2724), + [anon_sym_register] = ACTIONS(2724), + [anon_sym_inline] = ACTIONS(2724), + [anon_sym___inline] = ACTIONS(2724), + [anon_sym___inline__] = ACTIONS(2724), + [anon_sym___forceinline] = ACTIONS(2724), + [anon_sym_thread_local] = ACTIONS(2724), + [anon_sym___thread] = ACTIONS(2724), + [anon_sym_CG_EXTERN] = ACTIONS(2724), + [anon_sym_CG_INLINE] = ACTIONS(2724), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2724), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2724), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2724), + [anon_sym_IBOutlet] = ACTIONS(2724), + [anon_sym_IBInspectable] = ACTIONS(2724), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2724), + [anon_sym_NS_INLINE] = ACTIONS(2724), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2724), + [anon_sym_OBJC_EXPORT] = ACTIONS(2724), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2724), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2724), + [anon_sym_const] = ACTIONS(2724), + [anon_sym_constexpr] = ACTIONS(2724), + [anon_sym_volatile] = ACTIONS(2724), + [anon_sym_restrict] = ACTIONS(2724), + [anon_sym___restrict__] = ACTIONS(2724), + [anon_sym__Atomic] = ACTIONS(2724), + [anon_sym__Noreturn] = ACTIONS(2724), + [anon_sym__Nonnull] = ACTIONS(2724), + [anon_sym_nullable] = ACTIONS(2724), + [anon_sym__Complex] = ACTIONS(2724), + [anon_sym__Nullable] = ACTIONS(2724), + [anon_sym__Nullable_result] = ACTIONS(2724), + [anon_sym__Null_unspecified] = ACTIONS(2724), + [anon_sym___autoreleasing] = ACTIONS(2724), + [anon_sym___block] = ACTIONS(2724), + [anon_sym___bridge] = ACTIONS(2724), + [anon_sym___bridge_retained] = ACTIONS(2724), + [anon_sym___bridge_transfer] = ACTIONS(2724), + [anon_sym___complex] = ACTIONS(2724), + [anon_sym___const] = ACTIONS(2724), + [anon_sym___imag] = ACTIONS(2724), + [anon_sym___kindof] = ACTIONS(2724), + [anon_sym___nonnull] = ACTIONS(2724), + [anon_sym___nullable] = ACTIONS(2724), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2724), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2724), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2724), + [anon_sym___real] = ACTIONS(2724), + [anon_sym___strong] = ACTIONS(2724), + [anon_sym___unsafe_unretained] = ACTIONS(2724), + [anon_sym___unused] = ACTIONS(2724), + [anon_sym___weak] = ACTIONS(2724), + [anon_sym_alignas] = ACTIONS(2724), + [anon_sym__Alignas] = ACTIONS(2724), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), + [anon_sym_struct] = ACTIONS(2724), + [anon_sym_union] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2724), + [anon_sym_default] = ACTIONS(2724), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_do] = ACTIONS(2724), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_goto] = ACTIONS(2724), + [anon_sym_DASH_DASH] = ACTIONS(2726), + [anon_sym_PLUS_PLUS] = ACTIONS(2726), + [anon_sym_sizeof] = ACTIONS(2724), + [anon_sym___alignof__] = ACTIONS(2724), + [anon_sym___alignof] = ACTIONS(2724), + [anon_sym__alignof] = ACTIONS(2724), + [anon_sym_alignof] = ACTIONS(2724), + [anon_sym__Alignof] = ACTIONS(2724), + [anon_sym_offsetof] = ACTIONS(2724), + [anon_sym__Generic] = ACTIONS(2724), + [anon_sym_asm] = ACTIONS(2724), + [anon_sym___asm__] = ACTIONS(2724), + [anon_sym___asm] = ACTIONS(2724), + [sym_number_literal] = ACTIONS(2726), + [anon_sym_L_SQUOTE] = ACTIONS(2726), + [anon_sym_u_SQUOTE] = ACTIONS(2726), + [anon_sym_U_SQUOTE] = ACTIONS(2726), + [anon_sym_u8_SQUOTE] = ACTIONS(2726), + [anon_sym_SQUOTE] = ACTIONS(2726), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_DQUOTE] = ACTIONS(2726), + [anon_sym_L_DQUOTE] = ACTIONS(2726), + [anon_sym_u_DQUOTE] = ACTIONS(2726), + [anon_sym_U_DQUOTE] = ACTIONS(2726), + [anon_sym_u8_DQUOTE] = ACTIONS(2726), + [sym_true] = ACTIONS(2724), + [sym_false] = ACTIONS(2724), + [anon_sym_NULL] = ACTIONS(2724), + [anon_sym_nullptr] = ACTIONS(2724), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2724), + [anon_sym___typeof] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(2724), + [anon_sym_ATimport] = ACTIONS(2726), + [aux_sym_preproc_undef_token1] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(2724), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2724), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2724), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2724), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2724), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2724), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2724), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2724), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2724), + [anon_sym_NS_AVAILABLE] = ACTIONS(2724), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2724), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_API_AVAILABLE] = ACTIONS(2724), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_API_DEPRECATED] = ACTIONS(2724), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2724), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2724), + [anon_sym___deprecated_msg] = ACTIONS(2724), + [anon_sym___deprecated_enum_msg] = ACTIONS(2724), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2724), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2724), + [anon_sym_ATprotocol] = ACTIONS(2726), + [anon_sym_ATinterface] = ACTIONS(2726), + [anon_sym_ATimplementation] = ACTIONS(2726), + [anon_sym_ATcompatibility_alias] = ACTIONS(2726), + [anon_sym_ATsynthesize] = ACTIONS(2726), + [anon_sym_ATdynamic] = ACTIONS(2726), + [anon_sym_ATtry] = ACTIONS(2726), + [anon_sym___try] = ACTIONS(2724), + [anon_sym_ATthrow] = ACTIONS(2726), + [anon_sym_ATselector] = ACTIONS(2726), + [anon_sym_ATavailable] = ACTIONS(2726), + [anon_sym___builtin_available] = ACTIONS(2724), + [anon_sym_va_arg] = ACTIONS(2724), + [anon_sym_ATencode] = ACTIONS(2726), + [anon_sym_ATsynchronized] = ACTIONS(2726), + [anon_sym_BOOL] = ACTIONS(2724), + [anon_sym_IMP] = ACTIONS(2724), + [anon_sym_SEL] = ACTIONS(2724), + [anon_sym_Class] = ACTIONS(2724), + [anon_sym_id] = ACTIONS(2724), + }, + [318] = { + [sym_identifier] = ACTIONS(2724), + [aux_sym_preproc_include_token1] = ACTIONS(2724), + [aux_sym_preproc_include_token2] = ACTIONS(2724), + [aux_sym_preproc_def_token1] = ACTIONS(2724), + [aux_sym_preproc_if_token1] = ACTIONS(2724), + [aux_sym_preproc_if_token2] = ACTIONS(2724), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2724), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2724), + [aux_sym_preproc_else_token1] = ACTIONS(2724), + [aux_sym_preproc_elif_token1] = ACTIONS(2724), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2724), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2724), + [sym_preproc_directive] = ACTIONS(2724), + [anon_sym_LPAREN2] = ACTIONS(2726), + [anon_sym_BANG] = ACTIONS(2726), + [anon_sym_TILDE] = ACTIONS(2726), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2726), + [anon_sym_CARET] = ACTIONS(2726), + [anon_sym_AMP] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym___extension__] = ACTIONS(2724), + [anon_sym_typedef] = ACTIONS(2724), + [anon_sym_extern] = ACTIONS(2724), + [anon_sym___attribute__] = ACTIONS(2724), + [anon_sym___attribute] = ACTIONS(2724), + [anon_sym_noreturn] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2726), + [anon_sym___declspec] = ACTIONS(2724), + [anon_sym___cdecl] = ACTIONS(2724), + [anon_sym___clrcall] = ACTIONS(2724), + [anon_sym___stdcall] = ACTIONS(2724), + [anon_sym___fastcall] = ACTIONS(2724), + [anon_sym___thiscall] = ACTIONS(2724), + [anon_sym___vectorcall] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2726), + [anon_sym_signed] = ACTIONS(2724), + [anon_sym_unsigned] = ACTIONS(2724), + [anon_sym_long] = ACTIONS(2724), + [anon_sym_short] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2724), + [anon_sym_ATautoreleasepool] = ACTIONS(2726), + [anon_sym_auto] = ACTIONS(2724), + [anon_sym_register] = ACTIONS(2724), + [anon_sym_inline] = ACTIONS(2724), + [anon_sym___inline] = ACTIONS(2724), + [anon_sym___inline__] = ACTIONS(2724), + [anon_sym___forceinline] = ACTIONS(2724), + [anon_sym_thread_local] = ACTIONS(2724), + [anon_sym___thread] = ACTIONS(2724), + [anon_sym_CG_EXTERN] = ACTIONS(2724), + [anon_sym_CG_INLINE] = ACTIONS(2724), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2724), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2724), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2724), + [anon_sym_IBOutlet] = ACTIONS(2724), + [anon_sym_IBInspectable] = ACTIONS(2724), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2724), + [anon_sym_NS_INLINE] = ACTIONS(2724), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2724), + [anon_sym_OBJC_EXPORT] = ACTIONS(2724), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2724), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2724), + [anon_sym_const] = ACTIONS(2724), + [anon_sym_constexpr] = ACTIONS(2724), + [anon_sym_volatile] = ACTIONS(2724), + [anon_sym_restrict] = ACTIONS(2724), + [anon_sym___restrict__] = ACTIONS(2724), + [anon_sym__Atomic] = ACTIONS(2724), + [anon_sym__Noreturn] = ACTIONS(2724), + [anon_sym__Nonnull] = ACTIONS(2724), + [anon_sym_nullable] = ACTIONS(2724), + [anon_sym__Complex] = ACTIONS(2724), + [anon_sym__Nullable] = ACTIONS(2724), + [anon_sym__Nullable_result] = ACTIONS(2724), + [anon_sym__Null_unspecified] = ACTIONS(2724), + [anon_sym___autoreleasing] = ACTIONS(2724), + [anon_sym___block] = ACTIONS(2724), + [anon_sym___bridge] = ACTIONS(2724), + [anon_sym___bridge_retained] = ACTIONS(2724), + [anon_sym___bridge_transfer] = ACTIONS(2724), + [anon_sym___complex] = ACTIONS(2724), + [anon_sym___const] = ACTIONS(2724), + [anon_sym___imag] = ACTIONS(2724), + [anon_sym___kindof] = ACTIONS(2724), + [anon_sym___nonnull] = ACTIONS(2724), + [anon_sym___nullable] = ACTIONS(2724), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2724), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2724), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2724), + [anon_sym___real] = ACTIONS(2724), + [anon_sym___strong] = ACTIONS(2724), + [anon_sym___unsafe_unretained] = ACTIONS(2724), + [anon_sym___unused] = ACTIONS(2724), + [anon_sym___weak] = ACTIONS(2724), + [anon_sym_alignas] = ACTIONS(2724), + [anon_sym__Alignas] = ACTIONS(2724), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), + [anon_sym_struct] = ACTIONS(2724), + [anon_sym_union] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2724), + [anon_sym_default] = ACTIONS(2724), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_do] = ACTIONS(2724), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_goto] = ACTIONS(2724), + [anon_sym_DASH_DASH] = ACTIONS(2726), + [anon_sym_PLUS_PLUS] = ACTIONS(2726), + [anon_sym_sizeof] = ACTIONS(2724), + [anon_sym___alignof__] = ACTIONS(2724), + [anon_sym___alignof] = ACTIONS(2724), + [anon_sym__alignof] = ACTIONS(2724), + [anon_sym_alignof] = ACTIONS(2724), + [anon_sym__Alignof] = ACTIONS(2724), + [anon_sym_offsetof] = ACTIONS(2724), + [anon_sym__Generic] = ACTIONS(2724), + [anon_sym_asm] = ACTIONS(2724), + [anon_sym___asm__] = ACTIONS(2724), + [anon_sym___asm] = ACTIONS(2724), + [sym_number_literal] = ACTIONS(2726), + [anon_sym_L_SQUOTE] = ACTIONS(2726), + [anon_sym_u_SQUOTE] = ACTIONS(2726), + [anon_sym_U_SQUOTE] = ACTIONS(2726), + [anon_sym_u8_SQUOTE] = ACTIONS(2726), + [anon_sym_SQUOTE] = ACTIONS(2726), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_DQUOTE] = ACTIONS(2726), + [anon_sym_L_DQUOTE] = ACTIONS(2726), + [anon_sym_u_DQUOTE] = ACTIONS(2726), + [anon_sym_U_DQUOTE] = ACTIONS(2726), + [anon_sym_u8_DQUOTE] = ACTIONS(2726), + [sym_true] = ACTIONS(2724), + [sym_false] = ACTIONS(2724), + [anon_sym_NULL] = ACTIONS(2724), + [anon_sym_nullptr] = ACTIONS(2724), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2724), + [anon_sym___typeof] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(2724), + [anon_sym_ATimport] = ACTIONS(2726), + [aux_sym_preproc_undef_token1] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(2724), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2724), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2724), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2724), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2724), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2724), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2724), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2724), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2724), + [anon_sym_NS_AVAILABLE] = ACTIONS(2724), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2724), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_API_AVAILABLE] = ACTIONS(2724), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_API_DEPRECATED] = ACTIONS(2724), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2724), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2724), + [anon_sym___deprecated_msg] = ACTIONS(2724), + [anon_sym___deprecated_enum_msg] = ACTIONS(2724), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2724), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2724), + [anon_sym_ATprotocol] = ACTIONS(2726), + [anon_sym_ATinterface] = ACTIONS(2726), + [anon_sym_ATimplementation] = ACTIONS(2726), + [anon_sym_ATcompatibility_alias] = ACTIONS(2726), + [anon_sym_ATsynthesize] = ACTIONS(2726), + [anon_sym_ATdynamic] = ACTIONS(2726), + [anon_sym_ATtry] = ACTIONS(2726), + [anon_sym___try] = ACTIONS(2724), + [anon_sym_ATthrow] = ACTIONS(2726), + [anon_sym_ATselector] = ACTIONS(2726), + [anon_sym_ATavailable] = ACTIONS(2726), + [anon_sym___builtin_available] = ACTIONS(2724), + [anon_sym_va_arg] = ACTIONS(2724), + [anon_sym_ATencode] = ACTIONS(2726), + [anon_sym_ATsynchronized] = ACTIONS(2726), + [anon_sym_BOOL] = ACTIONS(2724), + [anon_sym_IMP] = ACTIONS(2724), + [anon_sym_SEL] = ACTIONS(2724), + [anon_sym_Class] = ACTIONS(2724), + [anon_sym_id] = ACTIONS(2724), + }, + [319] = { + [sym_identifier] = ACTIONS(2728), + [aux_sym_preproc_include_token1] = ACTIONS(2728), + [aux_sym_preproc_include_token2] = ACTIONS(2728), + [aux_sym_preproc_def_token1] = ACTIONS(2728), + [aux_sym_preproc_if_token1] = ACTIONS(2728), + [aux_sym_preproc_if_token2] = ACTIONS(2728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2728), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2728), + [aux_sym_preproc_else_token1] = ACTIONS(2728), + [aux_sym_preproc_elif_token1] = ACTIONS(2728), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2728), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2728), + [sym_preproc_directive] = ACTIONS(2728), + [anon_sym_LPAREN2] = ACTIONS(2730), + [anon_sym_BANG] = ACTIONS(2730), + [anon_sym_TILDE] = ACTIONS(2730), + [anon_sym_DASH] = ACTIONS(2728), + [anon_sym_PLUS] = ACTIONS(2728), + [anon_sym_STAR] = ACTIONS(2730), + [anon_sym_CARET] = ACTIONS(2730), + [anon_sym_AMP] = ACTIONS(2730), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym___extension__] = ACTIONS(2728), + [anon_sym_typedef] = ACTIONS(2728), + [anon_sym_extern] = ACTIONS(2728), + [anon_sym___attribute__] = ACTIONS(2728), + [anon_sym___attribute] = ACTIONS(2728), + [anon_sym_noreturn] = ACTIONS(2728), + [anon_sym_LBRACK] = ACTIONS(2730), + [anon_sym___declspec] = ACTIONS(2728), + [anon_sym___cdecl] = ACTIONS(2728), + [anon_sym___clrcall] = ACTIONS(2728), + [anon_sym___stdcall] = ACTIONS(2728), + [anon_sym___fastcall] = ACTIONS(2728), + [anon_sym___thiscall] = ACTIONS(2728), + [anon_sym___vectorcall] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_signed] = ACTIONS(2728), + [anon_sym_unsigned] = ACTIONS(2728), + [anon_sym_long] = ACTIONS(2728), + [anon_sym_short] = ACTIONS(2728), + [anon_sym_static] = ACTIONS(2728), + [anon_sym_ATautoreleasepool] = ACTIONS(2730), + [anon_sym_auto] = ACTIONS(2728), + [anon_sym_register] = ACTIONS(2728), + [anon_sym_inline] = ACTIONS(2728), + [anon_sym___inline] = ACTIONS(2728), + [anon_sym___inline__] = ACTIONS(2728), + [anon_sym___forceinline] = ACTIONS(2728), + [anon_sym_thread_local] = ACTIONS(2728), + [anon_sym___thread] = ACTIONS(2728), + [anon_sym_CG_EXTERN] = ACTIONS(2728), + [anon_sym_CG_INLINE] = ACTIONS(2728), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2728), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2728), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2728), + [anon_sym_IBOutlet] = ACTIONS(2728), + [anon_sym_IBInspectable] = ACTIONS(2728), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2728), + [anon_sym_NS_INLINE] = ACTIONS(2728), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2728), + [anon_sym_OBJC_EXPORT] = ACTIONS(2728), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2728), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2728), + [anon_sym_const] = ACTIONS(2728), + [anon_sym_constexpr] = ACTIONS(2728), + [anon_sym_volatile] = ACTIONS(2728), + [anon_sym_restrict] = ACTIONS(2728), + [anon_sym___restrict__] = ACTIONS(2728), + [anon_sym__Atomic] = ACTIONS(2728), + [anon_sym__Noreturn] = ACTIONS(2728), + [anon_sym__Nonnull] = ACTIONS(2728), + [anon_sym_nullable] = ACTIONS(2728), + [anon_sym__Complex] = ACTIONS(2728), + [anon_sym__Nullable] = ACTIONS(2728), + [anon_sym__Nullable_result] = ACTIONS(2728), + [anon_sym__Null_unspecified] = ACTIONS(2728), + [anon_sym___autoreleasing] = ACTIONS(2728), + [anon_sym___block] = ACTIONS(2728), + [anon_sym___bridge] = ACTIONS(2728), + [anon_sym___bridge_retained] = ACTIONS(2728), + [anon_sym___bridge_transfer] = ACTIONS(2728), + [anon_sym___complex] = ACTIONS(2728), + [anon_sym___const] = ACTIONS(2728), + [anon_sym___imag] = ACTIONS(2728), + [anon_sym___kindof] = ACTIONS(2728), + [anon_sym___nonnull] = ACTIONS(2728), + [anon_sym___nullable] = ACTIONS(2728), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2728), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2728), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2728), + [anon_sym___real] = ACTIONS(2728), + [anon_sym___strong] = ACTIONS(2728), + [anon_sym___unsafe_unretained] = ACTIONS(2728), + [anon_sym___unused] = ACTIONS(2728), + [anon_sym___weak] = ACTIONS(2728), + [anon_sym_alignas] = ACTIONS(2728), + [anon_sym__Alignas] = ACTIONS(2728), + [sym_primitive_type] = ACTIONS(2728), + [anon_sym_enum] = ACTIONS(2728), + [anon_sym_struct] = ACTIONS(2728), + [anon_sym_union] = ACTIONS(2728), + [anon_sym_if] = ACTIONS(2728), + [anon_sym_switch] = ACTIONS(2728), + [anon_sym_case] = ACTIONS(2728), + [anon_sym_default] = ACTIONS(2728), + [anon_sym_while] = ACTIONS(2728), + [anon_sym_do] = ACTIONS(2728), + [anon_sym_for] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2728), + [anon_sym_return] = ACTIONS(2728), + [anon_sym_break] = ACTIONS(2728), + [anon_sym_continue] = ACTIONS(2728), + [anon_sym_goto] = ACTIONS(2728), + [anon_sym_DASH_DASH] = ACTIONS(2730), + [anon_sym_PLUS_PLUS] = ACTIONS(2730), + [anon_sym_sizeof] = ACTIONS(2728), + [anon_sym___alignof__] = ACTIONS(2728), + [anon_sym___alignof] = ACTIONS(2728), + [anon_sym__alignof] = ACTIONS(2728), + [anon_sym_alignof] = ACTIONS(2728), + [anon_sym__Alignof] = ACTIONS(2728), + [anon_sym_offsetof] = ACTIONS(2728), + [anon_sym__Generic] = ACTIONS(2728), + [anon_sym_asm] = ACTIONS(2728), + [anon_sym___asm__] = ACTIONS(2728), + [anon_sym___asm] = ACTIONS(2728), + [sym_number_literal] = ACTIONS(2730), + [anon_sym_L_SQUOTE] = ACTIONS(2730), + [anon_sym_u_SQUOTE] = ACTIONS(2730), + [anon_sym_U_SQUOTE] = ACTIONS(2730), + [anon_sym_u8_SQUOTE] = ACTIONS(2730), + [anon_sym_SQUOTE] = ACTIONS(2730), + [anon_sym_AT] = ACTIONS(2728), + [anon_sym_DQUOTE] = ACTIONS(2730), + [anon_sym_L_DQUOTE] = ACTIONS(2730), + [anon_sym_u_DQUOTE] = ACTIONS(2730), + [anon_sym_U_DQUOTE] = ACTIONS(2730), + [anon_sym_u8_DQUOTE] = ACTIONS(2730), + [sym_true] = ACTIONS(2728), + [sym_false] = ACTIONS(2728), + [anon_sym_NULL] = ACTIONS(2728), + [anon_sym_nullptr] = ACTIONS(2728), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2728), + [anon_sym___typeof] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(2728), + [anon_sym_ATimport] = ACTIONS(2730), + [aux_sym_preproc_undef_token1] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(2728), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2728), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2728), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2728), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2728), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2728), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2728), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2728), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2728), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2728), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2728), + [anon_sym_NS_AVAILABLE] = ACTIONS(2728), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2728), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2728), + [anon_sym_API_AVAILABLE] = ACTIONS(2728), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2728), + [anon_sym_API_DEPRECATED] = ACTIONS(2728), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2728), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2728), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2728), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2728), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2728), + [anon_sym___deprecated_msg] = ACTIONS(2728), + [anon_sym___deprecated_enum_msg] = ACTIONS(2728), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2728), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2728), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2728), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2728), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2728), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2728), + [anon_sym_ATprotocol] = ACTIONS(2730), + [anon_sym_ATinterface] = ACTIONS(2730), + [anon_sym_ATimplementation] = ACTIONS(2730), + [anon_sym_ATcompatibility_alias] = ACTIONS(2730), + [anon_sym_ATsynthesize] = ACTIONS(2730), + [anon_sym_ATdynamic] = ACTIONS(2730), + [anon_sym_ATtry] = ACTIONS(2730), + [anon_sym___try] = ACTIONS(2728), + [anon_sym_ATthrow] = ACTIONS(2730), + [anon_sym_ATselector] = ACTIONS(2730), + [anon_sym_ATavailable] = ACTIONS(2730), + [anon_sym___builtin_available] = ACTIONS(2728), + [anon_sym_va_arg] = ACTIONS(2728), + [anon_sym_ATencode] = ACTIONS(2730), + [anon_sym_ATsynchronized] = ACTIONS(2730), + [anon_sym_BOOL] = ACTIONS(2728), + [anon_sym_IMP] = ACTIONS(2728), + [anon_sym_SEL] = ACTIONS(2728), + [anon_sym_Class] = ACTIONS(2728), + [anon_sym_id] = ACTIONS(2728), + }, + [320] = { + [sym_identifier] = ACTIONS(2732), + [aux_sym_preproc_include_token1] = ACTIONS(2732), + [aux_sym_preproc_include_token2] = ACTIONS(2732), + [aux_sym_preproc_def_token1] = ACTIONS(2732), + [aux_sym_preproc_if_token1] = ACTIONS(2732), + [aux_sym_preproc_if_token2] = ACTIONS(2732), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2732), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2732), + [aux_sym_preproc_else_token1] = ACTIONS(2732), + [aux_sym_preproc_elif_token1] = ACTIONS(2732), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2732), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2732), + [sym_preproc_directive] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_BANG] = ACTIONS(2734), + [anon_sym_TILDE] = ACTIONS(2734), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_STAR] = ACTIONS(2734), + [anon_sym_CARET] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2734), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym___extension__] = ACTIONS(2732), + [anon_sym_typedef] = ACTIONS(2732), + [anon_sym_extern] = ACTIONS(2732), + [anon_sym___attribute__] = ACTIONS(2732), + [anon_sym___attribute] = ACTIONS(2732), + [anon_sym_noreturn] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym___declspec] = ACTIONS(2732), + [anon_sym___cdecl] = ACTIONS(2732), + [anon_sym___clrcall] = ACTIONS(2732), + [anon_sym___stdcall] = ACTIONS(2732), + [anon_sym___fastcall] = ACTIONS(2732), + [anon_sym___thiscall] = ACTIONS(2732), + [anon_sym___vectorcall] = ACTIONS(2732), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_signed] = ACTIONS(2732), + [anon_sym_unsigned] = ACTIONS(2732), + [anon_sym_long] = ACTIONS(2732), + [anon_sym_short] = ACTIONS(2732), + [anon_sym_static] = ACTIONS(2732), + [anon_sym_ATautoreleasepool] = ACTIONS(2734), + [anon_sym_auto] = ACTIONS(2732), + [anon_sym_register] = ACTIONS(2732), + [anon_sym_inline] = ACTIONS(2732), + [anon_sym___inline] = ACTIONS(2732), + [anon_sym___inline__] = ACTIONS(2732), + [anon_sym___forceinline] = ACTIONS(2732), + [anon_sym_thread_local] = ACTIONS(2732), + [anon_sym___thread] = ACTIONS(2732), + [anon_sym_CG_EXTERN] = ACTIONS(2732), + [anon_sym_CG_INLINE] = ACTIONS(2732), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2732), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2732), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2732), + [anon_sym_IBOutlet] = ACTIONS(2732), + [anon_sym_IBInspectable] = ACTIONS(2732), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2732), + [anon_sym_NS_INLINE] = ACTIONS(2732), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2732), + [anon_sym_OBJC_EXPORT] = ACTIONS(2732), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2732), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2732), + [anon_sym_const] = ACTIONS(2732), + [anon_sym_constexpr] = ACTIONS(2732), + [anon_sym_volatile] = ACTIONS(2732), + [anon_sym_restrict] = ACTIONS(2732), + [anon_sym___restrict__] = ACTIONS(2732), + [anon_sym__Atomic] = ACTIONS(2732), + [anon_sym__Noreturn] = ACTIONS(2732), + [anon_sym__Nonnull] = ACTIONS(2732), + [anon_sym_nullable] = ACTIONS(2732), + [anon_sym__Complex] = ACTIONS(2732), + [anon_sym__Nullable] = ACTIONS(2732), + [anon_sym__Nullable_result] = ACTIONS(2732), + [anon_sym__Null_unspecified] = ACTIONS(2732), + [anon_sym___autoreleasing] = ACTIONS(2732), + [anon_sym___block] = ACTIONS(2732), + [anon_sym___bridge] = ACTIONS(2732), + [anon_sym___bridge_retained] = ACTIONS(2732), + [anon_sym___bridge_transfer] = ACTIONS(2732), + [anon_sym___complex] = ACTIONS(2732), + [anon_sym___const] = ACTIONS(2732), + [anon_sym___imag] = ACTIONS(2732), + [anon_sym___kindof] = ACTIONS(2732), + [anon_sym___nonnull] = ACTIONS(2732), + [anon_sym___nullable] = ACTIONS(2732), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2732), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2732), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2732), + [anon_sym___real] = ACTIONS(2732), + [anon_sym___strong] = ACTIONS(2732), + [anon_sym___unsafe_unretained] = ACTIONS(2732), + [anon_sym___unused] = ACTIONS(2732), + [anon_sym___weak] = ACTIONS(2732), + [anon_sym_alignas] = ACTIONS(2732), + [anon_sym__Alignas] = ACTIONS(2732), + [sym_primitive_type] = ACTIONS(2732), + [anon_sym_enum] = ACTIONS(2732), + [anon_sym_struct] = ACTIONS(2732), + [anon_sym_union] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_switch] = ACTIONS(2732), + [anon_sym_case] = ACTIONS(2732), + [anon_sym_default] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_break] = ACTIONS(2732), + [anon_sym_continue] = ACTIONS(2732), + [anon_sym_goto] = ACTIONS(2732), + [anon_sym_DASH_DASH] = ACTIONS(2734), + [anon_sym_PLUS_PLUS] = ACTIONS(2734), + [anon_sym_sizeof] = ACTIONS(2732), + [anon_sym___alignof__] = ACTIONS(2732), + [anon_sym___alignof] = ACTIONS(2732), + [anon_sym__alignof] = ACTIONS(2732), + [anon_sym_alignof] = ACTIONS(2732), + [anon_sym__Alignof] = ACTIONS(2732), + [anon_sym_offsetof] = ACTIONS(2732), + [anon_sym__Generic] = ACTIONS(2732), + [anon_sym_asm] = ACTIONS(2732), + [anon_sym___asm__] = ACTIONS(2732), + [anon_sym___asm] = ACTIONS(2732), + [sym_number_literal] = ACTIONS(2734), + [anon_sym_L_SQUOTE] = ACTIONS(2734), + [anon_sym_u_SQUOTE] = ACTIONS(2734), + [anon_sym_U_SQUOTE] = ACTIONS(2734), + [anon_sym_u8_SQUOTE] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_AT] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2734), + [anon_sym_L_DQUOTE] = ACTIONS(2734), + [anon_sym_u_DQUOTE] = ACTIONS(2734), + [anon_sym_U_DQUOTE] = ACTIONS(2734), + [anon_sym_u8_DQUOTE] = ACTIONS(2734), + [sym_true] = ACTIONS(2732), + [sym_false] = ACTIONS(2732), + [anon_sym_NULL] = ACTIONS(2732), + [anon_sym_nullptr] = ACTIONS(2732), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2732), + [anon_sym___typeof] = ACTIONS(2732), + [anon_sym_typeof] = ACTIONS(2732), + [anon_sym_ATimport] = ACTIONS(2734), + [aux_sym_preproc_undef_token1] = ACTIONS(2732), + [anon_sym_POUND] = ACTIONS(2732), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2732), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2732), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2732), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2732), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2732), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2732), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2732), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2732), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2732), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2732), + [anon_sym_NS_AVAILABLE] = ACTIONS(2732), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2732), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2732), + [anon_sym_API_AVAILABLE] = ACTIONS(2732), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2732), + [anon_sym_API_DEPRECATED] = ACTIONS(2732), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2732), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2732), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2732), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2732), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2732), + [anon_sym___deprecated_msg] = ACTIONS(2732), + [anon_sym___deprecated_enum_msg] = ACTIONS(2732), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2732), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2732), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2732), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2732), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2732), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2732), + [anon_sym_ATprotocol] = ACTIONS(2734), + [anon_sym_ATinterface] = ACTIONS(2734), + [anon_sym_ATimplementation] = ACTIONS(2734), + [anon_sym_ATcompatibility_alias] = ACTIONS(2734), + [anon_sym_ATsynthesize] = ACTIONS(2734), + [anon_sym_ATdynamic] = ACTIONS(2734), + [anon_sym_ATtry] = ACTIONS(2734), + [anon_sym___try] = ACTIONS(2732), + [anon_sym_ATthrow] = ACTIONS(2734), + [anon_sym_ATselector] = ACTIONS(2734), + [anon_sym_ATavailable] = ACTIONS(2734), + [anon_sym___builtin_available] = ACTIONS(2732), + [anon_sym_va_arg] = ACTIONS(2732), + [anon_sym_ATencode] = ACTIONS(2734), + [anon_sym_ATsynchronized] = ACTIONS(2734), + [anon_sym_BOOL] = ACTIONS(2732), + [anon_sym_IMP] = ACTIONS(2732), + [anon_sym_SEL] = ACTIONS(2732), + [anon_sym_Class] = ACTIONS(2732), + [anon_sym_id] = ACTIONS(2732), + }, + [321] = { + [sym_identifier] = ACTIONS(2736), + [aux_sym_preproc_include_token1] = ACTIONS(2736), + [aux_sym_preproc_include_token2] = ACTIONS(2736), + [aux_sym_preproc_def_token1] = ACTIONS(2736), + [aux_sym_preproc_if_token1] = ACTIONS(2736), + [aux_sym_preproc_if_token2] = ACTIONS(2736), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2736), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2736), + [aux_sym_preproc_else_token1] = ACTIONS(2736), + [aux_sym_preproc_elif_token1] = ACTIONS(2736), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2736), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2736), + [sym_preproc_directive] = ACTIONS(2736), + [anon_sym_LPAREN2] = ACTIONS(2738), + [anon_sym_BANG] = ACTIONS(2738), + [anon_sym_TILDE] = ACTIONS(2738), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_CARET] = ACTIONS(2738), + [anon_sym_AMP] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_typedef] = ACTIONS(2736), + [anon_sym_extern] = ACTIONS(2736), + [anon_sym___attribute__] = ACTIONS(2736), + [anon_sym___attribute] = ACTIONS(2736), + [anon_sym_noreturn] = ACTIONS(2736), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym___declspec] = ACTIONS(2736), + [anon_sym___cdecl] = ACTIONS(2736), + [anon_sym___clrcall] = ACTIONS(2736), + [anon_sym___stdcall] = ACTIONS(2736), + [anon_sym___fastcall] = ACTIONS(2736), + [anon_sym___thiscall] = ACTIONS(2736), + [anon_sym___vectorcall] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_signed] = ACTIONS(2736), + [anon_sym_unsigned] = ACTIONS(2736), + [anon_sym_long] = ACTIONS(2736), + [anon_sym_short] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2736), + [anon_sym_ATautoreleasepool] = ACTIONS(2738), + [anon_sym_auto] = ACTIONS(2736), + [anon_sym_register] = ACTIONS(2736), + [anon_sym_inline] = ACTIONS(2736), + [anon_sym___inline] = ACTIONS(2736), + [anon_sym___inline__] = ACTIONS(2736), + [anon_sym___forceinline] = ACTIONS(2736), + [anon_sym_thread_local] = ACTIONS(2736), + [anon_sym___thread] = ACTIONS(2736), + [anon_sym_CG_EXTERN] = ACTIONS(2736), + [anon_sym_CG_INLINE] = ACTIONS(2736), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2736), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2736), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2736), + [anon_sym_IBOutlet] = ACTIONS(2736), + [anon_sym_IBInspectable] = ACTIONS(2736), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2736), + [anon_sym_NS_INLINE] = ACTIONS(2736), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2736), + [anon_sym_OBJC_EXPORT] = ACTIONS(2736), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2736), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2736), + [anon_sym_const] = ACTIONS(2736), + [anon_sym_constexpr] = ACTIONS(2736), + [anon_sym_volatile] = ACTIONS(2736), + [anon_sym_restrict] = ACTIONS(2736), + [anon_sym___restrict__] = ACTIONS(2736), + [anon_sym__Atomic] = ACTIONS(2736), + [anon_sym__Noreturn] = ACTIONS(2736), + [anon_sym__Nonnull] = ACTIONS(2736), + [anon_sym_nullable] = ACTIONS(2736), + [anon_sym__Complex] = ACTIONS(2736), + [anon_sym__Nullable] = ACTIONS(2736), + [anon_sym__Nullable_result] = ACTIONS(2736), + [anon_sym__Null_unspecified] = ACTIONS(2736), + [anon_sym___autoreleasing] = ACTIONS(2736), + [anon_sym___block] = ACTIONS(2736), + [anon_sym___bridge] = ACTIONS(2736), + [anon_sym___bridge_retained] = ACTIONS(2736), + [anon_sym___bridge_transfer] = ACTIONS(2736), + [anon_sym___complex] = ACTIONS(2736), + [anon_sym___const] = ACTIONS(2736), + [anon_sym___imag] = ACTIONS(2736), + [anon_sym___kindof] = ACTIONS(2736), + [anon_sym___nonnull] = ACTIONS(2736), + [anon_sym___nullable] = ACTIONS(2736), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2736), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2736), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2736), + [anon_sym___real] = ACTIONS(2736), + [anon_sym___strong] = ACTIONS(2736), + [anon_sym___unsafe_unretained] = ACTIONS(2736), + [anon_sym___unused] = ACTIONS(2736), + [anon_sym___weak] = ACTIONS(2736), + [anon_sym_alignas] = ACTIONS(2736), + [anon_sym__Alignas] = ACTIONS(2736), + [sym_primitive_type] = ACTIONS(2736), + [anon_sym_enum] = ACTIONS(2736), + [anon_sym_struct] = ACTIONS(2736), + [anon_sym_union] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_switch] = ACTIONS(2736), + [anon_sym_case] = ACTIONS(2736), + [anon_sym_default] = ACTIONS(2736), + [anon_sym_while] = ACTIONS(2736), + [anon_sym_do] = ACTIONS(2736), + [anon_sym_for] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2736), + [anon_sym_return] = ACTIONS(2736), + [anon_sym_break] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2736), + [anon_sym_goto] = ACTIONS(2736), + [anon_sym_DASH_DASH] = ACTIONS(2738), + [anon_sym_PLUS_PLUS] = ACTIONS(2738), + [anon_sym_sizeof] = ACTIONS(2736), + [anon_sym___alignof__] = ACTIONS(2736), + [anon_sym___alignof] = ACTIONS(2736), + [anon_sym__alignof] = ACTIONS(2736), + [anon_sym_alignof] = ACTIONS(2736), + [anon_sym__Alignof] = ACTIONS(2736), + [anon_sym_offsetof] = ACTIONS(2736), + [anon_sym__Generic] = ACTIONS(2736), + [anon_sym_asm] = ACTIONS(2736), + [anon_sym___asm__] = ACTIONS(2736), + [anon_sym___asm] = ACTIONS(2736), + [sym_number_literal] = ACTIONS(2738), + [anon_sym_L_SQUOTE] = ACTIONS(2738), + [anon_sym_u_SQUOTE] = ACTIONS(2738), + [anon_sym_U_SQUOTE] = ACTIONS(2738), + [anon_sym_u8_SQUOTE] = ACTIONS(2738), + [anon_sym_SQUOTE] = ACTIONS(2738), + [anon_sym_AT] = ACTIONS(2736), + [anon_sym_DQUOTE] = ACTIONS(2738), + [anon_sym_L_DQUOTE] = ACTIONS(2738), + [anon_sym_u_DQUOTE] = ACTIONS(2738), + [anon_sym_U_DQUOTE] = ACTIONS(2738), + [anon_sym_u8_DQUOTE] = ACTIONS(2738), + [sym_true] = ACTIONS(2736), + [sym_false] = ACTIONS(2736), + [anon_sym_NULL] = ACTIONS(2736), + [anon_sym_nullptr] = ACTIONS(2736), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2736), + [anon_sym___typeof] = ACTIONS(2736), + [anon_sym_typeof] = ACTIONS(2736), + [anon_sym_ATimport] = ACTIONS(2738), + [aux_sym_preproc_undef_token1] = ACTIONS(2736), + [anon_sym_POUND] = ACTIONS(2736), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2736), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2736), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2736), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2736), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2736), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2736), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2736), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2736), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2736), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2736), + [anon_sym_NS_AVAILABLE] = ACTIONS(2736), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2736), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2736), + [anon_sym_API_AVAILABLE] = ACTIONS(2736), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2736), + [anon_sym_API_DEPRECATED] = ACTIONS(2736), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2736), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2736), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2736), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2736), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2736), + [anon_sym___deprecated_msg] = ACTIONS(2736), + [anon_sym___deprecated_enum_msg] = ACTIONS(2736), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2736), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2736), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2736), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2736), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2736), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2736), + [anon_sym_ATprotocol] = ACTIONS(2738), + [anon_sym_ATinterface] = ACTIONS(2738), + [anon_sym_ATimplementation] = ACTIONS(2738), + [anon_sym_ATcompatibility_alias] = ACTIONS(2738), + [anon_sym_ATsynthesize] = ACTIONS(2738), + [anon_sym_ATdynamic] = ACTIONS(2738), + [anon_sym_ATtry] = ACTIONS(2738), + [anon_sym___try] = ACTIONS(2736), + [anon_sym_ATthrow] = ACTIONS(2738), + [anon_sym_ATselector] = ACTIONS(2738), + [anon_sym_ATavailable] = ACTIONS(2738), + [anon_sym___builtin_available] = ACTIONS(2736), + [anon_sym_va_arg] = ACTIONS(2736), + [anon_sym_ATencode] = ACTIONS(2738), + [anon_sym_ATsynchronized] = ACTIONS(2738), + [anon_sym_BOOL] = ACTIONS(2736), + [anon_sym_IMP] = ACTIONS(2736), + [anon_sym_SEL] = ACTIONS(2736), + [anon_sym_Class] = ACTIONS(2736), + [anon_sym_id] = ACTIONS(2736), + }, + [322] = { + [sym_identifier] = ACTIONS(2740), + [aux_sym_preproc_include_token1] = ACTIONS(2740), + [aux_sym_preproc_include_token2] = ACTIONS(2740), + [aux_sym_preproc_def_token1] = ACTIONS(2740), + [aux_sym_preproc_if_token1] = ACTIONS(2740), + [aux_sym_preproc_if_token2] = ACTIONS(2740), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2740), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2740), + [aux_sym_preproc_else_token1] = ACTIONS(2740), + [aux_sym_preproc_elif_token1] = ACTIONS(2740), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2740), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2740), + [sym_preproc_directive] = ACTIONS(2740), + [anon_sym_LPAREN2] = ACTIONS(2742), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_TILDE] = ACTIONS(2742), + [anon_sym_DASH] = ACTIONS(2740), + [anon_sym_PLUS] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2742), + [anon_sym_CARET] = ACTIONS(2742), + [anon_sym_AMP] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym___extension__] = ACTIONS(2740), + [anon_sym_typedef] = ACTIONS(2740), + [anon_sym_extern] = ACTIONS(2740), + [anon_sym___attribute__] = ACTIONS(2740), + [anon_sym___attribute] = ACTIONS(2740), + [anon_sym_noreturn] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym___declspec] = ACTIONS(2740), + [anon_sym___cdecl] = ACTIONS(2740), + [anon_sym___clrcall] = ACTIONS(2740), + [anon_sym___stdcall] = ACTIONS(2740), + [anon_sym___fastcall] = ACTIONS(2740), + [anon_sym___thiscall] = ACTIONS(2740), + [anon_sym___vectorcall] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_signed] = ACTIONS(2740), + [anon_sym_unsigned] = ACTIONS(2740), + [anon_sym_long] = ACTIONS(2740), + [anon_sym_short] = ACTIONS(2740), + [anon_sym_static] = ACTIONS(2740), + [anon_sym_ATautoreleasepool] = ACTIONS(2742), + [anon_sym_auto] = ACTIONS(2740), + [anon_sym_register] = ACTIONS(2740), + [anon_sym_inline] = ACTIONS(2740), + [anon_sym___inline] = ACTIONS(2740), + [anon_sym___inline__] = ACTIONS(2740), + [anon_sym___forceinline] = ACTIONS(2740), + [anon_sym_thread_local] = ACTIONS(2740), + [anon_sym___thread] = ACTIONS(2740), + [anon_sym_CG_EXTERN] = ACTIONS(2740), + [anon_sym_CG_INLINE] = ACTIONS(2740), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2740), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2740), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2740), + [anon_sym_IBOutlet] = ACTIONS(2740), + [anon_sym_IBInspectable] = ACTIONS(2740), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2740), + [anon_sym_NS_INLINE] = ACTIONS(2740), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2740), + [anon_sym_OBJC_EXPORT] = ACTIONS(2740), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2740), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2740), + [anon_sym_const] = ACTIONS(2740), + [anon_sym_constexpr] = ACTIONS(2740), + [anon_sym_volatile] = ACTIONS(2740), + [anon_sym_restrict] = ACTIONS(2740), + [anon_sym___restrict__] = ACTIONS(2740), + [anon_sym__Atomic] = ACTIONS(2740), + [anon_sym__Noreturn] = ACTIONS(2740), + [anon_sym__Nonnull] = ACTIONS(2740), + [anon_sym_nullable] = ACTIONS(2740), + [anon_sym__Complex] = ACTIONS(2740), + [anon_sym__Nullable] = ACTIONS(2740), + [anon_sym__Nullable_result] = ACTIONS(2740), + [anon_sym__Null_unspecified] = ACTIONS(2740), + [anon_sym___autoreleasing] = ACTIONS(2740), + [anon_sym___block] = ACTIONS(2740), + [anon_sym___bridge] = ACTIONS(2740), + [anon_sym___bridge_retained] = ACTIONS(2740), + [anon_sym___bridge_transfer] = ACTIONS(2740), + [anon_sym___complex] = ACTIONS(2740), + [anon_sym___const] = ACTIONS(2740), + [anon_sym___imag] = ACTIONS(2740), + [anon_sym___kindof] = ACTIONS(2740), + [anon_sym___nonnull] = ACTIONS(2740), + [anon_sym___nullable] = ACTIONS(2740), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2740), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2740), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2740), + [anon_sym___real] = ACTIONS(2740), + [anon_sym___strong] = ACTIONS(2740), + [anon_sym___unsafe_unretained] = ACTIONS(2740), + [anon_sym___unused] = ACTIONS(2740), + [anon_sym___weak] = ACTIONS(2740), + [anon_sym_alignas] = ACTIONS(2740), + [anon_sym__Alignas] = ACTIONS(2740), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_enum] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(2740), + [anon_sym_union] = ACTIONS(2740), + [anon_sym_if] = ACTIONS(2740), + [anon_sym_switch] = ACTIONS(2740), + [anon_sym_case] = ACTIONS(2740), + [anon_sym_default] = ACTIONS(2740), + [anon_sym_while] = ACTIONS(2740), + [anon_sym_do] = ACTIONS(2740), + [anon_sym_for] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2740), + [anon_sym_return] = ACTIONS(2740), + [anon_sym_break] = ACTIONS(2740), + [anon_sym_continue] = ACTIONS(2740), + [anon_sym_goto] = ACTIONS(2740), + [anon_sym_DASH_DASH] = ACTIONS(2742), + [anon_sym_PLUS_PLUS] = ACTIONS(2742), + [anon_sym_sizeof] = ACTIONS(2740), + [anon_sym___alignof__] = ACTIONS(2740), + [anon_sym___alignof] = ACTIONS(2740), + [anon_sym__alignof] = ACTIONS(2740), + [anon_sym_alignof] = ACTIONS(2740), + [anon_sym__Alignof] = ACTIONS(2740), + [anon_sym_offsetof] = ACTIONS(2740), + [anon_sym__Generic] = ACTIONS(2740), + [anon_sym_asm] = ACTIONS(2740), + [anon_sym___asm__] = ACTIONS(2740), + [anon_sym___asm] = ACTIONS(2740), + [sym_number_literal] = ACTIONS(2742), + [anon_sym_L_SQUOTE] = ACTIONS(2742), + [anon_sym_u_SQUOTE] = ACTIONS(2742), + [anon_sym_U_SQUOTE] = ACTIONS(2742), + [anon_sym_u8_SQUOTE] = ACTIONS(2742), + [anon_sym_SQUOTE] = ACTIONS(2742), + [anon_sym_AT] = ACTIONS(2740), + [anon_sym_DQUOTE] = ACTIONS(2742), + [anon_sym_L_DQUOTE] = ACTIONS(2742), + [anon_sym_u_DQUOTE] = ACTIONS(2742), + [anon_sym_U_DQUOTE] = ACTIONS(2742), + [anon_sym_u8_DQUOTE] = ACTIONS(2742), + [sym_true] = ACTIONS(2740), + [sym_false] = ACTIONS(2740), + [anon_sym_NULL] = ACTIONS(2740), + [anon_sym_nullptr] = ACTIONS(2740), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2740), + [anon_sym___typeof] = ACTIONS(2740), + [anon_sym_typeof] = ACTIONS(2740), + [anon_sym_ATimport] = ACTIONS(2742), + [aux_sym_preproc_undef_token1] = ACTIONS(2740), + [anon_sym_POUND] = ACTIONS(2740), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2740), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2740), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2740), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2740), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2740), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2740), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2740), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2740), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2740), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2740), + [anon_sym_NS_AVAILABLE] = ACTIONS(2740), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2740), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2740), + [anon_sym_API_AVAILABLE] = ACTIONS(2740), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2740), + [anon_sym_API_DEPRECATED] = ACTIONS(2740), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2740), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2740), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2740), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2740), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2740), + [anon_sym___deprecated_msg] = ACTIONS(2740), + [anon_sym___deprecated_enum_msg] = ACTIONS(2740), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2740), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2740), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2740), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2740), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2740), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2740), + [anon_sym_ATprotocol] = ACTIONS(2742), + [anon_sym_ATinterface] = ACTIONS(2742), + [anon_sym_ATimplementation] = ACTIONS(2742), + [anon_sym_ATcompatibility_alias] = ACTIONS(2742), + [anon_sym_ATsynthesize] = ACTIONS(2742), + [anon_sym_ATdynamic] = ACTIONS(2742), + [anon_sym_ATtry] = ACTIONS(2742), + [anon_sym___try] = ACTIONS(2740), + [anon_sym_ATthrow] = ACTIONS(2742), + [anon_sym_ATselector] = ACTIONS(2742), + [anon_sym_ATavailable] = ACTIONS(2742), + [anon_sym___builtin_available] = ACTIONS(2740), + [anon_sym_va_arg] = ACTIONS(2740), + [anon_sym_ATencode] = ACTIONS(2742), + [anon_sym_ATsynchronized] = ACTIONS(2742), + [anon_sym_BOOL] = ACTIONS(2740), + [anon_sym_IMP] = ACTIONS(2740), + [anon_sym_SEL] = ACTIONS(2740), + [anon_sym_Class] = ACTIONS(2740), + [anon_sym_id] = ACTIONS(2740), + }, + [323] = { + [sym_identifier] = ACTIONS(2744), + [aux_sym_preproc_include_token1] = ACTIONS(2744), + [aux_sym_preproc_include_token2] = ACTIONS(2744), + [aux_sym_preproc_def_token1] = ACTIONS(2744), + [aux_sym_preproc_if_token1] = ACTIONS(2744), + [aux_sym_preproc_if_token2] = ACTIONS(2744), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2744), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2744), + [aux_sym_preproc_else_token1] = ACTIONS(2744), + [aux_sym_preproc_elif_token1] = ACTIONS(2744), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2744), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2744), + [sym_preproc_directive] = ACTIONS(2744), + [anon_sym_LPAREN2] = ACTIONS(2746), + [anon_sym_BANG] = ACTIONS(2746), + [anon_sym_TILDE] = ACTIONS(2746), + [anon_sym_DASH] = ACTIONS(2744), + [anon_sym_PLUS] = ACTIONS(2744), + [anon_sym_STAR] = ACTIONS(2746), + [anon_sym_CARET] = ACTIONS(2746), + [anon_sym_AMP] = ACTIONS(2746), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym___extension__] = ACTIONS(2744), + [anon_sym_typedef] = ACTIONS(2744), + [anon_sym_extern] = ACTIONS(2744), + [anon_sym___attribute__] = ACTIONS(2744), + [anon_sym___attribute] = ACTIONS(2744), + [anon_sym_noreturn] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym___declspec] = ACTIONS(2744), + [anon_sym___cdecl] = ACTIONS(2744), + [anon_sym___clrcall] = ACTIONS(2744), + [anon_sym___stdcall] = ACTIONS(2744), + [anon_sym___fastcall] = ACTIONS(2744), + [anon_sym___thiscall] = ACTIONS(2744), + [anon_sym___vectorcall] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_signed] = ACTIONS(2744), + [anon_sym_unsigned] = ACTIONS(2744), + [anon_sym_long] = ACTIONS(2744), + [anon_sym_short] = ACTIONS(2744), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_ATautoreleasepool] = ACTIONS(2746), + [anon_sym_auto] = ACTIONS(2744), + [anon_sym_register] = ACTIONS(2744), + [anon_sym_inline] = ACTIONS(2744), + [anon_sym___inline] = ACTIONS(2744), + [anon_sym___inline__] = ACTIONS(2744), + [anon_sym___forceinline] = ACTIONS(2744), + [anon_sym_thread_local] = ACTIONS(2744), + [anon_sym___thread] = ACTIONS(2744), + [anon_sym_CG_EXTERN] = ACTIONS(2744), + [anon_sym_CG_INLINE] = ACTIONS(2744), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2744), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2744), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2744), + [anon_sym_IBOutlet] = ACTIONS(2744), + [anon_sym_IBInspectable] = ACTIONS(2744), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2744), + [anon_sym_NS_INLINE] = ACTIONS(2744), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2744), + [anon_sym_OBJC_EXPORT] = ACTIONS(2744), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2744), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2744), + [anon_sym_const] = ACTIONS(2744), + [anon_sym_constexpr] = ACTIONS(2744), + [anon_sym_volatile] = ACTIONS(2744), + [anon_sym_restrict] = ACTIONS(2744), + [anon_sym___restrict__] = ACTIONS(2744), + [anon_sym__Atomic] = ACTIONS(2744), + [anon_sym__Noreturn] = ACTIONS(2744), + [anon_sym__Nonnull] = ACTIONS(2744), + [anon_sym_nullable] = ACTIONS(2744), + [anon_sym__Complex] = ACTIONS(2744), + [anon_sym__Nullable] = ACTIONS(2744), + [anon_sym__Nullable_result] = ACTIONS(2744), + [anon_sym__Null_unspecified] = ACTIONS(2744), + [anon_sym___autoreleasing] = ACTIONS(2744), + [anon_sym___block] = ACTIONS(2744), + [anon_sym___bridge] = ACTIONS(2744), + [anon_sym___bridge_retained] = ACTIONS(2744), + [anon_sym___bridge_transfer] = ACTIONS(2744), + [anon_sym___complex] = ACTIONS(2744), + [anon_sym___const] = ACTIONS(2744), + [anon_sym___imag] = ACTIONS(2744), + [anon_sym___kindof] = ACTIONS(2744), + [anon_sym___nonnull] = ACTIONS(2744), + [anon_sym___nullable] = ACTIONS(2744), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2744), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2744), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2744), + [anon_sym___real] = ACTIONS(2744), + [anon_sym___strong] = ACTIONS(2744), + [anon_sym___unsafe_unretained] = ACTIONS(2744), + [anon_sym___unused] = ACTIONS(2744), + [anon_sym___weak] = ACTIONS(2744), + [anon_sym_alignas] = ACTIONS(2744), + [anon_sym__Alignas] = ACTIONS(2744), + [sym_primitive_type] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), + [anon_sym_struct] = ACTIONS(2744), + [anon_sym_union] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_switch] = ACTIONS(2744), + [anon_sym_case] = ACTIONS(2744), + [anon_sym_default] = ACTIONS(2744), + [anon_sym_while] = ACTIONS(2744), + [anon_sym_do] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2744), + [anon_sym_return] = ACTIONS(2744), + [anon_sym_break] = ACTIONS(2744), + [anon_sym_continue] = ACTIONS(2744), + [anon_sym_goto] = ACTIONS(2744), + [anon_sym_DASH_DASH] = ACTIONS(2746), + [anon_sym_PLUS_PLUS] = ACTIONS(2746), + [anon_sym_sizeof] = ACTIONS(2744), + [anon_sym___alignof__] = ACTIONS(2744), + [anon_sym___alignof] = ACTIONS(2744), + [anon_sym__alignof] = ACTIONS(2744), + [anon_sym_alignof] = ACTIONS(2744), + [anon_sym__Alignof] = ACTIONS(2744), + [anon_sym_offsetof] = ACTIONS(2744), + [anon_sym__Generic] = ACTIONS(2744), + [anon_sym_asm] = ACTIONS(2744), + [anon_sym___asm__] = ACTIONS(2744), + [anon_sym___asm] = ACTIONS(2744), + [sym_number_literal] = ACTIONS(2746), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_AT] = ACTIONS(2744), + [anon_sym_DQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2746), + [anon_sym_u_DQUOTE] = ACTIONS(2746), + [anon_sym_U_DQUOTE] = ACTIONS(2746), + [anon_sym_u8_DQUOTE] = ACTIONS(2746), + [sym_true] = ACTIONS(2744), + [sym_false] = ACTIONS(2744), + [anon_sym_NULL] = ACTIONS(2744), + [anon_sym_nullptr] = ACTIONS(2744), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2744), + [anon_sym___typeof] = ACTIONS(2744), + [anon_sym_typeof] = ACTIONS(2744), + [anon_sym_ATimport] = ACTIONS(2746), + [aux_sym_preproc_undef_token1] = ACTIONS(2744), + [anon_sym_POUND] = ACTIONS(2744), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2744), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2744), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2744), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2744), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2744), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2744), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2744), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2744), + [anon_sym_NS_AVAILABLE] = ACTIONS(2744), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2744), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_API_AVAILABLE] = ACTIONS(2744), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_API_DEPRECATED] = ACTIONS(2744), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2744), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2744), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2744), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2744), + [anon_sym___deprecated_msg] = ACTIONS(2744), + [anon_sym___deprecated_enum_msg] = ACTIONS(2744), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2744), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2744), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2744), + [anon_sym_ATprotocol] = ACTIONS(2746), + [anon_sym_ATinterface] = ACTIONS(2746), + [anon_sym_ATimplementation] = ACTIONS(2746), + [anon_sym_ATcompatibility_alias] = ACTIONS(2746), + [anon_sym_ATsynthesize] = ACTIONS(2746), + [anon_sym_ATdynamic] = ACTIONS(2746), + [anon_sym_ATtry] = ACTIONS(2746), + [anon_sym___try] = ACTIONS(2744), + [anon_sym_ATthrow] = ACTIONS(2746), + [anon_sym_ATselector] = ACTIONS(2746), + [anon_sym_ATavailable] = ACTIONS(2746), + [anon_sym___builtin_available] = ACTIONS(2744), + [anon_sym_va_arg] = ACTIONS(2744), + [anon_sym_ATencode] = ACTIONS(2746), + [anon_sym_ATsynchronized] = ACTIONS(2746), + [anon_sym_BOOL] = ACTIONS(2744), + [anon_sym_IMP] = ACTIONS(2744), + [anon_sym_SEL] = ACTIONS(2744), + [anon_sym_Class] = ACTIONS(2744), + [anon_sym_id] = ACTIONS(2744), + }, + [324] = { + [sym_identifier] = ACTIONS(2748), + [aux_sym_preproc_include_token1] = ACTIONS(2748), + [aux_sym_preproc_include_token2] = ACTIONS(2748), + [aux_sym_preproc_def_token1] = ACTIONS(2748), + [aux_sym_preproc_if_token1] = ACTIONS(2748), + [aux_sym_preproc_if_token2] = ACTIONS(2748), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2748), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2748), + [aux_sym_preproc_else_token1] = ACTIONS(2748), + [aux_sym_preproc_elif_token1] = ACTIONS(2748), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2748), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2748), + [sym_preproc_directive] = ACTIONS(2748), + [anon_sym_LPAREN2] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2750), + [anon_sym_TILDE] = ACTIONS(2750), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_PLUS] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_CARET] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym___extension__] = ACTIONS(2748), + [anon_sym_typedef] = ACTIONS(2748), + [anon_sym_extern] = ACTIONS(2748), + [anon_sym___attribute__] = ACTIONS(2748), + [anon_sym___attribute] = ACTIONS(2748), + [anon_sym_noreturn] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2750), + [anon_sym___declspec] = ACTIONS(2748), + [anon_sym___cdecl] = ACTIONS(2748), + [anon_sym___clrcall] = ACTIONS(2748), + [anon_sym___stdcall] = ACTIONS(2748), + [anon_sym___fastcall] = ACTIONS(2748), + [anon_sym___thiscall] = ACTIONS(2748), + [anon_sym___vectorcall] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(2750), + [anon_sym_signed] = ACTIONS(2748), + [anon_sym_unsigned] = ACTIONS(2748), + [anon_sym_long] = ACTIONS(2748), + [anon_sym_short] = ACTIONS(2748), + [anon_sym_static] = ACTIONS(2748), + [anon_sym_ATautoreleasepool] = ACTIONS(2750), + [anon_sym_auto] = ACTIONS(2748), + [anon_sym_register] = ACTIONS(2748), + [anon_sym_inline] = ACTIONS(2748), + [anon_sym___inline] = ACTIONS(2748), + [anon_sym___inline__] = ACTIONS(2748), + [anon_sym___forceinline] = ACTIONS(2748), + [anon_sym_thread_local] = ACTIONS(2748), + [anon_sym___thread] = ACTIONS(2748), + [anon_sym_CG_EXTERN] = ACTIONS(2748), + [anon_sym_CG_INLINE] = ACTIONS(2748), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2748), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2748), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2748), + [anon_sym_IBOutlet] = ACTIONS(2748), + [anon_sym_IBInspectable] = ACTIONS(2748), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2748), + [anon_sym_NS_INLINE] = ACTIONS(2748), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2748), + [anon_sym_OBJC_EXPORT] = ACTIONS(2748), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2748), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2748), + [anon_sym_constexpr] = ACTIONS(2748), + [anon_sym_volatile] = ACTIONS(2748), + [anon_sym_restrict] = ACTIONS(2748), + [anon_sym___restrict__] = ACTIONS(2748), + [anon_sym__Atomic] = ACTIONS(2748), + [anon_sym__Noreturn] = ACTIONS(2748), + [anon_sym__Nonnull] = ACTIONS(2748), + [anon_sym_nullable] = ACTIONS(2748), + [anon_sym__Complex] = ACTIONS(2748), + [anon_sym__Nullable] = ACTIONS(2748), + [anon_sym__Nullable_result] = ACTIONS(2748), + [anon_sym__Null_unspecified] = ACTIONS(2748), + [anon_sym___autoreleasing] = ACTIONS(2748), + [anon_sym___block] = ACTIONS(2748), + [anon_sym___bridge] = ACTIONS(2748), + [anon_sym___bridge_retained] = ACTIONS(2748), + [anon_sym___bridge_transfer] = ACTIONS(2748), + [anon_sym___complex] = ACTIONS(2748), + [anon_sym___const] = ACTIONS(2748), + [anon_sym___imag] = ACTIONS(2748), + [anon_sym___kindof] = ACTIONS(2748), + [anon_sym___nonnull] = ACTIONS(2748), + [anon_sym___nullable] = ACTIONS(2748), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2748), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2748), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2748), + [anon_sym___real] = ACTIONS(2748), + [anon_sym___strong] = ACTIONS(2748), + [anon_sym___unsafe_unretained] = ACTIONS(2748), + [anon_sym___unused] = ACTIONS(2748), + [anon_sym___weak] = ACTIONS(2748), + [anon_sym_alignas] = ACTIONS(2748), + [anon_sym__Alignas] = ACTIONS(2748), + [sym_primitive_type] = ACTIONS(2748), + [anon_sym_enum] = ACTIONS(2748), + [anon_sym_struct] = ACTIONS(2748), + [anon_sym_union] = ACTIONS(2748), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_switch] = ACTIONS(2748), + [anon_sym_case] = ACTIONS(2748), + [anon_sym_default] = ACTIONS(2748), + [anon_sym_while] = ACTIONS(2748), + [anon_sym_do] = ACTIONS(2748), + [anon_sym_for] = ACTIONS(2748), + [anon_sym_in] = ACTIONS(2748), + [anon_sym_return] = ACTIONS(2748), + [anon_sym_break] = ACTIONS(2748), + [anon_sym_continue] = ACTIONS(2748), + [anon_sym_goto] = ACTIONS(2748), + [anon_sym_DASH_DASH] = ACTIONS(2750), + [anon_sym_PLUS_PLUS] = ACTIONS(2750), + [anon_sym_sizeof] = ACTIONS(2748), + [anon_sym___alignof__] = ACTIONS(2748), + [anon_sym___alignof] = ACTIONS(2748), + [anon_sym__alignof] = ACTIONS(2748), + [anon_sym_alignof] = ACTIONS(2748), + [anon_sym__Alignof] = ACTIONS(2748), + [anon_sym_offsetof] = ACTIONS(2748), + [anon_sym__Generic] = ACTIONS(2748), + [anon_sym_asm] = ACTIONS(2748), + [anon_sym___asm__] = ACTIONS(2748), + [anon_sym___asm] = ACTIONS(2748), + [sym_number_literal] = ACTIONS(2750), + [anon_sym_L_SQUOTE] = ACTIONS(2750), + [anon_sym_u_SQUOTE] = ACTIONS(2750), + [anon_sym_U_SQUOTE] = ACTIONS(2750), + [anon_sym_u8_SQUOTE] = ACTIONS(2750), + [anon_sym_SQUOTE] = ACTIONS(2750), + [anon_sym_AT] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2750), + [anon_sym_L_DQUOTE] = ACTIONS(2750), + [anon_sym_u_DQUOTE] = ACTIONS(2750), + [anon_sym_U_DQUOTE] = ACTIONS(2750), + [anon_sym_u8_DQUOTE] = ACTIONS(2750), + [sym_true] = ACTIONS(2748), + [sym_false] = ACTIONS(2748), + [anon_sym_NULL] = ACTIONS(2748), + [anon_sym_nullptr] = ACTIONS(2748), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2748), + [anon_sym___typeof] = ACTIONS(2748), + [anon_sym_typeof] = ACTIONS(2748), + [anon_sym_ATimport] = ACTIONS(2750), + [aux_sym_preproc_undef_token1] = ACTIONS(2748), + [anon_sym_POUND] = ACTIONS(2748), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2748), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2748), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2748), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2748), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2748), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2748), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2748), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2748), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2748), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2748), + [anon_sym_NS_AVAILABLE] = ACTIONS(2748), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2748), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2748), + [anon_sym_API_AVAILABLE] = ACTIONS(2748), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2748), + [anon_sym_API_DEPRECATED] = ACTIONS(2748), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2748), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2748), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2748), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2748), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2748), + [anon_sym___deprecated_msg] = ACTIONS(2748), + [anon_sym___deprecated_enum_msg] = ACTIONS(2748), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2748), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2748), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2748), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2748), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2748), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2748), + [anon_sym_ATprotocol] = ACTIONS(2750), + [anon_sym_ATinterface] = ACTIONS(2750), + [anon_sym_ATimplementation] = ACTIONS(2750), + [anon_sym_ATcompatibility_alias] = ACTIONS(2750), + [anon_sym_ATsynthesize] = ACTIONS(2750), + [anon_sym_ATdynamic] = ACTIONS(2750), + [anon_sym_ATtry] = ACTIONS(2750), + [anon_sym___try] = ACTIONS(2748), + [anon_sym_ATthrow] = ACTIONS(2750), + [anon_sym_ATselector] = ACTIONS(2750), + [anon_sym_ATavailable] = ACTIONS(2750), + [anon_sym___builtin_available] = ACTIONS(2748), + [anon_sym_va_arg] = ACTIONS(2748), + [anon_sym_ATencode] = ACTIONS(2750), + [anon_sym_ATsynchronized] = ACTIONS(2750), + [anon_sym_BOOL] = ACTIONS(2748), + [anon_sym_IMP] = ACTIONS(2748), + [anon_sym_SEL] = ACTIONS(2748), + [anon_sym_Class] = ACTIONS(2748), + [anon_sym_id] = ACTIONS(2748), + }, + [325] = { + [sym_identifier] = ACTIONS(2752), + [aux_sym_preproc_include_token1] = ACTIONS(2752), + [aux_sym_preproc_include_token2] = ACTIONS(2752), + [aux_sym_preproc_def_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token2] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2752), + [aux_sym_preproc_else_token1] = ACTIONS(2752), + [aux_sym_preproc_elif_token1] = ACTIONS(2752), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2752), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2752), + [sym_preproc_directive] = ACTIONS(2752), + [anon_sym_LPAREN2] = ACTIONS(2754), + [anon_sym_BANG] = ACTIONS(2754), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_STAR] = ACTIONS(2754), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2754), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym___extension__] = ACTIONS(2752), + [anon_sym_typedef] = ACTIONS(2752), + [anon_sym_extern] = ACTIONS(2752), + [anon_sym___attribute__] = ACTIONS(2752), + [anon_sym___attribute] = ACTIONS(2752), + [anon_sym_noreturn] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym___declspec] = ACTIONS(2752), + [anon_sym___cdecl] = ACTIONS(2752), + [anon_sym___clrcall] = ACTIONS(2752), + [anon_sym___stdcall] = ACTIONS(2752), + [anon_sym___fastcall] = ACTIONS(2752), + [anon_sym___thiscall] = ACTIONS(2752), + [anon_sym___vectorcall] = ACTIONS(2752), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_signed] = ACTIONS(2752), + [anon_sym_unsigned] = ACTIONS(2752), + [anon_sym_long] = ACTIONS(2752), + [anon_sym_short] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_ATautoreleasepool] = ACTIONS(2754), + [anon_sym_auto] = ACTIONS(2752), + [anon_sym_register] = ACTIONS(2752), + [anon_sym_inline] = ACTIONS(2752), + [anon_sym___inline] = ACTIONS(2752), + [anon_sym___inline__] = ACTIONS(2752), + [anon_sym___forceinline] = ACTIONS(2752), + [anon_sym_thread_local] = ACTIONS(2752), + [anon_sym___thread] = ACTIONS(2752), + [anon_sym_CG_EXTERN] = ACTIONS(2752), + [anon_sym_CG_INLINE] = ACTIONS(2752), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2752), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2752), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2752), + [anon_sym_IBOutlet] = ACTIONS(2752), + [anon_sym_IBInspectable] = ACTIONS(2752), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2752), + [anon_sym_NS_INLINE] = ACTIONS(2752), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2752), + [anon_sym_OBJC_EXPORT] = ACTIONS(2752), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2752), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2752), + [anon_sym_const] = ACTIONS(2752), + [anon_sym_constexpr] = ACTIONS(2752), + [anon_sym_volatile] = ACTIONS(2752), + [anon_sym_restrict] = ACTIONS(2752), + [anon_sym___restrict__] = ACTIONS(2752), + [anon_sym__Atomic] = ACTIONS(2752), + [anon_sym__Noreturn] = ACTIONS(2752), + [anon_sym__Nonnull] = ACTIONS(2752), + [anon_sym_nullable] = ACTIONS(2752), + [anon_sym__Complex] = ACTIONS(2752), + [anon_sym__Nullable] = ACTIONS(2752), + [anon_sym__Nullable_result] = ACTIONS(2752), + [anon_sym__Null_unspecified] = ACTIONS(2752), + [anon_sym___autoreleasing] = ACTIONS(2752), + [anon_sym___block] = ACTIONS(2752), + [anon_sym___bridge] = ACTIONS(2752), + [anon_sym___bridge_retained] = ACTIONS(2752), + [anon_sym___bridge_transfer] = ACTIONS(2752), + [anon_sym___complex] = ACTIONS(2752), + [anon_sym___const] = ACTIONS(2752), + [anon_sym___imag] = ACTIONS(2752), + [anon_sym___kindof] = ACTIONS(2752), + [anon_sym___nonnull] = ACTIONS(2752), + [anon_sym___nullable] = ACTIONS(2752), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2752), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2752), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2752), + [anon_sym___real] = ACTIONS(2752), + [anon_sym___strong] = ACTIONS(2752), + [anon_sym___unsafe_unretained] = ACTIONS(2752), + [anon_sym___unused] = ACTIONS(2752), + [anon_sym___weak] = ACTIONS(2752), + [anon_sym_alignas] = ACTIONS(2752), + [anon_sym__Alignas] = ACTIONS(2752), + [sym_primitive_type] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2752), + [anon_sym_union] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2752), + [anon_sym_case] = ACTIONS(2752), + [anon_sym_default] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_in] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_break] = ACTIONS(2752), + [anon_sym_continue] = ACTIONS(2752), + [anon_sym_goto] = ACTIONS(2752), + [anon_sym_DASH_DASH] = ACTIONS(2754), + [anon_sym_PLUS_PLUS] = ACTIONS(2754), + [anon_sym_sizeof] = ACTIONS(2752), + [anon_sym___alignof__] = ACTIONS(2752), + [anon_sym___alignof] = ACTIONS(2752), + [anon_sym__alignof] = ACTIONS(2752), + [anon_sym_alignof] = ACTIONS(2752), + [anon_sym__Alignof] = ACTIONS(2752), + [anon_sym_offsetof] = ACTIONS(2752), + [anon_sym__Generic] = ACTIONS(2752), + [anon_sym_asm] = ACTIONS(2752), + [anon_sym___asm__] = ACTIONS(2752), + [anon_sym___asm] = ACTIONS(2752), + [sym_number_literal] = ACTIONS(2754), + [anon_sym_L_SQUOTE] = ACTIONS(2754), + [anon_sym_u_SQUOTE] = ACTIONS(2754), + [anon_sym_U_SQUOTE] = ACTIONS(2754), + [anon_sym_u8_SQUOTE] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2754), + [anon_sym_AT] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2754), + [anon_sym_L_DQUOTE] = ACTIONS(2754), + [anon_sym_u_DQUOTE] = ACTIONS(2754), + [anon_sym_U_DQUOTE] = ACTIONS(2754), + [anon_sym_u8_DQUOTE] = ACTIONS(2754), + [sym_true] = ACTIONS(2752), + [sym_false] = ACTIONS(2752), + [anon_sym_NULL] = ACTIONS(2752), + [anon_sym_nullptr] = ACTIONS(2752), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2752), + [anon_sym___typeof] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(2752), + [anon_sym_ATimport] = ACTIONS(2754), + [aux_sym_preproc_undef_token1] = ACTIONS(2752), + [anon_sym_POUND] = ACTIONS(2752), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2752), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2752), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2752), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2752), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2752), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2752), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2752), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2752), + [anon_sym_NS_AVAILABLE] = ACTIONS(2752), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2752), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_API_AVAILABLE] = ACTIONS(2752), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_API_DEPRECATED] = ACTIONS(2752), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2752), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2752), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2752), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2752), + [anon_sym___deprecated_msg] = ACTIONS(2752), + [anon_sym___deprecated_enum_msg] = ACTIONS(2752), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2752), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2752), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2752), + [anon_sym_ATprotocol] = ACTIONS(2754), + [anon_sym_ATinterface] = ACTIONS(2754), + [anon_sym_ATimplementation] = ACTIONS(2754), + [anon_sym_ATcompatibility_alias] = ACTIONS(2754), + [anon_sym_ATsynthesize] = ACTIONS(2754), + [anon_sym_ATdynamic] = ACTIONS(2754), + [anon_sym_ATtry] = ACTIONS(2754), + [anon_sym___try] = ACTIONS(2752), + [anon_sym_ATthrow] = ACTIONS(2754), + [anon_sym_ATselector] = ACTIONS(2754), + [anon_sym_ATavailable] = ACTIONS(2754), + [anon_sym___builtin_available] = ACTIONS(2752), + [anon_sym_va_arg] = ACTIONS(2752), + [anon_sym_ATencode] = ACTIONS(2754), + [anon_sym_ATsynchronized] = ACTIONS(2754), + [anon_sym_BOOL] = ACTIONS(2752), + [anon_sym_IMP] = ACTIONS(2752), + [anon_sym_SEL] = ACTIONS(2752), + [anon_sym_Class] = ACTIONS(2752), + [anon_sym_id] = ACTIONS(2752), + }, + [326] = { + [sym_identifier] = ACTIONS(2756), + [aux_sym_preproc_include_token1] = ACTIONS(2756), + [aux_sym_preproc_include_token2] = ACTIONS(2756), + [aux_sym_preproc_def_token1] = ACTIONS(2756), + [aux_sym_preproc_if_token1] = ACTIONS(2756), + [aux_sym_preproc_if_token2] = ACTIONS(2756), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2756), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2756), + [aux_sym_preproc_else_token1] = ACTIONS(2756), + [aux_sym_preproc_elif_token1] = ACTIONS(2756), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2756), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2756), + [sym_preproc_directive] = ACTIONS(2756), + [anon_sym_LPAREN2] = ACTIONS(2758), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_TILDE] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_STAR] = ACTIONS(2758), + [anon_sym_CARET] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym___extension__] = ACTIONS(2756), + [anon_sym_typedef] = ACTIONS(2756), + [anon_sym_extern] = ACTIONS(2756), + [anon_sym___attribute__] = ACTIONS(2756), + [anon_sym___attribute] = ACTIONS(2756), + [anon_sym_noreturn] = ACTIONS(2756), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym___declspec] = ACTIONS(2756), + [anon_sym___cdecl] = ACTIONS(2756), + [anon_sym___clrcall] = ACTIONS(2756), + [anon_sym___stdcall] = ACTIONS(2756), + [anon_sym___fastcall] = ACTIONS(2756), + [anon_sym___thiscall] = ACTIONS(2756), + [anon_sym___vectorcall] = ACTIONS(2756), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_signed] = ACTIONS(2756), + [anon_sym_unsigned] = ACTIONS(2756), + [anon_sym_long] = ACTIONS(2756), + [anon_sym_short] = ACTIONS(2756), + [anon_sym_static] = ACTIONS(2756), + [anon_sym_ATautoreleasepool] = ACTIONS(2758), + [anon_sym_auto] = ACTIONS(2756), + [anon_sym_register] = ACTIONS(2756), + [anon_sym_inline] = ACTIONS(2756), + [anon_sym___inline] = ACTIONS(2756), + [anon_sym___inline__] = ACTIONS(2756), + [anon_sym___forceinline] = ACTIONS(2756), + [anon_sym_thread_local] = ACTIONS(2756), + [anon_sym___thread] = ACTIONS(2756), + [anon_sym_CG_EXTERN] = ACTIONS(2756), + [anon_sym_CG_INLINE] = ACTIONS(2756), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2756), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2756), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2756), + [anon_sym_IBOutlet] = ACTIONS(2756), + [anon_sym_IBInspectable] = ACTIONS(2756), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2756), + [anon_sym_NS_INLINE] = ACTIONS(2756), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2756), + [anon_sym_OBJC_EXPORT] = ACTIONS(2756), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2756), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2756), + [anon_sym_const] = ACTIONS(2756), + [anon_sym_constexpr] = ACTIONS(2756), + [anon_sym_volatile] = ACTIONS(2756), + [anon_sym_restrict] = ACTIONS(2756), + [anon_sym___restrict__] = ACTIONS(2756), + [anon_sym__Atomic] = ACTIONS(2756), + [anon_sym__Noreturn] = ACTIONS(2756), + [anon_sym__Nonnull] = ACTIONS(2756), + [anon_sym_nullable] = ACTIONS(2756), + [anon_sym__Complex] = ACTIONS(2756), + [anon_sym__Nullable] = ACTIONS(2756), + [anon_sym__Nullable_result] = ACTIONS(2756), + [anon_sym__Null_unspecified] = ACTIONS(2756), + [anon_sym___autoreleasing] = ACTIONS(2756), + [anon_sym___block] = ACTIONS(2756), + [anon_sym___bridge] = ACTIONS(2756), + [anon_sym___bridge_retained] = ACTIONS(2756), + [anon_sym___bridge_transfer] = ACTIONS(2756), + [anon_sym___complex] = ACTIONS(2756), + [anon_sym___const] = ACTIONS(2756), + [anon_sym___imag] = ACTIONS(2756), + [anon_sym___kindof] = ACTIONS(2756), + [anon_sym___nonnull] = ACTIONS(2756), + [anon_sym___nullable] = ACTIONS(2756), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2756), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2756), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2756), + [anon_sym___real] = ACTIONS(2756), + [anon_sym___strong] = ACTIONS(2756), + [anon_sym___unsafe_unretained] = ACTIONS(2756), + [anon_sym___unused] = ACTIONS(2756), + [anon_sym___weak] = ACTIONS(2756), + [anon_sym_alignas] = ACTIONS(2756), + [anon_sym__Alignas] = ACTIONS(2756), + [sym_primitive_type] = ACTIONS(2756), + [anon_sym_enum] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(2756), + [anon_sym_union] = ACTIONS(2756), + [anon_sym_if] = ACTIONS(2756), + [anon_sym_switch] = ACTIONS(2756), + [anon_sym_case] = ACTIONS(2756), + [anon_sym_default] = ACTIONS(2756), + [anon_sym_while] = ACTIONS(2756), + [anon_sym_do] = ACTIONS(2756), + [anon_sym_for] = ACTIONS(2756), + [anon_sym_in] = ACTIONS(2756), + [anon_sym_return] = ACTIONS(2756), + [anon_sym_break] = ACTIONS(2756), + [anon_sym_continue] = ACTIONS(2756), + [anon_sym_goto] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_sizeof] = ACTIONS(2756), + [anon_sym___alignof__] = ACTIONS(2756), + [anon_sym___alignof] = ACTIONS(2756), + [anon_sym__alignof] = ACTIONS(2756), + [anon_sym_alignof] = ACTIONS(2756), + [anon_sym__Alignof] = ACTIONS(2756), + [anon_sym_offsetof] = ACTIONS(2756), + [anon_sym__Generic] = ACTIONS(2756), + [anon_sym_asm] = ACTIONS(2756), + [anon_sym___asm__] = ACTIONS(2756), + [anon_sym___asm] = ACTIONS(2756), + [sym_number_literal] = ACTIONS(2758), + [anon_sym_L_SQUOTE] = ACTIONS(2758), + [anon_sym_u_SQUOTE] = ACTIONS(2758), + [anon_sym_U_SQUOTE] = ACTIONS(2758), + [anon_sym_u8_SQUOTE] = ACTIONS(2758), + [anon_sym_SQUOTE] = ACTIONS(2758), + [anon_sym_AT] = ACTIONS(2756), + [anon_sym_DQUOTE] = ACTIONS(2758), + [anon_sym_L_DQUOTE] = ACTIONS(2758), + [anon_sym_u_DQUOTE] = ACTIONS(2758), + [anon_sym_U_DQUOTE] = ACTIONS(2758), + [anon_sym_u8_DQUOTE] = ACTIONS(2758), + [sym_true] = ACTIONS(2756), + [sym_false] = ACTIONS(2756), + [anon_sym_NULL] = ACTIONS(2756), + [anon_sym_nullptr] = ACTIONS(2756), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2756), + [anon_sym___typeof] = ACTIONS(2756), + [anon_sym_typeof] = ACTIONS(2756), + [anon_sym_ATimport] = ACTIONS(2758), + [aux_sym_preproc_undef_token1] = ACTIONS(2756), + [anon_sym_POUND] = ACTIONS(2756), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2756), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2756), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2756), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2756), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2756), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2756), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2756), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2756), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2756), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2756), + [anon_sym_NS_AVAILABLE] = ACTIONS(2756), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2756), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2756), + [anon_sym_API_AVAILABLE] = ACTIONS(2756), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2756), + [anon_sym_API_DEPRECATED] = ACTIONS(2756), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2756), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2756), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2756), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2756), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2756), + [anon_sym___deprecated_msg] = ACTIONS(2756), + [anon_sym___deprecated_enum_msg] = ACTIONS(2756), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2756), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2756), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2756), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2756), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2756), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2756), + [anon_sym_ATprotocol] = ACTIONS(2758), + [anon_sym_ATinterface] = ACTIONS(2758), + [anon_sym_ATimplementation] = ACTIONS(2758), + [anon_sym_ATcompatibility_alias] = ACTIONS(2758), + [anon_sym_ATsynthesize] = ACTIONS(2758), + [anon_sym_ATdynamic] = ACTIONS(2758), + [anon_sym_ATtry] = ACTIONS(2758), + [anon_sym___try] = ACTIONS(2756), + [anon_sym_ATthrow] = ACTIONS(2758), + [anon_sym_ATselector] = ACTIONS(2758), + [anon_sym_ATavailable] = ACTIONS(2758), + [anon_sym___builtin_available] = ACTIONS(2756), + [anon_sym_va_arg] = ACTIONS(2756), + [anon_sym_ATencode] = ACTIONS(2758), + [anon_sym_ATsynchronized] = ACTIONS(2758), + [anon_sym_BOOL] = ACTIONS(2756), + [anon_sym_IMP] = ACTIONS(2756), + [anon_sym_SEL] = ACTIONS(2756), + [anon_sym_Class] = ACTIONS(2756), + [anon_sym_id] = ACTIONS(2756), + }, + [327] = { + [sym_identifier] = ACTIONS(2760), + [aux_sym_preproc_include_token1] = ACTIONS(2760), + [aux_sym_preproc_include_token2] = ACTIONS(2760), + [aux_sym_preproc_def_token1] = ACTIONS(2760), + [aux_sym_preproc_if_token1] = ACTIONS(2760), + [aux_sym_preproc_if_token2] = ACTIONS(2760), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2760), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2760), + [aux_sym_preproc_else_token1] = ACTIONS(2760), + [aux_sym_preproc_elif_token1] = ACTIONS(2760), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2760), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2760), + [sym_preproc_directive] = ACTIONS(2760), + [anon_sym_LPAREN2] = ACTIONS(2762), + [anon_sym_BANG] = ACTIONS(2762), + [anon_sym_TILDE] = ACTIONS(2762), + [anon_sym_DASH] = ACTIONS(2760), + [anon_sym_PLUS] = ACTIONS(2760), + [anon_sym_STAR] = ACTIONS(2762), + [anon_sym_CARET] = ACTIONS(2762), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym___extension__] = ACTIONS(2760), + [anon_sym_typedef] = ACTIONS(2760), + [anon_sym_extern] = ACTIONS(2760), + [anon_sym___attribute__] = ACTIONS(2760), + [anon_sym___attribute] = ACTIONS(2760), + [anon_sym_noreturn] = ACTIONS(2760), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym___declspec] = ACTIONS(2760), + [anon_sym___cdecl] = ACTIONS(2760), + [anon_sym___clrcall] = ACTIONS(2760), + [anon_sym___stdcall] = ACTIONS(2760), + [anon_sym___fastcall] = ACTIONS(2760), + [anon_sym___thiscall] = ACTIONS(2760), + [anon_sym___vectorcall] = ACTIONS(2760), + [anon_sym_LBRACE] = ACTIONS(2762), + [anon_sym_signed] = ACTIONS(2760), + [anon_sym_unsigned] = ACTIONS(2760), + [anon_sym_long] = ACTIONS(2760), + [anon_sym_short] = ACTIONS(2760), + [anon_sym_static] = ACTIONS(2760), + [anon_sym_ATautoreleasepool] = ACTIONS(2762), + [anon_sym_auto] = ACTIONS(2760), + [anon_sym_register] = ACTIONS(2760), + [anon_sym_inline] = ACTIONS(2760), + [anon_sym___inline] = ACTIONS(2760), + [anon_sym___inline__] = ACTIONS(2760), + [anon_sym___forceinline] = ACTIONS(2760), + [anon_sym_thread_local] = ACTIONS(2760), + [anon_sym___thread] = ACTIONS(2760), + [anon_sym_CG_EXTERN] = ACTIONS(2760), + [anon_sym_CG_INLINE] = ACTIONS(2760), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2760), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2760), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2760), + [anon_sym_IBOutlet] = ACTIONS(2760), + [anon_sym_IBInspectable] = ACTIONS(2760), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2760), + [anon_sym_NS_INLINE] = ACTIONS(2760), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2760), + [anon_sym_OBJC_EXPORT] = ACTIONS(2760), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2760), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2760), + [anon_sym_const] = ACTIONS(2760), + [anon_sym_constexpr] = ACTIONS(2760), + [anon_sym_volatile] = ACTIONS(2760), + [anon_sym_restrict] = ACTIONS(2760), + [anon_sym___restrict__] = ACTIONS(2760), + [anon_sym__Atomic] = ACTIONS(2760), + [anon_sym__Noreturn] = ACTIONS(2760), + [anon_sym__Nonnull] = ACTIONS(2760), + [anon_sym_nullable] = ACTIONS(2760), + [anon_sym__Complex] = ACTIONS(2760), + [anon_sym__Nullable] = ACTIONS(2760), + [anon_sym__Nullable_result] = ACTIONS(2760), + [anon_sym__Null_unspecified] = ACTIONS(2760), + [anon_sym___autoreleasing] = ACTIONS(2760), + [anon_sym___block] = ACTIONS(2760), + [anon_sym___bridge] = ACTIONS(2760), + [anon_sym___bridge_retained] = ACTIONS(2760), + [anon_sym___bridge_transfer] = ACTIONS(2760), + [anon_sym___complex] = ACTIONS(2760), + [anon_sym___const] = ACTIONS(2760), + [anon_sym___imag] = ACTIONS(2760), + [anon_sym___kindof] = ACTIONS(2760), + [anon_sym___nonnull] = ACTIONS(2760), + [anon_sym___nullable] = ACTIONS(2760), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2760), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2760), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2760), + [anon_sym___real] = ACTIONS(2760), + [anon_sym___strong] = ACTIONS(2760), + [anon_sym___unsafe_unretained] = ACTIONS(2760), + [anon_sym___unused] = ACTIONS(2760), + [anon_sym___weak] = ACTIONS(2760), + [anon_sym_alignas] = ACTIONS(2760), + [anon_sym__Alignas] = ACTIONS(2760), + [sym_primitive_type] = ACTIONS(2760), + [anon_sym_enum] = ACTIONS(2760), + [anon_sym_struct] = ACTIONS(2760), + [anon_sym_union] = ACTIONS(2760), + [anon_sym_if] = ACTIONS(2760), + [anon_sym_switch] = ACTIONS(2760), + [anon_sym_case] = ACTIONS(2760), + [anon_sym_default] = ACTIONS(2760), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_do] = ACTIONS(2760), + [anon_sym_for] = ACTIONS(2760), + [anon_sym_in] = ACTIONS(2760), + [anon_sym_return] = ACTIONS(2760), + [anon_sym_break] = ACTIONS(2760), + [anon_sym_continue] = ACTIONS(2760), + [anon_sym_goto] = ACTIONS(2760), + [anon_sym_DASH_DASH] = ACTIONS(2762), + [anon_sym_PLUS_PLUS] = ACTIONS(2762), + [anon_sym_sizeof] = ACTIONS(2760), + [anon_sym___alignof__] = ACTIONS(2760), + [anon_sym___alignof] = ACTIONS(2760), + [anon_sym__alignof] = ACTIONS(2760), + [anon_sym_alignof] = ACTIONS(2760), + [anon_sym__Alignof] = ACTIONS(2760), + [anon_sym_offsetof] = ACTIONS(2760), + [anon_sym__Generic] = ACTIONS(2760), + [anon_sym_asm] = ACTIONS(2760), + [anon_sym___asm__] = ACTIONS(2760), + [anon_sym___asm] = ACTIONS(2760), + [sym_number_literal] = ACTIONS(2762), + [anon_sym_L_SQUOTE] = ACTIONS(2762), + [anon_sym_u_SQUOTE] = ACTIONS(2762), + [anon_sym_U_SQUOTE] = ACTIONS(2762), + [anon_sym_u8_SQUOTE] = ACTIONS(2762), + [anon_sym_SQUOTE] = ACTIONS(2762), + [anon_sym_AT] = ACTIONS(2760), + [anon_sym_DQUOTE] = ACTIONS(2762), + [anon_sym_L_DQUOTE] = ACTIONS(2762), + [anon_sym_u_DQUOTE] = ACTIONS(2762), + [anon_sym_U_DQUOTE] = ACTIONS(2762), + [anon_sym_u8_DQUOTE] = ACTIONS(2762), + [sym_true] = ACTIONS(2760), + [sym_false] = ACTIONS(2760), + [anon_sym_NULL] = ACTIONS(2760), + [anon_sym_nullptr] = ACTIONS(2760), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2760), + [anon_sym___typeof] = ACTIONS(2760), + [anon_sym_typeof] = ACTIONS(2760), + [anon_sym_ATimport] = ACTIONS(2762), + [aux_sym_preproc_undef_token1] = ACTIONS(2760), + [anon_sym_POUND] = ACTIONS(2760), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2760), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2760), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2760), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2760), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2760), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2760), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2760), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2760), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2760), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2760), + [anon_sym_NS_AVAILABLE] = ACTIONS(2760), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2760), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2760), + [anon_sym_API_AVAILABLE] = ACTIONS(2760), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2760), + [anon_sym_API_DEPRECATED] = ACTIONS(2760), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2760), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2760), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2760), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2760), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2760), + [anon_sym___deprecated_msg] = ACTIONS(2760), + [anon_sym___deprecated_enum_msg] = ACTIONS(2760), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2760), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2760), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2760), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2760), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2760), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2760), + [anon_sym_ATprotocol] = ACTIONS(2762), + [anon_sym_ATinterface] = ACTIONS(2762), + [anon_sym_ATimplementation] = ACTIONS(2762), + [anon_sym_ATcompatibility_alias] = ACTIONS(2762), + [anon_sym_ATsynthesize] = ACTIONS(2762), + [anon_sym_ATdynamic] = ACTIONS(2762), + [anon_sym_ATtry] = ACTIONS(2762), + [anon_sym___try] = ACTIONS(2760), + [anon_sym_ATthrow] = ACTIONS(2762), + [anon_sym_ATselector] = ACTIONS(2762), + [anon_sym_ATavailable] = ACTIONS(2762), + [anon_sym___builtin_available] = ACTIONS(2760), + [anon_sym_va_arg] = ACTIONS(2760), + [anon_sym_ATencode] = ACTIONS(2762), + [anon_sym_ATsynchronized] = ACTIONS(2762), + [anon_sym_BOOL] = ACTIONS(2760), + [anon_sym_IMP] = ACTIONS(2760), + [anon_sym_SEL] = ACTIONS(2760), + [anon_sym_Class] = ACTIONS(2760), + [anon_sym_id] = ACTIONS(2760), + }, + [328] = { + [sym_identifier] = ACTIONS(2764), + [aux_sym_preproc_include_token1] = ACTIONS(2764), + [aux_sym_preproc_include_token2] = ACTIONS(2764), + [aux_sym_preproc_def_token1] = ACTIONS(2764), + [aux_sym_preproc_if_token1] = ACTIONS(2764), + [aux_sym_preproc_if_token2] = ACTIONS(2764), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2764), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2764), + [aux_sym_preproc_else_token1] = ACTIONS(2764), + [aux_sym_preproc_elif_token1] = ACTIONS(2764), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2764), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2764), + [sym_preproc_directive] = ACTIONS(2764), + [anon_sym_LPAREN2] = ACTIONS(2766), + [anon_sym_BANG] = ACTIONS(2766), + [anon_sym_TILDE] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2764), + [anon_sym_PLUS] = ACTIONS(2764), + [anon_sym_STAR] = ACTIONS(2766), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2766), + [anon_sym_SEMI] = ACTIONS(2766), + [anon_sym___extension__] = ACTIONS(2764), + [anon_sym_typedef] = ACTIONS(2764), + [anon_sym_extern] = ACTIONS(2764), + [anon_sym___attribute__] = ACTIONS(2764), + [anon_sym___attribute] = ACTIONS(2764), + [anon_sym_noreturn] = ACTIONS(2764), + [anon_sym_LBRACK] = ACTIONS(2766), + [anon_sym___declspec] = ACTIONS(2764), + [anon_sym___cdecl] = ACTIONS(2764), + [anon_sym___clrcall] = ACTIONS(2764), + [anon_sym___stdcall] = ACTIONS(2764), + [anon_sym___fastcall] = ACTIONS(2764), + [anon_sym___thiscall] = ACTIONS(2764), + [anon_sym___vectorcall] = ACTIONS(2764), + [anon_sym_LBRACE] = ACTIONS(2766), + [anon_sym_signed] = ACTIONS(2764), + [anon_sym_unsigned] = ACTIONS(2764), + [anon_sym_long] = ACTIONS(2764), + [anon_sym_short] = ACTIONS(2764), + [anon_sym_static] = ACTIONS(2764), + [anon_sym_ATautoreleasepool] = ACTIONS(2766), + [anon_sym_auto] = ACTIONS(2764), + [anon_sym_register] = ACTIONS(2764), + [anon_sym_inline] = ACTIONS(2764), + [anon_sym___inline] = ACTIONS(2764), + [anon_sym___inline__] = ACTIONS(2764), + [anon_sym___forceinline] = ACTIONS(2764), + [anon_sym_thread_local] = ACTIONS(2764), + [anon_sym___thread] = ACTIONS(2764), + [anon_sym_CG_EXTERN] = ACTIONS(2764), + [anon_sym_CG_INLINE] = ACTIONS(2764), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2764), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2764), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2764), + [anon_sym_IBOutlet] = ACTIONS(2764), + [anon_sym_IBInspectable] = ACTIONS(2764), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2764), + [anon_sym_NS_INLINE] = ACTIONS(2764), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2764), + [anon_sym_OBJC_EXPORT] = ACTIONS(2764), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2764), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2764), + [anon_sym_const] = ACTIONS(2764), + [anon_sym_constexpr] = ACTIONS(2764), + [anon_sym_volatile] = ACTIONS(2764), + [anon_sym_restrict] = ACTIONS(2764), + [anon_sym___restrict__] = ACTIONS(2764), + [anon_sym__Atomic] = ACTIONS(2764), + [anon_sym__Noreturn] = ACTIONS(2764), + [anon_sym__Nonnull] = ACTIONS(2764), + [anon_sym_nullable] = ACTIONS(2764), + [anon_sym__Complex] = ACTIONS(2764), + [anon_sym__Nullable] = ACTIONS(2764), + [anon_sym__Nullable_result] = ACTIONS(2764), + [anon_sym__Null_unspecified] = ACTIONS(2764), + [anon_sym___autoreleasing] = ACTIONS(2764), + [anon_sym___block] = ACTIONS(2764), + [anon_sym___bridge] = ACTIONS(2764), + [anon_sym___bridge_retained] = ACTIONS(2764), + [anon_sym___bridge_transfer] = ACTIONS(2764), + [anon_sym___complex] = ACTIONS(2764), + [anon_sym___const] = ACTIONS(2764), + [anon_sym___imag] = ACTIONS(2764), + [anon_sym___kindof] = ACTIONS(2764), + [anon_sym___nonnull] = ACTIONS(2764), + [anon_sym___nullable] = ACTIONS(2764), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2764), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2764), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2764), + [anon_sym___real] = ACTIONS(2764), + [anon_sym___strong] = ACTIONS(2764), + [anon_sym___unsafe_unretained] = ACTIONS(2764), + [anon_sym___unused] = ACTIONS(2764), + [anon_sym___weak] = ACTIONS(2764), + [anon_sym_alignas] = ACTIONS(2764), + [anon_sym__Alignas] = ACTIONS(2764), + [sym_primitive_type] = ACTIONS(2764), + [anon_sym_enum] = ACTIONS(2764), + [anon_sym_struct] = ACTIONS(2764), + [anon_sym_union] = ACTIONS(2764), + [anon_sym_if] = ACTIONS(2764), + [anon_sym_switch] = ACTIONS(2764), + [anon_sym_case] = ACTIONS(2764), + [anon_sym_default] = ACTIONS(2764), + [anon_sym_while] = ACTIONS(2764), + [anon_sym_do] = ACTIONS(2764), + [anon_sym_for] = ACTIONS(2764), + [anon_sym_in] = ACTIONS(2764), + [anon_sym_return] = ACTIONS(2764), + [anon_sym_break] = ACTIONS(2764), + [anon_sym_continue] = ACTIONS(2764), + [anon_sym_goto] = ACTIONS(2764), + [anon_sym_DASH_DASH] = ACTIONS(2766), + [anon_sym_PLUS_PLUS] = ACTIONS(2766), + [anon_sym_sizeof] = ACTIONS(2764), + [anon_sym___alignof__] = ACTIONS(2764), + [anon_sym___alignof] = ACTIONS(2764), + [anon_sym__alignof] = ACTIONS(2764), + [anon_sym_alignof] = ACTIONS(2764), + [anon_sym__Alignof] = ACTIONS(2764), + [anon_sym_offsetof] = ACTIONS(2764), + [anon_sym__Generic] = ACTIONS(2764), + [anon_sym_asm] = ACTIONS(2764), + [anon_sym___asm__] = ACTIONS(2764), + [anon_sym___asm] = ACTIONS(2764), + [sym_number_literal] = ACTIONS(2766), + [anon_sym_L_SQUOTE] = ACTIONS(2766), + [anon_sym_u_SQUOTE] = ACTIONS(2766), + [anon_sym_U_SQUOTE] = ACTIONS(2766), + [anon_sym_u8_SQUOTE] = ACTIONS(2766), + [anon_sym_SQUOTE] = ACTIONS(2766), + [anon_sym_AT] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2766), + [anon_sym_L_DQUOTE] = ACTIONS(2766), + [anon_sym_u_DQUOTE] = ACTIONS(2766), + [anon_sym_U_DQUOTE] = ACTIONS(2766), + [anon_sym_u8_DQUOTE] = ACTIONS(2766), + [sym_true] = ACTIONS(2764), + [sym_false] = ACTIONS(2764), + [anon_sym_NULL] = ACTIONS(2764), + [anon_sym_nullptr] = ACTIONS(2764), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2764), + [anon_sym___typeof] = ACTIONS(2764), + [anon_sym_typeof] = ACTIONS(2764), + [anon_sym_ATimport] = ACTIONS(2766), + [aux_sym_preproc_undef_token1] = ACTIONS(2764), + [anon_sym_POUND] = ACTIONS(2764), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2764), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2764), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2764), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2764), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2764), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2764), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2764), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2764), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2764), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2764), + [anon_sym_NS_AVAILABLE] = ACTIONS(2764), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2764), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2764), + [anon_sym_API_AVAILABLE] = ACTIONS(2764), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2764), + [anon_sym_API_DEPRECATED] = ACTIONS(2764), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2764), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2764), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2764), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2764), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2764), + [anon_sym___deprecated_msg] = ACTIONS(2764), + [anon_sym___deprecated_enum_msg] = ACTIONS(2764), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2764), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2764), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2764), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2764), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2764), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2764), + [anon_sym_ATprotocol] = ACTIONS(2766), + [anon_sym_ATinterface] = ACTIONS(2766), + [anon_sym_ATimplementation] = ACTIONS(2766), + [anon_sym_ATcompatibility_alias] = ACTIONS(2766), + [anon_sym_ATsynthesize] = ACTIONS(2766), + [anon_sym_ATdynamic] = ACTIONS(2766), + [anon_sym_ATtry] = ACTIONS(2766), + [anon_sym___try] = ACTIONS(2764), + [anon_sym_ATthrow] = ACTIONS(2766), + [anon_sym_ATselector] = ACTIONS(2766), + [anon_sym_ATavailable] = ACTIONS(2766), + [anon_sym___builtin_available] = ACTIONS(2764), + [anon_sym_va_arg] = ACTIONS(2764), + [anon_sym_ATencode] = ACTIONS(2766), + [anon_sym_ATsynchronized] = ACTIONS(2766), + [anon_sym_BOOL] = ACTIONS(2764), + [anon_sym_IMP] = ACTIONS(2764), + [anon_sym_SEL] = ACTIONS(2764), + [anon_sym_Class] = ACTIONS(2764), + [anon_sym_id] = ACTIONS(2764), + }, + [329] = { + [sym_identifier] = ACTIONS(2768), + [aux_sym_preproc_include_token1] = ACTIONS(2768), + [aux_sym_preproc_include_token2] = ACTIONS(2768), + [aux_sym_preproc_def_token1] = ACTIONS(2768), + [aux_sym_preproc_if_token1] = ACTIONS(2768), + [aux_sym_preproc_if_token2] = ACTIONS(2768), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2768), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2768), + [aux_sym_preproc_else_token1] = ACTIONS(2768), + [aux_sym_preproc_elif_token1] = ACTIONS(2768), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2768), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2768), + [sym_preproc_directive] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_TILDE] = ACTIONS(2770), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(2770), + [anon_sym_CARET] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2770), + [anon_sym_SEMI] = ACTIONS(2770), + [anon_sym___extension__] = ACTIONS(2768), + [anon_sym_typedef] = ACTIONS(2768), + [anon_sym_extern] = ACTIONS(2768), + [anon_sym___attribute__] = ACTIONS(2768), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2770), + [anon_sym___declspec] = ACTIONS(2768), + [anon_sym___cdecl] = ACTIONS(2768), + [anon_sym___clrcall] = ACTIONS(2768), + [anon_sym___stdcall] = ACTIONS(2768), + [anon_sym___fastcall] = ACTIONS(2768), + [anon_sym___thiscall] = ACTIONS(2768), + [anon_sym___vectorcall] = ACTIONS(2768), + [anon_sym_LBRACE] = ACTIONS(2770), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_ATautoreleasepool] = ACTIONS(2770), + [anon_sym_auto] = ACTIONS(2768), + [anon_sym_register] = ACTIONS(2768), + [anon_sym_inline] = ACTIONS(2768), + [anon_sym___inline] = ACTIONS(2768), + [anon_sym___inline__] = ACTIONS(2768), + [anon_sym___forceinline] = ACTIONS(2768), + [anon_sym_thread_local] = ACTIONS(2768), + [anon_sym___thread] = ACTIONS(2768), + [anon_sym_CG_EXTERN] = ACTIONS(2768), + [anon_sym_CG_INLINE] = ACTIONS(2768), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2768), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2768), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2768), + [anon_sym_IBOutlet] = ACTIONS(2768), + [anon_sym_IBInspectable] = ACTIONS(2768), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2768), + [anon_sym_NS_INLINE] = ACTIONS(2768), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2768), + [anon_sym_OBJC_EXPORT] = ACTIONS(2768), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2768), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_nullable] = ACTIONS(2768), + [anon_sym__Complex] = ACTIONS(2768), + [anon_sym__Nullable] = ACTIONS(2768), + [anon_sym__Nullable_result] = ACTIONS(2768), + [anon_sym__Null_unspecified] = ACTIONS(2768), + [anon_sym___autoreleasing] = ACTIONS(2768), + [anon_sym___block] = ACTIONS(2768), + [anon_sym___bridge] = ACTIONS(2768), + [anon_sym___bridge_retained] = ACTIONS(2768), + [anon_sym___bridge_transfer] = ACTIONS(2768), + [anon_sym___complex] = ACTIONS(2768), + [anon_sym___const] = ACTIONS(2768), + [anon_sym___imag] = ACTIONS(2768), + [anon_sym___kindof] = ACTIONS(2768), + [anon_sym___nonnull] = ACTIONS(2768), + [anon_sym___nullable] = ACTIONS(2768), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2768), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2768), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2768), + [anon_sym___real] = ACTIONS(2768), + [anon_sym___strong] = ACTIONS(2768), + [anon_sym___unsafe_unretained] = ACTIONS(2768), + [anon_sym___unused] = ACTIONS(2768), + [anon_sym___weak] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2768), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_switch] = ACTIONS(2768), + [anon_sym_case] = ACTIONS(2768), + [anon_sym_default] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_in] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_break] = ACTIONS(2768), + [anon_sym_continue] = ACTIONS(2768), + [anon_sym_goto] = ACTIONS(2768), + [anon_sym_DASH_DASH] = ACTIONS(2770), + [anon_sym_PLUS_PLUS] = ACTIONS(2770), + [anon_sym_sizeof] = ACTIONS(2768), + [anon_sym___alignof__] = ACTIONS(2768), + [anon_sym___alignof] = ACTIONS(2768), + [anon_sym__alignof] = ACTIONS(2768), + [anon_sym_alignof] = ACTIONS(2768), + [anon_sym__Alignof] = ACTIONS(2768), + [anon_sym_offsetof] = ACTIONS(2768), + [anon_sym__Generic] = ACTIONS(2768), + [anon_sym_asm] = ACTIONS(2768), + [anon_sym___asm__] = ACTIONS(2768), + [anon_sym___asm] = ACTIONS(2768), + [sym_number_literal] = ACTIONS(2770), + [anon_sym_L_SQUOTE] = ACTIONS(2770), + [anon_sym_u_SQUOTE] = ACTIONS(2770), + [anon_sym_U_SQUOTE] = ACTIONS(2770), + [anon_sym_u8_SQUOTE] = ACTIONS(2770), + [anon_sym_SQUOTE] = ACTIONS(2770), + [anon_sym_AT] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2770), + [anon_sym_L_DQUOTE] = ACTIONS(2770), + [anon_sym_u_DQUOTE] = ACTIONS(2770), + [anon_sym_U_DQUOTE] = ACTIONS(2770), + [anon_sym_u8_DQUOTE] = ACTIONS(2770), + [sym_true] = ACTIONS(2768), + [sym_false] = ACTIONS(2768), + [anon_sym_NULL] = ACTIONS(2768), + [anon_sym_nullptr] = ACTIONS(2768), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2768), + [anon_sym___typeof] = ACTIONS(2768), + [anon_sym_typeof] = ACTIONS(2768), + [anon_sym_ATimport] = ACTIONS(2770), + [aux_sym_preproc_undef_token1] = ACTIONS(2768), + [anon_sym_POUND] = ACTIONS(2768), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2768), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2768), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2768), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2768), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2768), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2768), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2768), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2768), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2768), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2768), + [anon_sym_NS_AVAILABLE] = ACTIONS(2768), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2768), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2768), + [anon_sym_API_AVAILABLE] = ACTIONS(2768), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2768), + [anon_sym_API_DEPRECATED] = ACTIONS(2768), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2768), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2768), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2768), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2768), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2768), + [anon_sym___deprecated_msg] = ACTIONS(2768), + [anon_sym___deprecated_enum_msg] = ACTIONS(2768), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2768), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2768), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2768), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2768), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2768), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2768), + [anon_sym_ATprotocol] = ACTIONS(2770), + [anon_sym_ATinterface] = ACTIONS(2770), + [anon_sym_ATimplementation] = ACTIONS(2770), + [anon_sym_ATcompatibility_alias] = ACTIONS(2770), + [anon_sym_ATsynthesize] = ACTIONS(2770), + [anon_sym_ATdynamic] = ACTIONS(2770), + [anon_sym_ATtry] = ACTIONS(2770), + [anon_sym___try] = ACTIONS(2768), + [anon_sym_ATthrow] = ACTIONS(2770), + [anon_sym_ATselector] = ACTIONS(2770), + [anon_sym_ATavailable] = ACTIONS(2770), + [anon_sym___builtin_available] = ACTIONS(2768), + [anon_sym_va_arg] = ACTIONS(2768), + [anon_sym_ATencode] = ACTIONS(2770), + [anon_sym_ATsynchronized] = ACTIONS(2770), + [anon_sym_BOOL] = ACTIONS(2768), + [anon_sym_IMP] = ACTIONS(2768), + [anon_sym_SEL] = ACTIONS(2768), + [anon_sym_Class] = ACTIONS(2768), + [anon_sym_id] = ACTIONS(2768), + }, + [330] = { + [sym_identifier] = ACTIONS(2772), + [aux_sym_preproc_include_token1] = ACTIONS(2772), + [aux_sym_preproc_include_token2] = ACTIONS(2772), + [aux_sym_preproc_def_token1] = ACTIONS(2772), + [aux_sym_preproc_if_token1] = ACTIONS(2772), + [aux_sym_preproc_if_token2] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2772), + [aux_sym_preproc_else_token1] = ACTIONS(2772), + [aux_sym_preproc_elif_token1] = ACTIONS(2772), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2772), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2772), + [sym_preproc_directive] = ACTIONS(2772), + [anon_sym_LPAREN2] = ACTIONS(2774), + [anon_sym_BANG] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_CARET] = ACTIONS(2774), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym___extension__] = ACTIONS(2772), + [anon_sym_typedef] = ACTIONS(2772), + [anon_sym_extern] = ACTIONS(2772), + [anon_sym___attribute__] = ACTIONS(2772), + [anon_sym___attribute] = ACTIONS(2772), + [anon_sym_noreturn] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym___declspec] = ACTIONS(2772), + [anon_sym___cdecl] = ACTIONS(2772), + [anon_sym___clrcall] = ACTIONS(2772), + [anon_sym___stdcall] = ACTIONS(2772), + [anon_sym___fastcall] = ACTIONS(2772), + [anon_sym___thiscall] = ACTIONS(2772), + [anon_sym___vectorcall] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_signed] = ACTIONS(2772), + [anon_sym_unsigned] = ACTIONS(2772), + [anon_sym_long] = ACTIONS(2772), + [anon_sym_short] = ACTIONS(2772), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_ATautoreleasepool] = ACTIONS(2774), + [anon_sym_auto] = ACTIONS(2772), + [anon_sym_register] = ACTIONS(2772), + [anon_sym_inline] = ACTIONS(2772), + [anon_sym___inline] = ACTIONS(2772), + [anon_sym___inline__] = ACTIONS(2772), + [anon_sym___forceinline] = ACTIONS(2772), + [anon_sym_thread_local] = ACTIONS(2772), + [anon_sym___thread] = ACTIONS(2772), + [anon_sym_CG_EXTERN] = ACTIONS(2772), + [anon_sym_CG_INLINE] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2772), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2772), + [anon_sym_IBOutlet] = ACTIONS(2772), + [anon_sym_IBInspectable] = ACTIONS(2772), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2772), + [anon_sym_NS_INLINE] = ACTIONS(2772), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2772), + [anon_sym_OBJC_EXPORT] = ACTIONS(2772), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2772), + [anon_sym_const] = ACTIONS(2772), + [anon_sym_constexpr] = ACTIONS(2772), + [anon_sym_volatile] = ACTIONS(2772), + [anon_sym_restrict] = ACTIONS(2772), + [anon_sym___restrict__] = ACTIONS(2772), + [anon_sym__Atomic] = ACTIONS(2772), + [anon_sym__Noreturn] = ACTIONS(2772), + [anon_sym__Nonnull] = ACTIONS(2772), + [anon_sym_nullable] = ACTIONS(2772), + [anon_sym__Complex] = ACTIONS(2772), + [anon_sym__Nullable] = ACTIONS(2772), + [anon_sym__Nullable_result] = ACTIONS(2772), + [anon_sym__Null_unspecified] = ACTIONS(2772), + [anon_sym___autoreleasing] = ACTIONS(2772), + [anon_sym___block] = ACTIONS(2772), + [anon_sym___bridge] = ACTIONS(2772), + [anon_sym___bridge_retained] = ACTIONS(2772), + [anon_sym___bridge_transfer] = ACTIONS(2772), + [anon_sym___complex] = ACTIONS(2772), + [anon_sym___const] = ACTIONS(2772), + [anon_sym___imag] = ACTIONS(2772), + [anon_sym___kindof] = ACTIONS(2772), + [anon_sym___nonnull] = ACTIONS(2772), + [anon_sym___nullable] = ACTIONS(2772), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2772), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2772), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2772), + [anon_sym___real] = ACTIONS(2772), + [anon_sym___strong] = ACTIONS(2772), + [anon_sym___unsafe_unretained] = ACTIONS(2772), + [anon_sym___unused] = ACTIONS(2772), + [anon_sym___weak] = ACTIONS(2772), + [anon_sym_alignas] = ACTIONS(2772), + [anon_sym__Alignas] = ACTIONS(2772), + [sym_primitive_type] = ACTIONS(2772), + [anon_sym_enum] = ACTIONS(2772), + [anon_sym_struct] = ACTIONS(2772), + [anon_sym_union] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_switch] = ACTIONS(2772), + [anon_sym_case] = ACTIONS(2772), + [anon_sym_default] = ACTIONS(2772), + [anon_sym_while] = ACTIONS(2772), + [anon_sym_do] = ACTIONS(2772), + [anon_sym_for] = ACTIONS(2772), + [anon_sym_in] = ACTIONS(2772), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_break] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2772), + [anon_sym_goto] = ACTIONS(2772), + [anon_sym_DASH_DASH] = ACTIONS(2774), + [anon_sym_PLUS_PLUS] = ACTIONS(2774), + [anon_sym_sizeof] = ACTIONS(2772), + [anon_sym___alignof__] = ACTIONS(2772), + [anon_sym___alignof] = ACTIONS(2772), + [anon_sym__alignof] = ACTIONS(2772), + [anon_sym_alignof] = ACTIONS(2772), + [anon_sym__Alignof] = ACTIONS(2772), + [anon_sym_offsetof] = ACTIONS(2772), + [anon_sym__Generic] = ACTIONS(2772), + [anon_sym_asm] = ACTIONS(2772), + [anon_sym___asm__] = ACTIONS(2772), + [anon_sym___asm] = ACTIONS(2772), + [sym_number_literal] = ACTIONS(2774), + [anon_sym_L_SQUOTE] = ACTIONS(2774), + [anon_sym_u_SQUOTE] = ACTIONS(2774), + [anon_sym_U_SQUOTE] = ACTIONS(2774), + [anon_sym_u8_SQUOTE] = ACTIONS(2774), + [anon_sym_SQUOTE] = ACTIONS(2774), + [anon_sym_AT] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_L_DQUOTE] = ACTIONS(2774), + [anon_sym_u_DQUOTE] = ACTIONS(2774), + [anon_sym_U_DQUOTE] = ACTIONS(2774), + [anon_sym_u8_DQUOTE] = ACTIONS(2774), + [sym_true] = ACTIONS(2772), + [sym_false] = ACTIONS(2772), + [anon_sym_NULL] = ACTIONS(2772), + [anon_sym_nullptr] = ACTIONS(2772), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2772), + [anon_sym___typeof] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2772), + [anon_sym_ATimport] = ACTIONS(2774), + [aux_sym_preproc_undef_token1] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(2772), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2772), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2772), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2772), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2772), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE] = ACTIONS(2772), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_API_AVAILABLE] = ACTIONS(2772), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_API_DEPRECATED] = ACTIONS(2772), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2772), + [anon_sym___deprecated_msg] = ACTIONS(2772), + [anon_sym___deprecated_enum_msg] = ACTIONS(2772), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2772), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2772), + [anon_sym_ATprotocol] = ACTIONS(2774), + [anon_sym_ATinterface] = ACTIONS(2774), + [anon_sym_ATimplementation] = ACTIONS(2774), + [anon_sym_ATcompatibility_alias] = ACTIONS(2774), + [anon_sym_ATsynthesize] = ACTIONS(2774), + [anon_sym_ATdynamic] = ACTIONS(2774), + [anon_sym_ATtry] = ACTIONS(2774), + [anon_sym___try] = ACTIONS(2772), + [anon_sym_ATthrow] = ACTIONS(2774), + [anon_sym_ATselector] = ACTIONS(2774), + [anon_sym_ATavailable] = ACTIONS(2774), + [anon_sym___builtin_available] = ACTIONS(2772), + [anon_sym_va_arg] = ACTIONS(2772), + [anon_sym_ATencode] = ACTIONS(2774), + [anon_sym_ATsynchronized] = ACTIONS(2774), + [anon_sym_BOOL] = ACTIONS(2772), + [anon_sym_IMP] = ACTIONS(2772), + [anon_sym_SEL] = ACTIONS(2772), + [anon_sym_Class] = ACTIONS(2772), + [anon_sym_id] = ACTIONS(2772), + }, + [331] = { + [sym_identifier] = ACTIONS(2772), + [aux_sym_preproc_include_token1] = ACTIONS(2772), + [aux_sym_preproc_include_token2] = ACTIONS(2772), + [aux_sym_preproc_def_token1] = ACTIONS(2772), + [aux_sym_preproc_if_token1] = ACTIONS(2772), + [aux_sym_preproc_if_token2] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2772), + [aux_sym_preproc_else_token1] = ACTIONS(2772), + [aux_sym_preproc_elif_token1] = ACTIONS(2772), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2772), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2772), + [sym_preproc_directive] = ACTIONS(2772), + [anon_sym_LPAREN2] = ACTIONS(2774), + [anon_sym_BANG] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_CARET] = ACTIONS(2774), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym___extension__] = ACTIONS(2772), + [anon_sym_typedef] = ACTIONS(2772), + [anon_sym_extern] = ACTIONS(2772), + [anon_sym___attribute__] = ACTIONS(2772), + [anon_sym___attribute] = ACTIONS(2772), + [anon_sym_noreturn] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym___declspec] = ACTIONS(2772), + [anon_sym___cdecl] = ACTIONS(2772), + [anon_sym___clrcall] = ACTIONS(2772), + [anon_sym___stdcall] = ACTIONS(2772), + [anon_sym___fastcall] = ACTIONS(2772), + [anon_sym___thiscall] = ACTIONS(2772), + [anon_sym___vectorcall] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_signed] = ACTIONS(2772), + [anon_sym_unsigned] = ACTIONS(2772), + [anon_sym_long] = ACTIONS(2772), + [anon_sym_short] = ACTIONS(2772), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_ATautoreleasepool] = ACTIONS(2774), + [anon_sym_auto] = ACTIONS(2772), + [anon_sym_register] = ACTIONS(2772), + [anon_sym_inline] = ACTIONS(2772), + [anon_sym___inline] = ACTIONS(2772), + [anon_sym___inline__] = ACTIONS(2772), + [anon_sym___forceinline] = ACTIONS(2772), + [anon_sym_thread_local] = ACTIONS(2772), + [anon_sym___thread] = ACTIONS(2772), + [anon_sym_CG_EXTERN] = ACTIONS(2772), + [anon_sym_CG_INLINE] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2772), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2772), + [anon_sym_IBOutlet] = ACTIONS(2772), + [anon_sym_IBInspectable] = ACTIONS(2772), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2772), + [anon_sym_NS_INLINE] = ACTIONS(2772), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2772), + [anon_sym_OBJC_EXPORT] = ACTIONS(2772), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2772), + [anon_sym_const] = ACTIONS(2772), + [anon_sym_constexpr] = ACTIONS(2772), + [anon_sym_volatile] = ACTIONS(2772), + [anon_sym_restrict] = ACTIONS(2772), + [anon_sym___restrict__] = ACTIONS(2772), + [anon_sym__Atomic] = ACTIONS(2772), + [anon_sym__Noreturn] = ACTIONS(2772), + [anon_sym__Nonnull] = ACTIONS(2772), + [anon_sym_nullable] = ACTIONS(2772), + [anon_sym__Complex] = ACTIONS(2772), + [anon_sym__Nullable] = ACTIONS(2772), + [anon_sym__Nullable_result] = ACTIONS(2772), + [anon_sym__Null_unspecified] = ACTIONS(2772), + [anon_sym___autoreleasing] = ACTIONS(2772), + [anon_sym___block] = ACTIONS(2772), + [anon_sym___bridge] = ACTIONS(2772), + [anon_sym___bridge_retained] = ACTIONS(2772), + [anon_sym___bridge_transfer] = ACTIONS(2772), + [anon_sym___complex] = ACTIONS(2772), + [anon_sym___const] = ACTIONS(2772), + [anon_sym___imag] = ACTIONS(2772), + [anon_sym___kindof] = ACTIONS(2772), + [anon_sym___nonnull] = ACTIONS(2772), + [anon_sym___nullable] = ACTIONS(2772), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2772), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2772), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2772), + [anon_sym___real] = ACTIONS(2772), + [anon_sym___strong] = ACTIONS(2772), + [anon_sym___unsafe_unretained] = ACTIONS(2772), + [anon_sym___unused] = ACTIONS(2772), + [anon_sym___weak] = ACTIONS(2772), + [anon_sym_alignas] = ACTIONS(2772), + [anon_sym__Alignas] = ACTIONS(2772), + [sym_primitive_type] = ACTIONS(2772), + [anon_sym_enum] = ACTIONS(2772), + [anon_sym_struct] = ACTIONS(2772), + [anon_sym_union] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_switch] = ACTIONS(2772), + [anon_sym_case] = ACTIONS(2772), + [anon_sym_default] = ACTIONS(2772), + [anon_sym_while] = ACTIONS(2772), + [anon_sym_do] = ACTIONS(2772), + [anon_sym_for] = ACTIONS(2772), + [anon_sym_in] = ACTIONS(2772), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_break] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2772), + [anon_sym_goto] = ACTIONS(2772), + [anon_sym_DASH_DASH] = ACTIONS(2774), + [anon_sym_PLUS_PLUS] = ACTIONS(2774), + [anon_sym_sizeof] = ACTIONS(2772), + [anon_sym___alignof__] = ACTIONS(2772), + [anon_sym___alignof] = ACTIONS(2772), + [anon_sym__alignof] = ACTIONS(2772), + [anon_sym_alignof] = ACTIONS(2772), + [anon_sym__Alignof] = ACTIONS(2772), + [anon_sym_offsetof] = ACTIONS(2772), + [anon_sym__Generic] = ACTIONS(2772), + [anon_sym_asm] = ACTIONS(2772), + [anon_sym___asm__] = ACTIONS(2772), + [anon_sym___asm] = ACTIONS(2772), + [sym_number_literal] = ACTIONS(2774), + [anon_sym_L_SQUOTE] = ACTIONS(2774), + [anon_sym_u_SQUOTE] = ACTIONS(2774), + [anon_sym_U_SQUOTE] = ACTIONS(2774), + [anon_sym_u8_SQUOTE] = ACTIONS(2774), + [anon_sym_SQUOTE] = ACTIONS(2774), + [anon_sym_AT] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_L_DQUOTE] = ACTIONS(2774), + [anon_sym_u_DQUOTE] = ACTIONS(2774), + [anon_sym_U_DQUOTE] = ACTIONS(2774), + [anon_sym_u8_DQUOTE] = ACTIONS(2774), + [sym_true] = ACTIONS(2772), + [sym_false] = ACTIONS(2772), + [anon_sym_NULL] = ACTIONS(2772), + [anon_sym_nullptr] = ACTIONS(2772), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2772), + [anon_sym___typeof] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2772), + [anon_sym_ATimport] = ACTIONS(2774), + [aux_sym_preproc_undef_token1] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(2772), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2772), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2772), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2772), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2772), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE] = ACTIONS(2772), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_API_AVAILABLE] = ACTIONS(2772), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_API_DEPRECATED] = ACTIONS(2772), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2772), + [anon_sym___deprecated_msg] = ACTIONS(2772), + [anon_sym___deprecated_enum_msg] = ACTIONS(2772), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2772), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2772), + [anon_sym_ATprotocol] = ACTIONS(2774), + [anon_sym_ATinterface] = ACTIONS(2774), + [anon_sym_ATimplementation] = ACTIONS(2774), + [anon_sym_ATcompatibility_alias] = ACTIONS(2774), + [anon_sym_ATsynthesize] = ACTIONS(2774), + [anon_sym_ATdynamic] = ACTIONS(2774), + [anon_sym_ATtry] = ACTIONS(2774), + [anon_sym___try] = ACTIONS(2772), + [anon_sym_ATthrow] = ACTIONS(2774), + [anon_sym_ATselector] = ACTIONS(2774), + [anon_sym_ATavailable] = ACTIONS(2774), + [anon_sym___builtin_available] = ACTIONS(2772), + [anon_sym_va_arg] = ACTIONS(2772), + [anon_sym_ATencode] = ACTIONS(2774), + [anon_sym_ATsynchronized] = ACTIONS(2774), + [anon_sym_BOOL] = ACTIONS(2772), + [anon_sym_IMP] = ACTIONS(2772), + [anon_sym_SEL] = ACTIONS(2772), + [anon_sym_Class] = ACTIONS(2772), + [anon_sym_id] = ACTIONS(2772), + }, + [332] = { + [sym_identifier] = ACTIONS(2772), + [aux_sym_preproc_include_token1] = ACTIONS(2772), + [aux_sym_preproc_include_token2] = ACTIONS(2772), + [aux_sym_preproc_def_token1] = ACTIONS(2772), + [aux_sym_preproc_if_token1] = ACTIONS(2772), + [aux_sym_preproc_if_token2] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2772), + [aux_sym_preproc_else_token1] = ACTIONS(2772), + [aux_sym_preproc_elif_token1] = ACTIONS(2772), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2772), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2772), + [sym_preproc_directive] = ACTIONS(2772), + [anon_sym_LPAREN2] = ACTIONS(2774), + [anon_sym_BANG] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_CARET] = ACTIONS(2774), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym___extension__] = ACTIONS(2772), + [anon_sym_typedef] = ACTIONS(2772), + [anon_sym_extern] = ACTIONS(2772), + [anon_sym___attribute__] = ACTIONS(2772), + [anon_sym___attribute] = ACTIONS(2772), + [anon_sym_noreturn] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym___declspec] = ACTIONS(2772), + [anon_sym___cdecl] = ACTIONS(2772), + [anon_sym___clrcall] = ACTIONS(2772), + [anon_sym___stdcall] = ACTIONS(2772), + [anon_sym___fastcall] = ACTIONS(2772), + [anon_sym___thiscall] = ACTIONS(2772), + [anon_sym___vectorcall] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_signed] = ACTIONS(2772), + [anon_sym_unsigned] = ACTIONS(2772), + [anon_sym_long] = ACTIONS(2772), + [anon_sym_short] = ACTIONS(2772), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_ATautoreleasepool] = ACTIONS(2774), + [anon_sym_auto] = ACTIONS(2772), + [anon_sym_register] = ACTIONS(2772), + [anon_sym_inline] = ACTIONS(2772), + [anon_sym___inline] = ACTIONS(2772), + [anon_sym___inline__] = ACTIONS(2772), + [anon_sym___forceinline] = ACTIONS(2772), + [anon_sym_thread_local] = ACTIONS(2772), + [anon_sym___thread] = ACTIONS(2772), + [anon_sym_CG_EXTERN] = ACTIONS(2772), + [anon_sym_CG_INLINE] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2772), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2772), + [anon_sym_IBOutlet] = ACTIONS(2772), + [anon_sym_IBInspectable] = ACTIONS(2772), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2772), + [anon_sym_NS_INLINE] = ACTIONS(2772), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2772), + [anon_sym_OBJC_EXPORT] = ACTIONS(2772), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2772), + [anon_sym_const] = ACTIONS(2772), + [anon_sym_constexpr] = ACTIONS(2772), + [anon_sym_volatile] = ACTIONS(2772), + [anon_sym_restrict] = ACTIONS(2772), + [anon_sym___restrict__] = ACTIONS(2772), + [anon_sym__Atomic] = ACTIONS(2772), + [anon_sym__Noreturn] = ACTIONS(2772), + [anon_sym__Nonnull] = ACTIONS(2772), + [anon_sym_nullable] = ACTIONS(2772), + [anon_sym__Complex] = ACTIONS(2772), + [anon_sym__Nullable] = ACTIONS(2772), + [anon_sym__Nullable_result] = ACTIONS(2772), + [anon_sym__Null_unspecified] = ACTIONS(2772), + [anon_sym___autoreleasing] = ACTIONS(2772), + [anon_sym___block] = ACTIONS(2772), + [anon_sym___bridge] = ACTIONS(2772), + [anon_sym___bridge_retained] = ACTIONS(2772), + [anon_sym___bridge_transfer] = ACTIONS(2772), + [anon_sym___complex] = ACTIONS(2772), + [anon_sym___const] = ACTIONS(2772), + [anon_sym___imag] = ACTIONS(2772), + [anon_sym___kindof] = ACTIONS(2772), + [anon_sym___nonnull] = ACTIONS(2772), + [anon_sym___nullable] = ACTIONS(2772), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2772), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2772), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2772), + [anon_sym___real] = ACTIONS(2772), + [anon_sym___strong] = ACTIONS(2772), + [anon_sym___unsafe_unretained] = ACTIONS(2772), + [anon_sym___unused] = ACTIONS(2772), + [anon_sym___weak] = ACTIONS(2772), + [anon_sym_alignas] = ACTIONS(2772), + [anon_sym__Alignas] = ACTIONS(2772), + [sym_primitive_type] = ACTIONS(2772), + [anon_sym_enum] = ACTIONS(2772), + [anon_sym_struct] = ACTIONS(2772), + [anon_sym_union] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_switch] = ACTIONS(2772), + [anon_sym_case] = ACTIONS(2772), + [anon_sym_default] = ACTIONS(2772), + [anon_sym_while] = ACTIONS(2772), + [anon_sym_do] = ACTIONS(2772), + [anon_sym_for] = ACTIONS(2772), + [anon_sym_in] = ACTIONS(2772), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_break] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2772), + [anon_sym_goto] = ACTIONS(2772), + [anon_sym_DASH_DASH] = ACTIONS(2774), + [anon_sym_PLUS_PLUS] = ACTIONS(2774), + [anon_sym_sizeof] = ACTIONS(2772), + [anon_sym___alignof__] = ACTIONS(2772), + [anon_sym___alignof] = ACTIONS(2772), + [anon_sym__alignof] = ACTIONS(2772), + [anon_sym_alignof] = ACTIONS(2772), + [anon_sym__Alignof] = ACTIONS(2772), + [anon_sym_offsetof] = ACTIONS(2772), + [anon_sym__Generic] = ACTIONS(2772), + [anon_sym_asm] = ACTIONS(2772), + [anon_sym___asm__] = ACTIONS(2772), + [anon_sym___asm] = ACTIONS(2772), + [sym_number_literal] = ACTIONS(2774), + [anon_sym_L_SQUOTE] = ACTIONS(2774), + [anon_sym_u_SQUOTE] = ACTIONS(2774), + [anon_sym_U_SQUOTE] = ACTIONS(2774), + [anon_sym_u8_SQUOTE] = ACTIONS(2774), + [anon_sym_SQUOTE] = ACTIONS(2774), + [anon_sym_AT] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_L_DQUOTE] = ACTIONS(2774), + [anon_sym_u_DQUOTE] = ACTIONS(2774), + [anon_sym_U_DQUOTE] = ACTIONS(2774), + [anon_sym_u8_DQUOTE] = ACTIONS(2774), + [sym_true] = ACTIONS(2772), + [sym_false] = ACTIONS(2772), + [anon_sym_NULL] = ACTIONS(2772), + [anon_sym_nullptr] = ACTIONS(2772), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2772), + [anon_sym___typeof] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2772), + [anon_sym_ATimport] = ACTIONS(2774), + [aux_sym_preproc_undef_token1] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(2772), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2772), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2772), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2772), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2772), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE] = ACTIONS(2772), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_API_AVAILABLE] = ACTIONS(2772), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_API_DEPRECATED] = ACTIONS(2772), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2772), + [anon_sym___deprecated_msg] = ACTIONS(2772), + [anon_sym___deprecated_enum_msg] = ACTIONS(2772), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2772), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2772), + [anon_sym_ATprotocol] = ACTIONS(2774), + [anon_sym_ATinterface] = ACTIONS(2774), + [anon_sym_ATimplementation] = ACTIONS(2774), + [anon_sym_ATcompatibility_alias] = ACTIONS(2774), + [anon_sym_ATsynthesize] = ACTIONS(2774), + [anon_sym_ATdynamic] = ACTIONS(2774), + [anon_sym_ATtry] = ACTIONS(2774), + [anon_sym___try] = ACTIONS(2772), + [anon_sym_ATthrow] = ACTIONS(2774), + [anon_sym_ATselector] = ACTIONS(2774), + [anon_sym_ATavailable] = ACTIONS(2774), + [anon_sym___builtin_available] = ACTIONS(2772), + [anon_sym_va_arg] = ACTIONS(2772), + [anon_sym_ATencode] = ACTIONS(2774), + [anon_sym_ATsynchronized] = ACTIONS(2774), + [anon_sym_BOOL] = ACTIONS(2772), + [anon_sym_IMP] = ACTIONS(2772), + [anon_sym_SEL] = ACTIONS(2772), + [anon_sym_Class] = ACTIONS(2772), + [anon_sym_id] = ACTIONS(2772), + }, + [333] = { + [sym_identifier] = ACTIONS(2776), + [aux_sym_preproc_include_token1] = ACTIONS(2776), + [aux_sym_preproc_include_token2] = ACTIONS(2776), + [aux_sym_preproc_def_token1] = ACTIONS(2776), + [aux_sym_preproc_if_token1] = ACTIONS(2776), + [aux_sym_preproc_if_token2] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2776), + [aux_sym_preproc_else_token1] = ACTIONS(2776), + [aux_sym_preproc_elif_token1] = ACTIONS(2776), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2776), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2776), + [sym_preproc_directive] = ACTIONS(2776), + [anon_sym_LPAREN2] = ACTIONS(2778), + [anon_sym_BANG] = ACTIONS(2778), + [anon_sym_TILDE] = ACTIONS(2778), + [anon_sym_DASH] = ACTIONS(2776), + [anon_sym_PLUS] = ACTIONS(2776), + [anon_sym_STAR] = ACTIONS(2778), + [anon_sym_CARET] = ACTIONS(2778), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym___extension__] = ACTIONS(2776), + [anon_sym_typedef] = ACTIONS(2776), + [anon_sym_extern] = ACTIONS(2776), + [anon_sym___attribute__] = ACTIONS(2776), + [anon_sym___attribute] = ACTIONS(2776), + [anon_sym_noreturn] = ACTIONS(2776), + [anon_sym_LBRACK] = ACTIONS(2778), + [anon_sym___declspec] = ACTIONS(2776), + [anon_sym___cdecl] = ACTIONS(2776), + [anon_sym___clrcall] = ACTIONS(2776), + [anon_sym___stdcall] = ACTIONS(2776), + [anon_sym___fastcall] = ACTIONS(2776), + [anon_sym___thiscall] = ACTIONS(2776), + [anon_sym___vectorcall] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_signed] = ACTIONS(2776), + [anon_sym_unsigned] = ACTIONS(2776), + [anon_sym_long] = ACTIONS(2776), + [anon_sym_short] = ACTIONS(2776), + [anon_sym_static] = ACTIONS(2776), + [anon_sym_ATautoreleasepool] = ACTIONS(2778), + [anon_sym_auto] = ACTIONS(2776), + [anon_sym_register] = ACTIONS(2776), + [anon_sym_inline] = ACTIONS(2776), + [anon_sym___inline] = ACTIONS(2776), + [anon_sym___inline__] = ACTIONS(2776), + [anon_sym___forceinline] = ACTIONS(2776), + [anon_sym_thread_local] = ACTIONS(2776), + [anon_sym___thread] = ACTIONS(2776), + [anon_sym_CG_EXTERN] = ACTIONS(2776), + [anon_sym_CG_INLINE] = ACTIONS(2776), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2776), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2776), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2776), + [anon_sym_IBOutlet] = ACTIONS(2776), + [anon_sym_IBInspectable] = ACTIONS(2776), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2776), + [anon_sym_NS_INLINE] = ACTIONS(2776), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2776), + [anon_sym_OBJC_EXPORT] = ACTIONS(2776), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2776), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2776), + [anon_sym_const] = ACTIONS(2776), + [anon_sym_constexpr] = ACTIONS(2776), + [anon_sym_volatile] = ACTIONS(2776), + [anon_sym_restrict] = ACTIONS(2776), + [anon_sym___restrict__] = ACTIONS(2776), + [anon_sym__Atomic] = ACTIONS(2776), + [anon_sym__Noreturn] = ACTIONS(2776), + [anon_sym__Nonnull] = ACTIONS(2776), + [anon_sym_nullable] = ACTIONS(2776), + [anon_sym__Complex] = ACTIONS(2776), + [anon_sym__Nullable] = ACTIONS(2776), + [anon_sym__Nullable_result] = ACTIONS(2776), + [anon_sym__Null_unspecified] = ACTIONS(2776), + [anon_sym___autoreleasing] = ACTIONS(2776), + [anon_sym___block] = ACTIONS(2776), + [anon_sym___bridge] = ACTIONS(2776), + [anon_sym___bridge_retained] = ACTIONS(2776), + [anon_sym___bridge_transfer] = ACTIONS(2776), + [anon_sym___complex] = ACTIONS(2776), + [anon_sym___const] = ACTIONS(2776), + [anon_sym___imag] = ACTIONS(2776), + [anon_sym___kindof] = ACTIONS(2776), + [anon_sym___nonnull] = ACTIONS(2776), + [anon_sym___nullable] = ACTIONS(2776), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2776), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2776), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2776), + [anon_sym___real] = ACTIONS(2776), + [anon_sym___strong] = ACTIONS(2776), + [anon_sym___unsafe_unretained] = ACTIONS(2776), + [anon_sym___unused] = ACTIONS(2776), + [anon_sym___weak] = ACTIONS(2776), + [anon_sym_alignas] = ACTIONS(2776), + [anon_sym__Alignas] = ACTIONS(2776), + [sym_primitive_type] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2776), + [anon_sym_struct] = ACTIONS(2776), + [anon_sym_union] = ACTIONS(2776), + [anon_sym_if] = ACTIONS(2776), + [anon_sym_switch] = ACTIONS(2776), + [anon_sym_case] = ACTIONS(2776), + [anon_sym_default] = ACTIONS(2776), + [anon_sym_while] = ACTIONS(2776), + [anon_sym_do] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2776), + [anon_sym_in] = ACTIONS(2776), + [anon_sym_return] = ACTIONS(2776), + [anon_sym_break] = ACTIONS(2776), + [anon_sym_continue] = ACTIONS(2776), + [anon_sym_goto] = ACTIONS(2776), + [anon_sym_DASH_DASH] = ACTIONS(2778), + [anon_sym_PLUS_PLUS] = ACTIONS(2778), + [anon_sym_sizeof] = ACTIONS(2776), + [anon_sym___alignof__] = ACTIONS(2776), + [anon_sym___alignof] = ACTIONS(2776), + [anon_sym__alignof] = ACTIONS(2776), + [anon_sym_alignof] = ACTIONS(2776), + [anon_sym__Alignof] = ACTIONS(2776), + [anon_sym_offsetof] = ACTIONS(2776), + [anon_sym__Generic] = ACTIONS(2776), + [anon_sym_asm] = ACTIONS(2776), + [anon_sym___asm__] = ACTIONS(2776), + [anon_sym___asm] = ACTIONS(2776), + [sym_number_literal] = ACTIONS(2778), + [anon_sym_L_SQUOTE] = ACTIONS(2778), + [anon_sym_u_SQUOTE] = ACTIONS(2778), + [anon_sym_U_SQUOTE] = ACTIONS(2778), + [anon_sym_u8_SQUOTE] = ACTIONS(2778), + [anon_sym_SQUOTE] = ACTIONS(2778), + [anon_sym_AT] = ACTIONS(2776), + [anon_sym_DQUOTE] = ACTIONS(2778), + [anon_sym_L_DQUOTE] = ACTIONS(2778), + [anon_sym_u_DQUOTE] = ACTIONS(2778), + [anon_sym_U_DQUOTE] = ACTIONS(2778), + [anon_sym_u8_DQUOTE] = ACTIONS(2778), + [sym_true] = ACTIONS(2776), + [sym_false] = ACTIONS(2776), + [anon_sym_NULL] = ACTIONS(2776), + [anon_sym_nullptr] = ACTIONS(2776), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2776), + [anon_sym___typeof] = ACTIONS(2776), + [anon_sym_typeof] = ACTIONS(2776), + [anon_sym_ATimport] = ACTIONS(2778), + [aux_sym_preproc_undef_token1] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(2776), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2776), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2776), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2776), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2776), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2776), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2776), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2776), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2776), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2776), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2776), + [anon_sym_NS_AVAILABLE] = ACTIONS(2776), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2776), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2776), + [anon_sym_API_AVAILABLE] = ACTIONS(2776), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2776), + [anon_sym_API_DEPRECATED] = ACTIONS(2776), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2776), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2776), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2776), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2776), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2776), + [anon_sym___deprecated_msg] = ACTIONS(2776), + [anon_sym___deprecated_enum_msg] = ACTIONS(2776), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2776), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2776), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2776), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2776), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2776), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2776), + [anon_sym_ATprotocol] = ACTIONS(2778), + [anon_sym_ATinterface] = ACTIONS(2778), + [anon_sym_ATimplementation] = ACTIONS(2778), + [anon_sym_ATcompatibility_alias] = ACTIONS(2778), + [anon_sym_ATsynthesize] = ACTIONS(2778), + [anon_sym_ATdynamic] = ACTIONS(2778), + [anon_sym_ATtry] = ACTIONS(2778), + [anon_sym___try] = ACTIONS(2776), + [anon_sym_ATthrow] = ACTIONS(2778), + [anon_sym_ATselector] = ACTIONS(2778), + [anon_sym_ATavailable] = ACTIONS(2778), + [anon_sym___builtin_available] = ACTIONS(2776), + [anon_sym_va_arg] = ACTIONS(2776), + [anon_sym_ATencode] = ACTIONS(2778), + [anon_sym_ATsynchronized] = ACTIONS(2778), + [anon_sym_BOOL] = ACTIONS(2776), + [anon_sym_IMP] = ACTIONS(2776), + [anon_sym_SEL] = ACTIONS(2776), + [anon_sym_Class] = ACTIONS(2776), + [anon_sym_id] = ACTIONS(2776), + }, + [334] = { + [sym_identifier] = ACTIONS(2780), + [aux_sym_preproc_include_token1] = ACTIONS(2780), + [aux_sym_preproc_include_token2] = ACTIONS(2780), + [aux_sym_preproc_def_token1] = ACTIONS(2780), + [aux_sym_preproc_if_token1] = ACTIONS(2780), + [aux_sym_preproc_if_token2] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2780), + [aux_sym_preproc_else_token1] = ACTIONS(2780), + [aux_sym_preproc_elif_token1] = ACTIONS(2780), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2780), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2780), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2782), + [anon_sym_BANG] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(2780), + [anon_sym_STAR] = ACTIONS(2782), + [anon_sym_CARET] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym___extension__] = ACTIONS(2780), + [anon_sym_typedef] = ACTIONS(2780), + [anon_sym_extern] = ACTIONS(2780), + [anon_sym___attribute__] = ACTIONS(2780), + [anon_sym___attribute] = ACTIONS(2780), + [anon_sym_noreturn] = ACTIONS(2780), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym___declspec] = ACTIONS(2780), + [anon_sym___cdecl] = ACTIONS(2780), + [anon_sym___clrcall] = ACTIONS(2780), + [anon_sym___stdcall] = ACTIONS(2780), + [anon_sym___fastcall] = ACTIONS(2780), + [anon_sym___thiscall] = ACTIONS(2780), + [anon_sym___vectorcall] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_signed] = ACTIONS(2780), + [anon_sym_unsigned] = ACTIONS(2780), + [anon_sym_long] = ACTIONS(2780), + [anon_sym_short] = ACTIONS(2780), + [anon_sym_static] = ACTIONS(2780), + [anon_sym_ATautoreleasepool] = ACTIONS(2782), + [anon_sym_auto] = ACTIONS(2780), + [anon_sym_register] = ACTIONS(2780), + [anon_sym_inline] = ACTIONS(2780), + [anon_sym___inline] = ACTIONS(2780), + [anon_sym___inline__] = ACTIONS(2780), + [anon_sym___forceinline] = ACTIONS(2780), + [anon_sym_thread_local] = ACTIONS(2780), + [anon_sym___thread] = ACTIONS(2780), + [anon_sym_CG_EXTERN] = ACTIONS(2780), + [anon_sym_CG_INLINE] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2780), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2780), + [anon_sym_IBOutlet] = ACTIONS(2780), + [anon_sym_IBInspectable] = ACTIONS(2780), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2780), + [anon_sym_NS_INLINE] = ACTIONS(2780), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2780), + [anon_sym_OBJC_EXPORT] = ACTIONS(2780), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2780), + [anon_sym_const] = ACTIONS(2780), + [anon_sym_constexpr] = ACTIONS(2780), + [anon_sym_volatile] = ACTIONS(2780), + [anon_sym_restrict] = ACTIONS(2780), + [anon_sym___restrict__] = ACTIONS(2780), + [anon_sym__Atomic] = ACTIONS(2780), + [anon_sym__Noreturn] = ACTIONS(2780), + [anon_sym__Nonnull] = ACTIONS(2780), + [anon_sym_nullable] = ACTIONS(2780), + [anon_sym__Complex] = ACTIONS(2780), + [anon_sym__Nullable] = ACTIONS(2780), + [anon_sym__Nullable_result] = ACTIONS(2780), + [anon_sym__Null_unspecified] = ACTIONS(2780), + [anon_sym___autoreleasing] = ACTIONS(2780), + [anon_sym___block] = ACTIONS(2780), + [anon_sym___bridge] = ACTIONS(2780), + [anon_sym___bridge_retained] = ACTIONS(2780), + [anon_sym___bridge_transfer] = ACTIONS(2780), + [anon_sym___complex] = ACTIONS(2780), + [anon_sym___const] = ACTIONS(2780), + [anon_sym___imag] = ACTIONS(2780), + [anon_sym___kindof] = ACTIONS(2780), + [anon_sym___nonnull] = ACTIONS(2780), + [anon_sym___nullable] = ACTIONS(2780), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2780), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2780), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2780), + [anon_sym___real] = ACTIONS(2780), + [anon_sym___strong] = ACTIONS(2780), + [anon_sym___unsafe_unretained] = ACTIONS(2780), + [anon_sym___unused] = ACTIONS(2780), + [anon_sym___weak] = ACTIONS(2780), + [anon_sym_alignas] = ACTIONS(2780), + [anon_sym__Alignas] = ACTIONS(2780), + [sym_primitive_type] = ACTIONS(2780), + [anon_sym_enum] = ACTIONS(2780), + [anon_sym_struct] = ACTIONS(2780), + [anon_sym_union] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_switch] = ACTIONS(2780), + [anon_sym_case] = ACTIONS(2780), + [anon_sym_default] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_in] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_break] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2780), + [anon_sym_goto] = ACTIONS(2780), + [anon_sym_DASH_DASH] = ACTIONS(2782), + [anon_sym_PLUS_PLUS] = ACTIONS(2782), + [anon_sym_sizeof] = ACTIONS(2780), + [anon_sym___alignof__] = ACTIONS(2780), + [anon_sym___alignof] = ACTIONS(2780), + [anon_sym__alignof] = ACTIONS(2780), + [anon_sym_alignof] = ACTIONS(2780), + [anon_sym__Alignof] = ACTIONS(2780), + [anon_sym_offsetof] = ACTIONS(2780), + [anon_sym__Generic] = ACTIONS(2780), + [anon_sym_asm] = ACTIONS(2780), + [anon_sym___asm__] = ACTIONS(2780), + [anon_sym___asm] = ACTIONS(2780), + [sym_number_literal] = ACTIONS(2782), + [anon_sym_L_SQUOTE] = ACTIONS(2782), + [anon_sym_u_SQUOTE] = ACTIONS(2782), + [anon_sym_U_SQUOTE] = ACTIONS(2782), + [anon_sym_u8_SQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2782), + [anon_sym_AT] = ACTIONS(2780), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_L_DQUOTE] = ACTIONS(2782), + [anon_sym_u_DQUOTE] = ACTIONS(2782), + [anon_sym_U_DQUOTE] = ACTIONS(2782), + [anon_sym_u8_DQUOTE] = ACTIONS(2782), + [sym_true] = ACTIONS(2780), + [sym_false] = ACTIONS(2780), + [anon_sym_NULL] = ACTIONS(2780), + [anon_sym_nullptr] = ACTIONS(2780), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2780), + [anon_sym___typeof] = ACTIONS(2780), + [anon_sym_typeof] = ACTIONS(2780), + [anon_sym_ATimport] = ACTIONS(2782), + [aux_sym_preproc_undef_token1] = ACTIONS(2780), + [anon_sym_POUND] = ACTIONS(2780), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2780), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2780), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2780), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2780), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE] = ACTIONS(2780), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_API_AVAILABLE] = ACTIONS(2780), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_API_DEPRECATED] = ACTIONS(2780), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2780), + [anon_sym___deprecated_msg] = ACTIONS(2780), + [anon_sym___deprecated_enum_msg] = ACTIONS(2780), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2780), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2780), + [anon_sym_ATprotocol] = ACTIONS(2782), + [anon_sym_ATinterface] = ACTIONS(2782), + [anon_sym_ATimplementation] = ACTIONS(2782), + [anon_sym_ATcompatibility_alias] = ACTIONS(2782), + [anon_sym_ATsynthesize] = ACTIONS(2782), + [anon_sym_ATdynamic] = ACTIONS(2782), + [anon_sym_ATtry] = ACTIONS(2782), + [anon_sym___try] = ACTIONS(2780), + [anon_sym_ATthrow] = ACTIONS(2782), + [anon_sym_ATselector] = ACTIONS(2782), + [anon_sym_ATavailable] = ACTIONS(2782), + [anon_sym___builtin_available] = ACTIONS(2780), + [anon_sym_va_arg] = ACTIONS(2780), + [anon_sym_ATencode] = ACTIONS(2782), + [anon_sym_ATsynchronized] = ACTIONS(2782), + [anon_sym_BOOL] = ACTIONS(2780), + [anon_sym_IMP] = ACTIONS(2780), + [anon_sym_SEL] = ACTIONS(2780), + [anon_sym_Class] = ACTIONS(2780), + [anon_sym_id] = ACTIONS(2780), + }, + [335] = { + [sym_identifier] = ACTIONS(2780), + [aux_sym_preproc_include_token1] = ACTIONS(2780), + [aux_sym_preproc_include_token2] = ACTIONS(2780), + [aux_sym_preproc_def_token1] = ACTIONS(2780), + [aux_sym_preproc_if_token1] = ACTIONS(2780), + [aux_sym_preproc_if_token2] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2780), + [aux_sym_preproc_else_token1] = ACTIONS(2780), + [aux_sym_preproc_elif_token1] = ACTIONS(2780), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2780), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2780), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2782), + [anon_sym_BANG] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(2780), + [anon_sym_STAR] = ACTIONS(2782), + [anon_sym_CARET] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym___extension__] = ACTIONS(2780), + [anon_sym_typedef] = ACTIONS(2780), + [anon_sym_extern] = ACTIONS(2780), + [anon_sym___attribute__] = ACTIONS(2780), + [anon_sym___attribute] = ACTIONS(2780), + [anon_sym_noreturn] = ACTIONS(2780), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym___declspec] = ACTIONS(2780), + [anon_sym___cdecl] = ACTIONS(2780), + [anon_sym___clrcall] = ACTIONS(2780), + [anon_sym___stdcall] = ACTIONS(2780), + [anon_sym___fastcall] = ACTIONS(2780), + [anon_sym___thiscall] = ACTIONS(2780), + [anon_sym___vectorcall] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_signed] = ACTIONS(2780), + [anon_sym_unsigned] = ACTIONS(2780), + [anon_sym_long] = ACTIONS(2780), + [anon_sym_short] = ACTIONS(2780), + [anon_sym_static] = ACTIONS(2780), + [anon_sym_ATautoreleasepool] = ACTIONS(2782), + [anon_sym_auto] = ACTIONS(2780), + [anon_sym_register] = ACTIONS(2780), + [anon_sym_inline] = ACTIONS(2780), + [anon_sym___inline] = ACTIONS(2780), + [anon_sym___inline__] = ACTIONS(2780), + [anon_sym___forceinline] = ACTIONS(2780), + [anon_sym_thread_local] = ACTIONS(2780), + [anon_sym___thread] = ACTIONS(2780), + [anon_sym_CG_EXTERN] = ACTIONS(2780), + [anon_sym_CG_INLINE] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2780), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2780), + [anon_sym_IBOutlet] = ACTIONS(2780), + [anon_sym_IBInspectable] = ACTIONS(2780), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2780), + [anon_sym_NS_INLINE] = ACTIONS(2780), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2780), + [anon_sym_OBJC_EXPORT] = ACTIONS(2780), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2780), + [anon_sym_const] = ACTIONS(2780), + [anon_sym_constexpr] = ACTIONS(2780), + [anon_sym_volatile] = ACTIONS(2780), + [anon_sym_restrict] = ACTIONS(2780), + [anon_sym___restrict__] = ACTIONS(2780), + [anon_sym__Atomic] = ACTIONS(2780), + [anon_sym__Noreturn] = ACTIONS(2780), + [anon_sym__Nonnull] = ACTIONS(2780), + [anon_sym_nullable] = ACTIONS(2780), + [anon_sym__Complex] = ACTIONS(2780), + [anon_sym__Nullable] = ACTIONS(2780), + [anon_sym__Nullable_result] = ACTIONS(2780), + [anon_sym__Null_unspecified] = ACTIONS(2780), + [anon_sym___autoreleasing] = ACTIONS(2780), + [anon_sym___block] = ACTIONS(2780), + [anon_sym___bridge] = ACTIONS(2780), + [anon_sym___bridge_retained] = ACTIONS(2780), + [anon_sym___bridge_transfer] = ACTIONS(2780), + [anon_sym___complex] = ACTIONS(2780), + [anon_sym___const] = ACTIONS(2780), + [anon_sym___imag] = ACTIONS(2780), + [anon_sym___kindof] = ACTIONS(2780), + [anon_sym___nonnull] = ACTIONS(2780), + [anon_sym___nullable] = ACTIONS(2780), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2780), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2780), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2780), + [anon_sym___real] = ACTIONS(2780), + [anon_sym___strong] = ACTIONS(2780), + [anon_sym___unsafe_unretained] = ACTIONS(2780), + [anon_sym___unused] = ACTIONS(2780), + [anon_sym___weak] = ACTIONS(2780), + [anon_sym_alignas] = ACTIONS(2780), + [anon_sym__Alignas] = ACTIONS(2780), + [sym_primitive_type] = ACTIONS(2780), + [anon_sym_enum] = ACTIONS(2780), + [anon_sym_struct] = ACTIONS(2780), + [anon_sym_union] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_switch] = ACTIONS(2780), + [anon_sym_case] = ACTIONS(2780), + [anon_sym_default] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_in] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_break] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2780), + [anon_sym_goto] = ACTIONS(2780), + [anon_sym_DASH_DASH] = ACTIONS(2782), + [anon_sym_PLUS_PLUS] = ACTIONS(2782), + [anon_sym_sizeof] = ACTIONS(2780), + [anon_sym___alignof__] = ACTIONS(2780), + [anon_sym___alignof] = ACTIONS(2780), + [anon_sym__alignof] = ACTIONS(2780), + [anon_sym_alignof] = ACTIONS(2780), + [anon_sym__Alignof] = ACTIONS(2780), + [anon_sym_offsetof] = ACTIONS(2780), + [anon_sym__Generic] = ACTIONS(2780), + [anon_sym_asm] = ACTIONS(2780), + [anon_sym___asm__] = ACTIONS(2780), + [anon_sym___asm] = ACTIONS(2780), + [sym_number_literal] = ACTIONS(2782), + [anon_sym_L_SQUOTE] = ACTIONS(2782), + [anon_sym_u_SQUOTE] = ACTIONS(2782), + [anon_sym_U_SQUOTE] = ACTIONS(2782), + [anon_sym_u8_SQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2782), + [anon_sym_AT] = ACTIONS(2780), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_L_DQUOTE] = ACTIONS(2782), + [anon_sym_u_DQUOTE] = ACTIONS(2782), + [anon_sym_U_DQUOTE] = ACTIONS(2782), + [anon_sym_u8_DQUOTE] = ACTIONS(2782), + [sym_true] = ACTIONS(2780), + [sym_false] = ACTIONS(2780), + [anon_sym_NULL] = ACTIONS(2780), + [anon_sym_nullptr] = ACTIONS(2780), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2780), + [anon_sym___typeof] = ACTIONS(2780), + [anon_sym_typeof] = ACTIONS(2780), + [anon_sym_ATimport] = ACTIONS(2782), + [aux_sym_preproc_undef_token1] = ACTIONS(2780), + [anon_sym_POUND] = ACTIONS(2780), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2780), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2780), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2780), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2780), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE] = ACTIONS(2780), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_API_AVAILABLE] = ACTIONS(2780), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_API_DEPRECATED] = ACTIONS(2780), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2780), + [anon_sym___deprecated_msg] = ACTIONS(2780), + [anon_sym___deprecated_enum_msg] = ACTIONS(2780), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2780), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2780), + [anon_sym_ATprotocol] = ACTIONS(2782), + [anon_sym_ATinterface] = ACTIONS(2782), + [anon_sym_ATimplementation] = ACTIONS(2782), + [anon_sym_ATcompatibility_alias] = ACTIONS(2782), + [anon_sym_ATsynthesize] = ACTIONS(2782), + [anon_sym_ATdynamic] = ACTIONS(2782), + [anon_sym_ATtry] = ACTIONS(2782), + [anon_sym___try] = ACTIONS(2780), + [anon_sym_ATthrow] = ACTIONS(2782), + [anon_sym_ATselector] = ACTIONS(2782), + [anon_sym_ATavailable] = ACTIONS(2782), + [anon_sym___builtin_available] = ACTIONS(2780), + [anon_sym_va_arg] = ACTIONS(2780), + [anon_sym_ATencode] = ACTIONS(2782), + [anon_sym_ATsynchronized] = ACTIONS(2782), + [anon_sym_BOOL] = ACTIONS(2780), + [anon_sym_IMP] = ACTIONS(2780), + [anon_sym_SEL] = ACTIONS(2780), + [anon_sym_Class] = ACTIONS(2780), + [anon_sym_id] = ACTIONS(2780), + }, + [336] = { + [sym_identifier] = ACTIONS(2780), + [aux_sym_preproc_include_token1] = ACTIONS(2780), + [aux_sym_preproc_include_token2] = ACTIONS(2780), + [aux_sym_preproc_def_token1] = ACTIONS(2780), + [aux_sym_preproc_if_token1] = ACTIONS(2780), + [aux_sym_preproc_if_token2] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2780), + [aux_sym_preproc_else_token1] = ACTIONS(2780), + [aux_sym_preproc_elif_token1] = ACTIONS(2780), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2780), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2780), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2782), + [anon_sym_BANG] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(2780), + [anon_sym_STAR] = ACTIONS(2782), + [anon_sym_CARET] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym___extension__] = ACTIONS(2780), + [anon_sym_typedef] = ACTIONS(2780), + [anon_sym_extern] = ACTIONS(2780), + [anon_sym___attribute__] = ACTIONS(2780), + [anon_sym___attribute] = ACTIONS(2780), + [anon_sym_noreturn] = ACTIONS(2780), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym___declspec] = ACTIONS(2780), + [anon_sym___cdecl] = ACTIONS(2780), + [anon_sym___clrcall] = ACTIONS(2780), + [anon_sym___stdcall] = ACTIONS(2780), + [anon_sym___fastcall] = ACTIONS(2780), + [anon_sym___thiscall] = ACTIONS(2780), + [anon_sym___vectorcall] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_signed] = ACTIONS(2780), + [anon_sym_unsigned] = ACTIONS(2780), + [anon_sym_long] = ACTIONS(2780), + [anon_sym_short] = ACTIONS(2780), + [anon_sym_static] = ACTIONS(2780), + [anon_sym_ATautoreleasepool] = ACTIONS(2782), + [anon_sym_auto] = ACTIONS(2780), + [anon_sym_register] = ACTIONS(2780), + [anon_sym_inline] = ACTIONS(2780), + [anon_sym___inline] = ACTIONS(2780), + [anon_sym___inline__] = ACTIONS(2780), + [anon_sym___forceinline] = ACTIONS(2780), + [anon_sym_thread_local] = ACTIONS(2780), + [anon_sym___thread] = ACTIONS(2780), + [anon_sym_CG_EXTERN] = ACTIONS(2780), + [anon_sym_CG_INLINE] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2780), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2780), + [anon_sym_IBOutlet] = ACTIONS(2780), + [anon_sym_IBInspectable] = ACTIONS(2780), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2780), + [anon_sym_NS_INLINE] = ACTIONS(2780), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2780), + [anon_sym_OBJC_EXPORT] = ACTIONS(2780), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2780), + [anon_sym_const] = ACTIONS(2780), + [anon_sym_constexpr] = ACTIONS(2780), + [anon_sym_volatile] = ACTIONS(2780), + [anon_sym_restrict] = ACTIONS(2780), + [anon_sym___restrict__] = ACTIONS(2780), + [anon_sym__Atomic] = ACTIONS(2780), + [anon_sym__Noreturn] = ACTIONS(2780), + [anon_sym__Nonnull] = ACTIONS(2780), + [anon_sym_nullable] = ACTIONS(2780), + [anon_sym__Complex] = ACTIONS(2780), + [anon_sym__Nullable] = ACTIONS(2780), + [anon_sym__Nullable_result] = ACTIONS(2780), + [anon_sym__Null_unspecified] = ACTIONS(2780), + [anon_sym___autoreleasing] = ACTIONS(2780), + [anon_sym___block] = ACTIONS(2780), + [anon_sym___bridge] = ACTIONS(2780), + [anon_sym___bridge_retained] = ACTIONS(2780), + [anon_sym___bridge_transfer] = ACTIONS(2780), + [anon_sym___complex] = ACTIONS(2780), + [anon_sym___const] = ACTIONS(2780), + [anon_sym___imag] = ACTIONS(2780), + [anon_sym___kindof] = ACTIONS(2780), + [anon_sym___nonnull] = ACTIONS(2780), + [anon_sym___nullable] = ACTIONS(2780), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2780), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2780), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2780), + [anon_sym___real] = ACTIONS(2780), + [anon_sym___strong] = ACTIONS(2780), + [anon_sym___unsafe_unretained] = ACTIONS(2780), + [anon_sym___unused] = ACTIONS(2780), + [anon_sym___weak] = ACTIONS(2780), + [anon_sym_alignas] = ACTIONS(2780), + [anon_sym__Alignas] = ACTIONS(2780), + [sym_primitive_type] = ACTIONS(2780), + [anon_sym_enum] = ACTIONS(2780), + [anon_sym_struct] = ACTIONS(2780), + [anon_sym_union] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_switch] = ACTIONS(2780), + [anon_sym_case] = ACTIONS(2780), + [anon_sym_default] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_in] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_break] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2780), + [anon_sym_goto] = ACTIONS(2780), + [anon_sym_DASH_DASH] = ACTIONS(2782), + [anon_sym_PLUS_PLUS] = ACTIONS(2782), + [anon_sym_sizeof] = ACTIONS(2780), + [anon_sym___alignof__] = ACTIONS(2780), + [anon_sym___alignof] = ACTIONS(2780), + [anon_sym__alignof] = ACTIONS(2780), + [anon_sym_alignof] = ACTIONS(2780), + [anon_sym__Alignof] = ACTIONS(2780), + [anon_sym_offsetof] = ACTIONS(2780), + [anon_sym__Generic] = ACTIONS(2780), + [anon_sym_asm] = ACTIONS(2780), + [anon_sym___asm__] = ACTIONS(2780), + [anon_sym___asm] = ACTIONS(2780), + [sym_number_literal] = ACTIONS(2782), + [anon_sym_L_SQUOTE] = ACTIONS(2782), + [anon_sym_u_SQUOTE] = ACTIONS(2782), + [anon_sym_U_SQUOTE] = ACTIONS(2782), + [anon_sym_u8_SQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2782), + [anon_sym_AT] = ACTIONS(2780), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_L_DQUOTE] = ACTIONS(2782), + [anon_sym_u_DQUOTE] = ACTIONS(2782), + [anon_sym_U_DQUOTE] = ACTIONS(2782), + [anon_sym_u8_DQUOTE] = ACTIONS(2782), + [sym_true] = ACTIONS(2780), + [sym_false] = ACTIONS(2780), + [anon_sym_NULL] = ACTIONS(2780), + [anon_sym_nullptr] = ACTIONS(2780), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2780), + [anon_sym___typeof] = ACTIONS(2780), + [anon_sym_typeof] = ACTIONS(2780), + [anon_sym_ATimport] = ACTIONS(2782), + [aux_sym_preproc_undef_token1] = ACTIONS(2780), + [anon_sym_POUND] = ACTIONS(2780), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2780), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2780), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2780), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2780), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE] = ACTIONS(2780), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_API_AVAILABLE] = ACTIONS(2780), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_API_DEPRECATED] = ACTIONS(2780), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2780), + [anon_sym___deprecated_msg] = ACTIONS(2780), + [anon_sym___deprecated_enum_msg] = ACTIONS(2780), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2780), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2780), + [anon_sym_ATprotocol] = ACTIONS(2782), + [anon_sym_ATinterface] = ACTIONS(2782), + [anon_sym_ATimplementation] = ACTIONS(2782), + [anon_sym_ATcompatibility_alias] = ACTIONS(2782), + [anon_sym_ATsynthesize] = ACTIONS(2782), + [anon_sym_ATdynamic] = ACTIONS(2782), + [anon_sym_ATtry] = ACTIONS(2782), + [anon_sym___try] = ACTIONS(2780), + [anon_sym_ATthrow] = ACTIONS(2782), + [anon_sym_ATselector] = ACTIONS(2782), + [anon_sym_ATavailable] = ACTIONS(2782), + [anon_sym___builtin_available] = ACTIONS(2780), + [anon_sym_va_arg] = ACTIONS(2780), + [anon_sym_ATencode] = ACTIONS(2782), + [anon_sym_ATsynchronized] = ACTIONS(2782), + [anon_sym_BOOL] = ACTIONS(2780), + [anon_sym_IMP] = ACTIONS(2780), + [anon_sym_SEL] = ACTIONS(2780), + [anon_sym_Class] = ACTIONS(2780), + [anon_sym_id] = ACTIONS(2780), + }, + [337] = { + [sym_identifier] = ACTIONS(2784), + [aux_sym_preproc_include_token1] = ACTIONS(2784), + [aux_sym_preproc_include_token2] = ACTIONS(2784), + [aux_sym_preproc_def_token1] = ACTIONS(2784), + [aux_sym_preproc_if_token1] = ACTIONS(2784), + [aux_sym_preproc_if_token2] = ACTIONS(2784), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2784), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2784), + [aux_sym_preproc_else_token1] = ACTIONS(2784), + [aux_sym_preproc_elif_token1] = ACTIONS(2784), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2784), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2784), + [sym_preproc_directive] = ACTIONS(2784), + [anon_sym_LPAREN2] = ACTIONS(2786), + [anon_sym_BANG] = ACTIONS(2786), + [anon_sym_TILDE] = ACTIONS(2786), + [anon_sym_DASH] = ACTIONS(2784), + [anon_sym_PLUS] = ACTIONS(2784), + [anon_sym_STAR] = ACTIONS(2786), + [anon_sym_CARET] = ACTIONS(2786), + [anon_sym_AMP] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2784), + [anon_sym_extern] = ACTIONS(2784), + [anon_sym___attribute__] = ACTIONS(2784), + [anon_sym___attribute] = ACTIONS(2784), + [anon_sym_noreturn] = ACTIONS(2784), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym___declspec] = ACTIONS(2784), + [anon_sym___cdecl] = ACTIONS(2784), + [anon_sym___clrcall] = ACTIONS(2784), + [anon_sym___stdcall] = ACTIONS(2784), + [anon_sym___fastcall] = ACTIONS(2784), + [anon_sym___thiscall] = ACTIONS(2784), + [anon_sym___vectorcall] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_signed] = ACTIONS(2784), + [anon_sym_unsigned] = ACTIONS(2784), + [anon_sym_long] = ACTIONS(2784), + [anon_sym_short] = ACTIONS(2784), + [anon_sym_static] = ACTIONS(2784), + [anon_sym_ATautoreleasepool] = ACTIONS(2786), + [anon_sym_auto] = ACTIONS(2784), + [anon_sym_register] = ACTIONS(2784), + [anon_sym_inline] = ACTIONS(2784), + [anon_sym___inline] = ACTIONS(2784), + [anon_sym___inline__] = ACTIONS(2784), + [anon_sym___forceinline] = ACTIONS(2784), + [anon_sym_thread_local] = ACTIONS(2784), + [anon_sym___thread] = ACTIONS(2784), + [anon_sym_CG_EXTERN] = ACTIONS(2784), + [anon_sym_CG_INLINE] = ACTIONS(2784), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2784), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2784), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2784), + [anon_sym_IBOutlet] = ACTIONS(2784), + [anon_sym_IBInspectable] = ACTIONS(2784), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2784), + [anon_sym_NS_INLINE] = ACTIONS(2784), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2784), + [anon_sym_OBJC_EXPORT] = ACTIONS(2784), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2784), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2784), + [anon_sym_const] = ACTIONS(2784), + [anon_sym_constexpr] = ACTIONS(2784), + [anon_sym_volatile] = ACTIONS(2784), + [anon_sym_restrict] = ACTIONS(2784), + [anon_sym___restrict__] = ACTIONS(2784), + [anon_sym__Atomic] = ACTIONS(2784), + [anon_sym__Noreturn] = ACTIONS(2784), + [anon_sym__Nonnull] = ACTIONS(2784), + [anon_sym_nullable] = ACTIONS(2784), + [anon_sym__Complex] = ACTIONS(2784), + [anon_sym__Nullable] = ACTIONS(2784), + [anon_sym__Nullable_result] = ACTIONS(2784), + [anon_sym__Null_unspecified] = ACTIONS(2784), + [anon_sym___autoreleasing] = ACTIONS(2784), + [anon_sym___block] = ACTIONS(2784), + [anon_sym___bridge] = ACTIONS(2784), + [anon_sym___bridge_retained] = ACTIONS(2784), + [anon_sym___bridge_transfer] = ACTIONS(2784), + [anon_sym___complex] = ACTIONS(2784), + [anon_sym___const] = ACTIONS(2784), + [anon_sym___imag] = ACTIONS(2784), + [anon_sym___kindof] = ACTIONS(2784), + [anon_sym___nonnull] = ACTIONS(2784), + [anon_sym___nullable] = ACTIONS(2784), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2784), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2784), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2784), + [anon_sym___real] = ACTIONS(2784), + [anon_sym___strong] = ACTIONS(2784), + [anon_sym___unsafe_unretained] = ACTIONS(2784), + [anon_sym___unused] = ACTIONS(2784), + [anon_sym___weak] = ACTIONS(2784), + [anon_sym_alignas] = ACTIONS(2784), + [anon_sym__Alignas] = ACTIONS(2784), + [sym_primitive_type] = ACTIONS(2784), + [anon_sym_enum] = ACTIONS(2784), + [anon_sym_struct] = ACTIONS(2784), + [anon_sym_union] = ACTIONS(2784), + [anon_sym_if] = ACTIONS(2784), + [anon_sym_switch] = ACTIONS(2784), + [anon_sym_case] = ACTIONS(2784), + [anon_sym_default] = ACTIONS(2784), + [anon_sym_while] = ACTIONS(2784), + [anon_sym_do] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2784), + [anon_sym_in] = ACTIONS(2784), + [anon_sym_return] = ACTIONS(2784), + [anon_sym_break] = ACTIONS(2784), + [anon_sym_continue] = ACTIONS(2784), + [anon_sym_goto] = ACTIONS(2784), + [anon_sym_DASH_DASH] = ACTIONS(2786), + [anon_sym_PLUS_PLUS] = ACTIONS(2786), + [anon_sym_sizeof] = ACTIONS(2784), + [anon_sym___alignof__] = ACTIONS(2784), + [anon_sym___alignof] = ACTIONS(2784), + [anon_sym__alignof] = ACTIONS(2784), + [anon_sym_alignof] = ACTIONS(2784), + [anon_sym__Alignof] = ACTIONS(2784), + [anon_sym_offsetof] = ACTIONS(2784), + [anon_sym__Generic] = ACTIONS(2784), + [anon_sym_asm] = ACTIONS(2784), + [anon_sym___asm__] = ACTIONS(2784), + [anon_sym___asm] = ACTIONS(2784), + [sym_number_literal] = ACTIONS(2786), + [anon_sym_L_SQUOTE] = ACTIONS(2786), + [anon_sym_u_SQUOTE] = ACTIONS(2786), + [anon_sym_U_SQUOTE] = ACTIONS(2786), + [anon_sym_u8_SQUOTE] = ACTIONS(2786), + [anon_sym_SQUOTE] = ACTIONS(2786), + [anon_sym_AT] = ACTIONS(2784), + [anon_sym_DQUOTE] = ACTIONS(2786), + [anon_sym_L_DQUOTE] = ACTIONS(2786), + [anon_sym_u_DQUOTE] = ACTIONS(2786), + [anon_sym_U_DQUOTE] = ACTIONS(2786), + [anon_sym_u8_DQUOTE] = ACTIONS(2786), + [sym_true] = ACTIONS(2784), + [sym_false] = ACTIONS(2784), + [anon_sym_NULL] = ACTIONS(2784), + [anon_sym_nullptr] = ACTIONS(2784), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2784), + [anon_sym___typeof] = ACTIONS(2784), + [anon_sym_typeof] = ACTIONS(2784), + [anon_sym_ATimport] = ACTIONS(2786), + [aux_sym_preproc_undef_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(2784), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2784), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2784), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2784), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2784), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2784), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2784), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2784), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2784), + [anon_sym_NS_AVAILABLE] = ACTIONS(2784), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2784), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_API_AVAILABLE] = ACTIONS(2784), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_API_DEPRECATED] = ACTIONS(2784), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2784), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2784), + [anon_sym___deprecated_msg] = ACTIONS(2784), + [anon_sym___deprecated_enum_msg] = ACTIONS(2784), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2784), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2784), + [anon_sym_ATprotocol] = ACTIONS(2786), + [anon_sym_ATinterface] = ACTIONS(2786), + [anon_sym_ATimplementation] = ACTIONS(2786), + [anon_sym_ATcompatibility_alias] = ACTIONS(2786), + [anon_sym_ATsynthesize] = ACTIONS(2786), + [anon_sym_ATdynamic] = ACTIONS(2786), + [anon_sym_ATtry] = ACTIONS(2786), + [anon_sym___try] = ACTIONS(2784), + [anon_sym_ATthrow] = ACTIONS(2786), + [anon_sym_ATselector] = ACTIONS(2786), + [anon_sym_ATavailable] = ACTIONS(2786), + [anon_sym___builtin_available] = ACTIONS(2784), + [anon_sym_va_arg] = ACTIONS(2784), + [anon_sym_ATencode] = ACTIONS(2786), + [anon_sym_ATsynchronized] = ACTIONS(2786), + [anon_sym_BOOL] = ACTIONS(2784), + [anon_sym_IMP] = ACTIONS(2784), + [anon_sym_SEL] = ACTIONS(2784), + [anon_sym_Class] = ACTIONS(2784), + [anon_sym_id] = ACTIONS(2784), + }, + [338] = { + [sym_identifier] = ACTIONS(2784), + [aux_sym_preproc_include_token1] = ACTIONS(2784), + [aux_sym_preproc_include_token2] = ACTIONS(2784), + [aux_sym_preproc_def_token1] = ACTIONS(2784), + [aux_sym_preproc_if_token1] = ACTIONS(2784), + [aux_sym_preproc_if_token2] = ACTIONS(2784), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2784), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2784), + [aux_sym_preproc_else_token1] = ACTIONS(2784), + [aux_sym_preproc_elif_token1] = ACTIONS(2784), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2784), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2784), + [sym_preproc_directive] = ACTIONS(2784), + [anon_sym_LPAREN2] = ACTIONS(2786), + [anon_sym_BANG] = ACTIONS(2786), + [anon_sym_TILDE] = ACTIONS(2786), + [anon_sym_DASH] = ACTIONS(2784), + [anon_sym_PLUS] = ACTIONS(2784), + [anon_sym_STAR] = ACTIONS(2786), + [anon_sym_CARET] = ACTIONS(2786), + [anon_sym_AMP] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2784), + [anon_sym_extern] = ACTIONS(2784), + [anon_sym___attribute__] = ACTIONS(2784), + [anon_sym___attribute] = ACTIONS(2784), + [anon_sym_noreturn] = ACTIONS(2784), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym___declspec] = ACTIONS(2784), + [anon_sym___cdecl] = ACTIONS(2784), + [anon_sym___clrcall] = ACTIONS(2784), + [anon_sym___stdcall] = ACTIONS(2784), + [anon_sym___fastcall] = ACTIONS(2784), + [anon_sym___thiscall] = ACTIONS(2784), + [anon_sym___vectorcall] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_signed] = ACTIONS(2784), + [anon_sym_unsigned] = ACTIONS(2784), + [anon_sym_long] = ACTIONS(2784), + [anon_sym_short] = ACTIONS(2784), + [anon_sym_static] = ACTIONS(2784), + [anon_sym_ATautoreleasepool] = ACTIONS(2786), + [anon_sym_auto] = ACTIONS(2784), + [anon_sym_register] = ACTIONS(2784), + [anon_sym_inline] = ACTIONS(2784), + [anon_sym___inline] = ACTIONS(2784), + [anon_sym___inline__] = ACTIONS(2784), + [anon_sym___forceinline] = ACTIONS(2784), + [anon_sym_thread_local] = ACTIONS(2784), + [anon_sym___thread] = ACTIONS(2784), + [anon_sym_CG_EXTERN] = ACTIONS(2784), + [anon_sym_CG_INLINE] = ACTIONS(2784), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2784), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2784), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2784), + [anon_sym_IBOutlet] = ACTIONS(2784), + [anon_sym_IBInspectable] = ACTIONS(2784), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2784), + [anon_sym_NS_INLINE] = ACTIONS(2784), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2784), + [anon_sym_OBJC_EXPORT] = ACTIONS(2784), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2784), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2784), + [anon_sym_const] = ACTIONS(2784), + [anon_sym_constexpr] = ACTIONS(2784), + [anon_sym_volatile] = ACTIONS(2784), + [anon_sym_restrict] = ACTIONS(2784), + [anon_sym___restrict__] = ACTIONS(2784), + [anon_sym__Atomic] = ACTIONS(2784), + [anon_sym__Noreturn] = ACTIONS(2784), + [anon_sym__Nonnull] = ACTIONS(2784), + [anon_sym_nullable] = ACTIONS(2784), + [anon_sym__Complex] = ACTIONS(2784), + [anon_sym__Nullable] = ACTIONS(2784), + [anon_sym__Nullable_result] = ACTIONS(2784), + [anon_sym__Null_unspecified] = ACTIONS(2784), + [anon_sym___autoreleasing] = ACTIONS(2784), + [anon_sym___block] = ACTIONS(2784), + [anon_sym___bridge] = ACTIONS(2784), + [anon_sym___bridge_retained] = ACTIONS(2784), + [anon_sym___bridge_transfer] = ACTIONS(2784), + [anon_sym___complex] = ACTIONS(2784), + [anon_sym___const] = ACTIONS(2784), + [anon_sym___imag] = ACTIONS(2784), + [anon_sym___kindof] = ACTIONS(2784), + [anon_sym___nonnull] = ACTIONS(2784), + [anon_sym___nullable] = ACTIONS(2784), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2784), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2784), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2784), + [anon_sym___real] = ACTIONS(2784), + [anon_sym___strong] = ACTIONS(2784), + [anon_sym___unsafe_unretained] = ACTIONS(2784), + [anon_sym___unused] = ACTIONS(2784), + [anon_sym___weak] = ACTIONS(2784), + [anon_sym_alignas] = ACTIONS(2784), + [anon_sym__Alignas] = ACTIONS(2784), + [sym_primitive_type] = ACTIONS(2784), + [anon_sym_enum] = ACTIONS(2784), + [anon_sym_struct] = ACTIONS(2784), + [anon_sym_union] = ACTIONS(2784), + [anon_sym_if] = ACTIONS(2784), + [anon_sym_switch] = ACTIONS(2784), + [anon_sym_case] = ACTIONS(2784), + [anon_sym_default] = ACTIONS(2784), + [anon_sym_while] = ACTIONS(2784), + [anon_sym_do] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2784), + [anon_sym_in] = ACTIONS(2784), + [anon_sym_return] = ACTIONS(2784), + [anon_sym_break] = ACTIONS(2784), + [anon_sym_continue] = ACTIONS(2784), + [anon_sym_goto] = ACTIONS(2784), + [anon_sym_DASH_DASH] = ACTIONS(2786), + [anon_sym_PLUS_PLUS] = ACTIONS(2786), + [anon_sym_sizeof] = ACTIONS(2784), + [anon_sym___alignof__] = ACTIONS(2784), + [anon_sym___alignof] = ACTIONS(2784), + [anon_sym__alignof] = ACTIONS(2784), + [anon_sym_alignof] = ACTIONS(2784), + [anon_sym__Alignof] = ACTIONS(2784), + [anon_sym_offsetof] = ACTIONS(2784), + [anon_sym__Generic] = ACTIONS(2784), + [anon_sym_asm] = ACTIONS(2784), + [anon_sym___asm__] = ACTIONS(2784), + [anon_sym___asm] = ACTIONS(2784), + [sym_number_literal] = ACTIONS(2786), + [anon_sym_L_SQUOTE] = ACTIONS(2786), + [anon_sym_u_SQUOTE] = ACTIONS(2786), + [anon_sym_U_SQUOTE] = ACTIONS(2786), + [anon_sym_u8_SQUOTE] = ACTIONS(2786), + [anon_sym_SQUOTE] = ACTIONS(2786), + [anon_sym_AT] = ACTIONS(2784), + [anon_sym_DQUOTE] = ACTIONS(2786), + [anon_sym_L_DQUOTE] = ACTIONS(2786), + [anon_sym_u_DQUOTE] = ACTIONS(2786), + [anon_sym_U_DQUOTE] = ACTIONS(2786), + [anon_sym_u8_DQUOTE] = ACTIONS(2786), + [sym_true] = ACTIONS(2784), + [sym_false] = ACTIONS(2784), + [anon_sym_NULL] = ACTIONS(2784), + [anon_sym_nullptr] = ACTIONS(2784), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2784), + [anon_sym___typeof] = ACTIONS(2784), + [anon_sym_typeof] = ACTIONS(2784), + [anon_sym_ATimport] = ACTIONS(2786), + [aux_sym_preproc_undef_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(2784), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2784), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2784), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2784), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2784), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2784), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2784), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2784), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2784), + [anon_sym_NS_AVAILABLE] = ACTIONS(2784), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2784), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_API_AVAILABLE] = ACTIONS(2784), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_API_DEPRECATED] = ACTIONS(2784), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2784), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2784), + [anon_sym___deprecated_msg] = ACTIONS(2784), + [anon_sym___deprecated_enum_msg] = ACTIONS(2784), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2784), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2784), + [anon_sym_ATprotocol] = ACTIONS(2786), + [anon_sym_ATinterface] = ACTIONS(2786), + [anon_sym_ATimplementation] = ACTIONS(2786), + [anon_sym_ATcompatibility_alias] = ACTIONS(2786), + [anon_sym_ATsynthesize] = ACTIONS(2786), + [anon_sym_ATdynamic] = ACTIONS(2786), + [anon_sym_ATtry] = ACTIONS(2786), + [anon_sym___try] = ACTIONS(2784), + [anon_sym_ATthrow] = ACTIONS(2786), + [anon_sym_ATselector] = ACTIONS(2786), + [anon_sym_ATavailable] = ACTIONS(2786), + [anon_sym___builtin_available] = ACTIONS(2784), + [anon_sym_va_arg] = ACTIONS(2784), + [anon_sym_ATencode] = ACTIONS(2786), + [anon_sym_ATsynchronized] = ACTIONS(2786), + [anon_sym_BOOL] = ACTIONS(2784), + [anon_sym_IMP] = ACTIONS(2784), + [anon_sym_SEL] = ACTIONS(2784), + [anon_sym_Class] = ACTIONS(2784), + [anon_sym_id] = ACTIONS(2784), + }, + [339] = { + [sym_identifier] = ACTIONS(2788), + [aux_sym_preproc_include_token1] = ACTIONS(2788), + [aux_sym_preproc_include_token2] = ACTIONS(2788), + [aux_sym_preproc_def_token1] = ACTIONS(2788), + [aux_sym_preproc_if_token1] = ACTIONS(2788), + [aux_sym_preproc_if_token2] = ACTIONS(2788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2788), + [aux_sym_preproc_else_token1] = ACTIONS(2788), + [aux_sym_preproc_elif_token1] = ACTIONS(2788), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2788), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2788), + [sym_preproc_directive] = ACTIONS(2788), + [anon_sym_LPAREN2] = ACTIONS(2790), + [anon_sym_BANG] = ACTIONS(2790), + [anon_sym_TILDE] = ACTIONS(2790), + [anon_sym_DASH] = ACTIONS(2788), + [anon_sym_PLUS] = ACTIONS(2788), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_CARET] = ACTIONS(2790), + [anon_sym_AMP] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym___extension__] = ACTIONS(2788), + [anon_sym_typedef] = ACTIONS(2788), + [anon_sym_extern] = ACTIONS(2788), + [anon_sym___attribute__] = ACTIONS(2788), + [anon_sym___attribute] = ACTIONS(2788), + [anon_sym_noreturn] = ACTIONS(2788), + [anon_sym_LBRACK] = ACTIONS(2790), + [anon_sym___declspec] = ACTIONS(2788), + [anon_sym___cdecl] = ACTIONS(2788), + [anon_sym___clrcall] = ACTIONS(2788), + [anon_sym___stdcall] = ACTIONS(2788), + [anon_sym___fastcall] = ACTIONS(2788), + [anon_sym___thiscall] = ACTIONS(2788), + [anon_sym___vectorcall] = ACTIONS(2788), + [anon_sym_LBRACE] = ACTIONS(2790), + [anon_sym_signed] = ACTIONS(2788), + [anon_sym_unsigned] = ACTIONS(2788), + [anon_sym_long] = ACTIONS(2788), + [anon_sym_short] = ACTIONS(2788), + [anon_sym_static] = ACTIONS(2788), + [anon_sym_ATautoreleasepool] = ACTIONS(2790), + [anon_sym_auto] = ACTIONS(2788), + [anon_sym_register] = ACTIONS(2788), + [anon_sym_inline] = ACTIONS(2788), + [anon_sym___inline] = ACTIONS(2788), + [anon_sym___inline__] = ACTIONS(2788), + [anon_sym___forceinline] = ACTIONS(2788), + [anon_sym_thread_local] = ACTIONS(2788), + [anon_sym___thread] = ACTIONS(2788), + [anon_sym_CG_EXTERN] = ACTIONS(2788), + [anon_sym_CG_INLINE] = ACTIONS(2788), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2788), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2788), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2788), + [anon_sym_IBOutlet] = ACTIONS(2788), + [anon_sym_IBInspectable] = ACTIONS(2788), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2788), + [anon_sym_NS_INLINE] = ACTIONS(2788), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2788), + [anon_sym_OBJC_EXPORT] = ACTIONS(2788), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2788), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2788), + [anon_sym_const] = ACTIONS(2788), + [anon_sym_constexpr] = ACTIONS(2788), + [anon_sym_volatile] = ACTIONS(2788), + [anon_sym_restrict] = ACTIONS(2788), + [anon_sym___restrict__] = ACTIONS(2788), + [anon_sym__Atomic] = ACTIONS(2788), + [anon_sym__Noreturn] = ACTIONS(2788), + [anon_sym__Nonnull] = ACTIONS(2788), + [anon_sym_nullable] = ACTIONS(2788), + [anon_sym__Complex] = ACTIONS(2788), + [anon_sym__Nullable] = ACTIONS(2788), + [anon_sym__Nullable_result] = ACTIONS(2788), + [anon_sym__Null_unspecified] = ACTIONS(2788), + [anon_sym___autoreleasing] = ACTIONS(2788), + [anon_sym___block] = ACTIONS(2788), + [anon_sym___bridge] = ACTIONS(2788), + [anon_sym___bridge_retained] = ACTIONS(2788), + [anon_sym___bridge_transfer] = ACTIONS(2788), + [anon_sym___complex] = ACTIONS(2788), + [anon_sym___const] = ACTIONS(2788), + [anon_sym___imag] = ACTIONS(2788), + [anon_sym___kindof] = ACTIONS(2788), + [anon_sym___nonnull] = ACTIONS(2788), + [anon_sym___nullable] = ACTIONS(2788), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2788), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2788), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2788), + [anon_sym___real] = ACTIONS(2788), + [anon_sym___strong] = ACTIONS(2788), + [anon_sym___unsafe_unretained] = ACTIONS(2788), + [anon_sym___unused] = ACTIONS(2788), + [anon_sym___weak] = ACTIONS(2788), + [anon_sym_alignas] = ACTIONS(2788), + [anon_sym__Alignas] = ACTIONS(2788), + [sym_primitive_type] = ACTIONS(2788), + [anon_sym_enum] = ACTIONS(2788), + [anon_sym_struct] = ACTIONS(2788), + [anon_sym_union] = ACTIONS(2788), + [anon_sym_if] = ACTIONS(2788), + [anon_sym_switch] = ACTIONS(2788), + [anon_sym_case] = ACTIONS(2788), + [anon_sym_default] = ACTIONS(2788), + [anon_sym_while] = ACTIONS(2788), + [anon_sym_do] = ACTIONS(2788), + [anon_sym_for] = ACTIONS(2788), + [anon_sym_in] = ACTIONS(2788), + [anon_sym_return] = ACTIONS(2788), + [anon_sym_break] = ACTIONS(2788), + [anon_sym_continue] = ACTIONS(2788), + [anon_sym_goto] = ACTIONS(2788), + [anon_sym_DASH_DASH] = ACTIONS(2790), + [anon_sym_PLUS_PLUS] = ACTIONS(2790), + [anon_sym_sizeof] = ACTIONS(2788), + [anon_sym___alignof__] = ACTIONS(2788), + [anon_sym___alignof] = ACTIONS(2788), + [anon_sym__alignof] = ACTIONS(2788), + [anon_sym_alignof] = ACTIONS(2788), + [anon_sym__Alignof] = ACTIONS(2788), + [anon_sym_offsetof] = ACTIONS(2788), + [anon_sym__Generic] = ACTIONS(2788), + [anon_sym_asm] = ACTIONS(2788), + [anon_sym___asm__] = ACTIONS(2788), + [anon_sym___asm] = ACTIONS(2788), + [sym_number_literal] = ACTIONS(2790), + [anon_sym_L_SQUOTE] = ACTIONS(2790), + [anon_sym_u_SQUOTE] = ACTIONS(2790), + [anon_sym_U_SQUOTE] = ACTIONS(2790), + [anon_sym_u8_SQUOTE] = ACTIONS(2790), + [anon_sym_SQUOTE] = ACTIONS(2790), + [anon_sym_AT] = ACTIONS(2788), + [anon_sym_DQUOTE] = ACTIONS(2790), + [anon_sym_L_DQUOTE] = ACTIONS(2790), + [anon_sym_u_DQUOTE] = ACTIONS(2790), + [anon_sym_U_DQUOTE] = ACTIONS(2790), + [anon_sym_u8_DQUOTE] = ACTIONS(2790), + [sym_true] = ACTIONS(2788), + [sym_false] = ACTIONS(2788), + [anon_sym_NULL] = ACTIONS(2788), + [anon_sym_nullptr] = ACTIONS(2788), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2788), + [anon_sym___typeof] = ACTIONS(2788), + [anon_sym_typeof] = ACTIONS(2788), + [anon_sym_ATimport] = ACTIONS(2790), + [aux_sym_preproc_undef_token1] = ACTIONS(2788), + [anon_sym_POUND] = ACTIONS(2788), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2788), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2788), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2788), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2788), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2788), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2788), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2788), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2788), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2788), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2788), + [anon_sym_NS_AVAILABLE] = ACTIONS(2788), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2788), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2788), + [anon_sym_API_AVAILABLE] = ACTIONS(2788), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2788), + [anon_sym_API_DEPRECATED] = ACTIONS(2788), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2788), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2788), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2788), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2788), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2788), + [anon_sym___deprecated_msg] = ACTIONS(2788), + [anon_sym___deprecated_enum_msg] = ACTIONS(2788), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2788), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2788), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2788), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2788), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2788), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2788), + [anon_sym_ATprotocol] = ACTIONS(2790), + [anon_sym_ATinterface] = ACTIONS(2790), + [anon_sym_ATimplementation] = ACTIONS(2790), + [anon_sym_ATcompatibility_alias] = ACTIONS(2790), + [anon_sym_ATsynthesize] = ACTIONS(2790), + [anon_sym_ATdynamic] = ACTIONS(2790), + [anon_sym_ATtry] = ACTIONS(2790), + [anon_sym___try] = ACTIONS(2788), + [anon_sym_ATthrow] = ACTIONS(2790), + [anon_sym_ATselector] = ACTIONS(2790), + [anon_sym_ATavailable] = ACTIONS(2790), + [anon_sym___builtin_available] = ACTIONS(2788), + [anon_sym_va_arg] = ACTIONS(2788), + [anon_sym_ATencode] = ACTIONS(2790), + [anon_sym_ATsynchronized] = ACTIONS(2790), + [anon_sym_BOOL] = ACTIONS(2788), + [anon_sym_IMP] = ACTIONS(2788), + [anon_sym_SEL] = ACTIONS(2788), + [anon_sym_Class] = ACTIONS(2788), + [anon_sym_id] = ACTIONS(2788), + }, + [340] = { + [sym_identifier] = ACTIONS(2792), + [aux_sym_preproc_include_token1] = ACTIONS(2792), + [aux_sym_preproc_include_token2] = ACTIONS(2792), + [aux_sym_preproc_def_token1] = ACTIONS(2792), + [aux_sym_preproc_if_token1] = ACTIONS(2792), + [aux_sym_preproc_if_token2] = ACTIONS(2792), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2792), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2792), + [aux_sym_preproc_else_token1] = ACTIONS(2792), + [aux_sym_preproc_elif_token1] = ACTIONS(2792), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2792), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2792), + [sym_preproc_directive] = ACTIONS(2792), + [anon_sym_LPAREN2] = ACTIONS(2794), + [anon_sym_BANG] = ACTIONS(2794), + [anon_sym_TILDE] = ACTIONS(2794), + [anon_sym_DASH] = ACTIONS(2792), + [anon_sym_PLUS] = ACTIONS(2792), + [anon_sym_STAR] = ACTIONS(2794), + [anon_sym_CARET] = ACTIONS(2794), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym___extension__] = ACTIONS(2792), + [anon_sym_typedef] = ACTIONS(2792), + [anon_sym_extern] = ACTIONS(2792), + [anon_sym___attribute__] = ACTIONS(2792), + [anon_sym___attribute] = ACTIONS(2792), + [anon_sym_noreturn] = ACTIONS(2792), + [anon_sym_LBRACK] = ACTIONS(2794), + [anon_sym___declspec] = ACTIONS(2792), + [anon_sym___cdecl] = ACTIONS(2792), + [anon_sym___clrcall] = ACTIONS(2792), + [anon_sym___stdcall] = ACTIONS(2792), + [anon_sym___fastcall] = ACTIONS(2792), + [anon_sym___thiscall] = ACTIONS(2792), + [anon_sym___vectorcall] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_signed] = ACTIONS(2792), + [anon_sym_unsigned] = ACTIONS(2792), + [anon_sym_long] = ACTIONS(2792), + [anon_sym_short] = ACTIONS(2792), + [anon_sym_static] = ACTIONS(2792), + [anon_sym_ATautoreleasepool] = ACTIONS(2794), + [anon_sym_auto] = ACTIONS(2792), + [anon_sym_register] = ACTIONS(2792), + [anon_sym_inline] = ACTIONS(2792), + [anon_sym___inline] = ACTIONS(2792), + [anon_sym___inline__] = ACTIONS(2792), + [anon_sym___forceinline] = ACTIONS(2792), + [anon_sym_thread_local] = ACTIONS(2792), + [anon_sym___thread] = ACTIONS(2792), + [anon_sym_CG_EXTERN] = ACTIONS(2792), + [anon_sym_CG_INLINE] = ACTIONS(2792), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2792), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2792), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2792), + [anon_sym_IBOutlet] = ACTIONS(2792), + [anon_sym_IBInspectable] = ACTIONS(2792), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2792), + [anon_sym_NS_INLINE] = ACTIONS(2792), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2792), + [anon_sym_OBJC_EXPORT] = ACTIONS(2792), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2792), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2792), + [anon_sym_const] = ACTIONS(2792), + [anon_sym_constexpr] = ACTIONS(2792), + [anon_sym_volatile] = ACTIONS(2792), + [anon_sym_restrict] = ACTIONS(2792), + [anon_sym___restrict__] = ACTIONS(2792), + [anon_sym__Atomic] = ACTIONS(2792), + [anon_sym__Noreturn] = ACTIONS(2792), + [anon_sym__Nonnull] = ACTIONS(2792), + [anon_sym_nullable] = ACTIONS(2792), + [anon_sym__Complex] = ACTIONS(2792), + [anon_sym__Nullable] = ACTIONS(2792), + [anon_sym__Nullable_result] = ACTIONS(2792), + [anon_sym__Null_unspecified] = ACTIONS(2792), + [anon_sym___autoreleasing] = ACTIONS(2792), + [anon_sym___block] = ACTIONS(2792), + [anon_sym___bridge] = ACTIONS(2792), + [anon_sym___bridge_retained] = ACTIONS(2792), + [anon_sym___bridge_transfer] = ACTIONS(2792), + [anon_sym___complex] = ACTIONS(2792), + [anon_sym___const] = ACTIONS(2792), + [anon_sym___imag] = ACTIONS(2792), + [anon_sym___kindof] = ACTIONS(2792), + [anon_sym___nonnull] = ACTIONS(2792), + [anon_sym___nullable] = ACTIONS(2792), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2792), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2792), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2792), + [anon_sym___real] = ACTIONS(2792), + [anon_sym___strong] = ACTIONS(2792), + [anon_sym___unsafe_unretained] = ACTIONS(2792), + [anon_sym___unused] = ACTIONS(2792), + [anon_sym___weak] = ACTIONS(2792), + [anon_sym_alignas] = ACTIONS(2792), + [anon_sym__Alignas] = ACTIONS(2792), + [sym_primitive_type] = ACTIONS(2792), + [anon_sym_enum] = ACTIONS(2792), + [anon_sym_struct] = ACTIONS(2792), + [anon_sym_union] = ACTIONS(2792), + [anon_sym_if] = ACTIONS(2792), + [anon_sym_switch] = ACTIONS(2792), + [anon_sym_case] = ACTIONS(2792), + [anon_sym_default] = ACTIONS(2792), + [anon_sym_while] = ACTIONS(2792), + [anon_sym_do] = ACTIONS(2792), + [anon_sym_for] = ACTIONS(2792), + [anon_sym_in] = ACTIONS(2792), + [anon_sym_return] = ACTIONS(2792), + [anon_sym_break] = ACTIONS(2792), + [anon_sym_continue] = ACTIONS(2792), + [anon_sym_goto] = ACTIONS(2792), + [anon_sym_DASH_DASH] = ACTIONS(2794), + [anon_sym_PLUS_PLUS] = ACTIONS(2794), + [anon_sym_sizeof] = ACTIONS(2792), + [anon_sym___alignof__] = ACTIONS(2792), + [anon_sym___alignof] = ACTIONS(2792), + [anon_sym__alignof] = ACTIONS(2792), + [anon_sym_alignof] = ACTIONS(2792), + [anon_sym__Alignof] = ACTIONS(2792), + [anon_sym_offsetof] = ACTIONS(2792), + [anon_sym__Generic] = ACTIONS(2792), + [anon_sym_asm] = ACTIONS(2792), + [anon_sym___asm__] = ACTIONS(2792), + [anon_sym___asm] = ACTIONS(2792), + [sym_number_literal] = ACTIONS(2794), + [anon_sym_L_SQUOTE] = ACTIONS(2794), + [anon_sym_u_SQUOTE] = ACTIONS(2794), + [anon_sym_U_SQUOTE] = ACTIONS(2794), + [anon_sym_u8_SQUOTE] = ACTIONS(2794), + [anon_sym_SQUOTE] = ACTIONS(2794), + [anon_sym_AT] = ACTIONS(2792), + [anon_sym_DQUOTE] = ACTIONS(2794), + [anon_sym_L_DQUOTE] = ACTIONS(2794), + [anon_sym_u_DQUOTE] = ACTIONS(2794), + [anon_sym_U_DQUOTE] = ACTIONS(2794), + [anon_sym_u8_DQUOTE] = ACTIONS(2794), + [sym_true] = ACTIONS(2792), + [sym_false] = ACTIONS(2792), + [anon_sym_NULL] = ACTIONS(2792), + [anon_sym_nullptr] = ACTIONS(2792), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2792), + [anon_sym___typeof] = ACTIONS(2792), + [anon_sym_typeof] = ACTIONS(2792), + [anon_sym_ATimport] = ACTIONS(2794), + [aux_sym_preproc_undef_token1] = ACTIONS(2792), + [anon_sym_POUND] = ACTIONS(2792), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2792), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2792), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2792), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2792), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2792), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2792), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2792), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2792), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2792), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2792), + [anon_sym_NS_AVAILABLE] = ACTIONS(2792), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2792), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2792), + [anon_sym_API_AVAILABLE] = ACTIONS(2792), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2792), + [anon_sym_API_DEPRECATED] = ACTIONS(2792), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2792), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2792), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2792), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2792), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2792), + [anon_sym___deprecated_msg] = ACTIONS(2792), + [anon_sym___deprecated_enum_msg] = ACTIONS(2792), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2792), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2792), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2792), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2792), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2792), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2792), + [anon_sym_ATprotocol] = ACTIONS(2794), + [anon_sym_ATinterface] = ACTIONS(2794), + [anon_sym_ATimplementation] = ACTIONS(2794), + [anon_sym_ATcompatibility_alias] = ACTIONS(2794), + [anon_sym_ATsynthesize] = ACTIONS(2794), + [anon_sym_ATdynamic] = ACTIONS(2794), + [anon_sym_ATtry] = ACTIONS(2794), + [anon_sym___try] = ACTIONS(2792), + [anon_sym_ATthrow] = ACTIONS(2794), + [anon_sym_ATselector] = ACTIONS(2794), + [anon_sym_ATavailable] = ACTIONS(2794), + [anon_sym___builtin_available] = ACTIONS(2792), + [anon_sym_va_arg] = ACTIONS(2792), + [anon_sym_ATencode] = ACTIONS(2794), + [anon_sym_ATsynchronized] = ACTIONS(2794), + [anon_sym_BOOL] = ACTIONS(2792), + [anon_sym_IMP] = ACTIONS(2792), + [anon_sym_SEL] = ACTIONS(2792), + [anon_sym_Class] = ACTIONS(2792), + [anon_sym_id] = ACTIONS(2792), + }, + [341] = { + [sym_identifier] = ACTIONS(2796), + [aux_sym_preproc_include_token1] = ACTIONS(2796), + [aux_sym_preproc_include_token2] = ACTIONS(2796), + [aux_sym_preproc_def_token1] = ACTIONS(2796), + [aux_sym_preproc_if_token1] = ACTIONS(2796), + [aux_sym_preproc_if_token2] = ACTIONS(2796), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2796), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2796), + [aux_sym_preproc_else_token1] = ACTIONS(2796), + [aux_sym_preproc_elif_token1] = ACTIONS(2796), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2796), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2796), + [sym_preproc_directive] = ACTIONS(2796), + [anon_sym_LPAREN2] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_TILDE] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2796), + [anon_sym_PLUS] = ACTIONS(2796), + [anon_sym_STAR] = ACTIONS(2798), + [anon_sym_CARET] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2798), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym___extension__] = ACTIONS(2796), + [anon_sym_typedef] = ACTIONS(2796), + [anon_sym_extern] = ACTIONS(2796), + [anon_sym___attribute__] = ACTIONS(2796), + [anon_sym___attribute] = ACTIONS(2796), + [anon_sym_noreturn] = ACTIONS(2796), + [anon_sym_LBRACK] = ACTIONS(2798), + [anon_sym___declspec] = ACTIONS(2796), + [anon_sym___cdecl] = ACTIONS(2796), + [anon_sym___clrcall] = ACTIONS(2796), + [anon_sym___stdcall] = ACTIONS(2796), + [anon_sym___fastcall] = ACTIONS(2796), + [anon_sym___thiscall] = ACTIONS(2796), + [anon_sym___vectorcall] = ACTIONS(2796), + [anon_sym_LBRACE] = ACTIONS(2798), + [anon_sym_signed] = ACTIONS(2796), + [anon_sym_unsigned] = ACTIONS(2796), + [anon_sym_long] = ACTIONS(2796), + [anon_sym_short] = ACTIONS(2796), + [anon_sym_static] = ACTIONS(2796), + [anon_sym_ATautoreleasepool] = ACTIONS(2798), + [anon_sym_auto] = ACTIONS(2796), + [anon_sym_register] = ACTIONS(2796), + [anon_sym_inline] = ACTIONS(2796), + [anon_sym___inline] = ACTIONS(2796), + [anon_sym___inline__] = ACTIONS(2796), + [anon_sym___forceinline] = ACTIONS(2796), + [anon_sym_thread_local] = ACTIONS(2796), + [anon_sym___thread] = ACTIONS(2796), + [anon_sym_CG_EXTERN] = ACTIONS(2796), + [anon_sym_CG_INLINE] = ACTIONS(2796), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2796), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2796), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2796), + [anon_sym_IBOutlet] = ACTIONS(2796), + [anon_sym_IBInspectable] = ACTIONS(2796), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2796), + [anon_sym_NS_INLINE] = ACTIONS(2796), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2796), + [anon_sym_OBJC_EXPORT] = ACTIONS(2796), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2796), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2796), + [anon_sym_const] = ACTIONS(2796), + [anon_sym_constexpr] = ACTIONS(2796), + [anon_sym_volatile] = ACTIONS(2796), + [anon_sym_restrict] = ACTIONS(2796), + [anon_sym___restrict__] = ACTIONS(2796), + [anon_sym__Atomic] = ACTIONS(2796), + [anon_sym__Noreturn] = ACTIONS(2796), + [anon_sym__Nonnull] = ACTIONS(2796), + [anon_sym_nullable] = ACTIONS(2796), + [anon_sym__Complex] = ACTIONS(2796), + [anon_sym__Nullable] = ACTIONS(2796), + [anon_sym__Nullable_result] = ACTIONS(2796), + [anon_sym__Null_unspecified] = ACTIONS(2796), + [anon_sym___autoreleasing] = ACTIONS(2796), + [anon_sym___block] = ACTIONS(2796), + [anon_sym___bridge] = ACTIONS(2796), + [anon_sym___bridge_retained] = ACTIONS(2796), + [anon_sym___bridge_transfer] = ACTIONS(2796), + [anon_sym___complex] = ACTIONS(2796), + [anon_sym___const] = ACTIONS(2796), + [anon_sym___imag] = ACTIONS(2796), + [anon_sym___kindof] = ACTIONS(2796), + [anon_sym___nonnull] = ACTIONS(2796), + [anon_sym___nullable] = ACTIONS(2796), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2796), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2796), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2796), + [anon_sym___real] = ACTIONS(2796), + [anon_sym___strong] = ACTIONS(2796), + [anon_sym___unsafe_unretained] = ACTIONS(2796), + [anon_sym___unused] = ACTIONS(2796), + [anon_sym___weak] = ACTIONS(2796), + [anon_sym_alignas] = ACTIONS(2796), + [anon_sym__Alignas] = ACTIONS(2796), + [sym_primitive_type] = ACTIONS(2796), + [anon_sym_enum] = ACTIONS(2796), + [anon_sym_struct] = ACTIONS(2796), + [anon_sym_union] = ACTIONS(2796), + [anon_sym_if] = ACTIONS(2796), + [anon_sym_switch] = ACTIONS(2796), + [anon_sym_case] = ACTIONS(2796), + [anon_sym_default] = ACTIONS(2796), + [anon_sym_while] = ACTIONS(2796), + [anon_sym_do] = ACTIONS(2796), + [anon_sym_for] = ACTIONS(2796), + [anon_sym_in] = ACTIONS(2796), + [anon_sym_return] = ACTIONS(2796), + [anon_sym_break] = ACTIONS(2796), + [anon_sym_continue] = ACTIONS(2796), + [anon_sym_goto] = ACTIONS(2796), + [anon_sym_DASH_DASH] = ACTIONS(2798), + [anon_sym_PLUS_PLUS] = ACTIONS(2798), + [anon_sym_sizeof] = ACTIONS(2796), + [anon_sym___alignof__] = ACTIONS(2796), + [anon_sym___alignof] = ACTIONS(2796), + [anon_sym__alignof] = ACTIONS(2796), + [anon_sym_alignof] = ACTIONS(2796), + [anon_sym__Alignof] = ACTIONS(2796), + [anon_sym_offsetof] = ACTIONS(2796), + [anon_sym__Generic] = ACTIONS(2796), + [anon_sym_asm] = ACTIONS(2796), + [anon_sym___asm__] = ACTIONS(2796), + [anon_sym___asm] = ACTIONS(2796), + [sym_number_literal] = ACTIONS(2798), + [anon_sym_L_SQUOTE] = ACTIONS(2798), + [anon_sym_u_SQUOTE] = ACTIONS(2798), + [anon_sym_U_SQUOTE] = ACTIONS(2798), + [anon_sym_u8_SQUOTE] = ACTIONS(2798), + [anon_sym_SQUOTE] = ACTIONS(2798), + [anon_sym_AT] = ACTIONS(2796), + [anon_sym_DQUOTE] = ACTIONS(2798), + [anon_sym_L_DQUOTE] = ACTIONS(2798), + [anon_sym_u_DQUOTE] = ACTIONS(2798), + [anon_sym_U_DQUOTE] = ACTIONS(2798), + [anon_sym_u8_DQUOTE] = ACTIONS(2798), + [sym_true] = ACTIONS(2796), + [sym_false] = ACTIONS(2796), + [anon_sym_NULL] = ACTIONS(2796), + [anon_sym_nullptr] = ACTIONS(2796), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2796), + [anon_sym___typeof] = ACTIONS(2796), + [anon_sym_typeof] = ACTIONS(2796), + [anon_sym_ATimport] = ACTIONS(2798), + [aux_sym_preproc_undef_token1] = ACTIONS(2796), + [anon_sym_POUND] = ACTIONS(2796), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2796), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2796), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2796), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2796), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2796), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2796), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2796), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2796), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2796), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2796), + [anon_sym_NS_AVAILABLE] = ACTIONS(2796), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2796), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2796), + [anon_sym_API_AVAILABLE] = ACTIONS(2796), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2796), + [anon_sym_API_DEPRECATED] = ACTIONS(2796), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2796), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2796), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2796), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2796), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2796), + [anon_sym___deprecated_msg] = ACTIONS(2796), + [anon_sym___deprecated_enum_msg] = ACTIONS(2796), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2796), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2796), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2796), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2796), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2796), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2796), + [anon_sym_ATprotocol] = ACTIONS(2798), + [anon_sym_ATinterface] = ACTIONS(2798), + [anon_sym_ATimplementation] = ACTIONS(2798), + [anon_sym_ATcompatibility_alias] = ACTIONS(2798), + [anon_sym_ATsynthesize] = ACTIONS(2798), + [anon_sym_ATdynamic] = ACTIONS(2798), + [anon_sym_ATtry] = ACTIONS(2798), + [anon_sym___try] = ACTIONS(2796), + [anon_sym_ATthrow] = ACTIONS(2798), + [anon_sym_ATselector] = ACTIONS(2798), + [anon_sym_ATavailable] = ACTIONS(2798), + [anon_sym___builtin_available] = ACTIONS(2796), + [anon_sym_va_arg] = ACTIONS(2796), + [anon_sym_ATencode] = ACTIONS(2798), + [anon_sym_ATsynchronized] = ACTIONS(2798), + [anon_sym_BOOL] = ACTIONS(2796), + [anon_sym_IMP] = ACTIONS(2796), + [anon_sym_SEL] = ACTIONS(2796), + [anon_sym_Class] = ACTIONS(2796), + [anon_sym_id] = ACTIONS(2796), + }, + [342] = { + [sym_identifier] = ACTIONS(2800), + [aux_sym_preproc_include_token1] = ACTIONS(2800), + [aux_sym_preproc_include_token2] = ACTIONS(2800), + [aux_sym_preproc_def_token1] = ACTIONS(2800), + [aux_sym_preproc_if_token1] = ACTIONS(2800), + [aux_sym_preproc_if_token2] = ACTIONS(2800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2800), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2800), + [aux_sym_preproc_else_token1] = ACTIONS(2800), + [aux_sym_preproc_elif_token1] = ACTIONS(2800), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2800), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2800), + [sym_preproc_directive] = ACTIONS(2800), + [anon_sym_LPAREN2] = ACTIONS(2802), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_TILDE] = ACTIONS(2802), + [anon_sym_DASH] = ACTIONS(2800), + [anon_sym_PLUS] = ACTIONS(2800), + [anon_sym_STAR] = ACTIONS(2802), + [anon_sym_CARET] = ACTIONS(2802), + [anon_sym_AMP] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym___extension__] = ACTIONS(2800), + [anon_sym_typedef] = ACTIONS(2800), + [anon_sym_extern] = ACTIONS(2800), + [anon_sym___attribute__] = ACTIONS(2800), + [anon_sym___attribute] = ACTIONS(2800), + [anon_sym_noreturn] = ACTIONS(2800), + [anon_sym_LBRACK] = ACTIONS(2802), + [anon_sym___declspec] = ACTIONS(2800), + [anon_sym___cdecl] = ACTIONS(2800), + [anon_sym___clrcall] = ACTIONS(2800), + [anon_sym___stdcall] = ACTIONS(2800), + [anon_sym___fastcall] = ACTIONS(2800), + [anon_sym___thiscall] = ACTIONS(2800), + [anon_sym___vectorcall] = ACTIONS(2800), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_signed] = ACTIONS(2800), + [anon_sym_unsigned] = ACTIONS(2800), + [anon_sym_long] = ACTIONS(2800), + [anon_sym_short] = ACTIONS(2800), + [anon_sym_static] = ACTIONS(2800), + [anon_sym_ATautoreleasepool] = ACTIONS(2802), + [anon_sym_auto] = ACTIONS(2800), + [anon_sym_register] = ACTIONS(2800), + [anon_sym_inline] = ACTIONS(2800), + [anon_sym___inline] = ACTIONS(2800), + [anon_sym___inline__] = ACTIONS(2800), + [anon_sym___forceinline] = ACTIONS(2800), + [anon_sym_thread_local] = ACTIONS(2800), + [anon_sym___thread] = ACTIONS(2800), + [anon_sym_CG_EXTERN] = ACTIONS(2800), + [anon_sym_CG_INLINE] = ACTIONS(2800), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2800), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2800), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2800), + [anon_sym_IBOutlet] = ACTIONS(2800), + [anon_sym_IBInspectable] = ACTIONS(2800), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2800), + [anon_sym_NS_INLINE] = ACTIONS(2800), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2800), + [anon_sym_OBJC_EXPORT] = ACTIONS(2800), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2800), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2800), + [anon_sym_const] = ACTIONS(2800), + [anon_sym_constexpr] = ACTIONS(2800), + [anon_sym_volatile] = ACTIONS(2800), + [anon_sym_restrict] = ACTIONS(2800), + [anon_sym___restrict__] = ACTIONS(2800), + [anon_sym__Atomic] = ACTIONS(2800), + [anon_sym__Noreturn] = ACTIONS(2800), + [anon_sym__Nonnull] = ACTIONS(2800), + [anon_sym_nullable] = ACTIONS(2800), + [anon_sym__Complex] = ACTIONS(2800), + [anon_sym__Nullable] = ACTIONS(2800), + [anon_sym__Nullable_result] = ACTIONS(2800), + [anon_sym__Null_unspecified] = ACTIONS(2800), + [anon_sym___autoreleasing] = ACTIONS(2800), + [anon_sym___block] = ACTIONS(2800), + [anon_sym___bridge] = ACTIONS(2800), + [anon_sym___bridge_retained] = ACTIONS(2800), + [anon_sym___bridge_transfer] = ACTIONS(2800), + [anon_sym___complex] = ACTIONS(2800), + [anon_sym___const] = ACTIONS(2800), + [anon_sym___imag] = ACTIONS(2800), + [anon_sym___kindof] = ACTIONS(2800), + [anon_sym___nonnull] = ACTIONS(2800), + [anon_sym___nullable] = ACTIONS(2800), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2800), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2800), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2800), + [anon_sym___real] = ACTIONS(2800), + [anon_sym___strong] = ACTIONS(2800), + [anon_sym___unsafe_unretained] = ACTIONS(2800), + [anon_sym___unused] = ACTIONS(2800), + [anon_sym___weak] = ACTIONS(2800), + [anon_sym_alignas] = ACTIONS(2800), + [anon_sym__Alignas] = ACTIONS(2800), + [sym_primitive_type] = ACTIONS(2800), + [anon_sym_enum] = ACTIONS(2800), + [anon_sym_struct] = ACTIONS(2800), + [anon_sym_union] = ACTIONS(2800), + [anon_sym_if] = ACTIONS(2800), + [anon_sym_switch] = ACTIONS(2800), + [anon_sym_case] = ACTIONS(2800), + [anon_sym_default] = ACTIONS(2800), + [anon_sym_while] = ACTIONS(2800), + [anon_sym_do] = ACTIONS(2800), + [anon_sym_for] = ACTIONS(2800), + [anon_sym_in] = ACTIONS(2800), + [anon_sym_return] = ACTIONS(2800), + [anon_sym_break] = ACTIONS(2800), + [anon_sym_continue] = ACTIONS(2800), + [anon_sym_goto] = ACTIONS(2800), + [anon_sym_DASH_DASH] = ACTIONS(2802), + [anon_sym_PLUS_PLUS] = ACTIONS(2802), + [anon_sym_sizeof] = ACTIONS(2800), + [anon_sym___alignof__] = ACTIONS(2800), + [anon_sym___alignof] = ACTIONS(2800), + [anon_sym__alignof] = ACTIONS(2800), + [anon_sym_alignof] = ACTIONS(2800), + [anon_sym__Alignof] = ACTIONS(2800), + [anon_sym_offsetof] = ACTIONS(2800), + [anon_sym__Generic] = ACTIONS(2800), + [anon_sym_asm] = ACTIONS(2800), + [anon_sym___asm__] = ACTIONS(2800), + [anon_sym___asm] = ACTIONS(2800), + [sym_number_literal] = ACTIONS(2802), + [anon_sym_L_SQUOTE] = ACTIONS(2802), + [anon_sym_u_SQUOTE] = ACTIONS(2802), + [anon_sym_U_SQUOTE] = ACTIONS(2802), + [anon_sym_u8_SQUOTE] = ACTIONS(2802), + [anon_sym_SQUOTE] = ACTIONS(2802), + [anon_sym_AT] = ACTIONS(2800), + [anon_sym_DQUOTE] = ACTIONS(2802), + [anon_sym_L_DQUOTE] = ACTIONS(2802), + [anon_sym_u_DQUOTE] = ACTIONS(2802), + [anon_sym_U_DQUOTE] = ACTIONS(2802), + [anon_sym_u8_DQUOTE] = ACTIONS(2802), + [sym_true] = ACTIONS(2800), + [sym_false] = ACTIONS(2800), + [anon_sym_NULL] = ACTIONS(2800), + [anon_sym_nullptr] = ACTIONS(2800), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2800), + [anon_sym___typeof] = ACTIONS(2800), + [anon_sym_typeof] = ACTIONS(2800), + [anon_sym_ATimport] = ACTIONS(2802), + [aux_sym_preproc_undef_token1] = ACTIONS(2800), + [anon_sym_POUND] = ACTIONS(2800), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2800), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2800), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2800), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2800), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2800), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2800), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2800), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2800), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2800), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2800), + [anon_sym_NS_AVAILABLE] = ACTIONS(2800), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2800), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2800), + [anon_sym_API_AVAILABLE] = ACTIONS(2800), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2800), + [anon_sym_API_DEPRECATED] = ACTIONS(2800), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2800), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2800), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2800), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2800), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2800), + [anon_sym___deprecated_msg] = ACTIONS(2800), + [anon_sym___deprecated_enum_msg] = ACTIONS(2800), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2800), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2800), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2800), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2800), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2800), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2800), + [anon_sym_ATprotocol] = ACTIONS(2802), + [anon_sym_ATinterface] = ACTIONS(2802), + [anon_sym_ATimplementation] = ACTIONS(2802), + [anon_sym_ATcompatibility_alias] = ACTIONS(2802), + [anon_sym_ATsynthesize] = ACTIONS(2802), + [anon_sym_ATdynamic] = ACTIONS(2802), + [anon_sym_ATtry] = ACTIONS(2802), + [anon_sym___try] = ACTIONS(2800), + [anon_sym_ATthrow] = ACTIONS(2802), + [anon_sym_ATselector] = ACTIONS(2802), + [anon_sym_ATavailable] = ACTIONS(2802), + [anon_sym___builtin_available] = ACTIONS(2800), + [anon_sym_va_arg] = ACTIONS(2800), + [anon_sym_ATencode] = ACTIONS(2802), + [anon_sym_ATsynchronized] = ACTIONS(2802), + [anon_sym_BOOL] = ACTIONS(2800), + [anon_sym_IMP] = ACTIONS(2800), + [anon_sym_SEL] = ACTIONS(2800), + [anon_sym_Class] = ACTIONS(2800), + [anon_sym_id] = ACTIONS(2800), + }, + [343] = { + [sym_identifier] = ACTIONS(2804), + [aux_sym_preproc_include_token1] = ACTIONS(2804), + [aux_sym_preproc_include_token2] = ACTIONS(2804), + [aux_sym_preproc_def_token1] = ACTIONS(2804), + [aux_sym_preproc_if_token1] = ACTIONS(2804), + [aux_sym_preproc_if_token2] = ACTIONS(2804), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2804), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2804), + [aux_sym_preproc_else_token1] = ACTIONS(2804), + [aux_sym_preproc_elif_token1] = ACTIONS(2804), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2804), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2804), + [sym_preproc_directive] = ACTIONS(2804), + [anon_sym_LPAREN2] = ACTIONS(2806), + [anon_sym_BANG] = ACTIONS(2806), + [anon_sym_TILDE] = ACTIONS(2806), + [anon_sym_DASH] = ACTIONS(2804), + [anon_sym_PLUS] = ACTIONS(2804), + [anon_sym_STAR] = ACTIONS(2806), + [anon_sym_CARET] = ACTIONS(2806), + [anon_sym_AMP] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym___extension__] = ACTIONS(2804), + [anon_sym_typedef] = ACTIONS(2804), + [anon_sym_extern] = ACTIONS(2804), + [anon_sym___attribute__] = ACTIONS(2804), + [anon_sym___attribute] = ACTIONS(2804), + [anon_sym_noreturn] = ACTIONS(2804), + [anon_sym_LBRACK] = ACTIONS(2806), + [anon_sym___declspec] = ACTIONS(2804), + [anon_sym___cdecl] = ACTIONS(2804), + [anon_sym___clrcall] = ACTIONS(2804), + [anon_sym___stdcall] = ACTIONS(2804), + [anon_sym___fastcall] = ACTIONS(2804), + [anon_sym___thiscall] = ACTIONS(2804), + [anon_sym___vectorcall] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_signed] = ACTIONS(2804), + [anon_sym_unsigned] = ACTIONS(2804), + [anon_sym_long] = ACTIONS(2804), + [anon_sym_short] = ACTIONS(2804), + [anon_sym_static] = ACTIONS(2804), + [anon_sym_ATautoreleasepool] = ACTIONS(2806), + [anon_sym_auto] = ACTIONS(2804), + [anon_sym_register] = ACTIONS(2804), + [anon_sym_inline] = ACTIONS(2804), + [anon_sym___inline] = ACTIONS(2804), + [anon_sym___inline__] = ACTIONS(2804), + [anon_sym___forceinline] = ACTIONS(2804), + [anon_sym_thread_local] = ACTIONS(2804), + [anon_sym___thread] = ACTIONS(2804), + [anon_sym_CG_EXTERN] = ACTIONS(2804), + [anon_sym_CG_INLINE] = ACTIONS(2804), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2804), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2804), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2804), + [anon_sym_IBOutlet] = ACTIONS(2804), + [anon_sym_IBInspectable] = ACTIONS(2804), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2804), + [anon_sym_NS_INLINE] = ACTIONS(2804), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2804), + [anon_sym_OBJC_EXPORT] = ACTIONS(2804), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2804), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2804), + [anon_sym_const] = ACTIONS(2804), + [anon_sym_constexpr] = ACTIONS(2804), + [anon_sym_volatile] = ACTIONS(2804), + [anon_sym_restrict] = ACTIONS(2804), + [anon_sym___restrict__] = ACTIONS(2804), + [anon_sym__Atomic] = ACTIONS(2804), + [anon_sym__Noreturn] = ACTIONS(2804), + [anon_sym__Nonnull] = ACTIONS(2804), + [anon_sym_nullable] = ACTIONS(2804), + [anon_sym__Complex] = ACTIONS(2804), + [anon_sym__Nullable] = ACTIONS(2804), + [anon_sym__Nullable_result] = ACTIONS(2804), + [anon_sym__Null_unspecified] = ACTIONS(2804), + [anon_sym___autoreleasing] = ACTIONS(2804), + [anon_sym___block] = ACTIONS(2804), + [anon_sym___bridge] = ACTIONS(2804), + [anon_sym___bridge_retained] = ACTIONS(2804), + [anon_sym___bridge_transfer] = ACTIONS(2804), + [anon_sym___complex] = ACTIONS(2804), + [anon_sym___const] = ACTIONS(2804), + [anon_sym___imag] = ACTIONS(2804), + [anon_sym___kindof] = ACTIONS(2804), + [anon_sym___nonnull] = ACTIONS(2804), + [anon_sym___nullable] = ACTIONS(2804), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2804), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2804), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2804), + [anon_sym___real] = ACTIONS(2804), + [anon_sym___strong] = ACTIONS(2804), + [anon_sym___unsafe_unretained] = ACTIONS(2804), + [anon_sym___unused] = ACTIONS(2804), + [anon_sym___weak] = ACTIONS(2804), + [anon_sym_alignas] = ACTIONS(2804), + [anon_sym__Alignas] = ACTIONS(2804), + [sym_primitive_type] = ACTIONS(2804), + [anon_sym_enum] = ACTIONS(2804), + [anon_sym_struct] = ACTIONS(2804), + [anon_sym_union] = ACTIONS(2804), + [anon_sym_if] = ACTIONS(2804), + [anon_sym_switch] = ACTIONS(2804), + [anon_sym_case] = ACTIONS(2804), + [anon_sym_default] = ACTIONS(2804), + [anon_sym_while] = ACTIONS(2804), + [anon_sym_do] = ACTIONS(2804), + [anon_sym_for] = ACTIONS(2804), + [anon_sym_in] = ACTIONS(2804), + [anon_sym_return] = ACTIONS(2804), + [anon_sym_break] = ACTIONS(2804), + [anon_sym_continue] = ACTIONS(2804), + [anon_sym_goto] = ACTIONS(2804), + [anon_sym_DASH_DASH] = ACTIONS(2806), + [anon_sym_PLUS_PLUS] = ACTIONS(2806), + [anon_sym_sizeof] = ACTIONS(2804), + [anon_sym___alignof__] = ACTIONS(2804), + [anon_sym___alignof] = ACTIONS(2804), + [anon_sym__alignof] = ACTIONS(2804), + [anon_sym_alignof] = ACTIONS(2804), + [anon_sym__Alignof] = ACTIONS(2804), + [anon_sym_offsetof] = ACTIONS(2804), + [anon_sym__Generic] = ACTIONS(2804), + [anon_sym_asm] = ACTIONS(2804), + [anon_sym___asm__] = ACTIONS(2804), + [anon_sym___asm] = ACTIONS(2804), + [sym_number_literal] = ACTIONS(2806), + [anon_sym_L_SQUOTE] = ACTIONS(2806), + [anon_sym_u_SQUOTE] = ACTIONS(2806), + [anon_sym_U_SQUOTE] = ACTIONS(2806), + [anon_sym_u8_SQUOTE] = ACTIONS(2806), + [anon_sym_SQUOTE] = ACTIONS(2806), + [anon_sym_AT] = ACTIONS(2804), + [anon_sym_DQUOTE] = ACTIONS(2806), + [anon_sym_L_DQUOTE] = ACTIONS(2806), + [anon_sym_u_DQUOTE] = ACTIONS(2806), + [anon_sym_U_DQUOTE] = ACTIONS(2806), + [anon_sym_u8_DQUOTE] = ACTIONS(2806), + [sym_true] = ACTIONS(2804), + [sym_false] = ACTIONS(2804), + [anon_sym_NULL] = ACTIONS(2804), + [anon_sym_nullptr] = ACTIONS(2804), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2804), + [anon_sym___typeof] = ACTIONS(2804), + [anon_sym_typeof] = ACTIONS(2804), + [anon_sym_ATimport] = ACTIONS(2806), + [aux_sym_preproc_undef_token1] = ACTIONS(2804), + [anon_sym_POUND] = ACTIONS(2804), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2804), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2804), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2804), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2804), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2804), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2804), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2804), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2804), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2804), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2804), + [anon_sym_NS_AVAILABLE] = ACTIONS(2804), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2804), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2804), + [anon_sym_API_AVAILABLE] = ACTIONS(2804), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2804), + [anon_sym_API_DEPRECATED] = ACTIONS(2804), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2804), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2804), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2804), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2804), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2804), + [anon_sym___deprecated_msg] = ACTIONS(2804), + [anon_sym___deprecated_enum_msg] = ACTIONS(2804), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2804), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2804), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2804), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2804), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2804), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2804), + [anon_sym_ATprotocol] = ACTIONS(2806), + [anon_sym_ATinterface] = ACTIONS(2806), + [anon_sym_ATimplementation] = ACTIONS(2806), + [anon_sym_ATcompatibility_alias] = ACTIONS(2806), + [anon_sym_ATsynthesize] = ACTIONS(2806), + [anon_sym_ATdynamic] = ACTIONS(2806), + [anon_sym_ATtry] = ACTIONS(2806), + [anon_sym___try] = ACTIONS(2804), + [anon_sym_ATthrow] = ACTIONS(2806), + [anon_sym_ATselector] = ACTIONS(2806), + [anon_sym_ATavailable] = ACTIONS(2806), + [anon_sym___builtin_available] = ACTIONS(2804), + [anon_sym_va_arg] = ACTIONS(2804), + [anon_sym_ATencode] = ACTIONS(2806), + [anon_sym_ATsynchronized] = ACTIONS(2806), + [anon_sym_BOOL] = ACTIONS(2804), + [anon_sym_IMP] = ACTIONS(2804), + [anon_sym_SEL] = ACTIONS(2804), + [anon_sym_Class] = ACTIONS(2804), + [anon_sym_id] = ACTIONS(2804), + }, + [344] = { + [sym_identifier] = ACTIONS(2808), + [aux_sym_preproc_include_token1] = ACTIONS(2808), + [aux_sym_preproc_include_token2] = ACTIONS(2808), + [aux_sym_preproc_def_token1] = ACTIONS(2808), + [aux_sym_preproc_if_token1] = ACTIONS(2808), + [aux_sym_preproc_if_token2] = ACTIONS(2808), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2808), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2808), + [aux_sym_preproc_else_token1] = ACTIONS(2808), + [aux_sym_preproc_elif_token1] = ACTIONS(2808), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2808), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2808), + [sym_preproc_directive] = ACTIONS(2808), + [anon_sym_LPAREN2] = ACTIONS(2810), + [anon_sym_BANG] = ACTIONS(2810), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2808), + [anon_sym_STAR] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym___extension__] = ACTIONS(2808), + [anon_sym_typedef] = ACTIONS(2808), + [anon_sym_extern] = ACTIONS(2808), + [anon_sym___attribute__] = ACTIONS(2808), + [anon_sym___attribute] = ACTIONS(2808), + [anon_sym_noreturn] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2810), + [anon_sym___declspec] = ACTIONS(2808), + [anon_sym___cdecl] = ACTIONS(2808), + [anon_sym___clrcall] = ACTIONS(2808), + [anon_sym___stdcall] = ACTIONS(2808), + [anon_sym___fastcall] = ACTIONS(2808), + [anon_sym___thiscall] = ACTIONS(2808), + [anon_sym___vectorcall] = ACTIONS(2808), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_signed] = ACTIONS(2808), + [anon_sym_unsigned] = ACTIONS(2808), + [anon_sym_long] = ACTIONS(2808), + [anon_sym_short] = ACTIONS(2808), + [anon_sym_static] = ACTIONS(2808), + [anon_sym_ATautoreleasepool] = ACTIONS(2810), + [anon_sym_auto] = ACTIONS(2808), + [anon_sym_register] = ACTIONS(2808), + [anon_sym_inline] = ACTIONS(2808), + [anon_sym___inline] = ACTIONS(2808), + [anon_sym___inline__] = ACTIONS(2808), + [anon_sym___forceinline] = ACTIONS(2808), + [anon_sym_thread_local] = ACTIONS(2808), + [anon_sym___thread] = ACTIONS(2808), + [anon_sym_CG_EXTERN] = ACTIONS(2808), + [anon_sym_CG_INLINE] = ACTIONS(2808), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2808), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2808), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2808), + [anon_sym_IBOutlet] = ACTIONS(2808), + [anon_sym_IBInspectable] = ACTIONS(2808), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2808), + [anon_sym_NS_INLINE] = ACTIONS(2808), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2808), + [anon_sym_OBJC_EXPORT] = ACTIONS(2808), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2808), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2808), + [anon_sym_const] = ACTIONS(2808), + [anon_sym_constexpr] = ACTIONS(2808), + [anon_sym_volatile] = ACTIONS(2808), + [anon_sym_restrict] = ACTIONS(2808), + [anon_sym___restrict__] = ACTIONS(2808), + [anon_sym__Atomic] = ACTIONS(2808), + [anon_sym__Noreturn] = ACTIONS(2808), + [anon_sym__Nonnull] = ACTIONS(2808), + [anon_sym_nullable] = ACTIONS(2808), + [anon_sym__Complex] = ACTIONS(2808), + [anon_sym__Nullable] = ACTIONS(2808), + [anon_sym__Nullable_result] = ACTIONS(2808), + [anon_sym__Null_unspecified] = ACTIONS(2808), + [anon_sym___autoreleasing] = ACTIONS(2808), + [anon_sym___block] = ACTIONS(2808), + [anon_sym___bridge] = ACTIONS(2808), + [anon_sym___bridge_retained] = ACTIONS(2808), + [anon_sym___bridge_transfer] = ACTIONS(2808), + [anon_sym___complex] = ACTIONS(2808), + [anon_sym___const] = ACTIONS(2808), + [anon_sym___imag] = ACTIONS(2808), + [anon_sym___kindof] = ACTIONS(2808), + [anon_sym___nonnull] = ACTIONS(2808), + [anon_sym___nullable] = ACTIONS(2808), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2808), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2808), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2808), + [anon_sym___real] = ACTIONS(2808), + [anon_sym___strong] = ACTIONS(2808), + [anon_sym___unsafe_unretained] = ACTIONS(2808), + [anon_sym___unused] = ACTIONS(2808), + [anon_sym___weak] = ACTIONS(2808), + [anon_sym_alignas] = ACTIONS(2808), + [anon_sym__Alignas] = ACTIONS(2808), + [sym_primitive_type] = ACTIONS(2808), + [anon_sym_enum] = ACTIONS(2808), + [anon_sym_struct] = ACTIONS(2808), + [anon_sym_union] = ACTIONS(2808), + [anon_sym_if] = ACTIONS(2808), + [anon_sym_switch] = ACTIONS(2808), + [anon_sym_case] = ACTIONS(2808), + [anon_sym_default] = ACTIONS(2808), + [anon_sym_while] = ACTIONS(2808), + [anon_sym_do] = ACTIONS(2808), + [anon_sym_for] = ACTIONS(2808), + [anon_sym_in] = ACTIONS(2808), + [anon_sym_return] = ACTIONS(2808), + [anon_sym_break] = ACTIONS(2808), + [anon_sym_continue] = ACTIONS(2808), + [anon_sym_goto] = ACTIONS(2808), + [anon_sym_DASH_DASH] = ACTIONS(2810), + [anon_sym_PLUS_PLUS] = ACTIONS(2810), + [anon_sym_sizeof] = ACTIONS(2808), + [anon_sym___alignof__] = ACTIONS(2808), + [anon_sym___alignof] = ACTIONS(2808), + [anon_sym__alignof] = ACTIONS(2808), + [anon_sym_alignof] = ACTIONS(2808), + [anon_sym__Alignof] = ACTIONS(2808), + [anon_sym_offsetof] = ACTIONS(2808), + [anon_sym__Generic] = ACTIONS(2808), + [anon_sym_asm] = ACTIONS(2808), + [anon_sym___asm__] = ACTIONS(2808), + [anon_sym___asm] = ACTIONS(2808), + [sym_number_literal] = ACTIONS(2810), + [anon_sym_L_SQUOTE] = ACTIONS(2810), + [anon_sym_u_SQUOTE] = ACTIONS(2810), + [anon_sym_U_SQUOTE] = ACTIONS(2810), + [anon_sym_u8_SQUOTE] = ACTIONS(2810), + [anon_sym_SQUOTE] = ACTIONS(2810), + [anon_sym_AT] = ACTIONS(2808), + [anon_sym_DQUOTE] = ACTIONS(2810), + [anon_sym_L_DQUOTE] = ACTIONS(2810), + [anon_sym_u_DQUOTE] = ACTIONS(2810), + [anon_sym_U_DQUOTE] = ACTIONS(2810), + [anon_sym_u8_DQUOTE] = ACTIONS(2810), + [sym_true] = ACTIONS(2808), + [sym_false] = ACTIONS(2808), + [anon_sym_NULL] = ACTIONS(2808), + [anon_sym_nullptr] = ACTIONS(2808), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2808), + [anon_sym___typeof] = ACTIONS(2808), + [anon_sym_typeof] = ACTIONS(2808), + [anon_sym_ATimport] = ACTIONS(2810), + [aux_sym_preproc_undef_token1] = ACTIONS(2808), + [anon_sym_POUND] = ACTIONS(2808), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2808), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2808), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2808), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2808), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2808), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2808), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2808), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2808), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2808), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2808), + [anon_sym_NS_AVAILABLE] = ACTIONS(2808), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2808), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2808), + [anon_sym_API_AVAILABLE] = ACTIONS(2808), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2808), + [anon_sym_API_DEPRECATED] = ACTIONS(2808), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2808), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2808), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2808), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2808), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2808), + [anon_sym___deprecated_msg] = ACTIONS(2808), + [anon_sym___deprecated_enum_msg] = ACTIONS(2808), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2808), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2808), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2808), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2808), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2808), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2808), + [anon_sym_ATprotocol] = ACTIONS(2810), + [anon_sym_ATinterface] = ACTIONS(2810), + [anon_sym_ATimplementation] = ACTIONS(2810), + [anon_sym_ATcompatibility_alias] = ACTIONS(2810), + [anon_sym_ATsynthesize] = ACTIONS(2810), + [anon_sym_ATdynamic] = ACTIONS(2810), + [anon_sym_ATtry] = ACTIONS(2810), + [anon_sym___try] = ACTIONS(2808), + [anon_sym_ATthrow] = ACTIONS(2810), + [anon_sym_ATselector] = ACTIONS(2810), + [anon_sym_ATavailable] = ACTIONS(2810), + [anon_sym___builtin_available] = ACTIONS(2808), + [anon_sym_va_arg] = ACTIONS(2808), + [anon_sym_ATencode] = ACTIONS(2810), + [anon_sym_ATsynchronized] = ACTIONS(2810), + [anon_sym_BOOL] = ACTIONS(2808), + [anon_sym_IMP] = ACTIONS(2808), + [anon_sym_SEL] = ACTIONS(2808), + [anon_sym_Class] = ACTIONS(2808), + [anon_sym_id] = ACTIONS(2808), + }, + [345] = { + [sym_identifier] = ACTIONS(2812), + [aux_sym_preproc_include_token1] = ACTIONS(2812), + [aux_sym_preproc_include_token2] = ACTIONS(2812), + [aux_sym_preproc_def_token1] = ACTIONS(2812), + [aux_sym_preproc_if_token1] = ACTIONS(2812), + [aux_sym_preproc_if_token2] = ACTIONS(2812), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2812), + [aux_sym_preproc_else_token1] = ACTIONS(2812), + [aux_sym_preproc_elif_token1] = ACTIONS(2812), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2812), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2812), + [sym_preproc_directive] = ACTIONS(2812), + [anon_sym_LPAREN2] = ACTIONS(2814), + [anon_sym_BANG] = ACTIONS(2814), + [anon_sym_TILDE] = ACTIONS(2814), + [anon_sym_DASH] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_CARET] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2814), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym___extension__] = ACTIONS(2812), + [anon_sym_typedef] = ACTIONS(2812), + [anon_sym_extern] = ACTIONS(2812), + [anon_sym___attribute__] = ACTIONS(2812), + [anon_sym___attribute] = ACTIONS(2812), + [anon_sym_noreturn] = ACTIONS(2812), + [anon_sym_LBRACK] = ACTIONS(2814), + [anon_sym___declspec] = ACTIONS(2812), + [anon_sym___cdecl] = ACTIONS(2812), + [anon_sym___clrcall] = ACTIONS(2812), + [anon_sym___stdcall] = ACTIONS(2812), + [anon_sym___fastcall] = ACTIONS(2812), + [anon_sym___thiscall] = ACTIONS(2812), + [anon_sym___vectorcall] = ACTIONS(2812), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_signed] = ACTIONS(2812), + [anon_sym_unsigned] = ACTIONS(2812), + [anon_sym_long] = ACTIONS(2812), + [anon_sym_short] = ACTIONS(2812), + [anon_sym_static] = ACTIONS(2812), + [anon_sym_ATautoreleasepool] = ACTIONS(2814), + [anon_sym_auto] = ACTIONS(2812), + [anon_sym_register] = ACTIONS(2812), + [anon_sym_inline] = ACTIONS(2812), + [anon_sym___inline] = ACTIONS(2812), + [anon_sym___inline__] = ACTIONS(2812), + [anon_sym___forceinline] = ACTIONS(2812), + [anon_sym_thread_local] = ACTIONS(2812), + [anon_sym___thread] = ACTIONS(2812), + [anon_sym_CG_EXTERN] = ACTIONS(2812), + [anon_sym_CG_INLINE] = ACTIONS(2812), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2812), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2812), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2812), + [anon_sym_IBOutlet] = ACTIONS(2812), + [anon_sym_IBInspectable] = ACTIONS(2812), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2812), + [anon_sym_NS_INLINE] = ACTIONS(2812), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2812), + [anon_sym_OBJC_EXPORT] = ACTIONS(2812), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2812), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2812), + [anon_sym_const] = ACTIONS(2812), + [anon_sym_constexpr] = ACTIONS(2812), + [anon_sym_volatile] = ACTIONS(2812), + [anon_sym_restrict] = ACTIONS(2812), + [anon_sym___restrict__] = ACTIONS(2812), + [anon_sym__Atomic] = ACTIONS(2812), + [anon_sym__Noreturn] = ACTIONS(2812), + [anon_sym__Nonnull] = ACTIONS(2812), + [anon_sym_nullable] = ACTIONS(2812), + [anon_sym__Complex] = ACTIONS(2812), + [anon_sym__Nullable] = ACTIONS(2812), + [anon_sym__Nullable_result] = ACTIONS(2812), + [anon_sym__Null_unspecified] = ACTIONS(2812), + [anon_sym___autoreleasing] = ACTIONS(2812), + [anon_sym___block] = ACTIONS(2812), + [anon_sym___bridge] = ACTIONS(2812), + [anon_sym___bridge_retained] = ACTIONS(2812), + [anon_sym___bridge_transfer] = ACTIONS(2812), + [anon_sym___complex] = ACTIONS(2812), + [anon_sym___const] = ACTIONS(2812), + [anon_sym___imag] = ACTIONS(2812), + [anon_sym___kindof] = ACTIONS(2812), + [anon_sym___nonnull] = ACTIONS(2812), + [anon_sym___nullable] = ACTIONS(2812), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2812), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2812), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2812), + [anon_sym___real] = ACTIONS(2812), + [anon_sym___strong] = ACTIONS(2812), + [anon_sym___unsafe_unretained] = ACTIONS(2812), + [anon_sym___unused] = ACTIONS(2812), + [anon_sym___weak] = ACTIONS(2812), + [anon_sym_alignas] = ACTIONS(2812), + [anon_sym__Alignas] = ACTIONS(2812), + [sym_primitive_type] = ACTIONS(2812), + [anon_sym_enum] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2812), + [anon_sym_union] = ACTIONS(2812), + [anon_sym_if] = ACTIONS(2812), + [anon_sym_switch] = ACTIONS(2812), + [anon_sym_case] = ACTIONS(2812), + [anon_sym_default] = ACTIONS(2812), + [anon_sym_while] = ACTIONS(2812), + [anon_sym_do] = ACTIONS(2812), + [anon_sym_for] = ACTIONS(2812), + [anon_sym_in] = ACTIONS(2812), + [anon_sym_return] = ACTIONS(2812), + [anon_sym_break] = ACTIONS(2812), + [anon_sym_continue] = ACTIONS(2812), + [anon_sym_goto] = ACTIONS(2812), + [anon_sym_DASH_DASH] = ACTIONS(2814), + [anon_sym_PLUS_PLUS] = ACTIONS(2814), + [anon_sym_sizeof] = ACTIONS(2812), + [anon_sym___alignof__] = ACTIONS(2812), + [anon_sym___alignof] = ACTIONS(2812), + [anon_sym__alignof] = ACTIONS(2812), + [anon_sym_alignof] = ACTIONS(2812), + [anon_sym__Alignof] = ACTIONS(2812), + [anon_sym_offsetof] = ACTIONS(2812), + [anon_sym__Generic] = ACTIONS(2812), + [anon_sym_asm] = ACTIONS(2812), + [anon_sym___asm__] = ACTIONS(2812), + [anon_sym___asm] = ACTIONS(2812), + [sym_number_literal] = ACTIONS(2814), + [anon_sym_L_SQUOTE] = ACTIONS(2814), + [anon_sym_u_SQUOTE] = ACTIONS(2814), + [anon_sym_U_SQUOTE] = ACTIONS(2814), + [anon_sym_u8_SQUOTE] = ACTIONS(2814), + [anon_sym_SQUOTE] = ACTIONS(2814), + [anon_sym_AT] = ACTIONS(2812), + [anon_sym_DQUOTE] = ACTIONS(2814), + [anon_sym_L_DQUOTE] = ACTIONS(2814), + [anon_sym_u_DQUOTE] = ACTIONS(2814), + [anon_sym_U_DQUOTE] = ACTIONS(2814), + [anon_sym_u8_DQUOTE] = ACTIONS(2814), + [sym_true] = ACTIONS(2812), + [sym_false] = ACTIONS(2812), + [anon_sym_NULL] = ACTIONS(2812), + [anon_sym_nullptr] = ACTIONS(2812), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2812), + [anon_sym___typeof] = ACTIONS(2812), + [anon_sym_typeof] = ACTIONS(2812), + [anon_sym_ATimport] = ACTIONS(2814), + [aux_sym_preproc_undef_token1] = ACTIONS(2812), + [anon_sym_POUND] = ACTIONS(2812), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2812), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2812), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2812), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2812), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2812), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2812), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2812), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2812), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2812), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2812), + [anon_sym_NS_AVAILABLE] = ACTIONS(2812), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2812), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2812), + [anon_sym_API_AVAILABLE] = ACTIONS(2812), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2812), + [anon_sym_API_DEPRECATED] = ACTIONS(2812), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2812), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2812), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2812), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2812), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2812), + [anon_sym___deprecated_msg] = ACTIONS(2812), + [anon_sym___deprecated_enum_msg] = ACTIONS(2812), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2812), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2812), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2812), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2812), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2812), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2812), + [anon_sym_ATprotocol] = ACTIONS(2814), + [anon_sym_ATinterface] = ACTIONS(2814), + [anon_sym_ATimplementation] = ACTIONS(2814), + [anon_sym_ATcompatibility_alias] = ACTIONS(2814), + [anon_sym_ATsynthesize] = ACTIONS(2814), + [anon_sym_ATdynamic] = ACTIONS(2814), + [anon_sym_ATtry] = ACTIONS(2814), + [anon_sym___try] = ACTIONS(2812), + [anon_sym_ATthrow] = ACTIONS(2814), + [anon_sym_ATselector] = ACTIONS(2814), + [anon_sym_ATavailable] = ACTIONS(2814), + [anon_sym___builtin_available] = ACTIONS(2812), + [anon_sym_va_arg] = ACTIONS(2812), + [anon_sym_ATencode] = ACTIONS(2814), + [anon_sym_ATsynchronized] = ACTIONS(2814), + [anon_sym_BOOL] = ACTIONS(2812), + [anon_sym_IMP] = ACTIONS(2812), + [anon_sym_SEL] = ACTIONS(2812), + [anon_sym_Class] = ACTIONS(2812), + [anon_sym_id] = ACTIONS(2812), + }, + [346] = { + [sym_identifier] = ACTIONS(2816), + [aux_sym_preproc_include_token1] = ACTIONS(2816), + [aux_sym_preproc_include_token2] = ACTIONS(2816), + [aux_sym_preproc_def_token1] = ACTIONS(2816), + [aux_sym_preproc_if_token1] = ACTIONS(2816), + [aux_sym_preproc_if_token2] = ACTIONS(2816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2816), + [aux_sym_preproc_else_token1] = ACTIONS(2816), + [aux_sym_preproc_elif_token1] = ACTIONS(2816), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2816), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2816), + [sym_preproc_directive] = ACTIONS(2816), + [anon_sym_LPAREN2] = ACTIONS(2818), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_TILDE] = ACTIONS(2818), + [anon_sym_DASH] = ACTIONS(2816), + [anon_sym_PLUS] = ACTIONS(2816), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_CARET] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym___extension__] = ACTIONS(2816), + [anon_sym_typedef] = ACTIONS(2816), + [anon_sym_extern] = ACTIONS(2816), + [anon_sym___attribute__] = ACTIONS(2816), + [anon_sym___attribute] = ACTIONS(2816), + [anon_sym_noreturn] = ACTIONS(2816), + [anon_sym_LBRACK] = ACTIONS(2818), + [anon_sym___declspec] = ACTIONS(2816), + [anon_sym___cdecl] = ACTIONS(2816), + [anon_sym___clrcall] = ACTIONS(2816), + [anon_sym___stdcall] = ACTIONS(2816), + [anon_sym___fastcall] = ACTIONS(2816), + [anon_sym___thiscall] = ACTIONS(2816), + [anon_sym___vectorcall] = ACTIONS(2816), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_signed] = ACTIONS(2816), + [anon_sym_unsigned] = ACTIONS(2816), + [anon_sym_long] = ACTIONS(2816), + [anon_sym_short] = ACTIONS(2816), + [anon_sym_static] = ACTIONS(2816), + [anon_sym_ATautoreleasepool] = ACTIONS(2818), + [anon_sym_auto] = ACTIONS(2816), + [anon_sym_register] = ACTIONS(2816), + [anon_sym_inline] = ACTIONS(2816), + [anon_sym___inline] = ACTIONS(2816), + [anon_sym___inline__] = ACTIONS(2816), + [anon_sym___forceinline] = ACTIONS(2816), + [anon_sym_thread_local] = ACTIONS(2816), + [anon_sym___thread] = ACTIONS(2816), + [anon_sym_CG_EXTERN] = ACTIONS(2816), + [anon_sym_CG_INLINE] = ACTIONS(2816), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2816), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2816), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2816), + [anon_sym_IBOutlet] = ACTIONS(2816), + [anon_sym_IBInspectable] = ACTIONS(2816), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2816), + [anon_sym_NS_INLINE] = ACTIONS(2816), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2816), + [anon_sym_OBJC_EXPORT] = ACTIONS(2816), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2816), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2816), + [anon_sym_const] = ACTIONS(2816), + [anon_sym_constexpr] = ACTIONS(2816), + [anon_sym_volatile] = ACTIONS(2816), + [anon_sym_restrict] = ACTIONS(2816), + [anon_sym___restrict__] = ACTIONS(2816), + [anon_sym__Atomic] = ACTIONS(2816), + [anon_sym__Noreturn] = ACTIONS(2816), + [anon_sym__Nonnull] = ACTIONS(2816), + [anon_sym_nullable] = ACTIONS(2816), + [anon_sym__Complex] = ACTIONS(2816), + [anon_sym__Nullable] = ACTIONS(2816), + [anon_sym__Nullable_result] = ACTIONS(2816), + [anon_sym__Null_unspecified] = ACTIONS(2816), + [anon_sym___autoreleasing] = ACTIONS(2816), + [anon_sym___block] = ACTIONS(2816), + [anon_sym___bridge] = ACTIONS(2816), + [anon_sym___bridge_retained] = ACTIONS(2816), + [anon_sym___bridge_transfer] = ACTIONS(2816), + [anon_sym___complex] = ACTIONS(2816), + [anon_sym___const] = ACTIONS(2816), + [anon_sym___imag] = ACTIONS(2816), + [anon_sym___kindof] = ACTIONS(2816), + [anon_sym___nonnull] = ACTIONS(2816), + [anon_sym___nullable] = ACTIONS(2816), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2816), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2816), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2816), + [anon_sym___real] = ACTIONS(2816), + [anon_sym___strong] = ACTIONS(2816), + [anon_sym___unsafe_unretained] = ACTIONS(2816), + [anon_sym___unused] = ACTIONS(2816), + [anon_sym___weak] = ACTIONS(2816), + [anon_sym_alignas] = ACTIONS(2816), + [anon_sym__Alignas] = ACTIONS(2816), + [sym_primitive_type] = ACTIONS(2816), + [anon_sym_enum] = ACTIONS(2816), + [anon_sym_struct] = ACTIONS(2816), + [anon_sym_union] = ACTIONS(2816), + [anon_sym_if] = ACTIONS(2816), + [anon_sym_switch] = ACTIONS(2816), + [anon_sym_case] = ACTIONS(2816), + [anon_sym_default] = ACTIONS(2816), + [anon_sym_while] = ACTIONS(2816), + [anon_sym_do] = ACTIONS(2816), + [anon_sym_for] = ACTIONS(2816), + [anon_sym_in] = ACTIONS(2816), + [anon_sym_return] = ACTIONS(2816), + [anon_sym_break] = ACTIONS(2816), + [anon_sym_continue] = ACTIONS(2816), + [anon_sym_goto] = ACTIONS(2816), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_sizeof] = ACTIONS(2816), + [anon_sym___alignof__] = ACTIONS(2816), + [anon_sym___alignof] = ACTIONS(2816), + [anon_sym__alignof] = ACTIONS(2816), + [anon_sym_alignof] = ACTIONS(2816), + [anon_sym__Alignof] = ACTIONS(2816), + [anon_sym_offsetof] = ACTIONS(2816), + [anon_sym__Generic] = ACTIONS(2816), + [anon_sym_asm] = ACTIONS(2816), + [anon_sym___asm__] = ACTIONS(2816), + [anon_sym___asm] = ACTIONS(2816), + [sym_number_literal] = ACTIONS(2818), + [anon_sym_L_SQUOTE] = ACTIONS(2818), + [anon_sym_u_SQUOTE] = ACTIONS(2818), + [anon_sym_U_SQUOTE] = ACTIONS(2818), + [anon_sym_u8_SQUOTE] = ACTIONS(2818), + [anon_sym_SQUOTE] = ACTIONS(2818), + [anon_sym_AT] = ACTIONS(2816), + [anon_sym_DQUOTE] = ACTIONS(2818), + [anon_sym_L_DQUOTE] = ACTIONS(2818), + [anon_sym_u_DQUOTE] = ACTIONS(2818), + [anon_sym_U_DQUOTE] = ACTIONS(2818), + [anon_sym_u8_DQUOTE] = ACTIONS(2818), + [sym_true] = ACTIONS(2816), + [sym_false] = ACTIONS(2816), + [anon_sym_NULL] = ACTIONS(2816), + [anon_sym_nullptr] = ACTIONS(2816), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2816), + [anon_sym___typeof] = ACTIONS(2816), + [anon_sym_typeof] = ACTIONS(2816), + [anon_sym_ATimport] = ACTIONS(2818), + [aux_sym_preproc_undef_token1] = ACTIONS(2816), + [anon_sym_POUND] = ACTIONS(2816), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2816), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2816), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2816), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2816), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2816), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2816), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2816), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2816), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2816), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2816), + [anon_sym_NS_AVAILABLE] = ACTIONS(2816), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2816), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2816), + [anon_sym_API_AVAILABLE] = ACTIONS(2816), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2816), + [anon_sym_API_DEPRECATED] = ACTIONS(2816), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2816), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2816), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2816), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2816), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2816), + [anon_sym___deprecated_msg] = ACTIONS(2816), + [anon_sym___deprecated_enum_msg] = ACTIONS(2816), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2816), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2816), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2816), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2816), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2816), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2816), + [anon_sym_ATprotocol] = ACTIONS(2818), + [anon_sym_ATinterface] = ACTIONS(2818), + [anon_sym_ATimplementation] = ACTIONS(2818), + [anon_sym_ATcompatibility_alias] = ACTIONS(2818), + [anon_sym_ATsynthesize] = ACTIONS(2818), + [anon_sym_ATdynamic] = ACTIONS(2818), + [anon_sym_ATtry] = ACTIONS(2818), + [anon_sym___try] = ACTIONS(2816), + [anon_sym_ATthrow] = ACTIONS(2818), + [anon_sym_ATselector] = ACTIONS(2818), + [anon_sym_ATavailable] = ACTIONS(2818), + [anon_sym___builtin_available] = ACTIONS(2816), + [anon_sym_va_arg] = ACTIONS(2816), + [anon_sym_ATencode] = ACTIONS(2818), + [anon_sym_ATsynchronized] = ACTIONS(2818), + [anon_sym_BOOL] = ACTIONS(2816), + [anon_sym_IMP] = ACTIONS(2816), + [anon_sym_SEL] = ACTIONS(2816), + [anon_sym_Class] = ACTIONS(2816), + [anon_sym_id] = ACTIONS(2816), + }, + [347] = { + [sym_identifier] = ACTIONS(2820), + [aux_sym_preproc_include_token1] = ACTIONS(2820), + [aux_sym_preproc_include_token2] = ACTIONS(2820), + [aux_sym_preproc_def_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token2] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), + [aux_sym_preproc_else_token1] = ACTIONS(2820), + [aux_sym_preproc_elif_token1] = ACTIONS(2820), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2820), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2820), + [sym_preproc_directive] = ACTIONS(2820), + [anon_sym_LPAREN2] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_CARET] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym___extension__] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym___attribute__] = ACTIONS(2820), + [anon_sym___attribute] = ACTIONS(2820), + [anon_sym_noreturn] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym___declspec] = ACTIONS(2820), + [anon_sym___cdecl] = ACTIONS(2820), + [anon_sym___clrcall] = ACTIONS(2820), + [anon_sym___stdcall] = ACTIONS(2820), + [anon_sym___fastcall] = ACTIONS(2820), + [anon_sym___thiscall] = ACTIONS(2820), + [anon_sym___vectorcall] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2820), + [anon_sym_unsigned] = ACTIONS(2820), + [anon_sym_long] = ACTIONS(2820), + [anon_sym_short] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_ATautoreleasepool] = ACTIONS(2822), + [anon_sym_auto] = ACTIONS(2820), + [anon_sym_register] = ACTIONS(2820), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym___inline] = ACTIONS(2820), + [anon_sym___inline__] = ACTIONS(2820), + [anon_sym___forceinline] = ACTIONS(2820), + [anon_sym_thread_local] = ACTIONS(2820), + [anon_sym___thread] = ACTIONS(2820), + [anon_sym_CG_EXTERN] = ACTIONS(2820), + [anon_sym_CG_INLINE] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2820), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2820), + [anon_sym_IBOutlet] = ACTIONS(2820), + [anon_sym_IBInspectable] = ACTIONS(2820), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2820), + [anon_sym_NS_INLINE] = ACTIONS(2820), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2820), + [anon_sym_OBJC_EXPORT] = ACTIONS(2820), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_constexpr] = ACTIONS(2820), + [anon_sym_volatile] = ACTIONS(2820), + [anon_sym_restrict] = ACTIONS(2820), + [anon_sym___restrict__] = ACTIONS(2820), + [anon_sym__Atomic] = ACTIONS(2820), + [anon_sym__Noreturn] = ACTIONS(2820), + [anon_sym__Nonnull] = ACTIONS(2820), + [anon_sym_nullable] = ACTIONS(2820), + [anon_sym__Complex] = ACTIONS(2820), + [anon_sym__Nullable] = ACTIONS(2820), + [anon_sym__Nullable_result] = ACTIONS(2820), + [anon_sym__Null_unspecified] = ACTIONS(2820), + [anon_sym___autoreleasing] = ACTIONS(2820), + [anon_sym___block] = ACTIONS(2820), + [anon_sym___bridge] = ACTIONS(2820), + [anon_sym___bridge_retained] = ACTIONS(2820), + [anon_sym___bridge_transfer] = ACTIONS(2820), + [anon_sym___complex] = ACTIONS(2820), + [anon_sym___const] = ACTIONS(2820), + [anon_sym___imag] = ACTIONS(2820), + [anon_sym___kindof] = ACTIONS(2820), + [anon_sym___nonnull] = ACTIONS(2820), + [anon_sym___nullable] = ACTIONS(2820), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2820), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2820), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2820), + [anon_sym___real] = ACTIONS(2820), + [anon_sym___strong] = ACTIONS(2820), + [anon_sym___unsafe_unretained] = ACTIONS(2820), + [anon_sym___unused] = ACTIONS(2820), + [anon_sym___weak] = ACTIONS(2820), + [anon_sym_alignas] = ACTIONS(2820), + [anon_sym__Alignas] = ACTIONS(2820), + [sym_primitive_type] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2820), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_case] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_in] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_goto] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_sizeof] = ACTIONS(2820), + [anon_sym___alignof__] = ACTIONS(2820), + [anon_sym___alignof] = ACTIONS(2820), + [anon_sym__alignof] = ACTIONS(2820), + [anon_sym_alignof] = ACTIONS(2820), + [anon_sym__Alignof] = ACTIONS(2820), + [anon_sym_offsetof] = ACTIONS(2820), + [anon_sym__Generic] = ACTIONS(2820), + [anon_sym_asm] = ACTIONS(2820), + [anon_sym___asm__] = ACTIONS(2820), + [anon_sym___asm] = ACTIONS(2820), + [sym_number_literal] = ACTIONS(2822), + [anon_sym_L_SQUOTE] = ACTIONS(2822), + [anon_sym_u_SQUOTE] = ACTIONS(2822), + [anon_sym_U_SQUOTE] = ACTIONS(2822), + [anon_sym_u8_SQUOTE] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2822), + [anon_sym_AT] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2822), + [anon_sym_L_DQUOTE] = ACTIONS(2822), + [anon_sym_u_DQUOTE] = ACTIONS(2822), + [anon_sym_U_DQUOTE] = ACTIONS(2822), + [anon_sym_u8_DQUOTE] = ACTIONS(2822), + [sym_true] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [anon_sym_NULL] = ACTIONS(2820), + [anon_sym_nullptr] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2820), + [anon_sym___typeof] = ACTIONS(2820), + [anon_sym_typeof] = ACTIONS(2820), + [anon_sym_ATimport] = ACTIONS(2822), + [aux_sym_preproc_undef_token1] = ACTIONS(2820), + [anon_sym_POUND] = ACTIONS(2820), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2820), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2820), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2820), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2820), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE] = ACTIONS(2820), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_API_AVAILABLE] = ACTIONS(2820), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_API_DEPRECATED] = ACTIONS(2820), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2820), + [anon_sym___deprecated_msg] = ACTIONS(2820), + [anon_sym___deprecated_enum_msg] = ACTIONS(2820), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2820), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2820), + [anon_sym_ATprotocol] = ACTIONS(2822), + [anon_sym_ATinterface] = ACTIONS(2822), + [anon_sym_ATimplementation] = ACTIONS(2822), + [anon_sym_ATcompatibility_alias] = ACTIONS(2822), + [anon_sym_ATsynthesize] = ACTIONS(2822), + [anon_sym_ATdynamic] = ACTIONS(2822), + [anon_sym_ATtry] = ACTIONS(2822), + [anon_sym___try] = ACTIONS(2820), + [anon_sym_ATthrow] = ACTIONS(2822), + [anon_sym_ATselector] = ACTIONS(2822), + [anon_sym_ATavailable] = ACTIONS(2822), + [anon_sym___builtin_available] = ACTIONS(2820), + [anon_sym_va_arg] = ACTIONS(2820), + [anon_sym_ATencode] = ACTIONS(2822), + [anon_sym_ATsynchronized] = ACTIONS(2822), + [anon_sym_BOOL] = ACTIONS(2820), + [anon_sym_IMP] = ACTIONS(2820), + [anon_sym_SEL] = ACTIONS(2820), + [anon_sym_Class] = ACTIONS(2820), + [anon_sym_id] = ACTIONS(2820), + }, + [348] = { + [sym_identifier] = ACTIONS(2820), + [aux_sym_preproc_include_token1] = ACTIONS(2820), + [aux_sym_preproc_include_token2] = ACTIONS(2820), + [aux_sym_preproc_def_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token2] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), + [aux_sym_preproc_else_token1] = ACTIONS(2820), + [aux_sym_preproc_elif_token1] = ACTIONS(2820), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2820), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2820), + [sym_preproc_directive] = ACTIONS(2820), + [anon_sym_LPAREN2] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_CARET] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym___extension__] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym___attribute__] = ACTIONS(2820), + [anon_sym___attribute] = ACTIONS(2820), + [anon_sym_noreturn] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym___declspec] = ACTIONS(2820), + [anon_sym___cdecl] = ACTIONS(2820), + [anon_sym___clrcall] = ACTIONS(2820), + [anon_sym___stdcall] = ACTIONS(2820), + [anon_sym___fastcall] = ACTIONS(2820), + [anon_sym___thiscall] = ACTIONS(2820), + [anon_sym___vectorcall] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2820), + [anon_sym_unsigned] = ACTIONS(2820), + [anon_sym_long] = ACTIONS(2820), + [anon_sym_short] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_ATautoreleasepool] = ACTIONS(2822), + [anon_sym_auto] = ACTIONS(2820), + [anon_sym_register] = ACTIONS(2820), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym___inline] = ACTIONS(2820), + [anon_sym___inline__] = ACTIONS(2820), + [anon_sym___forceinline] = ACTIONS(2820), + [anon_sym_thread_local] = ACTIONS(2820), + [anon_sym___thread] = ACTIONS(2820), + [anon_sym_CG_EXTERN] = ACTIONS(2820), + [anon_sym_CG_INLINE] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2820), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2820), + [anon_sym_IBOutlet] = ACTIONS(2820), + [anon_sym_IBInspectable] = ACTIONS(2820), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2820), + [anon_sym_NS_INLINE] = ACTIONS(2820), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2820), + [anon_sym_OBJC_EXPORT] = ACTIONS(2820), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_constexpr] = ACTIONS(2820), + [anon_sym_volatile] = ACTIONS(2820), + [anon_sym_restrict] = ACTIONS(2820), + [anon_sym___restrict__] = ACTIONS(2820), + [anon_sym__Atomic] = ACTIONS(2820), + [anon_sym__Noreturn] = ACTIONS(2820), + [anon_sym__Nonnull] = ACTIONS(2820), + [anon_sym_nullable] = ACTIONS(2820), + [anon_sym__Complex] = ACTIONS(2820), + [anon_sym__Nullable] = ACTIONS(2820), + [anon_sym__Nullable_result] = ACTIONS(2820), + [anon_sym__Null_unspecified] = ACTIONS(2820), + [anon_sym___autoreleasing] = ACTIONS(2820), + [anon_sym___block] = ACTIONS(2820), + [anon_sym___bridge] = ACTIONS(2820), + [anon_sym___bridge_retained] = ACTIONS(2820), + [anon_sym___bridge_transfer] = ACTIONS(2820), + [anon_sym___complex] = ACTIONS(2820), + [anon_sym___const] = ACTIONS(2820), + [anon_sym___imag] = ACTIONS(2820), + [anon_sym___kindof] = ACTIONS(2820), + [anon_sym___nonnull] = ACTIONS(2820), + [anon_sym___nullable] = ACTIONS(2820), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2820), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2820), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2820), + [anon_sym___real] = ACTIONS(2820), + [anon_sym___strong] = ACTIONS(2820), + [anon_sym___unsafe_unretained] = ACTIONS(2820), + [anon_sym___unused] = ACTIONS(2820), + [anon_sym___weak] = ACTIONS(2820), + [anon_sym_alignas] = ACTIONS(2820), + [anon_sym__Alignas] = ACTIONS(2820), + [sym_primitive_type] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2820), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_case] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_in] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_goto] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_sizeof] = ACTIONS(2820), + [anon_sym___alignof__] = ACTIONS(2820), + [anon_sym___alignof] = ACTIONS(2820), + [anon_sym__alignof] = ACTIONS(2820), + [anon_sym_alignof] = ACTIONS(2820), + [anon_sym__Alignof] = ACTIONS(2820), + [anon_sym_offsetof] = ACTIONS(2820), + [anon_sym__Generic] = ACTIONS(2820), + [anon_sym_asm] = ACTIONS(2820), + [anon_sym___asm__] = ACTIONS(2820), + [anon_sym___asm] = ACTIONS(2820), + [sym_number_literal] = ACTIONS(2822), + [anon_sym_L_SQUOTE] = ACTIONS(2822), + [anon_sym_u_SQUOTE] = ACTIONS(2822), + [anon_sym_U_SQUOTE] = ACTIONS(2822), + [anon_sym_u8_SQUOTE] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2822), + [anon_sym_AT] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2822), + [anon_sym_L_DQUOTE] = ACTIONS(2822), + [anon_sym_u_DQUOTE] = ACTIONS(2822), + [anon_sym_U_DQUOTE] = ACTIONS(2822), + [anon_sym_u8_DQUOTE] = ACTIONS(2822), + [sym_true] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [anon_sym_NULL] = ACTIONS(2820), + [anon_sym_nullptr] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2820), + [anon_sym___typeof] = ACTIONS(2820), + [anon_sym_typeof] = ACTIONS(2820), + [anon_sym_ATimport] = ACTIONS(2822), + [aux_sym_preproc_undef_token1] = ACTIONS(2820), + [anon_sym_POUND] = ACTIONS(2820), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2820), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2820), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2820), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2820), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE] = ACTIONS(2820), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_API_AVAILABLE] = ACTIONS(2820), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_API_DEPRECATED] = ACTIONS(2820), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2820), + [anon_sym___deprecated_msg] = ACTIONS(2820), + [anon_sym___deprecated_enum_msg] = ACTIONS(2820), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2820), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2820), + [anon_sym_ATprotocol] = ACTIONS(2822), + [anon_sym_ATinterface] = ACTIONS(2822), + [anon_sym_ATimplementation] = ACTIONS(2822), + [anon_sym_ATcompatibility_alias] = ACTIONS(2822), + [anon_sym_ATsynthesize] = ACTIONS(2822), + [anon_sym_ATdynamic] = ACTIONS(2822), + [anon_sym_ATtry] = ACTIONS(2822), + [anon_sym___try] = ACTIONS(2820), + [anon_sym_ATthrow] = ACTIONS(2822), + [anon_sym_ATselector] = ACTIONS(2822), + [anon_sym_ATavailable] = ACTIONS(2822), + [anon_sym___builtin_available] = ACTIONS(2820), + [anon_sym_va_arg] = ACTIONS(2820), + [anon_sym_ATencode] = ACTIONS(2822), + [anon_sym_ATsynchronized] = ACTIONS(2822), + [anon_sym_BOOL] = ACTIONS(2820), + [anon_sym_IMP] = ACTIONS(2820), + [anon_sym_SEL] = ACTIONS(2820), + [anon_sym_Class] = ACTIONS(2820), + [anon_sym_id] = ACTIONS(2820), + }, + [349] = { + [sym_identifier] = ACTIONS(2820), + [aux_sym_preproc_include_token1] = ACTIONS(2820), + [aux_sym_preproc_include_token2] = ACTIONS(2820), + [aux_sym_preproc_def_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token2] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), + [aux_sym_preproc_else_token1] = ACTIONS(2820), + [aux_sym_preproc_elif_token1] = ACTIONS(2820), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2820), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2820), + [sym_preproc_directive] = ACTIONS(2820), + [anon_sym_LPAREN2] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_CARET] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym___extension__] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym___attribute__] = ACTIONS(2820), + [anon_sym___attribute] = ACTIONS(2820), + [anon_sym_noreturn] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym___declspec] = ACTIONS(2820), + [anon_sym___cdecl] = ACTIONS(2820), + [anon_sym___clrcall] = ACTIONS(2820), + [anon_sym___stdcall] = ACTIONS(2820), + [anon_sym___fastcall] = ACTIONS(2820), + [anon_sym___thiscall] = ACTIONS(2820), + [anon_sym___vectorcall] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2820), + [anon_sym_unsigned] = ACTIONS(2820), + [anon_sym_long] = ACTIONS(2820), + [anon_sym_short] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_ATautoreleasepool] = ACTIONS(2822), + [anon_sym_auto] = ACTIONS(2820), + [anon_sym_register] = ACTIONS(2820), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym___inline] = ACTIONS(2820), + [anon_sym___inline__] = ACTIONS(2820), + [anon_sym___forceinline] = ACTIONS(2820), + [anon_sym_thread_local] = ACTIONS(2820), + [anon_sym___thread] = ACTIONS(2820), + [anon_sym_CG_EXTERN] = ACTIONS(2820), + [anon_sym_CG_INLINE] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2820), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2820), + [anon_sym_IBOutlet] = ACTIONS(2820), + [anon_sym_IBInspectable] = ACTIONS(2820), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2820), + [anon_sym_NS_INLINE] = ACTIONS(2820), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2820), + [anon_sym_OBJC_EXPORT] = ACTIONS(2820), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_constexpr] = ACTIONS(2820), + [anon_sym_volatile] = ACTIONS(2820), + [anon_sym_restrict] = ACTIONS(2820), + [anon_sym___restrict__] = ACTIONS(2820), + [anon_sym__Atomic] = ACTIONS(2820), + [anon_sym__Noreturn] = ACTIONS(2820), + [anon_sym__Nonnull] = ACTIONS(2820), + [anon_sym_nullable] = ACTIONS(2820), + [anon_sym__Complex] = ACTIONS(2820), + [anon_sym__Nullable] = ACTIONS(2820), + [anon_sym__Nullable_result] = ACTIONS(2820), + [anon_sym__Null_unspecified] = ACTIONS(2820), + [anon_sym___autoreleasing] = ACTIONS(2820), + [anon_sym___block] = ACTIONS(2820), + [anon_sym___bridge] = ACTIONS(2820), + [anon_sym___bridge_retained] = ACTIONS(2820), + [anon_sym___bridge_transfer] = ACTIONS(2820), + [anon_sym___complex] = ACTIONS(2820), + [anon_sym___const] = ACTIONS(2820), + [anon_sym___imag] = ACTIONS(2820), + [anon_sym___kindof] = ACTIONS(2820), + [anon_sym___nonnull] = ACTIONS(2820), + [anon_sym___nullable] = ACTIONS(2820), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2820), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2820), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2820), + [anon_sym___real] = ACTIONS(2820), + [anon_sym___strong] = ACTIONS(2820), + [anon_sym___unsafe_unretained] = ACTIONS(2820), + [anon_sym___unused] = ACTIONS(2820), + [anon_sym___weak] = ACTIONS(2820), + [anon_sym_alignas] = ACTIONS(2820), + [anon_sym__Alignas] = ACTIONS(2820), + [sym_primitive_type] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2820), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_case] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_in] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_goto] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_sizeof] = ACTIONS(2820), + [anon_sym___alignof__] = ACTIONS(2820), + [anon_sym___alignof] = ACTIONS(2820), + [anon_sym__alignof] = ACTIONS(2820), + [anon_sym_alignof] = ACTIONS(2820), + [anon_sym__Alignof] = ACTIONS(2820), + [anon_sym_offsetof] = ACTIONS(2820), + [anon_sym__Generic] = ACTIONS(2820), + [anon_sym_asm] = ACTIONS(2820), + [anon_sym___asm__] = ACTIONS(2820), + [anon_sym___asm] = ACTIONS(2820), + [sym_number_literal] = ACTIONS(2822), + [anon_sym_L_SQUOTE] = ACTIONS(2822), + [anon_sym_u_SQUOTE] = ACTIONS(2822), + [anon_sym_U_SQUOTE] = ACTIONS(2822), + [anon_sym_u8_SQUOTE] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2822), + [anon_sym_AT] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2822), + [anon_sym_L_DQUOTE] = ACTIONS(2822), + [anon_sym_u_DQUOTE] = ACTIONS(2822), + [anon_sym_U_DQUOTE] = ACTIONS(2822), + [anon_sym_u8_DQUOTE] = ACTIONS(2822), + [sym_true] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [anon_sym_NULL] = ACTIONS(2820), + [anon_sym_nullptr] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2820), + [anon_sym___typeof] = ACTIONS(2820), + [anon_sym_typeof] = ACTIONS(2820), + [anon_sym_ATimport] = ACTIONS(2822), + [aux_sym_preproc_undef_token1] = ACTIONS(2820), + [anon_sym_POUND] = ACTIONS(2820), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2820), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2820), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2820), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2820), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE] = ACTIONS(2820), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_API_AVAILABLE] = ACTIONS(2820), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_API_DEPRECATED] = ACTIONS(2820), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2820), + [anon_sym___deprecated_msg] = ACTIONS(2820), + [anon_sym___deprecated_enum_msg] = ACTIONS(2820), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2820), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2820), + [anon_sym_ATprotocol] = ACTIONS(2822), + [anon_sym_ATinterface] = ACTIONS(2822), + [anon_sym_ATimplementation] = ACTIONS(2822), + [anon_sym_ATcompatibility_alias] = ACTIONS(2822), + [anon_sym_ATsynthesize] = ACTIONS(2822), + [anon_sym_ATdynamic] = ACTIONS(2822), + [anon_sym_ATtry] = ACTIONS(2822), + [anon_sym___try] = ACTIONS(2820), + [anon_sym_ATthrow] = ACTIONS(2822), + [anon_sym_ATselector] = ACTIONS(2822), + [anon_sym_ATavailable] = ACTIONS(2822), + [anon_sym___builtin_available] = ACTIONS(2820), + [anon_sym_va_arg] = ACTIONS(2820), + [anon_sym_ATencode] = ACTIONS(2822), + [anon_sym_ATsynchronized] = ACTIONS(2822), + [anon_sym_BOOL] = ACTIONS(2820), + [anon_sym_IMP] = ACTIONS(2820), + [anon_sym_SEL] = ACTIONS(2820), + [anon_sym_Class] = ACTIONS(2820), + [anon_sym_id] = ACTIONS(2820), + }, + [350] = { + [sym_identifier] = ACTIONS(2824), + [aux_sym_preproc_include_token1] = ACTIONS(2824), + [aux_sym_preproc_include_token2] = ACTIONS(2824), + [aux_sym_preproc_def_token1] = ACTIONS(2824), + [aux_sym_preproc_if_token1] = ACTIONS(2824), + [aux_sym_preproc_if_token2] = ACTIONS(2824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2824), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2824), + [aux_sym_preproc_else_token1] = ACTIONS(2824), + [aux_sym_preproc_elif_token1] = ACTIONS(2824), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2824), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2824), + [sym_preproc_directive] = ACTIONS(2824), + [anon_sym_LPAREN2] = ACTIONS(2826), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_DASH] = ACTIONS(2824), + [anon_sym_PLUS] = ACTIONS(2824), + [anon_sym_STAR] = ACTIONS(2826), + [anon_sym_CARET] = ACTIONS(2826), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym___extension__] = ACTIONS(2824), + [anon_sym_typedef] = ACTIONS(2824), + [anon_sym_extern] = ACTIONS(2824), + [anon_sym___attribute__] = ACTIONS(2824), + [anon_sym___attribute] = ACTIONS(2824), + [anon_sym_noreturn] = ACTIONS(2824), + [anon_sym_LBRACK] = ACTIONS(2826), + [anon_sym___declspec] = ACTIONS(2824), + [anon_sym___cdecl] = ACTIONS(2824), + [anon_sym___clrcall] = ACTIONS(2824), + [anon_sym___stdcall] = ACTIONS(2824), + [anon_sym___fastcall] = ACTIONS(2824), + [anon_sym___thiscall] = ACTIONS(2824), + [anon_sym___vectorcall] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_signed] = ACTIONS(2824), + [anon_sym_unsigned] = ACTIONS(2824), + [anon_sym_long] = ACTIONS(2824), + [anon_sym_short] = ACTIONS(2824), + [anon_sym_static] = ACTIONS(2824), + [anon_sym_ATautoreleasepool] = ACTIONS(2826), + [anon_sym_auto] = ACTIONS(2824), + [anon_sym_register] = ACTIONS(2824), + [anon_sym_inline] = ACTIONS(2824), + [anon_sym___inline] = ACTIONS(2824), + [anon_sym___inline__] = ACTIONS(2824), + [anon_sym___forceinline] = ACTIONS(2824), + [anon_sym_thread_local] = ACTIONS(2824), + [anon_sym___thread] = ACTIONS(2824), + [anon_sym_CG_EXTERN] = ACTIONS(2824), + [anon_sym_CG_INLINE] = ACTIONS(2824), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2824), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2824), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2824), + [anon_sym_IBOutlet] = ACTIONS(2824), + [anon_sym_IBInspectable] = ACTIONS(2824), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2824), + [anon_sym_NS_INLINE] = ACTIONS(2824), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2824), + [anon_sym_OBJC_EXPORT] = ACTIONS(2824), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2824), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2824), + [anon_sym_const] = ACTIONS(2824), + [anon_sym_constexpr] = ACTIONS(2824), + [anon_sym_volatile] = ACTIONS(2824), + [anon_sym_restrict] = ACTIONS(2824), + [anon_sym___restrict__] = ACTIONS(2824), + [anon_sym__Atomic] = ACTIONS(2824), + [anon_sym__Noreturn] = ACTIONS(2824), + [anon_sym__Nonnull] = ACTIONS(2824), + [anon_sym_nullable] = ACTIONS(2824), + [anon_sym__Complex] = ACTIONS(2824), + [anon_sym__Nullable] = ACTIONS(2824), + [anon_sym__Nullable_result] = ACTIONS(2824), + [anon_sym__Null_unspecified] = ACTIONS(2824), + [anon_sym___autoreleasing] = ACTIONS(2824), + [anon_sym___block] = ACTIONS(2824), + [anon_sym___bridge] = ACTIONS(2824), + [anon_sym___bridge_retained] = ACTIONS(2824), + [anon_sym___bridge_transfer] = ACTIONS(2824), + [anon_sym___complex] = ACTIONS(2824), + [anon_sym___const] = ACTIONS(2824), + [anon_sym___imag] = ACTIONS(2824), + [anon_sym___kindof] = ACTIONS(2824), + [anon_sym___nonnull] = ACTIONS(2824), + [anon_sym___nullable] = ACTIONS(2824), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2824), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2824), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2824), + [anon_sym___real] = ACTIONS(2824), + [anon_sym___strong] = ACTIONS(2824), + [anon_sym___unsafe_unretained] = ACTIONS(2824), + [anon_sym___unused] = ACTIONS(2824), + [anon_sym___weak] = ACTIONS(2824), + [anon_sym_alignas] = ACTIONS(2824), + [anon_sym__Alignas] = ACTIONS(2824), + [sym_primitive_type] = ACTIONS(2824), + [anon_sym_enum] = ACTIONS(2824), + [anon_sym_struct] = ACTIONS(2824), + [anon_sym_union] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2824), + [anon_sym_switch] = ACTIONS(2824), + [anon_sym_case] = ACTIONS(2824), + [anon_sym_default] = ACTIONS(2824), + [anon_sym_while] = ACTIONS(2824), + [anon_sym_do] = ACTIONS(2824), + [anon_sym_for] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2824), + [anon_sym_return] = ACTIONS(2824), + [anon_sym_break] = ACTIONS(2824), + [anon_sym_continue] = ACTIONS(2824), + [anon_sym_goto] = ACTIONS(2824), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_sizeof] = ACTIONS(2824), + [anon_sym___alignof__] = ACTIONS(2824), + [anon_sym___alignof] = ACTIONS(2824), + [anon_sym__alignof] = ACTIONS(2824), + [anon_sym_alignof] = ACTIONS(2824), + [anon_sym__Alignof] = ACTIONS(2824), + [anon_sym_offsetof] = ACTIONS(2824), + [anon_sym__Generic] = ACTIONS(2824), + [anon_sym_asm] = ACTIONS(2824), + [anon_sym___asm__] = ACTIONS(2824), + [anon_sym___asm] = ACTIONS(2824), + [sym_number_literal] = ACTIONS(2826), + [anon_sym_L_SQUOTE] = ACTIONS(2826), + [anon_sym_u_SQUOTE] = ACTIONS(2826), + [anon_sym_U_SQUOTE] = ACTIONS(2826), + [anon_sym_u8_SQUOTE] = ACTIONS(2826), + [anon_sym_SQUOTE] = ACTIONS(2826), + [anon_sym_AT] = ACTIONS(2824), + [anon_sym_DQUOTE] = ACTIONS(2826), + [anon_sym_L_DQUOTE] = ACTIONS(2826), + [anon_sym_u_DQUOTE] = ACTIONS(2826), + [anon_sym_U_DQUOTE] = ACTIONS(2826), + [anon_sym_u8_DQUOTE] = ACTIONS(2826), + [sym_true] = ACTIONS(2824), + [sym_false] = ACTIONS(2824), + [anon_sym_NULL] = ACTIONS(2824), + [anon_sym_nullptr] = ACTIONS(2824), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2824), + [anon_sym___typeof] = ACTIONS(2824), + [anon_sym_typeof] = ACTIONS(2824), + [anon_sym_ATimport] = ACTIONS(2826), + [aux_sym_preproc_undef_token1] = ACTIONS(2824), + [anon_sym_POUND] = ACTIONS(2824), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2824), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2824), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2824), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2824), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2824), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2824), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2824), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2824), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2824), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2824), + [anon_sym_NS_AVAILABLE] = ACTIONS(2824), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2824), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2824), + [anon_sym_API_AVAILABLE] = ACTIONS(2824), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2824), + [anon_sym_API_DEPRECATED] = ACTIONS(2824), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2824), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2824), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2824), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2824), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2824), + [anon_sym___deprecated_msg] = ACTIONS(2824), + [anon_sym___deprecated_enum_msg] = ACTIONS(2824), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2824), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2824), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2824), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2824), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2824), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2824), + [anon_sym_ATprotocol] = ACTIONS(2826), + [anon_sym_ATinterface] = ACTIONS(2826), + [anon_sym_ATimplementation] = ACTIONS(2826), + [anon_sym_ATcompatibility_alias] = ACTIONS(2826), + [anon_sym_ATsynthesize] = ACTIONS(2826), + [anon_sym_ATdynamic] = ACTIONS(2826), + [anon_sym_ATtry] = ACTIONS(2826), + [anon_sym___try] = ACTIONS(2824), + [anon_sym_ATthrow] = ACTIONS(2826), + [anon_sym_ATselector] = ACTIONS(2826), + [anon_sym_ATavailable] = ACTIONS(2826), + [anon_sym___builtin_available] = ACTIONS(2824), + [anon_sym_va_arg] = ACTIONS(2824), + [anon_sym_ATencode] = ACTIONS(2826), + [anon_sym_ATsynchronized] = ACTIONS(2826), + [anon_sym_BOOL] = ACTIONS(2824), + [anon_sym_IMP] = ACTIONS(2824), + [anon_sym_SEL] = ACTIONS(2824), + [anon_sym_Class] = ACTIONS(2824), + [anon_sym_id] = ACTIONS(2824), + }, + [351] = { + [sym_identifier] = ACTIONS(2828), + [aux_sym_preproc_include_token1] = ACTIONS(2828), + [aux_sym_preproc_include_token2] = ACTIONS(2828), + [aux_sym_preproc_def_token1] = ACTIONS(2828), + [aux_sym_preproc_if_token1] = ACTIONS(2828), + [aux_sym_preproc_if_token2] = ACTIONS(2828), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2828), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2828), + [aux_sym_preproc_else_token1] = ACTIONS(2828), + [aux_sym_preproc_elif_token1] = ACTIONS(2828), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2828), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2828), + [sym_preproc_directive] = ACTIONS(2828), + [anon_sym_LPAREN2] = ACTIONS(2830), + [anon_sym_BANG] = ACTIONS(2830), + [anon_sym_TILDE] = ACTIONS(2830), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_PLUS] = ACTIONS(2828), + [anon_sym_STAR] = ACTIONS(2830), + [anon_sym_CARET] = ACTIONS(2830), + [anon_sym_AMP] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym___extension__] = ACTIONS(2828), + [anon_sym_typedef] = ACTIONS(2828), + [anon_sym_extern] = ACTIONS(2828), + [anon_sym___attribute__] = ACTIONS(2828), + [anon_sym___attribute] = ACTIONS(2828), + [anon_sym_noreturn] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym___declspec] = ACTIONS(2828), + [anon_sym___cdecl] = ACTIONS(2828), + [anon_sym___clrcall] = ACTIONS(2828), + [anon_sym___stdcall] = ACTIONS(2828), + [anon_sym___fastcall] = ACTIONS(2828), + [anon_sym___thiscall] = ACTIONS(2828), + [anon_sym___vectorcall] = ACTIONS(2828), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_signed] = ACTIONS(2828), + [anon_sym_unsigned] = ACTIONS(2828), + [anon_sym_long] = ACTIONS(2828), + [anon_sym_short] = ACTIONS(2828), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_ATautoreleasepool] = ACTIONS(2830), + [anon_sym_auto] = ACTIONS(2828), + [anon_sym_register] = ACTIONS(2828), + [anon_sym_inline] = ACTIONS(2828), + [anon_sym___inline] = ACTIONS(2828), + [anon_sym___inline__] = ACTIONS(2828), + [anon_sym___forceinline] = ACTIONS(2828), + [anon_sym_thread_local] = ACTIONS(2828), + [anon_sym___thread] = ACTIONS(2828), + [anon_sym_CG_EXTERN] = ACTIONS(2828), + [anon_sym_CG_INLINE] = ACTIONS(2828), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2828), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2828), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2828), + [anon_sym_IBOutlet] = ACTIONS(2828), + [anon_sym_IBInspectable] = ACTIONS(2828), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2828), + [anon_sym_NS_INLINE] = ACTIONS(2828), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2828), + [anon_sym_OBJC_EXPORT] = ACTIONS(2828), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2828), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2828), + [anon_sym_const] = ACTIONS(2828), + [anon_sym_constexpr] = ACTIONS(2828), + [anon_sym_volatile] = ACTIONS(2828), + [anon_sym_restrict] = ACTIONS(2828), + [anon_sym___restrict__] = ACTIONS(2828), + [anon_sym__Atomic] = ACTIONS(2828), + [anon_sym__Noreturn] = ACTIONS(2828), + [anon_sym__Nonnull] = ACTIONS(2828), + [anon_sym_nullable] = ACTIONS(2828), + [anon_sym__Complex] = ACTIONS(2828), + [anon_sym__Nullable] = ACTIONS(2828), + [anon_sym__Nullable_result] = ACTIONS(2828), + [anon_sym__Null_unspecified] = ACTIONS(2828), + [anon_sym___autoreleasing] = ACTIONS(2828), + [anon_sym___block] = ACTIONS(2828), + [anon_sym___bridge] = ACTIONS(2828), + [anon_sym___bridge_retained] = ACTIONS(2828), + [anon_sym___bridge_transfer] = ACTIONS(2828), + [anon_sym___complex] = ACTIONS(2828), + [anon_sym___const] = ACTIONS(2828), + [anon_sym___imag] = ACTIONS(2828), + [anon_sym___kindof] = ACTIONS(2828), + [anon_sym___nonnull] = ACTIONS(2828), + [anon_sym___nullable] = ACTIONS(2828), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2828), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2828), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2828), + [anon_sym___real] = ACTIONS(2828), + [anon_sym___strong] = ACTIONS(2828), + [anon_sym___unsafe_unretained] = ACTIONS(2828), + [anon_sym___unused] = ACTIONS(2828), + [anon_sym___weak] = ACTIONS(2828), + [anon_sym_alignas] = ACTIONS(2828), + [anon_sym__Alignas] = ACTIONS(2828), + [sym_primitive_type] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [anon_sym_struct] = ACTIONS(2828), + [anon_sym_union] = ACTIONS(2828), + [anon_sym_if] = ACTIONS(2828), + [anon_sym_switch] = ACTIONS(2828), + [anon_sym_case] = ACTIONS(2828), + [anon_sym_default] = ACTIONS(2828), + [anon_sym_while] = ACTIONS(2828), + [anon_sym_do] = ACTIONS(2828), + [anon_sym_for] = ACTIONS(2828), + [anon_sym_in] = ACTIONS(2828), + [anon_sym_return] = ACTIONS(2828), + [anon_sym_break] = ACTIONS(2828), + [anon_sym_continue] = ACTIONS(2828), + [anon_sym_goto] = ACTIONS(2828), + [anon_sym_DASH_DASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2830), + [anon_sym_sizeof] = ACTIONS(2828), + [anon_sym___alignof__] = ACTIONS(2828), + [anon_sym___alignof] = ACTIONS(2828), + [anon_sym__alignof] = ACTIONS(2828), + [anon_sym_alignof] = ACTIONS(2828), + [anon_sym__Alignof] = ACTIONS(2828), + [anon_sym_offsetof] = ACTIONS(2828), + [anon_sym__Generic] = ACTIONS(2828), + [anon_sym_asm] = ACTIONS(2828), + [anon_sym___asm__] = ACTIONS(2828), + [anon_sym___asm] = ACTIONS(2828), + [sym_number_literal] = ACTIONS(2830), + [anon_sym_L_SQUOTE] = ACTIONS(2830), + [anon_sym_u_SQUOTE] = ACTIONS(2830), + [anon_sym_U_SQUOTE] = ACTIONS(2830), + [anon_sym_u8_SQUOTE] = ACTIONS(2830), + [anon_sym_SQUOTE] = ACTIONS(2830), + [anon_sym_AT] = ACTIONS(2828), + [anon_sym_DQUOTE] = ACTIONS(2830), + [anon_sym_L_DQUOTE] = ACTIONS(2830), + [anon_sym_u_DQUOTE] = ACTIONS(2830), + [anon_sym_U_DQUOTE] = ACTIONS(2830), + [anon_sym_u8_DQUOTE] = ACTIONS(2830), + [sym_true] = ACTIONS(2828), + [sym_false] = ACTIONS(2828), + [anon_sym_NULL] = ACTIONS(2828), + [anon_sym_nullptr] = ACTIONS(2828), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2828), + [anon_sym___typeof] = ACTIONS(2828), + [anon_sym_typeof] = ACTIONS(2828), + [anon_sym_ATimport] = ACTIONS(2830), + [aux_sym_preproc_undef_token1] = ACTIONS(2828), + [anon_sym_POUND] = ACTIONS(2828), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2828), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2828), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2828), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2828), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2828), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2828), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2828), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2828), + [anon_sym_NS_AVAILABLE] = ACTIONS(2828), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2828), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_API_AVAILABLE] = ACTIONS(2828), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_API_DEPRECATED] = ACTIONS(2828), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2828), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2828), + [anon_sym___deprecated_msg] = ACTIONS(2828), + [anon_sym___deprecated_enum_msg] = ACTIONS(2828), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2828), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2828), + [anon_sym_ATprotocol] = ACTIONS(2830), + [anon_sym_ATinterface] = ACTIONS(2830), + [anon_sym_ATimplementation] = ACTIONS(2830), + [anon_sym_ATcompatibility_alias] = ACTIONS(2830), + [anon_sym_ATsynthesize] = ACTIONS(2830), + [anon_sym_ATdynamic] = ACTIONS(2830), + [anon_sym_ATtry] = ACTIONS(2830), + [anon_sym___try] = ACTIONS(2828), + [anon_sym_ATthrow] = ACTIONS(2830), + [anon_sym_ATselector] = ACTIONS(2830), + [anon_sym_ATavailable] = ACTIONS(2830), + [anon_sym___builtin_available] = ACTIONS(2828), + [anon_sym_va_arg] = ACTIONS(2828), + [anon_sym_ATencode] = ACTIONS(2830), + [anon_sym_ATsynchronized] = ACTIONS(2830), + [anon_sym_BOOL] = ACTIONS(2828), + [anon_sym_IMP] = ACTIONS(2828), + [anon_sym_SEL] = ACTIONS(2828), + [anon_sym_Class] = ACTIONS(2828), + [anon_sym_id] = ACTIONS(2828), + }, + [352] = { + [sym_identifier] = ACTIONS(2832), + [aux_sym_preproc_include_token1] = ACTIONS(2832), + [aux_sym_preproc_include_token2] = ACTIONS(2832), + [aux_sym_preproc_def_token1] = ACTIONS(2832), + [aux_sym_preproc_if_token1] = ACTIONS(2832), + [aux_sym_preproc_if_token2] = ACTIONS(2832), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2832), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2832), + [aux_sym_preproc_else_token1] = ACTIONS(2832), + [aux_sym_preproc_elif_token1] = ACTIONS(2832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2832), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2832), + [sym_preproc_directive] = ACTIONS(2832), + [anon_sym_LPAREN2] = ACTIONS(2834), + [anon_sym_BANG] = ACTIONS(2834), + [anon_sym_TILDE] = ACTIONS(2834), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_PLUS] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2834), + [anon_sym_CARET] = ACTIONS(2834), + [anon_sym_AMP] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym___extension__] = ACTIONS(2832), + [anon_sym_typedef] = ACTIONS(2832), + [anon_sym_extern] = ACTIONS(2832), + [anon_sym___attribute__] = ACTIONS(2832), + [anon_sym___attribute] = ACTIONS(2832), + [anon_sym_noreturn] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2834), + [anon_sym___declspec] = ACTIONS(2832), + [anon_sym___cdecl] = ACTIONS(2832), + [anon_sym___clrcall] = ACTIONS(2832), + [anon_sym___stdcall] = ACTIONS(2832), + [anon_sym___fastcall] = ACTIONS(2832), + [anon_sym___thiscall] = ACTIONS(2832), + [anon_sym___vectorcall] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2834), + [anon_sym_signed] = ACTIONS(2832), + [anon_sym_unsigned] = ACTIONS(2832), + [anon_sym_long] = ACTIONS(2832), + [anon_sym_short] = ACTIONS(2832), + [anon_sym_static] = ACTIONS(2832), + [anon_sym_ATautoreleasepool] = ACTIONS(2834), + [anon_sym_auto] = ACTIONS(2832), + [anon_sym_register] = ACTIONS(2832), + [anon_sym_inline] = ACTIONS(2832), + [anon_sym___inline] = ACTIONS(2832), + [anon_sym___inline__] = ACTIONS(2832), + [anon_sym___forceinline] = ACTIONS(2832), + [anon_sym_thread_local] = ACTIONS(2832), + [anon_sym___thread] = ACTIONS(2832), + [anon_sym_CG_EXTERN] = ACTIONS(2832), + [anon_sym_CG_INLINE] = ACTIONS(2832), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2832), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2832), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2832), + [anon_sym_IBOutlet] = ACTIONS(2832), + [anon_sym_IBInspectable] = ACTIONS(2832), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2832), + [anon_sym_NS_INLINE] = ACTIONS(2832), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2832), + [anon_sym_OBJC_EXPORT] = ACTIONS(2832), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2832), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2832), + [anon_sym_const] = ACTIONS(2832), + [anon_sym_constexpr] = ACTIONS(2832), + [anon_sym_volatile] = ACTIONS(2832), + [anon_sym_restrict] = ACTIONS(2832), + [anon_sym___restrict__] = ACTIONS(2832), + [anon_sym__Atomic] = ACTIONS(2832), + [anon_sym__Noreturn] = ACTIONS(2832), + [anon_sym__Nonnull] = ACTIONS(2832), + [anon_sym_nullable] = ACTIONS(2832), + [anon_sym__Complex] = ACTIONS(2832), + [anon_sym__Nullable] = ACTIONS(2832), + [anon_sym__Nullable_result] = ACTIONS(2832), + [anon_sym__Null_unspecified] = ACTIONS(2832), + [anon_sym___autoreleasing] = ACTIONS(2832), + [anon_sym___block] = ACTIONS(2832), + [anon_sym___bridge] = ACTIONS(2832), + [anon_sym___bridge_retained] = ACTIONS(2832), + [anon_sym___bridge_transfer] = ACTIONS(2832), + [anon_sym___complex] = ACTIONS(2832), + [anon_sym___const] = ACTIONS(2832), + [anon_sym___imag] = ACTIONS(2832), + [anon_sym___kindof] = ACTIONS(2832), + [anon_sym___nonnull] = ACTIONS(2832), + [anon_sym___nullable] = ACTIONS(2832), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2832), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2832), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2832), + [anon_sym___real] = ACTIONS(2832), + [anon_sym___strong] = ACTIONS(2832), + [anon_sym___unsafe_unretained] = ACTIONS(2832), + [anon_sym___unused] = ACTIONS(2832), + [anon_sym___weak] = ACTIONS(2832), + [anon_sym_alignas] = ACTIONS(2832), + [anon_sym__Alignas] = ACTIONS(2832), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_enum] = ACTIONS(2832), + [anon_sym_struct] = ACTIONS(2832), + [anon_sym_union] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_switch] = ACTIONS(2832), + [anon_sym_case] = ACTIONS(2832), + [anon_sym_default] = ACTIONS(2832), + [anon_sym_while] = ACTIONS(2832), + [anon_sym_do] = ACTIONS(2832), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_in] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_goto] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2834), + [anon_sym_PLUS_PLUS] = ACTIONS(2834), + [anon_sym_sizeof] = ACTIONS(2832), + [anon_sym___alignof__] = ACTIONS(2832), + [anon_sym___alignof] = ACTIONS(2832), + [anon_sym__alignof] = ACTIONS(2832), + [anon_sym_alignof] = ACTIONS(2832), + [anon_sym__Alignof] = ACTIONS(2832), + [anon_sym_offsetof] = ACTIONS(2832), + [anon_sym__Generic] = ACTIONS(2832), + [anon_sym_asm] = ACTIONS(2832), + [anon_sym___asm__] = ACTIONS(2832), + [anon_sym___asm] = ACTIONS(2832), + [sym_number_literal] = ACTIONS(2834), + [anon_sym_L_SQUOTE] = ACTIONS(2834), + [anon_sym_u_SQUOTE] = ACTIONS(2834), + [anon_sym_U_SQUOTE] = ACTIONS(2834), + [anon_sym_u8_SQUOTE] = ACTIONS(2834), + [anon_sym_SQUOTE] = ACTIONS(2834), + [anon_sym_AT] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2834), + [anon_sym_L_DQUOTE] = ACTIONS(2834), + [anon_sym_u_DQUOTE] = ACTIONS(2834), + [anon_sym_U_DQUOTE] = ACTIONS(2834), + [anon_sym_u8_DQUOTE] = ACTIONS(2834), + [sym_true] = ACTIONS(2832), + [sym_false] = ACTIONS(2832), + [anon_sym_NULL] = ACTIONS(2832), + [anon_sym_nullptr] = ACTIONS(2832), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2832), + [anon_sym___typeof] = ACTIONS(2832), + [anon_sym_typeof] = ACTIONS(2832), + [anon_sym_ATimport] = ACTIONS(2834), + [aux_sym_preproc_undef_token1] = ACTIONS(2832), + [anon_sym_POUND] = ACTIONS(2832), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2832), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2832), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2832), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2832), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2832), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2832), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2832), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2832), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2832), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2832), + [anon_sym_NS_AVAILABLE] = ACTIONS(2832), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2832), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2832), + [anon_sym_API_AVAILABLE] = ACTIONS(2832), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2832), + [anon_sym_API_DEPRECATED] = ACTIONS(2832), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2832), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2832), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2832), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2832), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2832), + [anon_sym___deprecated_msg] = ACTIONS(2832), + [anon_sym___deprecated_enum_msg] = ACTIONS(2832), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2832), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2832), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2832), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2832), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2832), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2832), + [anon_sym_ATprotocol] = ACTIONS(2834), + [anon_sym_ATinterface] = ACTIONS(2834), + [anon_sym_ATimplementation] = ACTIONS(2834), + [anon_sym_ATcompatibility_alias] = ACTIONS(2834), + [anon_sym_ATsynthesize] = ACTIONS(2834), + [anon_sym_ATdynamic] = ACTIONS(2834), + [anon_sym_ATtry] = ACTIONS(2834), + [anon_sym___try] = ACTIONS(2832), + [anon_sym_ATthrow] = ACTIONS(2834), + [anon_sym_ATselector] = ACTIONS(2834), + [anon_sym_ATavailable] = ACTIONS(2834), + [anon_sym___builtin_available] = ACTIONS(2832), + [anon_sym_va_arg] = ACTIONS(2832), + [anon_sym_ATencode] = ACTIONS(2834), + [anon_sym_ATsynchronized] = ACTIONS(2834), + [anon_sym_BOOL] = ACTIONS(2832), + [anon_sym_IMP] = ACTIONS(2832), + [anon_sym_SEL] = ACTIONS(2832), + [anon_sym_Class] = ACTIONS(2832), + [anon_sym_id] = ACTIONS(2832), + }, + [353] = { + [sym_identifier] = ACTIONS(2836), + [aux_sym_preproc_include_token1] = ACTIONS(2836), + [aux_sym_preproc_include_token2] = ACTIONS(2836), + [aux_sym_preproc_def_token1] = ACTIONS(2836), + [aux_sym_preproc_if_token1] = ACTIONS(2836), + [aux_sym_preproc_if_token2] = ACTIONS(2836), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2836), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2836), + [aux_sym_preproc_else_token1] = ACTIONS(2836), + [aux_sym_preproc_elif_token1] = ACTIONS(2836), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2836), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2836), + [sym_preproc_directive] = ACTIONS(2836), + [anon_sym_LPAREN2] = ACTIONS(2838), + [anon_sym_BANG] = ACTIONS(2838), + [anon_sym_TILDE] = ACTIONS(2838), + [anon_sym_DASH] = ACTIONS(2836), + [anon_sym_PLUS] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2838), + [anon_sym_CARET] = ACTIONS(2838), + [anon_sym_AMP] = ACTIONS(2838), + [anon_sym_SEMI] = ACTIONS(2838), + [anon_sym___extension__] = ACTIONS(2836), + [anon_sym_typedef] = ACTIONS(2836), + [anon_sym_extern] = ACTIONS(2836), + [anon_sym___attribute__] = ACTIONS(2836), + [anon_sym___attribute] = ACTIONS(2836), + [anon_sym_noreturn] = ACTIONS(2836), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym___declspec] = ACTIONS(2836), + [anon_sym___cdecl] = ACTIONS(2836), + [anon_sym___clrcall] = ACTIONS(2836), + [anon_sym___stdcall] = ACTIONS(2836), + [anon_sym___fastcall] = ACTIONS(2836), + [anon_sym___thiscall] = ACTIONS(2836), + [anon_sym___vectorcall] = ACTIONS(2836), + [anon_sym_LBRACE] = ACTIONS(2838), + [anon_sym_signed] = ACTIONS(2836), + [anon_sym_unsigned] = ACTIONS(2836), + [anon_sym_long] = ACTIONS(2836), + [anon_sym_short] = ACTIONS(2836), + [anon_sym_static] = ACTIONS(2836), + [anon_sym_ATautoreleasepool] = ACTIONS(2838), + [anon_sym_auto] = ACTIONS(2836), + [anon_sym_register] = ACTIONS(2836), + [anon_sym_inline] = ACTIONS(2836), + [anon_sym___inline] = ACTIONS(2836), + [anon_sym___inline__] = ACTIONS(2836), + [anon_sym___forceinline] = ACTIONS(2836), + [anon_sym_thread_local] = ACTIONS(2836), + [anon_sym___thread] = ACTIONS(2836), + [anon_sym_CG_EXTERN] = ACTIONS(2836), + [anon_sym_CG_INLINE] = ACTIONS(2836), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2836), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2836), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2836), + [anon_sym_IBOutlet] = ACTIONS(2836), + [anon_sym_IBInspectable] = ACTIONS(2836), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2836), + [anon_sym_NS_INLINE] = ACTIONS(2836), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2836), + [anon_sym_OBJC_EXPORT] = ACTIONS(2836), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2836), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2836), + [anon_sym_const] = ACTIONS(2836), + [anon_sym_constexpr] = ACTIONS(2836), + [anon_sym_volatile] = ACTIONS(2836), + [anon_sym_restrict] = ACTIONS(2836), + [anon_sym___restrict__] = ACTIONS(2836), + [anon_sym__Atomic] = ACTIONS(2836), + [anon_sym__Noreturn] = ACTIONS(2836), + [anon_sym__Nonnull] = ACTIONS(2836), + [anon_sym_nullable] = ACTIONS(2836), + [anon_sym__Complex] = ACTIONS(2836), + [anon_sym__Nullable] = ACTIONS(2836), + [anon_sym__Nullable_result] = ACTIONS(2836), + [anon_sym__Null_unspecified] = ACTIONS(2836), + [anon_sym___autoreleasing] = ACTIONS(2836), + [anon_sym___block] = ACTIONS(2836), + [anon_sym___bridge] = ACTIONS(2836), + [anon_sym___bridge_retained] = ACTIONS(2836), + [anon_sym___bridge_transfer] = ACTIONS(2836), + [anon_sym___complex] = ACTIONS(2836), + [anon_sym___const] = ACTIONS(2836), + [anon_sym___imag] = ACTIONS(2836), + [anon_sym___kindof] = ACTIONS(2836), + [anon_sym___nonnull] = ACTIONS(2836), + [anon_sym___nullable] = ACTIONS(2836), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2836), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2836), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2836), + [anon_sym___real] = ACTIONS(2836), + [anon_sym___strong] = ACTIONS(2836), + [anon_sym___unsafe_unretained] = ACTIONS(2836), + [anon_sym___unused] = ACTIONS(2836), + [anon_sym___weak] = ACTIONS(2836), + [anon_sym_alignas] = ACTIONS(2836), + [anon_sym__Alignas] = ACTIONS(2836), + [sym_primitive_type] = ACTIONS(2836), + [anon_sym_enum] = ACTIONS(2836), + [anon_sym_struct] = ACTIONS(2836), + [anon_sym_union] = ACTIONS(2836), + [anon_sym_if] = ACTIONS(2836), + [anon_sym_switch] = ACTIONS(2836), + [anon_sym_case] = ACTIONS(2836), + [anon_sym_default] = ACTIONS(2836), + [anon_sym_while] = ACTIONS(2836), + [anon_sym_do] = ACTIONS(2836), + [anon_sym_for] = ACTIONS(2836), + [anon_sym_in] = ACTIONS(2836), + [anon_sym_return] = ACTIONS(2836), + [anon_sym_break] = ACTIONS(2836), + [anon_sym_continue] = ACTIONS(2836), + [anon_sym_goto] = ACTIONS(2836), + [anon_sym_DASH_DASH] = ACTIONS(2838), + [anon_sym_PLUS_PLUS] = ACTIONS(2838), + [anon_sym_sizeof] = ACTIONS(2836), + [anon_sym___alignof__] = ACTIONS(2836), + [anon_sym___alignof] = ACTIONS(2836), + [anon_sym__alignof] = ACTIONS(2836), + [anon_sym_alignof] = ACTIONS(2836), + [anon_sym__Alignof] = ACTIONS(2836), + [anon_sym_offsetof] = ACTIONS(2836), + [anon_sym__Generic] = ACTIONS(2836), + [anon_sym_asm] = ACTIONS(2836), + [anon_sym___asm__] = ACTIONS(2836), + [anon_sym___asm] = ACTIONS(2836), + [sym_number_literal] = ACTIONS(2838), + [anon_sym_L_SQUOTE] = ACTIONS(2838), + [anon_sym_u_SQUOTE] = ACTIONS(2838), + [anon_sym_U_SQUOTE] = ACTIONS(2838), + [anon_sym_u8_SQUOTE] = ACTIONS(2838), + [anon_sym_SQUOTE] = ACTIONS(2838), + [anon_sym_AT] = ACTIONS(2836), + [anon_sym_DQUOTE] = ACTIONS(2838), + [anon_sym_L_DQUOTE] = ACTIONS(2838), + [anon_sym_u_DQUOTE] = ACTIONS(2838), + [anon_sym_U_DQUOTE] = ACTIONS(2838), + [anon_sym_u8_DQUOTE] = ACTIONS(2838), + [sym_true] = ACTIONS(2836), + [sym_false] = ACTIONS(2836), + [anon_sym_NULL] = ACTIONS(2836), + [anon_sym_nullptr] = ACTIONS(2836), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2836), + [anon_sym___typeof] = ACTIONS(2836), + [anon_sym_typeof] = ACTIONS(2836), + [anon_sym_ATimport] = ACTIONS(2838), + [aux_sym_preproc_undef_token1] = ACTIONS(2836), + [anon_sym_POUND] = ACTIONS(2836), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2836), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2836), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2836), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2836), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2836), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2836), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2836), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2836), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2836), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2836), + [anon_sym_NS_AVAILABLE] = ACTIONS(2836), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2836), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2836), + [anon_sym_API_AVAILABLE] = ACTIONS(2836), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2836), + [anon_sym_API_DEPRECATED] = ACTIONS(2836), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2836), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2836), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2836), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2836), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2836), + [anon_sym___deprecated_msg] = ACTIONS(2836), + [anon_sym___deprecated_enum_msg] = ACTIONS(2836), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2836), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2836), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2836), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2836), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2836), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2836), + [anon_sym_ATprotocol] = ACTIONS(2838), + [anon_sym_ATinterface] = ACTIONS(2838), + [anon_sym_ATimplementation] = ACTIONS(2838), + [anon_sym_ATcompatibility_alias] = ACTIONS(2838), + [anon_sym_ATsynthesize] = ACTIONS(2838), + [anon_sym_ATdynamic] = ACTIONS(2838), + [anon_sym_ATtry] = ACTIONS(2838), + [anon_sym___try] = ACTIONS(2836), + [anon_sym_ATthrow] = ACTIONS(2838), + [anon_sym_ATselector] = ACTIONS(2838), + [anon_sym_ATavailable] = ACTIONS(2838), + [anon_sym___builtin_available] = ACTIONS(2836), + [anon_sym_va_arg] = ACTIONS(2836), + [anon_sym_ATencode] = ACTIONS(2838), + [anon_sym_ATsynchronized] = ACTIONS(2838), + [anon_sym_BOOL] = ACTIONS(2836), + [anon_sym_IMP] = ACTIONS(2836), + [anon_sym_SEL] = ACTIONS(2836), + [anon_sym_Class] = ACTIONS(2836), + [anon_sym_id] = ACTIONS(2836), + }, + [354] = { + [sym_identifier] = ACTIONS(2840), + [aux_sym_preproc_include_token1] = ACTIONS(2840), + [aux_sym_preproc_include_token2] = ACTIONS(2840), + [aux_sym_preproc_def_token1] = ACTIONS(2840), + [aux_sym_preproc_if_token1] = ACTIONS(2840), + [aux_sym_preproc_if_token2] = ACTIONS(2840), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2840), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2840), + [aux_sym_preproc_else_token1] = ACTIONS(2840), + [aux_sym_preproc_elif_token1] = ACTIONS(2840), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2840), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2840), + [sym_preproc_directive] = ACTIONS(2840), + [anon_sym_LPAREN2] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(2842), + [anon_sym_TILDE] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2840), + [anon_sym_PLUS] = ACTIONS(2840), + [anon_sym_STAR] = ACTIONS(2842), + [anon_sym_CARET] = ACTIONS(2842), + [anon_sym_AMP] = ACTIONS(2842), + [anon_sym_SEMI] = ACTIONS(2842), + [anon_sym___extension__] = ACTIONS(2840), + [anon_sym_typedef] = ACTIONS(2840), + [anon_sym_extern] = ACTIONS(2840), + [anon_sym___attribute__] = ACTIONS(2840), + [anon_sym___attribute] = ACTIONS(2840), + [anon_sym_noreturn] = ACTIONS(2840), + [anon_sym_LBRACK] = ACTIONS(2842), + [anon_sym___declspec] = ACTIONS(2840), + [anon_sym___cdecl] = ACTIONS(2840), + [anon_sym___clrcall] = ACTIONS(2840), + [anon_sym___stdcall] = ACTIONS(2840), + [anon_sym___fastcall] = ACTIONS(2840), + [anon_sym___thiscall] = ACTIONS(2840), + [anon_sym___vectorcall] = ACTIONS(2840), + [anon_sym_LBRACE] = ACTIONS(2842), + [anon_sym_signed] = ACTIONS(2840), + [anon_sym_unsigned] = ACTIONS(2840), + [anon_sym_long] = ACTIONS(2840), + [anon_sym_short] = ACTIONS(2840), + [anon_sym_static] = ACTIONS(2840), + [anon_sym_ATautoreleasepool] = ACTIONS(2842), + [anon_sym_auto] = ACTIONS(2840), + [anon_sym_register] = ACTIONS(2840), + [anon_sym_inline] = ACTIONS(2840), + [anon_sym___inline] = ACTIONS(2840), + [anon_sym___inline__] = ACTIONS(2840), + [anon_sym___forceinline] = ACTIONS(2840), + [anon_sym_thread_local] = ACTIONS(2840), + [anon_sym___thread] = ACTIONS(2840), + [anon_sym_CG_EXTERN] = ACTIONS(2840), + [anon_sym_CG_INLINE] = ACTIONS(2840), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2840), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2840), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2840), + [anon_sym_IBOutlet] = ACTIONS(2840), + [anon_sym_IBInspectable] = ACTIONS(2840), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2840), + [anon_sym_NS_INLINE] = ACTIONS(2840), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2840), + [anon_sym_OBJC_EXPORT] = ACTIONS(2840), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2840), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2840), + [anon_sym_const] = ACTIONS(2840), + [anon_sym_constexpr] = ACTIONS(2840), + [anon_sym_volatile] = ACTIONS(2840), + [anon_sym_restrict] = ACTIONS(2840), + [anon_sym___restrict__] = ACTIONS(2840), + [anon_sym__Atomic] = ACTIONS(2840), + [anon_sym__Noreturn] = ACTIONS(2840), + [anon_sym__Nonnull] = ACTIONS(2840), + [anon_sym_nullable] = ACTIONS(2840), + [anon_sym__Complex] = ACTIONS(2840), + [anon_sym__Nullable] = ACTIONS(2840), + [anon_sym__Nullable_result] = ACTIONS(2840), + [anon_sym__Null_unspecified] = ACTIONS(2840), + [anon_sym___autoreleasing] = ACTIONS(2840), + [anon_sym___block] = ACTIONS(2840), + [anon_sym___bridge] = ACTIONS(2840), + [anon_sym___bridge_retained] = ACTIONS(2840), + [anon_sym___bridge_transfer] = ACTIONS(2840), + [anon_sym___complex] = ACTIONS(2840), + [anon_sym___const] = ACTIONS(2840), + [anon_sym___imag] = ACTIONS(2840), + [anon_sym___kindof] = ACTIONS(2840), + [anon_sym___nonnull] = ACTIONS(2840), + [anon_sym___nullable] = ACTIONS(2840), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2840), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2840), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2840), + [anon_sym___real] = ACTIONS(2840), + [anon_sym___strong] = ACTIONS(2840), + [anon_sym___unsafe_unretained] = ACTIONS(2840), + [anon_sym___unused] = ACTIONS(2840), + [anon_sym___weak] = ACTIONS(2840), + [anon_sym_alignas] = ACTIONS(2840), + [anon_sym__Alignas] = ACTIONS(2840), + [sym_primitive_type] = ACTIONS(2840), + [anon_sym_enum] = ACTIONS(2840), + [anon_sym_struct] = ACTIONS(2840), + [anon_sym_union] = ACTIONS(2840), + [anon_sym_if] = ACTIONS(2840), + [anon_sym_switch] = ACTIONS(2840), + [anon_sym_case] = ACTIONS(2840), + [anon_sym_default] = ACTIONS(2840), + [anon_sym_while] = ACTIONS(2840), + [anon_sym_do] = ACTIONS(2840), + [anon_sym_for] = ACTIONS(2840), + [anon_sym_in] = ACTIONS(2840), + [anon_sym_return] = ACTIONS(2840), + [anon_sym_break] = ACTIONS(2840), + [anon_sym_continue] = ACTIONS(2840), + [anon_sym_goto] = ACTIONS(2840), + [anon_sym_DASH_DASH] = ACTIONS(2842), + [anon_sym_PLUS_PLUS] = ACTIONS(2842), + [anon_sym_sizeof] = ACTIONS(2840), + [anon_sym___alignof__] = ACTIONS(2840), + [anon_sym___alignof] = ACTIONS(2840), + [anon_sym__alignof] = ACTIONS(2840), + [anon_sym_alignof] = ACTIONS(2840), + [anon_sym__Alignof] = ACTIONS(2840), + [anon_sym_offsetof] = ACTIONS(2840), + [anon_sym__Generic] = ACTIONS(2840), + [anon_sym_asm] = ACTIONS(2840), + [anon_sym___asm__] = ACTIONS(2840), + [anon_sym___asm] = ACTIONS(2840), + [sym_number_literal] = ACTIONS(2842), + [anon_sym_L_SQUOTE] = ACTIONS(2842), + [anon_sym_u_SQUOTE] = ACTIONS(2842), + [anon_sym_U_SQUOTE] = ACTIONS(2842), + [anon_sym_u8_SQUOTE] = ACTIONS(2842), + [anon_sym_SQUOTE] = ACTIONS(2842), + [anon_sym_AT] = ACTIONS(2840), + [anon_sym_DQUOTE] = ACTIONS(2842), + [anon_sym_L_DQUOTE] = ACTIONS(2842), + [anon_sym_u_DQUOTE] = ACTIONS(2842), + [anon_sym_U_DQUOTE] = ACTIONS(2842), + [anon_sym_u8_DQUOTE] = ACTIONS(2842), + [sym_true] = ACTIONS(2840), + [sym_false] = ACTIONS(2840), + [anon_sym_NULL] = ACTIONS(2840), + [anon_sym_nullptr] = ACTIONS(2840), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2840), + [anon_sym___typeof] = ACTIONS(2840), + [anon_sym_typeof] = ACTIONS(2840), + [anon_sym_ATimport] = ACTIONS(2842), + [aux_sym_preproc_undef_token1] = ACTIONS(2840), + [anon_sym_POUND] = ACTIONS(2840), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2840), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2840), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2840), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2840), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2840), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2840), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2840), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2840), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2840), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2840), + [anon_sym_NS_AVAILABLE] = ACTIONS(2840), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2840), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2840), + [anon_sym_API_AVAILABLE] = ACTIONS(2840), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2840), + [anon_sym_API_DEPRECATED] = ACTIONS(2840), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2840), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2840), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2840), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2840), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2840), + [anon_sym___deprecated_msg] = ACTIONS(2840), + [anon_sym___deprecated_enum_msg] = ACTIONS(2840), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2840), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2840), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2840), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2840), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2840), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2840), + [anon_sym_ATprotocol] = ACTIONS(2842), + [anon_sym_ATinterface] = ACTIONS(2842), + [anon_sym_ATimplementation] = ACTIONS(2842), + [anon_sym_ATcompatibility_alias] = ACTIONS(2842), + [anon_sym_ATsynthesize] = ACTIONS(2842), + [anon_sym_ATdynamic] = ACTIONS(2842), + [anon_sym_ATtry] = ACTIONS(2842), + [anon_sym___try] = ACTIONS(2840), + [anon_sym_ATthrow] = ACTIONS(2842), + [anon_sym_ATselector] = ACTIONS(2842), + [anon_sym_ATavailable] = ACTIONS(2842), + [anon_sym___builtin_available] = ACTIONS(2840), + [anon_sym_va_arg] = ACTIONS(2840), + [anon_sym_ATencode] = ACTIONS(2842), + [anon_sym_ATsynchronized] = ACTIONS(2842), + [anon_sym_BOOL] = ACTIONS(2840), + [anon_sym_IMP] = ACTIONS(2840), + [anon_sym_SEL] = ACTIONS(2840), + [anon_sym_Class] = ACTIONS(2840), + [anon_sym_id] = ACTIONS(2840), + }, + [355] = { + [sym_identifier] = ACTIONS(2844), + [aux_sym_preproc_include_token1] = ACTIONS(2844), + [aux_sym_preproc_include_token2] = ACTIONS(2844), + [aux_sym_preproc_def_token1] = ACTIONS(2844), + [aux_sym_preproc_if_token1] = ACTIONS(2844), + [aux_sym_preproc_if_token2] = ACTIONS(2844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2844), + [aux_sym_preproc_else_token1] = ACTIONS(2844), + [aux_sym_preproc_elif_token1] = ACTIONS(2844), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2844), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2844), + [sym_preproc_directive] = ACTIONS(2844), + [anon_sym_LPAREN2] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2844), + [anon_sym_PLUS] = ACTIONS(2844), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_CARET] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2846), + [anon_sym_SEMI] = ACTIONS(2846), + [anon_sym___extension__] = ACTIONS(2844), + [anon_sym_typedef] = ACTIONS(2844), + [anon_sym_extern] = ACTIONS(2844), + [anon_sym___attribute__] = ACTIONS(2844), + [anon_sym___attribute] = ACTIONS(2844), + [anon_sym_noreturn] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym___declspec] = ACTIONS(2844), + [anon_sym___cdecl] = ACTIONS(2844), + [anon_sym___clrcall] = ACTIONS(2844), + [anon_sym___stdcall] = ACTIONS(2844), + [anon_sym___fastcall] = ACTIONS(2844), + [anon_sym___thiscall] = ACTIONS(2844), + [anon_sym___vectorcall] = ACTIONS(2844), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_signed] = ACTIONS(2844), + [anon_sym_unsigned] = ACTIONS(2844), + [anon_sym_long] = ACTIONS(2844), + [anon_sym_short] = ACTIONS(2844), + [anon_sym_static] = ACTIONS(2844), + [anon_sym_ATautoreleasepool] = ACTIONS(2846), + [anon_sym_auto] = ACTIONS(2844), + [anon_sym_register] = ACTIONS(2844), + [anon_sym_inline] = ACTIONS(2844), + [anon_sym___inline] = ACTIONS(2844), + [anon_sym___inline__] = ACTIONS(2844), + [anon_sym___forceinline] = ACTIONS(2844), + [anon_sym_thread_local] = ACTIONS(2844), + [anon_sym___thread] = ACTIONS(2844), + [anon_sym_CG_EXTERN] = ACTIONS(2844), + [anon_sym_CG_INLINE] = ACTIONS(2844), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2844), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2844), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2844), + [anon_sym_IBOutlet] = ACTIONS(2844), + [anon_sym_IBInspectable] = ACTIONS(2844), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2844), + [anon_sym_NS_INLINE] = ACTIONS(2844), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2844), + [anon_sym_OBJC_EXPORT] = ACTIONS(2844), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2844), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2844), + [anon_sym_const] = ACTIONS(2844), + [anon_sym_constexpr] = ACTIONS(2844), + [anon_sym_volatile] = ACTIONS(2844), + [anon_sym_restrict] = ACTIONS(2844), + [anon_sym___restrict__] = ACTIONS(2844), + [anon_sym__Atomic] = ACTIONS(2844), + [anon_sym__Noreturn] = ACTIONS(2844), + [anon_sym__Nonnull] = ACTIONS(2844), + [anon_sym_nullable] = ACTIONS(2844), + [anon_sym__Complex] = ACTIONS(2844), + [anon_sym__Nullable] = ACTIONS(2844), + [anon_sym__Nullable_result] = ACTIONS(2844), + [anon_sym__Null_unspecified] = ACTIONS(2844), + [anon_sym___autoreleasing] = ACTIONS(2844), + [anon_sym___block] = ACTIONS(2844), + [anon_sym___bridge] = ACTIONS(2844), + [anon_sym___bridge_retained] = ACTIONS(2844), + [anon_sym___bridge_transfer] = ACTIONS(2844), + [anon_sym___complex] = ACTIONS(2844), + [anon_sym___const] = ACTIONS(2844), + [anon_sym___imag] = ACTIONS(2844), + [anon_sym___kindof] = ACTIONS(2844), + [anon_sym___nonnull] = ACTIONS(2844), + [anon_sym___nullable] = ACTIONS(2844), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2844), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2844), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2844), + [anon_sym___real] = ACTIONS(2844), + [anon_sym___strong] = ACTIONS(2844), + [anon_sym___unsafe_unretained] = ACTIONS(2844), + [anon_sym___unused] = ACTIONS(2844), + [anon_sym___weak] = ACTIONS(2844), + [anon_sym_alignas] = ACTIONS(2844), + [anon_sym__Alignas] = ACTIONS(2844), + [sym_primitive_type] = ACTIONS(2844), + [anon_sym_enum] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2844), + [anon_sym_union] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2844), + [anon_sym_switch] = ACTIONS(2844), + [anon_sym_case] = ACTIONS(2844), + [anon_sym_default] = ACTIONS(2844), + [anon_sym_while] = ACTIONS(2844), + [anon_sym_do] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(2844), + [anon_sym_in] = ACTIONS(2844), + [anon_sym_return] = ACTIONS(2844), + [anon_sym_break] = ACTIONS(2844), + [anon_sym_continue] = ACTIONS(2844), + [anon_sym_goto] = ACTIONS(2844), + [anon_sym_DASH_DASH] = ACTIONS(2846), + [anon_sym_PLUS_PLUS] = ACTIONS(2846), + [anon_sym_sizeof] = ACTIONS(2844), + [anon_sym___alignof__] = ACTIONS(2844), + [anon_sym___alignof] = ACTIONS(2844), + [anon_sym__alignof] = ACTIONS(2844), + [anon_sym_alignof] = ACTIONS(2844), + [anon_sym__Alignof] = ACTIONS(2844), + [anon_sym_offsetof] = ACTIONS(2844), + [anon_sym__Generic] = ACTIONS(2844), + [anon_sym_asm] = ACTIONS(2844), + [anon_sym___asm__] = ACTIONS(2844), + [anon_sym___asm] = ACTIONS(2844), + [sym_number_literal] = ACTIONS(2846), + [anon_sym_L_SQUOTE] = ACTIONS(2846), + [anon_sym_u_SQUOTE] = ACTIONS(2846), + [anon_sym_U_SQUOTE] = ACTIONS(2846), + [anon_sym_u8_SQUOTE] = ACTIONS(2846), + [anon_sym_SQUOTE] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2844), + [anon_sym_DQUOTE] = ACTIONS(2846), + [anon_sym_L_DQUOTE] = ACTIONS(2846), + [anon_sym_u_DQUOTE] = ACTIONS(2846), + [anon_sym_U_DQUOTE] = ACTIONS(2846), + [anon_sym_u8_DQUOTE] = ACTIONS(2846), + [sym_true] = ACTIONS(2844), + [sym_false] = ACTIONS(2844), + [anon_sym_NULL] = ACTIONS(2844), + [anon_sym_nullptr] = ACTIONS(2844), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2844), + [anon_sym___typeof] = ACTIONS(2844), + [anon_sym_typeof] = ACTIONS(2844), + [anon_sym_ATimport] = ACTIONS(2846), + [aux_sym_preproc_undef_token1] = ACTIONS(2844), + [anon_sym_POUND] = ACTIONS(2844), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2844), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2844), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2844), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2844), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2844), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2844), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2844), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2844), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2844), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2844), + [anon_sym_NS_AVAILABLE] = ACTIONS(2844), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2844), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2844), + [anon_sym_API_AVAILABLE] = ACTIONS(2844), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2844), + [anon_sym_API_DEPRECATED] = ACTIONS(2844), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2844), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2844), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2844), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2844), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2844), + [anon_sym___deprecated_msg] = ACTIONS(2844), + [anon_sym___deprecated_enum_msg] = ACTIONS(2844), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2844), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2844), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2844), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2844), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2844), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2844), + [anon_sym_ATprotocol] = ACTIONS(2846), + [anon_sym_ATinterface] = ACTIONS(2846), + [anon_sym_ATimplementation] = ACTIONS(2846), + [anon_sym_ATcompatibility_alias] = ACTIONS(2846), + [anon_sym_ATsynthesize] = ACTIONS(2846), + [anon_sym_ATdynamic] = ACTIONS(2846), + [anon_sym_ATtry] = ACTIONS(2846), + [anon_sym___try] = ACTIONS(2844), + [anon_sym_ATthrow] = ACTIONS(2846), + [anon_sym_ATselector] = ACTIONS(2846), + [anon_sym_ATavailable] = ACTIONS(2846), + [anon_sym___builtin_available] = ACTIONS(2844), + [anon_sym_va_arg] = ACTIONS(2844), + [anon_sym_ATencode] = ACTIONS(2846), + [anon_sym_ATsynchronized] = ACTIONS(2846), + [anon_sym_BOOL] = ACTIONS(2844), + [anon_sym_IMP] = ACTIONS(2844), + [anon_sym_SEL] = ACTIONS(2844), + [anon_sym_Class] = ACTIONS(2844), + [anon_sym_id] = ACTIONS(2844), + }, + [356] = { + [sym_identifier] = ACTIONS(2848), + [aux_sym_preproc_include_token1] = ACTIONS(2848), + [aux_sym_preproc_include_token2] = ACTIONS(2848), + [aux_sym_preproc_def_token1] = ACTIONS(2848), + [aux_sym_preproc_if_token1] = ACTIONS(2848), + [aux_sym_preproc_if_token2] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2848), + [aux_sym_preproc_else_token1] = ACTIONS(2848), + [aux_sym_preproc_elif_token1] = ACTIONS(2848), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2848), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2848), + [sym_preproc_directive] = ACTIONS(2848), + [anon_sym_LPAREN2] = ACTIONS(2850), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_TILDE] = ACTIONS(2850), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_STAR] = ACTIONS(2850), + [anon_sym_CARET] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2850), + [anon_sym___extension__] = ACTIONS(2848), + [anon_sym_typedef] = ACTIONS(2848), + [anon_sym_extern] = ACTIONS(2848), + [anon_sym___attribute__] = ACTIONS(2848), + [anon_sym___attribute] = ACTIONS(2848), + [anon_sym_noreturn] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2850), + [anon_sym___declspec] = ACTIONS(2848), + [anon_sym___cdecl] = ACTIONS(2848), + [anon_sym___clrcall] = ACTIONS(2848), + [anon_sym___stdcall] = ACTIONS(2848), + [anon_sym___fastcall] = ACTIONS(2848), + [anon_sym___thiscall] = ACTIONS(2848), + [anon_sym___vectorcall] = ACTIONS(2848), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_signed] = ACTIONS(2848), + [anon_sym_unsigned] = ACTIONS(2848), + [anon_sym_long] = ACTIONS(2848), + [anon_sym_short] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_ATautoreleasepool] = ACTIONS(2850), + [anon_sym_auto] = ACTIONS(2848), + [anon_sym_register] = ACTIONS(2848), + [anon_sym_inline] = ACTIONS(2848), + [anon_sym___inline] = ACTIONS(2848), + [anon_sym___inline__] = ACTIONS(2848), + [anon_sym___forceinline] = ACTIONS(2848), + [anon_sym_thread_local] = ACTIONS(2848), + [anon_sym___thread] = ACTIONS(2848), + [anon_sym_CG_EXTERN] = ACTIONS(2848), + [anon_sym_CG_INLINE] = ACTIONS(2848), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2848), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2848), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2848), + [anon_sym_IBOutlet] = ACTIONS(2848), + [anon_sym_IBInspectable] = ACTIONS(2848), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2848), + [anon_sym_NS_INLINE] = ACTIONS(2848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2848), + [anon_sym_OBJC_EXPORT] = ACTIONS(2848), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2848), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2848), + [anon_sym_const] = ACTIONS(2848), + [anon_sym_constexpr] = ACTIONS(2848), + [anon_sym_volatile] = ACTIONS(2848), + [anon_sym_restrict] = ACTIONS(2848), + [anon_sym___restrict__] = ACTIONS(2848), + [anon_sym__Atomic] = ACTIONS(2848), + [anon_sym__Noreturn] = ACTIONS(2848), + [anon_sym__Nonnull] = ACTIONS(2848), + [anon_sym_nullable] = ACTIONS(2848), + [anon_sym__Complex] = ACTIONS(2848), + [anon_sym__Nullable] = ACTIONS(2848), + [anon_sym__Nullable_result] = ACTIONS(2848), + [anon_sym__Null_unspecified] = ACTIONS(2848), + [anon_sym___autoreleasing] = ACTIONS(2848), + [anon_sym___block] = ACTIONS(2848), + [anon_sym___bridge] = ACTIONS(2848), + [anon_sym___bridge_retained] = ACTIONS(2848), + [anon_sym___bridge_transfer] = ACTIONS(2848), + [anon_sym___complex] = ACTIONS(2848), + [anon_sym___const] = ACTIONS(2848), + [anon_sym___imag] = ACTIONS(2848), + [anon_sym___kindof] = ACTIONS(2848), + [anon_sym___nonnull] = ACTIONS(2848), + [anon_sym___nullable] = ACTIONS(2848), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2848), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2848), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2848), + [anon_sym___real] = ACTIONS(2848), + [anon_sym___strong] = ACTIONS(2848), + [anon_sym___unsafe_unretained] = ACTIONS(2848), + [anon_sym___unused] = ACTIONS(2848), + [anon_sym___weak] = ACTIONS(2848), + [anon_sym_alignas] = ACTIONS(2848), + [anon_sym__Alignas] = ACTIONS(2848), + [sym_primitive_type] = ACTIONS(2848), + [anon_sym_enum] = ACTIONS(2848), + [anon_sym_struct] = ACTIONS(2848), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_switch] = ACTIONS(2848), + [anon_sym_case] = ACTIONS(2848), + [anon_sym_default] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_in] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_break] = ACTIONS(2848), + [anon_sym_continue] = ACTIONS(2848), + [anon_sym_goto] = ACTIONS(2848), + [anon_sym_DASH_DASH] = ACTIONS(2850), + [anon_sym_PLUS_PLUS] = ACTIONS(2850), + [anon_sym_sizeof] = ACTIONS(2848), + [anon_sym___alignof__] = ACTIONS(2848), + [anon_sym___alignof] = ACTIONS(2848), + [anon_sym__alignof] = ACTIONS(2848), + [anon_sym_alignof] = ACTIONS(2848), + [anon_sym__Alignof] = ACTIONS(2848), + [anon_sym_offsetof] = ACTIONS(2848), + [anon_sym__Generic] = ACTIONS(2848), + [anon_sym_asm] = ACTIONS(2848), + [anon_sym___asm__] = ACTIONS(2848), + [anon_sym___asm] = ACTIONS(2848), + [sym_number_literal] = ACTIONS(2850), + [anon_sym_L_SQUOTE] = ACTIONS(2850), + [anon_sym_u_SQUOTE] = ACTIONS(2850), + [anon_sym_U_SQUOTE] = ACTIONS(2850), + [anon_sym_u8_SQUOTE] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_AT] = ACTIONS(2848), + [anon_sym_DQUOTE] = ACTIONS(2850), + [anon_sym_L_DQUOTE] = ACTIONS(2850), + [anon_sym_u_DQUOTE] = ACTIONS(2850), + [anon_sym_U_DQUOTE] = ACTIONS(2850), + [anon_sym_u8_DQUOTE] = ACTIONS(2850), + [sym_true] = ACTIONS(2848), + [sym_false] = ACTIONS(2848), + [anon_sym_NULL] = ACTIONS(2848), + [anon_sym_nullptr] = ACTIONS(2848), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2848), + [anon_sym___typeof] = ACTIONS(2848), + [anon_sym_typeof] = ACTIONS(2848), + [anon_sym_ATimport] = ACTIONS(2850), + [aux_sym_preproc_undef_token1] = ACTIONS(2848), + [anon_sym_POUND] = ACTIONS(2848), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2848), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2848), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2848), + [anon_sym_NS_AVAILABLE] = ACTIONS(2848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_API_AVAILABLE] = ACTIONS(2848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_API_DEPRECATED] = ACTIONS(2848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2848), + [anon_sym___deprecated_msg] = ACTIONS(2848), + [anon_sym___deprecated_enum_msg] = ACTIONS(2848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2848), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2848), + [anon_sym_ATprotocol] = ACTIONS(2850), + [anon_sym_ATinterface] = ACTIONS(2850), + [anon_sym_ATimplementation] = ACTIONS(2850), + [anon_sym_ATcompatibility_alias] = ACTIONS(2850), + [anon_sym_ATsynthesize] = ACTIONS(2850), + [anon_sym_ATdynamic] = ACTIONS(2850), + [anon_sym_ATtry] = ACTIONS(2850), + [anon_sym___try] = ACTIONS(2848), + [anon_sym_ATthrow] = ACTIONS(2850), + [anon_sym_ATselector] = ACTIONS(2850), + [anon_sym_ATavailable] = ACTIONS(2850), + [anon_sym___builtin_available] = ACTIONS(2848), + [anon_sym_va_arg] = ACTIONS(2848), + [anon_sym_ATencode] = ACTIONS(2850), + [anon_sym_ATsynchronized] = ACTIONS(2850), + [anon_sym_BOOL] = ACTIONS(2848), + [anon_sym_IMP] = ACTIONS(2848), + [anon_sym_SEL] = ACTIONS(2848), + [anon_sym_Class] = ACTIONS(2848), + [anon_sym_id] = ACTIONS(2848), + }, + [357] = { + [sym_identifier] = ACTIONS(2852), + [aux_sym_preproc_include_token1] = ACTIONS(2852), + [aux_sym_preproc_include_token2] = ACTIONS(2852), + [aux_sym_preproc_def_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token2] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2852), + [aux_sym_preproc_else_token1] = ACTIONS(2852), + [aux_sym_preproc_elif_token1] = ACTIONS(2852), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2852), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2852), + [sym_preproc_directive] = ACTIONS(2852), + [anon_sym_LPAREN2] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_CARET] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym___extension__] = ACTIONS(2852), + [anon_sym_typedef] = ACTIONS(2852), + [anon_sym_extern] = ACTIONS(2852), + [anon_sym___attribute__] = ACTIONS(2852), + [anon_sym___attribute] = ACTIONS(2852), + [anon_sym_noreturn] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2854), + [anon_sym___declspec] = ACTIONS(2852), + [anon_sym___cdecl] = ACTIONS(2852), + [anon_sym___clrcall] = ACTIONS(2852), + [anon_sym___stdcall] = ACTIONS(2852), + [anon_sym___fastcall] = ACTIONS(2852), + [anon_sym___thiscall] = ACTIONS(2852), + [anon_sym___vectorcall] = ACTIONS(2852), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_signed] = ACTIONS(2852), + [anon_sym_unsigned] = ACTIONS(2852), + [anon_sym_long] = ACTIONS(2852), + [anon_sym_short] = ACTIONS(2852), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_ATautoreleasepool] = ACTIONS(2854), + [anon_sym_auto] = ACTIONS(2852), + [anon_sym_register] = ACTIONS(2852), + [anon_sym_inline] = ACTIONS(2852), + [anon_sym___inline] = ACTIONS(2852), + [anon_sym___inline__] = ACTIONS(2852), + [anon_sym___forceinline] = ACTIONS(2852), + [anon_sym_thread_local] = ACTIONS(2852), + [anon_sym___thread] = ACTIONS(2852), + [anon_sym_CG_EXTERN] = ACTIONS(2852), + [anon_sym_CG_INLINE] = ACTIONS(2852), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2852), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2852), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2852), + [anon_sym_IBOutlet] = ACTIONS(2852), + [anon_sym_IBInspectable] = ACTIONS(2852), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2852), + [anon_sym_NS_INLINE] = ACTIONS(2852), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2852), + [anon_sym_OBJC_EXPORT] = ACTIONS(2852), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2852), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2852), + [anon_sym_const] = ACTIONS(2852), + [anon_sym_constexpr] = ACTIONS(2852), + [anon_sym_volatile] = ACTIONS(2852), + [anon_sym_restrict] = ACTIONS(2852), + [anon_sym___restrict__] = ACTIONS(2852), + [anon_sym__Atomic] = ACTIONS(2852), + [anon_sym__Noreturn] = ACTIONS(2852), + [anon_sym__Nonnull] = ACTIONS(2852), + [anon_sym_nullable] = ACTIONS(2852), + [anon_sym__Complex] = ACTIONS(2852), + [anon_sym__Nullable] = ACTIONS(2852), + [anon_sym__Nullable_result] = ACTIONS(2852), + [anon_sym__Null_unspecified] = ACTIONS(2852), + [anon_sym___autoreleasing] = ACTIONS(2852), + [anon_sym___block] = ACTIONS(2852), + [anon_sym___bridge] = ACTIONS(2852), + [anon_sym___bridge_retained] = ACTIONS(2852), + [anon_sym___bridge_transfer] = ACTIONS(2852), + [anon_sym___complex] = ACTIONS(2852), + [anon_sym___const] = ACTIONS(2852), + [anon_sym___imag] = ACTIONS(2852), + [anon_sym___kindof] = ACTIONS(2852), + [anon_sym___nonnull] = ACTIONS(2852), + [anon_sym___nullable] = ACTIONS(2852), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2852), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2852), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2852), + [anon_sym___real] = ACTIONS(2852), + [anon_sym___strong] = ACTIONS(2852), + [anon_sym___unsafe_unretained] = ACTIONS(2852), + [anon_sym___unused] = ACTIONS(2852), + [anon_sym___weak] = ACTIONS(2852), + [anon_sym_alignas] = ACTIONS(2852), + [anon_sym__Alignas] = ACTIONS(2852), + [sym_primitive_type] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2852), + [anon_sym_union] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_switch] = ACTIONS(2852), + [anon_sym_case] = ACTIONS(2852), + [anon_sym_default] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_in] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_break] = ACTIONS(2852), + [anon_sym_continue] = ACTIONS(2852), + [anon_sym_goto] = ACTIONS(2852), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_sizeof] = ACTIONS(2852), + [anon_sym___alignof__] = ACTIONS(2852), + [anon_sym___alignof] = ACTIONS(2852), + [anon_sym__alignof] = ACTIONS(2852), + [anon_sym_alignof] = ACTIONS(2852), + [anon_sym__Alignof] = ACTIONS(2852), + [anon_sym_offsetof] = ACTIONS(2852), + [anon_sym__Generic] = ACTIONS(2852), + [anon_sym_asm] = ACTIONS(2852), + [anon_sym___asm__] = ACTIONS(2852), + [anon_sym___asm] = ACTIONS(2852), + [sym_number_literal] = ACTIONS(2854), + [anon_sym_L_SQUOTE] = ACTIONS(2854), + [anon_sym_u_SQUOTE] = ACTIONS(2854), + [anon_sym_U_SQUOTE] = ACTIONS(2854), + [anon_sym_u8_SQUOTE] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_AT] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2854), + [anon_sym_L_DQUOTE] = ACTIONS(2854), + [anon_sym_u_DQUOTE] = ACTIONS(2854), + [anon_sym_U_DQUOTE] = ACTIONS(2854), + [anon_sym_u8_DQUOTE] = ACTIONS(2854), + [sym_true] = ACTIONS(2852), + [sym_false] = ACTIONS(2852), + [anon_sym_NULL] = ACTIONS(2852), + [anon_sym_nullptr] = ACTIONS(2852), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2852), + [anon_sym___typeof] = ACTIONS(2852), + [anon_sym_typeof] = ACTIONS(2852), + [anon_sym_ATimport] = ACTIONS(2854), + [aux_sym_preproc_undef_token1] = ACTIONS(2852), + [anon_sym_POUND] = ACTIONS(2852), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2852), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2852), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2852), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2852), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2852), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2852), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2852), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2852), + [anon_sym_NS_AVAILABLE] = ACTIONS(2852), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2852), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_API_AVAILABLE] = ACTIONS(2852), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_API_DEPRECATED] = ACTIONS(2852), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2852), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2852), + [anon_sym___deprecated_msg] = ACTIONS(2852), + [anon_sym___deprecated_enum_msg] = ACTIONS(2852), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2852), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2852), + [anon_sym_ATprotocol] = ACTIONS(2854), + [anon_sym_ATinterface] = ACTIONS(2854), + [anon_sym_ATimplementation] = ACTIONS(2854), + [anon_sym_ATcompatibility_alias] = ACTIONS(2854), + [anon_sym_ATsynthesize] = ACTIONS(2854), + [anon_sym_ATdynamic] = ACTIONS(2854), + [anon_sym_ATtry] = ACTIONS(2854), + [anon_sym___try] = ACTIONS(2852), + [anon_sym_ATthrow] = ACTIONS(2854), + [anon_sym_ATselector] = ACTIONS(2854), + [anon_sym_ATavailable] = ACTIONS(2854), + [anon_sym___builtin_available] = ACTIONS(2852), + [anon_sym_va_arg] = ACTIONS(2852), + [anon_sym_ATencode] = ACTIONS(2854), + [anon_sym_ATsynchronized] = ACTIONS(2854), + [anon_sym_BOOL] = ACTIONS(2852), + [anon_sym_IMP] = ACTIONS(2852), + [anon_sym_SEL] = ACTIONS(2852), + [anon_sym_Class] = ACTIONS(2852), + [anon_sym_id] = ACTIONS(2852), + }, + [358] = { + [sym_identifier] = ACTIONS(2856), + [aux_sym_preproc_include_token1] = ACTIONS(2856), + [aux_sym_preproc_include_token2] = ACTIONS(2856), + [aux_sym_preproc_def_token1] = ACTIONS(2856), + [aux_sym_preproc_if_token1] = ACTIONS(2856), + [aux_sym_preproc_if_token2] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2856), + [aux_sym_preproc_else_token1] = ACTIONS(2856), + [aux_sym_preproc_elif_token1] = ACTIONS(2856), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2856), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2856), + [sym_preproc_directive] = ACTIONS(2856), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_CARET] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2858), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym___extension__] = ACTIONS(2856), + [anon_sym_typedef] = ACTIONS(2856), + [anon_sym_extern] = ACTIONS(2856), + [anon_sym___attribute__] = ACTIONS(2856), + [anon_sym___attribute] = ACTIONS(2856), + [anon_sym_noreturn] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2858), + [anon_sym___declspec] = ACTIONS(2856), + [anon_sym___cdecl] = ACTIONS(2856), + [anon_sym___clrcall] = ACTIONS(2856), + [anon_sym___stdcall] = ACTIONS(2856), + [anon_sym___fastcall] = ACTIONS(2856), + [anon_sym___thiscall] = ACTIONS(2856), + [anon_sym___vectorcall] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_signed] = ACTIONS(2856), + [anon_sym_unsigned] = ACTIONS(2856), + [anon_sym_long] = ACTIONS(2856), + [anon_sym_short] = ACTIONS(2856), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_ATautoreleasepool] = ACTIONS(2858), + [anon_sym_auto] = ACTIONS(2856), + [anon_sym_register] = ACTIONS(2856), + [anon_sym_inline] = ACTIONS(2856), + [anon_sym___inline] = ACTIONS(2856), + [anon_sym___inline__] = ACTIONS(2856), + [anon_sym___forceinline] = ACTIONS(2856), + [anon_sym_thread_local] = ACTIONS(2856), + [anon_sym___thread] = ACTIONS(2856), + [anon_sym_CG_EXTERN] = ACTIONS(2856), + [anon_sym_CG_INLINE] = ACTIONS(2856), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2856), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2856), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2856), + [anon_sym_IBOutlet] = ACTIONS(2856), + [anon_sym_IBInspectable] = ACTIONS(2856), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2856), + [anon_sym_NS_INLINE] = ACTIONS(2856), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2856), + [anon_sym_OBJC_EXPORT] = ACTIONS(2856), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2856), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2856), + [anon_sym_constexpr] = ACTIONS(2856), + [anon_sym_volatile] = ACTIONS(2856), + [anon_sym_restrict] = ACTIONS(2856), + [anon_sym___restrict__] = ACTIONS(2856), + [anon_sym__Atomic] = ACTIONS(2856), + [anon_sym__Noreturn] = ACTIONS(2856), + [anon_sym__Nonnull] = ACTIONS(2856), + [anon_sym_nullable] = ACTIONS(2856), + [anon_sym__Complex] = ACTIONS(2856), + [anon_sym__Nullable] = ACTIONS(2856), + [anon_sym__Nullable_result] = ACTIONS(2856), + [anon_sym__Null_unspecified] = ACTIONS(2856), + [anon_sym___autoreleasing] = ACTIONS(2856), + [anon_sym___block] = ACTIONS(2856), + [anon_sym___bridge] = ACTIONS(2856), + [anon_sym___bridge_retained] = ACTIONS(2856), + [anon_sym___bridge_transfer] = ACTIONS(2856), + [anon_sym___complex] = ACTIONS(2856), + [anon_sym___const] = ACTIONS(2856), + [anon_sym___imag] = ACTIONS(2856), + [anon_sym___kindof] = ACTIONS(2856), + [anon_sym___nonnull] = ACTIONS(2856), + [anon_sym___nullable] = ACTIONS(2856), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2856), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2856), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2856), + [anon_sym___real] = ACTIONS(2856), + [anon_sym___strong] = ACTIONS(2856), + [anon_sym___unsafe_unretained] = ACTIONS(2856), + [anon_sym___unused] = ACTIONS(2856), + [anon_sym___weak] = ACTIONS(2856), + [anon_sym_alignas] = ACTIONS(2856), + [anon_sym__Alignas] = ACTIONS(2856), + [sym_primitive_type] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2856), + [anon_sym_union] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_switch] = ACTIONS(2856), + [anon_sym_case] = ACTIONS(2856), + [anon_sym_default] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_in] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(2856), + [anon_sym_continue] = ACTIONS(2856), + [anon_sym_goto] = ACTIONS(2856), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_sizeof] = ACTIONS(2856), + [anon_sym___alignof__] = ACTIONS(2856), + [anon_sym___alignof] = ACTIONS(2856), + [anon_sym__alignof] = ACTIONS(2856), + [anon_sym_alignof] = ACTIONS(2856), + [anon_sym__Alignof] = ACTIONS(2856), + [anon_sym_offsetof] = ACTIONS(2856), + [anon_sym__Generic] = ACTIONS(2856), + [anon_sym_asm] = ACTIONS(2856), + [anon_sym___asm__] = ACTIONS(2856), + [anon_sym___asm] = ACTIONS(2856), + [sym_number_literal] = ACTIONS(2858), + [anon_sym_L_SQUOTE] = ACTIONS(2858), + [anon_sym_u_SQUOTE] = ACTIONS(2858), + [anon_sym_U_SQUOTE] = ACTIONS(2858), + [anon_sym_u8_SQUOTE] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_AT] = ACTIONS(2856), + [anon_sym_DQUOTE] = ACTIONS(2858), + [anon_sym_L_DQUOTE] = ACTIONS(2858), + [anon_sym_u_DQUOTE] = ACTIONS(2858), + [anon_sym_U_DQUOTE] = ACTIONS(2858), + [anon_sym_u8_DQUOTE] = ACTIONS(2858), + [sym_true] = ACTIONS(2856), + [sym_false] = ACTIONS(2856), + [anon_sym_NULL] = ACTIONS(2856), + [anon_sym_nullptr] = ACTIONS(2856), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2856), + [anon_sym___typeof] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2856), + [anon_sym_ATimport] = ACTIONS(2858), + [aux_sym_preproc_undef_token1] = ACTIONS(2856), + [anon_sym_POUND] = ACTIONS(2856), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2856), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2856), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2856), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2856), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2856), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2856), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2856), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2856), + [anon_sym_NS_AVAILABLE] = ACTIONS(2856), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2856), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_API_AVAILABLE] = ACTIONS(2856), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_API_DEPRECATED] = ACTIONS(2856), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2856), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2856), + [anon_sym___deprecated_msg] = ACTIONS(2856), + [anon_sym___deprecated_enum_msg] = ACTIONS(2856), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2856), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2856), + [anon_sym_ATprotocol] = ACTIONS(2858), + [anon_sym_ATinterface] = ACTIONS(2858), + [anon_sym_ATimplementation] = ACTIONS(2858), + [anon_sym_ATcompatibility_alias] = ACTIONS(2858), + [anon_sym_ATsynthesize] = ACTIONS(2858), + [anon_sym_ATdynamic] = ACTIONS(2858), + [anon_sym_ATtry] = ACTIONS(2858), + [anon_sym___try] = ACTIONS(2856), + [anon_sym_ATthrow] = ACTIONS(2858), + [anon_sym_ATselector] = ACTIONS(2858), + [anon_sym_ATavailable] = ACTIONS(2858), + [anon_sym___builtin_available] = ACTIONS(2856), + [anon_sym_va_arg] = ACTIONS(2856), + [anon_sym_ATencode] = ACTIONS(2858), + [anon_sym_ATsynchronized] = ACTIONS(2858), + [anon_sym_BOOL] = ACTIONS(2856), + [anon_sym_IMP] = ACTIONS(2856), + [anon_sym_SEL] = ACTIONS(2856), + [anon_sym_Class] = ACTIONS(2856), + [anon_sym_id] = ACTIONS(2856), + }, + [359] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_include_token2] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_CARET] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym___attribute] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_ATautoreleasepool] = ACTIONS(2862), + [anon_sym_auto] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_CG_EXTERN] = ACTIONS(2860), + [anon_sym_CG_INLINE] = ACTIONS(2860), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2860), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2860), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2860), + [anon_sym_IBOutlet] = ACTIONS(2860), + [anon_sym_IBInspectable] = ACTIONS(2860), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2860), + [anon_sym_NS_INLINE] = ACTIONS(2860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2860), + [anon_sym_OBJC_EXPORT] = ACTIONS(2860), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2860), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym__Nonnull] = ACTIONS(2860), + [anon_sym_nullable] = ACTIONS(2860), + [anon_sym__Complex] = ACTIONS(2860), + [anon_sym__Nullable] = ACTIONS(2860), + [anon_sym__Nullable_result] = ACTIONS(2860), + [anon_sym__Null_unspecified] = ACTIONS(2860), + [anon_sym___autoreleasing] = ACTIONS(2860), + [anon_sym___block] = ACTIONS(2860), + [anon_sym___bridge] = ACTIONS(2860), + [anon_sym___bridge_retained] = ACTIONS(2860), + [anon_sym___bridge_transfer] = ACTIONS(2860), + [anon_sym___complex] = ACTIONS(2860), + [anon_sym___const] = ACTIONS(2860), + [anon_sym___imag] = ACTIONS(2860), + [anon_sym___kindof] = ACTIONS(2860), + [anon_sym___nonnull] = ACTIONS(2860), + [anon_sym___nullable] = ACTIONS(2860), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2860), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2860), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2860), + [anon_sym___real] = ACTIONS(2860), + [anon_sym___strong] = ACTIONS(2860), + [anon_sym___unsafe_unretained] = ACTIONS(2860), + [anon_sym___unused] = ACTIONS(2860), + [anon_sym___weak] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym__Alignas] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_in] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [anon_sym___asm] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_AT] = ACTIONS(2860), + [anon_sym_DQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2860), + [anon_sym___typeof] = ACTIONS(2860), + [anon_sym_typeof] = ACTIONS(2860), + [anon_sym_ATimport] = ACTIONS(2862), + [aux_sym_preproc_undef_token1] = ACTIONS(2860), + [anon_sym_POUND] = ACTIONS(2860), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2860), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2860), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2860), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2860), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2860), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2860), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2860), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2860), + [anon_sym_NS_AVAILABLE] = ACTIONS(2860), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2860), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_API_AVAILABLE] = ACTIONS(2860), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_API_DEPRECATED] = ACTIONS(2860), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2860), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2860), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2860), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2860), + [anon_sym___deprecated_msg] = ACTIONS(2860), + [anon_sym___deprecated_enum_msg] = ACTIONS(2860), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2860), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2860), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2860), + [anon_sym_ATprotocol] = ACTIONS(2862), + [anon_sym_ATinterface] = ACTIONS(2862), + [anon_sym_ATimplementation] = ACTIONS(2862), + [anon_sym_ATcompatibility_alias] = ACTIONS(2862), + [anon_sym_ATsynthesize] = ACTIONS(2862), + [anon_sym_ATdynamic] = ACTIONS(2862), + [anon_sym_ATtry] = ACTIONS(2862), + [anon_sym___try] = ACTIONS(2860), + [anon_sym_ATthrow] = ACTIONS(2862), + [anon_sym_ATselector] = ACTIONS(2862), + [anon_sym_ATavailable] = ACTIONS(2862), + [anon_sym___builtin_available] = ACTIONS(2860), + [anon_sym_va_arg] = ACTIONS(2860), + [anon_sym_ATencode] = ACTIONS(2862), + [anon_sym_ATsynchronized] = ACTIONS(2862), + [anon_sym_BOOL] = ACTIONS(2860), + [anon_sym_IMP] = ACTIONS(2860), + [anon_sym_SEL] = ACTIONS(2860), + [anon_sym_Class] = ACTIONS(2860), + [anon_sym_id] = ACTIONS(2860), + }, + [360] = { + [sym_identifier] = ACTIONS(2864), + [aux_sym_preproc_include_token1] = ACTIONS(2864), + [aux_sym_preproc_include_token2] = ACTIONS(2864), + [aux_sym_preproc_def_token1] = ACTIONS(2864), + [aux_sym_preproc_if_token1] = ACTIONS(2864), + [aux_sym_preproc_if_token2] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2864), + [aux_sym_preproc_else_token1] = ACTIONS(2864), + [aux_sym_preproc_elif_token1] = ACTIONS(2864), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2864), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2864), + [sym_preproc_directive] = ACTIONS(2864), + [anon_sym_LPAREN2] = ACTIONS(2866), + [anon_sym_BANG] = ACTIONS(2866), + [anon_sym_TILDE] = ACTIONS(2866), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_CARET] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_SEMI] = ACTIONS(2866), + [anon_sym___extension__] = ACTIONS(2864), + [anon_sym_typedef] = ACTIONS(2864), + [anon_sym_extern] = ACTIONS(2864), + [anon_sym___attribute__] = ACTIONS(2864), + [anon_sym___attribute] = ACTIONS(2864), + [anon_sym_noreturn] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2866), + [anon_sym___declspec] = ACTIONS(2864), + [anon_sym___cdecl] = ACTIONS(2864), + [anon_sym___clrcall] = ACTIONS(2864), + [anon_sym___stdcall] = ACTIONS(2864), + [anon_sym___fastcall] = ACTIONS(2864), + [anon_sym___thiscall] = ACTIONS(2864), + [anon_sym___vectorcall] = ACTIONS(2864), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_signed] = ACTIONS(2864), + [anon_sym_unsigned] = ACTIONS(2864), + [anon_sym_long] = ACTIONS(2864), + [anon_sym_short] = ACTIONS(2864), + [anon_sym_static] = ACTIONS(2864), + [anon_sym_ATautoreleasepool] = ACTIONS(2866), + [anon_sym_auto] = ACTIONS(2864), + [anon_sym_register] = ACTIONS(2864), + [anon_sym_inline] = ACTIONS(2864), + [anon_sym___inline] = ACTIONS(2864), + [anon_sym___inline__] = ACTIONS(2864), + [anon_sym___forceinline] = ACTIONS(2864), + [anon_sym_thread_local] = ACTIONS(2864), + [anon_sym___thread] = ACTIONS(2864), + [anon_sym_CG_EXTERN] = ACTIONS(2864), + [anon_sym_CG_INLINE] = ACTIONS(2864), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2864), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2864), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2864), + [anon_sym_IBOutlet] = ACTIONS(2864), + [anon_sym_IBInspectable] = ACTIONS(2864), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2864), + [anon_sym_NS_INLINE] = ACTIONS(2864), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2864), + [anon_sym_OBJC_EXPORT] = ACTIONS(2864), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2864), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2864), + [anon_sym_const] = ACTIONS(2864), + [anon_sym_constexpr] = ACTIONS(2864), + [anon_sym_volatile] = ACTIONS(2864), + [anon_sym_restrict] = ACTIONS(2864), + [anon_sym___restrict__] = ACTIONS(2864), + [anon_sym__Atomic] = ACTIONS(2864), + [anon_sym__Noreturn] = ACTIONS(2864), + [anon_sym__Nonnull] = ACTIONS(2864), + [anon_sym_nullable] = ACTIONS(2864), + [anon_sym__Complex] = ACTIONS(2864), + [anon_sym__Nullable] = ACTIONS(2864), + [anon_sym__Nullable_result] = ACTIONS(2864), + [anon_sym__Null_unspecified] = ACTIONS(2864), + [anon_sym___autoreleasing] = ACTIONS(2864), + [anon_sym___block] = ACTIONS(2864), + [anon_sym___bridge] = ACTIONS(2864), + [anon_sym___bridge_retained] = ACTIONS(2864), + [anon_sym___bridge_transfer] = ACTIONS(2864), + [anon_sym___complex] = ACTIONS(2864), + [anon_sym___const] = ACTIONS(2864), + [anon_sym___imag] = ACTIONS(2864), + [anon_sym___kindof] = ACTIONS(2864), + [anon_sym___nonnull] = ACTIONS(2864), + [anon_sym___nullable] = ACTIONS(2864), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2864), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2864), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2864), + [anon_sym___real] = ACTIONS(2864), + [anon_sym___strong] = ACTIONS(2864), + [anon_sym___unsafe_unretained] = ACTIONS(2864), + [anon_sym___unused] = ACTIONS(2864), + [anon_sym___weak] = ACTIONS(2864), + [anon_sym_alignas] = ACTIONS(2864), + [anon_sym__Alignas] = ACTIONS(2864), + [sym_primitive_type] = ACTIONS(2864), + [anon_sym_enum] = ACTIONS(2864), + [anon_sym_struct] = ACTIONS(2864), + [anon_sym_union] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_switch] = ACTIONS(2864), + [anon_sym_case] = ACTIONS(2864), + [anon_sym_default] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_in] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_break] = ACTIONS(2864), + [anon_sym_continue] = ACTIONS(2864), + [anon_sym_goto] = ACTIONS(2864), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [anon_sym_PLUS_PLUS] = ACTIONS(2866), + [anon_sym_sizeof] = ACTIONS(2864), + [anon_sym___alignof__] = ACTIONS(2864), + [anon_sym___alignof] = ACTIONS(2864), + [anon_sym__alignof] = ACTIONS(2864), + [anon_sym_alignof] = ACTIONS(2864), + [anon_sym__Alignof] = ACTIONS(2864), + [anon_sym_offsetof] = ACTIONS(2864), + [anon_sym__Generic] = ACTIONS(2864), + [anon_sym_asm] = ACTIONS(2864), + [anon_sym___asm__] = ACTIONS(2864), + [anon_sym___asm] = ACTIONS(2864), + [sym_number_literal] = ACTIONS(2866), + [anon_sym_L_SQUOTE] = ACTIONS(2866), + [anon_sym_u_SQUOTE] = ACTIONS(2866), + [anon_sym_U_SQUOTE] = ACTIONS(2866), + [anon_sym_u8_SQUOTE] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_AT] = ACTIONS(2864), + [anon_sym_DQUOTE] = ACTIONS(2866), + [anon_sym_L_DQUOTE] = ACTIONS(2866), + [anon_sym_u_DQUOTE] = ACTIONS(2866), + [anon_sym_U_DQUOTE] = ACTIONS(2866), + [anon_sym_u8_DQUOTE] = ACTIONS(2866), + [sym_true] = ACTIONS(2864), + [sym_false] = ACTIONS(2864), + [anon_sym_NULL] = ACTIONS(2864), + [anon_sym_nullptr] = ACTIONS(2864), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2864), + [anon_sym___typeof] = ACTIONS(2864), + [anon_sym_typeof] = ACTIONS(2864), + [anon_sym_ATimport] = ACTIONS(2866), + [aux_sym_preproc_undef_token1] = ACTIONS(2864), + [anon_sym_POUND] = ACTIONS(2864), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2864), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2864), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2864), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2864), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2864), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2864), + [anon_sym_NS_AVAILABLE] = ACTIONS(2864), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2864), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_API_AVAILABLE] = ACTIONS(2864), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_API_DEPRECATED] = ACTIONS(2864), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2864), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2864), + [anon_sym___deprecated_msg] = ACTIONS(2864), + [anon_sym___deprecated_enum_msg] = ACTIONS(2864), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2864), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2864), + [anon_sym_ATprotocol] = ACTIONS(2866), + [anon_sym_ATinterface] = ACTIONS(2866), + [anon_sym_ATimplementation] = ACTIONS(2866), + [anon_sym_ATcompatibility_alias] = ACTIONS(2866), + [anon_sym_ATsynthesize] = ACTIONS(2866), + [anon_sym_ATdynamic] = ACTIONS(2866), + [anon_sym_ATtry] = ACTIONS(2866), + [anon_sym___try] = ACTIONS(2864), + [anon_sym_ATthrow] = ACTIONS(2866), + [anon_sym_ATselector] = ACTIONS(2866), + [anon_sym_ATavailable] = ACTIONS(2866), + [anon_sym___builtin_available] = ACTIONS(2864), + [anon_sym_va_arg] = ACTIONS(2864), + [anon_sym_ATencode] = ACTIONS(2866), + [anon_sym_ATsynchronized] = ACTIONS(2866), + [anon_sym_BOOL] = ACTIONS(2864), + [anon_sym_IMP] = ACTIONS(2864), + [anon_sym_SEL] = ACTIONS(2864), + [anon_sym_Class] = ACTIONS(2864), + [anon_sym_id] = ACTIONS(2864), + }, + [361] = { + [sym_identifier] = ACTIONS(2868), + [aux_sym_preproc_include_token1] = ACTIONS(2868), + [aux_sym_preproc_include_token2] = ACTIONS(2868), + [aux_sym_preproc_def_token1] = ACTIONS(2868), + [aux_sym_preproc_if_token1] = ACTIONS(2868), + [aux_sym_preproc_if_token2] = ACTIONS(2868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2868), + [aux_sym_preproc_else_token1] = ACTIONS(2868), + [aux_sym_preproc_elif_token1] = ACTIONS(2868), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2868), + [sym_preproc_directive] = ACTIONS(2868), + [anon_sym_LPAREN2] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_CARET] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym___extension__] = ACTIONS(2868), + [anon_sym_typedef] = ACTIONS(2868), + [anon_sym_extern] = ACTIONS(2868), + [anon_sym___attribute__] = ACTIONS(2868), + [anon_sym___attribute] = ACTIONS(2868), + [anon_sym_noreturn] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2870), + [anon_sym___declspec] = ACTIONS(2868), + [anon_sym___cdecl] = ACTIONS(2868), + [anon_sym___clrcall] = ACTIONS(2868), + [anon_sym___stdcall] = ACTIONS(2868), + [anon_sym___fastcall] = ACTIONS(2868), + [anon_sym___thiscall] = ACTIONS(2868), + [anon_sym___vectorcall] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_signed] = ACTIONS(2868), + [anon_sym_unsigned] = ACTIONS(2868), + [anon_sym_long] = ACTIONS(2868), + [anon_sym_short] = ACTIONS(2868), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_ATautoreleasepool] = ACTIONS(2870), + [anon_sym_auto] = ACTIONS(2868), + [anon_sym_register] = ACTIONS(2868), + [anon_sym_inline] = ACTIONS(2868), + [anon_sym___inline] = ACTIONS(2868), + [anon_sym___inline__] = ACTIONS(2868), + [anon_sym___forceinline] = ACTIONS(2868), + [anon_sym_thread_local] = ACTIONS(2868), + [anon_sym___thread] = ACTIONS(2868), + [anon_sym_CG_EXTERN] = ACTIONS(2868), + [anon_sym_CG_INLINE] = ACTIONS(2868), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2868), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2868), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2868), + [anon_sym_IBOutlet] = ACTIONS(2868), + [anon_sym_IBInspectable] = ACTIONS(2868), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2868), + [anon_sym_NS_INLINE] = ACTIONS(2868), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2868), + [anon_sym_OBJC_EXPORT] = ACTIONS(2868), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2868), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2868), + [anon_sym_const] = ACTIONS(2868), + [anon_sym_constexpr] = ACTIONS(2868), + [anon_sym_volatile] = ACTIONS(2868), + [anon_sym_restrict] = ACTIONS(2868), + [anon_sym___restrict__] = ACTIONS(2868), + [anon_sym__Atomic] = ACTIONS(2868), + [anon_sym__Noreturn] = ACTIONS(2868), + [anon_sym__Nonnull] = ACTIONS(2868), + [anon_sym_nullable] = ACTIONS(2868), + [anon_sym__Complex] = ACTIONS(2868), + [anon_sym__Nullable] = ACTIONS(2868), + [anon_sym__Nullable_result] = ACTIONS(2868), + [anon_sym__Null_unspecified] = ACTIONS(2868), + [anon_sym___autoreleasing] = ACTIONS(2868), + [anon_sym___block] = ACTIONS(2868), + [anon_sym___bridge] = ACTIONS(2868), + [anon_sym___bridge_retained] = ACTIONS(2868), + [anon_sym___bridge_transfer] = ACTIONS(2868), + [anon_sym___complex] = ACTIONS(2868), + [anon_sym___const] = ACTIONS(2868), + [anon_sym___imag] = ACTIONS(2868), + [anon_sym___kindof] = ACTIONS(2868), + [anon_sym___nonnull] = ACTIONS(2868), + [anon_sym___nullable] = ACTIONS(2868), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2868), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2868), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2868), + [anon_sym___real] = ACTIONS(2868), + [anon_sym___strong] = ACTIONS(2868), + [anon_sym___unsafe_unretained] = ACTIONS(2868), + [anon_sym___unused] = ACTIONS(2868), + [anon_sym___weak] = ACTIONS(2868), + [anon_sym_alignas] = ACTIONS(2868), + [anon_sym__Alignas] = ACTIONS(2868), + [sym_primitive_type] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2868), + [anon_sym_union] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_switch] = ACTIONS(2868), + [anon_sym_case] = ACTIONS(2868), + [anon_sym_default] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_in] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_goto] = ACTIONS(2868), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_sizeof] = ACTIONS(2868), + [anon_sym___alignof__] = ACTIONS(2868), + [anon_sym___alignof] = ACTIONS(2868), + [anon_sym__alignof] = ACTIONS(2868), + [anon_sym_alignof] = ACTIONS(2868), + [anon_sym__Alignof] = ACTIONS(2868), + [anon_sym_offsetof] = ACTIONS(2868), + [anon_sym__Generic] = ACTIONS(2868), + [anon_sym_asm] = ACTIONS(2868), + [anon_sym___asm__] = ACTIONS(2868), + [anon_sym___asm] = ACTIONS(2868), + [sym_number_literal] = ACTIONS(2870), + [anon_sym_L_SQUOTE] = ACTIONS(2870), + [anon_sym_u_SQUOTE] = ACTIONS(2870), + [anon_sym_U_SQUOTE] = ACTIONS(2870), + [anon_sym_u8_SQUOTE] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_AT] = ACTIONS(2868), + [anon_sym_DQUOTE] = ACTIONS(2870), + [anon_sym_L_DQUOTE] = ACTIONS(2870), + [anon_sym_u_DQUOTE] = ACTIONS(2870), + [anon_sym_U_DQUOTE] = ACTIONS(2870), + [anon_sym_u8_DQUOTE] = ACTIONS(2870), + [sym_true] = ACTIONS(2868), + [sym_false] = ACTIONS(2868), + [anon_sym_NULL] = ACTIONS(2868), + [anon_sym_nullptr] = ACTIONS(2868), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2868), + [anon_sym___typeof] = ACTIONS(2868), + [anon_sym_typeof] = ACTIONS(2868), + [anon_sym_ATimport] = ACTIONS(2870), + [aux_sym_preproc_undef_token1] = ACTIONS(2868), + [anon_sym_POUND] = ACTIONS(2868), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2868), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2868), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2868), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2868), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2868), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2868), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2868), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2868), + [anon_sym_NS_AVAILABLE] = ACTIONS(2868), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_API_AVAILABLE] = ACTIONS(2868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_API_DEPRECATED] = ACTIONS(2868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2868), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2868), + [anon_sym___deprecated_msg] = ACTIONS(2868), + [anon_sym___deprecated_enum_msg] = ACTIONS(2868), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2868), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2868), + [anon_sym_ATprotocol] = ACTIONS(2870), + [anon_sym_ATinterface] = ACTIONS(2870), + [anon_sym_ATimplementation] = ACTIONS(2870), + [anon_sym_ATcompatibility_alias] = ACTIONS(2870), + [anon_sym_ATsynthesize] = ACTIONS(2870), + [anon_sym_ATdynamic] = ACTIONS(2870), + [anon_sym_ATtry] = ACTIONS(2870), + [anon_sym___try] = ACTIONS(2868), + [anon_sym_ATthrow] = ACTIONS(2870), + [anon_sym_ATselector] = ACTIONS(2870), + [anon_sym_ATavailable] = ACTIONS(2870), + [anon_sym___builtin_available] = ACTIONS(2868), + [anon_sym_va_arg] = ACTIONS(2868), + [anon_sym_ATencode] = ACTIONS(2870), + [anon_sym_ATsynchronized] = ACTIONS(2870), + [anon_sym_BOOL] = ACTIONS(2868), + [anon_sym_IMP] = ACTIONS(2868), + [anon_sym_SEL] = ACTIONS(2868), + [anon_sym_Class] = ACTIONS(2868), + [anon_sym_id] = ACTIONS(2868), + }, + [362] = { + [sym_identifier] = ACTIONS(2872), + [aux_sym_preproc_include_token1] = ACTIONS(2872), + [aux_sym_preproc_include_token2] = ACTIONS(2872), + [aux_sym_preproc_def_token1] = ACTIONS(2872), + [aux_sym_preproc_if_token1] = ACTIONS(2872), + [aux_sym_preproc_if_token2] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2872), + [aux_sym_preproc_else_token1] = ACTIONS(2872), + [aux_sym_preproc_elif_token1] = ACTIONS(2872), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2872), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2872), + [sym_preproc_directive] = ACTIONS(2872), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_CARET] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2874), + [anon_sym___extension__] = ACTIONS(2872), + [anon_sym_typedef] = ACTIONS(2872), + [anon_sym_extern] = ACTIONS(2872), + [anon_sym___attribute__] = ACTIONS(2872), + [anon_sym___attribute] = ACTIONS(2872), + [anon_sym_noreturn] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2874), + [anon_sym___declspec] = ACTIONS(2872), + [anon_sym___cdecl] = ACTIONS(2872), + [anon_sym___clrcall] = ACTIONS(2872), + [anon_sym___stdcall] = ACTIONS(2872), + [anon_sym___fastcall] = ACTIONS(2872), + [anon_sym___thiscall] = ACTIONS(2872), + [anon_sym___vectorcall] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_signed] = ACTIONS(2872), + [anon_sym_unsigned] = ACTIONS(2872), + [anon_sym_long] = ACTIONS(2872), + [anon_sym_short] = ACTIONS(2872), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_ATautoreleasepool] = ACTIONS(2874), + [anon_sym_auto] = ACTIONS(2872), + [anon_sym_register] = ACTIONS(2872), + [anon_sym_inline] = ACTIONS(2872), + [anon_sym___inline] = ACTIONS(2872), + [anon_sym___inline__] = ACTIONS(2872), + [anon_sym___forceinline] = ACTIONS(2872), + [anon_sym_thread_local] = ACTIONS(2872), + [anon_sym___thread] = ACTIONS(2872), + [anon_sym_CG_EXTERN] = ACTIONS(2872), + [anon_sym_CG_INLINE] = ACTIONS(2872), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2872), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2872), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2872), + [anon_sym_IBOutlet] = ACTIONS(2872), + [anon_sym_IBInspectable] = ACTIONS(2872), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2872), + [anon_sym_NS_INLINE] = ACTIONS(2872), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2872), + [anon_sym_OBJC_EXPORT] = ACTIONS(2872), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2872), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2872), + [anon_sym_const] = ACTIONS(2872), + [anon_sym_constexpr] = ACTIONS(2872), + [anon_sym_volatile] = ACTIONS(2872), + [anon_sym_restrict] = ACTIONS(2872), + [anon_sym___restrict__] = ACTIONS(2872), + [anon_sym__Atomic] = ACTIONS(2872), + [anon_sym__Noreturn] = ACTIONS(2872), + [anon_sym__Nonnull] = ACTIONS(2872), + [anon_sym_nullable] = ACTIONS(2872), + [anon_sym__Complex] = ACTIONS(2872), + [anon_sym__Nullable] = ACTIONS(2872), + [anon_sym__Nullable_result] = ACTIONS(2872), + [anon_sym__Null_unspecified] = ACTIONS(2872), + [anon_sym___autoreleasing] = ACTIONS(2872), + [anon_sym___block] = ACTIONS(2872), + [anon_sym___bridge] = ACTIONS(2872), + [anon_sym___bridge_retained] = ACTIONS(2872), + [anon_sym___bridge_transfer] = ACTIONS(2872), + [anon_sym___complex] = ACTIONS(2872), + [anon_sym___const] = ACTIONS(2872), + [anon_sym___imag] = ACTIONS(2872), + [anon_sym___kindof] = ACTIONS(2872), + [anon_sym___nonnull] = ACTIONS(2872), + [anon_sym___nullable] = ACTIONS(2872), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2872), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2872), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2872), + [anon_sym___real] = ACTIONS(2872), + [anon_sym___strong] = ACTIONS(2872), + [anon_sym___unsafe_unretained] = ACTIONS(2872), + [anon_sym___unused] = ACTIONS(2872), + [anon_sym___weak] = ACTIONS(2872), + [anon_sym_alignas] = ACTIONS(2872), + [anon_sym__Alignas] = ACTIONS(2872), + [sym_primitive_type] = ACTIONS(2872), + [anon_sym_enum] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2872), + [anon_sym_union] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_switch] = ACTIONS(2872), + [anon_sym_case] = ACTIONS(2872), + [anon_sym_default] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_in] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_break] = ACTIONS(2872), + [anon_sym_continue] = ACTIONS(2872), + [anon_sym_goto] = ACTIONS(2872), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_sizeof] = ACTIONS(2872), + [anon_sym___alignof__] = ACTIONS(2872), + [anon_sym___alignof] = ACTIONS(2872), + [anon_sym__alignof] = ACTIONS(2872), + [anon_sym_alignof] = ACTIONS(2872), + [anon_sym__Alignof] = ACTIONS(2872), + [anon_sym_offsetof] = ACTIONS(2872), + [anon_sym__Generic] = ACTIONS(2872), + [anon_sym_asm] = ACTIONS(2872), + [anon_sym___asm__] = ACTIONS(2872), + [anon_sym___asm] = ACTIONS(2872), + [sym_number_literal] = ACTIONS(2874), + [anon_sym_L_SQUOTE] = ACTIONS(2874), + [anon_sym_u_SQUOTE] = ACTIONS(2874), + [anon_sym_U_SQUOTE] = ACTIONS(2874), + [anon_sym_u8_SQUOTE] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_AT] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(2874), + [anon_sym_L_DQUOTE] = ACTIONS(2874), + [anon_sym_u_DQUOTE] = ACTIONS(2874), + [anon_sym_U_DQUOTE] = ACTIONS(2874), + [anon_sym_u8_DQUOTE] = ACTIONS(2874), + [sym_true] = ACTIONS(2872), + [sym_false] = ACTIONS(2872), + [anon_sym_NULL] = ACTIONS(2872), + [anon_sym_nullptr] = ACTIONS(2872), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2872), + [anon_sym___typeof] = ACTIONS(2872), + [anon_sym_typeof] = ACTIONS(2872), + [anon_sym_ATimport] = ACTIONS(2874), + [aux_sym_preproc_undef_token1] = ACTIONS(2872), + [anon_sym_POUND] = ACTIONS(2872), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2872), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2872), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2872), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2872), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2872), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2872), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2872), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2872), + [anon_sym_NS_AVAILABLE] = ACTIONS(2872), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2872), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_API_AVAILABLE] = ACTIONS(2872), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_API_DEPRECATED] = ACTIONS(2872), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2872), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2872), + [anon_sym___deprecated_msg] = ACTIONS(2872), + [anon_sym___deprecated_enum_msg] = ACTIONS(2872), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2872), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2872), + [anon_sym_ATprotocol] = ACTIONS(2874), + [anon_sym_ATinterface] = ACTIONS(2874), + [anon_sym_ATimplementation] = ACTIONS(2874), + [anon_sym_ATcompatibility_alias] = ACTIONS(2874), + [anon_sym_ATsynthesize] = ACTIONS(2874), + [anon_sym_ATdynamic] = ACTIONS(2874), + [anon_sym_ATtry] = ACTIONS(2874), + [anon_sym___try] = ACTIONS(2872), + [anon_sym_ATthrow] = ACTIONS(2874), + [anon_sym_ATselector] = ACTIONS(2874), + [anon_sym_ATavailable] = ACTIONS(2874), + [anon_sym___builtin_available] = ACTIONS(2872), + [anon_sym_va_arg] = ACTIONS(2872), + [anon_sym_ATencode] = ACTIONS(2874), + [anon_sym_ATsynchronized] = ACTIONS(2874), + [anon_sym_BOOL] = ACTIONS(2872), + [anon_sym_IMP] = ACTIONS(2872), + [anon_sym_SEL] = ACTIONS(2872), + [anon_sym_Class] = ACTIONS(2872), + [anon_sym_id] = ACTIONS(2872), + }, + [363] = { + [sym_identifier] = ACTIONS(2354), + [aux_sym_preproc_include_token1] = ACTIONS(2354), + [aux_sym_preproc_include_token2] = ACTIONS(2354), + [aux_sym_preproc_def_token1] = ACTIONS(2354), + [aux_sym_preproc_if_token1] = ACTIONS(2354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2354), + [sym_preproc_directive] = ACTIONS(2354), + [anon_sym_LPAREN2] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2354), + [anon_sym_PLUS] = ACTIONS(2354), + [anon_sym_STAR] = ACTIONS(2356), + [anon_sym_CARET] = ACTIONS(2356), + [anon_sym_AMP] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym___extension__] = ACTIONS(2354), + [anon_sym_typedef] = ACTIONS(2354), + [anon_sym_extern] = ACTIONS(2354), + [anon_sym___attribute__] = ACTIONS(2354), + [anon_sym___attribute] = ACTIONS(2354), + [anon_sym_noreturn] = ACTIONS(2354), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym___declspec] = ACTIONS(2354), + [anon_sym___cdecl] = ACTIONS(2354), + [anon_sym___clrcall] = ACTIONS(2354), + [anon_sym___stdcall] = ACTIONS(2354), + [anon_sym___fastcall] = ACTIONS(2354), + [anon_sym___thiscall] = ACTIONS(2354), + [anon_sym___vectorcall] = ACTIONS(2354), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_signed] = ACTIONS(2354), + [anon_sym_unsigned] = ACTIONS(2354), + [anon_sym_long] = ACTIONS(2354), + [anon_sym_short] = ACTIONS(2354), + [anon_sym_static] = ACTIONS(2354), + [anon_sym_ATautoreleasepool] = ACTIONS(2356), + [anon_sym_auto] = ACTIONS(2354), + [anon_sym_register] = ACTIONS(2354), + [anon_sym_inline] = ACTIONS(2354), + [anon_sym___inline] = ACTIONS(2354), + [anon_sym___inline__] = ACTIONS(2354), + [anon_sym___forceinline] = ACTIONS(2354), + [anon_sym_thread_local] = ACTIONS(2354), + [anon_sym___thread] = ACTIONS(2354), + [anon_sym_CG_EXTERN] = ACTIONS(2354), + [anon_sym_CG_INLINE] = ACTIONS(2354), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2354), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2354), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2354), + [anon_sym_IBOutlet] = ACTIONS(2354), + [anon_sym_IBInspectable] = ACTIONS(2354), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2354), + [anon_sym_NS_INLINE] = ACTIONS(2354), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2354), + [anon_sym_OBJC_EXPORT] = ACTIONS(2354), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2354), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2354), + [anon_sym_const] = ACTIONS(2354), + [anon_sym_constexpr] = ACTIONS(2354), + [anon_sym_volatile] = ACTIONS(2354), + [anon_sym_restrict] = ACTIONS(2354), + [anon_sym___restrict__] = ACTIONS(2354), + [anon_sym__Atomic] = ACTIONS(2354), + [anon_sym__Noreturn] = ACTIONS(2354), + [anon_sym__Nonnull] = ACTIONS(2354), + [anon_sym_nullable] = ACTIONS(2354), + [anon_sym__Complex] = ACTIONS(2354), + [anon_sym__Nullable] = ACTIONS(2354), + [anon_sym__Nullable_result] = ACTIONS(2354), + [anon_sym__Null_unspecified] = ACTIONS(2354), + [anon_sym___autoreleasing] = ACTIONS(2354), + [anon_sym___block] = ACTIONS(2354), + [anon_sym___bridge] = ACTIONS(2354), + [anon_sym___bridge_retained] = ACTIONS(2354), + [anon_sym___bridge_transfer] = ACTIONS(2354), + [anon_sym___complex] = ACTIONS(2354), + [anon_sym___const] = ACTIONS(2354), + [anon_sym___imag] = ACTIONS(2354), + [anon_sym___kindof] = ACTIONS(2354), + [anon_sym___nonnull] = ACTIONS(2354), + [anon_sym___nullable] = ACTIONS(2354), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2354), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2354), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2354), + [anon_sym___real] = ACTIONS(2354), + [anon_sym___strong] = ACTIONS(2354), + [anon_sym___unsafe_unretained] = ACTIONS(2354), + [anon_sym___unused] = ACTIONS(2354), + [anon_sym___weak] = ACTIONS(2354), + [anon_sym_alignas] = ACTIONS(2354), + [anon_sym__Alignas] = ACTIONS(2354), + [sym_primitive_type] = ACTIONS(2354), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(2354), + [anon_sym_union] = ACTIONS(2354), + [anon_sym_if] = ACTIONS(2354), + [anon_sym_else] = ACTIONS(2354), + [anon_sym_switch] = ACTIONS(2354), + [anon_sym_case] = ACTIONS(2354), + [anon_sym_default] = ACTIONS(2354), + [anon_sym_while] = ACTIONS(2354), + [anon_sym_do] = ACTIONS(2354), + [anon_sym_for] = ACTIONS(2354), + [anon_sym_in] = ACTIONS(2354), + [anon_sym_return] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_goto] = ACTIONS(2354), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_sizeof] = ACTIONS(2354), + [anon_sym___alignof__] = ACTIONS(2354), + [anon_sym___alignof] = ACTIONS(2354), + [anon_sym__alignof] = ACTIONS(2354), + [anon_sym_alignof] = ACTIONS(2354), + [anon_sym__Alignof] = ACTIONS(2354), + [anon_sym_offsetof] = ACTIONS(2354), + [anon_sym__Generic] = ACTIONS(2354), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2356), + [anon_sym_u_SQUOTE] = ACTIONS(2356), + [anon_sym_U_SQUOTE] = ACTIONS(2356), + [anon_sym_u8_SQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2354), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_L_DQUOTE] = ACTIONS(2356), + [anon_sym_u_DQUOTE] = ACTIONS(2356), + [anon_sym_U_DQUOTE] = ACTIONS(2356), + [anon_sym_u8_DQUOTE] = ACTIONS(2356), + [sym_true] = ACTIONS(2354), + [sym_false] = ACTIONS(2354), + [anon_sym_NULL] = ACTIONS(2354), + [anon_sym_nullptr] = ACTIONS(2354), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2354), + [anon_sym___typeof] = ACTIONS(2354), + [anon_sym_typeof] = ACTIONS(2354), + [anon_sym_ATimport] = ACTIONS(2356), + [aux_sym_preproc_undef_token1] = ACTIONS(2354), + [anon_sym_POUND] = ACTIONS(2354), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2354), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2354), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2354), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2354), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2354), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2354), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2354), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2354), + [anon_sym_NS_AVAILABLE] = ACTIONS(2354), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2354), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_API_AVAILABLE] = ACTIONS(2354), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_API_DEPRECATED] = ACTIONS(2354), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2354), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2354), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2354), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2354), + [anon_sym___deprecated_msg] = ACTIONS(2354), + [anon_sym___deprecated_enum_msg] = ACTIONS(2354), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2354), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2354), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2354), + [anon_sym_ATprotocol] = ACTIONS(2356), + [anon_sym_ATinterface] = ACTIONS(2356), + [anon_sym_ATimplementation] = ACTIONS(2356), + [anon_sym_ATcompatibility_alias] = ACTIONS(2356), + [anon_sym_ATtry] = ACTIONS(2356), + [anon_sym___try] = ACTIONS(2354), + [anon_sym_ATcatch] = ACTIONS(2356), + [anon_sym___catch] = ACTIONS(2354), + [anon_sym_ATfinally] = ACTIONS(2356), + [anon_sym___finally] = ACTIONS(2354), + [anon_sym_ATthrow] = ACTIONS(2356), + [anon_sym_ATselector] = ACTIONS(2356), + [anon_sym_ATavailable] = ACTIONS(2356), + [anon_sym___builtin_available] = ACTIONS(2354), + [anon_sym_va_arg] = ACTIONS(2354), + [anon_sym_ATencode] = ACTIONS(2356), + [anon_sym_ATsynchronized] = ACTIONS(2356), + [anon_sym_BOOL] = ACTIONS(2354), + [anon_sym_IMP] = ACTIONS(2354), + [anon_sym_SEL] = ACTIONS(2354), + [anon_sym_Class] = ACTIONS(2354), + [anon_sym_id] = ACTIONS(2354), + }, + [364] = { + [sym_identifier] = ACTIONS(2560), + [aux_sym_preproc_include_token1] = ACTIONS(2560), + [aux_sym_preproc_include_token2] = ACTIONS(2560), + [aux_sym_preproc_def_token1] = ACTIONS(2560), + [aux_sym_preproc_if_token1] = ACTIONS(2560), + [aux_sym_preproc_if_token2] = ACTIONS(2560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2560), + [aux_sym_preproc_else_token1] = ACTIONS(2560), + [aux_sym_preproc_elif_token1] = ACTIONS(2560), + [sym_preproc_directive] = ACTIONS(2560), + [anon_sym_LPAREN2] = ACTIONS(2562), + [anon_sym_BANG] = ACTIONS(2562), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_DASH] = ACTIONS(2560), + [anon_sym_PLUS] = ACTIONS(2560), + [anon_sym_STAR] = ACTIONS(2562), + [anon_sym_CARET] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2562), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym___extension__] = ACTIONS(2560), + [anon_sym_typedef] = ACTIONS(2560), + [anon_sym_extern] = ACTIONS(2560), + [anon_sym___attribute__] = ACTIONS(2560), + [anon_sym___attribute] = ACTIONS(2560), + [anon_sym_noreturn] = ACTIONS(2560), + [anon_sym_LBRACK] = ACTIONS(2562), + [anon_sym___declspec] = ACTIONS(2560), + [anon_sym___cdecl] = ACTIONS(2560), + [anon_sym___clrcall] = ACTIONS(2560), + [anon_sym___stdcall] = ACTIONS(2560), + [anon_sym___fastcall] = ACTIONS(2560), + [anon_sym___thiscall] = ACTIONS(2560), + [anon_sym___vectorcall] = ACTIONS(2560), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_signed] = ACTIONS(2560), + [anon_sym_unsigned] = ACTIONS(2560), + [anon_sym_long] = ACTIONS(2560), + [anon_sym_short] = ACTIONS(2560), + [anon_sym_static] = ACTIONS(2560), + [anon_sym_ATautoreleasepool] = ACTIONS(2562), + [anon_sym_auto] = ACTIONS(2560), + [anon_sym_register] = ACTIONS(2560), + [anon_sym_inline] = ACTIONS(2560), + [anon_sym___inline] = ACTIONS(2560), + [anon_sym___inline__] = ACTIONS(2560), + [anon_sym___forceinline] = ACTIONS(2560), + [anon_sym_thread_local] = ACTIONS(2560), + [anon_sym___thread] = ACTIONS(2560), + [anon_sym_CG_EXTERN] = ACTIONS(2560), + [anon_sym_CG_INLINE] = ACTIONS(2560), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2560), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2560), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2560), + [anon_sym_IBOutlet] = ACTIONS(2560), + [anon_sym_IBInspectable] = ACTIONS(2560), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2560), + [anon_sym_NS_INLINE] = ACTIONS(2560), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2560), + [anon_sym_OBJC_EXPORT] = ACTIONS(2560), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2560), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2560), + [anon_sym_const] = ACTIONS(2560), + [anon_sym_constexpr] = ACTIONS(2560), + [anon_sym_volatile] = ACTIONS(2560), + [anon_sym_restrict] = ACTIONS(2560), + [anon_sym___restrict__] = ACTIONS(2560), + [anon_sym__Atomic] = ACTIONS(2560), + [anon_sym__Noreturn] = ACTIONS(2560), + [anon_sym__Nonnull] = ACTIONS(2560), + [anon_sym_nullable] = ACTIONS(2560), + [anon_sym__Complex] = ACTIONS(2560), + [anon_sym__Nullable] = ACTIONS(2560), + [anon_sym__Nullable_result] = ACTIONS(2560), + [anon_sym__Null_unspecified] = ACTIONS(2560), + [anon_sym___autoreleasing] = ACTIONS(2560), + [anon_sym___block] = ACTIONS(2560), + [anon_sym___bridge] = ACTIONS(2560), + [anon_sym___bridge_retained] = ACTIONS(2560), + [anon_sym___bridge_transfer] = ACTIONS(2560), + [anon_sym___complex] = ACTIONS(2560), + [anon_sym___const] = ACTIONS(2560), + [anon_sym___imag] = ACTIONS(2560), + [anon_sym___kindof] = ACTIONS(2560), + [anon_sym___nonnull] = ACTIONS(2560), + [anon_sym___nullable] = ACTIONS(2560), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2560), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2560), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2560), + [anon_sym___real] = ACTIONS(2560), + [anon_sym___strong] = ACTIONS(2560), + [anon_sym___unsafe_unretained] = ACTIONS(2560), + [anon_sym___unused] = ACTIONS(2560), + [anon_sym___weak] = ACTIONS(2560), + [anon_sym_alignas] = ACTIONS(2560), + [anon_sym__Alignas] = ACTIONS(2560), + [sym_primitive_type] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2560), + [anon_sym_struct] = ACTIONS(2560), + [anon_sym_union] = ACTIONS(2560), + [anon_sym_if] = ACTIONS(2560), + [anon_sym_else] = ACTIONS(2560), + [anon_sym_switch] = ACTIONS(2560), + [anon_sym_case] = ACTIONS(2560), + [anon_sym_default] = ACTIONS(2560), + [anon_sym_while] = ACTIONS(2560), + [anon_sym_do] = ACTIONS(2560), + [anon_sym_for] = ACTIONS(2560), + [anon_sym_in] = ACTIONS(2560), + [anon_sym_return] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_goto] = ACTIONS(2560), + [anon_sym_DASH_DASH] = ACTIONS(2562), + [anon_sym_PLUS_PLUS] = ACTIONS(2562), + [anon_sym_sizeof] = ACTIONS(2560), + [anon_sym___alignof__] = ACTIONS(2560), + [anon_sym___alignof] = ACTIONS(2560), + [anon_sym__alignof] = ACTIONS(2560), + [anon_sym_alignof] = ACTIONS(2560), + [anon_sym__Alignof] = ACTIONS(2560), + [anon_sym_offsetof] = ACTIONS(2560), + [anon_sym__Generic] = ACTIONS(2560), + [anon_sym_asm] = ACTIONS(2560), + [anon_sym___asm__] = ACTIONS(2560), + [anon_sym___asm] = ACTIONS(2560), + [sym_number_literal] = ACTIONS(2562), + [anon_sym_L_SQUOTE] = ACTIONS(2562), + [anon_sym_u_SQUOTE] = ACTIONS(2562), + [anon_sym_U_SQUOTE] = ACTIONS(2562), + [anon_sym_u8_SQUOTE] = ACTIONS(2562), + [anon_sym_SQUOTE] = ACTIONS(2562), + [anon_sym_AT] = ACTIONS(2560), + [anon_sym_DQUOTE] = ACTIONS(2562), + [anon_sym_L_DQUOTE] = ACTIONS(2562), + [anon_sym_u_DQUOTE] = ACTIONS(2562), + [anon_sym_U_DQUOTE] = ACTIONS(2562), + [anon_sym_u8_DQUOTE] = ACTIONS(2562), + [sym_true] = ACTIONS(2560), + [sym_false] = ACTIONS(2560), + [anon_sym_NULL] = ACTIONS(2560), + [anon_sym_nullptr] = ACTIONS(2560), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2560), + [anon_sym___typeof] = ACTIONS(2560), + [anon_sym_typeof] = ACTIONS(2560), + [anon_sym_ATimport] = ACTIONS(2562), + [aux_sym_preproc_undef_token1] = ACTIONS(2560), + [anon_sym_POUND] = ACTIONS(2560), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2560), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2560), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2560), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2560), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2560), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2560), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2560), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2560), + [anon_sym_NS_AVAILABLE] = ACTIONS(2560), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2560), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_API_AVAILABLE] = ACTIONS(2560), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_API_DEPRECATED] = ACTIONS(2560), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2560), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2560), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2560), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2560), + [anon_sym___deprecated_msg] = ACTIONS(2560), + [anon_sym___deprecated_enum_msg] = ACTIONS(2560), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2560), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2560), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2560), + [anon_sym_ATprotocol] = ACTIONS(2562), + [anon_sym_ATinterface] = ACTIONS(2562), + [anon_sym_ATimplementation] = ACTIONS(2562), + [anon_sym_ATcompatibility_alias] = ACTIONS(2562), + [anon_sym_ATsynthesize] = ACTIONS(2562), + [anon_sym_ATdynamic] = ACTIONS(2562), + [anon_sym_ATtry] = ACTIONS(2562), + [anon_sym___try] = ACTIONS(2560), + [anon_sym_ATthrow] = ACTIONS(2562), + [anon_sym_ATselector] = ACTIONS(2562), + [anon_sym_ATavailable] = ACTIONS(2562), + [anon_sym___builtin_available] = ACTIONS(2560), + [anon_sym_va_arg] = ACTIONS(2560), + [anon_sym_ATencode] = ACTIONS(2562), + [anon_sym_ATsynchronized] = ACTIONS(2562), + [anon_sym_BOOL] = ACTIONS(2560), + [anon_sym_IMP] = ACTIONS(2560), + [anon_sym_SEL] = ACTIONS(2560), + [anon_sym_Class] = ACTIONS(2560), + [anon_sym_id] = ACTIONS(2560), + }, + [365] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_include_token1] = ACTIONS(2436), + [aux_sym_preproc_include_token2] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token2] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [aux_sym_preproc_else_token1] = ACTIONS(2436), + [aux_sym_preproc_elif_token1] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_ATautoreleasepool] = ACTIONS(2438), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_case] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_goto] = ACTIONS(2436), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_sizeof] = ACTIONS(2436), + [anon_sym___alignof__] = ACTIONS(2436), + [anon_sym___alignof] = ACTIONS(2436), + [anon_sym__alignof] = ACTIONS(2436), + [anon_sym_alignof] = ACTIONS(2436), + [anon_sym__Alignof] = ACTIONS(2436), + [anon_sym_offsetof] = ACTIONS(2436), + [anon_sym__Generic] = ACTIONS(2436), + [anon_sym_asm] = ACTIONS(2436), + [anon_sym___asm__] = ACTIONS(2436), + [anon_sym___asm] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_L_SQUOTE] = ACTIONS(2438), + [anon_sym_u_SQUOTE] = ACTIONS(2438), + [anon_sym_U_SQUOTE] = ACTIONS(2438), + [anon_sym_u8_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_L_DQUOTE] = ACTIONS(2438), + [anon_sym_u_DQUOTE] = ACTIONS(2438), + [anon_sym_U_DQUOTE] = ACTIONS(2438), + [anon_sym_u8_DQUOTE] = ACTIONS(2438), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_nullptr] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [anon_sym_ATimport] = ACTIONS(2438), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_POUND] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATprotocol] = ACTIONS(2438), + [anon_sym_ATinterface] = ACTIONS(2438), + [anon_sym_ATimplementation] = ACTIONS(2438), + [anon_sym_ATcompatibility_alias] = ACTIONS(2438), + [anon_sym_ATsynthesize] = ACTIONS(2438), + [anon_sym_ATdynamic] = ACTIONS(2438), + [anon_sym_ATtry] = ACTIONS(2438), + [anon_sym___try] = ACTIONS(2436), + [anon_sym_ATthrow] = ACTIONS(2438), + [anon_sym_ATselector] = ACTIONS(2438), + [anon_sym_ATavailable] = ACTIONS(2438), + [anon_sym___builtin_available] = ACTIONS(2436), + [anon_sym_va_arg] = ACTIONS(2436), + [anon_sym_ATencode] = ACTIONS(2438), + [anon_sym_ATsynchronized] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [366] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_include_token1] = ACTIONS(2436), + [aux_sym_preproc_include_token2] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token2] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [aux_sym_preproc_else_token1] = ACTIONS(2436), + [aux_sym_preproc_elif_token1] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_ATautoreleasepool] = ACTIONS(2438), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_case] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_goto] = ACTIONS(2436), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_sizeof] = ACTIONS(2436), + [anon_sym___alignof__] = ACTIONS(2436), + [anon_sym___alignof] = ACTIONS(2436), + [anon_sym__alignof] = ACTIONS(2436), + [anon_sym_alignof] = ACTIONS(2436), + [anon_sym__Alignof] = ACTIONS(2436), + [anon_sym_offsetof] = ACTIONS(2436), + [anon_sym__Generic] = ACTIONS(2436), + [anon_sym_asm] = ACTIONS(2436), + [anon_sym___asm__] = ACTIONS(2436), + [anon_sym___asm] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_L_SQUOTE] = ACTIONS(2438), + [anon_sym_u_SQUOTE] = ACTIONS(2438), + [anon_sym_U_SQUOTE] = ACTIONS(2438), + [anon_sym_u8_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_L_DQUOTE] = ACTIONS(2438), + [anon_sym_u_DQUOTE] = ACTIONS(2438), + [anon_sym_U_DQUOTE] = ACTIONS(2438), + [anon_sym_u8_DQUOTE] = ACTIONS(2438), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_nullptr] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [anon_sym_ATimport] = ACTIONS(2438), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_POUND] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATprotocol] = ACTIONS(2438), + [anon_sym_ATinterface] = ACTIONS(2438), + [anon_sym_ATimplementation] = ACTIONS(2438), + [anon_sym_ATcompatibility_alias] = ACTIONS(2438), + [anon_sym_ATsynthesize] = ACTIONS(2438), + [anon_sym_ATdynamic] = ACTIONS(2438), + [anon_sym_ATtry] = ACTIONS(2438), + [anon_sym___try] = ACTIONS(2436), + [anon_sym_ATthrow] = ACTIONS(2438), + [anon_sym_ATselector] = ACTIONS(2438), + [anon_sym_ATavailable] = ACTIONS(2438), + [anon_sym___builtin_available] = ACTIONS(2436), + [anon_sym_va_arg] = ACTIONS(2436), + [anon_sym_ATencode] = ACTIONS(2438), + [anon_sym_ATsynchronized] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [367] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_include_token1] = ACTIONS(2436), + [aux_sym_preproc_include_token2] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token2] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [aux_sym_preproc_else_token1] = ACTIONS(2436), + [aux_sym_preproc_elif_token1] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_ATautoreleasepool] = ACTIONS(2438), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_case] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_goto] = ACTIONS(2436), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_sizeof] = ACTIONS(2436), + [anon_sym___alignof__] = ACTIONS(2436), + [anon_sym___alignof] = ACTIONS(2436), + [anon_sym__alignof] = ACTIONS(2436), + [anon_sym_alignof] = ACTIONS(2436), + [anon_sym__Alignof] = ACTIONS(2436), + [anon_sym_offsetof] = ACTIONS(2436), + [anon_sym__Generic] = ACTIONS(2436), + [anon_sym_asm] = ACTIONS(2436), + [anon_sym___asm__] = ACTIONS(2436), + [anon_sym___asm] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_L_SQUOTE] = ACTIONS(2438), + [anon_sym_u_SQUOTE] = ACTIONS(2438), + [anon_sym_U_SQUOTE] = ACTIONS(2438), + [anon_sym_u8_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_L_DQUOTE] = ACTIONS(2438), + [anon_sym_u_DQUOTE] = ACTIONS(2438), + [anon_sym_U_DQUOTE] = ACTIONS(2438), + [anon_sym_u8_DQUOTE] = ACTIONS(2438), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_nullptr] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [anon_sym_ATimport] = ACTIONS(2438), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_POUND] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATprotocol] = ACTIONS(2438), + [anon_sym_ATinterface] = ACTIONS(2438), + [anon_sym_ATimplementation] = ACTIONS(2438), + [anon_sym_ATcompatibility_alias] = ACTIONS(2438), + [anon_sym_ATsynthesize] = ACTIONS(2438), + [anon_sym_ATdynamic] = ACTIONS(2438), + [anon_sym_ATtry] = ACTIONS(2438), + [anon_sym___try] = ACTIONS(2436), + [anon_sym_ATthrow] = ACTIONS(2438), + [anon_sym_ATselector] = ACTIONS(2438), + [anon_sym_ATavailable] = ACTIONS(2438), + [anon_sym___builtin_available] = ACTIONS(2436), + [anon_sym_va_arg] = ACTIONS(2436), + [anon_sym_ATencode] = ACTIONS(2438), + [anon_sym_ATsynchronized] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [368] = { + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_include_token1] = ACTIONS(2458), + [aux_sym_preproc_include_token2] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token2] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [aux_sym_preproc_else_token1] = ACTIONS(2458), + [aux_sym_preproc_elif_token1] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2460), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2460), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_ATautoreleasepool] = ACTIONS(2460), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_goto] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2460), + [anon_sym_sizeof] = ACTIONS(2458), + [anon_sym___alignof__] = ACTIONS(2458), + [anon_sym___alignof] = ACTIONS(2458), + [anon_sym__alignof] = ACTIONS(2458), + [anon_sym_alignof] = ACTIONS(2458), + [anon_sym__Alignof] = ACTIONS(2458), + [anon_sym_offsetof] = ACTIONS(2458), + [anon_sym__Generic] = ACTIONS(2458), + [anon_sym_asm] = ACTIONS(2458), + [anon_sym___asm__] = ACTIONS(2458), + [anon_sym___asm] = ACTIONS(2458), + [sym_number_literal] = ACTIONS(2460), + [anon_sym_L_SQUOTE] = ACTIONS(2460), + [anon_sym_u_SQUOTE] = ACTIONS(2460), + [anon_sym_U_SQUOTE] = ACTIONS(2460), + [anon_sym_u8_SQUOTE] = ACTIONS(2460), + [anon_sym_SQUOTE] = ACTIONS(2460), + [anon_sym_AT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_L_DQUOTE] = ACTIONS(2460), + [anon_sym_u_DQUOTE] = ACTIONS(2460), + [anon_sym_U_DQUOTE] = ACTIONS(2460), + [anon_sym_u8_DQUOTE] = ACTIONS(2460), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [anon_sym_NULL] = ACTIONS(2458), + [anon_sym_nullptr] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_ATimport] = ACTIONS(2460), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_POUND] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATprotocol] = ACTIONS(2460), + [anon_sym_ATinterface] = ACTIONS(2460), + [anon_sym_ATimplementation] = ACTIONS(2460), + [anon_sym_ATcompatibility_alias] = ACTIONS(2460), + [anon_sym_ATsynthesize] = ACTIONS(2460), + [anon_sym_ATdynamic] = ACTIONS(2460), + [anon_sym_ATtry] = ACTIONS(2460), + [anon_sym___try] = ACTIONS(2458), + [anon_sym_ATthrow] = ACTIONS(2460), + [anon_sym_ATselector] = ACTIONS(2460), + [anon_sym_ATavailable] = ACTIONS(2460), + [anon_sym___builtin_available] = ACTIONS(2458), + [anon_sym_va_arg] = ACTIONS(2458), + [anon_sym_ATencode] = ACTIONS(2460), + [anon_sym_ATsynchronized] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [369] = { + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_include_token1] = ACTIONS(2458), + [aux_sym_preproc_include_token2] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token2] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [aux_sym_preproc_else_token1] = ACTIONS(2458), + [aux_sym_preproc_elif_token1] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2460), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2460), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_ATautoreleasepool] = ACTIONS(2460), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_goto] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2460), + [anon_sym_sizeof] = ACTIONS(2458), + [anon_sym___alignof__] = ACTIONS(2458), + [anon_sym___alignof] = ACTIONS(2458), + [anon_sym__alignof] = ACTIONS(2458), + [anon_sym_alignof] = ACTIONS(2458), + [anon_sym__Alignof] = ACTIONS(2458), + [anon_sym_offsetof] = ACTIONS(2458), + [anon_sym__Generic] = ACTIONS(2458), + [anon_sym_asm] = ACTIONS(2458), + [anon_sym___asm__] = ACTIONS(2458), + [anon_sym___asm] = ACTIONS(2458), + [sym_number_literal] = ACTIONS(2460), + [anon_sym_L_SQUOTE] = ACTIONS(2460), + [anon_sym_u_SQUOTE] = ACTIONS(2460), + [anon_sym_U_SQUOTE] = ACTIONS(2460), + [anon_sym_u8_SQUOTE] = ACTIONS(2460), + [anon_sym_SQUOTE] = ACTIONS(2460), + [anon_sym_AT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_L_DQUOTE] = ACTIONS(2460), + [anon_sym_u_DQUOTE] = ACTIONS(2460), + [anon_sym_U_DQUOTE] = ACTIONS(2460), + [anon_sym_u8_DQUOTE] = ACTIONS(2460), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [anon_sym_NULL] = ACTIONS(2458), + [anon_sym_nullptr] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_ATimport] = ACTIONS(2460), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_POUND] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATprotocol] = ACTIONS(2460), + [anon_sym_ATinterface] = ACTIONS(2460), + [anon_sym_ATimplementation] = ACTIONS(2460), + [anon_sym_ATcompatibility_alias] = ACTIONS(2460), + [anon_sym_ATsynthesize] = ACTIONS(2460), + [anon_sym_ATdynamic] = ACTIONS(2460), + [anon_sym_ATtry] = ACTIONS(2460), + [anon_sym___try] = ACTIONS(2458), + [anon_sym_ATthrow] = ACTIONS(2460), + [anon_sym_ATselector] = ACTIONS(2460), + [anon_sym_ATavailable] = ACTIONS(2460), + [anon_sym___builtin_available] = ACTIONS(2458), + [anon_sym_va_arg] = ACTIONS(2458), + [anon_sym_ATencode] = ACTIONS(2460), + [anon_sym_ATsynchronized] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [370] = { + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_include_token1] = ACTIONS(2458), + [aux_sym_preproc_include_token2] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token2] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [aux_sym_preproc_else_token1] = ACTIONS(2458), + [aux_sym_preproc_elif_token1] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2460), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2460), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_ATautoreleasepool] = ACTIONS(2460), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_goto] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2460), + [anon_sym_sizeof] = ACTIONS(2458), + [anon_sym___alignof__] = ACTIONS(2458), + [anon_sym___alignof] = ACTIONS(2458), + [anon_sym__alignof] = ACTIONS(2458), + [anon_sym_alignof] = ACTIONS(2458), + [anon_sym__Alignof] = ACTIONS(2458), + [anon_sym_offsetof] = ACTIONS(2458), + [anon_sym__Generic] = ACTIONS(2458), + [anon_sym_asm] = ACTIONS(2458), + [anon_sym___asm__] = ACTIONS(2458), + [anon_sym___asm] = ACTIONS(2458), + [sym_number_literal] = ACTIONS(2460), + [anon_sym_L_SQUOTE] = ACTIONS(2460), + [anon_sym_u_SQUOTE] = ACTIONS(2460), + [anon_sym_U_SQUOTE] = ACTIONS(2460), + [anon_sym_u8_SQUOTE] = ACTIONS(2460), + [anon_sym_SQUOTE] = ACTIONS(2460), + [anon_sym_AT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_L_DQUOTE] = ACTIONS(2460), + [anon_sym_u_DQUOTE] = ACTIONS(2460), + [anon_sym_U_DQUOTE] = ACTIONS(2460), + [anon_sym_u8_DQUOTE] = ACTIONS(2460), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [anon_sym_NULL] = ACTIONS(2458), + [anon_sym_nullptr] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_ATimport] = ACTIONS(2460), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_POUND] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATprotocol] = ACTIONS(2460), + [anon_sym_ATinterface] = ACTIONS(2460), + [anon_sym_ATimplementation] = ACTIONS(2460), + [anon_sym_ATcompatibility_alias] = ACTIONS(2460), + [anon_sym_ATsynthesize] = ACTIONS(2460), + [anon_sym_ATdynamic] = ACTIONS(2460), + [anon_sym_ATtry] = ACTIONS(2460), + [anon_sym___try] = ACTIONS(2458), + [anon_sym_ATthrow] = ACTIONS(2460), + [anon_sym_ATselector] = ACTIONS(2460), + [anon_sym_ATavailable] = ACTIONS(2460), + [anon_sym___builtin_available] = ACTIONS(2458), + [anon_sym_va_arg] = ACTIONS(2458), + [anon_sym_ATencode] = ACTIONS(2460), + [anon_sym_ATsynchronized] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [371] = { + [sym_identifier] = ACTIONS(2466), + [aux_sym_preproc_include_token1] = ACTIONS(2466), + [aux_sym_preproc_include_token2] = ACTIONS(2466), + [aux_sym_preproc_def_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token2] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2466), + [aux_sym_preproc_else_token1] = ACTIONS(2466), + [aux_sym_preproc_elif_token1] = ACTIONS(2466), + [sym_preproc_directive] = ACTIONS(2466), + [anon_sym_LPAREN2] = ACTIONS(2468), + [anon_sym_BANG] = ACTIONS(2468), + [anon_sym_TILDE] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_PLUS] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2468), + [anon_sym_CARET] = ACTIONS(2468), + [anon_sym_AMP] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym___extension__] = ACTIONS(2466), + [anon_sym_typedef] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym___attribute__] = ACTIONS(2466), + [anon_sym___attribute] = ACTIONS(2466), + [anon_sym_noreturn] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2468), + [anon_sym___declspec] = ACTIONS(2466), + [anon_sym___cdecl] = ACTIONS(2466), + [anon_sym___clrcall] = ACTIONS(2466), + [anon_sym___stdcall] = ACTIONS(2466), + [anon_sym___fastcall] = ACTIONS(2466), + [anon_sym___thiscall] = ACTIONS(2466), + [anon_sym___vectorcall] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_signed] = ACTIONS(2466), + [anon_sym_unsigned] = ACTIONS(2466), + [anon_sym_long] = ACTIONS(2466), + [anon_sym_short] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_ATautoreleasepool] = ACTIONS(2468), + [anon_sym_auto] = ACTIONS(2466), + [anon_sym_register] = ACTIONS(2466), + [anon_sym_inline] = ACTIONS(2466), + [anon_sym___inline] = ACTIONS(2466), + [anon_sym___inline__] = ACTIONS(2466), + [anon_sym___forceinline] = ACTIONS(2466), + [anon_sym_thread_local] = ACTIONS(2466), + [anon_sym___thread] = ACTIONS(2466), + [anon_sym_CG_EXTERN] = ACTIONS(2466), + [anon_sym_CG_INLINE] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2466), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2466), + [anon_sym_IBOutlet] = ACTIONS(2466), + [anon_sym_IBInspectable] = ACTIONS(2466), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2466), + [anon_sym_NS_INLINE] = ACTIONS(2466), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2466), + [anon_sym_OBJC_EXPORT] = ACTIONS(2466), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_constexpr] = ACTIONS(2466), + [anon_sym_volatile] = ACTIONS(2466), + [anon_sym_restrict] = ACTIONS(2466), + [anon_sym___restrict__] = ACTIONS(2466), + [anon_sym__Atomic] = ACTIONS(2466), + [anon_sym__Noreturn] = ACTIONS(2466), + [anon_sym__Nonnull] = ACTIONS(2466), + [anon_sym_nullable] = ACTIONS(2466), + [anon_sym__Complex] = ACTIONS(2466), + [anon_sym__Nullable] = ACTIONS(2466), + [anon_sym__Nullable_result] = ACTIONS(2466), + [anon_sym__Null_unspecified] = ACTIONS(2466), + [anon_sym___autoreleasing] = ACTIONS(2466), + [anon_sym___block] = ACTIONS(2466), + [anon_sym___bridge] = ACTIONS(2466), + [anon_sym___bridge_retained] = ACTIONS(2466), + [anon_sym___bridge_transfer] = ACTIONS(2466), + [anon_sym___complex] = ACTIONS(2466), + [anon_sym___const] = ACTIONS(2466), + [anon_sym___imag] = ACTIONS(2466), + [anon_sym___kindof] = ACTIONS(2466), + [anon_sym___nonnull] = ACTIONS(2466), + [anon_sym___nullable] = ACTIONS(2466), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2466), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2466), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2466), + [anon_sym___real] = ACTIONS(2466), + [anon_sym___strong] = ACTIONS(2466), + [anon_sym___unsafe_unretained] = ACTIONS(2466), + [anon_sym___unused] = ACTIONS(2466), + [anon_sym___weak] = ACTIONS(2466), + [anon_sym_alignas] = ACTIONS(2466), + [anon_sym__Alignas] = ACTIONS(2466), + [sym_primitive_type] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), + [anon_sym_struct] = ACTIONS(2466), + [anon_sym_union] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_else] = ACTIONS(2466), + [anon_sym_switch] = ACTIONS(2466), + [anon_sym_case] = ACTIONS(2466), + [anon_sym_default] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_do] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_in] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_goto] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2468), + [anon_sym_PLUS_PLUS] = ACTIONS(2468), + [anon_sym_sizeof] = ACTIONS(2466), + [anon_sym___alignof__] = ACTIONS(2466), + [anon_sym___alignof] = ACTIONS(2466), + [anon_sym__alignof] = ACTIONS(2466), + [anon_sym_alignof] = ACTIONS(2466), + [anon_sym__Alignof] = ACTIONS(2466), + [anon_sym_offsetof] = ACTIONS(2466), + [anon_sym__Generic] = ACTIONS(2466), + [anon_sym_asm] = ACTIONS(2466), + [anon_sym___asm__] = ACTIONS(2466), + [anon_sym___asm] = ACTIONS(2466), + [sym_number_literal] = ACTIONS(2468), + [anon_sym_L_SQUOTE] = ACTIONS(2468), + [anon_sym_u_SQUOTE] = ACTIONS(2468), + [anon_sym_U_SQUOTE] = ACTIONS(2468), + [anon_sym_u8_SQUOTE] = ACTIONS(2468), + [anon_sym_SQUOTE] = ACTIONS(2468), + [anon_sym_AT] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2468), + [anon_sym_L_DQUOTE] = ACTIONS(2468), + [anon_sym_u_DQUOTE] = ACTIONS(2468), + [anon_sym_U_DQUOTE] = ACTIONS(2468), + [anon_sym_u8_DQUOTE] = ACTIONS(2468), + [sym_true] = ACTIONS(2466), + [sym_false] = ACTIONS(2466), + [anon_sym_NULL] = ACTIONS(2466), + [anon_sym_nullptr] = ACTIONS(2466), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2466), + [anon_sym___typeof] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2466), + [anon_sym_ATimport] = ACTIONS(2468), + [aux_sym_preproc_undef_token1] = ACTIONS(2466), + [anon_sym_POUND] = ACTIONS(2466), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2466), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2466), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2466), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2466), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE] = ACTIONS(2466), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_API_AVAILABLE] = ACTIONS(2466), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_API_DEPRECATED] = ACTIONS(2466), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2466), + [anon_sym___deprecated_msg] = ACTIONS(2466), + [anon_sym___deprecated_enum_msg] = ACTIONS(2466), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2466), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2466), + [anon_sym_ATprotocol] = ACTIONS(2468), + [anon_sym_ATinterface] = ACTIONS(2468), + [anon_sym_ATimplementation] = ACTIONS(2468), + [anon_sym_ATcompatibility_alias] = ACTIONS(2468), + [anon_sym_ATsynthesize] = ACTIONS(2468), + [anon_sym_ATdynamic] = ACTIONS(2468), + [anon_sym_ATtry] = ACTIONS(2468), + [anon_sym___try] = ACTIONS(2466), + [anon_sym_ATthrow] = ACTIONS(2468), + [anon_sym_ATselector] = ACTIONS(2468), + [anon_sym_ATavailable] = ACTIONS(2468), + [anon_sym___builtin_available] = ACTIONS(2466), + [anon_sym_va_arg] = ACTIONS(2466), + [anon_sym_ATencode] = ACTIONS(2468), + [anon_sym_ATsynchronized] = ACTIONS(2468), + [anon_sym_BOOL] = ACTIONS(2466), + [anon_sym_IMP] = ACTIONS(2466), + [anon_sym_SEL] = ACTIONS(2466), + [anon_sym_Class] = ACTIONS(2466), + [anon_sym_id] = ACTIONS(2466), + }, + [372] = { + [sym_identifier] = ACTIONS(2466), + [aux_sym_preproc_include_token1] = ACTIONS(2466), + [aux_sym_preproc_include_token2] = ACTIONS(2466), + [aux_sym_preproc_def_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token2] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2466), + [aux_sym_preproc_else_token1] = ACTIONS(2466), + [aux_sym_preproc_elif_token1] = ACTIONS(2466), + [sym_preproc_directive] = ACTIONS(2466), + [anon_sym_LPAREN2] = ACTIONS(2468), + [anon_sym_BANG] = ACTIONS(2468), + [anon_sym_TILDE] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_PLUS] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2468), + [anon_sym_CARET] = ACTIONS(2468), + [anon_sym_AMP] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym___extension__] = ACTIONS(2466), + [anon_sym_typedef] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym___attribute__] = ACTIONS(2466), + [anon_sym___attribute] = ACTIONS(2466), + [anon_sym_noreturn] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2468), + [anon_sym___declspec] = ACTIONS(2466), + [anon_sym___cdecl] = ACTIONS(2466), + [anon_sym___clrcall] = ACTIONS(2466), + [anon_sym___stdcall] = ACTIONS(2466), + [anon_sym___fastcall] = ACTIONS(2466), + [anon_sym___thiscall] = ACTIONS(2466), + [anon_sym___vectorcall] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_signed] = ACTIONS(2466), + [anon_sym_unsigned] = ACTIONS(2466), + [anon_sym_long] = ACTIONS(2466), + [anon_sym_short] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_ATautoreleasepool] = ACTIONS(2468), + [anon_sym_auto] = ACTIONS(2466), + [anon_sym_register] = ACTIONS(2466), + [anon_sym_inline] = ACTIONS(2466), + [anon_sym___inline] = ACTIONS(2466), + [anon_sym___inline__] = ACTIONS(2466), + [anon_sym___forceinline] = ACTIONS(2466), + [anon_sym_thread_local] = ACTIONS(2466), + [anon_sym___thread] = ACTIONS(2466), + [anon_sym_CG_EXTERN] = ACTIONS(2466), + [anon_sym_CG_INLINE] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2466), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2466), + [anon_sym_IBOutlet] = ACTIONS(2466), + [anon_sym_IBInspectable] = ACTIONS(2466), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2466), + [anon_sym_NS_INLINE] = ACTIONS(2466), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2466), + [anon_sym_OBJC_EXPORT] = ACTIONS(2466), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_constexpr] = ACTIONS(2466), + [anon_sym_volatile] = ACTIONS(2466), + [anon_sym_restrict] = ACTIONS(2466), + [anon_sym___restrict__] = ACTIONS(2466), + [anon_sym__Atomic] = ACTIONS(2466), + [anon_sym__Noreturn] = ACTIONS(2466), + [anon_sym__Nonnull] = ACTIONS(2466), + [anon_sym_nullable] = ACTIONS(2466), + [anon_sym__Complex] = ACTIONS(2466), + [anon_sym__Nullable] = ACTIONS(2466), + [anon_sym__Nullable_result] = ACTIONS(2466), + [anon_sym__Null_unspecified] = ACTIONS(2466), + [anon_sym___autoreleasing] = ACTIONS(2466), + [anon_sym___block] = ACTIONS(2466), + [anon_sym___bridge] = ACTIONS(2466), + [anon_sym___bridge_retained] = ACTIONS(2466), + [anon_sym___bridge_transfer] = ACTIONS(2466), + [anon_sym___complex] = ACTIONS(2466), + [anon_sym___const] = ACTIONS(2466), + [anon_sym___imag] = ACTIONS(2466), + [anon_sym___kindof] = ACTIONS(2466), + [anon_sym___nonnull] = ACTIONS(2466), + [anon_sym___nullable] = ACTIONS(2466), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2466), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2466), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2466), + [anon_sym___real] = ACTIONS(2466), + [anon_sym___strong] = ACTIONS(2466), + [anon_sym___unsafe_unretained] = ACTIONS(2466), + [anon_sym___unused] = ACTIONS(2466), + [anon_sym___weak] = ACTIONS(2466), + [anon_sym_alignas] = ACTIONS(2466), + [anon_sym__Alignas] = ACTIONS(2466), + [sym_primitive_type] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), + [anon_sym_struct] = ACTIONS(2466), + [anon_sym_union] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_else] = ACTIONS(2466), + [anon_sym_switch] = ACTIONS(2466), + [anon_sym_case] = ACTIONS(2466), + [anon_sym_default] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_do] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_in] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_goto] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2468), + [anon_sym_PLUS_PLUS] = ACTIONS(2468), + [anon_sym_sizeof] = ACTIONS(2466), + [anon_sym___alignof__] = ACTIONS(2466), + [anon_sym___alignof] = ACTIONS(2466), + [anon_sym__alignof] = ACTIONS(2466), + [anon_sym_alignof] = ACTIONS(2466), + [anon_sym__Alignof] = ACTIONS(2466), + [anon_sym_offsetof] = ACTIONS(2466), + [anon_sym__Generic] = ACTIONS(2466), + [anon_sym_asm] = ACTIONS(2466), + [anon_sym___asm__] = ACTIONS(2466), + [anon_sym___asm] = ACTIONS(2466), + [sym_number_literal] = ACTIONS(2468), + [anon_sym_L_SQUOTE] = ACTIONS(2468), + [anon_sym_u_SQUOTE] = ACTIONS(2468), + [anon_sym_U_SQUOTE] = ACTIONS(2468), + [anon_sym_u8_SQUOTE] = ACTIONS(2468), + [anon_sym_SQUOTE] = ACTIONS(2468), + [anon_sym_AT] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2468), + [anon_sym_L_DQUOTE] = ACTIONS(2468), + [anon_sym_u_DQUOTE] = ACTIONS(2468), + [anon_sym_U_DQUOTE] = ACTIONS(2468), + [anon_sym_u8_DQUOTE] = ACTIONS(2468), + [sym_true] = ACTIONS(2466), + [sym_false] = ACTIONS(2466), + [anon_sym_NULL] = ACTIONS(2466), + [anon_sym_nullptr] = ACTIONS(2466), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2466), + [anon_sym___typeof] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2466), + [anon_sym_ATimport] = ACTIONS(2468), + [aux_sym_preproc_undef_token1] = ACTIONS(2466), + [anon_sym_POUND] = ACTIONS(2466), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2466), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2466), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2466), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2466), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE] = ACTIONS(2466), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_API_AVAILABLE] = ACTIONS(2466), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_API_DEPRECATED] = ACTIONS(2466), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2466), + [anon_sym___deprecated_msg] = ACTIONS(2466), + [anon_sym___deprecated_enum_msg] = ACTIONS(2466), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2466), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2466), + [anon_sym_ATprotocol] = ACTIONS(2468), + [anon_sym_ATinterface] = ACTIONS(2468), + [anon_sym_ATimplementation] = ACTIONS(2468), + [anon_sym_ATcompatibility_alias] = ACTIONS(2468), + [anon_sym_ATsynthesize] = ACTIONS(2468), + [anon_sym_ATdynamic] = ACTIONS(2468), + [anon_sym_ATtry] = ACTIONS(2468), + [anon_sym___try] = ACTIONS(2466), + [anon_sym_ATthrow] = ACTIONS(2468), + [anon_sym_ATselector] = ACTIONS(2468), + [anon_sym_ATavailable] = ACTIONS(2468), + [anon_sym___builtin_available] = ACTIONS(2466), + [anon_sym_va_arg] = ACTIONS(2466), + [anon_sym_ATencode] = ACTIONS(2468), + [anon_sym_ATsynchronized] = ACTIONS(2468), + [anon_sym_BOOL] = ACTIONS(2466), + [anon_sym_IMP] = ACTIONS(2466), + [anon_sym_SEL] = ACTIONS(2466), + [anon_sym_Class] = ACTIONS(2466), + [anon_sym_id] = ACTIONS(2466), + }, + [373] = { + [sym_identifier] = ACTIONS(2470), + [aux_sym_preproc_include_token1] = ACTIONS(2470), + [aux_sym_preproc_include_token2] = ACTIONS(2470), + [aux_sym_preproc_def_token1] = ACTIONS(2470), + [aux_sym_preproc_if_token1] = ACTIONS(2470), + [aux_sym_preproc_if_token2] = ACTIONS(2470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2470), + [aux_sym_preproc_else_token1] = ACTIONS(2470), + [aux_sym_preproc_elif_token1] = ACTIONS(2470), + [sym_preproc_directive] = ACTIONS(2470), + [anon_sym_LPAREN2] = ACTIONS(2472), + [anon_sym_BANG] = ACTIONS(2472), + [anon_sym_TILDE] = ACTIONS(2472), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_CARET] = ACTIONS(2472), + [anon_sym_AMP] = ACTIONS(2472), + [anon_sym_SEMI] = ACTIONS(2472), + [anon_sym___extension__] = ACTIONS(2470), + [anon_sym_typedef] = ACTIONS(2470), + [anon_sym_extern] = ACTIONS(2470), + [anon_sym___attribute__] = ACTIONS(2470), + [anon_sym___attribute] = ACTIONS(2470), + [anon_sym_noreturn] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2472), + [anon_sym___declspec] = ACTIONS(2470), + [anon_sym___cdecl] = ACTIONS(2470), + [anon_sym___clrcall] = ACTIONS(2470), + [anon_sym___stdcall] = ACTIONS(2470), + [anon_sym___fastcall] = ACTIONS(2470), + [anon_sym___thiscall] = ACTIONS(2470), + [anon_sym___vectorcall] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2472), + [anon_sym_signed] = ACTIONS(2470), + [anon_sym_unsigned] = ACTIONS(2470), + [anon_sym_long] = ACTIONS(2470), + [anon_sym_short] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_ATautoreleasepool] = ACTIONS(2472), + [anon_sym_auto] = ACTIONS(2470), + [anon_sym_register] = ACTIONS(2470), + [anon_sym_inline] = ACTIONS(2470), + [anon_sym___inline] = ACTIONS(2470), + [anon_sym___inline__] = ACTIONS(2470), + [anon_sym___forceinline] = ACTIONS(2470), + [anon_sym_thread_local] = ACTIONS(2470), + [anon_sym___thread] = ACTIONS(2470), + [anon_sym_CG_EXTERN] = ACTIONS(2470), + [anon_sym_CG_INLINE] = ACTIONS(2470), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2470), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2470), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2470), + [anon_sym_IBOutlet] = ACTIONS(2470), + [anon_sym_IBInspectable] = ACTIONS(2470), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2470), + [anon_sym_NS_INLINE] = ACTIONS(2470), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2470), + [anon_sym_OBJC_EXPORT] = ACTIONS(2470), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2470), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_constexpr] = ACTIONS(2470), + [anon_sym_volatile] = ACTIONS(2470), + [anon_sym_restrict] = ACTIONS(2470), + [anon_sym___restrict__] = ACTIONS(2470), + [anon_sym__Atomic] = ACTIONS(2470), + [anon_sym__Noreturn] = ACTIONS(2470), + [anon_sym__Nonnull] = ACTIONS(2470), + [anon_sym_nullable] = ACTIONS(2470), + [anon_sym__Complex] = ACTIONS(2470), + [anon_sym__Nullable] = ACTIONS(2470), + [anon_sym__Nullable_result] = ACTIONS(2470), + [anon_sym__Null_unspecified] = ACTIONS(2470), + [anon_sym___autoreleasing] = ACTIONS(2470), + [anon_sym___block] = ACTIONS(2470), + [anon_sym___bridge] = ACTIONS(2470), + [anon_sym___bridge_retained] = ACTIONS(2470), + [anon_sym___bridge_transfer] = ACTIONS(2470), + [anon_sym___complex] = ACTIONS(2470), + [anon_sym___const] = ACTIONS(2470), + [anon_sym___imag] = ACTIONS(2470), + [anon_sym___kindof] = ACTIONS(2470), + [anon_sym___nonnull] = ACTIONS(2470), + [anon_sym___nullable] = ACTIONS(2470), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2470), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2470), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2470), + [anon_sym___real] = ACTIONS(2470), + [anon_sym___strong] = ACTIONS(2470), + [anon_sym___unsafe_unretained] = ACTIONS(2470), + [anon_sym___unused] = ACTIONS(2470), + [anon_sym___weak] = ACTIONS(2470), + [anon_sym_alignas] = ACTIONS(2470), + [anon_sym__Alignas] = ACTIONS(2470), + [sym_primitive_type] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [anon_sym_struct] = ACTIONS(2470), + [anon_sym_union] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_else] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_case] = ACTIONS(2470), + [anon_sym_default] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_in] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_goto] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2472), + [anon_sym_PLUS_PLUS] = ACTIONS(2472), + [anon_sym_sizeof] = ACTIONS(2470), + [anon_sym___alignof__] = ACTIONS(2470), + [anon_sym___alignof] = ACTIONS(2470), + [anon_sym__alignof] = ACTIONS(2470), + [anon_sym_alignof] = ACTIONS(2470), + [anon_sym__Alignof] = ACTIONS(2470), + [anon_sym_offsetof] = ACTIONS(2470), + [anon_sym__Generic] = ACTIONS(2470), + [anon_sym_asm] = ACTIONS(2470), + [anon_sym___asm__] = ACTIONS(2470), + [anon_sym___asm] = ACTIONS(2470), + [sym_number_literal] = ACTIONS(2472), + [anon_sym_L_SQUOTE] = ACTIONS(2472), + [anon_sym_u_SQUOTE] = ACTIONS(2472), + [anon_sym_U_SQUOTE] = ACTIONS(2472), + [anon_sym_u8_SQUOTE] = ACTIONS(2472), + [anon_sym_SQUOTE] = ACTIONS(2472), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2472), + [anon_sym_L_DQUOTE] = ACTIONS(2472), + [anon_sym_u_DQUOTE] = ACTIONS(2472), + [anon_sym_U_DQUOTE] = ACTIONS(2472), + [anon_sym_u8_DQUOTE] = ACTIONS(2472), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [anon_sym_NULL] = ACTIONS(2470), + [anon_sym_nullptr] = ACTIONS(2470), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2470), + [anon_sym___typeof] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_ATimport] = ACTIONS(2472), + [aux_sym_preproc_undef_token1] = ACTIONS(2470), + [anon_sym_POUND] = ACTIONS(2470), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2470), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2470), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2470), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2470), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2470), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2470), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2470), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2470), + [anon_sym_NS_AVAILABLE] = ACTIONS(2470), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2470), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_API_AVAILABLE] = ACTIONS(2470), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_API_DEPRECATED] = ACTIONS(2470), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2470), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2470), + [anon_sym___deprecated_msg] = ACTIONS(2470), + [anon_sym___deprecated_enum_msg] = ACTIONS(2470), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2470), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2470), + [anon_sym_ATprotocol] = ACTIONS(2472), + [anon_sym_ATinterface] = ACTIONS(2472), + [anon_sym_ATimplementation] = ACTIONS(2472), + [anon_sym_ATcompatibility_alias] = ACTIONS(2472), + [anon_sym_ATsynthesize] = ACTIONS(2472), + [anon_sym_ATdynamic] = ACTIONS(2472), + [anon_sym_ATtry] = ACTIONS(2472), + [anon_sym___try] = ACTIONS(2470), + [anon_sym_ATthrow] = ACTIONS(2472), + [anon_sym_ATselector] = ACTIONS(2472), + [anon_sym_ATavailable] = ACTIONS(2472), + [anon_sym___builtin_available] = ACTIONS(2470), + [anon_sym_va_arg] = ACTIONS(2470), + [anon_sym_ATencode] = ACTIONS(2472), + [anon_sym_ATsynchronized] = ACTIONS(2472), + [anon_sym_BOOL] = ACTIONS(2470), + [anon_sym_IMP] = ACTIONS(2470), + [anon_sym_SEL] = ACTIONS(2470), + [anon_sym_Class] = ACTIONS(2470), + [anon_sym_id] = ACTIONS(2470), + }, + [374] = { + [sym_identifier] = ACTIONS(2346), + [aux_sym_preproc_include_token1] = ACTIONS(2346), + [aux_sym_preproc_include_token2] = ACTIONS(2346), + [aux_sym_preproc_def_token1] = ACTIONS(2346), + [aux_sym_preproc_if_token1] = ACTIONS(2346), + [aux_sym_preproc_if_token2] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2346), + [aux_sym_preproc_else_token1] = ACTIONS(2346), + [aux_sym_preproc_elif_token1] = ACTIONS(2346), + [sym_preproc_directive] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2346), + [anon_sym_PLUS] = ACTIONS(2346), + [anon_sym_STAR] = ACTIONS(2348), + [anon_sym_CARET] = ACTIONS(2348), + [anon_sym_AMP] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym___extension__] = ACTIONS(2346), + [anon_sym_typedef] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym___attribute__] = ACTIONS(2346), + [anon_sym___attribute] = ACTIONS(2346), + [anon_sym_noreturn] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym___declspec] = ACTIONS(2346), + [anon_sym___cdecl] = ACTIONS(2346), + [anon_sym___clrcall] = ACTIONS(2346), + [anon_sym___stdcall] = ACTIONS(2346), + [anon_sym___fastcall] = ACTIONS(2346), + [anon_sym___thiscall] = ACTIONS(2346), + [anon_sym___vectorcall] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_signed] = ACTIONS(2346), + [anon_sym_unsigned] = ACTIONS(2346), + [anon_sym_long] = ACTIONS(2346), + [anon_sym_short] = ACTIONS(2346), + [anon_sym_static] = ACTIONS(2346), + [anon_sym_ATautoreleasepool] = ACTIONS(2348), + [anon_sym_auto] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2346), + [anon_sym_inline] = ACTIONS(2346), + [anon_sym___inline] = ACTIONS(2346), + [anon_sym___inline__] = ACTIONS(2346), + [anon_sym___forceinline] = ACTIONS(2346), + [anon_sym_thread_local] = ACTIONS(2346), + [anon_sym___thread] = ACTIONS(2346), + [anon_sym_CG_EXTERN] = ACTIONS(2346), + [anon_sym_CG_INLINE] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2346), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2346), + [anon_sym_IBOutlet] = ACTIONS(2346), + [anon_sym_IBInspectable] = ACTIONS(2346), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2346), + [anon_sym_NS_INLINE] = ACTIONS(2346), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2346), + [anon_sym_OBJC_EXPORT] = ACTIONS(2346), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_constexpr] = ACTIONS(2346), + [anon_sym_volatile] = ACTIONS(2346), + [anon_sym_restrict] = ACTIONS(2346), + [anon_sym___restrict__] = ACTIONS(2346), + [anon_sym__Atomic] = ACTIONS(2346), + [anon_sym__Noreturn] = ACTIONS(2346), + [anon_sym__Nonnull] = ACTIONS(2346), + [anon_sym_nullable] = ACTIONS(2346), + [anon_sym__Complex] = ACTIONS(2346), + [anon_sym__Nullable] = ACTIONS(2346), + [anon_sym__Nullable_result] = ACTIONS(2346), + [anon_sym__Null_unspecified] = ACTIONS(2346), + [anon_sym___autoreleasing] = ACTIONS(2346), + [anon_sym___block] = ACTIONS(2346), + [anon_sym___bridge] = ACTIONS(2346), + [anon_sym___bridge_retained] = ACTIONS(2346), + [anon_sym___bridge_transfer] = ACTIONS(2346), + [anon_sym___complex] = ACTIONS(2346), + [anon_sym___const] = ACTIONS(2346), + [anon_sym___imag] = ACTIONS(2346), + [anon_sym___kindof] = ACTIONS(2346), + [anon_sym___nonnull] = ACTIONS(2346), + [anon_sym___nullable] = ACTIONS(2346), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2346), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2346), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2346), + [anon_sym___real] = ACTIONS(2346), + [anon_sym___strong] = ACTIONS(2346), + [anon_sym___unsafe_unretained] = ACTIONS(2346), + [anon_sym___unused] = ACTIONS(2346), + [anon_sym___weak] = ACTIONS(2346), + [anon_sym_alignas] = ACTIONS(2346), + [anon_sym__Alignas] = ACTIONS(2346), + [sym_primitive_type] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_switch] = ACTIONS(2346), + [anon_sym_case] = ACTIONS(2346), + [anon_sym_default] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_do] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_goto] = ACTIONS(2346), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2346), + [anon_sym__Generic] = ACTIONS(2346), + [anon_sym_asm] = ACTIONS(2346), + [anon_sym___asm__] = ACTIONS(2346), + [anon_sym___asm] = ACTIONS(2346), + [sym_number_literal] = ACTIONS(2348), + [anon_sym_L_SQUOTE] = ACTIONS(2348), + [anon_sym_u_SQUOTE] = ACTIONS(2348), + [anon_sym_U_SQUOTE] = ACTIONS(2348), + [anon_sym_u8_SQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_L_DQUOTE] = ACTIONS(2348), + [anon_sym_u_DQUOTE] = ACTIONS(2348), + [anon_sym_U_DQUOTE] = ACTIONS(2348), + [anon_sym_u8_DQUOTE] = ACTIONS(2348), + [sym_true] = ACTIONS(2346), + [sym_false] = ACTIONS(2346), + [anon_sym_NULL] = ACTIONS(2346), + [anon_sym_nullptr] = ACTIONS(2346), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2346), + [anon_sym___typeof] = ACTIONS(2346), + [anon_sym_typeof] = ACTIONS(2346), + [anon_sym_ATimport] = ACTIONS(2348), + [aux_sym_preproc_undef_token1] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(2346), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2346), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2346), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2346), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2346), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE] = ACTIONS(2346), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_API_AVAILABLE] = ACTIONS(2346), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_API_DEPRECATED] = ACTIONS(2346), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2346), + [anon_sym___deprecated_msg] = ACTIONS(2346), + [anon_sym___deprecated_enum_msg] = ACTIONS(2346), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2346), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2346), + [anon_sym_ATprotocol] = ACTIONS(2348), + [anon_sym_ATinterface] = ACTIONS(2348), + [anon_sym_ATimplementation] = ACTIONS(2348), + [anon_sym_ATcompatibility_alias] = ACTIONS(2348), + [anon_sym_ATsynthesize] = ACTIONS(2348), + [anon_sym_ATdynamic] = ACTIONS(2348), + [anon_sym_ATtry] = ACTIONS(2348), + [anon_sym___try] = ACTIONS(2346), + [anon_sym_ATthrow] = ACTIONS(2348), + [anon_sym_ATselector] = ACTIONS(2348), + [anon_sym_ATavailable] = ACTIONS(2348), + [anon_sym___builtin_available] = ACTIONS(2346), + [anon_sym_va_arg] = ACTIONS(2346), + [anon_sym_ATencode] = ACTIONS(2348), + [anon_sym_ATsynchronized] = ACTIONS(2348), + [anon_sym_BOOL] = ACTIONS(2346), + [anon_sym_IMP] = ACTIONS(2346), + [anon_sym_SEL] = ACTIONS(2346), + [anon_sym_Class] = ACTIONS(2346), + [anon_sym_id] = ACTIONS(2346), + }, + [375] = { + [sym_identifier] = ACTIONS(2364), + [aux_sym_preproc_include_token1] = ACTIONS(2364), + [aux_sym_preproc_include_token2] = ACTIONS(2364), + [aux_sym_preproc_def_token1] = ACTIONS(2364), + [aux_sym_preproc_if_token1] = ACTIONS(2364), + [aux_sym_preproc_if_token2] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2364), + [aux_sym_preproc_else_token1] = ACTIONS(2364), + [aux_sym_preproc_elif_token1] = ACTIONS(2364), + [sym_preproc_directive] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_PLUS] = ACTIONS(2364), + [anon_sym_STAR] = ACTIONS(2366), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_AMP] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_typedef] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym___attribute__] = ACTIONS(2364), + [anon_sym___attribute] = ACTIONS(2364), + [anon_sym_noreturn] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym___declspec] = ACTIONS(2364), + [anon_sym___cdecl] = ACTIONS(2364), + [anon_sym___clrcall] = ACTIONS(2364), + [anon_sym___stdcall] = ACTIONS(2364), + [anon_sym___fastcall] = ACTIONS(2364), + [anon_sym___thiscall] = ACTIONS(2364), + [anon_sym___vectorcall] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_signed] = ACTIONS(2364), + [anon_sym_unsigned] = ACTIONS(2364), + [anon_sym_long] = ACTIONS(2364), + [anon_sym_short] = ACTIONS(2364), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_ATautoreleasepool] = ACTIONS(2366), + [anon_sym_auto] = ACTIONS(2364), + [anon_sym_register] = ACTIONS(2364), + [anon_sym_inline] = ACTIONS(2364), + [anon_sym___inline] = ACTIONS(2364), + [anon_sym___inline__] = ACTIONS(2364), + [anon_sym___forceinline] = ACTIONS(2364), + [anon_sym_thread_local] = ACTIONS(2364), + [anon_sym___thread] = ACTIONS(2364), + [anon_sym_CG_EXTERN] = ACTIONS(2364), + [anon_sym_CG_INLINE] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2364), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2364), + [anon_sym_IBOutlet] = ACTIONS(2364), + [anon_sym_IBInspectable] = ACTIONS(2364), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2364), + [anon_sym_NS_INLINE] = ACTIONS(2364), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2364), + [anon_sym_OBJC_EXPORT] = ACTIONS(2364), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [anon_sym_constexpr] = ACTIONS(2364), + [anon_sym_volatile] = ACTIONS(2364), + [anon_sym_restrict] = ACTIONS(2364), + [anon_sym___restrict__] = ACTIONS(2364), + [anon_sym__Atomic] = ACTIONS(2364), + [anon_sym__Noreturn] = ACTIONS(2364), + [anon_sym__Nonnull] = ACTIONS(2364), + [anon_sym_nullable] = ACTIONS(2364), + [anon_sym__Complex] = ACTIONS(2364), + [anon_sym__Nullable] = ACTIONS(2364), + [anon_sym__Nullable_result] = ACTIONS(2364), + [anon_sym__Null_unspecified] = ACTIONS(2364), + [anon_sym___autoreleasing] = ACTIONS(2364), + [anon_sym___block] = ACTIONS(2364), + [anon_sym___bridge] = ACTIONS(2364), + [anon_sym___bridge_retained] = ACTIONS(2364), + [anon_sym___bridge_transfer] = ACTIONS(2364), + [anon_sym___complex] = ACTIONS(2364), + [anon_sym___const] = ACTIONS(2364), + [anon_sym___imag] = ACTIONS(2364), + [anon_sym___kindof] = ACTIONS(2364), + [anon_sym___nonnull] = ACTIONS(2364), + [anon_sym___nullable] = ACTIONS(2364), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2364), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2364), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2364), + [anon_sym___real] = ACTIONS(2364), + [anon_sym___strong] = ACTIONS(2364), + [anon_sym___unsafe_unretained] = ACTIONS(2364), + [anon_sym___unused] = ACTIONS(2364), + [anon_sym___weak] = ACTIONS(2364), + [anon_sym_alignas] = ACTIONS(2364), + [anon_sym__Alignas] = ACTIONS(2364), + [sym_primitive_type] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(2364), + [anon_sym_union] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_switch] = ACTIONS(2364), + [anon_sym_case] = ACTIONS(2364), + [anon_sym_default] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_do] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_in] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_goto] = ACTIONS(2364), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_sizeof] = ACTIONS(2364), + [anon_sym___alignof__] = ACTIONS(2364), + [anon_sym___alignof] = ACTIONS(2364), + [anon_sym__alignof] = ACTIONS(2364), + [anon_sym_alignof] = ACTIONS(2364), + [anon_sym__Alignof] = ACTIONS(2364), + [anon_sym_offsetof] = ACTIONS(2364), + [anon_sym__Generic] = ACTIONS(2364), + [anon_sym_asm] = ACTIONS(2364), + [anon_sym___asm__] = ACTIONS(2364), + [anon_sym___asm] = ACTIONS(2364), + [sym_number_literal] = ACTIONS(2366), + [anon_sym_L_SQUOTE] = ACTIONS(2366), + [anon_sym_u_SQUOTE] = ACTIONS(2366), + [anon_sym_U_SQUOTE] = ACTIONS(2366), + [anon_sym_u8_SQUOTE] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2366), + [anon_sym_AT] = ACTIONS(2364), + [anon_sym_DQUOTE] = ACTIONS(2366), + [anon_sym_L_DQUOTE] = ACTIONS(2366), + [anon_sym_u_DQUOTE] = ACTIONS(2366), + [anon_sym_U_DQUOTE] = ACTIONS(2366), + [anon_sym_u8_DQUOTE] = ACTIONS(2366), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2364), + [anon_sym___typeof] = ACTIONS(2364), + [anon_sym_typeof] = ACTIONS(2364), + [anon_sym_ATimport] = ACTIONS(2366), + [aux_sym_preproc_undef_token1] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(2364), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2364), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2364), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2364), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2364), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE] = ACTIONS(2364), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_API_AVAILABLE] = ACTIONS(2364), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_API_DEPRECATED] = ACTIONS(2364), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2364), + [anon_sym___deprecated_msg] = ACTIONS(2364), + [anon_sym___deprecated_enum_msg] = ACTIONS(2364), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2364), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2364), + [anon_sym_ATprotocol] = ACTIONS(2366), + [anon_sym_ATinterface] = ACTIONS(2366), + [anon_sym_ATimplementation] = ACTIONS(2366), + [anon_sym_ATcompatibility_alias] = ACTIONS(2366), + [anon_sym_ATsynthesize] = ACTIONS(2366), + [anon_sym_ATdynamic] = ACTIONS(2366), + [anon_sym_ATtry] = ACTIONS(2366), + [anon_sym___try] = ACTIONS(2364), + [anon_sym_ATthrow] = ACTIONS(2366), + [anon_sym_ATselector] = ACTIONS(2366), + [anon_sym_ATavailable] = ACTIONS(2366), + [anon_sym___builtin_available] = ACTIONS(2364), + [anon_sym_va_arg] = ACTIONS(2364), + [anon_sym_ATencode] = ACTIONS(2366), + [anon_sym_ATsynchronized] = ACTIONS(2366), + [anon_sym_BOOL] = ACTIONS(2364), + [anon_sym_IMP] = ACTIONS(2364), + [anon_sym_SEL] = ACTIONS(2364), + [anon_sym_Class] = ACTIONS(2364), + [anon_sym_id] = ACTIONS(2364), + }, + [376] = { + [sym_identifier] = ACTIONS(2512), + [aux_sym_preproc_include_token1] = ACTIONS(2512), + [aux_sym_preproc_include_token2] = ACTIONS(2512), + [aux_sym_preproc_def_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token2] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2512), + [aux_sym_preproc_else_token1] = ACTIONS(2512), + [aux_sym_preproc_elif_token1] = ACTIONS(2512), + [sym_preproc_directive] = ACTIONS(2512), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_TILDE] = ACTIONS(2514), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_STAR] = ACTIONS(2514), + [anon_sym_CARET] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym___extension__] = ACTIONS(2512), + [anon_sym_typedef] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym___attribute__] = ACTIONS(2512), + [anon_sym___attribute] = ACTIONS(2512), + [anon_sym_noreturn] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym___declspec] = ACTIONS(2512), + [anon_sym___cdecl] = ACTIONS(2512), + [anon_sym___clrcall] = ACTIONS(2512), + [anon_sym___stdcall] = ACTIONS(2512), + [anon_sym___fastcall] = ACTIONS(2512), + [anon_sym___thiscall] = ACTIONS(2512), + [anon_sym___vectorcall] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_signed] = ACTIONS(2512), + [anon_sym_unsigned] = ACTIONS(2512), + [anon_sym_long] = ACTIONS(2512), + [anon_sym_short] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_ATautoreleasepool] = ACTIONS(2514), + [anon_sym_auto] = ACTIONS(2512), + [anon_sym_register] = ACTIONS(2512), + [anon_sym_inline] = ACTIONS(2512), + [anon_sym___inline] = ACTIONS(2512), + [anon_sym___inline__] = ACTIONS(2512), + [anon_sym___forceinline] = ACTIONS(2512), + [anon_sym_thread_local] = ACTIONS(2512), + [anon_sym___thread] = ACTIONS(2512), + [anon_sym_CG_EXTERN] = ACTIONS(2512), + [anon_sym_CG_INLINE] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2512), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2512), + [anon_sym_IBOutlet] = ACTIONS(2512), + [anon_sym_IBInspectable] = ACTIONS(2512), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2512), + [anon_sym_NS_INLINE] = ACTIONS(2512), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2512), + [anon_sym_OBJC_EXPORT] = ACTIONS(2512), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_constexpr] = ACTIONS(2512), + [anon_sym_volatile] = ACTIONS(2512), + [anon_sym_restrict] = ACTIONS(2512), + [anon_sym___restrict__] = ACTIONS(2512), + [anon_sym__Atomic] = ACTIONS(2512), + [anon_sym__Noreturn] = ACTIONS(2512), + [anon_sym__Nonnull] = ACTIONS(2512), + [anon_sym_nullable] = ACTIONS(2512), + [anon_sym__Complex] = ACTIONS(2512), + [anon_sym__Nullable] = ACTIONS(2512), + [anon_sym__Nullable_result] = ACTIONS(2512), + [anon_sym__Null_unspecified] = ACTIONS(2512), + [anon_sym___autoreleasing] = ACTIONS(2512), + [anon_sym___block] = ACTIONS(2512), + [anon_sym___bridge] = ACTIONS(2512), + [anon_sym___bridge_retained] = ACTIONS(2512), + [anon_sym___bridge_transfer] = ACTIONS(2512), + [anon_sym___complex] = ACTIONS(2512), + [anon_sym___const] = ACTIONS(2512), + [anon_sym___imag] = ACTIONS(2512), + [anon_sym___kindof] = ACTIONS(2512), + [anon_sym___nonnull] = ACTIONS(2512), + [anon_sym___nullable] = ACTIONS(2512), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2512), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2512), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2512), + [anon_sym___real] = ACTIONS(2512), + [anon_sym___strong] = ACTIONS(2512), + [anon_sym___unsafe_unretained] = ACTIONS(2512), + [anon_sym___unused] = ACTIONS(2512), + [anon_sym___weak] = ACTIONS(2512), + [anon_sym_alignas] = ACTIONS(2512), + [anon_sym__Alignas] = ACTIONS(2512), + [sym_primitive_type] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [anon_sym_struct] = ACTIONS(2512), + [anon_sym_union] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_else] = ACTIONS(2512), + [anon_sym_switch] = ACTIONS(2512), + [anon_sym_case] = ACTIONS(2512), + [anon_sym_default] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_do] = ACTIONS(2512), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_in] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_goto] = ACTIONS(2512), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_sizeof] = ACTIONS(2512), + [anon_sym___alignof__] = ACTIONS(2512), + [anon_sym___alignof] = ACTIONS(2512), + [anon_sym__alignof] = ACTIONS(2512), + [anon_sym_alignof] = ACTIONS(2512), + [anon_sym__Alignof] = ACTIONS(2512), + [anon_sym_offsetof] = ACTIONS(2512), + [anon_sym__Generic] = ACTIONS(2512), + [anon_sym_asm] = ACTIONS(2512), + [anon_sym___asm__] = ACTIONS(2512), + [anon_sym___asm] = ACTIONS(2512), + [sym_number_literal] = ACTIONS(2514), + [anon_sym_L_SQUOTE] = ACTIONS(2514), + [anon_sym_u_SQUOTE] = ACTIONS(2514), + [anon_sym_U_SQUOTE] = ACTIONS(2514), + [anon_sym_u8_SQUOTE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_AT] = ACTIONS(2512), + [anon_sym_DQUOTE] = ACTIONS(2514), + [anon_sym_L_DQUOTE] = ACTIONS(2514), + [anon_sym_u_DQUOTE] = ACTIONS(2514), + [anon_sym_U_DQUOTE] = ACTIONS(2514), + [anon_sym_u8_DQUOTE] = ACTIONS(2514), + [sym_true] = ACTIONS(2512), + [sym_false] = ACTIONS(2512), + [anon_sym_NULL] = ACTIONS(2512), + [anon_sym_nullptr] = ACTIONS(2512), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2512), + [anon_sym___typeof] = ACTIONS(2512), + [anon_sym_typeof] = ACTIONS(2512), + [anon_sym_ATimport] = ACTIONS(2514), + [aux_sym_preproc_undef_token1] = ACTIONS(2512), + [anon_sym_POUND] = ACTIONS(2512), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2512), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2512), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2512), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2512), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE] = ACTIONS(2512), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_API_AVAILABLE] = ACTIONS(2512), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_API_DEPRECATED] = ACTIONS(2512), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2512), + [anon_sym___deprecated_msg] = ACTIONS(2512), + [anon_sym___deprecated_enum_msg] = ACTIONS(2512), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2512), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2512), + [anon_sym_ATprotocol] = ACTIONS(2514), + [anon_sym_ATinterface] = ACTIONS(2514), + [anon_sym_ATimplementation] = ACTIONS(2514), + [anon_sym_ATcompatibility_alias] = ACTIONS(2514), + [anon_sym_ATsynthesize] = ACTIONS(2514), + [anon_sym_ATdynamic] = ACTIONS(2514), + [anon_sym_ATtry] = ACTIONS(2514), + [anon_sym___try] = ACTIONS(2512), + [anon_sym_ATthrow] = ACTIONS(2514), + [anon_sym_ATselector] = ACTIONS(2514), + [anon_sym_ATavailable] = ACTIONS(2514), + [anon_sym___builtin_available] = ACTIONS(2512), + [anon_sym_va_arg] = ACTIONS(2512), + [anon_sym_ATencode] = ACTIONS(2514), + [anon_sym_ATsynchronized] = ACTIONS(2514), + [anon_sym_BOOL] = ACTIONS(2512), + [anon_sym_IMP] = ACTIONS(2512), + [anon_sym_SEL] = ACTIONS(2512), + [anon_sym_Class] = ACTIONS(2512), + [anon_sym_id] = ACTIONS(2512), + }, + [377] = { + [sym_identifier] = ACTIONS(2512), + [aux_sym_preproc_include_token1] = ACTIONS(2512), + [aux_sym_preproc_include_token2] = ACTIONS(2512), + [aux_sym_preproc_def_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token2] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2512), + [aux_sym_preproc_else_token1] = ACTIONS(2512), + [aux_sym_preproc_elif_token1] = ACTIONS(2512), + [sym_preproc_directive] = ACTIONS(2512), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_TILDE] = ACTIONS(2514), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_STAR] = ACTIONS(2514), + [anon_sym_CARET] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym___extension__] = ACTIONS(2512), + [anon_sym_typedef] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym___attribute__] = ACTIONS(2512), + [anon_sym___attribute] = ACTIONS(2512), + [anon_sym_noreturn] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym___declspec] = ACTIONS(2512), + [anon_sym___cdecl] = ACTIONS(2512), + [anon_sym___clrcall] = ACTIONS(2512), + [anon_sym___stdcall] = ACTIONS(2512), + [anon_sym___fastcall] = ACTIONS(2512), + [anon_sym___thiscall] = ACTIONS(2512), + [anon_sym___vectorcall] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_signed] = ACTIONS(2512), + [anon_sym_unsigned] = ACTIONS(2512), + [anon_sym_long] = ACTIONS(2512), + [anon_sym_short] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_ATautoreleasepool] = ACTIONS(2514), + [anon_sym_auto] = ACTIONS(2512), + [anon_sym_register] = ACTIONS(2512), + [anon_sym_inline] = ACTIONS(2512), + [anon_sym___inline] = ACTIONS(2512), + [anon_sym___inline__] = ACTIONS(2512), + [anon_sym___forceinline] = ACTIONS(2512), + [anon_sym_thread_local] = ACTIONS(2512), + [anon_sym___thread] = ACTIONS(2512), + [anon_sym_CG_EXTERN] = ACTIONS(2512), + [anon_sym_CG_INLINE] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2512), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2512), + [anon_sym_IBOutlet] = ACTIONS(2512), + [anon_sym_IBInspectable] = ACTIONS(2512), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2512), + [anon_sym_NS_INLINE] = ACTIONS(2512), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2512), + [anon_sym_OBJC_EXPORT] = ACTIONS(2512), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_constexpr] = ACTIONS(2512), + [anon_sym_volatile] = ACTIONS(2512), + [anon_sym_restrict] = ACTIONS(2512), + [anon_sym___restrict__] = ACTIONS(2512), + [anon_sym__Atomic] = ACTIONS(2512), + [anon_sym__Noreturn] = ACTIONS(2512), + [anon_sym__Nonnull] = ACTIONS(2512), + [anon_sym_nullable] = ACTIONS(2512), + [anon_sym__Complex] = ACTIONS(2512), + [anon_sym__Nullable] = ACTIONS(2512), + [anon_sym__Nullable_result] = ACTIONS(2512), + [anon_sym__Null_unspecified] = ACTIONS(2512), + [anon_sym___autoreleasing] = ACTIONS(2512), + [anon_sym___block] = ACTIONS(2512), + [anon_sym___bridge] = ACTIONS(2512), + [anon_sym___bridge_retained] = ACTIONS(2512), + [anon_sym___bridge_transfer] = ACTIONS(2512), + [anon_sym___complex] = ACTIONS(2512), + [anon_sym___const] = ACTIONS(2512), + [anon_sym___imag] = ACTIONS(2512), + [anon_sym___kindof] = ACTIONS(2512), + [anon_sym___nonnull] = ACTIONS(2512), + [anon_sym___nullable] = ACTIONS(2512), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2512), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2512), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2512), + [anon_sym___real] = ACTIONS(2512), + [anon_sym___strong] = ACTIONS(2512), + [anon_sym___unsafe_unretained] = ACTIONS(2512), + [anon_sym___unused] = ACTIONS(2512), + [anon_sym___weak] = ACTIONS(2512), + [anon_sym_alignas] = ACTIONS(2512), + [anon_sym__Alignas] = ACTIONS(2512), + [sym_primitive_type] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [anon_sym_struct] = ACTIONS(2512), + [anon_sym_union] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_else] = ACTIONS(2512), + [anon_sym_switch] = ACTIONS(2512), + [anon_sym_case] = ACTIONS(2512), + [anon_sym_default] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_do] = ACTIONS(2512), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_in] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_goto] = ACTIONS(2512), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_sizeof] = ACTIONS(2512), + [anon_sym___alignof__] = ACTIONS(2512), + [anon_sym___alignof] = ACTIONS(2512), + [anon_sym__alignof] = ACTIONS(2512), + [anon_sym_alignof] = ACTIONS(2512), + [anon_sym__Alignof] = ACTIONS(2512), + [anon_sym_offsetof] = ACTIONS(2512), + [anon_sym__Generic] = ACTIONS(2512), + [anon_sym_asm] = ACTIONS(2512), + [anon_sym___asm__] = ACTIONS(2512), + [anon_sym___asm] = ACTIONS(2512), + [sym_number_literal] = ACTIONS(2514), + [anon_sym_L_SQUOTE] = ACTIONS(2514), + [anon_sym_u_SQUOTE] = ACTIONS(2514), + [anon_sym_U_SQUOTE] = ACTIONS(2514), + [anon_sym_u8_SQUOTE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_AT] = ACTIONS(2512), + [anon_sym_DQUOTE] = ACTIONS(2514), + [anon_sym_L_DQUOTE] = ACTIONS(2514), + [anon_sym_u_DQUOTE] = ACTIONS(2514), + [anon_sym_U_DQUOTE] = ACTIONS(2514), + [anon_sym_u8_DQUOTE] = ACTIONS(2514), + [sym_true] = ACTIONS(2512), + [sym_false] = ACTIONS(2512), + [anon_sym_NULL] = ACTIONS(2512), + [anon_sym_nullptr] = ACTIONS(2512), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2512), + [anon_sym___typeof] = ACTIONS(2512), + [anon_sym_typeof] = ACTIONS(2512), + [anon_sym_ATimport] = ACTIONS(2514), + [aux_sym_preproc_undef_token1] = ACTIONS(2512), + [anon_sym_POUND] = ACTIONS(2512), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2512), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2512), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2512), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2512), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE] = ACTIONS(2512), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_API_AVAILABLE] = ACTIONS(2512), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_API_DEPRECATED] = ACTIONS(2512), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2512), + [anon_sym___deprecated_msg] = ACTIONS(2512), + [anon_sym___deprecated_enum_msg] = ACTIONS(2512), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2512), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2512), + [anon_sym_ATprotocol] = ACTIONS(2514), + [anon_sym_ATinterface] = ACTIONS(2514), + [anon_sym_ATimplementation] = ACTIONS(2514), + [anon_sym_ATcompatibility_alias] = ACTIONS(2514), + [anon_sym_ATsynthesize] = ACTIONS(2514), + [anon_sym_ATdynamic] = ACTIONS(2514), + [anon_sym_ATtry] = ACTIONS(2514), + [anon_sym___try] = ACTIONS(2512), + [anon_sym_ATthrow] = ACTIONS(2514), + [anon_sym_ATselector] = ACTIONS(2514), + [anon_sym_ATavailable] = ACTIONS(2514), + [anon_sym___builtin_available] = ACTIONS(2512), + [anon_sym_va_arg] = ACTIONS(2512), + [anon_sym_ATencode] = ACTIONS(2514), + [anon_sym_ATsynchronized] = ACTIONS(2514), + [anon_sym_BOOL] = ACTIONS(2512), + [anon_sym_IMP] = ACTIONS(2512), + [anon_sym_SEL] = ACTIONS(2512), + [anon_sym_Class] = ACTIONS(2512), + [anon_sym_id] = ACTIONS(2512), + }, + [378] = { + [sym_identifier] = ACTIONS(2350), + [aux_sym_preproc_include_token1] = ACTIONS(2350), + [aux_sym_preproc_include_token2] = ACTIONS(2350), + [aux_sym_preproc_def_token1] = ACTIONS(2350), + [aux_sym_preproc_if_token1] = ACTIONS(2350), + [aux_sym_preproc_if_token2] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2350), + [aux_sym_preproc_else_token1] = ACTIONS(2350), + [aux_sym_preproc_elif_token1] = ACTIONS(2350), + [sym_preproc_directive] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(2352), + [anon_sym_BANG] = ACTIONS(2352), + [anon_sym_TILDE] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2350), + [anon_sym_STAR] = ACTIONS(2352), + [anon_sym_CARET] = ACTIONS(2352), + [anon_sym_AMP] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2352), + [anon_sym___extension__] = ACTIONS(2350), + [anon_sym_typedef] = ACTIONS(2350), + [anon_sym_extern] = ACTIONS(2350), + [anon_sym___attribute__] = ACTIONS(2350), + [anon_sym___attribute] = ACTIONS(2350), + [anon_sym_noreturn] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2352), + [anon_sym___declspec] = ACTIONS(2350), + [anon_sym___cdecl] = ACTIONS(2350), + [anon_sym___clrcall] = ACTIONS(2350), + [anon_sym___stdcall] = ACTIONS(2350), + [anon_sym___fastcall] = ACTIONS(2350), + [anon_sym___thiscall] = ACTIONS(2350), + [anon_sym___vectorcall] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2352), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(2350), + [anon_sym_ATautoreleasepool] = ACTIONS(2352), + [anon_sym_auto] = ACTIONS(2350), + [anon_sym_register] = ACTIONS(2350), + [anon_sym_inline] = ACTIONS(2350), + [anon_sym___inline] = ACTIONS(2350), + [anon_sym___inline__] = ACTIONS(2350), + [anon_sym___forceinline] = ACTIONS(2350), + [anon_sym_thread_local] = ACTIONS(2350), + [anon_sym___thread] = ACTIONS(2350), + [anon_sym_CG_EXTERN] = ACTIONS(2350), + [anon_sym_CG_INLINE] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2350), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2350), + [anon_sym_IBOutlet] = ACTIONS(2350), + [anon_sym_IBInspectable] = ACTIONS(2350), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2350), + [anon_sym_NS_INLINE] = ACTIONS(2350), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2350), + [anon_sym_OBJC_EXPORT] = ACTIONS(2350), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2350), + [anon_sym_const] = ACTIONS(2350), + [anon_sym_constexpr] = ACTIONS(2350), + [anon_sym_volatile] = ACTIONS(2350), + [anon_sym_restrict] = ACTIONS(2350), + [anon_sym___restrict__] = ACTIONS(2350), + [anon_sym__Atomic] = ACTIONS(2350), + [anon_sym__Noreturn] = ACTIONS(2350), + [anon_sym__Nonnull] = ACTIONS(2350), + [anon_sym_nullable] = ACTIONS(2350), + [anon_sym__Complex] = ACTIONS(2350), + [anon_sym__Nullable] = ACTIONS(2350), + [anon_sym__Nullable_result] = ACTIONS(2350), + [anon_sym__Null_unspecified] = ACTIONS(2350), + [anon_sym___autoreleasing] = ACTIONS(2350), + [anon_sym___block] = ACTIONS(2350), + [anon_sym___bridge] = ACTIONS(2350), + [anon_sym___bridge_retained] = ACTIONS(2350), + [anon_sym___bridge_transfer] = ACTIONS(2350), + [anon_sym___complex] = ACTIONS(2350), + [anon_sym___const] = ACTIONS(2350), + [anon_sym___imag] = ACTIONS(2350), + [anon_sym___kindof] = ACTIONS(2350), + [anon_sym___nonnull] = ACTIONS(2350), + [anon_sym___nullable] = ACTIONS(2350), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2350), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2350), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2350), + [anon_sym___real] = ACTIONS(2350), + [anon_sym___strong] = ACTIONS(2350), + [anon_sym___unsafe_unretained] = ACTIONS(2350), + [anon_sym___unused] = ACTIONS(2350), + [anon_sym___weak] = ACTIONS(2350), + [anon_sym_alignas] = ACTIONS(2350), + [anon_sym__Alignas] = ACTIONS(2350), + [sym_primitive_type] = ACTIONS(2350), + [anon_sym_enum] = ACTIONS(2350), + [anon_sym_struct] = ACTIONS(2350), + [anon_sym_union] = ACTIONS(2350), + [anon_sym_if] = ACTIONS(2350), + [anon_sym_else] = ACTIONS(2350), + [anon_sym_switch] = ACTIONS(2350), + [anon_sym_case] = ACTIONS(2350), + [anon_sym_default] = ACTIONS(2350), + [anon_sym_while] = ACTIONS(2350), + [anon_sym_do] = ACTIONS(2350), + [anon_sym_for] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_return] = ACTIONS(2350), + [anon_sym_break] = ACTIONS(2350), + [anon_sym_continue] = ACTIONS(2350), + [anon_sym_goto] = ACTIONS(2350), + [anon_sym_DASH_DASH] = ACTIONS(2352), + [anon_sym_PLUS_PLUS] = ACTIONS(2352), + [anon_sym_sizeof] = ACTIONS(2350), + [anon_sym___alignof__] = ACTIONS(2350), + [anon_sym___alignof] = ACTIONS(2350), + [anon_sym__alignof] = ACTIONS(2350), + [anon_sym_alignof] = ACTIONS(2350), + [anon_sym__Alignof] = ACTIONS(2350), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_asm] = ACTIONS(2350), + [anon_sym___asm__] = ACTIONS(2350), + [anon_sym___asm] = ACTIONS(2350), + [sym_number_literal] = ACTIONS(2352), + [anon_sym_L_SQUOTE] = ACTIONS(2352), + [anon_sym_u_SQUOTE] = ACTIONS(2352), + [anon_sym_U_SQUOTE] = ACTIONS(2352), + [anon_sym_u8_SQUOTE] = ACTIONS(2352), + [anon_sym_SQUOTE] = ACTIONS(2352), + [anon_sym_AT] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2352), + [anon_sym_L_DQUOTE] = ACTIONS(2352), + [anon_sym_u_DQUOTE] = ACTIONS(2352), + [anon_sym_U_DQUOTE] = ACTIONS(2352), + [anon_sym_u8_DQUOTE] = ACTIONS(2352), + [sym_true] = ACTIONS(2350), + [sym_false] = ACTIONS(2350), + [anon_sym_NULL] = ACTIONS(2350), + [anon_sym_nullptr] = ACTIONS(2350), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2350), + [anon_sym___typeof] = ACTIONS(2350), + [anon_sym_typeof] = ACTIONS(2350), + [anon_sym_ATimport] = ACTIONS(2352), + [aux_sym_preproc_undef_token1] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(2350), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2350), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2350), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2350), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2350), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE] = ACTIONS(2350), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_API_AVAILABLE] = ACTIONS(2350), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_API_DEPRECATED] = ACTIONS(2350), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2350), + [anon_sym___deprecated_msg] = ACTIONS(2350), + [anon_sym___deprecated_enum_msg] = ACTIONS(2350), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2350), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2350), + [anon_sym_ATprotocol] = ACTIONS(2352), + [anon_sym_ATinterface] = ACTIONS(2352), + [anon_sym_ATimplementation] = ACTIONS(2352), + [anon_sym_ATcompatibility_alias] = ACTIONS(2352), + [anon_sym_ATsynthesize] = ACTIONS(2352), + [anon_sym_ATdynamic] = ACTIONS(2352), + [anon_sym_ATtry] = ACTIONS(2352), + [anon_sym___try] = ACTIONS(2350), + [anon_sym_ATthrow] = ACTIONS(2352), + [anon_sym_ATselector] = ACTIONS(2352), + [anon_sym_ATavailable] = ACTIONS(2352), + [anon_sym___builtin_available] = ACTIONS(2350), + [anon_sym_va_arg] = ACTIONS(2350), + [anon_sym_ATencode] = ACTIONS(2352), + [anon_sym_ATsynchronized] = ACTIONS(2352), + [anon_sym_BOOL] = ACTIONS(2350), + [anon_sym_IMP] = ACTIONS(2350), + [anon_sym_SEL] = ACTIONS(2350), + [anon_sym_Class] = ACTIONS(2350), + [anon_sym_id] = ACTIONS(2350), + }, + [379] = { + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_include_token1] = ACTIONS(2424), + [aux_sym_preproc_include_token2] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token2] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [aux_sym_preproc_else_token1] = ACTIONS(2424), + [aux_sym_preproc_elif_token1] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_CARET] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_ATautoreleasepool] = ACTIONS(2426), + [anon_sym_auto] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_CG_EXTERN] = ACTIONS(2424), + [anon_sym_CG_INLINE] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2424), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2424), + [anon_sym_IBOutlet] = ACTIONS(2424), + [anon_sym_IBInspectable] = ACTIONS(2424), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2424), + [anon_sym_NS_INLINE] = ACTIONS(2424), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2424), + [anon_sym_OBJC_EXPORT] = ACTIONS(2424), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_nullable] = ACTIONS(2424), + [anon_sym__Complex] = ACTIONS(2424), + [anon_sym__Nullable] = ACTIONS(2424), + [anon_sym__Nullable_result] = ACTIONS(2424), + [anon_sym__Null_unspecified] = ACTIONS(2424), + [anon_sym___autoreleasing] = ACTIONS(2424), + [anon_sym___block] = ACTIONS(2424), + [anon_sym___bridge] = ACTIONS(2424), + [anon_sym___bridge_retained] = ACTIONS(2424), + [anon_sym___bridge_transfer] = ACTIONS(2424), + [anon_sym___complex] = ACTIONS(2424), + [anon_sym___const] = ACTIONS(2424), + [anon_sym___imag] = ACTIONS(2424), + [anon_sym___kindof] = ACTIONS(2424), + [anon_sym___nonnull] = ACTIONS(2424), + [anon_sym___nullable] = ACTIONS(2424), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2424), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2424), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2424), + [anon_sym___real] = ACTIONS(2424), + [anon_sym___strong] = ACTIONS(2424), + [anon_sym___unsafe_unretained] = ACTIONS(2424), + [anon_sym___unused] = ACTIONS(2424), + [anon_sym___weak] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_else] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_in] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_goto] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_sizeof] = ACTIONS(2424), + [anon_sym___alignof__] = ACTIONS(2424), + [anon_sym___alignof] = ACTIONS(2424), + [anon_sym__alignof] = ACTIONS(2424), + [anon_sym_alignof] = ACTIONS(2424), + [anon_sym__Alignof] = ACTIONS(2424), + [anon_sym_offsetof] = ACTIONS(2424), + [anon_sym__Generic] = ACTIONS(2424), + [anon_sym_asm] = ACTIONS(2424), + [anon_sym___asm__] = ACTIONS(2424), + [anon_sym___asm] = ACTIONS(2424), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_L_SQUOTE] = ACTIONS(2426), + [anon_sym_u_SQUOTE] = ACTIONS(2426), + [anon_sym_U_SQUOTE] = ACTIONS(2426), + [anon_sym_u8_SQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_AT] = ACTIONS(2424), + [anon_sym_DQUOTE] = ACTIONS(2426), + [anon_sym_L_DQUOTE] = ACTIONS(2426), + [anon_sym_u_DQUOTE] = ACTIONS(2426), + [anon_sym_U_DQUOTE] = ACTIONS(2426), + [anon_sym_u8_DQUOTE] = ACTIONS(2426), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [anon_sym_NULL] = ACTIONS(2424), + [anon_sym_nullptr] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2424), + [anon_sym___typeof] = ACTIONS(2424), + [anon_sym_typeof] = ACTIONS(2424), + [anon_sym_ATimport] = ACTIONS(2426), + [aux_sym_preproc_undef_token1] = ACTIONS(2424), + [anon_sym_POUND] = ACTIONS(2424), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2424), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2424), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2424), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2424), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE] = ACTIONS(2424), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_API_AVAILABLE] = ACTIONS(2424), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_API_DEPRECATED] = ACTIONS(2424), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2424), + [anon_sym___deprecated_msg] = ACTIONS(2424), + [anon_sym___deprecated_enum_msg] = ACTIONS(2424), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2424), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2424), + [anon_sym_ATprotocol] = ACTIONS(2426), + [anon_sym_ATinterface] = ACTIONS(2426), + [anon_sym_ATimplementation] = ACTIONS(2426), + [anon_sym_ATcompatibility_alias] = ACTIONS(2426), + [anon_sym_ATsynthesize] = ACTIONS(2426), + [anon_sym_ATdynamic] = ACTIONS(2426), + [anon_sym_ATtry] = ACTIONS(2426), + [anon_sym___try] = ACTIONS(2424), + [anon_sym_ATthrow] = ACTIONS(2426), + [anon_sym_ATselector] = ACTIONS(2426), + [anon_sym_ATavailable] = ACTIONS(2426), + [anon_sym___builtin_available] = ACTIONS(2424), + [anon_sym_va_arg] = ACTIONS(2424), + [anon_sym_ATencode] = ACTIONS(2426), + [anon_sym_ATsynchronized] = ACTIONS(2426), + [anon_sym_BOOL] = ACTIONS(2424), + [anon_sym_IMP] = ACTIONS(2424), + [anon_sym_SEL] = ACTIONS(2424), + [anon_sym_Class] = ACTIONS(2424), + [anon_sym_id] = ACTIONS(2424), + }, + [380] = { + [sym_identifier] = ACTIONS(2428), + [aux_sym_preproc_include_token1] = ACTIONS(2428), + [aux_sym_preproc_include_token2] = ACTIONS(2428), + [aux_sym_preproc_def_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token2] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2428), + [aux_sym_preproc_else_token1] = ACTIONS(2428), + [aux_sym_preproc_elif_token1] = ACTIONS(2428), + [sym_preproc_directive] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_STAR] = ACTIONS(2430), + [anon_sym_CARET] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym___cdecl] = ACTIONS(2428), + [anon_sym___clrcall] = ACTIONS(2428), + [anon_sym___stdcall] = ACTIONS(2428), + [anon_sym___fastcall] = ACTIONS(2428), + [anon_sym___thiscall] = ACTIONS(2428), + [anon_sym___vectorcall] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_ATautoreleasepool] = ACTIONS(2430), + [anon_sym_auto] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_CG_EXTERN] = ACTIONS(2428), + [anon_sym_CG_INLINE] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2428), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2428), + [anon_sym_IBOutlet] = ACTIONS(2428), + [anon_sym_IBInspectable] = ACTIONS(2428), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2428), + [anon_sym_NS_INLINE] = ACTIONS(2428), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2428), + [anon_sym_OBJC_EXPORT] = ACTIONS(2428), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_nullable] = ACTIONS(2428), + [anon_sym__Complex] = ACTIONS(2428), + [anon_sym__Nullable] = ACTIONS(2428), + [anon_sym__Nullable_result] = ACTIONS(2428), + [anon_sym__Null_unspecified] = ACTIONS(2428), + [anon_sym___autoreleasing] = ACTIONS(2428), + [anon_sym___block] = ACTIONS(2428), + [anon_sym___bridge] = ACTIONS(2428), + [anon_sym___bridge_retained] = ACTIONS(2428), + [anon_sym___bridge_transfer] = ACTIONS(2428), + [anon_sym___complex] = ACTIONS(2428), + [anon_sym___const] = ACTIONS(2428), + [anon_sym___imag] = ACTIONS(2428), + [anon_sym___kindof] = ACTIONS(2428), + [anon_sym___nonnull] = ACTIONS(2428), + [anon_sym___nullable] = ACTIONS(2428), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2428), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2428), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2428), + [anon_sym___real] = ACTIONS(2428), + [anon_sym___strong] = ACTIONS(2428), + [anon_sym___unsafe_unretained] = ACTIONS(2428), + [anon_sym___unused] = ACTIONS(2428), + [anon_sym___weak] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_else] = ACTIONS(2428), + [anon_sym_switch] = ACTIONS(2428), + [anon_sym_case] = ACTIONS(2428), + [anon_sym_default] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_do] = ACTIONS(2428), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_in] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_goto] = ACTIONS(2428), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_sizeof] = ACTIONS(2428), + [anon_sym___alignof__] = ACTIONS(2428), + [anon_sym___alignof] = ACTIONS(2428), + [anon_sym__alignof] = ACTIONS(2428), + [anon_sym_alignof] = ACTIONS(2428), + [anon_sym__Alignof] = ACTIONS(2428), + [anon_sym_offsetof] = ACTIONS(2428), + [anon_sym__Generic] = ACTIONS(2428), + [anon_sym_asm] = ACTIONS(2428), + [anon_sym___asm__] = ACTIONS(2428), + [anon_sym___asm] = ACTIONS(2428), + [sym_number_literal] = ACTIONS(2430), + [anon_sym_L_SQUOTE] = ACTIONS(2430), + [anon_sym_u_SQUOTE] = ACTIONS(2430), + [anon_sym_U_SQUOTE] = ACTIONS(2430), + [anon_sym_u8_SQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_AT] = ACTIONS(2428), + [anon_sym_DQUOTE] = ACTIONS(2430), + [anon_sym_L_DQUOTE] = ACTIONS(2430), + [anon_sym_u_DQUOTE] = ACTIONS(2430), + [anon_sym_U_DQUOTE] = ACTIONS(2430), + [anon_sym_u8_DQUOTE] = ACTIONS(2430), + [sym_true] = ACTIONS(2428), + [sym_false] = ACTIONS(2428), + [anon_sym_NULL] = ACTIONS(2428), + [anon_sym_nullptr] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2428), + [anon_sym___typeof] = ACTIONS(2428), + [anon_sym_typeof] = ACTIONS(2428), + [anon_sym_ATimport] = ACTIONS(2430), + [aux_sym_preproc_undef_token1] = ACTIONS(2428), + [anon_sym_POUND] = ACTIONS(2428), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2428), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2428), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2428), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2428), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE] = ACTIONS(2428), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_API_AVAILABLE] = ACTIONS(2428), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_API_DEPRECATED] = ACTIONS(2428), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2428), + [anon_sym___deprecated_msg] = ACTIONS(2428), + [anon_sym___deprecated_enum_msg] = ACTIONS(2428), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2428), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2428), + [anon_sym_ATprotocol] = ACTIONS(2430), + [anon_sym_ATinterface] = ACTIONS(2430), + [anon_sym_ATimplementation] = ACTIONS(2430), + [anon_sym_ATcompatibility_alias] = ACTIONS(2430), + [anon_sym_ATsynthesize] = ACTIONS(2430), + [anon_sym_ATdynamic] = ACTIONS(2430), + [anon_sym_ATtry] = ACTIONS(2430), + [anon_sym___try] = ACTIONS(2428), + [anon_sym_ATthrow] = ACTIONS(2430), + [anon_sym_ATselector] = ACTIONS(2430), + [anon_sym_ATavailable] = ACTIONS(2430), + [anon_sym___builtin_available] = ACTIONS(2428), + [anon_sym_va_arg] = ACTIONS(2428), + [anon_sym_ATencode] = ACTIONS(2430), + [anon_sym_ATsynchronized] = ACTIONS(2430), + [anon_sym_BOOL] = ACTIONS(2428), + [anon_sym_IMP] = ACTIONS(2428), + [anon_sym_SEL] = ACTIONS(2428), + [anon_sym_Class] = ACTIONS(2428), + [anon_sym_id] = ACTIONS(2428), + }, + [381] = { + [sym_identifier] = ACTIONS(2432), + [aux_sym_preproc_include_token1] = ACTIONS(2432), + [aux_sym_preproc_include_token2] = ACTIONS(2432), + [aux_sym_preproc_def_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token2] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2432), + [aux_sym_preproc_else_token1] = ACTIONS(2432), + [aux_sym_preproc_elif_token1] = ACTIONS(2432), + [sym_preproc_directive] = ACTIONS(2432), + [anon_sym_LPAREN2] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym___extension__] = ACTIONS(2432), + [anon_sym_typedef] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym___attribute__] = ACTIONS(2432), + [anon_sym___attribute] = ACTIONS(2432), + [anon_sym_noreturn] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym___declspec] = ACTIONS(2432), + [anon_sym___cdecl] = ACTIONS(2432), + [anon_sym___clrcall] = ACTIONS(2432), + [anon_sym___stdcall] = ACTIONS(2432), + [anon_sym___fastcall] = ACTIONS(2432), + [anon_sym___thiscall] = ACTIONS(2432), + [anon_sym___vectorcall] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_signed] = ACTIONS(2432), + [anon_sym_unsigned] = ACTIONS(2432), + [anon_sym_long] = ACTIONS(2432), + [anon_sym_short] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_ATautoreleasepool] = ACTIONS(2434), + [anon_sym_auto] = ACTIONS(2432), + [anon_sym_register] = ACTIONS(2432), + [anon_sym_inline] = ACTIONS(2432), + [anon_sym___inline] = ACTIONS(2432), + [anon_sym___inline__] = ACTIONS(2432), + [anon_sym___forceinline] = ACTIONS(2432), + [anon_sym_thread_local] = ACTIONS(2432), + [anon_sym___thread] = ACTIONS(2432), + [anon_sym_CG_EXTERN] = ACTIONS(2432), + [anon_sym_CG_INLINE] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2432), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2432), + [anon_sym_IBOutlet] = ACTIONS(2432), + [anon_sym_IBInspectable] = ACTIONS(2432), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2432), + [anon_sym_NS_INLINE] = ACTIONS(2432), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2432), + [anon_sym_OBJC_EXPORT] = ACTIONS(2432), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_constexpr] = ACTIONS(2432), + [anon_sym_volatile] = ACTIONS(2432), + [anon_sym_restrict] = ACTIONS(2432), + [anon_sym___restrict__] = ACTIONS(2432), + [anon_sym__Atomic] = ACTIONS(2432), + [anon_sym__Noreturn] = ACTIONS(2432), + [anon_sym__Nonnull] = ACTIONS(2432), + [anon_sym_nullable] = ACTIONS(2432), + [anon_sym__Complex] = ACTIONS(2432), + [anon_sym__Nullable] = ACTIONS(2432), + [anon_sym__Nullable_result] = ACTIONS(2432), + [anon_sym__Null_unspecified] = ACTIONS(2432), + [anon_sym___autoreleasing] = ACTIONS(2432), + [anon_sym___block] = ACTIONS(2432), + [anon_sym___bridge] = ACTIONS(2432), + [anon_sym___bridge_retained] = ACTIONS(2432), + [anon_sym___bridge_transfer] = ACTIONS(2432), + [anon_sym___complex] = ACTIONS(2432), + [anon_sym___const] = ACTIONS(2432), + [anon_sym___imag] = ACTIONS(2432), + [anon_sym___kindof] = ACTIONS(2432), + [anon_sym___nonnull] = ACTIONS(2432), + [anon_sym___nullable] = ACTIONS(2432), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2432), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2432), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2432), + [anon_sym___real] = ACTIONS(2432), + [anon_sym___strong] = ACTIONS(2432), + [anon_sym___unsafe_unretained] = ACTIONS(2432), + [anon_sym___unused] = ACTIONS(2432), + [anon_sym___weak] = ACTIONS(2432), + [anon_sym_alignas] = ACTIONS(2432), + [anon_sym__Alignas] = ACTIONS(2432), + [sym_primitive_type] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_else] = ACTIONS(2432), + [anon_sym_switch] = ACTIONS(2432), + [anon_sym_case] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_in] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_goto] = ACTIONS(2432), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_sizeof] = ACTIONS(2432), + [anon_sym___alignof__] = ACTIONS(2432), + [anon_sym___alignof] = ACTIONS(2432), + [anon_sym__alignof] = ACTIONS(2432), + [anon_sym_alignof] = ACTIONS(2432), + [anon_sym__Alignof] = ACTIONS(2432), + [anon_sym_offsetof] = ACTIONS(2432), + [anon_sym__Generic] = ACTIONS(2432), + [anon_sym_asm] = ACTIONS(2432), + [anon_sym___asm__] = ACTIONS(2432), + [anon_sym___asm] = ACTIONS(2432), + [sym_number_literal] = ACTIONS(2434), + [anon_sym_L_SQUOTE] = ACTIONS(2434), + [anon_sym_u_SQUOTE] = ACTIONS(2434), + [anon_sym_U_SQUOTE] = ACTIONS(2434), + [anon_sym_u8_SQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_AT] = ACTIONS(2432), + [anon_sym_DQUOTE] = ACTIONS(2434), + [anon_sym_L_DQUOTE] = ACTIONS(2434), + [anon_sym_u_DQUOTE] = ACTIONS(2434), + [anon_sym_U_DQUOTE] = ACTIONS(2434), + [anon_sym_u8_DQUOTE] = ACTIONS(2434), + [sym_true] = ACTIONS(2432), + [sym_false] = ACTIONS(2432), + [anon_sym_NULL] = ACTIONS(2432), + [anon_sym_nullptr] = ACTIONS(2432), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2432), + [anon_sym___typeof] = ACTIONS(2432), + [anon_sym_typeof] = ACTIONS(2432), + [anon_sym_ATimport] = ACTIONS(2434), + [aux_sym_preproc_undef_token1] = ACTIONS(2432), + [anon_sym_POUND] = ACTIONS(2432), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2432), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2432), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2432), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2432), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE] = ACTIONS(2432), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_API_AVAILABLE] = ACTIONS(2432), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_API_DEPRECATED] = ACTIONS(2432), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2432), + [anon_sym___deprecated_msg] = ACTIONS(2432), + [anon_sym___deprecated_enum_msg] = ACTIONS(2432), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2432), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2432), + [anon_sym_ATprotocol] = ACTIONS(2434), + [anon_sym_ATinterface] = ACTIONS(2434), + [anon_sym_ATimplementation] = ACTIONS(2434), + [anon_sym_ATcompatibility_alias] = ACTIONS(2434), + [anon_sym_ATsynthesize] = ACTIONS(2434), + [anon_sym_ATdynamic] = ACTIONS(2434), + [anon_sym_ATtry] = ACTIONS(2434), + [anon_sym___try] = ACTIONS(2432), + [anon_sym_ATthrow] = ACTIONS(2434), + [anon_sym_ATselector] = ACTIONS(2434), + [anon_sym_ATavailable] = ACTIONS(2434), + [anon_sym___builtin_available] = ACTIONS(2432), + [anon_sym_va_arg] = ACTIONS(2432), + [anon_sym_ATencode] = ACTIONS(2434), + [anon_sym_ATsynchronized] = ACTIONS(2434), + [anon_sym_BOOL] = ACTIONS(2432), + [anon_sym_IMP] = ACTIONS(2432), + [anon_sym_SEL] = ACTIONS(2432), + [anon_sym_Class] = ACTIONS(2432), + [anon_sym_id] = ACTIONS(2432), + }, + [382] = { + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_include_token1] = ACTIONS(2424), + [aux_sym_preproc_include_token2] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token2] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [aux_sym_preproc_else_token1] = ACTIONS(2424), + [aux_sym_preproc_elif_token1] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_CARET] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_ATautoreleasepool] = ACTIONS(2426), + [anon_sym_auto] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_CG_EXTERN] = ACTIONS(2424), + [anon_sym_CG_INLINE] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2424), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2424), + [anon_sym_IBOutlet] = ACTIONS(2424), + [anon_sym_IBInspectable] = ACTIONS(2424), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2424), + [anon_sym_NS_INLINE] = ACTIONS(2424), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2424), + [anon_sym_OBJC_EXPORT] = ACTIONS(2424), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_nullable] = ACTIONS(2424), + [anon_sym__Complex] = ACTIONS(2424), + [anon_sym__Nullable] = ACTIONS(2424), + [anon_sym__Nullable_result] = ACTIONS(2424), + [anon_sym__Null_unspecified] = ACTIONS(2424), + [anon_sym___autoreleasing] = ACTIONS(2424), + [anon_sym___block] = ACTIONS(2424), + [anon_sym___bridge] = ACTIONS(2424), + [anon_sym___bridge_retained] = ACTIONS(2424), + [anon_sym___bridge_transfer] = ACTIONS(2424), + [anon_sym___complex] = ACTIONS(2424), + [anon_sym___const] = ACTIONS(2424), + [anon_sym___imag] = ACTIONS(2424), + [anon_sym___kindof] = ACTIONS(2424), + [anon_sym___nonnull] = ACTIONS(2424), + [anon_sym___nullable] = ACTIONS(2424), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2424), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2424), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2424), + [anon_sym___real] = ACTIONS(2424), + [anon_sym___strong] = ACTIONS(2424), + [anon_sym___unsafe_unretained] = ACTIONS(2424), + [anon_sym___unused] = ACTIONS(2424), + [anon_sym___weak] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_else] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_in] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_goto] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_sizeof] = ACTIONS(2424), + [anon_sym___alignof__] = ACTIONS(2424), + [anon_sym___alignof] = ACTIONS(2424), + [anon_sym__alignof] = ACTIONS(2424), + [anon_sym_alignof] = ACTIONS(2424), + [anon_sym__Alignof] = ACTIONS(2424), + [anon_sym_offsetof] = ACTIONS(2424), + [anon_sym__Generic] = ACTIONS(2424), + [anon_sym_asm] = ACTIONS(2424), + [anon_sym___asm__] = ACTIONS(2424), + [anon_sym___asm] = ACTIONS(2424), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_L_SQUOTE] = ACTIONS(2426), + [anon_sym_u_SQUOTE] = ACTIONS(2426), + [anon_sym_U_SQUOTE] = ACTIONS(2426), + [anon_sym_u8_SQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_AT] = ACTIONS(2424), + [anon_sym_DQUOTE] = ACTIONS(2426), + [anon_sym_L_DQUOTE] = ACTIONS(2426), + [anon_sym_u_DQUOTE] = ACTIONS(2426), + [anon_sym_U_DQUOTE] = ACTIONS(2426), + [anon_sym_u8_DQUOTE] = ACTIONS(2426), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [anon_sym_NULL] = ACTIONS(2424), + [anon_sym_nullptr] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2424), + [anon_sym___typeof] = ACTIONS(2424), + [anon_sym_typeof] = ACTIONS(2424), + [anon_sym_ATimport] = ACTIONS(2426), + [aux_sym_preproc_undef_token1] = ACTIONS(2424), + [anon_sym_POUND] = ACTIONS(2424), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2424), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2424), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2424), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2424), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE] = ACTIONS(2424), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_API_AVAILABLE] = ACTIONS(2424), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_API_DEPRECATED] = ACTIONS(2424), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2424), + [anon_sym___deprecated_msg] = ACTIONS(2424), + [anon_sym___deprecated_enum_msg] = ACTIONS(2424), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2424), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2424), + [anon_sym_ATprotocol] = ACTIONS(2426), + [anon_sym_ATinterface] = ACTIONS(2426), + [anon_sym_ATimplementation] = ACTIONS(2426), + [anon_sym_ATcompatibility_alias] = ACTIONS(2426), + [anon_sym_ATsynthesize] = ACTIONS(2426), + [anon_sym_ATdynamic] = ACTIONS(2426), + [anon_sym_ATtry] = ACTIONS(2426), + [anon_sym___try] = ACTIONS(2424), + [anon_sym_ATthrow] = ACTIONS(2426), + [anon_sym_ATselector] = ACTIONS(2426), + [anon_sym_ATavailable] = ACTIONS(2426), + [anon_sym___builtin_available] = ACTIONS(2424), + [anon_sym_va_arg] = ACTIONS(2424), + [anon_sym_ATencode] = ACTIONS(2426), + [anon_sym_ATsynchronized] = ACTIONS(2426), + [anon_sym_BOOL] = ACTIONS(2424), + [anon_sym_IMP] = ACTIONS(2424), + [anon_sym_SEL] = ACTIONS(2424), + [anon_sym_Class] = ACTIONS(2424), + [anon_sym_id] = ACTIONS(2424), + }, + [383] = { + [sym_identifier] = ACTIONS(2432), + [aux_sym_preproc_include_token1] = ACTIONS(2432), + [aux_sym_preproc_include_token2] = ACTIONS(2432), + [aux_sym_preproc_def_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token2] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2432), + [aux_sym_preproc_else_token1] = ACTIONS(2432), + [aux_sym_preproc_elif_token1] = ACTIONS(2432), + [sym_preproc_directive] = ACTIONS(2432), + [anon_sym_LPAREN2] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym___extension__] = ACTIONS(2432), + [anon_sym_typedef] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym___attribute__] = ACTIONS(2432), + [anon_sym___attribute] = ACTIONS(2432), + [anon_sym_noreturn] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym___declspec] = ACTIONS(2432), + [anon_sym___cdecl] = ACTIONS(2432), + [anon_sym___clrcall] = ACTIONS(2432), + [anon_sym___stdcall] = ACTIONS(2432), + [anon_sym___fastcall] = ACTIONS(2432), + [anon_sym___thiscall] = ACTIONS(2432), + [anon_sym___vectorcall] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_signed] = ACTIONS(2432), + [anon_sym_unsigned] = ACTIONS(2432), + [anon_sym_long] = ACTIONS(2432), + [anon_sym_short] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_ATautoreleasepool] = ACTIONS(2434), + [anon_sym_auto] = ACTIONS(2432), + [anon_sym_register] = ACTIONS(2432), + [anon_sym_inline] = ACTIONS(2432), + [anon_sym___inline] = ACTIONS(2432), + [anon_sym___inline__] = ACTIONS(2432), + [anon_sym___forceinline] = ACTIONS(2432), + [anon_sym_thread_local] = ACTIONS(2432), + [anon_sym___thread] = ACTIONS(2432), + [anon_sym_CG_EXTERN] = ACTIONS(2432), + [anon_sym_CG_INLINE] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2432), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2432), + [anon_sym_IBOutlet] = ACTIONS(2432), + [anon_sym_IBInspectable] = ACTIONS(2432), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2432), + [anon_sym_NS_INLINE] = ACTIONS(2432), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2432), + [anon_sym_OBJC_EXPORT] = ACTIONS(2432), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_constexpr] = ACTIONS(2432), + [anon_sym_volatile] = ACTIONS(2432), + [anon_sym_restrict] = ACTIONS(2432), + [anon_sym___restrict__] = ACTIONS(2432), + [anon_sym__Atomic] = ACTIONS(2432), + [anon_sym__Noreturn] = ACTIONS(2432), + [anon_sym__Nonnull] = ACTIONS(2432), + [anon_sym_nullable] = ACTIONS(2432), + [anon_sym__Complex] = ACTIONS(2432), + [anon_sym__Nullable] = ACTIONS(2432), + [anon_sym__Nullable_result] = ACTIONS(2432), + [anon_sym__Null_unspecified] = ACTIONS(2432), + [anon_sym___autoreleasing] = ACTIONS(2432), + [anon_sym___block] = ACTIONS(2432), + [anon_sym___bridge] = ACTIONS(2432), + [anon_sym___bridge_retained] = ACTIONS(2432), + [anon_sym___bridge_transfer] = ACTIONS(2432), + [anon_sym___complex] = ACTIONS(2432), + [anon_sym___const] = ACTIONS(2432), + [anon_sym___imag] = ACTIONS(2432), + [anon_sym___kindof] = ACTIONS(2432), + [anon_sym___nonnull] = ACTIONS(2432), + [anon_sym___nullable] = ACTIONS(2432), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2432), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2432), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2432), + [anon_sym___real] = ACTIONS(2432), + [anon_sym___strong] = ACTIONS(2432), + [anon_sym___unsafe_unretained] = ACTIONS(2432), + [anon_sym___unused] = ACTIONS(2432), + [anon_sym___weak] = ACTIONS(2432), + [anon_sym_alignas] = ACTIONS(2432), + [anon_sym__Alignas] = ACTIONS(2432), + [sym_primitive_type] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_else] = ACTIONS(2432), + [anon_sym_switch] = ACTIONS(2432), + [anon_sym_case] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_in] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_goto] = ACTIONS(2432), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_sizeof] = ACTIONS(2432), + [anon_sym___alignof__] = ACTIONS(2432), + [anon_sym___alignof] = ACTIONS(2432), + [anon_sym__alignof] = ACTIONS(2432), + [anon_sym_alignof] = ACTIONS(2432), + [anon_sym__Alignof] = ACTIONS(2432), + [anon_sym_offsetof] = ACTIONS(2432), + [anon_sym__Generic] = ACTIONS(2432), + [anon_sym_asm] = ACTIONS(2432), + [anon_sym___asm__] = ACTIONS(2432), + [anon_sym___asm] = ACTIONS(2432), + [sym_number_literal] = ACTIONS(2434), + [anon_sym_L_SQUOTE] = ACTIONS(2434), + [anon_sym_u_SQUOTE] = ACTIONS(2434), + [anon_sym_U_SQUOTE] = ACTIONS(2434), + [anon_sym_u8_SQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_AT] = ACTIONS(2432), + [anon_sym_DQUOTE] = ACTIONS(2434), + [anon_sym_L_DQUOTE] = ACTIONS(2434), + [anon_sym_u_DQUOTE] = ACTIONS(2434), + [anon_sym_U_DQUOTE] = ACTIONS(2434), + [anon_sym_u8_DQUOTE] = ACTIONS(2434), + [sym_true] = ACTIONS(2432), + [sym_false] = ACTIONS(2432), + [anon_sym_NULL] = ACTIONS(2432), + [anon_sym_nullptr] = ACTIONS(2432), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2432), + [anon_sym___typeof] = ACTIONS(2432), + [anon_sym_typeof] = ACTIONS(2432), + [anon_sym_ATimport] = ACTIONS(2434), + [aux_sym_preproc_undef_token1] = ACTIONS(2432), + [anon_sym_POUND] = ACTIONS(2432), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2432), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2432), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2432), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2432), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE] = ACTIONS(2432), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_API_AVAILABLE] = ACTIONS(2432), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_API_DEPRECATED] = ACTIONS(2432), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2432), + [anon_sym___deprecated_msg] = ACTIONS(2432), + [anon_sym___deprecated_enum_msg] = ACTIONS(2432), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2432), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2432), + [anon_sym_ATprotocol] = ACTIONS(2434), + [anon_sym_ATinterface] = ACTIONS(2434), + [anon_sym_ATimplementation] = ACTIONS(2434), + [anon_sym_ATcompatibility_alias] = ACTIONS(2434), + [anon_sym_ATsynthesize] = ACTIONS(2434), + [anon_sym_ATdynamic] = ACTIONS(2434), + [anon_sym_ATtry] = ACTIONS(2434), + [anon_sym___try] = ACTIONS(2432), + [anon_sym_ATthrow] = ACTIONS(2434), + [anon_sym_ATselector] = ACTIONS(2434), + [anon_sym_ATavailable] = ACTIONS(2434), + [anon_sym___builtin_available] = ACTIONS(2432), + [anon_sym_va_arg] = ACTIONS(2432), + [anon_sym_ATencode] = ACTIONS(2434), + [anon_sym_ATsynchronized] = ACTIONS(2434), + [anon_sym_BOOL] = ACTIONS(2432), + [anon_sym_IMP] = ACTIONS(2432), + [anon_sym_SEL] = ACTIONS(2432), + [anon_sym_Class] = ACTIONS(2432), + [anon_sym_id] = ACTIONS(2432), + }, + [384] = { + [sym_identifier] = ACTIONS(2428), + [aux_sym_preproc_include_token1] = ACTIONS(2428), + [aux_sym_preproc_include_token2] = ACTIONS(2428), + [aux_sym_preproc_def_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token2] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2428), + [aux_sym_preproc_else_token1] = ACTIONS(2428), + [aux_sym_preproc_elif_token1] = ACTIONS(2428), + [sym_preproc_directive] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_STAR] = ACTIONS(2430), + [anon_sym_CARET] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym___cdecl] = ACTIONS(2428), + [anon_sym___clrcall] = ACTIONS(2428), + [anon_sym___stdcall] = ACTIONS(2428), + [anon_sym___fastcall] = ACTIONS(2428), + [anon_sym___thiscall] = ACTIONS(2428), + [anon_sym___vectorcall] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_ATautoreleasepool] = ACTIONS(2430), + [anon_sym_auto] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_CG_EXTERN] = ACTIONS(2428), + [anon_sym_CG_INLINE] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2428), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2428), + [anon_sym_IBOutlet] = ACTIONS(2428), + [anon_sym_IBInspectable] = ACTIONS(2428), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2428), + [anon_sym_NS_INLINE] = ACTIONS(2428), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2428), + [anon_sym_OBJC_EXPORT] = ACTIONS(2428), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_nullable] = ACTIONS(2428), + [anon_sym__Complex] = ACTIONS(2428), + [anon_sym__Nullable] = ACTIONS(2428), + [anon_sym__Nullable_result] = ACTIONS(2428), + [anon_sym__Null_unspecified] = ACTIONS(2428), + [anon_sym___autoreleasing] = ACTIONS(2428), + [anon_sym___block] = ACTIONS(2428), + [anon_sym___bridge] = ACTIONS(2428), + [anon_sym___bridge_retained] = ACTIONS(2428), + [anon_sym___bridge_transfer] = ACTIONS(2428), + [anon_sym___complex] = ACTIONS(2428), + [anon_sym___const] = ACTIONS(2428), + [anon_sym___imag] = ACTIONS(2428), + [anon_sym___kindof] = ACTIONS(2428), + [anon_sym___nonnull] = ACTIONS(2428), + [anon_sym___nullable] = ACTIONS(2428), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2428), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2428), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2428), + [anon_sym___real] = ACTIONS(2428), + [anon_sym___strong] = ACTIONS(2428), + [anon_sym___unsafe_unretained] = ACTIONS(2428), + [anon_sym___unused] = ACTIONS(2428), + [anon_sym___weak] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_else] = ACTIONS(2428), + [anon_sym_switch] = ACTIONS(2428), + [anon_sym_case] = ACTIONS(2428), + [anon_sym_default] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_do] = ACTIONS(2428), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_in] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_goto] = ACTIONS(2428), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_sizeof] = ACTIONS(2428), + [anon_sym___alignof__] = ACTIONS(2428), + [anon_sym___alignof] = ACTIONS(2428), + [anon_sym__alignof] = ACTIONS(2428), + [anon_sym_alignof] = ACTIONS(2428), + [anon_sym__Alignof] = ACTIONS(2428), + [anon_sym_offsetof] = ACTIONS(2428), + [anon_sym__Generic] = ACTIONS(2428), + [anon_sym_asm] = ACTIONS(2428), + [anon_sym___asm__] = ACTIONS(2428), + [anon_sym___asm] = ACTIONS(2428), + [sym_number_literal] = ACTIONS(2430), + [anon_sym_L_SQUOTE] = ACTIONS(2430), + [anon_sym_u_SQUOTE] = ACTIONS(2430), + [anon_sym_U_SQUOTE] = ACTIONS(2430), + [anon_sym_u8_SQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_AT] = ACTIONS(2428), + [anon_sym_DQUOTE] = ACTIONS(2430), + [anon_sym_L_DQUOTE] = ACTIONS(2430), + [anon_sym_u_DQUOTE] = ACTIONS(2430), + [anon_sym_U_DQUOTE] = ACTIONS(2430), + [anon_sym_u8_DQUOTE] = ACTIONS(2430), + [sym_true] = ACTIONS(2428), + [sym_false] = ACTIONS(2428), + [anon_sym_NULL] = ACTIONS(2428), + [anon_sym_nullptr] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2428), + [anon_sym___typeof] = ACTIONS(2428), + [anon_sym_typeof] = ACTIONS(2428), + [anon_sym_ATimport] = ACTIONS(2430), + [aux_sym_preproc_undef_token1] = ACTIONS(2428), + [anon_sym_POUND] = ACTIONS(2428), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2428), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2428), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2428), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2428), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE] = ACTIONS(2428), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_API_AVAILABLE] = ACTIONS(2428), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_API_DEPRECATED] = ACTIONS(2428), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2428), + [anon_sym___deprecated_msg] = ACTIONS(2428), + [anon_sym___deprecated_enum_msg] = ACTIONS(2428), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2428), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2428), + [anon_sym_ATprotocol] = ACTIONS(2430), + [anon_sym_ATinterface] = ACTIONS(2430), + [anon_sym_ATimplementation] = ACTIONS(2430), + [anon_sym_ATcompatibility_alias] = ACTIONS(2430), + [anon_sym_ATsynthesize] = ACTIONS(2430), + [anon_sym_ATdynamic] = ACTIONS(2430), + [anon_sym_ATtry] = ACTIONS(2430), + [anon_sym___try] = ACTIONS(2428), + [anon_sym_ATthrow] = ACTIONS(2430), + [anon_sym_ATselector] = ACTIONS(2430), + [anon_sym_ATavailable] = ACTIONS(2430), + [anon_sym___builtin_available] = ACTIONS(2428), + [anon_sym_va_arg] = ACTIONS(2428), + [anon_sym_ATencode] = ACTIONS(2430), + [anon_sym_ATsynchronized] = ACTIONS(2430), + [anon_sym_BOOL] = ACTIONS(2428), + [anon_sym_IMP] = ACTIONS(2428), + [anon_sym_SEL] = ACTIONS(2428), + [anon_sym_Class] = ACTIONS(2428), + [anon_sym_id] = ACTIONS(2428), + }, + [385] = { + [sym_identifier] = ACTIONS(2446), + [aux_sym_preproc_include_token1] = ACTIONS(2446), + [aux_sym_preproc_include_token2] = ACTIONS(2446), + [aux_sym_preproc_def_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token2] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2446), + [aux_sym_preproc_else_token1] = ACTIONS(2446), + [aux_sym_preproc_elif_token1] = ACTIONS(2446), + [sym_preproc_directive] = ACTIONS(2446), + [anon_sym_LPAREN2] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_TILDE] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_STAR] = ACTIONS(2448), + [anon_sym_CARET] = ACTIONS(2448), + [anon_sym_AMP] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym___extension__] = ACTIONS(2446), + [anon_sym_typedef] = ACTIONS(2446), + [anon_sym_extern] = ACTIONS(2446), + [anon_sym___attribute__] = ACTIONS(2446), + [anon_sym___attribute] = ACTIONS(2446), + [anon_sym_noreturn] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym___declspec] = ACTIONS(2446), + [anon_sym___cdecl] = ACTIONS(2446), + [anon_sym___clrcall] = ACTIONS(2446), + [anon_sym___stdcall] = ACTIONS(2446), + [anon_sym___fastcall] = ACTIONS(2446), + [anon_sym___thiscall] = ACTIONS(2446), + [anon_sym___vectorcall] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_signed] = ACTIONS(2446), + [anon_sym_unsigned] = ACTIONS(2446), + [anon_sym_long] = ACTIONS(2446), + [anon_sym_short] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_ATautoreleasepool] = ACTIONS(2448), + [anon_sym_auto] = ACTIONS(2446), + [anon_sym_register] = ACTIONS(2446), + [anon_sym_inline] = ACTIONS(2446), + [anon_sym___inline] = ACTIONS(2446), + [anon_sym___inline__] = ACTIONS(2446), + [anon_sym___forceinline] = ACTIONS(2446), + [anon_sym_thread_local] = ACTIONS(2446), + [anon_sym___thread] = ACTIONS(2446), + [anon_sym_CG_EXTERN] = ACTIONS(2446), + [anon_sym_CG_INLINE] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2446), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2446), + [anon_sym_IBOutlet] = ACTIONS(2446), + [anon_sym_IBInspectable] = ACTIONS(2446), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2446), + [anon_sym_NS_INLINE] = ACTIONS(2446), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2446), + [anon_sym_OBJC_EXPORT] = ACTIONS(2446), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [anon_sym_constexpr] = ACTIONS(2446), + [anon_sym_volatile] = ACTIONS(2446), + [anon_sym_restrict] = ACTIONS(2446), + [anon_sym___restrict__] = ACTIONS(2446), + [anon_sym__Atomic] = ACTIONS(2446), + [anon_sym__Noreturn] = ACTIONS(2446), + [anon_sym__Nonnull] = ACTIONS(2446), + [anon_sym_nullable] = ACTIONS(2446), + [anon_sym__Complex] = ACTIONS(2446), + [anon_sym__Nullable] = ACTIONS(2446), + [anon_sym__Nullable_result] = ACTIONS(2446), + [anon_sym__Null_unspecified] = ACTIONS(2446), + [anon_sym___autoreleasing] = ACTIONS(2446), + [anon_sym___block] = ACTIONS(2446), + [anon_sym___bridge] = ACTIONS(2446), + [anon_sym___bridge_retained] = ACTIONS(2446), + [anon_sym___bridge_transfer] = ACTIONS(2446), + [anon_sym___complex] = ACTIONS(2446), + [anon_sym___const] = ACTIONS(2446), + [anon_sym___imag] = ACTIONS(2446), + [anon_sym___kindof] = ACTIONS(2446), + [anon_sym___nonnull] = ACTIONS(2446), + [anon_sym___nullable] = ACTIONS(2446), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2446), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2446), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2446), + [anon_sym___real] = ACTIONS(2446), + [anon_sym___strong] = ACTIONS(2446), + [anon_sym___unsafe_unretained] = ACTIONS(2446), + [anon_sym___unused] = ACTIONS(2446), + [anon_sym___weak] = ACTIONS(2446), + [anon_sym_alignas] = ACTIONS(2446), + [anon_sym__Alignas] = ACTIONS(2446), + [sym_primitive_type] = ACTIONS(2446), + [anon_sym_enum] = ACTIONS(2446), + [anon_sym_struct] = ACTIONS(2446), + [anon_sym_union] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2446), + [anon_sym_else] = ACTIONS(2446), + [anon_sym_switch] = ACTIONS(2446), + [anon_sym_case] = ACTIONS(2446), + [anon_sym_default] = ACTIONS(2446), + [anon_sym_while] = ACTIONS(2446), + [anon_sym_do] = ACTIONS(2446), + [anon_sym_for] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_return] = ACTIONS(2446), + [anon_sym_break] = ACTIONS(2446), + [anon_sym_continue] = ACTIONS(2446), + [anon_sym_goto] = ACTIONS(2446), + [anon_sym_DASH_DASH] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2448), + [anon_sym_sizeof] = ACTIONS(2446), + [anon_sym___alignof__] = ACTIONS(2446), + [anon_sym___alignof] = ACTIONS(2446), + [anon_sym__alignof] = ACTIONS(2446), + [anon_sym_alignof] = ACTIONS(2446), + [anon_sym__Alignof] = ACTIONS(2446), + [anon_sym_offsetof] = ACTIONS(2446), + [anon_sym__Generic] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(2446), + [anon_sym___asm__] = ACTIONS(2446), + [anon_sym___asm] = ACTIONS(2446), + [sym_number_literal] = ACTIONS(2448), + [anon_sym_L_SQUOTE] = ACTIONS(2448), + [anon_sym_u_SQUOTE] = ACTIONS(2448), + [anon_sym_U_SQUOTE] = ACTIONS(2448), + [anon_sym_u8_SQUOTE] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_L_DQUOTE] = ACTIONS(2448), + [anon_sym_u_DQUOTE] = ACTIONS(2448), + [anon_sym_U_DQUOTE] = ACTIONS(2448), + [anon_sym_u8_DQUOTE] = ACTIONS(2448), + [sym_true] = ACTIONS(2446), + [sym_false] = ACTIONS(2446), + [anon_sym_NULL] = ACTIONS(2446), + [anon_sym_nullptr] = ACTIONS(2446), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2446), + [anon_sym___typeof] = ACTIONS(2446), + [anon_sym_typeof] = ACTIONS(2446), + [anon_sym_ATimport] = ACTIONS(2448), + [aux_sym_preproc_undef_token1] = ACTIONS(2446), + [anon_sym_POUND] = ACTIONS(2446), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2446), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2446), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2446), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2446), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE] = ACTIONS(2446), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_API_AVAILABLE] = ACTIONS(2446), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_API_DEPRECATED] = ACTIONS(2446), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2446), + [anon_sym___deprecated_msg] = ACTIONS(2446), + [anon_sym___deprecated_enum_msg] = ACTIONS(2446), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2446), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2446), + [anon_sym_ATprotocol] = ACTIONS(2448), + [anon_sym_ATinterface] = ACTIONS(2448), + [anon_sym_ATimplementation] = ACTIONS(2448), + [anon_sym_ATcompatibility_alias] = ACTIONS(2448), + [anon_sym_ATsynthesize] = ACTIONS(2448), + [anon_sym_ATdynamic] = ACTIONS(2448), + [anon_sym_ATtry] = ACTIONS(2448), + [anon_sym___try] = ACTIONS(2446), + [anon_sym_ATthrow] = ACTIONS(2448), + [anon_sym_ATselector] = ACTIONS(2448), + [anon_sym_ATavailable] = ACTIONS(2448), + [anon_sym___builtin_available] = ACTIONS(2446), + [anon_sym_va_arg] = ACTIONS(2446), + [anon_sym_ATencode] = ACTIONS(2448), + [anon_sym_ATsynchronized] = ACTIONS(2448), + [anon_sym_BOOL] = ACTIONS(2446), + [anon_sym_IMP] = ACTIONS(2446), + [anon_sym_SEL] = ACTIONS(2446), + [anon_sym_Class] = ACTIONS(2446), + [anon_sym_id] = ACTIONS(2446), + }, + [386] = { + [sym_identifier] = ACTIONS(2450), + [aux_sym_preproc_include_token1] = ACTIONS(2450), + [aux_sym_preproc_include_token2] = ACTIONS(2450), + [aux_sym_preproc_def_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token2] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2450), + [aux_sym_preproc_else_token1] = ACTIONS(2450), + [aux_sym_preproc_elif_token1] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2450), + [anon_sym_LPAREN2] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_CARET] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym___cdecl] = ACTIONS(2450), + [anon_sym___clrcall] = ACTIONS(2450), + [anon_sym___stdcall] = ACTIONS(2450), + [anon_sym___fastcall] = ACTIONS(2450), + [anon_sym___thiscall] = ACTIONS(2450), + [anon_sym___vectorcall] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2452), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_ATautoreleasepool] = ACTIONS(2452), + [anon_sym_auto] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_CG_EXTERN] = ACTIONS(2450), + [anon_sym_CG_INLINE] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2450), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2450), + [anon_sym_IBOutlet] = ACTIONS(2450), + [anon_sym_IBInspectable] = ACTIONS(2450), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2450), + [anon_sym_NS_INLINE] = ACTIONS(2450), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2450), + [anon_sym_OBJC_EXPORT] = ACTIONS(2450), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_nullable] = ACTIONS(2450), + [anon_sym__Complex] = ACTIONS(2450), + [anon_sym__Nullable] = ACTIONS(2450), + [anon_sym__Nullable_result] = ACTIONS(2450), + [anon_sym__Null_unspecified] = ACTIONS(2450), + [anon_sym___autoreleasing] = ACTIONS(2450), + [anon_sym___block] = ACTIONS(2450), + [anon_sym___bridge] = ACTIONS(2450), + [anon_sym___bridge_retained] = ACTIONS(2450), + [anon_sym___bridge_transfer] = ACTIONS(2450), + [anon_sym___complex] = ACTIONS(2450), + [anon_sym___const] = ACTIONS(2450), + [anon_sym___imag] = ACTIONS(2450), + [anon_sym___kindof] = ACTIONS(2450), + [anon_sym___nonnull] = ACTIONS(2450), + [anon_sym___nullable] = ACTIONS(2450), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2450), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2450), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2450), + [anon_sym___real] = ACTIONS(2450), + [anon_sym___strong] = ACTIONS(2450), + [anon_sym___unsafe_unretained] = ACTIONS(2450), + [anon_sym___unused] = ACTIONS(2450), + [anon_sym___weak] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_else] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2450), + [anon_sym_case] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2450), + [anon_sym_while] = ACTIONS(2450), + [anon_sym_do] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_break] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_goto] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2452), + [anon_sym_sizeof] = ACTIONS(2450), + [anon_sym___alignof__] = ACTIONS(2450), + [anon_sym___alignof] = ACTIONS(2450), + [anon_sym__alignof] = ACTIONS(2450), + [anon_sym_alignof] = ACTIONS(2450), + [anon_sym__Alignof] = ACTIONS(2450), + [anon_sym_offsetof] = ACTIONS(2450), + [anon_sym__Generic] = ACTIONS(2450), + [anon_sym_asm] = ACTIONS(2450), + [anon_sym___asm__] = ACTIONS(2450), + [anon_sym___asm] = ACTIONS(2450), + [sym_number_literal] = ACTIONS(2452), + [anon_sym_L_SQUOTE] = ACTIONS(2452), + [anon_sym_u_SQUOTE] = ACTIONS(2452), + [anon_sym_U_SQUOTE] = ACTIONS(2452), + [anon_sym_u8_SQUOTE] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(2452), + [anon_sym_AT] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2452), + [anon_sym_L_DQUOTE] = ACTIONS(2452), + [anon_sym_u_DQUOTE] = ACTIONS(2452), + [anon_sym_U_DQUOTE] = ACTIONS(2452), + [anon_sym_u8_DQUOTE] = ACTIONS(2452), + [sym_true] = ACTIONS(2450), + [sym_false] = ACTIONS(2450), + [anon_sym_NULL] = ACTIONS(2450), + [anon_sym_nullptr] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2450), + [anon_sym___typeof] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [anon_sym_ATimport] = ACTIONS(2452), + [aux_sym_preproc_undef_token1] = ACTIONS(2450), + [anon_sym_POUND] = ACTIONS(2450), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2450), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2450), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2450), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2450), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE] = ACTIONS(2450), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_API_AVAILABLE] = ACTIONS(2450), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_API_DEPRECATED] = ACTIONS(2450), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2450), + [anon_sym___deprecated_msg] = ACTIONS(2450), + [anon_sym___deprecated_enum_msg] = ACTIONS(2450), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2450), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2450), + [anon_sym_ATprotocol] = ACTIONS(2452), + [anon_sym_ATinterface] = ACTIONS(2452), + [anon_sym_ATimplementation] = ACTIONS(2452), + [anon_sym_ATcompatibility_alias] = ACTIONS(2452), + [anon_sym_ATsynthesize] = ACTIONS(2452), + [anon_sym_ATdynamic] = ACTIONS(2452), + [anon_sym_ATtry] = ACTIONS(2452), + [anon_sym___try] = ACTIONS(2450), + [anon_sym_ATthrow] = ACTIONS(2452), + [anon_sym_ATselector] = ACTIONS(2452), + [anon_sym_ATavailable] = ACTIONS(2452), + [anon_sym___builtin_available] = ACTIONS(2450), + [anon_sym_va_arg] = ACTIONS(2450), + [anon_sym_ATencode] = ACTIONS(2452), + [anon_sym_ATsynchronized] = ACTIONS(2452), + [anon_sym_BOOL] = ACTIONS(2450), + [anon_sym_IMP] = ACTIONS(2450), + [anon_sym_SEL] = ACTIONS(2450), + [anon_sym_Class] = ACTIONS(2450), + [anon_sym_id] = ACTIONS(2450), + }, + [387] = { + [sym_identifier] = ACTIONS(2454), + [aux_sym_preproc_include_token1] = ACTIONS(2454), + [aux_sym_preproc_include_token2] = ACTIONS(2454), + [aux_sym_preproc_def_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token2] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2454), + [aux_sym_preproc_else_token1] = ACTIONS(2454), + [aux_sym_preproc_elif_token1] = ACTIONS(2454), + [sym_preproc_directive] = ACTIONS(2454), + [anon_sym_LPAREN2] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_CARET] = ACTIONS(2456), + [anon_sym_AMP] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym___extension__] = ACTIONS(2454), + [anon_sym_typedef] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym___attribute__] = ACTIONS(2454), + [anon_sym___attribute] = ACTIONS(2454), + [anon_sym_noreturn] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym___declspec] = ACTIONS(2454), + [anon_sym___cdecl] = ACTIONS(2454), + [anon_sym___clrcall] = ACTIONS(2454), + [anon_sym___stdcall] = ACTIONS(2454), + [anon_sym___fastcall] = ACTIONS(2454), + [anon_sym___thiscall] = ACTIONS(2454), + [anon_sym___vectorcall] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_signed] = ACTIONS(2454), + [anon_sym_unsigned] = ACTIONS(2454), + [anon_sym_long] = ACTIONS(2454), + [anon_sym_short] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_ATautoreleasepool] = ACTIONS(2456), + [anon_sym_auto] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_inline] = ACTIONS(2454), + [anon_sym___inline] = ACTIONS(2454), + [anon_sym___inline__] = ACTIONS(2454), + [anon_sym___forceinline] = ACTIONS(2454), + [anon_sym_thread_local] = ACTIONS(2454), + [anon_sym___thread] = ACTIONS(2454), + [anon_sym_CG_EXTERN] = ACTIONS(2454), + [anon_sym_CG_INLINE] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2454), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2454), + [anon_sym_IBOutlet] = ACTIONS(2454), + [anon_sym_IBInspectable] = ACTIONS(2454), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2454), + [anon_sym_NS_INLINE] = ACTIONS(2454), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2454), + [anon_sym_OBJC_EXPORT] = ACTIONS(2454), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_constexpr] = ACTIONS(2454), + [anon_sym_volatile] = ACTIONS(2454), + [anon_sym_restrict] = ACTIONS(2454), + [anon_sym___restrict__] = ACTIONS(2454), + [anon_sym__Atomic] = ACTIONS(2454), + [anon_sym__Noreturn] = ACTIONS(2454), + [anon_sym__Nonnull] = ACTIONS(2454), + [anon_sym_nullable] = ACTIONS(2454), + [anon_sym__Complex] = ACTIONS(2454), + [anon_sym__Nullable] = ACTIONS(2454), + [anon_sym__Nullable_result] = ACTIONS(2454), + [anon_sym__Null_unspecified] = ACTIONS(2454), + [anon_sym___autoreleasing] = ACTIONS(2454), + [anon_sym___block] = ACTIONS(2454), + [anon_sym___bridge] = ACTIONS(2454), + [anon_sym___bridge_retained] = ACTIONS(2454), + [anon_sym___bridge_transfer] = ACTIONS(2454), + [anon_sym___complex] = ACTIONS(2454), + [anon_sym___const] = ACTIONS(2454), + [anon_sym___imag] = ACTIONS(2454), + [anon_sym___kindof] = ACTIONS(2454), + [anon_sym___nonnull] = ACTIONS(2454), + [anon_sym___nullable] = ACTIONS(2454), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2454), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2454), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2454), + [anon_sym___real] = ACTIONS(2454), + [anon_sym___strong] = ACTIONS(2454), + [anon_sym___unsafe_unretained] = ACTIONS(2454), + [anon_sym___unused] = ACTIONS(2454), + [anon_sym___weak] = ACTIONS(2454), + [anon_sym_alignas] = ACTIONS(2454), + [anon_sym__Alignas] = ACTIONS(2454), + [sym_primitive_type] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2454), + [anon_sym_else] = ACTIONS(2454), + [anon_sym_switch] = ACTIONS(2454), + [anon_sym_case] = ACTIONS(2454), + [anon_sym_default] = ACTIONS(2454), + [anon_sym_while] = ACTIONS(2454), + [anon_sym_do] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_in] = ACTIONS(2454), + [anon_sym_return] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_goto] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_sizeof] = ACTIONS(2454), + [anon_sym___alignof__] = ACTIONS(2454), + [anon_sym___alignof] = ACTIONS(2454), + [anon_sym__alignof] = ACTIONS(2454), + [anon_sym_alignof] = ACTIONS(2454), + [anon_sym__Alignof] = ACTIONS(2454), + [anon_sym_offsetof] = ACTIONS(2454), + [anon_sym__Generic] = ACTIONS(2454), + [anon_sym_asm] = ACTIONS(2454), + [anon_sym___asm__] = ACTIONS(2454), + [anon_sym___asm] = ACTIONS(2454), + [sym_number_literal] = ACTIONS(2456), + [anon_sym_L_SQUOTE] = ACTIONS(2456), + [anon_sym_u_SQUOTE] = ACTIONS(2456), + [anon_sym_U_SQUOTE] = ACTIONS(2456), + [anon_sym_u8_SQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_L_DQUOTE] = ACTIONS(2456), + [anon_sym_u_DQUOTE] = ACTIONS(2456), + [anon_sym_U_DQUOTE] = ACTIONS(2456), + [anon_sym_u8_DQUOTE] = ACTIONS(2456), + [sym_true] = ACTIONS(2454), + [sym_false] = ACTIONS(2454), + [anon_sym_NULL] = ACTIONS(2454), + [anon_sym_nullptr] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2454), + [anon_sym___typeof] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(2454), + [anon_sym_ATimport] = ACTIONS(2456), + [aux_sym_preproc_undef_token1] = ACTIONS(2454), + [anon_sym_POUND] = ACTIONS(2454), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2454), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2454), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2454), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2454), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE] = ACTIONS(2454), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_API_AVAILABLE] = ACTIONS(2454), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_API_DEPRECATED] = ACTIONS(2454), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2454), + [anon_sym___deprecated_msg] = ACTIONS(2454), + [anon_sym___deprecated_enum_msg] = ACTIONS(2454), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2454), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2454), + [anon_sym_ATprotocol] = ACTIONS(2456), + [anon_sym_ATinterface] = ACTIONS(2456), + [anon_sym_ATimplementation] = ACTIONS(2456), + [anon_sym_ATcompatibility_alias] = ACTIONS(2456), + [anon_sym_ATsynthesize] = ACTIONS(2456), + [anon_sym_ATdynamic] = ACTIONS(2456), + [anon_sym_ATtry] = ACTIONS(2456), + [anon_sym___try] = ACTIONS(2454), + [anon_sym_ATthrow] = ACTIONS(2456), + [anon_sym_ATselector] = ACTIONS(2456), + [anon_sym_ATavailable] = ACTIONS(2456), + [anon_sym___builtin_available] = ACTIONS(2454), + [anon_sym_va_arg] = ACTIONS(2454), + [anon_sym_ATencode] = ACTIONS(2456), + [anon_sym_ATsynchronized] = ACTIONS(2456), + [anon_sym_BOOL] = ACTIONS(2454), + [anon_sym_IMP] = ACTIONS(2454), + [anon_sym_SEL] = ACTIONS(2454), + [anon_sym_Class] = ACTIONS(2454), + [anon_sym_id] = ACTIONS(2454), + }, + [388] = { + [sym_identifier] = ACTIONS(2454), + [aux_sym_preproc_include_token1] = ACTIONS(2454), + [aux_sym_preproc_include_token2] = ACTIONS(2454), + [aux_sym_preproc_def_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token2] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2454), + [aux_sym_preproc_else_token1] = ACTIONS(2454), + [aux_sym_preproc_elif_token1] = ACTIONS(2454), + [sym_preproc_directive] = ACTIONS(2454), + [anon_sym_LPAREN2] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_CARET] = ACTIONS(2456), + [anon_sym_AMP] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym___extension__] = ACTIONS(2454), + [anon_sym_typedef] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym___attribute__] = ACTIONS(2454), + [anon_sym___attribute] = ACTIONS(2454), + [anon_sym_noreturn] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym___declspec] = ACTIONS(2454), + [anon_sym___cdecl] = ACTIONS(2454), + [anon_sym___clrcall] = ACTIONS(2454), + [anon_sym___stdcall] = ACTIONS(2454), + [anon_sym___fastcall] = ACTIONS(2454), + [anon_sym___thiscall] = ACTIONS(2454), + [anon_sym___vectorcall] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_signed] = ACTIONS(2454), + [anon_sym_unsigned] = ACTIONS(2454), + [anon_sym_long] = ACTIONS(2454), + [anon_sym_short] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_ATautoreleasepool] = ACTIONS(2456), + [anon_sym_auto] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_inline] = ACTIONS(2454), + [anon_sym___inline] = ACTIONS(2454), + [anon_sym___inline__] = ACTIONS(2454), + [anon_sym___forceinline] = ACTIONS(2454), + [anon_sym_thread_local] = ACTIONS(2454), + [anon_sym___thread] = ACTIONS(2454), + [anon_sym_CG_EXTERN] = ACTIONS(2454), + [anon_sym_CG_INLINE] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2454), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2454), + [anon_sym_IBOutlet] = ACTIONS(2454), + [anon_sym_IBInspectable] = ACTIONS(2454), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2454), + [anon_sym_NS_INLINE] = ACTIONS(2454), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2454), + [anon_sym_OBJC_EXPORT] = ACTIONS(2454), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_constexpr] = ACTIONS(2454), + [anon_sym_volatile] = ACTIONS(2454), + [anon_sym_restrict] = ACTIONS(2454), + [anon_sym___restrict__] = ACTIONS(2454), + [anon_sym__Atomic] = ACTIONS(2454), + [anon_sym__Noreturn] = ACTIONS(2454), + [anon_sym__Nonnull] = ACTIONS(2454), + [anon_sym_nullable] = ACTIONS(2454), + [anon_sym__Complex] = ACTIONS(2454), + [anon_sym__Nullable] = ACTIONS(2454), + [anon_sym__Nullable_result] = ACTIONS(2454), + [anon_sym__Null_unspecified] = ACTIONS(2454), + [anon_sym___autoreleasing] = ACTIONS(2454), + [anon_sym___block] = ACTIONS(2454), + [anon_sym___bridge] = ACTIONS(2454), + [anon_sym___bridge_retained] = ACTIONS(2454), + [anon_sym___bridge_transfer] = ACTIONS(2454), + [anon_sym___complex] = ACTIONS(2454), + [anon_sym___const] = ACTIONS(2454), + [anon_sym___imag] = ACTIONS(2454), + [anon_sym___kindof] = ACTIONS(2454), + [anon_sym___nonnull] = ACTIONS(2454), + [anon_sym___nullable] = ACTIONS(2454), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2454), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2454), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2454), + [anon_sym___real] = ACTIONS(2454), + [anon_sym___strong] = ACTIONS(2454), + [anon_sym___unsafe_unretained] = ACTIONS(2454), + [anon_sym___unused] = ACTIONS(2454), + [anon_sym___weak] = ACTIONS(2454), + [anon_sym_alignas] = ACTIONS(2454), + [anon_sym__Alignas] = ACTIONS(2454), + [sym_primitive_type] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2454), + [anon_sym_else] = ACTIONS(2454), + [anon_sym_switch] = ACTIONS(2454), + [anon_sym_case] = ACTIONS(2454), + [anon_sym_default] = ACTIONS(2454), + [anon_sym_while] = ACTIONS(2454), + [anon_sym_do] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_in] = ACTIONS(2454), + [anon_sym_return] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_goto] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_sizeof] = ACTIONS(2454), + [anon_sym___alignof__] = ACTIONS(2454), + [anon_sym___alignof] = ACTIONS(2454), + [anon_sym__alignof] = ACTIONS(2454), + [anon_sym_alignof] = ACTIONS(2454), + [anon_sym__Alignof] = ACTIONS(2454), + [anon_sym_offsetof] = ACTIONS(2454), + [anon_sym__Generic] = ACTIONS(2454), + [anon_sym_asm] = ACTIONS(2454), + [anon_sym___asm__] = ACTIONS(2454), + [anon_sym___asm] = ACTIONS(2454), + [sym_number_literal] = ACTIONS(2456), + [anon_sym_L_SQUOTE] = ACTIONS(2456), + [anon_sym_u_SQUOTE] = ACTIONS(2456), + [anon_sym_U_SQUOTE] = ACTIONS(2456), + [anon_sym_u8_SQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_L_DQUOTE] = ACTIONS(2456), + [anon_sym_u_DQUOTE] = ACTIONS(2456), + [anon_sym_U_DQUOTE] = ACTIONS(2456), + [anon_sym_u8_DQUOTE] = ACTIONS(2456), + [sym_true] = ACTIONS(2454), + [sym_false] = ACTIONS(2454), + [anon_sym_NULL] = ACTIONS(2454), + [anon_sym_nullptr] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2454), + [anon_sym___typeof] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(2454), + [anon_sym_ATimport] = ACTIONS(2456), + [aux_sym_preproc_undef_token1] = ACTIONS(2454), + [anon_sym_POUND] = ACTIONS(2454), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2454), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2454), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2454), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2454), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE] = ACTIONS(2454), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_API_AVAILABLE] = ACTIONS(2454), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_API_DEPRECATED] = ACTIONS(2454), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2454), + [anon_sym___deprecated_msg] = ACTIONS(2454), + [anon_sym___deprecated_enum_msg] = ACTIONS(2454), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2454), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2454), + [anon_sym_ATprotocol] = ACTIONS(2456), + [anon_sym_ATinterface] = ACTIONS(2456), + [anon_sym_ATimplementation] = ACTIONS(2456), + [anon_sym_ATcompatibility_alias] = ACTIONS(2456), + [anon_sym_ATsynthesize] = ACTIONS(2456), + [anon_sym_ATdynamic] = ACTIONS(2456), + [anon_sym_ATtry] = ACTIONS(2456), + [anon_sym___try] = ACTIONS(2454), + [anon_sym_ATthrow] = ACTIONS(2456), + [anon_sym_ATselector] = ACTIONS(2456), + [anon_sym_ATavailable] = ACTIONS(2456), + [anon_sym___builtin_available] = ACTIONS(2454), + [anon_sym_va_arg] = ACTIONS(2454), + [anon_sym_ATencode] = ACTIONS(2456), + [anon_sym_ATsynchronized] = ACTIONS(2456), + [anon_sym_BOOL] = ACTIONS(2454), + [anon_sym_IMP] = ACTIONS(2454), + [anon_sym_SEL] = ACTIONS(2454), + [anon_sym_Class] = ACTIONS(2454), + [anon_sym_id] = ACTIONS(2454), + }, + [389] = { + [sym_identifier] = ACTIONS(2446), + [aux_sym_preproc_include_token1] = ACTIONS(2446), + [aux_sym_preproc_include_token2] = ACTIONS(2446), + [aux_sym_preproc_def_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token2] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2446), + [aux_sym_preproc_else_token1] = ACTIONS(2446), + [aux_sym_preproc_elif_token1] = ACTIONS(2446), + [sym_preproc_directive] = ACTIONS(2446), + [anon_sym_LPAREN2] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_TILDE] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_STAR] = ACTIONS(2448), + [anon_sym_CARET] = ACTIONS(2448), + [anon_sym_AMP] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym___extension__] = ACTIONS(2446), + [anon_sym_typedef] = ACTIONS(2446), + [anon_sym_extern] = ACTIONS(2446), + [anon_sym___attribute__] = ACTIONS(2446), + [anon_sym___attribute] = ACTIONS(2446), + [anon_sym_noreturn] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym___declspec] = ACTIONS(2446), + [anon_sym___cdecl] = ACTIONS(2446), + [anon_sym___clrcall] = ACTIONS(2446), + [anon_sym___stdcall] = ACTIONS(2446), + [anon_sym___fastcall] = ACTIONS(2446), + [anon_sym___thiscall] = ACTIONS(2446), + [anon_sym___vectorcall] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_signed] = ACTIONS(2446), + [anon_sym_unsigned] = ACTIONS(2446), + [anon_sym_long] = ACTIONS(2446), + [anon_sym_short] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_ATautoreleasepool] = ACTIONS(2448), + [anon_sym_auto] = ACTIONS(2446), + [anon_sym_register] = ACTIONS(2446), + [anon_sym_inline] = ACTIONS(2446), + [anon_sym___inline] = ACTIONS(2446), + [anon_sym___inline__] = ACTIONS(2446), + [anon_sym___forceinline] = ACTIONS(2446), + [anon_sym_thread_local] = ACTIONS(2446), + [anon_sym___thread] = ACTIONS(2446), + [anon_sym_CG_EXTERN] = ACTIONS(2446), + [anon_sym_CG_INLINE] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2446), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2446), + [anon_sym_IBOutlet] = ACTIONS(2446), + [anon_sym_IBInspectable] = ACTIONS(2446), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2446), + [anon_sym_NS_INLINE] = ACTIONS(2446), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2446), + [anon_sym_OBJC_EXPORT] = ACTIONS(2446), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [anon_sym_constexpr] = ACTIONS(2446), + [anon_sym_volatile] = ACTIONS(2446), + [anon_sym_restrict] = ACTIONS(2446), + [anon_sym___restrict__] = ACTIONS(2446), + [anon_sym__Atomic] = ACTIONS(2446), + [anon_sym__Noreturn] = ACTIONS(2446), + [anon_sym__Nonnull] = ACTIONS(2446), + [anon_sym_nullable] = ACTIONS(2446), + [anon_sym__Complex] = ACTIONS(2446), + [anon_sym__Nullable] = ACTIONS(2446), + [anon_sym__Nullable_result] = ACTIONS(2446), + [anon_sym__Null_unspecified] = ACTIONS(2446), + [anon_sym___autoreleasing] = ACTIONS(2446), + [anon_sym___block] = ACTIONS(2446), + [anon_sym___bridge] = ACTIONS(2446), + [anon_sym___bridge_retained] = ACTIONS(2446), + [anon_sym___bridge_transfer] = ACTIONS(2446), + [anon_sym___complex] = ACTIONS(2446), + [anon_sym___const] = ACTIONS(2446), + [anon_sym___imag] = ACTIONS(2446), + [anon_sym___kindof] = ACTIONS(2446), + [anon_sym___nonnull] = ACTIONS(2446), + [anon_sym___nullable] = ACTIONS(2446), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2446), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2446), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2446), + [anon_sym___real] = ACTIONS(2446), + [anon_sym___strong] = ACTIONS(2446), + [anon_sym___unsafe_unretained] = ACTIONS(2446), + [anon_sym___unused] = ACTIONS(2446), + [anon_sym___weak] = ACTIONS(2446), + [anon_sym_alignas] = ACTIONS(2446), + [anon_sym__Alignas] = ACTIONS(2446), + [sym_primitive_type] = ACTIONS(2446), + [anon_sym_enum] = ACTIONS(2446), + [anon_sym_struct] = ACTIONS(2446), + [anon_sym_union] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2446), + [anon_sym_else] = ACTIONS(2446), + [anon_sym_switch] = ACTIONS(2446), + [anon_sym_case] = ACTIONS(2446), + [anon_sym_default] = ACTIONS(2446), + [anon_sym_while] = ACTIONS(2446), + [anon_sym_do] = ACTIONS(2446), + [anon_sym_for] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_return] = ACTIONS(2446), + [anon_sym_break] = ACTIONS(2446), + [anon_sym_continue] = ACTIONS(2446), + [anon_sym_goto] = ACTIONS(2446), + [anon_sym_DASH_DASH] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2448), + [anon_sym_sizeof] = ACTIONS(2446), + [anon_sym___alignof__] = ACTIONS(2446), + [anon_sym___alignof] = ACTIONS(2446), + [anon_sym__alignof] = ACTIONS(2446), + [anon_sym_alignof] = ACTIONS(2446), + [anon_sym__Alignof] = ACTIONS(2446), + [anon_sym_offsetof] = ACTIONS(2446), + [anon_sym__Generic] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(2446), + [anon_sym___asm__] = ACTIONS(2446), + [anon_sym___asm] = ACTIONS(2446), + [sym_number_literal] = ACTIONS(2448), + [anon_sym_L_SQUOTE] = ACTIONS(2448), + [anon_sym_u_SQUOTE] = ACTIONS(2448), + [anon_sym_U_SQUOTE] = ACTIONS(2448), + [anon_sym_u8_SQUOTE] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_L_DQUOTE] = ACTIONS(2448), + [anon_sym_u_DQUOTE] = ACTIONS(2448), + [anon_sym_U_DQUOTE] = ACTIONS(2448), + [anon_sym_u8_DQUOTE] = ACTIONS(2448), + [sym_true] = ACTIONS(2446), + [sym_false] = ACTIONS(2446), + [anon_sym_NULL] = ACTIONS(2446), + [anon_sym_nullptr] = ACTIONS(2446), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2446), + [anon_sym___typeof] = ACTIONS(2446), + [anon_sym_typeof] = ACTIONS(2446), + [anon_sym_ATimport] = ACTIONS(2448), + [aux_sym_preproc_undef_token1] = ACTIONS(2446), + [anon_sym_POUND] = ACTIONS(2446), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2446), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2446), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2446), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2446), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE] = ACTIONS(2446), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_API_AVAILABLE] = ACTIONS(2446), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_API_DEPRECATED] = ACTIONS(2446), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2446), + [anon_sym___deprecated_msg] = ACTIONS(2446), + [anon_sym___deprecated_enum_msg] = ACTIONS(2446), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2446), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2446), + [anon_sym_ATprotocol] = ACTIONS(2448), + [anon_sym_ATinterface] = ACTIONS(2448), + [anon_sym_ATimplementation] = ACTIONS(2448), + [anon_sym_ATcompatibility_alias] = ACTIONS(2448), + [anon_sym_ATsynthesize] = ACTIONS(2448), + [anon_sym_ATdynamic] = ACTIONS(2448), + [anon_sym_ATtry] = ACTIONS(2448), + [anon_sym___try] = ACTIONS(2446), + [anon_sym_ATthrow] = ACTIONS(2448), + [anon_sym_ATselector] = ACTIONS(2448), + [anon_sym_ATavailable] = ACTIONS(2448), + [anon_sym___builtin_available] = ACTIONS(2446), + [anon_sym_va_arg] = ACTIONS(2446), + [anon_sym_ATencode] = ACTIONS(2448), + [anon_sym_ATsynchronized] = ACTIONS(2448), + [anon_sym_BOOL] = ACTIONS(2446), + [anon_sym_IMP] = ACTIONS(2446), + [anon_sym_SEL] = ACTIONS(2446), + [anon_sym_Class] = ACTIONS(2446), + [anon_sym_id] = ACTIONS(2446), + }, + [390] = { + [sym_identifier] = ACTIONS(2450), + [aux_sym_preproc_include_token1] = ACTIONS(2450), + [aux_sym_preproc_include_token2] = ACTIONS(2450), + [aux_sym_preproc_def_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token2] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2450), + [aux_sym_preproc_else_token1] = ACTIONS(2450), + [aux_sym_preproc_elif_token1] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2450), + [anon_sym_LPAREN2] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_CARET] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym___cdecl] = ACTIONS(2450), + [anon_sym___clrcall] = ACTIONS(2450), + [anon_sym___stdcall] = ACTIONS(2450), + [anon_sym___fastcall] = ACTIONS(2450), + [anon_sym___thiscall] = ACTIONS(2450), + [anon_sym___vectorcall] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2452), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_ATautoreleasepool] = ACTIONS(2452), + [anon_sym_auto] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_CG_EXTERN] = ACTIONS(2450), + [anon_sym_CG_INLINE] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2450), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2450), + [anon_sym_IBOutlet] = ACTIONS(2450), + [anon_sym_IBInspectable] = ACTIONS(2450), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2450), + [anon_sym_NS_INLINE] = ACTIONS(2450), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2450), + [anon_sym_OBJC_EXPORT] = ACTIONS(2450), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_nullable] = ACTIONS(2450), + [anon_sym__Complex] = ACTIONS(2450), + [anon_sym__Nullable] = ACTIONS(2450), + [anon_sym__Nullable_result] = ACTIONS(2450), + [anon_sym__Null_unspecified] = ACTIONS(2450), + [anon_sym___autoreleasing] = ACTIONS(2450), + [anon_sym___block] = ACTIONS(2450), + [anon_sym___bridge] = ACTIONS(2450), + [anon_sym___bridge_retained] = ACTIONS(2450), + [anon_sym___bridge_transfer] = ACTIONS(2450), + [anon_sym___complex] = ACTIONS(2450), + [anon_sym___const] = ACTIONS(2450), + [anon_sym___imag] = ACTIONS(2450), + [anon_sym___kindof] = ACTIONS(2450), + [anon_sym___nonnull] = ACTIONS(2450), + [anon_sym___nullable] = ACTIONS(2450), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2450), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2450), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2450), + [anon_sym___real] = ACTIONS(2450), + [anon_sym___strong] = ACTIONS(2450), + [anon_sym___unsafe_unretained] = ACTIONS(2450), + [anon_sym___unused] = ACTIONS(2450), + [anon_sym___weak] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_else] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2450), + [anon_sym_case] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2450), + [anon_sym_while] = ACTIONS(2450), + [anon_sym_do] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_break] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_goto] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2452), + [anon_sym_sizeof] = ACTIONS(2450), + [anon_sym___alignof__] = ACTIONS(2450), + [anon_sym___alignof] = ACTIONS(2450), + [anon_sym__alignof] = ACTIONS(2450), + [anon_sym_alignof] = ACTIONS(2450), + [anon_sym__Alignof] = ACTIONS(2450), + [anon_sym_offsetof] = ACTIONS(2450), + [anon_sym__Generic] = ACTIONS(2450), + [anon_sym_asm] = ACTIONS(2450), + [anon_sym___asm__] = ACTIONS(2450), + [anon_sym___asm] = ACTIONS(2450), + [sym_number_literal] = ACTIONS(2452), + [anon_sym_L_SQUOTE] = ACTIONS(2452), + [anon_sym_u_SQUOTE] = ACTIONS(2452), + [anon_sym_U_SQUOTE] = ACTIONS(2452), + [anon_sym_u8_SQUOTE] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(2452), + [anon_sym_AT] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2452), + [anon_sym_L_DQUOTE] = ACTIONS(2452), + [anon_sym_u_DQUOTE] = ACTIONS(2452), + [anon_sym_U_DQUOTE] = ACTIONS(2452), + [anon_sym_u8_DQUOTE] = ACTIONS(2452), + [sym_true] = ACTIONS(2450), + [sym_false] = ACTIONS(2450), + [anon_sym_NULL] = ACTIONS(2450), + [anon_sym_nullptr] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2450), + [anon_sym___typeof] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [anon_sym_ATimport] = ACTIONS(2452), + [aux_sym_preproc_undef_token1] = ACTIONS(2450), + [anon_sym_POUND] = ACTIONS(2450), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2450), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2450), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2450), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2450), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE] = ACTIONS(2450), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_API_AVAILABLE] = ACTIONS(2450), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_API_DEPRECATED] = ACTIONS(2450), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2450), + [anon_sym___deprecated_msg] = ACTIONS(2450), + [anon_sym___deprecated_enum_msg] = ACTIONS(2450), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2450), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2450), + [anon_sym_ATprotocol] = ACTIONS(2452), + [anon_sym_ATinterface] = ACTIONS(2452), + [anon_sym_ATimplementation] = ACTIONS(2452), + [anon_sym_ATcompatibility_alias] = ACTIONS(2452), + [anon_sym_ATsynthesize] = ACTIONS(2452), + [anon_sym_ATdynamic] = ACTIONS(2452), + [anon_sym_ATtry] = ACTIONS(2452), + [anon_sym___try] = ACTIONS(2450), + [anon_sym_ATthrow] = ACTIONS(2452), + [anon_sym_ATselector] = ACTIONS(2452), + [anon_sym_ATavailable] = ACTIONS(2452), + [anon_sym___builtin_available] = ACTIONS(2450), + [anon_sym_va_arg] = ACTIONS(2450), + [anon_sym_ATencode] = ACTIONS(2452), + [anon_sym_ATsynchronized] = ACTIONS(2452), + [anon_sym_BOOL] = ACTIONS(2450), + [anon_sym_IMP] = ACTIONS(2450), + [anon_sym_SEL] = ACTIONS(2450), + [anon_sym_Class] = ACTIONS(2450), + [anon_sym_id] = ACTIONS(2450), + }, + [391] = { + [sym_identifier] = ACTIONS(2462), + [aux_sym_preproc_include_token1] = ACTIONS(2462), + [aux_sym_preproc_include_token2] = ACTIONS(2462), + [aux_sym_preproc_def_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token2] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2462), + [aux_sym_preproc_else_token1] = ACTIONS(2462), + [aux_sym_preproc_elif_token1] = ACTIONS(2462), + [sym_preproc_directive] = ACTIONS(2462), + [anon_sym_LPAREN2] = ACTIONS(2464), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_CARET] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym___extension__] = ACTIONS(2462), + [anon_sym_typedef] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym___attribute__] = ACTIONS(2462), + [anon_sym___attribute] = ACTIONS(2462), + [anon_sym_noreturn] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2464), + [anon_sym___declspec] = ACTIONS(2462), + [anon_sym___cdecl] = ACTIONS(2462), + [anon_sym___clrcall] = ACTIONS(2462), + [anon_sym___stdcall] = ACTIONS(2462), + [anon_sym___fastcall] = ACTIONS(2462), + [anon_sym___thiscall] = ACTIONS(2462), + [anon_sym___vectorcall] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_signed] = ACTIONS(2462), + [anon_sym_unsigned] = ACTIONS(2462), + [anon_sym_long] = ACTIONS(2462), + [anon_sym_short] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_ATautoreleasepool] = ACTIONS(2464), + [anon_sym_auto] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_inline] = ACTIONS(2462), + [anon_sym___inline] = ACTIONS(2462), + [anon_sym___inline__] = ACTIONS(2462), + [anon_sym___forceinline] = ACTIONS(2462), + [anon_sym_thread_local] = ACTIONS(2462), + [anon_sym___thread] = ACTIONS(2462), + [anon_sym_CG_EXTERN] = ACTIONS(2462), + [anon_sym_CG_INLINE] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2462), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2462), + [anon_sym_IBOutlet] = ACTIONS(2462), + [anon_sym_IBInspectable] = ACTIONS(2462), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2462), + [anon_sym_NS_INLINE] = ACTIONS(2462), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2462), + [anon_sym_OBJC_EXPORT] = ACTIONS(2462), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_constexpr] = ACTIONS(2462), + [anon_sym_volatile] = ACTIONS(2462), + [anon_sym_restrict] = ACTIONS(2462), + [anon_sym___restrict__] = ACTIONS(2462), + [anon_sym__Atomic] = ACTIONS(2462), + [anon_sym__Noreturn] = ACTIONS(2462), + [anon_sym__Nonnull] = ACTIONS(2462), + [anon_sym_nullable] = ACTIONS(2462), + [anon_sym__Complex] = ACTIONS(2462), + [anon_sym__Nullable] = ACTIONS(2462), + [anon_sym__Nullable_result] = ACTIONS(2462), + [anon_sym__Null_unspecified] = ACTIONS(2462), + [anon_sym___autoreleasing] = ACTIONS(2462), + [anon_sym___block] = ACTIONS(2462), + [anon_sym___bridge] = ACTIONS(2462), + [anon_sym___bridge_retained] = ACTIONS(2462), + [anon_sym___bridge_transfer] = ACTIONS(2462), + [anon_sym___complex] = ACTIONS(2462), + [anon_sym___const] = ACTIONS(2462), + [anon_sym___imag] = ACTIONS(2462), + [anon_sym___kindof] = ACTIONS(2462), + [anon_sym___nonnull] = ACTIONS(2462), + [anon_sym___nullable] = ACTIONS(2462), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2462), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2462), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2462), + [anon_sym___real] = ACTIONS(2462), + [anon_sym___strong] = ACTIONS(2462), + [anon_sym___unsafe_unretained] = ACTIONS(2462), + [anon_sym___unused] = ACTIONS(2462), + [anon_sym___weak] = ACTIONS(2462), + [anon_sym_alignas] = ACTIONS(2462), + [anon_sym__Alignas] = ACTIONS(2462), + [sym_primitive_type] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_case] = ACTIONS(2462), + [anon_sym_default] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_in] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_goto] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(2464), + [anon_sym_sizeof] = ACTIONS(2462), + [anon_sym___alignof__] = ACTIONS(2462), + [anon_sym___alignof] = ACTIONS(2462), + [anon_sym__alignof] = ACTIONS(2462), + [anon_sym_alignof] = ACTIONS(2462), + [anon_sym__Alignof] = ACTIONS(2462), + [anon_sym_offsetof] = ACTIONS(2462), + [anon_sym__Generic] = ACTIONS(2462), + [anon_sym_asm] = ACTIONS(2462), + [anon_sym___asm__] = ACTIONS(2462), + [anon_sym___asm] = ACTIONS(2462), + [sym_number_literal] = ACTIONS(2464), + [anon_sym_L_SQUOTE] = ACTIONS(2464), + [anon_sym_u_SQUOTE] = ACTIONS(2464), + [anon_sym_U_SQUOTE] = ACTIONS(2464), + [anon_sym_u8_SQUOTE] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2464), + [anon_sym_AT] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2464), + [anon_sym_L_DQUOTE] = ACTIONS(2464), + [anon_sym_u_DQUOTE] = ACTIONS(2464), + [anon_sym_U_DQUOTE] = ACTIONS(2464), + [anon_sym_u8_DQUOTE] = ACTIONS(2464), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [anon_sym_NULL] = ACTIONS(2462), + [anon_sym_nullptr] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2462), + [anon_sym___typeof] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [anon_sym_ATimport] = ACTIONS(2464), + [aux_sym_preproc_undef_token1] = ACTIONS(2462), + [anon_sym_POUND] = ACTIONS(2462), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2462), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2462), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2462), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2462), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE] = ACTIONS(2462), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_API_AVAILABLE] = ACTIONS(2462), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_API_DEPRECATED] = ACTIONS(2462), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2462), + [anon_sym___deprecated_msg] = ACTIONS(2462), + [anon_sym___deprecated_enum_msg] = ACTIONS(2462), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2462), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2462), + [anon_sym_ATprotocol] = ACTIONS(2464), + [anon_sym_ATinterface] = ACTIONS(2464), + [anon_sym_ATimplementation] = ACTIONS(2464), + [anon_sym_ATcompatibility_alias] = ACTIONS(2464), + [anon_sym_ATsynthesize] = ACTIONS(2464), + [anon_sym_ATdynamic] = ACTIONS(2464), + [anon_sym_ATtry] = ACTIONS(2464), + [anon_sym___try] = ACTIONS(2462), + [anon_sym_ATthrow] = ACTIONS(2464), + [anon_sym_ATselector] = ACTIONS(2464), + [anon_sym_ATavailable] = ACTIONS(2464), + [anon_sym___builtin_available] = ACTIONS(2462), + [anon_sym_va_arg] = ACTIONS(2462), + [anon_sym_ATencode] = ACTIONS(2464), + [anon_sym_ATsynchronized] = ACTIONS(2464), + [anon_sym_BOOL] = ACTIONS(2462), + [anon_sym_IMP] = ACTIONS(2462), + [anon_sym_SEL] = ACTIONS(2462), + [anon_sym_Class] = ACTIONS(2462), + [anon_sym_id] = ACTIONS(2462), + }, + [392] = { + [sym_identifier] = ACTIONS(2462), + [aux_sym_preproc_include_token1] = ACTIONS(2462), + [aux_sym_preproc_include_token2] = ACTIONS(2462), + [aux_sym_preproc_def_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token2] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2462), + [aux_sym_preproc_else_token1] = ACTIONS(2462), + [aux_sym_preproc_elif_token1] = ACTIONS(2462), + [sym_preproc_directive] = ACTIONS(2462), + [anon_sym_LPAREN2] = ACTIONS(2464), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_CARET] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym___extension__] = ACTIONS(2462), + [anon_sym_typedef] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym___attribute__] = ACTIONS(2462), + [anon_sym___attribute] = ACTIONS(2462), + [anon_sym_noreturn] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2464), + [anon_sym___declspec] = ACTIONS(2462), + [anon_sym___cdecl] = ACTIONS(2462), + [anon_sym___clrcall] = ACTIONS(2462), + [anon_sym___stdcall] = ACTIONS(2462), + [anon_sym___fastcall] = ACTIONS(2462), + [anon_sym___thiscall] = ACTIONS(2462), + [anon_sym___vectorcall] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_signed] = ACTIONS(2462), + [anon_sym_unsigned] = ACTIONS(2462), + [anon_sym_long] = ACTIONS(2462), + [anon_sym_short] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_ATautoreleasepool] = ACTIONS(2464), + [anon_sym_auto] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_inline] = ACTIONS(2462), + [anon_sym___inline] = ACTIONS(2462), + [anon_sym___inline__] = ACTIONS(2462), + [anon_sym___forceinline] = ACTIONS(2462), + [anon_sym_thread_local] = ACTIONS(2462), + [anon_sym___thread] = ACTIONS(2462), + [anon_sym_CG_EXTERN] = ACTIONS(2462), + [anon_sym_CG_INLINE] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2462), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2462), + [anon_sym_IBOutlet] = ACTIONS(2462), + [anon_sym_IBInspectable] = ACTIONS(2462), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2462), + [anon_sym_NS_INLINE] = ACTIONS(2462), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2462), + [anon_sym_OBJC_EXPORT] = ACTIONS(2462), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_constexpr] = ACTIONS(2462), + [anon_sym_volatile] = ACTIONS(2462), + [anon_sym_restrict] = ACTIONS(2462), + [anon_sym___restrict__] = ACTIONS(2462), + [anon_sym__Atomic] = ACTIONS(2462), + [anon_sym__Noreturn] = ACTIONS(2462), + [anon_sym__Nonnull] = ACTIONS(2462), + [anon_sym_nullable] = ACTIONS(2462), + [anon_sym__Complex] = ACTIONS(2462), + [anon_sym__Nullable] = ACTIONS(2462), + [anon_sym__Nullable_result] = ACTIONS(2462), + [anon_sym__Null_unspecified] = ACTIONS(2462), + [anon_sym___autoreleasing] = ACTIONS(2462), + [anon_sym___block] = ACTIONS(2462), + [anon_sym___bridge] = ACTIONS(2462), + [anon_sym___bridge_retained] = ACTIONS(2462), + [anon_sym___bridge_transfer] = ACTIONS(2462), + [anon_sym___complex] = ACTIONS(2462), + [anon_sym___const] = ACTIONS(2462), + [anon_sym___imag] = ACTIONS(2462), + [anon_sym___kindof] = ACTIONS(2462), + [anon_sym___nonnull] = ACTIONS(2462), + [anon_sym___nullable] = ACTIONS(2462), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2462), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2462), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2462), + [anon_sym___real] = ACTIONS(2462), + [anon_sym___strong] = ACTIONS(2462), + [anon_sym___unsafe_unretained] = ACTIONS(2462), + [anon_sym___unused] = ACTIONS(2462), + [anon_sym___weak] = ACTIONS(2462), + [anon_sym_alignas] = ACTIONS(2462), + [anon_sym__Alignas] = ACTIONS(2462), + [sym_primitive_type] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_case] = ACTIONS(2462), + [anon_sym_default] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_in] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_goto] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(2464), + [anon_sym_sizeof] = ACTIONS(2462), + [anon_sym___alignof__] = ACTIONS(2462), + [anon_sym___alignof] = ACTIONS(2462), + [anon_sym__alignof] = ACTIONS(2462), + [anon_sym_alignof] = ACTIONS(2462), + [anon_sym__Alignof] = ACTIONS(2462), + [anon_sym_offsetof] = ACTIONS(2462), + [anon_sym__Generic] = ACTIONS(2462), + [anon_sym_asm] = ACTIONS(2462), + [anon_sym___asm__] = ACTIONS(2462), + [anon_sym___asm] = ACTIONS(2462), + [sym_number_literal] = ACTIONS(2464), + [anon_sym_L_SQUOTE] = ACTIONS(2464), + [anon_sym_u_SQUOTE] = ACTIONS(2464), + [anon_sym_U_SQUOTE] = ACTIONS(2464), + [anon_sym_u8_SQUOTE] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2464), + [anon_sym_AT] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2464), + [anon_sym_L_DQUOTE] = ACTIONS(2464), + [anon_sym_u_DQUOTE] = ACTIONS(2464), + [anon_sym_U_DQUOTE] = ACTIONS(2464), + [anon_sym_u8_DQUOTE] = ACTIONS(2464), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [anon_sym_NULL] = ACTIONS(2462), + [anon_sym_nullptr] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2462), + [anon_sym___typeof] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [anon_sym_ATimport] = ACTIONS(2464), + [aux_sym_preproc_undef_token1] = ACTIONS(2462), + [anon_sym_POUND] = ACTIONS(2462), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2462), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2462), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2462), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2462), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE] = ACTIONS(2462), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_API_AVAILABLE] = ACTIONS(2462), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_API_DEPRECATED] = ACTIONS(2462), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2462), + [anon_sym___deprecated_msg] = ACTIONS(2462), + [anon_sym___deprecated_enum_msg] = ACTIONS(2462), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2462), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2462), + [anon_sym_ATprotocol] = ACTIONS(2464), + [anon_sym_ATinterface] = ACTIONS(2464), + [anon_sym_ATimplementation] = ACTIONS(2464), + [anon_sym_ATcompatibility_alias] = ACTIONS(2464), + [anon_sym_ATsynthesize] = ACTIONS(2464), + [anon_sym_ATdynamic] = ACTIONS(2464), + [anon_sym_ATtry] = ACTIONS(2464), + [anon_sym___try] = ACTIONS(2462), + [anon_sym_ATthrow] = ACTIONS(2464), + [anon_sym_ATselector] = ACTIONS(2464), + [anon_sym_ATavailable] = ACTIONS(2464), + [anon_sym___builtin_available] = ACTIONS(2462), + [anon_sym_va_arg] = ACTIONS(2462), + [anon_sym_ATencode] = ACTIONS(2464), + [anon_sym_ATsynchronized] = ACTIONS(2464), + [anon_sym_BOOL] = ACTIONS(2462), + [anon_sym_IMP] = ACTIONS(2462), + [anon_sym_SEL] = ACTIONS(2462), + [anon_sym_Class] = ACTIONS(2462), + [anon_sym_id] = ACTIONS(2462), + }, + [393] = { + [sym_identifier] = ACTIONS(2416), + [aux_sym_preproc_include_token1] = ACTIONS(2416), + [aux_sym_preproc_include_token2] = ACTIONS(2416), + [aux_sym_preproc_def_token1] = ACTIONS(2416), + [aux_sym_preproc_if_token1] = ACTIONS(2416), + [aux_sym_preproc_if_token2] = ACTIONS(2416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2416), + [aux_sym_preproc_else_token1] = ACTIONS(2416), + [aux_sym_preproc_elif_token1] = ACTIONS(2416), + [sym_preproc_directive] = ACTIONS(2416), + [anon_sym_LPAREN2] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym___extension__] = ACTIONS(2416), + [anon_sym_typedef] = ACTIONS(2416), + [anon_sym_extern] = ACTIONS(2416), + [anon_sym___attribute__] = ACTIONS(2416), + [anon_sym___attribute] = ACTIONS(2416), + [anon_sym_noreturn] = ACTIONS(2416), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym___declspec] = ACTIONS(2416), + [anon_sym___cdecl] = ACTIONS(2416), + [anon_sym___clrcall] = ACTIONS(2416), + [anon_sym___stdcall] = ACTIONS(2416), + [anon_sym___fastcall] = ACTIONS(2416), + [anon_sym___thiscall] = ACTIONS(2416), + [anon_sym___vectorcall] = ACTIONS(2416), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_signed] = ACTIONS(2416), + [anon_sym_unsigned] = ACTIONS(2416), + [anon_sym_long] = ACTIONS(2416), + [anon_sym_short] = ACTIONS(2416), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_ATautoreleasepool] = ACTIONS(2418), + [anon_sym_auto] = ACTIONS(2416), + [anon_sym_register] = ACTIONS(2416), + [anon_sym_inline] = ACTIONS(2416), + [anon_sym___inline] = ACTIONS(2416), + [anon_sym___inline__] = ACTIONS(2416), + [anon_sym___forceinline] = ACTIONS(2416), + [anon_sym_thread_local] = ACTIONS(2416), + [anon_sym___thread] = ACTIONS(2416), + [anon_sym_CG_EXTERN] = ACTIONS(2416), + [anon_sym_CG_INLINE] = ACTIONS(2416), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2416), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2416), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2416), + [anon_sym_IBOutlet] = ACTIONS(2416), + [anon_sym_IBInspectable] = ACTIONS(2416), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2416), + [anon_sym_NS_INLINE] = ACTIONS(2416), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2416), + [anon_sym_OBJC_EXPORT] = ACTIONS(2416), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2416), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2416), + [anon_sym_const] = ACTIONS(2416), + [anon_sym_constexpr] = ACTIONS(2416), + [anon_sym_volatile] = ACTIONS(2416), + [anon_sym_restrict] = ACTIONS(2416), + [anon_sym___restrict__] = ACTIONS(2416), + [anon_sym__Atomic] = ACTIONS(2416), + [anon_sym__Noreturn] = ACTIONS(2416), + [anon_sym__Nonnull] = ACTIONS(2416), + [anon_sym_nullable] = ACTIONS(2416), + [anon_sym__Complex] = ACTIONS(2416), + [anon_sym__Nullable] = ACTIONS(2416), + [anon_sym__Nullable_result] = ACTIONS(2416), + [anon_sym__Null_unspecified] = ACTIONS(2416), + [anon_sym___autoreleasing] = ACTIONS(2416), + [anon_sym___block] = ACTIONS(2416), + [anon_sym___bridge] = ACTIONS(2416), + [anon_sym___bridge_retained] = ACTIONS(2416), + [anon_sym___bridge_transfer] = ACTIONS(2416), + [anon_sym___complex] = ACTIONS(2416), + [anon_sym___const] = ACTIONS(2416), + [anon_sym___imag] = ACTIONS(2416), + [anon_sym___kindof] = ACTIONS(2416), + [anon_sym___nonnull] = ACTIONS(2416), + [anon_sym___nullable] = ACTIONS(2416), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2416), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2416), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2416), + [anon_sym___real] = ACTIONS(2416), + [anon_sym___strong] = ACTIONS(2416), + [anon_sym___unsafe_unretained] = ACTIONS(2416), + [anon_sym___unused] = ACTIONS(2416), + [anon_sym___weak] = ACTIONS(2416), + [anon_sym_alignas] = ACTIONS(2416), + [anon_sym__Alignas] = ACTIONS(2416), + [sym_primitive_type] = ACTIONS(2416), + [anon_sym_enum] = ACTIONS(2416), + [anon_sym_struct] = ACTIONS(2416), + [anon_sym_union] = ACTIONS(2416), + [anon_sym_if] = ACTIONS(2416), + [anon_sym_else] = ACTIONS(2416), + [anon_sym_switch] = ACTIONS(2416), + [anon_sym_case] = ACTIONS(2416), + [anon_sym_default] = ACTIONS(2416), + [anon_sym_while] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2416), + [anon_sym_for] = ACTIONS(2416), + [anon_sym_in] = ACTIONS(2416), + [anon_sym_return] = ACTIONS(2416), + [anon_sym_break] = ACTIONS(2416), + [anon_sym_continue] = ACTIONS(2416), + [anon_sym_goto] = ACTIONS(2416), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_sizeof] = ACTIONS(2416), + [anon_sym___alignof__] = ACTIONS(2416), + [anon_sym___alignof] = ACTIONS(2416), + [anon_sym__alignof] = ACTIONS(2416), + [anon_sym_alignof] = ACTIONS(2416), + [anon_sym__Alignof] = ACTIONS(2416), + [anon_sym_offsetof] = ACTIONS(2416), + [anon_sym__Generic] = ACTIONS(2416), + [anon_sym_asm] = ACTIONS(2416), + [anon_sym___asm__] = ACTIONS(2416), + [anon_sym___asm] = ACTIONS(2416), + [sym_number_literal] = ACTIONS(2418), + [anon_sym_L_SQUOTE] = ACTIONS(2418), + [anon_sym_u_SQUOTE] = ACTIONS(2418), + [anon_sym_U_SQUOTE] = ACTIONS(2418), + [anon_sym_u8_SQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_L_DQUOTE] = ACTIONS(2418), + [anon_sym_u_DQUOTE] = ACTIONS(2418), + [anon_sym_U_DQUOTE] = ACTIONS(2418), + [anon_sym_u8_DQUOTE] = ACTIONS(2418), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2416), + [anon_sym_nullptr] = ACTIONS(2416), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2416), + [anon_sym___typeof] = ACTIONS(2416), + [anon_sym_typeof] = ACTIONS(2416), + [anon_sym_ATimport] = ACTIONS(2418), + [aux_sym_preproc_undef_token1] = ACTIONS(2416), + [anon_sym_POUND] = ACTIONS(2416), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2416), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2416), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2416), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2416), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2416), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2416), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2416), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2416), + [anon_sym_NS_AVAILABLE] = ACTIONS(2416), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2416), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_API_AVAILABLE] = ACTIONS(2416), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_API_DEPRECATED] = ACTIONS(2416), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2416), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2416), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2416), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2416), + [anon_sym___deprecated_msg] = ACTIONS(2416), + [anon_sym___deprecated_enum_msg] = ACTIONS(2416), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2416), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2416), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2416), + [anon_sym_ATprotocol] = ACTIONS(2418), + [anon_sym_ATinterface] = ACTIONS(2418), + [anon_sym_ATimplementation] = ACTIONS(2418), + [anon_sym_ATcompatibility_alias] = ACTIONS(2418), + [anon_sym_ATsynthesize] = ACTIONS(2418), + [anon_sym_ATdynamic] = ACTIONS(2418), + [anon_sym_ATtry] = ACTIONS(2418), + [anon_sym___try] = ACTIONS(2416), + [anon_sym_ATthrow] = ACTIONS(2418), + [anon_sym_ATselector] = ACTIONS(2418), + [anon_sym_ATavailable] = ACTIONS(2418), + [anon_sym___builtin_available] = ACTIONS(2416), + [anon_sym_va_arg] = ACTIONS(2416), + [anon_sym_ATencode] = ACTIONS(2418), + [anon_sym_ATsynchronized] = ACTIONS(2418), + [anon_sym_BOOL] = ACTIONS(2416), + [anon_sym_IMP] = ACTIONS(2416), + [anon_sym_SEL] = ACTIONS(2416), + [anon_sym_Class] = ACTIONS(2416), + [anon_sym_id] = ACTIONS(2416), + }, + [394] = { + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_include_token1] = ACTIONS(2420), + [aux_sym_preproc_include_token2] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2420), + [aux_sym_preproc_if_token1] = ACTIONS(2420), + [aux_sym_preproc_if_token2] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2420), + [aux_sym_preproc_else_token1] = ACTIONS(2420), + [aux_sym_preproc_elif_token1] = ACTIONS(2420), + [sym_preproc_directive] = ACTIONS(2420), + [anon_sym_LPAREN2] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(2422), + [anon_sym_CARET] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym___extension__] = ACTIONS(2420), + [anon_sym_typedef] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym___attribute__] = ACTIONS(2420), + [anon_sym___attribute] = ACTIONS(2420), + [anon_sym_noreturn] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2422), + [anon_sym___declspec] = ACTIONS(2420), + [anon_sym___cdecl] = ACTIONS(2420), + [anon_sym___clrcall] = ACTIONS(2420), + [anon_sym___stdcall] = ACTIONS(2420), + [anon_sym___fastcall] = ACTIONS(2420), + [anon_sym___thiscall] = ACTIONS(2420), + [anon_sym___vectorcall] = ACTIONS(2420), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_signed] = ACTIONS(2420), + [anon_sym_unsigned] = ACTIONS(2420), + [anon_sym_long] = ACTIONS(2420), + [anon_sym_short] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_ATautoreleasepool] = ACTIONS(2422), + [anon_sym_auto] = ACTIONS(2420), + [anon_sym_register] = ACTIONS(2420), + [anon_sym_inline] = ACTIONS(2420), + [anon_sym___inline] = ACTIONS(2420), + [anon_sym___inline__] = ACTIONS(2420), + [anon_sym___forceinline] = ACTIONS(2420), + [anon_sym_thread_local] = ACTIONS(2420), + [anon_sym___thread] = ACTIONS(2420), + [anon_sym_CG_EXTERN] = ACTIONS(2420), + [anon_sym_CG_INLINE] = ACTIONS(2420), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2420), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2420), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2420), + [anon_sym_IBOutlet] = ACTIONS(2420), + [anon_sym_IBInspectable] = ACTIONS(2420), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2420), + [anon_sym_NS_INLINE] = ACTIONS(2420), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2420), + [anon_sym_OBJC_EXPORT] = ACTIONS(2420), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2420), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [anon_sym_constexpr] = ACTIONS(2420), + [anon_sym_volatile] = ACTIONS(2420), + [anon_sym_restrict] = ACTIONS(2420), + [anon_sym___restrict__] = ACTIONS(2420), + [anon_sym__Atomic] = ACTIONS(2420), + [anon_sym__Noreturn] = ACTIONS(2420), + [anon_sym__Nonnull] = ACTIONS(2420), + [anon_sym_nullable] = ACTIONS(2420), + [anon_sym__Complex] = ACTIONS(2420), + [anon_sym__Nullable] = ACTIONS(2420), + [anon_sym__Nullable_result] = ACTIONS(2420), + [anon_sym__Null_unspecified] = ACTIONS(2420), + [anon_sym___autoreleasing] = ACTIONS(2420), + [anon_sym___block] = ACTIONS(2420), + [anon_sym___bridge] = ACTIONS(2420), + [anon_sym___bridge_retained] = ACTIONS(2420), + [anon_sym___bridge_transfer] = ACTIONS(2420), + [anon_sym___complex] = ACTIONS(2420), + [anon_sym___const] = ACTIONS(2420), + [anon_sym___imag] = ACTIONS(2420), + [anon_sym___kindof] = ACTIONS(2420), + [anon_sym___nonnull] = ACTIONS(2420), + [anon_sym___nullable] = ACTIONS(2420), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2420), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2420), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2420), + [anon_sym___real] = ACTIONS(2420), + [anon_sym___strong] = ACTIONS(2420), + [anon_sym___unsafe_unretained] = ACTIONS(2420), + [anon_sym___unused] = ACTIONS(2420), + [anon_sym___weak] = ACTIONS(2420), + [anon_sym_alignas] = ACTIONS(2420), + [anon_sym__Alignas] = ACTIONS(2420), + [sym_primitive_type] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), + [anon_sym_struct] = ACTIONS(2420), + [anon_sym_union] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_else] = ACTIONS(2420), + [anon_sym_switch] = ACTIONS(2420), + [anon_sym_case] = ACTIONS(2420), + [anon_sym_default] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_do] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_in] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_goto] = ACTIONS(2420), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_sizeof] = ACTIONS(2420), + [anon_sym___alignof__] = ACTIONS(2420), + [anon_sym___alignof] = ACTIONS(2420), + [anon_sym__alignof] = ACTIONS(2420), + [anon_sym_alignof] = ACTIONS(2420), + [anon_sym__Alignof] = ACTIONS(2420), + [anon_sym_offsetof] = ACTIONS(2420), + [anon_sym__Generic] = ACTIONS(2420), + [anon_sym_asm] = ACTIONS(2420), + [anon_sym___asm__] = ACTIONS(2420), + [anon_sym___asm] = ACTIONS(2420), + [sym_number_literal] = ACTIONS(2422), + [anon_sym_L_SQUOTE] = ACTIONS(2422), + [anon_sym_u_SQUOTE] = ACTIONS(2422), + [anon_sym_U_SQUOTE] = ACTIONS(2422), + [anon_sym_u8_SQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [anon_sym_AT] = ACTIONS(2420), + [anon_sym_DQUOTE] = ACTIONS(2422), + [anon_sym_L_DQUOTE] = ACTIONS(2422), + [anon_sym_u_DQUOTE] = ACTIONS(2422), + [anon_sym_U_DQUOTE] = ACTIONS(2422), + [anon_sym_u8_DQUOTE] = ACTIONS(2422), + [sym_true] = ACTIONS(2420), + [sym_false] = ACTIONS(2420), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2420), + [anon_sym___typeof] = ACTIONS(2420), + [anon_sym_typeof] = ACTIONS(2420), + [anon_sym_ATimport] = ACTIONS(2422), + [aux_sym_preproc_undef_token1] = ACTIONS(2420), + [anon_sym_POUND] = ACTIONS(2420), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2420), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2420), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2420), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2420), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2420), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2420), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2420), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2420), + [anon_sym_NS_AVAILABLE] = ACTIONS(2420), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2420), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_API_AVAILABLE] = ACTIONS(2420), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_API_DEPRECATED] = ACTIONS(2420), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2420), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2420), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2420), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2420), + [anon_sym___deprecated_msg] = ACTIONS(2420), + [anon_sym___deprecated_enum_msg] = ACTIONS(2420), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2420), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2420), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2420), + [anon_sym_ATprotocol] = ACTIONS(2422), + [anon_sym_ATinterface] = ACTIONS(2422), + [anon_sym_ATimplementation] = ACTIONS(2422), + [anon_sym_ATcompatibility_alias] = ACTIONS(2422), + [anon_sym_ATsynthesize] = ACTIONS(2422), + [anon_sym_ATdynamic] = ACTIONS(2422), + [anon_sym_ATtry] = ACTIONS(2422), + [anon_sym___try] = ACTIONS(2420), + [anon_sym_ATthrow] = ACTIONS(2422), + [anon_sym_ATselector] = ACTIONS(2422), + [anon_sym_ATavailable] = ACTIONS(2422), + [anon_sym___builtin_available] = ACTIONS(2420), + [anon_sym_va_arg] = ACTIONS(2420), + [anon_sym_ATencode] = ACTIONS(2422), + [anon_sym_ATsynchronized] = ACTIONS(2422), + [anon_sym_BOOL] = ACTIONS(2420), + [anon_sym_IMP] = ACTIONS(2420), + [anon_sym_SEL] = ACTIONS(2420), + [anon_sym_Class] = ACTIONS(2420), + [anon_sym_id] = ACTIONS(2420), + }, + [395] = { + [sym_identifier] = ACTIONS(2346), + [aux_sym_preproc_include_token1] = ACTIONS(2346), + [aux_sym_preproc_include_token2] = ACTIONS(2346), + [aux_sym_preproc_def_token1] = ACTIONS(2346), + [aux_sym_preproc_if_token1] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2346), + [sym_preproc_directive] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2346), + [anon_sym_PLUS] = ACTIONS(2346), + [anon_sym_STAR] = ACTIONS(2348), + [anon_sym_CARET] = ACTIONS(2348), + [anon_sym_AMP] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym___extension__] = ACTIONS(2346), + [anon_sym_typedef] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym___attribute__] = ACTIONS(2346), + [anon_sym___attribute] = ACTIONS(2346), + [anon_sym_noreturn] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym___declspec] = ACTIONS(2346), + [anon_sym___cdecl] = ACTIONS(2346), + [anon_sym___clrcall] = ACTIONS(2346), + [anon_sym___stdcall] = ACTIONS(2346), + [anon_sym___fastcall] = ACTIONS(2346), + [anon_sym___thiscall] = ACTIONS(2346), + [anon_sym___vectorcall] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_signed] = ACTIONS(2346), + [anon_sym_unsigned] = ACTIONS(2346), + [anon_sym_long] = ACTIONS(2346), + [anon_sym_short] = ACTIONS(2346), + [anon_sym_static] = ACTIONS(2346), + [anon_sym_ATautoreleasepool] = ACTIONS(2348), + [anon_sym_auto] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2346), + [anon_sym_inline] = ACTIONS(2346), + [anon_sym___inline] = ACTIONS(2346), + [anon_sym___inline__] = ACTIONS(2346), + [anon_sym___forceinline] = ACTIONS(2346), + [anon_sym_thread_local] = ACTIONS(2346), + [anon_sym___thread] = ACTIONS(2346), + [anon_sym_CG_EXTERN] = ACTIONS(2346), + [anon_sym_CG_INLINE] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2346), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2346), + [anon_sym_IBOutlet] = ACTIONS(2346), + [anon_sym_IBInspectable] = ACTIONS(2346), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2346), + [anon_sym_NS_INLINE] = ACTIONS(2346), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2346), + [anon_sym_OBJC_EXPORT] = ACTIONS(2346), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_constexpr] = ACTIONS(2346), + [anon_sym_volatile] = ACTIONS(2346), + [anon_sym_restrict] = ACTIONS(2346), + [anon_sym___restrict__] = ACTIONS(2346), + [anon_sym__Atomic] = ACTIONS(2346), + [anon_sym__Noreturn] = ACTIONS(2346), + [anon_sym__Nonnull] = ACTIONS(2346), + [anon_sym_nullable] = ACTIONS(2346), + [anon_sym__Complex] = ACTIONS(2346), + [anon_sym__Nullable] = ACTIONS(2346), + [anon_sym__Nullable_result] = ACTIONS(2346), + [anon_sym__Null_unspecified] = ACTIONS(2346), + [anon_sym___autoreleasing] = ACTIONS(2346), + [anon_sym___block] = ACTIONS(2346), + [anon_sym___bridge] = ACTIONS(2346), + [anon_sym___bridge_retained] = ACTIONS(2346), + [anon_sym___bridge_transfer] = ACTIONS(2346), + [anon_sym___complex] = ACTIONS(2346), + [anon_sym___const] = ACTIONS(2346), + [anon_sym___imag] = ACTIONS(2346), + [anon_sym___kindof] = ACTIONS(2346), + [anon_sym___nonnull] = ACTIONS(2346), + [anon_sym___nullable] = ACTIONS(2346), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2346), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2346), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2346), + [anon_sym___real] = ACTIONS(2346), + [anon_sym___strong] = ACTIONS(2346), + [anon_sym___unsafe_unretained] = ACTIONS(2346), + [anon_sym___unused] = ACTIONS(2346), + [anon_sym___weak] = ACTIONS(2346), + [anon_sym_alignas] = ACTIONS(2346), + [anon_sym__Alignas] = ACTIONS(2346), + [sym_primitive_type] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_switch] = ACTIONS(2346), + [anon_sym_case] = ACTIONS(2346), + [anon_sym_default] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_do] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_goto] = ACTIONS(2346), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2346), + [anon_sym__Generic] = ACTIONS(2346), + [anon_sym_asm] = ACTIONS(2346), + [anon_sym___asm__] = ACTIONS(2346), + [anon_sym___asm] = ACTIONS(2346), + [sym_number_literal] = ACTIONS(2348), + [anon_sym_L_SQUOTE] = ACTIONS(2348), + [anon_sym_u_SQUOTE] = ACTIONS(2348), + [anon_sym_U_SQUOTE] = ACTIONS(2348), + [anon_sym_u8_SQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_L_DQUOTE] = ACTIONS(2348), + [anon_sym_u_DQUOTE] = ACTIONS(2348), + [anon_sym_U_DQUOTE] = ACTIONS(2348), + [anon_sym_u8_DQUOTE] = ACTIONS(2348), + [sym_true] = ACTIONS(2346), + [sym_false] = ACTIONS(2346), + [anon_sym_NULL] = ACTIONS(2346), + [anon_sym_nullptr] = ACTIONS(2346), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2346), + [anon_sym___typeof] = ACTIONS(2346), + [anon_sym_typeof] = ACTIONS(2346), + [anon_sym_ATimport] = ACTIONS(2348), + [aux_sym_preproc_undef_token1] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(2346), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2346), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2346), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2346), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2346), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE] = ACTIONS(2346), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_API_AVAILABLE] = ACTIONS(2346), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_API_DEPRECATED] = ACTIONS(2346), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2346), + [anon_sym___deprecated_msg] = ACTIONS(2346), + [anon_sym___deprecated_enum_msg] = ACTIONS(2346), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2346), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2346), + [anon_sym_ATprotocol] = ACTIONS(2348), + [anon_sym_ATinterface] = ACTIONS(2348), + [anon_sym_ATimplementation] = ACTIONS(2348), + [anon_sym_ATcompatibility_alias] = ACTIONS(2348), + [anon_sym_ATtry] = ACTIONS(2348), + [anon_sym___try] = ACTIONS(2346), + [anon_sym_ATcatch] = ACTIONS(2348), + [anon_sym___catch] = ACTIONS(2346), + [anon_sym_ATfinally] = ACTIONS(2348), + [anon_sym___finally] = ACTIONS(2346), + [anon_sym_ATthrow] = ACTIONS(2348), + [anon_sym_ATselector] = ACTIONS(2348), + [anon_sym_ATavailable] = ACTIONS(2348), + [anon_sym___builtin_available] = ACTIONS(2346), + [anon_sym_va_arg] = ACTIONS(2346), + [anon_sym_ATencode] = ACTIONS(2348), + [anon_sym_ATsynchronized] = ACTIONS(2348), + [anon_sym_BOOL] = ACTIONS(2346), + [anon_sym_IMP] = ACTIONS(2346), + [anon_sym_SEL] = ACTIONS(2346), + [anon_sym_Class] = ACTIONS(2346), + [anon_sym_id] = ACTIONS(2346), + }, + [396] = { + [sym_identifier] = ACTIONS(2364), + [aux_sym_preproc_include_token1] = ACTIONS(2364), + [aux_sym_preproc_include_token2] = ACTIONS(2364), + [aux_sym_preproc_def_token1] = ACTIONS(2364), + [aux_sym_preproc_if_token1] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2364), + [sym_preproc_directive] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_PLUS] = ACTIONS(2364), + [anon_sym_STAR] = ACTIONS(2366), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_AMP] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_typedef] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym___attribute__] = ACTIONS(2364), + [anon_sym___attribute] = ACTIONS(2364), + [anon_sym_noreturn] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym___declspec] = ACTIONS(2364), + [anon_sym___cdecl] = ACTIONS(2364), + [anon_sym___clrcall] = ACTIONS(2364), + [anon_sym___stdcall] = ACTIONS(2364), + [anon_sym___fastcall] = ACTIONS(2364), + [anon_sym___thiscall] = ACTIONS(2364), + [anon_sym___vectorcall] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_signed] = ACTIONS(2364), + [anon_sym_unsigned] = ACTIONS(2364), + [anon_sym_long] = ACTIONS(2364), + [anon_sym_short] = ACTIONS(2364), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_ATautoreleasepool] = ACTIONS(2366), + [anon_sym_auto] = ACTIONS(2364), + [anon_sym_register] = ACTIONS(2364), + [anon_sym_inline] = ACTIONS(2364), + [anon_sym___inline] = ACTIONS(2364), + [anon_sym___inline__] = ACTIONS(2364), + [anon_sym___forceinline] = ACTIONS(2364), + [anon_sym_thread_local] = ACTIONS(2364), + [anon_sym___thread] = ACTIONS(2364), + [anon_sym_CG_EXTERN] = ACTIONS(2364), + [anon_sym_CG_INLINE] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2364), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2364), + [anon_sym_IBOutlet] = ACTIONS(2364), + [anon_sym_IBInspectable] = ACTIONS(2364), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2364), + [anon_sym_NS_INLINE] = ACTIONS(2364), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2364), + [anon_sym_OBJC_EXPORT] = ACTIONS(2364), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [anon_sym_constexpr] = ACTIONS(2364), + [anon_sym_volatile] = ACTIONS(2364), + [anon_sym_restrict] = ACTIONS(2364), + [anon_sym___restrict__] = ACTIONS(2364), + [anon_sym__Atomic] = ACTIONS(2364), + [anon_sym__Noreturn] = ACTIONS(2364), + [anon_sym__Nonnull] = ACTIONS(2364), + [anon_sym_nullable] = ACTIONS(2364), + [anon_sym__Complex] = ACTIONS(2364), + [anon_sym__Nullable] = ACTIONS(2364), + [anon_sym__Nullable_result] = ACTIONS(2364), + [anon_sym__Null_unspecified] = ACTIONS(2364), + [anon_sym___autoreleasing] = ACTIONS(2364), + [anon_sym___block] = ACTIONS(2364), + [anon_sym___bridge] = ACTIONS(2364), + [anon_sym___bridge_retained] = ACTIONS(2364), + [anon_sym___bridge_transfer] = ACTIONS(2364), + [anon_sym___complex] = ACTIONS(2364), + [anon_sym___const] = ACTIONS(2364), + [anon_sym___imag] = ACTIONS(2364), + [anon_sym___kindof] = ACTIONS(2364), + [anon_sym___nonnull] = ACTIONS(2364), + [anon_sym___nullable] = ACTIONS(2364), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2364), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2364), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2364), + [anon_sym___real] = ACTIONS(2364), + [anon_sym___strong] = ACTIONS(2364), + [anon_sym___unsafe_unretained] = ACTIONS(2364), + [anon_sym___unused] = ACTIONS(2364), + [anon_sym___weak] = ACTIONS(2364), + [anon_sym_alignas] = ACTIONS(2364), + [anon_sym__Alignas] = ACTIONS(2364), + [sym_primitive_type] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(2364), + [anon_sym_union] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_switch] = ACTIONS(2364), + [anon_sym_case] = ACTIONS(2364), + [anon_sym_default] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_do] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_in] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_goto] = ACTIONS(2364), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_sizeof] = ACTIONS(2364), + [anon_sym___alignof__] = ACTIONS(2364), + [anon_sym___alignof] = ACTIONS(2364), + [anon_sym__alignof] = ACTIONS(2364), + [anon_sym_alignof] = ACTIONS(2364), + [anon_sym__Alignof] = ACTIONS(2364), + [anon_sym_offsetof] = ACTIONS(2364), + [anon_sym__Generic] = ACTIONS(2364), + [anon_sym_asm] = ACTIONS(2364), + [anon_sym___asm__] = ACTIONS(2364), + [anon_sym___asm] = ACTIONS(2364), + [sym_number_literal] = ACTIONS(2366), + [anon_sym_L_SQUOTE] = ACTIONS(2366), + [anon_sym_u_SQUOTE] = ACTIONS(2366), + [anon_sym_U_SQUOTE] = ACTIONS(2366), + [anon_sym_u8_SQUOTE] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2366), + [anon_sym_AT] = ACTIONS(2364), + [anon_sym_DQUOTE] = ACTIONS(2366), + [anon_sym_L_DQUOTE] = ACTIONS(2366), + [anon_sym_u_DQUOTE] = ACTIONS(2366), + [anon_sym_U_DQUOTE] = ACTIONS(2366), + [anon_sym_u8_DQUOTE] = ACTIONS(2366), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2364), + [anon_sym___typeof] = ACTIONS(2364), + [anon_sym_typeof] = ACTIONS(2364), + [anon_sym_ATimport] = ACTIONS(2366), + [aux_sym_preproc_undef_token1] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(2364), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2364), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2364), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2364), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2364), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE] = ACTIONS(2364), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_API_AVAILABLE] = ACTIONS(2364), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_API_DEPRECATED] = ACTIONS(2364), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2364), + [anon_sym___deprecated_msg] = ACTIONS(2364), + [anon_sym___deprecated_enum_msg] = ACTIONS(2364), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2364), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2364), + [anon_sym_ATprotocol] = ACTIONS(2366), + [anon_sym_ATinterface] = ACTIONS(2366), + [anon_sym_ATimplementation] = ACTIONS(2366), + [anon_sym_ATcompatibility_alias] = ACTIONS(2366), + [anon_sym_ATtry] = ACTIONS(2366), + [anon_sym___try] = ACTIONS(2364), + [anon_sym_ATcatch] = ACTIONS(2366), + [anon_sym___catch] = ACTIONS(2364), + [anon_sym_ATfinally] = ACTIONS(2366), + [anon_sym___finally] = ACTIONS(2364), + [anon_sym_ATthrow] = ACTIONS(2366), + [anon_sym_ATselector] = ACTIONS(2366), + [anon_sym_ATavailable] = ACTIONS(2366), + [anon_sym___builtin_available] = ACTIONS(2364), + [anon_sym_va_arg] = ACTIONS(2364), + [anon_sym_ATencode] = ACTIONS(2366), + [anon_sym_ATsynchronized] = ACTIONS(2366), + [anon_sym_BOOL] = ACTIONS(2364), + [anon_sym_IMP] = ACTIONS(2364), + [anon_sym_SEL] = ACTIONS(2364), + [anon_sym_Class] = ACTIONS(2364), + [anon_sym_id] = ACTIONS(2364), + }, + [397] = { + [sym_identifier] = ACTIONS(2350), + [aux_sym_preproc_include_token1] = ACTIONS(2350), + [aux_sym_preproc_include_token2] = ACTIONS(2350), + [aux_sym_preproc_def_token1] = ACTIONS(2350), + [aux_sym_preproc_if_token1] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2350), + [sym_preproc_directive] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(2352), + [anon_sym_BANG] = ACTIONS(2352), + [anon_sym_TILDE] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2350), + [anon_sym_STAR] = ACTIONS(2352), + [anon_sym_CARET] = ACTIONS(2352), + [anon_sym_AMP] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2352), + [anon_sym___extension__] = ACTIONS(2350), + [anon_sym_typedef] = ACTIONS(2350), + [anon_sym_extern] = ACTIONS(2350), + [anon_sym___attribute__] = ACTIONS(2350), + [anon_sym___attribute] = ACTIONS(2350), + [anon_sym_noreturn] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2352), + [anon_sym___declspec] = ACTIONS(2350), + [anon_sym___cdecl] = ACTIONS(2350), + [anon_sym___clrcall] = ACTIONS(2350), + [anon_sym___stdcall] = ACTIONS(2350), + [anon_sym___fastcall] = ACTIONS(2350), + [anon_sym___thiscall] = ACTIONS(2350), + [anon_sym___vectorcall] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2352), + [anon_sym_RBRACE] = ACTIONS(2352), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(2350), + [anon_sym_ATautoreleasepool] = ACTIONS(2352), + [anon_sym_auto] = ACTIONS(2350), + [anon_sym_register] = ACTIONS(2350), + [anon_sym_inline] = ACTIONS(2350), + [anon_sym___inline] = ACTIONS(2350), + [anon_sym___inline__] = ACTIONS(2350), + [anon_sym___forceinline] = ACTIONS(2350), + [anon_sym_thread_local] = ACTIONS(2350), + [anon_sym___thread] = ACTIONS(2350), + [anon_sym_CG_EXTERN] = ACTIONS(2350), + [anon_sym_CG_INLINE] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2350), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2350), + [anon_sym_IBOutlet] = ACTIONS(2350), + [anon_sym_IBInspectable] = ACTIONS(2350), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2350), + [anon_sym_NS_INLINE] = ACTIONS(2350), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2350), + [anon_sym_OBJC_EXPORT] = ACTIONS(2350), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2350), + [anon_sym_const] = ACTIONS(2350), + [anon_sym_constexpr] = ACTIONS(2350), + [anon_sym_volatile] = ACTIONS(2350), + [anon_sym_restrict] = ACTIONS(2350), + [anon_sym___restrict__] = ACTIONS(2350), + [anon_sym__Atomic] = ACTIONS(2350), + [anon_sym__Noreturn] = ACTIONS(2350), + [anon_sym__Nonnull] = ACTIONS(2350), + [anon_sym_nullable] = ACTIONS(2350), + [anon_sym__Complex] = ACTIONS(2350), + [anon_sym__Nullable] = ACTIONS(2350), + [anon_sym__Nullable_result] = ACTIONS(2350), + [anon_sym__Null_unspecified] = ACTIONS(2350), + [anon_sym___autoreleasing] = ACTIONS(2350), + [anon_sym___block] = ACTIONS(2350), + [anon_sym___bridge] = ACTIONS(2350), + [anon_sym___bridge_retained] = ACTIONS(2350), + [anon_sym___bridge_transfer] = ACTIONS(2350), + [anon_sym___complex] = ACTIONS(2350), + [anon_sym___const] = ACTIONS(2350), + [anon_sym___imag] = ACTIONS(2350), + [anon_sym___kindof] = ACTIONS(2350), + [anon_sym___nonnull] = ACTIONS(2350), + [anon_sym___nullable] = ACTIONS(2350), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2350), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2350), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2350), + [anon_sym___real] = ACTIONS(2350), + [anon_sym___strong] = ACTIONS(2350), + [anon_sym___unsafe_unretained] = ACTIONS(2350), + [anon_sym___unused] = ACTIONS(2350), + [anon_sym___weak] = ACTIONS(2350), + [anon_sym_alignas] = ACTIONS(2350), + [anon_sym__Alignas] = ACTIONS(2350), + [sym_primitive_type] = ACTIONS(2350), + [anon_sym_enum] = ACTIONS(2350), + [anon_sym_struct] = ACTIONS(2350), + [anon_sym_union] = ACTIONS(2350), + [anon_sym_if] = ACTIONS(2350), + [anon_sym_else] = ACTIONS(2350), + [anon_sym_switch] = ACTIONS(2350), + [anon_sym_case] = ACTIONS(2350), + [anon_sym_default] = ACTIONS(2350), + [anon_sym_while] = ACTIONS(2350), + [anon_sym_do] = ACTIONS(2350), + [anon_sym_for] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_return] = ACTIONS(2350), + [anon_sym_break] = ACTIONS(2350), + [anon_sym_continue] = ACTIONS(2350), + [anon_sym_goto] = ACTIONS(2350), + [anon_sym_DASH_DASH] = ACTIONS(2352), + [anon_sym_PLUS_PLUS] = ACTIONS(2352), + [anon_sym_sizeof] = ACTIONS(2350), + [anon_sym___alignof__] = ACTIONS(2350), + [anon_sym___alignof] = ACTIONS(2350), + [anon_sym__alignof] = ACTIONS(2350), + [anon_sym_alignof] = ACTIONS(2350), + [anon_sym__Alignof] = ACTIONS(2350), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_asm] = ACTIONS(2350), + [anon_sym___asm__] = ACTIONS(2350), + [anon_sym___asm] = ACTIONS(2350), + [sym_number_literal] = ACTIONS(2352), + [anon_sym_L_SQUOTE] = ACTIONS(2352), + [anon_sym_u_SQUOTE] = ACTIONS(2352), + [anon_sym_U_SQUOTE] = ACTIONS(2352), + [anon_sym_u8_SQUOTE] = ACTIONS(2352), + [anon_sym_SQUOTE] = ACTIONS(2352), + [anon_sym_AT] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2352), + [anon_sym_L_DQUOTE] = ACTIONS(2352), + [anon_sym_u_DQUOTE] = ACTIONS(2352), + [anon_sym_U_DQUOTE] = ACTIONS(2352), + [anon_sym_u8_DQUOTE] = ACTIONS(2352), + [sym_true] = ACTIONS(2350), + [sym_false] = ACTIONS(2350), + [anon_sym_NULL] = ACTIONS(2350), + [anon_sym_nullptr] = ACTIONS(2350), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2350), + [anon_sym___typeof] = ACTIONS(2350), + [anon_sym_typeof] = ACTIONS(2350), + [anon_sym_ATimport] = ACTIONS(2352), + [aux_sym_preproc_undef_token1] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(2350), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2350), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2350), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2350), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2350), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE] = ACTIONS(2350), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_API_AVAILABLE] = ACTIONS(2350), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_API_DEPRECATED] = ACTIONS(2350), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2350), + [anon_sym___deprecated_msg] = ACTIONS(2350), + [anon_sym___deprecated_enum_msg] = ACTIONS(2350), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2350), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2350), + [anon_sym_ATprotocol] = ACTIONS(2352), + [anon_sym_ATinterface] = ACTIONS(2352), + [anon_sym_ATimplementation] = ACTIONS(2352), + [anon_sym_ATcompatibility_alias] = ACTIONS(2352), + [anon_sym_ATtry] = ACTIONS(2352), + [anon_sym___try] = ACTIONS(2350), + [anon_sym_ATcatch] = ACTIONS(2352), + [anon_sym___catch] = ACTIONS(2350), + [anon_sym_ATfinally] = ACTIONS(2352), + [anon_sym___finally] = ACTIONS(2350), + [anon_sym_ATthrow] = ACTIONS(2352), + [anon_sym_ATselector] = ACTIONS(2352), + [anon_sym_ATavailable] = ACTIONS(2352), + [anon_sym___builtin_available] = ACTIONS(2350), + [anon_sym_va_arg] = ACTIONS(2350), + [anon_sym_ATencode] = ACTIONS(2352), + [anon_sym_ATsynchronized] = ACTIONS(2352), + [anon_sym_BOOL] = ACTIONS(2350), + [anon_sym_IMP] = ACTIONS(2350), + [anon_sym_SEL] = ACTIONS(2350), + [anon_sym_Class] = ACTIONS(2350), + [anon_sym_id] = ACTIONS(2350), + }, + [398] = { + [sym_identifier] = ACTIONS(2474), + [aux_sym_preproc_include_token1] = ACTIONS(2474), + [aux_sym_preproc_include_token2] = ACTIONS(2474), + [aux_sym_preproc_def_token1] = ACTIONS(2474), + [aux_sym_preproc_if_token1] = ACTIONS(2474), + [aux_sym_preproc_if_token2] = ACTIONS(2474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2474), + [aux_sym_preproc_else_token1] = ACTIONS(2474), + [aux_sym_preproc_elif_token1] = ACTIONS(2474), + [sym_preproc_directive] = ACTIONS(2474), + [anon_sym_LPAREN2] = ACTIONS(2476), + [anon_sym_BANG] = ACTIONS(2476), + [anon_sym_TILDE] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2474), + [anon_sym_PLUS] = ACTIONS(2474), + [anon_sym_STAR] = ACTIONS(2476), + [anon_sym_CARET] = ACTIONS(2476), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2476), + [anon_sym___extension__] = ACTIONS(2474), + [anon_sym_typedef] = ACTIONS(2474), + [anon_sym_extern] = ACTIONS(2474), + [anon_sym___attribute__] = ACTIONS(2474), + [anon_sym___attribute] = ACTIONS(2474), + [anon_sym_noreturn] = ACTIONS(2474), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym___declspec] = ACTIONS(2474), + [anon_sym___cdecl] = ACTIONS(2474), + [anon_sym___clrcall] = ACTIONS(2474), + [anon_sym___stdcall] = ACTIONS(2474), + [anon_sym___fastcall] = ACTIONS(2474), + [anon_sym___thiscall] = ACTIONS(2474), + [anon_sym___vectorcall] = ACTIONS(2474), + [anon_sym_LBRACE] = ACTIONS(2476), + [anon_sym_signed] = ACTIONS(2474), + [anon_sym_unsigned] = ACTIONS(2474), + [anon_sym_long] = ACTIONS(2474), + [anon_sym_short] = ACTIONS(2474), + [anon_sym_static] = ACTIONS(2474), + [anon_sym_ATautoreleasepool] = ACTIONS(2476), + [anon_sym_auto] = ACTIONS(2474), + [anon_sym_register] = ACTIONS(2474), + [anon_sym_inline] = ACTIONS(2474), + [anon_sym___inline] = ACTIONS(2474), + [anon_sym___inline__] = ACTIONS(2474), + [anon_sym___forceinline] = ACTIONS(2474), + [anon_sym_thread_local] = ACTIONS(2474), + [anon_sym___thread] = ACTIONS(2474), + [anon_sym_CG_EXTERN] = ACTIONS(2474), + [anon_sym_CG_INLINE] = ACTIONS(2474), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2474), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2474), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2474), + [anon_sym_IBOutlet] = ACTIONS(2474), + [anon_sym_IBInspectable] = ACTIONS(2474), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2474), + [anon_sym_NS_INLINE] = ACTIONS(2474), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2474), + [anon_sym_OBJC_EXPORT] = ACTIONS(2474), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2474), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2474), + [anon_sym_const] = ACTIONS(2474), + [anon_sym_constexpr] = ACTIONS(2474), + [anon_sym_volatile] = ACTIONS(2474), + [anon_sym_restrict] = ACTIONS(2474), + [anon_sym___restrict__] = ACTIONS(2474), + [anon_sym__Atomic] = ACTIONS(2474), + [anon_sym__Noreturn] = ACTIONS(2474), + [anon_sym__Nonnull] = ACTIONS(2474), + [anon_sym_nullable] = ACTIONS(2474), + [anon_sym__Complex] = ACTIONS(2474), + [anon_sym__Nullable] = ACTIONS(2474), + [anon_sym__Nullable_result] = ACTIONS(2474), + [anon_sym__Null_unspecified] = ACTIONS(2474), + [anon_sym___autoreleasing] = ACTIONS(2474), + [anon_sym___block] = ACTIONS(2474), + [anon_sym___bridge] = ACTIONS(2474), + [anon_sym___bridge_retained] = ACTIONS(2474), + [anon_sym___bridge_transfer] = ACTIONS(2474), + [anon_sym___complex] = ACTIONS(2474), + [anon_sym___const] = ACTIONS(2474), + [anon_sym___imag] = ACTIONS(2474), + [anon_sym___kindof] = ACTIONS(2474), + [anon_sym___nonnull] = ACTIONS(2474), + [anon_sym___nullable] = ACTIONS(2474), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2474), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2474), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2474), + [anon_sym___real] = ACTIONS(2474), + [anon_sym___strong] = ACTIONS(2474), + [anon_sym___unsafe_unretained] = ACTIONS(2474), + [anon_sym___unused] = ACTIONS(2474), + [anon_sym___weak] = ACTIONS(2474), + [anon_sym_alignas] = ACTIONS(2474), + [anon_sym__Alignas] = ACTIONS(2474), + [sym_primitive_type] = ACTIONS(2474), + [anon_sym_enum] = ACTIONS(2474), + [anon_sym_struct] = ACTIONS(2474), + [anon_sym_union] = ACTIONS(2474), + [anon_sym_if] = ACTIONS(2474), + [anon_sym_else] = ACTIONS(2474), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_case] = ACTIONS(2474), + [anon_sym_default] = ACTIONS(2474), + [anon_sym_while] = ACTIONS(2474), + [anon_sym_do] = ACTIONS(2474), + [anon_sym_for] = ACTIONS(2474), + [anon_sym_in] = ACTIONS(2474), + [anon_sym_return] = ACTIONS(2474), + [anon_sym_break] = ACTIONS(2474), + [anon_sym_continue] = ACTIONS(2474), + [anon_sym_goto] = ACTIONS(2474), + [anon_sym_DASH_DASH] = ACTIONS(2476), + [anon_sym_PLUS_PLUS] = ACTIONS(2476), + [anon_sym_sizeof] = ACTIONS(2474), + [anon_sym___alignof__] = ACTIONS(2474), + [anon_sym___alignof] = ACTIONS(2474), + [anon_sym__alignof] = ACTIONS(2474), + [anon_sym_alignof] = ACTIONS(2474), + [anon_sym__Alignof] = ACTIONS(2474), + [anon_sym_offsetof] = ACTIONS(2474), + [anon_sym__Generic] = ACTIONS(2474), + [anon_sym_asm] = ACTIONS(2474), + [anon_sym___asm__] = ACTIONS(2474), + [anon_sym___asm] = ACTIONS(2474), + [sym_number_literal] = ACTIONS(2476), + [anon_sym_L_SQUOTE] = ACTIONS(2476), + [anon_sym_u_SQUOTE] = ACTIONS(2476), + [anon_sym_U_SQUOTE] = ACTIONS(2476), + [anon_sym_u8_SQUOTE] = ACTIONS(2476), + [anon_sym_SQUOTE] = ACTIONS(2476), + [anon_sym_AT] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_L_DQUOTE] = ACTIONS(2476), + [anon_sym_u_DQUOTE] = ACTIONS(2476), + [anon_sym_U_DQUOTE] = ACTIONS(2476), + [anon_sym_u8_DQUOTE] = ACTIONS(2476), + [sym_true] = ACTIONS(2474), + [sym_false] = ACTIONS(2474), + [anon_sym_NULL] = ACTIONS(2474), + [anon_sym_nullptr] = ACTIONS(2474), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2474), + [anon_sym___typeof] = ACTIONS(2474), + [anon_sym_typeof] = ACTIONS(2474), + [anon_sym_ATimport] = ACTIONS(2476), + [aux_sym_preproc_undef_token1] = ACTIONS(2474), + [anon_sym_POUND] = ACTIONS(2474), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2474), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2474), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2474), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2474), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2474), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2474), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2474), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2474), + [anon_sym_NS_AVAILABLE] = ACTIONS(2474), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2474), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_API_AVAILABLE] = ACTIONS(2474), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_API_DEPRECATED] = ACTIONS(2474), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2474), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2474), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2474), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2474), + [anon_sym___deprecated_msg] = ACTIONS(2474), + [anon_sym___deprecated_enum_msg] = ACTIONS(2474), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2474), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2474), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2474), + [anon_sym_ATprotocol] = ACTIONS(2476), + [anon_sym_ATinterface] = ACTIONS(2476), + [anon_sym_ATimplementation] = ACTIONS(2476), + [anon_sym_ATcompatibility_alias] = ACTIONS(2476), + [anon_sym_ATsynthesize] = ACTIONS(2476), + [anon_sym_ATdynamic] = ACTIONS(2476), + [anon_sym_ATtry] = ACTIONS(2476), + [anon_sym___try] = ACTIONS(2474), + [anon_sym_ATthrow] = ACTIONS(2476), + [anon_sym_ATselector] = ACTIONS(2476), + [anon_sym_ATavailable] = ACTIONS(2476), + [anon_sym___builtin_available] = ACTIONS(2474), + [anon_sym_va_arg] = ACTIONS(2474), + [anon_sym_ATencode] = ACTIONS(2476), + [anon_sym_ATsynchronized] = ACTIONS(2476), + [anon_sym_BOOL] = ACTIONS(2474), + [anon_sym_IMP] = ACTIONS(2474), + [anon_sym_SEL] = ACTIONS(2474), + [anon_sym_Class] = ACTIONS(2474), + [anon_sym_id] = ACTIONS(2474), + }, + [399] = { + [sym_identifier] = ACTIONS(2478), + [aux_sym_preproc_include_token1] = ACTIONS(2478), + [aux_sym_preproc_include_token2] = ACTIONS(2478), + [aux_sym_preproc_def_token1] = ACTIONS(2478), + [aux_sym_preproc_if_token1] = ACTIONS(2478), + [aux_sym_preproc_if_token2] = ACTIONS(2478), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2478), + [aux_sym_preproc_else_token1] = ACTIONS(2478), + [aux_sym_preproc_elif_token1] = ACTIONS(2478), + [sym_preproc_directive] = ACTIONS(2478), + [anon_sym_LPAREN2] = ACTIONS(2480), + [anon_sym_BANG] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2478), + [anon_sym_PLUS] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2480), + [anon_sym_CARET] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2480), + [anon_sym_SEMI] = ACTIONS(2480), + [anon_sym___extension__] = ACTIONS(2478), + [anon_sym_typedef] = ACTIONS(2478), + [anon_sym_extern] = ACTIONS(2478), + [anon_sym___attribute__] = ACTIONS(2478), + [anon_sym___attribute] = ACTIONS(2478), + [anon_sym_noreturn] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2480), + [anon_sym___declspec] = ACTIONS(2478), + [anon_sym___cdecl] = ACTIONS(2478), + [anon_sym___clrcall] = ACTIONS(2478), + [anon_sym___stdcall] = ACTIONS(2478), + [anon_sym___fastcall] = ACTIONS(2478), + [anon_sym___thiscall] = ACTIONS(2478), + [anon_sym___vectorcall] = ACTIONS(2478), + [anon_sym_LBRACE] = ACTIONS(2480), + [anon_sym_signed] = ACTIONS(2478), + [anon_sym_unsigned] = ACTIONS(2478), + [anon_sym_long] = ACTIONS(2478), + [anon_sym_short] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_ATautoreleasepool] = ACTIONS(2480), + [anon_sym_auto] = ACTIONS(2478), + [anon_sym_register] = ACTIONS(2478), + [anon_sym_inline] = ACTIONS(2478), + [anon_sym___inline] = ACTIONS(2478), + [anon_sym___inline__] = ACTIONS(2478), + [anon_sym___forceinline] = ACTIONS(2478), + [anon_sym_thread_local] = ACTIONS(2478), + [anon_sym___thread] = ACTIONS(2478), + [anon_sym_CG_EXTERN] = ACTIONS(2478), + [anon_sym_CG_INLINE] = ACTIONS(2478), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2478), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2478), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2478), + [anon_sym_IBOutlet] = ACTIONS(2478), + [anon_sym_IBInspectable] = ACTIONS(2478), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2478), + [anon_sym_NS_INLINE] = ACTIONS(2478), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2478), + [anon_sym_OBJC_EXPORT] = ACTIONS(2478), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2478), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [anon_sym_constexpr] = ACTIONS(2478), + [anon_sym_volatile] = ACTIONS(2478), + [anon_sym_restrict] = ACTIONS(2478), + [anon_sym___restrict__] = ACTIONS(2478), + [anon_sym__Atomic] = ACTIONS(2478), + [anon_sym__Noreturn] = ACTIONS(2478), + [anon_sym__Nonnull] = ACTIONS(2478), + [anon_sym_nullable] = ACTIONS(2478), + [anon_sym__Complex] = ACTIONS(2478), + [anon_sym__Nullable] = ACTIONS(2478), + [anon_sym__Nullable_result] = ACTIONS(2478), + [anon_sym__Null_unspecified] = ACTIONS(2478), + [anon_sym___autoreleasing] = ACTIONS(2478), + [anon_sym___block] = ACTIONS(2478), + [anon_sym___bridge] = ACTIONS(2478), + [anon_sym___bridge_retained] = ACTIONS(2478), + [anon_sym___bridge_transfer] = ACTIONS(2478), + [anon_sym___complex] = ACTIONS(2478), + [anon_sym___const] = ACTIONS(2478), + [anon_sym___imag] = ACTIONS(2478), + [anon_sym___kindof] = ACTIONS(2478), + [anon_sym___nonnull] = ACTIONS(2478), + [anon_sym___nullable] = ACTIONS(2478), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2478), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2478), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2478), + [anon_sym___real] = ACTIONS(2478), + [anon_sym___strong] = ACTIONS(2478), + [anon_sym___unsafe_unretained] = ACTIONS(2478), + [anon_sym___unused] = ACTIONS(2478), + [anon_sym___weak] = ACTIONS(2478), + [anon_sym_alignas] = ACTIONS(2478), + [anon_sym__Alignas] = ACTIONS(2478), + [sym_primitive_type] = ACTIONS(2478), + [anon_sym_enum] = ACTIONS(2478), + [anon_sym_struct] = ACTIONS(2478), + [anon_sym_union] = ACTIONS(2478), + [anon_sym_if] = ACTIONS(2478), + [anon_sym_else] = ACTIONS(2478), + [anon_sym_switch] = ACTIONS(2478), + [anon_sym_case] = ACTIONS(2478), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2478), + [anon_sym_do] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_in] = ACTIONS(2478), + [anon_sym_return] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_goto] = ACTIONS(2478), + [anon_sym_DASH_DASH] = ACTIONS(2480), + [anon_sym_PLUS_PLUS] = ACTIONS(2480), + [anon_sym_sizeof] = ACTIONS(2478), + [anon_sym___alignof__] = ACTIONS(2478), + [anon_sym___alignof] = ACTIONS(2478), + [anon_sym__alignof] = ACTIONS(2478), + [anon_sym_alignof] = ACTIONS(2478), + [anon_sym__Alignof] = ACTIONS(2478), + [anon_sym_offsetof] = ACTIONS(2478), + [anon_sym__Generic] = ACTIONS(2478), + [anon_sym_asm] = ACTIONS(2478), + [anon_sym___asm__] = ACTIONS(2478), + [anon_sym___asm] = ACTIONS(2478), + [sym_number_literal] = ACTIONS(2480), + [anon_sym_L_SQUOTE] = ACTIONS(2480), + [anon_sym_u_SQUOTE] = ACTIONS(2480), + [anon_sym_U_SQUOTE] = ACTIONS(2480), + [anon_sym_u8_SQUOTE] = ACTIONS(2480), + [anon_sym_SQUOTE] = ACTIONS(2480), + [anon_sym_AT] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2480), + [anon_sym_L_DQUOTE] = ACTIONS(2480), + [anon_sym_u_DQUOTE] = ACTIONS(2480), + [anon_sym_U_DQUOTE] = ACTIONS(2480), + [anon_sym_u8_DQUOTE] = ACTIONS(2480), + [sym_true] = ACTIONS(2478), + [sym_false] = ACTIONS(2478), + [anon_sym_NULL] = ACTIONS(2478), + [anon_sym_nullptr] = ACTIONS(2478), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2478), + [anon_sym___typeof] = ACTIONS(2478), + [anon_sym_typeof] = ACTIONS(2478), + [anon_sym_ATimport] = ACTIONS(2480), + [aux_sym_preproc_undef_token1] = ACTIONS(2478), + [anon_sym_POUND] = ACTIONS(2478), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2478), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2478), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2478), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2478), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2478), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2478), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2478), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2478), + [anon_sym_NS_AVAILABLE] = ACTIONS(2478), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2478), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_API_AVAILABLE] = ACTIONS(2478), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_API_DEPRECATED] = ACTIONS(2478), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2478), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2478), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2478), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2478), + [anon_sym___deprecated_msg] = ACTIONS(2478), + [anon_sym___deprecated_enum_msg] = ACTIONS(2478), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2478), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2478), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2478), + [anon_sym_ATprotocol] = ACTIONS(2480), + [anon_sym_ATinterface] = ACTIONS(2480), + [anon_sym_ATimplementation] = ACTIONS(2480), + [anon_sym_ATcompatibility_alias] = ACTIONS(2480), + [anon_sym_ATsynthesize] = ACTIONS(2480), + [anon_sym_ATdynamic] = ACTIONS(2480), + [anon_sym_ATtry] = ACTIONS(2480), + [anon_sym___try] = ACTIONS(2478), + [anon_sym_ATthrow] = ACTIONS(2480), + [anon_sym_ATselector] = ACTIONS(2480), + [anon_sym_ATavailable] = ACTIONS(2480), + [anon_sym___builtin_available] = ACTIONS(2478), + [anon_sym_va_arg] = ACTIONS(2478), + [anon_sym_ATencode] = ACTIONS(2480), + [anon_sym_ATsynchronized] = ACTIONS(2480), + [anon_sym_BOOL] = ACTIONS(2478), + [anon_sym_IMP] = ACTIONS(2478), + [anon_sym_SEL] = ACTIONS(2478), + [anon_sym_Class] = ACTIONS(2478), + [anon_sym_id] = ACTIONS(2478), + }, + [400] = { + [ts_builtin_sym_end] = ACTIONS(2348), + [sym_identifier] = ACTIONS(2346), + [aux_sym_preproc_include_token1] = ACTIONS(2346), + [aux_sym_preproc_include_token2] = ACTIONS(2346), + [aux_sym_preproc_def_token1] = ACTIONS(2346), + [aux_sym_preproc_if_token1] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2346), + [sym_preproc_directive] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2346), + [anon_sym_PLUS] = ACTIONS(2346), + [anon_sym_STAR] = ACTIONS(2348), + [anon_sym_CARET] = ACTIONS(2348), + [anon_sym_AMP] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym___extension__] = ACTIONS(2346), + [anon_sym_typedef] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym___attribute__] = ACTIONS(2346), + [anon_sym___attribute] = ACTIONS(2346), + [anon_sym_noreturn] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym___declspec] = ACTIONS(2346), + [anon_sym___cdecl] = ACTIONS(2346), + [anon_sym___clrcall] = ACTIONS(2346), + [anon_sym___stdcall] = ACTIONS(2346), + [anon_sym___fastcall] = ACTIONS(2346), + [anon_sym___thiscall] = ACTIONS(2346), + [anon_sym___vectorcall] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_signed] = ACTIONS(2346), + [anon_sym_unsigned] = ACTIONS(2346), + [anon_sym_long] = ACTIONS(2346), + [anon_sym_short] = ACTIONS(2346), + [anon_sym_static] = ACTIONS(2346), + [anon_sym_ATautoreleasepool] = ACTIONS(2348), + [anon_sym_auto] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2346), + [anon_sym_inline] = ACTIONS(2346), + [anon_sym___inline] = ACTIONS(2346), + [anon_sym___inline__] = ACTIONS(2346), + [anon_sym___forceinline] = ACTIONS(2346), + [anon_sym_thread_local] = ACTIONS(2346), + [anon_sym___thread] = ACTIONS(2346), + [anon_sym_CG_EXTERN] = ACTIONS(2346), + [anon_sym_CG_INLINE] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2346), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2346), + [anon_sym_IBOutlet] = ACTIONS(2346), + [anon_sym_IBInspectable] = ACTIONS(2346), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2346), + [anon_sym_NS_INLINE] = ACTIONS(2346), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2346), + [anon_sym_OBJC_EXPORT] = ACTIONS(2346), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_constexpr] = ACTIONS(2346), + [anon_sym_volatile] = ACTIONS(2346), + [anon_sym_restrict] = ACTIONS(2346), + [anon_sym___restrict__] = ACTIONS(2346), + [anon_sym__Atomic] = ACTIONS(2346), + [anon_sym__Noreturn] = ACTIONS(2346), + [anon_sym__Nonnull] = ACTIONS(2346), + [anon_sym_nullable] = ACTIONS(2346), + [anon_sym__Complex] = ACTIONS(2346), + [anon_sym__Nullable] = ACTIONS(2346), + [anon_sym__Nullable_result] = ACTIONS(2346), + [anon_sym__Null_unspecified] = ACTIONS(2346), + [anon_sym___autoreleasing] = ACTIONS(2346), + [anon_sym___block] = ACTIONS(2346), + [anon_sym___bridge] = ACTIONS(2346), + [anon_sym___bridge_retained] = ACTIONS(2346), + [anon_sym___bridge_transfer] = ACTIONS(2346), + [anon_sym___complex] = ACTIONS(2346), + [anon_sym___const] = ACTIONS(2346), + [anon_sym___imag] = ACTIONS(2346), + [anon_sym___kindof] = ACTIONS(2346), + [anon_sym___nonnull] = ACTIONS(2346), + [anon_sym___nullable] = ACTIONS(2346), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2346), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2346), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2346), + [anon_sym___real] = ACTIONS(2346), + [anon_sym___strong] = ACTIONS(2346), + [anon_sym___unsafe_unretained] = ACTIONS(2346), + [anon_sym___unused] = ACTIONS(2346), + [anon_sym___weak] = ACTIONS(2346), + [anon_sym_alignas] = ACTIONS(2346), + [anon_sym__Alignas] = ACTIONS(2346), + [sym_primitive_type] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_switch] = ACTIONS(2346), + [anon_sym_case] = ACTIONS(2346), + [anon_sym_default] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_do] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_goto] = ACTIONS(2346), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2346), + [anon_sym__Generic] = ACTIONS(2346), + [anon_sym_asm] = ACTIONS(2346), + [anon_sym___asm__] = ACTIONS(2346), + [anon_sym___asm] = ACTIONS(2346), + [sym_number_literal] = ACTIONS(2348), + [anon_sym_L_SQUOTE] = ACTIONS(2348), + [anon_sym_u_SQUOTE] = ACTIONS(2348), + [anon_sym_U_SQUOTE] = ACTIONS(2348), + [anon_sym_u8_SQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_L_DQUOTE] = ACTIONS(2348), + [anon_sym_u_DQUOTE] = ACTIONS(2348), + [anon_sym_U_DQUOTE] = ACTIONS(2348), + [anon_sym_u8_DQUOTE] = ACTIONS(2348), + [sym_true] = ACTIONS(2346), + [sym_false] = ACTIONS(2346), + [anon_sym_NULL] = ACTIONS(2346), + [anon_sym_nullptr] = ACTIONS(2346), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2346), + [anon_sym___typeof] = ACTIONS(2346), + [anon_sym_typeof] = ACTIONS(2346), + [anon_sym_ATimport] = ACTIONS(2348), + [aux_sym_preproc_undef_token1] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(2346), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2346), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2346), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2346), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2346), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE] = ACTIONS(2346), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_API_AVAILABLE] = ACTIONS(2346), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_API_DEPRECATED] = ACTIONS(2346), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2346), + [anon_sym___deprecated_msg] = ACTIONS(2346), + [anon_sym___deprecated_enum_msg] = ACTIONS(2346), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2346), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2346), + [anon_sym_ATprotocol] = ACTIONS(2348), + [anon_sym_ATinterface] = ACTIONS(2348), + [anon_sym_ATimplementation] = ACTIONS(2348), + [anon_sym_ATcompatibility_alias] = ACTIONS(2348), + [anon_sym_ATtry] = ACTIONS(2348), + [anon_sym___try] = ACTIONS(2346), + [anon_sym_ATcatch] = ACTIONS(2348), + [anon_sym___catch] = ACTIONS(2346), + [anon_sym_ATfinally] = ACTIONS(2348), + [anon_sym___finally] = ACTIONS(2346), + [anon_sym_ATthrow] = ACTIONS(2348), + [anon_sym_ATselector] = ACTIONS(2348), + [anon_sym_ATavailable] = ACTIONS(2348), + [anon_sym___builtin_available] = ACTIONS(2346), + [anon_sym_va_arg] = ACTIONS(2346), + [anon_sym_ATencode] = ACTIONS(2348), + [anon_sym_ATsynchronized] = ACTIONS(2348), + [anon_sym_BOOL] = ACTIONS(2346), + [anon_sym_IMP] = ACTIONS(2346), + [anon_sym_SEL] = ACTIONS(2346), + [anon_sym_Class] = ACTIONS(2346), + [anon_sym_id] = ACTIONS(2346), + }, + [401] = { + [ts_builtin_sym_end] = ACTIONS(2366), + [sym_identifier] = ACTIONS(2364), + [aux_sym_preproc_include_token1] = ACTIONS(2364), + [aux_sym_preproc_include_token2] = ACTIONS(2364), + [aux_sym_preproc_def_token1] = ACTIONS(2364), + [aux_sym_preproc_if_token1] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2364), + [sym_preproc_directive] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_PLUS] = ACTIONS(2364), + [anon_sym_STAR] = ACTIONS(2366), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_AMP] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_typedef] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym___attribute__] = ACTIONS(2364), + [anon_sym___attribute] = ACTIONS(2364), + [anon_sym_noreturn] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym___declspec] = ACTIONS(2364), + [anon_sym___cdecl] = ACTIONS(2364), + [anon_sym___clrcall] = ACTIONS(2364), + [anon_sym___stdcall] = ACTIONS(2364), + [anon_sym___fastcall] = ACTIONS(2364), + [anon_sym___thiscall] = ACTIONS(2364), + [anon_sym___vectorcall] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_signed] = ACTIONS(2364), + [anon_sym_unsigned] = ACTIONS(2364), + [anon_sym_long] = ACTIONS(2364), + [anon_sym_short] = ACTIONS(2364), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_ATautoreleasepool] = ACTIONS(2366), + [anon_sym_auto] = ACTIONS(2364), + [anon_sym_register] = ACTIONS(2364), + [anon_sym_inline] = ACTIONS(2364), + [anon_sym___inline] = ACTIONS(2364), + [anon_sym___inline__] = ACTIONS(2364), + [anon_sym___forceinline] = ACTIONS(2364), + [anon_sym_thread_local] = ACTIONS(2364), + [anon_sym___thread] = ACTIONS(2364), + [anon_sym_CG_EXTERN] = ACTIONS(2364), + [anon_sym_CG_INLINE] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2364), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2364), + [anon_sym_IBOutlet] = ACTIONS(2364), + [anon_sym_IBInspectable] = ACTIONS(2364), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2364), + [anon_sym_NS_INLINE] = ACTIONS(2364), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2364), + [anon_sym_OBJC_EXPORT] = ACTIONS(2364), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [anon_sym_constexpr] = ACTIONS(2364), + [anon_sym_volatile] = ACTIONS(2364), + [anon_sym_restrict] = ACTIONS(2364), + [anon_sym___restrict__] = ACTIONS(2364), + [anon_sym__Atomic] = ACTIONS(2364), + [anon_sym__Noreturn] = ACTIONS(2364), + [anon_sym__Nonnull] = ACTIONS(2364), + [anon_sym_nullable] = ACTIONS(2364), + [anon_sym__Complex] = ACTIONS(2364), + [anon_sym__Nullable] = ACTIONS(2364), + [anon_sym__Nullable_result] = ACTIONS(2364), + [anon_sym__Null_unspecified] = ACTIONS(2364), + [anon_sym___autoreleasing] = ACTIONS(2364), + [anon_sym___block] = ACTIONS(2364), + [anon_sym___bridge] = ACTIONS(2364), + [anon_sym___bridge_retained] = ACTIONS(2364), + [anon_sym___bridge_transfer] = ACTIONS(2364), + [anon_sym___complex] = ACTIONS(2364), + [anon_sym___const] = ACTIONS(2364), + [anon_sym___imag] = ACTIONS(2364), + [anon_sym___kindof] = ACTIONS(2364), + [anon_sym___nonnull] = ACTIONS(2364), + [anon_sym___nullable] = ACTIONS(2364), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2364), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2364), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2364), + [anon_sym___real] = ACTIONS(2364), + [anon_sym___strong] = ACTIONS(2364), + [anon_sym___unsafe_unretained] = ACTIONS(2364), + [anon_sym___unused] = ACTIONS(2364), + [anon_sym___weak] = ACTIONS(2364), + [anon_sym_alignas] = ACTIONS(2364), + [anon_sym__Alignas] = ACTIONS(2364), + [sym_primitive_type] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(2364), + [anon_sym_union] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_switch] = ACTIONS(2364), + [anon_sym_case] = ACTIONS(2364), + [anon_sym_default] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_do] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_in] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_goto] = ACTIONS(2364), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_sizeof] = ACTIONS(2364), + [anon_sym___alignof__] = ACTIONS(2364), + [anon_sym___alignof] = ACTIONS(2364), + [anon_sym__alignof] = ACTIONS(2364), + [anon_sym_alignof] = ACTIONS(2364), + [anon_sym__Alignof] = ACTIONS(2364), + [anon_sym_offsetof] = ACTIONS(2364), + [anon_sym__Generic] = ACTIONS(2364), + [anon_sym_asm] = ACTIONS(2364), + [anon_sym___asm__] = ACTIONS(2364), + [anon_sym___asm] = ACTIONS(2364), + [sym_number_literal] = ACTIONS(2366), + [anon_sym_L_SQUOTE] = ACTIONS(2366), + [anon_sym_u_SQUOTE] = ACTIONS(2366), + [anon_sym_U_SQUOTE] = ACTIONS(2366), + [anon_sym_u8_SQUOTE] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2366), + [anon_sym_AT] = ACTIONS(2364), + [anon_sym_DQUOTE] = ACTIONS(2366), + [anon_sym_L_DQUOTE] = ACTIONS(2366), + [anon_sym_u_DQUOTE] = ACTIONS(2366), + [anon_sym_U_DQUOTE] = ACTIONS(2366), + [anon_sym_u8_DQUOTE] = ACTIONS(2366), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2364), + [anon_sym___typeof] = ACTIONS(2364), + [anon_sym_typeof] = ACTIONS(2364), + [anon_sym_ATimport] = ACTIONS(2366), + [aux_sym_preproc_undef_token1] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(2364), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2364), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2364), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2364), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2364), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE] = ACTIONS(2364), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_API_AVAILABLE] = ACTIONS(2364), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_API_DEPRECATED] = ACTIONS(2364), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2364), + [anon_sym___deprecated_msg] = ACTIONS(2364), + [anon_sym___deprecated_enum_msg] = ACTIONS(2364), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2364), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2364), + [anon_sym_ATprotocol] = ACTIONS(2366), + [anon_sym_ATinterface] = ACTIONS(2366), + [anon_sym_ATimplementation] = ACTIONS(2366), + [anon_sym_ATcompatibility_alias] = ACTIONS(2366), + [anon_sym_ATtry] = ACTIONS(2366), + [anon_sym___try] = ACTIONS(2364), + [anon_sym_ATcatch] = ACTIONS(2366), + [anon_sym___catch] = ACTIONS(2364), + [anon_sym_ATfinally] = ACTIONS(2366), + [anon_sym___finally] = ACTIONS(2364), + [anon_sym_ATthrow] = ACTIONS(2366), + [anon_sym_ATselector] = ACTIONS(2366), + [anon_sym_ATavailable] = ACTIONS(2366), + [anon_sym___builtin_available] = ACTIONS(2364), + [anon_sym_va_arg] = ACTIONS(2364), + [anon_sym_ATencode] = ACTIONS(2366), + [anon_sym_ATsynchronized] = ACTIONS(2366), + [anon_sym_BOOL] = ACTIONS(2364), + [anon_sym_IMP] = ACTIONS(2364), + [anon_sym_SEL] = ACTIONS(2364), + [anon_sym_Class] = ACTIONS(2364), + [anon_sym_id] = ACTIONS(2364), + }, + [402] = { + [ts_builtin_sym_end] = ACTIONS(2352), + [sym_identifier] = ACTIONS(2350), + [aux_sym_preproc_include_token1] = ACTIONS(2350), + [aux_sym_preproc_include_token2] = ACTIONS(2350), + [aux_sym_preproc_def_token1] = ACTIONS(2350), + [aux_sym_preproc_if_token1] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2350), + [sym_preproc_directive] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(2352), + [anon_sym_BANG] = ACTIONS(2352), + [anon_sym_TILDE] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2350), + [anon_sym_STAR] = ACTIONS(2352), + [anon_sym_CARET] = ACTIONS(2352), + [anon_sym_AMP] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2352), + [anon_sym___extension__] = ACTIONS(2350), + [anon_sym_typedef] = ACTIONS(2350), + [anon_sym_extern] = ACTIONS(2350), + [anon_sym___attribute__] = ACTIONS(2350), + [anon_sym___attribute] = ACTIONS(2350), + [anon_sym_noreturn] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2352), + [anon_sym___declspec] = ACTIONS(2350), + [anon_sym___cdecl] = ACTIONS(2350), + [anon_sym___clrcall] = ACTIONS(2350), + [anon_sym___stdcall] = ACTIONS(2350), + [anon_sym___fastcall] = ACTIONS(2350), + [anon_sym___thiscall] = ACTIONS(2350), + [anon_sym___vectorcall] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2352), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(2350), + [anon_sym_ATautoreleasepool] = ACTIONS(2352), + [anon_sym_auto] = ACTIONS(2350), + [anon_sym_register] = ACTIONS(2350), + [anon_sym_inline] = ACTIONS(2350), + [anon_sym___inline] = ACTIONS(2350), + [anon_sym___inline__] = ACTIONS(2350), + [anon_sym___forceinline] = ACTIONS(2350), + [anon_sym_thread_local] = ACTIONS(2350), + [anon_sym___thread] = ACTIONS(2350), + [anon_sym_CG_EXTERN] = ACTIONS(2350), + [anon_sym_CG_INLINE] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2350), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2350), + [anon_sym_IBOutlet] = ACTIONS(2350), + [anon_sym_IBInspectable] = ACTIONS(2350), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2350), + [anon_sym_NS_INLINE] = ACTIONS(2350), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2350), + [anon_sym_OBJC_EXPORT] = ACTIONS(2350), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2350), + [anon_sym_const] = ACTIONS(2350), + [anon_sym_constexpr] = ACTIONS(2350), + [anon_sym_volatile] = ACTIONS(2350), + [anon_sym_restrict] = ACTIONS(2350), + [anon_sym___restrict__] = ACTIONS(2350), + [anon_sym__Atomic] = ACTIONS(2350), + [anon_sym__Noreturn] = ACTIONS(2350), + [anon_sym__Nonnull] = ACTIONS(2350), + [anon_sym_nullable] = ACTIONS(2350), + [anon_sym__Complex] = ACTIONS(2350), + [anon_sym__Nullable] = ACTIONS(2350), + [anon_sym__Nullable_result] = ACTIONS(2350), + [anon_sym__Null_unspecified] = ACTIONS(2350), + [anon_sym___autoreleasing] = ACTIONS(2350), + [anon_sym___block] = ACTIONS(2350), + [anon_sym___bridge] = ACTIONS(2350), + [anon_sym___bridge_retained] = ACTIONS(2350), + [anon_sym___bridge_transfer] = ACTIONS(2350), + [anon_sym___complex] = ACTIONS(2350), + [anon_sym___const] = ACTIONS(2350), + [anon_sym___imag] = ACTIONS(2350), + [anon_sym___kindof] = ACTIONS(2350), + [anon_sym___nonnull] = ACTIONS(2350), + [anon_sym___nullable] = ACTIONS(2350), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2350), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2350), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2350), + [anon_sym___real] = ACTIONS(2350), + [anon_sym___strong] = ACTIONS(2350), + [anon_sym___unsafe_unretained] = ACTIONS(2350), + [anon_sym___unused] = ACTIONS(2350), + [anon_sym___weak] = ACTIONS(2350), + [anon_sym_alignas] = ACTIONS(2350), + [anon_sym__Alignas] = ACTIONS(2350), + [sym_primitive_type] = ACTIONS(2350), + [anon_sym_enum] = ACTIONS(2350), + [anon_sym_struct] = ACTIONS(2350), + [anon_sym_union] = ACTIONS(2350), + [anon_sym_if] = ACTIONS(2350), + [anon_sym_else] = ACTIONS(2350), + [anon_sym_switch] = ACTIONS(2350), + [anon_sym_case] = ACTIONS(2350), + [anon_sym_default] = ACTIONS(2350), + [anon_sym_while] = ACTIONS(2350), + [anon_sym_do] = ACTIONS(2350), + [anon_sym_for] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_return] = ACTIONS(2350), + [anon_sym_break] = ACTIONS(2350), + [anon_sym_continue] = ACTIONS(2350), + [anon_sym_goto] = ACTIONS(2350), + [anon_sym_DASH_DASH] = ACTIONS(2352), + [anon_sym_PLUS_PLUS] = ACTIONS(2352), + [anon_sym_sizeof] = ACTIONS(2350), + [anon_sym___alignof__] = ACTIONS(2350), + [anon_sym___alignof] = ACTIONS(2350), + [anon_sym__alignof] = ACTIONS(2350), + [anon_sym_alignof] = ACTIONS(2350), + [anon_sym__Alignof] = ACTIONS(2350), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_asm] = ACTIONS(2350), + [anon_sym___asm__] = ACTIONS(2350), + [anon_sym___asm] = ACTIONS(2350), + [sym_number_literal] = ACTIONS(2352), + [anon_sym_L_SQUOTE] = ACTIONS(2352), + [anon_sym_u_SQUOTE] = ACTIONS(2352), + [anon_sym_U_SQUOTE] = ACTIONS(2352), + [anon_sym_u8_SQUOTE] = ACTIONS(2352), + [anon_sym_SQUOTE] = ACTIONS(2352), + [anon_sym_AT] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2352), + [anon_sym_L_DQUOTE] = ACTIONS(2352), + [anon_sym_u_DQUOTE] = ACTIONS(2352), + [anon_sym_U_DQUOTE] = ACTIONS(2352), + [anon_sym_u8_DQUOTE] = ACTIONS(2352), + [sym_true] = ACTIONS(2350), + [sym_false] = ACTIONS(2350), + [anon_sym_NULL] = ACTIONS(2350), + [anon_sym_nullptr] = ACTIONS(2350), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2350), + [anon_sym___typeof] = ACTIONS(2350), + [anon_sym_typeof] = ACTIONS(2350), + [anon_sym_ATimport] = ACTIONS(2352), + [aux_sym_preproc_undef_token1] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(2350), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2350), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2350), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2350), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2350), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE] = ACTIONS(2350), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_API_AVAILABLE] = ACTIONS(2350), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_API_DEPRECATED] = ACTIONS(2350), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2350), + [anon_sym___deprecated_msg] = ACTIONS(2350), + [anon_sym___deprecated_enum_msg] = ACTIONS(2350), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2350), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2350), + [anon_sym_ATprotocol] = ACTIONS(2352), + [anon_sym_ATinterface] = ACTIONS(2352), + [anon_sym_ATimplementation] = ACTIONS(2352), + [anon_sym_ATcompatibility_alias] = ACTIONS(2352), + [anon_sym_ATtry] = ACTIONS(2352), + [anon_sym___try] = ACTIONS(2350), + [anon_sym_ATcatch] = ACTIONS(2352), + [anon_sym___catch] = ACTIONS(2350), + [anon_sym_ATfinally] = ACTIONS(2352), + [anon_sym___finally] = ACTIONS(2350), + [anon_sym_ATthrow] = ACTIONS(2352), + [anon_sym_ATselector] = ACTIONS(2352), + [anon_sym_ATavailable] = ACTIONS(2352), + [anon_sym___builtin_available] = ACTIONS(2350), + [anon_sym_va_arg] = ACTIONS(2350), + [anon_sym_ATencode] = ACTIONS(2352), + [anon_sym_ATsynchronized] = ACTIONS(2352), + [anon_sym_BOOL] = ACTIONS(2350), + [anon_sym_IMP] = ACTIONS(2350), + [anon_sym_SEL] = ACTIONS(2350), + [anon_sym_Class] = ACTIONS(2350), + [anon_sym_id] = ACTIONS(2350), + }, + [403] = { + [sym_identifier] = ACTIONS(2482), + [aux_sym_preproc_include_token1] = ACTIONS(2482), + [aux_sym_preproc_include_token2] = ACTIONS(2482), + [aux_sym_preproc_def_token1] = ACTIONS(2482), + [aux_sym_preproc_if_token1] = ACTIONS(2482), + [aux_sym_preproc_if_token2] = ACTIONS(2482), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2482), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2482), + [aux_sym_preproc_else_token1] = ACTIONS(2482), + [aux_sym_preproc_elif_token1] = ACTIONS(2482), + [sym_preproc_directive] = ACTIONS(2482), + [anon_sym_LPAREN2] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2484), + [anon_sym_TILDE] = ACTIONS(2484), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_STAR] = ACTIONS(2484), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym___extension__] = ACTIONS(2482), + [anon_sym_typedef] = ACTIONS(2482), + [anon_sym_extern] = ACTIONS(2482), + [anon_sym___attribute__] = ACTIONS(2482), + [anon_sym___attribute] = ACTIONS(2482), + [anon_sym_noreturn] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2484), + [anon_sym___declspec] = ACTIONS(2482), + [anon_sym___cdecl] = ACTIONS(2482), + [anon_sym___clrcall] = ACTIONS(2482), + [anon_sym___stdcall] = ACTIONS(2482), + [anon_sym___fastcall] = ACTIONS(2482), + [anon_sym___thiscall] = ACTIONS(2482), + [anon_sym___vectorcall] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_signed] = ACTIONS(2482), + [anon_sym_unsigned] = ACTIONS(2482), + [anon_sym_long] = ACTIONS(2482), + [anon_sym_short] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_ATautoreleasepool] = ACTIONS(2484), + [anon_sym_auto] = ACTIONS(2482), + [anon_sym_register] = ACTIONS(2482), + [anon_sym_inline] = ACTIONS(2482), + [anon_sym___inline] = ACTIONS(2482), + [anon_sym___inline__] = ACTIONS(2482), + [anon_sym___forceinline] = ACTIONS(2482), + [anon_sym_thread_local] = ACTIONS(2482), + [anon_sym___thread] = ACTIONS(2482), + [anon_sym_CG_EXTERN] = ACTIONS(2482), + [anon_sym_CG_INLINE] = ACTIONS(2482), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2482), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2482), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2482), + [anon_sym_IBOutlet] = ACTIONS(2482), + [anon_sym_IBInspectable] = ACTIONS(2482), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2482), + [anon_sym_NS_INLINE] = ACTIONS(2482), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2482), + [anon_sym_OBJC_EXPORT] = ACTIONS(2482), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2482), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2482), + [anon_sym_const] = ACTIONS(2482), + [anon_sym_constexpr] = ACTIONS(2482), + [anon_sym_volatile] = ACTIONS(2482), + [anon_sym_restrict] = ACTIONS(2482), + [anon_sym___restrict__] = ACTIONS(2482), + [anon_sym__Atomic] = ACTIONS(2482), + [anon_sym__Noreturn] = ACTIONS(2482), + [anon_sym__Nonnull] = ACTIONS(2482), + [anon_sym_nullable] = ACTIONS(2482), + [anon_sym__Complex] = ACTIONS(2482), + [anon_sym__Nullable] = ACTIONS(2482), + [anon_sym__Nullable_result] = ACTIONS(2482), + [anon_sym__Null_unspecified] = ACTIONS(2482), + [anon_sym___autoreleasing] = ACTIONS(2482), + [anon_sym___block] = ACTIONS(2482), + [anon_sym___bridge] = ACTIONS(2482), + [anon_sym___bridge_retained] = ACTIONS(2482), + [anon_sym___bridge_transfer] = ACTIONS(2482), + [anon_sym___complex] = ACTIONS(2482), + [anon_sym___const] = ACTIONS(2482), + [anon_sym___imag] = ACTIONS(2482), + [anon_sym___kindof] = ACTIONS(2482), + [anon_sym___nonnull] = ACTIONS(2482), + [anon_sym___nullable] = ACTIONS(2482), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2482), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2482), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2482), + [anon_sym___real] = ACTIONS(2482), + [anon_sym___strong] = ACTIONS(2482), + [anon_sym___unsafe_unretained] = ACTIONS(2482), + [anon_sym___unused] = ACTIONS(2482), + [anon_sym___weak] = ACTIONS(2482), + [anon_sym_alignas] = ACTIONS(2482), + [anon_sym__Alignas] = ACTIONS(2482), + [sym_primitive_type] = ACTIONS(2482), + [anon_sym_enum] = ACTIONS(2482), + [anon_sym_struct] = ACTIONS(2482), + [anon_sym_union] = ACTIONS(2482), + [anon_sym_if] = ACTIONS(2482), + [anon_sym_else] = ACTIONS(2482), + [anon_sym_switch] = ACTIONS(2482), + [anon_sym_case] = ACTIONS(2482), + [anon_sym_default] = ACTIONS(2482), + [anon_sym_while] = ACTIONS(2482), + [anon_sym_do] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2482), + [anon_sym_continue] = ACTIONS(2482), + [anon_sym_goto] = ACTIONS(2482), + [anon_sym_DASH_DASH] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(2484), + [anon_sym_sizeof] = ACTIONS(2482), + [anon_sym___alignof__] = ACTIONS(2482), + [anon_sym___alignof] = ACTIONS(2482), + [anon_sym__alignof] = ACTIONS(2482), + [anon_sym_alignof] = ACTIONS(2482), + [anon_sym__Alignof] = ACTIONS(2482), + [anon_sym_offsetof] = ACTIONS(2482), + [anon_sym__Generic] = ACTIONS(2482), + [anon_sym_asm] = ACTIONS(2482), + [anon_sym___asm__] = ACTIONS(2482), + [anon_sym___asm] = ACTIONS(2482), + [sym_number_literal] = ACTIONS(2484), + [anon_sym_L_SQUOTE] = ACTIONS(2484), + [anon_sym_u_SQUOTE] = ACTIONS(2484), + [anon_sym_U_SQUOTE] = ACTIONS(2484), + [anon_sym_u8_SQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [anon_sym_AT] = ACTIONS(2482), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_L_DQUOTE] = ACTIONS(2484), + [anon_sym_u_DQUOTE] = ACTIONS(2484), + [anon_sym_U_DQUOTE] = ACTIONS(2484), + [anon_sym_u8_DQUOTE] = ACTIONS(2484), + [sym_true] = ACTIONS(2482), + [sym_false] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_nullptr] = ACTIONS(2482), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2482), + [anon_sym___typeof] = ACTIONS(2482), + [anon_sym_typeof] = ACTIONS(2482), + [anon_sym_ATimport] = ACTIONS(2484), + [aux_sym_preproc_undef_token1] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2482), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2482), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2482), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2482), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2482), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2482), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2482), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2482), + [anon_sym_NS_AVAILABLE] = ACTIONS(2482), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2482), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_API_AVAILABLE] = ACTIONS(2482), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_API_DEPRECATED] = ACTIONS(2482), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2482), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2482), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2482), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2482), + [anon_sym___deprecated_msg] = ACTIONS(2482), + [anon_sym___deprecated_enum_msg] = ACTIONS(2482), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2482), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2482), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2482), + [anon_sym_ATprotocol] = ACTIONS(2484), + [anon_sym_ATinterface] = ACTIONS(2484), + [anon_sym_ATimplementation] = ACTIONS(2484), + [anon_sym_ATcompatibility_alias] = ACTIONS(2484), + [anon_sym_ATsynthesize] = ACTIONS(2484), + [anon_sym_ATdynamic] = ACTIONS(2484), + [anon_sym_ATtry] = ACTIONS(2484), + [anon_sym___try] = ACTIONS(2482), + [anon_sym_ATthrow] = ACTIONS(2484), + [anon_sym_ATselector] = ACTIONS(2484), + [anon_sym_ATavailable] = ACTIONS(2484), + [anon_sym___builtin_available] = ACTIONS(2482), + [anon_sym_va_arg] = ACTIONS(2482), + [anon_sym_ATencode] = ACTIONS(2484), + [anon_sym_ATsynchronized] = ACTIONS(2484), + [anon_sym_BOOL] = ACTIONS(2482), + [anon_sym_IMP] = ACTIONS(2482), + [anon_sym_SEL] = ACTIONS(2482), + [anon_sym_Class] = ACTIONS(2482), + [anon_sym_id] = ACTIONS(2482), + }, + [404] = { + [sym_identifier] = ACTIONS(2486), + [aux_sym_preproc_include_token1] = ACTIONS(2486), + [aux_sym_preproc_include_token2] = ACTIONS(2486), + [aux_sym_preproc_def_token1] = ACTIONS(2486), + [aux_sym_preproc_if_token1] = ACTIONS(2486), + [aux_sym_preproc_if_token2] = ACTIONS(2486), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2486), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2486), + [aux_sym_preproc_else_token1] = ACTIONS(2486), + [aux_sym_preproc_elif_token1] = ACTIONS(2486), + [sym_preproc_directive] = ACTIONS(2486), + [anon_sym_LPAREN2] = ACTIONS(2488), + [anon_sym_BANG] = ACTIONS(2488), + [anon_sym_TILDE] = ACTIONS(2488), + [anon_sym_DASH] = ACTIONS(2486), + [anon_sym_PLUS] = ACTIONS(2486), + [anon_sym_STAR] = ACTIONS(2488), + [anon_sym_CARET] = ACTIONS(2488), + [anon_sym_AMP] = ACTIONS(2488), + [anon_sym_SEMI] = ACTIONS(2488), + [anon_sym___extension__] = ACTIONS(2486), + [anon_sym_typedef] = ACTIONS(2486), + [anon_sym_extern] = ACTIONS(2486), + [anon_sym___attribute__] = ACTIONS(2486), + [anon_sym___attribute] = ACTIONS(2486), + [anon_sym_noreturn] = ACTIONS(2486), + [anon_sym_LBRACK] = ACTIONS(2488), + [anon_sym___declspec] = ACTIONS(2486), + [anon_sym___cdecl] = ACTIONS(2486), + [anon_sym___clrcall] = ACTIONS(2486), + [anon_sym___stdcall] = ACTIONS(2486), + [anon_sym___fastcall] = ACTIONS(2486), + [anon_sym___thiscall] = ACTIONS(2486), + [anon_sym___vectorcall] = ACTIONS(2486), + [anon_sym_LBRACE] = ACTIONS(2488), + [anon_sym_signed] = ACTIONS(2486), + [anon_sym_unsigned] = ACTIONS(2486), + [anon_sym_long] = ACTIONS(2486), + [anon_sym_short] = ACTIONS(2486), + [anon_sym_static] = ACTIONS(2486), + [anon_sym_ATautoreleasepool] = ACTIONS(2488), + [anon_sym_auto] = ACTIONS(2486), + [anon_sym_register] = ACTIONS(2486), + [anon_sym_inline] = ACTIONS(2486), + [anon_sym___inline] = ACTIONS(2486), + [anon_sym___inline__] = ACTIONS(2486), + [anon_sym___forceinline] = ACTIONS(2486), + [anon_sym_thread_local] = ACTIONS(2486), + [anon_sym___thread] = ACTIONS(2486), + [anon_sym_CG_EXTERN] = ACTIONS(2486), + [anon_sym_CG_INLINE] = ACTIONS(2486), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2486), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2486), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2486), + [anon_sym_IBOutlet] = ACTIONS(2486), + [anon_sym_IBInspectable] = ACTIONS(2486), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2486), + [anon_sym_NS_INLINE] = ACTIONS(2486), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2486), + [anon_sym_OBJC_EXPORT] = ACTIONS(2486), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2486), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2486), + [anon_sym_const] = ACTIONS(2486), + [anon_sym_constexpr] = ACTIONS(2486), + [anon_sym_volatile] = ACTIONS(2486), + [anon_sym_restrict] = ACTIONS(2486), + [anon_sym___restrict__] = ACTIONS(2486), + [anon_sym__Atomic] = ACTIONS(2486), + [anon_sym__Noreturn] = ACTIONS(2486), + [anon_sym__Nonnull] = ACTIONS(2486), + [anon_sym_nullable] = ACTIONS(2486), + [anon_sym__Complex] = ACTIONS(2486), + [anon_sym__Nullable] = ACTIONS(2486), + [anon_sym__Nullable_result] = ACTIONS(2486), + [anon_sym__Null_unspecified] = ACTIONS(2486), + [anon_sym___autoreleasing] = ACTIONS(2486), + [anon_sym___block] = ACTIONS(2486), + [anon_sym___bridge] = ACTIONS(2486), + [anon_sym___bridge_retained] = ACTIONS(2486), + [anon_sym___bridge_transfer] = ACTIONS(2486), + [anon_sym___complex] = ACTIONS(2486), + [anon_sym___const] = ACTIONS(2486), + [anon_sym___imag] = ACTIONS(2486), + [anon_sym___kindof] = ACTIONS(2486), + [anon_sym___nonnull] = ACTIONS(2486), + [anon_sym___nullable] = ACTIONS(2486), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2486), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2486), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2486), + [anon_sym___real] = ACTIONS(2486), + [anon_sym___strong] = ACTIONS(2486), + [anon_sym___unsafe_unretained] = ACTIONS(2486), + [anon_sym___unused] = ACTIONS(2486), + [anon_sym___weak] = ACTIONS(2486), + [anon_sym_alignas] = ACTIONS(2486), + [anon_sym__Alignas] = ACTIONS(2486), + [sym_primitive_type] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2486), + [anon_sym_struct] = ACTIONS(2486), + [anon_sym_union] = ACTIONS(2486), + [anon_sym_if] = ACTIONS(2486), + [anon_sym_else] = ACTIONS(2486), + [anon_sym_switch] = ACTIONS(2486), + [anon_sym_case] = ACTIONS(2486), + [anon_sym_default] = ACTIONS(2486), + [anon_sym_while] = ACTIONS(2486), + [anon_sym_do] = ACTIONS(2486), + [anon_sym_for] = ACTIONS(2486), + [anon_sym_in] = ACTIONS(2486), + [anon_sym_return] = ACTIONS(2486), + [anon_sym_break] = ACTIONS(2486), + [anon_sym_continue] = ACTIONS(2486), + [anon_sym_goto] = ACTIONS(2486), + [anon_sym_DASH_DASH] = ACTIONS(2488), + [anon_sym_PLUS_PLUS] = ACTIONS(2488), + [anon_sym_sizeof] = ACTIONS(2486), + [anon_sym___alignof__] = ACTIONS(2486), + [anon_sym___alignof] = ACTIONS(2486), + [anon_sym__alignof] = ACTIONS(2486), + [anon_sym_alignof] = ACTIONS(2486), + [anon_sym__Alignof] = ACTIONS(2486), + [anon_sym_offsetof] = ACTIONS(2486), + [anon_sym__Generic] = ACTIONS(2486), + [anon_sym_asm] = ACTIONS(2486), + [anon_sym___asm__] = ACTIONS(2486), + [anon_sym___asm] = ACTIONS(2486), + [sym_number_literal] = ACTIONS(2488), + [anon_sym_L_SQUOTE] = ACTIONS(2488), + [anon_sym_u_SQUOTE] = ACTIONS(2488), + [anon_sym_U_SQUOTE] = ACTIONS(2488), + [anon_sym_u8_SQUOTE] = ACTIONS(2488), + [anon_sym_SQUOTE] = ACTIONS(2488), + [anon_sym_AT] = ACTIONS(2486), + [anon_sym_DQUOTE] = ACTIONS(2488), + [anon_sym_L_DQUOTE] = ACTIONS(2488), + [anon_sym_u_DQUOTE] = ACTIONS(2488), + [anon_sym_U_DQUOTE] = ACTIONS(2488), + [anon_sym_u8_DQUOTE] = ACTIONS(2488), + [sym_true] = ACTIONS(2486), + [sym_false] = ACTIONS(2486), + [anon_sym_NULL] = ACTIONS(2486), + [anon_sym_nullptr] = ACTIONS(2486), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2486), + [anon_sym___typeof] = ACTIONS(2486), + [anon_sym_typeof] = ACTIONS(2486), + [anon_sym_ATimport] = ACTIONS(2488), + [aux_sym_preproc_undef_token1] = ACTIONS(2486), + [anon_sym_POUND] = ACTIONS(2486), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2486), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2486), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2486), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2486), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2486), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2486), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2486), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2486), + [anon_sym_NS_AVAILABLE] = ACTIONS(2486), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2486), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_API_AVAILABLE] = ACTIONS(2486), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_API_DEPRECATED] = ACTIONS(2486), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2486), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2486), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2486), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2486), + [anon_sym___deprecated_msg] = ACTIONS(2486), + [anon_sym___deprecated_enum_msg] = ACTIONS(2486), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2486), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2486), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2486), + [anon_sym_ATprotocol] = ACTIONS(2488), + [anon_sym_ATinterface] = ACTIONS(2488), + [anon_sym_ATimplementation] = ACTIONS(2488), + [anon_sym_ATcompatibility_alias] = ACTIONS(2488), + [anon_sym_ATsynthesize] = ACTIONS(2488), + [anon_sym_ATdynamic] = ACTIONS(2488), + [anon_sym_ATtry] = ACTIONS(2488), + [anon_sym___try] = ACTIONS(2486), + [anon_sym_ATthrow] = ACTIONS(2488), + [anon_sym_ATselector] = ACTIONS(2488), + [anon_sym_ATavailable] = ACTIONS(2488), + [anon_sym___builtin_available] = ACTIONS(2486), + [anon_sym_va_arg] = ACTIONS(2486), + [anon_sym_ATencode] = ACTIONS(2488), + [anon_sym_ATsynchronized] = ACTIONS(2488), + [anon_sym_BOOL] = ACTIONS(2486), + [anon_sym_IMP] = ACTIONS(2486), + [anon_sym_SEL] = ACTIONS(2486), + [anon_sym_Class] = ACTIONS(2486), + [anon_sym_id] = ACTIONS(2486), + }, + [405] = { + [ts_builtin_sym_end] = ACTIONS(2356), + [sym_identifier] = ACTIONS(2354), + [aux_sym_preproc_include_token1] = ACTIONS(2354), + [aux_sym_preproc_include_token2] = ACTIONS(2354), + [aux_sym_preproc_def_token1] = ACTIONS(2354), + [aux_sym_preproc_if_token1] = ACTIONS(2354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2354), + [sym_preproc_directive] = ACTIONS(2354), + [anon_sym_LPAREN2] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2354), + [anon_sym_PLUS] = ACTIONS(2354), + [anon_sym_STAR] = ACTIONS(2356), + [anon_sym_CARET] = ACTIONS(2356), + [anon_sym_AMP] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym___extension__] = ACTIONS(2354), + [anon_sym_typedef] = ACTIONS(2354), + [anon_sym_extern] = ACTIONS(2354), + [anon_sym___attribute__] = ACTIONS(2354), + [anon_sym___attribute] = ACTIONS(2354), + [anon_sym_noreturn] = ACTIONS(2354), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym___declspec] = ACTIONS(2354), + [anon_sym___cdecl] = ACTIONS(2354), + [anon_sym___clrcall] = ACTIONS(2354), + [anon_sym___stdcall] = ACTIONS(2354), + [anon_sym___fastcall] = ACTIONS(2354), + [anon_sym___thiscall] = ACTIONS(2354), + [anon_sym___vectorcall] = ACTIONS(2354), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_signed] = ACTIONS(2354), + [anon_sym_unsigned] = ACTIONS(2354), + [anon_sym_long] = ACTIONS(2354), + [anon_sym_short] = ACTIONS(2354), + [anon_sym_static] = ACTIONS(2354), + [anon_sym_ATautoreleasepool] = ACTIONS(2356), + [anon_sym_auto] = ACTIONS(2354), + [anon_sym_register] = ACTIONS(2354), + [anon_sym_inline] = ACTIONS(2354), + [anon_sym___inline] = ACTIONS(2354), + [anon_sym___inline__] = ACTIONS(2354), + [anon_sym___forceinline] = ACTIONS(2354), + [anon_sym_thread_local] = ACTIONS(2354), + [anon_sym___thread] = ACTIONS(2354), + [anon_sym_CG_EXTERN] = ACTIONS(2354), + [anon_sym_CG_INLINE] = ACTIONS(2354), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2354), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2354), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2354), + [anon_sym_IBOutlet] = ACTIONS(2354), + [anon_sym_IBInspectable] = ACTIONS(2354), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2354), + [anon_sym_NS_INLINE] = ACTIONS(2354), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2354), + [anon_sym_OBJC_EXPORT] = ACTIONS(2354), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2354), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2354), + [anon_sym_const] = ACTIONS(2354), + [anon_sym_constexpr] = ACTIONS(2354), + [anon_sym_volatile] = ACTIONS(2354), + [anon_sym_restrict] = ACTIONS(2354), + [anon_sym___restrict__] = ACTIONS(2354), + [anon_sym__Atomic] = ACTIONS(2354), + [anon_sym__Noreturn] = ACTIONS(2354), + [anon_sym__Nonnull] = ACTIONS(2354), + [anon_sym_nullable] = ACTIONS(2354), + [anon_sym__Complex] = ACTIONS(2354), + [anon_sym__Nullable] = ACTIONS(2354), + [anon_sym__Nullable_result] = ACTIONS(2354), + [anon_sym__Null_unspecified] = ACTIONS(2354), + [anon_sym___autoreleasing] = ACTIONS(2354), + [anon_sym___block] = ACTIONS(2354), + [anon_sym___bridge] = ACTIONS(2354), + [anon_sym___bridge_retained] = ACTIONS(2354), + [anon_sym___bridge_transfer] = ACTIONS(2354), + [anon_sym___complex] = ACTIONS(2354), + [anon_sym___const] = ACTIONS(2354), + [anon_sym___imag] = ACTIONS(2354), + [anon_sym___kindof] = ACTIONS(2354), + [anon_sym___nonnull] = ACTIONS(2354), + [anon_sym___nullable] = ACTIONS(2354), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2354), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2354), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2354), + [anon_sym___real] = ACTIONS(2354), + [anon_sym___strong] = ACTIONS(2354), + [anon_sym___unsafe_unretained] = ACTIONS(2354), + [anon_sym___unused] = ACTIONS(2354), + [anon_sym___weak] = ACTIONS(2354), + [anon_sym_alignas] = ACTIONS(2354), + [anon_sym__Alignas] = ACTIONS(2354), + [sym_primitive_type] = ACTIONS(2354), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(2354), + [anon_sym_union] = ACTIONS(2354), + [anon_sym_if] = ACTIONS(2354), + [anon_sym_else] = ACTIONS(2354), + [anon_sym_switch] = ACTIONS(2354), + [anon_sym_case] = ACTIONS(2354), + [anon_sym_default] = ACTIONS(2354), + [anon_sym_while] = ACTIONS(2354), + [anon_sym_do] = ACTIONS(2354), + [anon_sym_for] = ACTIONS(2354), + [anon_sym_in] = ACTIONS(2354), + [anon_sym_return] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_goto] = ACTIONS(2354), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_sizeof] = ACTIONS(2354), + [anon_sym___alignof__] = ACTIONS(2354), + [anon_sym___alignof] = ACTIONS(2354), + [anon_sym__alignof] = ACTIONS(2354), + [anon_sym_alignof] = ACTIONS(2354), + [anon_sym__Alignof] = ACTIONS(2354), + [anon_sym_offsetof] = ACTIONS(2354), + [anon_sym__Generic] = ACTIONS(2354), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2356), + [anon_sym_u_SQUOTE] = ACTIONS(2356), + [anon_sym_U_SQUOTE] = ACTIONS(2356), + [anon_sym_u8_SQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2354), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_L_DQUOTE] = ACTIONS(2356), + [anon_sym_u_DQUOTE] = ACTIONS(2356), + [anon_sym_U_DQUOTE] = ACTIONS(2356), + [anon_sym_u8_DQUOTE] = ACTIONS(2356), + [sym_true] = ACTIONS(2354), + [sym_false] = ACTIONS(2354), + [anon_sym_NULL] = ACTIONS(2354), + [anon_sym_nullptr] = ACTIONS(2354), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2354), + [anon_sym___typeof] = ACTIONS(2354), + [anon_sym_typeof] = ACTIONS(2354), + [anon_sym_ATimport] = ACTIONS(2356), + [aux_sym_preproc_undef_token1] = ACTIONS(2354), + [anon_sym_POUND] = ACTIONS(2354), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2354), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2354), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2354), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2354), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2354), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2354), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2354), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2354), + [anon_sym_NS_AVAILABLE] = ACTIONS(2354), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2354), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_API_AVAILABLE] = ACTIONS(2354), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_API_DEPRECATED] = ACTIONS(2354), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2354), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2354), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2354), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2354), + [anon_sym___deprecated_msg] = ACTIONS(2354), + [anon_sym___deprecated_enum_msg] = ACTIONS(2354), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2354), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2354), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2354), + [anon_sym_ATprotocol] = ACTIONS(2356), + [anon_sym_ATinterface] = ACTIONS(2356), + [anon_sym_ATimplementation] = ACTIONS(2356), + [anon_sym_ATcompatibility_alias] = ACTIONS(2356), + [anon_sym_ATtry] = ACTIONS(2356), + [anon_sym___try] = ACTIONS(2354), + [anon_sym_ATcatch] = ACTIONS(2356), + [anon_sym___catch] = ACTIONS(2354), + [anon_sym_ATfinally] = ACTIONS(2356), + [anon_sym___finally] = ACTIONS(2354), + [anon_sym_ATthrow] = ACTIONS(2356), + [anon_sym_ATselector] = ACTIONS(2356), + [anon_sym_ATavailable] = ACTIONS(2356), + [anon_sym___builtin_available] = ACTIONS(2354), + [anon_sym_va_arg] = ACTIONS(2354), + [anon_sym_ATencode] = ACTIONS(2356), + [anon_sym_ATsynchronized] = ACTIONS(2356), + [anon_sym_BOOL] = ACTIONS(2354), + [anon_sym_IMP] = ACTIONS(2354), + [anon_sym_SEL] = ACTIONS(2354), + [anon_sym_Class] = ACTIONS(2354), + [anon_sym_id] = ACTIONS(2354), + }, + [406] = { + [sym_identifier] = ACTIONS(2568), + [aux_sym_preproc_include_token1] = ACTIONS(2568), + [aux_sym_preproc_include_token2] = ACTIONS(2568), + [aux_sym_preproc_def_token1] = ACTIONS(2568), + [aux_sym_preproc_if_token1] = ACTIONS(2568), + [aux_sym_preproc_if_token2] = ACTIONS(2568), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2568), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2568), + [aux_sym_preproc_else_token1] = ACTIONS(2568), + [aux_sym_preproc_elif_token1] = ACTIONS(2568), + [sym_preproc_directive] = ACTIONS(2568), + [anon_sym_LPAREN2] = ACTIONS(2570), + [anon_sym_BANG] = ACTIONS(2570), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_CARET] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym___extension__] = ACTIONS(2568), + [anon_sym_typedef] = ACTIONS(2568), + [anon_sym_extern] = ACTIONS(2568), + [anon_sym___attribute__] = ACTIONS(2568), + [anon_sym___attribute] = ACTIONS(2568), + [anon_sym_noreturn] = ACTIONS(2568), + [anon_sym_LBRACK] = ACTIONS(2570), + [anon_sym___declspec] = ACTIONS(2568), + [anon_sym___cdecl] = ACTIONS(2568), + [anon_sym___clrcall] = ACTIONS(2568), + [anon_sym___stdcall] = ACTIONS(2568), + [anon_sym___fastcall] = ACTIONS(2568), + [anon_sym___thiscall] = ACTIONS(2568), + [anon_sym___vectorcall] = ACTIONS(2568), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_signed] = ACTIONS(2568), + [anon_sym_unsigned] = ACTIONS(2568), + [anon_sym_long] = ACTIONS(2568), + [anon_sym_short] = ACTIONS(2568), + [anon_sym_static] = ACTIONS(2568), + [anon_sym_ATautoreleasepool] = ACTIONS(2570), + [anon_sym_auto] = ACTIONS(2568), + [anon_sym_register] = ACTIONS(2568), + [anon_sym_inline] = ACTIONS(2568), + [anon_sym___inline] = ACTIONS(2568), + [anon_sym___inline__] = ACTIONS(2568), + [anon_sym___forceinline] = ACTIONS(2568), + [anon_sym_thread_local] = ACTIONS(2568), + [anon_sym___thread] = ACTIONS(2568), + [anon_sym_CG_EXTERN] = ACTIONS(2568), + [anon_sym_CG_INLINE] = ACTIONS(2568), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2568), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2568), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2568), + [anon_sym_IBOutlet] = ACTIONS(2568), + [anon_sym_IBInspectable] = ACTIONS(2568), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2568), + [anon_sym_NS_INLINE] = ACTIONS(2568), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2568), + [anon_sym_OBJC_EXPORT] = ACTIONS(2568), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2568), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2568), + [anon_sym_const] = ACTIONS(2568), + [anon_sym_constexpr] = ACTIONS(2568), + [anon_sym_volatile] = ACTIONS(2568), + [anon_sym_restrict] = ACTIONS(2568), + [anon_sym___restrict__] = ACTIONS(2568), + [anon_sym__Atomic] = ACTIONS(2568), + [anon_sym__Noreturn] = ACTIONS(2568), + [anon_sym__Nonnull] = ACTIONS(2568), + [anon_sym_nullable] = ACTIONS(2568), + [anon_sym__Complex] = ACTIONS(2568), + [anon_sym__Nullable] = ACTIONS(2568), + [anon_sym__Nullable_result] = ACTIONS(2568), + [anon_sym__Null_unspecified] = ACTIONS(2568), + [anon_sym___autoreleasing] = ACTIONS(2568), + [anon_sym___block] = ACTIONS(2568), + [anon_sym___bridge] = ACTIONS(2568), + [anon_sym___bridge_retained] = ACTIONS(2568), + [anon_sym___bridge_transfer] = ACTIONS(2568), + [anon_sym___complex] = ACTIONS(2568), + [anon_sym___const] = ACTIONS(2568), + [anon_sym___imag] = ACTIONS(2568), + [anon_sym___kindof] = ACTIONS(2568), + [anon_sym___nonnull] = ACTIONS(2568), + [anon_sym___nullable] = ACTIONS(2568), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2568), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2568), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2568), + [anon_sym___real] = ACTIONS(2568), + [anon_sym___strong] = ACTIONS(2568), + [anon_sym___unsafe_unretained] = ACTIONS(2568), + [anon_sym___unused] = ACTIONS(2568), + [anon_sym___weak] = ACTIONS(2568), + [anon_sym_alignas] = ACTIONS(2568), + [anon_sym__Alignas] = ACTIONS(2568), + [sym_primitive_type] = ACTIONS(2568), + [anon_sym_enum] = ACTIONS(2568), + [anon_sym_struct] = ACTIONS(2568), + [anon_sym_union] = ACTIONS(2568), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_else] = ACTIONS(2568), + [anon_sym_switch] = ACTIONS(2568), + [anon_sym_case] = ACTIONS(2568), + [anon_sym_default] = ACTIONS(2568), + [anon_sym_while] = ACTIONS(2568), + [anon_sym_do] = ACTIONS(2568), + [anon_sym_for] = ACTIONS(2568), + [anon_sym_in] = ACTIONS(2568), + [anon_sym_return] = ACTIONS(2568), + [anon_sym_break] = ACTIONS(2568), + [anon_sym_continue] = ACTIONS(2568), + [anon_sym_goto] = ACTIONS(2568), + [anon_sym_DASH_DASH] = ACTIONS(2570), + [anon_sym_PLUS_PLUS] = ACTIONS(2570), + [anon_sym_sizeof] = ACTIONS(2568), + [anon_sym___alignof__] = ACTIONS(2568), + [anon_sym___alignof] = ACTIONS(2568), + [anon_sym__alignof] = ACTIONS(2568), + [anon_sym_alignof] = ACTIONS(2568), + [anon_sym__Alignof] = ACTIONS(2568), + [anon_sym_offsetof] = ACTIONS(2568), + [anon_sym__Generic] = ACTIONS(2568), + [anon_sym_asm] = ACTIONS(2568), + [anon_sym___asm__] = ACTIONS(2568), + [anon_sym___asm] = ACTIONS(2568), + [sym_number_literal] = ACTIONS(2570), + [anon_sym_L_SQUOTE] = ACTIONS(2570), + [anon_sym_u_SQUOTE] = ACTIONS(2570), + [anon_sym_U_SQUOTE] = ACTIONS(2570), + [anon_sym_u8_SQUOTE] = ACTIONS(2570), + [anon_sym_SQUOTE] = ACTIONS(2570), + [anon_sym_AT] = ACTIONS(2568), + [anon_sym_DQUOTE] = ACTIONS(2570), + [anon_sym_L_DQUOTE] = ACTIONS(2570), + [anon_sym_u_DQUOTE] = ACTIONS(2570), + [anon_sym_U_DQUOTE] = ACTIONS(2570), + [anon_sym_u8_DQUOTE] = ACTIONS(2570), + [sym_true] = ACTIONS(2568), + [sym_false] = ACTIONS(2568), + [anon_sym_NULL] = ACTIONS(2568), + [anon_sym_nullptr] = ACTIONS(2568), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2568), + [anon_sym___typeof] = ACTIONS(2568), + [anon_sym_typeof] = ACTIONS(2568), + [anon_sym_ATimport] = ACTIONS(2570), + [aux_sym_preproc_undef_token1] = ACTIONS(2568), + [anon_sym_POUND] = ACTIONS(2568), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2568), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2568), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2568), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2568), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2568), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2568), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2568), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2568), + [anon_sym_NS_AVAILABLE] = ACTIONS(2568), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2568), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_API_AVAILABLE] = ACTIONS(2568), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_API_DEPRECATED] = ACTIONS(2568), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2568), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2568), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2568), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2568), + [anon_sym___deprecated_msg] = ACTIONS(2568), + [anon_sym___deprecated_enum_msg] = ACTIONS(2568), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2568), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2568), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2568), + [anon_sym_ATprotocol] = ACTIONS(2570), + [anon_sym_ATinterface] = ACTIONS(2570), + [anon_sym_ATimplementation] = ACTIONS(2570), + [anon_sym_ATcompatibility_alias] = ACTIONS(2570), + [anon_sym_ATsynthesize] = ACTIONS(2570), + [anon_sym_ATdynamic] = ACTIONS(2570), + [anon_sym_ATtry] = ACTIONS(2570), + [anon_sym___try] = ACTIONS(2568), + [anon_sym_ATthrow] = ACTIONS(2570), + [anon_sym_ATselector] = ACTIONS(2570), + [anon_sym_ATavailable] = ACTIONS(2570), + [anon_sym___builtin_available] = ACTIONS(2568), + [anon_sym_va_arg] = ACTIONS(2568), + [anon_sym_ATencode] = ACTIONS(2570), + [anon_sym_ATsynchronized] = ACTIONS(2570), + [anon_sym_BOOL] = ACTIONS(2568), + [anon_sym_IMP] = ACTIONS(2568), + [anon_sym_SEL] = ACTIONS(2568), + [anon_sym_Class] = ACTIONS(2568), + [anon_sym_id] = ACTIONS(2568), + }, + [407] = { + [sym_identifier] = ACTIONS(2412), + [aux_sym_preproc_include_token1] = ACTIONS(2412), + [aux_sym_preproc_include_token2] = ACTIONS(2412), + [aux_sym_preproc_def_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token2] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2412), + [aux_sym_preproc_else_token1] = ACTIONS(2412), + [aux_sym_preproc_elif_token1] = ACTIONS(2412), + [sym_preproc_directive] = ACTIONS(2412), + [anon_sym_LPAREN2] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2414), + [anon_sym_TILDE] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_STAR] = ACTIONS(2414), + [anon_sym_CARET] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym___extension__] = ACTIONS(2412), + [anon_sym_typedef] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym___attribute__] = ACTIONS(2412), + [anon_sym___attribute] = ACTIONS(2412), + [anon_sym_noreturn] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym___declspec] = ACTIONS(2412), + [anon_sym___cdecl] = ACTIONS(2412), + [anon_sym___clrcall] = ACTIONS(2412), + [anon_sym___stdcall] = ACTIONS(2412), + [anon_sym___fastcall] = ACTIONS(2412), + [anon_sym___thiscall] = ACTIONS(2412), + [anon_sym___vectorcall] = ACTIONS(2412), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_signed] = ACTIONS(2412), + [anon_sym_unsigned] = ACTIONS(2412), + [anon_sym_long] = ACTIONS(2412), + [anon_sym_short] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_ATautoreleasepool] = ACTIONS(2414), + [anon_sym_auto] = ACTIONS(2412), + [anon_sym_register] = ACTIONS(2412), + [anon_sym_inline] = ACTIONS(2412), + [anon_sym___inline] = ACTIONS(2412), + [anon_sym___inline__] = ACTIONS(2412), + [anon_sym___forceinline] = ACTIONS(2412), + [anon_sym_thread_local] = ACTIONS(2412), + [anon_sym___thread] = ACTIONS(2412), + [anon_sym_CG_EXTERN] = ACTIONS(2412), + [anon_sym_CG_INLINE] = ACTIONS(2412), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2412), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2412), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2412), + [anon_sym_IBOutlet] = ACTIONS(2412), + [anon_sym_IBInspectable] = ACTIONS(2412), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2412), + [anon_sym_NS_INLINE] = ACTIONS(2412), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2412), + [anon_sym_OBJC_EXPORT] = ACTIONS(2412), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2412), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_constexpr] = ACTIONS(2412), + [anon_sym_volatile] = ACTIONS(2412), + [anon_sym_restrict] = ACTIONS(2412), + [anon_sym___restrict__] = ACTIONS(2412), + [anon_sym__Atomic] = ACTIONS(2412), + [anon_sym__Noreturn] = ACTIONS(2412), + [anon_sym__Nonnull] = ACTIONS(2412), + [anon_sym_nullable] = ACTIONS(2412), + [anon_sym__Complex] = ACTIONS(2412), + [anon_sym__Nullable] = ACTIONS(2412), + [anon_sym__Nullable_result] = ACTIONS(2412), + [anon_sym__Null_unspecified] = ACTIONS(2412), + [anon_sym___autoreleasing] = ACTIONS(2412), + [anon_sym___block] = ACTIONS(2412), + [anon_sym___bridge] = ACTIONS(2412), + [anon_sym___bridge_retained] = ACTIONS(2412), + [anon_sym___bridge_transfer] = ACTIONS(2412), + [anon_sym___complex] = ACTIONS(2412), + [anon_sym___const] = ACTIONS(2412), + [anon_sym___imag] = ACTIONS(2412), + [anon_sym___kindof] = ACTIONS(2412), + [anon_sym___nonnull] = ACTIONS(2412), + [anon_sym___nullable] = ACTIONS(2412), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2412), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2412), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2412), + [anon_sym___real] = ACTIONS(2412), + [anon_sym___strong] = ACTIONS(2412), + [anon_sym___unsafe_unretained] = ACTIONS(2412), + [anon_sym___unused] = ACTIONS(2412), + [anon_sym___weak] = ACTIONS(2412), + [anon_sym_alignas] = ACTIONS(2412), + [anon_sym__Alignas] = ACTIONS(2412), + [sym_primitive_type] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [anon_sym_struct] = ACTIONS(2412), + [anon_sym_union] = ACTIONS(2412), + [anon_sym_if] = ACTIONS(2412), + [anon_sym_else] = ACTIONS(2412), + [anon_sym_switch] = ACTIONS(2412), + [anon_sym_case] = ACTIONS(2412), + [anon_sym_default] = ACTIONS(2412), + [anon_sym_while] = ACTIONS(2412), + [anon_sym_do] = ACTIONS(2412), + [anon_sym_for] = ACTIONS(2412), + [anon_sym_in] = ACTIONS(2412), + [anon_sym_return] = ACTIONS(2412), + [anon_sym_break] = ACTIONS(2412), + [anon_sym_continue] = ACTIONS(2412), + [anon_sym_goto] = ACTIONS(2412), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_sizeof] = ACTIONS(2412), + [anon_sym___alignof__] = ACTIONS(2412), + [anon_sym___alignof] = ACTIONS(2412), + [anon_sym__alignof] = ACTIONS(2412), + [anon_sym_alignof] = ACTIONS(2412), + [anon_sym__Alignof] = ACTIONS(2412), + [anon_sym_offsetof] = ACTIONS(2412), + [anon_sym__Generic] = ACTIONS(2412), + [anon_sym_asm] = ACTIONS(2412), + [anon_sym___asm__] = ACTIONS(2412), + [anon_sym___asm] = ACTIONS(2412), + [sym_number_literal] = ACTIONS(2414), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_AT] = ACTIONS(2412), + [anon_sym_DQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2412), + [sym_false] = ACTIONS(2412), + [anon_sym_NULL] = ACTIONS(2412), + [anon_sym_nullptr] = ACTIONS(2412), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2412), + [anon_sym___typeof] = ACTIONS(2412), + [anon_sym_typeof] = ACTIONS(2412), + [anon_sym_ATimport] = ACTIONS(2414), + [aux_sym_preproc_undef_token1] = ACTIONS(2412), + [anon_sym_POUND] = ACTIONS(2412), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2412), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2412), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2412), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2412), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2412), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2412), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2412), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2412), + [anon_sym_NS_AVAILABLE] = ACTIONS(2412), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2412), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_API_AVAILABLE] = ACTIONS(2412), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_API_DEPRECATED] = ACTIONS(2412), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2412), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2412), + [anon_sym___deprecated_msg] = ACTIONS(2412), + [anon_sym___deprecated_enum_msg] = ACTIONS(2412), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2412), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2412), + [anon_sym_ATprotocol] = ACTIONS(2414), + [anon_sym_ATinterface] = ACTIONS(2414), + [anon_sym_ATimplementation] = ACTIONS(2414), + [anon_sym_ATcompatibility_alias] = ACTIONS(2414), + [anon_sym_ATsynthesize] = ACTIONS(2414), + [anon_sym_ATdynamic] = ACTIONS(2414), + [anon_sym_ATtry] = ACTIONS(2414), + [anon_sym___try] = ACTIONS(2412), + [anon_sym_ATthrow] = ACTIONS(2414), + [anon_sym_ATselector] = ACTIONS(2414), + [anon_sym_ATavailable] = ACTIONS(2414), + [anon_sym___builtin_available] = ACTIONS(2412), + [anon_sym_va_arg] = ACTIONS(2412), + [anon_sym_ATencode] = ACTIONS(2414), + [anon_sym_ATsynchronized] = ACTIONS(2414), + [anon_sym_BOOL] = ACTIONS(2412), + [anon_sym_IMP] = ACTIONS(2412), + [anon_sym_SEL] = ACTIONS(2412), + [anon_sym_Class] = ACTIONS(2412), + [anon_sym_id] = ACTIONS(2412), + }, + [408] = { + [sym_identifier] = ACTIONS(2494), + [aux_sym_preproc_include_token1] = ACTIONS(2494), + [aux_sym_preproc_include_token2] = ACTIONS(2494), + [aux_sym_preproc_def_token1] = ACTIONS(2494), + [aux_sym_preproc_if_token1] = ACTIONS(2494), + [aux_sym_preproc_if_token2] = ACTIONS(2494), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2494), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2494), + [aux_sym_preproc_else_token1] = ACTIONS(2494), + [aux_sym_preproc_elif_token1] = ACTIONS(2494), + [sym_preproc_directive] = ACTIONS(2494), + [anon_sym_LPAREN2] = ACTIONS(2496), + [anon_sym_BANG] = ACTIONS(2496), + [anon_sym_TILDE] = ACTIONS(2496), + [anon_sym_DASH] = ACTIONS(2494), + [anon_sym_PLUS] = ACTIONS(2494), + [anon_sym_STAR] = ACTIONS(2496), + [anon_sym_CARET] = ACTIONS(2496), + [anon_sym_AMP] = ACTIONS(2496), + [anon_sym_SEMI] = ACTIONS(2496), + [anon_sym___extension__] = ACTIONS(2494), + [anon_sym_typedef] = ACTIONS(2494), + [anon_sym_extern] = ACTIONS(2494), + [anon_sym___attribute__] = ACTIONS(2494), + [anon_sym___attribute] = ACTIONS(2494), + [anon_sym_noreturn] = ACTIONS(2494), + [anon_sym_LBRACK] = ACTIONS(2496), + [anon_sym___declspec] = ACTIONS(2494), + [anon_sym___cdecl] = ACTIONS(2494), + [anon_sym___clrcall] = ACTIONS(2494), + [anon_sym___stdcall] = ACTIONS(2494), + [anon_sym___fastcall] = ACTIONS(2494), + [anon_sym___thiscall] = ACTIONS(2494), + [anon_sym___vectorcall] = ACTIONS(2494), + [anon_sym_LBRACE] = ACTIONS(2496), + [anon_sym_signed] = ACTIONS(2494), + [anon_sym_unsigned] = ACTIONS(2494), + [anon_sym_long] = ACTIONS(2494), + [anon_sym_short] = ACTIONS(2494), + [anon_sym_static] = ACTIONS(2494), + [anon_sym_ATautoreleasepool] = ACTIONS(2496), + [anon_sym_auto] = ACTIONS(2494), + [anon_sym_register] = ACTIONS(2494), + [anon_sym_inline] = ACTIONS(2494), + [anon_sym___inline] = ACTIONS(2494), + [anon_sym___inline__] = ACTIONS(2494), + [anon_sym___forceinline] = ACTIONS(2494), + [anon_sym_thread_local] = ACTIONS(2494), + [anon_sym___thread] = ACTIONS(2494), + [anon_sym_CG_EXTERN] = ACTIONS(2494), + [anon_sym_CG_INLINE] = ACTIONS(2494), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2494), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2494), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2494), + [anon_sym_IBOutlet] = ACTIONS(2494), + [anon_sym_IBInspectable] = ACTIONS(2494), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2494), + [anon_sym_NS_INLINE] = ACTIONS(2494), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2494), + [anon_sym_OBJC_EXPORT] = ACTIONS(2494), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2494), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2494), + [anon_sym_const] = ACTIONS(2494), + [anon_sym_constexpr] = ACTIONS(2494), + [anon_sym_volatile] = ACTIONS(2494), + [anon_sym_restrict] = ACTIONS(2494), + [anon_sym___restrict__] = ACTIONS(2494), + [anon_sym__Atomic] = ACTIONS(2494), + [anon_sym__Noreturn] = ACTIONS(2494), + [anon_sym__Nonnull] = ACTIONS(2494), + [anon_sym_nullable] = ACTIONS(2494), + [anon_sym__Complex] = ACTIONS(2494), + [anon_sym__Nullable] = ACTIONS(2494), + [anon_sym__Nullable_result] = ACTIONS(2494), + [anon_sym__Null_unspecified] = ACTIONS(2494), + [anon_sym___autoreleasing] = ACTIONS(2494), + [anon_sym___block] = ACTIONS(2494), + [anon_sym___bridge] = ACTIONS(2494), + [anon_sym___bridge_retained] = ACTIONS(2494), + [anon_sym___bridge_transfer] = ACTIONS(2494), + [anon_sym___complex] = ACTIONS(2494), + [anon_sym___const] = ACTIONS(2494), + [anon_sym___imag] = ACTIONS(2494), + [anon_sym___kindof] = ACTIONS(2494), + [anon_sym___nonnull] = ACTIONS(2494), + [anon_sym___nullable] = ACTIONS(2494), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2494), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2494), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2494), + [anon_sym___real] = ACTIONS(2494), + [anon_sym___strong] = ACTIONS(2494), + [anon_sym___unsafe_unretained] = ACTIONS(2494), + [anon_sym___unused] = ACTIONS(2494), + [anon_sym___weak] = ACTIONS(2494), + [anon_sym_alignas] = ACTIONS(2494), + [anon_sym__Alignas] = ACTIONS(2494), + [sym_primitive_type] = ACTIONS(2494), + [anon_sym_enum] = ACTIONS(2494), + [anon_sym_struct] = ACTIONS(2494), + [anon_sym_union] = ACTIONS(2494), + [anon_sym_if] = ACTIONS(2494), + [anon_sym_else] = ACTIONS(2494), + [anon_sym_switch] = ACTIONS(2494), + [anon_sym_case] = ACTIONS(2494), + [anon_sym_default] = ACTIONS(2494), + [anon_sym_while] = ACTIONS(2494), + [anon_sym_do] = ACTIONS(2494), + [anon_sym_for] = ACTIONS(2494), + [anon_sym_in] = ACTIONS(2494), + [anon_sym_return] = ACTIONS(2494), + [anon_sym_break] = ACTIONS(2494), + [anon_sym_continue] = ACTIONS(2494), + [anon_sym_goto] = ACTIONS(2494), + [anon_sym_DASH_DASH] = ACTIONS(2496), + [anon_sym_PLUS_PLUS] = ACTIONS(2496), + [anon_sym_sizeof] = ACTIONS(2494), + [anon_sym___alignof__] = ACTIONS(2494), + [anon_sym___alignof] = ACTIONS(2494), + [anon_sym__alignof] = ACTIONS(2494), + [anon_sym_alignof] = ACTIONS(2494), + [anon_sym__Alignof] = ACTIONS(2494), + [anon_sym_offsetof] = ACTIONS(2494), + [anon_sym__Generic] = ACTIONS(2494), + [anon_sym_asm] = ACTIONS(2494), + [anon_sym___asm__] = ACTIONS(2494), + [anon_sym___asm] = ACTIONS(2494), + [sym_number_literal] = ACTIONS(2496), + [anon_sym_L_SQUOTE] = ACTIONS(2496), + [anon_sym_u_SQUOTE] = ACTIONS(2496), + [anon_sym_U_SQUOTE] = ACTIONS(2496), + [anon_sym_u8_SQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2496), + [anon_sym_AT] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_L_DQUOTE] = ACTIONS(2496), + [anon_sym_u_DQUOTE] = ACTIONS(2496), + [anon_sym_U_DQUOTE] = ACTIONS(2496), + [anon_sym_u8_DQUOTE] = ACTIONS(2496), + [sym_true] = ACTIONS(2494), + [sym_false] = ACTIONS(2494), + [anon_sym_NULL] = ACTIONS(2494), + [anon_sym_nullptr] = ACTIONS(2494), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2494), + [anon_sym___typeof] = ACTIONS(2494), + [anon_sym_typeof] = ACTIONS(2494), + [anon_sym_ATimport] = ACTIONS(2496), + [aux_sym_preproc_undef_token1] = ACTIONS(2494), + [anon_sym_POUND] = ACTIONS(2494), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2494), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2494), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2494), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2494), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2494), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2494), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2494), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2494), + [anon_sym_NS_AVAILABLE] = ACTIONS(2494), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2494), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_API_AVAILABLE] = ACTIONS(2494), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_API_DEPRECATED] = ACTIONS(2494), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2494), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2494), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2494), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2494), + [anon_sym___deprecated_msg] = ACTIONS(2494), + [anon_sym___deprecated_enum_msg] = ACTIONS(2494), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2494), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2494), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2494), + [anon_sym_ATprotocol] = ACTIONS(2496), + [anon_sym_ATinterface] = ACTIONS(2496), + [anon_sym_ATimplementation] = ACTIONS(2496), + [anon_sym_ATcompatibility_alias] = ACTIONS(2496), + [anon_sym_ATsynthesize] = ACTIONS(2496), + [anon_sym_ATdynamic] = ACTIONS(2496), + [anon_sym_ATtry] = ACTIONS(2496), + [anon_sym___try] = ACTIONS(2494), + [anon_sym_ATthrow] = ACTIONS(2496), + [anon_sym_ATselector] = ACTIONS(2496), + [anon_sym_ATavailable] = ACTIONS(2496), + [anon_sym___builtin_available] = ACTIONS(2494), + [anon_sym_va_arg] = ACTIONS(2494), + [anon_sym_ATencode] = ACTIONS(2496), + [anon_sym_ATsynchronized] = ACTIONS(2496), + [anon_sym_BOOL] = ACTIONS(2494), + [anon_sym_IMP] = ACTIONS(2494), + [anon_sym_SEL] = ACTIONS(2494), + [anon_sym_Class] = ACTIONS(2494), + [anon_sym_id] = ACTIONS(2494), + }, + [409] = { + [sym_identifier] = ACTIONS(2498), + [aux_sym_preproc_include_token1] = ACTIONS(2498), + [aux_sym_preproc_include_token2] = ACTIONS(2498), + [aux_sym_preproc_def_token1] = ACTIONS(2498), + [aux_sym_preproc_if_token1] = ACTIONS(2498), + [aux_sym_preproc_if_token2] = ACTIONS(2498), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2498), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2498), + [aux_sym_preproc_else_token1] = ACTIONS(2498), + [aux_sym_preproc_elif_token1] = ACTIONS(2498), + [sym_preproc_directive] = ACTIONS(2498), + [anon_sym_LPAREN2] = ACTIONS(2500), + [anon_sym_BANG] = ACTIONS(2500), + [anon_sym_TILDE] = ACTIONS(2500), + [anon_sym_DASH] = ACTIONS(2498), + [anon_sym_PLUS] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(2500), + [anon_sym_CARET] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(2500), + [anon_sym_SEMI] = ACTIONS(2500), + [anon_sym___extension__] = ACTIONS(2498), + [anon_sym_typedef] = ACTIONS(2498), + [anon_sym_extern] = ACTIONS(2498), + [anon_sym___attribute__] = ACTIONS(2498), + [anon_sym___attribute] = ACTIONS(2498), + [anon_sym_noreturn] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2500), + [anon_sym___declspec] = ACTIONS(2498), + [anon_sym___cdecl] = ACTIONS(2498), + [anon_sym___clrcall] = ACTIONS(2498), + [anon_sym___stdcall] = ACTIONS(2498), + [anon_sym___fastcall] = ACTIONS(2498), + [anon_sym___thiscall] = ACTIONS(2498), + [anon_sym___vectorcall] = ACTIONS(2498), + [anon_sym_LBRACE] = ACTIONS(2500), + [anon_sym_signed] = ACTIONS(2498), + [anon_sym_unsigned] = ACTIONS(2498), + [anon_sym_long] = ACTIONS(2498), + [anon_sym_short] = ACTIONS(2498), + [anon_sym_static] = ACTIONS(2498), + [anon_sym_ATautoreleasepool] = ACTIONS(2500), + [anon_sym_auto] = ACTIONS(2498), + [anon_sym_register] = ACTIONS(2498), + [anon_sym_inline] = ACTIONS(2498), + [anon_sym___inline] = ACTIONS(2498), + [anon_sym___inline__] = ACTIONS(2498), + [anon_sym___forceinline] = ACTIONS(2498), + [anon_sym_thread_local] = ACTIONS(2498), + [anon_sym___thread] = ACTIONS(2498), + [anon_sym_CG_EXTERN] = ACTIONS(2498), + [anon_sym_CG_INLINE] = ACTIONS(2498), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2498), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2498), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2498), + [anon_sym_IBOutlet] = ACTIONS(2498), + [anon_sym_IBInspectable] = ACTIONS(2498), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2498), + [anon_sym_NS_INLINE] = ACTIONS(2498), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2498), + [anon_sym_OBJC_EXPORT] = ACTIONS(2498), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2498), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2498), + [anon_sym_const] = ACTIONS(2498), + [anon_sym_constexpr] = ACTIONS(2498), + [anon_sym_volatile] = ACTIONS(2498), + [anon_sym_restrict] = ACTIONS(2498), + [anon_sym___restrict__] = ACTIONS(2498), + [anon_sym__Atomic] = ACTIONS(2498), + [anon_sym__Noreturn] = ACTIONS(2498), + [anon_sym__Nonnull] = ACTIONS(2498), + [anon_sym_nullable] = ACTIONS(2498), + [anon_sym__Complex] = ACTIONS(2498), + [anon_sym__Nullable] = ACTIONS(2498), + [anon_sym__Nullable_result] = ACTIONS(2498), + [anon_sym__Null_unspecified] = ACTIONS(2498), + [anon_sym___autoreleasing] = ACTIONS(2498), + [anon_sym___block] = ACTIONS(2498), + [anon_sym___bridge] = ACTIONS(2498), + [anon_sym___bridge_retained] = ACTIONS(2498), + [anon_sym___bridge_transfer] = ACTIONS(2498), + [anon_sym___complex] = ACTIONS(2498), + [anon_sym___const] = ACTIONS(2498), + [anon_sym___imag] = ACTIONS(2498), + [anon_sym___kindof] = ACTIONS(2498), + [anon_sym___nonnull] = ACTIONS(2498), + [anon_sym___nullable] = ACTIONS(2498), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2498), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2498), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2498), + [anon_sym___real] = ACTIONS(2498), + [anon_sym___strong] = ACTIONS(2498), + [anon_sym___unsafe_unretained] = ACTIONS(2498), + [anon_sym___unused] = ACTIONS(2498), + [anon_sym___weak] = ACTIONS(2498), + [anon_sym_alignas] = ACTIONS(2498), + [anon_sym__Alignas] = ACTIONS(2498), + [sym_primitive_type] = ACTIONS(2498), + [anon_sym_enum] = ACTIONS(2498), + [anon_sym_struct] = ACTIONS(2498), + [anon_sym_union] = ACTIONS(2498), + [anon_sym_if] = ACTIONS(2498), + [anon_sym_else] = ACTIONS(2498), + [anon_sym_switch] = ACTIONS(2498), + [anon_sym_case] = ACTIONS(2498), + [anon_sym_default] = ACTIONS(2498), + [anon_sym_while] = ACTIONS(2498), + [anon_sym_do] = ACTIONS(2498), + [anon_sym_for] = ACTIONS(2498), + [anon_sym_in] = ACTIONS(2498), + [anon_sym_return] = ACTIONS(2498), + [anon_sym_break] = ACTIONS(2498), + [anon_sym_continue] = ACTIONS(2498), + [anon_sym_goto] = ACTIONS(2498), + [anon_sym_DASH_DASH] = ACTIONS(2500), + [anon_sym_PLUS_PLUS] = ACTIONS(2500), + [anon_sym_sizeof] = ACTIONS(2498), + [anon_sym___alignof__] = ACTIONS(2498), + [anon_sym___alignof] = ACTIONS(2498), + [anon_sym__alignof] = ACTIONS(2498), + [anon_sym_alignof] = ACTIONS(2498), + [anon_sym__Alignof] = ACTIONS(2498), + [anon_sym_offsetof] = ACTIONS(2498), + [anon_sym__Generic] = ACTIONS(2498), + [anon_sym_asm] = ACTIONS(2498), + [anon_sym___asm__] = ACTIONS(2498), + [anon_sym___asm] = ACTIONS(2498), + [sym_number_literal] = ACTIONS(2500), + [anon_sym_L_SQUOTE] = ACTIONS(2500), + [anon_sym_u_SQUOTE] = ACTIONS(2500), + [anon_sym_U_SQUOTE] = ACTIONS(2500), + [anon_sym_u8_SQUOTE] = ACTIONS(2500), + [anon_sym_SQUOTE] = ACTIONS(2500), + [anon_sym_AT] = ACTIONS(2498), + [anon_sym_DQUOTE] = ACTIONS(2500), + [anon_sym_L_DQUOTE] = ACTIONS(2500), + [anon_sym_u_DQUOTE] = ACTIONS(2500), + [anon_sym_U_DQUOTE] = ACTIONS(2500), + [anon_sym_u8_DQUOTE] = ACTIONS(2500), + [sym_true] = ACTIONS(2498), + [sym_false] = ACTIONS(2498), + [anon_sym_NULL] = ACTIONS(2498), + [anon_sym_nullptr] = ACTIONS(2498), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2498), + [anon_sym___typeof] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(2498), + [anon_sym_ATimport] = ACTIONS(2500), + [aux_sym_preproc_undef_token1] = ACTIONS(2498), + [anon_sym_POUND] = ACTIONS(2498), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2498), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2498), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2498), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2498), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2498), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2498), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2498), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2498), + [anon_sym_NS_AVAILABLE] = ACTIONS(2498), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2498), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_API_AVAILABLE] = ACTIONS(2498), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_API_DEPRECATED] = ACTIONS(2498), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2498), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2498), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2498), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2498), + [anon_sym___deprecated_msg] = ACTIONS(2498), + [anon_sym___deprecated_enum_msg] = ACTIONS(2498), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2498), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2498), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2498), + [anon_sym_ATprotocol] = ACTIONS(2500), + [anon_sym_ATinterface] = ACTIONS(2500), + [anon_sym_ATimplementation] = ACTIONS(2500), + [anon_sym_ATcompatibility_alias] = ACTIONS(2500), + [anon_sym_ATsynthesize] = ACTIONS(2500), + [anon_sym_ATdynamic] = ACTIONS(2500), + [anon_sym_ATtry] = ACTIONS(2500), + [anon_sym___try] = ACTIONS(2498), + [anon_sym_ATthrow] = ACTIONS(2500), + [anon_sym_ATselector] = ACTIONS(2500), + [anon_sym_ATavailable] = ACTIONS(2500), + [anon_sym___builtin_available] = ACTIONS(2498), + [anon_sym_va_arg] = ACTIONS(2498), + [anon_sym_ATencode] = ACTIONS(2500), + [anon_sym_ATsynchronized] = ACTIONS(2500), + [anon_sym_BOOL] = ACTIONS(2498), + [anon_sym_IMP] = ACTIONS(2498), + [anon_sym_SEL] = ACTIONS(2498), + [anon_sym_Class] = ACTIONS(2498), + [anon_sym_id] = ACTIONS(2498), + }, + [410] = { + [sym_identifier] = ACTIONS(2408), + [aux_sym_preproc_include_token1] = ACTIONS(2408), + [aux_sym_preproc_include_token2] = ACTIONS(2408), + [aux_sym_preproc_def_token1] = ACTIONS(2408), + [aux_sym_preproc_if_token1] = ACTIONS(2408), + [aux_sym_preproc_if_token2] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2408), + [aux_sym_preproc_else_token1] = ACTIONS(2408), + [aux_sym_preproc_elif_token1] = ACTIONS(2408), + [sym_preproc_directive] = ACTIONS(2408), + [anon_sym_LPAREN2] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2408), + [anon_sym_PLUS] = ACTIONS(2408), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_CARET] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym___extension__] = ACTIONS(2408), + [anon_sym_typedef] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym___attribute__] = ACTIONS(2408), + [anon_sym___attribute] = ACTIONS(2408), + [anon_sym_noreturn] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym___declspec] = ACTIONS(2408), + [anon_sym___cdecl] = ACTIONS(2408), + [anon_sym___clrcall] = ACTIONS(2408), + [anon_sym___stdcall] = ACTIONS(2408), + [anon_sym___fastcall] = ACTIONS(2408), + [anon_sym___thiscall] = ACTIONS(2408), + [anon_sym___vectorcall] = ACTIONS(2408), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_signed] = ACTIONS(2408), + [anon_sym_unsigned] = ACTIONS(2408), + [anon_sym_long] = ACTIONS(2408), + [anon_sym_short] = ACTIONS(2408), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_ATautoreleasepool] = ACTIONS(2410), + [anon_sym_auto] = ACTIONS(2408), + [anon_sym_register] = ACTIONS(2408), + [anon_sym_inline] = ACTIONS(2408), + [anon_sym___inline] = ACTIONS(2408), + [anon_sym___inline__] = ACTIONS(2408), + [anon_sym___forceinline] = ACTIONS(2408), + [anon_sym_thread_local] = ACTIONS(2408), + [anon_sym___thread] = ACTIONS(2408), + [anon_sym_CG_EXTERN] = ACTIONS(2408), + [anon_sym_CG_INLINE] = ACTIONS(2408), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2408), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2408), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2408), + [anon_sym_IBOutlet] = ACTIONS(2408), + [anon_sym_IBInspectable] = ACTIONS(2408), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2408), + [anon_sym_NS_INLINE] = ACTIONS(2408), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2408), + [anon_sym_OBJC_EXPORT] = ACTIONS(2408), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2408), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_constexpr] = ACTIONS(2408), + [anon_sym_volatile] = ACTIONS(2408), + [anon_sym_restrict] = ACTIONS(2408), + [anon_sym___restrict__] = ACTIONS(2408), + [anon_sym__Atomic] = ACTIONS(2408), + [anon_sym__Noreturn] = ACTIONS(2408), + [anon_sym__Nonnull] = ACTIONS(2408), + [anon_sym_nullable] = ACTIONS(2408), + [anon_sym__Complex] = ACTIONS(2408), + [anon_sym__Nullable] = ACTIONS(2408), + [anon_sym__Nullable_result] = ACTIONS(2408), + [anon_sym__Null_unspecified] = ACTIONS(2408), + [anon_sym___autoreleasing] = ACTIONS(2408), + [anon_sym___block] = ACTIONS(2408), + [anon_sym___bridge] = ACTIONS(2408), + [anon_sym___bridge_retained] = ACTIONS(2408), + [anon_sym___bridge_transfer] = ACTIONS(2408), + [anon_sym___complex] = ACTIONS(2408), + [anon_sym___const] = ACTIONS(2408), + [anon_sym___imag] = ACTIONS(2408), + [anon_sym___kindof] = ACTIONS(2408), + [anon_sym___nonnull] = ACTIONS(2408), + [anon_sym___nullable] = ACTIONS(2408), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2408), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2408), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2408), + [anon_sym___real] = ACTIONS(2408), + [anon_sym___strong] = ACTIONS(2408), + [anon_sym___unsafe_unretained] = ACTIONS(2408), + [anon_sym___unused] = ACTIONS(2408), + [anon_sym___weak] = ACTIONS(2408), + [anon_sym_alignas] = ACTIONS(2408), + [anon_sym__Alignas] = ACTIONS(2408), + [sym_primitive_type] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_struct] = ACTIONS(2408), + [anon_sym_union] = ACTIONS(2408), + [anon_sym_if] = ACTIONS(2408), + [anon_sym_else] = ACTIONS(2408), + [anon_sym_switch] = ACTIONS(2408), + [anon_sym_case] = ACTIONS(2408), + [anon_sym_default] = ACTIONS(2408), + [anon_sym_while] = ACTIONS(2408), + [anon_sym_do] = ACTIONS(2408), + [anon_sym_for] = ACTIONS(2408), + [anon_sym_in] = ACTIONS(2408), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_break] = ACTIONS(2408), + [anon_sym_continue] = ACTIONS(2408), + [anon_sym_goto] = ACTIONS(2408), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_sizeof] = ACTIONS(2408), + [anon_sym___alignof__] = ACTIONS(2408), + [anon_sym___alignof] = ACTIONS(2408), + [anon_sym__alignof] = ACTIONS(2408), + [anon_sym_alignof] = ACTIONS(2408), + [anon_sym__Alignof] = ACTIONS(2408), + [anon_sym_offsetof] = ACTIONS(2408), + [anon_sym__Generic] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2410), + [anon_sym_u_SQUOTE] = ACTIONS(2410), + [anon_sym_U_SQUOTE] = ACTIONS(2410), + [anon_sym_u8_SQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(2408), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_L_DQUOTE] = ACTIONS(2410), + [anon_sym_u_DQUOTE] = ACTIONS(2410), + [anon_sym_U_DQUOTE] = ACTIONS(2410), + [anon_sym_u8_DQUOTE] = ACTIONS(2410), + [sym_true] = ACTIONS(2408), + [sym_false] = ACTIONS(2408), + [anon_sym_NULL] = ACTIONS(2408), + [anon_sym_nullptr] = ACTIONS(2408), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2408), + [anon_sym___typeof] = ACTIONS(2408), + [anon_sym_typeof] = ACTIONS(2408), + [anon_sym_ATimport] = ACTIONS(2410), + [aux_sym_preproc_undef_token1] = ACTIONS(2408), + [anon_sym_POUND] = ACTIONS(2408), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2408), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2408), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2408), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2408), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2408), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2408), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2408), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2408), + [anon_sym_NS_AVAILABLE] = ACTIONS(2408), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2408), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_API_AVAILABLE] = ACTIONS(2408), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_API_DEPRECATED] = ACTIONS(2408), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2408), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2408), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2408), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2408), + [anon_sym___deprecated_msg] = ACTIONS(2408), + [anon_sym___deprecated_enum_msg] = ACTIONS(2408), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2408), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2408), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2408), + [anon_sym_ATprotocol] = ACTIONS(2410), + [anon_sym_ATinterface] = ACTIONS(2410), + [anon_sym_ATimplementation] = ACTIONS(2410), + [anon_sym_ATcompatibility_alias] = ACTIONS(2410), + [anon_sym_ATsynthesize] = ACTIONS(2410), + [anon_sym_ATdynamic] = ACTIONS(2410), + [anon_sym_ATtry] = ACTIONS(2410), + [anon_sym___try] = ACTIONS(2408), + [anon_sym_ATthrow] = ACTIONS(2410), + [anon_sym_ATselector] = ACTIONS(2410), + [anon_sym_ATavailable] = ACTIONS(2410), + [anon_sym___builtin_available] = ACTIONS(2408), + [anon_sym_va_arg] = ACTIONS(2408), + [anon_sym_ATencode] = ACTIONS(2410), + [anon_sym_ATsynchronized] = ACTIONS(2410), + [anon_sym_BOOL] = ACTIONS(2408), + [anon_sym_IMP] = ACTIONS(2408), + [anon_sym_SEL] = ACTIONS(2408), + [anon_sym_Class] = ACTIONS(2408), + [anon_sym_id] = ACTIONS(2408), + }, + [411] = { + [sym_identifier] = ACTIONS(2508), + [aux_sym_preproc_include_token1] = ACTIONS(2508), + [aux_sym_preproc_include_token2] = ACTIONS(2508), + [aux_sym_preproc_def_token1] = ACTIONS(2508), + [aux_sym_preproc_if_token1] = ACTIONS(2508), + [aux_sym_preproc_if_token2] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2508), + [aux_sym_preproc_else_token1] = ACTIONS(2508), + [aux_sym_preproc_elif_token1] = ACTIONS(2508), + [sym_preproc_directive] = ACTIONS(2508), + [anon_sym_LPAREN2] = ACTIONS(2510), + [anon_sym_BANG] = ACTIONS(2510), + [anon_sym_TILDE] = ACTIONS(2510), + [anon_sym_DASH] = ACTIONS(2508), + [anon_sym_PLUS] = ACTIONS(2508), + [anon_sym_STAR] = ACTIONS(2510), + [anon_sym_CARET] = ACTIONS(2510), + [anon_sym_AMP] = ACTIONS(2510), + [anon_sym_SEMI] = ACTIONS(2510), + [anon_sym___extension__] = ACTIONS(2508), + [anon_sym_typedef] = ACTIONS(2508), + [anon_sym_extern] = ACTIONS(2508), + [anon_sym___attribute__] = ACTIONS(2508), + [anon_sym___attribute] = ACTIONS(2508), + [anon_sym_noreturn] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym___declspec] = ACTIONS(2508), + [anon_sym___cdecl] = ACTIONS(2508), + [anon_sym___clrcall] = ACTIONS(2508), + [anon_sym___stdcall] = ACTIONS(2508), + [anon_sym___fastcall] = ACTIONS(2508), + [anon_sym___thiscall] = ACTIONS(2508), + [anon_sym___vectorcall] = ACTIONS(2508), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_signed] = ACTIONS(2508), + [anon_sym_unsigned] = ACTIONS(2508), + [anon_sym_long] = ACTIONS(2508), + [anon_sym_short] = ACTIONS(2508), + [anon_sym_static] = ACTIONS(2508), + [anon_sym_ATautoreleasepool] = ACTIONS(2510), + [anon_sym_auto] = ACTIONS(2508), + [anon_sym_register] = ACTIONS(2508), + [anon_sym_inline] = ACTIONS(2508), + [anon_sym___inline] = ACTIONS(2508), + [anon_sym___inline__] = ACTIONS(2508), + [anon_sym___forceinline] = ACTIONS(2508), + [anon_sym_thread_local] = ACTIONS(2508), + [anon_sym___thread] = ACTIONS(2508), + [anon_sym_CG_EXTERN] = ACTIONS(2508), + [anon_sym_CG_INLINE] = ACTIONS(2508), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2508), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2508), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2508), + [anon_sym_IBOutlet] = ACTIONS(2508), + [anon_sym_IBInspectable] = ACTIONS(2508), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2508), + [anon_sym_NS_INLINE] = ACTIONS(2508), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2508), + [anon_sym_OBJC_EXPORT] = ACTIONS(2508), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2508), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2508), + [anon_sym_const] = ACTIONS(2508), + [anon_sym_constexpr] = ACTIONS(2508), + [anon_sym_volatile] = ACTIONS(2508), + [anon_sym_restrict] = ACTIONS(2508), + [anon_sym___restrict__] = ACTIONS(2508), + [anon_sym__Atomic] = ACTIONS(2508), + [anon_sym__Noreturn] = ACTIONS(2508), + [anon_sym__Nonnull] = ACTIONS(2508), + [anon_sym_nullable] = ACTIONS(2508), + [anon_sym__Complex] = ACTIONS(2508), + [anon_sym__Nullable] = ACTIONS(2508), + [anon_sym__Nullable_result] = ACTIONS(2508), + [anon_sym__Null_unspecified] = ACTIONS(2508), + [anon_sym___autoreleasing] = ACTIONS(2508), + [anon_sym___block] = ACTIONS(2508), + [anon_sym___bridge] = ACTIONS(2508), + [anon_sym___bridge_retained] = ACTIONS(2508), + [anon_sym___bridge_transfer] = ACTIONS(2508), + [anon_sym___complex] = ACTIONS(2508), + [anon_sym___const] = ACTIONS(2508), + [anon_sym___imag] = ACTIONS(2508), + [anon_sym___kindof] = ACTIONS(2508), + [anon_sym___nonnull] = ACTIONS(2508), + [anon_sym___nullable] = ACTIONS(2508), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2508), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2508), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2508), + [anon_sym___real] = ACTIONS(2508), + [anon_sym___strong] = ACTIONS(2508), + [anon_sym___unsafe_unretained] = ACTIONS(2508), + [anon_sym___unused] = ACTIONS(2508), + [anon_sym___weak] = ACTIONS(2508), + [anon_sym_alignas] = ACTIONS(2508), + [anon_sym__Alignas] = ACTIONS(2508), + [sym_primitive_type] = ACTIONS(2508), + [anon_sym_enum] = ACTIONS(2508), + [anon_sym_struct] = ACTIONS(2508), + [anon_sym_union] = ACTIONS(2508), + [anon_sym_if] = ACTIONS(2508), + [anon_sym_else] = ACTIONS(2508), + [anon_sym_switch] = ACTIONS(2508), + [anon_sym_case] = ACTIONS(2508), + [anon_sym_default] = ACTIONS(2508), + [anon_sym_while] = ACTIONS(2508), + [anon_sym_do] = ACTIONS(2508), + [anon_sym_for] = ACTIONS(2508), + [anon_sym_in] = ACTIONS(2508), + [anon_sym_return] = ACTIONS(2508), + [anon_sym_break] = ACTIONS(2508), + [anon_sym_continue] = ACTIONS(2508), + [anon_sym_goto] = ACTIONS(2508), + [anon_sym_DASH_DASH] = ACTIONS(2510), + [anon_sym_PLUS_PLUS] = ACTIONS(2510), + [anon_sym_sizeof] = ACTIONS(2508), + [anon_sym___alignof__] = ACTIONS(2508), + [anon_sym___alignof] = ACTIONS(2508), + [anon_sym__alignof] = ACTIONS(2508), + [anon_sym_alignof] = ACTIONS(2508), + [anon_sym__Alignof] = ACTIONS(2508), + [anon_sym_offsetof] = ACTIONS(2508), + [anon_sym__Generic] = ACTIONS(2508), + [anon_sym_asm] = ACTIONS(2508), + [anon_sym___asm__] = ACTIONS(2508), + [anon_sym___asm] = ACTIONS(2508), + [sym_number_literal] = ACTIONS(2510), + [anon_sym_L_SQUOTE] = ACTIONS(2510), + [anon_sym_u_SQUOTE] = ACTIONS(2510), + [anon_sym_U_SQUOTE] = ACTIONS(2510), + [anon_sym_u8_SQUOTE] = ACTIONS(2510), + [anon_sym_SQUOTE] = ACTIONS(2510), + [anon_sym_AT] = ACTIONS(2508), + [anon_sym_DQUOTE] = ACTIONS(2510), + [anon_sym_L_DQUOTE] = ACTIONS(2510), + [anon_sym_u_DQUOTE] = ACTIONS(2510), + [anon_sym_U_DQUOTE] = ACTIONS(2510), + [anon_sym_u8_DQUOTE] = ACTIONS(2510), + [sym_true] = ACTIONS(2508), + [sym_false] = ACTIONS(2508), + [anon_sym_NULL] = ACTIONS(2508), + [anon_sym_nullptr] = ACTIONS(2508), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2508), + [anon_sym___typeof] = ACTIONS(2508), + [anon_sym_typeof] = ACTIONS(2508), + [anon_sym_ATimport] = ACTIONS(2510), + [aux_sym_preproc_undef_token1] = ACTIONS(2508), + [anon_sym_POUND] = ACTIONS(2508), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2508), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2508), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2508), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2508), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2508), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2508), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2508), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2508), + [anon_sym_NS_AVAILABLE] = ACTIONS(2508), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2508), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_API_AVAILABLE] = ACTIONS(2508), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_API_DEPRECATED] = ACTIONS(2508), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2508), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2508), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2508), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2508), + [anon_sym___deprecated_msg] = ACTIONS(2508), + [anon_sym___deprecated_enum_msg] = ACTIONS(2508), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2508), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2508), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2508), + [anon_sym_ATprotocol] = ACTIONS(2510), + [anon_sym_ATinterface] = ACTIONS(2510), + [anon_sym_ATimplementation] = ACTIONS(2510), + [anon_sym_ATcompatibility_alias] = ACTIONS(2510), + [anon_sym_ATsynthesize] = ACTIONS(2510), + [anon_sym_ATdynamic] = ACTIONS(2510), + [anon_sym_ATtry] = ACTIONS(2510), + [anon_sym___try] = ACTIONS(2508), + [anon_sym_ATthrow] = ACTIONS(2510), + [anon_sym_ATselector] = ACTIONS(2510), + [anon_sym_ATavailable] = ACTIONS(2510), + [anon_sym___builtin_available] = ACTIONS(2508), + [anon_sym_va_arg] = ACTIONS(2508), + [anon_sym_ATencode] = ACTIONS(2510), + [anon_sym_ATsynchronized] = ACTIONS(2510), + [anon_sym_BOOL] = ACTIONS(2508), + [anon_sym_IMP] = ACTIONS(2508), + [anon_sym_SEL] = ACTIONS(2508), + [anon_sym_Class] = ACTIONS(2508), + [anon_sym_id] = ACTIONS(2508), + }, + [412] = { + [sym_identifier] = ACTIONS(2294), + [aux_sym_preproc_include_token1] = ACTIONS(2294), + [aux_sym_preproc_include_token2] = ACTIONS(2294), + [aux_sym_preproc_def_token1] = ACTIONS(2294), + [aux_sym_preproc_if_token1] = ACTIONS(2294), + [aux_sym_preproc_if_token2] = ACTIONS(2294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2294), + [aux_sym_preproc_else_token1] = ACTIONS(2294), + [aux_sym_preproc_elif_token1] = ACTIONS(2294), + [sym_preproc_directive] = ACTIONS(2294), + [anon_sym_LPAREN2] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_STAR] = ACTIONS(2296), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym___extension__] = ACTIONS(2294), + [anon_sym_typedef] = ACTIONS(2294), + [anon_sym_extern] = ACTIONS(2294), + [anon_sym___attribute__] = ACTIONS(2294), + [anon_sym___attribute] = ACTIONS(2294), + [anon_sym_noreturn] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym___declspec] = ACTIONS(2294), + [anon_sym___cdecl] = ACTIONS(2294), + [anon_sym___clrcall] = ACTIONS(2294), + [anon_sym___stdcall] = ACTIONS(2294), + [anon_sym___fastcall] = ACTIONS(2294), + [anon_sym___thiscall] = ACTIONS(2294), + [anon_sym___vectorcall] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_signed] = ACTIONS(2294), + [anon_sym_unsigned] = ACTIONS(2294), + [anon_sym_long] = ACTIONS(2294), + [anon_sym_short] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_ATautoreleasepool] = ACTIONS(2296), + [anon_sym_auto] = ACTIONS(2294), + [anon_sym_register] = ACTIONS(2294), + [anon_sym_inline] = ACTIONS(2294), + [anon_sym___inline] = ACTIONS(2294), + [anon_sym___inline__] = ACTIONS(2294), + [anon_sym___forceinline] = ACTIONS(2294), + [anon_sym_thread_local] = ACTIONS(2294), + [anon_sym___thread] = ACTIONS(2294), + [anon_sym_CG_EXTERN] = ACTIONS(2294), + [anon_sym_CG_INLINE] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2294), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2294), + [anon_sym_IBOutlet] = ACTIONS(2294), + [anon_sym_IBInspectable] = ACTIONS(2294), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2294), + [anon_sym_NS_INLINE] = ACTIONS(2294), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2294), + [anon_sym_OBJC_EXPORT] = ACTIONS(2294), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [anon_sym_constexpr] = ACTIONS(2294), + [anon_sym_volatile] = ACTIONS(2294), + [anon_sym_restrict] = ACTIONS(2294), + [anon_sym___restrict__] = ACTIONS(2294), + [anon_sym__Atomic] = ACTIONS(2294), + [anon_sym__Noreturn] = ACTIONS(2294), + [anon_sym__Nonnull] = ACTIONS(2294), + [anon_sym_nullable] = ACTIONS(2294), + [anon_sym__Complex] = ACTIONS(2294), + [anon_sym__Nullable] = ACTIONS(2294), + [anon_sym__Nullable_result] = ACTIONS(2294), + [anon_sym__Null_unspecified] = ACTIONS(2294), + [anon_sym___autoreleasing] = ACTIONS(2294), + [anon_sym___block] = ACTIONS(2294), + [anon_sym___bridge] = ACTIONS(2294), + [anon_sym___bridge_retained] = ACTIONS(2294), + [anon_sym___bridge_transfer] = ACTIONS(2294), + [anon_sym___complex] = ACTIONS(2294), + [anon_sym___const] = ACTIONS(2294), + [anon_sym___imag] = ACTIONS(2294), + [anon_sym___kindof] = ACTIONS(2294), + [anon_sym___nonnull] = ACTIONS(2294), + [anon_sym___nullable] = ACTIONS(2294), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2294), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2294), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2294), + [anon_sym___real] = ACTIONS(2294), + [anon_sym___strong] = ACTIONS(2294), + [anon_sym___unsafe_unretained] = ACTIONS(2294), + [anon_sym___unused] = ACTIONS(2294), + [anon_sym___weak] = ACTIONS(2294), + [anon_sym_alignas] = ACTIONS(2294), + [anon_sym__Alignas] = ACTIONS(2294), + [sym_primitive_type] = ACTIONS(2294), + [anon_sym_enum] = ACTIONS(2294), + [anon_sym_struct] = ACTIONS(2294), + [anon_sym_union] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_switch] = ACTIONS(2294), + [anon_sym_case] = ACTIONS(2294), + [anon_sym_default] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_goto] = ACTIONS(2294), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_sizeof] = ACTIONS(2294), + [anon_sym___alignof__] = ACTIONS(2294), + [anon_sym___alignof] = ACTIONS(2294), + [anon_sym__alignof] = ACTIONS(2294), + [anon_sym_alignof] = ACTIONS(2294), + [anon_sym__Alignof] = ACTIONS(2294), + [anon_sym_offsetof] = ACTIONS(2294), + [anon_sym__Generic] = ACTIONS(2294), + [anon_sym_asm] = ACTIONS(2294), + [anon_sym___asm__] = ACTIONS(2294), + [anon_sym___asm] = ACTIONS(2294), + [sym_number_literal] = ACTIONS(2296), + [anon_sym_L_SQUOTE] = ACTIONS(2296), + [anon_sym_u_SQUOTE] = ACTIONS(2296), + [anon_sym_U_SQUOTE] = ACTIONS(2296), + [anon_sym_u8_SQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_L_DQUOTE] = ACTIONS(2296), + [anon_sym_u_DQUOTE] = ACTIONS(2296), + [anon_sym_U_DQUOTE] = ACTIONS(2296), + [anon_sym_u8_DQUOTE] = ACTIONS(2296), + [sym_true] = ACTIONS(2294), + [sym_false] = ACTIONS(2294), + [anon_sym_NULL] = ACTIONS(2294), + [anon_sym_nullptr] = ACTIONS(2294), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2294), + [anon_sym___typeof] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(2294), + [anon_sym_ATimport] = ACTIONS(2296), + [aux_sym_preproc_undef_token1] = ACTIONS(2294), + [anon_sym_POUND] = ACTIONS(2294), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2294), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2294), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2294), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2294), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE] = ACTIONS(2294), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_API_AVAILABLE] = ACTIONS(2294), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_API_DEPRECATED] = ACTIONS(2294), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2294), + [anon_sym___deprecated_msg] = ACTIONS(2294), + [anon_sym___deprecated_enum_msg] = ACTIONS(2294), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2294), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2294), + [anon_sym_ATprotocol] = ACTIONS(2296), + [anon_sym_ATinterface] = ACTIONS(2296), + [anon_sym_ATimplementation] = ACTIONS(2296), + [anon_sym_ATcompatibility_alias] = ACTIONS(2296), + [anon_sym_ATsynthesize] = ACTIONS(2296), + [anon_sym_ATdynamic] = ACTIONS(2296), + [anon_sym_ATtry] = ACTIONS(2296), + [anon_sym___try] = ACTIONS(2294), + [anon_sym_ATthrow] = ACTIONS(2296), + [anon_sym_ATselector] = ACTIONS(2296), + [anon_sym_ATavailable] = ACTIONS(2296), + [anon_sym___builtin_available] = ACTIONS(2294), + [anon_sym_va_arg] = ACTIONS(2294), + [anon_sym_ATencode] = ACTIONS(2296), + [anon_sym_ATsynchronized] = ACTIONS(2296), + [anon_sym_BOOL] = ACTIONS(2294), + [anon_sym_IMP] = ACTIONS(2294), + [anon_sym_SEL] = ACTIONS(2294), + [anon_sym_Class] = ACTIONS(2294), + [anon_sym_id] = ACTIONS(2294), + }, + [413] = { + [sym_identifier] = ACTIONS(2516), + [aux_sym_preproc_include_token1] = ACTIONS(2516), + [aux_sym_preproc_include_token2] = ACTIONS(2516), + [aux_sym_preproc_def_token1] = ACTIONS(2516), + [aux_sym_preproc_if_token1] = ACTIONS(2516), + [aux_sym_preproc_if_token2] = ACTIONS(2516), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2516), + [aux_sym_preproc_else_token1] = ACTIONS(2516), + [aux_sym_preproc_elif_token1] = ACTIONS(2516), + [sym_preproc_directive] = ACTIONS(2516), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_BANG] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_PLUS] = ACTIONS(2516), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_CARET] = ACTIONS(2518), + [anon_sym_AMP] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym___extension__] = ACTIONS(2516), + [anon_sym_typedef] = ACTIONS(2516), + [anon_sym_extern] = ACTIONS(2516), + [anon_sym___attribute__] = ACTIONS(2516), + [anon_sym___attribute] = ACTIONS(2516), + [anon_sym_noreturn] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2518), + [anon_sym___declspec] = ACTIONS(2516), + [anon_sym___cdecl] = ACTIONS(2516), + [anon_sym___clrcall] = ACTIONS(2516), + [anon_sym___stdcall] = ACTIONS(2516), + [anon_sym___fastcall] = ACTIONS(2516), + [anon_sym___thiscall] = ACTIONS(2516), + [anon_sym___vectorcall] = ACTIONS(2516), + [anon_sym_LBRACE] = ACTIONS(2518), + [anon_sym_signed] = ACTIONS(2516), + [anon_sym_unsigned] = ACTIONS(2516), + [anon_sym_long] = ACTIONS(2516), + [anon_sym_short] = ACTIONS(2516), + [anon_sym_static] = ACTIONS(2516), + [anon_sym_ATautoreleasepool] = ACTIONS(2518), + [anon_sym_auto] = ACTIONS(2516), + [anon_sym_register] = ACTIONS(2516), + [anon_sym_inline] = ACTIONS(2516), + [anon_sym___inline] = ACTIONS(2516), + [anon_sym___inline__] = ACTIONS(2516), + [anon_sym___forceinline] = ACTIONS(2516), + [anon_sym_thread_local] = ACTIONS(2516), + [anon_sym___thread] = ACTIONS(2516), + [anon_sym_CG_EXTERN] = ACTIONS(2516), + [anon_sym_CG_INLINE] = ACTIONS(2516), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2516), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2516), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2516), + [anon_sym_IBOutlet] = ACTIONS(2516), + [anon_sym_IBInspectable] = ACTIONS(2516), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2516), + [anon_sym_NS_INLINE] = ACTIONS(2516), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2516), + [anon_sym_OBJC_EXPORT] = ACTIONS(2516), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2516), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2516), + [anon_sym_const] = ACTIONS(2516), + [anon_sym_constexpr] = ACTIONS(2516), + [anon_sym_volatile] = ACTIONS(2516), + [anon_sym_restrict] = ACTIONS(2516), + [anon_sym___restrict__] = ACTIONS(2516), + [anon_sym__Atomic] = ACTIONS(2516), + [anon_sym__Noreturn] = ACTIONS(2516), + [anon_sym__Nonnull] = ACTIONS(2516), + [anon_sym_nullable] = ACTIONS(2516), + [anon_sym__Complex] = ACTIONS(2516), + [anon_sym__Nullable] = ACTIONS(2516), + [anon_sym__Nullable_result] = ACTIONS(2516), + [anon_sym__Null_unspecified] = ACTIONS(2516), + [anon_sym___autoreleasing] = ACTIONS(2516), + [anon_sym___block] = ACTIONS(2516), + [anon_sym___bridge] = ACTIONS(2516), + [anon_sym___bridge_retained] = ACTIONS(2516), + [anon_sym___bridge_transfer] = ACTIONS(2516), + [anon_sym___complex] = ACTIONS(2516), + [anon_sym___const] = ACTIONS(2516), + [anon_sym___imag] = ACTIONS(2516), + [anon_sym___kindof] = ACTIONS(2516), + [anon_sym___nonnull] = ACTIONS(2516), + [anon_sym___nullable] = ACTIONS(2516), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2516), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2516), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2516), + [anon_sym___real] = ACTIONS(2516), + [anon_sym___strong] = ACTIONS(2516), + [anon_sym___unsafe_unretained] = ACTIONS(2516), + [anon_sym___unused] = ACTIONS(2516), + [anon_sym___weak] = ACTIONS(2516), + [anon_sym_alignas] = ACTIONS(2516), + [anon_sym__Alignas] = ACTIONS(2516), + [sym_primitive_type] = ACTIONS(2516), + [anon_sym_enum] = ACTIONS(2516), + [anon_sym_struct] = ACTIONS(2516), + [anon_sym_union] = ACTIONS(2516), + [anon_sym_if] = ACTIONS(2516), + [anon_sym_else] = ACTIONS(2516), + [anon_sym_switch] = ACTIONS(2516), + [anon_sym_case] = ACTIONS(2516), + [anon_sym_default] = ACTIONS(2516), + [anon_sym_while] = ACTIONS(2516), + [anon_sym_do] = ACTIONS(2516), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_in] = ACTIONS(2516), + [anon_sym_return] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_goto] = ACTIONS(2516), + [anon_sym_DASH_DASH] = ACTIONS(2518), + [anon_sym_PLUS_PLUS] = ACTIONS(2518), + [anon_sym_sizeof] = ACTIONS(2516), + [anon_sym___alignof__] = ACTIONS(2516), + [anon_sym___alignof] = ACTIONS(2516), + [anon_sym__alignof] = ACTIONS(2516), + [anon_sym_alignof] = ACTIONS(2516), + [anon_sym__Alignof] = ACTIONS(2516), + [anon_sym_offsetof] = ACTIONS(2516), + [anon_sym__Generic] = ACTIONS(2516), + [anon_sym_asm] = ACTIONS(2516), + [anon_sym___asm__] = ACTIONS(2516), + [anon_sym___asm] = ACTIONS(2516), + [sym_number_literal] = ACTIONS(2518), + [anon_sym_L_SQUOTE] = ACTIONS(2518), + [anon_sym_u_SQUOTE] = ACTIONS(2518), + [anon_sym_U_SQUOTE] = ACTIONS(2518), + [anon_sym_u8_SQUOTE] = ACTIONS(2518), + [anon_sym_SQUOTE] = ACTIONS(2518), + [anon_sym_AT] = ACTIONS(2516), + [anon_sym_DQUOTE] = ACTIONS(2518), + [anon_sym_L_DQUOTE] = ACTIONS(2518), + [anon_sym_u_DQUOTE] = ACTIONS(2518), + [anon_sym_U_DQUOTE] = ACTIONS(2518), + [anon_sym_u8_DQUOTE] = ACTIONS(2518), + [sym_true] = ACTIONS(2516), + [sym_false] = ACTIONS(2516), + [anon_sym_NULL] = ACTIONS(2516), + [anon_sym_nullptr] = ACTIONS(2516), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2516), + [anon_sym___typeof] = ACTIONS(2516), + [anon_sym_typeof] = ACTIONS(2516), + [anon_sym_ATimport] = ACTIONS(2518), + [aux_sym_preproc_undef_token1] = ACTIONS(2516), + [anon_sym_POUND] = ACTIONS(2516), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2516), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2516), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2516), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2516), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2516), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2516), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2516), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2516), + [anon_sym_NS_AVAILABLE] = ACTIONS(2516), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2516), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_API_AVAILABLE] = ACTIONS(2516), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_API_DEPRECATED] = ACTIONS(2516), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2516), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2516), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2516), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2516), + [anon_sym___deprecated_msg] = ACTIONS(2516), + [anon_sym___deprecated_enum_msg] = ACTIONS(2516), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2516), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2516), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2516), + [anon_sym_ATprotocol] = ACTIONS(2518), + [anon_sym_ATinterface] = ACTIONS(2518), + [anon_sym_ATimplementation] = ACTIONS(2518), + [anon_sym_ATcompatibility_alias] = ACTIONS(2518), + [anon_sym_ATsynthesize] = ACTIONS(2518), + [anon_sym_ATdynamic] = ACTIONS(2518), + [anon_sym_ATtry] = ACTIONS(2518), + [anon_sym___try] = ACTIONS(2516), + [anon_sym_ATthrow] = ACTIONS(2518), + [anon_sym_ATselector] = ACTIONS(2518), + [anon_sym_ATavailable] = ACTIONS(2518), + [anon_sym___builtin_available] = ACTIONS(2516), + [anon_sym_va_arg] = ACTIONS(2516), + [anon_sym_ATencode] = ACTIONS(2518), + [anon_sym_ATsynchronized] = ACTIONS(2518), + [anon_sym_BOOL] = ACTIONS(2516), + [anon_sym_IMP] = ACTIONS(2516), + [anon_sym_SEL] = ACTIONS(2516), + [anon_sym_Class] = ACTIONS(2516), + [anon_sym_id] = ACTIONS(2516), + }, + [414] = { + [sym_identifier] = ACTIONS(2520), + [aux_sym_preproc_include_token1] = ACTIONS(2520), + [aux_sym_preproc_include_token2] = ACTIONS(2520), + [aux_sym_preproc_def_token1] = ACTIONS(2520), + [aux_sym_preproc_if_token1] = ACTIONS(2520), + [aux_sym_preproc_if_token2] = ACTIONS(2520), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2520), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2520), + [aux_sym_preproc_else_token1] = ACTIONS(2520), + [aux_sym_preproc_elif_token1] = ACTIONS(2520), + [sym_preproc_directive] = ACTIONS(2520), + [anon_sym_LPAREN2] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2522), + [anon_sym_TILDE] = ACTIONS(2522), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_PLUS] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_CARET] = ACTIONS(2522), + [anon_sym_AMP] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym___extension__] = ACTIONS(2520), + [anon_sym_typedef] = ACTIONS(2520), + [anon_sym_extern] = ACTIONS(2520), + [anon_sym___attribute__] = ACTIONS(2520), + [anon_sym___attribute] = ACTIONS(2520), + [anon_sym_noreturn] = ACTIONS(2520), + [anon_sym_LBRACK] = ACTIONS(2522), + [anon_sym___declspec] = ACTIONS(2520), + [anon_sym___cdecl] = ACTIONS(2520), + [anon_sym___clrcall] = ACTIONS(2520), + [anon_sym___stdcall] = ACTIONS(2520), + [anon_sym___fastcall] = ACTIONS(2520), + [anon_sym___thiscall] = ACTIONS(2520), + [anon_sym___vectorcall] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_signed] = ACTIONS(2520), + [anon_sym_unsigned] = ACTIONS(2520), + [anon_sym_long] = ACTIONS(2520), + [anon_sym_short] = ACTIONS(2520), + [anon_sym_static] = ACTIONS(2520), + [anon_sym_ATautoreleasepool] = ACTIONS(2522), + [anon_sym_auto] = ACTIONS(2520), + [anon_sym_register] = ACTIONS(2520), + [anon_sym_inline] = ACTIONS(2520), + [anon_sym___inline] = ACTIONS(2520), + [anon_sym___inline__] = ACTIONS(2520), + [anon_sym___forceinline] = ACTIONS(2520), + [anon_sym_thread_local] = ACTIONS(2520), + [anon_sym___thread] = ACTIONS(2520), + [anon_sym_CG_EXTERN] = ACTIONS(2520), + [anon_sym_CG_INLINE] = ACTIONS(2520), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2520), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2520), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2520), + [anon_sym_IBOutlet] = ACTIONS(2520), + [anon_sym_IBInspectable] = ACTIONS(2520), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2520), + [anon_sym_NS_INLINE] = ACTIONS(2520), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2520), + [anon_sym_OBJC_EXPORT] = ACTIONS(2520), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2520), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2520), + [anon_sym_const] = ACTIONS(2520), + [anon_sym_constexpr] = ACTIONS(2520), + [anon_sym_volatile] = ACTIONS(2520), + [anon_sym_restrict] = ACTIONS(2520), + [anon_sym___restrict__] = ACTIONS(2520), + [anon_sym__Atomic] = ACTIONS(2520), + [anon_sym__Noreturn] = ACTIONS(2520), + [anon_sym__Nonnull] = ACTIONS(2520), + [anon_sym_nullable] = ACTIONS(2520), + [anon_sym__Complex] = ACTIONS(2520), + [anon_sym__Nullable] = ACTIONS(2520), + [anon_sym__Nullable_result] = ACTIONS(2520), + [anon_sym__Null_unspecified] = ACTIONS(2520), + [anon_sym___autoreleasing] = ACTIONS(2520), + [anon_sym___block] = ACTIONS(2520), + [anon_sym___bridge] = ACTIONS(2520), + [anon_sym___bridge_retained] = ACTIONS(2520), + [anon_sym___bridge_transfer] = ACTIONS(2520), + [anon_sym___complex] = ACTIONS(2520), + [anon_sym___const] = ACTIONS(2520), + [anon_sym___imag] = ACTIONS(2520), + [anon_sym___kindof] = ACTIONS(2520), + [anon_sym___nonnull] = ACTIONS(2520), + [anon_sym___nullable] = ACTIONS(2520), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2520), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2520), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2520), + [anon_sym___real] = ACTIONS(2520), + [anon_sym___strong] = ACTIONS(2520), + [anon_sym___unsafe_unretained] = ACTIONS(2520), + [anon_sym___unused] = ACTIONS(2520), + [anon_sym___weak] = ACTIONS(2520), + [anon_sym_alignas] = ACTIONS(2520), + [anon_sym__Alignas] = ACTIONS(2520), + [sym_primitive_type] = ACTIONS(2520), + [anon_sym_enum] = ACTIONS(2520), + [anon_sym_struct] = ACTIONS(2520), + [anon_sym_union] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2520), + [anon_sym_else] = ACTIONS(2520), + [anon_sym_switch] = ACTIONS(2520), + [anon_sym_case] = ACTIONS(2520), + [anon_sym_default] = ACTIONS(2520), + [anon_sym_while] = ACTIONS(2520), + [anon_sym_do] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2520), + [anon_sym_in] = ACTIONS(2520), + [anon_sym_return] = ACTIONS(2520), + [anon_sym_break] = ACTIONS(2520), + [anon_sym_continue] = ACTIONS(2520), + [anon_sym_goto] = ACTIONS(2520), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_sizeof] = ACTIONS(2520), + [anon_sym___alignof__] = ACTIONS(2520), + [anon_sym___alignof] = ACTIONS(2520), + [anon_sym__alignof] = ACTIONS(2520), + [anon_sym_alignof] = ACTIONS(2520), + [anon_sym__Alignof] = ACTIONS(2520), + [anon_sym_offsetof] = ACTIONS(2520), + [anon_sym__Generic] = ACTIONS(2520), + [anon_sym_asm] = ACTIONS(2520), + [anon_sym___asm__] = ACTIONS(2520), + [anon_sym___asm] = ACTIONS(2520), + [sym_number_literal] = ACTIONS(2522), + [anon_sym_L_SQUOTE] = ACTIONS(2522), + [anon_sym_u_SQUOTE] = ACTIONS(2522), + [anon_sym_U_SQUOTE] = ACTIONS(2522), + [anon_sym_u8_SQUOTE] = ACTIONS(2522), + [anon_sym_SQUOTE] = ACTIONS(2522), + [anon_sym_AT] = ACTIONS(2520), + [anon_sym_DQUOTE] = ACTIONS(2522), + [anon_sym_L_DQUOTE] = ACTIONS(2522), + [anon_sym_u_DQUOTE] = ACTIONS(2522), + [anon_sym_U_DQUOTE] = ACTIONS(2522), + [anon_sym_u8_DQUOTE] = ACTIONS(2522), + [sym_true] = ACTIONS(2520), + [sym_false] = ACTIONS(2520), + [anon_sym_NULL] = ACTIONS(2520), + [anon_sym_nullptr] = ACTIONS(2520), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2520), + [anon_sym___typeof] = ACTIONS(2520), + [anon_sym_typeof] = ACTIONS(2520), + [anon_sym_ATimport] = ACTIONS(2522), + [aux_sym_preproc_undef_token1] = ACTIONS(2520), + [anon_sym_POUND] = ACTIONS(2520), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2520), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2520), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2520), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2520), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2520), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2520), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2520), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2520), + [anon_sym_NS_AVAILABLE] = ACTIONS(2520), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2520), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_API_AVAILABLE] = ACTIONS(2520), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_API_DEPRECATED] = ACTIONS(2520), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2520), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2520), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2520), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2520), + [anon_sym___deprecated_msg] = ACTIONS(2520), + [anon_sym___deprecated_enum_msg] = ACTIONS(2520), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2520), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2520), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2520), + [anon_sym_ATprotocol] = ACTIONS(2522), + [anon_sym_ATinterface] = ACTIONS(2522), + [anon_sym_ATimplementation] = ACTIONS(2522), + [anon_sym_ATcompatibility_alias] = ACTIONS(2522), + [anon_sym_ATsynthesize] = ACTIONS(2522), + [anon_sym_ATdynamic] = ACTIONS(2522), + [anon_sym_ATtry] = ACTIONS(2522), + [anon_sym___try] = ACTIONS(2520), + [anon_sym_ATthrow] = ACTIONS(2522), + [anon_sym_ATselector] = ACTIONS(2522), + [anon_sym_ATavailable] = ACTIONS(2522), + [anon_sym___builtin_available] = ACTIONS(2520), + [anon_sym_va_arg] = ACTIONS(2520), + [anon_sym_ATencode] = ACTIONS(2522), + [anon_sym_ATsynchronized] = ACTIONS(2522), + [anon_sym_BOOL] = ACTIONS(2520), + [anon_sym_IMP] = ACTIONS(2520), + [anon_sym_SEL] = ACTIONS(2520), + [anon_sym_Class] = ACTIONS(2520), + [anon_sym_id] = ACTIONS(2520), + }, + [415] = { + [sym_identifier] = ACTIONS(2524), + [aux_sym_preproc_include_token1] = ACTIONS(2524), + [aux_sym_preproc_include_token2] = ACTIONS(2524), + [aux_sym_preproc_def_token1] = ACTIONS(2524), + [aux_sym_preproc_if_token1] = ACTIONS(2524), + [aux_sym_preproc_if_token2] = ACTIONS(2524), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2524), + [aux_sym_preproc_else_token1] = ACTIONS(2524), + [aux_sym_preproc_elif_token1] = ACTIONS(2524), + [sym_preproc_directive] = ACTIONS(2524), + [anon_sym_LPAREN2] = ACTIONS(2526), + [anon_sym_BANG] = ACTIONS(2526), + [anon_sym_TILDE] = ACTIONS(2526), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_STAR] = ACTIONS(2526), + [anon_sym_CARET] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2526), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym___extension__] = ACTIONS(2524), + [anon_sym_typedef] = ACTIONS(2524), + [anon_sym_extern] = ACTIONS(2524), + [anon_sym___attribute__] = ACTIONS(2524), + [anon_sym___attribute] = ACTIONS(2524), + [anon_sym_noreturn] = ACTIONS(2524), + [anon_sym_LBRACK] = ACTIONS(2526), + [anon_sym___declspec] = ACTIONS(2524), + [anon_sym___cdecl] = ACTIONS(2524), + [anon_sym___clrcall] = ACTIONS(2524), + [anon_sym___stdcall] = ACTIONS(2524), + [anon_sym___fastcall] = ACTIONS(2524), + [anon_sym___thiscall] = ACTIONS(2524), + [anon_sym___vectorcall] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2526), + [anon_sym_signed] = ACTIONS(2524), + [anon_sym_unsigned] = ACTIONS(2524), + [anon_sym_long] = ACTIONS(2524), + [anon_sym_short] = ACTIONS(2524), + [anon_sym_static] = ACTIONS(2524), + [anon_sym_ATautoreleasepool] = ACTIONS(2526), + [anon_sym_auto] = ACTIONS(2524), + [anon_sym_register] = ACTIONS(2524), + [anon_sym_inline] = ACTIONS(2524), + [anon_sym___inline] = ACTIONS(2524), + [anon_sym___inline__] = ACTIONS(2524), + [anon_sym___forceinline] = ACTIONS(2524), + [anon_sym_thread_local] = ACTIONS(2524), + [anon_sym___thread] = ACTIONS(2524), + [anon_sym_CG_EXTERN] = ACTIONS(2524), + [anon_sym_CG_INLINE] = ACTIONS(2524), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2524), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2524), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2524), + [anon_sym_IBOutlet] = ACTIONS(2524), + [anon_sym_IBInspectable] = ACTIONS(2524), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2524), + [anon_sym_NS_INLINE] = ACTIONS(2524), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2524), + [anon_sym_OBJC_EXPORT] = ACTIONS(2524), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2524), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2524), + [anon_sym_const] = ACTIONS(2524), + [anon_sym_constexpr] = ACTIONS(2524), + [anon_sym_volatile] = ACTIONS(2524), + [anon_sym_restrict] = ACTIONS(2524), + [anon_sym___restrict__] = ACTIONS(2524), + [anon_sym__Atomic] = ACTIONS(2524), + [anon_sym__Noreturn] = ACTIONS(2524), + [anon_sym__Nonnull] = ACTIONS(2524), + [anon_sym_nullable] = ACTIONS(2524), + [anon_sym__Complex] = ACTIONS(2524), + [anon_sym__Nullable] = ACTIONS(2524), + [anon_sym__Nullable_result] = ACTIONS(2524), + [anon_sym__Null_unspecified] = ACTIONS(2524), + [anon_sym___autoreleasing] = ACTIONS(2524), + [anon_sym___block] = ACTIONS(2524), + [anon_sym___bridge] = ACTIONS(2524), + [anon_sym___bridge_retained] = ACTIONS(2524), + [anon_sym___bridge_transfer] = ACTIONS(2524), + [anon_sym___complex] = ACTIONS(2524), + [anon_sym___const] = ACTIONS(2524), + [anon_sym___imag] = ACTIONS(2524), + [anon_sym___kindof] = ACTIONS(2524), + [anon_sym___nonnull] = ACTIONS(2524), + [anon_sym___nullable] = ACTIONS(2524), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2524), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2524), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2524), + [anon_sym___real] = ACTIONS(2524), + [anon_sym___strong] = ACTIONS(2524), + [anon_sym___unsafe_unretained] = ACTIONS(2524), + [anon_sym___unused] = ACTIONS(2524), + [anon_sym___weak] = ACTIONS(2524), + [anon_sym_alignas] = ACTIONS(2524), + [anon_sym__Alignas] = ACTIONS(2524), + [sym_primitive_type] = ACTIONS(2524), + [anon_sym_enum] = ACTIONS(2524), + [anon_sym_struct] = ACTIONS(2524), + [anon_sym_union] = ACTIONS(2524), + [anon_sym_if] = ACTIONS(2524), + [anon_sym_else] = ACTIONS(2524), + [anon_sym_switch] = ACTIONS(2524), + [anon_sym_case] = ACTIONS(2524), + [anon_sym_default] = ACTIONS(2524), + [anon_sym_while] = ACTIONS(2524), + [anon_sym_do] = ACTIONS(2524), + [anon_sym_for] = ACTIONS(2524), + [anon_sym_in] = ACTIONS(2524), + [anon_sym_return] = ACTIONS(2524), + [anon_sym_break] = ACTIONS(2524), + [anon_sym_continue] = ACTIONS(2524), + [anon_sym_goto] = ACTIONS(2524), + [anon_sym_DASH_DASH] = ACTIONS(2526), + [anon_sym_PLUS_PLUS] = ACTIONS(2526), + [anon_sym_sizeof] = ACTIONS(2524), + [anon_sym___alignof__] = ACTIONS(2524), + [anon_sym___alignof] = ACTIONS(2524), + [anon_sym__alignof] = ACTIONS(2524), + [anon_sym_alignof] = ACTIONS(2524), + [anon_sym__Alignof] = ACTIONS(2524), + [anon_sym_offsetof] = ACTIONS(2524), + [anon_sym__Generic] = ACTIONS(2524), + [anon_sym_asm] = ACTIONS(2524), + [anon_sym___asm__] = ACTIONS(2524), + [anon_sym___asm] = ACTIONS(2524), + [sym_number_literal] = ACTIONS(2526), + [anon_sym_L_SQUOTE] = ACTIONS(2526), + [anon_sym_u_SQUOTE] = ACTIONS(2526), + [anon_sym_U_SQUOTE] = ACTIONS(2526), + [anon_sym_u8_SQUOTE] = ACTIONS(2526), + [anon_sym_SQUOTE] = ACTIONS(2526), + [anon_sym_AT] = ACTIONS(2524), + [anon_sym_DQUOTE] = ACTIONS(2526), + [anon_sym_L_DQUOTE] = ACTIONS(2526), + [anon_sym_u_DQUOTE] = ACTIONS(2526), + [anon_sym_U_DQUOTE] = ACTIONS(2526), + [anon_sym_u8_DQUOTE] = ACTIONS(2526), + [sym_true] = ACTIONS(2524), + [sym_false] = ACTIONS(2524), + [anon_sym_NULL] = ACTIONS(2524), + [anon_sym_nullptr] = ACTIONS(2524), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2524), + [anon_sym___typeof] = ACTIONS(2524), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_ATimport] = ACTIONS(2526), + [aux_sym_preproc_undef_token1] = ACTIONS(2524), + [anon_sym_POUND] = ACTIONS(2524), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2524), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2524), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2524), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2524), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2524), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2524), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2524), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2524), + [anon_sym_NS_AVAILABLE] = ACTIONS(2524), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2524), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_API_AVAILABLE] = ACTIONS(2524), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_API_DEPRECATED] = ACTIONS(2524), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2524), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2524), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2524), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2524), + [anon_sym___deprecated_msg] = ACTIONS(2524), + [anon_sym___deprecated_enum_msg] = ACTIONS(2524), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2524), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2524), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2524), + [anon_sym_ATprotocol] = ACTIONS(2526), + [anon_sym_ATinterface] = ACTIONS(2526), + [anon_sym_ATimplementation] = ACTIONS(2526), + [anon_sym_ATcompatibility_alias] = ACTIONS(2526), + [anon_sym_ATsynthesize] = ACTIONS(2526), + [anon_sym_ATdynamic] = ACTIONS(2526), + [anon_sym_ATtry] = ACTIONS(2526), + [anon_sym___try] = ACTIONS(2524), + [anon_sym_ATthrow] = ACTIONS(2526), + [anon_sym_ATselector] = ACTIONS(2526), + [anon_sym_ATavailable] = ACTIONS(2526), + [anon_sym___builtin_available] = ACTIONS(2524), + [anon_sym_va_arg] = ACTIONS(2524), + [anon_sym_ATencode] = ACTIONS(2526), + [anon_sym_ATsynchronized] = ACTIONS(2526), + [anon_sym_BOOL] = ACTIONS(2524), + [anon_sym_IMP] = ACTIONS(2524), + [anon_sym_SEL] = ACTIONS(2524), + [anon_sym_Class] = ACTIONS(2524), + [anon_sym_id] = ACTIONS(2524), + }, + [416] = { + [sym_identifier] = ACTIONS(2368), + [aux_sym_preproc_include_token1] = ACTIONS(2368), + [aux_sym_preproc_include_token2] = ACTIONS(2368), + [aux_sym_preproc_def_token1] = ACTIONS(2368), + [aux_sym_preproc_if_token1] = ACTIONS(2368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2368), + [sym_preproc_directive] = ACTIONS(2368), + [anon_sym_LPAREN2] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym___extension__] = ACTIONS(2368), + [anon_sym_typedef] = ACTIONS(2368), + [anon_sym_extern] = ACTIONS(2368), + [anon_sym___attribute__] = ACTIONS(2368), + [anon_sym___attribute] = ACTIONS(2368), + [anon_sym_noreturn] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym___declspec] = ACTIONS(2368), + [anon_sym___cdecl] = ACTIONS(2368), + [anon_sym___clrcall] = ACTIONS(2368), + [anon_sym___stdcall] = ACTIONS(2368), + [anon_sym___fastcall] = ACTIONS(2368), + [anon_sym___thiscall] = ACTIONS(2368), + [anon_sym___vectorcall] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_signed] = ACTIONS(2368), + [anon_sym_unsigned] = ACTIONS(2368), + [anon_sym_long] = ACTIONS(2368), + [anon_sym_short] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_ATautoreleasepool] = ACTIONS(2370), + [anon_sym_auto] = ACTIONS(2368), + [anon_sym_register] = ACTIONS(2368), + [anon_sym_inline] = ACTIONS(2368), + [anon_sym___inline] = ACTIONS(2368), + [anon_sym___inline__] = ACTIONS(2368), + [anon_sym___forceinline] = ACTIONS(2368), + [anon_sym_thread_local] = ACTIONS(2368), + [anon_sym___thread] = ACTIONS(2368), + [anon_sym_CG_EXTERN] = ACTIONS(2368), + [anon_sym_CG_INLINE] = ACTIONS(2368), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2368), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2368), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2368), + [anon_sym_IBOutlet] = ACTIONS(2368), + [anon_sym_IBInspectable] = ACTIONS(2368), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2368), + [anon_sym_NS_INLINE] = ACTIONS(2368), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2368), + [anon_sym_OBJC_EXPORT] = ACTIONS(2368), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2368), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_constexpr] = ACTIONS(2368), + [anon_sym_volatile] = ACTIONS(2368), + [anon_sym_restrict] = ACTIONS(2368), + [anon_sym___restrict__] = ACTIONS(2368), + [anon_sym__Atomic] = ACTIONS(2368), + [anon_sym__Noreturn] = ACTIONS(2368), + [anon_sym__Nonnull] = ACTIONS(2368), + [anon_sym_nullable] = ACTIONS(2368), + [anon_sym__Complex] = ACTIONS(2368), + [anon_sym__Nullable] = ACTIONS(2368), + [anon_sym__Nullable_result] = ACTIONS(2368), + [anon_sym__Null_unspecified] = ACTIONS(2368), + [anon_sym___autoreleasing] = ACTIONS(2368), + [anon_sym___block] = ACTIONS(2368), + [anon_sym___bridge] = ACTIONS(2368), + [anon_sym___bridge_retained] = ACTIONS(2368), + [anon_sym___bridge_transfer] = ACTIONS(2368), + [anon_sym___complex] = ACTIONS(2368), + [anon_sym___const] = ACTIONS(2368), + [anon_sym___imag] = ACTIONS(2368), + [anon_sym___kindof] = ACTIONS(2368), + [anon_sym___nonnull] = ACTIONS(2368), + [anon_sym___nullable] = ACTIONS(2368), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2368), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2368), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2368), + [anon_sym___real] = ACTIONS(2368), + [anon_sym___strong] = ACTIONS(2368), + [anon_sym___unsafe_unretained] = ACTIONS(2368), + [anon_sym___unused] = ACTIONS(2368), + [anon_sym___weak] = ACTIONS(2368), + [anon_sym_alignas] = ACTIONS(2368), + [anon_sym__Alignas] = ACTIONS(2368), + [sym_primitive_type] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [anon_sym_struct] = ACTIONS(2368), + [anon_sym_union] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_in] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_goto] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_sizeof] = ACTIONS(2368), + [anon_sym___alignof__] = ACTIONS(2368), + [anon_sym___alignof] = ACTIONS(2368), + [anon_sym__alignof] = ACTIONS(2368), + [anon_sym_alignof] = ACTIONS(2368), + [anon_sym__Alignof] = ACTIONS(2368), + [anon_sym_offsetof] = ACTIONS(2368), + [anon_sym__Generic] = ACTIONS(2368), + [anon_sym_asm] = ACTIONS(2368), + [anon_sym___asm__] = ACTIONS(2368), + [anon_sym___asm] = ACTIONS(2368), + [sym_number_literal] = ACTIONS(2370), + [anon_sym_L_SQUOTE] = ACTIONS(2370), + [anon_sym_u_SQUOTE] = ACTIONS(2370), + [anon_sym_U_SQUOTE] = ACTIONS(2370), + [anon_sym_u8_SQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_L_DQUOTE] = ACTIONS(2370), + [anon_sym_u_DQUOTE] = ACTIONS(2370), + [anon_sym_U_DQUOTE] = ACTIONS(2370), + [anon_sym_u8_DQUOTE] = ACTIONS(2370), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [anon_sym_NULL] = ACTIONS(2368), + [anon_sym_nullptr] = ACTIONS(2368), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2368), + [anon_sym___typeof] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_ATimport] = ACTIONS(2370), + [aux_sym_preproc_undef_token1] = ACTIONS(2368), + [anon_sym_POUND] = ACTIONS(2368), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2368), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2368), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2368), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2368), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2368), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2368), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2368), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2368), + [anon_sym_NS_AVAILABLE] = ACTIONS(2368), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2368), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_API_AVAILABLE] = ACTIONS(2368), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_API_DEPRECATED] = ACTIONS(2368), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2368), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2368), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2368), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2368), + [anon_sym___deprecated_msg] = ACTIONS(2368), + [anon_sym___deprecated_enum_msg] = ACTIONS(2368), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2368), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2368), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2368), + [anon_sym_ATprotocol] = ACTIONS(2370), + [anon_sym_ATinterface] = ACTIONS(2370), + [anon_sym_ATimplementation] = ACTIONS(2370), + [anon_sym_ATcompatibility_alias] = ACTIONS(2370), + [anon_sym_ATtry] = ACTIONS(2370), + [anon_sym___try] = ACTIONS(2368), + [anon_sym_ATcatch] = ACTIONS(2370), + [anon_sym___catch] = ACTIONS(2368), + [anon_sym_ATfinally] = ACTIONS(2370), + [anon_sym___finally] = ACTIONS(2368), + [anon_sym_ATthrow] = ACTIONS(2370), + [anon_sym_ATselector] = ACTIONS(2370), + [anon_sym_ATavailable] = ACTIONS(2370), + [anon_sym___builtin_available] = ACTIONS(2368), + [anon_sym_va_arg] = ACTIONS(2368), + [anon_sym_ATencode] = ACTIONS(2370), + [anon_sym_ATsynchronized] = ACTIONS(2370), + [anon_sym_BOOL] = ACTIONS(2368), + [anon_sym_IMP] = ACTIONS(2368), + [anon_sym_SEL] = ACTIONS(2368), + [anon_sym_Class] = ACTIONS(2368), + [anon_sym_id] = ACTIONS(2368), + }, + [417] = { + [sym_identifier] = ACTIONS(2528), + [aux_sym_preproc_include_token1] = ACTIONS(2528), + [aux_sym_preproc_include_token2] = ACTIONS(2528), + [aux_sym_preproc_def_token1] = ACTIONS(2528), + [aux_sym_preproc_if_token1] = ACTIONS(2528), + [aux_sym_preproc_if_token2] = ACTIONS(2528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2528), + [aux_sym_preproc_else_token1] = ACTIONS(2528), + [aux_sym_preproc_elif_token1] = ACTIONS(2528), + [sym_preproc_directive] = ACTIONS(2528), + [anon_sym_LPAREN2] = ACTIONS(2530), + [anon_sym_BANG] = ACTIONS(2530), + [anon_sym_TILDE] = ACTIONS(2530), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_CARET] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2530), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym___extension__] = ACTIONS(2528), + [anon_sym_typedef] = ACTIONS(2528), + [anon_sym_extern] = ACTIONS(2528), + [anon_sym___attribute__] = ACTIONS(2528), + [anon_sym___attribute] = ACTIONS(2528), + [anon_sym_noreturn] = ACTIONS(2528), + [anon_sym_LBRACK] = ACTIONS(2530), + [anon_sym___declspec] = ACTIONS(2528), + [anon_sym___cdecl] = ACTIONS(2528), + [anon_sym___clrcall] = ACTIONS(2528), + [anon_sym___stdcall] = ACTIONS(2528), + [anon_sym___fastcall] = ACTIONS(2528), + [anon_sym___thiscall] = ACTIONS(2528), + [anon_sym___vectorcall] = ACTIONS(2528), + [anon_sym_LBRACE] = ACTIONS(2530), + [anon_sym_signed] = ACTIONS(2528), + [anon_sym_unsigned] = ACTIONS(2528), + [anon_sym_long] = ACTIONS(2528), + [anon_sym_short] = ACTIONS(2528), + [anon_sym_static] = ACTIONS(2528), + [anon_sym_ATautoreleasepool] = ACTIONS(2530), + [anon_sym_auto] = ACTIONS(2528), + [anon_sym_register] = ACTIONS(2528), + [anon_sym_inline] = ACTIONS(2528), + [anon_sym___inline] = ACTIONS(2528), + [anon_sym___inline__] = ACTIONS(2528), + [anon_sym___forceinline] = ACTIONS(2528), + [anon_sym_thread_local] = ACTIONS(2528), + [anon_sym___thread] = ACTIONS(2528), + [anon_sym_CG_EXTERN] = ACTIONS(2528), + [anon_sym_CG_INLINE] = ACTIONS(2528), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2528), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2528), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2528), + [anon_sym_IBOutlet] = ACTIONS(2528), + [anon_sym_IBInspectable] = ACTIONS(2528), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2528), + [anon_sym_NS_INLINE] = ACTIONS(2528), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2528), + [anon_sym_OBJC_EXPORT] = ACTIONS(2528), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2528), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2528), + [anon_sym_const] = ACTIONS(2528), + [anon_sym_constexpr] = ACTIONS(2528), + [anon_sym_volatile] = ACTIONS(2528), + [anon_sym_restrict] = ACTIONS(2528), + [anon_sym___restrict__] = ACTIONS(2528), + [anon_sym__Atomic] = ACTIONS(2528), + [anon_sym__Noreturn] = ACTIONS(2528), + [anon_sym__Nonnull] = ACTIONS(2528), + [anon_sym_nullable] = ACTIONS(2528), + [anon_sym__Complex] = ACTIONS(2528), + [anon_sym__Nullable] = ACTIONS(2528), + [anon_sym__Nullable_result] = ACTIONS(2528), + [anon_sym__Null_unspecified] = ACTIONS(2528), + [anon_sym___autoreleasing] = ACTIONS(2528), + [anon_sym___block] = ACTIONS(2528), + [anon_sym___bridge] = ACTIONS(2528), + [anon_sym___bridge_retained] = ACTIONS(2528), + [anon_sym___bridge_transfer] = ACTIONS(2528), + [anon_sym___complex] = ACTIONS(2528), + [anon_sym___const] = ACTIONS(2528), + [anon_sym___imag] = ACTIONS(2528), + [anon_sym___kindof] = ACTIONS(2528), + [anon_sym___nonnull] = ACTIONS(2528), + [anon_sym___nullable] = ACTIONS(2528), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2528), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2528), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2528), + [anon_sym___real] = ACTIONS(2528), + [anon_sym___strong] = ACTIONS(2528), + [anon_sym___unsafe_unretained] = ACTIONS(2528), + [anon_sym___unused] = ACTIONS(2528), + [anon_sym___weak] = ACTIONS(2528), + [anon_sym_alignas] = ACTIONS(2528), + [anon_sym__Alignas] = ACTIONS(2528), + [sym_primitive_type] = ACTIONS(2528), + [anon_sym_enum] = ACTIONS(2528), + [anon_sym_struct] = ACTIONS(2528), + [anon_sym_union] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_else] = ACTIONS(2528), + [anon_sym_switch] = ACTIONS(2528), + [anon_sym_case] = ACTIONS(2528), + [anon_sym_default] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_in] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_break] = ACTIONS(2528), + [anon_sym_continue] = ACTIONS(2528), + [anon_sym_goto] = ACTIONS(2528), + [anon_sym_DASH_DASH] = ACTIONS(2530), + [anon_sym_PLUS_PLUS] = ACTIONS(2530), + [anon_sym_sizeof] = ACTIONS(2528), + [anon_sym___alignof__] = ACTIONS(2528), + [anon_sym___alignof] = ACTIONS(2528), + [anon_sym__alignof] = ACTIONS(2528), + [anon_sym_alignof] = ACTIONS(2528), + [anon_sym__Alignof] = ACTIONS(2528), + [anon_sym_offsetof] = ACTIONS(2528), + [anon_sym__Generic] = ACTIONS(2528), + [anon_sym_asm] = ACTIONS(2528), + [anon_sym___asm__] = ACTIONS(2528), + [anon_sym___asm] = ACTIONS(2528), + [sym_number_literal] = ACTIONS(2530), + [anon_sym_L_SQUOTE] = ACTIONS(2530), + [anon_sym_u_SQUOTE] = ACTIONS(2530), + [anon_sym_U_SQUOTE] = ACTIONS(2530), + [anon_sym_u8_SQUOTE] = ACTIONS(2530), + [anon_sym_SQUOTE] = ACTIONS(2530), + [anon_sym_AT] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2530), + [anon_sym_L_DQUOTE] = ACTIONS(2530), + [anon_sym_u_DQUOTE] = ACTIONS(2530), + [anon_sym_U_DQUOTE] = ACTIONS(2530), + [anon_sym_u8_DQUOTE] = ACTIONS(2530), + [sym_true] = ACTIONS(2528), + [sym_false] = ACTIONS(2528), + [anon_sym_NULL] = ACTIONS(2528), + [anon_sym_nullptr] = ACTIONS(2528), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2528), + [anon_sym___typeof] = ACTIONS(2528), + [anon_sym_typeof] = ACTIONS(2528), + [anon_sym_ATimport] = ACTIONS(2530), + [aux_sym_preproc_undef_token1] = ACTIONS(2528), + [anon_sym_POUND] = ACTIONS(2528), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2528), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2528), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2528), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2528), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2528), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2528), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2528), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2528), + [anon_sym_NS_AVAILABLE] = ACTIONS(2528), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2528), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_API_AVAILABLE] = ACTIONS(2528), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_API_DEPRECATED] = ACTIONS(2528), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2528), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2528), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2528), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2528), + [anon_sym___deprecated_msg] = ACTIONS(2528), + [anon_sym___deprecated_enum_msg] = ACTIONS(2528), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2528), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2528), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2528), + [anon_sym_ATprotocol] = ACTIONS(2530), + [anon_sym_ATinterface] = ACTIONS(2530), + [anon_sym_ATimplementation] = ACTIONS(2530), + [anon_sym_ATcompatibility_alias] = ACTIONS(2530), + [anon_sym_ATsynthesize] = ACTIONS(2530), + [anon_sym_ATdynamic] = ACTIONS(2530), + [anon_sym_ATtry] = ACTIONS(2530), + [anon_sym___try] = ACTIONS(2528), + [anon_sym_ATthrow] = ACTIONS(2530), + [anon_sym_ATselector] = ACTIONS(2530), + [anon_sym_ATavailable] = ACTIONS(2530), + [anon_sym___builtin_available] = ACTIONS(2528), + [anon_sym_va_arg] = ACTIONS(2528), + [anon_sym_ATencode] = ACTIONS(2530), + [anon_sym_ATsynchronized] = ACTIONS(2530), + [anon_sym_BOOL] = ACTIONS(2528), + [anon_sym_IMP] = ACTIONS(2528), + [anon_sym_SEL] = ACTIONS(2528), + [anon_sym_Class] = ACTIONS(2528), + [anon_sym_id] = ACTIONS(2528), + }, + [418] = { + [sym_identifier] = ACTIONS(2532), + [aux_sym_preproc_include_token1] = ACTIONS(2532), + [aux_sym_preproc_include_token2] = ACTIONS(2532), + [aux_sym_preproc_def_token1] = ACTIONS(2532), + [aux_sym_preproc_if_token1] = ACTIONS(2532), + [aux_sym_preproc_if_token2] = ACTIONS(2532), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2532), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2532), + [aux_sym_preproc_else_token1] = ACTIONS(2532), + [aux_sym_preproc_elif_token1] = ACTIONS(2532), + [sym_preproc_directive] = ACTIONS(2532), + [anon_sym_LPAREN2] = ACTIONS(2534), + [anon_sym_BANG] = ACTIONS(2534), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2532), + [anon_sym_STAR] = ACTIONS(2534), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2534), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym___extension__] = ACTIONS(2532), + [anon_sym_typedef] = ACTIONS(2532), + [anon_sym_extern] = ACTIONS(2532), + [anon_sym___attribute__] = ACTIONS(2532), + [anon_sym___attribute] = ACTIONS(2532), + [anon_sym_noreturn] = ACTIONS(2532), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym___declspec] = ACTIONS(2532), + [anon_sym___cdecl] = ACTIONS(2532), + [anon_sym___clrcall] = ACTIONS(2532), + [anon_sym___stdcall] = ACTIONS(2532), + [anon_sym___fastcall] = ACTIONS(2532), + [anon_sym___thiscall] = ACTIONS(2532), + [anon_sym___vectorcall] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_signed] = ACTIONS(2532), + [anon_sym_unsigned] = ACTIONS(2532), + [anon_sym_long] = ACTIONS(2532), + [anon_sym_short] = ACTIONS(2532), + [anon_sym_static] = ACTIONS(2532), + [anon_sym_ATautoreleasepool] = ACTIONS(2534), + [anon_sym_auto] = ACTIONS(2532), + [anon_sym_register] = ACTIONS(2532), + [anon_sym_inline] = ACTIONS(2532), + [anon_sym___inline] = ACTIONS(2532), + [anon_sym___inline__] = ACTIONS(2532), + [anon_sym___forceinline] = ACTIONS(2532), + [anon_sym_thread_local] = ACTIONS(2532), + [anon_sym___thread] = ACTIONS(2532), + [anon_sym_CG_EXTERN] = ACTIONS(2532), + [anon_sym_CG_INLINE] = ACTIONS(2532), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2532), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2532), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2532), + [anon_sym_IBOutlet] = ACTIONS(2532), + [anon_sym_IBInspectable] = ACTIONS(2532), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2532), + [anon_sym_NS_INLINE] = ACTIONS(2532), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2532), + [anon_sym_OBJC_EXPORT] = ACTIONS(2532), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2532), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2532), + [anon_sym_const] = ACTIONS(2532), + [anon_sym_constexpr] = ACTIONS(2532), + [anon_sym_volatile] = ACTIONS(2532), + [anon_sym_restrict] = ACTIONS(2532), + [anon_sym___restrict__] = ACTIONS(2532), + [anon_sym__Atomic] = ACTIONS(2532), + [anon_sym__Noreturn] = ACTIONS(2532), + [anon_sym__Nonnull] = ACTIONS(2532), + [anon_sym_nullable] = ACTIONS(2532), + [anon_sym__Complex] = ACTIONS(2532), + [anon_sym__Nullable] = ACTIONS(2532), + [anon_sym__Nullable_result] = ACTIONS(2532), + [anon_sym__Null_unspecified] = ACTIONS(2532), + [anon_sym___autoreleasing] = ACTIONS(2532), + [anon_sym___block] = ACTIONS(2532), + [anon_sym___bridge] = ACTIONS(2532), + [anon_sym___bridge_retained] = ACTIONS(2532), + [anon_sym___bridge_transfer] = ACTIONS(2532), + [anon_sym___complex] = ACTIONS(2532), + [anon_sym___const] = ACTIONS(2532), + [anon_sym___imag] = ACTIONS(2532), + [anon_sym___kindof] = ACTIONS(2532), + [anon_sym___nonnull] = ACTIONS(2532), + [anon_sym___nullable] = ACTIONS(2532), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2532), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2532), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2532), + [anon_sym___real] = ACTIONS(2532), + [anon_sym___strong] = ACTIONS(2532), + [anon_sym___unsafe_unretained] = ACTIONS(2532), + [anon_sym___unused] = ACTIONS(2532), + [anon_sym___weak] = ACTIONS(2532), + [anon_sym_alignas] = ACTIONS(2532), + [anon_sym__Alignas] = ACTIONS(2532), + [sym_primitive_type] = ACTIONS(2532), + [anon_sym_enum] = ACTIONS(2532), + [anon_sym_struct] = ACTIONS(2532), + [anon_sym_union] = ACTIONS(2532), + [anon_sym_if] = ACTIONS(2532), + [anon_sym_else] = ACTIONS(2532), + [anon_sym_switch] = ACTIONS(2532), + [anon_sym_case] = ACTIONS(2532), + [anon_sym_default] = ACTIONS(2532), + [anon_sym_while] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_for] = ACTIONS(2532), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_return] = ACTIONS(2532), + [anon_sym_break] = ACTIONS(2532), + [anon_sym_continue] = ACTIONS(2532), + [anon_sym_goto] = ACTIONS(2532), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), + [anon_sym_sizeof] = ACTIONS(2532), + [anon_sym___alignof__] = ACTIONS(2532), + [anon_sym___alignof] = ACTIONS(2532), + [anon_sym__alignof] = ACTIONS(2532), + [anon_sym_alignof] = ACTIONS(2532), + [anon_sym__Alignof] = ACTIONS(2532), + [anon_sym_offsetof] = ACTIONS(2532), + [anon_sym__Generic] = ACTIONS(2532), + [anon_sym_asm] = ACTIONS(2532), + [anon_sym___asm__] = ACTIONS(2532), + [anon_sym___asm] = ACTIONS(2532), + [sym_number_literal] = ACTIONS(2534), + [anon_sym_L_SQUOTE] = ACTIONS(2534), + [anon_sym_u_SQUOTE] = ACTIONS(2534), + [anon_sym_U_SQUOTE] = ACTIONS(2534), + [anon_sym_u8_SQUOTE] = ACTIONS(2534), + [anon_sym_SQUOTE] = ACTIONS(2534), + [anon_sym_AT] = ACTIONS(2532), + [anon_sym_DQUOTE] = ACTIONS(2534), + [anon_sym_L_DQUOTE] = ACTIONS(2534), + [anon_sym_u_DQUOTE] = ACTIONS(2534), + [anon_sym_U_DQUOTE] = ACTIONS(2534), + [anon_sym_u8_DQUOTE] = ACTIONS(2534), + [sym_true] = ACTIONS(2532), + [sym_false] = ACTIONS(2532), + [anon_sym_NULL] = ACTIONS(2532), + [anon_sym_nullptr] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2532), + [anon_sym___typeof] = ACTIONS(2532), + [anon_sym_typeof] = ACTIONS(2532), + [anon_sym_ATimport] = ACTIONS(2534), + [aux_sym_preproc_undef_token1] = ACTIONS(2532), + [anon_sym_POUND] = ACTIONS(2532), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2532), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2532), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2532), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2532), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2532), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2532), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2532), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2532), + [anon_sym_NS_AVAILABLE] = ACTIONS(2532), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2532), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_API_AVAILABLE] = ACTIONS(2532), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_API_DEPRECATED] = ACTIONS(2532), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2532), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2532), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2532), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2532), + [anon_sym___deprecated_msg] = ACTIONS(2532), + [anon_sym___deprecated_enum_msg] = ACTIONS(2532), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2532), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2532), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2532), + [anon_sym_ATprotocol] = ACTIONS(2534), + [anon_sym_ATinterface] = ACTIONS(2534), + [anon_sym_ATimplementation] = ACTIONS(2534), + [anon_sym_ATcompatibility_alias] = ACTIONS(2534), + [anon_sym_ATsynthesize] = ACTIONS(2534), + [anon_sym_ATdynamic] = ACTIONS(2534), + [anon_sym_ATtry] = ACTIONS(2534), + [anon_sym___try] = ACTIONS(2532), + [anon_sym_ATthrow] = ACTIONS(2534), + [anon_sym_ATselector] = ACTIONS(2534), + [anon_sym_ATavailable] = ACTIONS(2534), + [anon_sym___builtin_available] = ACTIONS(2532), + [anon_sym_va_arg] = ACTIONS(2532), + [anon_sym_ATencode] = ACTIONS(2534), + [anon_sym_ATsynchronized] = ACTIONS(2534), + [anon_sym_BOOL] = ACTIONS(2532), + [anon_sym_IMP] = ACTIONS(2532), + [anon_sym_SEL] = ACTIONS(2532), + [anon_sym_Class] = ACTIONS(2532), + [anon_sym_id] = ACTIONS(2532), + }, + [419] = { + [sym_identifier] = ACTIONS(2536), + [aux_sym_preproc_include_token1] = ACTIONS(2536), + [aux_sym_preproc_include_token2] = ACTIONS(2536), + [aux_sym_preproc_def_token1] = ACTIONS(2536), + [aux_sym_preproc_if_token1] = ACTIONS(2536), + [aux_sym_preproc_if_token2] = ACTIONS(2536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2536), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2536), + [aux_sym_preproc_else_token1] = ACTIONS(2536), + [aux_sym_preproc_elif_token1] = ACTIONS(2536), + [sym_preproc_directive] = ACTIONS(2536), + [anon_sym_LPAREN2] = ACTIONS(2538), + [anon_sym_BANG] = ACTIONS(2538), + [anon_sym_TILDE] = ACTIONS(2538), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_STAR] = ACTIONS(2538), + [anon_sym_CARET] = ACTIONS(2538), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_SEMI] = ACTIONS(2538), + [anon_sym___extension__] = ACTIONS(2536), + [anon_sym_typedef] = ACTIONS(2536), + [anon_sym_extern] = ACTIONS(2536), + [anon_sym___attribute__] = ACTIONS(2536), + [anon_sym___attribute] = ACTIONS(2536), + [anon_sym_noreturn] = ACTIONS(2536), + [anon_sym_LBRACK] = ACTIONS(2538), + [anon_sym___declspec] = ACTIONS(2536), + [anon_sym___cdecl] = ACTIONS(2536), + [anon_sym___clrcall] = ACTIONS(2536), + [anon_sym___stdcall] = ACTIONS(2536), + [anon_sym___fastcall] = ACTIONS(2536), + [anon_sym___thiscall] = ACTIONS(2536), + [anon_sym___vectorcall] = ACTIONS(2536), + [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_signed] = ACTIONS(2536), + [anon_sym_unsigned] = ACTIONS(2536), + [anon_sym_long] = ACTIONS(2536), + [anon_sym_short] = ACTIONS(2536), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_ATautoreleasepool] = ACTIONS(2538), + [anon_sym_auto] = ACTIONS(2536), + [anon_sym_register] = ACTIONS(2536), + [anon_sym_inline] = ACTIONS(2536), + [anon_sym___inline] = ACTIONS(2536), + [anon_sym___inline__] = ACTIONS(2536), + [anon_sym___forceinline] = ACTIONS(2536), + [anon_sym_thread_local] = ACTIONS(2536), + [anon_sym___thread] = ACTIONS(2536), + [anon_sym_CG_EXTERN] = ACTIONS(2536), + [anon_sym_CG_INLINE] = ACTIONS(2536), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2536), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2536), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2536), + [anon_sym_IBOutlet] = ACTIONS(2536), + [anon_sym_IBInspectable] = ACTIONS(2536), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2536), + [anon_sym_NS_INLINE] = ACTIONS(2536), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2536), + [anon_sym_OBJC_EXPORT] = ACTIONS(2536), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2536), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2536), + [anon_sym_const] = ACTIONS(2536), + [anon_sym_constexpr] = ACTIONS(2536), + [anon_sym_volatile] = ACTIONS(2536), + [anon_sym_restrict] = ACTIONS(2536), + [anon_sym___restrict__] = ACTIONS(2536), + [anon_sym__Atomic] = ACTIONS(2536), + [anon_sym__Noreturn] = ACTIONS(2536), + [anon_sym__Nonnull] = ACTIONS(2536), + [anon_sym_nullable] = ACTIONS(2536), + [anon_sym__Complex] = ACTIONS(2536), + [anon_sym__Nullable] = ACTIONS(2536), + [anon_sym__Nullable_result] = ACTIONS(2536), + [anon_sym__Null_unspecified] = ACTIONS(2536), + [anon_sym___autoreleasing] = ACTIONS(2536), + [anon_sym___block] = ACTIONS(2536), + [anon_sym___bridge] = ACTIONS(2536), + [anon_sym___bridge_retained] = ACTIONS(2536), + [anon_sym___bridge_transfer] = ACTIONS(2536), + [anon_sym___complex] = ACTIONS(2536), + [anon_sym___const] = ACTIONS(2536), + [anon_sym___imag] = ACTIONS(2536), + [anon_sym___kindof] = ACTIONS(2536), + [anon_sym___nonnull] = ACTIONS(2536), + [anon_sym___nullable] = ACTIONS(2536), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2536), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2536), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2536), + [anon_sym___real] = ACTIONS(2536), + [anon_sym___strong] = ACTIONS(2536), + [anon_sym___unsafe_unretained] = ACTIONS(2536), + [anon_sym___unused] = ACTIONS(2536), + [anon_sym___weak] = ACTIONS(2536), + [anon_sym_alignas] = ACTIONS(2536), + [anon_sym__Alignas] = ACTIONS(2536), + [sym_primitive_type] = ACTIONS(2536), + [anon_sym_enum] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2536), + [anon_sym_union] = ACTIONS(2536), + [anon_sym_if] = ACTIONS(2536), + [anon_sym_else] = ACTIONS(2536), + [anon_sym_switch] = ACTIONS(2536), + [anon_sym_case] = ACTIONS(2536), + [anon_sym_default] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2536), + [anon_sym_do] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2536), + [anon_sym_in] = ACTIONS(2536), + [anon_sym_return] = ACTIONS(2536), + [anon_sym_break] = ACTIONS(2536), + [anon_sym_continue] = ACTIONS(2536), + [anon_sym_goto] = ACTIONS(2536), + [anon_sym_DASH_DASH] = ACTIONS(2538), + [anon_sym_PLUS_PLUS] = ACTIONS(2538), + [anon_sym_sizeof] = ACTIONS(2536), + [anon_sym___alignof__] = ACTIONS(2536), + [anon_sym___alignof] = ACTIONS(2536), + [anon_sym__alignof] = ACTIONS(2536), + [anon_sym_alignof] = ACTIONS(2536), + [anon_sym__Alignof] = ACTIONS(2536), + [anon_sym_offsetof] = ACTIONS(2536), + [anon_sym__Generic] = ACTIONS(2536), + [anon_sym_asm] = ACTIONS(2536), + [anon_sym___asm__] = ACTIONS(2536), + [anon_sym___asm] = ACTIONS(2536), + [sym_number_literal] = ACTIONS(2538), + [anon_sym_L_SQUOTE] = ACTIONS(2538), + [anon_sym_u_SQUOTE] = ACTIONS(2538), + [anon_sym_U_SQUOTE] = ACTIONS(2538), + [anon_sym_u8_SQUOTE] = ACTIONS(2538), + [anon_sym_SQUOTE] = ACTIONS(2538), + [anon_sym_AT] = ACTIONS(2536), + [anon_sym_DQUOTE] = ACTIONS(2538), + [anon_sym_L_DQUOTE] = ACTIONS(2538), + [anon_sym_u_DQUOTE] = ACTIONS(2538), + [anon_sym_U_DQUOTE] = ACTIONS(2538), + [anon_sym_u8_DQUOTE] = ACTIONS(2538), + [sym_true] = ACTIONS(2536), + [sym_false] = ACTIONS(2536), + [anon_sym_NULL] = ACTIONS(2536), + [anon_sym_nullptr] = ACTIONS(2536), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2536), + [anon_sym___typeof] = ACTIONS(2536), + [anon_sym_typeof] = ACTIONS(2536), + [anon_sym_ATimport] = ACTIONS(2538), + [aux_sym_preproc_undef_token1] = ACTIONS(2536), + [anon_sym_POUND] = ACTIONS(2536), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2536), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2536), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2536), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2536), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2536), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2536), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2536), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2536), + [anon_sym_NS_AVAILABLE] = ACTIONS(2536), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2536), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_API_AVAILABLE] = ACTIONS(2536), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_API_DEPRECATED] = ACTIONS(2536), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2536), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2536), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2536), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2536), + [anon_sym___deprecated_msg] = ACTIONS(2536), + [anon_sym___deprecated_enum_msg] = ACTIONS(2536), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2536), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2536), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2536), + [anon_sym_ATprotocol] = ACTIONS(2538), + [anon_sym_ATinterface] = ACTIONS(2538), + [anon_sym_ATimplementation] = ACTIONS(2538), + [anon_sym_ATcompatibility_alias] = ACTIONS(2538), + [anon_sym_ATsynthesize] = ACTIONS(2538), + [anon_sym_ATdynamic] = ACTIONS(2538), + [anon_sym_ATtry] = ACTIONS(2538), + [anon_sym___try] = ACTIONS(2536), + [anon_sym_ATthrow] = ACTIONS(2538), + [anon_sym_ATselector] = ACTIONS(2538), + [anon_sym_ATavailable] = ACTIONS(2538), + [anon_sym___builtin_available] = ACTIONS(2536), + [anon_sym_va_arg] = ACTIONS(2536), + [anon_sym_ATencode] = ACTIONS(2538), + [anon_sym_ATsynchronized] = ACTIONS(2538), + [anon_sym_BOOL] = ACTIONS(2536), + [anon_sym_IMP] = ACTIONS(2536), + [anon_sym_SEL] = ACTIONS(2536), + [anon_sym_Class] = ACTIONS(2536), + [anon_sym_id] = ACTIONS(2536), + }, + [420] = { + [sym_identifier] = ACTIONS(2540), + [aux_sym_preproc_include_token1] = ACTIONS(2540), + [aux_sym_preproc_include_token2] = ACTIONS(2540), + [aux_sym_preproc_def_token1] = ACTIONS(2540), + [aux_sym_preproc_if_token1] = ACTIONS(2540), + [aux_sym_preproc_if_token2] = ACTIONS(2540), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2540), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2540), + [aux_sym_preproc_else_token1] = ACTIONS(2540), + [aux_sym_preproc_elif_token1] = ACTIONS(2540), + [sym_preproc_directive] = ACTIONS(2540), + [anon_sym_LPAREN2] = ACTIONS(2542), + [anon_sym_BANG] = ACTIONS(2542), + [anon_sym_TILDE] = ACTIONS(2542), + [anon_sym_DASH] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2540), + [anon_sym_STAR] = ACTIONS(2542), + [anon_sym_CARET] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2542), + [anon_sym___extension__] = ACTIONS(2540), + [anon_sym_typedef] = ACTIONS(2540), + [anon_sym_extern] = ACTIONS(2540), + [anon_sym___attribute__] = ACTIONS(2540), + [anon_sym___attribute] = ACTIONS(2540), + [anon_sym_noreturn] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym___declspec] = ACTIONS(2540), + [anon_sym___cdecl] = ACTIONS(2540), + [anon_sym___clrcall] = ACTIONS(2540), + [anon_sym___stdcall] = ACTIONS(2540), + [anon_sym___fastcall] = ACTIONS(2540), + [anon_sym___thiscall] = ACTIONS(2540), + [anon_sym___vectorcall] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2542), + [anon_sym_signed] = ACTIONS(2540), + [anon_sym_unsigned] = ACTIONS(2540), + [anon_sym_long] = ACTIONS(2540), + [anon_sym_short] = ACTIONS(2540), + [anon_sym_static] = ACTIONS(2540), + [anon_sym_ATautoreleasepool] = ACTIONS(2542), + [anon_sym_auto] = ACTIONS(2540), + [anon_sym_register] = ACTIONS(2540), + [anon_sym_inline] = ACTIONS(2540), + [anon_sym___inline] = ACTIONS(2540), + [anon_sym___inline__] = ACTIONS(2540), + [anon_sym___forceinline] = ACTIONS(2540), + [anon_sym_thread_local] = ACTIONS(2540), + [anon_sym___thread] = ACTIONS(2540), + [anon_sym_CG_EXTERN] = ACTIONS(2540), + [anon_sym_CG_INLINE] = ACTIONS(2540), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2540), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2540), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2540), + [anon_sym_IBOutlet] = ACTIONS(2540), + [anon_sym_IBInspectable] = ACTIONS(2540), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2540), + [anon_sym_NS_INLINE] = ACTIONS(2540), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2540), + [anon_sym_OBJC_EXPORT] = ACTIONS(2540), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2540), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2540), + [anon_sym_const] = ACTIONS(2540), + [anon_sym_constexpr] = ACTIONS(2540), + [anon_sym_volatile] = ACTIONS(2540), + [anon_sym_restrict] = ACTIONS(2540), + [anon_sym___restrict__] = ACTIONS(2540), + [anon_sym__Atomic] = ACTIONS(2540), + [anon_sym__Noreturn] = ACTIONS(2540), + [anon_sym__Nonnull] = ACTIONS(2540), + [anon_sym_nullable] = ACTIONS(2540), + [anon_sym__Complex] = ACTIONS(2540), + [anon_sym__Nullable] = ACTIONS(2540), + [anon_sym__Nullable_result] = ACTIONS(2540), + [anon_sym__Null_unspecified] = ACTIONS(2540), + [anon_sym___autoreleasing] = ACTIONS(2540), + [anon_sym___block] = ACTIONS(2540), + [anon_sym___bridge] = ACTIONS(2540), + [anon_sym___bridge_retained] = ACTIONS(2540), + [anon_sym___bridge_transfer] = ACTIONS(2540), + [anon_sym___complex] = ACTIONS(2540), + [anon_sym___const] = ACTIONS(2540), + [anon_sym___imag] = ACTIONS(2540), + [anon_sym___kindof] = ACTIONS(2540), + [anon_sym___nonnull] = ACTIONS(2540), + [anon_sym___nullable] = ACTIONS(2540), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2540), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2540), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2540), + [anon_sym___real] = ACTIONS(2540), + [anon_sym___strong] = ACTIONS(2540), + [anon_sym___unsafe_unretained] = ACTIONS(2540), + [anon_sym___unused] = ACTIONS(2540), + [anon_sym___weak] = ACTIONS(2540), + [anon_sym_alignas] = ACTIONS(2540), + [anon_sym__Alignas] = ACTIONS(2540), + [sym_primitive_type] = ACTIONS(2540), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_struct] = ACTIONS(2540), + [anon_sym_union] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_else] = ACTIONS(2540), + [anon_sym_switch] = ACTIONS(2540), + [anon_sym_case] = ACTIONS(2540), + [anon_sym_default] = ACTIONS(2540), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_do] = ACTIONS(2540), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_in] = ACTIONS(2540), + [anon_sym_return] = ACTIONS(2540), + [anon_sym_break] = ACTIONS(2540), + [anon_sym_continue] = ACTIONS(2540), + [anon_sym_goto] = ACTIONS(2540), + [anon_sym_DASH_DASH] = ACTIONS(2542), + [anon_sym_PLUS_PLUS] = ACTIONS(2542), + [anon_sym_sizeof] = ACTIONS(2540), + [anon_sym___alignof__] = ACTIONS(2540), + [anon_sym___alignof] = ACTIONS(2540), + [anon_sym__alignof] = ACTIONS(2540), + [anon_sym_alignof] = ACTIONS(2540), + [anon_sym__Alignof] = ACTIONS(2540), + [anon_sym_offsetof] = ACTIONS(2540), + [anon_sym__Generic] = ACTIONS(2540), + [anon_sym_asm] = ACTIONS(2540), + [anon_sym___asm__] = ACTIONS(2540), + [anon_sym___asm] = ACTIONS(2540), + [sym_number_literal] = ACTIONS(2542), + [anon_sym_L_SQUOTE] = ACTIONS(2542), + [anon_sym_u_SQUOTE] = ACTIONS(2542), + [anon_sym_U_SQUOTE] = ACTIONS(2542), + [anon_sym_u8_SQUOTE] = ACTIONS(2542), + [anon_sym_SQUOTE] = ACTIONS(2542), + [anon_sym_AT] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2542), + [anon_sym_L_DQUOTE] = ACTIONS(2542), + [anon_sym_u_DQUOTE] = ACTIONS(2542), + [anon_sym_U_DQUOTE] = ACTIONS(2542), + [anon_sym_u8_DQUOTE] = ACTIONS(2542), + [sym_true] = ACTIONS(2540), + [sym_false] = ACTIONS(2540), + [anon_sym_NULL] = ACTIONS(2540), + [anon_sym_nullptr] = ACTIONS(2540), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2540), + [anon_sym___typeof] = ACTIONS(2540), + [anon_sym_typeof] = ACTIONS(2540), + [anon_sym_ATimport] = ACTIONS(2542), + [aux_sym_preproc_undef_token1] = ACTIONS(2540), + [anon_sym_POUND] = ACTIONS(2540), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2540), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2540), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2540), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2540), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2540), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2540), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2540), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2540), + [anon_sym_NS_AVAILABLE] = ACTIONS(2540), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2540), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_API_AVAILABLE] = ACTIONS(2540), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_API_DEPRECATED] = ACTIONS(2540), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2540), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2540), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2540), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2540), + [anon_sym___deprecated_msg] = ACTIONS(2540), + [anon_sym___deprecated_enum_msg] = ACTIONS(2540), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2540), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2540), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2540), + [anon_sym_ATprotocol] = ACTIONS(2542), + [anon_sym_ATinterface] = ACTIONS(2542), + [anon_sym_ATimplementation] = ACTIONS(2542), + [anon_sym_ATcompatibility_alias] = ACTIONS(2542), + [anon_sym_ATsynthesize] = ACTIONS(2542), + [anon_sym_ATdynamic] = ACTIONS(2542), + [anon_sym_ATtry] = ACTIONS(2542), + [anon_sym___try] = ACTIONS(2540), + [anon_sym_ATthrow] = ACTIONS(2542), + [anon_sym_ATselector] = ACTIONS(2542), + [anon_sym_ATavailable] = ACTIONS(2542), + [anon_sym___builtin_available] = ACTIONS(2540), + [anon_sym_va_arg] = ACTIONS(2540), + [anon_sym_ATencode] = ACTIONS(2542), + [anon_sym_ATsynchronized] = ACTIONS(2542), + [anon_sym_BOOL] = ACTIONS(2540), + [anon_sym_IMP] = ACTIONS(2540), + [anon_sym_SEL] = ACTIONS(2540), + [anon_sym_Class] = ACTIONS(2540), + [anon_sym_id] = ACTIONS(2540), + }, + [421] = { + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_include_token1] = ACTIONS(2544), + [aux_sym_preproc_include_token2] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(2544), + [aux_sym_preproc_if_token1] = ACTIONS(2544), + [aux_sym_preproc_if_token2] = ACTIONS(2544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2544), + [aux_sym_preproc_else_token1] = ACTIONS(2544), + [aux_sym_preproc_elif_token1] = ACTIONS(2544), + [sym_preproc_directive] = ACTIONS(2544), + [anon_sym_LPAREN2] = ACTIONS(2546), + [anon_sym_BANG] = ACTIONS(2546), + [anon_sym_TILDE] = ACTIONS(2546), + [anon_sym_DASH] = ACTIONS(2544), + [anon_sym_PLUS] = ACTIONS(2544), + [anon_sym_STAR] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2546), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym___extension__] = ACTIONS(2544), + [anon_sym_typedef] = ACTIONS(2544), + [anon_sym_extern] = ACTIONS(2544), + [anon_sym___attribute__] = ACTIONS(2544), + [anon_sym___attribute] = ACTIONS(2544), + [anon_sym_noreturn] = ACTIONS(2544), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym___declspec] = ACTIONS(2544), + [anon_sym___cdecl] = ACTIONS(2544), + [anon_sym___clrcall] = ACTIONS(2544), + [anon_sym___stdcall] = ACTIONS(2544), + [anon_sym___fastcall] = ACTIONS(2544), + [anon_sym___thiscall] = ACTIONS(2544), + [anon_sym___vectorcall] = ACTIONS(2544), + [anon_sym_LBRACE] = ACTIONS(2546), + [anon_sym_signed] = ACTIONS(2544), + [anon_sym_unsigned] = ACTIONS(2544), + [anon_sym_long] = ACTIONS(2544), + [anon_sym_short] = ACTIONS(2544), + [anon_sym_static] = ACTIONS(2544), + [anon_sym_ATautoreleasepool] = ACTIONS(2546), + [anon_sym_auto] = ACTIONS(2544), + [anon_sym_register] = ACTIONS(2544), + [anon_sym_inline] = ACTIONS(2544), + [anon_sym___inline] = ACTIONS(2544), + [anon_sym___inline__] = ACTIONS(2544), + [anon_sym___forceinline] = ACTIONS(2544), + [anon_sym_thread_local] = ACTIONS(2544), + [anon_sym___thread] = ACTIONS(2544), + [anon_sym_CG_EXTERN] = ACTIONS(2544), + [anon_sym_CG_INLINE] = ACTIONS(2544), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2544), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2544), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2544), + [anon_sym_IBOutlet] = ACTIONS(2544), + [anon_sym_IBInspectable] = ACTIONS(2544), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2544), + [anon_sym_NS_INLINE] = ACTIONS(2544), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2544), + [anon_sym_OBJC_EXPORT] = ACTIONS(2544), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2544), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2544), + [anon_sym_const] = ACTIONS(2544), + [anon_sym_constexpr] = ACTIONS(2544), + [anon_sym_volatile] = ACTIONS(2544), + [anon_sym_restrict] = ACTIONS(2544), + [anon_sym___restrict__] = ACTIONS(2544), + [anon_sym__Atomic] = ACTIONS(2544), + [anon_sym__Noreturn] = ACTIONS(2544), + [anon_sym__Nonnull] = ACTIONS(2544), + [anon_sym_nullable] = ACTIONS(2544), + [anon_sym__Complex] = ACTIONS(2544), + [anon_sym__Nullable] = ACTIONS(2544), + [anon_sym__Nullable_result] = ACTIONS(2544), + [anon_sym__Null_unspecified] = ACTIONS(2544), + [anon_sym___autoreleasing] = ACTIONS(2544), + [anon_sym___block] = ACTIONS(2544), + [anon_sym___bridge] = ACTIONS(2544), + [anon_sym___bridge_retained] = ACTIONS(2544), + [anon_sym___bridge_transfer] = ACTIONS(2544), + [anon_sym___complex] = ACTIONS(2544), + [anon_sym___const] = ACTIONS(2544), + [anon_sym___imag] = ACTIONS(2544), + [anon_sym___kindof] = ACTIONS(2544), + [anon_sym___nonnull] = ACTIONS(2544), + [anon_sym___nullable] = ACTIONS(2544), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2544), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2544), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2544), + [anon_sym___real] = ACTIONS(2544), + [anon_sym___strong] = ACTIONS(2544), + [anon_sym___unsafe_unretained] = ACTIONS(2544), + [anon_sym___unused] = ACTIONS(2544), + [anon_sym___weak] = ACTIONS(2544), + [anon_sym_alignas] = ACTIONS(2544), + [anon_sym__Alignas] = ACTIONS(2544), + [sym_primitive_type] = ACTIONS(2544), + [anon_sym_enum] = ACTIONS(2544), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2544), + [anon_sym_if] = ACTIONS(2544), + [anon_sym_else] = ACTIONS(2544), + [anon_sym_switch] = ACTIONS(2544), + [anon_sym_case] = ACTIONS(2544), + [anon_sym_default] = ACTIONS(2544), + [anon_sym_while] = ACTIONS(2544), + [anon_sym_do] = ACTIONS(2544), + [anon_sym_for] = ACTIONS(2544), + [anon_sym_in] = ACTIONS(2544), + [anon_sym_return] = ACTIONS(2544), + [anon_sym_break] = ACTIONS(2544), + [anon_sym_continue] = ACTIONS(2544), + [anon_sym_goto] = ACTIONS(2544), + [anon_sym_DASH_DASH] = ACTIONS(2546), + [anon_sym_PLUS_PLUS] = ACTIONS(2546), + [anon_sym_sizeof] = ACTIONS(2544), + [anon_sym___alignof__] = ACTIONS(2544), + [anon_sym___alignof] = ACTIONS(2544), + [anon_sym__alignof] = ACTIONS(2544), + [anon_sym_alignof] = ACTIONS(2544), + [anon_sym__Alignof] = ACTIONS(2544), + [anon_sym_offsetof] = ACTIONS(2544), + [anon_sym__Generic] = ACTIONS(2544), + [anon_sym_asm] = ACTIONS(2544), + [anon_sym___asm__] = ACTIONS(2544), + [anon_sym___asm] = ACTIONS(2544), + [sym_number_literal] = ACTIONS(2546), + [anon_sym_L_SQUOTE] = ACTIONS(2546), + [anon_sym_u_SQUOTE] = ACTIONS(2546), + [anon_sym_U_SQUOTE] = ACTIONS(2546), + [anon_sym_u8_SQUOTE] = ACTIONS(2546), + [anon_sym_SQUOTE] = ACTIONS(2546), + [anon_sym_AT] = ACTIONS(2544), + [anon_sym_DQUOTE] = ACTIONS(2546), + [anon_sym_L_DQUOTE] = ACTIONS(2546), + [anon_sym_u_DQUOTE] = ACTIONS(2546), + [anon_sym_U_DQUOTE] = ACTIONS(2546), + [anon_sym_u8_DQUOTE] = ACTIONS(2546), + [sym_true] = ACTIONS(2544), + [sym_false] = ACTIONS(2544), + [anon_sym_NULL] = ACTIONS(2544), + [anon_sym_nullptr] = ACTIONS(2544), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2544), + [anon_sym___typeof] = ACTIONS(2544), + [anon_sym_typeof] = ACTIONS(2544), + [anon_sym_ATimport] = ACTIONS(2546), + [aux_sym_preproc_undef_token1] = ACTIONS(2544), + [anon_sym_POUND] = ACTIONS(2544), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2544), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2544), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2544), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2544), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2544), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2544), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2544), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2544), + [anon_sym_NS_AVAILABLE] = ACTIONS(2544), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2544), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_API_AVAILABLE] = ACTIONS(2544), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_API_DEPRECATED] = ACTIONS(2544), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2544), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2544), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2544), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2544), + [anon_sym___deprecated_msg] = ACTIONS(2544), + [anon_sym___deprecated_enum_msg] = ACTIONS(2544), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2544), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2544), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2544), + [anon_sym_ATprotocol] = ACTIONS(2546), + [anon_sym_ATinterface] = ACTIONS(2546), + [anon_sym_ATimplementation] = ACTIONS(2546), + [anon_sym_ATcompatibility_alias] = ACTIONS(2546), + [anon_sym_ATsynthesize] = ACTIONS(2546), + [anon_sym_ATdynamic] = ACTIONS(2546), + [anon_sym_ATtry] = ACTIONS(2546), + [anon_sym___try] = ACTIONS(2544), + [anon_sym_ATthrow] = ACTIONS(2546), + [anon_sym_ATselector] = ACTIONS(2546), + [anon_sym_ATavailable] = ACTIONS(2546), + [anon_sym___builtin_available] = ACTIONS(2544), + [anon_sym_va_arg] = ACTIONS(2544), + [anon_sym_ATencode] = ACTIONS(2546), + [anon_sym_ATsynchronized] = ACTIONS(2546), + [anon_sym_BOOL] = ACTIONS(2544), + [anon_sym_IMP] = ACTIONS(2544), + [anon_sym_SEL] = ACTIONS(2544), + [anon_sym_Class] = ACTIONS(2544), + [anon_sym_id] = ACTIONS(2544), + }, + [422] = { + [sym_identifier] = ACTIONS(2548), + [aux_sym_preproc_include_token1] = ACTIONS(2548), + [aux_sym_preproc_include_token2] = ACTIONS(2548), + [aux_sym_preproc_def_token1] = ACTIONS(2548), + [aux_sym_preproc_if_token1] = ACTIONS(2548), + [aux_sym_preproc_if_token2] = ACTIONS(2548), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2548), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2548), + [aux_sym_preproc_else_token1] = ACTIONS(2548), + [aux_sym_preproc_elif_token1] = ACTIONS(2548), + [sym_preproc_directive] = ACTIONS(2548), + [anon_sym_LPAREN2] = ACTIONS(2550), + [anon_sym_BANG] = ACTIONS(2550), + [anon_sym_TILDE] = ACTIONS(2550), + [anon_sym_DASH] = ACTIONS(2548), + [anon_sym_PLUS] = ACTIONS(2548), + [anon_sym_STAR] = ACTIONS(2550), + [anon_sym_CARET] = ACTIONS(2550), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_SEMI] = ACTIONS(2550), + [anon_sym___extension__] = ACTIONS(2548), + [anon_sym_typedef] = ACTIONS(2548), + [anon_sym_extern] = ACTIONS(2548), + [anon_sym___attribute__] = ACTIONS(2548), + [anon_sym___attribute] = ACTIONS(2548), + [anon_sym_noreturn] = ACTIONS(2548), + [anon_sym_LBRACK] = ACTIONS(2550), + [anon_sym___declspec] = ACTIONS(2548), + [anon_sym___cdecl] = ACTIONS(2548), + [anon_sym___clrcall] = ACTIONS(2548), + [anon_sym___stdcall] = ACTIONS(2548), + [anon_sym___fastcall] = ACTIONS(2548), + [anon_sym___thiscall] = ACTIONS(2548), + [anon_sym___vectorcall] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2550), + [anon_sym_signed] = ACTIONS(2548), + [anon_sym_unsigned] = ACTIONS(2548), + [anon_sym_long] = ACTIONS(2548), + [anon_sym_short] = ACTIONS(2548), + [anon_sym_static] = ACTIONS(2548), + [anon_sym_ATautoreleasepool] = ACTIONS(2550), + [anon_sym_auto] = ACTIONS(2548), + [anon_sym_register] = ACTIONS(2548), + [anon_sym_inline] = ACTIONS(2548), + [anon_sym___inline] = ACTIONS(2548), + [anon_sym___inline__] = ACTIONS(2548), + [anon_sym___forceinline] = ACTIONS(2548), + [anon_sym_thread_local] = ACTIONS(2548), + [anon_sym___thread] = ACTIONS(2548), + [anon_sym_CG_EXTERN] = ACTIONS(2548), + [anon_sym_CG_INLINE] = ACTIONS(2548), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2548), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2548), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2548), + [anon_sym_IBOutlet] = ACTIONS(2548), + [anon_sym_IBInspectable] = ACTIONS(2548), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2548), + [anon_sym_NS_INLINE] = ACTIONS(2548), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2548), + [anon_sym_OBJC_EXPORT] = ACTIONS(2548), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2548), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2548), + [anon_sym_const] = ACTIONS(2548), + [anon_sym_constexpr] = ACTIONS(2548), + [anon_sym_volatile] = ACTIONS(2548), + [anon_sym_restrict] = ACTIONS(2548), + [anon_sym___restrict__] = ACTIONS(2548), + [anon_sym__Atomic] = ACTIONS(2548), + [anon_sym__Noreturn] = ACTIONS(2548), + [anon_sym__Nonnull] = ACTIONS(2548), + [anon_sym_nullable] = ACTIONS(2548), + [anon_sym__Complex] = ACTIONS(2548), + [anon_sym__Nullable] = ACTIONS(2548), + [anon_sym__Nullable_result] = ACTIONS(2548), + [anon_sym__Null_unspecified] = ACTIONS(2548), + [anon_sym___autoreleasing] = ACTIONS(2548), + [anon_sym___block] = ACTIONS(2548), + [anon_sym___bridge] = ACTIONS(2548), + [anon_sym___bridge_retained] = ACTIONS(2548), + [anon_sym___bridge_transfer] = ACTIONS(2548), + [anon_sym___complex] = ACTIONS(2548), + [anon_sym___const] = ACTIONS(2548), + [anon_sym___imag] = ACTIONS(2548), + [anon_sym___kindof] = ACTIONS(2548), + [anon_sym___nonnull] = ACTIONS(2548), + [anon_sym___nullable] = ACTIONS(2548), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2548), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2548), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2548), + [anon_sym___real] = ACTIONS(2548), + [anon_sym___strong] = ACTIONS(2548), + [anon_sym___unsafe_unretained] = ACTIONS(2548), + [anon_sym___unused] = ACTIONS(2548), + [anon_sym___weak] = ACTIONS(2548), + [anon_sym_alignas] = ACTIONS(2548), + [anon_sym__Alignas] = ACTIONS(2548), + [sym_primitive_type] = ACTIONS(2548), + [anon_sym_enum] = ACTIONS(2548), + [anon_sym_struct] = ACTIONS(2548), + [anon_sym_union] = ACTIONS(2548), + [anon_sym_if] = ACTIONS(2548), + [anon_sym_else] = ACTIONS(2548), + [anon_sym_switch] = ACTIONS(2548), + [anon_sym_case] = ACTIONS(2548), + [anon_sym_default] = ACTIONS(2548), + [anon_sym_while] = ACTIONS(2548), + [anon_sym_do] = ACTIONS(2548), + [anon_sym_for] = ACTIONS(2548), + [anon_sym_in] = ACTIONS(2548), + [anon_sym_return] = ACTIONS(2548), + [anon_sym_break] = ACTIONS(2548), + [anon_sym_continue] = ACTIONS(2548), + [anon_sym_goto] = ACTIONS(2548), + [anon_sym_DASH_DASH] = ACTIONS(2550), + [anon_sym_PLUS_PLUS] = ACTIONS(2550), + [anon_sym_sizeof] = ACTIONS(2548), + [anon_sym___alignof__] = ACTIONS(2548), + [anon_sym___alignof] = ACTIONS(2548), + [anon_sym__alignof] = ACTIONS(2548), + [anon_sym_alignof] = ACTIONS(2548), + [anon_sym__Alignof] = ACTIONS(2548), + [anon_sym_offsetof] = ACTIONS(2548), + [anon_sym__Generic] = ACTIONS(2548), + [anon_sym_asm] = ACTIONS(2548), + [anon_sym___asm__] = ACTIONS(2548), + [anon_sym___asm] = ACTIONS(2548), + [sym_number_literal] = ACTIONS(2550), + [anon_sym_L_SQUOTE] = ACTIONS(2550), + [anon_sym_u_SQUOTE] = ACTIONS(2550), + [anon_sym_U_SQUOTE] = ACTIONS(2550), + [anon_sym_u8_SQUOTE] = ACTIONS(2550), + [anon_sym_SQUOTE] = ACTIONS(2550), + [anon_sym_AT] = ACTIONS(2548), + [anon_sym_DQUOTE] = ACTIONS(2550), + [anon_sym_L_DQUOTE] = ACTIONS(2550), + [anon_sym_u_DQUOTE] = ACTIONS(2550), + [anon_sym_U_DQUOTE] = ACTIONS(2550), + [anon_sym_u8_DQUOTE] = ACTIONS(2550), + [sym_true] = ACTIONS(2548), + [sym_false] = ACTIONS(2548), + [anon_sym_NULL] = ACTIONS(2548), + [anon_sym_nullptr] = ACTIONS(2548), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2548), + [anon_sym___typeof] = ACTIONS(2548), + [anon_sym_typeof] = ACTIONS(2548), + [anon_sym_ATimport] = ACTIONS(2550), + [aux_sym_preproc_undef_token1] = ACTIONS(2548), + [anon_sym_POUND] = ACTIONS(2548), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2548), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2548), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2548), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2548), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2548), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2548), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2548), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2548), + [anon_sym_NS_AVAILABLE] = ACTIONS(2548), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2548), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_API_AVAILABLE] = ACTIONS(2548), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_API_DEPRECATED] = ACTIONS(2548), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2548), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2548), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2548), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2548), + [anon_sym___deprecated_msg] = ACTIONS(2548), + [anon_sym___deprecated_enum_msg] = ACTIONS(2548), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2548), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2548), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2548), + [anon_sym_ATprotocol] = ACTIONS(2550), + [anon_sym_ATinterface] = ACTIONS(2550), + [anon_sym_ATimplementation] = ACTIONS(2550), + [anon_sym_ATcompatibility_alias] = ACTIONS(2550), + [anon_sym_ATsynthesize] = ACTIONS(2550), + [anon_sym_ATdynamic] = ACTIONS(2550), + [anon_sym_ATtry] = ACTIONS(2550), + [anon_sym___try] = ACTIONS(2548), + [anon_sym_ATthrow] = ACTIONS(2550), + [anon_sym_ATselector] = ACTIONS(2550), + [anon_sym_ATavailable] = ACTIONS(2550), + [anon_sym___builtin_available] = ACTIONS(2548), + [anon_sym_va_arg] = ACTIONS(2548), + [anon_sym_ATencode] = ACTIONS(2550), + [anon_sym_ATsynchronized] = ACTIONS(2550), + [anon_sym_BOOL] = ACTIONS(2548), + [anon_sym_IMP] = ACTIONS(2548), + [anon_sym_SEL] = ACTIONS(2548), + [anon_sym_Class] = ACTIONS(2548), + [anon_sym_id] = ACTIONS(2548), + }, + [423] = { + [sym_identifier] = ACTIONS(2552), + [aux_sym_preproc_include_token1] = ACTIONS(2552), + [aux_sym_preproc_include_token2] = ACTIONS(2552), + [aux_sym_preproc_def_token1] = ACTIONS(2552), + [aux_sym_preproc_if_token1] = ACTIONS(2552), + [aux_sym_preproc_if_token2] = ACTIONS(2552), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2552), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2552), + [aux_sym_preproc_else_token1] = ACTIONS(2552), + [aux_sym_preproc_elif_token1] = ACTIONS(2552), + [sym_preproc_directive] = ACTIONS(2552), + [anon_sym_LPAREN2] = ACTIONS(2554), + [anon_sym_BANG] = ACTIONS(2554), + [anon_sym_TILDE] = ACTIONS(2554), + [anon_sym_DASH] = ACTIONS(2552), + [anon_sym_PLUS] = ACTIONS(2552), + [anon_sym_STAR] = ACTIONS(2554), + [anon_sym_CARET] = ACTIONS(2554), + [anon_sym_AMP] = ACTIONS(2554), + [anon_sym_SEMI] = ACTIONS(2554), + [anon_sym___extension__] = ACTIONS(2552), + [anon_sym_typedef] = ACTIONS(2552), + [anon_sym_extern] = ACTIONS(2552), + [anon_sym___attribute__] = ACTIONS(2552), + [anon_sym___attribute] = ACTIONS(2552), + [anon_sym_noreturn] = ACTIONS(2552), + [anon_sym_LBRACK] = ACTIONS(2554), + [anon_sym___declspec] = ACTIONS(2552), + [anon_sym___cdecl] = ACTIONS(2552), + [anon_sym___clrcall] = ACTIONS(2552), + [anon_sym___stdcall] = ACTIONS(2552), + [anon_sym___fastcall] = ACTIONS(2552), + [anon_sym___thiscall] = ACTIONS(2552), + [anon_sym___vectorcall] = ACTIONS(2552), + [anon_sym_LBRACE] = ACTIONS(2554), + [anon_sym_signed] = ACTIONS(2552), + [anon_sym_unsigned] = ACTIONS(2552), + [anon_sym_long] = ACTIONS(2552), + [anon_sym_short] = ACTIONS(2552), + [anon_sym_static] = ACTIONS(2552), + [anon_sym_ATautoreleasepool] = ACTIONS(2554), + [anon_sym_auto] = ACTIONS(2552), + [anon_sym_register] = ACTIONS(2552), + [anon_sym_inline] = ACTIONS(2552), + [anon_sym___inline] = ACTIONS(2552), + [anon_sym___inline__] = ACTIONS(2552), + [anon_sym___forceinline] = ACTIONS(2552), + [anon_sym_thread_local] = ACTIONS(2552), + [anon_sym___thread] = ACTIONS(2552), + [anon_sym_CG_EXTERN] = ACTIONS(2552), + [anon_sym_CG_INLINE] = ACTIONS(2552), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2552), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2552), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2552), + [anon_sym_IBOutlet] = ACTIONS(2552), + [anon_sym_IBInspectable] = ACTIONS(2552), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2552), + [anon_sym_NS_INLINE] = ACTIONS(2552), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2552), + [anon_sym_OBJC_EXPORT] = ACTIONS(2552), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2552), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2552), + [anon_sym_const] = ACTIONS(2552), + [anon_sym_constexpr] = ACTIONS(2552), + [anon_sym_volatile] = ACTIONS(2552), + [anon_sym_restrict] = ACTIONS(2552), + [anon_sym___restrict__] = ACTIONS(2552), + [anon_sym__Atomic] = ACTIONS(2552), + [anon_sym__Noreturn] = ACTIONS(2552), + [anon_sym__Nonnull] = ACTIONS(2552), + [anon_sym_nullable] = ACTIONS(2552), + [anon_sym__Complex] = ACTIONS(2552), + [anon_sym__Nullable] = ACTIONS(2552), + [anon_sym__Nullable_result] = ACTIONS(2552), + [anon_sym__Null_unspecified] = ACTIONS(2552), + [anon_sym___autoreleasing] = ACTIONS(2552), + [anon_sym___block] = ACTIONS(2552), + [anon_sym___bridge] = ACTIONS(2552), + [anon_sym___bridge_retained] = ACTIONS(2552), + [anon_sym___bridge_transfer] = ACTIONS(2552), + [anon_sym___complex] = ACTIONS(2552), + [anon_sym___const] = ACTIONS(2552), + [anon_sym___imag] = ACTIONS(2552), + [anon_sym___kindof] = ACTIONS(2552), + [anon_sym___nonnull] = ACTIONS(2552), + [anon_sym___nullable] = ACTIONS(2552), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2552), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2552), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2552), + [anon_sym___real] = ACTIONS(2552), + [anon_sym___strong] = ACTIONS(2552), + [anon_sym___unsafe_unretained] = ACTIONS(2552), + [anon_sym___unused] = ACTIONS(2552), + [anon_sym___weak] = ACTIONS(2552), + [anon_sym_alignas] = ACTIONS(2552), + [anon_sym__Alignas] = ACTIONS(2552), + [sym_primitive_type] = ACTIONS(2552), + [anon_sym_enum] = ACTIONS(2552), + [anon_sym_struct] = ACTIONS(2552), + [anon_sym_union] = ACTIONS(2552), + [anon_sym_if] = ACTIONS(2552), + [anon_sym_else] = ACTIONS(2552), + [anon_sym_switch] = ACTIONS(2552), + [anon_sym_case] = ACTIONS(2552), + [anon_sym_default] = ACTIONS(2552), + [anon_sym_while] = ACTIONS(2552), + [anon_sym_do] = ACTIONS(2552), + [anon_sym_for] = ACTIONS(2552), + [anon_sym_in] = ACTIONS(2552), + [anon_sym_return] = ACTIONS(2552), + [anon_sym_break] = ACTIONS(2552), + [anon_sym_continue] = ACTIONS(2552), + [anon_sym_goto] = ACTIONS(2552), + [anon_sym_DASH_DASH] = ACTIONS(2554), + [anon_sym_PLUS_PLUS] = ACTIONS(2554), + [anon_sym_sizeof] = ACTIONS(2552), + [anon_sym___alignof__] = ACTIONS(2552), + [anon_sym___alignof] = ACTIONS(2552), + [anon_sym__alignof] = ACTIONS(2552), + [anon_sym_alignof] = ACTIONS(2552), + [anon_sym__Alignof] = ACTIONS(2552), + [anon_sym_offsetof] = ACTIONS(2552), + [anon_sym__Generic] = ACTIONS(2552), + [anon_sym_asm] = ACTIONS(2552), + [anon_sym___asm__] = ACTIONS(2552), + [anon_sym___asm] = ACTIONS(2552), + [sym_number_literal] = ACTIONS(2554), + [anon_sym_L_SQUOTE] = ACTIONS(2554), + [anon_sym_u_SQUOTE] = ACTIONS(2554), + [anon_sym_U_SQUOTE] = ACTIONS(2554), + [anon_sym_u8_SQUOTE] = ACTIONS(2554), + [anon_sym_SQUOTE] = ACTIONS(2554), + [anon_sym_AT] = ACTIONS(2552), + [anon_sym_DQUOTE] = ACTIONS(2554), + [anon_sym_L_DQUOTE] = ACTIONS(2554), + [anon_sym_u_DQUOTE] = ACTIONS(2554), + [anon_sym_U_DQUOTE] = ACTIONS(2554), + [anon_sym_u8_DQUOTE] = ACTIONS(2554), + [sym_true] = ACTIONS(2552), + [sym_false] = ACTIONS(2552), + [anon_sym_NULL] = ACTIONS(2552), + [anon_sym_nullptr] = ACTIONS(2552), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2552), + [anon_sym___typeof] = ACTIONS(2552), + [anon_sym_typeof] = ACTIONS(2552), + [anon_sym_ATimport] = ACTIONS(2554), + [aux_sym_preproc_undef_token1] = ACTIONS(2552), + [anon_sym_POUND] = ACTIONS(2552), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2552), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2552), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2552), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2552), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2552), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2552), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2552), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2552), + [anon_sym_NS_AVAILABLE] = ACTIONS(2552), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2552), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_API_AVAILABLE] = ACTIONS(2552), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_API_DEPRECATED] = ACTIONS(2552), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2552), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2552), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2552), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2552), + [anon_sym___deprecated_msg] = ACTIONS(2552), + [anon_sym___deprecated_enum_msg] = ACTIONS(2552), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2552), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2552), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2552), + [anon_sym_ATprotocol] = ACTIONS(2554), + [anon_sym_ATinterface] = ACTIONS(2554), + [anon_sym_ATimplementation] = ACTIONS(2554), + [anon_sym_ATcompatibility_alias] = ACTIONS(2554), + [anon_sym_ATsynthesize] = ACTIONS(2554), + [anon_sym_ATdynamic] = ACTIONS(2554), + [anon_sym_ATtry] = ACTIONS(2554), + [anon_sym___try] = ACTIONS(2552), + [anon_sym_ATthrow] = ACTIONS(2554), + [anon_sym_ATselector] = ACTIONS(2554), + [anon_sym_ATavailable] = ACTIONS(2554), + [anon_sym___builtin_available] = ACTIONS(2552), + [anon_sym_va_arg] = ACTIONS(2552), + [anon_sym_ATencode] = ACTIONS(2554), + [anon_sym_ATsynchronized] = ACTIONS(2554), + [anon_sym_BOOL] = ACTIONS(2552), + [anon_sym_IMP] = ACTIONS(2552), + [anon_sym_SEL] = ACTIONS(2552), + [anon_sym_Class] = ACTIONS(2552), + [anon_sym_id] = ACTIONS(2552), + }, + [424] = { + [sym_identifier] = ACTIONS(2556), + [aux_sym_preproc_include_token1] = ACTIONS(2556), + [aux_sym_preproc_include_token2] = ACTIONS(2556), + [aux_sym_preproc_def_token1] = ACTIONS(2556), + [aux_sym_preproc_if_token1] = ACTIONS(2556), + [aux_sym_preproc_if_token2] = ACTIONS(2556), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2556), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2556), + [aux_sym_preproc_else_token1] = ACTIONS(2556), + [aux_sym_preproc_elif_token1] = ACTIONS(2556), + [sym_preproc_directive] = ACTIONS(2556), + [anon_sym_LPAREN2] = ACTIONS(2558), + [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_TILDE] = ACTIONS(2558), + [anon_sym_DASH] = ACTIONS(2556), + [anon_sym_PLUS] = ACTIONS(2556), + [anon_sym_STAR] = ACTIONS(2558), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym_AMP] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym___extension__] = ACTIONS(2556), + [anon_sym_typedef] = ACTIONS(2556), + [anon_sym_extern] = ACTIONS(2556), + [anon_sym___attribute__] = ACTIONS(2556), + [anon_sym___attribute] = ACTIONS(2556), + [anon_sym_noreturn] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym___declspec] = ACTIONS(2556), + [anon_sym___cdecl] = ACTIONS(2556), + [anon_sym___clrcall] = ACTIONS(2556), + [anon_sym___stdcall] = ACTIONS(2556), + [anon_sym___fastcall] = ACTIONS(2556), + [anon_sym___thiscall] = ACTIONS(2556), + [anon_sym___vectorcall] = ACTIONS(2556), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_signed] = ACTIONS(2556), + [anon_sym_unsigned] = ACTIONS(2556), + [anon_sym_long] = ACTIONS(2556), + [anon_sym_short] = ACTIONS(2556), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_ATautoreleasepool] = ACTIONS(2558), + [anon_sym_auto] = ACTIONS(2556), + [anon_sym_register] = ACTIONS(2556), + [anon_sym_inline] = ACTIONS(2556), + [anon_sym___inline] = ACTIONS(2556), + [anon_sym___inline__] = ACTIONS(2556), + [anon_sym___forceinline] = ACTIONS(2556), + [anon_sym_thread_local] = ACTIONS(2556), + [anon_sym___thread] = ACTIONS(2556), + [anon_sym_CG_EXTERN] = ACTIONS(2556), + [anon_sym_CG_INLINE] = ACTIONS(2556), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2556), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2556), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2556), + [anon_sym_IBOutlet] = ACTIONS(2556), + [anon_sym_IBInspectable] = ACTIONS(2556), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2556), + [anon_sym_NS_INLINE] = ACTIONS(2556), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2556), + [anon_sym_OBJC_EXPORT] = ACTIONS(2556), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2556), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2556), + [anon_sym_const] = ACTIONS(2556), + [anon_sym_constexpr] = ACTIONS(2556), + [anon_sym_volatile] = ACTIONS(2556), + [anon_sym_restrict] = ACTIONS(2556), + [anon_sym___restrict__] = ACTIONS(2556), + [anon_sym__Atomic] = ACTIONS(2556), + [anon_sym__Noreturn] = ACTIONS(2556), + [anon_sym__Nonnull] = ACTIONS(2556), + [anon_sym_nullable] = ACTIONS(2556), + [anon_sym__Complex] = ACTIONS(2556), + [anon_sym__Nullable] = ACTIONS(2556), + [anon_sym__Nullable_result] = ACTIONS(2556), + [anon_sym__Null_unspecified] = ACTIONS(2556), + [anon_sym___autoreleasing] = ACTIONS(2556), + [anon_sym___block] = ACTIONS(2556), + [anon_sym___bridge] = ACTIONS(2556), + [anon_sym___bridge_retained] = ACTIONS(2556), + [anon_sym___bridge_transfer] = ACTIONS(2556), + [anon_sym___complex] = ACTIONS(2556), + [anon_sym___const] = ACTIONS(2556), + [anon_sym___imag] = ACTIONS(2556), + [anon_sym___kindof] = ACTIONS(2556), + [anon_sym___nonnull] = ACTIONS(2556), + [anon_sym___nullable] = ACTIONS(2556), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2556), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2556), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2556), + [anon_sym___real] = ACTIONS(2556), + [anon_sym___strong] = ACTIONS(2556), + [anon_sym___unsafe_unretained] = ACTIONS(2556), + [anon_sym___unused] = ACTIONS(2556), + [anon_sym___weak] = ACTIONS(2556), + [anon_sym_alignas] = ACTIONS(2556), + [anon_sym__Alignas] = ACTIONS(2556), + [sym_primitive_type] = ACTIONS(2556), + [anon_sym_enum] = ACTIONS(2556), + [anon_sym_struct] = ACTIONS(2556), + [anon_sym_union] = ACTIONS(2556), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_else] = ACTIONS(2556), + [anon_sym_switch] = ACTIONS(2556), + [anon_sym_case] = ACTIONS(2556), + [anon_sym_default] = ACTIONS(2556), + [anon_sym_while] = ACTIONS(2556), + [anon_sym_do] = ACTIONS(2556), + [anon_sym_for] = ACTIONS(2556), + [anon_sym_in] = ACTIONS(2556), + [anon_sym_return] = ACTIONS(2556), + [anon_sym_break] = ACTIONS(2556), + [anon_sym_continue] = ACTIONS(2556), + [anon_sym_goto] = ACTIONS(2556), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_sizeof] = ACTIONS(2556), + [anon_sym___alignof__] = ACTIONS(2556), + [anon_sym___alignof] = ACTIONS(2556), + [anon_sym__alignof] = ACTIONS(2556), + [anon_sym_alignof] = ACTIONS(2556), + [anon_sym__Alignof] = ACTIONS(2556), + [anon_sym_offsetof] = ACTIONS(2556), + [anon_sym__Generic] = ACTIONS(2556), + [anon_sym_asm] = ACTIONS(2556), + [anon_sym___asm__] = ACTIONS(2556), + [anon_sym___asm] = ACTIONS(2556), + [sym_number_literal] = ACTIONS(2558), + [anon_sym_L_SQUOTE] = ACTIONS(2558), + [anon_sym_u_SQUOTE] = ACTIONS(2558), + [anon_sym_U_SQUOTE] = ACTIONS(2558), + [anon_sym_u8_SQUOTE] = ACTIONS(2558), + [anon_sym_SQUOTE] = ACTIONS(2558), + [anon_sym_AT] = ACTIONS(2556), + [anon_sym_DQUOTE] = ACTIONS(2558), + [anon_sym_L_DQUOTE] = ACTIONS(2558), + [anon_sym_u_DQUOTE] = ACTIONS(2558), + [anon_sym_U_DQUOTE] = ACTIONS(2558), + [anon_sym_u8_DQUOTE] = ACTIONS(2558), + [sym_true] = ACTIONS(2556), + [sym_false] = ACTIONS(2556), + [anon_sym_NULL] = ACTIONS(2556), + [anon_sym_nullptr] = ACTIONS(2556), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2556), + [anon_sym___typeof] = ACTIONS(2556), + [anon_sym_typeof] = ACTIONS(2556), + [anon_sym_ATimport] = ACTIONS(2558), + [aux_sym_preproc_undef_token1] = ACTIONS(2556), + [anon_sym_POUND] = ACTIONS(2556), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2556), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2556), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2556), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2556), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2556), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2556), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2556), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2556), + [anon_sym_NS_AVAILABLE] = ACTIONS(2556), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2556), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_API_AVAILABLE] = ACTIONS(2556), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_API_DEPRECATED] = ACTIONS(2556), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2556), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2556), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2556), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2556), + [anon_sym___deprecated_msg] = ACTIONS(2556), + [anon_sym___deprecated_enum_msg] = ACTIONS(2556), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2556), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2556), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2556), + [anon_sym_ATprotocol] = ACTIONS(2558), + [anon_sym_ATinterface] = ACTIONS(2558), + [anon_sym_ATimplementation] = ACTIONS(2558), + [anon_sym_ATcompatibility_alias] = ACTIONS(2558), + [anon_sym_ATsynthesize] = ACTIONS(2558), + [anon_sym_ATdynamic] = ACTIONS(2558), + [anon_sym_ATtry] = ACTIONS(2558), + [anon_sym___try] = ACTIONS(2556), + [anon_sym_ATthrow] = ACTIONS(2558), + [anon_sym_ATselector] = ACTIONS(2558), + [anon_sym_ATavailable] = ACTIONS(2558), + [anon_sym___builtin_available] = ACTIONS(2556), + [anon_sym_va_arg] = ACTIONS(2556), + [anon_sym_ATencode] = ACTIONS(2558), + [anon_sym_ATsynchronized] = ACTIONS(2558), + [anon_sym_BOOL] = ACTIONS(2556), + [anon_sym_IMP] = ACTIONS(2556), + [anon_sym_SEL] = ACTIONS(2556), + [anon_sym_Class] = ACTIONS(2556), + [anon_sym_id] = ACTIONS(2556), + }, + [425] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [426] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [427] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [428] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [429] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [430] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [431] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [432] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [433] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [434] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [435] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [436] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [437] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [438] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [439] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [440] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [441] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [aux_sym_preproc_else_token1] = ACTIONS(2564), + [aux_sym_preproc_elif_token1] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [442] = { + [ts_builtin_sym_end] = ACTIONS(2370), + [sym_identifier] = ACTIONS(2368), + [aux_sym_preproc_include_token1] = ACTIONS(2368), + [aux_sym_preproc_include_token2] = ACTIONS(2368), + [aux_sym_preproc_def_token1] = ACTIONS(2368), + [aux_sym_preproc_if_token1] = ACTIONS(2368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2368), + [sym_preproc_directive] = ACTIONS(2368), + [anon_sym_LPAREN2] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym___extension__] = ACTIONS(2368), + [anon_sym_typedef] = ACTIONS(2368), + [anon_sym_extern] = ACTIONS(2368), + [anon_sym___attribute__] = ACTIONS(2368), + [anon_sym___attribute] = ACTIONS(2368), + [anon_sym_noreturn] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym___declspec] = ACTIONS(2368), + [anon_sym___cdecl] = ACTIONS(2368), + [anon_sym___clrcall] = ACTIONS(2368), + [anon_sym___stdcall] = ACTIONS(2368), + [anon_sym___fastcall] = ACTIONS(2368), + [anon_sym___thiscall] = ACTIONS(2368), + [anon_sym___vectorcall] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_signed] = ACTIONS(2368), + [anon_sym_unsigned] = ACTIONS(2368), + [anon_sym_long] = ACTIONS(2368), + [anon_sym_short] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_ATautoreleasepool] = ACTIONS(2370), + [anon_sym_auto] = ACTIONS(2368), + [anon_sym_register] = ACTIONS(2368), + [anon_sym_inline] = ACTIONS(2368), + [anon_sym___inline] = ACTIONS(2368), + [anon_sym___inline__] = ACTIONS(2368), + [anon_sym___forceinline] = ACTIONS(2368), + [anon_sym_thread_local] = ACTIONS(2368), + [anon_sym___thread] = ACTIONS(2368), + [anon_sym_CG_EXTERN] = ACTIONS(2368), + [anon_sym_CG_INLINE] = ACTIONS(2368), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2368), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2368), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2368), + [anon_sym_IBOutlet] = ACTIONS(2368), + [anon_sym_IBInspectable] = ACTIONS(2368), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2368), + [anon_sym_NS_INLINE] = ACTIONS(2368), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2368), + [anon_sym_OBJC_EXPORT] = ACTIONS(2368), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2368), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_constexpr] = ACTIONS(2368), + [anon_sym_volatile] = ACTIONS(2368), + [anon_sym_restrict] = ACTIONS(2368), + [anon_sym___restrict__] = ACTIONS(2368), + [anon_sym__Atomic] = ACTIONS(2368), + [anon_sym__Noreturn] = ACTIONS(2368), + [anon_sym__Nonnull] = ACTIONS(2368), + [anon_sym_nullable] = ACTIONS(2368), + [anon_sym__Complex] = ACTIONS(2368), + [anon_sym__Nullable] = ACTIONS(2368), + [anon_sym__Nullable_result] = ACTIONS(2368), + [anon_sym__Null_unspecified] = ACTIONS(2368), + [anon_sym___autoreleasing] = ACTIONS(2368), + [anon_sym___block] = ACTIONS(2368), + [anon_sym___bridge] = ACTIONS(2368), + [anon_sym___bridge_retained] = ACTIONS(2368), + [anon_sym___bridge_transfer] = ACTIONS(2368), + [anon_sym___complex] = ACTIONS(2368), + [anon_sym___const] = ACTIONS(2368), + [anon_sym___imag] = ACTIONS(2368), + [anon_sym___kindof] = ACTIONS(2368), + [anon_sym___nonnull] = ACTIONS(2368), + [anon_sym___nullable] = ACTIONS(2368), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2368), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2368), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2368), + [anon_sym___real] = ACTIONS(2368), + [anon_sym___strong] = ACTIONS(2368), + [anon_sym___unsafe_unretained] = ACTIONS(2368), + [anon_sym___unused] = ACTIONS(2368), + [anon_sym___weak] = ACTIONS(2368), + [anon_sym_alignas] = ACTIONS(2368), + [anon_sym__Alignas] = ACTIONS(2368), + [sym_primitive_type] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [anon_sym_struct] = ACTIONS(2368), + [anon_sym_union] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_in] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_goto] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_sizeof] = ACTIONS(2368), + [anon_sym___alignof__] = ACTIONS(2368), + [anon_sym___alignof] = ACTIONS(2368), + [anon_sym__alignof] = ACTIONS(2368), + [anon_sym_alignof] = ACTIONS(2368), + [anon_sym__Alignof] = ACTIONS(2368), + [anon_sym_offsetof] = ACTIONS(2368), + [anon_sym__Generic] = ACTIONS(2368), + [anon_sym_asm] = ACTIONS(2368), + [anon_sym___asm__] = ACTIONS(2368), + [anon_sym___asm] = ACTIONS(2368), + [sym_number_literal] = ACTIONS(2370), + [anon_sym_L_SQUOTE] = ACTIONS(2370), + [anon_sym_u_SQUOTE] = ACTIONS(2370), + [anon_sym_U_SQUOTE] = ACTIONS(2370), + [anon_sym_u8_SQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_L_DQUOTE] = ACTIONS(2370), + [anon_sym_u_DQUOTE] = ACTIONS(2370), + [anon_sym_U_DQUOTE] = ACTIONS(2370), + [anon_sym_u8_DQUOTE] = ACTIONS(2370), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [anon_sym_NULL] = ACTIONS(2368), + [anon_sym_nullptr] = ACTIONS(2368), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2368), + [anon_sym___typeof] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_ATimport] = ACTIONS(2370), + [aux_sym_preproc_undef_token1] = ACTIONS(2368), + [anon_sym_POUND] = ACTIONS(2368), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2368), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2368), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2368), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2368), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2368), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2368), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2368), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2368), + [anon_sym_NS_AVAILABLE] = ACTIONS(2368), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2368), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_API_AVAILABLE] = ACTIONS(2368), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_API_DEPRECATED] = ACTIONS(2368), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2368), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2368), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2368), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2368), + [anon_sym___deprecated_msg] = ACTIONS(2368), + [anon_sym___deprecated_enum_msg] = ACTIONS(2368), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2368), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2368), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2368), + [anon_sym_ATprotocol] = ACTIONS(2370), + [anon_sym_ATinterface] = ACTIONS(2370), + [anon_sym_ATimplementation] = ACTIONS(2370), + [anon_sym_ATcompatibility_alias] = ACTIONS(2370), + [anon_sym_ATtry] = ACTIONS(2370), + [anon_sym___try] = ACTIONS(2368), + [anon_sym_ATcatch] = ACTIONS(2370), + [anon_sym___catch] = ACTIONS(2368), + [anon_sym_ATfinally] = ACTIONS(2370), + [anon_sym___finally] = ACTIONS(2368), + [anon_sym_ATthrow] = ACTIONS(2370), + [anon_sym_ATselector] = ACTIONS(2370), + [anon_sym_ATavailable] = ACTIONS(2370), + [anon_sym___builtin_available] = ACTIONS(2368), + [anon_sym_va_arg] = ACTIONS(2368), + [anon_sym_ATencode] = ACTIONS(2370), + [anon_sym_ATsynchronized] = ACTIONS(2370), + [anon_sym_BOOL] = ACTIONS(2368), + [anon_sym_IMP] = ACTIONS(2368), + [anon_sym_SEL] = ACTIONS(2368), + [anon_sym_Class] = ACTIONS(2368), + [anon_sym_id] = ACTIONS(2368), + }, + [443] = { + [sym_identifier] = ACTIONS(2490), + [aux_sym_preproc_include_token1] = ACTIONS(2490), + [aux_sym_preproc_include_token2] = ACTIONS(2490), + [aux_sym_preproc_def_token1] = ACTIONS(2490), + [aux_sym_preproc_if_token1] = ACTIONS(2490), + [aux_sym_preproc_if_token2] = ACTIONS(2490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2490), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2490), + [aux_sym_preproc_else_token1] = ACTIONS(2490), + [aux_sym_preproc_elif_token1] = ACTIONS(2490), + [sym_preproc_directive] = ACTIONS(2490), + [anon_sym_LPAREN2] = ACTIONS(2492), + [anon_sym_BANG] = ACTIONS(2492), + [anon_sym_TILDE] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2490), + [anon_sym_PLUS] = ACTIONS(2490), + [anon_sym_STAR] = ACTIONS(2492), + [anon_sym_CARET] = ACTIONS(2492), + [anon_sym_AMP] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym___extension__] = ACTIONS(2490), + [anon_sym_typedef] = ACTIONS(2490), + [anon_sym_extern] = ACTIONS(2490), + [anon_sym___attribute__] = ACTIONS(2490), + [anon_sym___attribute] = ACTIONS(2490), + [anon_sym_noreturn] = ACTIONS(2490), + [anon_sym_LBRACK] = ACTIONS(2492), + [anon_sym___declspec] = ACTIONS(2490), + [anon_sym___cdecl] = ACTIONS(2490), + [anon_sym___clrcall] = ACTIONS(2490), + [anon_sym___stdcall] = ACTIONS(2490), + [anon_sym___fastcall] = ACTIONS(2490), + [anon_sym___thiscall] = ACTIONS(2490), + [anon_sym___vectorcall] = ACTIONS(2490), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_signed] = ACTIONS(2490), + [anon_sym_unsigned] = ACTIONS(2490), + [anon_sym_long] = ACTIONS(2490), + [anon_sym_short] = ACTIONS(2490), + [anon_sym_static] = ACTIONS(2490), + [anon_sym_ATautoreleasepool] = ACTIONS(2492), + [anon_sym_auto] = ACTIONS(2490), + [anon_sym_register] = ACTIONS(2490), + [anon_sym_inline] = ACTIONS(2490), + [anon_sym___inline] = ACTIONS(2490), + [anon_sym___inline__] = ACTIONS(2490), + [anon_sym___forceinline] = ACTIONS(2490), + [anon_sym_thread_local] = ACTIONS(2490), + [anon_sym___thread] = ACTIONS(2490), + [anon_sym_CG_EXTERN] = ACTIONS(2490), + [anon_sym_CG_INLINE] = ACTIONS(2490), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2490), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2490), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2490), + [anon_sym_IBOutlet] = ACTIONS(2490), + [anon_sym_IBInspectable] = ACTIONS(2490), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2490), + [anon_sym_NS_INLINE] = ACTIONS(2490), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2490), + [anon_sym_OBJC_EXPORT] = ACTIONS(2490), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2490), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(2490), + [anon_sym_constexpr] = ACTIONS(2490), + [anon_sym_volatile] = ACTIONS(2490), + [anon_sym_restrict] = ACTIONS(2490), + [anon_sym___restrict__] = ACTIONS(2490), + [anon_sym__Atomic] = ACTIONS(2490), + [anon_sym__Noreturn] = ACTIONS(2490), + [anon_sym__Nonnull] = ACTIONS(2490), + [anon_sym_nullable] = ACTIONS(2490), + [anon_sym__Complex] = ACTIONS(2490), + [anon_sym__Nullable] = ACTIONS(2490), + [anon_sym__Nullable_result] = ACTIONS(2490), + [anon_sym__Null_unspecified] = ACTIONS(2490), + [anon_sym___autoreleasing] = ACTIONS(2490), + [anon_sym___block] = ACTIONS(2490), + [anon_sym___bridge] = ACTIONS(2490), + [anon_sym___bridge_retained] = ACTIONS(2490), + [anon_sym___bridge_transfer] = ACTIONS(2490), + [anon_sym___complex] = ACTIONS(2490), + [anon_sym___const] = ACTIONS(2490), + [anon_sym___imag] = ACTIONS(2490), + [anon_sym___kindof] = ACTIONS(2490), + [anon_sym___nonnull] = ACTIONS(2490), + [anon_sym___nullable] = ACTIONS(2490), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2490), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2490), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2490), + [anon_sym___real] = ACTIONS(2490), + [anon_sym___strong] = ACTIONS(2490), + [anon_sym___unsafe_unretained] = ACTIONS(2490), + [anon_sym___unused] = ACTIONS(2490), + [anon_sym___weak] = ACTIONS(2490), + [anon_sym_alignas] = ACTIONS(2490), + [anon_sym__Alignas] = ACTIONS(2490), + [sym_primitive_type] = ACTIONS(2490), + [anon_sym_enum] = ACTIONS(2490), + [anon_sym_struct] = ACTIONS(2490), + [anon_sym_union] = ACTIONS(2490), + [anon_sym_if] = ACTIONS(2490), + [anon_sym_else] = ACTIONS(2490), + [anon_sym_switch] = ACTIONS(2490), + [anon_sym_case] = ACTIONS(2490), + [anon_sym_default] = ACTIONS(2490), + [anon_sym_while] = ACTIONS(2490), + [anon_sym_do] = ACTIONS(2490), + [anon_sym_for] = ACTIONS(2490), + [anon_sym_in] = ACTIONS(2490), + [anon_sym_return] = ACTIONS(2490), + [anon_sym_break] = ACTIONS(2490), + [anon_sym_continue] = ACTIONS(2490), + [anon_sym_goto] = ACTIONS(2490), + [anon_sym_DASH_DASH] = ACTIONS(2492), + [anon_sym_PLUS_PLUS] = ACTIONS(2492), + [anon_sym_sizeof] = ACTIONS(2490), + [anon_sym___alignof__] = ACTIONS(2490), + [anon_sym___alignof] = ACTIONS(2490), + [anon_sym__alignof] = ACTIONS(2490), + [anon_sym_alignof] = ACTIONS(2490), + [anon_sym__Alignof] = ACTIONS(2490), + [anon_sym_offsetof] = ACTIONS(2490), + [anon_sym__Generic] = ACTIONS(2490), + [anon_sym_asm] = ACTIONS(2490), + [anon_sym___asm__] = ACTIONS(2490), + [anon_sym___asm] = ACTIONS(2490), + [sym_number_literal] = ACTIONS(2492), + [anon_sym_L_SQUOTE] = ACTIONS(2492), + [anon_sym_u_SQUOTE] = ACTIONS(2492), + [anon_sym_U_SQUOTE] = ACTIONS(2492), + [anon_sym_u8_SQUOTE] = ACTIONS(2492), + [anon_sym_SQUOTE] = ACTIONS(2492), + [anon_sym_AT] = ACTIONS(2490), + [anon_sym_DQUOTE] = ACTIONS(2492), + [anon_sym_L_DQUOTE] = ACTIONS(2492), + [anon_sym_u_DQUOTE] = ACTIONS(2492), + [anon_sym_U_DQUOTE] = ACTIONS(2492), + [anon_sym_u8_DQUOTE] = ACTIONS(2492), + [sym_true] = ACTIONS(2490), + [sym_false] = ACTIONS(2490), + [anon_sym_NULL] = ACTIONS(2490), + [anon_sym_nullptr] = ACTIONS(2490), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2490), + [anon_sym___typeof] = ACTIONS(2490), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_ATimport] = ACTIONS(2492), + [aux_sym_preproc_undef_token1] = ACTIONS(2490), + [anon_sym_POUND] = ACTIONS(2490), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2490), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2490), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2490), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2490), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2490), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2490), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2490), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2490), + [anon_sym_NS_AVAILABLE] = ACTIONS(2490), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2490), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_API_AVAILABLE] = ACTIONS(2490), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_API_DEPRECATED] = ACTIONS(2490), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2490), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2490), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2490), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2490), + [anon_sym___deprecated_msg] = ACTIONS(2490), + [anon_sym___deprecated_enum_msg] = ACTIONS(2490), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2490), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2490), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2490), + [anon_sym_ATprotocol] = ACTIONS(2492), + [anon_sym_ATinterface] = ACTIONS(2492), + [anon_sym_ATimplementation] = ACTIONS(2492), + [anon_sym_ATcompatibility_alias] = ACTIONS(2492), + [anon_sym_ATsynthesize] = ACTIONS(2492), + [anon_sym_ATdynamic] = ACTIONS(2492), + [anon_sym_ATtry] = ACTIONS(2492), + [anon_sym___try] = ACTIONS(2490), + [anon_sym_ATthrow] = ACTIONS(2492), + [anon_sym_ATselector] = ACTIONS(2492), + [anon_sym_ATavailable] = ACTIONS(2492), + [anon_sym___builtin_available] = ACTIONS(2490), + [anon_sym_va_arg] = ACTIONS(2490), + [anon_sym_ATencode] = ACTIONS(2492), + [anon_sym_ATsynchronized] = ACTIONS(2492), + [anon_sym_BOOL] = ACTIONS(2490), + [anon_sym_IMP] = ACTIONS(2490), + [anon_sym_SEL] = ACTIONS(2490), + [anon_sym_Class] = ACTIONS(2490), + [anon_sym_id] = ACTIONS(2490), + }, + [444] = { + [sym_identifier] = ACTIONS(2840), + [aux_sym_preproc_include_token1] = ACTIONS(2840), + [aux_sym_preproc_include_token2] = ACTIONS(2840), + [aux_sym_preproc_def_token1] = ACTIONS(2840), + [aux_sym_preproc_if_token1] = ACTIONS(2840), + [aux_sym_preproc_if_token2] = ACTIONS(2840), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2840), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2840), + [aux_sym_preproc_else_token1] = ACTIONS(2840), + [aux_sym_preproc_elif_token1] = ACTIONS(2840), + [sym_preproc_directive] = ACTIONS(2840), + [anon_sym_LPAREN2] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(2842), + [anon_sym_TILDE] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2840), + [anon_sym_PLUS] = ACTIONS(2840), + [anon_sym_STAR] = ACTIONS(2842), + [anon_sym_CARET] = ACTIONS(2842), + [anon_sym_AMP] = ACTIONS(2842), + [anon_sym_SEMI] = ACTIONS(2842), + [anon_sym___extension__] = ACTIONS(2840), + [anon_sym_typedef] = ACTIONS(2840), + [anon_sym_extern] = ACTIONS(2840), + [anon_sym___attribute__] = ACTIONS(2840), + [anon_sym___attribute] = ACTIONS(2840), + [anon_sym_noreturn] = ACTIONS(2840), + [anon_sym_LBRACK] = ACTIONS(2842), + [anon_sym___declspec] = ACTIONS(2840), + [anon_sym___cdecl] = ACTIONS(2840), + [anon_sym___clrcall] = ACTIONS(2840), + [anon_sym___stdcall] = ACTIONS(2840), + [anon_sym___fastcall] = ACTIONS(2840), + [anon_sym___thiscall] = ACTIONS(2840), + [anon_sym___vectorcall] = ACTIONS(2840), + [anon_sym_LBRACE] = ACTIONS(2842), + [anon_sym_signed] = ACTIONS(2840), + [anon_sym_unsigned] = ACTIONS(2840), + [anon_sym_long] = ACTIONS(2840), + [anon_sym_short] = ACTIONS(2840), + [anon_sym_static] = ACTIONS(2840), + [anon_sym_ATautoreleasepool] = ACTIONS(2842), + [anon_sym_auto] = ACTIONS(2840), + [anon_sym_register] = ACTIONS(2840), + [anon_sym_inline] = ACTIONS(2840), + [anon_sym___inline] = ACTIONS(2840), + [anon_sym___inline__] = ACTIONS(2840), + [anon_sym___forceinline] = ACTIONS(2840), + [anon_sym_thread_local] = ACTIONS(2840), + [anon_sym___thread] = ACTIONS(2840), + [anon_sym_CG_EXTERN] = ACTIONS(2840), + [anon_sym_CG_INLINE] = ACTIONS(2840), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2840), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2840), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2840), + [anon_sym_IBOutlet] = ACTIONS(2840), + [anon_sym_IBInspectable] = ACTIONS(2840), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2840), + [anon_sym_NS_INLINE] = ACTIONS(2840), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2840), + [anon_sym_OBJC_EXPORT] = ACTIONS(2840), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2840), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2840), + [anon_sym_const] = ACTIONS(2840), + [anon_sym_constexpr] = ACTIONS(2840), + [anon_sym_volatile] = ACTIONS(2840), + [anon_sym_restrict] = ACTIONS(2840), + [anon_sym___restrict__] = ACTIONS(2840), + [anon_sym__Atomic] = ACTIONS(2840), + [anon_sym__Noreturn] = ACTIONS(2840), + [anon_sym__Nonnull] = ACTIONS(2840), + [anon_sym_nullable] = ACTIONS(2840), + [anon_sym__Complex] = ACTIONS(2840), + [anon_sym__Nullable] = ACTIONS(2840), + [anon_sym__Nullable_result] = ACTIONS(2840), + [anon_sym__Null_unspecified] = ACTIONS(2840), + [anon_sym___autoreleasing] = ACTIONS(2840), + [anon_sym___block] = ACTIONS(2840), + [anon_sym___bridge] = ACTIONS(2840), + [anon_sym___bridge_retained] = ACTIONS(2840), + [anon_sym___bridge_transfer] = ACTIONS(2840), + [anon_sym___complex] = ACTIONS(2840), + [anon_sym___const] = ACTIONS(2840), + [anon_sym___imag] = ACTIONS(2840), + [anon_sym___kindof] = ACTIONS(2840), + [anon_sym___nonnull] = ACTIONS(2840), + [anon_sym___nullable] = ACTIONS(2840), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2840), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2840), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2840), + [anon_sym___real] = ACTIONS(2840), + [anon_sym___strong] = ACTIONS(2840), + [anon_sym___unsafe_unretained] = ACTIONS(2840), + [anon_sym___unused] = ACTIONS(2840), + [anon_sym___weak] = ACTIONS(2840), + [anon_sym_alignas] = ACTIONS(2840), + [anon_sym__Alignas] = ACTIONS(2840), + [sym_primitive_type] = ACTIONS(2840), + [anon_sym_enum] = ACTIONS(2840), + [anon_sym_struct] = ACTIONS(2840), + [anon_sym_union] = ACTIONS(2840), + [anon_sym_if] = ACTIONS(2840), + [anon_sym_switch] = ACTIONS(2840), + [anon_sym_case] = ACTIONS(2840), + [anon_sym_default] = ACTIONS(2840), + [anon_sym_while] = ACTIONS(2840), + [anon_sym_do] = ACTIONS(2840), + [anon_sym_for] = ACTIONS(2840), + [anon_sym_in] = ACTIONS(2840), + [anon_sym_return] = ACTIONS(2840), + [anon_sym_break] = ACTIONS(2840), + [anon_sym_continue] = ACTIONS(2840), + [anon_sym_goto] = ACTIONS(2840), + [anon_sym_DASH_DASH] = ACTIONS(2842), + [anon_sym_PLUS_PLUS] = ACTIONS(2842), + [anon_sym_sizeof] = ACTIONS(2840), + [anon_sym___alignof__] = ACTIONS(2840), + [anon_sym___alignof] = ACTIONS(2840), + [anon_sym__alignof] = ACTIONS(2840), + [anon_sym_alignof] = ACTIONS(2840), + [anon_sym__Alignof] = ACTIONS(2840), + [anon_sym_offsetof] = ACTIONS(2840), + [anon_sym__Generic] = ACTIONS(2840), + [anon_sym_asm] = ACTIONS(2840), + [anon_sym___asm__] = ACTIONS(2840), + [anon_sym___asm] = ACTIONS(2840), + [sym_number_literal] = ACTIONS(2842), + [anon_sym_L_SQUOTE] = ACTIONS(2842), + [anon_sym_u_SQUOTE] = ACTIONS(2842), + [anon_sym_U_SQUOTE] = ACTIONS(2842), + [anon_sym_u8_SQUOTE] = ACTIONS(2842), + [anon_sym_SQUOTE] = ACTIONS(2842), + [anon_sym_AT] = ACTIONS(2840), + [anon_sym_DQUOTE] = ACTIONS(2842), + [anon_sym_L_DQUOTE] = ACTIONS(2842), + [anon_sym_u_DQUOTE] = ACTIONS(2842), + [anon_sym_U_DQUOTE] = ACTIONS(2842), + [anon_sym_u8_DQUOTE] = ACTIONS(2842), + [sym_true] = ACTIONS(2840), + [sym_false] = ACTIONS(2840), + [anon_sym_NULL] = ACTIONS(2840), + [anon_sym_nullptr] = ACTIONS(2840), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2840), + [anon_sym___typeof] = ACTIONS(2840), + [anon_sym_typeof] = ACTIONS(2840), + [anon_sym_ATimport] = ACTIONS(2842), + [aux_sym_preproc_undef_token1] = ACTIONS(2840), + [anon_sym_POUND] = ACTIONS(2840), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2840), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2840), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2840), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2840), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2840), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2840), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2840), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2840), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2840), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2840), + [anon_sym_NS_AVAILABLE] = ACTIONS(2840), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2840), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2840), + [anon_sym_API_AVAILABLE] = ACTIONS(2840), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2840), + [anon_sym_API_DEPRECATED] = ACTIONS(2840), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2840), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2840), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2840), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2840), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2840), + [anon_sym___deprecated_msg] = ACTIONS(2840), + [anon_sym___deprecated_enum_msg] = ACTIONS(2840), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2840), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2840), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2840), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2840), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2840), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2840), + [anon_sym_ATprotocol] = ACTIONS(2842), + [anon_sym_ATinterface] = ACTIONS(2842), + [anon_sym_ATimplementation] = ACTIONS(2842), + [anon_sym_ATcompatibility_alias] = ACTIONS(2842), + [anon_sym_ATsynthesize] = ACTIONS(2842), + [anon_sym_ATdynamic] = ACTIONS(2842), + [anon_sym_ATtry] = ACTIONS(2842), + [anon_sym___try] = ACTIONS(2840), + [anon_sym_ATthrow] = ACTIONS(2842), + [anon_sym_ATselector] = ACTIONS(2842), + [anon_sym_ATavailable] = ACTIONS(2842), + [anon_sym___builtin_available] = ACTIONS(2840), + [anon_sym_va_arg] = ACTIONS(2840), + [anon_sym_ATencode] = ACTIONS(2842), + [anon_sym_ATsynchronized] = ACTIONS(2842), + [anon_sym_BOOL] = ACTIONS(2840), + [anon_sym_IMP] = ACTIONS(2840), + [anon_sym_SEL] = ACTIONS(2840), + [anon_sym_Class] = ACTIONS(2840), + [anon_sym_id] = ACTIONS(2840), + }, + [445] = { + [sym_identifier] = ACTIONS(2648), + [aux_sym_preproc_include_token1] = ACTIONS(2648), + [aux_sym_preproc_include_token2] = ACTIONS(2648), + [aux_sym_preproc_def_token1] = ACTIONS(2648), + [aux_sym_preproc_if_token1] = ACTIONS(2648), + [aux_sym_preproc_if_token2] = ACTIONS(2648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2648), + [aux_sym_preproc_else_token1] = ACTIONS(2648), + [aux_sym_preproc_elif_token1] = ACTIONS(2648), + [sym_preproc_directive] = ACTIONS(2648), + [anon_sym_LPAREN2] = ACTIONS(2650), + [anon_sym_BANG] = ACTIONS(2650), + [anon_sym_TILDE] = ACTIONS(2650), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_PLUS] = ACTIONS(2648), + [anon_sym_STAR] = ACTIONS(2650), + [anon_sym_CARET] = ACTIONS(2650), + [anon_sym_AMP] = ACTIONS(2650), + [anon_sym_SEMI] = ACTIONS(2650), + [anon_sym___extension__] = ACTIONS(2648), + [anon_sym_typedef] = ACTIONS(2648), + [anon_sym_extern] = ACTIONS(2648), + [anon_sym___attribute__] = ACTIONS(2648), + [anon_sym___attribute] = ACTIONS(2648), + [anon_sym_noreturn] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(2650), + [anon_sym___declspec] = ACTIONS(2648), + [anon_sym___cdecl] = ACTIONS(2648), + [anon_sym___clrcall] = ACTIONS(2648), + [anon_sym___stdcall] = ACTIONS(2648), + [anon_sym___fastcall] = ACTIONS(2648), + [anon_sym___thiscall] = ACTIONS(2648), + [anon_sym___vectorcall] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2650), + [anon_sym_signed] = ACTIONS(2648), + [anon_sym_unsigned] = ACTIONS(2648), + [anon_sym_long] = ACTIONS(2648), + [anon_sym_short] = ACTIONS(2648), + [anon_sym_static] = ACTIONS(2648), + [anon_sym_ATautoreleasepool] = ACTIONS(2650), + [anon_sym_auto] = ACTIONS(2648), + [anon_sym_register] = ACTIONS(2648), + [anon_sym_inline] = ACTIONS(2648), + [anon_sym___inline] = ACTIONS(2648), + [anon_sym___inline__] = ACTIONS(2648), + [anon_sym___forceinline] = ACTIONS(2648), + [anon_sym_thread_local] = ACTIONS(2648), + [anon_sym___thread] = ACTIONS(2648), + [anon_sym_CG_EXTERN] = ACTIONS(2648), + [anon_sym_CG_INLINE] = ACTIONS(2648), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2648), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2648), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2648), + [anon_sym_IBOutlet] = ACTIONS(2648), + [anon_sym_IBInspectable] = ACTIONS(2648), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2648), + [anon_sym_NS_INLINE] = ACTIONS(2648), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2648), + [anon_sym_OBJC_EXPORT] = ACTIONS(2648), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2648), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2648), + [anon_sym_const] = ACTIONS(2648), + [anon_sym_constexpr] = ACTIONS(2648), + [anon_sym_volatile] = ACTIONS(2648), + [anon_sym_restrict] = ACTIONS(2648), + [anon_sym___restrict__] = ACTIONS(2648), + [anon_sym__Atomic] = ACTIONS(2648), + [anon_sym__Noreturn] = ACTIONS(2648), + [anon_sym__Nonnull] = ACTIONS(2648), + [anon_sym_nullable] = ACTIONS(2648), + [anon_sym__Complex] = ACTIONS(2648), + [anon_sym__Nullable] = ACTIONS(2648), + [anon_sym__Nullable_result] = ACTIONS(2648), + [anon_sym__Null_unspecified] = ACTIONS(2648), + [anon_sym___autoreleasing] = ACTIONS(2648), + [anon_sym___block] = ACTIONS(2648), + [anon_sym___bridge] = ACTIONS(2648), + [anon_sym___bridge_retained] = ACTIONS(2648), + [anon_sym___bridge_transfer] = ACTIONS(2648), + [anon_sym___complex] = ACTIONS(2648), + [anon_sym___const] = ACTIONS(2648), + [anon_sym___imag] = ACTIONS(2648), + [anon_sym___kindof] = ACTIONS(2648), + [anon_sym___nonnull] = ACTIONS(2648), + [anon_sym___nullable] = ACTIONS(2648), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2648), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2648), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2648), + [anon_sym___real] = ACTIONS(2648), + [anon_sym___strong] = ACTIONS(2648), + [anon_sym___unsafe_unretained] = ACTIONS(2648), + [anon_sym___unused] = ACTIONS(2648), + [anon_sym___weak] = ACTIONS(2648), + [anon_sym_alignas] = ACTIONS(2648), + [anon_sym__Alignas] = ACTIONS(2648), + [sym_primitive_type] = ACTIONS(2648), + [anon_sym_enum] = ACTIONS(2648), + [anon_sym_struct] = ACTIONS(2648), + [anon_sym_union] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2648), + [anon_sym_switch] = ACTIONS(2648), + [anon_sym_case] = ACTIONS(2648), + [anon_sym_default] = ACTIONS(2648), + [anon_sym_while] = ACTIONS(2648), + [anon_sym_do] = ACTIONS(2648), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_in] = ACTIONS(2648), + [anon_sym_return] = ACTIONS(2648), + [anon_sym_break] = ACTIONS(2648), + [anon_sym_continue] = ACTIONS(2648), + [anon_sym_goto] = ACTIONS(2648), + [anon_sym_DASH_DASH] = ACTIONS(2650), + [anon_sym_PLUS_PLUS] = ACTIONS(2650), + [anon_sym_sizeof] = ACTIONS(2648), + [anon_sym___alignof__] = ACTIONS(2648), + [anon_sym___alignof] = ACTIONS(2648), + [anon_sym__alignof] = ACTIONS(2648), + [anon_sym_alignof] = ACTIONS(2648), + [anon_sym__Alignof] = ACTIONS(2648), + [anon_sym_offsetof] = ACTIONS(2648), + [anon_sym__Generic] = ACTIONS(2648), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [anon_sym___asm] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2650), + [anon_sym_u_SQUOTE] = ACTIONS(2650), + [anon_sym_U_SQUOTE] = ACTIONS(2650), + [anon_sym_u8_SQUOTE] = ACTIONS(2650), + [anon_sym_SQUOTE] = ACTIONS(2650), + [anon_sym_AT] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(2650), + [anon_sym_L_DQUOTE] = ACTIONS(2650), + [anon_sym_u_DQUOTE] = ACTIONS(2650), + [anon_sym_U_DQUOTE] = ACTIONS(2650), + [anon_sym_u8_DQUOTE] = ACTIONS(2650), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2648), + [anon_sym_nullptr] = ACTIONS(2648), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2648), + [anon_sym___typeof] = ACTIONS(2648), + [anon_sym_typeof] = ACTIONS(2648), + [anon_sym_ATimport] = ACTIONS(2650), + [aux_sym_preproc_undef_token1] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(2648), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2648), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2648), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2648), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2648), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2648), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2648), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2648), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2648), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2648), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2648), + [anon_sym_NS_AVAILABLE] = ACTIONS(2648), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2648), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2648), + [anon_sym_API_AVAILABLE] = ACTIONS(2648), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2648), + [anon_sym_API_DEPRECATED] = ACTIONS(2648), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2648), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2648), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2648), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2648), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2648), + [anon_sym___deprecated_msg] = ACTIONS(2648), + [anon_sym___deprecated_enum_msg] = ACTIONS(2648), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2648), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2648), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2648), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2648), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2648), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2648), + [anon_sym_ATprotocol] = ACTIONS(2650), + [anon_sym_ATinterface] = ACTIONS(2650), + [anon_sym_ATimplementation] = ACTIONS(2650), + [anon_sym_ATcompatibility_alias] = ACTIONS(2650), + [anon_sym_ATsynthesize] = ACTIONS(2650), + [anon_sym_ATdynamic] = ACTIONS(2650), + [anon_sym_ATtry] = ACTIONS(2650), + [anon_sym___try] = ACTIONS(2648), + [anon_sym_ATthrow] = ACTIONS(2650), + [anon_sym_ATselector] = ACTIONS(2650), + [anon_sym_ATavailable] = ACTIONS(2650), + [anon_sym___builtin_available] = ACTIONS(2648), + [anon_sym_va_arg] = ACTIONS(2648), + [anon_sym_ATencode] = ACTIONS(2650), + [anon_sym_ATsynchronized] = ACTIONS(2650), + [anon_sym_BOOL] = ACTIONS(2648), + [anon_sym_IMP] = ACTIONS(2648), + [anon_sym_SEL] = ACTIONS(2648), + [anon_sym_Class] = ACTIONS(2648), + [anon_sym_id] = ACTIONS(2648), + }, + [446] = { + [sym_identifier] = ACTIONS(2712), + [aux_sym_preproc_include_token1] = ACTIONS(2712), + [aux_sym_preproc_include_token2] = ACTIONS(2712), + [aux_sym_preproc_def_token1] = ACTIONS(2712), + [aux_sym_preproc_if_token1] = ACTIONS(2712), + [aux_sym_preproc_if_token2] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2712), + [aux_sym_preproc_else_token1] = ACTIONS(2712), + [aux_sym_preproc_elif_token1] = ACTIONS(2712), + [sym_preproc_directive] = ACTIONS(2712), + [anon_sym_LPAREN2] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_PLUS] = ACTIONS(2712), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_CARET] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym___extension__] = ACTIONS(2712), + [anon_sym_typedef] = ACTIONS(2712), + [anon_sym_extern] = ACTIONS(2712), + [anon_sym___attribute__] = ACTIONS(2712), + [anon_sym___attribute] = ACTIONS(2712), + [anon_sym_noreturn] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym___declspec] = ACTIONS(2712), + [anon_sym___cdecl] = ACTIONS(2712), + [anon_sym___clrcall] = ACTIONS(2712), + [anon_sym___stdcall] = ACTIONS(2712), + [anon_sym___fastcall] = ACTIONS(2712), + [anon_sym___thiscall] = ACTIONS(2712), + [anon_sym___vectorcall] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_signed] = ACTIONS(2712), + [anon_sym_unsigned] = ACTIONS(2712), + [anon_sym_long] = ACTIONS(2712), + [anon_sym_short] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2712), + [anon_sym_ATautoreleasepool] = ACTIONS(2714), + [anon_sym_auto] = ACTIONS(2712), + [anon_sym_register] = ACTIONS(2712), + [anon_sym_inline] = ACTIONS(2712), + [anon_sym___inline] = ACTIONS(2712), + [anon_sym___inline__] = ACTIONS(2712), + [anon_sym___forceinline] = ACTIONS(2712), + [anon_sym_thread_local] = ACTIONS(2712), + [anon_sym___thread] = ACTIONS(2712), + [anon_sym_CG_EXTERN] = ACTIONS(2712), + [anon_sym_CG_INLINE] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2712), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2712), + [anon_sym_IBOutlet] = ACTIONS(2712), + [anon_sym_IBInspectable] = ACTIONS(2712), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2712), + [anon_sym_NS_INLINE] = ACTIONS(2712), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2712), + [anon_sym_OBJC_EXPORT] = ACTIONS(2712), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2712), + [anon_sym_const] = ACTIONS(2712), + [anon_sym_constexpr] = ACTIONS(2712), + [anon_sym_volatile] = ACTIONS(2712), + [anon_sym_restrict] = ACTIONS(2712), + [anon_sym___restrict__] = ACTIONS(2712), + [anon_sym__Atomic] = ACTIONS(2712), + [anon_sym__Noreturn] = ACTIONS(2712), + [anon_sym__Nonnull] = ACTIONS(2712), + [anon_sym_nullable] = ACTIONS(2712), + [anon_sym__Complex] = ACTIONS(2712), + [anon_sym__Nullable] = ACTIONS(2712), + [anon_sym__Nullable_result] = ACTIONS(2712), + [anon_sym__Null_unspecified] = ACTIONS(2712), + [anon_sym___autoreleasing] = ACTIONS(2712), + [anon_sym___block] = ACTIONS(2712), + [anon_sym___bridge] = ACTIONS(2712), + [anon_sym___bridge_retained] = ACTIONS(2712), + [anon_sym___bridge_transfer] = ACTIONS(2712), + [anon_sym___complex] = ACTIONS(2712), + [anon_sym___const] = ACTIONS(2712), + [anon_sym___imag] = ACTIONS(2712), + [anon_sym___kindof] = ACTIONS(2712), + [anon_sym___nonnull] = ACTIONS(2712), + [anon_sym___nullable] = ACTIONS(2712), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2712), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2712), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2712), + [anon_sym___real] = ACTIONS(2712), + [anon_sym___strong] = ACTIONS(2712), + [anon_sym___unsafe_unretained] = ACTIONS(2712), + [anon_sym___unused] = ACTIONS(2712), + [anon_sym___weak] = ACTIONS(2712), + [anon_sym_alignas] = ACTIONS(2712), + [anon_sym__Alignas] = ACTIONS(2712), + [sym_primitive_type] = ACTIONS(2712), + [anon_sym_enum] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_union] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_switch] = ACTIONS(2712), + [anon_sym_case] = ACTIONS(2712), + [anon_sym_default] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_do] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_goto] = ACTIONS(2712), + [anon_sym_DASH_DASH] = ACTIONS(2714), + [anon_sym_PLUS_PLUS] = ACTIONS(2714), + [anon_sym_sizeof] = ACTIONS(2712), + [anon_sym___alignof__] = ACTIONS(2712), + [anon_sym___alignof] = ACTIONS(2712), + [anon_sym__alignof] = ACTIONS(2712), + [anon_sym_alignof] = ACTIONS(2712), + [anon_sym__Alignof] = ACTIONS(2712), + [anon_sym_offsetof] = ACTIONS(2712), + [anon_sym__Generic] = ACTIONS(2712), + [anon_sym_asm] = ACTIONS(2712), + [anon_sym___asm__] = ACTIONS(2712), + [anon_sym___asm] = ACTIONS(2712), + [sym_number_literal] = ACTIONS(2714), + [anon_sym_L_SQUOTE] = ACTIONS(2714), + [anon_sym_u_SQUOTE] = ACTIONS(2714), + [anon_sym_U_SQUOTE] = ACTIONS(2714), + [anon_sym_u8_SQUOTE] = ACTIONS(2714), + [anon_sym_SQUOTE] = ACTIONS(2714), + [anon_sym_AT] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2714), + [anon_sym_L_DQUOTE] = ACTIONS(2714), + [anon_sym_u_DQUOTE] = ACTIONS(2714), + [anon_sym_U_DQUOTE] = ACTIONS(2714), + [anon_sym_u8_DQUOTE] = ACTIONS(2714), + [sym_true] = ACTIONS(2712), + [sym_false] = ACTIONS(2712), + [anon_sym_NULL] = ACTIONS(2712), + [anon_sym_nullptr] = ACTIONS(2712), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2712), + [anon_sym___typeof] = ACTIONS(2712), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_ATimport] = ACTIONS(2714), + [aux_sym_preproc_undef_token1] = ACTIONS(2712), + [anon_sym_POUND] = ACTIONS(2712), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2712), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2712), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2712), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2712), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE] = ACTIONS(2712), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_API_AVAILABLE] = ACTIONS(2712), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_API_DEPRECATED] = ACTIONS(2712), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2712), + [anon_sym___deprecated_msg] = ACTIONS(2712), + [anon_sym___deprecated_enum_msg] = ACTIONS(2712), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2712), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2712), + [anon_sym_ATprotocol] = ACTIONS(2714), + [anon_sym_ATinterface] = ACTIONS(2714), + [anon_sym_ATimplementation] = ACTIONS(2714), + [anon_sym_ATcompatibility_alias] = ACTIONS(2714), + [anon_sym_ATsynthesize] = ACTIONS(2714), + [anon_sym_ATdynamic] = ACTIONS(2714), + [anon_sym_ATtry] = ACTIONS(2714), + [anon_sym___try] = ACTIONS(2712), + [anon_sym_ATthrow] = ACTIONS(2714), + [anon_sym_ATselector] = ACTIONS(2714), + [anon_sym_ATavailable] = ACTIONS(2714), + [anon_sym___builtin_available] = ACTIONS(2712), + [anon_sym_va_arg] = ACTIONS(2712), + [anon_sym_ATencode] = ACTIONS(2714), + [anon_sym_ATsynchronized] = ACTIONS(2714), + [anon_sym_BOOL] = ACTIONS(2712), + [anon_sym_IMP] = ACTIONS(2712), + [anon_sym_SEL] = ACTIONS(2712), + [anon_sym_Class] = ACTIONS(2712), + [anon_sym_id] = ACTIONS(2712), + }, + [447] = { + [sym_catch_clause] = STATE(558), + [sym_finally_clause] = STATE(934), + [aux_sym_try_statement_repeat1] = STATE(558), + [ts_builtin_sym_end] = ACTIONS(2296), + [sym_identifier] = ACTIONS(2294), + [aux_sym_preproc_include_token1] = ACTIONS(2294), + [aux_sym_preproc_include_token2] = ACTIONS(2294), + [aux_sym_preproc_def_token1] = ACTIONS(2294), + [aux_sym_preproc_if_token1] = ACTIONS(2294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2294), + [sym_preproc_directive] = ACTIONS(2294), + [anon_sym_LPAREN2] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_STAR] = ACTIONS(2296), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym___extension__] = ACTIONS(2294), + [anon_sym_typedef] = ACTIONS(2294), + [anon_sym_extern] = ACTIONS(2294), + [anon_sym___attribute__] = ACTIONS(2294), + [anon_sym___attribute] = ACTIONS(2294), + [anon_sym_noreturn] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym___declspec] = ACTIONS(2294), + [anon_sym___cdecl] = ACTIONS(2294), + [anon_sym___clrcall] = ACTIONS(2294), + [anon_sym___stdcall] = ACTIONS(2294), + [anon_sym___fastcall] = ACTIONS(2294), + [anon_sym___thiscall] = ACTIONS(2294), + [anon_sym___vectorcall] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_signed] = ACTIONS(2294), + [anon_sym_unsigned] = ACTIONS(2294), + [anon_sym_long] = ACTIONS(2294), + [anon_sym_short] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_ATautoreleasepool] = ACTIONS(2296), + [anon_sym_auto] = ACTIONS(2294), + [anon_sym_register] = ACTIONS(2294), + [anon_sym_inline] = ACTIONS(2294), + [anon_sym___inline] = ACTIONS(2294), + [anon_sym___inline__] = ACTIONS(2294), + [anon_sym___forceinline] = ACTIONS(2294), + [anon_sym_thread_local] = ACTIONS(2294), + [anon_sym___thread] = ACTIONS(2294), + [anon_sym_CG_EXTERN] = ACTIONS(2294), + [anon_sym_CG_INLINE] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2294), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2294), + [anon_sym_IBOutlet] = ACTIONS(2294), + [anon_sym_IBInspectable] = ACTIONS(2294), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2294), + [anon_sym_NS_INLINE] = ACTIONS(2294), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2294), + [anon_sym_OBJC_EXPORT] = ACTIONS(2294), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [anon_sym_constexpr] = ACTIONS(2294), + [anon_sym_volatile] = ACTIONS(2294), + [anon_sym_restrict] = ACTIONS(2294), + [anon_sym___restrict__] = ACTIONS(2294), + [anon_sym__Atomic] = ACTIONS(2294), + [anon_sym__Noreturn] = ACTIONS(2294), + [anon_sym__Nonnull] = ACTIONS(2294), + [anon_sym_nullable] = ACTIONS(2294), + [anon_sym__Complex] = ACTIONS(2294), + [anon_sym__Nullable] = ACTIONS(2294), + [anon_sym__Nullable_result] = ACTIONS(2294), + [anon_sym__Null_unspecified] = ACTIONS(2294), + [anon_sym___autoreleasing] = ACTIONS(2294), + [anon_sym___block] = ACTIONS(2294), + [anon_sym___bridge] = ACTIONS(2294), + [anon_sym___bridge_retained] = ACTIONS(2294), + [anon_sym___bridge_transfer] = ACTIONS(2294), + [anon_sym___complex] = ACTIONS(2294), + [anon_sym___const] = ACTIONS(2294), + [anon_sym___imag] = ACTIONS(2294), + [anon_sym___kindof] = ACTIONS(2294), + [anon_sym___nonnull] = ACTIONS(2294), + [anon_sym___nullable] = ACTIONS(2294), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2294), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2294), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2294), + [anon_sym___real] = ACTIONS(2294), + [anon_sym___strong] = ACTIONS(2294), + [anon_sym___unsafe_unretained] = ACTIONS(2294), + [anon_sym___unused] = ACTIONS(2294), + [anon_sym___weak] = ACTIONS(2294), + [anon_sym_alignas] = ACTIONS(2294), + [anon_sym__Alignas] = ACTIONS(2294), + [sym_primitive_type] = ACTIONS(2294), + [anon_sym_enum] = ACTIONS(2294), + [anon_sym_struct] = ACTIONS(2294), + [anon_sym_union] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_switch] = ACTIONS(2294), + [anon_sym_case] = ACTIONS(2294), + [anon_sym_default] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_goto] = ACTIONS(2294), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_sizeof] = ACTIONS(2294), + [anon_sym___alignof__] = ACTIONS(2294), + [anon_sym___alignof] = ACTIONS(2294), + [anon_sym__alignof] = ACTIONS(2294), + [anon_sym_alignof] = ACTIONS(2294), + [anon_sym__Alignof] = ACTIONS(2294), + [anon_sym_offsetof] = ACTIONS(2294), + [anon_sym__Generic] = ACTIONS(2294), + [anon_sym_asm] = ACTIONS(2294), + [anon_sym___asm__] = ACTIONS(2294), + [anon_sym___asm] = ACTIONS(2294), + [sym_number_literal] = ACTIONS(2296), + [anon_sym_L_SQUOTE] = ACTIONS(2296), + [anon_sym_u_SQUOTE] = ACTIONS(2296), + [anon_sym_U_SQUOTE] = ACTIONS(2296), + [anon_sym_u8_SQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_L_DQUOTE] = ACTIONS(2296), + [anon_sym_u_DQUOTE] = ACTIONS(2296), + [anon_sym_U_DQUOTE] = ACTIONS(2296), + [anon_sym_u8_DQUOTE] = ACTIONS(2296), + [sym_true] = ACTIONS(2294), + [sym_false] = ACTIONS(2294), + [anon_sym_NULL] = ACTIONS(2294), + [anon_sym_nullptr] = ACTIONS(2294), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2294), + [anon_sym___typeof] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(2294), + [anon_sym_ATimport] = ACTIONS(2296), + [aux_sym_preproc_undef_token1] = ACTIONS(2294), + [anon_sym_POUND] = ACTIONS(2294), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2294), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2294), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2294), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2294), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE] = ACTIONS(2294), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_API_AVAILABLE] = ACTIONS(2294), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_API_DEPRECATED] = ACTIONS(2294), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2294), + [anon_sym___deprecated_msg] = ACTIONS(2294), + [anon_sym___deprecated_enum_msg] = ACTIONS(2294), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2294), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2294), + [anon_sym_ATprotocol] = ACTIONS(2296), + [anon_sym_ATinterface] = ACTIONS(2296), + [anon_sym_ATimplementation] = ACTIONS(2296), + [anon_sym_ATcompatibility_alias] = ACTIONS(2296), + [anon_sym_ATcatch] = ACTIONS(2876), + [anon_sym___catch] = ACTIONS(2878), + [anon_sym_ATfinally] = ACTIONS(2880), + [anon_sym___finally] = ACTIONS(2882), + [anon_sym_ATselector] = ACTIONS(2296), + [anon_sym_ATavailable] = ACTIONS(2296), + [anon_sym___builtin_available] = ACTIONS(2294), + [anon_sym_va_arg] = ACTIONS(2294), + [anon_sym_ATencode] = ACTIONS(2296), + [anon_sym_BOOL] = ACTIONS(2294), + [anon_sym_IMP] = ACTIONS(2294), + [anon_sym_SEL] = ACTIONS(2294), + [anon_sym_Class] = ACTIONS(2294), + [anon_sym_id] = ACTIONS(2294), + }, + [448] = { + [sym_identifier] = ACTIONS(2684), + [aux_sym_preproc_include_token1] = ACTIONS(2684), + [aux_sym_preproc_include_token2] = ACTIONS(2684), + [aux_sym_preproc_def_token1] = ACTIONS(2684), + [aux_sym_preproc_if_token1] = ACTIONS(2684), + [aux_sym_preproc_if_token2] = ACTIONS(2684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2684), + [aux_sym_preproc_else_token1] = ACTIONS(2684), + [aux_sym_preproc_elif_token1] = ACTIONS(2684), + [sym_preproc_directive] = ACTIONS(2684), + [anon_sym_LPAREN2] = ACTIONS(2686), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_CARET] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_SEMI] = ACTIONS(2686), + [anon_sym___extension__] = ACTIONS(2684), + [anon_sym_typedef] = ACTIONS(2684), + [anon_sym_extern] = ACTIONS(2684), + [anon_sym___attribute__] = ACTIONS(2684), + [anon_sym___attribute] = ACTIONS(2684), + [anon_sym_noreturn] = ACTIONS(2684), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym___declspec] = ACTIONS(2684), + [anon_sym___cdecl] = ACTIONS(2684), + [anon_sym___clrcall] = ACTIONS(2684), + [anon_sym___stdcall] = ACTIONS(2684), + [anon_sym___fastcall] = ACTIONS(2684), + [anon_sym___thiscall] = ACTIONS(2684), + [anon_sym___vectorcall] = ACTIONS(2684), + [anon_sym_LBRACE] = ACTIONS(2686), + [anon_sym_signed] = ACTIONS(2684), + [anon_sym_unsigned] = ACTIONS(2684), + [anon_sym_long] = ACTIONS(2684), + [anon_sym_short] = ACTIONS(2684), + [anon_sym_static] = ACTIONS(2684), + [anon_sym_ATautoreleasepool] = ACTIONS(2686), + [anon_sym_auto] = ACTIONS(2684), + [anon_sym_register] = ACTIONS(2684), + [anon_sym_inline] = ACTIONS(2684), + [anon_sym___inline] = ACTIONS(2684), + [anon_sym___inline__] = ACTIONS(2684), + [anon_sym___forceinline] = ACTIONS(2684), + [anon_sym_thread_local] = ACTIONS(2684), + [anon_sym___thread] = ACTIONS(2684), + [anon_sym_CG_EXTERN] = ACTIONS(2684), + [anon_sym_CG_INLINE] = ACTIONS(2684), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2684), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2684), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2684), + [anon_sym_IBOutlet] = ACTIONS(2684), + [anon_sym_IBInspectable] = ACTIONS(2684), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2684), + [anon_sym_NS_INLINE] = ACTIONS(2684), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2684), + [anon_sym_OBJC_EXPORT] = ACTIONS(2684), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2684), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2684), + [anon_sym_const] = ACTIONS(2684), + [anon_sym_constexpr] = ACTIONS(2684), + [anon_sym_volatile] = ACTIONS(2684), + [anon_sym_restrict] = ACTIONS(2684), + [anon_sym___restrict__] = ACTIONS(2684), + [anon_sym__Atomic] = ACTIONS(2684), + [anon_sym__Noreturn] = ACTIONS(2684), + [anon_sym__Nonnull] = ACTIONS(2684), + [anon_sym_nullable] = ACTIONS(2684), + [anon_sym__Complex] = ACTIONS(2684), + [anon_sym__Nullable] = ACTIONS(2684), + [anon_sym__Nullable_result] = ACTIONS(2684), + [anon_sym__Null_unspecified] = ACTIONS(2684), + [anon_sym___autoreleasing] = ACTIONS(2684), + [anon_sym___block] = ACTIONS(2684), + [anon_sym___bridge] = ACTIONS(2684), + [anon_sym___bridge_retained] = ACTIONS(2684), + [anon_sym___bridge_transfer] = ACTIONS(2684), + [anon_sym___complex] = ACTIONS(2684), + [anon_sym___const] = ACTIONS(2684), + [anon_sym___imag] = ACTIONS(2684), + [anon_sym___kindof] = ACTIONS(2684), + [anon_sym___nonnull] = ACTIONS(2684), + [anon_sym___nullable] = ACTIONS(2684), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2684), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2684), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2684), + [anon_sym___real] = ACTIONS(2684), + [anon_sym___strong] = ACTIONS(2684), + [anon_sym___unsafe_unretained] = ACTIONS(2684), + [anon_sym___unused] = ACTIONS(2684), + [anon_sym___weak] = ACTIONS(2684), + [anon_sym_alignas] = ACTIONS(2684), + [anon_sym__Alignas] = ACTIONS(2684), + [sym_primitive_type] = ACTIONS(2684), + [anon_sym_enum] = ACTIONS(2684), + [anon_sym_struct] = ACTIONS(2684), + [anon_sym_union] = ACTIONS(2684), + [anon_sym_if] = ACTIONS(2684), + [anon_sym_switch] = ACTIONS(2684), + [anon_sym_case] = ACTIONS(2684), + [anon_sym_default] = ACTIONS(2684), + [anon_sym_while] = ACTIONS(2684), + [anon_sym_do] = ACTIONS(2684), + [anon_sym_for] = ACTIONS(2684), + [anon_sym_in] = ACTIONS(2684), + [anon_sym_return] = ACTIONS(2684), + [anon_sym_break] = ACTIONS(2684), + [anon_sym_continue] = ACTIONS(2684), + [anon_sym_goto] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(2686), + [anon_sym_PLUS_PLUS] = ACTIONS(2686), + [anon_sym_sizeof] = ACTIONS(2684), + [anon_sym___alignof__] = ACTIONS(2684), + [anon_sym___alignof] = ACTIONS(2684), + [anon_sym__alignof] = ACTIONS(2684), + [anon_sym_alignof] = ACTIONS(2684), + [anon_sym__Alignof] = ACTIONS(2684), + [anon_sym_offsetof] = ACTIONS(2684), + [anon_sym__Generic] = ACTIONS(2684), + [anon_sym_asm] = ACTIONS(2684), + [anon_sym___asm__] = ACTIONS(2684), + [anon_sym___asm] = ACTIONS(2684), + [sym_number_literal] = ACTIONS(2686), + [anon_sym_L_SQUOTE] = ACTIONS(2686), + [anon_sym_u_SQUOTE] = ACTIONS(2686), + [anon_sym_U_SQUOTE] = ACTIONS(2686), + [anon_sym_u8_SQUOTE] = ACTIONS(2686), + [anon_sym_SQUOTE] = ACTIONS(2686), + [anon_sym_AT] = ACTIONS(2684), + [anon_sym_DQUOTE] = ACTIONS(2686), + [anon_sym_L_DQUOTE] = ACTIONS(2686), + [anon_sym_u_DQUOTE] = ACTIONS(2686), + [anon_sym_U_DQUOTE] = ACTIONS(2686), + [anon_sym_u8_DQUOTE] = ACTIONS(2686), + [sym_true] = ACTIONS(2684), + [sym_false] = ACTIONS(2684), + [anon_sym_NULL] = ACTIONS(2684), + [anon_sym_nullptr] = ACTIONS(2684), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2684), + [anon_sym___typeof] = ACTIONS(2684), + [anon_sym_typeof] = ACTIONS(2684), + [anon_sym_ATimport] = ACTIONS(2686), + [aux_sym_preproc_undef_token1] = ACTIONS(2684), + [anon_sym_POUND] = ACTIONS(2684), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2684), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2684), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2684), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2684), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2684), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2684), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2684), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2684), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2684), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2684), + [anon_sym_NS_AVAILABLE] = ACTIONS(2684), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2684), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2684), + [anon_sym_API_AVAILABLE] = ACTIONS(2684), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2684), + [anon_sym_API_DEPRECATED] = ACTIONS(2684), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2684), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2684), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2684), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2684), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2684), + [anon_sym___deprecated_msg] = ACTIONS(2684), + [anon_sym___deprecated_enum_msg] = ACTIONS(2684), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2684), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2684), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2684), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2684), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2684), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2684), + [anon_sym_ATprotocol] = ACTIONS(2686), + [anon_sym_ATinterface] = ACTIONS(2686), + [anon_sym_ATimplementation] = ACTIONS(2686), + [anon_sym_ATcompatibility_alias] = ACTIONS(2686), + [anon_sym_ATsynthesize] = ACTIONS(2686), + [anon_sym_ATdynamic] = ACTIONS(2686), + [anon_sym_ATtry] = ACTIONS(2686), + [anon_sym___try] = ACTIONS(2684), + [anon_sym_ATthrow] = ACTIONS(2686), + [anon_sym_ATselector] = ACTIONS(2686), + [anon_sym_ATavailable] = ACTIONS(2686), + [anon_sym___builtin_available] = ACTIONS(2684), + [anon_sym_va_arg] = ACTIONS(2684), + [anon_sym_ATencode] = ACTIONS(2686), + [anon_sym_ATsynchronized] = ACTIONS(2686), + [anon_sym_BOOL] = ACTIONS(2684), + [anon_sym_IMP] = ACTIONS(2684), + [anon_sym_SEL] = ACTIONS(2684), + [anon_sym_Class] = ACTIONS(2684), + [anon_sym_id] = ACTIONS(2684), + }, + [449] = { + [sym_identifier] = ACTIONS(2856), + [aux_sym_preproc_include_token1] = ACTIONS(2856), + [aux_sym_preproc_include_token2] = ACTIONS(2856), + [aux_sym_preproc_def_token1] = ACTIONS(2856), + [aux_sym_preproc_if_token1] = ACTIONS(2856), + [aux_sym_preproc_if_token2] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2856), + [aux_sym_preproc_else_token1] = ACTIONS(2856), + [aux_sym_preproc_elif_token1] = ACTIONS(2856), + [sym_preproc_directive] = ACTIONS(2856), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_CARET] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2858), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym___extension__] = ACTIONS(2856), + [anon_sym_typedef] = ACTIONS(2856), + [anon_sym_extern] = ACTIONS(2856), + [anon_sym___attribute__] = ACTIONS(2856), + [anon_sym___attribute] = ACTIONS(2856), + [anon_sym_noreturn] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2858), + [anon_sym___declspec] = ACTIONS(2856), + [anon_sym___cdecl] = ACTIONS(2856), + [anon_sym___clrcall] = ACTIONS(2856), + [anon_sym___stdcall] = ACTIONS(2856), + [anon_sym___fastcall] = ACTIONS(2856), + [anon_sym___thiscall] = ACTIONS(2856), + [anon_sym___vectorcall] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_signed] = ACTIONS(2856), + [anon_sym_unsigned] = ACTIONS(2856), + [anon_sym_long] = ACTIONS(2856), + [anon_sym_short] = ACTIONS(2856), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_ATautoreleasepool] = ACTIONS(2858), + [anon_sym_auto] = ACTIONS(2856), + [anon_sym_register] = ACTIONS(2856), + [anon_sym_inline] = ACTIONS(2856), + [anon_sym___inline] = ACTIONS(2856), + [anon_sym___inline__] = ACTIONS(2856), + [anon_sym___forceinline] = ACTIONS(2856), + [anon_sym_thread_local] = ACTIONS(2856), + [anon_sym___thread] = ACTIONS(2856), + [anon_sym_CG_EXTERN] = ACTIONS(2856), + [anon_sym_CG_INLINE] = ACTIONS(2856), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2856), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2856), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2856), + [anon_sym_IBOutlet] = ACTIONS(2856), + [anon_sym_IBInspectable] = ACTIONS(2856), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2856), + [anon_sym_NS_INLINE] = ACTIONS(2856), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2856), + [anon_sym_OBJC_EXPORT] = ACTIONS(2856), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2856), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2856), + [anon_sym_constexpr] = ACTIONS(2856), + [anon_sym_volatile] = ACTIONS(2856), + [anon_sym_restrict] = ACTIONS(2856), + [anon_sym___restrict__] = ACTIONS(2856), + [anon_sym__Atomic] = ACTIONS(2856), + [anon_sym__Noreturn] = ACTIONS(2856), + [anon_sym__Nonnull] = ACTIONS(2856), + [anon_sym_nullable] = ACTIONS(2856), + [anon_sym__Complex] = ACTIONS(2856), + [anon_sym__Nullable] = ACTIONS(2856), + [anon_sym__Nullable_result] = ACTIONS(2856), + [anon_sym__Null_unspecified] = ACTIONS(2856), + [anon_sym___autoreleasing] = ACTIONS(2856), + [anon_sym___block] = ACTIONS(2856), + [anon_sym___bridge] = ACTIONS(2856), + [anon_sym___bridge_retained] = ACTIONS(2856), + [anon_sym___bridge_transfer] = ACTIONS(2856), + [anon_sym___complex] = ACTIONS(2856), + [anon_sym___const] = ACTIONS(2856), + [anon_sym___imag] = ACTIONS(2856), + [anon_sym___kindof] = ACTIONS(2856), + [anon_sym___nonnull] = ACTIONS(2856), + [anon_sym___nullable] = ACTIONS(2856), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2856), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2856), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2856), + [anon_sym___real] = ACTIONS(2856), + [anon_sym___strong] = ACTIONS(2856), + [anon_sym___unsafe_unretained] = ACTIONS(2856), + [anon_sym___unused] = ACTIONS(2856), + [anon_sym___weak] = ACTIONS(2856), + [anon_sym_alignas] = ACTIONS(2856), + [anon_sym__Alignas] = ACTIONS(2856), + [sym_primitive_type] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2856), + [anon_sym_union] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_switch] = ACTIONS(2856), + [anon_sym_case] = ACTIONS(2856), + [anon_sym_default] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_in] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(2856), + [anon_sym_continue] = ACTIONS(2856), + [anon_sym_goto] = ACTIONS(2856), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_sizeof] = ACTIONS(2856), + [anon_sym___alignof__] = ACTIONS(2856), + [anon_sym___alignof] = ACTIONS(2856), + [anon_sym__alignof] = ACTIONS(2856), + [anon_sym_alignof] = ACTIONS(2856), + [anon_sym__Alignof] = ACTIONS(2856), + [anon_sym_offsetof] = ACTIONS(2856), + [anon_sym__Generic] = ACTIONS(2856), + [anon_sym_asm] = ACTIONS(2856), + [anon_sym___asm__] = ACTIONS(2856), + [anon_sym___asm] = ACTIONS(2856), + [sym_number_literal] = ACTIONS(2858), + [anon_sym_L_SQUOTE] = ACTIONS(2858), + [anon_sym_u_SQUOTE] = ACTIONS(2858), + [anon_sym_U_SQUOTE] = ACTIONS(2858), + [anon_sym_u8_SQUOTE] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_AT] = ACTIONS(2856), + [anon_sym_DQUOTE] = ACTIONS(2858), + [anon_sym_L_DQUOTE] = ACTIONS(2858), + [anon_sym_u_DQUOTE] = ACTIONS(2858), + [anon_sym_U_DQUOTE] = ACTIONS(2858), + [anon_sym_u8_DQUOTE] = ACTIONS(2858), + [sym_true] = ACTIONS(2856), + [sym_false] = ACTIONS(2856), + [anon_sym_NULL] = ACTIONS(2856), + [anon_sym_nullptr] = ACTIONS(2856), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2856), + [anon_sym___typeof] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2856), + [anon_sym_ATimport] = ACTIONS(2858), + [aux_sym_preproc_undef_token1] = ACTIONS(2856), + [anon_sym_POUND] = ACTIONS(2856), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2856), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2856), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2856), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2856), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2856), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2856), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2856), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2856), + [anon_sym_NS_AVAILABLE] = ACTIONS(2856), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2856), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_API_AVAILABLE] = ACTIONS(2856), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_API_DEPRECATED] = ACTIONS(2856), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2856), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2856), + [anon_sym___deprecated_msg] = ACTIONS(2856), + [anon_sym___deprecated_enum_msg] = ACTIONS(2856), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2856), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2856), + [anon_sym_ATprotocol] = ACTIONS(2858), + [anon_sym_ATinterface] = ACTIONS(2858), + [anon_sym_ATimplementation] = ACTIONS(2858), + [anon_sym_ATcompatibility_alias] = ACTIONS(2858), + [anon_sym_ATsynthesize] = ACTIONS(2858), + [anon_sym_ATdynamic] = ACTIONS(2858), + [anon_sym_ATtry] = ACTIONS(2858), + [anon_sym___try] = ACTIONS(2856), + [anon_sym_ATthrow] = ACTIONS(2858), + [anon_sym_ATselector] = ACTIONS(2858), + [anon_sym_ATavailable] = ACTIONS(2858), + [anon_sym___builtin_available] = ACTIONS(2856), + [anon_sym_va_arg] = ACTIONS(2856), + [anon_sym_ATencode] = ACTIONS(2858), + [anon_sym_ATsynchronized] = ACTIONS(2858), + [anon_sym_BOOL] = ACTIONS(2856), + [anon_sym_IMP] = ACTIONS(2856), + [anon_sym_SEL] = ACTIONS(2856), + [anon_sym_Class] = ACTIONS(2856), + [anon_sym_id] = ACTIONS(2856), + }, + [450] = { + [sym_identifier] = ACTIONS(2864), + [aux_sym_preproc_include_token1] = ACTIONS(2864), + [aux_sym_preproc_include_token2] = ACTIONS(2864), + [aux_sym_preproc_def_token1] = ACTIONS(2864), + [aux_sym_preproc_if_token1] = ACTIONS(2864), + [aux_sym_preproc_if_token2] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2864), + [aux_sym_preproc_else_token1] = ACTIONS(2864), + [aux_sym_preproc_elif_token1] = ACTIONS(2864), + [sym_preproc_directive] = ACTIONS(2864), + [anon_sym_LPAREN2] = ACTIONS(2866), + [anon_sym_BANG] = ACTIONS(2866), + [anon_sym_TILDE] = ACTIONS(2866), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_CARET] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_SEMI] = ACTIONS(2866), + [anon_sym___extension__] = ACTIONS(2864), + [anon_sym_typedef] = ACTIONS(2864), + [anon_sym_extern] = ACTIONS(2864), + [anon_sym___attribute__] = ACTIONS(2864), + [anon_sym___attribute] = ACTIONS(2864), + [anon_sym_noreturn] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2866), + [anon_sym___declspec] = ACTIONS(2864), + [anon_sym___cdecl] = ACTIONS(2864), + [anon_sym___clrcall] = ACTIONS(2864), + [anon_sym___stdcall] = ACTIONS(2864), + [anon_sym___fastcall] = ACTIONS(2864), + [anon_sym___thiscall] = ACTIONS(2864), + [anon_sym___vectorcall] = ACTIONS(2864), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_signed] = ACTIONS(2864), + [anon_sym_unsigned] = ACTIONS(2864), + [anon_sym_long] = ACTIONS(2864), + [anon_sym_short] = ACTIONS(2864), + [anon_sym_static] = ACTIONS(2864), + [anon_sym_ATautoreleasepool] = ACTIONS(2866), + [anon_sym_auto] = ACTIONS(2864), + [anon_sym_register] = ACTIONS(2864), + [anon_sym_inline] = ACTIONS(2864), + [anon_sym___inline] = ACTIONS(2864), + [anon_sym___inline__] = ACTIONS(2864), + [anon_sym___forceinline] = ACTIONS(2864), + [anon_sym_thread_local] = ACTIONS(2864), + [anon_sym___thread] = ACTIONS(2864), + [anon_sym_CG_EXTERN] = ACTIONS(2864), + [anon_sym_CG_INLINE] = ACTIONS(2864), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2864), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2864), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2864), + [anon_sym_IBOutlet] = ACTIONS(2864), + [anon_sym_IBInspectable] = ACTIONS(2864), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2864), + [anon_sym_NS_INLINE] = ACTIONS(2864), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2864), + [anon_sym_OBJC_EXPORT] = ACTIONS(2864), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2864), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2864), + [anon_sym_const] = ACTIONS(2864), + [anon_sym_constexpr] = ACTIONS(2864), + [anon_sym_volatile] = ACTIONS(2864), + [anon_sym_restrict] = ACTIONS(2864), + [anon_sym___restrict__] = ACTIONS(2864), + [anon_sym__Atomic] = ACTIONS(2864), + [anon_sym__Noreturn] = ACTIONS(2864), + [anon_sym__Nonnull] = ACTIONS(2864), + [anon_sym_nullable] = ACTIONS(2864), + [anon_sym__Complex] = ACTIONS(2864), + [anon_sym__Nullable] = ACTIONS(2864), + [anon_sym__Nullable_result] = ACTIONS(2864), + [anon_sym__Null_unspecified] = ACTIONS(2864), + [anon_sym___autoreleasing] = ACTIONS(2864), + [anon_sym___block] = ACTIONS(2864), + [anon_sym___bridge] = ACTIONS(2864), + [anon_sym___bridge_retained] = ACTIONS(2864), + [anon_sym___bridge_transfer] = ACTIONS(2864), + [anon_sym___complex] = ACTIONS(2864), + [anon_sym___const] = ACTIONS(2864), + [anon_sym___imag] = ACTIONS(2864), + [anon_sym___kindof] = ACTIONS(2864), + [anon_sym___nonnull] = ACTIONS(2864), + [anon_sym___nullable] = ACTIONS(2864), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2864), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2864), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2864), + [anon_sym___real] = ACTIONS(2864), + [anon_sym___strong] = ACTIONS(2864), + [anon_sym___unsafe_unretained] = ACTIONS(2864), + [anon_sym___unused] = ACTIONS(2864), + [anon_sym___weak] = ACTIONS(2864), + [anon_sym_alignas] = ACTIONS(2864), + [anon_sym__Alignas] = ACTIONS(2864), + [sym_primitive_type] = ACTIONS(2864), + [anon_sym_enum] = ACTIONS(2864), + [anon_sym_struct] = ACTIONS(2864), + [anon_sym_union] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_switch] = ACTIONS(2864), + [anon_sym_case] = ACTIONS(2864), + [anon_sym_default] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_in] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_break] = ACTIONS(2864), + [anon_sym_continue] = ACTIONS(2864), + [anon_sym_goto] = ACTIONS(2864), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [anon_sym_PLUS_PLUS] = ACTIONS(2866), + [anon_sym_sizeof] = ACTIONS(2864), + [anon_sym___alignof__] = ACTIONS(2864), + [anon_sym___alignof] = ACTIONS(2864), + [anon_sym__alignof] = ACTIONS(2864), + [anon_sym_alignof] = ACTIONS(2864), + [anon_sym__Alignof] = ACTIONS(2864), + [anon_sym_offsetof] = ACTIONS(2864), + [anon_sym__Generic] = ACTIONS(2864), + [anon_sym_asm] = ACTIONS(2864), + [anon_sym___asm__] = ACTIONS(2864), + [anon_sym___asm] = ACTIONS(2864), + [sym_number_literal] = ACTIONS(2866), + [anon_sym_L_SQUOTE] = ACTIONS(2866), + [anon_sym_u_SQUOTE] = ACTIONS(2866), + [anon_sym_U_SQUOTE] = ACTIONS(2866), + [anon_sym_u8_SQUOTE] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_AT] = ACTIONS(2864), + [anon_sym_DQUOTE] = ACTIONS(2866), + [anon_sym_L_DQUOTE] = ACTIONS(2866), + [anon_sym_u_DQUOTE] = ACTIONS(2866), + [anon_sym_U_DQUOTE] = ACTIONS(2866), + [anon_sym_u8_DQUOTE] = ACTIONS(2866), + [sym_true] = ACTIONS(2864), + [sym_false] = ACTIONS(2864), + [anon_sym_NULL] = ACTIONS(2864), + [anon_sym_nullptr] = ACTIONS(2864), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2864), + [anon_sym___typeof] = ACTIONS(2864), + [anon_sym_typeof] = ACTIONS(2864), + [anon_sym_ATimport] = ACTIONS(2866), + [aux_sym_preproc_undef_token1] = ACTIONS(2864), + [anon_sym_POUND] = ACTIONS(2864), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2864), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2864), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2864), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2864), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2864), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2864), + [anon_sym_NS_AVAILABLE] = ACTIONS(2864), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2864), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_API_AVAILABLE] = ACTIONS(2864), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_API_DEPRECATED] = ACTIONS(2864), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2864), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2864), + [anon_sym___deprecated_msg] = ACTIONS(2864), + [anon_sym___deprecated_enum_msg] = ACTIONS(2864), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2864), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2864), + [anon_sym_ATprotocol] = ACTIONS(2866), + [anon_sym_ATinterface] = ACTIONS(2866), + [anon_sym_ATimplementation] = ACTIONS(2866), + [anon_sym_ATcompatibility_alias] = ACTIONS(2866), + [anon_sym_ATsynthesize] = ACTIONS(2866), + [anon_sym_ATdynamic] = ACTIONS(2866), + [anon_sym_ATtry] = ACTIONS(2866), + [anon_sym___try] = ACTIONS(2864), + [anon_sym_ATthrow] = ACTIONS(2866), + [anon_sym_ATselector] = ACTIONS(2866), + [anon_sym_ATavailable] = ACTIONS(2866), + [anon_sym___builtin_available] = ACTIONS(2864), + [anon_sym_va_arg] = ACTIONS(2864), + [anon_sym_ATencode] = ACTIONS(2866), + [anon_sym_ATsynchronized] = ACTIONS(2866), + [anon_sym_BOOL] = ACTIONS(2864), + [anon_sym_IMP] = ACTIONS(2864), + [anon_sym_SEL] = ACTIONS(2864), + [anon_sym_Class] = ACTIONS(2864), + [anon_sym_id] = ACTIONS(2864), + }, + [451] = { + [sym_identifier] = ACTIONS(2688), + [aux_sym_preproc_include_token1] = ACTIONS(2688), + [aux_sym_preproc_include_token2] = ACTIONS(2688), + [aux_sym_preproc_def_token1] = ACTIONS(2688), + [aux_sym_preproc_if_token1] = ACTIONS(2688), + [aux_sym_preproc_if_token2] = ACTIONS(2688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2688), + [aux_sym_preproc_else_token1] = ACTIONS(2688), + [aux_sym_preproc_elif_token1] = ACTIONS(2688), + [sym_preproc_directive] = ACTIONS(2688), + [anon_sym_LPAREN2] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_TILDE] = ACTIONS(2690), + [anon_sym_DASH] = ACTIONS(2688), + [anon_sym_PLUS] = ACTIONS(2688), + [anon_sym_STAR] = ACTIONS(2690), + [anon_sym_CARET] = ACTIONS(2690), + [anon_sym_AMP] = ACTIONS(2690), + [anon_sym_SEMI] = ACTIONS(2690), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_typedef] = ACTIONS(2688), + [anon_sym_extern] = ACTIONS(2688), + [anon_sym___attribute__] = ACTIONS(2688), + [anon_sym___attribute] = ACTIONS(2688), + [anon_sym_noreturn] = ACTIONS(2688), + [anon_sym_LBRACK] = ACTIONS(2690), + [anon_sym___declspec] = ACTIONS(2688), + [anon_sym___cdecl] = ACTIONS(2688), + [anon_sym___clrcall] = ACTIONS(2688), + [anon_sym___stdcall] = ACTIONS(2688), + [anon_sym___fastcall] = ACTIONS(2688), + [anon_sym___thiscall] = ACTIONS(2688), + [anon_sym___vectorcall] = ACTIONS(2688), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_signed] = ACTIONS(2688), + [anon_sym_unsigned] = ACTIONS(2688), + [anon_sym_long] = ACTIONS(2688), + [anon_sym_short] = ACTIONS(2688), + [anon_sym_static] = ACTIONS(2688), + [anon_sym_ATautoreleasepool] = ACTIONS(2690), + [anon_sym_auto] = ACTIONS(2688), + [anon_sym_register] = ACTIONS(2688), + [anon_sym_inline] = ACTIONS(2688), + [anon_sym___inline] = ACTIONS(2688), + [anon_sym___inline__] = ACTIONS(2688), + [anon_sym___forceinline] = ACTIONS(2688), + [anon_sym_thread_local] = ACTIONS(2688), + [anon_sym___thread] = ACTIONS(2688), + [anon_sym_CG_EXTERN] = ACTIONS(2688), + [anon_sym_CG_INLINE] = ACTIONS(2688), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2688), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2688), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2688), + [anon_sym_IBOutlet] = ACTIONS(2688), + [anon_sym_IBInspectable] = ACTIONS(2688), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2688), + [anon_sym_NS_INLINE] = ACTIONS(2688), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2688), + [anon_sym_OBJC_EXPORT] = ACTIONS(2688), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2688), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2688), + [anon_sym_const] = ACTIONS(2688), + [anon_sym_constexpr] = ACTIONS(2688), + [anon_sym_volatile] = ACTIONS(2688), + [anon_sym_restrict] = ACTIONS(2688), + [anon_sym___restrict__] = ACTIONS(2688), + [anon_sym__Atomic] = ACTIONS(2688), + [anon_sym__Noreturn] = ACTIONS(2688), + [anon_sym__Nonnull] = ACTIONS(2688), + [anon_sym_nullable] = ACTIONS(2688), + [anon_sym__Complex] = ACTIONS(2688), + [anon_sym__Nullable] = ACTIONS(2688), + [anon_sym__Nullable_result] = ACTIONS(2688), + [anon_sym__Null_unspecified] = ACTIONS(2688), + [anon_sym___autoreleasing] = ACTIONS(2688), + [anon_sym___block] = ACTIONS(2688), + [anon_sym___bridge] = ACTIONS(2688), + [anon_sym___bridge_retained] = ACTIONS(2688), + [anon_sym___bridge_transfer] = ACTIONS(2688), + [anon_sym___complex] = ACTIONS(2688), + [anon_sym___const] = ACTIONS(2688), + [anon_sym___imag] = ACTIONS(2688), + [anon_sym___kindof] = ACTIONS(2688), + [anon_sym___nonnull] = ACTIONS(2688), + [anon_sym___nullable] = ACTIONS(2688), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2688), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2688), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2688), + [anon_sym___real] = ACTIONS(2688), + [anon_sym___strong] = ACTIONS(2688), + [anon_sym___unsafe_unretained] = ACTIONS(2688), + [anon_sym___unused] = ACTIONS(2688), + [anon_sym___weak] = ACTIONS(2688), + [anon_sym_alignas] = ACTIONS(2688), + [anon_sym__Alignas] = ACTIONS(2688), + [sym_primitive_type] = ACTIONS(2688), + [anon_sym_enum] = ACTIONS(2688), + [anon_sym_struct] = ACTIONS(2688), + [anon_sym_union] = ACTIONS(2688), + [anon_sym_if] = ACTIONS(2688), + [anon_sym_switch] = ACTIONS(2688), + [anon_sym_case] = ACTIONS(2688), + [anon_sym_default] = ACTIONS(2688), + [anon_sym_while] = ACTIONS(2688), + [anon_sym_do] = ACTIONS(2688), + [anon_sym_for] = ACTIONS(2688), + [anon_sym_in] = ACTIONS(2688), + [anon_sym_return] = ACTIONS(2688), + [anon_sym_break] = ACTIONS(2688), + [anon_sym_continue] = ACTIONS(2688), + [anon_sym_goto] = ACTIONS(2688), + [anon_sym_DASH_DASH] = ACTIONS(2690), + [anon_sym_PLUS_PLUS] = ACTIONS(2690), + [anon_sym_sizeof] = ACTIONS(2688), + [anon_sym___alignof__] = ACTIONS(2688), + [anon_sym___alignof] = ACTIONS(2688), + [anon_sym__alignof] = ACTIONS(2688), + [anon_sym_alignof] = ACTIONS(2688), + [anon_sym__Alignof] = ACTIONS(2688), + [anon_sym_offsetof] = ACTIONS(2688), + [anon_sym__Generic] = ACTIONS(2688), + [anon_sym_asm] = ACTIONS(2688), + [anon_sym___asm__] = ACTIONS(2688), + [anon_sym___asm] = ACTIONS(2688), + [sym_number_literal] = ACTIONS(2690), + [anon_sym_L_SQUOTE] = ACTIONS(2690), + [anon_sym_u_SQUOTE] = ACTIONS(2690), + [anon_sym_U_SQUOTE] = ACTIONS(2690), + [anon_sym_u8_SQUOTE] = ACTIONS(2690), + [anon_sym_SQUOTE] = ACTIONS(2690), + [anon_sym_AT] = ACTIONS(2688), + [anon_sym_DQUOTE] = ACTIONS(2690), + [anon_sym_L_DQUOTE] = ACTIONS(2690), + [anon_sym_u_DQUOTE] = ACTIONS(2690), + [anon_sym_U_DQUOTE] = ACTIONS(2690), + [anon_sym_u8_DQUOTE] = ACTIONS(2690), + [sym_true] = ACTIONS(2688), + [sym_false] = ACTIONS(2688), + [anon_sym_NULL] = ACTIONS(2688), + [anon_sym_nullptr] = ACTIONS(2688), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2688), + [anon_sym___typeof] = ACTIONS(2688), + [anon_sym_typeof] = ACTIONS(2688), + [anon_sym_ATimport] = ACTIONS(2690), + [aux_sym_preproc_undef_token1] = ACTIONS(2688), + [anon_sym_POUND] = ACTIONS(2688), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2688), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2688), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2688), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2688), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2688), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2688), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2688), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2688), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2688), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2688), + [anon_sym_NS_AVAILABLE] = ACTIONS(2688), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2688), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2688), + [anon_sym_API_AVAILABLE] = ACTIONS(2688), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2688), + [anon_sym_API_DEPRECATED] = ACTIONS(2688), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2688), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2688), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2688), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2688), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2688), + [anon_sym___deprecated_msg] = ACTIONS(2688), + [anon_sym___deprecated_enum_msg] = ACTIONS(2688), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2688), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2688), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2688), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2688), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2688), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2688), + [anon_sym_ATprotocol] = ACTIONS(2690), + [anon_sym_ATinterface] = ACTIONS(2690), + [anon_sym_ATimplementation] = ACTIONS(2690), + [anon_sym_ATcompatibility_alias] = ACTIONS(2690), + [anon_sym_ATsynthesize] = ACTIONS(2690), + [anon_sym_ATdynamic] = ACTIONS(2690), + [anon_sym_ATtry] = ACTIONS(2690), + [anon_sym___try] = ACTIONS(2688), + [anon_sym_ATthrow] = ACTIONS(2690), + [anon_sym_ATselector] = ACTIONS(2690), + [anon_sym_ATavailable] = ACTIONS(2690), + [anon_sym___builtin_available] = ACTIONS(2688), + [anon_sym_va_arg] = ACTIONS(2688), + [anon_sym_ATencode] = ACTIONS(2690), + [anon_sym_ATsynchronized] = ACTIONS(2690), + [anon_sym_BOOL] = ACTIONS(2688), + [anon_sym_IMP] = ACTIONS(2688), + [anon_sym_SEL] = ACTIONS(2688), + [anon_sym_Class] = ACTIONS(2688), + [anon_sym_id] = ACTIONS(2688), + }, + [452] = { + [sym_identifier] = ACTIONS(2756), + [aux_sym_preproc_include_token1] = ACTIONS(2756), + [aux_sym_preproc_include_token2] = ACTIONS(2756), + [aux_sym_preproc_def_token1] = ACTIONS(2756), + [aux_sym_preproc_if_token1] = ACTIONS(2756), + [aux_sym_preproc_if_token2] = ACTIONS(2756), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2756), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2756), + [aux_sym_preproc_else_token1] = ACTIONS(2756), + [aux_sym_preproc_elif_token1] = ACTIONS(2756), + [sym_preproc_directive] = ACTIONS(2756), + [anon_sym_LPAREN2] = ACTIONS(2758), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_TILDE] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_STAR] = ACTIONS(2758), + [anon_sym_CARET] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym___extension__] = ACTIONS(2756), + [anon_sym_typedef] = ACTIONS(2756), + [anon_sym_extern] = ACTIONS(2756), + [anon_sym___attribute__] = ACTIONS(2756), + [anon_sym___attribute] = ACTIONS(2756), + [anon_sym_noreturn] = ACTIONS(2756), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym___declspec] = ACTIONS(2756), + [anon_sym___cdecl] = ACTIONS(2756), + [anon_sym___clrcall] = ACTIONS(2756), + [anon_sym___stdcall] = ACTIONS(2756), + [anon_sym___fastcall] = ACTIONS(2756), + [anon_sym___thiscall] = ACTIONS(2756), + [anon_sym___vectorcall] = ACTIONS(2756), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_signed] = ACTIONS(2756), + [anon_sym_unsigned] = ACTIONS(2756), + [anon_sym_long] = ACTIONS(2756), + [anon_sym_short] = ACTIONS(2756), + [anon_sym_static] = ACTIONS(2756), + [anon_sym_ATautoreleasepool] = ACTIONS(2758), + [anon_sym_auto] = ACTIONS(2756), + [anon_sym_register] = ACTIONS(2756), + [anon_sym_inline] = ACTIONS(2756), + [anon_sym___inline] = ACTIONS(2756), + [anon_sym___inline__] = ACTIONS(2756), + [anon_sym___forceinline] = ACTIONS(2756), + [anon_sym_thread_local] = ACTIONS(2756), + [anon_sym___thread] = ACTIONS(2756), + [anon_sym_CG_EXTERN] = ACTIONS(2756), + [anon_sym_CG_INLINE] = ACTIONS(2756), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2756), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2756), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2756), + [anon_sym_IBOutlet] = ACTIONS(2756), + [anon_sym_IBInspectable] = ACTIONS(2756), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2756), + [anon_sym_NS_INLINE] = ACTIONS(2756), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2756), + [anon_sym_OBJC_EXPORT] = ACTIONS(2756), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2756), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2756), + [anon_sym_const] = ACTIONS(2756), + [anon_sym_constexpr] = ACTIONS(2756), + [anon_sym_volatile] = ACTIONS(2756), + [anon_sym_restrict] = ACTIONS(2756), + [anon_sym___restrict__] = ACTIONS(2756), + [anon_sym__Atomic] = ACTIONS(2756), + [anon_sym__Noreturn] = ACTIONS(2756), + [anon_sym__Nonnull] = ACTIONS(2756), + [anon_sym_nullable] = ACTIONS(2756), + [anon_sym__Complex] = ACTIONS(2756), + [anon_sym__Nullable] = ACTIONS(2756), + [anon_sym__Nullable_result] = ACTIONS(2756), + [anon_sym__Null_unspecified] = ACTIONS(2756), + [anon_sym___autoreleasing] = ACTIONS(2756), + [anon_sym___block] = ACTIONS(2756), + [anon_sym___bridge] = ACTIONS(2756), + [anon_sym___bridge_retained] = ACTIONS(2756), + [anon_sym___bridge_transfer] = ACTIONS(2756), + [anon_sym___complex] = ACTIONS(2756), + [anon_sym___const] = ACTIONS(2756), + [anon_sym___imag] = ACTIONS(2756), + [anon_sym___kindof] = ACTIONS(2756), + [anon_sym___nonnull] = ACTIONS(2756), + [anon_sym___nullable] = ACTIONS(2756), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2756), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2756), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2756), + [anon_sym___real] = ACTIONS(2756), + [anon_sym___strong] = ACTIONS(2756), + [anon_sym___unsafe_unretained] = ACTIONS(2756), + [anon_sym___unused] = ACTIONS(2756), + [anon_sym___weak] = ACTIONS(2756), + [anon_sym_alignas] = ACTIONS(2756), + [anon_sym__Alignas] = ACTIONS(2756), + [sym_primitive_type] = ACTIONS(2756), + [anon_sym_enum] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(2756), + [anon_sym_union] = ACTIONS(2756), + [anon_sym_if] = ACTIONS(2756), + [anon_sym_switch] = ACTIONS(2756), + [anon_sym_case] = ACTIONS(2756), + [anon_sym_default] = ACTIONS(2756), + [anon_sym_while] = ACTIONS(2756), + [anon_sym_do] = ACTIONS(2756), + [anon_sym_for] = ACTIONS(2756), + [anon_sym_in] = ACTIONS(2756), + [anon_sym_return] = ACTIONS(2756), + [anon_sym_break] = ACTIONS(2756), + [anon_sym_continue] = ACTIONS(2756), + [anon_sym_goto] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_sizeof] = ACTIONS(2756), + [anon_sym___alignof__] = ACTIONS(2756), + [anon_sym___alignof] = ACTIONS(2756), + [anon_sym__alignof] = ACTIONS(2756), + [anon_sym_alignof] = ACTIONS(2756), + [anon_sym__Alignof] = ACTIONS(2756), + [anon_sym_offsetof] = ACTIONS(2756), + [anon_sym__Generic] = ACTIONS(2756), + [anon_sym_asm] = ACTIONS(2756), + [anon_sym___asm__] = ACTIONS(2756), + [anon_sym___asm] = ACTIONS(2756), + [sym_number_literal] = ACTIONS(2758), + [anon_sym_L_SQUOTE] = ACTIONS(2758), + [anon_sym_u_SQUOTE] = ACTIONS(2758), + [anon_sym_U_SQUOTE] = ACTIONS(2758), + [anon_sym_u8_SQUOTE] = ACTIONS(2758), + [anon_sym_SQUOTE] = ACTIONS(2758), + [anon_sym_AT] = ACTIONS(2756), + [anon_sym_DQUOTE] = ACTIONS(2758), + [anon_sym_L_DQUOTE] = ACTIONS(2758), + [anon_sym_u_DQUOTE] = ACTIONS(2758), + [anon_sym_U_DQUOTE] = ACTIONS(2758), + [anon_sym_u8_DQUOTE] = ACTIONS(2758), + [sym_true] = ACTIONS(2756), + [sym_false] = ACTIONS(2756), + [anon_sym_NULL] = ACTIONS(2756), + [anon_sym_nullptr] = ACTIONS(2756), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2756), + [anon_sym___typeof] = ACTIONS(2756), + [anon_sym_typeof] = ACTIONS(2756), + [anon_sym_ATimport] = ACTIONS(2758), + [aux_sym_preproc_undef_token1] = ACTIONS(2756), + [anon_sym_POUND] = ACTIONS(2756), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2756), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2756), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2756), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2756), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2756), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2756), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2756), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2756), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2756), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2756), + [anon_sym_NS_AVAILABLE] = ACTIONS(2756), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2756), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2756), + [anon_sym_API_AVAILABLE] = ACTIONS(2756), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2756), + [anon_sym_API_DEPRECATED] = ACTIONS(2756), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2756), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2756), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2756), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2756), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2756), + [anon_sym___deprecated_msg] = ACTIONS(2756), + [anon_sym___deprecated_enum_msg] = ACTIONS(2756), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2756), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2756), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2756), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2756), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2756), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2756), + [anon_sym_ATprotocol] = ACTIONS(2758), + [anon_sym_ATinterface] = ACTIONS(2758), + [anon_sym_ATimplementation] = ACTIONS(2758), + [anon_sym_ATcompatibility_alias] = ACTIONS(2758), + [anon_sym_ATsynthesize] = ACTIONS(2758), + [anon_sym_ATdynamic] = ACTIONS(2758), + [anon_sym_ATtry] = ACTIONS(2758), + [anon_sym___try] = ACTIONS(2756), + [anon_sym_ATthrow] = ACTIONS(2758), + [anon_sym_ATselector] = ACTIONS(2758), + [anon_sym_ATavailable] = ACTIONS(2758), + [anon_sym___builtin_available] = ACTIONS(2756), + [anon_sym_va_arg] = ACTIONS(2756), + [anon_sym_ATencode] = ACTIONS(2758), + [anon_sym_ATsynchronized] = ACTIONS(2758), + [anon_sym_BOOL] = ACTIONS(2756), + [anon_sym_IMP] = ACTIONS(2756), + [anon_sym_SEL] = ACTIONS(2756), + [anon_sym_Class] = ACTIONS(2756), + [anon_sym_id] = ACTIONS(2756), + }, + [453] = { + [sym_identifier] = ACTIONS(2708), + [aux_sym_preproc_include_token1] = ACTIONS(2708), + [aux_sym_preproc_include_token2] = ACTIONS(2708), + [aux_sym_preproc_def_token1] = ACTIONS(2708), + [aux_sym_preproc_if_token1] = ACTIONS(2708), + [aux_sym_preproc_if_token2] = ACTIONS(2708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2708), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2708), + [aux_sym_preproc_else_token1] = ACTIONS(2708), + [aux_sym_preproc_elif_token1] = ACTIONS(2708), + [sym_preproc_directive] = ACTIONS(2708), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_BANG] = ACTIONS(2710), + [anon_sym_TILDE] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_STAR] = ACTIONS(2710), + [anon_sym_CARET] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym___extension__] = ACTIONS(2708), + [anon_sym_typedef] = ACTIONS(2708), + [anon_sym_extern] = ACTIONS(2708), + [anon_sym___attribute__] = ACTIONS(2708), + [anon_sym___attribute] = ACTIONS(2708), + [anon_sym_noreturn] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2710), + [anon_sym___declspec] = ACTIONS(2708), + [anon_sym___cdecl] = ACTIONS(2708), + [anon_sym___clrcall] = ACTIONS(2708), + [anon_sym___stdcall] = ACTIONS(2708), + [anon_sym___fastcall] = ACTIONS(2708), + [anon_sym___thiscall] = ACTIONS(2708), + [anon_sym___vectorcall] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_signed] = ACTIONS(2708), + [anon_sym_unsigned] = ACTIONS(2708), + [anon_sym_long] = ACTIONS(2708), + [anon_sym_short] = ACTIONS(2708), + [anon_sym_static] = ACTIONS(2708), + [anon_sym_ATautoreleasepool] = ACTIONS(2710), + [anon_sym_auto] = ACTIONS(2708), + [anon_sym_register] = ACTIONS(2708), + [anon_sym_inline] = ACTIONS(2708), + [anon_sym___inline] = ACTIONS(2708), + [anon_sym___inline__] = ACTIONS(2708), + [anon_sym___forceinline] = ACTIONS(2708), + [anon_sym_thread_local] = ACTIONS(2708), + [anon_sym___thread] = ACTIONS(2708), + [anon_sym_CG_EXTERN] = ACTIONS(2708), + [anon_sym_CG_INLINE] = ACTIONS(2708), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2708), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2708), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2708), + [anon_sym_IBOutlet] = ACTIONS(2708), + [anon_sym_IBInspectable] = ACTIONS(2708), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2708), + [anon_sym_NS_INLINE] = ACTIONS(2708), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2708), + [anon_sym_OBJC_EXPORT] = ACTIONS(2708), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2708), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2708), + [anon_sym_const] = ACTIONS(2708), + [anon_sym_constexpr] = ACTIONS(2708), + [anon_sym_volatile] = ACTIONS(2708), + [anon_sym_restrict] = ACTIONS(2708), + [anon_sym___restrict__] = ACTIONS(2708), + [anon_sym__Atomic] = ACTIONS(2708), + [anon_sym__Noreturn] = ACTIONS(2708), + [anon_sym__Nonnull] = ACTIONS(2708), + [anon_sym_nullable] = ACTIONS(2708), + [anon_sym__Complex] = ACTIONS(2708), + [anon_sym__Nullable] = ACTIONS(2708), + [anon_sym__Nullable_result] = ACTIONS(2708), + [anon_sym__Null_unspecified] = ACTIONS(2708), + [anon_sym___autoreleasing] = ACTIONS(2708), + [anon_sym___block] = ACTIONS(2708), + [anon_sym___bridge] = ACTIONS(2708), + [anon_sym___bridge_retained] = ACTIONS(2708), + [anon_sym___bridge_transfer] = ACTIONS(2708), + [anon_sym___complex] = ACTIONS(2708), + [anon_sym___const] = ACTIONS(2708), + [anon_sym___imag] = ACTIONS(2708), + [anon_sym___kindof] = ACTIONS(2708), + [anon_sym___nonnull] = ACTIONS(2708), + [anon_sym___nullable] = ACTIONS(2708), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2708), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2708), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2708), + [anon_sym___real] = ACTIONS(2708), + [anon_sym___strong] = ACTIONS(2708), + [anon_sym___unsafe_unretained] = ACTIONS(2708), + [anon_sym___unused] = ACTIONS(2708), + [anon_sym___weak] = ACTIONS(2708), + [anon_sym_alignas] = ACTIONS(2708), + [anon_sym__Alignas] = ACTIONS(2708), + [sym_primitive_type] = ACTIONS(2708), + [anon_sym_enum] = ACTIONS(2708), + [anon_sym_struct] = ACTIONS(2708), + [anon_sym_union] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_switch] = ACTIONS(2708), + [anon_sym_case] = ACTIONS(2708), + [anon_sym_default] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_in] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_break] = ACTIONS(2708), + [anon_sym_continue] = ACTIONS(2708), + [anon_sym_goto] = ACTIONS(2708), + [anon_sym_DASH_DASH] = ACTIONS(2710), + [anon_sym_PLUS_PLUS] = ACTIONS(2710), + [anon_sym_sizeof] = ACTIONS(2708), + [anon_sym___alignof__] = ACTIONS(2708), + [anon_sym___alignof] = ACTIONS(2708), + [anon_sym__alignof] = ACTIONS(2708), + [anon_sym_alignof] = ACTIONS(2708), + [anon_sym__Alignof] = ACTIONS(2708), + [anon_sym_offsetof] = ACTIONS(2708), + [anon_sym__Generic] = ACTIONS(2708), + [anon_sym_asm] = ACTIONS(2708), + [anon_sym___asm__] = ACTIONS(2708), + [anon_sym___asm] = ACTIONS(2708), + [sym_number_literal] = ACTIONS(2710), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_AT] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2710), + [anon_sym_u_DQUOTE] = ACTIONS(2710), + [anon_sym_U_DQUOTE] = ACTIONS(2710), + [anon_sym_u8_DQUOTE] = ACTIONS(2710), + [sym_true] = ACTIONS(2708), + [sym_false] = ACTIONS(2708), + [anon_sym_NULL] = ACTIONS(2708), + [anon_sym_nullptr] = ACTIONS(2708), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2708), + [anon_sym___typeof] = ACTIONS(2708), + [anon_sym_typeof] = ACTIONS(2708), + [anon_sym_ATimport] = ACTIONS(2710), + [aux_sym_preproc_undef_token1] = ACTIONS(2708), + [anon_sym_POUND] = ACTIONS(2708), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2708), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2708), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2708), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2708), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2708), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2708), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2708), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2708), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2708), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2708), + [anon_sym_NS_AVAILABLE] = ACTIONS(2708), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2708), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2708), + [anon_sym_API_AVAILABLE] = ACTIONS(2708), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2708), + [anon_sym_API_DEPRECATED] = ACTIONS(2708), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2708), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2708), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2708), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2708), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2708), + [anon_sym___deprecated_msg] = ACTIONS(2708), + [anon_sym___deprecated_enum_msg] = ACTIONS(2708), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2708), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2708), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2708), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2708), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2708), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2708), + [anon_sym_ATprotocol] = ACTIONS(2710), + [anon_sym_ATinterface] = ACTIONS(2710), + [anon_sym_ATimplementation] = ACTIONS(2710), + [anon_sym_ATcompatibility_alias] = ACTIONS(2710), + [anon_sym_ATsynthesize] = ACTIONS(2710), + [anon_sym_ATdynamic] = ACTIONS(2710), + [anon_sym_ATtry] = ACTIONS(2710), + [anon_sym___try] = ACTIONS(2708), + [anon_sym_ATthrow] = ACTIONS(2710), + [anon_sym_ATselector] = ACTIONS(2710), + [anon_sym_ATavailable] = ACTIONS(2710), + [anon_sym___builtin_available] = ACTIONS(2708), + [anon_sym_va_arg] = ACTIONS(2708), + [anon_sym_ATencode] = ACTIONS(2710), + [anon_sym_ATsynchronized] = ACTIONS(2710), + [anon_sym_BOOL] = ACTIONS(2708), + [anon_sym_IMP] = ACTIONS(2708), + [anon_sym_SEL] = ACTIONS(2708), + [anon_sym_Class] = ACTIONS(2708), + [anon_sym_id] = ACTIONS(2708), + }, + [454] = { + [sym_identifier] = ACTIONS(2760), + [aux_sym_preproc_include_token1] = ACTIONS(2760), + [aux_sym_preproc_include_token2] = ACTIONS(2760), + [aux_sym_preproc_def_token1] = ACTIONS(2760), + [aux_sym_preproc_if_token1] = ACTIONS(2760), + [aux_sym_preproc_if_token2] = ACTIONS(2760), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2760), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2760), + [aux_sym_preproc_else_token1] = ACTIONS(2760), + [aux_sym_preproc_elif_token1] = ACTIONS(2760), + [sym_preproc_directive] = ACTIONS(2760), + [anon_sym_LPAREN2] = ACTIONS(2762), + [anon_sym_BANG] = ACTIONS(2762), + [anon_sym_TILDE] = ACTIONS(2762), + [anon_sym_DASH] = ACTIONS(2760), + [anon_sym_PLUS] = ACTIONS(2760), + [anon_sym_STAR] = ACTIONS(2762), + [anon_sym_CARET] = ACTIONS(2762), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym___extension__] = ACTIONS(2760), + [anon_sym_typedef] = ACTIONS(2760), + [anon_sym_extern] = ACTIONS(2760), + [anon_sym___attribute__] = ACTIONS(2760), + [anon_sym___attribute] = ACTIONS(2760), + [anon_sym_noreturn] = ACTIONS(2760), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym___declspec] = ACTIONS(2760), + [anon_sym___cdecl] = ACTIONS(2760), + [anon_sym___clrcall] = ACTIONS(2760), + [anon_sym___stdcall] = ACTIONS(2760), + [anon_sym___fastcall] = ACTIONS(2760), + [anon_sym___thiscall] = ACTIONS(2760), + [anon_sym___vectorcall] = ACTIONS(2760), + [anon_sym_LBRACE] = ACTIONS(2762), + [anon_sym_signed] = ACTIONS(2760), + [anon_sym_unsigned] = ACTIONS(2760), + [anon_sym_long] = ACTIONS(2760), + [anon_sym_short] = ACTIONS(2760), + [anon_sym_static] = ACTIONS(2760), + [anon_sym_ATautoreleasepool] = ACTIONS(2762), + [anon_sym_auto] = ACTIONS(2760), + [anon_sym_register] = ACTIONS(2760), + [anon_sym_inline] = ACTIONS(2760), + [anon_sym___inline] = ACTIONS(2760), + [anon_sym___inline__] = ACTIONS(2760), + [anon_sym___forceinline] = ACTIONS(2760), + [anon_sym_thread_local] = ACTIONS(2760), + [anon_sym___thread] = ACTIONS(2760), + [anon_sym_CG_EXTERN] = ACTIONS(2760), + [anon_sym_CG_INLINE] = ACTIONS(2760), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2760), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2760), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2760), + [anon_sym_IBOutlet] = ACTIONS(2760), + [anon_sym_IBInspectable] = ACTIONS(2760), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2760), + [anon_sym_NS_INLINE] = ACTIONS(2760), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2760), + [anon_sym_OBJC_EXPORT] = ACTIONS(2760), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2760), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2760), + [anon_sym_const] = ACTIONS(2760), + [anon_sym_constexpr] = ACTIONS(2760), + [anon_sym_volatile] = ACTIONS(2760), + [anon_sym_restrict] = ACTIONS(2760), + [anon_sym___restrict__] = ACTIONS(2760), + [anon_sym__Atomic] = ACTIONS(2760), + [anon_sym__Noreturn] = ACTIONS(2760), + [anon_sym__Nonnull] = ACTIONS(2760), + [anon_sym_nullable] = ACTIONS(2760), + [anon_sym__Complex] = ACTIONS(2760), + [anon_sym__Nullable] = ACTIONS(2760), + [anon_sym__Nullable_result] = ACTIONS(2760), + [anon_sym__Null_unspecified] = ACTIONS(2760), + [anon_sym___autoreleasing] = ACTIONS(2760), + [anon_sym___block] = ACTIONS(2760), + [anon_sym___bridge] = ACTIONS(2760), + [anon_sym___bridge_retained] = ACTIONS(2760), + [anon_sym___bridge_transfer] = ACTIONS(2760), + [anon_sym___complex] = ACTIONS(2760), + [anon_sym___const] = ACTIONS(2760), + [anon_sym___imag] = ACTIONS(2760), + [anon_sym___kindof] = ACTIONS(2760), + [anon_sym___nonnull] = ACTIONS(2760), + [anon_sym___nullable] = ACTIONS(2760), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2760), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2760), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2760), + [anon_sym___real] = ACTIONS(2760), + [anon_sym___strong] = ACTIONS(2760), + [anon_sym___unsafe_unretained] = ACTIONS(2760), + [anon_sym___unused] = ACTIONS(2760), + [anon_sym___weak] = ACTIONS(2760), + [anon_sym_alignas] = ACTIONS(2760), + [anon_sym__Alignas] = ACTIONS(2760), + [sym_primitive_type] = ACTIONS(2760), + [anon_sym_enum] = ACTIONS(2760), + [anon_sym_struct] = ACTIONS(2760), + [anon_sym_union] = ACTIONS(2760), + [anon_sym_if] = ACTIONS(2760), + [anon_sym_switch] = ACTIONS(2760), + [anon_sym_case] = ACTIONS(2760), + [anon_sym_default] = ACTIONS(2760), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_do] = ACTIONS(2760), + [anon_sym_for] = ACTIONS(2760), + [anon_sym_in] = ACTIONS(2760), + [anon_sym_return] = ACTIONS(2760), + [anon_sym_break] = ACTIONS(2760), + [anon_sym_continue] = ACTIONS(2760), + [anon_sym_goto] = ACTIONS(2760), + [anon_sym_DASH_DASH] = ACTIONS(2762), + [anon_sym_PLUS_PLUS] = ACTIONS(2762), + [anon_sym_sizeof] = ACTIONS(2760), + [anon_sym___alignof__] = ACTIONS(2760), + [anon_sym___alignof] = ACTIONS(2760), + [anon_sym__alignof] = ACTIONS(2760), + [anon_sym_alignof] = ACTIONS(2760), + [anon_sym__Alignof] = ACTIONS(2760), + [anon_sym_offsetof] = ACTIONS(2760), + [anon_sym__Generic] = ACTIONS(2760), + [anon_sym_asm] = ACTIONS(2760), + [anon_sym___asm__] = ACTIONS(2760), + [anon_sym___asm] = ACTIONS(2760), + [sym_number_literal] = ACTIONS(2762), + [anon_sym_L_SQUOTE] = ACTIONS(2762), + [anon_sym_u_SQUOTE] = ACTIONS(2762), + [anon_sym_U_SQUOTE] = ACTIONS(2762), + [anon_sym_u8_SQUOTE] = ACTIONS(2762), + [anon_sym_SQUOTE] = ACTIONS(2762), + [anon_sym_AT] = ACTIONS(2760), + [anon_sym_DQUOTE] = ACTIONS(2762), + [anon_sym_L_DQUOTE] = ACTIONS(2762), + [anon_sym_u_DQUOTE] = ACTIONS(2762), + [anon_sym_U_DQUOTE] = ACTIONS(2762), + [anon_sym_u8_DQUOTE] = ACTIONS(2762), + [sym_true] = ACTIONS(2760), + [sym_false] = ACTIONS(2760), + [anon_sym_NULL] = ACTIONS(2760), + [anon_sym_nullptr] = ACTIONS(2760), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2760), + [anon_sym___typeof] = ACTIONS(2760), + [anon_sym_typeof] = ACTIONS(2760), + [anon_sym_ATimport] = ACTIONS(2762), + [aux_sym_preproc_undef_token1] = ACTIONS(2760), + [anon_sym_POUND] = ACTIONS(2760), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2760), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2760), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2760), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2760), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2760), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2760), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2760), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2760), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2760), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2760), + [anon_sym_NS_AVAILABLE] = ACTIONS(2760), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2760), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2760), + [anon_sym_API_AVAILABLE] = ACTIONS(2760), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2760), + [anon_sym_API_DEPRECATED] = ACTIONS(2760), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2760), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2760), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2760), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2760), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2760), + [anon_sym___deprecated_msg] = ACTIONS(2760), + [anon_sym___deprecated_enum_msg] = ACTIONS(2760), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2760), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2760), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2760), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2760), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2760), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2760), + [anon_sym_ATprotocol] = ACTIONS(2762), + [anon_sym_ATinterface] = ACTIONS(2762), + [anon_sym_ATimplementation] = ACTIONS(2762), + [anon_sym_ATcompatibility_alias] = ACTIONS(2762), + [anon_sym_ATsynthesize] = ACTIONS(2762), + [anon_sym_ATdynamic] = ACTIONS(2762), + [anon_sym_ATtry] = ACTIONS(2762), + [anon_sym___try] = ACTIONS(2760), + [anon_sym_ATthrow] = ACTIONS(2762), + [anon_sym_ATselector] = ACTIONS(2762), + [anon_sym_ATavailable] = ACTIONS(2762), + [anon_sym___builtin_available] = ACTIONS(2760), + [anon_sym_va_arg] = ACTIONS(2760), + [anon_sym_ATencode] = ACTIONS(2762), + [anon_sym_ATsynchronized] = ACTIONS(2762), + [anon_sym_BOOL] = ACTIONS(2760), + [anon_sym_IMP] = ACTIONS(2760), + [anon_sym_SEL] = ACTIONS(2760), + [anon_sym_Class] = ACTIONS(2760), + [anon_sym_id] = ACTIONS(2760), + }, + [455] = { + [sym_identifier] = ACTIONS(2712), + [aux_sym_preproc_include_token1] = ACTIONS(2712), + [aux_sym_preproc_include_token2] = ACTIONS(2712), + [aux_sym_preproc_def_token1] = ACTIONS(2712), + [aux_sym_preproc_if_token1] = ACTIONS(2712), + [aux_sym_preproc_if_token2] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2712), + [aux_sym_preproc_else_token1] = ACTIONS(2712), + [aux_sym_preproc_elif_token1] = ACTIONS(2712), + [sym_preproc_directive] = ACTIONS(2712), + [anon_sym_LPAREN2] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_PLUS] = ACTIONS(2712), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_CARET] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym___extension__] = ACTIONS(2712), + [anon_sym_typedef] = ACTIONS(2712), + [anon_sym_extern] = ACTIONS(2712), + [anon_sym___attribute__] = ACTIONS(2712), + [anon_sym___attribute] = ACTIONS(2712), + [anon_sym_noreturn] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym___declspec] = ACTIONS(2712), + [anon_sym___cdecl] = ACTIONS(2712), + [anon_sym___clrcall] = ACTIONS(2712), + [anon_sym___stdcall] = ACTIONS(2712), + [anon_sym___fastcall] = ACTIONS(2712), + [anon_sym___thiscall] = ACTIONS(2712), + [anon_sym___vectorcall] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_signed] = ACTIONS(2712), + [anon_sym_unsigned] = ACTIONS(2712), + [anon_sym_long] = ACTIONS(2712), + [anon_sym_short] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2712), + [anon_sym_ATautoreleasepool] = ACTIONS(2714), + [anon_sym_auto] = ACTIONS(2712), + [anon_sym_register] = ACTIONS(2712), + [anon_sym_inline] = ACTIONS(2712), + [anon_sym___inline] = ACTIONS(2712), + [anon_sym___inline__] = ACTIONS(2712), + [anon_sym___forceinline] = ACTIONS(2712), + [anon_sym_thread_local] = ACTIONS(2712), + [anon_sym___thread] = ACTIONS(2712), + [anon_sym_CG_EXTERN] = ACTIONS(2712), + [anon_sym_CG_INLINE] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2712), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2712), + [anon_sym_IBOutlet] = ACTIONS(2712), + [anon_sym_IBInspectable] = ACTIONS(2712), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2712), + [anon_sym_NS_INLINE] = ACTIONS(2712), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2712), + [anon_sym_OBJC_EXPORT] = ACTIONS(2712), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2712), + [anon_sym_const] = ACTIONS(2712), + [anon_sym_constexpr] = ACTIONS(2712), + [anon_sym_volatile] = ACTIONS(2712), + [anon_sym_restrict] = ACTIONS(2712), + [anon_sym___restrict__] = ACTIONS(2712), + [anon_sym__Atomic] = ACTIONS(2712), + [anon_sym__Noreturn] = ACTIONS(2712), + [anon_sym__Nonnull] = ACTIONS(2712), + [anon_sym_nullable] = ACTIONS(2712), + [anon_sym__Complex] = ACTIONS(2712), + [anon_sym__Nullable] = ACTIONS(2712), + [anon_sym__Nullable_result] = ACTIONS(2712), + [anon_sym__Null_unspecified] = ACTIONS(2712), + [anon_sym___autoreleasing] = ACTIONS(2712), + [anon_sym___block] = ACTIONS(2712), + [anon_sym___bridge] = ACTIONS(2712), + [anon_sym___bridge_retained] = ACTIONS(2712), + [anon_sym___bridge_transfer] = ACTIONS(2712), + [anon_sym___complex] = ACTIONS(2712), + [anon_sym___const] = ACTIONS(2712), + [anon_sym___imag] = ACTIONS(2712), + [anon_sym___kindof] = ACTIONS(2712), + [anon_sym___nonnull] = ACTIONS(2712), + [anon_sym___nullable] = ACTIONS(2712), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2712), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2712), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2712), + [anon_sym___real] = ACTIONS(2712), + [anon_sym___strong] = ACTIONS(2712), + [anon_sym___unsafe_unretained] = ACTIONS(2712), + [anon_sym___unused] = ACTIONS(2712), + [anon_sym___weak] = ACTIONS(2712), + [anon_sym_alignas] = ACTIONS(2712), + [anon_sym__Alignas] = ACTIONS(2712), + [sym_primitive_type] = ACTIONS(2712), + [anon_sym_enum] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_union] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_switch] = ACTIONS(2712), + [anon_sym_case] = ACTIONS(2712), + [anon_sym_default] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_do] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_goto] = ACTIONS(2712), + [anon_sym_DASH_DASH] = ACTIONS(2714), + [anon_sym_PLUS_PLUS] = ACTIONS(2714), + [anon_sym_sizeof] = ACTIONS(2712), + [anon_sym___alignof__] = ACTIONS(2712), + [anon_sym___alignof] = ACTIONS(2712), + [anon_sym__alignof] = ACTIONS(2712), + [anon_sym_alignof] = ACTIONS(2712), + [anon_sym__Alignof] = ACTIONS(2712), + [anon_sym_offsetof] = ACTIONS(2712), + [anon_sym__Generic] = ACTIONS(2712), + [anon_sym_asm] = ACTIONS(2712), + [anon_sym___asm__] = ACTIONS(2712), + [anon_sym___asm] = ACTIONS(2712), + [sym_number_literal] = ACTIONS(2714), + [anon_sym_L_SQUOTE] = ACTIONS(2714), + [anon_sym_u_SQUOTE] = ACTIONS(2714), + [anon_sym_U_SQUOTE] = ACTIONS(2714), + [anon_sym_u8_SQUOTE] = ACTIONS(2714), + [anon_sym_SQUOTE] = ACTIONS(2714), + [anon_sym_AT] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2714), + [anon_sym_L_DQUOTE] = ACTIONS(2714), + [anon_sym_u_DQUOTE] = ACTIONS(2714), + [anon_sym_U_DQUOTE] = ACTIONS(2714), + [anon_sym_u8_DQUOTE] = ACTIONS(2714), + [sym_true] = ACTIONS(2712), + [sym_false] = ACTIONS(2712), + [anon_sym_NULL] = ACTIONS(2712), + [anon_sym_nullptr] = ACTIONS(2712), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2712), + [anon_sym___typeof] = ACTIONS(2712), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_ATimport] = ACTIONS(2714), + [aux_sym_preproc_undef_token1] = ACTIONS(2712), + [anon_sym_POUND] = ACTIONS(2712), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2712), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2712), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2712), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2712), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE] = ACTIONS(2712), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_API_AVAILABLE] = ACTIONS(2712), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_API_DEPRECATED] = ACTIONS(2712), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2712), + [anon_sym___deprecated_msg] = ACTIONS(2712), + [anon_sym___deprecated_enum_msg] = ACTIONS(2712), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2712), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2712), + [anon_sym_ATprotocol] = ACTIONS(2714), + [anon_sym_ATinterface] = ACTIONS(2714), + [anon_sym_ATimplementation] = ACTIONS(2714), + [anon_sym_ATcompatibility_alias] = ACTIONS(2714), + [anon_sym_ATsynthesize] = ACTIONS(2714), + [anon_sym_ATdynamic] = ACTIONS(2714), + [anon_sym_ATtry] = ACTIONS(2714), + [anon_sym___try] = ACTIONS(2712), + [anon_sym_ATthrow] = ACTIONS(2714), + [anon_sym_ATselector] = ACTIONS(2714), + [anon_sym_ATavailable] = ACTIONS(2714), + [anon_sym___builtin_available] = ACTIONS(2712), + [anon_sym_va_arg] = ACTIONS(2712), + [anon_sym_ATencode] = ACTIONS(2714), + [anon_sym_ATsynchronized] = ACTIONS(2714), + [anon_sym_BOOL] = ACTIONS(2712), + [anon_sym_IMP] = ACTIONS(2712), + [anon_sym_SEL] = ACTIONS(2712), + [anon_sym_Class] = ACTIONS(2712), + [anon_sym_id] = ACTIONS(2712), + }, + [456] = { + [sym_identifier] = ACTIONS(2764), + [aux_sym_preproc_include_token1] = ACTIONS(2764), + [aux_sym_preproc_include_token2] = ACTIONS(2764), + [aux_sym_preproc_def_token1] = ACTIONS(2764), + [aux_sym_preproc_if_token1] = ACTIONS(2764), + [aux_sym_preproc_if_token2] = ACTIONS(2764), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2764), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2764), + [aux_sym_preproc_else_token1] = ACTIONS(2764), + [aux_sym_preproc_elif_token1] = ACTIONS(2764), + [sym_preproc_directive] = ACTIONS(2764), + [anon_sym_LPAREN2] = ACTIONS(2766), + [anon_sym_BANG] = ACTIONS(2766), + [anon_sym_TILDE] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2764), + [anon_sym_PLUS] = ACTIONS(2764), + [anon_sym_STAR] = ACTIONS(2766), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2766), + [anon_sym_SEMI] = ACTIONS(2766), + [anon_sym___extension__] = ACTIONS(2764), + [anon_sym_typedef] = ACTIONS(2764), + [anon_sym_extern] = ACTIONS(2764), + [anon_sym___attribute__] = ACTIONS(2764), + [anon_sym___attribute] = ACTIONS(2764), + [anon_sym_noreturn] = ACTIONS(2764), + [anon_sym_LBRACK] = ACTIONS(2766), + [anon_sym___declspec] = ACTIONS(2764), + [anon_sym___cdecl] = ACTIONS(2764), + [anon_sym___clrcall] = ACTIONS(2764), + [anon_sym___stdcall] = ACTIONS(2764), + [anon_sym___fastcall] = ACTIONS(2764), + [anon_sym___thiscall] = ACTIONS(2764), + [anon_sym___vectorcall] = ACTIONS(2764), + [anon_sym_LBRACE] = ACTIONS(2766), + [anon_sym_signed] = ACTIONS(2764), + [anon_sym_unsigned] = ACTIONS(2764), + [anon_sym_long] = ACTIONS(2764), + [anon_sym_short] = ACTIONS(2764), + [anon_sym_static] = ACTIONS(2764), + [anon_sym_ATautoreleasepool] = ACTIONS(2766), + [anon_sym_auto] = ACTIONS(2764), + [anon_sym_register] = ACTIONS(2764), + [anon_sym_inline] = ACTIONS(2764), + [anon_sym___inline] = ACTIONS(2764), + [anon_sym___inline__] = ACTIONS(2764), + [anon_sym___forceinline] = ACTIONS(2764), + [anon_sym_thread_local] = ACTIONS(2764), + [anon_sym___thread] = ACTIONS(2764), + [anon_sym_CG_EXTERN] = ACTIONS(2764), + [anon_sym_CG_INLINE] = ACTIONS(2764), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2764), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2764), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2764), + [anon_sym_IBOutlet] = ACTIONS(2764), + [anon_sym_IBInspectable] = ACTIONS(2764), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2764), + [anon_sym_NS_INLINE] = ACTIONS(2764), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2764), + [anon_sym_OBJC_EXPORT] = ACTIONS(2764), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2764), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2764), + [anon_sym_const] = ACTIONS(2764), + [anon_sym_constexpr] = ACTIONS(2764), + [anon_sym_volatile] = ACTIONS(2764), + [anon_sym_restrict] = ACTIONS(2764), + [anon_sym___restrict__] = ACTIONS(2764), + [anon_sym__Atomic] = ACTIONS(2764), + [anon_sym__Noreturn] = ACTIONS(2764), + [anon_sym__Nonnull] = ACTIONS(2764), + [anon_sym_nullable] = ACTIONS(2764), + [anon_sym__Complex] = ACTIONS(2764), + [anon_sym__Nullable] = ACTIONS(2764), + [anon_sym__Nullable_result] = ACTIONS(2764), + [anon_sym__Null_unspecified] = ACTIONS(2764), + [anon_sym___autoreleasing] = ACTIONS(2764), + [anon_sym___block] = ACTIONS(2764), + [anon_sym___bridge] = ACTIONS(2764), + [anon_sym___bridge_retained] = ACTIONS(2764), + [anon_sym___bridge_transfer] = ACTIONS(2764), + [anon_sym___complex] = ACTIONS(2764), + [anon_sym___const] = ACTIONS(2764), + [anon_sym___imag] = ACTIONS(2764), + [anon_sym___kindof] = ACTIONS(2764), + [anon_sym___nonnull] = ACTIONS(2764), + [anon_sym___nullable] = ACTIONS(2764), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2764), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2764), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2764), + [anon_sym___real] = ACTIONS(2764), + [anon_sym___strong] = ACTIONS(2764), + [anon_sym___unsafe_unretained] = ACTIONS(2764), + [anon_sym___unused] = ACTIONS(2764), + [anon_sym___weak] = ACTIONS(2764), + [anon_sym_alignas] = ACTIONS(2764), + [anon_sym__Alignas] = ACTIONS(2764), + [sym_primitive_type] = ACTIONS(2764), + [anon_sym_enum] = ACTIONS(2764), + [anon_sym_struct] = ACTIONS(2764), + [anon_sym_union] = ACTIONS(2764), + [anon_sym_if] = ACTIONS(2764), + [anon_sym_switch] = ACTIONS(2764), + [anon_sym_case] = ACTIONS(2764), + [anon_sym_default] = ACTIONS(2764), + [anon_sym_while] = ACTIONS(2764), + [anon_sym_do] = ACTIONS(2764), + [anon_sym_for] = ACTIONS(2764), + [anon_sym_in] = ACTIONS(2764), + [anon_sym_return] = ACTIONS(2764), + [anon_sym_break] = ACTIONS(2764), + [anon_sym_continue] = ACTIONS(2764), + [anon_sym_goto] = ACTIONS(2764), + [anon_sym_DASH_DASH] = ACTIONS(2766), + [anon_sym_PLUS_PLUS] = ACTIONS(2766), + [anon_sym_sizeof] = ACTIONS(2764), + [anon_sym___alignof__] = ACTIONS(2764), + [anon_sym___alignof] = ACTIONS(2764), + [anon_sym__alignof] = ACTIONS(2764), + [anon_sym_alignof] = ACTIONS(2764), + [anon_sym__Alignof] = ACTIONS(2764), + [anon_sym_offsetof] = ACTIONS(2764), + [anon_sym__Generic] = ACTIONS(2764), + [anon_sym_asm] = ACTIONS(2764), + [anon_sym___asm__] = ACTIONS(2764), + [anon_sym___asm] = ACTIONS(2764), + [sym_number_literal] = ACTIONS(2766), + [anon_sym_L_SQUOTE] = ACTIONS(2766), + [anon_sym_u_SQUOTE] = ACTIONS(2766), + [anon_sym_U_SQUOTE] = ACTIONS(2766), + [anon_sym_u8_SQUOTE] = ACTIONS(2766), + [anon_sym_SQUOTE] = ACTIONS(2766), + [anon_sym_AT] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2766), + [anon_sym_L_DQUOTE] = ACTIONS(2766), + [anon_sym_u_DQUOTE] = ACTIONS(2766), + [anon_sym_U_DQUOTE] = ACTIONS(2766), + [anon_sym_u8_DQUOTE] = ACTIONS(2766), + [sym_true] = ACTIONS(2764), + [sym_false] = ACTIONS(2764), + [anon_sym_NULL] = ACTIONS(2764), + [anon_sym_nullptr] = ACTIONS(2764), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2764), + [anon_sym___typeof] = ACTIONS(2764), + [anon_sym_typeof] = ACTIONS(2764), + [anon_sym_ATimport] = ACTIONS(2766), + [aux_sym_preproc_undef_token1] = ACTIONS(2764), + [anon_sym_POUND] = ACTIONS(2764), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2764), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2764), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2764), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2764), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2764), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2764), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2764), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2764), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2764), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2764), + [anon_sym_NS_AVAILABLE] = ACTIONS(2764), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2764), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2764), + [anon_sym_API_AVAILABLE] = ACTIONS(2764), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2764), + [anon_sym_API_DEPRECATED] = ACTIONS(2764), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2764), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2764), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2764), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2764), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2764), + [anon_sym___deprecated_msg] = ACTIONS(2764), + [anon_sym___deprecated_enum_msg] = ACTIONS(2764), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2764), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2764), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2764), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2764), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2764), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2764), + [anon_sym_ATprotocol] = ACTIONS(2766), + [anon_sym_ATinterface] = ACTIONS(2766), + [anon_sym_ATimplementation] = ACTIONS(2766), + [anon_sym_ATcompatibility_alias] = ACTIONS(2766), + [anon_sym_ATsynthesize] = ACTIONS(2766), + [anon_sym_ATdynamic] = ACTIONS(2766), + [anon_sym_ATtry] = ACTIONS(2766), + [anon_sym___try] = ACTIONS(2764), + [anon_sym_ATthrow] = ACTIONS(2766), + [anon_sym_ATselector] = ACTIONS(2766), + [anon_sym_ATavailable] = ACTIONS(2766), + [anon_sym___builtin_available] = ACTIONS(2764), + [anon_sym_va_arg] = ACTIONS(2764), + [anon_sym_ATencode] = ACTIONS(2766), + [anon_sym_ATsynchronized] = ACTIONS(2766), + [anon_sym_BOOL] = ACTIONS(2764), + [anon_sym_IMP] = ACTIONS(2764), + [anon_sym_SEL] = ACTIONS(2764), + [anon_sym_Class] = ACTIONS(2764), + [anon_sym_id] = ACTIONS(2764), + }, + [457] = { + [sym_identifier] = ACTIONS(2692), + [aux_sym_preproc_include_token1] = ACTIONS(2692), + [aux_sym_preproc_include_token2] = ACTIONS(2692), + [aux_sym_preproc_def_token1] = ACTIONS(2692), + [aux_sym_preproc_if_token1] = ACTIONS(2692), + [aux_sym_preproc_if_token2] = ACTIONS(2692), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2692), + [aux_sym_preproc_else_token1] = ACTIONS(2692), + [aux_sym_preproc_elif_token1] = ACTIONS(2692), + [sym_preproc_directive] = ACTIONS(2692), + [anon_sym_LPAREN2] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2694), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2692), + [anon_sym_PLUS] = ACTIONS(2692), + [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_CARET] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_SEMI] = ACTIONS(2694), + [anon_sym___extension__] = ACTIONS(2692), + [anon_sym_typedef] = ACTIONS(2692), + [anon_sym_extern] = ACTIONS(2692), + [anon_sym___attribute__] = ACTIONS(2692), + [anon_sym___attribute] = ACTIONS(2692), + [anon_sym_noreturn] = ACTIONS(2692), + [anon_sym_LBRACK] = ACTIONS(2694), + [anon_sym___declspec] = ACTIONS(2692), + [anon_sym___cdecl] = ACTIONS(2692), + [anon_sym___clrcall] = ACTIONS(2692), + [anon_sym___stdcall] = ACTIONS(2692), + [anon_sym___fastcall] = ACTIONS(2692), + [anon_sym___thiscall] = ACTIONS(2692), + [anon_sym___vectorcall] = ACTIONS(2692), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_signed] = ACTIONS(2692), + [anon_sym_unsigned] = ACTIONS(2692), + [anon_sym_long] = ACTIONS(2692), + [anon_sym_short] = ACTIONS(2692), + [anon_sym_static] = ACTIONS(2692), + [anon_sym_ATautoreleasepool] = ACTIONS(2694), + [anon_sym_auto] = ACTIONS(2692), + [anon_sym_register] = ACTIONS(2692), + [anon_sym_inline] = ACTIONS(2692), + [anon_sym___inline] = ACTIONS(2692), + [anon_sym___inline__] = ACTIONS(2692), + [anon_sym___forceinline] = ACTIONS(2692), + [anon_sym_thread_local] = ACTIONS(2692), + [anon_sym___thread] = ACTIONS(2692), + [anon_sym_CG_EXTERN] = ACTIONS(2692), + [anon_sym_CG_INLINE] = ACTIONS(2692), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2692), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2692), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2692), + [anon_sym_IBOutlet] = ACTIONS(2692), + [anon_sym_IBInspectable] = ACTIONS(2692), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2692), + [anon_sym_NS_INLINE] = ACTIONS(2692), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2692), + [anon_sym_OBJC_EXPORT] = ACTIONS(2692), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2692), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2692), + [anon_sym_const] = ACTIONS(2692), + [anon_sym_constexpr] = ACTIONS(2692), + [anon_sym_volatile] = ACTIONS(2692), + [anon_sym_restrict] = ACTIONS(2692), + [anon_sym___restrict__] = ACTIONS(2692), + [anon_sym__Atomic] = ACTIONS(2692), + [anon_sym__Noreturn] = ACTIONS(2692), + [anon_sym__Nonnull] = ACTIONS(2692), + [anon_sym_nullable] = ACTIONS(2692), + [anon_sym__Complex] = ACTIONS(2692), + [anon_sym__Nullable] = ACTIONS(2692), + [anon_sym__Nullable_result] = ACTIONS(2692), + [anon_sym__Null_unspecified] = ACTIONS(2692), + [anon_sym___autoreleasing] = ACTIONS(2692), + [anon_sym___block] = ACTIONS(2692), + [anon_sym___bridge] = ACTIONS(2692), + [anon_sym___bridge_retained] = ACTIONS(2692), + [anon_sym___bridge_transfer] = ACTIONS(2692), + [anon_sym___complex] = ACTIONS(2692), + [anon_sym___const] = ACTIONS(2692), + [anon_sym___imag] = ACTIONS(2692), + [anon_sym___kindof] = ACTIONS(2692), + [anon_sym___nonnull] = ACTIONS(2692), + [anon_sym___nullable] = ACTIONS(2692), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2692), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2692), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2692), + [anon_sym___real] = ACTIONS(2692), + [anon_sym___strong] = ACTIONS(2692), + [anon_sym___unsafe_unretained] = ACTIONS(2692), + [anon_sym___unused] = ACTIONS(2692), + [anon_sym___weak] = ACTIONS(2692), + [anon_sym_alignas] = ACTIONS(2692), + [anon_sym__Alignas] = ACTIONS(2692), + [sym_primitive_type] = ACTIONS(2692), + [anon_sym_enum] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_union] = ACTIONS(2692), + [anon_sym_if] = ACTIONS(2692), + [anon_sym_switch] = ACTIONS(2692), + [anon_sym_case] = ACTIONS(2692), + [anon_sym_default] = ACTIONS(2692), + [anon_sym_while] = ACTIONS(2692), + [anon_sym_do] = ACTIONS(2692), + [anon_sym_for] = ACTIONS(2692), + [anon_sym_in] = ACTIONS(2692), + [anon_sym_return] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_goto] = ACTIONS(2692), + [anon_sym_DASH_DASH] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2694), + [anon_sym_sizeof] = ACTIONS(2692), + [anon_sym___alignof__] = ACTIONS(2692), + [anon_sym___alignof] = ACTIONS(2692), + [anon_sym__alignof] = ACTIONS(2692), + [anon_sym_alignof] = ACTIONS(2692), + [anon_sym__Alignof] = ACTIONS(2692), + [anon_sym_offsetof] = ACTIONS(2692), + [anon_sym__Generic] = ACTIONS(2692), + [anon_sym_asm] = ACTIONS(2692), + [anon_sym___asm__] = ACTIONS(2692), + [anon_sym___asm] = ACTIONS(2692), + [sym_number_literal] = ACTIONS(2694), + [anon_sym_L_SQUOTE] = ACTIONS(2694), + [anon_sym_u_SQUOTE] = ACTIONS(2694), + [anon_sym_U_SQUOTE] = ACTIONS(2694), + [anon_sym_u8_SQUOTE] = ACTIONS(2694), + [anon_sym_SQUOTE] = ACTIONS(2694), + [anon_sym_AT] = ACTIONS(2692), + [anon_sym_DQUOTE] = ACTIONS(2694), + [anon_sym_L_DQUOTE] = ACTIONS(2694), + [anon_sym_u_DQUOTE] = ACTIONS(2694), + [anon_sym_U_DQUOTE] = ACTIONS(2694), + [anon_sym_u8_DQUOTE] = ACTIONS(2694), + [sym_true] = ACTIONS(2692), + [sym_false] = ACTIONS(2692), + [anon_sym_NULL] = ACTIONS(2692), + [anon_sym_nullptr] = ACTIONS(2692), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2692), + [anon_sym___typeof] = ACTIONS(2692), + [anon_sym_typeof] = ACTIONS(2692), + [anon_sym_ATimport] = ACTIONS(2694), + [aux_sym_preproc_undef_token1] = ACTIONS(2692), + [anon_sym_POUND] = ACTIONS(2692), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2692), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2692), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2692), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2692), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2692), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2692), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2692), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2692), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2692), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2692), + [anon_sym_NS_AVAILABLE] = ACTIONS(2692), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2692), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2692), + [anon_sym_API_AVAILABLE] = ACTIONS(2692), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2692), + [anon_sym_API_DEPRECATED] = ACTIONS(2692), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2692), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2692), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2692), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2692), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2692), + [anon_sym___deprecated_msg] = ACTIONS(2692), + [anon_sym___deprecated_enum_msg] = ACTIONS(2692), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2692), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2692), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2692), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2692), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2692), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2692), + [anon_sym_ATprotocol] = ACTIONS(2694), + [anon_sym_ATinterface] = ACTIONS(2694), + [anon_sym_ATimplementation] = ACTIONS(2694), + [anon_sym_ATcompatibility_alias] = ACTIONS(2694), + [anon_sym_ATsynthesize] = ACTIONS(2694), + [anon_sym_ATdynamic] = ACTIONS(2694), + [anon_sym_ATtry] = ACTIONS(2694), + [anon_sym___try] = ACTIONS(2692), + [anon_sym_ATthrow] = ACTIONS(2694), + [anon_sym_ATselector] = ACTIONS(2694), + [anon_sym_ATavailable] = ACTIONS(2694), + [anon_sym___builtin_available] = ACTIONS(2692), + [anon_sym_va_arg] = ACTIONS(2692), + [anon_sym_ATencode] = ACTIONS(2694), + [anon_sym_ATsynchronized] = ACTIONS(2694), + [anon_sym_BOOL] = ACTIONS(2692), + [anon_sym_IMP] = ACTIONS(2692), + [anon_sym_SEL] = ACTIONS(2692), + [anon_sym_Class] = ACTIONS(2692), + [anon_sym_id] = ACTIONS(2692), + }, + [458] = { + [sym_identifier] = ACTIONS(2836), + [aux_sym_preproc_include_token1] = ACTIONS(2836), + [aux_sym_preproc_include_token2] = ACTIONS(2836), + [aux_sym_preproc_def_token1] = ACTIONS(2836), + [aux_sym_preproc_if_token1] = ACTIONS(2836), + [aux_sym_preproc_if_token2] = ACTIONS(2836), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2836), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2836), + [aux_sym_preproc_else_token1] = ACTIONS(2836), + [aux_sym_preproc_elif_token1] = ACTIONS(2836), + [sym_preproc_directive] = ACTIONS(2836), + [anon_sym_LPAREN2] = ACTIONS(2838), + [anon_sym_BANG] = ACTIONS(2838), + [anon_sym_TILDE] = ACTIONS(2838), + [anon_sym_DASH] = ACTIONS(2836), + [anon_sym_PLUS] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2838), + [anon_sym_CARET] = ACTIONS(2838), + [anon_sym_AMP] = ACTIONS(2838), + [anon_sym_SEMI] = ACTIONS(2838), + [anon_sym___extension__] = ACTIONS(2836), + [anon_sym_typedef] = ACTIONS(2836), + [anon_sym_extern] = ACTIONS(2836), + [anon_sym___attribute__] = ACTIONS(2836), + [anon_sym___attribute] = ACTIONS(2836), + [anon_sym_noreturn] = ACTIONS(2836), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym___declspec] = ACTIONS(2836), + [anon_sym___cdecl] = ACTIONS(2836), + [anon_sym___clrcall] = ACTIONS(2836), + [anon_sym___stdcall] = ACTIONS(2836), + [anon_sym___fastcall] = ACTIONS(2836), + [anon_sym___thiscall] = ACTIONS(2836), + [anon_sym___vectorcall] = ACTIONS(2836), + [anon_sym_LBRACE] = ACTIONS(2838), + [anon_sym_signed] = ACTIONS(2836), + [anon_sym_unsigned] = ACTIONS(2836), + [anon_sym_long] = ACTIONS(2836), + [anon_sym_short] = ACTIONS(2836), + [anon_sym_static] = ACTIONS(2836), + [anon_sym_ATautoreleasepool] = ACTIONS(2838), + [anon_sym_auto] = ACTIONS(2836), + [anon_sym_register] = ACTIONS(2836), + [anon_sym_inline] = ACTIONS(2836), + [anon_sym___inline] = ACTIONS(2836), + [anon_sym___inline__] = ACTIONS(2836), + [anon_sym___forceinline] = ACTIONS(2836), + [anon_sym_thread_local] = ACTIONS(2836), + [anon_sym___thread] = ACTIONS(2836), + [anon_sym_CG_EXTERN] = ACTIONS(2836), + [anon_sym_CG_INLINE] = ACTIONS(2836), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2836), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2836), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2836), + [anon_sym_IBOutlet] = ACTIONS(2836), + [anon_sym_IBInspectable] = ACTIONS(2836), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2836), + [anon_sym_NS_INLINE] = ACTIONS(2836), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2836), + [anon_sym_OBJC_EXPORT] = ACTIONS(2836), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2836), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2836), + [anon_sym_const] = ACTIONS(2836), + [anon_sym_constexpr] = ACTIONS(2836), + [anon_sym_volatile] = ACTIONS(2836), + [anon_sym_restrict] = ACTIONS(2836), + [anon_sym___restrict__] = ACTIONS(2836), + [anon_sym__Atomic] = ACTIONS(2836), + [anon_sym__Noreturn] = ACTIONS(2836), + [anon_sym__Nonnull] = ACTIONS(2836), + [anon_sym_nullable] = ACTIONS(2836), + [anon_sym__Complex] = ACTIONS(2836), + [anon_sym__Nullable] = ACTIONS(2836), + [anon_sym__Nullable_result] = ACTIONS(2836), + [anon_sym__Null_unspecified] = ACTIONS(2836), + [anon_sym___autoreleasing] = ACTIONS(2836), + [anon_sym___block] = ACTIONS(2836), + [anon_sym___bridge] = ACTIONS(2836), + [anon_sym___bridge_retained] = ACTIONS(2836), + [anon_sym___bridge_transfer] = ACTIONS(2836), + [anon_sym___complex] = ACTIONS(2836), + [anon_sym___const] = ACTIONS(2836), + [anon_sym___imag] = ACTIONS(2836), + [anon_sym___kindof] = ACTIONS(2836), + [anon_sym___nonnull] = ACTIONS(2836), + [anon_sym___nullable] = ACTIONS(2836), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2836), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2836), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2836), + [anon_sym___real] = ACTIONS(2836), + [anon_sym___strong] = ACTIONS(2836), + [anon_sym___unsafe_unretained] = ACTIONS(2836), + [anon_sym___unused] = ACTIONS(2836), + [anon_sym___weak] = ACTIONS(2836), + [anon_sym_alignas] = ACTIONS(2836), + [anon_sym__Alignas] = ACTIONS(2836), + [sym_primitive_type] = ACTIONS(2836), + [anon_sym_enum] = ACTIONS(2836), + [anon_sym_struct] = ACTIONS(2836), + [anon_sym_union] = ACTIONS(2836), + [anon_sym_if] = ACTIONS(2836), + [anon_sym_switch] = ACTIONS(2836), + [anon_sym_case] = ACTIONS(2836), + [anon_sym_default] = ACTIONS(2836), + [anon_sym_while] = ACTIONS(2836), + [anon_sym_do] = ACTIONS(2836), + [anon_sym_for] = ACTIONS(2836), + [anon_sym_in] = ACTIONS(2836), + [anon_sym_return] = ACTIONS(2836), + [anon_sym_break] = ACTIONS(2836), + [anon_sym_continue] = ACTIONS(2836), + [anon_sym_goto] = ACTIONS(2836), + [anon_sym_DASH_DASH] = ACTIONS(2838), + [anon_sym_PLUS_PLUS] = ACTIONS(2838), + [anon_sym_sizeof] = ACTIONS(2836), + [anon_sym___alignof__] = ACTIONS(2836), + [anon_sym___alignof] = ACTIONS(2836), + [anon_sym__alignof] = ACTIONS(2836), + [anon_sym_alignof] = ACTIONS(2836), + [anon_sym__Alignof] = ACTIONS(2836), + [anon_sym_offsetof] = ACTIONS(2836), + [anon_sym__Generic] = ACTIONS(2836), + [anon_sym_asm] = ACTIONS(2836), + [anon_sym___asm__] = ACTIONS(2836), + [anon_sym___asm] = ACTIONS(2836), + [sym_number_literal] = ACTIONS(2838), + [anon_sym_L_SQUOTE] = ACTIONS(2838), + [anon_sym_u_SQUOTE] = ACTIONS(2838), + [anon_sym_U_SQUOTE] = ACTIONS(2838), + [anon_sym_u8_SQUOTE] = ACTIONS(2838), + [anon_sym_SQUOTE] = ACTIONS(2838), + [anon_sym_AT] = ACTIONS(2836), + [anon_sym_DQUOTE] = ACTIONS(2838), + [anon_sym_L_DQUOTE] = ACTIONS(2838), + [anon_sym_u_DQUOTE] = ACTIONS(2838), + [anon_sym_U_DQUOTE] = ACTIONS(2838), + [anon_sym_u8_DQUOTE] = ACTIONS(2838), + [sym_true] = ACTIONS(2836), + [sym_false] = ACTIONS(2836), + [anon_sym_NULL] = ACTIONS(2836), + [anon_sym_nullptr] = ACTIONS(2836), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2836), + [anon_sym___typeof] = ACTIONS(2836), + [anon_sym_typeof] = ACTIONS(2836), + [anon_sym_ATimport] = ACTIONS(2838), + [aux_sym_preproc_undef_token1] = ACTIONS(2836), + [anon_sym_POUND] = ACTIONS(2836), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2836), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2836), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2836), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2836), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2836), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2836), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2836), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2836), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2836), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2836), + [anon_sym_NS_AVAILABLE] = ACTIONS(2836), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2836), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2836), + [anon_sym_API_AVAILABLE] = ACTIONS(2836), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2836), + [anon_sym_API_DEPRECATED] = ACTIONS(2836), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2836), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2836), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2836), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2836), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2836), + [anon_sym___deprecated_msg] = ACTIONS(2836), + [anon_sym___deprecated_enum_msg] = ACTIONS(2836), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2836), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2836), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2836), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2836), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2836), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2836), + [anon_sym_ATprotocol] = ACTIONS(2838), + [anon_sym_ATinterface] = ACTIONS(2838), + [anon_sym_ATimplementation] = ACTIONS(2838), + [anon_sym_ATcompatibility_alias] = ACTIONS(2838), + [anon_sym_ATsynthesize] = ACTIONS(2838), + [anon_sym_ATdynamic] = ACTIONS(2838), + [anon_sym_ATtry] = ACTIONS(2838), + [anon_sym___try] = ACTIONS(2836), + [anon_sym_ATthrow] = ACTIONS(2838), + [anon_sym_ATselector] = ACTIONS(2838), + [anon_sym_ATavailable] = ACTIONS(2838), + [anon_sym___builtin_available] = ACTIONS(2836), + [anon_sym_va_arg] = ACTIONS(2836), + [anon_sym_ATencode] = ACTIONS(2838), + [anon_sym_ATsynchronized] = ACTIONS(2838), + [anon_sym_BOOL] = ACTIONS(2836), + [anon_sym_IMP] = ACTIONS(2836), + [anon_sym_SEL] = ACTIONS(2836), + [anon_sym_Class] = ACTIONS(2836), + [anon_sym_id] = ACTIONS(2836), + }, + [459] = { + [sym_identifier] = ACTIONS(2868), + [aux_sym_preproc_include_token1] = ACTIONS(2868), + [aux_sym_preproc_include_token2] = ACTIONS(2868), + [aux_sym_preproc_def_token1] = ACTIONS(2868), + [aux_sym_preproc_if_token1] = ACTIONS(2868), + [aux_sym_preproc_if_token2] = ACTIONS(2868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2868), + [aux_sym_preproc_else_token1] = ACTIONS(2868), + [aux_sym_preproc_elif_token1] = ACTIONS(2868), + [sym_preproc_directive] = ACTIONS(2868), + [anon_sym_LPAREN2] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_CARET] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym___extension__] = ACTIONS(2868), + [anon_sym_typedef] = ACTIONS(2868), + [anon_sym_extern] = ACTIONS(2868), + [anon_sym___attribute__] = ACTIONS(2868), + [anon_sym___attribute] = ACTIONS(2868), + [anon_sym_noreturn] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2870), + [anon_sym___declspec] = ACTIONS(2868), + [anon_sym___cdecl] = ACTIONS(2868), + [anon_sym___clrcall] = ACTIONS(2868), + [anon_sym___stdcall] = ACTIONS(2868), + [anon_sym___fastcall] = ACTIONS(2868), + [anon_sym___thiscall] = ACTIONS(2868), + [anon_sym___vectorcall] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_signed] = ACTIONS(2868), + [anon_sym_unsigned] = ACTIONS(2868), + [anon_sym_long] = ACTIONS(2868), + [anon_sym_short] = ACTIONS(2868), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_ATautoreleasepool] = ACTIONS(2870), + [anon_sym_auto] = ACTIONS(2868), + [anon_sym_register] = ACTIONS(2868), + [anon_sym_inline] = ACTIONS(2868), + [anon_sym___inline] = ACTIONS(2868), + [anon_sym___inline__] = ACTIONS(2868), + [anon_sym___forceinline] = ACTIONS(2868), + [anon_sym_thread_local] = ACTIONS(2868), + [anon_sym___thread] = ACTIONS(2868), + [anon_sym_CG_EXTERN] = ACTIONS(2868), + [anon_sym_CG_INLINE] = ACTIONS(2868), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2868), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2868), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2868), + [anon_sym_IBOutlet] = ACTIONS(2868), + [anon_sym_IBInspectable] = ACTIONS(2868), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2868), + [anon_sym_NS_INLINE] = ACTIONS(2868), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2868), + [anon_sym_OBJC_EXPORT] = ACTIONS(2868), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2868), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2868), + [anon_sym_const] = ACTIONS(2868), + [anon_sym_constexpr] = ACTIONS(2868), + [anon_sym_volatile] = ACTIONS(2868), + [anon_sym_restrict] = ACTIONS(2868), + [anon_sym___restrict__] = ACTIONS(2868), + [anon_sym__Atomic] = ACTIONS(2868), + [anon_sym__Noreturn] = ACTIONS(2868), + [anon_sym__Nonnull] = ACTIONS(2868), + [anon_sym_nullable] = ACTIONS(2868), + [anon_sym__Complex] = ACTIONS(2868), + [anon_sym__Nullable] = ACTIONS(2868), + [anon_sym__Nullable_result] = ACTIONS(2868), + [anon_sym__Null_unspecified] = ACTIONS(2868), + [anon_sym___autoreleasing] = ACTIONS(2868), + [anon_sym___block] = ACTIONS(2868), + [anon_sym___bridge] = ACTIONS(2868), + [anon_sym___bridge_retained] = ACTIONS(2868), + [anon_sym___bridge_transfer] = ACTIONS(2868), + [anon_sym___complex] = ACTIONS(2868), + [anon_sym___const] = ACTIONS(2868), + [anon_sym___imag] = ACTIONS(2868), + [anon_sym___kindof] = ACTIONS(2868), + [anon_sym___nonnull] = ACTIONS(2868), + [anon_sym___nullable] = ACTIONS(2868), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2868), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2868), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2868), + [anon_sym___real] = ACTIONS(2868), + [anon_sym___strong] = ACTIONS(2868), + [anon_sym___unsafe_unretained] = ACTIONS(2868), + [anon_sym___unused] = ACTIONS(2868), + [anon_sym___weak] = ACTIONS(2868), + [anon_sym_alignas] = ACTIONS(2868), + [anon_sym__Alignas] = ACTIONS(2868), + [sym_primitive_type] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2868), + [anon_sym_union] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_switch] = ACTIONS(2868), + [anon_sym_case] = ACTIONS(2868), + [anon_sym_default] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_in] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_goto] = ACTIONS(2868), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_sizeof] = ACTIONS(2868), + [anon_sym___alignof__] = ACTIONS(2868), + [anon_sym___alignof] = ACTIONS(2868), + [anon_sym__alignof] = ACTIONS(2868), + [anon_sym_alignof] = ACTIONS(2868), + [anon_sym__Alignof] = ACTIONS(2868), + [anon_sym_offsetof] = ACTIONS(2868), + [anon_sym__Generic] = ACTIONS(2868), + [anon_sym_asm] = ACTIONS(2868), + [anon_sym___asm__] = ACTIONS(2868), + [anon_sym___asm] = ACTIONS(2868), + [sym_number_literal] = ACTIONS(2870), + [anon_sym_L_SQUOTE] = ACTIONS(2870), + [anon_sym_u_SQUOTE] = ACTIONS(2870), + [anon_sym_U_SQUOTE] = ACTIONS(2870), + [anon_sym_u8_SQUOTE] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_AT] = ACTIONS(2868), + [anon_sym_DQUOTE] = ACTIONS(2870), + [anon_sym_L_DQUOTE] = ACTIONS(2870), + [anon_sym_u_DQUOTE] = ACTIONS(2870), + [anon_sym_U_DQUOTE] = ACTIONS(2870), + [anon_sym_u8_DQUOTE] = ACTIONS(2870), + [sym_true] = ACTIONS(2868), + [sym_false] = ACTIONS(2868), + [anon_sym_NULL] = ACTIONS(2868), + [anon_sym_nullptr] = ACTIONS(2868), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2868), + [anon_sym___typeof] = ACTIONS(2868), + [anon_sym_typeof] = ACTIONS(2868), + [anon_sym_ATimport] = ACTIONS(2870), + [aux_sym_preproc_undef_token1] = ACTIONS(2868), + [anon_sym_POUND] = ACTIONS(2868), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2868), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2868), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2868), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2868), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2868), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2868), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2868), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2868), + [anon_sym_NS_AVAILABLE] = ACTIONS(2868), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_API_AVAILABLE] = ACTIONS(2868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_API_DEPRECATED] = ACTIONS(2868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2868), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2868), + [anon_sym___deprecated_msg] = ACTIONS(2868), + [anon_sym___deprecated_enum_msg] = ACTIONS(2868), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2868), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2868), + [anon_sym_ATprotocol] = ACTIONS(2870), + [anon_sym_ATinterface] = ACTIONS(2870), + [anon_sym_ATimplementation] = ACTIONS(2870), + [anon_sym_ATcompatibility_alias] = ACTIONS(2870), + [anon_sym_ATsynthesize] = ACTIONS(2870), + [anon_sym_ATdynamic] = ACTIONS(2870), + [anon_sym_ATtry] = ACTIONS(2870), + [anon_sym___try] = ACTIONS(2868), + [anon_sym_ATthrow] = ACTIONS(2870), + [anon_sym_ATselector] = ACTIONS(2870), + [anon_sym_ATavailable] = ACTIONS(2870), + [anon_sym___builtin_available] = ACTIONS(2868), + [anon_sym_va_arg] = ACTIONS(2868), + [anon_sym_ATencode] = ACTIONS(2870), + [anon_sym_ATsynchronized] = ACTIONS(2870), + [anon_sym_BOOL] = ACTIONS(2868), + [anon_sym_IMP] = ACTIONS(2868), + [anon_sym_SEL] = ACTIONS(2868), + [anon_sym_Class] = ACTIONS(2868), + [anon_sym_id] = ACTIONS(2868), + }, + [460] = { + [sym_identifier] = ACTIONS(2576), + [aux_sym_preproc_include_token1] = ACTIONS(2576), + [aux_sym_preproc_include_token2] = ACTIONS(2576), + [aux_sym_preproc_def_token1] = ACTIONS(2576), + [aux_sym_preproc_if_token1] = ACTIONS(2576), + [aux_sym_preproc_if_token2] = ACTIONS(2576), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2576), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2576), + [aux_sym_preproc_else_token1] = ACTIONS(2576), + [aux_sym_preproc_elif_token1] = ACTIONS(2576), + [sym_preproc_directive] = ACTIONS(2576), + [anon_sym_LPAREN2] = ACTIONS(2578), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_CARET] = ACTIONS(2578), + [anon_sym_AMP] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym___extension__] = ACTIONS(2576), + [anon_sym_typedef] = ACTIONS(2576), + [anon_sym_extern] = ACTIONS(2576), + [anon_sym___attribute__] = ACTIONS(2576), + [anon_sym___attribute] = ACTIONS(2576), + [anon_sym_noreturn] = ACTIONS(2576), + [anon_sym_LBRACK] = ACTIONS(2578), + [anon_sym___declspec] = ACTIONS(2576), + [anon_sym___cdecl] = ACTIONS(2576), + [anon_sym___clrcall] = ACTIONS(2576), + [anon_sym___stdcall] = ACTIONS(2576), + [anon_sym___fastcall] = ACTIONS(2576), + [anon_sym___thiscall] = ACTIONS(2576), + [anon_sym___vectorcall] = ACTIONS(2576), + [anon_sym_LBRACE] = ACTIONS(2578), + [anon_sym_signed] = ACTIONS(2576), + [anon_sym_unsigned] = ACTIONS(2576), + [anon_sym_long] = ACTIONS(2576), + [anon_sym_short] = ACTIONS(2576), + [anon_sym_static] = ACTIONS(2576), + [anon_sym_ATautoreleasepool] = ACTIONS(2578), + [anon_sym_auto] = ACTIONS(2576), + [anon_sym_register] = ACTIONS(2576), + [anon_sym_inline] = ACTIONS(2576), + [anon_sym___inline] = ACTIONS(2576), + [anon_sym___inline__] = ACTIONS(2576), + [anon_sym___forceinline] = ACTIONS(2576), + [anon_sym_thread_local] = ACTIONS(2576), + [anon_sym___thread] = ACTIONS(2576), + [anon_sym_CG_EXTERN] = ACTIONS(2576), + [anon_sym_CG_INLINE] = ACTIONS(2576), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2576), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2576), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2576), + [anon_sym_IBOutlet] = ACTIONS(2576), + [anon_sym_IBInspectable] = ACTIONS(2576), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2576), + [anon_sym_NS_INLINE] = ACTIONS(2576), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2576), + [anon_sym_OBJC_EXPORT] = ACTIONS(2576), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2576), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2576), + [anon_sym_const] = ACTIONS(2576), + [anon_sym_constexpr] = ACTIONS(2576), + [anon_sym_volatile] = ACTIONS(2576), + [anon_sym_restrict] = ACTIONS(2576), + [anon_sym___restrict__] = ACTIONS(2576), + [anon_sym__Atomic] = ACTIONS(2576), + [anon_sym__Noreturn] = ACTIONS(2576), + [anon_sym__Nonnull] = ACTIONS(2576), + [anon_sym_nullable] = ACTIONS(2576), + [anon_sym__Complex] = ACTIONS(2576), + [anon_sym__Nullable] = ACTIONS(2576), + [anon_sym__Nullable_result] = ACTIONS(2576), + [anon_sym__Null_unspecified] = ACTIONS(2576), + [anon_sym___autoreleasing] = ACTIONS(2576), + [anon_sym___block] = ACTIONS(2576), + [anon_sym___bridge] = ACTIONS(2576), + [anon_sym___bridge_retained] = ACTIONS(2576), + [anon_sym___bridge_transfer] = ACTIONS(2576), + [anon_sym___complex] = ACTIONS(2576), + [anon_sym___const] = ACTIONS(2576), + [anon_sym___imag] = ACTIONS(2576), + [anon_sym___kindof] = ACTIONS(2576), + [anon_sym___nonnull] = ACTIONS(2576), + [anon_sym___nullable] = ACTIONS(2576), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2576), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2576), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2576), + [anon_sym___real] = ACTIONS(2576), + [anon_sym___strong] = ACTIONS(2576), + [anon_sym___unsafe_unretained] = ACTIONS(2576), + [anon_sym___unused] = ACTIONS(2576), + [anon_sym___weak] = ACTIONS(2576), + [anon_sym_alignas] = ACTIONS(2576), + [anon_sym__Alignas] = ACTIONS(2576), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2576), + [anon_sym_struct] = ACTIONS(2576), + [anon_sym_union] = ACTIONS(2576), + [anon_sym_if] = ACTIONS(2576), + [anon_sym_switch] = ACTIONS(2576), + [anon_sym_case] = ACTIONS(2576), + [anon_sym_default] = ACTIONS(2576), + [anon_sym_while] = ACTIONS(2576), + [anon_sym_do] = ACTIONS(2576), + [anon_sym_for] = ACTIONS(2576), + [anon_sym_in] = ACTIONS(2576), + [anon_sym_return] = ACTIONS(2576), + [anon_sym_break] = ACTIONS(2576), + [anon_sym_continue] = ACTIONS(2576), + [anon_sym_goto] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(2578), + [anon_sym_PLUS_PLUS] = ACTIONS(2578), + [anon_sym_sizeof] = ACTIONS(2576), + [anon_sym___alignof__] = ACTIONS(2576), + [anon_sym___alignof] = ACTIONS(2576), + [anon_sym__alignof] = ACTIONS(2576), + [anon_sym_alignof] = ACTIONS(2576), + [anon_sym__Alignof] = ACTIONS(2576), + [anon_sym_offsetof] = ACTIONS(2576), + [anon_sym__Generic] = ACTIONS(2576), + [anon_sym_asm] = ACTIONS(2576), + [anon_sym___asm__] = ACTIONS(2576), + [anon_sym___asm] = ACTIONS(2576), + [sym_number_literal] = ACTIONS(2578), + [anon_sym_L_SQUOTE] = ACTIONS(2578), + [anon_sym_u_SQUOTE] = ACTIONS(2578), + [anon_sym_U_SQUOTE] = ACTIONS(2578), + [anon_sym_u8_SQUOTE] = ACTIONS(2578), + [anon_sym_SQUOTE] = ACTIONS(2578), + [anon_sym_AT] = ACTIONS(2576), + [anon_sym_DQUOTE] = ACTIONS(2578), + [anon_sym_L_DQUOTE] = ACTIONS(2578), + [anon_sym_u_DQUOTE] = ACTIONS(2578), + [anon_sym_U_DQUOTE] = ACTIONS(2578), + [anon_sym_u8_DQUOTE] = ACTIONS(2578), + [sym_true] = ACTIONS(2576), + [sym_false] = ACTIONS(2576), + [anon_sym_NULL] = ACTIONS(2576), + [anon_sym_nullptr] = ACTIONS(2576), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2576), + [anon_sym___typeof] = ACTIONS(2576), + [anon_sym_typeof] = ACTIONS(2576), + [anon_sym_ATimport] = ACTIONS(2578), + [aux_sym_preproc_undef_token1] = ACTIONS(2576), + [anon_sym_POUND] = ACTIONS(2576), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2576), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2576), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2576), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2576), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2576), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2576), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2576), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2576), + [anon_sym_NS_AVAILABLE] = ACTIONS(2576), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2576), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_API_AVAILABLE] = ACTIONS(2576), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_API_DEPRECATED] = ACTIONS(2576), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2576), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2576), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2576), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2576), + [anon_sym___deprecated_msg] = ACTIONS(2576), + [anon_sym___deprecated_enum_msg] = ACTIONS(2576), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2576), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2576), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2576), + [anon_sym_ATprotocol] = ACTIONS(2578), + [anon_sym_ATinterface] = ACTIONS(2578), + [anon_sym_ATimplementation] = ACTIONS(2578), + [anon_sym_ATcompatibility_alias] = ACTIONS(2578), + [anon_sym_ATsynthesize] = ACTIONS(2578), + [anon_sym_ATdynamic] = ACTIONS(2578), + [anon_sym_ATtry] = ACTIONS(2578), + [anon_sym___try] = ACTIONS(2576), + [anon_sym_ATthrow] = ACTIONS(2578), + [anon_sym_ATselector] = ACTIONS(2578), + [anon_sym_ATavailable] = ACTIONS(2578), + [anon_sym___builtin_available] = ACTIONS(2576), + [anon_sym_va_arg] = ACTIONS(2576), + [anon_sym_ATencode] = ACTIONS(2578), + [anon_sym_ATsynchronized] = ACTIONS(2578), + [anon_sym_BOOL] = ACTIONS(2576), + [anon_sym_IMP] = ACTIONS(2576), + [anon_sym_SEL] = ACTIONS(2576), + [anon_sym_Class] = ACTIONS(2576), + [anon_sym_id] = ACTIONS(2576), + }, + [461] = { + [sym_identifier] = ACTIONS(2828), + [aux_sym_preproc_include_token1] = ACTIONS(2828), + [aux_sym_preproc_include_token2] = ACTIONS(2828), + [aux_sym_preproc_def_token1] = ACTIONS(2828), + [aux_sym_preproc_if_token1] = ACTIONS(2828), + [aux_sym_preproc_if_token2] = ACTIONS(2828), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2828), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2828), + [aux_sym_preproc_else_token1] = ACTIONS(2828), + [aux_sym_preproc_elif_token1] = ACTIONS(2828), + [sym_preproc_directive] = ACTIONS(2828), + [anon_sym_LPAREN2] = ACTIONS(2830), + [anon_sym_BANG] = ACTIONS(2830), + [anon_sym_TILDE] = ACTIONS(2830), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_PLUS] = ACTIONS(2828), + [anon_sym_STAR] = ACTIONS(2830), + [anon_sym_CARET] = ACTIONS(2830), + [anon_sym_AMP] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym___extension__] = ACTIONS(2828), + [anon_sym_typedef] = ACTIONS(2828), + [anon_sym_extern] = ACTIONS(2828), + [anon_sym___attribute__] = ACTIONS(2828), + [anon_sym___attribute] = ACTIONS(2828), + [anon_sym_noreturn] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym___declspec] = ACTIONS(2828), + [anon_sym___cdecl] = ACTIONS(2828), + [anon_sym___clrcall] = ACTIONS(2828), + [anon_sym___stdcall] = ACTIONS(2828), + [anon_sym___fastcall] = ACTIONS(2828), + [anon_sym___thiscall] = ACTIONS(2828), + [anon_sym___vectorcall] = ACTIONS(2828), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_signed] = ACTIONS(2828), + [anon_sym_unsigned] = ACTIONS(2828), + [anon_sym_long] = ACTIONS(2828), + [anon_sym_short] = ACTIONS(2828), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_ATautoreleasepool] = ACTIONS(2830), + [anon_sym_auto] = ACTIONS(2828), + [anon_sym_register] = ACTIONS(2828), + [anon_sym_inline] = ACTIONS(2828), + [anon_sym___inline] = ACTIONS(2828), + [anon_sym___inline__] = ACTIONS(2828), + [anon_sym___forceinline] = ACTIONS(2828), + [anon_sym_thread_local] = ACTIONS(2828), + [anon_sym___thread] = ACTIONS(2828), + [anon_sym_CG_EXTERN] = ACTIONS(2828), + [anon_sym_CG_INLINE] = ACTIONS(2828), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2828), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2828), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2828), + [anon_sym_IBOutlet] = ACTIONS(2828), + [anon_sym_IBInspectable] = ACTIONS(2828), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2828), + [anon_sym_NS_INLINE] = ACTIONS(2828), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2828), + [anon_sym_OBJC_EXPORT] = ACTIONS(2828), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2828), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2828), + [anon_sym_const] = ACTIONS(2828), + [anon_sym_constexpr] = ACTIONS(2828), + [anon_sym_volatile] = ACTIONS(2828), + [anon_sym_restrict] = ACTIONS(2828), + [anon_sym___restrict__] = ACTIONS(2828), + [anon_sym__Atomic] = ACTIONS(2828), + [anon_sym__Noreturn] = ACTIONS(2828), + [anon_sym__Nonnull] = ACTIONS(2828), + [anon_sym_nullable] = ACTIONS(2828), + [anon_sym__Complex] = ACTIONS(2828), + [anon_sym__Nullable] = ACTIONS(2828), + [anon_sym__Nullable_result] = ACTIONS(2828), + [anon_sym__Null_unspecified] = ACTIONS(2828), + [anon_sym___autoreleasing] = ACTIONS(2828), + [anon_sym___block] = ACTIONS(2828), + [anon_sym___bridge] = ACTIONS(2828), + [anon_sym___bridge_retained] = ACTIONS(2828), + [anon_sym___bridge_transfer] = ACTIONS(2828), + [anon_sym___complex] = ACTIONS(2828), + [anon_sym___const] = ACTIONS(2828), + [anon_sym___imag] = ACTIONS(2828), + [anon_sym___kindof] = ACTIONS(2828), + [anon_sym___nonnull] = ACTIONS(2828), + [anon_sym___nullable] = ACTIONS(2828), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2828), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2828), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2828), + [anon_sym___real] = ACTIONS(2828), + [anon_sym___strong] = ACTIONS(2828), + [anon_sym___unsafe_unretained] = ACTIONS(2828), + [anon_sym___unused] = ACTIONS(2828), + [anon_sym___weak] = ACTIONS(2828), + [anon_sym_alignas] = ACTIONS(2828), + [anon_sym__Alignas] = ACTIONS(2828), + [sym_primitive_type] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [anon_sym_struct] = ACTIONS(2828), + [anon_sym_union] = ACTIONS(2828), + [anon_sym_if] = ACTIONS(2828), + [anon_sym_switch] = ACTIONS(2828), + [anon_sym_case] = ACTIONS(2828), + [anon_sym_default] = ACTIONS(2828), + [anon_sym_while] = ACTIONS(2828), + [anon_sym_do] = ACTIONS(2828), + [anon_sym_for] = ACTIONS(2828), + [anon_sym_in] = ACTIONS(2828), + [anon_sym_return] = ACTIONS(2828), + [anon_sym_break] = ACTIONS(2828), + [anon_sym_continue] = ACTIONS(2828), + [anon_sym_goto] = ACTIONS(2828), + [anon_sym_DASH_DASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2830), + [anon_sym_sizeof] = ACTIONS(2828), + [anon_sym___alignof__] = ACTIONS(2828), + [anon_sym___alignof] = ACTIONS(2828), + [anon_sym__alignof] = ACTIONS(2828), + [anon_sym_alignof] = ACTIONS(2828), + [anon_sym__Alignof] = ACTIONS(2828), + [anon_sym_offsetof] = ACTIONS(2828), + [anon_sym__Generic] = ACTIONS(2828), + [anon_sym_asm] = ACTIONS(2828), + [anon_sym___asm__] = ACTIONS(2828), + [anon_sym___asm] = ACTIONS(2828), + [sym_number_literal] = ACTIONS(2830), + [anon_sym_L_SQUOTE] = ACTIONS(2830), + [anon_sym_u_SQUOTE] = ACTIONS(2830), + [anon_sym_U_SQUOTE] = ACTIONS(2830), + [anon_sym_u8_SQUOTE] = ACTIONS(2830), + [anon_sym_SQUOTE] = ACTIONS(2830), + [anon_sym_AT] = ACTIONS(2828), + [anon_sym_DQUOTE] = ACTIONS(2830), + [anon_sym_L_DQUOTE] = ACTIONS(2830), + [anon_sym_u_DQUOTE] = ACTIONS(2830), + [anon_sym_U_DQUOTE] = ACTIONS(2830), + [anon_sym_u8_DQUOTE] = ACTIONS(2830), + [sym_true] = ACTIONS(2828), + [sym_false] = ACTIONS(2828), + [anon_sym_NULL] = ACTIONS(2828), + [anon_sym_nullptr] = ACTIONS(2828), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2828), + [anon_sym___typeof] = ACTIONS(2828), + [anon_sym_typeof] = ACTIONS(2828), + [anon_sym_ATimport] = ACTIONS(2830), + [aux_sym_preproc_undef_token1] = ACTIONS(2828), + [anon_sym_POUND] = ACTIONS(2828), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2828), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2828), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2828), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2828), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2828), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2828), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2828), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2828), + [anon_sym_NS_AVAILABLE] = ACTIONS(2828), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2828), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_API_AVAILABLE] = ACTIONS(2828), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_API_DEPRECATED] = ACTIONS(2828), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2828), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2828), + [anon_sym___deprecated_msg] = ACTIONS(2828), + [anon_sym___deprecated_enum_msg] = ACTIONS(2828), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2828), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2828), + [anon_sym_ATprotocol] = ACTIONS(2830), + [anon_sym_ATinterface] = ACTIONS(2830), + [anon_sym_ATimplementation] = ACTIONS(2830), + [anon_sym_ATcompatibility_alias] = ACTIONS(2830), + [anon_sym_ATsynthesize] = ACTIONS(2830), + [anon_sym_ATdynamic] = ACTIONS(2830), + [anon_sym_ATtry] = ACTIONS(2830), + [anon_sym___try] = ACTIONS(2828), + [anon_sym_ATthrow] = ACTIONS(2830), + [anon_sym_ATselector] = ACTIONS(2830), + [anon_sym_ATavailable] = ACTIONS(2830), + [anon_sym___builtin_available] = ACTIONS(2828), + [anon_sym_va_arg] = ACTIONS(2828), + [anon_sym_ATencode] = ACTIONS(2830), + [anon_sym_ATsynchronized] = ACTIONS(2830), + [anon_sym_BOOL] = ACTIONS(2828), + [anon_sym_IMP] = ACTIONS(2828), + [anon_sym_SEL] = ACTIONS(2828), + [anon_sym_Class] = ACTIONS(2828), + [anon_sym_id] = ACTIONS(2828), + }, + [462] = { + [sym_identifier] = ACTIONS(2872), + [aux_sym_preproc_include_token1] = ACTIONS(2872), + [aux_sym_preproc_include_token2] = ACTIONS(2872), + [aux_sym_preproc_def_token1] = ACTIONS(2872), + [aux_sym_preproc_if_token1] = ACTIONS(2872), + [aux_sym_preproc_if_token2] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2872), + [aux_sym_preproc_else_token1] = ACTIONS(2872), + [aux_sym_preproc_elif_token1] = ACTIONS(2872), + [sym_preproc_directive] = ACTIONS(2872), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_CARET] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2874), + [anon_sym___extension__] = ACTIONS(2872), + [anon_sym_typedef] = ACTIONS(2872), + [anon_sym_extern] = ACTIONS(2872), + [anon_sym___attribute__] = ACTIONS(2872), + [anon_sym___attribute] = ACTIONS(2872), + [anon_sym_noreturn] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2874), + [anon_sym___declspec] = ACTIONS(2872), + [anon_sym___cdecl] = ACTIONS(2872), + [anon_sym___clrcall] = ACTIONS(2872), + [anon_sym___stdcall] = ACTIONS(2872), + [anon_sym___fastcall] = ACTIONS(2872), + [anon_sym___thiscall] = ACTIONS(2872), + [anon_sym___vectorcall] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_signed] = ACTIONS(2872), + [anon_sym_unsigned] = ACTIONS(2872), + [anon_sym_long] = ACTIONS(2872), + [anon_sym_short] = ACTIONS(2872), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_ATautoreleasepool] = ACTIONS(2874), + [anon_sym_auto] = ACTIONS(2872), + [anon_sym_register] = ACTIONS(2872), + [anon_sym_inline] = ACTIONS(2872), + [anon_sym___inline] = ACTIONS(2872), + [anon_sym___inline__] = ACTIONS(2872), + [anon_sym___forceinline] = ACTIONS(2872), + [anon_sym_thread_local] = ACTIONS(2872), + [anon_sym___thread] = ACTIONS(2872), + [anon_sym_CG_EXTERN] = ACTIONS(2872), + [anon_sym_CG_INLINE] = ACTIONS(2872), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2872), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2872), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2872), + [anon_sym_IBOutlet] = ACTIONS(2872), + [anon_sym_IBInspectable] = ACTIONS(2872), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2872), + [anon_sym_NS_INLINE] = ACTIONS(2872), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2872), + [anon_sym_OBJC_EXPORT] = ACTIONS(2872), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2872), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2872), + [anon_sym_const] = ACTIONS(2872), + [anon_sym_constexpr] = ACTIONS(2872), + [anon_sym_volatile] = ACTIONS(2872), + [anon_sym_restrict] = ACTIONS(2872), + [anon_sym___restrict__] = ACTIONS(2872), + [anon_sym__Atomic] = ACTIONS(2872), + [anon_sym__Noreturn] = ACTIONS(2872), + [anon_sym__Nonnull] = ACTIONS(2872), + [anon_sym_nullable] = ACTIONS(2872), + [anon_sym__Complex] = ACTIONS(2872), + [anon_sym__Nullable] = ACTIONS(2872), + [anon_sym__Nullable_result] = ACTIONS(2872), + [anon_sym__Null_unspecified] = ACTIONS(2872), + [anon_sym___autoreleasing] = ACTIONS(2872), + [anon_sym___block] = ACTIONS(2872), + [anon_sym___bridge] = ACTIONS(2872), + [anon_sym___bridge_retained] = ACTIONS(2872), + [anon_sym___bridge_transfer] = ACTIONS(2872), + [anon_sym___complex] = ACTIONS(2872), + [anon_sym___const] = ACTIONS(2872), + [anon_sym___imag] = ACTIONS(2872), + [anon_sym___kindof] = ACTIONS(2872), + [anon_sym___nonnull] = ACTIONS(2872), + [anon_sym___nullable] = ACTIONS(2872), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2872), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2872), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2872), + [anon_sym___real] = ACTIONS(2872), + [anon_sym___strong] = ACTIONS(2872), + [anon_sym___unsafe_unretained] = ACTIONS(2872), + [anon_sym___unused] = ACTIONS(2872), + [anon_sym___weak] = ACTIONS(2872), + [anon_sym_alignas] = ACTIONS(2872), + [anon_sym__Alignas] = ACTIONS(2872), + [sym_primitive_type] = ACTIONS(2872), + [anon_sym_enum] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2872), + [anon_sym_union] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_switch] = ACTIONS(2872), + [anon_sym_case] = ACTIONS(2872), + [anon_sym_default] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_in] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_break] = ACTIONS(2872), + [anon_sym_continue] = ACTIONS(2872), + [anon_sym_goto] = ACTIONS(2872), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_sizeof] = ACTIONS(2872), + [anon_sym___alignof__] = ACTIONS(2872), + [anon_sym___alignof] = ACTIONS(2872), + [anon_sym__alignof] = ACTIONS(2872), + [anon_sym_alignof] = ACTIONS(2872), + [anon_sym__Alignof] = ACTIONS(2872), + [anon_sym_offsetof] = ACTIONS(2872), + [anon_sym__Generic] = ACTIONS(2872), + [anon_sym_asm] = ACTIONS(2872), + [anon_sym___asm__] = ACTIONS(2872), + [anon_sym___asm] = ACTIONS(2872), + [sym_number_literal] = ACTIONS(2874), + [anon_sym_L_SQUOTE] = ACTIONS(2874), + [anon_sym_u_SQUOTE] = ACTIONS(2874), + [anon_sym_U_SQUOTE] = ACTIONS(2874), + [anon_sym_u8_SQUOTE] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_AT] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(2874), + [anon_sym_L_DQUOTE] = ACTIONS(2874), + [anon_sym_u_DQUOTE] = ACTIONS(2874), + [anon_sym_U_DQUOTE] = ACTIONS(2874), + [anon_sym_u8_DQUOTE] = ACTIONS(2874), + [sym_true] = ACTIONS(2872), + [sym_false] = ACTIONS(2872), + [anon_sym_NULL] = ACTIONS(2872), + [anon_sym_nullptr] = ACTIONS(2872), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2872), + [anon_sym___typeof] = ACTIONS(2872), + [anon_sym_typeof] = ACTIONS(2872), + [anon_sym_ATimport] = ACTIONS(2874), + [aux_sym_preproc_undef_token1] = ACTIONS(2872), + [anon_sym_POUND] = ACTIONS(2872), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2872), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2872), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2872), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2872), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2872), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2872), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2872), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2872), + [anon_sym_NS_AVAILABLE] = ACTIONS(2872), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2872), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_API_AVAILABLE] = ACTIONS(2872), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_API_DEPRECATED] = ACTIONS(2872), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2872), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2872), + [anon_sym___deprecated_msg] = ACTIONS(2872), + [anon_sym___deprecated_enum_msg] = ACTIONS(2872), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2872), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2872), + [anon_sym_ATprotocol] = ACTIONS(2874), + [anon_sym_ATinterface] = ACTIONS(2874), + [anon_sym_ATimplementation] = ACTIONS(2874), + [anon_sym_ATcompatibility_alias] = ACTIONS(2874), + [anon_sym_ATsynthesize] = ACTIONS(2874), + [anon_sym_ATdynamic] = ACTIONS(2874), + [anon_sym_ATtry] = ACTIONS(2874), + [anon_sym___try] = ACTIONS(2872), + [anon_sym_ATthrow] = ACTIONS(2874), + [anon_sym_ATselector] = ACTIONS(2874), + [anon_sym_ATavailable] = ACTIONS(2874), + [anon_sym___builtin_available] = ACTIONS(2872), + [anon_sym_va_arg] = ACTIONS(2872), + [anon_sym_ATencode] = ACTIONS(2874), + [anon_sym_ATsynchronized] = ACTIONS(2874), + [anon_sym_BOOL] = ACTIONS(2872), + [anon_sym_IMP] = ACTIONS(2872), + [anon_sym_SEL] = ACTIONS(2872), + [anon_sym_Class] = ACTIONS(2872), + [anon_sym_id] = ACTIONS(2872), + }, + [463] = { + [sym_identifier] = ACTIONS(2652), + [aux_sym_preproc_include_token1] = ACTIONS(2652), + [aux_sym_preproc_include_token2] = ACTIONS(2652), + [aux_sym_preproc_def_token1] = ACTIONS(2652), + [aux_sym_preproc_if_token1] = ACTIONS(2652), + [aux_sym_preproc_if_token2] = ACTIONS(2652), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2652), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2652), + [aux_sym_preproc_else_token1] = ACTIONS(2652), + [aux_sym_preproc_elif_token1] = ACTIONS(2652), + [sym_preproc_directive] = ACTIONS(2652), + [anon_sym_LPAREN2] = ACTIONS(2654), + [anon_sym_BANG] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2654), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_STAR] = ACTIONS(2654), + [anon_sym_CARET] = ACTIONS(2654), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_SEMI] = ACTIONS(2654), + [anon_sym___extension__] = ACTIONS(2652), + [anon_sym_typedef] = ACTIONS(2652), + [anon_sym_extern] = ACTIONS(2652), + [anon_sym___attribute__] = ACTIONS(2652), + [anon_sym___attribute] = ACTIONS(2652), + [anon_sym_noreturn] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2654), + [anon_sym___declspec] = ACTIONS(2652), + [anon_sym___cdecl] = ACTIONS(2652), + [anon_sym___clrcall] = ACTIONS(2652), + [anon_sym___stdcall] = ACTIONS(2652), + [anon_sym___fastcall] = ACTIONS(2652), + [anon_sym___thiscall] = ACTIONS(2652), + [anon_sym___vectorcall] = ACTIONS(2652), + [anon_sym_LBRACE] = ACTIONS(2654), + [anon_sym_signed] = ACTIONS(2652), + [anon_sym_unsigned] = ACTIONS(2652), + [anon_sym_long] = ACTIONS(2652), + [anon_sym_short] = ACTIONS(2652), + [anon_sym_static] = ACTIONS(2652), + [anon_sym_ATautoreleasepool] = ACTIONS(2654), + [anon_sym_auto] = ACTIONS(2652), + [anon_sym_register] = ACTIONS(2652), + [anon_sym_inline] = ACTIONS(2652), + [anon_sym___inline] = ACTIONS(2652), + [anon_sym___inline__] = ACTIONS(2652), + [anon_sym___forceinline] = ACTIONS(2652), + [anon_sym_thread_local] = ACTIONS(2652), + [anon_sym___thread] = ACTIONS(2652), + [anon_sym_CG_EXTERN] = ACTIONS(2652), + [anon_sym_CG_INLINE] = ACTIONS(2652), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2652), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2652), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2652), + [anon_sym_IBOutlet] = ACTIONS(2652), + [anon_sym_IBInspectable] = ACTIONS(2652), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2652), + [anon_sym_NS_INLINE] = ACTIONS(2652), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2652), + [anon_sym_OBJC_EXPORT] = ACTIONS(2652), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2652), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2652), + [anon_sym_const] = ACTIONS(2652), + [anon_sym_constexpr] = ACTIONS(2652), + [anon_sym_volatile] = ACTIONS(2652), + [anon_sym_restrict] = ACTIONS(2652), + [anon_sym___restrict__] = ACTIONS(2652), + [anon_sym__Atomic] = ACTIONS(2652), + [anon_sym__Noreturn] = ACTIONS(2652), + [anon_sym__Nonnull] = ACTIONS(2652), + [anon_sym_nullable] = ACTIONS(2652), + [anon_sym__Complex] = ACTIONS(2652), + [anon_sym__Nullable] = ACTIONS(2652), + [anon_sym__Nullable_result] = ACTIONS(2652), + [anon_sym__Null_unspecified] = ACTIONS(2652), + [anon_sym___autoreleasing] = ACTIONS(2652), + [anon_sym___block] = ACTIONS(2652), + [anon_sym___bridge] = ACTIONS(2652), + [anon_sym___bridge_retained] = ACTIONS(2652), + [anon_sym___bridge_transfer] = ACTIONS(2652), + [anon_sym___complex] = ACTIONS(2652), + [anon_sym___const] = ACTIONS(2652), + [anon_sym___imag] = ACTIONS(2652), + [anon_sym___kindof] = ACTIONS(2652), + [anon_sym___nonnull] = ACTIONS(2652), + [anon_sym___nullable] = ACTIONS(2652), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2652), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2652), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2652), + [anon_sym___real] = ACTIONS(2652), + [anon_sym___strong] = ACTIONS(2652), + [anon_sym___unsafe_unretained] = ACTIONS(2652), + [anon_sym___unused] = ACTIONS(2652), + [anon_sym___weak] = ACTIONS(2652), + [anon_sym_alignas] = ACTIONS(2652), + [anon_sym__Alignas] = ACTIONS(2652), + [sym_primitive_type] = ACTIONS(2652), + [anon_sym_enum] = ACTIONS(2652), + [anon_sym_struct] = ACTIONS(2652), + [anon_sym_union] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_switch] = ACTIONS(2652), + [anon_sym_case] = ACTIONS(2652), + [anon_sym_default] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_do] = ACTIONS(2652), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_in] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_break] = ACTIONS(2652), + [anon_sym_continue] = ACTIONS(2652), + [anon_sym_goto] = ACTIONS(2652), + [anon_sym_DASH_DASH] = ACTIONS(2654), + [anon_sym_PLUS_PLUS] = ACTIONS(2654), + [anon_sym_sizeof] = ACTIONS(2652), + [anon_sym___alignof__] = ACTIONS(2652), + [anon_sym___alignof] = ACTIONS(2652), + [anon_sym__alignof] = ACTIONS(2652), + [anon_sym_alignof] = ACTIONS(2652), + [anon_sym__Alignof] = ACTIONS(2652), + [anon_sym_offsetof] = ACTIONS(2652), + [anon_sym__Generic] = ACTIONS(2652), + [anon_sym_asm] = ACTIONS(2652), + [anon_sym___asm__] = ACTIONS(2652), + [anon_sym___asm] = ACTIONS(2652), + [sym_number_literal] = ACTIONS(2654), + [anon_sym_L_SQUOTE] = ACTIONS(2654), + [anon_sym_u_SQUOTE] = ACTIONS(2654), + [anon_sym_U_SQUOTE] = ACTIONS(2654), + [anon_sym_u8_SQUOTE] = ACTIONS(2654), + [anon_sym_SQUOTE] = ACTIONS(2654), + [anon_sym_AT] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2654), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2652), + [sym_false] = ACTIONS(2652), + [anon_sym_NULL] = ACTIONS(2652), + [anon_sym_nullptr] = ACTIONS(2652), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2652), + [anon_sym___typeof] = ACTIONS(2652), + [anon_sym_typeof] = ACTIONS(2652), + [anon_sym_ATimport] = ACTIONS(2654), + [aux_sym_preproc_undef_token1] = ACTIONS(2652), + [anon_sym_POUND] = ACTIONS(2652), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2652), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2652), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2652), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2652), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2652), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2652), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2652), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2652), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2652), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2652), + [anon_sym_NS_AVAILABLE] = ACTIONS(2652), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2652), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2652), + [anon_sym_API_AVAILABLE] = ACTIONS(2652), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2652), + [anon_sym_API_DEPRECATED] = ACTIONS(2652), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2652), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2652), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2652), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2652), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2652), + [anon_sym___deprecated_msg] = ACTIONS(2652), + [anon_sym___deprecated_enum_msg] = ACTIONS(2652), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2652), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2652), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2652), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2652), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2652), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2652), + [anon_sym_ATprotocol] = ACTIONS(2654), + [anon_sym_ATinterface] = ACTIONS(2654), + [anon_sym_ATimplementation] = ACTIONS(2654), + [anon_sym_ATcompatibility_alias] = ACTIONS(2654), + [anon_sym_ATsynthesize] = ACTIONS(2654), + [anon_sym_ATdynamic] = ACTIONS(2654), + [anon_sym_ATtry] = ACTIONS(2654), + [anon_sym___try] = ACTIONS(2652), + [anon_sym_ATthrow] = ACTIONS(2654), + [anon_sym_ATselector] = ACTIONS(2654), + [anon_sym_ATavailable] = ACTIONS(2654), + [anon_sym___builtin_available] = ACTIONS(2652), + [anon_sym_va_arg] = ACTIONS(2652), + [anon_sym_ATencode] = ACTIONS(2654), + [anon_sym_ATsynchronized] = ACTIONS(2654), + [anon_sym_BOOL] = ACTIONS(2652), + [anon_sym_IMP] = ACTIONS(2652), + [anon_sym_SEL] = ACTIONS(2652), + [anon_sym_Class] = ACTIONS(2652), + [anon_sym_id] = ACTIONS(2652), + }, + [464] = { + [sym_identifier] = ACTIONS(2832), + [aux_sym_preproc_include_token1] = ACTIONS(2832), + [aux_sym_preproc_include_token2] = ACTIONS(2832), + [aux_sym_preproc_def_token1] = ACTIONS(2832), + [aux_sym_preproc_if_token1] = ACTIONS(2832), + [aux_sym_preproc_if_token2] = ACTIONS(2832), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2832), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2832), + [aux_sym_preproc_else_token1] = ACTIONS(2832), + [aux_sym_preproc_elif_token1] = ACTIONS(2832), + [sym_preproc_directive] = ACTIONS(2832), + [anon_sym_LPAREN2] = ACTIONS(2834), + [anon_sym_BANG] = ACTIONS(2834), + [anon_sym_TILDE] = ACTIONS(2834), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_PLUS] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2834), + [anon_sym_CARET] = ACTIONS(2834), + [anon_sym_AMP] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym___extension__] = ACTIONS(2832), + [anon_sym_typedef] = ACTIONS(2832), + [anon_sym_extern] = ACTIONS(2832), + [anon_sym___attribute__] = ACTIONS(2832), + [anon_sym___attribute] = ACTIONS(2832), + [anon_sym_noreturn] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2834), + [anon_sym___declspec] = ACTIONS(2832), + [anon_sym___cdecl] = ACTIONS(2832), + [anon_sym___clrcall] = ACTIONS(2832), + [anon_sym___stdcall] = ACTIONS(2832), + [anon_sym___fastcall] = ACTIONS(2832), + [anon_sym___thiscall] = ACTIONS(2832), + [anon_sym___vectorcall] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2834), + [anon_sym_signed] = ACTIONS(2832), + [anon_sym_unsigned] = ACTIONS(2832), + [anon_sym_long] = ACTIONS(2832), + [anon_sym_short] = ACTIONS(2832), + [anon_sym_static] = ACTIONS(2832), + [anon_sym_ATautoreleasepool] = ACTIONS(2834), + [anon_sym_auto] = ACTIONS(2832), + [anon_sym_register] = ACTIONS(2832), + [anon_sym_inline] = ACTIONS(2832), + [anon_sym___inline] = ACTIONS(2832), + [anon_sym___inline__] = ACTIONS(2832), + [anon_sym___forceinline] = ACTIONS(2832), + [anon_sym_thread_local] = ACTIONS(2832), + [anon_sym___thread] = ACTIONS(2832), + [anon_sym_CG_EXTERN] = ACTIONS(2832), + [anon_sym_CG_INLINE] = ACTIONS(2832), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2832), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2832), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2832), + [anon_sym_IBOutlet] = ACTIONS(2832), + [anon_sym_IBInspectable] = ACTIONS(2832), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2832), + [anon_sym_NS_INLINE] = ACTIONS(2832), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2832), + [anon_sym_OBJC_EXPORT] = ACTIONS(2832), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2832), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2832), + [anon_sym_const] = ACTIONS(2832), + [anon_sym_constexpr] = ACTIONS(2832), + [anon_sym_volatile] = ACTIONS(2832), + [anon_sym_restrict] = ACTIONS(2832), + [anon_sym___restrict__] = ACTIONS(2832), + [anon_sym__Atomic] = ACTIONS(2832), + [anon_sym__Noreturn] = ACTIONS(2832), + [anon_sym__Nonnull] = ACTIONS(2832), + [anon_sym_nullable] = ACTIONS(2832), + [anon_sym__Complex] = ACTIONS(2832), + [anon_sym__Nullable] = ACTIONS(2832), + [anon_sym__Nullable_result] = ACTIONS(2832), + [anon_sym__Null_unspecified] = ACTIONS(2832), + [anon_sym___autoreleasing] = ACTIONS(2832), + [anon_sym___block] = ACTIONS(2832), + [anon_sym___bridge] = ACTIONS(2832), + [anon_sym___bridge_retained] = ACTIONS(2832), + [anon_sym___bridge_transfer] = ACTIONS(2832), + [anon_sym___complex] = ACTIONS(2832), + [anon_sym___const] = ACTIONS(2832), + [anon_sym___imag] = ACTIONS(2832), + [anon_sym___kindof] = ACTIONS(2832), + [anon_sym___nonnull] = ACTIONS(2832), + [anon_sym___nullable] = ACTIONS(2832), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2832), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2832), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2832), + [anon_sym___real] = ACTIONS(2832), + [anon_sym___strong] = ACTIONS(2832), + [anon_sym___unsafe_unretained] = ACTIONS(2832), + [anon_sym___unused] = ACTIONS(2832), + [anon_sym___weak] = ACTIONS(2832), + [anon_sym_alignas] = ACTIONS(2832), + [anon_sym__Alignas] = ACTIONS(2832), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_enum] = ACTIONS(2832), + [anon_sym_struct] = ACTIONS(2832), + [anon_sym_union] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_switch] = ACTIONS(2832), + [anon_sym_case] = ACTIONS(2832), + [anon_sym_default] = ACTIONS(2832), + [anon_sym_while] = ACTIONS(2832), + [anon_sym_do] = ACTIONS(2832), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_in] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_goto] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2834), + [anon_sym_PLUS_PLUS] = ACTIONS(2834), + [anon_sym_sizeof] = ACTIONS(2832), + [anon_sym___alignof__] = ACTIONS(2832), + [anon_sym___alignof] = ACTIONS(2832), + [anon_sym__alignof] = ACTIONS(2832), + [anon_sym_alignof] = ACTIONS(2832), + [anon_sym__Alignof] = ACTIONS(2832), + [anon_sym_offsetof] = ACTIONS(2832), + [anon_sym__Generic] = ACTIONS(2832), + [anon_sym_asm] = ACTIONS(2832), + [anon_sym___asm__] = ACTIONS(2832), + [anon_sym___asm] = ACTIONS(2832), + [sym_number_literal] = ACTIONS(2834), + [anon_sym_L_SQUOTE] = ACTIONS(2834), + [anon_sym_u_SQUOTE] = ACTIONS(2834), + [anon_sym_U_SQUOTE] = ACTIONS(2834), + [anon_sym_u8_SQUOTE] = ACTIONS(2834), + [anon_sym_SQUOTE] = ACTIONS(2834), + [anon_sym_AT] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2834), + [anon_sym_L_DQUOTE] = ACTIONS(2834), + [anon_sym_u_DQUOTE] = ACTIONS(2834), + [anon_sym_U_DQUOTE] = ACTIONS(2834), + [anon_sym_u8_DQUOTE] = ACTIONS(2834), + [sym_true] = ACTIONS(2832), + [sym_false] = ACTIONS(2832), + [anon_sym_NULL] = ACTIONS(2832), + [anon_sym_nullptr] = ACTIONS(2832), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2832), + [anon_sym___typeof] = ACTIONS(2832), + [anon_sym_typeof] = ACTIONS(2832), + [anon_sym_ATimport] = ACTIONS(2834), + [aux_sym_preproc_undef_token1] = ACTIONS(2832), + [anon_sym_POUND] = ACTIONS(2832), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2832), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2832), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2832), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2832), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2832), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2832), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2832), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2832), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2832), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2832), + [anon_sym_NS_AVAILABLE] = ACTIONS(2832), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2832), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2832), + [anon_sym_API_AVAILABLE] = ACTIONS(2832), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2832), + [anon_sym_API_DEPRECATED] = ACTIONS(2832), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2832), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2832), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2832), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2832), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2832), + [anon_sym___deprecated_msg] = ACTIONS(2832), + [anon_sym___deprecated_enum_msg] = ACTIONS(2832), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2832), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2832), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2832), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2832), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2832), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2832), + [anon_sym_ATprotocol] = ACTIONS(2834), + [anon_sym_ATinterface] = ACTIONS(2834), + [anon_sym_ATimplementation] = ACTIONS(2834), + [anon_sym_ATcompatibility_alias] = ACTIONS(2834), + [anon_sym_ATsynthesize] = ACTIONS(2834), + [anon_sym_ATdynamic] = ACTIONS(2834), + [anon_sym_ATtry] = ACTIONS(2834), + [anon_sym___try] = ACTIONS(2832), + [anon_sym_ATthrow] = ACTIONS(2834), + [anon_sym_ATselector] = ACTIONS(2834), + [anon_sym_ATavailable] = ACTIONS(2834), + [anon_sym___builtin_available] = ACTIONS(2832), + [anon_sym_va_arg] = ACTIONS(2832), + [anon_sym_ATencode] = ACTIONS(2834), + [anon_sym_ATsynchronized] = ACTIONS(2834), + [anon_sym_BOOL] = ACTIONS(2832), + [anon_sym_IMP] = ACTIONS(2832), + [anon_sym_SEL] = ACTIONS(2832), + [anon_sym_Class] = ACTIONS(2832), + [anon_sym_id] = ACTIONS(2832), + }, + [465] = { + [sym_identifier] = ACTIONS(2664), + [aux_sym_preproc_include_token1] = ACTIONS(2664), + [aux_sym_preproc_include_token2] = ACTIONS(2664), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token2] = ACTIONS(2664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2664), + [aux_sym_preproc_else_token1] = ACTIONS(2664), + [aux_sym_preproc_elif_token1] = ACTIONS(2664), + [sym_preproc_directive] = ACTIONS(2664), + [anon_sym_LPAREN2] = ACTIONS(2666), + [anon_sym_BANG] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2666), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_PLUS] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_CARET] = ACTIONS(2666), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym___extension__] = ACTIONS(2664), + [anon_sym_typedef] = ACTIONS(2664), + [anon_sym_extern] = ACTIONS(2664), + [anon_sym___attribute__] = ACTIONS(2664), + [anon_sym___attribute] = ACTIONS(2664), + [anon_sym_noreturn] = ACTIONS(2664), + [anon_sym_LBRACK] = ACTIONS(2666), + [anon_sym___declspec] = ACTIONS(2664), + [anon_sym___cdecl] = ACTIONS(2664), + [anon_sym___clrcall] = ACTIONS(2664), + [anon_sym___stdcall] = ACTIONS(2664), + [anon_sym___fastcall] = ACTIONS(2664), + [anon_sym___thiscall] = ACTIONS(2664), + [anon_sym___vectorcall] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_signed] = ACTIONS(2664), + [anon_sym_unsigned] = ACTIONS(2664), + [anon_sym_long] = ACTIONS(2664), + [anon_sym_short] = ACTIONS(2664), + [anon_sym_static] = ACTIONS(2664), + [anon_sym_ATautoreleasepool] = ACTIONS(2666), + [anon_sym_auto] = ACTIONS(2664), + [anon_sym_register] = ACTIONS(2664), + [anon_sym_inline] = ACTIONS(2664), + [anon_sym___inline] = ACTIONS(2664), + [anon_sym___inline__] = ACTIONS(2664), + [anon_sym___forceinline] = ACTIONS(2664), + [anon_sym_thread_local] = ACTIONS(2664), + [anon_sym___thread] = ACTIONS(2664), + [anon_sym_CG_EXTERN] = ACTIONS(2664), + [anon_sym_CG_INLINE] = ACTIONS(2664), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2664), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2664), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2664), + [anon_sym_IBOutlet] = ACTIONS(2664), + [anon_sym_IBInspectable] = ACTIONS(2664), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2664), + [anon_sym_NS_INLINE] = ACTIONS(2664), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2664), + [anon_sym_OBJC_EXPORT] = ACTIONS(2664), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2664), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2664), + [anon_sym_const] = ACTIONS(2664), + [anon_sym_constexpr] = ACTIONS(2664), + [anon_sym_volatile] = ACTIONS(2664), + [anon_sym_restrict] = ACTIONS(2664), + [anon_sym___restrict__] = ACTIONS(2664), + [anon_sym__Atomic] = ACTIONS(2664), + [anon_sym__Noreturn] = ACTIONS(2664), + [anon_sym__Nonnull] = ACTIONS(2664), + [anon_sym_nullable] = ACTIONS(2664), + [anon_sym__Complex] = ACTIONS(2664), + [anon_sym__Nullable] = ACTIONS(2664), + [anon_sym__Nullable_result] = ACTIONS(2664), + [anon_sym__Null_unspecified] = ACTIONS(2664), + [anon_sym___autoreleasing] = ACTIONS(2664), + [anon_sym___block] = ACTIONS(2664), + [anon_sym___bridge] = ACTIONS(2664), + [anon_sym___bridge_retained] = ACTIONS(2664), + [anon_sym___bridge_transfer] = ACTIONS(2664), + [anon_sym___complex] = ACTIONS(2664), + [anon_sym___const] = ACTIONS(2664), + [anon_sym___imag] = ACTIONS(2664), + [anon_sym___kindof] = ACTIONS(2664), + [anon_sym___nonnull] = ACTIONS(2664), + [anon_sym___nullable] = ACTIONS(2664), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2664), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2664), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2664), + [anon_sym___real] = ACTIONS(2664), + [anon_sym___strong] = ACTIONS(2664), + [anon_sym___unsafe_unretained] = ACTIONS(2664), + [anon_sym___unused] = ACTIONS(2664), + [anon_sym___weak] = ACTIONS(2664), + [anon_sym_alignas] = ACTIONS(2664), + [anon_sym__Alignas] = ACTIONS(2664), + [sym_primitive_type] = ACTIONS(2664), + [anon_sym_enum] = ACTIONS(2664), + [anon_sym_struct] = ACTIONS(2664), + [anon_sym_union] = ACTIONS(2664), + [anon_sym_if] = ACTIONS(2664), + [anon_sym_switch] = ACTIONS(2664), + [anon_sym_case] = ACTIONS(2664), + [anon_sym_default] = ACTIONS(2664), + [anon_sym_while] = ACTIONS(2664), + [anon_sym_do] = ACTIONS(2664), + [anon_sym_for] = ACTIONS(2664), + [anon_sym_in] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2664), + [anon_sym_break] = ACTIONS(2664), + [anon_sym_continue] = ACTIONS(2664), + [anon_sym_goto] = ACTIONS(2664), + [anon_sym_DASH_DASH] = ACTIONS(2666), + [anon_sym_PLUS_PLUS] = ACTIONS(2666), + [anon_sym_sizeof] = ACTIONS(2664), + [anon_sym___alignof__] = ACTIONS(2664), + [anon_sym___alignof] = ACTIONS(2664), + [anon_sym__alignof] = ACTIONS(2664), + [anon_sym_alignof] = ACTIONS(2664), + [anon_sym__Alignof] = ACTIONS(2664), + [anon_sym_offsetof] = ACTIONS(2664), + [anon_sym__Generic] = ACTIONS(2664), + [anon_sym_asm] = ACTIONS(2664), + [anon_sym___asm__] = ACTIONS(2664), + [anon_sym___asm] = ACTIONS(2664), + [sym_number_literal] = ACTIONS(2666), + [anon_sym_L_SQUOTE] = ACTIONS(2666), + [anon_sym_u_SQUOTE] = ACTIONS(2666), + [anon_sym_U_SQUOTE] = ACTIONS(2666), + [anon_sym_u8_SQUOTE] = ACTIONS(2666), + [anon_sym_SQUOTE] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2666), + [anon_sym_L_DQUOTE] = ACTIONS(2666), + [anon_sym_u_DQUOTE] = ACTIONS(2666), + [anon_sym_U_DQUOTE] = ACTIONS(2666), + [anon_sym_u8_DQUOTE] = ACTIONS(2666), + [sym_true] = ACTIONS(2664), + [sym_false] = ACTIONS(2664), + [anon_sym_NULL] = ACTIONS(2664), + [anon_sym_nullptr] = ACTIONS(2664), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2664), + [anon_sym___typeof] = ACTIONS(2664), + [anon_sym_typeof] = ACTIONS(2664), + [anon_sym_ATimport] = ACTIONS(2666), + [aux_sym_preproc_undef_token1] = ACTIONS(2664), + [anon_sym_POUND] = ACTIONS(2664), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2664), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2664), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2664), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2664), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2664), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2664), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2664), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2664), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2664), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2664), + [anon_sym_NS_AVAILABLE] = ACTIONS(2664), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2664), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2664), + [anon_sym_API_AVAILABLE] = ACTIONS(2664), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2664), + [anon_sym_API_DEPRECATED] = ACTIONS(2664), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2664), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2664), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2664), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2664), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2664), + [anon_sym___deprecated_msg] = ACTIONS(2664), + [anon_sym___deprecated_enum_msg] = ACTIONS(2664), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2664), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2664), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2664), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2664), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2664), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2664), + [anon_sym_ATprotocol] = ACTIONS(2666), + [anon_sym_ATinterface] = ACTIONS(2666), + [anon_sym_ATimplementation] = ACTIONS(2666), + [anon_sym_ATcompatibility_alias] = ACTIONS(2666), + [anon_sym_ATsynthesize] = ACTIONS(2666), + [anon_sym_ATdynamic] = ACTIONS(2666), + [anon_sym_ATtry] = ACTIONS(2666), + [anon_sym___try] = ACTIONS(2664), + [anon_sym_ATthrow] = ACTIONS(2666), + [anon_sym_ATselector] = ACTIONS(2666), + [anon_sym_ATavailable] = ACTIONS(2666), + [anon_sym___builtin_available] = ACTIONS(2664), + [anon_sym_va_arg] = ACTIONS(2664), + [anon_sym_ATencode] = ACTIONS(2666), + [anon_sym_ATsynchronized] = ACTIONS(2666), + [anon_sym_BOOL] = ACTIONS(2664), + [anon_sym_IMP] = ACTIONS(2664), + [anon_sym_SEL] = ACTIONS(2664), + [anon_sym_Class] = ACTIONS(2664), + [anon_sym_id] = ACTIONS(2664), + }, + [466] = { + [sym_identifier] = ACTIONS(2716), + [aux_sym_preproc_include_token1] = ACTIONS(2716), + [aux_sym_preproc_include_token2] = ACTIONS(2716), + [aux_sym_preproc_def_token1] = ACTIONS(2716), + [aux_sym_preproc_if_token1] = ACTIONS(2716), + [aux_sym_preproc_if_token2] = ACTIONS(2716), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2716), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2716), + [aux_sym_preproc_else_token1] = ACTIONS(2716), + [aux_sym_preproc_elif_token1] = ACTIONS(2716), + [sym_preproc_directive] = ACTIONS(2716), + [anon_sym_LPAREN2] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2718), + [anon_sym_TILDE] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2716), + [anon_sym_PLUS] = ACTIONS(2716), + [anon_sym_STAR] = ACTIONS(2718), + [anon_sym_CARET] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2718), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym___extension__] = ACTIONS(2716), + [anon_sym_typedef] = ACTIONS(2716), + [anon_sym_extern] = ACTIONS(2716), + [anon_sym___attribute__] = ACTIONS(2716), + [anon_sym___attribute] = ACTIONS(2716), + [anon_sym_noreturn] = ACTIONS(2716), + [anon_sym_LBRACK] = ACTIONS(2718), + [anon_sym___declspec] = ACTIONS(2716), + [anon_sym___cdecl] = ACTIONS(2716), + [anon_sym___clrcall] = ACTIONS(2716), + [anon_sym___stdcall] = ACTIONS(2716), + [anon_sym___fastcall] = ACTIONS(2716), + [anon_sym___thiscall] = ACTIONS(2716), + [anon_sym___vectorcall] = ACTIONS(2716), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_signed] = ACTIONS(2716), + [anon_sym_unsigned] = ACTIONS(2716), + [anon_sym_long] = ACTIONS(2716), + [anon_sym_short] = ACTIONS(2716), + [anon_sym_static] = ACTIONS(2716), + [anon_sym_ATautoreleasepool] = ACTIONS(2718), + [anon_sym_auto] = ACTIONS(2716), + [anon_sym_register] = ACTIONS(2716), + [anon_sym_inline] = ACTIONS(2716), + [anon_sym___inline] = ACTIONS(2716), + [anon_sym___inline__] = ACTIONS(2716), + [anon_sym___forceinline] = ACTIONS(2716), + [anon_sym_thread_local] = ACTIONS(2716), + [anon_sym___thread] = ACTIONS(2716), + [anon_sym_CG_EXTERN] = ACTIONS(2716), + [anon_sym_CG_INLINE] = ACTIONS(2716), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2716), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2716), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2716), + [anon_sym_IBOutlet] = ACTIONS(2716), + [anon_sym_IBInspectable] = ACTIONS(2716), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2716), + [anon_sym_NS_INLINE] = ACTIONS(2716), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2716), + [anon_sym_OBJC_EXPORT] = ACTIONS(2716), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2716), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2716), + [anon_sym_const] = ACTIONS(2716), + [anon_sym_constexpr] = ACTIONS(2716), + [anon_sym_volatile] = ACTIONS(2716), + [anon_sym_restrict] = ACTIONS(2716), + [anon_sym___restrict__] = ACTIONS(2716), + [anon_sym__Atomic] = ACTIONS(2716), + [anon_sym__Noreturn] = ACTIONS(2716), + [anon_sym__Nonnull] = ACTIONS(2716), + [anon_sym_nullable] = ACTIONS(2716), + [anon_sym__Complex] = ACTIONS(2716), + [anon_sym__Nullable] = ACTIONS(2716), + [anon_sym__Nullable_result] = ACTIONS(2716), + [anon_sym__Null_unspecified] = ACTIONS(2716), + [anon_sym___autoreleasing] = ACTIONS(2716), + [anon_sym___block] = ACTIONS(2716), + [anon_sym___bridge] = ACTIONS(2716), + [anon_sym___bridge_retained] = ACTIONS(2716), + [anon_sym___bridge_transfer] = ACTIONS(2716), + [anon_sym___complex] = ACTIONS(2716), + [anon_sym___const] = ACTIONS(2716), + [anon_sym___imag] = ACTIONS(2716), + [anon_sym___kindof] = ACTIONS(2716), + [anon_sym___nonnull] = ACTIONS(2716), + [anon_sym___nullable] = ACTIONS(2716), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2716), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2716), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2716), + [anon_sym___real] = ACTIONS(2716), + [anon_sym___strong] = ACTIONS(2716), + [anon_sym___unsafe_unretained] = ACTIONS(2716), + [anon_sym___unused] = ACTIONS(2716), + [anon_sym___weak] = ACTIONS(2716), + [anon_sym_alignas] = ACTIONS(2716), + [anon_sym__Alignas] = ACTIONS(2716), + [sym_primitive_type] = ACTIONS(2716), + [anon_sym_enum] = ACTIONS(2716), + [anon_sym_struct] = ACTIONS(2716), + [anon_sym_union] = ACTIONS(2716), + [anon_sym_if] = ACTIONS(2716), + [anon_sym_switch] = ACTIONS(2716), + [anon_sym_case] = ACTIONS(2716), + [anon_sym_default] = ACTIONS(2716), + [anon_sym_while] = ACTIONS(2716), + [anon_sym_do] = ACTIONS(2716), + [anon_sym_for] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2716), + [anon_sym_return] = ACTIONS(2716), + [anon_sym_break] = ACTIONS(2716), + [anon_sym_continue] = ACTIONS(2716), + [anon_sym_goto] = ACTIONS(2716), + [anon_sym_DASH_DASH] = ACTIONS(2718), + [anon_sym_PLUS_PLUS] = ACTIONS(2718), + [anon_sym_sizeof] = ACTIONS(2716), + [anon_sym___alignof__] = ACTIONS(2716), + [anon_sym___alignof] = ACTIONS(2716), + [anon_sym__alignof] = ACTIONS(2716), + [anon_sym_alignof] = ACTIONS(2716), + [anon_sym__Alignof] = ACTIONS(2716), + [anon_sym_offsetof] = ACTIONS(2716), + [anon_sym__Generic] = ACTIONS(2716), + [anon_sym_asm] = ACTIONS(2716), + [anon_sym___asm__] = ACTIONS(2716), + [anon_sym___asm] = ACTIONS(2716), + [sym_number_literal] = ACTIONS(2718), + [anon_sym_L_SQUOTE] = ACTIONS(2718), + [anon_sym_u_SQUOTE] = ACTIONS(2718), + [anon_sym_U_SQUOTE] = ACTIONS(2718), + [anon_sym_u8_SQUOTE] = ACTIONS(2718), + [anon_sym_SQUOTE] = ACTIONS(2718), + [anon_sym_AT] = ACTIONS(2716), + [anon_sym_DQUOTE] = ACTIONS(2718), + [anon_sym_L_DQUOTE] = ACTIONS(2718), + [anon_sym_u_DQUOTE] = ACTIONS(2718), + [anon_sym_U_DQUOTE] = ACTIONS(2718), + [anon_sym_u8_DQUOTE] = ACTIONS(2718), + [sym_true] = ACTIONS(2716), + [sym_false] = ACTIONS(2716), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2716), + [anon_sym___typeof] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(2716), + [anon_sym_ATimport] = ACTIONS(2718), + [aux_sym_preproc_undef_token1] = ACTIONS(2716), + [anon_sym_POUND] = ACTIONS(2716), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2716), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2716), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2716), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2716), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2716), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2716), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2716), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2716), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2716), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2716), + [anon_sym_NS_AVAILABLE] = ACTIONS(2716), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2716), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2716), + [anon_sym_API_AVAILABLE] = ACTIONS(2716), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2716), + [anon_sym_API_DEPRECATED] = ACTIONS(2716), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2716), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2716), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2716), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2716), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2716), + [anon_sym___deprecated_msg] = ACTIONS(2716), + [anon_sym___deprecated_enum_msg] = ACTIONS(2716), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2716), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2716), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2716), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2716), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2716), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2716), + [anon_sym_ATprotocol] = ACTIONS(2718), + [anon_sym_ATinterface] = ACTIONS(2718), + [anon_sym_ATimplementation] = ACTIONS(2718), + [anon_sym_ATcompatibility_alias] = ACTIONS(2718), + [anon_sym_ATsynthesize] = ACTIONS(2718), + [anon_sym_ATdynamic] = ACTIONS(2718), + [anon_sym_ATtry] = ACTIONS(2718), + [anon_sym___try] = ACTIONS(2716), + [anon_sym_ATthrow] = ACTIONS(2718), + [anon_sym_ATselector] = ACTIONS(2718), + [anon_sym_ATavailable] = ACTIONS(2718), + [anon_sym___builtin_available] = ACTIONS(2716), + [anon_sym_va_arg] = ACTIONS(2716), + [anon_sym_ATencode] = ACTIONS(2718), + [anon_sym_ATsynchronized] = ACTIONS(2718), + [anon_sym_BOOL] = ACTIONS(2716), + [anon_sym_IMP] = ACTIONS(2716), + [anon_sym_SEL] = ACTIONS(2716), + [anon_sym_Class] = ACTIONS(2716), + [anon_sym_id] = ACTIONS(2716), + }, + [467] = { + [sym_identifier] = ACTIONS(2844), + [aux_sym_preproc_include_token1] = ACTIONS(2844), + [aux_sym_preproc_include_token2] = ACTIONS(2844), + [aux_sym_preproc_def_token1] = ACTIONS(2844), + [aux_sym_preproc_if_token1] = ACTIONS(2844), + [aux_sym_preproc_if_token2] = ACTIONS(2844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2844), + [aux_sym_preproc_else_token1] = ACTIONS(2844), + [aux_sym_preproc_elif_token1] = ACTIONS(2844), + [sym_preproc_directive] = ACTIONS(2844), + [anon_sym_LPAREN2] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2844), + [anon_sym_PLUS] = ACTIONS(2844), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_CARET] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2846), + [anon_sym_SEMI] = ACTIONS(2846), + [anon_sym___extension__] = ACTIONS(2844), + [anon_sym_typedef] = ACTIONS(2844), + [anon_sym_extern] = ACTIONS(2844), + [anon_sym___attribute__] = ACTIONS(2844), + [anon_sym___attribute] = ACTIONS(2844), + [anon_sym_noreturn] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym___declspec] = ACTIONS(2844), + [anon_sym___cdecl] = ACTIONS(2844), + [anon_sym___clrcall] = ACTIONS(2844), + [anon_sym___stdcall] = ACTIONS(2844), + [anon_sym___fastcall] = ACTIONS(2844), + [anon_sym___thiscall] = ACTIONS(2844), + [anon_sym___vectorcall] = ACTIONS(2844), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_signed] = ACTIONS(2844), + [anon_sym_unsigned] = ACTIONS(2844), + [anon_sym_long] = ACTIONS(2844), + [anon_sym_short] = ACTIONS(2844), + [anon_sym_static] = ACTIONS(2844), + [anon_sym_ATautoreleasepool] = ACTIONS(2846), + [anon_sym_auto] = ACTIONS(2844), + [anon_sym_register] = ACTIONS(2844), + [anon_sym_inline] = ACTIONS(2844), + [anon_sym___inline] = ACTIONS(2844), + [anon_sym___inline__] = ACTIONS(2844), + [anon_sym___forceinline] = ACTIONS(2844), + [anon_sym_thread_local] = ACTIONS(2844), + [anon_sym___thread] = ACTIONS(2844), + [anon_sym_CG_EXTERN] = ACTIONS(2844), + [anon_sym_CG_INLINE] = ACTIONS(2844), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2844), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2844), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2844), + [anon_sym_IBOutlet] = ACTIONS(2844), + [anon_sym_IBInspectable] = ACTIONS(2844), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2844), + [anon_sym_NS_INLINE] = ACTIONS(2844), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2844), + [anon_sym_OBJC_EXPORT] = ACTIONS(2844), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2844), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2844), + [anon_sym_const] = ACTIONS(2844), + [anon_sym_constexpr] = ACTIONS(2844), + [anon_sym_volatile] = ACTIONS(2844), + [anon_sym_restrict] = ACTIONS(2844), + [anon_sym___restrict__] = ACTIONS(2844), + [anon_sym__Atomic] = ACTIONS(2844), + [anon_sym__Noreturn] = ACTIONS(2844), + [anon_sym__Nonnull] = ACTIONS(2844), + [anon_sym_nullable] = ACTIONS(2844), + [anon_sym__Complex] = ACTIONS(2844), + [anon_sym__Nullable] = ACTIONS(2844), + [anon_sym__Nullable_result] = ACTIONS(2844), + [anon_sym__Null_unspecified] = ACTIONS(2844), + [anon_sym___autoreleasing] = ACTIONS(2844), + [anon_sym___block] = ACTIONS(2844), + [anon_sym___bridge] = ACTIONS(2844), + [anon_sym___bridge_retained] = ACTIONS(2844), + [anon_sym___bridge_transfer] = ACTIONS(2844), + [anon_sym___complex] = ACTIONS(2844), + [anon_sym___const] = ACTIONS(2844), + [anon_sym___imag] = ACTIONS(2844), + [anon_sym___kindof] = ACTIONS(2844), + [anon_sym___nonnull] = ACTIONS(2844), + [anon_sym___nullable] = ACTIONS(2844), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2844), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2844), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2844), + [anon_sym___real] = ACTIONS(2844), + [anon_sym___strong] = ACTIONS(2844), + [anon_sym___unsafe_unretained] = ACTIONS(2844), + [anon_sym___unused] = ACTIONS(2844), + [anon_sym___weak] = ACTIONS(2844), + [anon_sym_alignas] = ACTIONS(2844), + [anon_sym__Alignas] = ACTIONS(2844), + [sym_primitive_type] = ACTIONS(2844), + [anon_sym_enum] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2844), + [anon_sym_union] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2844), + [anon_sym_switch] = ACTIONS(2844), + [anon_sym_case] = ACTIONS(2844), + [anon_sym_default] = ACTIONS(2844), + [anon_sym_while] = ACTIONS(2844), + [anon_sym_do] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(2844), + [anon_sym_in] = ACTIONS(2844), + [anon_sym_return] = ACTIONS(2844), + [anon_sym_break] = ACTIONS(2844), + [anon_sym_continue] = ACTIONS(2844), + [anon_sym_goto] = ACTIONS(2844), + [anon_sym_DASH_DASH] = ACTIONS(2846), + [anon_sym_PLUS_PLUS] = ACTIONS(2846), + [anon_sym_sizeof] = ACTIONS(2844), + [anon_sym___alignof__] = ACTIONS(2844), + [anon_sym___alignof] = ACTIONS(2844), + [anon_sym__alignof] = ACTIONS(2844), + [anon_sym_alignof] = ACTIONS(2844), + [anon_sym__Alignof] = ACTIONS(2844), + [anon_sym_offsetof] = ACTIONS(2844), + [anon_sym__Generic] = ACTIONS(2844), + [anon_sym_asm] = ACTIONS(2844), + [anon_sym___asm__] = ACTIONS(2844), + [anon_sym___asm] = ACTIONS(2844), + [sym_number_literal] = ACTIONS(2846), + [anon_sym_L_SQUOTE] = ACTIONS(2846), + [anon_sym_u_SQUOTE] = ACTIONS(2846), + [anon_sym_U_SQUOTE] = ACTIONS(2846), + [anon_sym_u8_SQUOTE] = ACTIONS(2846), + [anon_sym_SQUOTE] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2844), + [anon_sym_DQUOTE] = ACTIONS(2846), + [anon_sym_L_DQUOTE] = ACTIONS(2846), + [anon_sym_u_DQUOTE] = ACTIONS(2846), + [anon_sym_U_DQUOTE] = ACTIONS(2846), + [anon_sym_u8_DQUOTE] = ACTIONS(2846), + [sym_true] = ACTIONS(2844), + [sym_false] = ACTIONS(2844), + [anon_sym_NULL] = ACTIONS(2844), + [anon_sym_nullptr] = ACTIONS(2844), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2844), + [anon_sym___typeof] = ACTIONS(2844), + [anon_sym_typeof] = ACTIONS(2844), + [anon_sym_ATimport] = ACTIONS(2846), + [aux_sym_preproc_undef_token1] = ACTIONS(2844), + [anon_sym_POUND] = ACTIONS(2844), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2844), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2844), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2844), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2844), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2844), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2844), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2844), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2844), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2844), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2844), + [anon_sym_NS_AVAILABLE] = ACTIONS(2844), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2844), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2844), + [anon_sym_API_AVAILABLE] = ACTIONS(2844), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2844), + [anon_sym_API_DEPRECATED] = ACTIONS(2844), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2844), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2844), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2844), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2844), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2844), + [anon_sym___deprecated_msg] = ACTIONS(2844), + [anon_sym___deprecated_enum_msg] = ACTIONS(2844), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2844), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2844), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2844), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2844), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2844), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2844), + [anon_sym_ATprotocol] = ACTIONS(2846), + [anon_sym_ATinterface] = ACTIONS(2846), + [anon_sym_ATimplementation] = ACTIONS(2846), + [anon_sym_ATcompatibility_alias] = ACTIONS(2846), + [anon_sym_ATsynthesize] = ACTIONS(2846), + [anon_sym_ATdynamic] = ACTIONS(2846), + [anon_sym_ATtry] = ACTIONS(2846), + [anon_sym___try] = ACTIONS(2844), + [anon_sym_ATthrow] = ACTIONS(2846), + [anon_sym_ATselector] = ACTIONS(2846), + [anon_sym_ATavailable] = ACTIONS(2846), + [anon_sym___builtin_available] = ACTIONS(2844), + [anon_sym_va_arg] = ACTIONS(2844), + [anon_sym_ATencode] = ACTIONS(2846), + [anon_sym_ATsynchronized] = ACTIONS(2846), + [anon_sym_BOOL] = ACTIONS(2844), + [anon_sym_IMP] = ACTIONS(2844), + [anon_sym_SEL] = ACTIONS(2844), + [anon_sym_Class] = ACTIONS(2844), + [anon_sym_id] = ACTIONS(2844), + }, + [468] = { + [sym_identifier] = ACTIONS(2848), + [aux_sym_preproc_include_token1] = ACTIONS(2848), + [aux_sym_preproc_include_token2] = ACTIONS(2848), + [aux_sym_preproc_def_token1] = ACTIONS(2848), + [aux_sym_preproc_if_token1] = ACTIONS(2848), + [aux_sym_preproc_if_token2] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2848), + [aux_sym_preproc_else_token1] = ACTIONS(2848), + [aux_sym_preproc_elif_token1] = ACTIONS(2848), + [sym_preproc_directive] = ACTIONS(2848), + [anon_sym_LPAREN2] = ACTIONS(2850), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_TILDE] = ACTIONS(2850), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_STAR] = ACTIONS(2850), + [anon_sym_CARET] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2850), + [anon_sym___extension__] = ACTIONS(2848), + [anon_sym_typedef] = ACTIONS(2848), + [anon_sym_extern] = ACTIONS(2848), + [anon_sym___attribute__] = ACTIONS(2848), + [anon_sym___attribute] = ACTIONS(2848), + [anon_sym_noreturn] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2850), + [anon_sym___declspec] = ACTIONS(2848), + [anon_sym___cdecl] = ACTIONS(2848), + [anon_sym___clrcall] = ACTIONS(2848), + [anon_sym___stdcall] = ACTIONS(2848), + [anon_sym___fastcall] = ACTIONS(2848), + [anon_sym___thiscall] = ACTIONS(2848), + [anon_sym___vectorcall] = ACTIONS(2848), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_signed] = ACTIONS(2848), + [anon_sym_unsigned] = ACTIONS(2848), + [anon_sym_long] = ACTIONS(2848), + [anon_sym_short] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_ATautoreleasepool] = ACTIONS(2850), + [anon_sym_auto] = ACTIONS(2848), + [anon_sym_register] = ACTIONS(2848), + [anon_sym_inline] = ACTIONS(2848), + [anon_sym___inline] = ACTIONS(2848), + [anon_sym___inline__] = ACTIONS(2848), + [anon_sym___forceinline] = ACTIONS(2848), + [anon_sym_thread_local] = ACTIONS(2848), + [anon_sym___thread] = ACTIONS(2848), + [anon_sym_CG_EXTERN] = ACTIONS(2848), + [anon_sym_CG_INLINE] = ACTIONS(2848), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2848), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2848), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2848), + [anon_sym_IBOutlet] = ACTIONS(2848), + [anon_sym_IBInspectable] = ACTIONS(2848), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2848), + [anon_sym_NS_INLINE] = ACTIONS(2848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2848), + [anon_sym_OBJC_EXPORT] = ACTIONS(2848), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2848), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2848), + [anon_sym_const] = ACTIONS(2848), + [anon_sym_constexpr] = ACTIONS(2848), + [anon_sym_volatile] = ACTIONS(2848), + [anon_sym_restrict] = ACTIONS(2848), + [anon_sym___restrict__] = ACTIONS(2848), + [anon_sym__Atomic] = ACTIONS(2848), + [anon_sym__Noreturn] = ACTIONS(2848), + [anon_sym__Nonnull] = ACTIONS(2848), + [anon_sym_nullable] = ACTIONS(2848), + [anon_sym__Complex] = ACTIONS(2848), + [anon_sym__Nullable] = ACTIONS(2848), + [anon_sym__Nullable_result] = ACTIONS(2848), + [anon_sym__Null_unspecified] = ACTIONS(2848), + [anon_sym___autoreleasing] = ACTIONS(2848), + [anon_sym___block] = ACTIONS(2848), + [anon_sym___bridge] = ACTIONS(2848), + [anon_sym___bridge_retained] = ACTIONS(2848), + [anon_sym___bridge_transfer] = ACTIONS(2848), + [anon_sym___complex] = ACTIONS(2848), + [anon_sym___const] = ACTIONS(2848), + [anon_sym___imag] = ACTIONS(2848), + [anon_sym___kindof] = ACTIONS(2848), + [anon_sym___nonnull] = ACTIONS(2848), + [anon_sym___nullable] = ACTIONS(2848), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2848), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2848), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2848), + [anon_sym___real] = ACTIONS(2848), + [anon_sym___strong] = ACTIONS(2848), + [anon_sym___unsafe_unretained] = ACTIONS(2848), + [anon_sym___unused] = ACTIONS(2848), + [anon_sym___weak] = ACTIONS(2848), + [anon_sym_alignas] = ACTIONS(2848), + [anon_sym__Alignas] = ACTIONS(2848), + [sym_primitive_type] = ACTIONS(2848), + [anon_sym_enum] = ACTIONS(2848), + [anon_sym_struct] = ACTIONS(2848), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_switch] = ACTIONS(2848), + [anon_sym_case] = ACTIONS(2848), + [anon_sym_default] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_in] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_break] = ACTIONS(2848), + [anon_sym_continue] = ACTIONS(2848), + [anon_sym_goto] = ACTIONS(2848), + [anon_sym_DASH_DASH] = ACTIONS(2850), + [anon_sym_PLUS_PLUS] = ACTIONS(2850), + [anon_sym_sizeof] = ACTIONS(2848), + [anon_sym___alignof__] = ACTIONS(2848), + [anon_sym___alignof] = ACTIONS(2848), + [anon_sym__alignof] = ACTIONS(2848), + [anon_sym_alignof] = ACTIONS(2848), + [anon_sym__Alignof] = ACTIONS(2848), + [anon_sym_offsetof] = ACTIONS(2848), + [anon_sym__Generic] = ACTIONS(2848), + [anon_sym_asm] = ACTIONS(2848), + [anon_sym___asm__] = ACTIONS(2848), + [anon_sym___asm] = ACTIONS(2848), + [sym_number_literal] = ACTIONS(2850), + [anon_sym_L_SQUOTE] = ACTIONS(2850), + [anon_sym_u_SQUOTE] = ACTIONS(2850), + [anon_sym_U_SQUOTE] = ACTIONS(2850), + [anon_sym_u8_SQUOTE] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_AT] = ACTIONS(2848), + [anon_sym_DQUOTE] = ACTIONS(2850), + [anon_sym_L_DQUOTE] = ACTIONS(2850), + [anon_sym_u_DQUOTE] = ACTIONS(2850), + [anon_sym_U_DQUOTE] = ACTIONS(2850), + [anon_sym_u8_DQUOTE] = ACTIONS(2850), + [sym_true] = ACTIONS(2848), + [sym_false] = ACTIONS(2848), + [anon_sym_NULL] = ACTIONS(2848), + [anon_sym_nullptr] = ACTIONS(2848), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2848), + [anon_sym___typeof] = ACTIONS(2848), + [anon_sym_typeof] = ACTIONS(2848), + [anon_sym_ATimport] = ACTIONS(2850), + [aux_sym_preproc_undef_token1] = ACTIONS(2848), + [anon_sym_POUND] = ACTIONS(2848), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2848), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2848), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2848), + [anon_sym_NS_AVAILABLE] = ACTIONS(2848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_API_AVAILABLE] = ACTIONS(2848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_API_DEPRECATED] = ACTIONS(2848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2848), + [anon_sym___deprecated_msg] = ACTIONS(2848), + [anon_sym___deprecated_enum_msg] = ACTIONS(2848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2848), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2848), + [anon_sym_ATprotocol] = ACTIONS(2850), + [anon_sym_ATinterface] = ACTIONS(2850), + [anon_sym_ATimplementation] = ACTIONS(2850), + [anon_sym_ATcompatibility_alias] = ACTIONS(2850), + [anon_sym_ATsynthesize] = ACTIONS(2850), + [anon_sym_ATdynamic] = ACTIONS(2850), + [anon_sym_ATtry] = ACTIONS(2850), + [anon_sym___try] = ACTIONS(2848), + [anon_sym_ATthrow] = ACTIONS(2850), + [anon_sym_ATselector] = ACTIONS(2850), + [anon_sym_ATavailable] = ACTIONS(2850), + [anon_sym___builtin_available] = ACTIONS(2848), + [anon_sym_va_arg] = ACTIONS(2848), + [anon_sym_ATencode] = ACTIONS(2850), + [anon_sym_ATsynchronized] = ACTIONS(2850), + [anon_sym_BOOL] = ACTIONS(2848), + [anon_sym_IMP] = ACTIONS(2848), + [anon_sym_SEL] = ACTIONS(2848), + [anon_sym_Class] = ACTIONS(2848), + [anon_sym_id] = ACTIONS(2848), + }, + [469] = { + [sym_identifier] = ACTIONS(2612), + [aux_sym_preproc_include_token1] = ACTIONS(2612), + [aux_sym_preproc_include_token2] = ACTIONS(2612), + [aux_sym_preproc_def_token1] = ACTIONS(2612), + [aux_sym_preproc_if_token1] = ACTIONS(2612), + [aux_sym_preproc_if_token2] = ACTIONS(2612), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2612), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2612), + [aux_sym_preproc_else_token1] = ACTIONS(2612), + [aux_sym_preproc_elif_token1] = ACTIONS(2612), + [sym_preproc_directive] = ACTIONS(2612), + [anon_sym_LPAREN2] = ACTIONS(2614), + [anon_sym_BANG] = ACTIONS(2614), + [anon_sym_TILDE] = ACTIONS(2614), + [anon_sym_DASH] = ACTIONS(2612), + [anon_sym_PLUS] = ACTIONS(2612), + [anon_sym_STAR] = ACTIONS(2614), + [anon_sym_CARET] = ACTIONS(2614), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_SEMI] = ACTIONS(2614), + [anon_sym___extension__] = ACTIONS(2612), + [anon_sym_typedef] = ACTIONS(2612), + [anon_sym_extern] = ACTIONS(2612), + [anon_sym___attribute__] = ACTIONS(2612), + [anon_sym___attribute] = ACTIONS(2612), + [anon_sym_noreturn] = ACTIONS(2612), + [anon_sym_LBRACK] = ACTIONS(2614), + [anon_sym___declspec] = ACTIONS(2612), + [anon_sym___cdecl] = ACTIONS(2612), + [anon_sym___clrcall] = ACTIONS(2612), + [anon_sym___stdcall] = ACTIONS(2612), + [anon_sym___fastcall] = ACTIONS(2612), + [anon_sym___thiscall] = ACTIONS(2612), + [anon_sym___vectorcall] = ACTIONS(2612), + [anon_sym_LBRACE] = ACTIONS(2614), + [anon_sym_signed] = ACTIONS(2612), + [anon_sym_unsigned] = ACTIONS(2612), + [anon_sym_long] = ACTIONS(2612), + [anon_sym_short] = ACTIONS(2612), + [anon_sym_static] = ACTIONS(2612), + [anon_sym_ATautoreleasepool] = ACTIONS(2614), + [anon_sym_auto] = ACTIONS(2612), + [anon_sym_register] = ACTIONS(2612), + [anon_sym_inline] = ACTIONS(2612), + [anon_sym___inline] = ACTIONS(2612), + [anon_sym___inline__] = ACTIONS(2612), + [anon_sym___forceinline] = ACTIONS(2612), + [anon_sym_thread_local] = ACTIONS(2612), + [anon_sym___thread] = ACTIONS(2612), + [anon_sym_CG_EXTERN] = ACTIONS(2612), + [anon_sym_CG_INLINE] = ACTIONS(2612), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2612), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2612), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2612), + [anon_sym_IBOutlet] = ACTIONS(2612), + [anon_sym_IBInspectable] = ACTIONS(2612), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2612), + [anon_sym_NS_INLINE] = ACTIONS(2612), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2612), + [anon_sym_OBJC_EXPORT] = ACTIONS(2612), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2612), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2612), + [anon_sym_const] = ACTIONS(2612), + [anon_sym_constexpr] = ACTIONS(2612), + [anon_sym_volatile] = ACTIONS(2612), + [anon_sym_restrict] = ACTIONS(2612), + [anon_sym___restrict__] = ACTIONS(2612), + [anon_sym__Atomic] = ACTIONS(2612), + [anon_sym__Noreturn] = ACTIONS(2612), + [anon_sym__Nonnull] = ACTIONS(2612), + [anon_sym_nullable] = ACTIONS(2612), + [anon_sym__Complex] = ACTIONS(2612), + [anon_sym__Nullable] = ACTIONS(2612), + [anon_sym__Nullable_result] = ACTIONS(2612), + [anon_sym__Null_unspecified] = ACTIONS(2612), + [anon_sym___autoreleasing] = ACTIONS(2612), + [anon_sym___block] = ACTIONS(2612), + [anon_sym___bridge] = ACTIONS(2612), + [anon_sym___bridge_retained] = ACTIONS(2612), + [anon_sym___bridge_transfer] = ACTIONS(2612), + [anon_sym___complex] = ACTIONS(2612), + [anon_sym___const] = ACTIONS(2612), + [anon_sym___imag] = ACTIONS(2612), + [anon_sym___kindof] = ACTIONS(2612), + [anon_sym___nonnull] = ACTIONS(2612), + [anon_sym___nullable] = ACTIONS(2612), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2612), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2612), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2612), + [anon_sym___real] = ACTIONS(2612), + [anon_sym___strong] = ACTIONS(2612), + [anon_sym___unsafe_unretained] = ACTIONS(2612), + [anon_sym___unused] = ACTIONS(2612), + [anon_sym___weak] = ACTIONS(2612), + [anon_sym_alignas] = ACTIONS(2612), + [anon_sym__Alignas] = ACTIONS(2612), + [sym_primitive_type] = ACTIONS(2612), + [anon_sym_enum] = ACTIONS(2612), + [anon_sym_struct] = ACTIONS(2612), + [anon_sym_union] = ACTIONS(2612), + [anon_sym_if] = ACTIONS(2612), + [anon_sym_switch] = ACTIONS(2612), + [anon_sym_case] = ACTIONS(2612), + [anon_sym_default] = ACTIONS(2612), + [anon_sym_while] = ACTIONS(2612), + [anon_sym_do] = ACTIONS(2612), + [anon_sym_for] = ACTIONS(2612), + [anon_sym_in] = ACTIONS(2612), + [anon_sym_return] = ACTIONS(2612), + [anon_sym_break] = ACTIONS(2612), + [anon_sym_continue] = ACTIONS(2612), + [anon_sym_goto] = ACTIONS(2612), + [anon_sym_DASH_DASH] = ACTIONS(2614), + [anon_sym_PLUS_PLUS] = ACTIONS(2614), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2612), + [anon_sym___alignof] = ACTIONS(2612), + [anon_sym__alignof] = ACTIONS(2612), + [anon_sym_alignof] = ACTIONS(2612), + [anon_sym__Alignof] = ACTIONS(2612), + [anon_sym_offsetof] = ACTIONS(2612), + [anon_sym__Generic] = ACTIONS(2612), + [anon_sym_asm] = ACTIONS(2612), + [anon_sym___asm__] = ACTIONS(2612), + [anon_sym___asm] = ACTIONS(2612), + [sym_number_literal] = ACTIONS(2614), + [anon_sym_L_SQUOTE] = ACTIONS(2614), + [anon_sym_u_SQUOTE] = ACTIONS(2614), + [anon_sym_U_SQUOTE] = ACTIONS(2614), + [anon_sym_u8_SQUOTE] = ACTIONS(2614), + [anon_sym_SQUOTE] = ACTIONS(2614), + [anon_sym_AT] = ACTIONS(2612), + [anon_sym_DQUOTE] = ACTIONS(2614), + [anon_sym_L_DQUOTE] = ACTIONS(2614), + [anon_sym_u_DQUOTE] = ACTIONS(2614), + [anon_sym_U_DQUOTE] = ACTIONS(2614), + [anon_sym_u8_DQUOTE] = ACTIONS(2614), + [sym_true] = ACTIONS(2612), + [sym_false] = ACTIONS(2612), + [anon_sym_NULL] = ACTIONS(2612), + [anon_sym_nullptr] = ACTIONS(2612), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2612), + [anon_sym___typeof] = ACTIONS(2612), + [anon_sym_typeof] = ACTIONS(2612), + [anon_sym_ATimport] = ACTIONS(2614), + [aux_sym_preproc_undef_token1] = ACTIONS(2612), + [anon_sym_POUND] = ACTIONS(2612), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2612), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2612), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2612), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2612), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2612), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2612), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2612), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2612), + [anon_sym_NS_AVAILABLE] = ACTIONS(2612), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2612), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_API_AVAILABLE] = ACTIONS(2612), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_API_DEPRECATED] = ACTIONS(2612), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2612), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2612), + [anon_sym___deprecated_msg] = ACTIONS(2612), + [anon_sym___deprecated_enum_msg] = ACTIONS(2612), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2612), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2612), + [anon_sym_ATprotocol] = ACTIONS(2614), + [anon_sym_ATinterface] = ACTIONS(2614), + [anon_sym_ATimplementation] = ACTIONS(2614), + [anon_sym_ATcompatibility_alias] = ACTIONS(2614), + [anon_sym_ATsynthesize] = ACTIONS(2614), + [anon_sym_ATdynamic] = ACTIONS(2614), + [anon_sym_ATtry] = ACTIONS(2614), + [anon_sym___try] = ACTIONS(2612), + [anon_sym_ATthrow] = ACTIONS(2614), + [anon_sym_ATselector] = ACTIONS(2614), + [anon_sym_ATavailable] = ACTIONS(2614), + [anon_sym___builtin_available] = ACTIONS(2612), + [anon_sym_va_arg] = ACTIONS(2612), + [anon_sym_ATencode] = ACTIONS(2614), + [anon_sym_ATsynchronized] = ACTIONS(2614), + [anon_sym_BOOL] = ACTIONS(2612), + [anon_sym_IMP] = ACTIONS(2612), + [anon_sym_SEL] = ACTIONS(2612), + [anon_sym_Class] = ACTIONS(2612), + [anon_sym_id] = ACTIONS(2612), + }, + [470] = { + [sym_identifier] = ACTIONS(2728), + [aux_sym_preproc_include_token1] = ACTIONS(2728), + [aux_sym_preproc_include_token2] = ACTIONS(2728), + [aux_sym_preproc_def_token1] = ACTIONS(2728), + [aux_sym_preproc_if_token1] = ACTIONS(2728), + [aux_sym_preproc_if_token2] = ACTIONS(2728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2728), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2728), + [aux_sym_preproc_else_token1] = ACTIONS(2728), + [aux_sym_preproc_elif_token1] = ACTIONS(2728), + [sym_preproc_directive] = ACTIONS(2728), + [anon_sym_LPAREN2] = ACTIONS(2730), + [anon_sym_BANG] = ACTIONS(2730), + [anon_sym_TILDE] = ACTIONS(2730), + [anon_sym_DASH] = ACTIONS(2728), + [anon_sym_PLUS] = ACTIONS(2728), + [anon_sym_STAR] = ACTIONS(2730), + [anon_sym_CARET] = ACTIONS(2730), + [anon_sym_AMP] = ACTIONS(2730), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym___extension__] = ACTIONS(2728), + [anon_sym_typedef] = ACTIONS(2728), + [anon_sym_extern] = ACTIONS(2728), + [anon_sym___attribute__] = ACTIONS(2728), + [anon_sym___attribute] = ACTIONS(2728), + [anon_sym_noreturn] = ACTIONS(2728), + [anon_sym_LBRACK] = ACTIONS(2730), + [anon_sym___declspec] = ACTIONS(2728), + [anon_sym___cdecl] = ACTIONS(2728), + [anon_sym___clrcall] = ACTIONS(2728), + [anon_sym___stdcall] = ACTIONS(2728), + [anon_sym___fastcall] = ACTIONS(2728), + [anon_sym___thiscall] = ACTIONS(2728), + [anon_sym___vectorcall] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_signed] = ACTIONS(2728), + [anon_sym_unsigned] = ACTIONS(2728), + [anon_sym_long] = ACTIONS(2728), + [anon_sym_short] = ACTIONS(2728), + [anon_sym_static] = ACTIONS(2728), + [anon_sym_ATautoreleasepool] = ACTIONS(2730), + [anon_sym_auto] = ACTIONS(2728), + [anon_sym_register] = ACTIONS(2728), + [anon_sym_inline] = ACTIONS(2728), + [anon_sym___inline] = ACTIONS(2728), + [anon_sym___inline__] = ACTIONS(2728), + [anon_sym___forceinline] = ACTIONS(2728), + [anon_sym_thread_local] = ACTIONS(2728), + [anon_sym___thread] = ACTIONS(2728), + [anon_sym_CG_EXTERN] = ACTIONS(2728), + [anon_sym_CG_INLINE] = ACTIONS(2728), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2728), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2728), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2728), + [anon_sym_IBOutlet] = ACTIONS(2728), + [anon_sym_IBInspectable] = ACTIONS(2728), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2728), + [anon_sym_NS_INLINE] = ACTIONS(2728), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2728), + [anon_sym_OBJC_EXPORT] = ACTIONS(2728), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2728), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2728), + [anon_sym_const] = ACTIONS(2728), + [anon_sym_constexpr] = ACTIONS(2728), + [anon_sym_volatile] = ACTIONS(2728), + [anon_sym_restrict] = ACTIONS(2728), + [anon_sym___restrict__] = ACTIONS(2728), + [anon_sym__Atomic] = ACTIONS(2728), + [anon_sym__Noreturn] = ACTIONS(2728), + [anon_sym__Nonnull] = ACTIONS(2728), + [anon_sym_nullable] = ACTIONS(2728), + [anon_sym__Complex] = ACTIONS(2728), + [anon_sym__Nullable] = ACTIONS(2728), + [anon_sym__Nullable_result] = ACTIONS(2728), + [anon_sym__Null_unspecified] = ACTIONS(2728), + [anon_sym___autoreleasing] = ACTIONS(2728), + [anon_sym___block] = ACTIONS(2728), + [anon_sym___bridge] = ACTIONS(2728), + [anon_sym___bridge_retained] = ACTIONS(2728), + [anon_sym___bridge_transfer] = ACTIONS(2728), + [anon_sym___complex] = ACTIONS(2728), + [anon_sym___const] = ACTIONS(2728), + [anon_sym___imag] = ACTIONS(2728), + [anon_sym___kindof] = ACTIONS(2728), + [anon_sym___nonnull] = ACTIONS(2728), + [anon_sym___nullable] = ACTIONS(2728), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2728), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2728), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2728), + [anon_sym___real] = ACTIONS(2728), + [anon_sym___strong] = ACTIONS(2728), + [anon_sym___unsafe_unretained] = ACTIONS(2728), + [anon_sym___unused] = ACTIONS(2728), + [anon_sym___weak] = ACTIONS(2728), + [anon_sym_alignas] = ACTIONS(2728), + [anon_sym__Alignas] = ACTIONS(2728), + [sym_primitive_type] = ACTIONS(2728), + [anon_sym_enum] = ACTIONS(2728), + [anon_sym_struct] = ACTIONS(2728), + [anon_sym_union] = ACTIONS(2728), + [anon_sym_if] = ACTIONS(2728), + [anon_sym_switch] = ACTIONS(2728), + [anon_sym_case] = ACTIONS(2728), + [anon_sym_default] = ACTIONS(2728), + [anon_sym_while] = ACTIONS(2728), + [anon_sym_do] = ACTIONS(2728), + [anon_sym_for] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2728), + [anon_sym_return] = ACTIONS(2728), + [anon_sym_break] = ACTIONS(2728), + [anon_sym_continue] = ACTIONS(2728), + [anon_sym_goto] = ACTIONS(2728), + [anon_sym_DASH_DASH] = ACTIONS(2730), + [anon_sym_PLUS_PLUS] = ACTIONS(2730), + [anon_sym_sizeof] = ACTIONS(2728), + [anon_sym___alignof__] = ACTIONS(2728), + [anon_sym___alignof] = ACTIONS(2728), + [anon_sym__alignof] = ACTIONS(2728), + [anon_sym_alignof] = ACTIONS(2728), + [anon_sym__Alignof] = ACTIONS(2728), + [anon_sym_offsetof] = ACTIONS(2728), + [anon_sym__Generic] = ACTIONS(2728), + [anon_sym_asm] = ACTIONS(2728), + [anon_sym___asm__] = ACTIONS(2728), + [anon_sym___asm] = ACTIONS(2728), + [sym_number_literal] = ACTIONS(2730), + [anon_sym_L_SQUOTE] = ACTIONS(2730), + [anon_sym_u_SQUOTE] = ACTIONS(2730), + [anon_sym_U_SQUOTE] = ACTIONS(2730), + [anon_sym_u8_SQUOTE] = ACTIONS(2730), + [anon_sym_SQUOTE] = ACTIONS(2730), + [anon_sym_AT] = ACTIONS(2728), + [anon_sym_DQUOTE] = ACTIONS(2730), + [anon_sym_L_DQUOTE] = ACTIONS(2730), + [anon_sym_u_DQUOTE] = ACTIONS(2730), + [anon_sym_U_DQUOTE] = ACTIONS(2730), + [anon_sym_u8_DQUOTE] = ACTIONS(2730), + [sym_true] = ACTIONS(2728), + [sym_false] = ACTIONS(2728), + [anon_sym_NULL] = ACTIONS(2728), + [anon_sym_nullptr] = ACTIONS(2728), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2728), + [anon_sym___typeof] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(2728), + [anon_sym_ATimport] = ACTIONS(2730), + [aux_sym_preproc_undef_token1] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(2728), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2728), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2728), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2728), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2728), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2728), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2728), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2728), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2728), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2728), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2728), + [anon_sym_NS_AVAILABLE] = ACTIONS(2728), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2728), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2728), + [anon_sym_API_AVAILABLE] = ACTIONS(2728), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2728), + [anon_sym_API_DEPRECATED] = ACTIONS(2728), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2728), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2728), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2728), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2728), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2728), + [anon_sym___deprecated_msg] = ACTIONS(2728), + [anon_sym___deprecated_enum_msg] = ACTIONS(2728), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2728), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2728), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2728), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2728), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2728), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2728), + [anon_sym_ATprotocol] = ACTIONS(2730), + [anon_sym_ATinterface] = ACTIONS(2730), + [anon_sym_ATimplementation] = ACTIONS(2730), + [anon_sym_ATcompatibility_alias] = ACTIONS(2730), + [anon_sym_ATsynthesize] = ACTIONS(2730), + [anon_sym_ATdynamic] = ACTIONS(2730), + [anon_sym_ATtry] = ACTIONS(2730), + [anon_sym___try] = ACTIONS(2728), + [anon_sym_ATthrow] = ACTIONS(2730), + [anon_sym_ATselector] = ACTIONS(2730), + [anon_sym_ATavailable] = ACTIONS(2730), + [anon_sym___builtin_available] = ACTIONS(2728), + [anon_sym_va_arg] = ACTIONS(2728), + [anon_sym_ATencode] = ACTIONS(2730), + [anon_sym_ATsynchronized] = ACTIONS(2730), + [anon_sym_BOOL] = ACTIONS(2728), + [anon_sym_IMP] = ACTIONS(2728), + [anon_sym_SEL] = ACTIONS(2728), + [anon_sym_Class] = ACTIONS(2728), + [anon_sym_id] = ACTIONS(2728), + }, + [471] = { + [sym_identifier] = ACTIONS(2732), + [aux_sym_preproc_include_token1] = ACTIONS(2732), + [aux_sym_preproc_include_token2] = ACTIONS(2732), + [aux_sym_preproc_def_token1] = ACTIONS(2732), + [aux_sym_preproc_if_token1] = ACTIONS(2732), + [aux_sym_preproc_if_token2] = ACTIONS(2732), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2732), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2732), + [aux_sym_preproc_else_token1] = ACTIONS(2732), + [aux_sym_preproc_elif_token1] = ACTIONS(2732), + [sym_preproc_directive] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_BANG] = ACTIONS(2734), + [anon_sym_TILDE] = ACTIONS(2734), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_STAR] = ACTIONS(2734), + [anon_sym_CARET] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2734), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym___extension__] = ACTIONS(2732), + [anon_sym_typedef] = ACTIONS(2732), + [anon_sym_extern] = ACTIONS(2732), + [anon_sym___attribute__] = ACTIONS(2732), + [anon_sym___attribute] = ACTIONS(2732), + [anon_sym_noreturn] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym___declspec] = ACTIONS(2732), + [anon_sym___cdecl] = ACTIONS(2732), + [anon_sym___clrcall] = ACTIONS(2732), + [anon_sym___stdcall] = ACTIONS(2732), + [anon_sym___fastcall] = ACTIONS(2732), + [anon_sym___thiscall] = ACTIONS(2732), + [anon_sym___vectorcall] = ACTIONS(2732), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_signed] = ACTIONS(2732), + [anon_sym_unsigned] = ACTIONS(2732), + [anon_sym_long] = ACTIONS(2732), + [anon_sym_short] = ACTIONS(2732), + [anon_sym_static] = ACTIONS(2732), + [anon_sym_ATautoreleasepool] = ACTIONS(2734), + [anon_sym_auto] = ACTIONS(2732), + [anon_sym_register] = ACTIONS(2732), + [anon_sym_inline] = ACTIONS(2732), + [anon_sym___inline] = ACTIONS(2732), + [anon_sym___inline__] = ACTIONS(2732), + [anon_sym___forceinline] = ACTIONS(2732), + [anon_sym_thread_local] = ACTIONS(2732), + [anon_sym___thread] = ACTIONS(2732), + [anon_sym_CG_EXTERN] = ACTIONS(2732), + [anon_sym_CG_INLINE] = ACTIONS(2732), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2732), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2732), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2732), + [anon_sym_IBOutlet] = ACTIONS(2732), + [anon_sym_IBInspectable] = ACTIONS(2732), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2732), + [anon_sym_NS_INLINE] = ACTIONS(2732), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2732), + [anon_sym_OBJC_EXPORT] = ACTIONS(2732), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2732), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2732), + [anon_sym_const] = ACTIONS(2732), + [anon_sym_constexpr] = ACTIONS(2732), + [anon_sym_volatile] = ACTIONS(2732), + [anon_sym_restrict] = ACTIONS(2732), + [anon_sym___restrict__] = ACTIONS(2732), + [anon_sym__Atomic] = ACTIONS(2732), + [anon_sym__Noreturn] = ACTIONS(2732), + [anon_sym__Nonnull] = ACTIONS(2732), + [anon_sym_nullable] = ACTIONS(2732), + [anon_sym__Complex] = ACTIONS(2732), + [anon_sym__Nullable] = ACTIONS(2732), + [anon_sym__Nullable_result] = ACTIONS(2732), + [anon_sym__Null_unspecified] = ACTIONS(2732), + [anon_sym___autoreleasing] = ACTIONS(2732), + [anon_sym___block] = ACTIONS(2732), + [anon_sym___bridge] = ACTIONS(2732), + [anon_sym___bridge_retained] = ACTIONS(2732), + [anon_sym___bridge_transfer] = ACTIONS(2732), + [anon_sym___complex] = ACTIONS(2732), + [anon_sym___const] = ACTIONS(2732), + [anon_sym___imag] = ACTIONS(2732), + [anon_sym___kindof] = ACTIONS(2732), + [anon_sym___nonnull] = ACTIONS(2732), + [anon_sym___nullable] = ACTIONS(2732), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2732), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2732), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2732), + [anon_sym___real] = ACTIONS(2732), + [anon_sym___strong] = ACTIONS(2732), + [anon_sym___unsafe_unretained] = ACTIONS(2732), + [anon_sym___unused] = ACTIONS(2732), + [anon_sym___weak] = ACTIONS(2732), + [anon_sym_alignas] = ACTIONS(2732), + [anon_sym__Alignas] = ACTIONS(2732), + [sym_primitive_type] = ACTIONS(2732), + [anon_sym_enum] = ACTIONS(2732), + [anon_sym_struct] = ACTIONS(2732), + [anon_sym_union] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_switch] = ACTIONS(2732), + [anon_sym_case] = ACTIONS(2732), + [anon_sym_default] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_break] = ACTIONS(2732), + [anon_sym_continue] = ACTIONS(2732), + [anon_sym_goto] = ACTIONS(2732), + [anon_sym_DASH_DASH] = ACTIONS(2734), + [anon_sym_PLUS_PLUS] = ACTIONS(2734), + [anon_sym_sizeof] = ACTIONS(2732), + [anon_sym___alignof__] = ACTIONS(2732), + [anon_sym___alignof] = ACTIONS(2732), + [anon_sym__alignof] = ACTIONS(2732), + [anon_sym_alignof] = ACTIONS(2732), + [anon_sym__Alignof] = ACTIONS(2732), + [anon_sym_offsetof] = ACTIONS(2732), + [anon_sym__Generic] = ACTIONS(2732), + [anon_sym_asm] = ACTIONS(2732), + [anon_sym___asm__] = ACTIONS(2732), + [anon_sym___asm] = ACTIONS(2732), + [sym_number_literal] = ACTIONS(2734), + [anon_sym_L_SQUOTE] = ACTIONS(2734), + [anon_sym_u_SQUOTE] = ACTIONS(2734), + [anon_sym_U_SQUOTE] = ACTIONS(2734), + [anon_sym_u8_SQUOTE] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_AT] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2734), + [anon_sym_L_DQUOTE] = ACTIONS(2734), + [anon_sym_u_DQUOTE] = ACTIONS(2734), + [anon_sym_U_DQUOTE] = ACTIONS(2734), + [anon_sym_u8_DQUOTE] = ACTIONS(2734), + [sym_true] = ACTIONS(2732), + [sym_false] = ACTIONS(2732), + [anon_sym_NULL] = ACTIONS(2732), + [anon_sym_nullptr] = ACTIONS(2732), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2732), + [anon_sym___typeof] = ACTIONS(2732), + [anon_sym_typeof] = ACTIONS(2732), + [anon_sym_ATimport] = ACTIONS(2734), + [aux_sym_preproc_undef_token1] = ACTIONS(2732), + [anon_sym_POUND] = ACTIONS(2732), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2732), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2732), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2732), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2732), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2732), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2732), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2732), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2732), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2732), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2732), + [anon_sym_NS_AVAILABLE] = ACTIONS(2732), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2732), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2732), + [anon_sym_API_AVAILABLE] = ACTIONS(2732), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2732), + [anon_sym_API_DEPRECATED] = ACTIONS(2732), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2732), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2732), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2732), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2732), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2732), + [anon_sym___deprecated_msg] = ACTIONS(2732), + [anon_sym___deprecated_enum_msg] = ACTIONS(2732), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2732), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2732), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2732), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2732), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2732), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2732), + [anon_sym_ATprotocol] = ACTIONS(2734), + [anon_sym_ATinterface] = ACTIONS(2734), + [anon_sym_ATimplementation] = ACTIONS(2734), + [anon_sym_ATcompatibility_alias] = ACTIONS(2734), + [anon_sym_ATsynthesize] = ACTIONS(2734), + [anon_sym_ATdynamic] = ACTIONS(2734), + [anon_sym_ATtry] = ACTIONS(2734), + [anon_sym___try] = ACTIONS(2732), + [anon_sym_ATthrow] = ACTIONS(2734), + [anon_sym_ATselector] = ACTIONS(2734), + [anon_sym_ATavailable] = ACTIONS(2734), + [anon_sym___builtin_available] = ACTIONS(2732), + [anon_sym_va_arg] = ACTIONS(2732), + [anon_sym_ATencode] = ACTIONS(2734), + [anon_sym_ATsynchronized] = ACTIONS(2734), + [anon_sym_BOOL] = ACTIONS(2732), + [anon_sym_IMP] = ACTIONS(2732), + [anon_sym_SEL] = ACTIONS(2732), + [anon_sym_Class] = ACTIONS(2732), + [anon_sym_id] = ACTIONS(2732), + }, + [472] = { + [sym_identifier] = ACTIONS(2660), + [aux_sym_preproc_include_token1] = ACTIONS(2660), + [aux_sym_preproc_include_token2] = ACTIONS(2660), + [aux_sym_preproc_def_token1] = ACTIONS(2660), + [aux_sym_preproc_if_token1] = ACTIONS(2660), + [aux_sym_preproc_if_token2] = ACTIONS(2660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2660), + [aux_sym_preproc_else_token1] = ACTIONS(2660), + [aux_sym_preproc_elif_token1] = ACTIONS(2660), + [sym_preproc_directive] = ACTIONS(2660), + [anon_sym_LPAREN2] = ACTIONS(2662), + [anon_sym_BANG] = ACTIONS(2662), + [anon_sym_TILDE] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2660), + [anon_sym_PLUS] = ACTIONS(2660), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_CARET] = ACTIONS(2662), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym___extension__] = ACTIONS(2660), + [anon_sym_typedef] = ACTIONS(2660), + [anon_sym_extern] = ACTIONS(2660), + [anon_sym___attribute__] = ACTIONS(2660), + [anon_sym___attribute] = ACTIONS(2660), + [anon_sym_noreturn] = ACTIONS(2660), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym___declspec] = ACTIONS(2660), + [anon_sym___cdecl] = ACTIONS(2660), + [anon_sym___clrcall] = ACTIONS(2660), + [anon_sym___stdcall] = ACTIONS(2660), + [anon_sym___fastcall] = ACTIONS(2660), + [anon_sym___thiscall] = ACTIONS(2660), + [anon_sym___vectorcall] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_signed] = ACTIONS(2660), + [anon_sym_unsigned] = ACTIONS(2660), + [anon_sym_long] = ACTIONS(2660), + [anon_sym_short] = ACTIONS(2660), + [anon_sym_static] = ACTIONS(2660), + [anon_sym_ATautoreleasepool] = ACTIONS(2662), + [anon_sym_auto] = ACTIONS(2660), + [anon_sym_register] = ACTIONS(2660), + [anon_sym_inline] = ACTIONS(2660), + [anon_sym___inline] = ACTIONS(2660), + [anon_sym___inline__] = ACTIONS(2660), + [anon_sym___forceinline] = ACTIONS(2660), + [anon_sym_thread_local] = ACTIONS(2660), + [anon_sym___thread] = ACTIONS(2660), + [anon_sym_CG_EXTERN] = ACTIONS(2660), + [anon_sym_CG_INLINE] = ACTIONS(2660), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2660), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2660), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2660), + [anon_sym_IBOutlet] = ACTIONS(2660), + [anon_sym_IBInspectable] = ACTIONS(2660), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2660), + [anon_sym_NS_INLINE] = ACTIONS(2660), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2660), + [anon_sym_OBJC_EXPORT] = ACTIONS(2660), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2660), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2660), + [anon_sym_const] = ACTIONS(2660), + [anon_sym_constexpr] = ACTIONS(2660), + [anon_sym_volatile] = ACTIONS(2660), + [anon_sym_restrict] = ACTIONS(2660), + [anon_sym___restrict__] = ACTIONS(2660), + [anon_sym__Atomic] = ACTIONS(2660), + [anon_sym__Noreturn] = ACTIONS(2660), + [anon_sym__Nonnull] = ACTIONS(2660), + [anon_sym_nullable] = ACTIONS(2660), + [anon_sym__Complex] = ACTIONS(2660), + [anon_sym__Nullable] = ACTIONS(2660), + [anon_sym__Nullable_result] = ACTIONS(2660), + [anon_sym__Null_unspecified] = ACTIONS(2660), + [anon_sym___autoreleasing] = ACTIONS(2660), + [anon_sym___block] = ACTIONS(2660), + [anon_sym___bridge] = ACTIONS(2660), + [anon_sym___bridge_retained] = ACTIONS(2660), + [anon_sym___bridge_transfer] = ACTIONS(2660), + [anon_sym___complex] = ACTIONS(2660), + [anon_sym___const] = ACTIONS(2660), + [anon_sym___imag] = ACTIONS(2660), + [anon_sym___kindof] = ACTIONS(2660), + [anon_sym___nonnull] = ACTIONS(2660), + [anon_sym___nullable] = ACTIONS(2660), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2660), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2660), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2660), + [anon_sym___real] = ACTIONS(2660), + [anon_sym___strong] = ACTIONS(2660), + [anon_sym___unsafe_unretained] = ACTIONS(2660), + [anon_sym___unused] = ACTIONS(2660), + [anon_sym___weak] = ACTIONS(2660), + [anon_sym_alignas] = ACTIONS(2660), + [anon_sym__Alignas] = ACTIONS(2660), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_enum] = ACTIONS(2660), + [anon_sym_struct] = ACTIONS(2660), + [anon_sym_union] = ACTIONS(2660), + [anon_sym_if] = ACTIONS(2660), + [anon_sym_switch] = ACTIONS(2660), + [anon_sym_case] = ACTIONS(2660), + [anon_sym_default] = ACTIONS(2660), + [anon_sym_while] = ACTIONS(2660), + [anon_sym_do] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2660), + [anon_sym_in] = ACTIONS(2660), + [anon_sym_return] = ACTIONS(2660), + [anon_sym_break] = ACTIONS(2660), + [anon_sym_continue] = ACTIONS(2660), + [anon_sym_goto] = ACTIONS(2660), + [anon_sym_DASH_DASH] = ACTIONS(2662), + [anon_sym_PLUS_PLUS] = ACTIONS(2662), + [anon_sym_sizeof] = ACTIONS(2660), + [anon_sym___alignof__] = ACTIONS(2660), + [anon_sym___alignof] = ACTIONS(2660), + [anon_sym__alignof] = ACTIONS(2660), + [anon_sym_alignof] = ACTIONS(2660), + [anon_sym__Alignof] = ACTIONS(2660), + [anon_sym_offsetof] = ACTIONS(2660), + [anon_sym__Generic] = ACTIONS(2660), + [anon_sym_asm] = ACTIONS(2660), + [anon_sym___asm__] = ACTIONS(2660), + [anon_sym___asm] = ACTIONS(2660), + [sym_number_literal] = ACTIONS(2662), + [anon_sym_L_SQUOTE] = ACTIONS(2662), + [anon_sym_u_SQUOTE] = ACTIONS(2662), + [anon_sym_U_SQUOTE] = ACTIONS(2662), + [anon_sym_u8_SQUOTE] = ACTIONS(2662), + [anon_sym_SQUOTE] = ACTIONS(2662), + [anon_sym_AT] = ACTIONS(2660), + [anon_sym_DQUOTE] = ACTIONS(2662), + [anon_sym_L_DQUOTE] = ACTIONS(2662), + [anon_sym_u_DQUOTE] = ACTIONS(2662), + [anon_sym_U_DQUOTE] = ACTIONS(2662), + [anon_sym_u8_DQUOTE] = ACTIONS(2662), + [sym_true] = ACTIONS(2660), + [sym_false] = ACTIONS(2660), + [anon_sym_NULL] = ACTIONS(2660), + [anon_sym_nullptr] = ACTIONS(2660), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2660), + [anon_sym___typeof] = ACTIONS(2660), + [anon_sym_typeof] = ACTIONS(2660), + [anon_sym_ATimport] = ACTIONS(2662), + [aux_sym_preproc_undef_token1] = ACTIONS(2660), + [anon_sym_POUND] = ACTIONS(2660), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2660), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2660), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2660), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2660), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2660), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2660), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2660), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2660), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2660), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2660), + [anon_sym_NS_AVAILABLE] = ACTIONS(2660), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2660), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2660), + [anon_sym_API_AVAILABLE] = ACTIONS(2660), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2660), + [anon_sym_API_DEPRECATED] = ACTIONS(2660), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2660), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2660), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2660), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2660), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2660), + [anon_sym___deprecated_msg] = ACTIONS(2660), + [anon_sym___deprecated_enum_msg] = ACTIONS(2660), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2660), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2660), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2660), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2660), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2660), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2660), + [anon_sym_ATprotocol] = ACTIONS(2662), + [anon_sym_ATinterface] = ACTIONS(2662), + [anon_sym_ATimplementation] = ACTIONS(2662), + [anon_sym_ATcompatibility_alias] = ACTIONS(2662), + [anon_sym_ATsynthesize] = ACTIONS(2662), + [anon_sym_ATdynamic] = ACTIONS(2662), + [anon_sym_ATtry] = ACTIONS(2662), + [anon_sym___try] = ACTIONS(2660), + [anon_sym_ATthrow] = ACTIONS(2662), + [anon_sym_ATselector] = ACTIONS(2662), + [anon_sym_ATavailable] = ACTIONS(2662), + [anon_sym___builtin_available] = ACTIONS(2660), + [anon_sym_va_arg] = ACTIONS(2660), + [anon_sym_ATencode] = ACTIONS(2662), + [anon_sym_ATsynchronized] = ACTIONS(2662), + [anon_sym_BOOL] = ACTIONS(2660), + [anon_sym_IMP] = ACTIONS(2660), + [anon_sym_SEL] = ACTIONS(2660), + [anon_sym_Class] = ACTIONS(2660), + [anon_sym_id] = ACTIONS(2660), + }, + [473] = { + [sym_identifier] = ACTIONS(2712), + [aux_sym_preproc_include_token1] = ACTIONS(2712), + [aux_sym_preproc_include_token2] = ACTIONS(2712), + [aux_sym_preproc_def_token1] = ACTIONS(2712), + [aux_sym_preproc_if_token1] = ACTIONS(2712), + [aux_sym_preproc_if_token2] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2712), + [aux_sym_preproc_else_token1] = ACTIONS(2712), + [aux_sym_preproc_elif_token1] = ACTIONS(2712), + [sym_preproc_directive] = ACTIONS(2712), + [anon_sym_LPAREN2] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_PLUS] = ACTIONS(2712), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_CARET] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym___extension__] = ACTIONS(2712), + [anon_sym_typedef] = ACTIONS(2712), + [anon_sym_extern] = ACTIONS(2712), + [anon_sym___attribute__] = ACTIONS(2712), + [anon_sym___attribute] = ACTIONS(2712), + [anon_sym_noreturn] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym___declspec] = ACTIONS(2712), + [anon_sym___cdecl] = ACTIONS(2712), + [anon_sym___clrcall] = ACTIONS(2712), + [anon_sym___stdcall] = ACTIONS(2712), + [anon_sym___fastcall] = ACTIONS(2712), + [anon_sym___thiscall] = ACTIONS(2712), + [anon_sym___vectorcall] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_signed] = ACTIONS(2712), + [anon_sym_unsigned] = ACTIONS(2712), + [anon_sym_long] = ACTIONS(2712), + [anon_sym_short] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2712), + [anon_sym_ATautoreleasepool] = ACTIONS(2714), + [anon_sym_auto] = ACTIONS(2712), + [anon_sym_register] = ACTIONS(2712), + [anon_sym_inline] = ACTIONS(2712), + [anon_sym___inline] = ACTIONS(2712), + [anon_sym___inline__] = ACTIONS(2712), + [anon_sym___forceinline] = ACTIONS(2712), + [anon_sym_thread_local] = ACTIONS(2712), + [anon_sym___thread] = ACTIONS(2712), + [anon_sym_CG_EXTERN] = ACTIONS(2712), + [anon_sym_CG_INLINE] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2712), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2712), + [anon_sym_IBOutlet] = ACTIONS(2712), + [anon_sym_IBInspectable] = ACTIONS(2712), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2712), + [anon_sym_NS_INLINE] = ACTIONS(2712), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2712), + [anon_sym_OBJC_EXPORT] = ACTIONS(2712), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2712), + [anon_sym_const] = ACTIONS(2712), + [anon_sym_constexpr] = ACTIONS(2712), + [anon_sym_volatile] = ACTIONS(2712), + [anon_sym_restrict] = ACTIONS(2712), + [anon_sym___restrict__] = ACTIONS(2712), + [anon_sym__Atomic] = ACTIONS(2712), + [anon_sym__Noreturn] = ACTIONS(2712), + [anon_sym__Nonnull] = ACTIONS(2712), + [anon_sym_nullable] = ACTIONS(2712), + [anon_sym__Complex] = ACTIONS(2712), + [anon_sym__Nullable] = ACTIONS(2712), + [anon_sym__Nullable_result] = ACTIONS(2712), + [anon_sym__Null_unspecified] = ACTIONS(2712), + [anon_sym___autoreleasing] = ACTIONS(2712), + [anon_sym___block] = ACTIONS(2712), + [anon_sym___bridge] = ACTIONS(2712), + [anon_sym___bridge_retained] = ACTIONS(2712), + [anon_sym___bridge_transfer] = ACTIONS(2712), + [anon_sym___complex] = ACTIONS(2712), + [anon_sym___const] = ACTIONS(2712), + [anon_sym___imag] = ACTIONS(2712), + [anon_sym___kindof] = ACTIONS(2712), + [anon_sym___nonnull] = ACTIONS(2712), + [anon_sym___nullable] = ACTIONS(2712), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2712), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2712), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2712), + [anon_sym___real] = ACTIONS(2712), + [anon_sym___strong] = ACTIONS(2712), + [anon_sym___unsafe_unretained] = ACTIONS(2712), + [anon_sym___unused] = ACTIONS(2712), + [anon_sym___weak] = ACTIONS(2712), + [anon_sym_alignas] = ACTIONS(2712), + [anon_sym__Alignas] = ACTIONS(2712), + [sym_primitive_type] = ACTIONS(2712), + [anon_sym_enum] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_union] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_switch] = ACTIONS(2712), + [anon_sym_case] = ACTIONS(2712), + [anon_sym_default] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_do] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_goto] = ACTIONS(2712), + [anon_sym_DASH_DASH] = ACTIONS(2714), + [anon_sym_PLUS_PLUS] = ACTIONS(2714), + [anon_sym_sizeof] = ACTIONS(2712), + [anon_sym___alignof__] = ACTIONS(2712), + [anon_sym___alignof] = ACTIONS(2712), + [anon_sym__alignof] = ACTIONS(2712), + [anon_sym_alignof] = ACTIONS(2712), + [anon_sym__Alignof] = ACTIONS(2712), + [anon_sym_offsetof] = ACTIONS(2712), + [anon_sym__Generic] = ACTIONS(2712), + [anon_sym_asm] = ACTIONS(2712), + [anon_sym___asm__] = ACTIONS(2712), + [anon_sym___asm] = ACTIONS(2712), + [sym_number_literal] = ACTIONS(2714), + [anon_sym_L_SQUOTE] = ACTIONS(2714), + [anon_sym_u_SQUOTE] = ACTIONS(2714), + [anon_sym_U_SQUOTE] = ACTIONS(2714), + [anon_sym_u8_SQUOTE] = ACTIONS(2714), + [anon_sym_SQUOTE] = ACTIONS(2714), + [anon_sym_AT] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2714), + [anon_sym_L_DQUOTE] = ACTIONS(2714), + [anon_sym_u_DQUOTE] = ACTIONS(2714), + [anon_sym_U_DQUOTE] = ACTIONS(2714), + [anon_sym_u8_DQUOTE] = ACTIONS(2714), + [sym_true] = ACTIONS(2712), + [sym_false] = ACTIONS(2712), + [anon_sym_NULL] = ACTIONS(2712), + [anon_sym_nullptr] = ACTIONS(2712), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2712), + [anon_sym___typeof] = ACTIONS(2712), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_ATimport] = ACTIONS(2714), + [aux_sym_preproc_undef_token1] = ACTIONS(2712), + [anon_sym_POUND] = ACTIONS(2712), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2712), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2712), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2712), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2712), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE] = ACTIONS(2712), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_API_AVAILABLE] = ACTIONS(2712), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_API_DEPRECATED] = ACTIONS(2712), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2712), + [anon_sym___deprecated_msg] = ACTIONS(2712), + [anon_sym___deprecated_enum_msg] = ACTIONS(2712), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2712), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2712), + [anon_sym_ATprotocol] = ACTIONS(2714), + [anon_sym_ATinterface] = ACTIONS(2714), + [anon_sym_ATimplementation] = ACTIONS(2714), + [anon_sym_ATcompatibility_alias] = ACTIONS(2714), + [anon_sym_ATsynthesize] = ACTIONS(2714), + [anon_sym_ATdynamic] = ACTIONS(2714), + [anon_sym_ATtry] = ACTIONS(2714), + [anon_sym___try] = ACTIONS(2712), + [anon_sym_ATthrow] = ACTIONS(2714), + [anon_sym_ATselector] = ACTIONS(2714), + [anon_sym_ATavailable] = ACTIONS(2714), + [anon_sym___builtin_available] = ACTIONS(2712), + [anon_sym_va_arg] = ACTIONS(2712), + [anon_sym_ATencode] = ACTIONS(2714), + [anon_sym_ATsynchronized] = ACTIONS(2714), + [anon_sym_BOOL] = ACTIONS(2712), + [anon_sym_IMP] = ACTIONS(2712), + [anon_sym_SEL] = ACTIONS(2712), + [anon_sym_Class] = ACTIONS(2712), + [anon_sym_id] = ACTIONS(2712), + }, + [474] = { + [sym_identifier] = ACTIONS(2696), + [aux_sym_preproc_include_token1] = ACTIONS(2696), + [aux_sym_preproc_include_token2] = ACTIONS(2696), + [aux_sym_preproc_def_token1] = ACTIONS(2696), + [aux_sym_preproc_if_token1] = ACTIONS(2696), + [aux_sym_preproc_if_token2] = ACTIONS(2696), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2696), + [aux_sym_preproc_else_token1] = ACTIONS(2696), + [aux_sym_preproc_elif_token1] = ACTIONS(2696), + [sym_preproc_directive] = ACTIONS(2696), + [anon_sym_LPAREN2] = ACTIONS(2698), + [anon_sym_BANG] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2698), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_CARET] = ACTIONS(2698), + [anon_sym_AMP] = ACTIONS(2698), + [anon_sym_SEMI] = ACTIONS(2698), + [anon_sym___extension__] = ACTIONS(2696), + [anon_sym_typedef] = ACTIONS(2696), + [anon_sym_extern] = ACTIONS(2696), + [anon_sym___attribute__] = ACTIONS(2696), + [anon_sym___attribute] = ACTIONS(2696), + [anon_sym_noreturn] = ACTIONS(2696), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym___declspec] = ACTIONS(2696), + [anon_sym___cdecl] = ACTIONS(2696), + [anon_sym___clrcall] = ACTIONS(2696), + [anon_sym___stdcall] = ACTIONS(2696), + [anon_sym___fastcall] = ACTIONS(2696), + [anon_sym___thiscall] = ACTIONS(2696), + [anon_sym___vectorcall] = ACTIONS(2696), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_signed] = ACTIONS(2696), + [anon_sym_unsigned] = ACTIONS(2696), + [anon_sym_long] = ACTIONS(2696), + [anon_sym_short] = ACTIONS(2696), + [anon_sym_static] = ACTIONS(2696), + [anon_sym_ATautoreleasepool] = ACTIONS(2698), + [anon_sym_auto] = ACTIONS(2696), + [anon_sym_register] = ACTIONS(2696), + [anon_sym_inline] = ACTIONS(2696), + [anon_sym___inline] = ACTIONS(2696), + [anon_sym___inline__] = ACTIONS(2696), + [anon_sym___forceinline] = ACTIONS(2696), + [anon_sym_thread_local] = ACTIONS(2696), + [anon_sym___thread] = ACTIONS(2696), + [anon_sym_CG_EXTERN] = ACTIONS(2696), + [anon_sym_CG_INLINE] = ACTIONS(2696), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2696), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2696), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2696), + [anon_sym_IBOutlet] = ACTIONS(2696), + [anon_sym_IBInspectable] = ACTIONS(2696), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2696), + [anon_sym_NS_INLINE] = ACTIONS(2696), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2696), + [anon_sym_OBJC_EXPORT] = ACTIONS(2696), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2696), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2696), + [anon_sym_const] = ACTIONS(2696), + [anon_sym_constexpr] = ACTIONS(2696), + [anon_sym_volatile] = ACTIONS(2696), + [anon_sym_restrict] = ACTIONS(2696), + [anon_sym___restrict__] = ACTIONS(2696), + [anon_sym__Atomic] = ACTIONS(2696), + [anon_sym__Noreturn] = ACTIONS(2696), + [anon_sym__Nonnull] = ACTIONS(2696), + [anon_sym_nullable] = ACTIONS(2696), + [anon_sym__Complex] = ACTIONS(2696), + [anon_sym__Nullable] = ACTIONS(2696), + [anon_sym__Nullable_result] = ACTIONS(2696), + [anon_sym__Null_unspecified] = ACTIONS(2696), + [anon_sym___autoreleasing] = ACTIONS(2696), + [anon_sym___block] = ACTIONS(2696), + [anon_sym___bridge] = ACTIONS(2696), + [anon_sym___bridge_retained] = ACTIONS(2696), + [anon_sym___bridge_transfer] = ACTIONS(2696), + [anon_sym___complex] = ACTIONS(2696), + [anon_sym___const] = ACTIONS(2696), + [anon_sym___imag] = ACTIONS(2696), + [anon_sym___kindof] = ACTIONS(2696), + [anon_sym___nonnull] = ACTIONS(2696), + [anon_sym___nullable] = ACTIONS(2696), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2696), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2696), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2696), + [anon_sym___real] = ACTIONS(2696), + [anon_sym___strong] = ACTIONS(2696), + [anon_sym___unsafe_unretained] = ACTIONS(2696), + [anon_sym___unused] = ACTIONS(2696), + [anon_sym___weak] = ACTIONS(2696), + [anon_sym_alignas] = ACTIONS(2696), + [anon_sym__Alignas] = ACTIONS(2696), + [sym_primitive_type] = ACTIONS(2696), + [anon_sym_enum] = ACTIONS(2696), + [anon_sym_struct] = ACTIONS(2696), + [anon_sym_union] = ACTIONS(2696), + [anon_sym_if] = ACTIONS(2696), + [anon_sym_switch] = ACTIONS(2696), + [anon_sym_case] = ACTIONS(2696), + [anon_sym_default] = ACTIONS(2696), + [anon_sym_while] = ACTIONS(2696), + [anon_sym_do] = ACTIONS(2696), + [anon_sym_for] = ACTIONS(2696), + [anon_sym_in] = ACTIONS(2696), + [anon_sym_return] = ACTIONS(2696), + [anon_sym_break] = ACTIONS(2696), + [anon_sym_continue] = ACTIONS(2696), + [anon_sym_goto] = ACTIONS(2696), + [anon_sym_DASH_DASH] = ACTIONS(2698), + [anon_sym_PLUS_PLUS] = ACTIONS(2698), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2696), + [anon_sym___alignof] = ACTIONS(2696), + [anon_sym__alignof] = ACTIONS(2696), + [anon_sym_alignof] = ACTIONS(2696), + [anon_sym__Alignof] = ACTIONS(2696), + [anon_sym_offsetof] = ACTIONS(2696), + [anon_sym__Generic] = ACTIONS(2696), + [anon_sym_asm] = ACTIONS(2696), + [anon_sym___asm__] = ACTIONS(2696), + [anon_sym___asm] = ACTIONS(2696), + [sym_number_literal] = ACTIONS(2698), + [anon_sym_L_SQUOTE] = ACTIONS(2698), + [anon_sym_u_SQUOTE] = ACTIONS(2698), + [anon_sym_U_SQUOTE] = ACTIONS(2698), + [anon_sym_u8_SQUOTE] = ACTIONS(2698), + [anon_sym_SQUOTE] = ACTIONS(2698), + [anon_sym_AT] = ACTIONS(2696), + [anon_sym_DQUOTE] = ACTIONS(2698), + [anon_sym_L_DQUOTE] = ACTIONS(2698), + [anon_sym_u_DQUOTE] = ACTIONS(2698), + [anon_sym_U_DQUOTE] = ACTIONS(2698), + [anon_sym_u8_DQUOTE] = ACTIONS(2698), + [sym_true] = ACTIONS(2696), + [sym_false] = ACTIONS(2696), + [anon_sym_NULL] = ACTIONS(2696), + [anon_sym_nullptr] = ACTIONS(2696), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2696), + [anon_sym___typeof] = ACTIONS(2696), + [anon_sym_typeof] = ACTIONS(2696), + [anon_sym_ATimport] = ACTIONS(2698), + [aux_sym_preproc_undef_token1] = ACTIONS(2696), + [anon_sym_POUND] = ACTIONS(2696), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2696), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2696), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2696), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2696), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2696), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2696), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2696), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2696), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2696), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2696), + [anon_sym_NS_AVAILABLE] = ACTIONS(2696), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2696), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2696), + [anon_sym_API_AVAILABLE] = ACTIONS(2696), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2696), + [anon_sym_API_DEPRECATED] = ACTIONS(2696), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2696), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2696), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2696), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2696), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2696), + [anon_sym___deprecated_msg] = ACTIONS(2696), + [anon_sym___deprecated_enum_msg] = ACTIONS(2696), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2696), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2696), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2696), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2696), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2696), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2696), + [anon_sym_ATprotocol] = ACTIONS(2698), + [anon_sym_ATinterface] = ACTIONS(2698), + [anon_sym_ATimplementation] = ACTIONS(2698), + [anon_sym_ATcompatibility_alias] = ACTIONS(2698), + [anon_sym_ATsynthesize] = ACTIONS(2698), + [anon_sym_ATdynamic] = ACTIONS(2698), + [anon_sym_ATtry] = ACTIONS(2698), + [anon_sym___try] = ACTIONS(2696), + [anon_sym_ATthrow] = ACTIONS(2698), + [anon_sym_ATselector] = ACTIONS(2698), + [anon_sym_ATavailable] = ACTIONS(2698), + [anon_sym___builtin_available] = ACTIONS(2696), + [anon_sym_va_arg] = ACTIONS(2696), + [anon_sym_ATencode] = ACTIONS(2698), + [anon_sym_ATsynchronized] = ACTIONS(2698), + [anon_sym_BOOL] = ACTIONS(2696), + [anon_sym_IMP] = ACTIONS(2696), + [anon_sym_SEL] = ACTIONS(2696), + [anon_sym_Class] = ACTIONS(2696), + [anon_sym_id] = ACTIONS(2696), + }, + [475] = { + [sym_identifier] = ACTIONS(2852), + [aux_sym_preproc_include_token1] = ACTIONS(2852), + [aux_sym_preproc_include_token2] = ACTIONS(2852), + [aux_sym_preproc_def_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token2] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2852), + [aux_sym_preproc_else_token1] = ACTIONS(2852), + [aux_sym_preproc_elif_token1] = ACTIONS(2852), + [sym_preproc_directive] = ACTIONS(2852), + [anon_sym_LPAREN2] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_CARET] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym___extension__] = ACTIONS(2852), + [anon_sym_typedef] = ACTIONS(2852), + [anon_sym_extern] = ACTIONS(2852), + [anon_sym___attribute__] = ACTIONS(2852), + [anon_sym___attribute] = ACTIONS(2852), + [anon_sym_noreturn] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2854), + [anon_sym___declspec] = ACTIONS(2852), + [anon_sym___cdecl] = ACTIONS(2852), + [anon_sym___clrcall] = ACTIONS(2852), + [anon_sym___stdcall] = ACTIONS(2852), + [anon_sym___fastcall] = ACTIONS(2852), + [anon_sym___thiscall] = ACTIONS(2852), + [anon_sym___vectorcall] = ACTIONS(2852), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_signed] = ACTIONS(2852), + [anon_sym_unsigned] = ACTIONS(2852), + [anon_sym_long] = ACTIONS(2852), + [anon_sym_short] = ACTIONS(2852), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_ATautoreleasepool] = ACTIONS(2854), + [anon_sym_auto] = ACTIONS(2852), + [anon_sym_register] = ACTIONS(2852), + [anon_sym_inline] = ACTIONS(2852), + [anon_sym___inline] = ACTIONS(2852), + [anon_sym___inline__] = ACTIONS(2852), + [anon_sym___forceinline] = ACTIONS(2852), + [anon_sym_thread_local] = ACTIONS(2852), + [anon_sym___thread] = ACTIONS(2852), + [anon_sym_CG_EXTERN] = ACTIONS(2852), + [anon_sym_CG_INLINE] = ACTIONS(2852), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2852), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2852), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2852), + [anon_sym_IBOutlet] = ACTIONS(2852), + [anon_sym_IBInspectable] = ACTIONS(2852), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2852), + [anon_sym_NS_INLINE] = ACTIONS(2852), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2852), + [anon_sym_OBJC_EXPORT] = ACTIONS(2852), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2852), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2852), + [anon_sym_const] = ACTIONS(2852), + [anon_sym_constexpr] = ACTIONS(2852), + [anon_sym_volatile] = ACTIONS(2852), + [anon_sym_restrict] = ACTIONS(2852), + [anon_sym___restrict__] = ACTIONS(2852), + [anon_sym__Atomic] = ACTIONS(2852), + [anon_sym__Noreturn] = ACTIONS(2852), + [anon_sym__Nonnull] = ACTIONS(2852), + [anon_sym_nullable] = ACTIONS(2852), + [anon_sym__Complex] = ACTIONS(2852), + [anon_sym__Nullable] = ACTIONS(2852), + [anon_sym__Nullable_result] = ACTIONS(2852), + [anon_sym__Null_unspecified] = ACTIONS(2852), + [anon_sym___autoreleasing] = ACTIONS(2852), + [anon_sym___block] = ACTIONS(2852), + [anon_sym___bridge] = ACTIONS(2852), + [anon_sym___bridge_retained] = ACTIONS(2852), + [anon_sym___bridge_transfer] = ACTIONS(2852), + [anon_sym___complex] = ACTIONS(2852), + [anon_sym___const] = ACTIONS(2852), + [anon_sym___imag] = ACTIONS(2852), + [anon_sym___kindof] = ACTIONS(2852), + [anon_sym___nonnull] = ACTIONS(2852), + [anon_sym___nullable] = ACTIONS(2852), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2852), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2852), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2852), + [anon_sym___real] = ACTIONS(2852), + [anon_sym___strong] = ACTIONS(2852), + [anon_sym___unsafe_unretained] = ACTIONS(2852), + [anon_sym___unused] = ACTIONS(2852), + [anon_sym___weak] = ACTIONS(2852), + [anon_sym_alignas] = ACTIONS(2852), + [anon_sym__Alignas] = ACTIONS(2852), + [sym_primitive_type] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2852), + [anon_sym_union] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_switch] = ACTIONS(2852), + [anon_sym_case] = ACTIONS(2852), + [anon_sym_default] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_in] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_break] = ACTIONS(2852), + [anon_sym_continue] = ACTIONS(2852), + [anon_sym_goto] = ACTIONS(2852), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_sizeof] = ACTIONS(2852), + [anon_sym___alignof__] = ACTIONS(2852), + [anon_sym___alignof] = ACTIONS(2852), + [anon_sym__alignof] = ACTIONS(2852), + [anon_sym_alignof] = ACTIONS(2852), + [anon_sym__Alignof] = ACTIONS(2852), + [anon_sym_offsetof] = ACTIONS(2852), + [anon_sym__Generic] = ACTIONS(2852), + [anon_sym_asm] = ACTIONS(2852), + [anon_sym___asm__] = ACTIONS(2852), + [anon_sym___asm] = ACTIONS(2852), + [sym_number_literal] = ACTIONS(2854), + [anon_sym_L_SQUOTE] = ACTIONS(2854), + [anon_sym_u_SQUOTE] = ACTIONS(2854), + [anon_sym_U_SQUOTE] = ACTIONS(2854), + [anon_sym_u8_SQUOTE] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_AT] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2854), + [anon_sym_L_DQUOTE] = ACTIONS(2854), + [anon_sym_u_DQUOTE] = ACTIONS(2854), + [anon_sym_U_DQUOTE] = ACTIONS(2854), + [anon_sym_u8_DQUOTE] = ACTIONS(2854), + [sym_true] = ACTIONS(2852), + [sym_false] = ACTIONS(2852), + [anon_sym_NULL] = ACTIONS(2852), + [anon_sym_nullptr] = ACTIONS(2852), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2852), + [anon_sym___typeof] = ACTIONS(2852), + [anon_sym_typeof] = ACTIONS(2852), + [anon_sym_ATimport] = ACTIONS(2854), + [aux_sym_preproc_undef_token1] = ACTIONS(2852), + [anon_sym_POUND] = ACTIONS(2852), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2852), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2852), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2852), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2852), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2852), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2852), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2852), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2852), + [anon_sym_NS_AVAILABLE] = ACTIONS(2852), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2852), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_API_AVAILABLE] = ACTIONS(2852), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_API_DEPRECATED] = ACTIONS(2852), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2852), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2852), + [anon_sym___deprecated_msg] = ACTIONS(2852), + [anon_sym___deprecated_enum_msg] = ACTIONS(2852), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2852), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2852), + [anon_sym_ATprotocol] = ACTIONS(2854), + [anon_sym_ATinterface] = ACTIONS(2854), + [anon_sym_ATimplementation] = ACTIONS(2854), + [anon_sym_ATcompatibility_alias] = ACTIONS(2854), + [anon_sym_ATsynthesize] = ACTIONS(2854), + [anon_sym_ATdynamic] = ACTIONS(2854), + [anon_sym_ATtry] = ACTIONS(2854), + [anon_sym___try] = ACTIONS(2852), + [anon_sym_ATthrow] = ACTIONS(2854), + [anon_sym_ATselector] = ACTIONS(2854), + [anon_sym_ATavailable] = ACTIONS(2854), + [anon_sym___builtin_available] = ACTIONS(2852), + [anon_sym_va_arg] = ACTIONS(2852), + [anon_sym_ATencode] = ACTIONS(2854), + [anon_sym_ATsynchronized] = ACTIONS(2854), + [anon_sym_BOOL] = ACTIONS(2852), + [anon_sym_IMP] = ACTIONS(2852), + [anon_sym_SEL] = ACTIONS(2852), + [anon_sym_Class] = ACTIONS(2852), + [anon_sym_id] = ACTIONS(2852), + }, + [476] = { + [sym_identifier] = ACTIONS(2768), + [aux_sym_preproc_include_token1] = ACTIONS(2768), + [aux_sym_preproc_include_token2] = ACTIONS(2768), + [aux_sym_preproc_def_token1] = ACTIONS(2768), + [aux_sym_preproc_if_token1] = ACTIONS(2768), + [aux_sym_preproc_if_token2] = ACTIONS(2768), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2768), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2768), + [aux_sym_preproc_else_token1] = ACTIONS(2768), + [aux_sym_preproc_elif_token1] = ACTIONS(2768), + [sym_preproc_directive] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_TILDE] = ACTIONS(2770), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(2770), + [anon_sym_CARET] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2770), + [anon_sym_SEMI] = ACTIONS(2770), + [anon_sym___extension__] = ACTIONS(2768), + [anon_sym_typedef] = ACTIONS(2768), + [anon_sym_extern] = ACTIONS(2768), + [anon_sym___attribute__] = ACTIONS(2768), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2770), + [anon_sym___declspec] = ACTIONS(2768), + [anon_sym___cdecl] = ACTIONS(2768), + [anon_sym___clrcall] = ACTIONS(2768), + [anon_sym___stdcall] = ACTIONS(2768), + [anon_sym___fastcall] = ACTIONS(2768), + [anon_sym___thiscall] = ACTIONS(2768), + [anon_sym___vectorcall] = ACTIONS(2768), + [anon_sym_LBRACE] = ACTIONS(2770), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_ATautoreleasepool] = ACTIONS(2770), + [anon_sym_auto] = ACTIONS(2768), + [anon_sym_register] = ACTIONS(2768), + [anon_sym_inline] = ACTIONS(2768), + [anon_sym___inline] = ACTIONS(2768), + [anon_sym___inline__] = ACTIONS(2768), + [anon_sym___forceinline] = ACTIONS(2768), + [anon_sym_thread_local] = ACTIONS(2768), + [anon_sym___thread] = ACTIONS(2768), + [anon_sym_CG_EXTERN] = ACTIONS(2768), + [anon_sym_CG_INLINE] = ACTIONS(2768), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2768), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2768), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2768), + [anon_sym_IBOutlet] = ACTIONS(2768), + [anon_sym_IBInspectable] = ACTIONS(2768), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2768), + [anon_sym_NS_INLINE] = ACTIONS(2768), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2768), + [anon_sym_OBJC_EXPORT] = ACTIONS(2768), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2768), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_nullable] = ACTIONS(2768), + [anon_sym__Complex] = ACTIONS(2768), + [anon_sym__Nullable] = ACTIONS(2768), + [anon_sym__Nullable_result] = ACTIONS(2768), + [anon_sym__Null_unspecified] = ACTIONS(2768), + [anon_sym___autoreleasing] = ACTIONS(2768), + [anon_sym___block] = ACTIONS(2768), + [anon_sym___bridge] = ACTIONS(2768), + [anon_sym___bridge_retained] = ACTIONS(2768), + [anon_sym___bridge_transfer] = ACTIONS(2768), + [anon_sym___complex] = ACTIONS(2768), + [anon_sym___const] = ACTIONS(2768), + [anon_sym___imag] = ACTIONS(2768), + [anon_sym___kindof] = ACTIONS(2768), + [anon_sym___nonnull] = ACTIONS(2768), + [anon_sym___nullable] = ACTIONS(2768), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2768), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2768), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2768), + [anon_sym___real] = ACTIONS(2768), + [anon_sym___strong] = ACTIONS(2768), + [anon_sym___unsafe_unretained] = ACTIONS(2768), + [anon_sym___unused] = ACTIONS(2768), + [anon_sym___weak] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2768), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_switch] = ACTIONS(2768), + [anon_sym_case] = ACTIONS(2768), + [anon_sym_default] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_in] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_break] = ACTIONS(2768), + [anon_sym_continue] = ACTIONS(2768), + [anon_sym_goto] = ACTIONS(2768), + [anon_sym_DASH_DASH] = ACTIONS(2770), + [anon_sym_PLUS_PLUS] = ACTIONS(2770), + [anon_sym_sizeof] = ACTIONS(2768), + [anon_sym___alignof__] = ACTIONS(2768), + [anon_sym___alignof] = ACTIONS(2768), + [anon_sym__alignof] = ACTIONS(2768), + [anon_sym_alignof] = ACTIONS(2768), + [anon_sym__Alignof] = ACTIONS(2768), + [anon_sym_offsetof] = ACTIONS(2768), + [anon_sym__Generic] = ACTIONS(2768), + [anon_sym_asm] = ACTIONS(2768), + [anon_sym___asm__] = ACTIONS(2768), + [anon_sym___asm] = ACTIONS(2768), + [sym_number_literal] = ACTIONS(2770), + [anon_sym_L_SQUOTE] = ACTIONS(2770), + [anon_sym_u_SQUOTE] = ACTIONS(2770), + [anon_sym_U_SQUOTE] = ACTIONS(2770), + [anon_sym_u8_SQUOTE] = ACTIONS(2770), + [anon_sym_SQUOTE] = ACTIONS(2770), + [anon_sym_AT] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2770), + [anon_sym_L_DQUOTE] = ACTIONS(2770), + [anon_sym_u_DQUOTE] = ACTIONS(2770), + [anon_sym_U_DQUOTE] = ACTIONS(2770), + [anon_sym_u8_DQUOTE] = ACTIONS(2770), + [sym_true] = ACTIONS(2768), + [sym_false] = ACTIONS(2768), + [anon_sym_NULL] = ACTIONS(2768), + [anon_sym_nullptr] = ACTIONS(2768), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2768), + [anon_sym___typeof] = ACTIONS(2768), + [anon_sym_typeof] = ACTIONS(2768), + [anon_sym_ATimport] = ACTIONS(2770), + [aux_sym_preproc_undef_token1] = ACTIONS(2768), + [anon_sym_POUND] = ACTIONS(2768), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2768), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2768), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2768), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2768), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2768), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2768), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2768), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2768), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2768), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2768), + [anon_sym_NS_AVAILABLE] = ACTIONS(2768), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2768), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2768), + [anon_sym_API_AVAILABLE] = ACTIONS(2768), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2768), + [anon_sym_API_DEPRECATED] = ACTIONS(2768), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2768), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2768), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2768), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2768), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2768), + [anon_sym___deprecated_msg] = ACTIONS(2768), + [anon_sym___deprecated_enum_msg] = ACTIONS(2768), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2768), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2768), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2768), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2768), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2768), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2768), + [anon_sym_ATprotocol] = ACTIONS(2770), + [anon_sym_ATinterface] = ACTIONS(2770), + [anon_sym_ATimplementation] = ACTIONS(2770), + [anon_sym_ATcompatibility_alias] = ACTIONS(2770), + [anon_sym_ATsynthesize] = ACTIONS(2770), + [anon_sym_ATdynamic] = ACTIONS(2770), + [anon_sym_ATtry] = ACTIONS(2770), + [anon_sym___try] = ACTIONS(2768), + [anon_sym_ATthrow] = ACTIONS(2770), + [anon_sym_ATselector] = ACTIONS(2770), + [anon_sym_ATavailable] = ACTIONS(2770), + [anon_sym___builtin_available] = ACTIONS(2768), + [anon_sym_va_arg] = ACTIONS(2768), + [anon_sym_ATencode] = ACTIONS(2770), + [anon_sym_ATsynchronized] = ACTIONS(2770), + [anon_sym_BOOL] = ACTIONS(2768), + [anon_sym_IMP] = ACTIONS(2768), + [anon_sym_SEL] = ACTIONS(2768), + [anon_sym_Class] = ACTIONS(2768), + [anon_sym_id] = ACTIONS(2768), + }, + [477] = { + [sym_identifier] = ACTIONS(2616), + [aux_sym_preproc_include_token1] = ACTIONS(2616), + [aux_sym_preproc_include_token2] = ACTIONS(2616), + [aux_sym_preproc_def_token1] = ACTIONS(2616), + [aux_sym_preproc_if_token1] = ACTIONS(2616), + [aux_sym_preproc_if_token2] = ACTIONS(2616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2616), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2616), + [aux_sym_preproc_else_token1] = ACTIONS(2616), + [aux_sym_preproc_elif_token1] = ACTIONS(2616), + [sym_preproc_directive] = ACTIONS(2616), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2618), + [anon_sym_TILDE] = ACTIONS(2618), + [anon_sym_DASH] = ACTIONS(2616), + [anon_sym_PLUS] = ACTIONS(2616), + [anon_sym_STAR] = ACTIONS(2618), + [anon_sym_CARET] = ACTIONS(2618), + [anon_sym_AMP] = ACTIONS(2618), + [anon_sym_SEMI] = ACTIONS(2618), + [anon_sym___extension__] = ACTIONS(2616), + [anon_sym_typedef] = ACTIONS(2616), + [anon_sym_extern] = ACTIONS(2616), + [anon_sym___attribute__] = ACTIONS(2616), + [anon_sym___attribute] = ACTIONS(2616), + [anon_sym_noreturn] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(2618), + [anon_sym___declspec] = ACTIONS(2616), + [anon_sym___cdecl] = ACTIONS(2616), + [anon_sym___clrcall] = ACTIONS(2616), + [anon_sym___stdcall] = ACTIONS(2616), + [anon_sym___fastcall] = ACTIONS(2616), + [anon_sym___thiscall] = ACTIONS(2616), + [anon_sym___vectorcall] = ACTIONS(2616), + [anon_sym_LBRACE] = ACTIONS(2618), + [anon_sym_signed] = ACTIONS(2616), + [anon_sym_unsigned] = ACTIONS(2616), + [anon_sym_long] = ACTIONS(2616), + [anon_sym_short] = ACTIONS(2616), + [anon_sym_static] = ACTIONS(2616), + [anon_sym_ATautoreleasepool] = ACTIONS(2618), + [anon_sym_auto] = ACTIONS(2616), + [anon_sym_register] = ACTIONS(2616), + [anon_sym_inline] = ACTIONS(2616), + [anon_sym___inline] = ACTIONS(2616), + [anon_sym___inline__] = ACTIONS(2616), + [anon_sym___forceinline] = ACTIONS(2616), + [anon_sym_thread_local] = ACTIONS(2616), + [anon_sym___thread] = ACTIONS(2616), + [anon_sym_CG_EXTERN] = ACTIONS(2616), + [anon_sym_CG_INLINE] = ACTIONS(2616), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2616), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2616), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2616), + [anon_sym_IBOutlet] = ACTIONS(2616), + [anon_sym_IBInspectable] = ACTIONS(2616), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2616), + [anon_sym_NS_INLINE] = ACTIONS(2616), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2616), + [anon_sym_OBJC_EXPORT] = ACTIONS(2616), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2616), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2616), + [anon_sym_const] = ACTIONS(2616), + [anon_sym_constexpr] = ACTIONS(2616), + [anon_sym_volatile] = ACTIONS(2616), + [anon_sym_restrict] = ACTIONS(2616), + [anon_sym___restrict__] = ACTIONS(2616), + [anon_sym__Atomic] = ACTIONS(2616), + [anon_sym__Noreturn] = ACTIONS(2616), + [anon_sym__Nonnull] = ACTIONS(2616), + [anon_sym_nullable] = ACTIONS(2616), + [anon_sym__Complex] = ACTIONS(2616), + [anon_sym__Nullable] = ACTIONS(2616), + [anon_sym__Nullable_result] = ACTIONS(2616), + [anon_sym__Null_unspecified] = ACTIONS(2616), + [anon_sym___autoreleasing] = ACTIONS(2616), + [anon_sym___block] = ACTIONS(2616), + [anon_sym___bridge] = ACTIONS(2616), + [anon_sym___bridge_retained] = ACTIONS(2616), + [anon_sym___bridge_transfer] = ACTIONS(2616), + [anon_sym___complex] = ACTIONS(2616), + [anon_sym___const] = ACTIONS(2616), + [anon_sym___imag] = ACTIONS(2616), + [anon_sym___kindof] = ACTIONS(2616), + [anon_sym___nonnull] = ACTIONS(2616), + [anon_sym___nullable] = ACTIONS(2616), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2616), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2616), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2616), + [anon_sym___real] = ACTIONS(2616), + [anon_sym___strong] = ACTIONS(2616), + [anon_sym___unsafe_unretained] = ACTIONS(2616), + [anon_sym___unused] = ACTIONS(2616), + [anon_sym___weak] = ACTIONS(2616), + [anon_sym_alignas] = ACTIONS(2616), + [anon_sym__Alignas] = ACTIONS(2616), + [sym_primitive_type] = ACTIONS(2616), + [anon_sym_enum] = ACTIONS(2616), + [anon_sym_struct] = ACTIONS(2616), + [anon_sym_union] = ACTIONS(2616), + [anon_sym_if] = ACTIONS(2616), + [anon_sym_switch] = ACTIONS(2616), + [anon_sym_case] = ACTIONS(2616), + [anon_sym_default] = ACTIONS(2616), + [anon_sym_while] = ACTIONS(2616), + [anon_sym_do] = ACTIONS(2616), + [anon_sym_for] = ACTIONS(2616), + [anon_sym_in] = ACTIONS(2616), + [anon_sym_return] = ACTIONS(2616), + [anon_sym_break] = ACTIONS(2616), + [anon_sym_continue] = ACTIONS(2616), + [anon_sym_goto] = ACTIONS(2616), + [anon_sym_DASH_DASH] = ACTIONS(2618), + [anon_sym_PLUS_PLUS] = ACTIONS(2618), + [anon_sym_sizeof] = ACTIONS(2616), + [anon_sym___alignof__] = ACTIONS(2616), + [anon_sym___alignof] = ACTIONS(2616), + [anon_sym__alignof] = ACTIONS(2616), + [anon_sym_alignof] = ACTIONS(2616), + [anon_sym__Alignof] = ACTIONS(2616), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2616), + [anon_sym_asm] = ACTIONS(2616), + [anon_sym___asm__] = ACTIONS(2616), + [anon_sym___asm] = ACTIONS(2616), + [sym_number_literal] = ACTIONS(2618), + [anon_sym_L_SQUOTE] = ACTIONS(2618), + [anon_sym_u_SQUOTE] = ACTIONS(2618), + [anon_sym_U_SQUOTE] = ACTIONS(2618), + [anon_sym_u8_SQUOTE] = ACTIONS(2618), + [anon_sym_SQUOTE] = ACTIONS(2618), + [anon_sym_AT] = ACTIONS(2616), + [anon_sym_DQUOTE] = ACTIONS(2618), + [anon_sym_L_DQUOTE] = ACTIONS(2618), + [anon_sym_u_DQUOTE] = ACTIONS(2618), + [anon_sym_U_DQUOTE] = ACTIONS(2618), + [anon_sym_u8_DQUOTE] = ACTIONS(2618), + [sym_true] = ACTIONS(2616), + [sym_false] = ACTIONS(2616), + [anon_sym_NULL] = ACTIONS(2616), + [anon_sym_nullptr] = ACTIONS(2616), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2616), + [anon_sym___typeof] = ACTIONS(2616), + [anon_sym_typeof] = ACTIONS(2616), + [anon_sym_ATimport] = ACTIONS(2618), + [aux_sym_preproc_undef_token1] = ACTIONS(2616), + [anon_sym_POUND] = ACTIONS(2616), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2616), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2616), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2616), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2616), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2616), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2616), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2616), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2616), + [anon_sym_NS_AVAILABLE] = ACTIONS(2616), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2616), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_API_AVAILABLE] = ACTIONS(2616), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_API_DEPRECATED] = ACTIONS(2616), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2616), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2616), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2616), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2616), + [anon_sym___deprecated_msg] = ACTIONS(2616), + [anon_sym___deprecated_enum_msg] = ACTIONS(2616), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2616), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2616), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2616), + [anon_sym_ATprotocol] = ACTIONS(2618), + [anon_sym_ATinterface] = ACTIONS(2618), + [anon_sym_ATimplementation] = ACTIONS(2618), + [anon_sym_ATcompatibility_alias] = ACTIONS(2618), + [anon_sym_ATsynthesize] = ACTIONS(2618), + [anon_sym_ATdynamic] = ACTIONS(2618), + [anon_sym_ATtry] = ACTIONS(2618), + [anon_sym___try] = ACTIONS(2616), + [anon_sym_ATthrow] = ACTIONS(2618), + [anon_sym_ATselector] = ACTIONS(2618), + [anon_sym_ATavailable] = ACTIONS(2618), + [anon_sym___builtin_available] = ACTIONS(2616), + [anon_sym_va_arg] = ACTIONS(2616), + [anon_sym_ATencode] = ACTIONS(2618), + [anon_sym_ATsynchronized] = ACTIONS(2618), + [anon_sym_BOOL] = ACTIONS(2616), + [anon_sym_IMP] = ACTIONS(2616), + [anon_sym_SEL] = ACTIONS(2616), + [anon_sym_Class] = ACTIONS(2616), + [anon_sym_id] = ACTIONS(2616), + }, + [478] = { + [sym_identifier] = ACTIONS(2800), + [aux_sym_preproc_include_token1] = ACTIONS(2800), + [aux_sym_preproc_include_token2] = ACTIONS(2800), + [aux_sym_preproc_def_token1] = ACTIONS(2800), + [aux_sym_preproc_if_token1] = ACTIONS(2800), + [aux_sym_preproc_if_token2] = ACTIONS(2800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2800), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2800), + [aux_sym_preproc_else_token1] = ACTIONS(2800), + [aux_sym_preproc_elif_token1] = ACTIONS(2800), + [sym_preproc_directive] = ACTIONS(2800), + [anon_sym_LPAREN2] = ACTIONS(2802), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_TILDE] = ACTIONS(2802), + [anon_sym_DASH] = ACTIONS(2800), + [anon_sym_PLUS] = ACTIONS(2800), + [anon_sym_STAR] = ACTIONS(2802), + [anon_sym_CARET] = ACTIONS(2802), + [anon_sym_AMP] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym___extension__] = ACTIONS(2800), + [anon_sym_typedef] = ACTIONS(2800), + [anon_sym_extern] = ACTIONS(2800), + [anon_sym___attribute__] = ACTIONS(2800), + [anon_sym___attribute] = ACTIONS(2800), + [anon_sym_noreturn] = ACTIONS(2800), + [anon_sym_LBRACK] = ACTIONS(2802), + [anon_sym___declspec] = ACTIONS(2800), + [anon_sym___cdecl] = ACTIONS(2800), + [anon_sym___clrcall] = ACTIONS(2800), + [anon_sym___stdcall] = ACTIONS(2800), + [anon_sym___fastcall] = ACTIONS(2800), + [anon_sym___thiscall] = ACTIONS(2800), + [anon_sym___vectorcall] = ACTIONS(2800), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_signed] = ACTIONS(2800), + [anon_sym_unsigned] = ACTIONS(2800), + [anon_sym_long] = ACTIONS(2800), + [anon_sym_short] = ACTIONS(2800), + [anon_sym_static] = ACTIONS(2800), + [anon_sym_ATautoreleasepool] = ACTIONS(2802), + [anon_sym_auto] = ACTIONS(2800), + [anon_sym_register] = ACTIONS(2800), + [anon_sym_inline] = ACTIONS(2800), + [anon_sym___inline] = ACTIONS(2800), + [anon_sym___inline__] = ACTIONS(2800), + [anon_sym___forceinline] = ACTIONS(2800), + [anon_sym_thread_local] = ACTIONS(2800), + [anon_sym___thread] = ACTIONS(2800), + [anon_sym_CG_EXTERN] = ACTIONS(2800), + [anon_sym_CG_INLINE] = ACTIONS(2800), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2800), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2800), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2800), + [anon_sym_IBOutlet] = ACTIONS(2800), + [anon_sym_IBInspectable] = ACTIONS(2800), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2800), + [anon_sym_NS_INLINE] = ACTIONS(2800), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2800), + [anon_sym_OBJC_EXPORT] = ACTIONS(2800), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2800), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2800), + [anon_sym_const] = ACTIONS(2800), + [anon_sym_constexpr] = ACTIONS(2800), + [anon_sym_volatile] = ACTIONS(2800), + [anon_sym_restrict] = ACTIONS(2800), + [anon_sym___restrict__] = ACTIONS(2800), + [anon_sym__Atomic] = ACTIONS(2800), + [anon_sym__Noreturn] = ACTIONS(2800), + [anon_sym__Nonnull] = ACTIONS(2800), + [anon_sym_nullable] = ACTIONS(2800), + [anon_sym__Complex] = ACTIONS(2800), + [anon_sym__Nullable] = ACTIONS(2800), + [anon_sym__Nullable_result] = ACTIONS(2800), + [anon_sym__Null_unspecified] = ACTIONS(2800), + [anon_sym___autoreleasing] = ACTIONS(2800), + [anon_sym___block] = ACTIONS(2800), + [anon_sym___bridge] = ACTIONS(2800), + [anon_sym___bridge_retained] = ACTIONS(2800), + [anon_sym___bridge_transfer] = ACTIONS(2800), + [anon_sym___complex] = ACTIONS(2800), + [anon_sym___const] = ACTIONS(2800), + [anon_sym___imag] = ACTIONS(2800), + [anon_sym___kindof] = ACTIONS(2800), + [anon_sym___nonnull] = ACTIONS(2800), + [anon_sym___nullable] = ACTIONS(2800), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2800), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2800), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2800), + [anon_sym___real] = ACTIONS(2800), + [anon_sym___strong] = ACTIONS(2800), + [anon_sym___unsafe_unretained] = ACTIONS(2800), + [anon_sym___unused] = ACTIONS(2800), + [anon_sym___weak] = ACTIONS(2800), + [anon_sym_alignas] = ACTIONS(2800), + [anon_sym__Alignas] = ACTIONS(2800), + [sym_primitive_type] = ACTIONS(2800), + [anon_sym_enum] = ACTIONS(2800), + [anon_sym_struct] = ACTIONS(2800), + [anon_sym_union] = ACTIONS(2800), + [anon_sym_if] = ACTIONS(2800), + [anon_sym_switch] = ACTIONS(2800), + [anon_sym_case] = ACTIONS(2800), + [anon_sym_default] = ACTIONS(2800), + [anon_sym_while] = ACTIONS(2800), + [anon_sym_do] = ACTIONS(2800), + [anon_sym_for] = ACTIONS(2800), + [anon_sym_in] = ACTIONS(2800), + [anon_sym_return] = ACTIONS(2800), + [anon_sym_break] = ACTIONS(2800), + [anon_sym_continue] = ACTIONS(2800), + [anon_sym_goto] = ACTIONS(2800), + [anon_sym_DASH_DASH] = ACTIONS(2802), + [anon_sym_PLUS_PLUS] = ACTIONS(2802), + [anon_sym_sizeof] = ACTIONS(2800), + [anon_sym___alignof__] = ACTIONS(2800), + [anon_sym___alignof] = ACTIONS(2800), + [anon_sym__alignof] = ACTIONS(2800), + [anon_sym_alignof] = ACTIONS(2800), + [anon_sym__Alignof] = ACTIONS(2800), + [anon_sym_offsetof] = ACTIONS(2800), + [anon_sym__Generic] = ACTIONS(2800), + [anon_sym_asm] = ACTIONS(2800), + [anon_sym___asm__] = ACTIONS(2800), + [anon_sym___asm] = ACTIONS(2800), + [sym_number_literal] = ACTIONS(2802), + [anon_sym_L_SQUOTE] = ACTIONS(2802), + [anon_sym_u_SQUOTE] = ACTIONS(2802), + [anon_sym_U_SQUOTE] = ACTIONS(2802), + [anon_sym_u8_SQUOTE] = ACTIONS(2802), + [anon_sym_SQUOTE] = ACTIONS(2802), + [anon_sym_AT] = ACTIONS(2800), + [anon_sym_DQUOTE] = ACTIONS(2802), + [anon_sym_L_DQUOTE] = ACTIONS(2802), + [anon_sym_u_DQUOTE] = ACTIONS(2802), + [anon_sym_U_DQUOTE] = ACTIONS(2802), + [anon_sym_u8_DQUOTE] = ACTIONS(2802), + [sym_true] = ACTIONS(2800), + [sym_false] = ACTIONS(2800), + [anon_sym_NULL] = ACTIONS(2800), + [anon_sym_nullptr] = ACTIONS(2800), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2800), + [anon_sym___typeof] = ACTIONS(2800), + [anon_sym_typeof] = ACTIONS(2800), + [anon_sym_ATimport] = ACTIONS(2802), + [aux_sym_preproc_undef_token1] = ACTIONS(2800), + [anon_sym_POUND] = ACTIONS(2800), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2800), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2800), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2800), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2800), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2800), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2800), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2800), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2800), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2800), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2800), + [anon_sym_NS_AVAILABLE] = ACTIONS(2800), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2800), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2800), + [anon_sym_API_AVAILABLE] = ACTIONS(2800), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2800), + [anon_sym_API_DEPRECATED] = ACTIONS(2800), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2800), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2800), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2800), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2800), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2800), + [anon_sym___deprecated_msg] = ACTIONS(2800), + [anon_sym___deprecated_enum_msg] = ACTIONS(2800), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2800), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2800), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2800), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2800), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2800), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2800), + [anon_sym_ATprotocol] = ACTIONS(2802), + [anon_sym_ATinterface] = ACTIONS(2802), + [anon_sym_ATimplementation] = ACTIONS(2802), + [anon_sym_ATcompatibility_alias] = ACTIONS(2802), + [anon_sym_ATsynthesize] = ACTIONS(2802), + [anon_sym_ATdynamic] = ACTIONS(2802), + [anon_sym_ATtry] = ACTIONS(2802), + [anon_sym___try] = ACTIONS(2800), + [anon_sym_ATthrow] = ACTIONS(2802), + [anon_sym_ATselector] = ACTIONS(2802), + [anon_sym_ATavailable] = ACTIONS(2802), + [anon_sym___builtin_available] = ACTIONS(2800), + [anon_sym_va_arg] = ACTIONS(2800), + [anon_sym_ATencode] = ACTIONS(2802), + [anon_sym_ATsynchronized] = ACTIONS(2802), + [anon_sym_BOOL] = ACTIONS(2800), + [anon_sym_IMP] = ACTIONS(2800), + [anon_sym_SEL] = ACTIONS(2800), + [anon_sym_Class] = ACTIONS(2800), + [anon_sym_id] = ACTIONS(2800), + }, + [479] = { + [sym_identifier] = ACTIONS(2736), + [aux_sym_preproc_include_token1] = ACTIONS(2736), + [aux_sym_preproc_include_token2] = ACTIONS(2736), + [aux_sym_preproc_def_token1] = ACTIONS(2736), + [aux_sym_preproc_if_token1] = ACTIONS(2736), + [aux_sym_preproc_if_token2] = ACTIONS(2736), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2736), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2736), + [aux_sym_preproc_else_token1] = ACTIONS(2736), + [aux_sym_preproc_elif_token1] = ACTIONS(2736), + [sym_preproc_directive] = ACTIONS(2736), + [anon_sym_LPAREN2] = ACTIONS(2738), + [anon_sym_BANG] = ACTIONS(2738), + [anon_sym_TILDE] = ACTIONS(2738), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_CARET] = ACTIONS(2738), + [anon_sym_AMP] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_typedef] = ACTIONS(2736), + [anon_sym_extern] = ACTIONS(2736), + [anon_sym___attribute__] = ACTIONS(2736), + [anon_sym___attribute] = ACTIONS(2736), + [anon_sym_noreturn] = ACTIONS(2736), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym___declspec] = ACTIONS(2736), + [anon_sym___cdecl] = ACTIONS(2736), + [anon_sym___clrcall] = ACTIONS(2736), + [anon_sym___stdcall] = ACTIONS(2736), + [anon_sym___fastcall] = ACTIONS(2736), + [anon_sym___thiscall] = ACTIONS(2736), + [anon_sym___vectorcall] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_signed] = ACTIONS(2736), + [anon_sym_unsigned] = ACTIONS(2736), + [anon_sym_long] = ACTIONS(2736), + [anon_sym_short] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2736), + [anon_sym_ATautoreleasepool] = ACTIONS(2738), + [anon_sym_auto] = ACTIONS(2736), + [anon_sym_register] = ACTIONS(2736), + [anon_sym_inline] = ACTIONS(2736), + [anon_sym___inline] = ACTIONS(2736), + [anon_sym___inline__] = ACTIONS(2736), + [anon_sym___forceinline] = ACTIONS(2736), + [anon_sym_thread_local] = ACTIONS(2736), + [anon_sym___thread] = ACTIONS(2736), + [anon_sym_CG_EXTERN] = ACTIONS(2736), + [anon_sym_CG_INLINE] = ACTIONS(2736), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2736), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2736), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2736), + [anon_sym_IBOutlet] = ACTIONS(2736), + [anon_sym_IBInspectable] = ACTIONS(2736), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2736), + [anon_sym_NS_INLINE] = ACTIONS(2736), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2736), + [anon_sym_OBJC_EXPORT] = ACTIONS(2736), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2736), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2736), + [anon_sym_const] = ACTIONS(2736), + [anon_sym_constexpr] = ACTIONS(2736), + [anon_sym_volatile] = ACTIONS(2736), + [anon_sym_restrict] = ACTIONS(2736), + [anon_sym___restrict__] = ACTIONS(2736), + [anon_sym__Atomic] = ACTIONS(2736), + [anon_sym__Noreturn] = ACTIONS(2736), + [anon_sym__Nonnull] = ACTIONS(2736), + [anon_sym_nullable] = ACTIONS(2736), + [anon_sym__Complex] = ACTIONS(2736), + [anon_sym__Nullable] = ACTIONS(2736), + [anon_sym__Nullable_result] = ACTIONS(2736), + [anon_sym__Null_unspecified] = ACTIONS(2736), + [anon_sym___autoreleasing] = ACTIONS(2736), + [anon_sym___block] = ACTIONS(2736), + [anon_sym___bridge] = ACTIONS(2736), + [anon_sym___bridge_retained] = ACTIONS(2736), + [anon_sym___bridge_transfer] = ACTIONS(2736), + [anon_sym___complex] = ACTIONS(2736), + [anon_sym___const] = ACTIONS(2736), + [anon_sym___imag] = ACTIONS(2736), + [anon_sym___kindof] = ACTIONS(2736), + [anon_sym___nonnull] = ACTIONS(2736), + [anon_sym___nullable] = ACTIONS(2736), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2736), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2736), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2736), + [anon_sym___real] = ACTIONS(2736), + [anon_sym___strong] = ACTIONS(2736), + [anon_sym___unsafe_unretained] = ACTIONS(2736), + [anon_sym___unused] = ACTIONS(2736), + [anon_sym___weak] = ACTIONS(2736), + [anon_sym_alignas] = ACTIONS(2736), + [anon_sym__Alignas] = ACTIONS(2736), + [sym_primitive_type] = ACTIONS(2736), + [anon_sym_enum] = ACTIONS(2736), + [anon_sym_struct] = ACTIONS(2736), + [anon_sym_union] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_switch] = ACTIONS(2736), + [anon_sym_case] = ACTIONS(2736), + [anon_sym_default] = ACTIONS(2736), + [anon_sym_while] = ACTIONS(2736), + [anon_sym_do] = ACTIONS(2736), + [anon_sym_for] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2736), + [anon_sym_return] = ACTIONS(2736), + [anon_sym_break] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2736), + [anon_sym_goto] = ACTIONS(2736), + [anon_sym_DASH_DASH] = ACTIONS(2738), + [anon_sym_PLUS_PLUS] = ACTIONS(2738), + [anon_sym_sizeof] = ACTIONS(2736), + [anon_sym___alignof__] = ACTIONS(2736), + [anon_sym___alignof] = ACTIONS(2736), + [anon_sym__alignof] = ACTIONS(2736), + [anon_sym_alignof] = ACTIONS(2736), + [anon_sym__Alignof] = ACTIONS(2736), + [anon_sym_offsetof] = ACTIONS(2736), + [anon_sym__Generic] = ACTIONS(2736), + [anon_sym_asm] = ACTIONS(2736), + [anon_sym___asm__] = ACTIONS(2736), + [anon_sym___asm] = ACTIONS(2736), + [sym_number_literal] = ACTIONS(2738), + [anon_sym_L_SQUOTE] = ACTIONS(2738), + [anon_sym_u_SQUOTE] = ACTIONS(2738), + [anon_sym_U_SQUOTE] = ACTIONS(2738), + [anon_sym_u8_SQUOTE] = ACTIONS(2738), + [anon_sym_SQUOTE] = ACTIONS(2738), + [anon_sym_AT] = ACTIONS(2736), + [anon_sym_DQUOTE] = ACTIONS(2738), + [anon_sym_L_DQUOTE] = ACTIONS(2738), + [anon_sym_u_DQUOTE] = ACTIONS(2738), + [anon_sym_U_DQUOTE] = ACTIONS(2738), + [anon_sym_u8_DQUOTE] = ACTIONS(2738), + [sym_true] = ACTIONS(2736), + [sym_false] = ACTIONS(2736), + [anon_sym_NULL] = ACTIONS(2736), + [anon_sym_nullptr] = ACTIONS(2736), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2736), + [anon_sym___typeof] = ACTIONS(2736), + [anon_sym_typeof] = ACTIONS(2736), + [anon_sym_ATimport] = ACTIONS(2738), + [aux_sym_preproc_undef_token1] = ACTIONS(2736), + [anon_sym_POUND] = ACTIONS(2736), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2736), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2736), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2736), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2736), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2736), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2736), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2736), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2736), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2736), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2736), + [anon_sym_NS_AVAILABLE] = ACTIONS(2736), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2736), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2736), + [anon_sym_API_AVAILABLE] = ACTIONS(2736), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2736), + [anon_sym_API_DEPRECATED] = ACTIONS(2736), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2736), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2736), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2736), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2736), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2736), + [anon_sym___deprecated_msg] = ACTIONS(2736), + [anon_sym___deprecated_enum_msg] = ACTIONS(2736), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2736), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2736), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2736), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2736), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2736), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2736), + [anon_sym_ATprotocol] = ACTIONS(2738), + [anon_sym_ATinterface] = ACTIONS(2738), + [anon_sym_ATimplementation] = ACTIONS(2738), + [anon_sym_ATcompatibility_alias] = ACTIONS(2738), + [anon_sym_ATsynthesize] = ACTIONS(2738), + [anon_sym_ATdynamic] = ACTIONS(2738), + [anon_sym_ATtry] = ACTIONS(2738), + [anon_sym___try] = ACTIONS(2736), + [anon_sym_ATthrow] = ACTIONS(2738), + [anon_sym_ATselector] = ACTIONS(2738), + [anon_sym_ATavailable] = ACTIONS(2738), + [anon_sym___builtin_available] = ACTIONS(2736), + [anon_sym_va_arg] = ACTIONS(2736), + [anon_sym_ATencode] = ACTIONS(2738), + [anon_sym_ATsynchronized] = ACTIONS(2738), + [anon_sym_BOOL] = ACTIONS(2736), + [anon_sym_IMP] = ACTIONS(2736), + [anon_sym_SEL] = ACTIONS(2736), + [anon_sym_Class] = ACTIONS(2736), + [anon_sym_id] = ACTIONS(2736), + }, + [480] = { + [sym_identifier] = ACTIONS(2752), + [aux_sym_preproc_include_token1] = ACTIONS(2752), + [aux_sym_preproc_include_token2] = ACTIONS(2752), + [aux_sym_preproc_def_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token2] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2752), + [aux_sym_preproc_else_token1] = ACTIONS(2752), + [aux_sym_preproc_elif_token1] = ACTIONS(2752), + [sym_preproc_directive] = ACTIONS(2752), + [anon_sym_LPAREN2] = ACTIONS(2754), + [anon_sym_BANG] = ACTIONS(2754), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_STAR] = ACTIONS(2754), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2754), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym___extension__] = ACTIONS(2752), + [anon_sym_typedef] = ACTIONS(2752), + [anon_sym_extern] = ACTIONS(2752), + [anon_sym___attribute__] = ACTIONS(2752), + [anon_sym___attribute] = ACTIONS(2752), + [anon_sym_noreturn] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym___declspec] = ACTIONS(2752), + [anon_sym___cdecl] = ACTIONS(2752), + [anon_sym___clrcall] = ACTIONS(2752), + [anon_sym___stdcall] = ACTIONS(2752), + [anon_sym___fastcall] = ACTIONS(2752), + [anon_sym___thiscall] = ACTIONS(2752), + [anon_sym___vectorcall] = ACTIONS(2752), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_signed] = ACTIONS(2752), + [anon_sym_unsigned] = ACTIONS(2752), + [anon_sym_long] = ACTIONS(2752), + [anon_sym_short] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_ATautoreleasepool] = ACTIONS(2754), + [anon_sym_auto] = ACTIONS(2752), + [anon_sym_register] = ACTIONS(2752), + [anon_sym_inline] = ACTIONS(2752), + [anon_sym___inline] = ACTIONS(2752), + [anon_sym___inline__] = ACTIONS(2752), + [anon_sym___forceinline] = ACTIONS(2752), + [anon_sym_thread_local] = ACTIONS(2752), + [anon_sym___thread] = ACTIONS(2752), + [anon_sym_CG_EXTERN] = ACTIONS(2752), + [anon_sym_CG_INLINE] = ACTIONS(2752), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2752), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2752), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2752), + [anon_sym_IBOutlet] = ACTIONS(2752), + [anon_sym_IBInspectable] = ACTIONS(2752), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2752), + [anon_sym_NS_INLINE] = ACTIONS(2752), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2752), + [anon_sym_OBJC_EXPORT] = ACTIONS(2752), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2752), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2752), + [anon_sym_const] = ACTIONS(2752), + [anon_sym_constexpr] = ACTIONS(2752), + [anon_sym_volatile] = ACTIONS(2752), + [anon_sym_restrict] = ACTIONS(2752), + [anon_sym___restrict__] = ACTIONS(2752), + [anon_sym__Atomic] = ACTIONS(2752), + [anon_sym__Noreturn] = ACTIONS(2752), + [anon_sym__Nonnull] = ACTIONS(2752), + [anon_sym_nullable] = ACTIONS(2752), + [anon_sym__Complex] = ACTIONS(2752), + [anon_sym__Nullable] = ACTIONS(2752), + [anon_sym__Nullable_result] = ACTIONS(2752), + [anon_sym__Null_unspecified] = ACTIONS(2752), + [anon_sym___autoreleasing] = ACTIONS(2752), + [anon_sym___block] = ACTIONS(2752), + [anon_sym___bridge] = ACTIONS(2752), + [anon_sym___bridge_retained] = ACTIONS(2752), + [anon_sym___bridge_transfer] = ACTIONS(2752), + [anon_sym___complex] = ACTIONS(2752), + [anon_sym___const] = ACTIONS(2752), + [anon_sym___imag] = ACTIONS(2752), + [anon_sym___kindof] = ACTIONS(2752), + [anon_sym___nonnull] = ACTIONS(2752), + [anon_sym___nullable] = ACTIONS(2752), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2752), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2752), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2752), + [anon_sym___real] = ACTIONS(2752), + [anon_sym___strong] = ACTIONS(2752), + [anon_sym___unsafe_unretained] = ACTIONS(2752), + [anon_sym___unused] = ACTIONS(2752), + [anon_sym___weak] = ACTIONS(2752), + [anon_sym_alignas] = ACTIONS(2752), + [anon_sym__Alignas] = ACTIONS(2752), + [sym_primitive_type] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2752), + [anon_sym_union] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2752), + [anon_sym_case] = ACTIONS(2752), + [anon_sym_default] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_in] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_break] = ACTIONS(2752), + [anon_sym_continue] = ACTIONS(2752), + [anon_sym_goto] = ACTIONS(2752), + [anon_sym_DASH_DASH] = ACTIONS(2754), + [anon_sym_PLUS_PLUS] = ACTIONS(2754), + [anon_sym_sizeof] = ACTIONS(2752), + [anon_sym___alignof__] = ACTIONS(2752), + [anon_sym___alignof] = ACTIONS(2752), + [anon_sym__alignof] = ACTIONS(2752), + [anon_sym_alignof] = ACTIONS(2752), + [anon_sym__Alignof] = ACTIONS(2752), + [anon_sym_offsetof] = ACTIONS(2752), + [anon_sym__Generic] = ACTIONS(2752), + [anon_sym_asm] = ACTIONS(2752), + [anon_sym___asm__] = ACTIONS(2752), + [anon_sym___asm] = ACTIONS(2752), + [sym_number_literal] = ACTIONS(2754), + [anon_sym_L_SQUOTE] = ACTIONS(2754), + [anon_sym_u_SQUOTE] = ACTIONS(2754), + [anon_sym_U_SQUOTE] = ACTIONS(2754), + [anon_sym_u8_SQUOTE] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2754), + [anon_sym_AT] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2754), + [anon_sym_L_DQUOTE] = ACTIONS(2754), + [anon_sym_u_DQUOTE] = ACTIONS(2754), + [anon_sym_U_DQUOTE] = ACTIONS(2754), + [anon_sym_u8_DQUOTE] = ACTIONS(2754), + [sym_true] = ACTIONS(2752), + [sym_false] = ACTIONS(2752), + [anon_sym_NULL] = ACTIONS(2752), + [anon_sym_nullptr] = ACTIONS(2752), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2752), + [anon_sym___typeof] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(2752), + [anon_sym_ATimport] = ACTIONS(2754), + [aux_sym_preproc_undef_token1] = ACTIONS(2752), + [anon_sym_POUND] = ACTIONS(2752), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2752), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2752), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2752), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2752), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2752), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2752), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2752), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2752), + [anon_sym_NS_AVAILABLE] = ACTIONS(2752), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2752), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_API_AVAILABLE] = ACTIONS(2752), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_API_DEPRECATED] = ACTIONS(2752), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2752), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2752), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2752), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2752), + [anon_sym___deprecated_msg] = ACTIONS(2752), + [anon_sym___deprecated_enum_msg] = ACTIONS(2752), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2752), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2752), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2752), + [anon_sym_ATprotocol] = ACTIONS(2754), + [anon_sym_ATinterface] = ACTIONS(2754), + [anon_sym_ATimplementation] = ACTIONS(2754), + [anon_sym_ATcompatibility_alias] = ACTIONS(2754), + [anon_sym_ATsynthesize] = ACTIONS(2754), + [anon_sym_ATdynamic] = ACTIONS(2754), + [anon_sym_ATtry] = ACTIONS(2754), + [anon_sym___try] = ACTIONS(2752), + [anon_sym_ATthrow] = ACTIONS(2754), + [anon_sym_ATselector] = ACTIONS(2754), + [anon_sym_ATavailable] = ACTIONS(2754), + [anon_sym___builtin_available] = ACTIONS(2752), + [anon_sym_va_arg] = ACTIONS(2752), + [anon_sym_ATencode] = ACTIONS(2754), + [anon_sym_ATsynchronized] = ACTIONS(2754), + [anon_sym_BOOL] = ACTIONS(2752), + [anon_sym_IMP] = ACTIONS(2752), + [anon_sym_SEL] = ACTIONS(2752), + [anon_sym_Class] = ACTIONS(2752), + [anon_sym_id] = ACTIONS(2752), + }, + [481] = { + [sym_identifier] = ACTIONS(2724), + [aux_sym_preproc_include_token1] = ACTIONS(2724), + [aux_sym_preproc_include_token2] = ACTIONS(2724), + [aux_sym_preproc_def_token1] = ACTIONS(2724), + [aux_sym_preproc_if_token1] = ACTIONS(2724), + [aux_sym_preproc_if_token2] = ACTIONS(2724), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2724), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2724), + [aux_sym_preproc_else_token1] = ACTIONS(2724), + [aux_sym_preproc_elif_token1] = ACTIONS(2724), + [sym_preproc_directive] = ACTIONS(2724), + [anon_sym_LPAREN2] = ACTIONS(2726), + [anon_sym_BANG] = ACTIONS(2726), + [anon_sym_TILDE] = ACTIONS(2726), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2726), + [anon_sym_CARET] = ACTIONS(2726), + [anon_sym_AMP] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym___extension__] = ACTIONS(2724), + [anon_sym_typedef] = ACTIONS(2724), + [anon_sym_extern] = ACTIONS(2724), + [anon_sym___attribute__] = ACTIONS(2724), + [anon_sym___attribute] = ACTIONS(2724), + [anon_sym_noreturn] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2726), + [anon_sym___declspec] = ACTIONS(2724), + [anon_sym___cdecl] = ACTIONS(2724), + [anon_sym___clrcall] = ACTIONS(2724), + [anon_sym___stdcall] = ACTIONS(2724), + [anon_sym___fastcall] = ACTIONS(2724), + [anon_sym___thiscall] = ACTIONS(2724), + [anon_sym___vectorcall] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2726), + [anon_sym_signed] = ACTIONS(2724), + [anon_sym_unsigned] = ACTIONS(2724), + [anon_sym_long] = ACTIONS(2724), + [anon_sym_short] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2724), + [anon_sym_ATautoreleasepool] = ACTIONS(2726), + [anon_sym_auto] = ACTIONS(2724), + [anon_sym_register] = ACTIONS(2724), + [anon_sym_inline] = ACTIONS(2724), + [anon_sym___inline] = ACTIONS(2724), + [anon_sym___inline__] = ACTIONS(2724), + [anon_sym___forceinline] = ACTIONS(2724), + [anon_sym_thread_local] = ACTIONS(2724), + [anon_sym___thread] = ACTIONS(2724), + [anon_sym_CG_EXTERN] = ACTIONS(2724), + [anon_sym_CG_INLINE] = ACTIONS(2724), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2724), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2724), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2724), + [anon_sym_IBOutlet] = ACTIONS(2724), + [anon_sym_IBInspectable] = ACTIONS(2724), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2724), + [anon_sym_NS_INLINE] = ACTIONS(2724), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2724), + [anon_sym_OBJC_EXPORT] = ACTIONS(2724), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2724), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2724), + [anon_sym_const] = ACTIONS(2724), + [anon_sym_constexpr] = ACTIONS(2724), + [anon_sym_volatile] = ACTIONS(2724), + [anon_sym_restrict] = ACTIONS(2724), + [anon_sym___restrict__] = ACTIONS(2724), + [anon_sym__Atomic] = ACTIONS(2724), + [anon_sym__Noreturn] = ACTIONS(2724), + [anon_sym__Nonnull] = ACTIONS(2724), + [anon_sym_nullable] = ACTIONS(2724), + [anon_sym__Complex] = ACTIONS(2724), + [anon_sym__Nullable] = ACTIONS(2724), + [anon_sym__Nullable_result] = ACTIONS(2724), + [anon_sym__Null_unspecified] = ACTIONS(2724), + [anon_sym___autoreleasing] = ACTIONS(2724), + [anon_sym___block] = ACTIONS(2724), + [anon_sym___bridge] = ACTIONS(2724), + [anon_sym___bridge_retained] = ACTIONS(2724), + [anon_sym___bridge_transfer] = ACTIONS(2724), + [anon_sym___complex] = ACTIONS(2724), + [anon_sym___const] = ACTIONS(2724), + [anon_sym___imag] = ACTIONS(2724), + [anon_sym___kindof] = ACTIONS(2724), + [anon_sym___nonnull] = ACTIONS(2724), + [anon_sym___nullable] = ACTIONS(2724), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2724), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2724), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2724), + [anon_sym___real] = ACTIONS(2724), + [anon_sym___strong] = ACTIONS(2724), + [anon_sym___unsafe_unretained] = ACTIONS(2724), + [anon_sym___unused] = ACTIONS(2724), + [anon_sym___weak] = ACTIONS(2724), + [anon_sym_alignas] = ACTIONS(2724), + [anon_sym__Alignas] = ACTIONS(2724), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), + [anon_sym_struct] = ACTIONS(2724), + [anon_sym_union] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2724), + [anon_sym_default] = ACTIONS(2724), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_do] = ACTIONS(2724), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_goto] = ACTIONS(2724), + [anon_sym_DASH_DASH] = ACTIONS(2726), + [anon_sym_PLUS_PLUS] = ACTIONS(2726), + [anon_sym_sizeof] = ACTIONS(2724), + [anon_sym___alignof__] = ACTIONS(2724), + [anon_sym___alignof] = ACTIONS(2724), + [anon_sym__alignof] = ACTIONS(2724), + [anon_sym_alignof] = ACTIONS(2724), + [anon_sym__Alignof] = ACTIONS(2724), + [anon_sym_offsetof] = ACTIONS(2724), + [anon_sym__Generic] = ACTIONS(2724), + [anon_sym_asm] = ACTIONS(2724), + [anon_sym___asm__] = ACTIONS(2724), + [anon_sym___asm] = ACTIONS(2724), + [sym_number_literal] = ACTIONS(2726), + [anon_sym_L_SQUOTE] = ACTIONS(2726), + [anon_sym_u_SQUOTE] = ACTIONS(2726), + [anon_sym_U_SQUOTE] = ACTIONS(2726), + [anon_sym_u8_SQUOTE] = ACTIONS(2726), + [anon_sym_SQUOTE] = ACTIONS(2726), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_DQUOTE] = ACTIONS(2726), + [anon_sym_L_DQUOTE] = ACTIONS(2726), + [anon_sym_u_DQUOTE] = ACTIONS(2726), + [anon_sym_U_DQUOTE] = ACTIONS(2726), + [anon_sym_u8_DQUOTE] = ACTIONS(2726), + [sym_true] = ACTIONS(2724), + [sym_false] = ACTIONS(2724), + [anon_sym_NULL] = ACTIONS(2724), + [anon_sym_nullptr] = ACTIONS(2724), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2724), + [anon_sym___typeof] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(2724), + [anon_sym_ATimport] = ACTIONS(2726), + [aux_sym_preproc_undef_token1] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(2724), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2724), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2724), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2724), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2724), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2724), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2724), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2724), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2724), + [anon_sym_NS_AVAILABLE] = ACTIONS(2724), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2724), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_API_AVAILABLE] = ACTIONS(2724), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_API_DEPRECATED] = ACTIONS(2724), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2724), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2724), + [anon_sym___deprecated_msg] = ACTIONS(2724), + [anon_sym___deprecated_enum_msg] = ACTIONS(2724), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2724), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2724), + [anon_sym_ATprotocol] = ACTIONS(2726), + [anon_sym_ATinterface] = ACTIONS(2726), + [anon_sym_ATimplementation] = ACTIONS(2726), + [anon_sym_ATcompatibility_alias] = ACTIONS(2726), + [anon_sym_ATsynthesize] = ACTIONS(2726), + [anon_sym_ATdynamic] = ACTIONS(2726), + [anon_sym_ATtry] = ACTIONS(2726), + [anon_sym___try] = ACTIONS(2724), + [anon_sym_ATthrow] = ACTIONS(2726), + [anon_sym_ATselector] = ACTIONS(2726), + [anon_sym_ATavailable] = ACTIONS(2726), + [anon_sym___builtin_available] = ACTIONS(2724), + [anon_sym_va_arg] = ACTIONS(2724), + [anon_sym_ATencode] = ACTIONS(2726), + [anon_sym_ATsynchronized] = ACTIONS(2726), + [anon_sym_BOOL] = ACTIONS(2724), + [anon_sym_IMP] = ACTIONS(2724), + [anon_sym_SEL] = ACTIONS(2724), + [anon_sym_Class] = ACTIONS(2724), + [anon_sym_id] = ACTIONS(2724), + }, + [482] = { + [sym_identifier] = ACTIONS(2676), + [aux_sym_preproc_include_token1] = ACTIONS(2676), + [aux_sym_preproc_include_token2] = ACTIONS(2676), + [aux_sym_preproc_def_token1] = ACTIONS(2676), + [aux_sym_preproc_if_token1] = ACTIONS(2676), + [aux_sym_preproc_if_token2] = ACTIONS(2676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2676), + [aux_sym_preproc_else_token1] = ACTIONS(2676), + [aux_sym_preproc_elif_token1] = ACTIONS(2676), + [sym_preproc_directive] = ACTIONS(2676), + [anon_sym_LPAREN2] = ACTIONS(2678), + [anon_sym_BANG] = ACTIONS(2678), + [anon_sym_TILDE] = ACTIONS(2678), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_STAR] = ACTIONS(2678), + [anon_sym_CARET] = ACTIONS(2678), + [anon_sym_AMP] = ACTIONS(2678), + [anon_sym_SEMI] = ACTIONS(2678), + [anon_sym___extension__] = ACTIONS(2676), + [anon_sym_typedef] = ACTIONS(2676), + [anon_sym_extern] = ACTIONS(2676), + [anon_sym___attribute__] = ACTIONS(2676), + [anon_sym___attribute] = ACTIONS(2676), + [anon_sym_noreturn] = ACTIONS(2676), + [anon_sym_LBRACK] = ACTIONS(2678), + [anon_sym___declspec] = ACTIONS(2676), + [anon_sym___cdecl] = ACTIONS(2676), + [anon_sym___clrcall] = ACTIONS(2676), + [anon_sym___stdcall] = ACTIONS(2676), + [anon_sym___fastcall] = ACTIONS(2676), + [anon_sym___thiscall] = ACTIONS(2676), + [anon_sym___vectorcall] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_signed] = ACTIONS(2676), + [anon_sym_unsigned] = ACTIONS(2676), + [anon_sym_long] = ACTIONS(2676), + [anon_sym_short] = ACTIONS(2676), + [anon_sym_static] = ACTIONS(2676), + [anon_sym_ATautoreleasepool] = ACTIONS(2678), + [anon_sym_auto] = ACTIONS(2676), + [anon_sym_register] = ACTIONS(2676), + [anon_sym_inline] = ACTIONS(2676), + [anon_sym___inline] = ACTIONS(2676), + [anon_sym___inline__] = ACTIONS(2676), + [anon_sym___forceinline] = ACTIONS(2676), + [anon_sym_thread_local] = ACTIONS(2676), + [anon_sym___thread] = ACTIONS(2676), + [anon_sym_CG_EXTERN] = ACTIONS(2676), + [anon_sym_CG_INLINE] = ACTIONS(2676), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2676), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2676), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2676), + [anon_sym_IBOutlet] = ACTIONS(2676), + [anon_sym_IBInspectable] = ACTIONS(2676), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2676), + [anon_sym_NS_INLINE] = ACTIONS(2676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2676), + [anon_sym_OBJC_EXPORT] = ACTIONS(2676), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2676), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2676), + [anon_sym_const] = ACTIONS(2676), + [anon_sym_constexpr] = ACTIONS(2676), + [anon_sym_volatile] = ACTIONS(2676), + [anon_sym_restrict] = ACTIONS(2676), + [anon_sym___restrict__] = ACTIONS(2676), + [anon_sym__Atomic] = ACTIONS(2676), + [anon_sym__Noreturn] = ACTIONS(2676), + [anon_sym__Nonnull] = ACTIONS(2676), + [anon_sym_nullable] = ACTIONS(2676), + [anon_sym__Complex] = ACTIONS(2676), + [anon_sym__Nullable] = ACTIONS(2676), + [anon_sym__Nullable_result] = ACTIONS(2676), + [anon_sym__Null_unspecified] = ACTIONS(2676), + [anon_sym___autoreleasing] = ACTIONS(2676), + [anon_sym___block] = ACTIONS(2676), + [anon_sym___bridge] = ACTIONS(2676), + [anon_sym___bridge_retained] = ACTIONS(2676), + [anon_sym___bridge_transfer] = ACTIONS(2676), + [anon_sym___complex] = ACTIONS(2676), + [anon_sym___const] = ACTIONS(2676), + [anon_sym___imag] = ACTIONS(2676), + [anon_sym___kindof] = ACTIONS(2676), + [anon_sym___nonnull] = ACTIONS(2676), + [anon_sym___nullable] = ACTIONS(2676), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2676), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2676), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2676), + [anon_sym___real] = ACTIONS(2676), + [anon_sym___strong] = ACTIONS(2676), + [anon_sym___unsafe_unretained] = ACTIONS(2676), + [anon_sym___unused] = ACTIONS(2676), + [anon_sym___weak] = ACTIONS(2676), + [anon_sym_alignas] = ACTIONS(2676), + [anon_sym__Alignas] = ACTIONS(2676), + [sym_primitive_type] = ACTIONS(2676), + [anon_sym_enum] = ACTIONS(2676), + [anon_sym_struct] = ACTIONS(2676), + [anon_sym_union] = ACTIONS(2676), + [anon_sym_if] = ACTIONS(2676), + [anon_sym_switch] = ACTIONS(2676), + [anon_sym_case] = ACTIONS(2676), + [anon_sym_default] = ACTIONS(2676), + [anon_sym_while] = ACTIONS(2676), + [anon_sym_do] = ACTIONS(2676), + [anon_sym_for] = ACTIONS(2676), + [anon_sym_in] = ACTIONS(2676), + [anon_sym_return] = ACTIONS(2676), + [anon_sym_break] = ACTIONS(2676), + [anon_sym_continue] = ACTIONS(2676), + [anon_sym_goto] = ACTIONS(2676), + [anon_sym_DASH_DASH] = ACTIONS(2678), + [anon_sym_PLUS_PLUS] = ACTIONS(2678), + [anon_sym_sizeof] = ACTIONS(2676), + [anon_sym___alignof__] = ACTIONS(2676), + [anon_sym___alignof] = ACTIONS(2676), + [anon_sym__alignof] = ACTIONS(2676), + [anon_sym_alignof] = ACTIONS(2676), + [anon_sym__Alignof] = ACTIONS(2676), + [anon_sym_offsetof] = ACTIONS(2676), + [anon_sym__Generic] = ACTIONS(2676), + [anon_sym_asm] = ACTIONS(2676), + [anon_sym___asm__] = ACTIONS(2676), + [anon_sym___asm] = ACTIONS(2676), + [sym_number_literal] = ACTIONS(2678), + [anon_sym_L_SQUOTE] = ACTIONS(2678), + [anon_sym_u_SQUOTE] = ACTIONS(2678), + [anon_sym_U_SQUOTE] = ACTIONS(2678), + [anon_sym_u8_SQUOTE] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2678), + [anon_sym_AT] = ACTIONS(2676), + [anon_sym_DQUOTE] = ACTIONS(2678), + [anon_sym_L_DQUOTE] = ACTIONS(2678), + [anon_sym_u_DQUOTE] = ACTIONS(2678), + [anon_sym_U_DQUOTE] = ACTIONS(2678), + [anon_sym_u8_DQUOTE] = ACTIONS(2678), + [sym_true] = ACTIONS(2676), + [sym_false] = ACTIONS(2676), + [anon_sym_NULL] = ACTIONS(2676), + [anon_sym_nullptr] = ACTIONS(2676), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2676), + [anon_sym___typeof] = ACTIONS(2676), + [anon_sym_typeof] = ACTIONS(2676), + [anon_sym_ATimport] = ACTIONS(2678), + [aux_sym_preproc_undef_token1] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(2676), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2676), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2676), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2676), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2676), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2676), + [anon_sym_NS_AVAILABLE] = ACTIONS(2676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2676), + [anon_sym_API_AVAILABLE] = ACTIONS(2676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2676), + [anon_sym_API_DEPRECATED] = ACTIONS(2676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2676), + [anon_sym___deprecated_msg] = ACTIONS(2676), + [anon_sym___deprecated_enum_msg] = ACTIONS(2676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2676), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2676), + [anon_sym_ATprotocol] = ACTIONS(2678), + [anon_sym_ATinterface] = ACTIONS(2678), + [anon_sym_ATimplementation] = ACTIONS(2678), + [anon_sym_ATcompatibility_alias] = ACTIONS(2678), + [anon_sym_ATsynthesize] = ACTIONS(2678), + [anon_sym_ATdynamic] = ACTIONS(2678), + [anon_sym_ATtry] = ACTIONS(2678), + [anon_sym___try] = ACTIONS(2676), + [anon_sym_ATthrow] = ACTIONS(2678), + [anon_sym_ATselector] = ACTIONS(2678), + [anon_sym_ATavailable] = ACTIONS(2678), + [anon_sym___builtin_available] = ACTIONS(2676), + [anon_sym_va_arg] = ACTIONS(2676), + [anon_sym_ATencode] = ACTIONS(2678), + [anon_sym_ATsynchronized] = ACTIONS(2678), + [anon_sym_BOOL] = ACTIONS(2676), + [anon_sym_IMP] = ACTIONS(2676), + [anon_sym_SEL] = ACTIONS(2676), + [anon_sym_Class] = ACTIONS(2676), + [anon_sym_id] = ACTIONS(2676), + }, + [483] = { + [sym_identifier] = ACTIONS(2668), + [aux_sym_preproc_include_token1] = ACTIONS(2668), + [aux_sym_preproc_include_token2] = ACTIONS(2668), + [aux_sym_preproc_def_token1] = ACTIONS(2668), + [aux_sym_preproc_if_token1] = ACTIONS(2668), + [aux_sym_preproc_if_token2] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2668), + [aux_sym_preproc_elif_token1] = ACTIONS(2668), + [sym_preproc_directive] = ACTIONS(2668), + [anon_sym_LPAREN2] = ACTIONS(2670), + [anon_sym_BANG] = ACTIONS(2670), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2668), + [anon_sym_PLUS] = ACTIONS(2668), + [anon_sym_STAR] = ACTIONS(2670), + [anon_sym_CARET] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2670), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym___extension__] = ACTIONS(2668), + [anon_sym_typedef] = ACTIONS(2668), + [anon_sym_extern] = ACTIONS(2668), + [anon_sym___attribute__] = ACTIONS(2668), + [anon_sym___attribute] = ACTIONS(2668), + [anon_sym_noreturn] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym___declspec] = ACTIONS(2668), + [anon_sym___cdecl] = ACTIONS(2668), + [anon_sym___clrcall] = ACTIONS(2668), + [anon_sym___stdcall] = ACTIONS(2668), + [anon_sym___fastcall] = ACTIONS(2668), + [anon_sym___thiscall] = ACTIONS(2668), + [anon_sym___vectorcall] = ACTIONS(2668), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_signed] = ACTIONS(2668), + [anon_sym_unsigned] = ACTIONS(2668), + [anon_sym_long] = ACTIONS(2668), + [anon_sym_short] = ACTIONS(2668), + [anon_sym_static] = ACTIONS(2668), + [anon_sym_ATautoreleasepool] = ACTIONS(2670), + [anon_sym_auto] = ACTIONS(2668), + [anon_sym_register] = ACTIONS(2668), + [anon_sym_inline] = ACTIONS(2668), + [anon_sym___inline] = ACTIONS(2668), + [anon_sym___inline__] = ACTIONS(2668), + [anon_sym___forceinline] = ACTIONS(2668), + [anon_sym_thread_local] = ACTIONS(2668), + [anon_sym___thread] = ACTIONS(2668), + [anon_sym_CG_EXTERN] = ACTIONS(2668), + [anon_sym_CG_INLINE] = ACTIONS(2668), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2668), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2668), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2668), + [anon_sym_IBOutlet] = ACTIONS(2668), + [anon_sym_IBInspectable] = ACTIONS(2668), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2668), + [anon_sym_NS_INLINE] = ACTIONS(2668), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2668), + [anon_sym_OBJC_EXPORT] = ACTIONS(2668), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2668), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2668), + [anon_sym_const] = ACTIONS(2668), + [anon_sym_constexpr] = ACTIONS(2668), + [anon_sym_volatile] = ACTIONS(2668), + [anon_sym_restrict] = ACTIONS(2668), + [anon_sym___restrict__] = ACTIONS(2668), + [anon_sym__Atomic] = ACTIONS(2668), + [anon_sym__Noreturn] = ACTIONS(2668), + [anon_sym__Nonnull] = ACTIONS(2668), + [anon_sym_nullable] = ACTIONS(2668), + [anon_sym__Complex] = ACTIONS(2668), + [anon_sym__Nullable] = ACTIONS(2668), + [anon_sym__Nullable_result] = ACTIONS(2668), + [anon_sym__Null_unspecified] = ACTIONS(2668), + [anon_sym___autoreleasing] = ACTIONS(2668), + [anon_sym___block] = ACTIONS(2668), + [anon_sym___bridge] = ACTIONS(2668), + [anon_sym___bridge_retained] = ACTIONS(2668), + [anon_sym___bridge_transfer] = ACTIONS(2668), + [anon_sym___complex] = ACTIONS(2668), + [anon_sym___const] = ACTIONS(2668), + [anon_sym___imag] = ACTIONS(2668), + [anon_sym___kindof] = ACTIONS(2668), + [anon_sym___nonnull] = ACTIONS(2668), + [anon_sym___nullable] = ACTIONS(2668), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2668), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2668), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2668), + [anon_sym___real] = ACTIONS(2668), + [anon_sym___strong] = ACTIONS(2668), + [anon_sym___unsafe_unretained] = ACTIONS(2668), + [anon_sym___unused] = ACTIONS(2668), + [anon_sym___weak] = ACTIONS(2668), + [anon_sym_alignas] = ACTIONS(2668), + [anon_sym__Alignas] = ACTIONS(2668), + [sym_primitive_type] = ACTIONS(2668), + [anon_sym_enum] = ACTIONS(2668), + [anon_sym_struct] = ACTIONS(2668), + [anon_sym_union] = ACTIONS(2668), + [anon_sym_if] = ACTIONS(2668), + [anon_sym_switch] = ACTIONS(2668), + [anon_sym_case] = ACTIONS(2668), + [anon_sym_default] = ACTIONS(2668), + [anon_sym_while] = ACTIONS(2668), + [anon_sym_do] = ACTIONS(2668), + [anon_sym_for] = ACTIONS(2668), + [anon_sym_in] = ACTIONS(2668), + [anon_sym_return] = ACTIONS(2668), + [anon_sym_break] = ACTIONS(2668), + [anon_sym_continue] = ACTIONS(2668), + [anon_sym_goto] = ACTIONS(2668), + [anon_sym_DASH_DASH] = ACTIONS(2670), + [anon_sym_PLUS_PLUS] = ACTIONS(2670), + [anon_sym_sizeof] = ACTIONS(2668), + [anon_sym___alignof__] = ACTIONS(2668), + [anon_sym___alignof] = ACTIONS(2668), + [anon_sym__alignof] = ACTIONS(2668), + [anon_sym_alignof] = ACTIONS(2668), + [anon_sym__Alignof] = ACTIONS(2668), + [anon_sym_offsetof] = ACTIONS(2668), + [anon_sym__Generic] = ACTIONS(2668), + [anon_sym_asm] = ACTIONS(2668), + [anon_sym___asm__] = ACTIONS(2668), + [anon_sym___asm] = ACTIONS(2668), + [sym_number_literal] = ACTIONS(2670), + [anon_sym_L_SQUOTE] = ACTIONS(2670), + [anon_sym_u_SQUOTE] = ACTIONS(2670), + [anon_sym_U_SQUOTE] = ACTIONS(2670), + [anon_sym_u8_SQUOTE] = ACTIONS(2670), + [anon_sym_SQUOTE] = ACTIONS(2670), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_DQUOTE] = ACTIONS(2670), + [anon_sym_L_DQUOTE] = ACTIONS(2670), + [anon_sym_u_DQUOTE] = ACTIONS(2670), + [anon_sym_U_DQUOTE] = ACTIONS(2670), + [anon_sym_u8_DQUOTE] = ACTIONS(2670), + [sym_true] = ACTIONS(2668), + [sym_false] = ACTIONS(2668), + [anon_sym_NULL] = ACTIONS(2668), + [anon_sym_nullptr] = ACTIONS(2668), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2668), + [anon_sym___typeof] = ACTIONS(2668), + [anon_sym_typeof] = ACTIONS(2668), + [anon_sym_ATimport] = ACTIONS(2670), + [aux_sym_preproc_undef_token1] = ACTIONS(2668), + [anon_sym_POUND] = ACTIONS(2668), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2668), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2668), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2668), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2668), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2668), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2668), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2668), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2668), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2668), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2668), + [anon_sym_NS_AVAILABLE] = ACTIONS(2668), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2668), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2668), + [anon_sym_API_AVAILABLE] = ACTIONS(2668), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2668), + [anon_sym_API_DEPRECATED] = ACTIONS(2668), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2668), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2668), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2668), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2668), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2668), + [anon_sym___deprecated_msg] = ACTIONS(2668), + [anon_sym___deprecated_enum_msg] = ACTIONS(2668), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2668), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2668), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2668), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2668), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2668), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2668), + [anon_sym_ATprotocol] = ACTIONS(2670), + [anon_sym_ATinterface] = ACTIONS(2670), + [anon_sym_ATimplementation] = ACTIONS(2670), + [anon_sym_ATcompatibility_alias] = ACTIONS(2670), + [anon_sym_ATsynthesize] = ACTIONS(2670), + [anon_sym_ATdynamic] = ACTIONS(2670), + [anon_sym_ATtry] = ACTIONS(2670), + [anon_sym___try] = ACTIONS(2668), + [anon_sym_ATthrow] = ACTIONS(2670), + [anon_sym_ATselector] = ACTIONS(2670), + [anon_sym_ATavailable] = ACTIONS(2670), + [anon_sym___builtin_available] = ACTIONS(2668), + [anon_sym_va_arg] = ACTIONS(2668), + [anon_sym_ATencode] = ACTIONS(2670), + [anon_sym_ATsynchronized] = ACTIONS(2670), + [anon_sym_BOOL] = ACTIONS(2668), + [anon_sym_IMP] = ACTIONS(2668), + [anon_sym_SEL] = ACTIONS(2668), + [anon_sym_Class] = ACTIONS(2668), + [anon_sym_id] = ACTIONS(2668), + }, + [484] = { + [sym_identifier] = ACTIONS(2680), + [aux_sym_preproc_include_token1] = ACTIONS(2680), + [aux_sym_preproc_include_token2] = ACTIONS(2680), + [aux_sym_preproc_def_token1] = ACTIONS(2680), + [aux_sym_preproc_if_token1] = ACTIONS(2680), + [aux_sym_preproc_if_token2] = ACTIONS(2680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2680), + [aux_sym_preproc_else_token1] = ACTIONS(2680), + [aux_sym_preproc_elif_token1] = ACTIONS(2680), + [sym_preproc_directive] = ACTIONS(2680), + [anon_sym_LPAREN2] = ACTIONS(2682), + [anon_sym_BANG] = ACTIONS(2682), + [anon_sym_TILDE] = ACTIONS(2682), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_CARET] = ACTIONS(2682), + [anon_sym_AMP] = ACTIONS(2682), + [anon_sym_SEMI] = ACTIONS(2682), + [anon_sym___extension__] = ACTIONS(2680), + [anon_sym_typedef] = ACTIONS(2680), + [anon_sym_extern] = ACTIONS(2680), + [anon_sym___attribute__] = ACTIONS(2680), + [anon_sym___attribute] = ACTIONS(2680), + [anon_sym_noreturn] = ACTIONS(2680), + [anon_sym_LBRACK] = ACTIONS(2682), + [anon_sym___declspec] = ACTIONS(2680), + [anon_sym___cdecl] = ACTIONS(2680), + [anon_sym___clrcall] = ACTIONS(2680), + [anon_sym___stdcall] = ACTIONS(2680), + [anon_sym___fastcall] = ACTIONS(2680), + [anon_sym___thiscall] = ACTIONS(2680), + [anon_sym___vectorcall] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2682), + [anon_sym_signed] = ACTIONS(2680), + [anon_sym_unsigned] = ACTIONS(2680), + [anon_sym_long] = ACTIONS(2680), + [anon_sym_short] = ACTIONS(2680), + [anon_sym_static] = ACTIONS(2680), + [anon_sym_ATautoreleasepool] = ACTIONS(2682), + [anon_sym_auto] = ACTIONS(2680), + [anon_sym_register] = ACTIONS(2680), + [anon_sym_inline] = ACTIONS(2680), + [anon_sym___inline] = ACTIONS(2680), + [anon_sym___inline__] = ACTIONS(2680), + [anon_sym___forceinline] = ACTIONS(2680), + [anon_sym_thread_local] = ACTIONS(2680), + [anon_sym___thread] = ACTIONS(2680), + [anon_sym_CG_EXTERN] = ACTIONS(2680), + [anon_sym_CG_INLINE] = ACTIONS(2680), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2680), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2680), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2680), + [anon_sym_IBOutlet] = ACTIONS(2680), + [anon_sym_IBInspectable] = ACTIONS(2680), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2680), + [anon_sym_NS_INLINE] = ACTIONS(2680), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2680), + [anon_sym_OBJC_EXPORT] = ACTIONS(2680), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2680), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2680), + [anon_sym_const] = ACTIONS(2680), + [anon_sym_constexpr] = ACTIONS(2680), + [anon_sym_volatile] = ACTIONS(2680), + [anon_sym_restrict] = ACTIONS(2680), + [anon_sym___restrict__] = ACTIONS(2680), + [anon_sym__Atomic] = ACTIONS(2680), + [anon_sym__Noreturn] = ACTIONS(2680), + [anon_sym__Nonnull] = ACTIONS(2680), + [anon_sym_nullable] = ACTIONS(2680), + [anon_sym__Complex] = ACTIONS(2680), + [anon_sym__Nullable] = ACTIONS(2680), + [anon_sym__Nullable_result] = ACTIONS(2680), + [anon_sym__Null_unspecified] = ACTIONS(2680), + [anon_sym___autoreleasing] = ACTIONS(2680), + [anon_sym___block] = ACTIONS(2680), + [anon_sym___bridge] = ACTIONS(2680), + [anon_sym___bridge_retained] = ACTIONS(2680), + [anon_sym___bridge_transfer] = ACTIONS(2680), + [anon_sym___complex] = ACTIONS(2680), + [anon_sym___const] = ACTIONS(2680), + [anon_sym___imag] = ACTIONS(2680), + [anon_sym___kindof] = ACTIONS(2680), + [anon_sym___nonnull] = ACTIONS(2680), + [anon_sym___nullable] = ACTIONS(2680), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2680), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2680), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2680), + [anon_sym___real] = ACTIONS(2680), + [anon_sym___strong] = ACTIONS(2680), + [anon_sym___unsafe_unretained] = ACTIONS(2680), + [anon_sym___unused] = ACTIONS(2680), + [anon_sym___weak] = ACTIONS(2680), + [anon_sym_alignas] = ACTIONS(2680), + [anon_sym__Alignas] = ACTIONS(2680), + [sym_primitive_type] = ACTIONS(2680), + [anon_sym_enum] = ACTIONS(2680), + [anon_sym_struct] = ACTIONS(2680), + [anon_sym_union] = ACTIONS(2680), + [anon_sym_if] = ACTIONS(2680), + [anon_sym_switch] = ACTIONS(2680), + [anon_sym_case] = ACTIONS(2680), + [anon_sym_default] = ACTIONS(2680), + [anon_sym_while] = ACTIONS(2680), + [anon_sym_do] = ACTIONS(2680), + [anon_sym_for] = ACTIONS(2680), + [anon_sym_in] = ACTIONS(2680), + [anon_sym_return] = ACTIONS(2680), + [anon_sym_break] = ACTIONS(2680), + [anon_sym_continue] = ACTIONS(2680), + [anon_sym_goto] = ACTIONS(2680), + [anon_sym_DASH_DASH] = ACTIONS(2682), + [anon_sym_PLUS_PLUS] = ACTIONS(2682), + [anon_sym_sizeof] = ACTIONS(2680), + [anon_sym___alignof__] = ACTIONS(2680), + [anon_sym___alignof] = ACTIONS(2680), + [anon_sym__alignof] = ACTIONS(2680), + [anon_sym_alignof] = ACTIONS(2680), + [anon_sym__Alignof] = ACTIONS(2680), + [anon_sym_offsetof] = ACTIONS(2680), + [anon_sym__Generic] = ACTIONS(2680), + [anon_sym_asm] = ACTIONS(2680), + [anon_sym___asm__] = ACTIONS(2680), + [anon_sym___asm] = ACTIONS(2680), + [sym_number_literal] = ACTIONS(2682), + [anon_sym_L_SQUOTE] = ACTIONS(2682), + [anon_sym_u_SQUOTE] = ACTIONS(2682), + [anon_sym_U_SQUOTE] = ACTIONS(2682), + [anon_sym_u8_SQUOTE] = ACTIONS(2682), + [anon_sym_SQUOTE] = ACTIONS(2682), + [anon_sym_AT] = ACTIONS(2680), + [anon_sym_DQUOTE] = ACTIONS(2682), + [anon_sym_L_DQUOTE] = ACTIONS(2682), + [anon_sym_u_DQUOTE] = ACTIONS(2682), + [anon_sym_U_DQUOTE] = ACTIONS(2682), + [anon_sym_u8_DQUOTE] = ACTIONS(2682), + [sym_true] = ACTIONS(2680), + [sym_false] = ACTIONS(2680), + [anon_sym_NULL] = ACTIONS(2680), + [anon_sym_nullptr] = ACTIONS(2680), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2680), + [anon_sym___typeof] = ACTIONS(2680), + [anon_sym_typeof] = ACTIONS(2680), + [anon_sym_ATimport] = ACTIONS(2682), + [aux_sym_preproc_undef_token1] = ACTIONS(2680), + [anon_sym_POUND] = ACTIONS(2680), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2680), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2680), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2680), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2680), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2680), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2680), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2680), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2680), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2680), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2680), + [anon_sym_NS_AVAILABLE] = ACTIONS(2680), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2680), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2680), + [anon_sym_API_AVAILABLE] = ACTIONS(2680), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2680), + [anon_sym_API_DEPRECATED] = ACTIONS(2680), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2680), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2680), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2680), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2680), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2680), + [anon_sym___deprecated_msg] = ACTIONS(2680), + [anon_sym___deprecated_enum_msg] = ACTIONS(2680), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2680), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2680), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2680), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2680), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2680), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2680), + [anon_sym_ATprotocol] = ACTIONS(2682), + [anon_sym_ATinterface] = ACTIONS(2682), + [anon_sym_ATimplementation] = ACTIONS(2682), + [anon_sym_ATcompatibility_alias] = ACTIONS(2682), + [anon_sym_ATsynthesize] = ACTIONS(2682), + [anon_sym_ATdynamic] = ACTIONS(2682), + [anon_sym_ATtry] = ACTIONS(2682), + [anon_sym___try] = ACTIONS(2680), + [anon_sym_ATthrow] = ACTIONS(2682), + [anon_sym_ATselector] = ACTIONS(2682), + [anon_sym_ATavailable] = ACTIONS(2682), + [anon_sym___builtin_available] = ACTIONS(2680), + [anon_sym_va_arg] = ACTIONS(2680), + [anon_sym_ATencode] = ACTIONS(2682), + [anon_sym_ATsynchronized] = ACTIONS(2682), + [anon_sym_BOOL] = ACTIONS(2680), + [anon_sym_IMP] = ACTIONS(2680), + [anon_sym_SEL] = ACTIONS(2680), + [anon_sym_Class] = ACTIONS(2680), + [anon_sym_id] = ACTIONS(2680), + }, + [485] = { + [sym_identifier] = ACTIONS(2772), + [aux_sym_preproc_include_token1] = ACTIONS(2772), + [aux_sym_preproc_include_token2] = ACTIONS(2772), + [aux_sym_preproc_def_token1] = ACTIONS(2772), + [aux_sym_preproc_if_token1] = ACTIONS(2772), + [aux_sym_preproc_if_token2] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2772), + [aux_sym_preproc_else_token1] = ACTIONS(2772), + [aux_sym_preproc_elif_token1] = ACTIONS(2772), + [sym_preproc_directive] = ACTIONS(2772), + [anon_sym_LPAREN2] = ACTIONS(2774), + [anon_sym_BANG] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_CARET] = ACTIONS(2774), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym___extension__] = ACTIONS(2772), + [anon_sym_typedef] = ACTIONS(2772), + [anon_sym_extern] = ACTIONS(2772), + [anon_sym___attribute__] = ACTIONS(2772), + [anon_sym___attribute] = ACTIONS(2772), + [anon_sym_noreturn] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym___declspec] = ACTIONS(2772), + [anon_sym___cdecl] = ACTIONS(2772), + [anon_sym___clrcall] = ACTIONS(2772), + [anon_sym___stdcall] = ACTIONS(2772), + [anon_sym___fastcall] = ACTIONS(2772), + [anon_sym___thiscall] = ACTIONS(2772), + [anon_sym___vectorcall] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_signed] = ACTIONS(2772), + [anon_sym_unsigned] = ACTIONS(2772), + [anon_sym_long] = ACTIONS(2772), + [anon_sym_short] = ACTIONS(2772), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_ATautoreleasepool] = ACTIONS(2774), + [anon_sym_auto] = ACTIONS(2772), + [anon_sym_register] = ACTIONS(2772), + [anon_sym_inline] = ACTIONS(2772), + [anon_sym___inline] = ACTIONS(2772), + [anon_sym___inline__] = ACTIONS(2772), + [anon_sym___forceinline] = ACTIONS(2772), + [anon_sym_thread_local] = ACTIONS(2772), + [anon_sym___thread] = ACTIONS(2772), + [anon_sym_CG_EXTERN] = ACTIONS(2772), + [anon_sym_CG_INLINE] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2772), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2772), + [anon_sym_IBOutlet] = ACTIONS(2772), + [anon_sym_IBInspectable] = ACTIONS(2772), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2772), + [anon_sym_NS_INLINE] = ACTIONS(2772), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2772), + [anon_sym_OBJC_EXPORT] = ACTIONS(2772), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2772), + [anon_sym_const] = ACTIONS(2772), + [anon_sym_constexpr] = ACTIONS(2772), + [anon_sym_volatile] = ACTIONS(2772), + [anon_sym_restrict] = ACTIONS(2772), + [anon_sym___restrict__] = ACTIONS(2772), + [anon_sym__Atomic] = ACTIONS(2772), + [anon_sym__Noreturn] = ACTIONS(2772), + [anon_sym__Nonnull] = ACTIONS(2772), + [anon_sym_nullable] = ACTIONS(2772), + [anon_sym__Complex] = ACTIONS(2772), + [anon_sym__Nullable] = ACTIONS(2772), + [anon_sym__Nullable_result] = ACTIONS(2772), + [anon_sym__Null_unspecified] = ACTIONS(2772), + [anon_sym___autoreleasing] = ACTIONS(2772), + [anon_sym___block] = ACTIONS(2772), + [anon_sym___bridge] = ACTIONS(2772), + [anon_sym___bridge_retained] = ACTIONS(2772), + [anon_sym___bridge_transfer] = ACTIONS(2772), + [anon_sym___complex] = ACTIONS(2772), + [anon_sym___const] = ACTIONS(2772), + [anon_sym___imag] = ACTIONS(2772), + [anon_sym___kindof] = ACTIONS(2772), + [anon_sym___nonnull] = ACTIONS(2772), + [anon_sym___nullable] = ACTIONS(2772), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2772), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2772), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2772), + [anon_sym___real] = ACTIONS(2772), + [anon_sym___strong] = ACTIONS(2772), + [anon_sym___unsafe_unretained] = ACTIONS(2772), + [anon_sym___unused] = ACTIONS(2772), + [anon_sym___weak] = ACTIONS(2772), + [anon_sym_alignas] = ACTIONS(2772), + [anon_sym__Alignas] = ACTIONS(2772), + [sym_primitive_type] = ACTIONS(2772), + [anon_sym_enum] = ACTIONS(2772), + [anon_sym_struct] = ACTIONS(2772), + [anon_sym_union] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_switch] = ACTIONS(2772), + [anon_sym_case] = ACTIONS(2772), + [anon_sym_default] = ACTIONS(2772), + [anon_sym_while] = ACTIONS(2772), + [anon_sym_do] = ACTIONS(2772), + [anon_sym_for] = ACTIONS(2772), + [anon_sym_in] = ACTIONS(2772), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_break] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2772), + [anon_sym_goto] = ACTIONS(2772), + [anon_sym_DASH_DASH] = ACTIONS(2774), + [anon_sym_PLUS_PLUS] = ACTIONS(2774), + [anon_sym_sizeof] = ACTIONS(2772), + [anon_sym___alignof__] = ACTIONS(2772), + [anon_sym___alignof] = ACTIONS(2772), + [anon_sym__alignof] = ACTIONS(2772), + [anon_sym_alignof] = ACTIONS(2772), + [anon_sym__Alignof] = ACTIONS(2772), + [anon_sym_offsetof] = ACTIONS(2772), + [anon_sym__Generic] = ACTIONS(2772), + [anon_sym_asm] = ACTIONS(2772), + [anon_sym___asm__] = ACTIONS(2772), + [anon_sym___asm] = ACTIONS(2772), + [sym_number_literal] = ACTIONS(2774), + [anon_sym_L_SQUOTE] = ACTIONS(2774), + [anon_sym_u_SQUOTE] = ACTIONS(2774), + [anon_sym_U_SQUOTE] = ACTIONS(2774), + [anon_sym_u8_SQUOTE] = ACTIONS(2774), + [anon_sym_SQUOTE] = ACTIONS(2774), + [anon_sym_AT] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_L_DQUOTE] = ACTIONS(2774), + [anon_sym_u_DQUOTE] = ACTIONS(2774), + [anon_sym_U_DQUOTE] = ACTIONS(2774), + [anon_sym_u8_DQUOTE] = ACTIONS(2774), + [sym_true] = ACTIONS(2772), + [sym_false] = ACTIONS(2772), + [anon_sym_NULL] = ACTIONS(2772), + [anon_sym_nullptr] = ACTIONS(2772), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2772), + [anon_sym___typeof] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2772), + [anon_sym_ATimport] = ACTIONS(2774), + [aux_sym_preproc_undef_token1] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(2772), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2772), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2772), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2772), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2772), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE] = ACTIONS(2772), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_API_AVAILABLE] = ACTIONS(2772), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_API_DEPRECATED] = ACTIONS(2772), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2772), + [anon_sym___deprecated_msg] = ACTIONS(2772), + [anon_sym___deprecated_enum_msg] = ACTIONS(2772), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2772), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2772), + [anon_sym_ATprotocol] = ACTIONS(2774), + [anon_sym_ATinterface] = ACTIONS(2774), + [anon_sym_ATimplementation] = ACTIONS(2774), + [anon_sym_ATcompatibility_alias] = ACTIONS(2774), + [anon_sym_ATsynthesize] = ACTIONS(2774), + [anon_sym_ATdynamic] = ACTIONS(2774), + [anon_sym_ATtry] = ACTIONS(2774), + [anon_sym___try] = ACTIONS(2772), + [anon_sym_ATthrow] = ACTIONS(2774), + [anon_sym_ATselector] = ACTIONS(2774), + [anon_sym_ATavailable] = ACTIONS(2774), + [anon_sym___builtin_available] = ACTIONS(2772), + [anon_sym_va_arg] = ACTIONS(2772), + [anon_sym_ATencode] = ACTIONS(2774), + [anon_sym_ATsynchronized] = ACTIONS(2774), + [anon_sym_BOOL] = ACTIONS(2772), + [anon_sym_IMP] = ACTIONS(2772), + [anon_sym_SEL] = ACTIONS(2772), + [anon_sym_Class] = ACTIONS(2772), + [anon_sym_id] = ACTIONS(2772), + }, + [486] = { + [sym_identifier] = ACTIONS(2744), + [aux_sym_preproc_include_token1] = ACTIONS(2744), + [aux_sym_preproc_include_token2] = ACTIONS(2744), + [aux_sym_preproc_def_token1] = ACTIONS(2744), + [aux_sym_preproc_if_token1] = ACTIONS(2744), + [aux_sym_preproc_if_token2] = ACTIONS(2744), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2744), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2744), + [aux_sym_preproc_else_token1] = ACTIONS(2744), + [aux_sym_preproc_elif_token1] = ACTIONS(2744), + [sym_preproc_directive] = ACTIONS(2744), + [anon_sym_LPAREN2] = ACTIONS(2746), + [anon_sym_BANG] = ACTIONS(2746), + [anon_sym_TILDE] = ACTIONS(2746), + [anon_sym_DASH] = ACTIONS(2744), + [anon_sym_PLUS] = ACTIONS(2744), + [anon_sym_STAR] = ACTIONS(2746), + [anon_sym_CARET] = ACTIONS(2746), + [anon_sym_AMP] = ACTIONS(2746), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym___extension__] = ACTIONS(2744), + [anon_sym_typedef] = ACTIONS(2744), + [anon_sym_extern] = ACTIONS(2744), + [anon_sym___attribute__] = ACTIONS(2744), + [anon_sym___attribute] = ACTIONS(2744), + [anon_sym_noreturn] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym___declspec] = ACTIONS(2744), + [anon_sym___cdecl] = ACTIONS(2744), + [anon_sym___clrcall] = ACTIONS(2744), + [anon_sym___stdcall] = ACTIONS(2744), + [anon_sym___fastcall] = ACTIONS(2744), + [anon_sym___thiscall] = ACTIONS(2744), + [anon_sym___vectorcall] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_signed] = ACTIONS(2744), + [anon_sym_unsigned] = ACTIONS(2744), + [anon_sym_long] = ACTIONS(2744), + [anon_sym_short] = ACTIONS(2744), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_ATautoreleasepool] = ACTIONS(2746), + [anon_sym_auto] = ACTIONS(2744), + [anon_sym_register] = ACTIONS(2744), + [anon_sym_inline] = ACTIONS(2744), + [anon_sym___inline] = ACTIONS(2744), + [anon_sym___inline__] = ACTIONS(2744), + [anon_sym___forceinline] = ACTIONS(2744), + [anon_sym_thread_local] = ACTIONS(2744), + [anon_sym___thread] = ACTIONS(2744), + [anon_sym_CG_EXTERN] = ACTIONS(2744), + [anon_sym_CG_INLINE] = ACTIONS(2744), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2744), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2744), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2744), + [anon_sym_IBOutlet] = ACTIONS(2744), + [anon_sym_IBInspectable] = ACTIONS(2744), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2744), + [anon_sym_NS_INLINE] = ACTIONS(2744), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2744), + [anon_sym_OBJC_EXPORT] = ACTIONS(2744), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2744), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2744), + [anon_sym_const] = ACTIONS(2744), + [anon_sym_constexpr] = ACTIONS(2744), + [anon_sym_volatile] = ACTIONS(2744), + [anon_sym_restrict] = ACTIONS(2744), + [anon_sym___restrict__] = ACTIONS(2744), + [anon_sym__Atomic] = ACTIONS(2744), + [anon_sym__Noreturn] = ACTIONS(2744), + [anon_sym__Nonnull] = ACTIONS(2744), + [anon_sym_nullable] = ACTIONS(2744), + [anon_sym__Complex] = ACTIONS(2744), + [anon_sym__Nullable] = ACTIONS(2744), + [anon_sym__Nullable_result] = ACTIONS(2744), + [anon_sym__Null_unspecified] = ACTIONS(2744), + [anon_sym___autoreleasing] = ACTIONS(2744), + [anon_sym___block] = ACTIONS(2744), + [anon_sym___bridge] = ACTIONS(2744), + [anon_sym___bridge_retained] = ACTIONS(2744), + [anon_sym___bridge_transfer] = ACTIONS(2744), + [anon_sym___complex] = ACTIONS(2744), + [anon_sym___const] = ACTIONS(2744), + [anon_sym___imag] = ACTIONS(2744), + [anon_sym___kindof] = ACTIONS(2744), + [anon_sym___nonnull] = ACTIONS(2744), + [anon_sym___nullable] = ACTIONS(2744), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2744), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2744), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2744), + [anon_sym___real] = ACTIONS(2744), + [anon_sym___strong] = ACTIONS(2744), + [anon_sym___unsafe_unretained] = ACTIONS(2744), + [anon_sym___unused] = ACTIONS(2744), + [anon_sym___weak] = ACTIONS(2744), + [anon_sym_alignas] = ACTIONS(2744), + [anon_sym__Alignas] = ACTIONS(2744), + [sym_primitive_type] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), + [anon_sym_struct] = ACTIONS(2744), + [anon_sym_union] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_switch] = ACTIONS(2744), + [anon_sym_case] = ACTIONS(2744), + [anon_sym_default] = ACTIONS(2744), + [anon_sym_while] = ACTIONS(2744), + [anon_sym_do] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2744), + [anon_sym_return] = ACTIONS(2744), + [anon_sym_break] = ACTIONS(2744), + [anon_sym_continue] = ACTIONS(2744), + [anon_sym_goto] = ACTIONS(2744), + [anon_sym_DASH_DASH] = ACTIONS(2746), + [anon_sym_PLUS_PLUS] = ACTIONS(2746), + [anon_sym_sizeof] = ACTIONS(2744), + [anon_sym___alignof__] = ACTIONS(2744), + [anon_sym___alignof] = ACTIONS(2744), + [anon_sym__alignof] = ACTIONS(2744), + [anon_sym_alignof] = ACTIONS(2744), + [anon_sym__Alignof] = ACTIONS(2744), + [anon_sym_offsetof] = ACTIONS(2744), + [anon_sym__Generic] = ACTIONS(2744), + [anon_sym_asm] = ACTIONS(2744), + [anon_sym___asm__] = ACTIONS(2744), + [anon_sym___asm] = ACTIONS(2744), + [sym_number_literal] = ACTIONS(2746), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_AT] = ACTIONS(2744), + [anon_sym_DQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2746), + [anon_sym_u_DQUOTE] = ACTIONS(2746), + [anon_sym_U_DQUOTE] = ACTIONS(2746), + [anon_sym_u8_DQUOTE] = ACTIONS(2746), + [sym_true] = ACTIONS(2744), + [sym_false] = ACTIONS(2744), + [anon_sym_NULL] = ACTIONS(2744), + [anon_sym_nullptr] = ACTIONS(2744), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2744), + [anon_sym___typeof] = ACTIONS(2744), + [anon_sym_typeof] = ACTIONS(2744), + [anon_sym_ATimport] = ACTIONS(2746), + [aux_sym_preproc_undef_token1] = ACTIONS(2744), + [anon_sym_POUND] = ACTIONS(2744), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2744), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2744), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2744), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2744), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2744), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2744), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2744), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2744), + [anon_sym_NS_AVAILABLE] = ACTIONS(2744), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2744), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_API_AVAILABLE] = ACTIONS(2744), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_API_DEPRECATED] = ACTIONS(2744), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2744), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2744), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2744), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2744), + [anon_sym___deprecated_msg] = ACTIONS(2744), + [anon_sym___deprecated_enum_msg] = ACTIONS(2744), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2744), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2744), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2744), + [anon_sym_ATprotocol] = ACTIONS(2746), + [anon_sym_ATinterface] = ACTIONS(2746), + [anon_sym_ATimplementation] = ACTIONS(2746), + [anon_sym_ATcompatibility_alias] = ACTIONS(2746), + [anon_sym_ATsynthesize] = ACTIONS(2746), + [anon_sym_ATdynamic] = ACTIONS(2746), + [anon_sym_ATtry] = ACTIONS(2746), + [anon_sym___try] = ACTIONS(2744), + [anon_sym_ATthrow] = ACTIONS(2746), + [anon_sym_ATselector] = ACTIONS(2746), + [anon_sym_ATavailable] = ACTIONS(2746), + [anon_sym___builtin_available] = ACTIONS(2744), + [anon_sym_va_arg] = ACTIONS(2744), + [anon_sym_ATencode] = ACTIONS(2746), + [anon_sym_ATsynchronized] = ACTIONS(2746), + [anon_sym_BOOL] = ACTIONS(2744), + [anon_sym_IMP] = ACTIONS(2744), + [anon_sym_SEL] = ACTIONS(2744), + [anon_sym_Class] = ACTIONS(2744), + [anon_sym_id] = ACTIONS(2744), + }, + [487] = { + [sym_identifier] = ACTIONS(2740), + [aux_sym_preproc_include_token1] = ACTIONS(2740), + [aux_sym_preproc_include_token2] = ACTIONS(2740), + [aux_sym_preproc_def_token1] = ACTIONS(2740), + [aux_sym_preproc_if_token1] = ACTIONS(2740), + [aux_sym_preproc_if_token2] = ACTIONS(2740), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2740), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2740), + [aux_sym_preproc_else_token1] = ACTIONS(2740), + [aux_sym_preproc_elif_token1] = ACTIONS(2740), + [sym_preproc_directive] = ACTIONS(2740), + [anon_sym_LPAREN2] = ACTIONS(2742), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_TILDE] = ACTIONS(2742), + [anon_sym_DASH] = ACTIONS(2740), + [anon_sym_PLUS] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2742), + [anon_sym_CARET] = ACTIONS(2742), + [anon_sym_AMP] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym___extension__] = ACTIONS(2740), + [anon_sym_typedef] = ACTIONS(2740), + [anon_sym_extern] = ACTIONS(2740), + [anon_sym___attribute__] = ACTIONS(2740), + [anon_sym___attribute] = ACTIONS(2740), + [anon_sym_noreturn] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym___declspec] = ACTIONS(2740), + [anon_sym___cdecl] = ACTIONS(2740), + [anon_sym___clrcall] = ACTIONS(2740), + [anon_sym___stdcall] = ACTIONS(2740), + [anon_sym___fastcall] = ACTIONS(2740), + [anon_sym___thiscall] = ACTIONS(2740), + [anon_sym___vectorcall] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_signed] = ACTIONS(2740), + [anon_sym_unsigned] = ACTIONS(2740), + [anon_sym_long] = ACTIONS(2740), + [anon_sym_short] = ACTIONS(2740), + [anon_sym_static] = ACTIONS(2740), + [anon_sym_ATautoreleasepool] = ACTIONS(2742), + [anon_sym_auto] = ACTIONS(2740), + [anon_sym_register] = ACTIONS(2740), + [anon_sym_inline] = ACTIONS(2740), + [anon_sym___inline] = ACTIONS(2740), + [anon_sym___inline__] = ACTIONS(2740), + [anon_sym___forceinline] = ACTIONS(2740), + [anon_sym_thread_local] = ACTIONS(2740), + [anon_sym___thread] = ACTIONS(2740), + [anon_sym_CG_EXTERN] = ACTIONS(2740), + [anon_sym_CG_INLINE] = ACTIONS(2740), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2740), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2740), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2740), + [anon_sym_IBOutlet] = ACTIONS(2740), + [anon_sym_IBInspectable] = ACTIONS(2740), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2740), + [anon_sym_NS_INLINE] = ACTIONS(2740), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2740), + [anon_sym_OBJC_EXPORT] = ACTIONS(2740), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2740), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2740), + [anon_sym_const] = ACTIONS(2740), + [anon_sym_constexpr] = ACTIONS(2740), + [anon_sym_volatile] = ACTIONS(2740), + [anon_sym_restrict] = ACTIONS(2740), + [anon_sym___restrict__] = ACTIONS(2740), + [anon_sym__Atomic] = ACTIONS(2740), + [anon_sym__Noreturn] = ACTIONS(2740), + [anon_sym__Nonnull] = ACTIONS(2740), + [anon_sym_nullable] = ACTIONS(2740), + [anon_sym__Complex] = ACTIONS(2740), + [anon_sym__Nullable] = ACTIONS(2740), + [anon_sym__Nullable_result] = ACTIONS(2740), + [anon_sym__Null_unspecified] = ACTIONS(2740), + [anon_sym___autoreleasing] = ACTIONS(2740), + [anon_sym___block] = ACTIONS(2740), + [anon_sym___bridge] = ACTIONS(2740), + [anon_sym___bridge_retained] = ACTIONS(2740), + [anon_sym___bridge_transfer] = ACTIONS(2740), + [anon_sym___complex] = ACTIONS(2740), + [anon_sym___const] = ACTIONS(2740), + [anon_sym___imag] = ACTIONS(2740), + [anon_sym___kindof] = ACTIONS(2740), + [anon_sym___nonnull] = ACTIONS(2740), + [anon_sym___nullable] = ACTIONS(2740), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2740), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2740), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2740), + [anon_sym___real] = ACTIONS(2740), + [anon_sym___strong] = ACTIONS(2740), + [anon_sym___unsafe_unretained] = ACTIONS(2740), + [anon_sym___unused] = ACTIONS(2740), + [anon_sym___weak] = ACTIONS(2740), + [anon_sym_alignas] = ACTIONS(2740), + [anon_sym__Alignas] = ACTIONS(2740), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_enum] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(2740), + [anon_sym_union] = ACTIONS(2740), + [anon_sym_if] = ACTIONS(2740), + [anon_sym_switch] = ACTIONS(2740), + [anon_sym_case] = ACTIONS(2740), + [anon_sym_default] = ACTIONS(2740), + [anon_sym_while] = ACTIONS(2740), + [anon_sym_do] = ACTIONS(2740), + [anon_sym_for] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2740), + [anon_sym_return] = ACTIONS(2740), + [anon_sym_break] = ACTIONS(2740), + [anon_sym_continue] = ACTIONS(2740), + [anon_sym_goto] = ACTIONS(2740), + [anon_sym_DASH_DASH] = ACTIONS(2742), + [anon_sym_PLUS_PLUS] = ACTIONS(2742), + [anon_sym_sizeof] = ACTIONS(2740), + [anon_sym___alignof__] = ACTIONS(2740), + [anon_sym___alignof] = ACTIONS(2740), + [anon_sym__alignof] = ACTIONS(2740), + [anon_sym_alignof] = ACTIONS(2740), + [anon_sym__Alignof] = ACTIONS(2740), + [anon_sym_offsetof] = ACTIONS(2740), + [anon_sym__Generic] = ACTIONS(2740), + [anon_sym_asm] = ACTIONS(2740), + [anon_sym___asm__] = ACTIONS(2740), + [anon_sym___asm] = ACTIONS(2740), + [sym_number_literal] = ACTIONS(2742), + [anon_sym_L_SQUOTE] = ACTIONS(2742), + [anon_sym_u_SQUOTE] = ACTIONS(2742), + [anon_sym_U_SQUOTE] = ACTIONS(2742), + [anon_sym_u8_SQUOTE] = ACTIONS(2742), + [anon_sym_SQUOTE] = ACTIONS(2742), + [anon_sym_AT] = ACTIONS(2740), + [anon_sym_DQUOTE] = ACTIONS(2742), + [anon_sym_L_DQUOTE] = ACTIONS(2742), + [anon_sym_u_DQUOTE] = ACTIONS(2742), + [anon_sym_U_DQUOTE] = ACTIONS(2742), + [anon_sym_u8_DQUOTE] = ACTIONS(2742), + [sym_true] = ACTIONS(2740), + [sym_false] = ACTIONS(2740), + [anon_sym_NULL] = ACTIONS(2740), + [anon_sym_nullptr] = ACTIONS(2740), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2740), + [anon_sym___typeof] = ACTIONS(2740), + [anon_sym_typeof] = ACTIONS(2740), + [anon_sym_ATimport] = ACTIONS(2742), + [aux_sym_preproc_undef_token1] = ACTIONS(2740), + [anon_sym_POUND] = ACTIONS(2740), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2740), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2740), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2740), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2740), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2740), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2740), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2740), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2740), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2740), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2740), + [anon_sym_NS_AVAILABLE] = ACTIONS(2740), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2740), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2740), + [anon_sym_API_AVAILABLE] = ACTIONS(2740), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2740), + [anon_sym_API_DEPRECATED] = ACTIONS(2740), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2740), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2740), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2740), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2740), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2740), + [anon_sym___deprecated_msg] = ACTIONS(2740), + [anon_sym___deprecated_enum_msg] = ACTIONS(2740), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2740), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2740), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2740), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2740), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2740), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2740), + [anon_sym_ATprotocol] = ACTIONS(2742), + [anon_sym_ATinterface] = ACTIONS(2742), + [anon_sym_ATimplementation] = ACTIONS(2742), + [anon_sym_ATcompatibility_alias] = ACTIONS(2742), + [anon_sym_ATsynthesize] = ACTIONS(2742), + [anon_sym_ATdynamic] = ACTIONS(2742), + [anon_sym_ATtry] = ACTIONS(2742), + [anon_sym___try] = ACTIONS(2740), + [anon_sym_ATthrow] = ACTIONS(2742), + [anon_sym_ATselector] = ACTIONS(2742), + [anon_sym_ATavailable] = ACTIONS(2742), + [anon_sym___builtin_available] = ACTIONS(2740), + [anon_sym_va_arg] = ACTIONS(2740), + [anon_sym_ATencode] = ACTIONS(2742), + [anon_sym_ATsynchronized] = ACTIONS(2742), + [anon_sym_BOOL] = ACTIONS(2740), + [anon_sym_IMP] = ACTIONS(2740), + [anon_sym_SEL] = ACTIONS(2740), + [anon_sym_Class] = ACTIONS(2740), + [anon_sym_id] = ACTIONS(2740), + }, + [488] = { + [sym_identifier] = ACTIONS(2772), + [aux_sym_preproc_include_token1] = ACTIONS(2772), + [aux_sym_preproc_include_token2] = ACTIONS(2772), + [aux_sym_preproc_def_token1] = ACTIONS(2772), + [aux_sym_preproc_if_token1] = ACTIONS(2772), + [aux_sym_preproc_if_token2] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2772), + [aux_sym_preproc_else_token1] = ACTIONS(2772), + [aux_sym_preproc_elif_token1] = ACTIONS(2772), + [sym_preproc_directive] = ACTIONS(2772), + [anon_sym_LPAREN2] = ACTIONS(2774), + [anon_sym_BANG] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_CARET] = ACTIONS(2774), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym___extension__] = ACTIONS(2772), + [anon_sym_typedef] = ACTIONS(2772), + [anon_sym_extern] = ACTIONS(2772), + [anon_sym___attribute__] = ACTIONS(2772), + [anon_sym___attribute] = ACTIONS(2772), + [anon_sym_noreturn] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym___declspec] = ACTIONS(2772), + [anon_sym___cdecl] = ACTIONS(2772), + [anon_sym___clrcall] = ACTIONS(2772), + [anon_sym___stdcall] = ACTIONS(2772), + [anon_sym___fastcall] = ACTIONS(2772), + [anon_sym___thiscall] = ACTIONS(2772), + [anon_sym___vectorcall] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_signed] = ACTIONS(2772), + [anon_sym_unsigned] = ACTIONS(2772), + [anon_sym_long] = ACTIONS(2772), + [anon_sym_short] = ACTIONS(2772), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_ATautoreleasepool] = ACTIONS(2774), + [anon_sym_auto] = ACTIONS(2772), + [anon_sym_register] = ACTIONS(2772), + [anon_sym_inline] = ACTIONS(2772), + [anon_sym___inline] = ACTIONS(2772), + [anon_sym___inline__] = ACTIONS(2772), + [anon_sym___forceinline] = ACTIONS(2772), + [anon_sym_thread_local] = ACTIONS(2772), + [anon_sym___thread] = ACTIONS(2772), + [anon_sym_CG_EXTERN] = ACTIONS(2772), + [anon_sym_CG_INLINE] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2772), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2772), + [anon_sym_IBOutlet] = ACTIONS(2772), + [anon_sym_IBInspectable] = ACTIONS(2772), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2772), + [anon_sym_NS_INLINE] = ACTIONS(2772), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2772), + [anon_sym_OBJC_EXPORT] = ACTIONS(2772), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2772), + [anon_sym_const] = ACTIONS(2772), + [anon_sym_constexpr] = ACTIONS(2772), + [anon_sym_volatile] = ACTIONS(2772), + [anon_sym_restrict] = ACTIONS(2772), + [anon_sym___restrict__] = ACTIONS(2772), + [anon_sym__Atomic] = ACTIONS(2772), + [anon_sym__Noreturn] = ACTIONS(2772), + [anon_sym__Nonnull] = ACTIONS(2772), + [anon_sym_nullable] = ACTIONS(2772), + [anon_sym__Complex] = ACTIONS(2772), + [anon_sym__Nullable] = ACTIONS(2772), + [anon_sym__Nullable_result] = ACTIONS(2772), + [anon_sym__Null_unspecified] = ACTIONS(2772), + [anon_sym___autoreleasing] = ACTIONS(2772), + [anon_sym___block] = ACTIONS(2772), + [anon_sym___bridge] = ACTIONS(2772), + [anon_sym___bridge_retained] = ACTIONS(2772), + [anon_sym___bridge_transfer] = ACTIONS(2772), + [anon_sym___complex] = ACTIONS(2772), + [anon_sym___const] = ACTIONS(2772), + [anon_sym___imag] = ACTIONS(2772), + [anon_sym___kindof] = ACTIONS(2772), + [anon_sym___nonnull] = ACTIONS(2772), + [anon_sym___nullable] = ACTIONS(2772), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2772), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2772), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2772), + [anon_sym___real] = ACTIONS(2772), + [anon_sym___strong] = ACTIONS(2772), + [anon_sym___unsafe_unretained] = ACTIONS(2772), + [anon_sym___unused] = ACTIONS(2772), + [anon_sym___weak] = ACTIONS(2772), + [anon_sym_alignas] = ACTIONS(2772), + [anon_sym__Alignas] = ACTIONS(2772), + [sym_primitive_type] = ACTIONS(2772), + [anon_sym_enum] = ACTIONS(2772), + [anon_sym_struct] = ACTIONS(2772), + [anon_sym_union] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_switch] = ACTIONS(2772), + [anon_sym_case] = ACTIONS(2772), + [anon_sym_default] = ACTIONS(2772), + [anon_sym_while] = ACTIONS(2772), + [anon_sym_do] = ACTIONS(2772), + [anon_sym_for] = ACTIONS(2772), + [anon_sym_in] = ACTIONS(2772), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_break] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2772), + [anon_sym_goto] = ACTIONS(2772), + [anon_sym_DASH_DASH] = ACTIONS(2774), + [anon_sym_PLUS_PLUS] = ACTIONS(2774), + [anon_sym_sizeof] = ACTIONS(2772), + [anon_sym___alignof__] = ACTIONS(2772), + [anon_sym___alignof] = ACTIONS(2772), + [anon_sym__alignof] = ACTIONS(2772), + [anon_sym_alignof] = ACTIONS(2772), + [anon_sym__Alignof] = ACTIONS(2772), + [anon_sym_offsetof] = ACTIONS(2772), + [anon_sym__Generic] = ACTIONS(2772), + [anon_sym_asm] = ACTIONS(2772), + [anon_sym___asm__] = ACTIONS(2772), + [anon_sym___asm] = ACTIONS(2772), + [sym_number_literal] = ACTIONS(2774), + [anon_sym_L_SQUOTE] = ACTIONS(2774), + [anon_sym_u_SQUOTE] = ACTIONS(2774), + [anon_sym_U_SQUOTE] = ACTIONS(2774), + [anon_sym_u8_SQUOTE] = ACTIONS(2774), + [anon_sym_SQUOTE] = ACTIONS(2774), + [anon_sym_AT] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_L_DQUOTE] = ACTIONS(2774), + [anon_sym_u_DQUOTE] = ACTIONS(2774), + [anon_sym_U_DQUOTE] = ACTIONS(2774), + [anon_sym_u8_DQUOTE] = ACTIONS(2774), + [sym_true] = ACTIONS(2772), + [sym_false] = ACTIONS(2772), + [anon_sym_NULL] = ACTIONS(2772), + [anon_sym_nullptr] = ACTIONS(2772), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2772), + [anon_sym___typeof] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2772), + [anon_sym_ATimport] = ACTIONS(2774), + [aux_sym_preproc_undef_token1] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(2772), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2772), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2772), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2772), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2772), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE] = ACTIONS(2772), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_API_AVAILABLE] = ACTIONS(2772), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_API_DEPRECATED] = ACTIONS(2772), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2772), + [anon_sym___deprecated_msg] = ACTIONS(2772), + [anon_sym___deprecated_enum_msg] = ACTIONS(2772), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2772), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2772), + [anon_sym_ATprotocol] = ACTIONS(2774), + [anon_sym_ATinterface] = ACTIONS(2774), + [anon_sym_ATimplementation] = ACTIONS(2774), + [anon_sym_ATcompatibility_alias] = ACTIONS(2774), + [anon_sym_ATsynthesize] = ACTIONS(2774), + [anon_sym_ATdynamic] = ACTIONS(2774), + [anon_sym_ATtry] = ACTIONS(2774), + [anon_sym___try] = ACTIONS(2772), + [anon_sym_ATthrow] = ACTIONS(2774), + [anon_sym_ATselector] = ACTIONS(2774), + [anon_sym_ATavailable] = ACTIONS(2774), + [anon_sym___builtin_available] = ACTIONS(2772), + [anon_sym_va_arg] = ACTIONS(2772), + [anon_sym_ATencode] = ACTIONS(2774), + [anon_sym_ATsynchronized] = ACTIONS(2774), + [anon_sym_BOOL] = ACTIONS(2772), + [anon_sym_IMP] = ACTIONS(2772), + [anon_sym_SEL] = ACTIONS(2772), + [anon_sym_Class] = ACTIONS(2772), + [anon_sym_id] = ACTIONS(2772), + }, + [489] = { + [sym_identifier] = ACTIONS(2772), + [aux_sym_preproc_include_token1] = ACTIONS(2772), + [aux_sym_preproc_include_token2] = ACTIONS(2772), + [aux_sym_preproc_def_token1] = ACTIONS(2772), + [aux_sym_preproc_if_token1] = ACTIONS(2772), + [aux_sym_preproc_if_token2] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2772), + [aux_sym_preproc_else_token1] = ACTIONS(2772), + [aux_sym_preproc_elif_token1] = ACTIONS(2772), + [sym_preproc_directive] = ACTIONS(2772), + [anon_sym_LPAREN2] = ACTIONS(2774), + [anon_sym_BANG] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_CARET] = ACTIONS(2774), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym___extension__] = ACTIONS(2772), + [anon_sym_typedef] = ACTIONS(2772), + [anon_sym_extern] = ACTIONS(2772), + [anon_sym___attribute__] = ACTIONS(2772), + [anon_sym___attribute] = ACTIONS(2772), + [anon_sym_noreturn] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym___declspec] = ACTIONS(2772), + [anon_sym___cdecl] = ACTIONS(2772), + [anon_sym___clrcall] = ACTIONS(2772), + [anon_sym___stdcall] = ACTIONS(2772), + [anon_sym___fastcall] = ACTIONS(2772), + [anon_sym___thiscall] = ACTIONS(2772), + [anon_sym___vectorcall] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_signed] = ACTIONS(2772), + [anon_sym_unsigned] = ACTIONS(2772), + [anon_sym_long] = ACTIONS(2772), + [anon_sym_short] = ACTIONS(2772), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_ATautoreleasepool] = ACTIONS(2774), + [anon_sym_auto] = ACTIONS(2772), + [anon_sym_register] = ACTIONS(2772), + [anon_sym_inline] = ACTIONS(2772), + [anon_sym___inline] = ACTIONS(2772), + [anon_sym___inline__] = ACTIONS(2772), + [anon_sym___forceinline] = ACTIONS(2772), + [anon_sym_thread_local] = ACTIONS(2772), + [anon_sym___thread] = ACTIONS(2772), + [anon_sym_CG_EXTERN] = ACTIONS(2772), + [anon_sym_CG_INLINE] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2772), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2772), + [anon_sym_IBOutlet] = ACTIONS(2772), + [anon_sym_IBInspectable] = ACTIONS(2772), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2772), + [anon_sym_NS_INLINE] = ACTIONS(2772), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2772), + [anon_sym_OBJC_EXPORT] = ACTIONS(2772), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2772), + [anon_sym_const] = ACTIONS(2772), + [anon_sym_constexpr] = ACTIONS(2772), + [anon_sym_volatile] = ACTIONS(2772), + [anon_sym_restrict] = ACTIONS(2772), + [anon_sym___restrict__] = ACTIONS(2772), + [anon_sym__Atomic] = ACTIONS(2772), + [anon_sym__Noreturn] = ACTIONS(2772), + [anon_sym__Nonnull] = ACTIONS(2772), + [anon_sym_nullable] = ACTIONS(2772), + [anon_sym__Complex] = ACTIONS(2772), + [anon_sym__Nullable] = ACTIONS(2772), + [anon_sym__Nullable_result] = ACTIONS(2772), + [anon_sym__Null_unspecified] = ACTIONS(2772), + [anon_sym___autoreleasing] = ACTIONS(2772), + [anon_sym___block] = ACTIONS(2772), + [anon_sym___bridge] = ACTIONS(2772), + [anon_sym___bridge_retained] = ACTIONS(2772), + [anon_sym___bridge_transfer] = ACTIONS(2772), + [anon_sym___complex] = ACTIONS(2772), + [anon_sym___const] = ACTIONS(2772), + [anon_sym___imag] = ACTIONS(2772), + [anon_sym___kindof] = ACTIONS(2772), + [anon_sym___nonnull] = ACTIONS(2772), + [anon_sym___nullable] = ACTIONS(2772), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2772), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2772), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2772), + [anon_sym___real] = ACTIONS(2772), + [anon_sym___strong] = ACTIONS(2772), + [anon_sym___unsafe_unretained] = ACTIONS(2772), + [anon_sym___unused] = ACTIONS(2772), + [anon_sym___weak] = ACTIONS(2772), + [anon_sym_alignas] = ACTIONS(2772), + [anon_sym__Alignas] = ACTIONS(2772), + [sym_primitive_type] = ACTIONS(2772), + [anon_sym_enum] = ACTIONS(2772), + [anon_sym_struct] = ACTIONS(2772), + [anon_sym_union] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_switch] = ACTIONS(2772), + [anon_sym_case] = ACTIONS(2772), + [anon_sym_default] = ACTIONS(2772), + [anon_sym_while] = ACTIONS(2772), + [anon_sym_do] = ACTIONS(2772), + [anon_sym_for] = ACTIONS(2772), + [anon_sym_in] = ACTIONS(2772), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_break] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2772), + [anon_sym_goto] = ACTIONS(2772), + [anon_sym_DASH_DASH] = ACTIONS(2774), + [anon_sym_PLUS_PLUS] = ACTIONS(2774), + [anon_sym_sizeof] = ACTIONS(2772), + [anon_sym___alignof__] = ACTIONS(2772), + [anon_sym___alignof] = ACTIONS(2772), + [anon_sym__alignof] = ACTIONS(2772), + [anon_sym_alignof] = ACTIONS(2772), + [anon_sym__Alignof] = ACTIONS(2772), + [anon_sym_offsetof] = ACTIONS(2772), + [anon_sym__Generic] = ACTIONS(2772), + [anon_sym_asm] = ACTIONS(2772), + [anon_sym___asm__] = ACTIONS(2772), + [anon_sym___asm] = ACTIONS(2772), + [sym_number_literal] = ACTIONS(2774), + [anon_sym_L_SQUOTE] = ACTIONS(2774), + [anon_sym_u_SQUOTE] = ACTIONS(2774), + [anon_sym_U_SQUOTE] = ACTIONS(2774), + [anon_sym_u8_SQUOTE] = ACTIONS(2774), + [anon_sym_SQUOTE] = ACTIONS(2774), + [anon_sym_AT] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_L_DQUOTE] = ACTIONS(2774), + [anon_sym_u_DQUOTE] = ACTIONS(2774), + [anon_sym_U_DQUOTE] = ACTIONS(2774), + [anon_sym_u8_DQUOTE] = ACTIONS(2774), + [sym_true] = ACTIONS(2772), + [sym_false] = ACTIONS(2772), + [anon_sym_NULL] = ACTIONS(2772), + [anon_sym_nullptr] = ACTIONS(2772), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2772), + [anon_sym___typeof] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2772), + [anon_sym_ATimport] = ACTIONS(2774), + [aux_sym_preproc_undef_token1] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(2772), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2772), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2772), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2772), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2772), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE] = ACTIONS(2772), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_API_AVAILABLE] = ACTIONS(2772), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_API_DEPRECATED] = ACTIONS(2772), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2772), + [anon_sym___deprecated_msg] = ACTIONS(2772), + [anon_sym___deprecated_enum_msg] = ACTIONS(2772), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2772), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2772), + [anon_sym_ATprotocol] = ACTIONS(2774), + [anon_sym_ATinterface] = ACTIONS(2774), + [anon_sym_ATimplementation] = ACTIONS(2774), + [anon_sym_ATcompatibility_alias] = ACTIONS(2774), + [anon_sym_ATsynthesize] = ACTIONS(2774), + [anon_sym_ATdynamic] = ACTIONS(2774), + [anon_sym_ATtry] = ACTIONS(2774), + [anon_sym___try] = ACTIONS(2772), + [anon_sym_ATthrow] = ACTIONS(2774), + [anon_sym_ATselector] = ACTIONS(2774), + [anon_sym_ATavailable] = ACTIONS(2774), + [anon_sym___builtin_available] = ACTIONS(2772), + [anon_sym_va_arg] = ACTIONS(2772), + [anon_sym_ATencode] = ACTIONS(2774), + [anon_sym_ATsynchronized] = ACTIONS(2774), + [anon_sym_BOOL] = ACTIONS(2772), + [anon_sym_IMP] = ACTIONS(2772), + [anon_sym_SEL] = ACTIONS(2772), + [anon_sym_Class] = ACTIONS(2772), + [anon_sym_id] = ACTIONS(2772), + }, + [490] = { + [sym_identifier] = ACTIONS(2748), + [aux_sym_preproc_include_token1] = ACTIONS(2748), + [aux_sym_preproc_include_token2] = ACTIONS(2748), + [aux_sym_preproc_def_token1] = ACTIONS(2748), + [aux_sym_preproc_if_token1] = ACTIONS(2748), + [aux_sym_preproc_if_token2] = ACTIONS(2748), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2748), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2748), + [aux_sym_preproc_else_token1] = ACTIONS(2748), + [aux_sym_preproc_elif_token1] = ACTIONS(2748), + [sym_preproc_directive] = ACTIONS(2748), + [anon_sym_LPAREN2] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2750), + [anon_sym_TILDE] = ACTIONS(2750), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_PLUS] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_CARET] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym___extension__] = ACTIONS(2748), + [anon_sym_typedef] = ACTIONS(2748), + [anon_sym_extern] = ACTIONS(2748), + [anon_sym___attribute__] = ACTIONS(2748), + [anon_sym___attribute] = ACTIONS(2748), + [anon_sym_noreturn] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2750), + [anon_sym___declspec] = ACTIONS(2748), + [anon_sym___cdecl] = ACTIONS(2748), + [anon_sym___clrcall] = ACTIONS(2748), + [anon_sym___stdcall] = ACTIONS(2748), + [anon_sym___fastcall] = ACTIONS(2748), + [anon_sym___thiscall] = ACTIONS(2748), + [anon_sym___vectorcall] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(2750), + [anon_sym_signed] = ACTIONS(2748), + [anon_sym_unsigned] = ACTIONS(2748), + [anon_sym_long] = ACTIONS(2748), + [anon_sym_short] = ACTIONS(2748), + [anon_sym_static] = ACTIONS(2748), + [anon_sym_ATautoreleasepool] = ACTIONS(2750), + [anon_sym_auto] = ACTIONS(2748), + [anon_sym_register] = ACTIONS(2748), + [anon_sym_inline] = ACTIONS(2748), + [anon_sym___inline] = ACTIONS(2748), + [anon_sym___inline__] = ACTIONS(2748), + [anon_sym___forceinline] = ACTIONS(2748), + [anon_sym_thread_local] = ACTIONS(2748), + [anon_sym___thread] = ACTIONS(2748), + [anon_sym_CG_EXTERN] = ACTIONS(2748), + [anon_sym_CG_INLINE] = ACTIONS(2748), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2748), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2748), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2748), + [anon_sym_IBOutlet] = ACTIONS(2748), + [anon_sym_IBInspectable] = ACTIONS(2748), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2748), + [anon_sym_NS_INLINE] = ACTIONS(2748), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2748), + [anon_sym_OBJC_EXPORT] = ACTIONS(2748), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2748), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2748), + [anon_sym_constexpr] = ACTIONS(2748), + [anon_sym_volatile] = ACTIONS(2748), + [anon_sym_restrict] = ACTIONS(2748), + [anon_sym___restrict__] = ACTIONS(2748), + [anon_sym__Atomic] = ACTIONS(2748), + [anon_sym__Noreturn] = ACTIONS(2748), + [anon_sym__Nonnull] = ACTIONS(2748), + [anon_sym_nullable] = ACTIONS(2748), + [anon_sym__Complex] = ACTIONS(2748), + [anon_sym__Nullable] = ACTIONS(2748), + [anon_sym__Nullable_result] = ACTIONS(2748), + [anon_sym__Null_unspecified] = ACTIONS(2748), + [anon_sym___autoreleasing] = ACTIONS(2748), + [anon_sym___block] = ACTIONS(2748), + [anon_sym___bridge] = ACTIONS(2748), + [anon_sym___bridge_retained] = ACTIONS(2748), + [anon_sym___bridge_transfer] = ACTIONS(2748), + [anon_sym___complex] = ACTIONS(2748), + [anon_sym___const] = ACTIONS(2748), + [anon_sym___imag] = ACTIONS(2748), + [anon_sym___kindof] = ACTIONS(2748), + [anon_sym___nonnull] = ACTIONS(2748), + [anon_sym___nullable] = ACTIONS(2748), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2748), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2748), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2748), + [anon_sym___real] = ACTIONS(2748), + [anon_sym___strong] = ACTIONS(2748), + [anon_sym___unsafe_unretained] = ACTIONS(2748), + [anon_sym___unused] = ACTIONS(2748), + [anon_sym___weak] = ACTIONS(2748), + [anon_sym_alignas] = ACTIONS(2748), + [anon_sym__Alignas] = ACTIONS(2748), + [sym_primitive_type] = ACTIONS(2748), + [anon_sym_enum] = ACTIONS(2748), + [anon_sym_struct] = ACTIONS(2748), + [anon_sym_union] = ACTIONS(2748), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_switch] = ACTIONS(2748), + [anon_sym_case] = ACTIONS(2748), + [anon_sym_default] = ACTIONS(2748), + [anon_sym_while] = ACTIONS(2748), + [anon_sym_do] = ACTIONS(2748), + [anon_sym_for] = ACTIONS(2748), + [anon_sym_in] = ACTIONS(2748), + [anon_sym_return] = ACTIONS(2748), + [anon_sym_break] = ACTIONS(2748), + [anon_sym_continue] = ACTIONS(2748), + [anon_sym_goto] = ACTIONS(2748), + [anon_sym_DASH_DASH] = ACTIONS(2750), + [anon_sym_PLUS_PLUS] = ACTIONS(2750), + [anon_sym_sizeof] = ACTIONS(2748), + [anon_sym___alignof__] = ACTIONS(2748), + [anon_sym___alignof] = ACTIONS(2748), + [anon_sym__alignof] = ACTIONS(2748), + [anon_sym_alignof] = ACTIONS(2748), + [anon_sym__Alignof] = ACTIONS(2748), + [anon_sym_offsetof] = ACTIONS(2748), + [anon_sym__Generic] = ACTIONS(2748), + [anon_sym_asm] = ACTIONS(2748), + [anon_sym___asm__] = ACTIONS(2748), + [anon_sym___asm] = ACTIONS(2748), + [sym_number_literal] = ACTIONS(2750), + [anon_sym_L_SQUOTE] = ACTIONS(2750), + [anon_sym_u_SQUOTE] = ACTIONS(2750), + [anon_sym_U_SQUOTE] = ACTIONS(2750), + [anon_sym_u8_SQUOTE] = ACTIONS(2750), + [anon_sym_SQUOTE] = ACTIONS(2750), + [anon_sym_AT] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2750), + [anon_sym_L_DQUOTE] = ACTIONS(2750), + [anon_sym_u_DQUOTE] = ACTIONS(2750), + [anon_sym_U_DQUOTE] = ACTIONS(2750), + [anon_sym_u8_DQUOTE] = ACTIONS(2750), + [sym_true] = ACTIONS(2748), + [sym_false] = ACTIONS(2748), + [anon_sym_NULL] = ACTIONS(2748), + [anon_sym_nullptr] = ACTIONS(2748), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2748), + [anon_sym___typeof] = ACTIONS(2748), + [anon_sym_typeof] = ACTIONS(2748), + [anon_sym_ATimport] = ACTIONS(2750), + [aux_sym_preproc_undef_token1] = ACTIONS(2748), + [anon_sym_POUND] = ACTIONS(2748), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2748), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2748), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2748), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2748), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2748), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2748), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2748), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2748), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2748), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2748), + [anon_sym_NS_AVAILABLE] = ACTIONS(2748), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2748), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2748), + [anon_sym_API_AVAILABLE] = ACTIONS(2748), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2748), + [anon_sym_API_DEPRECATED] = ACTIONS(2748), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2748), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2748), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2748), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2748), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2748), + [anon_sym___deprecated_msg] = ACTIONS(2748), + [anon_sym___deprecated_enum_msg] = ACTIONS(2748), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2748), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2748), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2748), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2748), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2748), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2748), + [anon_sym_ATprotocol] = ACTIONS(2750), + [anon_sym_ATinterface] = ACTIONS(2750), + [anon_sym_ATimplementation] = ACTIONS(2750), + [anon_sym_ATcompatibility_alias] = ACTIONS(2750), + [anon_sym_ATsynthesize] = ACTIONS(2750), + [anon_sym_ATdynamic] = ACTIONS(2750), + [anon_sym_ATtry] = ACTIONS(2750), + [anon_sym___try] = ACTIONS(2748), + [anon_sym_ATthrow] = ACTIONS(2750), + [anon_sym_ATselector] = ACTIONS(2750), + [anon_sym_ATavailable] = ACTIONS(2750), + [anon_sym___builtin_available] = ACTIONS(2748), + [anon_sym_va_arg] = ACTIONS(2748), + [anon_sym_ATencode] = ACTIONS(2750), + [anon_sym_ATsynchronized] = ACTIONS(2750), + [anon_sym_BOOL] = ACTIONS(2748), + [anon_sym_IMP] = ACTIONS(2748), + [anon_sym_SEL] = ACTIONS(2748), + [anon_sym_Class] = ACTIONS(2748), + [anon_sym_id] = ACTIONS(2748), + }, + [491] = { + [sym_identifier] = ACTIONS(2776), + [aux_sym_preproc_include_token1] = ACTIONS(2776), + [aux_sym_preproc_include_token2] = ACTIONS(2776), + [aux_sym_preproc_def_token1] = ACTIONS(2776), + [aux_sym_preproc_if_token1] = ACTIONS(2776), + [aux_sym_preproc_if_token2] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2776), + [aux_sym_preproc_else_token1] = ACTIONS(2776), + [aux_sym_preproc_elif_token1] = ACTIONS(2776), + [sym_preproc_directive] = ACTIONS(2776), + [anon_sym_LPAREN2] = ACTIONS(2778), + [anon_sym_BANG] = ACTIONS(2778), + [anon_sym_TILDE] = ACTIONS(2778), + [anon_sym_DASH] = ACTIONS(2776), + [anon_sym_PLUS] = ACTIONS(2776), + [anon_sym_STAR] = ACTIONS(2778), + [anon_sym_CARET] = ACTIONS(2778), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym___extension__] = ACTIONS(2776), + [anon_sym_typedef] = ACTIONS(2776), + [anon_sym_extern] = ACTIONS(2776), + [anon_sym___attribute__] = ACTIONS(2776), + [anon_sym___attribute] = ACTIONS(2776), + [anon_sym_noreturn] = ACTIONS(2776), + [anon_sym_LBRACK] = ACTIONS(2778), + [anon_sym___declspec] = ACTIONS(2776), + [anon_sym___cdecl] = ACTIONS(2776), + [anon_sym___clrcall] = ACTIONS(2776), + [anon_sym___stdcall] = ACTIONS(2776), + [anon_sym___fastcall] = ACTIONS(2776), + [anon_sym___thiscall] = ACTIONS(2776), + [anon_sym___vectorcall] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_signed] = ACTIONS(2776), + [anon_sym_unsigned] = ACTIONS(2776), + [anon_sym_long] = ACTIONS(2776), + [anon_sym_short] = ACTIONS(2776), + [anon_sym_static] = ACTIONS(2776), + [anon_sym_ATautoreleasepool] = ACTIONS(2778), + [anon_sym_auto] = ACTIONS(2776), + [anon_sym_register] = ACTIONS(2776), + [anon_sym_inline] = ACTIONS(2776), + [anon_sym___inline] = ACTIONS(2776), + [anon_sym___inline__] = ACTIONS(2776), + [anon_sym___forceinline] = ACTIONS(2776), + [anon_sym_thread_local] = ACTIONS(2776), + [anon_sym___thread] = ACTIONS(2776), + [anon_sym_CG_EXTERN] = ACTIONS(2776), + [anon_sym_CG_INLINE] = ACTIONS(2776), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2776), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2776), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2776), + [anon_sym_IBOutlet] = ACTIONS(2776), + [anon_sym_IBInspectable] = ACTIONS(2776), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2776), + [anon_sym_NS_INLINE] = ACTIONS(2776), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2776), + [anon_sym_OBJC_EXPORT] = ACTIONS(2776), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2776), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2776), + [anon_sym_const] = ACTIONS(2776), + [anon_sym_constexpr] = ACTIONS(2776), + [anon_sym_volatile] = ACTIONS(2776), + [anon_sym_restrict] = ACTIONS(2776), + [anon_sym___restrict__] = ACTIONS(2776), + [anon_sym__Atomic] = ACTIONS(2776), + [anon_sym__Noreturn] = ACTIONS(2776), + [anon_sym__Nonnull] = ACTIONS(2776), + [anon_sym_nullable] = ACTIONS(2776), + [anon_sym__Complex] = ACTIONS(2776), + [anon_sym__Nullable] = ACTIONS(2776), + [anon_sym__Nullable_result] = ACTIONS(2776), + [anon_sym__Null_unspecified] = ACTIONS(2776), + [anon_sym___autoreleasing] = ACTIONS(2776), + [anon_sym___block] = ACTIONS(2776), + [anon_sym___bridge] = ACTIONS(2776), + [anon_sym___bridge_retained] = ACTIONS(2776), + [anon_sym___bridge_transfer] = ACTIONS(2776), + [anon_sym___complex] = ACTIONS(2776), + [anon_sym___const] = ACTIONS(2776), + [anon_sym___imag] = ACTIONS(2776), + [anon_sym___kindof] = ACTIONS(2776), + [anon_sym___nonnull] = ACTIONS(2776), + [anon_sym___nullable] = ACTIONS(2776), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2776), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2776), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2776), + [anon_sym___real] = ACTIONS(2776), + [anon_sym___strong] = ACTIONS(2776), + [anon_sym___unsafe_unretained] = ACTIONS(2776), + [anon_sym___unused] = ACTIONS(2776), + [anon_sym___weak] = ACTIONS(2776), + [anon_sym_alignas] = ACTIONS(2776), + [anon_sym__Alignas] = ACTIONS(2776), + [sym_primitive_type] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2776), + [anon_sym_struct] = ACTIONS(2776), + [anon_sym_union] = ACTIONS(2776), + [anon_sym_if] = ACTIONS(2776), + [anon_sym_switch] = ACTIONS(2776), + [anon_sym_case] = ACTIONS(2776), + [anon_sym_default] = ACTIONS(2776), + [anon_sym_while] = ACTIONS(2776), + [anon_sym_do] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2776), + [anon_sym_in] = ACTIONS(2776), + [anon_sym_return] = ACTIONS(2776), + [anon_sym_break] = ACTIONS(2776), + [anon_sym_continue] = ACTIONS(2776), + [anon_sym_goto] = ACTIONS(2776), + [anon_sym_DASH_DASH] = ACTIONS(2778), + [anon_sym_PLUS_PLUS] = ACTIONS(2778), + [anon_sym_sizeof] = ACTIONS(2776), + [anon_sym___alignof__] = ACTIONS(2776), + [anon_sym___alignof] = ACTIONS(2776), + [anon_sym__alignof] = ACTIONS(2776), + [anon_sym_alignof] = ACTIONS(2776), + [anon_sym__Alignof] = ACTIONS(2776), + [anon_sym_offsetof] = ACTIONS(2776), + [anon_sym__Generic] = ACTIONS(2776), + [anon_sym_asm] = ACTIONS(2776), + [anon_sym___asm__] = ACTIONS(2776), + [anon_sym___asm] = ACTIONS(2776), + [sym_number_literal] = ACTIONS(2778), + [anon_sym_L_SQUOTE] = ACTIONS(2778), + [anon_sym_u_SQUOTE] = ACTIONS(2778), + [anon_sym_U_SQUOTE] = ACTIONS(2778), + [anon_sym_u8_SQUOTE] = ACTIONS(2778), + [anon_sym_SQUOTE] = ACTIONS(2778), + [anon_sym_AT] = ACTIONS(2776), + [anon_sym_DQUOTE] = ACTIONS(2778), + [anon_sym_L_DQUOTE] = ACTIONS(2778), + [anon_sym_u_DQUOTE] = ACTIONS(2778), + [anon_sym_U_DQUOTE] = ACTIONS(2778), + [anon_sym_u8_DQUOTE] = ACTIONS(2778), + [sym_true] = ACTIONS(2776), + [sym_false] = ACTIONS(2776), + [anon_sym_NULL] = ACTIONS(2776), + [anon_sym_nullptr] = ACTIONS(2776), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2776), + [anon_sym___typeof] = ACTIONS(2776), + [anon_sym_typeof] = ACTIONS(2776), + [anon_sym_ATimport] = ACTIONS(2778), + [aux_sym_preproc_undef_token1] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(2776), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2776), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2776), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2776), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2776), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2776), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2776), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2776), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2776), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2776), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2776), + [anon_sym_NS_AVAILABLE] = ACTIONS(2776), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2776), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2776), + [anon_sym_API_AVAILABLE] = ACTIONS(2776), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2776), + [anon_sym_API_DEPRECATED] = ACTIONS(2776), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2776), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2776), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2776), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2776), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2776), + [anon_sym___deprecated_msg] = ACTIONS(2776), + [anon_sym___deprecated_enum_msg] = ACTIONS(2776), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2776), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2776), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2776), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2776), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2776), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2776), + [anon_sym_ATprotocol] = ACTIONS(2778), + [anon_sym_ATinterface] = ACTIONS(2778), + [anon_sym_ATimplementation] = ACTIONS(2778), + [anon_sym_ATcompatibility_alias] = ACTIONS(2778), + [anon_sym_ATsynthesize] = ACTIONS(2778), + [anon_sym_ATdynamic] = ACTIONS(2778), + [anon_sym_ATtry] = ACTIONS(2778), + [anon_sym___try] = ACTIONS(2776), + [anon_sym_ATthrow] = ACTIONS(2778), + [anon_sym_ATselector] = ACTIONS(2778), + [anon_sym_ATavailable] = ACTIONS(2778), + [anon_sym___builtin_available] = ACTIONS(2776), + [anon_sym_va_arg] = ACTIONS(2776), + [anon_sym_ATencode] = ACTIONS(2778), + [anon_sym_ATsynchronized] = ACTIONS(2778), + [anon_sym_BOOL] = ACTIONS(2776), + [anon_sym_IMP] = ACTIONS(2776), + [anon_sym_SEL] = ACTIONS(2776), + [anon_sym_Class] = ACTIONS(2776), + [anon_sym_id] = ACTIONS(2776), + }, + [492] = { + [sym_identifier] = ACTIONS(2780), + [aux_sym_preproc_include_token1] = ACTIONS(2780), + [aux_sym_preproc_include_token2] = ACTIONS(2780), + [aux_sym_preproc_def_token1] = ACTIONS(2780), + [aux_sym_preproc_if_token1] = ACTIONS(2780), + [aux_sym_preproc_if_token2] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2780), + [aux_sym_preproc_else_token1] = ACTIONS(2780), + [aux_sym_preproc_elif_token1] = ACTIONS(2780), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2782), + [anon_sym_BANG] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(2780), + [anon_sym_STAR] = ACTIONS(2782), + [anon_sym_CARET] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym___extension__] = ACTIONS(2780), + [anon_sym_typedef] = ACTIONS(2780), + [anon_sym_extern] = ACTIONS(2780), + [anon_sym___attribute__] = ACTIONS(2780), + [anon_sym___attribute] = ACTIONS(2780), + [anon_sym_noreturn] = ACTIONS(2780), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym___declspec] = ACTIONS(2780), + [anon_sym___cdecl] = ACTIONS(2780), + [anon_sym___clrcall] = ACTIONS(2780), + [anon_sym___stdcall] = ACTIONS(2780), + [anon_sym___fastcall] = ACTIONS(2780), + [anon_sym___thiscall] = ACTIONS(2780), + [anon_sym___vectorcall] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_signed] = ACTIONS(2780), + [anon_sym_unsigned] = ACTIONS(2780), + [anon_sym_long] = ACTIONS(2780), + [anon_sym_short] = ACTIONS(2780), + [anon_sym_static] = ACTIONS(2780), + [anon_sym_ATautoreleasepool] = ACTIONS(2782), + [anon_sym_auto] = ACTIONS(2780), + [anon_sym_register] = ACTIONS(2780), + [anon_sym_inline] = ACTIONS(2780), + [anon_sym___inline] = ACTIONS(2780), + [anon_sym___inline__] = ACTIONS(2780), + [anon_sym___forceinline] = ACTIONS(2780), + [anon_sym_thread_local] = ACTIONS(2780), + [anon_sym___thread] = ACTIONS(2780), + [anon_sym_CG_EXTERN] = ACTIONS(2780), + [anon_sym_CG_INLINE] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2780), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2780), + [anon_sym_IBOutlet] = ACTIONS(2780), + [anon_sym_IBInspectable] = ACTIONS(2780), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2780), + [anon_sym_NS_INLINE] = ACTIONS(2780), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2780), + [anon_sym_OBJC_EXPORT] = ACTIONS(2780), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2780), + [anon_sym_const] = ACTIONS(2780), + [anon_sym_constexpr] = ACTIONS(2780), + [anon_sym_volatile] = ACTIONS(2780), + [anon_sym_restrict] = ACTIONS(2780), + [anon_sym___restrict__] = ACTIONS(2780), + [anon_sym__Atomic] = ACTIONS(2780), + [anon_sym__Noreturn] = ACTIONS(2780), + [anon_sym__Nonnull] = ACTIONS(2780), + [anon_sym_nullable] = ACTIONS(2780), + [anon_sym__Complex] = ACTIONS(2780), + [anon_sym__Nullable] = ACTIONS(2780), + [anon_sym__Nullable_result] = ACTIONS(2780), + [anon_sym__Null_unspecified] = ACTIONS(2780), + [anon_sym___autoreleasing] = ACTIONS(2780), + [anon_sym___block] = ACTIONS(2780), + [anon_sym___bridge] = ACTIONS(2780), + [anon_sym___bridge_retained] = ACTIONS(2780), + [anon_sym___bridge_transfer] = ACTIONS(2780), + [anon_sym___complex] = ACTIONS(2780), + [anon_sym___const] = ACTIONS(2780), + [anon_sym___imag] = ACTIONS(2780), + [anon_sym___kindof] = ACTIONS(2780), + [anon_sym___nonnull] = ACTIONS(2780), + [anon_sym___nullable] = ACTIONS(2780), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2780), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2780), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2780), + [anon_sym___real] = ACTIONS(2780), + [anon_sym___strong] = ACTIONS(2780), + [anon_sym___unsafe_unretained] = ACTIONS(2780), + [anon_sym___unused] = ACTIONS(2780), + [anon_sym___weak] = ACTIONS(2780), + [anon_sym_alignas] = ACTIONS(2780), + [anon_sym__Alignas] = ACTIONS(2780), + [sym_primitive_type] = ACTIONS(2780), + [anon_sym_enum] = ACTIONS(2780), + [anon_sym_struct] = ACTIONS(2780), + [anon_sym_union] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_switch] = ACTIONS(2780), + [anon_sym_case] = ACTIONS(2780), + [anon_sym_default] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_in] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_break] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2780), + [anon_sym_goto] = ACTIONS(2780), + [anon_sym_DASH_DASH] = ACTIONS(2782), + [anon_sym_PLUS_PLUS] = ACTIONS(2782), + [anon_sym_sizeof] = ACTIONS(2780), + [anon_sym___alignof__] = ACTIONS(2780), + [anon_sym___alignof] = ACTIONS(2780), + [anon_sym__alignof] = ACTIONS(2780), + [anon_sym_alignof] = ACTIONS(2780), + [anon_sym__Alignof] = ACTIONS(2780), + [anon_sym_offsetof] = ACTIONS(2780), + [anon_sym__Generic] = ACTIONS(2780), + [anon_sym_asm] = ACTIONS(2780), + [anon_sym___asm__] = ACTIONS(2780), + [anon_sym___asm] = ACTIONS(2780), + [sym_number_literal] = ACTIONS(2782), + [anon_sym_L_SQUOTE] = ACTIONS(2782), + [anon_sym_u_SQUOTE] = ACTIONS(2782), + [anon_sym_U_SQUOTE] = ACTIONS(2782), + [anon_sym_u8_SQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2782), + [anon_sym_AT] = ACTIONS(2780), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_L_DQUOTE] = ACTIONS(2782), + [anon_sym_u_DQUOTE] = ACTIONS(2782), + [anon_sym_U_DQUOTE] = ACTIONS(2782), + [anon_sym_u8_DQUOTE] = ACTIONS(2782), + [sym_true] = ACTIONS(2780), + [sym_false] = ACTIONS(2780), + [anon_sym_NULL] = ACTIONS(2780), + [anon_sym_nullptr] = ACTIONS(2780), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2780), + [anon_sym___typeof] = ACTIONS(2780), + [anon_sym_typeof] = ACTIONS(2780), + [anon_sym_ATimport] = ACTIONS(2782), + [aux_sym_preproc_undef_token1] = ACTIONS(2780), + [anon_sym_POUND] = ACTIONS(2780), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2780), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2780), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2780), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2780), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE] = ACTIONS(2780), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_API_AVAILABLE] = ACTIONS(2780), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_API_DEPRECATED] = ACTIONS(2780), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2780), + [anon_sym___deprecated_msg] = ACTIONS(2780), + [anon_sym___deprecated_enum_msg] = ACTIONS(2780), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2780), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2780), + [anon_sym_ATprotocol] = ACTIONS(2782), + [anon_sym_ATinterface] = ACTIONS(2782), + [anon_sym_ATimplementation] = ACTIONS(2782), + [anon_sym_ATcompatibility_alias] = ACTIONS(2782), + [anon_sym_ATsynthesize] = ACTIONS(2782), + [anon_sym_ATdynamic] = ACTIONS(2782), + [anon_sym_ATtry] = ACTIONS(2782), + [anon_sym___try] = ACTIONS(2780), + [anon_sym_ATthrow] = ACTIONS(2782), + [anon_sym_ATselector] = ACTIONS(2782), + [anon_sym_ATavailable] = ACTIONS(2782), + [anon_sym___builtin_available] = ACTIONS(2780), + [anon_sym_va_arg] = ACTIONS(2780), + [anon_sym_ATencode] = ACTIONS(2782), + [anon_sym_ATsynchronized] = ACTIONS(2782), + [anon_sym_BOOL] = ACTIONS(2780), + [anon_sym_IMP] = ACTIONS(2780), + [anon_sym_SEL] = ACTIONS(2780), + [anon_sym_Class] = ACTIONS(2780), + [anon_sym_id] = ACTIONS(2780), + }, + [493] = { + [sym_identifier] = ACTIONS(2780), + [aux_sym_preproc_include_token1] = ACTIONS(2780), + [aux_sym_preproc_include_token2] = ACTIONS(2780), + [aux_sym_preproc_def_token1] = ACTIONS(2780), + [aux_sym_preproc_if_token1] = ACTIONS(2780), + [aux_sym_preproc_if_token2] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2780), + [aux_sym_preproc_else_token1] = ACTIONS(2780), + [aux_sym_preproc_elif_token1] = ACTIONS(2780), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2782), + [anon_sym_BANG] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(2780), + [anon_sym_STAR] = ACTIONS(2782), + [anon_sym_CARET] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym___extension__] = ACTIONS(2780), + [anon_sym_typedef] = ACTIONS(2780), + [anon_sym_extern] = ACTIONS(2780), + [anon_sym___attribute__] = ACTIONS(2780), + [anon_sym___attribute] = ACTIONS(2780), + [anon_sym_noreturn] = ACTIONS(2780), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym___declspec] = ACTIONS(2780), + [anon_sym___cdecl] = ACTIONS(2780), + [anon_sym___clrcall] = ACTIONS(2780), + [anon_sym___stdcall] = ACTIONS(2780), + [anon_sym___fastcall] = ACTIONS(2780), + [anon_sym___thiscall] = ACTIONS(2780), + [anon_sym___vectorcall] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_signed] = ACTIONS(2780), + [anon_sym_unsigned] = ACTIONS(2780), + [anon_sym_long] = ACTIONS(2780), + [anon_sym_short] = ACTIONS(2780), + [anon_sym_static] = ACTIONS(2780), + [anon_sym_ATautoreleasepool] = ACTIONS(2782), + [anon_sym_auto] = ACTIONS(2780), + [anon_sym_register] = ACTIONS(2780), + [anon_sym_inline] = ACTIONS(2780), + [anon_sym___inline] = ACTIONS(2780), + [anon_sym___inline__] = ACTIONS(2780), + [anon_sym___forceinline] = ACTIONS(2780), + [anon_sym_thread_local] = ACTIONS(2780), + [anon_sym___thread] = ACTIONS(2780), + [anon_sym_CG_EXTERN] = ACTIONS(2780), + [anon_sym_CG_INLINE] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2780), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2780), + [anon_sym_IBOutlet] = ACTIONS(2780), + [anon_sym_IBInspectable] = ACTIONS(2780), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2780), + [anon_sym_NS_INLINE] = ACTIONS(2780), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2780), + [anon_sym_OBJC_EXPORT] = ACTIONS(2780), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2780), + [anon_sym_const] = ACTIONS(2780), + [anon_sym_constexpr] = ACTIONS(2780), + [anon_sym_volatile] = ACTIONS(2780), + [anon_sym_restrict] = ACTIONS(2780), + [anon_sym___restrict__] = ACTIONS(2780), + [anon_sym__Atomic] = ACTIONS(2780), + [anon_sym__Noreturn] = ACTIONS(2780), + [anon_sym__Nonnull] = ACTIONS(2780), + [anon_sym_nullable] = ACTIONS(2780), + [anon_sym__Complex] = ACTIONS(2780), + [anon_sym__Nullable] = ACTIONS(2780), + [anon_sym__Nullable_result] = ACTIONS(2780), + [anon_sym__Null_unspecified] = ACTIONS(2780), + [anon_sym___autoreleasing] = ACTIONS(2780), + [anon_sym___block] = ACTIONS(2780), + [anon_sym___bridge] = ACTIONS(2780), + [anon_sym___bridge_retained] = ACTIONS(2780), + [anon_sym___bridge_transfer] = ACTIONS(2780), + [anon_sym___complex] = ACTIONS(2780), + [anon_sym___const] = ACTIONS(2780), + [anon_sym___imag] = ACTIONS(2780), + [anon_sym___kindof] = ACTIONS(2780), + [anon_sym___nonnull] = ACTIONS(2780), + [anon_sym___nullable] = ACTIONS(2780), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2780), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2780), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2780), + [anon_sym___real] = ACTIONS(2780), + [anon_sym___strong] = ACTIONS(2780), + [anon_sym___unsafe_unretained] = ACTIONS(2780), + [anon_sym___unused] = ACTIONS(2780), + [anon_sym___weak] = ACTIONS(2780), + [anon_sym_alignas] = ACTIONS(2780), + [anon_sym__Alignas] = ACTIONS(2780), + [sym_primitive_type] = ACTIONS(2780), + [anon_sym_enum] = ACTIONS(2780), + [anon_sym_struct] = ACTIONS(2780), + [anon_sym_union] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_switch] = ACTIONS(2780), + [anon_sym_case] = ACTIONS(2780), + [anon_sym_default] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_in] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_break] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2780), + [anon_sym_goto] = ACTIONS(2780), + [anon_sym_DASH_DASH] = ACTIONS(2782), + [anon_sym_PLUS_PLUS] = ACTIONS(2782), + [anon_sym_sizeof] = ACTIONS(2780), + [anon_sym___alignof__] = ACTIONS(2780), + [anon_sym___alignof] = ACTIONS(2780), + [anon_sym__alignof] = ACTIONS(2780), + [anon_sym_alignof] = ACTIONS(2780), + [anon_sym__Alignof] = ACTIONS(2780), + [anon_sym_offsetof] = ACTIONS(2780), + [anon_sym__Generic] = ACTIONS(2780), + [anon_sym_asm] = ACTIONS(2780), + [anon_sym___asm__] = ACTIONS(2780), + [anon_sym___asm] = ACTIONS(2780), + [sym_number_literal] = ACTIONS(2782), + [anon_sym_L_SQUOTE] = ACTIONS(2782), + [anon_sym_u_SQUOTE] = ACTIONS(2782), + [anon_sym_U_SQUOTE] = ACTIONS(2782), + [anon_sym_u8_SQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2782), + [anon_sym_AT] = ACTIONS(2780), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_L_DQUOTE] = ACTIONS(2782), + [anon_sym_u_DQUOTE] = ACTIONS(2782), + [anon_sym_U_DQUOTE] = ACTIONS(2782), + [anon_sym_u8_DQUOTE] = ACTIONS(2782), + [sym_true] = ACTIONS(2780), + [sym_false] = ACTIONS(2780), + [anon_sym_NULL] = ACTIONS(2780), + [anon_sym_nullptr] = ACTIONS(2780), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2780), + [anon_sym___typeof] = ACTIONS(2780), + [anon_sym_typeof] = ACTIONS(2780), + [anon_sym_ATimport] = ACTIONS(2782), + [aux_sym_preproc_undef_token1] = ACTIONS(2780), + [anon_sym_POUND] = ACTIONS(2780), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2780), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2780), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2780), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2780), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE] = ACTIONS(2780), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_API_AVAILABLE] = ACTIONS(2780), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_API_DEPRECATED] = ACTIONS(2780), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2780), + [anon_sym___deprecated_msg] = ACTIONS(2780), + [anon_sym___deprecated_enum_msg] = ACTIONS(2780), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2780), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2780), + [anon_sym_ATprotocol] = ACTIONS(2782), + [anon_sym_ATinterface] = ACTIONS(2782), + [anon_sym_ATimplementation] = ACTIONS(2782), + [anon_sym_ATcompatibility_alias] = ACTIONS(2782), + [anon_sym_ATsynthesize] = ACTIONS(2782), + [anon_sym_ATdynamic] = ACTIONS(2782), + [anon_sym_ATtry] = ACTIONS(2782), + [anon_sym___try] = ACTIONS(2780), + [anon_sym_ATthrow] = ACTIONS(2782), + [anon_sym_ATselector] = ACTIONS(2782), + [anon_sym_ATavailable] = ACTIONS(2782), + [anon_sym___builtin_available] = ACTIONS(2780), + [anon_sym_va_arg] = ACTIONS(2780), + [anon_sym_ATencode] = ACTIONS(2782), + [anon_sym_ATsynchronized] = ACTIONS(2782), + [anon_sym_BOOL] = ACTIONS(2780), + [anon_sym_IMP] = ACTIONS(2780), + [anon_sym_SEL] = ACTIONS(2780), + [anon_sym_Class] = ACTIONS(2780), + [anon_sym_id] = ACTIONS(2780), + }, + [494] = { + [sym_identifier] = ACTIONS(2780), + [aux_sym_preproc_include_token1] = ACTIONS(2780), + [aux_sym_preproc_include_token2] = ACTIONS(2780), + [aux_sym_preproc_def_token1] = ACTIONS(2780), + [aux_sym_preproc_if_token1] = ACTIONS(2780), + [aux_sym_preproc_if_token2] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2780), + [aux_sym_preproc_else_token1] = ACTIONS(2780), + [aux_sym_preproc_elif_token1] = ACTIONS(2780), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2782), + [anon_sym_BANG] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(2780), + [anon_sym_STAR] = ACTIONS(2782), + [anon_sym_CARET] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym___extension__] = ACTIONS(2780), + [anon_sym_typedef] = ACTIONS(2780), + [anon_sym_extern] = ACTIONS(2780), + [anon_sym___attribute__] = ACTIONS(2780), + [anon_sym___attribute] = ACTIONS(2780), + [anon_sym_noreturn] = ACTIONS(2780), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym___declspec] = ACTIONS(2780), + [anon_sym___cdecl] = ACTIONS(2780), + [anon_sym___clrcall] = ACTIONS(2780), + [anon_sym___stdcall] = ACTIONS(2780), + [anon_sym___fastcall] = ACTIONS(2780), + [anon_sym___thiscall] = ACTIONS(2780), + [anon_sym___vectorcall] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_signed] = ACTIONS(2780), + [anon_sym_unsigned] = ACTIONS(2780), + [anon_sym_long] = ACTIONS(2780), + [anon_sym_short] = ACTIONS(2780), + [anon_sym_static] = ACTIONS(2780), + [anon_sym_ATautoreleasepool] = ACTIONS(2782), + [anon_sym_auto] = ACTIONS(2780), + [anon_sym_register] = ACTIONS(2780), + [anon_sym_inline] = ACTIONS(2780), + [anon_sym___inline] = ACTIONS(2780), + [anon_sym___inline__] = ACTIONS(2780), + [anon_sym___forceinline] = ACTIONS(2780), + [anon_sym_thread_local] = ACTIONS(2780), + [anon_sym___thread] = ACTIONS(2780), + [anon_sym_CG_EXTERN] = ACTIONS(2780), + [anon_sym_CG_INLINE] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2780), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2780), + [anon_sym_IBOutlet] = ACTIONS(2780), + [anon_sym_IBInspectable] = ACTIONS(2780), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2780), + [anon_sym_NS_INLINE] = ACTIONS(2780), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2780), + [anon_sym_OBJC_EXPORT] = ACTIONS(2780), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2780), + [anon_sym_const] = ACTIONS(2780), + [anon_sym_constexpr] = ACTIONS(2780), + [anon_sym_volatile] = ACTIONS(2780), + [anon_sym_restrict] = ACTIONS(2780), + [anon_sym___restrict__] = ACTIONS(2780), + [anon_sym__Atomic] = ACTIONS(2780), + [anon_sym__Noreturn] = ACTIONS(2780), + [anon_sym__Nonnull] = ACTIONS(2780), + [anon_sym_nullable] = ACTIONS(2780), + [anon_sym__Complex] = ACTIONS(2780), + [anon_sym__Nullable] = ACTIONS(2780), + [anon_sym__Nullable_result] = ACTIONS(2780), + [anon_sym__Null_unspecified] = ACTIONS(2780), + [anon_sym___autoreleasing] = ACTIONS(2780), + [anon_sym___block] = ACTIONS(2780), + [anon_sym___bridge] = ACTIONS(2780), + [anon_sym___bridge_retained] = ACTIONS(2780), + [anon_sym___bridge_transfer] = ACTIONS(2780), + [anon_sym___complex] = ACTIONS(2780), + [anon_sym___const] = ACTIONS(2780), + [anon_sym___imag] = ACTIONS(2780), + [anon_sym___kindof] = ACTIONS(2780), + [anon_sym___nonnull] = ACTIONS(2780), + [anon_sym___nullable] = ACTIONS(2780), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2780), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2780), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2780), + [anon_sym___real] = ACTIONS(2780), + [anon_sym___strong] = ACTIONS(2780), + [anon_sym___unsafe_unretained] = ACTIONS(2780), + [anon_sym___unused] = ACTIONS(2780), + [anon_sym___weak] = ACTIONS(2780), + [anon_sym_alignas] = ACTIONS(2780), + [anon_sym__Alignas] = ACTIONS(2780), + [sym_primitive_type] = ACTIONS(2780), + [anon_sym_enum] = ACTIONS(2780), + [anon_sym_struct] = ACTIONS(2780), + [anon_sym_union] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_switch] = ACTIONS(2780), + [anon_sym_case] = ACTIONS(2780), + [anon_sym_default] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_in] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_break] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2780), + [anon_sym_goto] = ACTIONS(2780), + [anon_sym_DASH_DASH] = ACTIONS(2782), + [anon_sym_PLUS_PLUS] = ACTIONS(2782), + [anon_sym_sizeof] = ACTIONS(2780), + [anon_sym___alignof__] = ACTIONS(2780), + [anon_sym___alignof] = ACTIONS(2780), + [anon_sym__alignof] = ACTIONS(2780), + [anon_sym_alignof] = ACTIONS(2780), + [anon_sym__Alignof] = ACTIONS(2780), + [anon_sym_offsetof] = ACTIONS(2780), + [anon_sym__Generic] = ACTIONS(2780), + [anon_sym_asm] = ACTIONS(2780), + [anon_sym___asm__] = ACTIONS(2780), + [anon_sym___asm] = ACTIONS(2780), + [sym_number_literal] = ACTIONS(2782), + [anon_sym_L_SQUOTE] = ACTIONS(2782), + [anon_sym_u_SQUOTE] = ACTIONS(2782), + [anon_sym_U_SQUOTE] = ACTIONS(2782), + [anon_sym_u8_SQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2782), + [anon_sym_AT] = ACTIONS(2780), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_L_DQUOTE] = ACTIONS(2782), + [anon_sym_u_DQUOTE] = ACTIONS(2782), + [anon_sym_U_DQUOTE] = ACTIONS(2782), + [anon_sym_u8_DQUOTE] = ACTIONS(2782), + [sym_true] = ACTIONS(2780), + [sym_false] = ACTIONS(2780), + [anon_sym_NULL] = ACTIONS(2780), + [anon_sym_nullptr] = ACTIONS(2780), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2780), + [anon_sym___typeof] = ACTIONS(2780), + [anon_sym_typeof] = ACTIONS(2780), + [anon_sym_ATimport] = ACTIONS(2782), + [aux_sym_preproc_undef_token1] = ACTIONS(2780), + [anon_sym_POUND] = ACTIONS(2780), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2780), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2780), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2780), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2780), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE] = ACTIONS(2780), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_API_AVAILABLE] = ACTIONS(2780), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_API_DEPRECATED] = ACTIONS(2780), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2780), + [anon_sym___deprecated_msg] = ACTIONS(2780), + [anon_sym___deprecated_enum_msg] = ACTIONS(2780), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2780), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2780), + [anon_sym_ATprotocol] = ACTIONS(2782), + [anon_sym_ATinterface] = ACTIONS(2782), + [anon_sym_ATimplementation] = ACTIONS(2782), + [anon_sym_ATcompatibility_alias] = ACTIONS(2782), + [anon_sym_ATsynthesize] = ACTIONS(2782), + [anon_sym_ATdynamic] = ACTIONS(2782), + [anon_sym_ATtry] = ACTIONS(2782), + [anon_sym___try] = ACTIONS(2780), + [anon_sym_ATthrow] = ACTIONS(2782), + [anon_sym_ATselector] = ACTIONS(2782), + [anon_sym_ATavailable] = ACTIONS(2782), + [anon_sym___builtin_available] = ACTIONS(2780), + [anon_sym_va_arg] = ACTIONS(2780), + [anon_sym_ATencode] = ACTIONS(2782), + [anon_sym_ATsynchronized] = ACTIONS(2782), + [anon_sym_BOOL] = ACTIONS(2780), + [anon_sym_IMP] = ACTIONS(2780), + [anon_sym_SEL] = ACTIONS(2780), + [anon_sym_Class] = ACTIONS(2780), + [anon_sym_id] = ACTIONS(2780), + }, + [495] = { + [sym_identifier] = ACTIONS(2784), + [aux_sym_preproc_include_token1] = ACTIONS(2784), + [aux_sym_preproc_include_token2] = ACTIONS(2784), + [aux_sym_preproc_def_token1] = ACTIONS(2784), + [aux_sym_preproc_if_token1] = ACTIONS(2784), + [aux_sym_preproc_if_token2] = ACTIONS(2784), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2784), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2784), + [aux_sym_preproc_else_token1] = ACTIONS(2784), + [aux_sym_preproc_elif_token1] = ACTIONS(2784), + [sym_preproc_directive] = ACTIONS(2784), + [anon_sym_LPAREN2] = ACTIONS(2786), + [anon_sym_BANG] = ACTIONS(2786), + [anon_sym_TILDE] = ACTIONS(2786), + [anon_sym_DASH] = ACTIONS(2784), + [anon_sym_PLUS] = ACTIONS(2784), + [anon_sym_STAR] = ACTIONS(2786), + [anon_sym_CARET] = ACTIONS(2786), + [anon_sym_AMP] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2784), + [anon_sym_extern] = ACTIONS(2784), + [anon_sym___attribute__] = ACTIONS(2784), + [anon_sym___attribute] = ACTIONS(2784), + [anon_sym_noreturn] = ACTIONS(2784), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym___declspec] = ACTIONS(2784), + [anon_sym___cdecl] = ACTIONS(2784), + [anon_sym___clrcall] = ACTIONS(2784), + [anon_sym___stdcall] = ACTIONS(2784), + [anon_sym___fastcall] = ACTIONS(2784), + [anon_sym___thiscall] = ACTIONS(2784), + [anon_sym___vectorcall] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_signed] = ACTIONS(2784), + [anon_sym_unsigned] = ACTIONS(2784), + [anon_sym_long] = ACTIONS(2784), + [anon_sym_short] = ACTIONS(2784), + [anon_sym_static] = ACTIONS(2784), + [anon_sym_ATautoreleasepool] = ACTIONS(2786), + [anon_sym_auto] = ACTIONS(2784), + [anon_sym_register] = ACTIONS(2784), + [anon_sym_inline] = ACTIONS(2784), + [anon_sym___inline] = ACTIONS(2784), + [anon_sym___inline__] = ACTIONS(2784), + [anon_sym___forceinline] = ACTIONS(2784), + [anon_sym_thread_local] = ACTIONS(2784), + [anon_sym___thread] = ACTIONS(2784), + [anon_sym_CG_EXTERN] = ACTIONS(2784), + [anon_sym_CG_INLINE] = ACTIONS(2784), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2784), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2784), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2784), + [anon_sym_IBOutlet] = ACTIONS(2784), + [anon_sym_IBInspectable] = ACTIONS(2784), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2784), + [anon_sym_NS_INLINE] = ACTIONS(2784), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2784), + [anon_sym_OBJC_EXPORT] = ACTIONS(2784), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2784), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2784), + [anon_sym_const] = ACTIONS(2784), + [anon_sym_constexpr] = ACTIONS(2784), + [anon_sym_volatile] = ACTIONS(2784), + [anon_sym_restrict] = ACTIONS(2784), + [anon_sym___restrict__] = ACTIONS(2784), + [anon_sym__Atomic] = ACTIONS(2784), + [anon_sym__Noreturn] = ACTIONS(2784), + [anon_sym__Nonnull] = ACTIONS(2784), + [anon_sym_nullable] = ACTIONS(2784), + [anon_sym__Complex] = ACTIONS(2784), + [anon_sym__Nullable] = ACTIONS(2784), + [anon_sym__Nullable_result] = ACTIONS(2784), + [anon_sym__Null_unspecified] = ACTIONS(2784), + [anon_sym___autoreleasing] = ACTIONS(2784), + [anon_sym___block] = ACTIONS(2784), + [anon_sym___bridge] = ACTIONS(2784), + [anon_sym___bridge_retained] = ACTIONS(2784), + [anon_sym___bridge_transfer] = ACTIONS(2784), + [anon_sym___complex] = ACTIONS(2784), + [anon_sym___const] = ACTIONS(2784), + [anon_sym___imag] = ACTIONS(2784), + [anon_sym___kindof] = ACTIONS(2784), + [anon_sym___nonnull] = ACTIONS(2784), + [anon_sym___nullable] = ACTIONS(2784), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2784), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2784), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2784), + [anon_sym___real] = ACTIONS(2784), + [anon_sym___strong] = ACTIONS(2784), + [anon_sym___unsafe_unretained] = ACTIONS(2784), + [anon_sym___unused] = ACTIONS(2784), + [anon_sym___weak] = ACTIONS(2784), + [anon_sym_alignas] = ACTIONS(2784), + [anon_sym__Alignas] = ACTIONS(2784), + [sym_primitive_type] = ACTIONS(2784), + [anon_sym_enum] = ACTIONS(2784), + [anon_sym_struct] = ACTIONS(2784), + [anon_sym_union] = ACTIONS(2784), + [anon_sym_if] = ACTIONS(2784), + [anon_sym_switch] = ACTIONS(2784), + [anon_sym_case] = ACTIONS(2784), + [anon_sym_default] = ACTIONS(2784), + [anon_sym_while] = ACTIONS(2784), + [anon_sym_do] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2784), + [anon_sym_in] = ACTIONS(2784), + [anon_sym_return] = ACTIONS(2784), + [anon_sym_break] = ACTIONS(2784), + [anon_sym_continue] = ACTIONS(2784), + [anon_sym_goto] = ACTIONS(2784), + [anon_sym_DASH_DASH] = ACTIONS(2786), + [anon_sym_PLUS_PLUS] = ACTIONS(2786), + [anon_sym_sizeof] = ACTIONS(2784), + [anon_sym___alignof__] = ACTIONS(2784), + [anon_sym___alignof] = ACTIONS(2784), + [anon_sym__alignof] = ACTIONS(2784), + [anon_sym_alignof] = ACTIONS(2784), + [anon_sym__Alignof] = ACTIONS(2784), + [anon_sym_offsetof] = ACTIONS(2784), + [anon_sym__Generic] = ACTIONS(2784), + [anon_sym_asm] = ACTIONS(2784), + [anon_sym___asm__] = ACTIONS(2784), + [anon_sym___asm] = ACTIONS(2784), + [sym_number_literal] = ACTIONS(2786), + [anon_sym_L_SQUOTE] = ACTIONS(2786), + [anon_sym_u_SQUOTE] = ACTIONS(2786), + [anon_sym_U_SQUOTE] = ACTIONS(2786), + [anon_sym_u8_SQUOTE] = ACTIONS(2786), + [anon_sym_SQUOTE] = ACTIONS(2786), + [anon_sym_AT] = ACTIONS(2784), + [anon_sym_DQUOTE] = ACTIONS(2786), + [anon_sym_L_DQUOTE] = ACTIONS(2786), + [anon_sym_u_DQUOTE] = ACTIONS(2786), + [anon_sym_U_DQUOTE] = ACTIONS(2786), + [anon_sym_u8_DQUOTE] = ACTIONS(2786), + [sym_true] = ACTIONS(2784), + [sym_false] = ACTIONS(2784), + [anon_sym_NULL] = ACTIONS(2784), + [anon_sym_nullptr] = ACTIONS(2784), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2784), + [anon_sym___typeof] = ACTIONS(2784), + [anon_sym_typeof] = ACTIONS(2784), + [anon_sym_ATimport] = ACTIONS(2786), + [aux_sym_preproc_undef_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(2784), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2784), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2784), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2784), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2784), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2784), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2784), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2784), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2784), + [anon_sym_NS_AVAILABLE] = ACTIONS(2784), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2784), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_API_AVAILABLE] = ACTIONS(2784), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_API_DEPRECATED] = ACTIONS(2784), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2784), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2784), + [anon_sym___deprecated_msg] = ACTIONS(2784), + [anon_sym___deprecated_enum_msg] = ACTIONS(2784), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2784), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2784), + [anon_sym_ATprotocol] = ACTIONS(2786), + [anon_sym_ATinterface] = ACTIONS(2786), + [anon_sym_ATimplementation] = ACTIONS(2786), + [anon_sym_ATcompatibility_alias] = ACTIONS(2786), + [anon_sym_ATsynthesize] = ACTIONS(2786), + [anon_sym_ATdynamic] = ACTIONS(2786), + [anon_sym_ATtry] = ACTIONS(2786), + [anon_sym___try] = ACTIONS(2784), + [anon_sym_ATthrow] = ACTIONS(2786), + [anon_sym_ATselector] = ACTIONS(2786), + [anon_sym_ATavailable] = ACTIONS(2786), + [anon_sym___builtin_available] = ACTIONS(2784), + [anon_sym_va_arg] = ACTIONS(2784), + [anon_sym_ATencode] = ACTIONS(2786), + [anon_sym_ATsynchronized] = ACTIONS(2786), + [anon_sym_BOOL] = ACTIONS(2784), + [anon_sym_IMP] = ACTIONS(2784), + [anon_sym_SEL] = ACTIONS(2784), + [anon_sym_Class] = ACTIONS(2784), + [anon_sym_id] = ACTIONS(2784), + }, + [496] = { + [sym_identifier] = ACTIONS(2784), + [aux_sym_preproc_include_token1] = ACTIONS(2784), + [aux_sym_preproc_include_token2] = ACTIONS(2784), + [aux_sym_preproc_def_token1] = ACTIONS(2784), + [aux_sym_preproc_if_token1] = ACTIONS(2784), + [aux_sym_preproc_if_token2] = ACTIONS(2784), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2784), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2784), + [aux_sym_preproc_else_token1] = ACTIONS(2784), + [aux_sym_preproc_elif_token1] = ACTIONS(2784), + [sym_preproc_directive] = ACTIONS(2784), + [anon_sym_LPAREN2] = ACTIONS(2786), + [anon_sym_BANG] = ACTIONS(2786), + [anon_sym_TILDE] = ACTIONS(2786), + [anon_sym_DASH] = ACTIONS(2784), + [anon_sym_PLUS] = ACTIONS(2784), + [anon_sym_STAR] = ACTIONS(2786), + [anon_sym_CARET] = ACTIONS(2786), + [anon_sym_AMP] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2784), + [anon_sym_extern] = ACTIONS(2784), + [anon_sym___attribute__] = ACTIONS(2784), + [anon_sym___attribute] = ACTIONS(2784), + [anon_sym_noreturn] = ACTIONS(2784), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym___declspec] = ACTIONS(2784), + [anon_sym___cdecl] = ACTIONS(2784), + [anon_sym___clrcall] = ACTIONS(2784), + [anon_sym___stdcall] = ACTIONS(2784), + [anon_sym___fastcall] = ACTIONS(2784), + [anon_sym___thiscall] = ACTIONS(2784), + [anon_sym___vectorcall] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_signed] = ACTIONS(2784), + [anon_sym_unsigned] = ACTIONS(2784), + [anon_sym_long] = ACTIONS(2784), + [anon_sym_short] = ACTIONS(2784), + [anon_sym_static] = ACTIONS(2784), + [anon_sym_ATautoreleasepool] = ACTIONS(2786), + [anon_sym_auto] = ACTIONS(2784), + [anon_sym_register] = ACTIONS(2784), + [anon_sym_inline] = ACTIONS(2784), + [anon_sym___inline] = ACTIONS(2784), + [anon_sym___inline__] = ACTIONS(2784), + [anon_sym___forceinline] = ACTIONS(2784), + [anon_sym_thread_local] = ACTIONS(2784), + [anon_sym___thread] = ACTIONS(2784), + [anon_sym_CG_EXTERN] = ACTIONS(2784), + [anon_sym_CG_INLINE] = ACTIONS(2784), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2784), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2784), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2784), + [anon_sym_IBOutlet] = ACTIONS(2784), + [anon_sym_IBInspectable] = ACTIONS(2784), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2784), + [anon_sym_NS_INLINE] = ACTIONS(2784), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2784), + [anon_sym_OBJC_EXPORT] = ACTIONS(2784), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2784), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2784), + [anon_sym_const] = ACTIONS(2784), + [anon_sym_constexpr] = ACTIONS(2784), + [anon_sym_volatile] = ACTIONS(2784), + [anon_sym_restrict] = ACTIONS(2784), + [anon_sym___restrict__] = ACTIONS(2784), + [anon_sym__Atomic] = ACTIONS(2784), + [anon_sym__Noreturn] = ACTIONS(2784), + [anon_sym__Nonnull] = ACTIONS(2784), + [anon_sym_nullable] = ACTIONS(2784), + [anon_sym__Complex] = ACTIONS(2784), + [anon_sym__Nullable] = ACTIONS(2784), + [anon_sym__Nullable_result] = ACTIONS(2784), + [anon_sym__Null_unspecified] = ACTIONS(2784), + [anon_sym___autoreleasing] = ACTIONS(2784), + [anon_sym___block] = ACTIONS(2784), + [anon_sym___bridge] = ACTIONS(2784), + [anon_sym___bridge_retained] = ACTIONS(2784), + [anon_sym___bridge_transfer] = ACTIONS(2784), + [anon_sym___complex] = ACTIONS(2784), + [anon_sym___const] = ACTIONS(2784), + [anon_sym___imag] = ACTIONS(2784), + [anon_sym___kindof] = ACTIONS(2784), + [anon_sym___nonnull] = ACTIONS(2784), + [anon_sym___nullable] = ACTIONS(2784), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2784), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2784), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2784), + [anon_sym___real] = ACTIONS(2784), + [anon_sym___strong] = ACTIONS(2784), + [anon_sym___unsafe_unretained] = ACTIONS(2784), + [anon_sym___unused] = ACTIONS(2784), + [anon_sym___weak] = ACTIONS(2784), + [anon_sym_alignas] = ACTIONS(2784), + [anon_sym__Alignas] = ACTIONS(2784), + [sym_primitive_type] = ACTIONS(2784), + [anon_sym_enum] = ACTIONS(2784), + [anon_sym_struct] = ACTIONS(2784), + [anon_sym_union] = ACTIONS(2784), + [anon_sym_if] = ACTIONS(2784), + [anon_sym_switch] = ACTIONS(2784), + [anon_sym_case] = ACTIONS(2784), + [anon_sym_default] = ACTIONS(2784), + [anon_sym_while] = ACTIONS(2784), + [anon_sym_do] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2784), + [anon_sym_in] = ACTIONS(2784), + [anon_sym_return] = ACTIONS(2784), + [anon_sym_break] = ACTIONS(2784), + [anon_sym_continue] = ACTIONS(2784), + [anon_sym_goto] = ACTIONS(2784), + [anon_sym_DASH_DASH] = ACTIONS(2786), + [anon_sym_PLUS_PLUS] = ACTIONS(2786), + [anon_sym_sizeof] = ACTIONS(2784), + [anon_sym___alignof__] = ACTIONS(2784), + [anon_sym___alignof] = ACTIONS(2784), + [anon_sym__alignof] = ACTIONS(2784), + [anon_sym_alignof] = ACTIONS(2784), + [anon_sym__Alignof] = ACTIONS(2784), + [anon_sym_offsetof] = ACTIONS(2784), + [anon_sym__Generic] = ACTIONS(2784), + [anon_sym_asm] = ACTIONS(2784), + [anon_sym___asm__] = ACTIONS(2784), + [anon_sym___asm] = ACTIONS(2784), + [sym_number_literal] = ACTIONS(2786), + [anon_sym_L_SQUOTE] = ACTIONS(2786), + [anon_sym_u_SQUOTE] = ACTIONS(2786), + [anon_sym_U_SQUOTE] = ACTIONS(2786), + [anon_sym_u8_SQUOTE] = ACTIONS(2786), + [anon_sym_SQUOTE] = ACTIONS(2786), + [anon_sym_AT] = ACTIONS(2784), + [anon_sym_DQUOTE] = ACTIONS(2786), + [anon_sym_L_DQUOTE] = ACTIONS(2786), + [anon_sym_u_DQUOTE] = ACTIONS(2786), + [anon_sym_U_DQUOTE] = ACTIONS(2786), + [anon_sym_u8_DQUOTE] = ACTIONS(2786), + [sym_true] = ACTIONS(2784), + [sym_false] = ACTIONS(2784), + [anon_sym_NULL] = ACTIONS(2784), + [anon_sym_nullptr] = ACTIONS(2784), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2784), + [anon_sym___typeof] = ACTIONS(2784), + [anon_sym_typeof] = ACTIONS(2784), + [anon_sym_ATimport] = ACTIONS(2786), + [aux_sym_preproc_undef_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(2784), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2784), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2784), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2784), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2784), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2784), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2784), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2784), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2784), + [anon_sym_NS_AVAILABLE] = ACTIONS(2784), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2784), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_API_AVAILABLE] = ACTIONS(2784), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_API_DEPRECATED] = ACTIONS(2784), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2784), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2784), + [anon_sym___deprecated_msg] = ACTIONS(2784), + [anon_sym___deprecated_enum_msg] = ACTIONS(2784), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2784), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2784), + [anon_sym_ATprotocol] = ACTIONS(2786), + [anon_sym_ATinterface] = ACTIONS(2786), + [anon_sym_ATimplementation] = ACTIONS(2786), + [anon_sym_ATcompatibility_alias] = ACTIONS(2786), + [anon_sym_ATsynthesize] = ACTIONS(2786), + [anon_sym_ATdynamic] = ACTIONS(2786), + [anon_sym_ATtry] = ACTIONS(2786), + [anon_sym___try] = ACTIONS(2784), + [anon_sym_ATthrow] = ACTIONS(2786), + [anon_sym_ATselector] = ACTIONS(2786), + [anon_sym_ATavailable] = ACTIONS(2786), + [anon_sym___builtin_available] = ACTIONS(2784), + [anon_sym_va_arg] = ACTIONS(2784), + [anon_sym_ATencode] = ACTIONS(2786), + [anon_sym_ATsynchronized] = ACTIONS(2786), + [anon_sym_BOOL] = ACTIONS(2784), + [anon_sym_IMP] = ACTIONS(2784), + [anon_sym_SEL] = ACTIONS(2784), + [anon_sym_Class] = ACTIONS(2784), + [anon_sym_id] = ACTIONS(2784), + }, + [497] = { + [sym_identifier] = ACTIONS(2788), + [aux_sym_preproc_include_token1] = ACTIONS(2788), + [aux_sym_preproc_include_token2] = ACTIONS(2788), + [aux_sym_preproc_def_token1] = ACTIONS(2788), + [aux_sym_preproc_if_token1] = ACTIONS(2788), + [aux_sym_preproc_if_token2] = ACTIONS(2788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2788), + [aux_sym_preproc_else_token1] = ACTIONS(2788), + [aux_sym_preproc_elif_token1] = ACTIONS(2788), + [sym_preproc_directive] = ACTIONS(2788), + [anon_sym_LPAREN2] = ACTIONS(2790), + [anon_sym_BANG] = ACTIONS(2790), + [anon_sym_TILDE] = ACTIONS(2790), + [anon_sym_DASH] = ACTIONS(2788), + [anon_sym_PLUS] = ACTIONS(2788), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_CARET] = ACTIONS(2790), + [anon_sym_AMP] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym___extension__] = ACTIONS(2788), + [anon_sym_typedef] = ACTIONS(2788), + [anon_sym_extern] = ACTIONS(2788), + [anon_sym___attribute__] = ACTIONS(2788), + [anon_sym___attribute] = ACTIONS(2788), + [anon_sym_noreturn] = ACTIONS(2788), + [anon_sym_LBRACK] = ACTIONS(2790), + [anon_sym___declspec] = ACTIONS(2788), + [anon_sym___cdecl] = ACTIONS(2788), + [anon_sym___clrcall] = ACTIONS(2788), + [anon_sym___stdcall] = ACTIONS(2788), + [anon_sym___fastcall] = ACTIONS(2788), + [anon_sym___thiscall] = ACTIONS(2788), + [anon_sym___vectorcall] = ACTIONS(2788), + [anon_sym_LBRACE] = ACTIONS(2790), + [anon_sym_signed] = ACTIONS(2788), + [anon_sym_unsigned] = ACTIONS(2788), + [anon_sym_long] = ACTIONS(2788), + [anon_sym_short] = ACTIONS(2788), + [anon_sym_static] = ACTIONS(2788), + [anon_sym_ATautoreleasepool] = ACTIONS(2790), + [anon_sym_auto] = ACTIONS(2788), + [anon_sym_register] = ACTIONS(2788), + [anon_sym_inline] = ACTIONS(2788), + [anon_sym___inline] = ACTIONS(2788), + [anon_sym___inline__] = ACTIONS(2788), + [anon_sym___forceinline] = ACTIONS(2788), + [anon_sym_thread_local] = ACTIONS(2788), + [anon_sym___thread] = ACTIONS(2788), + [anon_sym_CG_EXTERN] = ACTIONS(2788), + [anon_sym_CG_INLINE] = ACTIONS(2788), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2788), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2788), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2788), + [anon_sym_IBOutlet] = ACTIONS(2788), + [anon_sym_IBInspectable] = ACTIONS(2788), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2788), + [anon_sym_NS_INLINE] = ACTIONS(2788), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2788), + [anon_sym_OBJC_EXPORT] = ACTIONS(2788), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2788), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2788), + [anon_sym_const] = ACTIONS(2788), + [anon_sym_constexpr] = ACTIONS(2788), + [anon_sym_volatile] = ACTIONS(2788), + [anon_sym_restrict] = ACTIONS(2788), + [anon_sym___restrict__] = ACTIONS(2788), + [anon_sym__Atomic] = ACTIONS(2788), + [anon_sym__Noreturn] = ACTIONS(2788), + [anon_sym__Nonnull] = ACTIONS(2788), + [anon_sym_nullable] = ACTIONS(2788), + [anon_sym__Complex] = ACTIONS(2788), + [anon_sym__Nullable] = ACTIONS(2788), + [anon_sym__Nullable_result] = ACTIONS(2788), + [anon_sym__Null_unspecified] = ACTIONS(2788), + [anon_sym___autoreleasing] = ACTIONS(2788), + [anon_sym___block] = ACTIONS(2788), + [anon_sym___bridge] = ACTIONS(2788), + [anon_sym___bridge_retained] = ACTIONS(2788), + [anon_sym___bridge_transfer] = ACTIONS(2788), + [anon_sym___complex] = ACTIONS(2788), + [anon_sym___const] = ACTIONS(2788), + [anon_sym___imag] = ACTIONS(2788), + [anon_sym___kindof] = ACTIONS(2788), + [anon_sym___nonnull] = ACTIONS(2788), + [anon_sym___nullable] = ACTIONS(2788), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2788), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2788), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2788), + [anon_sym___real] = ACTIONS(2788), + [anon_sym___strong] = ACTIONS(2788), + [anon_sym___unsafe_unretained] = ACTIONS(2788), + [anon_sym___unused] = ACTIONS(2788), + [anon_sym___weak] = ACTIONS(2788), + [anon_sym_alignas] = ACTIONS(2788), + [anon_sym__Alignas] = ACTIONS(2788), + [sym_primitive_type] = ACTIONS(2788), + [anon_sym_enum] = ACTIONS(2788), + [anon_sym_struct] = ACTIONS(2788), + [anon_sym_union] = ACTIONS(2788), + [anon_sym_if] = ACTIONS(2788), + [anon_sym_switch] = ACTIONS(2788), + [anon_sym_case] = ACTIONS(2788), + [anon_sym_default] = ACTIONS(2788), + [anon_sym_while] = ACTIONS(2788), + [anon_sym_do] = ACTIONS(2788), + [anon_sym_for] = ACTIONS(2788), + [anon_sym_in] = ACTIONS(2788), + [anon_sym_return] = ACTIONS(2788), + [anon_sym_break] = ACTIONS(2788), + [anon_sym_continue] = ACTIONS(2788), + [anon_sym_goto] = ACTIONS(2788), + [anon_sym_DASH_DASH] = ACTIONS(2790), + [anon_sym_PLUS_PLUS] = ACTIONS(2790), + [anon_sym_sizeof] = ACTIONS(2788), + [anon_sym___alignof__] = ACTIONS(2788), + [anon_sym___alignof] = ACTIONS(2788), + [anon_sym__alignof] = ACTIONS(2788), + [anon_sym_alignof] = ACTIONS(2788), + [anon_sym__Alignof] = ACTIONS(2788), + [anon_sym_offsetof] = ACTIONS(2788), + [anon_sym__Generic] = ACTIONS(2788), + [anon_sym_asm] = ACTIONS(2788), + [anon_sym___asm__] = ACTIONS(2788), + [anon_sym___asm] = ACTIONS(2788), + [sym_number_literal] = ACTIONS(2790), + [anon_sym_L_SQUOTE] = ACTIONS(2790), + [anon_sym_u_SQUOTE] = ACTIONS(2790), + [anon_sym_U_SQUOTE] = ACTIONS(2790), + [anon_sym_u8_SQUOTE] = ACTIONS(2790), + [anon_sym_SQUOTE] = ACTIONS(2790), + [anon_sym_AT] = ACTIONS(2788), + [anon_sym_DQUOTE] = ACTIONS(2790), + [anon_sym_L_DQUOTE] = ACTIONS(2790), + [anon_sym_u_DQUOTE] = ACTIONS(2790), + [anon_sym_U_DQUOTE] = ACTIONS(2790), + [anon_sym_u8_DQUOTE] = ACTIONS(2790), + [sym_true] = ACTIONS(2788), + [sym_false] = ACTIONS(2788), + [anon_sym_NULL] = ACTIONS(2788), + [anon_sym_nullptr] = ACTIONS(2788), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2788), + [anon_sym___typeof] = ACTIONS(2788), + [anon_sym_typeof] = ACTIONS(2788), + [anon_sym_ATimport] = ACTIONS(2790), + [aux_sym_preproc_undef_token1] = ACTIONS(2788), + [anon_sym_POUND] = ACTIONS(2788), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2788), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2788), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2788), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2788), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2788), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2788), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2788), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2788), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2788), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2788), + [anon_sym_NS_AVAILABLE] = ACTIONS(2788), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2788), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2788), + [anon_sym_API_AVAILABLE] = ACTIONS(2788), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2788), + [anon_sym_API_DEPRECATED] = ACTIONS(2788), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2788), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2788), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2788), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2788), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2788), + [anon_sym___deprecated_msg] = ACTIONS(2788), + [anon_sym___deprecated_enum_msg] = ACTIONS(2788), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2788), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2788), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2788), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2788), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2788), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2788), + [anon_sym_ATprotocol] = ACTIONS(2790), + [anon_sym_ATinterface] = ACTIONS(2790), + [anon_sym_ATimplementation] = ACTIONS(2790), + [anon_sym_ATcompatibility_alias] = ACTIONS(2790), + [anon_sym_ATsynthesize] = ACTIONS(2790), + [anon_sym_ATdynamic] = ACTIONS(2790), + [anon_sym_ATtry] = ACTIONS(2790), + [anon_sym___try] = ACTIONS(2788), + [anon_sym_ATthrow] = ACTIONS(2790), + [anon_sym_ATselector] = ACTIONS(2790), + [anon_sym_ATavailable] = ACTIONS(2790), + [anon_sym___builtin_available] = ACTIONS(2788), + [anon_sym_va_arg] = ACTIONS(2788), + [anon_sym_ATencode] = ACTIONS(2790), + [anon_sym_ATsynchronized] = ACTIONS(2790), + [anon_sym_BOOL] = ACTIONS(2788), + [anon_sym_IMP] = ACTIONS(2788), + [anon_sym_SEL] = ACTIONS(2788), + [anon_sym_Class] = ACTIONS(2788), + [anon_sym_id] = ACTIONS(2788), + }, + [498] = { + [sym_identifier] = ACTIONS(2792), + [aux_sym_preproc_include_token1] = ACTIONS(2792), + [aux_sym_preproc_include_token2] = ACTIONS(2792), + [aux_sym_preproc_def_token1] = ACTIONS(2792), + [aux_sym_preproc_if_token1] = ACTIONS(2792), + [aux_sym_preproc_if_token2] = ACTIONS(2792), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2792), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2792), + [aux_sym_preproc_else_token1] = ACTIONS(2792), + [aux_sym_preproc_elif_token1] = ACTIONS(2792), + [sym_preproc_directive] = ACTIONS(2792), + [anon_sym_LPAREN2] = ACTIONS(2794), + [anon_sym_BANG] = ACTIONS(2794), + [anon_sym_TILDE] = ACTIONS(2794), + [anon_sym_DASH] = ACTIONS(2792), + [anon_sym_PLUS] = ACTIONS(2792), + [anon_sym_STAR] = ACTIONS(2794), + [anon_sym_CARET] = ACTIONS(2794), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym___extension__] = ACTIONS(2792), + [anon_sym_typedef] = ACTIONS(2792), + [anon_sym_extern] = ACTIONS(2792), + [anon_sym___attribute__] = ACTIONS(2792), + [anon_sym___attribute] = ACTIONS(2792), + [anon_sym_noreturn] = ACTIONS(2792), + [anon_sym_LBRACK] = ACTIONS(2794), + [anon_sym___declspec] = ACTIONS(2792), + [anon_sym___cdecl] = ACTIONS(2792), + [anon_sym___clrcall] = ACTIONS(2792), + [anon_sym___stdcall] = ACTIONS(2792), + [anon_sym___fastcall] = ACTIONS(2792), + [anon_sym___thiscall] = ACTIONS(2792), + [anon_sym___vectorcall] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_signed] = ACTIONS(2792), + [anon_sym_unsigned] = ACTIONS(2792), + [anon_sym_long] = ACTIONS(2792), + [anon_sym_short] = ACTIONS(2792), + [anon_sym_static] = ACTIONS(2792), + [anon_sym_ATautoreleasepool] = ACTIONS(2794), + [anon_sym_auto] = ACTIONS(2792), + [anon_sym_register] = ACTIONS(2792), + [anon_sym_inline] = ACTIONS(2792), + [anon_sym___inline] = ACTIONS(2792), + [anon_sym___inline__] = ACTIONS(2792), + [anon_sym___forceinline] = ACTIONS(2792), + [anon_sym_thread_local] = ACTIONS(2792), + [anon_sym___thread] = ACTIONS(2792), + [anon_sym_CG_EXTERN] = ACTIONS(2792), + [anon_sym_CG_INLINE] = ACTIONS(2792), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2792), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2792), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2792), + [anon_sym_IBOutlet] = ACTIONS(2792), + [anon_sym_IBInspectable] = ACTIONS(2792), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2792), + [anon_sym_NS_INLINE] = ACTIONS(2792), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2792), + [anon_sym_OBJC_EXPORT] = ACTIONS(2792), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2792), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2792), + [anon_sym_const] = ACTIONS(2792), + [anon_sym_constexpr] = ACTIONS(2792), + [anon_sym_volatile] = ACTIONS(2792), + [anon_sym_restrict] = ACTIONS(2792), + [anon_sym___restrict__] = ACTIONS(2792), + [anon_sym__Atomic] = ACTIONS(2792), + [anon_sym__Noreturn] = ACTIONS(2792), + [anon_sym__Nonnull] = ACTIONS(2792), + [anon_sym_nullable] = ACTIONS(2792), + [anon_sym__Complex] = ACTIONS(2792), + [anon_sym__Nullable] = ACTIONS(2792), + [anon_sym__Nullable_result] = ACTIONS(2792), + [anon_sym__Null_unspecified] = ACTIONS(2792), + [anon_sym___autoreleasing] = ACTIONS(2792), + [anon_sym___block] = ACTIONS(2792), + [anon_sym___bridge] = ACTIONS(2792), + [anon_sym___bridge_retained] = ACTIONS(2792), + [anon_sym___bridge_transfer] = ACTIONS(2792), + [anon_sym___complex] = ACTIONS(2792), + [anon_sym___const] = ACTIONS(2792), + [anon_sym___imag] = ACTIONS(2792), + [anon_sym___kindof] = ACTIONS(2792), + [anon_sym___nonnull] = ACTIONS(2792), + [anon_sym___nullable] = ACTIONS(2792), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2792), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2792), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2792), + [anon_sym___real] = ACTIONS(2792), + [anon_sym___strong] = ACTIONS(2792), + [anon_sym___unsafe_unretained] = ACTIONS(2792), + [anon_sym___unused] = ACTIONS(2792), + [anon_sym___weak] = ACTIONS(2792), + [anon_sym_alignas] = ACTIONS(2792), + [anon_sym__Alignas] = ACTIONS(2792), + [sym_primitive_type] = ACTIONS(2792), + [anon_sym_enum] = ACTIONS(2792), + [anon_sym_struct] = ACTIONS(2792), + [anon_sym_union] = ACTIONS(2792), + [anon_sym_if] = ACTIONS(2792), + [anon_sym_switch] = ACTIONS(2792), + [anon_sym_case] = ACTIONS(2792), + [anon_sym_default] = ACTIONS(2792), + [anon_sym_while] = ACTIONS(2792), + [anon_sym_do] = ACTIONS(2792), + [anon_sym_for] = ACTIONS(2792), + [anon_sym_in] = ACTIONS(2792), + [anon_sym_return] = ACTIONS(2792), + [anon_sym_break] = ACTIONS(2792), + [anon_sym_continue] = ACTIONS(2792), + [anon_sym_goto] = ACTIONS(2792), + [anon_sym_DASH_DASH] = ACTIONS(2794), + [anon_sym_PLUS_PLUS] = ACTIONS(2794), + [anon_sym_sizeof] = ACTIONS(2792), + [anon_sym___alignof__] = ACTIONS(2792), + [anon_sym___alignof] = ACTIONS(2792), + [anon_sym__alignof] = ACTIONS(2792), + [anon_sym_alignof] = ACTIONS(2792), + [anon_sym__Alignof] = ACTIONS(2792), + [anon_sym_offsetof] = ACTIONS(2792), + [anon_sym__Generic] = ACTIONS(2792), + [anon_sym_asm] = ACTIONS(2792), + [anon_sym___asm__] = ACTIONS(2792), + [anon_sym___asm] = ACTIONS(2792), + [sym_number_literal] = ACTIONS(2794), + [anon_sym_L_SQUOTE] = ACTIONS(2794), + [anon_sym_u_SQUOTE] = ACTIONS(2794), + [anon_sym_U_SQUOTE] = ACTIONS(2794), + [anon_sym_u8_SQUOTE] = ACTIONS(2794), + [anon_sym_SQUOTE] = ACTIONS(2794), + [anon_sym_AT] = ACTIONS(2792), + [anon_sym_DQUOTE] = ACTIONS(2794), + [anon_sym_L_DQUOTE] = ACTIONS(2794), + [anon_sym_u_DQUOTE] = ACTIONS(2794), + [anon_sym_U_DQUOTE] = ACTIONS(2794), + [anon_sym_u8_DQUOTE] = ACTIONS(2794), + [sym_true] = ACTIONS(2792), + [sym_false] = ACTIONS(2792), + [anon_sym_NULL] = ACTIONS(2792), + [anon_sym_nullptr] = ACTIONS(2792), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2792), + [anon_sym___typeof] = ACTIONS(2792), + [anon_sym_typeof] = ACTIONS(2792), + [anon_sym_ATimport] = ACTIONS(2794), + [aux_sym_preproc_undef_token1] = ACTIONS(2792), + [anon_sym_POUND] = ACTIONS(2792), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2792), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2792), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2792), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2792), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2792), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2792), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2792), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2792), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2792), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2792), + [anon_sym_NS_AVAILABLE] = ACTIONS(2792), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2792), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2792), + [anon_sym_API_AVAILABLE] = ACTIONS(2792), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2792), + [anon_sym_API_DEPRECATED] = ACTIONS(2792), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2792), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2792), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2792), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2792), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2792), + [anon_sym___deprecated_msg] = ACTIONS(2792), + [anon_sym___deprecated_enum_msg] = ACTIONS(2792), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2792), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2792), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2792), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2792), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2792), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2792), + [anon_sym_ATprotocol] = ACTIONS(2794), + [anon_sym_ATinterface] = ACTIONS(2794), + [anon_sym_ATimplementation] = ACTIONS(2794), + [anon_sym_ATcompatibility_alias] = ACTIONS(2794), + [anon_sym_ATsynthesize] = ACTIONS(2794), + [anon_sym_ATdynamic] = ACTIONS(2794), + [anon_sym_ATtry] = ACTIONS(2794), + [anon_sym___try] = ACTIONS(2792), + [anon_sym_ATthrow] = ACTIONS(2794), + [anon_sym_ATselector] = ACTIONS(2794), + [anon_sym_ATavailable] = ACTIONS(2794), + [anon_sym___builtin_available] = ACTIONS(2792), + [anon_sym_va_arg] = ACTIONS(2792), + [anon_sym_ATencode] = ACTIONS(2794), + [anon_sym_ATsynchronized] = ACTIONS(2794), + [anon_sym_BOOL] = ACTIONS(2792), + [anon_sym_IMP] = ACTIONS(2792), + [anon_sym_SEL] = ACTIONS(2792), + [anon_sym_Class] = ACTIONS(2792), + [anon_sym_id] = ACTIONS(2792), + }, + [499] = { + [sym_identifier] = ACTIONS(2796), + [aux_sym_preproc_include_token1] = ACTIONS(2796), + [aux_sym_preproc_include_token2] = ACTIONS(2796), + [aux_sym_preproc_def_token1] = ACTIONS(2796), + [aux_sym_preproc_if_token1] = ACTIONS(2796), + [aux_sym_preproc_if_token2] = ACTIONS(2796), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2796), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2796), + [aux_sym_preproc_else_token1] = ACTIONS(2796), + [aux_sym_preproc_elif_token1] = ACTIONS(2796), + [sym_preproc_directive] = ACTIONS(2796), + [anon_sym_LPAREN2] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_TILDE] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2796), + [anon_sym_PLUS] = ACTIONS(2796), + [anon_sym_STAR] = ACTIONS(2798), + [anon_sym_CARET] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2798), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym___extension__] = ACTIONS(2796), + [anon_sym_typedef] = ACTIONS(2796), + [anon_sym_extern] = ACTIONS(2796), + [anon_sym___attribute__] = ACTIONS(2796), + [anon_sym___attribute] = ACTIONS(2796), + [anon_sym_noreturn] = ACTIONS(2796), + [anon_sym_LBRACK] = ACTIONS(2798), + [anon_sym___declspec] = ACTIONS(2796), + [anon_sym___cdecl] = ACTIONS(2796), + [anon_sym___clrcall] = ACTIONS(2796), + [anon_sym___stdcall] = ACTIONS(2796), + [anon_sym___fastcall] = ACTIONS(2796), + [anon_sym___thiscall] = ACTIONS(2796), + [anon_sym___vectorcall] = ACTIONS(2796), + [anon_sym_LBRACE] = ACTIONS(2798), + [anon_sym_signed] = ACTIONS(2796), + [anon_sym_unsigned] = ACTIONS(2796), + [anon_sym_long] = ACTIONS(2796), + [anon_sym_short] = ACTIONS(2796), + [anon_sym_static] = ACTIONS(2796), + [anon_sym_ATautoreleasepool] = ACTIONS(2798), + [anon_sym_auto] = ACTIONS(2796), + [anon_sym_register] = ACTIONS(2796), + [anon_sym_inline] = ACTIONS(2796), + [anon_sym___inline] = ACTIONS(2796), + [anon_sym___inline__] = ACTIONS(2796), + [anon_sym___forceinline] = ACTIONS(2796), + [anon_sym_thread_local] = ACTIONS(2796), + [anon_sym___thread] = ACTIONS(2796), + [anon_sym_CG_EXTERN] = ACTIONS(2796), + [anon_sym_CG_INLINE] = ACTIONS(2796), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2796), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2796), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2796), + [anon_sym_IBOutlet] = ACTIONS(2796), + [anon_sym_IBInspectable] = ACTIONS(2796), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2796), + [anon_sym_NS_INLINE] = ACTIONS(2796), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2796), + [anon_sym_OBJC_EXPORT] = ACTIONS(2796), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2796), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2796), + [anon_sym_const] = ACTIONS(2796), + [anon_sym_constexpr] = ACTIONS(2796), + [anon_sym_volatile] = ACTIONS(2796), + [anon_sym_restrict] = ACTIONS(2796), + [anon_sym___restrict__] = ACTIONS(2796), + [anon_sym__Atomic] = ACTIONS(2796), + [anon_sym__Noreturn] = ACTIONS(2796), + [anon_sym__Nonnull] = ACTIONS(2796), + [anon_sym_nullable] = ACTIONS(2796), + [anon_sym__Complex] = ACTIONS(2796), + [anon_sym__Nullable] = ACTIONS(2796), + [anon_sym__Nullable_result] = ACTIONS(2796), + [anon_sym__Null_unspecified] = ACTIONS(2796), + [anon_sym___autoreleasing] = ACTIONS(2796), + [anon_sym___block] = ACTIONS(2796), + [anon_sym___bridge] = ACTIONS(2796), + [anon_sym___bridge_retained] = ACTIONS(2796), + [anon_sym___bridge_transfer] = ACTIONS(2796), + [anon_sym___complex] = ACTIONS(2796), + [anon_sym___const] = ACTIONS(2796), + [anon_sym___imag] = ACTIONS(2796), + [anon_sym___kindof] = ACTIONS(2796), + [anon_sym___nonnull] = ACTIONS(2796), + [anon_sym___nullable] = ACTIONS(2796), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2796), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2796), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2796), + [anon_sym___real] = ACTIONS(2796), + [anon_sym___strong] = ACTIONS(2796), + [anon_sym___unsafe_unretained] = ACTIONS(2796), + [anon_sym___unused] = ACTIONS(2796), + [anon_sym___weak] = ACTIONS(2796), + [anon_sym_alignas] = ACTIONS(2796), + [anon_sym__Alignas] = ACTIONS(2796), + [sym_primitive_type] = ACTIONS(2796), + [anon_sym_enum] = ACTIONS(2796), + [anon_sym_struct] = ACTIONS(2796), + [anon_sym_union] = ACTIONS(2796), + [anon_sym_if] = ACTIONS(2796), + [anon_sym_switch] = ACTIONS(2796), + [anon_sym_case] = ACTIONS(2796), + [anon_sym_default] = ACTIONS(2796), + [anon_sym_while] = ACTIONS(2796), + [anon_sym_do] = ACTIONS(2796), + [anon_sym_for] = ACTIONS(2796), + [anon_sym_in] = ACTIONS(2796), + [anon_sym_return] = ACTIONS(2796), + [anon_sym_break] = ACTIONS(2796), + [anon_sym_continue] = ACTIONS(2796), + [anon_sym_goto] = ACTIONS(2796), + [anon_sym_DASH_DASH] = ACTIONS(2798), + [anon_sym_PLUS_PLUS] = ACTIONS(2798), + [anon_sym_sizeof] = ACTIONS(2796), + [anon_sym___alignof__] = ACTIONS(2796), + [anon_sym___alignof] = ACTIONS(2796), + [anon_sym__alignof] = ACTIONS(2796), + [anon_sym_alignof] = ACTIONS(2796), + [anon_sym__Alignof] = ACTIONS(2796), + [anon_sym_offsetof] = ACTIONS(2796), + [anon_sym__Generic] = ACTIONS(2796), + [anon_sym_asm] = ACTIONS(2796), + [anon_sym___asm__] = ACTIONS(2796), + [anon_sym___asm] = ACTIONS(2796), + [sym_number_literal] = ACTIONS(2798), + [anon_sym_L_SQUOTE] = ACTIONS(2798), + [anon_sym_u_SQUOTE] = ACTIONS(2798), + [anon_sym_U_SQUOTE] = ACTIONS(2798), + [anon_sym_u8_SQUOTE] = ACTIONS(2798), + [anon_sym_SQUOTE] = ACTIONS(2798), + [anon_sym_AT] = ACTIONS(2796), + [anon_sym_DQUOTE] = ACTIONS(2798), + [anon_sym_L_DQUOTE] = ACTIONS(2798), + [anon_sym_u_DQUOTE] = ACTIONS(2798), + [anon_sym_U_DQUOTE] = ACTIONS(2798), + [anon_sym_u8_DQUOTE] = ACTIONS(2798), + [sym_true] = ACTIONS(2796), + [sym_false] = ACTIONS(2796), + [anon_sym_NULL] = ACTIONS(2796), + [anon_sym_nullptr] = ACTIONS(2796), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2796), + [anon_sym___typeof] = ACTIONS(2796), + [anon_sym_typeof] = ACTIONS(2796), + [anon_sym_ATimport] = ACTIONS(2798), + [aux_sym_preproc_undef_token1] = ACTIONS(2796), + [anon_sym_POUND] = ACTIONS(2796), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2796), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2796), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2796), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2796), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2796), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2796), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2796), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2796), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2796), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2796), + [anon_sym_NS_AVAILABLE] = ACTIONS(2796), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2796), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2796), + [anon_sym_API_AVAILABLE] = ACTIONS(2796), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2796), + [anon_sym_API_DEPRECATED] = ACTIONS(2796), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2796), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2796), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2796), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2796), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2796), + [anon_sym___deprecated_msg] = ACTIONS(2796), + [anon_sym___deprecated_enum_msg] = ACTIONS(2796), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2796), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2796), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2796), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2796), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2796), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2796), + [anon_sym_ATprotocol] = ACTIONS(2798), + [anon_sym_ATinterface] = ACTIONS(2798), + [anon_sym_ATimplementation] = ACTIONS(2798), + [anon_sym_ATcompatibility_alias] = ACTIONS(2798), + [anon_sym_ATsynthesize] = ACTIONS(2798), + [anon_sym_ATdynamic] = ACTIONS(2798), + [anon_sym_ATtry] = ACTIONS(2798), + [anon_sym___try] = ACTIONS(2796), + [anon_sym_ATthrow] = ACTIONS(2798), + [anon_sym_ATselector] = ACTIONS(2798), + [anon_sym_ATavailable] = ACTIONS(2798), + [anon_sym___builtin_available] = ACTIONS(2796), + [anon_sym_va_arg] = ACTIONS(2796), + [anon_sym_ATencode] = ACTIONS(2798), + [anon_sym_ATsynchronized] = ACTIONS(2798), + [anon_sym_BOOL] = ACTIONS(2796), + [anon_sym_IMP] = ACTIONS(2796), + [anon_sym_SEL] = ACTIONS(2796), + [anon_sym_Class] = ACTIONS(2796), + [anon_sym_id] = ACTIONS(2796), + }, + [500] = { + [sym_identifier] = ACTIONS(2656), + [aux_sym_preproc_include_token1] = ACTIONS(2656), + [aux_sym_preproc_include_token2] = ACTIONS(2656), + [aux_sym_preproc_def_token1] = ACTIONS(2656), + [aux_sym_preproc_if_token1] = ACTIONS(2656), + [aux_sym_preproc_if_token2] = ACTIONS(2656), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2656), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2656), + [aux_sym_preproc_else_token1] = ACTIONS(2656), + [aux_sym_preproc_elif_token1] = ACTIONS(2656), + [sym_preproc_directive] = ACTIONS(2656), + [anon_sym_LPAREN2] = ACTIONS(2658), + [anon_sym_BANG] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2656), + [anon_sym_PLUS] = ACTIONS(2656), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_CARET] = ACTIONS(2658), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym___extension__] = ACTIONS(2656), + [anon_sym_typedef] = ACTIONS(2656), + [anon_sym_extern] = ACTIONS(2656), + [anon_sym___attribute__] = ACTIONS(2656), + [anon_sym___attribute] = ACTIONS(2656), + [anon_sym_noreturn] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym___declspec] = ACTIONS(2656), + [anon_sym___cdecl] = ACTIONS(2656), + [anon_sym___clrcall] = ACTIONS(2656), + [anon_sym___stdcall] = ACTIONS(2656), + [anon_sym___fastcall] = ACTIONS(2656), + [anon_sym___thiscall] = ACTIONS(2656), + [anon_sym___vectorcall] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_signed] = ACTIONS(2656), + [anon_sym_unsigned] = ACTIONS(2656), + [anon_sym_long] = ACTIONS(2656), + [anon_sym_short] = ACTIONS(2656), + [anon_sym_static] = ACTIONS(2656), + [anon_sym_ATautoreleasepool] = ACTIONS(2658), + [anon_sym_auto] = ACTIONS(2656), + [anon_sym_register] = ACTIONS(2656), + [anon_sym_inline] = ACTIONS(2656), + [anon_sym___inline] = ACTIONS(2656), + [anon_sym___inline__] = ACTIONS(2656), + [anon_sym___forceinline] = ACTIONS(2656), + [anon_sym_thread_local] = ACTIONS(2656), + [anon_sym___thread] = ACTIONS(2656), + [anon_sym_CG_EXTERN] = ACTIONS(2656), + [anon_sym_CG_INLINE] = ACTIONS(2656), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2656), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2656), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2656), + [anon_sym_IBOutlet] = ACTIONS(2656), + [anon_sym_IBInspectable] = ACTIONS(2656), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2656), + [anon_sym_NS_INLINE] = ACTIONS(2656), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2656), + [anon_sym_OBJC_EXPORT] = ACTIONS(2656), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2656), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2656), + [anon_sym_const] = ACTIONS(2656), + [anon_sym_constexpr] = ACTIONS(2656), + [anon_sym_volatile] = ACTIONS(2656), + [anon_sym_restrict] = ACTIONS(2656), + [anon_sym___restrict__] = ACTIONS(2656), + [anon_sym__Atomic] = ACTIONS(2656), + [anon_sym__Noreturn] = ACTIONS(2656), + [anon_sym__Nonnull] = ACTIONS(2656), + [anon_sym_nullable] = ACTIONS(2656), + [anon_sym__Complex] = ACTIONS(2656), + [anon_sym__Nullable] = ACTIONS(2656), + [anon_sym__Nullable_result] = ACTIONS(2656), + [anon_sym__Null_unspecified] = ACTIONS(2656), + [anon_sym___autoreleasing] = ACTIONS(2656), + [anon_sym___block] = ACTIONS(2656), + [anon_sym___bridge] = ACTIONS(2656), + [anon_sym___bridge_retained] = ACTIONS(2656), + [anon_sym___bridge_transfer] = ACTIONS(2656), + [anon_sym___complex] = ACTIONS(2656), + [anon_sym___const] = ACTIONS(2656), + [anon_sym___imag] = ACTIONS(2656), + [anon_sym___kindof] = ACTIONS(2656), + [anon_sym___nonnull] = ACTIONS(2656), + [anon_sym___nullable] = ACTIONS(2656), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2656), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2656), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2656), + [anon_sym___real] = ACTIONS(2656), + [anon_sym___strong] = ACTIONS(2656), + [anon_sym___unsafe_unretained] = ACTIONS(2656), + [anon_sym___unused] = ACTIONS(2656), + [anon_sym___weak] = ACTIONS(2656), + [anon_sym_alignas] = ACTIONS(2656), + [anon_sym__Alignas] = ACTIONS(2656), + [sym_primitive_type] = ACTIONS(2656), + [anon_sym_enum] = ACTIONS(2656), + [anon_sym_struct] = ACTIONS(2656), + [anon_sym_union] = ACTIONS(2656), + [anon_sym_if] = ACTIONS(2656), + [anon_sym_switch] = ACTIONS(2656), + [anon_sym_case] = ACTIONS(2656), + [anon_sym_default] = ACTIONS(2656), + [anon_sym_while] = ACTIONS(2656), + [anon_sym_do] = ACTIONS(2656), + [anon_sym_for] = ACTIONS(2656), + [anon_sym_in] = ACTIONS(2656), + [anon_sym_return] = ACTIONS(2656), + [anon_sym_break] = ACTIONS(2656), + [anon_sym_continue] = ACTIONS(2656), + [anon_sym_goto] = ACTIONS(2656), + [anon_sym_DASH_DASH] = ACTIONS(2658), + [anon_sym_PLUS_PLUS] = ACTIONS(2658), + [anon_sym_sizeof] = ACTIONS(2656), + [anon_sym___alignof__] = ACTIONS(2656), + [anon_sym___alignof] = ACTIONS(2656), + [anon_sym__alignof] = ACTIONS(2656), + [anon_sym_alignof] = ACTIONS(2656), + [anon_sym__Alignof] = ACTIONS(2656), + [anon_sym_offsetof] = ACTIONS(2656), + [anon_sym__Generic] = ACTIONS(2656), + [anon_sym_asm] = ACTIONS(2656), + [anon_sym___asm__] = ACTIONS(2656), + [anon_sym___asm] = ACTIONS(2656), + [sym_number_literal] = ACTIONS(2658), + [anon_sym_L_SQUOTE] = ACTIONS(2658), + [anon_sym_u_SQUOTE] = ACTIONS(2658), + [anon_sym_U_SQUOTE] = ACTIONS(2658), + [anon_sym_u8_SQUOTE] = ACTIONS(2658), + [anon_sym_SQUOTE] = ACTIONS(2658), + [anon_sym_AT] = ACTIONS(2656), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_L_DQUOTE] = ACTIONS(2658), + [anon_sym_u_DQUOTE] = ACTIONS(2658), + [anon_sym_U_DQUOTE] = ACTIONS(2658), + [anon_sym_u8_DQUOTE] = ACTIONS(2658), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2656), + [anon_sym_nullptr] = ACTIONS(2656), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2656), + [anon_sym___typeof] = ACTIONS(2656), + [anon_sym_typeof] = ACTIONS(2656), + [anon_sym_ATimport] = ACTIONS(2658), + [aux_sym_preproc_undef_token1] = ACTIONS(2656), + [anon_sym_POUND] = ACTIONS(2656), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2656), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2656), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2656), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2656), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2656), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2656), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2656), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2656), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2656), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2656), + [anon_sym_NS_AVAILABLE] = ACTIONS(2656), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2656), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2656), + [anon_sym_API_AVAILABLE] = ACTIONS(2656), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2656), + [anon_sym_API_DEPRECATED] = ACTIONS(2656), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2656), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2656), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2656), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2656), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2656), + [anon_sym___deprecated_msg] = ACTIONS(2656), + [anon_sym___deprecated_enum_msg] = ACTIONS(2656), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2656), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2656), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2656), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2656), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2656), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2656), + [anon_sym_ATprotocol] = ACTIONS(2658), + [anon_sym_ATinterface] = ACTIONS(2658), + [anon_sym_ATimplementation] = ACTIONS(2658), + [anon_sym_ATcompatibility_alias] = ACTIONS(2658), + [anon_sym_ATsynthesize] = ACTIONS(2658), + [anon_sym_ATdynamic] = ACTIONS(2658), + [anon_sym_ATtry] = ACTIONS(2658), + [anon_sym___try] = ACTIONS(2656), + [anon_sym_ATthrow] = ACTIONS(2658), + [anon_sym_ATselector] = ACTIONS(2658), + [anon_sym_ATavailable] = ACTIONS(2658), + [anon_sym___builtin_available] = ACTIONS(2656), + [anon_sym_va_arg] = ACTIONS(2656), + [anon_sym_ATencode] = ACTIONS(2658), + [anon_sym_ATsynchronized] = ACTIONS(2658), + [anon_sym_BOOL] = ACTIONS(2656), + [anon_sym_IMP] = ACTIONS(2656), + [anon_sym_SEL] = ACTIONS(2656), + [anon_sym_Class] = ACTIONS(2656), + [anon_sym_id] = ACTIONS(2656), + }, + [501] = { + [sym_identifier] = ACTIONS(2672), + [aux_sym_preproc_include_token1] = ACTIONS(2672), + [aux_sym_preproc_include_token2] = ACTIONS(2672), + [aux_sym_preproc_def_token1] = ACTIONS(2672), + [aux_sym_preproc_if_token1] = ACTIONS(2672), + [aux_sym_preproc_if_token2] = ACTIONS(2672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2672), + [aux_sym_preproc_else_token1] = ACTIONS(2672), + [aux_sym_preproc_elif_token1] = ACTIONS(2672), + [sym_preproc_directive] = ACTIONS(2672), + [anon_sym_LPAREN2] = ACTIONS(2674), + [anon_sym_BANG] = ACTIONS(2674), + [anon_sym_TILDE] = ACTIONS(2674), + [anon_sym_DASH] = ACTIONS(2672), + [anon_sym_PLUS] = ACTIONS(2672), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_CARET] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2674), + [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym___extension__] = ACTIONS(2672), + [anon_sym_typedef] = ACTIONS(2672), + [anon_sym_extern] = ACTIONS(2672), + [anon_sym___attribute__] = ACTIONS(2672), + [anon_sym___attribute] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(2674), + [anon_sym___declspec] = ACTIONS(2672), + [anon_sym___cdecl] = ACTIONS(2672), + [anon_sym___clrcall] = ACTIONS(2672), + [anon_sym___stdcall] = ACTIONS(2672), + [anon_sym___fastcall] = ACTIONS(2672), + [anon_sym___thiscall] = ACTIONS(2672), + [anon_sym___vectorcall] = ACTIONS(2672), + [anon_sym_LBRACE] = ACTIONS(2674), + [anon_sym_signed] = ACTIONS(2672), + [anon_sym_unsigned] = ACTIONS(2672), + [anon_sym_long] = ACTIONS(2672), + [anon_sym_short] = ACTIONS(2672), + [anon_sym_static] = ACTIONS(2672), + [anon_sym_ATautoreleasepool] = ACTIONS(2674), + [anon_sym_auto] = ACTIONS(2672), + [anon_sym_register] = ACTIONS(2672), + [anon_sym_inline] = ACTIONS(2672), + [anon_sym___inline] = ACTIONS(2672), + [anon_sym___inline__] = ACTIONS(2672), + [anon_sym___forceinline] = ACTIONS(2672), + [anon_sym_thread_local] = ACTIONS(2672), + [anon_sym___thread] = ACTIONS(2672), + [anon_sym_CG_EXTERN] = ACTIONS(2672), + [anon_sym_CG_INLINE] = ACTIONS(2672), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2672), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2672), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2672), + [anon_sym_IBOutlet] = ACTIONS(2672), + [anon_sym_IBInspectable] = ACTIONS(2672), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2672), + [anon_sym_NS_INLINE] = ACTIONS(2672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2672), + [anon_sym_OBJC_EXPORT] = ACTIONS(2672), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2672), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2672), + [anon_sym_const] = ACTIONS(2672), + [anon_sym_constexpr] = ACTIONS(2672), + [anon_sym_volatile] = ACTIONS(2672), + [anon_sym_restrict] = ACTIONS(2672), + [anon_sym___restrict__] = ACTIONS(2672), + [anon_sym__Atomic] = ACTIONS(2672), + [anon_sym__Noreturn] = ACTIONS(2672), + [anon_sym__Nonnull] = ACTIONS(2672), + [anon_sym_nullable] = ACTIONS(2672), + [anon_sym__Complex] = ACTIONS(2672), + [anon_sym__Nullable] = ACTIONS(2672), + [anon_sym__Nullable_result] = ACTIONS(2672), + [anon_sym__Null_unspecified] = ACTIONS(2672), + [anon_sym___autoreleasing] = ACTIONS(2672), + [anon_sym___block] = ACTIONS(2672), + [anon_sym___bridge] = ACTIONS(2672), + [anon_sym___bridge_retained] = ACTIONS(2672), + [anon_sym___bridge_transfer] = ACTIONS(2672), + [anon_sym___complex] = ACTIONS(2672), + [anon_sym___const] = ACTIONS(2672), + [anon_sym___imag] = ACTIONS(2672), + [anon_sym___kindof] = ACTIONS(2672), + [anon_sym___nonnull] = ACTIONS(2672), + [anon_sym___nullable] = ACTIONS(2672), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2672), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2672), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2672), + [anon_sym___real] = ACTIONS(2672), + [anon_sym___strong] = ACTIONS(2672), + [anon_sym___unsafe_unretained] = ACTIONS(2672), + [anon_sym___unused] = ACTIONS(2672), + [anon_sym___weak] = ACTIONS(2672), + [anon_sym_alignas] = ACTIONS(2672), + [anon_sym__Alignas] = ACTIONS(2672), + [sym_primitive_type] = ACTIONS(2672), + [anon_sym_enum] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_union] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_switch] = ACTIONS(2672), + [anon_sym_case] = ACTIONS(2672), + [anon_sym_default] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_do] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_in] = ACTIONS(2672), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_goto] = ACTIONS(2672), + [anon_sym_DASH_DASH] = ACTIONS(2674), + [anon_sym_PLUS_PLUS] = ACTIONS(2674), + [anon_sym_sizeof] = ACTIONS(2672), + [anon_sym___alignof__] = ACTIONS(2672), + [anon_sym___alignof] = ACTIONS(2672), + [anon_sym__alignof] = ACTIONS(2672), + [anon_sym_alignof] = ACTIONS(2672), + [anon_sym__Alignof] = ACTIONS(2672), + [anon_sym_offsetof] = ACTIONS(2672), + [anon_sym__Generic] = ACTIONS(2672), + [anon_sym_asm] = ACTIONS(2672), + [anon_sym___asm__] = ACTIONS(2672), + [anon_sym___asm] = ACTIONS(2672), + [sym_number_literal] = ACTIONS(2674), + [anon_sym_L_SQUOTE] = ACTIONS(2674), + [anon_sym_u_SQUOTE] = ACTIONS(2674), + [anon_sym_U_SQUOTE] = ACTIONS(2674), + [anon_sym_u8_SQUOTE] = ACTIONS(2674), + [anon_sym_SQUOTE] = ACTIONS(2674), + [anon_sym_AT] = ACTIONS(2672), + [anon_sym_DQUOTE] = ACTIONS(2674), + [anon_sym_L_DQUOTE] = ACTIONS(2674), + [anon_sym_u_DQUOTE] = ACTIONS(2674), + [anon_sym_U_DQUOTE] = ACTIONS(2674), + [anon_sym_u8_DQUOTE] = ACTIONS(2674), + [sym_true] = ACTIONS(2672), + [sym_false] = ACTIONS(2672), + [anon_sym_NULL] = ACTIONS(2672), + [anon_sym_nullptr] = ACTIONS(2672), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2672), + [anon_sym___typeof] = ACTIONS(2672), + [anon_sym_typeof] = ACTIONS(2672), + [anon_sym_ATimport] = ACTIONS(2674), + [aux_sym_preproc_undef_token1] = ACTIONS(2672), + [anon_sym_POUND] = ACTIONS(2672), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2672), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2672), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2672), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2672), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2672), + [anon_sym_NS_AVAILABLE] = ACTIONS(2672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2672), + [anon_sym_API_AVAILABLE] = ACTIONS(2672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2672), + [anon_sym_API_DEPRECATED] = ACTIONS(2672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2672), + [anon_sym___deprecated_msg] = ACTIONS(2672), + [anon_sym___deprecated_enum_msg] = ACTIONS(2672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2672), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2672), + [anon_sym_ATprotocol] = ACTIONS(2674), + [anon_sym_ATinterface] = ACTIONS(2674), + [anon_sym_ATimplementation] = ACTIONS(2674), + [anon_sym_ATcompatibility_alias] = ACTIONS(2674), + [anon_sym_ATsynthesize] = ACTIONS(2674), + [anon_sym_ATdynamic] = ACTIONS(2674), + [anon_sym_ATtry] = ACTIONS(2674), + [anon_sym___try] = ACTIONS(2672), + [anon_sym_ATthrow] = ACTIONS(2674), + [anon_sym_ATselector] = ACTIONS(2674), + [anon_sym_ATavailable] = ACTIONS(2674), + [anon_sym___builtin_available] = ACTIONS(2672), + [anon_sym_va_arg] = ACTIONS(2672), + [anon_sym_ATencode] = ACTIONS(2674), + [anon_sym_ATsynchronized] = ACTIONS(2674), + [anon_sym_BOOL] = ACTIONS(2672), + [anon_sym_IMP] = ACTIONS(2672), + [anon_sym_SEL] = ACTIONS(2672), + [anon_sym_Class] = ACTIONS(2672), + [anon_sym_id] = ACTIONS(2672), + }, + [502] = { + [sym_identifier] = ACTIONS(2804), + [aux_sym_preproc_include_token1] = ACTIONS(2804), + [aux_sym_preproc_include_token2] = ACTIONS(2804), + [aux_sym_preproc_def_token1] = ACTIONS(2804), + [aux_sym_preproc_if_token1] = ACTIONS(2804), + [aux_sym_preproc_if_token2] = ACTIONS(2804), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2804), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2804), + [aux_sym_preproc_else_token1] = ACTIONS(2804), + [aux_sym_preproc_elif_token1] = ACTIONS(2804), + [sym_preproc_directive] = ACTIONS(2804), + [anon_sym_LPAREN2] = ACTIONS(2806), + [anon_sym_BANG] = ACTIONS(2806), + [anon_sym_TILDE] = ACTIONS(2806), + [anon_sym_DASH] = ACTIONS(2804), + [anon_sym_PLUS] = ACTIONS(2804), + [anon_sym_STAR] = ACTIONS(2806), + [anon_sym_CARET] = ACTIONS(2806), + [anon_sym_AMP] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym___extension__] = ACTIONS(2804), + [anon_sym_typedef] = ACTIONS(2804), + [anon_sym_extern] = ACTIONS(2804), + [anon_sym___attribute__] = ACTIONS(2804), + [anon_sym___attribute] = ACTIONS(2804), + [anon_sym_noreturn] = ACTIONS(2804), + [anon_sym_LBRACK] = ACTIONS(2806), + [anon_sym___declspec] = ACTIONS(2804), + [anon_sym___cdecl] = ACTIONS(2804), + [anon_sym___clrcall] = ACTIONS(2804), + [anon_sym___stdcall] = ACTIONS(2804), + [anon_sym___fastcall] = ACTIONS(2804), + [anon_sym___thiscall] = ACTIONS(2804), + [anon_sym___vectorcall] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_signed] = ACTIONS(2804), + [anon_sym_unsigned] = ACTIONS(2804), + [anon_sym_long] = ACTIONS(2804), + [anon_sym_short] = ACTIONS(2804), + [anon_sym_static] = ACTIONS(2804), + [anon_sym_ATautoreleasepool] = ACTIONS(2806), + [anon_sym_auto] = ACTIONS(2804), + [anon_sym_register] = ACTIONS(2804), + [anon_sym_inline] = ACTIONS(2804), + [anon_sym___inline] = ACTIONS(2804), + [anon_sym___inline__] = ACTIONS(2804), + [anon_sym___forceinline] = ACTIONS(2804), + [anon_sym_thread_local] = ACTIONS(2804), + [anon_sym___thread] = ACTIONS(2804), + [anon_sym_CG_EXTERN] = ACTIONS(2804), + [anon_sym_CG_INLINE] = ACTIONS(2804), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2804), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2804), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2804), + [anon_sym_IBOutlet] = ACTIONS(2804), + [anon_sym_IBInspectable] = ACTIONS(2804), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2804), + [anon_sym_NS_INLINE] = ACTIONS(2804), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2804), + [anon_sym_OBJC_EXPORT] = ACTIONS(2804), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2804), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2804), + [anon_sym_const] = ACTIONS(2804), + [anon_sym_constexpr] = ACTIONS(2804), + [anon_sym_volatile] = ACTIONS(2804), + [anon_sym_restrict] = ACTIONS(2804), + [anon_sym___restrict__] = ACTIONS(2804), + [anon_sym__Atomic] = ACTIONS(2804), + [anon_sym__Noreturn] = ACTIONS(2804), + [anon_sym__Nonnull] = ACTIONS(2804), + [anon_sym_nullable] = ACTIONS(2804), + [anon_sym__Complex] = ACTIONS(2804), + [anon_sym__Nullable] = ACTIONS(2804), + [anon_sym__Nullable_result] = ACTIONS(2804), + [anon_sym__Null_unspecified] = ACTIONS(2804), + [anon_sym___autoreleasing] = ACTIONS(2804), + [anon_sym___block] = ACTIONS(2804), + [anon_sym___bridge] = ACTIONS(2804), + [anon_sym___bridge_retained] = ACTIONS(2804), + [anon_sym___bridge_transfer] = ACTIONS(2804), + [anon_sym___complex] = ACTIONS(2804), + [anon_sym___const] = ACTIONS(2804), + [anon_sym___imag] = ACTIONS(2804), + [anon_sym___kindof] = ACTIONS(2804), + [anon_sym___nonnull] = ACTIONS(2804), + [anon_sym___nullable] = ACTIONS(2804), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2804), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2804), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2804), + [anon_sym___real] = ACTIONS(2804), + [anon_sym___strong] = ACTIONS(2804), + [anon_sym___unsafe_unretained] = ACTIONS(2804), + [anon_sym___unused] = ACTIONS(2804), + [anon_sym___weak] = ACTIONS(2804), + [anon_sym_alignas] = ACTIONS(2804), + [anon_sym__Alignas] = ACTIONS(2804), + [sym_primitive_type] = ACTIONS(2804), + [anon_sym_enum] = ACTIONS(2804), + [anon_sym_struct] = ACTIONS(2804), + [anon_sym_union] = ACTIONS(2804), + [anon_sym_if] = ACTIONS(2804), + [anon_sym_switch] = ACTIONS(2804), + [anon_sym_case] = ACTIONS(2804), + [anon_sym_default] = ACTIONS(2804), + [anon_sym_while] = ACTIONS(2804), + [anon_sym_do] = ACTIONS(2804), + [anon_sym_for] = ACTIONS(2804), + [anon_sym_in] = ACTIONS(2804), + [anon_sym_return] = ACTIONS(2804), + [anon_sym_break] = ACTIONS(2804), + [anon_sym_continue] = ACTIONS(2804), + [anon_sym_goto] = ACTIONS(2804), + [anon_sym_DASH_DASH] = ACTIONS(2806), + [anon_sym_PLUS_PLUS] = ACTIONS(2806), + [anon_sym_sizeof] = ACTIONS(2804), + [anon_sym___alignof__] = ACTIONS(2804), + [anon_sym___alignof] = ACTIONS(2804), + [anon_sym__alignof] = ACTIONS(2804), + [anon_sym_alignof] = ACTIONS(2804), + [anon_sym__Alignof] = ACTIONS(2804), + [anon_sym_offsetof] = ACTIONS(2804), + [anon_sym__Generic] = ACTIONS(2804), + [anon_sym_asm] = ACTIONS(2804), + [anon_sym___asm__] = ACTIONS(2804), + [anon_sym___asm] = ACTIONS(2804), + [sym_number_literal] = ACTIONS(2806), + [anon_sym_L_SQUOTE] = ACTIONS(2806), + [anon_sym_u_SQUOTE] = ACTIONS(2806), + [anon_sym_U_SQUOTE] = ACTIONS(2806), + [anon_sym_u8_SQUOTE] = ACTIONS(2806), + [anon_sym_SQUOTE] = ACTIONS(2806), + [anon_sym_AT] = ACTIONS(2804), + [anon_sym_DQUOTE] = ACTIONS(2806), + [anon_sym_L_DQUOTE] = ACTIONS(2806), + [anon_sym_u_DQUOTE] = ACTIONS(2806), + [anon_sym_U_DQUOTE] = ACTIONS(2806), + [anon_sym_u8_DQUOTE] = ACTIONS(2806), + [sym_true] = ACTIONS(2804), + [sym_false] = ACTIONS(2804), + [anon_sym_NULL] = ACTIONS(2804), + [anon_sym_nullptr] = ACTIONS(2804), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2804), + [anon_sym___typeof] = ACTIONS(2804), + [anon_sym_typeof] = ACTIONS(2804), + [anon_sym_ATimport] = ACTIONS(2806), + [aux_sym_preproc_undef_token1] = ACTIONS(2804), + [anon_sym_POUND] = ACTIONS(2804), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2804), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2804), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2804), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2804), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2804), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2804), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2804), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2804), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2804), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2804), + [anon_sym_NS_AVAILABLE] = ACTIONS(2804), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2804), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2804), + [anon_sym_API_AVAILABLE] = ACTIONS(2804), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2804), + [anon_sym_API_DEPRECATED] = ACTIONS(2804), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2804), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2804), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2804), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2804), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2804), + [anon_sym___deprecated_msg] = ACTIONS(2804), + [anon_sym___deprecated_enum_msg] = ACTIONS(2804), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2804), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2804), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2804), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2804), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2804), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2804), + [anon_sym_ATprotocol] = ACTIONS(2806), + [anon_sym_ATinterface] = ACTIONS(2806), + [anon_sym_ATimplementation] = ACTIONS(2806), + [anon_sym_ATcompatibility_alias] = ACTIONS(2806), + [anon_sym_ATsynthesize] = ACTIONS(2806), + [anon_sym_ATdynamic] = ACTIONS(2806), + [anon_sym_ATtry] = ACTIONS(2806), + [anon_sym___try] = ACTIONS(2804), + [anon_sym_ATthrow] = ACTIONS(2806), + [anon_sym_ATselector] = ACTIONS(2806), + [anon_sym_ATavailable] = ACTIONS(2806), + [anon_sym___builtin_available] = ACTIONS(2804), + [anon_sym_va_arg] = ACTIONS(2804), + [anon_sym_ATencode] = ACTIONS(2806), + [anon_sym_ATsynchronized] = ACTIONS(2806), + [anon_sym_BOOL] = ACTIONS(2804), + [anon_sym_IMP] = ACTIONS(2804), + [anon_sym_SEL] = ACTIONS(2804), + [anon_sym_Class] = ACTIONS(2804), + [anon_sym_id] = ACTIONS(2804), + }, + [503] = { + [sym_identifier] = ACTIONS(2808), + [aux_sym_preproc_include_token1] = ACTIONS(2808), + [aux_sym_preproc_include_token2] = ACTIONS(2808), + [aux_sym_preproc_def_token1] = ACTIONS(2808), + [aux_sym_preproc_if_token1] = ACTIONS(2808), + [aux_sym_preproc_if_token2] = ACTIONS(2808), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2808), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2808), + [aux_sym_preproc_else_token1] = ACTIONS(2808), + [aux_sym_preproc_elif_token1] = ACTIONS(2808), + [sym_preproc_directive] = ACTIONS(2808), + [anon_sym_LPAREN2] = ACTIONS(2810), + [anon_sym_BANG] = ACTIONS(2810), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2808), + [anon_sym_STAR] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym___extension__] = ACTIONS(2808), + [anon_sym_typedef] = ACTIONS(2808), + [anon_sym_extern] = ACTIONS(2808), + [anon_sym___attribute__] = ACTIONS(2808), + [anon_sym___attribute] = ACTIONS(2808), + [anon_sym_noreturn] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2810), + [anon_sym___declspec] = ACTIONS(2808), + [anon_sym___cdecl] = ACTIONS(2808), + [anon_sym___clrcall] = ACTIONS(2808), + [anon_sym___stdcall] = ACTIONS(2808), + [anon_sym___fastcall] = ACTIONS(2808), + [anon_sym___thiscall] = ACTIONS(2808), + [anon_sym___vectorcall] = ACTIONS(2808), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_signed] = ACTIONS(2808), + [anon_sym_unsigned] = ACTIONS(2808), + [anon_sym_long] = ACTIONS(2808), + [anon_sym_short] = ACTIONS(2808), + [anon_sym_static] = ACTIONS(2808), + [anon_sym_ATautoreleasepool] = ACTIONS(2810), + [anon_sym_auto] = ACTIONS(2808), + [anon_sym_register] = ACTIONS(2808), + [anon_sym_inline] = ACTIONS(2808), + [anon_sym___inline] = ACTIONS(2808), + [anon_sym___inline__] = ACTIONS(2808), + [anon_sym___forceinline] = ACTIONS(2808), + [anon_sym_thread_local] = ACTIONS(2808), + [anon_sym___thread] = ACTIONS(2808), + [anon_sym_CG_EXTERN] = ACTIONS(2808), + [anon_sym_CG_INLINE] = ACTIONS(2808), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2808), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2808), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2808), + [anon_sym_IBOutlet] = ACTIONS(2808), + [anon_sym_IBInspectable] = ACTIONS(2808), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2808), + [anon_sym_NS_INLINE] = ACTIONS(2808), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2808), + [anon_sym_OBJC_EXPORT] = ACTIONS(2808), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2808), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2808), + [anon_sym_const] = ACTIONS(2808), + [anon_sym_constexpr] = ACTIONS(2808), + [anon_sym_volatile] = ACTIONS(2808), + [anon_sym_restrict] = ACTIONS(2808), + [anon_sym___restrict__] = ACTIONS(2808), + [anon_sym__Atomic] = ACTIONS(2808), + [anon_sym__Noreturn] = ACTIONS(2808), + [anon_sym__Nonnull] = ACTIONS(2808), + [anon_sym_nullable] = ACTIONS(2808), + [anon_sym__Complex] = ACTIONS(2808), + [anon_sym__Nullable] = ACTIONS(2808), + [anon_sym__Nullable_result] = ACTIONS(2808), + [anon_sym__Null_unspecified] = ACTIONS(2808), + [anon_sym___autoreleasing] = ACTIONS(2808), + [anon_sym___block] = ACTIONS(2808), + [anon_sym___bridge] = ACTIONS(2808), + [anon_sym___bridge_retained] = ACTIONS(2808), + [anon_sym___bridge_transfer] = ACTIONS(2808), + [anon_sym___complex] = ACTIONS(2808), + [anon_sym___const] = ACTIONS(2808), + [anon_sym___imag] = ACTIONS(2808), + [anon_sym___kindof] = ACTIONS(2808), + [anon_sym___nonnull] = ACTIONS(2808), + [anon_sym___nullable] = ACTIONS(2808), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2808), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2808), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2808), + [anon_sym___real] = ACTIONS(2808), + [anon_sym___strong] = ACTIONS(2808), + [anon_sym___unsafe_unretained] = ACTIONS(2808), + [anon_sym___unused] = ACTIONS(2808), + [anon_sym___weak] = ACTIONS(2808), + [anon_sym_alignas] = ACTIONS(2808), + [anon_sym__Alignas] = ACTIONS(2808), + [sym_primitive_type] = ACTIONS(2808), + [anon_sym_enum] = ACTIONS(2808), + [anon_sym_struct] = ACTIONS(2808), + [anon_sym_union] = ACTIONS(2808), + [anon_sym_if] = ACTIONS(2808), + [anon_sym_switch] = ACTIONS(2808), + [anon_sym_case] = ACTIONS(2808), + [anon_sym_default] = ACTIONS(2808), + [anon_sym_while] = ACTIONS(2808), + [anon_sym_do] = ACTIONS(2808), + [anon_sym_for] = ACTIONS(2808), + [anon_sym_in] = ACTIONS(2808), + [anon_sym_return] = ACTIONS(2808), + [anon_sym_break] = ACTIONS(2808), + [anon_sym_continue] = ACTIONS(2808), + [anon_sym_goto] = ACTIONS(2808), + [anon_sym_DASH_DASH] = ACTIONS(2810), + [anon_sym_PLUS_PLUS] = ACTIONS(2810), + [anon_sym_sizeof] = ACTIONS(2808), + [anon_sym___alignof__] = ACTIONS(2808), + [anon_sym___alignof] = ACTIONS(2808), + [anon_sym__alignof] = ACTIONS(2808), + [anon_sym_alignof] = ACTIONS(2808), + [anon_sym__Alignof] = ACTIONS(2808), + [anon_sym_offsetof] = ACTIONS(2808), + [anon_sym__Generic] = ACTIONS(2808), + [anon_sym_asm] = ACTIONS(2808), + [anon_sym___asm__] = ACTIONS(2808), + [anon_sym___asm] = ACTIONS(2808), + [sym_number_literal] = ACTIONS(2810), + [anon_sym_L_SQUOTE] = ACTIONS(2810), + [anon_sym_u_SQUOTE] = ACTIONS(2810), + [anon_sym_U_SQUOTE] = ACTIONS(2810), + [anon_sym_u8_SQUOTE] = ACTIONS(2810), + [anon_sym_SQUOTE] = ACTIONS(2810), + [anon_sym_AT] = ACTIONS(2808), + [anon_sym_DQUOTE] = ACTIONS(2810), + [anon_sym_L_DQUOTE] = ACTIONS(2810), + [anon_sym_u_DQUOTE] = ACTIONS(2810), + [anon_sym_U_DQUOTE] = ACTIONS(2810), + [anon_sym_u8_DQUOTE] = ACTIONS(2810), + [sym_true] = ACTIONS(2808), + [sym_false] = ACTIONS(2808), + [anon_sym_NULL] = ACTIONS(2808), + [anon_sym_nullptr] = ACTIONS(2808), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2808), + [anon_sym___typeof] = ACTIONS(2808), + [anon_sym_typeof] = ACTIONS(2808), + [anon_sym_ATimport] = ACTIONS(2810), + [aux_sym_preproc_undef_token1] = ACTIONS(2808), + [anon_sym_POUND] = ACTIONS(2808), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2808), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2808), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2808), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2808), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2808), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2808), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2808), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2808), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2808), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2808), + [anon_sym_NS_AVAILABLE] = ACTIONS(2808), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2808), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2808), + [anon_sym_API_AVAILABLE] = ACTIONS(2808), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2808), + [anon_sym_API_DEPRECATED] = ACTIONS(2808), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2808), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2808), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2808), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2808), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2808), + [anon_sym___deprecated_msg] = ACTIONS(2808), + [anon_sym___deprecated_enum_msg] = ACTIONS(2808), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2808), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2808), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2808), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2808), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2808), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2808), + [anon_sym_ATprotocol] = ACTIONS(2810), + [anon_sym_ATinterface] = ACTIONS(2810), + [anon_sym_ATimplementation] = ACTIONS(2810), + [anon_sym_ATcompatibility_alias] = ACTIONS(2810), + [anon_sym_ATsynthesize] = ACTIONS(2810), + [anon_sym_ATdynamic] = ACTIONS(2810), + [anon_sym_ATtry] = ACTIONS(2810), + [anon_sym___try] = ACTIONS(2808), + [anon_sym_ATthrow] = ACTIONS(2810), + [anon_sym_ATselector] = ACTIONS(2810), + [anon_sym_ATavailable] = ACTIONS(2810), + [anon_sym___builtin_available] = ACTIONS(2808), + [anon_sym_va_arg] = ACTIONS(2808), + [anon_sym_ATencode] = ACTIONS(2810), + [anon_sym_ATsynchronized] = ACTIONS(2810), + [anon_sym_BOOL] = ACTIONS(2808), + [anon_sym_IMP] = ACTIONS(2808), + [anon_sym_SEL] = ACTIONS(2808), + [anon_sym_Class] = ACTIONS(2808), + [anon_sym_id] = ACTIONS(2808), + }, + [504] = { + [sym_identifier] = ACTIONS(2812), + [aux_sym_preproc_include_token1] = ACTIONS(2812), + [aux_sym_preproc_include_token2] = ACTIONS(2812), + [aux_sym_preproc_def_token1] = ACTIONS(2812), + [aux_sym_preproc_if_token1] = ACTIONS(2812), + [aux_sym_preproc_if_token2] = ACTIONS(2812), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2812), + [aux_sym_preproc_else_token1] = ACTIONS(2812), + [aux_sym_preproc_elif_token1] = ACTIONS(2812), + [sym_preproc_directive] = ACTIONS(2812), + [anon_sym_LPAREN2] = ACTIONS(2814), + [anon_sym_BANG] = ACTIONS(2814), + [anon_sym_TILDE] = ACTIONS(2814), + [anon_sym_DASH] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_CARET] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2814), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym___extension__] = ACTIONS(2812), + [anon_sym_typedef] = ACTIONS(2812), + [anon_sym_extern] = ACTIONS(2812), + [anon_sym___attribute__] = ACTIONS(2812), + [anon_sym___attribute] = ACTIONS(2812), + [anon_sym_noreturn] = ACTIONS(2812), + [anon_sym_LBRACK] = ACTIONS(2814), + [anon_sym___declspec] = ACTIONS(2812), + [anon_sym___cdecl] = ACTIONS(2812), + [anon_sym___clrcall] = ACTIONS(2812), + [anon_sym___stdcall] = ACTIONS(2812), + [anon_sym___fastcall] = ACTIONS(2812), + [anon_sym___thiscall] = ACTIONS(2812), + [anon_sym___vectorcall] = ACTIONS(2812), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_signed] = ACTIONS(2812), + [anon_sym_unsigned] = ACTIONS(2812), + [anon_sym_long] = ACTIONS(2812), + [anon_sym_short] = ACTIONS(2812), + [anon_sym_static] = ACTIONS(2812), + [anon_sym_ATautoreleasepool] = ACTIONS(2814), + [anon_sym_auto] = ACTIONS(2812), + [anon_sym_register] = ACTIONS(2812), + [anon_sym_inline] = ACTIONS(2812), + [anon_sym___inline] = ACTIONS(2812), + [anon_sym___inline__] = ACTIONS(2812), + [anon_sym___forceinline] = ACTIONS(2812), + [anon_sym_thread_local] = ACTIONS(2812), + [anon_sym___thread] = ACTIONS(2812), + [anon_sym_CG_EXTERN] = ACTIONS(2812), + [anon_sym_CG_INLINE] = ACTIONS(2812), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2812), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2812), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2812), + [anon_sym_IBOutlet] = ACTIONS(2812), + [anon_sym_IBInspectable] = ACTIONS(2812), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2812), + [anon_sym_NS_INLINE] = ACTIONS(2812), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2812), + [anon_sym_OBJC_EXPORT] = ACTIONS(2812), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2812), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2812), + [anon_sym_const] = ACTIONS(2812), + [anon_sym_constexpr] = ACTIONS(2812), + [anon_sym_volatile] = ACTIONS(2812), + [anon_sym_restrict] = ACTIONS(2812), + [anon_sym___restrict__] = ACTIONS(2812), + [anon_sym__Atomic] = ACTIONS(2812), + [anon_sym__Noreturn] = ACTIONS(2812), + [anon_sym__Nonnull] = ACTIONS(2812), + [anon_sym_nullable] = ACTIONS(2812), + [anon_sym__Complex] = ACTIONS(2812), + [anon_sym__Nullable] = ACTIONS(2812), + [anon_sym__Nullable_result] = ACTIONS(2812), + [anon_sym__Null_unspecified] = ACTIONS(2812), + [anon_sym___autoreleasing] = ACTIONS(2812), + [anon_sym___block] = ACTIONS(2812), + [anon_sym___bridge] = ACTIONS(2812), + [anon_sym___bridge_retained] = ACTIONS(2812), + [anon_sym___bridge_transfer] = ACTIONS(2812), + [anon_sym___complex] = ACTIONS(2812), + [anon_sym___const] = ACTIONS(2812), + [anon_sym___imag] = ACTIONS(2812), + [anon_sym___kindof] = ACTIONS(2812), + [anon_sym___nonnull] = ACTIONS(2812), + [anon_sym___nullable] = ACTIONS(2812), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2812), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2812), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2812), + [anon_sym___real] = ACTIONS(2812), + [anon_sym___strong] = ACTIONS(2812), + [anon_sym___unsafe_unretained] = ACTIONS(2812), + [anon_sym___unused] = ACTIONS(2812), + [anon_sym___weak] = ACTIONS(2812), + [anon_sym_alignas] = ACTIONS(2812), + [anon_sym__Alignas] = ACTIONS(2812), + [sym_primitive_type] = ACTIONS(2812), + [anon_sym_enum] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2812), + [anon_sym_union] = ACTIONS(2812), + [anon_sym_if] = ACTIONS(2812), + [anon_sym_switch] = ACTIONS(2812), + [anon_sym_case] = ACTIONS(2812), + [anon_sym_default] = ACTIONS(2812), + [anon_sym_while] = ACTIONS(2812), + [anon_sym_do] = ACTIONS(2812), + [anon_sym_for] = ACTIONS(2812), + [anon_sym_in] = ACTIONS(2812), + [anon_sym_return] = ACTIONS(2812), + [anon_sym_break] = ACTIONS(2812), + [anon_sym_continue] = ACTIONS(2812), + [anon_sym_goto] = ACTIONS(2812), + [anon_sym_DASH_DASH] = ACTIONS(2814), + [anon_sym_PLUS_PLUS] = ACTIONS(2814), + [anon_sym_sizeof] = ACTIONS(2812), + [anon_sym___alignof__] = ACTIONS(2812), + [anon_sym___alignof] = ACTIONS(2812), + [anon_sym__alignof] = ACTIONS(2812), + [anon_sym_alignof] = ACTIONS(2812), + [anon_sym__Alignof] = ACTIONS(2812), + [anon_sym_offsetof] = ACTIONS(2812), + [anon_sym__Generic] = ACTIONS(2812), + [anon_sym_asm] = ACTIONS(2812), + [anon_sym___asm__] = ACTIONS(2812), + [anon_sym___asm] = ACTIONS(2812), + [sym_number_literal] = ACTIONS(2814), + [anon_sym_L_SQUOTE] = ACTIONS(2814), + [anon_sym_u_SQUOTE] = ACTIONS(2814), + [anon_sym_U_SQUOTE] = ACTIONS(2814), + [anon_sym_u8_SQUOTE] = ACTIONS(2814), + [anon_sym_SQUOTE] = ACTIONS(2814), + [anon_sym_AT] = ACTIONS(2812), + [anon_sym_DQUOTE] = ACTIONS(2814), + [anon_sym_L_DQUOTE] = ACTIONS(2814), + [anon_sym_u_DQUOTE] = ACTIONS(2814), + [anon_sym_U_DQUOTE] = ACTIONS(2814), + [anon_sym_u8_DQUOTE] = ACTIONS(2814), + [sym_true] = ACTIONS(2812), + [sym_false] = ACTIONS(2812), + [anon_sym_NULL] = ACTIONS(2812), + [anon_sym_nullptr] = ACTIONS(2812), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2812), + [anon_sym___typeof] = ACTIONS(2812), + [anon_sym_typeof] = ACTIONS(2812), + [anon_sym_ATimport] = ACTIONS(2814), + [aux_sym_preproc_undef_token1] = ACTIONS(2812), + [anon_sym_POUND] = ACTIONS(2812), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2812), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2812), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2812), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2812), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2812), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2812), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2812), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2812), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2812), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2812), + [anon_sym_NS_AVAILABLE] = ACTIONS(2812), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2812), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2812), + [anon_sym_API_AVAILABLE] = ACTIONS(2812), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2812), + [anon_sym_API_DEPRECATED] = ACTIONS(2812), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2812), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2812), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2812), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2812), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2812), + [anon_sym___deprecated_msg] = ACTIONS(2812), + [anon_sym___deprecated_enum_msg] = ACTIONS(2812), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2812), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2812), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2812), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2812), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2812), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2812), + [anon_sym_ATprotocol] = ACTIONS(2814), + [anon_sym_ATinterface] = ACTIONS(2814), + [anon_sym_ATimplementation] = ACTIONS(2814), + [anon_sym_ATcompatibility_alias] = ACTIONS(2814), + [anon_sym_ATsynthesize] = ACTIONS(2814), + [anon_sym_ATdynamic] = ACTIONS(2814), + [anon_sym_ATtry] = ACTIONS(2814), + [anon_sym___try] = ACTIONS(2812), + [anon_sym_ATthrow] = ACTIONS(2814), + [anon_sym_ATselector] = ACTIONS(2814), + [anon_sym_ATavailable] = ACTIONS(2814), + [anon_sym___builtin_available] = ACTIONS(2812), + [anon_sym_va_arg] = ACTIONS(2812), + [anon_sym_ATencode] = ACTIONS(2814), + [anon_sym_ATsynchronized] = ACTIONS(2814), + [anon_sym_BOOL] = ACTIONS(2812), + [anon_sym_IMP] = ACTIONS(2812), + [anon_sym_SEL] = ACTIONS(2812), + [anon_sym_Class] = ACTIONS(2812), + [anon_sym_id] = ACTIONS(2812), + }, + [505] = { + [sym_identifier] = ACTIONS(2816), + [aux_sym_preproc_include_token1] = ACTIONS(2816), + [aux_sym_preproc_include_token2] = ACTIONS(2816), + [aux_sym_preproc_def_token1] = ACTIONS(2816), + [aux_sym_preproc_if_token1] = ACTIONS(2816), + [aux_sym_preproc_if_token2] = ACTIONS(2816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2816), + [aux_sym_preproc_else_token1] = ACTIONS(2816), + [aux_sym_preproc_elif_token1] = ACTIONS(2816), + [sym_preproc_directive] = ACTIONS(2816), + [anon_sym_LPAREN2] = ACTIONS(2818), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_TILDE] = ACTIONS(2818), + [anon_sym_DASH] = ACTIONS(2816), + [anon_sym_PLUS] = ACTIONS(2816), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_CARET] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym___extension__] = ACTIONS(2816), + [anon_sym_typedef] = ACTIONS(2816), + [anon_sym_extern] = ACTIONS(2816), + [anon_sym___attribute__] = ACTIONS(2816), + [anon_sym___attribute] = ACTIONS(2816), + [anon_sym_noreturn] = ACTIONS(2816), + [anon_sym_LBRACK] = ACTIONS(2818), + [anon_sym___declspec] = ACTIONS(2816), + [anon_sym___cdecl] = ACTIONS(2816), + [anon_sym___clrcall] = ACTIONS(2816), + [anon_sym___stdcall] = ACTIONS(2816), + [anon_sym___fastcall] = ACTIONS(2816), + [anon_sym___thiscall] = ACTIONS(2816), + [anon_sym___vectorcall] = ACTIONS(2816), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_signed] = ACTIONS(2816), + [anon_sym_unsigned] = ACTIONS(2816), + [anon_sym_long] = ACTIONS(2816), + [anon_sym_short] = ACTIONS(2816), + [anon_sym_static] = ACTIONS(2816), + [anon_sym_ATautoreleasepool] = ACTIONS(2818), + [anon_sym_auto] = ACTIONS(2816), + [anon_sym_register] = ACTIONS(2816), + [anon_sym_inline] = ACTIONS(2816), + [anon_sym___inline] = ACTIONS(2816), + [anon_sym___inline__] = ACTIONS(2816), + [anon_sym___forceinline] = ACTIONS(2816), + [anon_sym_thread_local] = ACTIONS(2816), + [anon_sym___thread] = ACTIONS(2816), + [anon_sym_CG_EXTERN] = ACTIONS(2816), + [anon_sym_CG_INLINE] = ACTIONS(2816), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2816), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2816), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2816), + [anon_sym_IBOutlet] = ACTIONS(2816), + [anon_sym_IBInspectable] = ACTIONS(2816), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2816), + [anon_sym_NS_INLINE] = ACTIONS(2816), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2816), + [anon_sym_OBJC_EXPORT] = ACTIONS(2816), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2816), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2816), + [anon_sym_const] = ACTIONS(2816), + [anon_sym_constexpr] = ACTIONS(2816), + [anon_sym_volatile] = ACTIONS(2816), + [anon_sym_restrict] = ACTIONS(2816), + [anon_sym___restrict__] = ACTIONS(2816), + [anon_sym__Atomic] = ACTIONS(2816), + [anon_sym__Noreturn] = ACTIONS(2816), + [anon_sym__Nonnull] = ACTIONS(2816), + [anon_sym_nullable] = ACTIONS(2816), + [anon_sym__Complex] = ACTIONS(2816), + [anon_sym__Nullable] = ACTIONS(2816), + [anon_sym__Nullable_result] = ACTIONS(2816), + [anon_sym__Null_unspecified] = ACTIONS(2816), + [anon_sym___autoreleasing] = ACTIONS(2816), + [anon_sym___block] = ACTIONS(2816), + [anon_sym___bridge] = ACTIONS(2816), + [anon_sym___bridge_retained] = ACTIONS(2816), + [anon_sym___bridge_transfer] = ACTIONS(2816), + [anon_sym___complex] = ACTIONS(2816), + [anon_sym___const] = ACTIONS(2816), + [anon_sym___imag] = ACTIONS(2816), + [anon_sym___kindof] = ACTIONS(2816), + [anon_sym___nonnull] = ACTIONS(2816), + [anon_sym___nullable] = ACTIONS(2816), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2816), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2816), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2816), + [anon_sym___real] = ACTIONS(2816), + [anon_sym___strong] = ACTIONS(2816), + [anon_sym___unsafe_unretained] = ACTIONS(2816), + [anon_sym___unused] = ACTIONS(2816), + [anon_sym___weak] = ACTIONS(2816), + [anon_sym_alignas] = ACTIONS(2816), + [anon_sym__Alignas] = ACTIONS(2816), + [sym_primitive_type] = ACTIONS(2816), + [anon_sym_enum] = ACTIONS(2816), + [anon_sym_struct] = ACTIONS(2816), + [anon_sym_union] = ACTIONS(2816), + [anon_sym_if] = ACTIONS(2816), + [anon_sym_switch] = ACTIONS(2816), + [anon_sym_case] = ACTIONS(2816), + [anon_sym_default] = ACTIONS(2816), + [anon_sym_while] = ACTIONS(2816), + [anon_sym_do] = ACTIONS(2816), + [anon_sym_for] = ACTIONS(2816), + [anon_sym_in] = ACTIONS(2816), + [anon_sym_return] = ACTIONS(2816), + [anon_sym_break] = ACTIONS(2816), + [anon_sym_continue] = ACTIONS(2816), + [anon_sym_goto] = ACTIONS(2816), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_sizeof] = ACTIONS(2816), + [anon_sym___alignof__] = ACTIONS(2816), + [anon_sym___alignof] = ACTIONS(2816), + [anon_sym__alignof] = ACTIONS(2816), + [anon_sym_alignof] = ACTIONS(2816), + [anon_sym__Alignof] = ACTIONS(2816), + [anon_sym_offsetof] = ACTIONS(2816), + [anon_sym__Generic] = ACTIONS(2816), + [anon_sym_asm] = ACTIONS(2816), + [anon_sym___asm__] = ACTIONS(2816), + [anon_sym___asm] = ACTIONS(2816), + [sym_number_literal] = ACTIONS(2818), + [anon_sym_L_SQUOTE] = ACTIONS(2818), + [anon_sym_u_SQUOTE] = ACTIONS(2818), + [anon_sym_U_SQUOTE] = ACTIONS(2818), + [anon_sym_u8_SQUOTE] = ACTIONS(2818), + [anon_sym_SQUOTE] = ACTIONS(2818), + [anon_sym_AT] = ACTIONS(2816), + [anon_sym_DQUOTE] = ACTIONS(2818), + [anon_sym_L_DQUOTE] = ACTIONS(2818), + [anon_sym_u_DQUOTE] = ACTIONS(2818), + [anon_sym_U_DQUOTE] = ACTIONS(2818), + [anon_sym_u8_DQUOTE] = ACTIONS(2818), + [sym_true] = ACTIONS(2816), + [sym_false] = ACTIONS(2816), + [anon_sym_NULL] = ACTIONS(2816), + [anon_sym_nullptr] = ACTIONS(2816), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2816), + [anon_sym___typeof] = ACTIONS(2816), + [anon_sym_typeof] = ACTIONS(2816), + [anon_sym_ATimport] = ACTIONS(2818), + [aux_sym_preproc_undef_token1] = ACTIONS(2816), + [anon_sym_POUND] = ACTIONS(2816), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2816), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2816), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2816), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2816), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2816), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2816), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2816), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2816), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2816), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2816), + [anon_sym_NS_AVAILABLE] = ACTIONS(2816), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2816), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2816), + [anon_sym_API_AVAILABLE] = ACTIONS(2816), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2816), + [anon_sym_API_DEPRECATED] = ACTIONS(2816), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2816), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2816), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2816), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2816), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2816), + [anon_sym___deprecated_msg] = ACTIONS(2816), + [anon_sym___deprecated_enum_msg] = ACTIONS(2816), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2816), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2816), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2816), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2816), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2816), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2816), + [anon_sym_ATprotocol] = ACTIONS(2818), + [anon_sym_ATinterface] = ACTIONS(2818), + [anon_sym_ATimplementation] = ACTIONS(2818), + [anon_sym_ATcompatibility_alias] = ACTIONS(2818), + [anon_sym_ATsynthesize] = ACTIONS(2818), + [anon_sym_ATdynamic] = ACTIONS(2818), + [anon_sym_ATtry] = ACTIONS(2818), + [anon_sym___try] = ACTIONS(2816), + [anon_sym_ATthrow] = ACTIONS(2818), + [anon_sym_ATselector] = ACTIONS(2818), + [anon_sym_ATavailable] = ACTIONS(2818), + [anon_sym___builtin_available] = ACTIONS(2816), + [anon_sym_va_arg] = ACTIONS(2816), + [anon_sym_ATencode] = ACTIONS(2818), + [anon_sym_ATsynchronized] = ACTIONS(2818), + [anon_sym_BOOL] = ACTIONS(2816), + [anon_sym_IMP] = ACTIONS(2816), + [anon_sym_SEL] = ACTIONS(2816), + [anon_sym_Class] = ACTIONS(2816), + [anon_sym_id] = ACTIONS(2816), + }, + [506] = { + [sym_identifier] = ACTIONS(2700), + [aux_sym_preproc_include_token1] = ACTIONS(2700), + [aux_sym_preproc_include_token2] = ACTIONS(2700), + [aux_sym_preproc_def_token1] = ACTIONS(2700), + [aux_sym_preproc_if_token1] = ACTIONS(2700), + [aux_sym_preproc_if_token2] = ACTIONS(2700), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2700), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2700), + [aux_sym_preproc_else_token1] = ACTIONS(2700), + [aux_sym_preproc_elif_token1] = ACTIONS(2700), + [sym_preproc_directive] = ACTIONS(2700), + [anon_sym_LPAREN2] = ACTIONS(2702), + [anon_sym_BANG] = ACTIONS(2702), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_STAR] = ACTIONS(2702), + [anon_sym_CARET] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2702), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym___extension__] = ACTIONS(2700), + [anon_sym_typedef] = ACTIONS(2700), + [anon_sym_extern] = ACTIONS(2700), + [anon_sym___attribute__] = ACTIONS(2700), + [anon_sym___attribute] = ACTIONS(2700), + [anon_sym_noreturn] = ACTIONS(2700), + [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym___declspec] = ACTIONS(2700), + [anon_sym___cdecl] = ACTIONS(2700), + [anon_sym___clrcall] = ACTIONS(2700), + [anon_sym___stdcall] = ACTIONS(2700), + [anon_sym___fastcall] = ACTIONS(2700), + [anon_sym___thiscall] = ACTIONS(2700), + [anon_sym___vectorcall] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_signed] = ACTIONS(2700), + [anon_sym_unsigned] = ACTIONS(2700), + [anon_sym_long] = ACTIONS(2700), + [anon_sym_short] = ACTIONS(2700), + [anon_sym_static] = ACTIONS(2700), + [anon_sym_ATautoreleasepool] = ACTIONS(2702), + [anon_sym_auto] = ACTIONS(2700), + [anon_sym_register] = ACTIONS(2700), + [anon_sym_inline] = ACTIONS(2700), + [anon_sym___inline] = ACTIONS(2700), + [anon_sym___inline__] = ACTIONS(2700), + [anon_sym___forceinline] = ACTIONS(2700), + [anon_sym_thread_local] = ACTIONS(2700), + [anon_sym___thread] = ACTIONS(2700), + [anon_sym_CG_EXTERN] = ACTIONS(2700), + [anon_sym_CG_INLINE] = ACTIONS(2700), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2700), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2700), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2700), + [anon_sym_IBOutlet] = ACTIONS(2700), + [anon_sym_IBInspectable] = ACTIONS(2700), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2700), + [anon_sym_NS_INLINE] = ACTIONS(2700), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2700), + [anon_sym_OBJC_EXPORT] = ACTIONS(2700), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2700), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2700), + [anon_sym_const] = ACTIONS(2700), + [anon_sym_constexpr] = ACTIONS(2700), + [anon_sym_volatile] = ACTIONS(2700), + [anon_sym_restrict] = ACTIONS(2700), + [anon_sym___restrict__] = ACTIONS(2700), + [anon_sym__Atomic] = ACTIONS(2700), + [anon_sym__Noreturn] = ACTIONS(2700), + [anon_sym__Nonnull] = ACTIONS(2700), + [anon_sym_nullable] = ACTIONS(2700), + [anon_sym__Complex] = ACTIONS(2700), + [anon_sym__Nullable] = ACTIONS(2700), + [anon_sym__Nullable_result] = ACTIONS(2700), + [anon_sym__Null_unspecified] = ACTIONS(2700), + [anon_sym___autoreleasing] = ACTIONS(2700), + [anon_sym___block] = ACTIONS(2700), + [anon_sym___bridge] = ACTIONS(2700), + [anon_sym___bridge_retained] = ACTIONS(2700), + [anon_sym___bridge_transfer] = ACTIONS(2700), + [anon_sym___complex] = ACTIONS(2700), + [anon_sym___const] = ACTIONS(2700), + [anon_sym___imag] = ACTIONS(2700), + [anon_sym___kindof] = ACTIONS(2700), + [anon_sym___nonnull] = ACTIONS(2700), + [anon_sym___nullable] = ACTIONS(2700), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2700), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2700), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2700), + [anon_sym___real] = ACTIONS(2700), + [anon_sym___strong] = ACTIONS(2700), + [anon_sym___unsafe_unretained] = ACTIONS(2700), + [anon_sym___unused] = ACTIONS(2700), + [anon_sym___weak] = ACTIONS(2700), + [anon_sym_alignas] = ACTIONS(2700), + [anon_sym__Alignas] = ACTIONS(2700), + [sym_primitive_type] = ACTIONS(2700), + [anon_sym_enum] = ACTIONS(2700), + [anon_sym_struct] = ACTIONS(2700), + [anon_sym_union] = ACTIONS(2700), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_switch] = ACTIONS(2700), + [anon_sym_case] = ACTIONS(2700), + [anon_sym_default] = ACTIONS(2700), + [anon_sym_while] = ACTIONS(2700), + [anon_sym_do] = ACTIONS(2700), + [anon_sym_for] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(2700), + [anon_sym_return] = ACTIONS(2700), + [anon_sym_break] = ACTIONS(2700), + [anon_sym_continue] = ACTIONS(2700), + [anon_sym_goto] = ACTIONS(2700), + [anon_sym_DASH_DASH] = ACTIONS(2702), + [anon_sym_PLUS_PLUS] = ACTIONS(2702), + [anon_sym_sizeof] = ACTIONS(2700), + [anon_sym___alignof__] = ACTIONS(2700), + [anon_sym___alignof] = ACTIONS(2700), + [anon_sym__alignof] = ACTIONS(2700), + [anon_sym_alignof] = ACTIONS(2700), + [anon_sym__Alignof] = ACTIONS(2700), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2700), + [anon_sym_asm] = ACTIONS(2700), + [anon_sym___asm__] = ACTIONS(2700), + [anon_sym___asm] = ACTIONS(2700), + [sym_number_literal] = ACTIONS(2702), + [anon_sym_L_SQUOTE] = ACTIONS(2702), + [anon_sym_u_SQUOTE] = ACTIONS(2702), + [anon_sym_U_SQUOTE] = ACTIONS(2702), + [anon_sym_u8_SQUOTE] = ACTIONS(2702), + [anon_sym_SQUOTE] = ACTIONS(2702), + [anon_sym_AT] = ACTIONS(2700), + [anon_sym_DQUOTE] = ACTIONS(2702), + [anon_sym_L_DQUOTE] = ACTIONS(2702), + [anon_sym_u_DQUOTE] = ACTIONS(2702), + [anon_sym_U_DQUOTE] = ACTIONS(2702), + [anon_sym_u8_DQUOTE] = ACTIONS(2702), + [sym_true] = ACTIONS(2700), + [sym_false] = ACTIONS(2700), + [anon_sym_NULL] = ACTIONS(2700), + [anon_sym_nullptr] = ACTIONS(2700), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2700), + [anon_sym___typeof] = ACTIONS(2700), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_ATimport] = ACTIONS(2702), + [aux_sym_preproc_undef_token1] = ACTIONS(2700), + [anon_sym_POUND] = ACTIONS(2700), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2700), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2700), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2700), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2700), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2700), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2700), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2700), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2700), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2700), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2700), + [anon_sym_NS_AVAILABLE] = ACTIONS(2700), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2700), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2700), + [anon_sym_API_AVAILABLE] = ACTIONS(2700), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2700), + [anon_sym_API_DEPRECATED] = ACTIONS(2700), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2700), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2700), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2700), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2700), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2700), + [anon_sym___deprecated_msg] = ACTIONS(2700), + [anon_sym___deprecated_enum_msg] = ACTIONS(2700), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2700), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2700), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2700), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2700), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2700), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2700), + [anon_sym_ATprotocol] = ACTIONS(2702), + [anon_sym_ATinterface] = ACTIONS(2702), + [anon_sym_ATimplementation] = ACTIONS(2702), + [anon_sym_ATcompatibility_alias] = ACTIONS(2702), + [anon_sym_ATsynthesize] = ACTIONS(2702), + [anon_sym_ATdynamic] = ACTIONS(2702), + [anon_sym_ATtry] = ACTIONS(2702), + [anon_sym___try] = ACTIONS(2700), + [anon_sym_ATthrow] = ACTIONS(2702), + [anon_sym_ATselector] = ACTIONS(2702), + [anon_sym_ATavailable] = ACTIONS(2702), + [anon_sym___builtin_available] = ACTIONS(2700), + [anon_sym_va_arg] = ACTIONS(2700), + [anon_sym_ATencode] = ACTIONS(2702), + [anon_sym_ATsynchronized] = ACTIONS(2702), + [anon_sym_BOOL] = ACTIONS(2700), + [anon_sym_IMP] = ACTIONS(2700), + [anon_sym_SEL] = ACTIONS(2700), + [anon_sym_Class] = ACTIONS(2700), + [anon_sym_id] = ACTIONS(2700), + }, + [507] = { + [sym_identifier] = ACTIONS(2704), + [aux_sym_preproc_include_token1] = ACTIONS(2704), + [aux_sym_preproc_include_token2] = ACTIONS(2704), + [aux_sym_preproc_def_token1] = ACTIONS(2704), + [aux_sym_preproc_if_token1] = ACTIONS(2704), + [aux_sym_preproc_if_token2] = ACTIONS(2704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2704), + [aux_sym_preproc_else_token1] = ACTIONS(2704), + [aux_sym_preproc_elif_token1] = ACTIONS(2704), + [sym_preproc_directive] = ACTIONS(2704), + [anon_sym_LPAREN2] = ACTIONS(2706), + [anon_sym_BANG] = ACTIONS(2706), + [anon_sym_TILDE] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_STAR] = ACTIONS(2706), + [anon_sym_CARET] = ACTIONS(2706), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym___extension__] = ACTIONS(2704), + [anon_sym_typedef] = ACTIONS(2704), + [anon_sym_extern] = ACTIONS(2704), + [anon_sym___attribute__] = ACTIONS(2704), + [anon_sym___attribute] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_LBRACK] = ACTIONS(2706), + [anon_sym___declspec] = ACTIONS(2704), + [anon_sym___cdecl] = ACTIONS(2704), + [anon_sym___clrcall] = ACTIONS(2704), + [anon_sym___stdcall] = ACTIONS(2704), + [anon_sym___fastcall] = ACTIONS(2704), + [anon_sym___thiscall] = ACTIONS(2704), + [anon_sym___vectorcall] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_signed] = ACTIONS(2704), + [anon_sym_unsigned] = ACTIONS(2704), + [anon_sym_long] = ACTIONS(2704), + [anon_sym_short] = ACTIONS(2704), + [anon_sym_static] = ACTIONS(2704), + [anon_sym_ATautoreleasepool] = ACTIONS(2706), + [anon_sym_auto] = ACTIONS(2704), + [anon_sym_register] = ACTIONS(2704), + [anon_sym_inline] = ACTIONS(2704), + [anon_sym___inline] = ACTIONS(2704), + [anon_sym___inline__] = ACTIONS(2704), + [anon_sym___forceinline] = ACTIONS(2704), + [anon_sym_thread_local] = ACTIONS(2704), + [anon_sym___thread] = ACTIONS(2704), + [anon_sym_CG_EXTERN] = ACTIONS(2704), + [anon_sym_CG_INLINE] = ACTIONS(2704), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2704), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2704), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2704), + [anon_sym_IBOutlet] = ACTIONS(2704), + [anon_sym_IBInspectable] = ACTIONS(2704), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2704), + [anon_sym_NS_INLINE] = ACTIONS(2704), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2704), + [anon_sym_OBJC_EXPORT] = ACTIONS(2704), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2704), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2704), + [anon_sym_const] = ACTIONS(2704), + [anon_sym_constexpr] = ACTIONS(2704), + [anon_sym_volatile] = ACTIONS(2704), + [anon_sym_restrict] = ACTIONS(2704), + [anon_sym___restrict__] = ACTIONS(2704), + [anon_sym__Atomic] = ACTIONS(2704), + [anon_sym__Noreturn] = ACTIONS(2704), + [anon_sym__Nonnull] = ACTIONS(2704), + [anon_sym_nullable] = ACTIONS(2704), + [anon_sym__Complex] = ACTIONS(2704), + [anon_sym__Nullable] = ACTIONS(2704), + [anon_sym__Nullable_result] = ACTIONS(2704), + [anon_sym__Null_unspecified] = ACTIONS(2704), + [anon_sym___autoreleasing] = ACTIONS(2704), + [anon_sym___block] = ACTIONS(2704), + [anon_sym___bridge] = ACTIONS(2704), + [anon_sym___bridge_retained] = ACTIONS(2704), + [anon_sym___bridge_transfer] = ACTIONS(2704), + [anon_sym___complex] = ACTIONS(2704), + [anon_sym___const] = ACTIONS(2704), + [anon_sym___imag] = ACTIONS(2704), + [anon_sym___kindof] = ACTIONS(2704), + [anon_sym___nonnull] = ACTIONS(2704), + [anon_sym___nullable] = ACTIONS(2704), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2704), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2704), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2704), + [anon_sym___real] = ACTIONS(2704), + [anon_sym___strong] = ACTIONS(2704), + [anon_sym___unsafe_unretained] = ACTIONS(2704), + [anon_sym___unused] = ACTIONS(2704), + [anon_sym___weak] = ACTIONS(2704), + [anon_sym_alignas] = ACTIONS(2704), + [anon_sym__Alignas] = ACTIONS(2704), + [sym_primitive_type] = ACTIONS(2704), + [anon_sym_enum] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_union] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_switch] = ACTIONS(2704), + [anon_sym_case] = ACTIONS(2704), + [anon_sym_default] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_do] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_in] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_goto] = ACTIONS(2704), + [anon_sym_DASH_DASH] = ACTIONS(2706), + [anon_sym_PLUS_PLUS] = ACTIONS(2706), + [anon_sym_sizeof] = ACTIONS(2704), + [anon_sym___alignof__] = ACTIONS(2704), + [anon_sym___alignof] = ACTIONS(2704), + [anon_sym__alignof] = ACTIONS(2704), + [anon_sym_alignof] = ACTIONS(2704), + [anon_sym__Alignof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2704), + [anon_sym__Generic] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2704), + [anon_sym___asm__] = ACTIONS(2704), + [anon_sym___asm] = ACTIONS(2704), + [sym_number_literal] = ACTIONS(2706), + [anon_sym_L_SQUOTE] = ACTIONS(2706), + [anon_sym_u_SQUOTE] = ACTIONS(2706), + [anon_sym_U_SQUOTE] = ACTIONS(2706), + [anon_sym_u8_SQUOTE] = ACTIONS(2706), + [anon_sym_SQUOTE] = ACTIONS(2706), + [anon_sym_AT] = ACTIONS(2704), + [anon_sym_DQUOTE] = ACTIONS(2706), + [anon_sym_L_DQUOTE] = ACTIONS(2706), + [anon_sym_u_DQUOTE] = ACTIONS(2706), + [anon_sym_U_DQUOTE] = ACTIONS(2706), + [anon_sym_u8_DQUOTE] = ACTIONS(2706), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [anon_sym_NULL] = ACTIONS(2704), + [anon_sym_nullptr] = ACTIONS(2704), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2704), + [anon_sym___typeof] = ACTIONS(2704), + [anon_sym_typeof] = ACTIONS(2704), + [anon_sym_ATimport] = ACTIONS(2706), + [aux_sym_preproc_undef_token1] = ACTIONS(2704), + [anon_sym_POUND] = ACTIONS(2704), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2704), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2704), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2704), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2704), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2704), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2704), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2704), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2704), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2704), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2704), + [anon_sym_NS_AVAILABLE] = ACTIONS(2704), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2704), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2704), + [anon_sym_API_AVAILABLE] = ACTIONS(2704), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2704), + [anon_sym_API_DEPRECATED] = ACTIONS(2704), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2704), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2704), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2704), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2704), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2704), + [anon_sym___deprecated_msg] = ACTIONS(2704), + [anon_sym___deprecated_enum_msg] = ACTIONS(2704), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2704), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2704), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2704), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2704), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2704), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2704), + [anon_sym_ATprotocol] = ACTIONS(2706), + [anon_sym_ATinterface] = ACTIONS(2706), + [anon_sym_ATimplementation] = ACTIONS(2706), + [anon_sym_ATcompatibility_alias] = ACTIONS(2706), + [anon_sym_ATsynthesize] = ACTIONS(2706), + [anon_sym_ATdynamic] = ACTIONS(2706), + [anon_sym_ATtry] = ACTIONS(2706), + [anon_sym___try] = ACTIONS(2704), + [anon_sym_ATthrow] = ACTIONS(2706), + [anon_sym_ATselector] = ACTIONS(2706), + [anon_sym_ATavailable] = ACTIONS(2706), + [anon_sym___builtin_available] = ACTIONS(2704), + [anon_sym_va_arg] = ACTIONS(2704), + [anon_sym_ATencode] = ACTIONS(2706), + [anon_sym_ATsynchronized] = ACTIONS(2706), + [anon_sym_BOOL] = ACTIONS(2704), + [anon_sym_IMP] = ACTIONS(2704), + [anon_sym_SEL] = ACTIONS(2704), + [anon_sym_Class] = ACTIONS(2704), + [anon_sym_id] = ACTIONS(2704), + }, + [508] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_include_token2] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_CARET] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym___attribute] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_ATautoreleasepool] = ACTIONS(2862), + [anon_sym_auto] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_CG_EXTERN] = ACTIONS(2860), + [anon_sym_CG_INLINE] = ACTIONS(2860), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2860), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2860), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2860), + [anon_sym_IBOutlet] = ACTIONS(2860), + [anon_sym_IBInspectable] = ACTIONS(2860), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2860), + [anon_sym_NS_INLINE] = ACTIONS(2860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2860), + [anon_sym_OBJC_EXPORT] = ACTIONS(2860), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2860), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym__Nonnull] = ACTIONS(2860), + [anon_sym_nullable] = ACTIONS(2860), + [anon_sym__Complex] = ACTIONS(2860), + [anon_sym__Nullable] = ACTIONS(2860), + [anon_sym__Nullable_result] = ACTIONS(2860), + [anon_sym__Null_unspecified] = ACTIONS(2860), + [anon_sym___autoreleasing] = ACTIONS(2860), + [anon_sym___block] = ACTIONS(2860), + [anon_sym___bridge] = ACTIONS(2860), + [anon_sym___bridge_retained] = ACTIONS(2860), + [anon_sym___bridge_transfer] = ACTIONS(2860), + [anon_sym___complex] = ACTIONS(2860), + [anon_sym___const] = ACTIONS(2860), + [anon_sym___imag] = ACTIONS(2860), + [anon_sym___kindof] = ACTIONS(2860), + [anon_sym___nonnull] = ACTIONS(2860), + [anon_sym___nullable] = ACTIONS(2860), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2860), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2860), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2860), + [anon_sym___real] = ACTIONS(2860), + [anon_sym___strong] = ACTIONS(2860), + [anon_sym___unsafe_unretained] = ACTIONS(2860), + [anon_sym___unused] = ACTIONS(2860), + [anon_sym___weak] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym__Alignas] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_in] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [anon_sym___asm] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_AT] = ACTIONS(2860), + [anon_sym_DQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2860), + [anon_sym___typeof] = ACTIONS(2860), + [anon_sym_typeof] = ACTIONS(2860), + [anon_sym_ATimport] = ACTIONS(2862), + [aux_sym_preproc_undef_token1] = ACTIONS(2860), + [anon_sym_POUND] = ACTIONS(2860), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2860), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2860), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2860), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2860), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2860), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2860), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2860), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2860), + [anon_sym_NS_AVAILABLE] = ACTIONS(2860), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2860), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_API_AVAILABLE] = ACTIONS(2860), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_API_DEPRECATED] = ACTIONS(2860), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2860), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2860), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2860), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2860), + [anon_sym___deprecated_msg] = ACTIONS(2860), + [anon_sym___deprecated_enum_msg] = ACTIONS(2860), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2860), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2860), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2860), + [anon_sym_ATprotocol] = ACTIONS(2862), + [anon_sym_ATinterface] = ACTIONS(2862), + [anon_sym_ATimplementation] = ACTIONS(2862), + [anon_sym_ATcompatibility_alias] = ACTIONS(2862), + [anon_sym_ATsynthesize] = ACTIONS(2862), + [anon_sym_ATdynamic] = ACTIONS(2862), + [anon_sym_ATtry] = ACTIONS(2862), + [anon_sym___try] = ACTIONS(2860), + [anon_sym_ATthrow] = ACTIONS(2862), + [anon_sym_ATselector] = ACTIONS(2862), + [anon_sym_ATavailable] = ACTIONS(2862), + [anon_sym___builtin_available] = ACTIONS(2860), + [anon_sym_va_arg] = ACTIONS(2860), + [anon_sym_ATencode] = ACTIONS(2862), + [anon_sym_ATsynchronized] = ACTIONS(2862), + [anon_sym_BOOL] = ACTIONS(2860), + [anon_sym_IMP] = ACTIONS(2860), + [anon_sym_SEL] = ACTIONS(2860), + [anon_sym_Class] = ACTIONS(2860), + [anon_sym_id] = ACTIONS(2860), + }, + [509] = { + [sym_identifier] = ACTIONS(2820), + [aux_sym_preproc_include_token1] = ACTIONS(2820), + [aux_sym_preproc_include_token2] = ACTIONS(2820), + [aux_sym_preproc_def_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token2] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), + [aux_sym_preproc_else_token1] = ACTIONS(2820), + [aux_sym_preproc_elif_token1] = ACTIONS(2820), + [sym_preproc_directive] = ACTIONS(2820), + [anon_sym_LPAREN2] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_CARET] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym___extension__] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym___attribute__] = ACTIONS(2820), + [anon_sym___attribute] = ACTIONS(2820), + [anon_sym_noreturn] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym___declspec] = ACTIONS(2820), + [anon_sym___cdecl] = ACTIONS(2820), + [anon_sym___clrcall] = ACTIONS(2820), + [anon_sym___stdcall] = ACTIONS(2820), + [anon_sym___fastcall] = ACTIONS(2820), + [anon_sym___thiscall] = ACTIONS(2820), + [anon_sym___vectorcall] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2820), + [anon_sym_unsigned] = ACTIONS(2820), + [anon_sym_long] = ACTIONS(2820), + [anon_sym_short] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_ATautoreleasepool] = ACTIONS(2822), + [anon_sym_auto] = ACTIONS(2820), + [anon_sym_register] = ACTIONS(2820), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym___inline] = ACTIONS(2820), + [anon_sym___inline__] = ACTIONS(2820), + [anon_sym___forceinline] = ACTIONS(2820), + [anon_sym_thread_local] = ACTIONS(2820), + [anon_sym___thread] = ACTIONS(2820), + [anon_sym_CG_EXTERN] = ACTIONS(2820), + [anon_sym_CG_INLINE] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2820), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2820), + [anon_sym_IBOutlet] = ACTIONS(2820), + [anon_sym_IBInspectable] = ACTIONS(2820), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2820), + [anon_sym_NS_INLINE] = ACTIONS(2820), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2820), + [anon_sym_OBJC_EXPORT] = ACTIONS(2820), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_constexpr] = ACTIONS(2820), + [anon_sym_volatile] = ACTIONS(2820), + [anon_sym_restrict] = ACTIONS(2820), + [anon_sym___restrict__] = ACTIONS(2820), + [anon_sym__Atomic] = ACTIONS(2820), + [anon_sym__Noreturn] = ACTIONS(2820), + [anon_sym__Nonnull] = ACTIONS(2820), + [anon_sym_nullable] = ACTIONS(2820), + [anon_sym__Complex] = ACTIONS(2820), + [anon_sym__Nullable] = ACTIONS(2820), + [anon_sym__Nullable_result] = ACTIONS(2820), + [anon_sym__Null_unspecified] = ACTIONS(2820), + [anon_sym___autoreleasing] = ACTIONS(2820), + [anon_sym___block] = ACTIONS(2820), + [anon_sym___bridge] = ACTIONS(2820), + [anon_sym___bridge_retained] = ACTIONS(2820), + [anon_sym___bridge_transfer] = ACTIONS(2820), + [anon_sym___complex] = ACTIONS(2820), + [anon_sym___const] = ACTIONS(2820), + [anon_sym___imag] = ACTIONS(2820), + [anon_sym___kindof] = ACTIONS(2820), + [anon_sym___nonnull] = ACTIONS(2820), + [anon_sym___nullable] = ACTIONS(2820), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2820), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2820), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2820), + [anon_sym___real] = ACTIONS(2820), + [anon_sym___strong] = ACTIONS(2820), + [anon_sym___unsafe_unretained] = ACTIONS(2820), + [anon_sym___unused] = ACTIONS(2820), + [anon_sym___weak] = ACTIONS(2820), + [anon_sym_alignas] = ACTIONS(2820), + [anon_sym__Alignas] = ACTIONS(2820), + [sym_primitive_type] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2820), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_case] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_in] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_goto] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_sizeof] = ACTIONS(2820), + [anon_sym___alignof__] = ACTIONS(2820), + [anon_sym___alignof] = ACTIONS(2820), + [anon_sym__alignof] = ACTIONS(2820), + [anon_sym_alignof] = ACTIONS(2820), + [anon_sym__Alignof] = ACTIONS(2820), + [anon_sym_offsetof] = ACTIONS(2820), + [anon_sym__Generic] = ACTIONS(2820), + [anon_sym_asm] = ACTIONS(2820), + [anon_sym___asm__] = ACTIONS(2820), + [anon_sym___asm] = ACTIONS(2820), + [sym_number_literal] = ACTIONS(2822), + [anon_sym_L_SQUOTE] = ACTIONS(2822), + [anon_sym_u_SQUOTE] = ACTIONS(2822), + [anon_sym_U_SQUOTE] = ACTIONS(2822), + [anon_sym_u8_SQUOTE] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2822), + [anon_sym_AT] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2822), + [anon_sym_L_DQUOTE] = ACTIONS(2822), + [anon_sym_u_DQUOTE] = ACTIONS(2822), + [anon_sym_U_DQUOTE] = ACTIONS(2822), + [anon_sym_u8_DQUOTE] = ACTIONS(2822), + [sym_true] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [anon_sym_NULL] = ACTIONS(2820), + [anon_sym_nullptr] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2820), + [anon_sym___typeof] = ACTIONS(2820), + [anon_sym_typeof] = ACTIONS(2820), + [anon_sym_ATimport] = ACTIONS(2822), + [aux_sym_preproc_undef_token1] = ACTIONS(2820), + [anon_sym_POUND] = ACTIONS(2820), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2820), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2820), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2820), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2820), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE] = ACTIONS(2820), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_API_AVAILABLE] = ACTIONS(2820), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_API_DEPRECATED] = ACTIONS(2820), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2820), + [anon_sym___deprecated_msg] = ACTIONS(2820), + [anon_sym___deprecated_enum_msg] = ACTIONS(2820), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2820), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2820), + [anon_sym_ATprotocol] = ACTIONS(2822), + [anon_sym_ATinterface] = ACTIONS(2822), + [anon_sym_ATimplementation] = ACTIONS(2822), + [anon_sym_ATcompatibility_alias] = ACTIONS(2822), + [anon_sym_ATsynthesize] = ACTIONS(2822), + [anon_sym_ATdynamic] = ACTIONS(2822), + [anon_sym_ATtry] = ACTIONS(2822), + [anon_sym___try] = ACTIONS(2820), + [anon_sym_ATthrow] = ACTIONS(2822), + [anon_sym_ATselector] = ACTIONS(2822), + [anon_sym_ATavailable] = ACTIONS(2822), + [anon_sym___builtin_available] = ACTIONS(2820), + [anon_sym_va_arg] = ACTIONS(2820), + [anon_sym_ATencode] = ACTIONS(2822), + [anon_sym_ATsynchronized] = ACTIONS(2822), + [anon_sym_BOOL] = ACTIONS(2820), + [anon_sym_IMP] = ACTIONS(2820), + [anon_sym_SEL] = ACTIONS(2820), + [anon_sym_Class] = ACTIONS(2820), + [anon_sym_id] = ACTIONS(2820), + }, + [510] = { + [sym_identifier] = ACTIONS(2602), + [aux_sym_preproc_include_token1] = ACTIONS(2602), + [aux_sym_preproc_include_token2] = ACTIONS(2602), + [aux_sym_preproc_def_token1] = ACTIONS(2602), + [aux_sym_preproc_if_token1] = ACTIONS(2602), + [aux_sym_preproc_if_token2] = ACTIONS(2602), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2602), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2602), + [aux_sym_preproc_else_token1] = ACTIONS(2602), + [aux_sym_preproc_elif_token1] = ACTIONS(2602), + [sym_preproc_directive] = ACTIONS(2602), + [anon_sym_LPAREN2] = ACTIONS(2604), + [anon_sym_BANG] = ACTIONS(2604), + [anon_sym_TILDE] = ACTIONS(2604), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_CARET] = ACTIONS(2604), + [anon_sym_AMP] = ACTIONS(2604), + [anon_sym_SEMI] = ACTIONS(2604), + [anon_sym___extension__] = ACTIONS(2602), + [anon_sym_typedef] = ACTIONS(2602), + [anon_sym_extern] = ACTIONS(2602), + [anon_sym___attribute__] = ACTIONS(2602), + [anon_sym___attribute] = ACTIONS(2602), + [anon_sym_noreturn] = ACTIONS(2602), + [anon_sym_LBRACK] = ACTIONS(2604), + [anon_sym___declspec] = ACTIONS(2602), + [anon_sym___cdecl] = ACTIONS(2602), + [anon_sym___clrcall] = ACTIONS(2602), + [anon_sym___stdcall] = ACTIONS(2602), + [anon_sym___fastcall] = ACTIONS(2602), + [anon_sym___thiscall] = ACTIONS(2602), + [anon_sym___vectorcall] = ACTIONS(2602), + [anon_sym_LBRACE] = ACTIONS(2604), + [anon_sym_signed] = ACTIONS(2602), + [anon_sym_unsigned] = ACTIONS(2602), + [anon_sym_long] = ACTIONS(2602), + [anon_sym_short] = ACTIONS(2602), + [anon_sym_static] = ACTIONS(2602), + [anon_sym_ATautoreleasepool] = ACTIONS(2604), + [anon_sym_auto] = ACTIONS(2602), + [anon_sym_register] = ACTIONS(2602), + [anon_sym_inline] = ACTIONS(2602), + [anon_sym___inline] = ACTIONS(2602), + [anon_sym___inline__] = ACTIONS(2602), + [anon_sym___forceinline] = ACTIONS(2602), + [anon_sym_thread_local] = ACTIONS(2602), + [anon_sym___thread] = ACTIONS(2602), + [anon_sym_CG_EXTERN] = ACTIONS(2602), + [anon_sym_CG_INLINE] = ACTIONS(2602), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2602), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2602), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2602), + [anon_sym_IBOutlet] = ACTIONS(2602), + [anon_sym_IBInspectable] = ACTIONS(2602), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2602), + [anon_sym_NS_INLINE] = ACTIONS(2602), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2602), + [anon_sym_OBJC_EXPORT] = ACTIONS(2602), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2602), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2602), + [anon_sym_const] = ACTIONS(2602), + [anon_sym_constexpr] = ACTIONS(2602), + [anon_sym_volatile] = ACTIONS(2602), + [anon_sym_restrict] = ACTIONS(2602), + [anon_sym___restrict__] = ACTIONS(2602), + [anon_sym__Atomic] = ACTIONS(2602), + [anon_sym__Noreturn] = ACTIONS(2602), + [anon_sym__Nonnull] = ACTIONS(2602), + [anon_sym_nullable] = ACTIONS(2602), + [anon_sym__Complex] = ACTIONS(2602), + [anon_sym__Nullable] = ACTIONS(2602), + [anon_sym__Nullable_result] = ACTIONS(2602), + [anon_sym__Null_unspecified] = ACTIONS(2602), + [anon_sym___autoreleasing] = ACTIONS(2602), + [anon_sym___block] = ACTIONS(2602), + [anon_sym___bridge] = ACTIONS(2602), + [anon_sym___bridge_retained] = ACTIONS(2602), + [anon_sym___bridge_transfer] = ACTIONS(2602), + [anon_sym___complex] = ACTIONS(2602), + [anon_sym___const] = ACTIONS(2602), + [anon_sym___imag] = ACTIONS(2602), + [anon_sym___kindof] = ACTIONS(2602), + [anon_sym___nonnull] = ACTIONS(2602), + [anon_sym___nullable] = ACTIONS(2602), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2602), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2602), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2602), + [anon_sym___real] = ACTIONS(2602), + [anon_sym___strong] = ACTIONS(2602), + [anon_sym___unsafe_unretained] = ACTIONS(2602), + [anon_sym___unused] = ACTIONS(2602), + [anon_sym___weak] = ACTIONS(2602), + [anon_sym_alignas] = ACTIONS(2602), + [anon_sym__Alignas] = ACTIONS(2602), + [sym_primitive_type] = ACTIONS(2602), + [anon_sym_enum] = ACTIONS(2602), + [anon_sym_struct] = ACTIONS(2602), + [anon_sym_union] = ACTIONS(2602), + [anon_sym_if] = ACTIONS(2602), + [anon_sym_switch] = ACTIONS(2602), + [anon_sym_case] = ACTIONS(2602), + [anon_sym_default] = ACTIONS(2602), + [anon_sym_while] = ACTIONS(2602), + [anon_sym_do] = ACTIONS(2602), + [anon_sym_for] = ACTIONS(2602), + [anon_sym_in] = ACTIONS(2602), + [anon_sym_return] = ACTIONS(2602), + [anon_sym_break] = ACTIONS(2602), + [anon_sym_continue] = ACTIONS(2602), + [anon_sym_goto] = ACTIONS(2602), + [anon_sym_DASH_DASH] = ACTIONS(2604), + [anon_sym_PLUS_PLUS] = ACTIONS(2604), + [anon_sym_sizeof] = ACTIONS(2602), + [anon_sym___alignof__] = ACTIONS(2602), + [anon_sym___alignof] = ACTIONS(2602), + [anon_sym__alignof] = ACTIONS(2602), + [anon_sym_alignof] = ACTIONS(2602), + [anon_sym__Alignof] = ACTIONS(2602), + [anon_sym_offsetof] = ACTIONS(2602), + [anon_sym__Generic] = ACTIONS(2602), + [anon_sym_asm] = ACTIONS(2602), + [anon_sym___asm__] = ACTIONS(2602), + [anon_sym___asm] = ACTIONS(2602), + [sym_number_literal] = ACTIONS(2604), + [anon_sym_L_SQUOTE] = ACTIONS(2604), + [anon_sym_u_SQUOTE] = ACTIONS(2604), + [anon_sym_U_SQUOTE] = ACTIONS(2604), + [anon_sym_u8_SQUOTE] = ACTIONS(2604), + [anon_sym_SQUOTE] = ACTIONS(2604), + [anon_sym_AT] = ACTIONS(2602), + [anon_sym_DQUOTE] = ACTIONS(2604), + [anon_sym_L_DQUOTE] = ACTIONS(2604), + [anon_sym_u_DQUOTE] = ACTIONS(2604), + [anon_sym_U_DQUOTE] = ACTIONS(2604), + [anon_sym_u8_DQUOTE] = ACTIONS(2604), + [sym_true] = ACTIONS(2602), + [sym_false] = ACTIONS(2602), + [anon_sym_NULL] = ACTIONS(2602), + [anon_sym_nullptr] = ACTIONS(2602), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2602), + [anon_sym___typeof] = ACTIONS(2602), + [anon_sym_typeof] = ACTIONS(2602), + [anon_sym_ATimport] = ACTIONS(2604), + [aux_sym_preproc_undef_token1] = ACTIONS(2602), + [anon_sym_POUND] = ACTIONS(2602), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2602), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2602), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2602), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2602), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2602), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2602), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2602), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2602), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2602), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2602), + [anon_sym_NS_AVAILABLE] = ACTIONS(2602), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2602), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2602), + [anon_sym_API_AVAILABLE] = ACTIONS(2602), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2602), + [anon_sym_API_DEPRECATED] = ACTIONS(2602), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2602), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2602), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2602), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2602), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2602), + [anon_sym___deprecated_msg] = ACTIONS(2602), + [anon_sym___deprecated_enum_msg] = ACTIONS(2602), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2602), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2602), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2602), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2602), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2602), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2602), + [anon_sym_ATprotocol] = ACTIONS(2604), + [anon_sym_ATinterface] = ACTIONS(2604), + [anon_sym_ATimplementation] = ACTIONS(2604), + [anon_sym_ATcompatibility_alias] = ACTIONS(2604), + [anon_sym_ATsynthesize] = ACTIONS(2604), + [anon_sym_ATdynamic] = ACTIONS(2604), + [anon_sym_ATtry] = ACTIONS(2604), + [anon_sym___try] = ACTIONS(2602), + [anon_sym_ATthrow] = ACTIONS(2604), + [anon_sym_ATselector] = ACTIONS(2604), + [anon_sym_ATavailable] = ACTIONS(2604), + [anon_sym___builtin_available] = ACTIONS(2602), + [anon_sym_va_arg] = ACTIONS(2602), + [anon_sym_ATencode] = ACTIONS(2604), + [anon_sym_ATsynchronized] = ACTIONS(2604), + [anon_sym_BOOL] = ACTIONS(2602), + [anon_sym_IMP] = ACTIONS(2602), + [anon_sym_SEL] = ACTIONS(2602), + [anon_sym_Class] = ACTIONS(2602), + [anon_sym_id] = ACTIONS(2602), + }, + [511] = { + [sym_identifier] = ACTIONS(2582), + [aux_sym_preproc_include_token1] = ACTIONS(2582), + [aux_sym_preproc_include_token2] = ACTIONS(2582), + [aux_sym_preproc_def_token1] = ACTIONS(2582), + [aux_sym_preproc_if_token1] = ACTIONS(2582), + [aux_sym_preproc_if_token2] = ACTIONS(2582), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2582), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2582), + [aux_sym_preproc_else_token1] = ACTIONS(2582), + [aux_sym_preproc_elif_token1] = ACTIONS(2582), + [sym_preproc_directive] = ACTIONS(2582), + [anon_sym_LPAREN2] = ACTIONS(2584), + [anon_sym_BANG] = ACTIONS(2584), + [anon_sym_TILDE] = ACTIONS(2584), + [anon_sym_DASH] = ACTIONS(2582), + [anon_sym_PLUS] = ACTIONS(2582), + [anon_sym_STAR] = ACTIONS(2584), + [anon_sym_CARET] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym___extension__] = ACTIONS(2582), + [anon_sym_typedef] = ACTIONS(2582), + [anon_sym_extern] = ACTIONS(2582), + [anon_sym___attribute__] = ACTIONS(2582), + [anon_sym___attribute] = ACTIONS(2582), + [anon_sym_noreturn] = ACTIONS(2582), + [anon_sym_LBRACK] = ACTIONS(2584), + [anon_sym___declspec] = ACTIONS(2582), + [anon_sym___cdecl] = ACTIONS(2582), + [anon_sym___clrcall] = ACTIONS(2582), + [anon_sym___stdcall] = ACTIONS(2582), + [anon_sym___fastcall] = ACTIONS(2582), + [anon_sym___thiscall] = ACTIONS(2582), + [anon_sym___vectorcall] = ACTIONS(2582), + [anon_sym_LBRACE] = ACTIONS(2584), + [anon_sym_signed] = ACTIONS(2582), + [anon_sym_unsigned] = ACTIONS(2582), + [anon_sym_long] = ACTIONS(2582), + [anon_sym_short] = ACTIONS(2582), + [anon_sym_static] = ACTIONS(2582), + [anon_sym_ATautoreleasepool] = ACTIONS(2584), + [anon_sym_auto] = ACTIONS(2582), + [anon_sym_register] = ACTIONS(2582), + [anon_sym_inline] = ACTIONS(2582), + [anon_sym___inline] = ACTIONS(2582), + [anon_sym___inline__] = ACTIONS(2582), + [anon_sym___forceinline] = ACTIONS(2582), + [anon_sym_thread_local] = ACTIONS(2582), + [anon_sym___thread] = ACTIONS(2582), + [anon_sym_CG_EXTERN] = ACTIONS(2582), + [anon_sym_CG_INLINE] = ACTIONS(2582), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2582), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2582), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2582), + [anon_sym_IBOutlet] = ACTIONS(2582), + [anon_sym_IBInspectable] = ACTIONS(2582), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2582), + [anon_sym_NS_INLINE] = ACTIONS(2582), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2582), + [anon_sym_OBJC_EXPORT] = ACTIONS(2582), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2582), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2582), + [anon_sym_const] = ACTIONS(2582), + [anon_sym_constexpr] = ACTIONS(2582), + [anon_sym_volatile] = ACTIONS(2582), + [anon_sym_restrict] = ACTIONS(2582), + [anon_sym___restrict__] = ACTIONS(2582), + [anon_sym__Atomic] = ACTIONS(2582), + [anon_sym__Noreturn] = ACTIONS(2582), + [anon_sym__Nonnull] = ACTIONS(2582), + [anon_sym_nullable] = ACTIONS(2582), + [anon_sym__Complex] = ACTIONS(2582), + [anon_sym__Nullable] = ACTIONS(2582), + [anon_sym__Nullable_result] = ACTIONS(2582), + [anon_sym__Null_unspecified] = ACTIONS(2582), + [anon_sym___autoreleasing] = ACTIONS(2582), + [anon_sym___block] = ACTIONS(2582), + [anon_sym___bridge] = ACTIONS(2582), + [anon_sym___bridge_retained] = ACTIONS(2582), + [anon_sym___bridge_transfer] = ACTIONS(2582), + [anon_sym___complex] = ACTIONS(2582), + [anon_sym___const] = ACTIONS(2582), + [anon_sym___imag] = ACTIONS(2582), + [anon_sym___kindof] = ACTIONS(2582), + [anon_sym___nonnull] = ACTIONS(2582), + [anon_sym___nullable] = ACTIONS(2582), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2582), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2582), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2582), + [anon_sym___real] = ACTIONS(2582), + [anon_sym___strong] = ACTIONS(2582), + [anon_sym___unsafe_unretained] = ACTIONS(2582), + [anon_sym___unused] = ACTIONS(2582), + [anon_sym___weak] = ACTIONS(2582), + [anon_sym_alignas] = ACTIONS(2582), + [anon_sym__Alignas] = ACTIONS(2582), + [sym_primitive_type] = ACTIONS(2582), + [anon_sym_enum] = ACTIONS(2582), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2582), + [anon_sym_if] = ACTIONS(2582), + [anon_sym_switch] = ACTIONS(2582), + [anon_sym_case] = ACTIONS(2582), + [anon_sym_default] = ACTIONS(2582), + [anon_sym_while] = ACTIONS(2582), + [anon_sym_do] = ACTIONS(2582), + [anon_sym_for] = ACTIONS(2582), + [anon_sym_in] = ACTIONS(2582), + [anon_sym_return] = ACTIONS(2582), + [anon_sym_break] = ACTIONS(2582), + [anon_sym_continue] = ACTIONS(2582), + [anon_sym_goto] = ACTIONS(2582), + [anon_sym_DASH_DASH] = ACTIONS(2584), + [anon_sym_PLUS_PLUS] = ACTIONS(2584), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2582), + [anon_sym___alignof] = ACTIONS(2582), + [anon_sym__alignof] = ACTIONS(2582), + [anon_sym_alignof] = ACTIONS(2582), + [anon_sym__Alignof] = ACTIONS(2582), + [anon_sym_offsetof] = ACTIONS(2582), + [anon_sym__Generic] = ACTIONS(2582), + [anon_sym_asm] = ACTIONS(2582), + [anon_sym___asm__] = ACTIONS(2582), + [anon_sym___asm] = ACTIONS(2582), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2584), + [anon_sym_u_SQUOTE] = ACTIONS(2584), + [anon_sym_U_SQUOTE] = ACTIONS(2584), + [anon_sym_u8_SQUOTE] = ACTIONS(2584), + [anon_sym_SQUOTE] = ACTIONS(2584), + [anon_sym_AT] = ACTIONS(2582), + [anon_sym_DQUOTE] = ACTIONS(2584), + [anon_sym_L_DQUOTE] = ACTIONS(2584), + [anon_sym_u_DQUOTE] = ACTIONS(2584), + [anon_sym_U_DQUOTE] = ACTIONS(2584), + [anon_sym_u8_DQUOTE] = ACTIONS(2584), + [sym_true] = ACTIONS(2582), + [sym_false] = ACTIONS(2582), + [anon_sym_NULL] = ACTIONS(2582), + [anon_sym_nullptr] = ACTIONS(2582), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2582), + [anon_sym___typeof] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(2582), + [anon_sym_ATimport] = ACTIONS(2584), + [aux_sym_preproc_undef_token1] = ACTIONS(2582), + [anon_sym_POUND] = ACTIONS(2582), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2582), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2582), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2582), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2582), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2582), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2582), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2582), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2582), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2582), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2582), + [anon_sym_NS_AVAILABLE] = ACTIONS(2582), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2582), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2582), + [anon_sym_API_AVAILABLE] = ACTIONS(2582), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2582), + [anon_sym_API_DEPRECATED] = ACTIONS(2582), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2582), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2582), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2582), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2582), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2582), + [anon_sym___deprecated_msg] = ACTIONS(2582), + [anon_sym___deprecated_enum_msg] = ACTIONS(2582), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2582), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2582), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2582), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2582), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2582), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2582), + [anon_sym_ATprotocol] = ACTIONS(2584), + [anon_sym_ATinterface] = ACTIONS(2584), + [anon_sym_ATimplementation] = ACTIONS(2584), + [anon_sym_ATcompatibility_alias] = ACTIONS(2584), + [anon_sym_ATsynthesize] = ACTIONS(2584), + [anon_sym_ATdynamic] = ACTIONS(2584), + [anon_sym_ATtry] = ACTIONS(2584), + [anon_sym___try] = ACTIONS(2582), + [anon_sym_ATthrow] = ACTIONS(2584), + [anon_sym_ATselector] = ACTIONS(2584), + [anon_sym_ATavailable] = ACTIONS(2584), + [anon_sym___builtin_available] = ACTIONS(2582), + [anon_sym_va_arg] = ACTIONS(2582), + [anon_sym_ATencode] = ACTIONS(2584), + [anon_sym_ATsynchronized] = ACTIONS(2584), + [anon_sym_BOOL] = ACTIONS(2582), + [anon_sym_IMP] = ACTIONS(2582), + [anon_sym_SEL] = ACTIONS(2582), + [anon_sym_Class] = ACTIONS(2582), + [anon_sym_id] = ACTIONS(2582), + }, + [512] = { + [sym_identifier] = ACTIONS(2586), + [aux_sym_preproc_include_token1] = ACTIONS(2586), + [aux_sym_preproc_include_token2] = ACTIONS(2586), + [aux_sym_preproc_def_token1] = ACTIONS(2586), + [aux_sym_preproc_if_token1] = ACTIONS(2586), + [aux_sym_preproc_if_token2] = ACTIONS(2586), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2586), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2586), + [aux_sym_preproc_else_token1] = ACTIONS(2586), + [aux_sym_preproc_elif_token1] = ACTIONS(2586), + [sym_preproc_directive] = ACTIONS(2586), + [anon_sym_LPAREN2] = ACTIONS(2588), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2588), + [anon_sym_DASH] = ACTIONS(2586), + [anon_sym_PLUS] = ACTIONS(2586), + [anon_sym_STAR] = ACTIONS(2588), + [anon_sym_CARET] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2588), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym___extension__] = ACTIONS(2586), + [anon_sym_typedef] = ACTIONS(2586), + [anon_sym_extern] = ACTIONS(2586), + [anon_sym___attribute__] = ACTIONS(2586), + [anon_sym___attribute] = ACTIONS(2586), + [anon_sym_noreturn] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(2588), + [anon_sym___declspec] = ACTIONS(2586), + [anon_sym___cdecl] = ACTIONS(2586), + [anon_sym___clrcall] = ACTIONS(2586), + [anon_sym___stdcall] = ACTIONS(2586), + [anon_sym___fastcall] = ACTIONS(2586), + [anon_sym___thiscall] = ACTIONS(2586), + [anon_sym___vectorcall] = ACTIONS(2586), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_signed] = ACTIONS(2586), + [anon_sym_unsigned] = ACTIONS(2586), + [anon_sym_long] = ACTIONS(2586), + [anon_sym_short] = ACTIONS(2586), + [anon_sym_static] = ACTIONS(2586), + [anon_sym_ATautoreleasepool] = ACTIONS(2588), + [anon_sym_auto] = ACTIONS(2586), + [anon_sym_register] = ACTIONS(2586), + [anon_sym_inline] = ACTIONS(2586), + [anon_sym___inline] = ACTIONS(2586), + [anon_sym___inline__] = ACTIONS(2586), + [anon_sym___forceinline] = ACTIONS(2586), + [anon_sym_thread_local] = ACTIONS(2586), + [anon_sym___thread] = ACTIONS(2586), + [anon_sym_CG_EXTERN] = ACTIONS(2586), + [anon_sym_CG_INLINE] = ACTIONS(2586), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2586), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2586), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2586), + [anon_sym_IBOutlet] = ACTIONS(2586), + [anon_sym_IBInspectable] = ACTIONS(2586), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2586), + [anon_sym_NS_INLINE] = ACTIONS(2586), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2586), + [anon_sym_OBJC_EXPORT] = ACTIONS(2586), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2586), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2586), + [anon_sym_const] = ACTIONS(2586), + [anon_sym_constexpr] = ACTIONS(2586), + [anon_sym_volatile] = ACTIONS(2586), + [anon_sym_restrict] = ACTIONS(2586), + [anon_sym___restrict__] = ACTIONS(2586), + [anon_sym__Atomic] = ACTIONS(2586), + [anon_sym__Noreturn] = ACTIONS(2586), + [anon_sym__Nonnull] = ACTIONS(2586), + [anon_sym_nullable] = ACTIONS(2586), + [anon_sym__Complex] = ACTIONS(2586), + [anon_sym__Nullable] = ACTIONS(2586), + [anon_sym__Nullable_result] = ACTIONS(2586), + [anon_sym__Null_unspecified] = ACTIONS(2586), + [anon_sym___autoreleasing] = ACTIONS(2586), + [anon_sym___block] = ACTIONS(2586), + [anon_sym___bridge] = ACTIONS(2586), + [anon_sym___bridge_retained] = ACTIONS(2586), + [anon_sym___bridge_transfer] = ACTIONS(2586), + [anon_sym___complex] = ACTIONS(2586), + [anon_sym___const] = ACTIONS(2586), + [anon_sym___imag] = ACTIONS(2586), + [anon_sym___kindof] = ACTIONS(2586), + [anon_sym___nonnull] = ACTIONS(2586), + [anon_sym___nullable] = ACTIONS(2586), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2586), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2586), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2586), + [anon_sym___real] = ACTIONS(2586), + [anon_sym___strong] = ACTIONS(2586), + [anon_sym___unsafe_unretained] = ACTIONS(2586), + [anon_sym___unused] = ACTIONS(2586), + [anon_sym___weak] = ACTIONS(2586), + [anon_sym_alignas] = ACTIONS(2586), + [anon_sym__Alignas] = ACTIONS(2586), + [sym_primitive_type] = ACTIONS(2586), + [anon_sym_enum] = ACTIONS(2586), + [anon_sym_struct] = ACTIONS(2586), + [anon_sym_union] = ACTIONS(2586), + [anon_sym_if] = ACTIONS(2586), + [anon_sym_switch] = ACTIONS(2586), + [anon_sym_case] = ACTIONS(2586), + [anon_sym_default] = ACTIONS(2586), + [anon_sym_while] = ACTIONS(2586), + [anon_sym_do] = ACTIONS(2586), + [anon_sym_for] = ACTIONS(2586), + [anon_sym_in] = ACTIONS(2586), + [anon_sym_return] = ACTIONS(2586), + [anon_sym_break] = ACTIONS(2586), + [anon_sym_continue] = ACTIONS(2586), + [anon_sym_goto] = ACTIONS(2586), + [anon_sym_DASH_DASH] = ACTIONS(2588), + [anon_sym_PLUS_PLUS] = ACTIONS(2588), + [anon_sym_sizeof] = ACTIONS(2586), + [anon_sym___alignof__] = ACTIONS(2586), + [anon_sym___alignof] = ACTIONS(2586), + [anon_sym__alignof] = ACTIONS(2586), + [anon_sym_alignof] = ACTIONS(2586), + [anon_sym__Alignof] = ACTIONS(2586), + [anon_sym_offsetof] = ACTIONS(2586), + [anon_sym__Generic] = ACTIONS(2586), + [anon_sym_asm] = ACTIONS(2586), + [anon_sym___asm__] = ACTIONS(2586), + [anon_sym___asm] = ACTIONS(2586), + [sym_number_literal] = ACTIONS(2588), + [anon_sym_L_SQUOTE] = ACTIONS(2588), + [anon_sym_u_SQUOTE] = ACTIONS(2588), + [anon_sym_U_SQUOTE] = ACTIONS(2588), + [anon_sym_u8_SQUOTE] = ACTIONS(2588), + [anon_sym_SQUOTE] = ACTIONS(2588), + [anon_sym_AT] = ACTIONS(2586), + [anon_sym_DQUOTE] = ACTIONS(2588), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2586), + [sym_false] = ACTIONS(2586), + [anon_sym_NULL] = ACTIONS(2586), + [anon_sym_nullptr] = ACTIONS(2586), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2586), + [anon_sym___typeof] = ACTIONS(2586), + [anon_sym_typeof] = ACTIONS(2586), + [anon_sym_ATimport] = ACTIONS(2588), + [aux_sym_preproc_undef_token1] = ACTIONS(2586), + [anon_sym_POUND] = ACTIONS(2586), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2586), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2586), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2586), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2586), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2586), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2586), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2586), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2586), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2586), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2586), + [anon_sym_NS_AVAILABLE] = ACTIONS(2586), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2586), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2586), + [anon_sym_API_AVAILABLE] = ACTIONS(2586), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2586), + [anon_sym_API_DEPRECATED] = ACTIONS(2586), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2586), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2586), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2586), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2586), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2586), + [anon_sym___deprecated_msg] = ACTIONS(2586), + [anon_sym___deprecated_enum_msg] = ACTIONS(2586), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2586), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2586), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2586), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2586), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2586), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2586), + [anon_sym_ATprotocol] = ACTIONS(2588), + [anon_sym_ATinterface] = ACTIONS(2588), + [anon_sym_ATimplementation] = ACTIONS(2588), + [anon_sym_ATcompatibility_alias] = ACTIONS(2588), + [anon_sym_ATsynthesize] = ACTIONS(2588), + [anon_sym_ATdynamic] = ACTIONS(2588), + [anon_sym_ATtry] = ACTIONS(2588), + [anon_sym___try] = ACTIONS(2586), + [anon_sym_ATthrow] = ACTIONS(2588), + [anon_sym_ATselector] = ACTIONS(2588), + [anon_sym_ATavailable] = ACTIONS(2588), + [anon_sym___builtin_available] = ACTIONS(2586), + [anon_sym_va_arg] = ACTIONS(2586), + [anon_sym_ATencode] = ACTIONS(2588), + [anon_sym_ATsynchronized] = ACTIONS(2588), + [anon_sym_BOOL] = ACTIONS(2586), + [anon_sym_IMP] = ACTIONS(2586), + [anon_sym_SEL] = ACTIONS(2586), + [anon_sym_Class] = ACTIONS(2586), + [anon_sym_id] = ACTIONS(2586), + }, + [513] = { + [sym_identifier] = ACTIONS(2590), + [aux_sym_preproc_include_token1] = ACTIONS(2590), + [aux_sym_preproc_include_token2] = ACTIONS(2590), + [aux_sym_preproc_def_token1] = ACTIONS(2590), + [aux_sym_preproc_if_token1] = ACTIONS(2590), + [aux_sym_preproc_if_token2] = ACTIONS(2590), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2590), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2590), + [aux_sym_preproc_else_token1] = ACTIONS(2590), + [aux_sym_preproc_elif_token1] = ACTIONS(2590), + [sym_preproc_directive] = ACTIONS(2590), + [anon_sym_LPAREN2] = ACTIONS(2592), + [anon_sym_BANG] = ACTIONS(2592), + [anon_sym_TILDE] = ACTIONS(2592), + [anon_sym_DASH] = ACTIONS(2590), + [anon_sym_PLUS] = ACTIONS(2590), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_CARET] = ACTIONS(2592), + [anon_sym_AMP] = ACTIONS(2592), + [anon_sym_SEMI] = ACTIONS(2592), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_typedef] = ACTIONS(2590), + [anon_sym_extern] = ACTIONS(2590), + [anon_sym___attribute__] = ACTIONS(2590), + [anon_sym___attribute] = ACTIONS(2590), + [anon_sym_noreturn] = ACTIONS(2590), + [anon_sym_LBRACK] = ACTIONS(2592), + [anon_sym___declspec] = ACTIONS(2590), + [anon_sym___cdecl] = ACTIONS(2590), + [anon_sym___clrcall] = ACTIONS(2590), + [anon_sym___stdcall] = ACTIONS(2590), + [anon_sym___fastcall] = ACTIONS(2590), + [anon_sym___thiscall] = ACTIONS(2590), + [anon_sym___vectorcall] = ACTIONS(2590), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_signed] = ACTIONS(2590), + [anon_sym_unsigned] = ACTIONS(2590), + [anon_sym_long] = ACTIONS(2590), + [anon_sym_short] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(2590), + [anon_sym_ATautoreleasepool] = ACTIONS(2592), + [anon_sym_auto] = ACTIONS(2590), + [anon_sym_register] = ACTIONS(2590), + [anon_sym_inline] = ACTIONS(2590), + [anon_sym___inline] = ACTIONS(2590), + [anon_sym___inline__] = ACTIONS(2590), + [anon_sym___forceinline] = ACTIONS(2590), + [anon_sym_thread_local] = ACTIONS(2590), + [anon_sym___thread] = ACTIONS(2590), + [anon_sym_CG_EXTERN] = ACTIONS(2590), + [anon_sym_CG_INLINE] = ACTIONS(2590), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2590), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2590), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2590), + [anon_sym_IBOutlet] = ACTIONS(2590), + [anon_sym_IBInspectable] = ACTIONS(2590), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2590), + [anon_sym_NS_INLINE] = ACTIONS(2590), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2590), + [anon_sym_OBJC_EXPORT] = ACTIONS(2590), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2590), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2590), + [anon_sym_const] = ACTIONS(2590), + [anon_sym_constexpr] = ACTIONS(2590), + [anon_sym_volatile] = ACTIONS(2590), + [anon_sym_restrict] = ACTIONS(2590), + [anon_sym___restrict__] = ACTIONS(2590), + [anon_sym__Atomic] = ACTIONS(2590), + [anon_sym__Noreturn] = ACTIONS(2590), + [anon_sym__Nonnull] = ACTIONS(2590), + [anon_sym_nullable] = ACTIONS(2590), + [anon_sym__Complex] = ACTIONS(2590), + [anon_sym__Nullable] = ACTIONS(2590), + [anon_sym__Nullable_result] = ACTIONS(2590), + [anon_sym__Null_unspecified] = ACTIONS(2590), + [anon_sym___autoreleasing] = ACTIONS(2590), + [anon_sym___block] = ACTIONS(2590), + [anon_sym___bridge] = ACTIONS(2590), + [anon_sym___bridge_retained] = ACTIONS(2590), + [anon_sym___bridge_transfer] = ACTIONS(2590), + [anon_sym___complex] = ACTIONS(2590), + [anon_sym___const] = ACTIONS(2590), + [anon_sym___imag] = ACTIONS(2590), + [anon_sym___kindof] = ACTIONS(2590), + [anon_sym___nonnull] = ACTIONS(2590), + [anon_sym___nullable] = ACTIONS(2590), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2590), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2590), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2590), + [anon_sym___real] = ACTIONS(2590), + [anon_sym___strong] = ACTIONS(2590), + [anon_sym___unsafe_unretained] = ACTIONS(2590), + [anon_sym___unused] = ACTIONS(2590), + [anon_sym___weak] = ACTIONS(2590), + [anon_sym_alignas] = ACTIONS(2590), + [anon_sym__Alignas] = ACTIONS(2590), + [sym_primitive_type] = ACTIONS(2590), + [anon_sym_enum] = ACTIONS(2590), + [anon_sym_struct] = ACTIONS(2590), + [anon_sym_union] = ACTIONS(2590), + [anon_sym_if] = ACTIONS(2590), + [anon_sym_switch] = ACTIONS(2590), + [anon_sym_case] = ACTIONS(2590), + [anon_sym_default] = ACTIONS(2590), + [anon_sym_while] = ACTIONS(2590), + [anon_sym_do] = ACTIONS(2590), + [anon_sym_for] = ACTIONS(2590), + [anon_sym_in] = ACTIONS(2590), + [anon_sym_return] = ACTIONS(2590), + [anon_sym_break] = ACTIONS(2590), + [anon_sym_continue] = ACTIONS(2590), + [anon_sym_goto] = ACTIONS(2590), + [anon_sym_DASH_DASH] = ACTIONS(2592), + [anon_sym_PLUS_PLUS] = ACTIONS(2592), + [anon_sym_sizeof] = ACTIONS(2590), + [anon_sym___alignof__] = ACTIONS(2590), + [anon_sym___alignof] = ACTIONS(2590), + [anon_sym__alignof] = ACTIONS(2590), + [anon_sym_alignof] = ACTIONS(2590), + [anon_sym__Alignof] = ACTIONS(2590), + [anon_sym_offsetof] = ACTIONS(2590), + [anon_sym__Generic] = ACTIONS(2590), + [anon_sym_asm] = ACTIONS(2590), + [anon_sym___asm__] = ACTIONS(2590), + [anon_sym___asm] = ACTIONS(2590), + [sym_number_literal] = ACTIONS(2592), + [anon_sym_L_SQUOTE] = ACTIONS(2592), + [anon_sym_u_SQUOTE] = ACTIONS(2592), + [anon_sym_U_SQUOTE] = ACTIONS(2592), + [anon_sym_u8_SQUOTE] = ACTIONS(2592), + [anon_sym_SQUOTE] = ACTIONS(2592), + [anon_sym_AT] = ACTIONS(2590), + [anon_sym_DQUOTE] = ACTIONS(2592), + [anon_sym_L_DQUOTE] = ACTIONS(2592), + [anon_sym_u_DQUOTE] = ACTIONS(2592), + [anon_sym_U_DQUOTE] = ACTIONS(2592), + [anon_sym_u8_DQUOTE] = ACTIONS(2592), + [sym_true] = ACTIONS(2590), + [sym_false] = ACTIONS(2590), + [anon_sym_NULL] = ACTIONS(2590), + [anon_sym_nullptr] = ACTIONS(2590), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2590), + [anon_sym___typeof] = ACTIONS(2590), + [anon_sym_typeof] = ACTIONS(2590), + [anon_sym_ATimport] = ACTIONS(2592), + [aux_sym_preproc_undef_token1] = ACTIONS(2590), + [anon_sym_POUND] = ACTIONS(2590), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2590), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2590), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2590), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2590), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2590), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2590), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2590), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2590), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2590), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2590), + [anon_sym_NS_AVAILABLE] = ACTIONS(2590), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2590), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2590), + [anon_sym_API_AVAILABLE] = ACTIONS(2590), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2590), + [anon_sym_API_DEPRECATED] = ACTIONS(2590), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2590), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2590), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2590), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2590), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2590), + [anon_sym___deprecated_msg] = ACTIONS(2590), + [anon_sym___deprecated_enum_msg] = ACTIONS(2590), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2590), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2590), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2590), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2590), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2590), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2590), + [anon_sym_ATprotocol] = ACTIONS(2592), + [anon_sym_ATinterface] = ACTIONS(2592), + [anon_sym_ATimplementation] = ACTIONS(2592), + [anon_sym_ATcompatibility_alias] = ACTIONS(2592), + [anon_sym_ATsynthesize] = ACTIONS(2592), + [anon_sym_ATdynamic] = ACTIONS(2592), + [anon_sym_ATtry] = ACTIONS(2592), + [anon_sym___try] = ACTIONS(2590), + [anon_sym_ATthrow] = ACTIONS(2592), + [anon_sym_ATselector] = ACTIONS(2592), + [anon_sym_ATavailable] = ACTIONS(2592), + [anon_sym___builtin_available] = ACTIONS(2590), + [anon_sym_va_arg] = ACTIONS(2590), + [anon_sym_ATencode] = ACTIONS(2592), + [anon_sym_ATsynchronized] = ACTIONS(2592), + [anon_sym_BOOL] = ACTIONS(2590), + [anon_sym_IMP] = ACTIONS(2590), + [anon_sym_SEL] = ACTIONS(2590), + [anon_sym_Class] = ACTIONS(2590), + [anon_sym_id] = ACTIONS(2590), + }, + [514] = { + [sym_identifier] = ACTIONS(2594), + [aux_sym_preproc_include_token1] = ACTIONS(2594), + [aux_sym_preproc_include_token2] = ACTIONS(2594), + [aux_sym_preproc_def_token1] = ACTIONS(2594), + [aux_sym_preproc_if_token1] = ACTIONS(2594), + [aux_sym_preproc_if_token2] = ACTIONS(2594), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2594), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2594), + [aux_sym_preproc_else_token1] = ACTIONS(2594), + [aux_sym_preproc_elif_token1] = ACTIONS(2594), + [sym_preproc_directive] = ACTIONS(2594), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_BANG] = ACTIONS(2596), + [anon_sym_TILDE] = ACTIONS(2596), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_CARET] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2596), + [anon_sym_SEMI] = ACTIONS(2596), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_typedef] = ACTIONS(2594), + [anon_sym_extern] = ACTIONS(2594), + [anon_sym___attribute__] = ACTIONS(2594), + [anon_sym___attribute] = ACTIONS(2594), + [anon_sym_noreturn] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2596), + [anon_sym___declspec] = ACTIONS(2594), + [anon_sym___cdecl] = ACTIONS(2594), + [anon_sym___clrcall] = ACTIONS(2594), + [anon_sym___stdcall] = ACTIONS(2594), + [anon_sym___fastcall] = ACTIONS(2594), + [anon_sym___thiscall] = ACTIONS(2594), + [anon_sym___vectorcall] = ACTIONS(2594), + [anon_sym_LBRACE] = ACTIONS(2596), + [anon_sym_signed] = ACTIONS(2594), + [anon_sym_unsigned] = ACTIONS(2594), + [anon_sym_long] = ACTIONS(2594), + [anon_sym_short] = ACTIONS(2594), + [anon_sym_static] = ACTIONS(2594), + [anon_sym_ATautoreleasepool] = ACTIONS(2596), + [anon_sym_auto] = ACTIONS(2594), + [anon_sym_register] = ACTIONS(2594), + [anon_sym_inline] = ACTIONS(2594), + [anon_sym___inline] = ACTIONS(2594), + [anon_sym___inline__] = ACTIONS(2594), + [anon_sym___forceinline] = ACTIONS(2594), + [anon_sym_thread_local] = ACTIONS(2594), + [anon_sym___thread] = ACTIONS(2594), + [anon_sym_CG_EXTERN] = ACTIONS(2594), + [anon_sym_CG_INLINE] = ACTIONS(2594), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2594), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2594), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2594), + [anon_sym_IBOutlet] = ACTIONS(2594), + [anon_sym_IBInspectable] = ACTIONS(2594), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2594), + [anon_sym_NS_INLINE] = ACTIONS(2594), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2594), + [anon_sym_OBJC_EXPORT] = ACTIONS(2594), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2594), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2594), + [anon_sym_const] = ACTIONS(2594), + [anon_sym_constexpr] = ACTIONS(2594), + [anon_sym_volatile] = ACTIONS(2594), + [anon_sym_restrict] = ACTIONS(2594), + [anon_sym___restrict__] = ACTIONS(2594), + [anon_sym__Atomic] = ACTIONS(2594), + [anon_sym__Noreturn] = ACTIONS(2594), + [anon_sym__Nonnull] = ACTIONS(2594), + [anon_sym_nullable] = ACTIONS(2594), + [anon_sym__Complex] = ACTIONS(2594), + [anon_sym__Nullable] = ACTIONS(2594), + [anon_sym__Nullable_result] = ACTIONS(2594), + [anon_sym__Null_unspecified] = ACTIONS(2594), + [anon_sym___autoreleasing] = ACTIONS(2594), + [anon_sym___block] = ACTIONS(2594), + [anon_sym___bridge] = ACTIONS(2594), + [anon_sym___bridge_retained] = ACTIONS(2594), + [anon_sym___bridge_transfer] = ACTIONS(2594), + [anon_sym___complex] = ACTIONS(2594), + [anon_sym___const] = ACTIONS(2594), + [anon_sym___imag] = ACTIONS(2594), + [anon_sym___kindof] = ACTIONS(2594), + [anon_sym___nonnull] = ACTIONS(2594), + [anon_sym___nullable] = ACTIONS(2594), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2594), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2594), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2594), + [anon_sym___real] = ACTIONS(2594), + [anon_sym___strong] = ACTIONS(2594), + [anon_sym___unsafe_unretained] = ACTIONS(2594), + [anon_sym___unused] = ACTIONS(2594), + [anon_sym___weak] = ACTIONS(2594), + [anon_sym_alignas] = ACTIONS(2594), + [anon_sym__Alignas] = ACTIONS(2594), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_enum] = ACTIONS(2594), + [anon_sym_struct] = ACTIONS(2594), + [anon_sym_union] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_switch] = ACTIONS(2594), + [anon_sym_case] = ACTIONS(2594), + [anon_sym_default] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_in] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_break] = ACTIONS(2594), + [anon_sym_continue] = ACTIONS(2594), + [anon_sym_goto] = ACTIONS(2594), + [anon_sym_DASH_DASH] = ACTIONS(2596), + [anon_sym_PLUS_PLUS] = ACTIONS(2596), + [anon_sym_sizeof] = ACTIONS(2594), + [anon_sym___alignof__] = ACTIONS(2594), + [anon_sym___alignof] = ACTIONS(2594), + [anon_sym__alignof] = ACTIONS(2594), + [anon_sym_alignof] = ACTIONS(2594), + [anon_sym__Alignof] = ACTIONS(2594), + [anon_sym_offsetof] = ACTIONS(2594), + [anon_sym__Generic] = ACTIONS(2594), + [anon_sym_asm] = ACTIONS(2594), + [anon_sym___asm__] = ACTIONS(2594), + [anon_sym___asm] = ACTIONS(2594), + [sym_number_literal] = ACTIONS(2596), + [anon_sym_L_SQUOTE] = ACTIONS(2596), + [anon_sym_u_SQUOTE] = ACTIONS(2596), + [anon_sym_U_SQUOTE] = ACTIONS(2596), + [anon_sym_u8_SQUOTE] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_AT] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2596), + [anon_sym_L_DQUOTE] = ACTIONS(2596), + [anon_sym_u_DQUOTE] = ACTIONS(2596), + [anon_sym_U_DQUOTE] = ACTIONS(2596), + [anon_sym_u8_DQUOTE] = ACTIONS(2596), + [sym_true] = ACTIONS(2594), + [sym_false] = ACTIONS(2594), + [anon_sym_NULL] = ACTIONS(2594), + [anon_sym_nullptr] = ACTIONS(2594), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2594), + [anon_sym___typeof] = ACTIONS(2594), + [anon_sym_typeof] = ACTIONS(2594), + [anon_sym_ATimport] = ACTIONS(2596), + [aux_sym_preproc_undef_token1] = ACTIONS(2594), + [anon_sym_POUND] = ACTIONS(2594), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2594), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2594), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2594), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2594), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2594), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2594), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2594), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2594), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2594), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2594), + [anon_sym_NS_AVAILABLE] = ACTIONS(2594), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2594), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2594), + [anon_sym_API_AVAILABLE] = ACTIONS(2594), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2594), + [anon_sym_API_DEPRECATED] = ACTIONS(2594), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2594), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2594), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2594), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2594), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2594), + [anon_sym___deprecated_msg] = ACTIONS(2594), + [anon_sym___deprecated_enum_msg] = ACTIONS(2594), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2594), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2594), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2594), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2594), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2594), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2594), + [anon_sym_ATprotocol] = ACTIONS(2596), + [anon_sym_ATinterface] = ACTIONS(2596), + [anon_sym_ATimplementation] = ACTIONS(2596), + [anon_sym_ATcompatibility_alias] = ACTIONS(2596), + [anon_sym_ATsynthesize] = ACTIONS(2596), + [anon_sym_ATdynamic] = ACTIONS(2596), + [anon_sym_ATtry] = ACTIONS(2596), + [anon_sym___try] = ACTIONS(2594), + [anon_sym_ATthrow] = ACTIONS(2596), + [anon_sym_ATselector] = ACTIONS(2596), + [anon_sym_ATavailable] = ACTIONS(2596), + [anon_sym___builtin_available] = ACTIONS(2594), + [anon_sym_va_arg] = ACTIONS(2594), + [anon_sym_ATencode] = ACTIONS(2596), + [anon_sym_ATsynchronized] = ACTIONS(2596), + [anon_sym_BOOL] = ACTIONS(2594), + [anon_sym_IMP] = ACTIONS(2594), + [anon_sym_SEL] = ACTIONS(2594), + [anon_sym_Class] = ACTIONS(2594), + [anon_sym_id] = ACTIONS(2594), + }, + [515] = { + [sym_else_clause] = STATE(581), + [sym_identifier] = ACTIONS(2402), + [aux_sym_preproc_include_token1] = ACTIONS(2402), + [aux_sym_preproc_include_token2] = ACTIONS(2402), + [aux_sym_preproc_def_token1] = ACTIONS(2402), + [aux_sym_preproc_if_token1] = ACTIONS(2402), + [aux_sym_preproc_if_token2] = ACTIONS(2402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2402), + [sym_preproc_directive] = ACTIONS(2402), + [anon_sym_LPAREN2] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_TILDE] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_PLUS] = ACTIONS(2402), + [anon_sym_STAR] = ACTIONS(2404), + [anon_sym_CARET] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym___extension__] = ACTIONS(2402), + [anon_sym_typedef] = ACTIONS(2402), + [anon_sym_extern] = ACTIONS(2402), + [anon_sym___attribute__] = ACTIONS(2402), + [anon_sym___attribute] = ACTIONS(2402), + [anon_sym_noreturn] = ACTIONS(2402), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym___declspec] = ACTIONS(2402), + [anon_sym___cdecl] = ACTIONS(2402), + [anon_sym___clrcall] = ACTIONS(2402), + [anon_sym___stdcall] = ACTIONS(2402), + [anon_sym___fastcall] = ACTIONS(2402), + [anon_sym___thiscall] = ACTIONS(2402), + [anon_sym___vectorcall] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2404), + [anon_sym_signed] = ACTIONS(2402), + [anon_sym_unsigned] = ACTIONS(2402), + [anon_sym_long] = ACTIONS(2402), + [anon_sym_short] = ACTIONS(2402), + [anon_sym_static] = ACTIONS(2402), + [anon_sym_ATautoreleasepool] = ACTIONS(2404), + [anon_sym_auto] = ACTIONS(2402), + [anon_sym_register] = ACTIONS(2402), + [anon_sym_inline] = ACTIONS(2402), + [anon_sym___inline] = ACTIONS(2402), + [anon_sym___inline__] = ACTIONS(2402), + [anon_sym___forceinline] = ACTIONS(2402), + [anon_sym_thread_local] = ACTIONS(2402), + [anon_sym___thread] = ACTIONS(2402), + [anon_sym_CG_EXTERN] = ACTIONS(2402), + [anon_sym_CG_INLINE] = ACTIONS(2402), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2402), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2402), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2402), + [anon_sym_IBOutlet] = ACTIONS(2402), + [anon_sym_IBInspectable] = ACTIONS(2402), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2402), + [anon_sym_NS_INLINE] = ACTIONS(2402), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2402), + [anon_sym_OBJC_EXPORT] = ACTIONS(2402), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2402), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2402), + [anon_sym_const] = ACTIONS(2402), + [anon_sym_constexpr] = ACTIONS(2402), + [anon_sym_volatile] = ACTIONS(2402), + [anon_sym_restrict] = ACTIONS(2402), + [anon_sym___restrict__] = ACTIONS(2402), + [anon_sym__Atomic] = ACTIONS(2402), + [anon_sym__Noreturn] = ACTIONS(2402), + [anon_sym__Nonnull] = ACTIONS(2402), + [anon_sym_nullable] = ACTIONS(2402), + [anon_sym__Complex] = ACTIONS(2402), + [anon_sym__Nullable] = ACTIONS(2402), + [anon_sym__Nullable_result] = ACTIONS(2402), + [anon_sym__Null_unspecified] = ACTIONS(2402), + [anon_sym___autoreleasing] = ACTIONS(2402), + [anon_sym___block] = ACTIONS(2402), + [anon_sym___bridge] = ACTIONS(2402), + [anon_sym___bridge_retained] = ACTIONS(2402), + [anon_sym___bridge_transfer] = ACTIONS(2402), + [anon_sym___complex] = ACTIONS(2402), + [anon_sym___const] = ACTIONS(2402), + [anon_sym___imag] = ACTIONS(2402), + [anon_sym___kindof] = ACTIONS(2402), + [anon_sym___nonnull] = ACTIONS(2402), + [anon_sym___nullable] = ACTIONS(2402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2402), + [anon_sym___real] = ACTIONS(2402), + [anon_sym___strong] = ACTIONS(2402), + [anon_sym___unsafe_unretained] = ACTIONS(2402), + [anon_sym___unused] = ACTIONS(2402), + [anon_sym___weak] = ACTIONS(2402), + [anon_sym_alignas] = ACTIONS(2402), + [anon_sym__Alignas] = ACTIONS(2402), + [sym_primitive_type] = ACTIONS(2402), + [anon_sym_enum] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(2402), + [anon_sym_union] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_else] = ACTIONS(2884), + [anon_sym_switch] = ACTIONS(2402), + [anon_sym_case] = ACTIONS(2402), + [anon_sym_default] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_in] = ACTIONS(2402), + [anon_sym_return] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_goto] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2404), + [anon_sym_sizeof] = ACTIONS(2402), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2402), + [anon_sym_asm] = ACTIONS(2402), + [anon_sym___asm__] = ACTIONS(2402), + [anon_sym___asm] = ACTIONS(2402), + [sym_number_literal] = ACTIONS(2404), + [anon_sym_L_SQUOTE] = ACTIONS(2404), + [anon_sym_u_SQUOTE] = ACTIONS(2404), + [anon_sym_U_SQUOTE] = ACTIONS(2404), + [anon_sym_u8_SQUOTE] = ACTIONS(2404), + [anon_sym_SQUOTE] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_L_DQUOTE] = ACTIONS(2404), + [anon_sym_u_DQUOTE] = ACTIONS(2404), + [anon_sym_U_DQUOTE] = ACTIONS(2404), + [anon_sym_u8_DQUOTE] = ACTIONS(2404), + [sym_true] = ACTIONS(2402), + [sym_false] = ACTIONS(2402), + [anon_sym_NULL] = ACTIONS(2402), + [anon_sym_nullptr] = ACTIONS(2402), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2402), + [anon_sym___typeof] = ACTIONS(2402), + [anon_sym_typeof] = ACTIONS(2402), + [anon_sym_ATimport] = ACTIONS(2404), + [aux_sym_preproc_undef_token1] = ACTIONS(2402), + [anon_sym_POUND] = ACTIONS(2402), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2402), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2402), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2402), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2402), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2402), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2402), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2402), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2402), + [anon_sym_NS_AVAILABLE] = ACTIONS(2402), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2402), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_API_AVAILABLE] = ACTIONS(2402), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_API_DEPRECATED] = ACTIONS(2402), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2402), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2402), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2402), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2402), + [anon_sym___deprecated_msg] = ACTIONS(2402), + [anon_sym___deprecated_enum_msg] = ACTIONS(2402), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2402), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2402), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2402), + [anon_sym_ATprotocol] = ACTIONS(2404), + [anon_sym_ATinterface] = ACTIONS(2404), + [anon_sym_ATimplementation] = ACTIONS(2404), + [anon_sym_ATcompatibility_alias] = ACTIONS(2404), + [anon_sym_ATsynthesize] = ACTIONS(2404), + [anon_sym_ATdynamic] = ACTIONS(2404), + [anon_sym_ATtry] = ACTIONS(2404), + [anon_sym___try] = ACTIONS(2402), + [anon_sym_ATthrow] = ACTIONS(2404), + [anon_sym_ATselector] = ACTIONS(2404), + [anon_sym_ATavailable] = ACTIONS(2404), + [anon_sym___builtin_available] = ACTIONS(2402), + [anon_sym_va_arg] = ACTIONS(2402), + [anon_sym_ATencode] = ACTIONS(2404), + [anon_sym_ATsynchronized] = ACTIONS(2404), + [anon_sym_BOOL] = ACTIONS(2402), + [anon_sym_IMP] = ACTIONS(2402), + [anon_sym_SEL] = ACTIONS(2402), + [anon_sym_Class] = ACTIONS(2402), + [anon_sym_id] = ACTIONS(2402), + }, + [516] = { + [sym_identifier] = ACTIONS(2598), + [aux_sym_preproc_include_token1] = ACTIONS(2598), + [aux_sym_preproc_include_token2] = ACTIONS(2598), + [aux_sym_preproc_def_token1] = ACTIONS(2598), + [aux_sym_preproc_if_token1] = ACTIONS(2598), + [aux_sym_preproc_if_token2] = ACTIONS(2598), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2598), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2598), + [aux_sym_preproc_else_token1] = ACTIONS(2598), + [aux_sym_preproc_elif_token1] = ACTIONS(2598), + [sym_preproc_directive] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(2600), + [anon_sym_BANG] = ACTIONS(2600), + [anon_sym_TILDE] = ACTIONS(2600), + [anon_sym_DASH] = ACTIONS(2598), + [anon_sym_PLUS] = ACTIONS(2598), + [anon_sym_STAR] = ACTIONS(2600), + [anon_sym_CARET] = ACTIONS(2600), + [anon_sym_AMP] = ACTIONS(2600), + [anon_sym_SEMI] = ACTIONS(2600), + [anon_sym___extension__] = ACTIONS(2598), + [anon_sym_typedef] = ACTIONS(2598), + [anon_sym_extern] = ACTIONS(2598), + [anon_sym___attribute__] = ACTIONS(2598), + [anon_sym___attribute] = ACTIONS(2598), + [anon_sym_noreturn] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(2600), + [anon_sym___declspec] = ACTIONS(2598), + [anon_sym___cdecl] = ACTIONS(2598), + [anon_sym___clrcall] = ACTIONS(2598), + [anon_sym___stdcall] = ACTIONS(2598), + [anon_sym___fastcall] = ACTIONS(2598), + [anon_sym___thiscall] = ACTIONS(2598), + [anon_sym___vectorcall] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_signed] = ACTIONS(2598), + [anon_sym_unsigned] = ACTIONS(2598), + [anon_sym_long] = ACTIONS(2598), + [anon_sym_short] = ACTIONS(2598), + [anon_sym_static] = ACTIONS(2598), + [anon_sym_ATautoreleasepool] = ACTIONS(2600), + [anon_sym_auto] = ACTIONS(2598), + [anon_sym_register] = ACTIONS(2598), + [anon_sym_inline] = ACTIONS(2598), + [anon_sym___inline] = ACTIONS(2598), + [anon_sym___inline__] = ACTIONS(2598), + [anon_sym___forceinline] = ACTIONS(2598), + [anon_sym_thread_local] = ACTIONS(2598), + [anon_sym___thread] = ACTIONS(2598), + [anon_sym_CG_EXTERN] = ACTIONS(2598), + [anon_sym_CG_INLINE] = ACTIONS(2598), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2598), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2598), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2598), + [anon_sym_IBOutlet] = ACTIONS(2598), + [anon_sym_IBInspectable] = ACTIONS(2598), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2598), + [anon_sym_NS_INLINE] = ACTIONS(2598), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2598), + [anon_sym_OBJC_EXPORT] = ACTIONS(2598), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2598), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2598), + [anon_sym_const] = ACTIONS(2598), + [anon_sym_constexpr] = ACTIONS(2598), + [anon_sym_volatile] = ACTIONS(2598), + [anon_sym_restrict] = ACTIONS(2598), + [anon_sym___restrict__] = ACTIONS(2598), + [anon_sym__Atomic] = ACTIONS(2598), + [anon_sym__Noreturn] = ACTIONS(2598), + [anon_sym__Nonnull] = ACTIONS(2598), + [anon_sym_nullable] = ACTIONS(2598), + [anon_sym__Complex] = ACTIONS(2598), + [anon_sym__Nullable] = ACTIONS(2598), + [anon_sym__Nullable_result] = ACTIONS(2598), + [anon_sym__Null_unspecified] = ACTIONS(2598), + [anon_sym___autoreleasing] = ACTIONS(2598), + [anon_sym___block] = ACTIONS(2598), + [anon_sym___bridge] = ACTIONS(2598), + [anon_sym___bridge_retained] = ACTIONS(2598), + [anon_sym___bridge_transfer] = ACTIONS(2598), + [anon_sym___complex] = ACTIONS(2598), + [anon_sym___const] = ACTIONS(2598), + [anon_sym___imag] = ACTIONS(2598), + [anon_sym___kindof] = ACTIONS(2598), + [anon_sym___nonnull] = ACTIONS(2598), + [anon_sym___nullable] = ACTIONS(2598), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2598), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2598), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2598), + [anon_sym___real] = ACTIONS(2598), + [anon_sym___strong] = ACTIONS(2598), + [anon_sym___unsafe_unretained] = ACTIONS(2598), + [anon_sym___unused] = ACTIONS(2598), + [anon_sym___weak] = ACTIONS(2598), + [anon_sym_alignas] = ACTIONS(2598), + [anon_sym__Alignas] = ACTIONS(2598), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_enum] = ACTIONS(2598), + [anon_sym_struct] = ACTIONS(2598), + [anon_sym_union] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2598), + [anon_sym_switch] = ACTIONS(2598), + [anon_sym_case] = ACTIONS(2598), + [anon_sym_default] = ACTIONS(2598), + [anon_sym_while] = ACTIONS(2598), + [anon_sym_do] = ACTIONS(2598), + [anon_sym_for] = ACTIONS(2598), + [anon_sym_in] = ACTIONS(2598), + [anon_sym_return] = ACTIONS(2598), + [anon_sym_break] = ACTIONS(2598), + [anon_sym_continue] = ACTIONS(2598), + [anon_sym_goto] = ACTIONS(2598), + [anon_sym_DASH_DASH] = ACTIONS(2600), + [anon_sym_PLUS_PLUS] = ACTIONS(2600), + [anon_sym_sizeof] = ACTIONS(2598), + [anon_sym___alignof__] = ACTIONS(2598), + [anon_sym___alignof] = ACTIONS(2598), + [anon_sym__alignof] = ACTIONS(2598), + [anon_sym_alignof] = ACTIONS(2598), + [anon_sym__Alignof] = ACTIONS(2598), + [anon_sym_offsetof] = ACTIONS(2598), + [anon_sym__Generic] = ACTIONS(2598), + [anon_sym_asm] = ACTIONS(2598), + [anon_sym___asm__] = ACTIONS(2598), + [anon_sym___asm] = ACTIONS(2598), + [sym_number_literal] = ACTIONS(2600), + [anon_sym_L_SQUOTE] = ACTIONS(2600), + [anon_sym_u_SQUOTE] = ACTIONS(2600), + [anon_sym_U_SQUOTE] = ACTIONS(2600), + [anon_sym_u8_SQUOTE] = ACTIONS(2600), + [anon_sym_SQUOTE] = ACTIONS(2600), + [anon_sym_AT] = ACTIONS(2598), + [anon_sym_DQUOTE] = ACTIONS(2600), + [anon_sym_L_DQUOTE] = ACTIONS(2600), + [anon_sym_u_DQUOTE] = ACTIONS(2600), + [anon_sym_U_DQUOTE] = ACTIONS(2600), + [anon_sym_u8_DQUOTE] = ACTIONS(2600), + [sym_true] = ACTIONS(2598), + [sym_false] = ACTIONS(2598), + [anon_sym_NULL] = ACTIONS(2598), + [anon_sym_nullptr] = ACTIONS(2598), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2598), + [anon_sym___typeof] = ACTIONS(2598), + [anon_sym_typeof] = ACTIONS(2598), + [anon_sym_ATimport] = ACTIONS(2600), + [aux_sym_preproc_undef_token1] = ACTIONS(2598), + [anon_sym_POUND] = ACTIONS(2598), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2598), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2598), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2598), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2598), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2598), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2598), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2598), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2598), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2598), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2598), + [anon_sym_NS_AVAILABLE] = ACTIONS(2598), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2598), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2598), + [anon_sym_API_AVAILABLE] = ACTIONS(2598), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2598), + [anon_sym_API_DEPRECATED] = ACTIONS(2598), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2598), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2598), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2598), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2598), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2598), + [anon_sym___deprecated_msg] = ACTIONS(2598), + [anon_sym___deprecated_enum_msg] = ACTIONS(2598), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2598), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2598), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2598), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2598), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2598), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2598), + [anon_sym_ATprotocol] = ACTIONS(2600), + [anon_sym_ATinterface] = ACTIONS(2600), + [anon_sym_ATimplementation] = ACTIONS(2600), + [anon_sym_ATcompatibility_alias] = ACTIONS(2600), + [anon_sym_ATsynthesize] = ACTIONS(2600), + [anon_sym_ATdynamic] = ACTIONS(2600), + [anon_sym_ATtry] = ACTIONS(2600), + [anon_sym___try] = ACTIONS(2598), + [anon_sym_ATthrow] = ACTIONS(2600), + [anon_sym_ATselector] = ACTIONS(2600), + [anon_sym_ATavailable] = ACTIONS(2600), + [anon_sym___builtin_available] = ACTIONS(2598), + [anon_sym_va_arg] = ACTIONS(2598), + [anon_sym_ATencode] = ACTIONS(2600), + [anon_sym_ATsynchronized] = ACTIONS(2600), + [anon_sym_BOOL] = ACTIONS(2598), + [anon_sym_IMP] = ACTIONS(2598), + [anon_sym_SEL] = ACTIONS(2598), + [anon_sym_Class] = ACTIONS(2598), + [anon_sym_id] = ACTIONS(2598), + }, + [517] = { + [sym_identifier] = ACTIONS(2820), + [aux_sym_preproc_include_token1] = ACTIONS(2820), + [aux_sym_preproc_include_token2] = ACTIONS(2820), + [aux_sym_preproc_def_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token2] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), + [aux_sym_preproc_else_token1] = ACTIONS(2820), + [aux_sym_preproc_elif_token1] = ACTIONS(2820), + [sym_preproc_directive] = ACTIONS(2820), + [anon_sym_LPAREN2] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_CARET] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym___extension__] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym___attribute__] = ACTIONS(2820), + [anon_sym___attribute] = ACTIONS(2820), + [anon_sym_noreturn] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym___declspec] = ACTIONS(2820), + [anon_sym___cdecl] = ACTIONS(2820), + [anon_sym___clrcall] = ACTIONS(2820), + [anon_sym___stdcall] = ACTIONS(2820), + [anon_sym___fastcall] = ACTIONS(2820), + [anon_sym___thiscall] = ACTIONS(2820), + [anon_sym___vectorcall] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2820), + [anon_sym_unsigned] = ACTIONS(2820), + [anon_sym_long] = ACTIONS(2820), + [anon_sym_short] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_ATautoreleasepool] = ACTIONS(2822), + [anon_sym_auto] = ACTIONS(2820), + [anon_sym_register] = ACTIONS(2820), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym___inline] = ACTIONS(2820), + [anon_sym___inline__] = ACTIONS(2820), + [anon_sym___forceinline] = ACTIONS(2820), + [anon_sym_thread_local] = ACTIONS(2820), + [anon_sym___thread] = ACTIONS(2820), + [anon_sym_CG_EXTERN] = ACTIONS(2820), + [anon_sym_CG_INLINE] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2820), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2820), + [anon_sym_IBOutlet] = ACTIONS(2820), + [anon_sym_IBInspectable] = ACTIONS(2820), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2820), + [anon_sym_NS_INLINE] = ACTIONS(2820), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2820), + [anon_sym_OBJC_EXPORT] = ACTIONS(2820), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_constexpr] = ACTIONS(2820), + [anon_sym_volatile] = ACTIONS(2820), + [anon_sym_restrict] = ACTIONS(2820), + [anon_sym___restrict__] = ACTIONS(2820), + [anon_sym__Atomic] = ACTIONS(2820), + [anon_sym__Noreturn] = ACTIONS(2820), + [anon_sym__Nonnull] = ACTIONS(2820), + [anon_sym_nullable] = ACTIONS(2820), + [anon_sym__Complex] = ACTIONS(2820), + [anon_sym__Nullable] = ACTIONS(2820), + [anon_sym__Nullable_result] = ACTIONS(2820), + [anon_sym__Null_unspecified] = ACTIONS(2820), + [anon_sym___autoreleasing] = ACTIONS(2820), + [anon_sym___block] = ACTIONS(2820), + [anon_sym___bridge] = ACTIONS(2820), + [anon_sym___bridge_retained] = ACTIONS(2820), + [anon_sym___bridge_transfer] = ACTIONS(2820), + [anon_sym___complex] = ACTIONS(2820), + [anon_sym___const] = ACTIONS(2820), + [anon_sym___imag] = ACTIONS(2820), + [anon_sym___kindof] = ACTIONS(2820), + [anon_sym___nonnull] = ACTIONS(2820), + [anon_sym___nullable] = ACTIONS(2820), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2820), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2820), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2820), + [anon_sym___real] = ACTIONS(2820), + [anon_sym___strong] = ACTIONS(2820), + [anon_sym___unsafe_unretained] = ACTIONS(2820), + [anon_sym___unused] = ACTIONS(2820), + [anon_sym___weak] = ACTIONS(2820), + [anon_sym_alignas] = ACTIONS(2820), + [anon_sym__Alignas] = ACTIONS(2820), + [sym_primitive_type] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2820), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_case] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_in] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_goto] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_sizeof] = ACTIONS(2820), + [anon_sym___alignof__] = ACTIONS(2820), + [anon_sym___alignof] = ACTIONS(2820), + [anon_sym__alignof] = ACTIONS(2820), + [anon_sym_alignof] = ACTIONS(2820), + [anon_sym__Alignof] = ACTIONS(2820), + [anon_sym_offsetof] = ACTIONS(2820), + [anon_sym__Generic] = ACTIONS(2820), + [anon_sym_asm] = ACTIONS(2820), + [anon_sym___asm__] = ACTIONS(2820), + [anon_sym___asm] = ACTIONS(2820), + [sym_number_literal] = ACTIONS(2822), + [anon_sym_L_SQUOTE] = ACTIONS(2822), + [anon_sym_u_SQUOTE] = ACTIONS(2822), + [anon_sym_U_SQUOTE] = ACTIONS(2822), + [anon_sym_u8_SQUOTE] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2822), + [anon_sym_AT] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2822), + [anon_sym_L_DQUOTE] = ACTIONS(2822), + [anon_sym_u_DQUOTE] = ACTIONS(2822), + [anon_sym_U_DQUOTE] = ACTIONS(2822), + [anon_sym_u8_DQUOTE] = ACTIONS(2822), + [sym_true] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [anon_sym_NULL] = ACTIONS(2820), + [anon_sym_nullptr] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2820), + [anon_sym___typeof] = ACTIONS(2820), + [anon_sym_typeof] = ACTIONS(2820), + [anon_sym_ATimport] = ACTIONS(2822), + [aux_sym_preproc_undef_token1] = ACTIONS(2820), + [anon_sym_POUND] = ACTIONS(2820), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2820), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2820), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2820), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2820), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE] = ACTIONS(2820), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_API_AVAILABLE] = ACTIONS(2820), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_API_DEPRECATED] = ACTIONS(2820), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2820), + [anon_sym___deprecated_msg] = ACTIONS(2820), + [anon_sym___deprecated_enum_msg] = ACTIONS(2820), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2820), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2820), + [anon_sym_ATprotocol] = ACTIONS(2822), + [anon_sym_ATinterface] = ACTIONS(2822), + [anon_sym_ATimplementation] = ACTIONS(2822), + [anon_sym_ATcompatibility_alias] = ACTIONS(2822), + [anon_sym_ATsynthesize] = ACTIONS(2822), + [anon_sym_ATdynamic] = ACTIONS(2822), + [anon_sym_ATtry] = ACTIONS(2822), + [anon_sym___try] = ACTIONS(2820), + [anon_sym_ATthrow] = ACTIONS(2822), + [anon_sym_ATselector] = ACTIONS(2822), + [anon_sym_ATavailable] = ACTIONS(2822), + [anon_sym___builtin_available] = ACTIONS(2820), + [anon_sym_va_arg] = ACTIONS(2820), + [anon_sym_ATencode] = ACTIONS(2822), + [anon_sym_ATsynchronized] = ACTIONS(2822), + [anon_sym_BOOL] = ACTIONS(2820), + [anon_sym_IMP] = ACTIONS(2820), + [anon_sym_SEL] = ACTIONS(2820), + [anon_sym_Class] = ACTIONS(2820), + [anon_sym_id] = ACTIONS(2820), + }, + [518] = { + [sym_identifier] = ACTIONS(2820), + [aux_sym_preproc_include_token1] = ACTIONS(2820), + [aux_sym_preproc_include_token2] = ACTIONS(2820), + [aux_sym_preproc_def_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token2] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), + [aux_sym_preproc_else_token1] = ACTIONS(2820), + [aux_sym_preproc_elif_token1] = ACTIONS(2820), + [sym_preproc_directive] = ACTIONS(2820), + [anon_sym_LPAREN2] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_CARET] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym___extension__] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym___attribute__] = ACTIONS(2820), + [anon_sym___attribute] = ACTIONS(2820), + [anon_sym_noreturn] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym___declspec] = ACTIONS(2820), + [anon_sym___cdecl] = ACTIONS(2820), + [anon_sym___clrcall] = ACTIONS(2820), + [anon_sym___stdcall] = ACTIONS(2820), + [anon_sym___fastcall] = ACTIONS(2820), + [anon_sym___thiscall] = ACTIONS(2820), + [anon_sym___vectorcall] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2820), + [anon_sym_unsigned] = ACTIONS(2820), + [anon_sym_long] = ACTIONS(2820), + [anon_sym_short] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_ATautoreleasepool] = ACTIONS(2822), + [anon_sym_auto] = ACTIONS(2820), + [anon_sym_register] = ACTIONS(2820), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym___inline] = ACTIONS(2820), + [anon_sym___inline__] = ACTIONS(2820), + [anon_sym___forceinline] = ACTIONS(2820), + [anon_sym_thread_local] = ACTIONS(2820), + [anon_sym___thread] = ACTIONS(2820), + [anon_sym_CG_EXTERN] = ACTIONS(2820), + [anon_sym_CG_INLINE] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2820), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2820), + [anon_sym_IBOutlet] = ACTIONS(2820), + [anon_sym_IBInspectable] = ACTIONS(2820), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2820), + [anon_sym_NS_INLINE] = ACTIONS(2820), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2820), + [anon_sym_OBJC_EXPORT] = ACTIONS(2820), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_constexpr] = ACTIONS(2820), + [anon_sym_volatile] = ACTIONS(2820), + [anon_sym_restrict] = ACTIONS(2820), + [anon_sym___restrict__] = ACTIONS(2820), + [anon_sym__Atomic] = ACTIONS(2820), + [anon_sym__Noreturn] = ACTIONS(2820), + [anon_sym__Nonnull] = ACTIONS(2820), + [anon_sym_nullable] = ACTIONS(2820), + [anon_sym__Complex] = ACTIONS(2820), + [anon_sym__Nullable] = ACTIONS(2820), + [anon_sym__Nullable_result] = ACTIONS(2820), + [anon_sym__Null_unspecified] = ACTIONS(2820), + [anon_sym___autoreleasing] = ACTIONS(2820), + [anon_sym___block] = ACTIONS(2820), + [anon_sym___bridge] = ACTIONS(2820), + [anon_sym___bridge_retained] = ACTIONS(2820), + [anon_sym___bridge_transfer] = ACTIONS(2820), + [anon_sym___complex] = ACTIONS(2820), + [anon_sym___const] = ACTIONS(2820), + [anon_sym___imag] = ACTIONS(2820), + [anon_sym___kindof] = ACTIONS(2820), + [anon_sym___nonnull] = ACTIONS(2820), + [anon_sym___nullable] = ACTIONS(2820), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2820), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2820), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2820), + [anon_sym___real] = ACTIONS(2820), + [anon_sym___strong] = ACTIONS(2820), + [anon_sym___unsafe_unretained] = ACTIONS(2820), + [anon_sym___unused] = ACTIONS(2820), + [anon_sym___weak] = ACTIONS(2820), + [anon_sym_alignas] = ACTIONS(2820), + [anon_sym__Alignas] = ACTIONS(2820), + [sym_primitive_type] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2820), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_case] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_in] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_goto] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_sizeof] = ACTIONS(2820), + [anon_sym___alignof__] = ACTIONS(2820), + [anon_sym___alignof] = ACTIONS(2820), + [anon_sym__alignof] = ACTIONS(2820), + [anon_sym_alignof] = ACTIONS(2820), + [anon_sym__Alignof] = ACTIONS(2820), + [anon_sym_offsetof] = ACTIONS(2820), + [anon_sym__Generic] = ACTIONS(2820), + [anon_sym_asm] = ACTIONS(2820), + [anon_sym___asm__] = ACTIONS(2820), + [anon_sym___asm] = ACTIONS(2820), + [sym_number_literal] = ACTIONS(2822), + [anon_sym_L_SQUOTE] = ACTIONS(2822), + [anon_sym_u_SQUOTE] = ACTIONS(2822), + [anon_sym_U_SQUOTE] = ACTIONS(2822), + [anon_sym_u8_SQUOTE] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2822), + [anon_sym_AT] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2822), + [anon_sym_L_DQUOTE] = ACTIONS(2822), + [anon_sym_u_DQUOTE] = ACTIONS(2822), + [anon_sym_U_DQUOTE] = ACTIONS(2822), + [anon_sym_u8_DQUOTE] = ACTIONS(2822), + [sym_true] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [anon_sym_NULL] = ACTIONS(2820), + [anon_sym_nullptr] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2820), + [anon_sym___typeof] = ACTIONS(2820), + [anon_sym_typeof] = ACTIONS(2820), + [anon_sym_ATimport] = ACTIONS(2822), + [aux_sym_preproc_undef_token1] = ACTIONS(2820), + [anon_sym_POUND] = ACTIONS(2820), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2820), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2820), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2820), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2820), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE] = ACTIONS(2820), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_API_AVAILABLE] = ACTIONS(2820), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_API_DEPRECATED] = ACTIONS(2820), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2820), + [anon_sym___deprecated_msg] = ACTIONS(2820), + [anon_sym___deprecated_enum_msg] = ACTIONS(2820), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2820), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2820), + [anon_sym_ATprotocol] = ACTIONS(2822), + [anon_sym_ATinterface] = ACTIONS(2822), + [anon_sym_ATimplementation] = ACTIONS(2822), + [anon_sym_ATcompatibility_alias] = ACTIONS(2822), + [anon_sym_ATsynthesize] = ACTIONS(2822), + [anon_sym_ATdynamic] = ACTIONS(2822), + [anon_sym_ATtry] = ACTIONS(2822), + [anon_sym___try] = ACTIONS(2820), + [anon_sym_ATthrow] = ACTIONS(2822), + [anon_sym_ATselector] = ACTIONS(2822), + [anon_sym_ATavailable] = ACTIONS(2822), + [anon_sym___builtin_available] = ACTIONS(2820), + [anon_sym_va_arg] = ACTIONS(2820), + [anon_sym_ATencode] = ACTIONS(2822), + [anon_sym_ATsynchronized] = ACTIONS(2822), + [anon_sym_BOOL] = ACTIONS(2820), + [anon_sym_IMP] = ACTIONS(2820), + [anon_sym_SEL] = ACTIONS(2820), + [anon_sym_Class] = ACTIONS(2820), + [anon_sym_id] = ACTIONS(2820), + }, + [519] = { + [sym_identifier] = ACTIONS(2606), + [aux_sym_preproc_include_token1] = ACTIONS(2606), + [aux_sym_preproc_include_token2] = ACTIONS(2606), + [aux_sym_preproc_def_token1] = ACTIONS(2606), + [aux_sym_preproc_if_token1] = ACTIONS(2606), + [aux_sym_preproc_if_token2] = ACTIONS(2606), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2606), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2606), + [aux_sym_preproc_else_token1] = ACTIONS(2606), + [aux_sym_preproc_elif_token1] = ACTIONS(2606), + [sym_preproc_directive] = ACTIONS(2606), + [anon_sym_LPAREN2] = ACTIONS(2609), + [anon_sym_BANG] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2606), + [anon_sym_PLUS] = ACTIONS(2606), + [anon_sym_STAR] = ACTIONS(2609), + [anon_sym_CARET] = ACTIONS(2609), + [anon_sym_AMP] = ACTIONS(2609), + [anon_sym_SEMI] = ACTIONS(2609), + [anon_sym___extension__] = ACTIONS(2606), + [anon_sym_typedef] = ACTIONS(2606), + [anon_sym_extern] = ACTIONS(2606), + [anon_sym___attribute__] = ACTIONS(2606), + [anon_sym___attribute] = ACTIONS(2606), + [anon_sym_noreturn] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(2609), + [anon_sym___declspec] = ACTIONS(2606), + [anon_sym___cdecl] = ACTIONS(2606), + [anon_sym___clrcall] = ACTIONS(2606), + [anon_sym___stdcall] = ACTIONS(2606), + [anon_sym___fastcall] = ACTIONS(2606), + [anon_sym___thiscall] = ACTIONS(2606), + [anon_sym___vectorcall] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2609), + [anon_sym_signed] = ACTIONS(2606), + [anon_sym_unsigned] = ACTIONS(2606), + [anon_sym_long] = ACTIONS(2606), + [anon_sym_short] = ACTIONS(2606), + [anon_sym_static] = ACTIONS(2606), + [anon_sym_ATautoreleasepool] = ACTIONS(2609), + [anon_sym_auto] = ACTIONS(2606), + [anon_sym_register] = ACTIONS(2606), + [anon_sym_inline] = ACTIONS(2606), + [anon_sym___inline] = ACTIONS(2606), + [anon_sym___inline__] = ACTIONS(2606), + [anon_sym___forceinline] = ACTIONS(2606), + [anon_sym_thread_local] = ACTIONS(2606), + [anon_sym___thread] = ACTIONS(2606), + [anon_sym_CG_EXTERN] = ACTIONS(2606), + [anon_sym_CG_INLINE] = ACTIONS(2606), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2606), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2606), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2606), + [anon_sym_IBOutlet] = ACTIONS(2606), + [anon_sym_IBInspectable] = ACTIONS(2606), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2606), + [anon_sym_NS_INLINE] = ACTIONS(2606), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2606), + [anon_sym_OBJC_EXPORT] = ACTIONS(2606), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2606), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2606), + [anon_sym_const] = ACTIONS(2606), + [anon_sym_constexpr] = ACTIONS(2606), + [anon_sym_volatile] = ACTIONS(2606), + [anon_sym_restrict] = ACTIONS(2606), + [anon_sym___restrict__] = ACTIONS(2606), + [anon_sym__Atomic] = ACTIONS(2606), + [anon_sym__Noreturn] = ACTIONS(2606), + [anon_sym__Nonnull] = ACTIONS(2606), + [anon_sym_nullable] = ACTIONS(2606), + [anon_sym__Complex] = ACTIONS(2606), + [anon_sym__Nullable] = ACTIONS(2606), + [anon_sym__Nullable_result] = ACTIONS(2606), + [anon_sym__Null_unspecified] = ACTIONS(2606), + [anon_sym___autoreleasing] = ACTIONS(2606), + [anon_sym___block] = ACTIONS(2606), + [anon_sym___bridge] = ACTIONS(2606), + [anon_sym___bridge_retained] = ACTIONS(2606), + [anon_sym___bridge_transfer] = ACTIONS(2606), + [anon_sym___complex] = ACTIONS(2606), + [anon_sym___const] = ACTIONS(2606), + [anon_sym___imag] = ACTIONS(2606), + [anon_sym___kindof] = ACTIONS(2606), + [anon_sym___nonnull] = ACTIONS(2606), + [anon_sym___nullable] = ACTIONS(2606), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2606), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2606), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2606), + [anon_sym___real] = ACTIONS(2606), + [anon_sym___strong] = ACTIONS(2606), + [anon_sym___unsafe_unretained] = ACTIONS(2606), + [anon_sym___unused] = ACTIONS(2606), + [anon_sym___weak] = ACTIONS(2606), + [anon_sym_alignas] = ACTIONS(2606), + [anon_sym__Alignas] = ACTIONS(2606), + [sym_primitive_type] = ACTIONS(2606), + [anon_sym_enum] = ACTIONS(2606), + [anon_sym_struct] = ACTIONS(2606), + [anon_sym_union] = ACTIONS(2606), + [anon_sym_if] = ACTIONS(2606), + [anon_sym_switch] = ACTIONS(2606), + [anon_sym_case] = ACTIONS(2606), + [anon_sym_default] = ACTIONS(2606), + [anon_sym_while] = ACTIONS(2606), + [anon_sym_do] = ACTIONS(2606), + [anon_sym_for] = ACTIONS(2606), + [anon_sym_in] = ACTIONS(2606), + [anon_sym_return] = ACTIONS(2606), + [anon_sym_break] = ACTIONS(2606), + [anon_sym_continue] = ACTIONS(2606), + [anon_sym_goto] = ACTIONS(2606), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2606), + [anon_sym___alignof__] = ACTIONS(2606), + [anon_sym___alignof] = ACTIONS(2606), + [anon_sym__alignof] = ACTIONS(2606), + [anon_sym_alignof] = ACTIONS(2606), + [anon_sym__Alignof] = ACTIONS(2606), + [anon_sym_offsetof] = ACTIONS(2606), + [anon_sym__Generic] = ACTIONS(2606), + [anon_sym_asm] = ACTIONS(2606), + [anon_sym___asm__] = ACTIONS(2606), + [anon_sym___asm] = ACTIONS(2606), + [sym_number_literal] = ACTIONS(2609), + [anon_sym_L_SQUOTE] = ACTIONS(2609), + [anon_sym_u_SQUOTE] = ACTIONS(2609), + [anon_sym_U_SQUOTE] = ACTIONS(2609), + [anon_sym_u8_SQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE] = ACTIONS(2609), + [anon_sym_AT] = ACTIONS(2606), + [anon_sym_DQUOTE] = ACTIONS(2609), + [anon_sym_L_DQUOTE] = ACTIONS(2609), + [anon_sym_u_DQUOTE] = ACTIONS(2609), + [anon_sym_U_DQUOTE] = ACTIONS(2609), + [anon_sym_u8_DQUOTE] = ACTIONS(2609), + [sym_true] = ACTIONS(2606), + [sym_false] = ACTIONS(2606), + [anon_sym_NULL] = ACTIONS(2606), + [anon_sym_nullptr] = ACTIONS(2606), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2606), + [anon_sym___typeof] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(2606), + [anon_sym_ATimport] = ACTIONS(2609), + [aux_sym_preproc_undef_token1] = ACTIONS(2606), + [anon_sym_POUND] = ACTIONS(2606), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2606), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2606), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2606), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2606), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2606), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2606), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2606), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2606), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2606), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2606), + [anon_sym_NS_AVAILABLE] = ACTIONS(2606), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2606), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2606), + [anon_sym_API_AVAILABLE] = ACTIONS(2606), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2606), + [anon_sym_API_DEPRECATED] = ACTIONS(2606), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2606), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2606), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2606), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2606), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2606), + [anon_sym___deprecated_msg] = ACTIONS(2606), + [anon_sym___deprecated_enum_msg] = ACTIONS(2606), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2606), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2606), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2606), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2606), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2606), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2606), + [anon_sym_ATprotocol] = ACTIONS(2609), + [anon_sym_ATinterface] = ACTIONS(2609), + [anon_sym_ATimplementation] = ACTIONS(2609), + [anon_sym_ATcompatibility_alias] = ACTIONS(2609), + [anon_sym_ATsynthesize] = ACTIONS(2609), + [anon_sym_ATdynamic] = ACTIONS(2609), + [anon_sym_ATtry] = ACTIONS(2609), + [anon_sym___try] = ACTIONS(2606), + [anon_sym_ATthrow] = ACTIONS(2609), + [anon_sym_ATselector] = ACTIONS(2609), + [anon_sym_ATavailable] = ACTIONS(2609), + [anon_sym___builtin_available] = ACTIONS(2606), + [anon_sym_va_arg] = ACTIONS(2606), + [anon_sym_ATencode] = ACTIONS(2609), + [anon_sym_ATsynchronized] = ACTIONS(2609), + [anon_sym_BOOL] = ACTIONS(2606), + [anon_sym_IMP] = ACTIONS(2606), + [anon_sym_SEL] = ACTIONS(2606), + [anon_sym_Class] = ACTIONS(2606), + [anon_sym_id] = ACTIONS(2606), + }, + [520] = { + [sym_identifier] = ACTIONS(2620), + [aux_sym_preproc_include_token1] = ACTIONS(2620), + [aux_sym_preproc_include_token2] = ACTIONS(2620), + [aux_sym_preproc_def_token1] = ACTIONS(2620), + [aux_sym_preproc_if_token1] = ACTIONS(2620), + [aux_sym_preproc_if_token2] = ACTIONS(2620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2620), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2620), + [aux_sym_preproc_else_token1] = ACTIONS(2620), + [aux_sym_preproc_elif_token1] = ACTIONS(2620), + [sym_preproc_directive] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(2622), + [anon_sym_BANG] = ACTIONS(2622), + [anon_sym_TILDE] = ACTIONS(2622), + [anon_sym_DASH] = ACTIONS(2620), + [anon_sym_PLUS] = ACTIONS(2620), + [anon_sym_STAR] = ACTIONS(2622), + [anon_sym_CARET] = ACTIONS(2622), + [anon_sym_AMP] = ACTIONS(2622), + [anon_sym_SEMI] = ACTIONS(2622), + [anon_sym___extension__] = ACTIONS(2620), + [anon_sym_typedef] = ACTIONS(2620), + [anon_sym_extern] = ACTIONS(2620), + [anon_sym___attribute__] = ACTIONS(2620), + [anon_sym___attribute] = ACTIONS(2620), + [anon_sym_noreturn] = ACTIONS(2620), + [anon_sym_LBRACK] = ACTIONS(2622), + [anon_sym___declspec] = ACTIONS(2620), + [anon_sym___cdecl] = ACTIONS(2620), + [anon_sym___clrcall] = ACTIONS(2620), + [anon_sym___stdcall] = ACTIONS(2620), + [anon_sym___fastcall] = ACTIONS(2620), + [anon_sym___thiscall] = ACTIONS(2620), + [anon_sym___vectorcall] = ACTIONS(2620), + [anon_sym_LBRACE] = ACTIONS(2622), + [anon_sym_signed] = ACTIONS(2620), + [anon_sym_unsigned] = ACTIONS(2620), + [anon_sym_long] = ACTIONS(2620), + [anon_sym_short] = ACTIONS(2620), + [anon_sym_static] = ACTIONS(2620), + [anon_sym_ATautoreleasepool] = ACTIONS(2622), + [anon_sym_auto] = ACTIONS(2620), + [anon_sym_register] = ACTIONS(2620), + [anon_sym_inline] = ACTIONS(2620), + [anon_sym___inline] = ACTIONS(2620), + [anon_sym___inline__] = ACTIONS(2620), + [anon_sym___forceinline] = ACTIONS(2620), + [anon_sym_thread_local] = ACTIONS(2620), + [anon_sym___thread] = ACTIONS(2620), + [anon_sym_CG_EXTERN] = ACTIONS(2620), + [anon_sym_CG_INLINE] = ACTIONS(2620), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2620), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2620), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2620), + [anon_sym_IBOutlet] = ACTIONS(2620), + [anon_sym_IBInspectable] = ACTIONS(2620), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2620), + [anon_sym_NS_INLINE] = ACTIONS(2620), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2620), + [anon_sym_OBJC_EXPORT] = ACTIONS(2620), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2620), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2620), + [anon_sym_const] = ACTIONS(2620), + [anon_sym_constexpr] = ACTIONS(2620), + [anon_sym_volatile] = ACTIONS(2620), + [anon_sym_restrict] = ACTIONS(2620), + [anon_sym___restrict__] = ACTIONS(2620), + [anon_sym__Atomic] = ACTIONS(2620), + [anon_sym__Noreturn] = ACTIONS(2620), + [anon_sym__Nonnull] = ACTIONS(2620), + [anon_sym_nullable] = ACTIONS(2620), + [anon_sym__Complex] = ACTIONS(2620), + [anon_sym__Nullable] = ACTIONS(2620), + [anon_sym__Nullable_result] = ACTIONS(2620), + [anon_sym__Null_unspecified] = ACTIONS(2620), + [anon_sym___autoreleasing] = ACTIONS(2620), + [anon_sym___block] = ACTIONS(2620), + [anon_sym___bridge] = ACTIONS(2620), + [anon_sym___bridge_retained] = ACTIONS(2620), + [anon_sym___bridge_transfer] = ACTIONS(2620), + [anon_sym___complex] = ACTIONS(2620), + [anon_sym___const] = ACTIONS(2620), + [anon_sym___imag] = ACTIONS(2620), + [anon_sym___kindof] = ACTIONS(2620), + [anon_sym___nonnull] = ACTIONS(2620), + [anon_sym___nullable] = ACTIONS(2620), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2620), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2620), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2620), + [anon_sym___real] = ACTIONS(2620), + [anon_sym___strong] = ACTIONS(2620), + [anon_sym___unsafe_unretained] = ACTIONS(2620), + [anon_sym___unused] = ACTIONS(2620), + [anon_sym___weak] = ACTIONS(2620), + [anon_sym_alignas] = ACTIONS(2620), + [anon_sym__Alignas] = ACTIONS(2620), + [sym_primitive_type] = ACTIONS(2620), + [anon_sym_enum] = ACTIONS(2620), + [anon_sym_struct] = ACTIONS(2620), + [anon_sym_union] = ACTIONS(2620), + [anon_sym_if] = ACTIONS(2620), + [anon_sym_switch] = ACTIONS(2620), + [anon_sym_case] = ACTIONS(2620), + [anon_sym_default] = ACTIONS(2620), + [anon_sym_while] = ACTIONS(2620), + [anon_sym_do] = ACTIONS(2620), + [anon_sym_for] = ACTIONS(2620), + [anon_sym_in] = ACTIONS(2620), + [anon_sym_return] = ACTIONS(2620), + [anon_sym_break] = ACTIONS(2620), + [anon_sym_continue] = ACTIONS(2620), + [anon_sym_goto] = ACTIONS(2620), + [anon_sym_DASH_DASH] = ACTIONS(2622), + [anon_sym_PLUS_PLUS] = ACTIONS(2622), + [anon_sym_sizeof] = ACTIONS(2620), + [anon_sym___alignof__] = ACTIONS(2620), + [anon_sym___alignof] = ACTIONS(2620), + [anon_sym__alignof] = ACTIONS(2620), + [anon_sym_alignof] = ACTIONS(2620), + [anon_sym__Alignof] = ACTIONS(2620), + [anon_sym_offsetof] = ACTIONS(2620), + [anon_sym__Generic] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2620), + [anon_sym___asm__] = ACTIONS(2620), + [anon_sym___asm] = ACTIONS(2620), + [sym_number_literal] = ACTIONS(2622), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_AT] = ACTIONS(2620), + [anon_sym_DQUOTE] = ACTIONS(2622), + [anon_sym_L_DQUOTE] = ACTIONS(2622), + [anon_sym_u_DQUOTE] = ACTIONS(2622), + [anon_sym_U_DQUOTE] = ACTIONS(2622), + [anon_sym_u8_DQUOTE] = ACTIONS(2622), + [sym_true] = ACTIONS(2620), + [sym_false] = ACTIONS(2620), + [anon_sym_NULL] = ACTIONS(2620), + [anon_sym_nullptr] = ACTIONS(2620), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2620), + [anon_sym___typeof] = ACTIONS(2620), + [anon_sym_typeof] = ACTIONS(2620), + [anon_sym_ATimport] = ACTIONS(2622), + [aux_sym_preproc_undef_token1] = ACTIONS(2620), + [anon_sym_POUND] = ACTIONS(2620), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2620), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2620), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2620), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2620), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2620), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2620), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2620), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2620), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2620), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2620), + [anon_sym_NS_AVAILABLE] = ACTIONS(2620), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2620), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2620), + [anon_sym_API_AVAILABLE] = ACTIONS(2620), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2620), + [anon_sym_API_DEPRECATED] = ACTIONS(2620), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2620), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2620), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2620), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2620), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2620), + [anon_sym___deprecated_msg] = ACTIONS(2620), + [anon_sym___deprecated_enum_msg] = ACTIONS(2620), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2620), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2620), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2620), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2620), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2620), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2620), + [anon_sym_ATprotocol] = ACTIONS(2622), + [anon_sym_ATinterface] = ACTIONS(2622), + [anon_sym_ATimplementation] = ACTIONS(2622), + [anon_sym_ATcompatibility_alias] = ACTIONS(2622), + [anon_sym_ATsynthesize] = ACTIONS(2622), + [anon_sym_ATdynamic] = ACTIONS(2622), + [anon_sym_ATtry] = ACTIONS(2622), + [anon_sym___try] = ACTIONS(2620), + [anon_sym_ATthrow] = ACTIONS(2622), + [anon_sym_ATselector] = ACTIONS(2622), + [anon_sym_ATavailable] = ACTIONS(2622), + [anon_sym___builtin_available] = ACTIONS(2620), + [anon_sym_va_arg] = ACTIONS(2620), + [anon_sym_ATencode] = ACTIONS(2622), + [anon_sym_ATsynchronized] = ACTIONS(2622), + [anon_sym_BOOL] = ACTIONS(2620), + [anon_sym_IMP] = ACTIONS(2620), + [anon_sym_SEL] = ACTIONS(2620), + [anon_sym_Class] = ACTIONS(2620), + [anon_sym_id] = ACTIONS(2620), + }, + [521] = { + [sym_identifier] = ACTIONS(2624), + [aux_sym_preproc_include_token1] = ACTIONS(2624), + [aux_sym_preproc_include_token2] = ACTIONS(2624), + [aux_sym_preproc_def_token1] = ACTIONS(2624), + [aux_sym_preproc_if_token1] = ACTIONS(2624), + [aux_sym_preproc_if_token2] = ACTIONS(2624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2624), + [aux_sym_preproc_else_token1] = ACTIONS(2624), + [aux_sym_preproc_elif_token1] = ACTIONS(2624), + [sym_preproc_directive] = ACTIONS(2624), + [anon_sym_LPAREN2] = ACTIONS(2626), + [anon_sym_BANG] = ACTIONS(2626), + [anon_sym_TILDE] = ACTIONS(2626), + [anon_sym_DASH] = ACTIONS(2624), + [anon_sym_PLUS] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2626), + [anon_sym_CARET] = ACTIONS(2626), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_SEMI] = ACTIONS(2626), + [anon_sym___extension__] = ACTIONS(2624), + [anon_sym_typedef] = ACTIONS(2624), + [anon_sym_extern] = ACTIONS(2624), + [anon_sym___attribute__] = ACTIONS(2624), + [anon_sym___attribute] = ACTIONS(2624), + [anon_sym_noreturn] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2626), + [anon_sym___declspec] = ACTIONS(2624), + [anon_sym___cdecl] = ACTIONS(2624), + [anon_sym___clrcall] = ACTIONS(2624), + [anon_sym___stdcall] = ACTIONS(2624), + [anon_sym___fastcall] = ACTIONS(2624), + [anon_sym___thiscall] = ACTIONS(2624), + [anon_sym___vectorcall] = ACTIONS(2624), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_signed] = ACTIONS(2624), + [anon_sym_unsigned] = ACTIONS(2624), + [anon_sym_long] = ACTIONS(2624), + [anon_sym_short] = ACTIONS(2624), + [anon_sym_static] = ACTIONS(2624), + [anon_sym_ATautoreleasepool] = ACTIONS(2626), + [anon_sym_auto] = ACTIONS(2624), + [anon_sym_register] = ACTIONS(2624), + [anon_sym_inline] = ACTIONS(2624), + [anon_sym___inline] = ACTIONS(2624), + [anon_sym___inline__] = ACTIONS(2624), + [anon_sym___forceinline] = ACTIONS(2624), + [anon_sym_thread_local] = ACTIONS(2624), + [anon_sym___thread] = ACTIONS(2624), + [anon_sym_CG_EXTERN] = ACTIONS(2624), + [anon_sym_CG_INLINE] = ACTIONS(2624), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2624), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2624), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2624), + [anon_sym_IBOutlet] = ACTIONS(2624), + [anon_sym_IBInspectable] = ACTIONS(2624), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2624), + [anon_sym_NS_INLINE] = ACTIONS(2624), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2624), + [anon_sym_OBJC_EXPORT] = ACTIONS(2624), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2624), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2624), + [anon_sym_const] = ACTIONS(2624), + [anon_sym_constexpr] = ACTIONS(2624), + [anon_sym_volatile] = ACTIONS(2624), + [anon_sym_restrict] = ACTIONS(2624), + [anon_sym___restrict__] = ACTIONS(2624), + [anon_sym__Atomic] = ACTIONS(2624), + [anon_sym__Noreturn] = ACTIONS(2624), + [anon_sym__Nonnull] = ACTIONS(2624), + [anon_sym_nullable] = ACTIONS(2624), + [anon_sym__Complex] = ACTIONS(2624), + [anon_sym__Nullable] = ACTIONS(2624), + [anon_sym__Nullable_result] = ACTIONS(2624), + [anon_sym__Null_unspecified] = ACTIONS(2624), + [anon_sym___autoreleasing] = ACTIONS(2624), + [anon_sym___block] = ACTIONS(2624), + [anon_sym___bridge] = ACTIONS(2624), + [anon_sym___bridge_retained] = ACTIONS(2624), + [anon_sym___bridge_transfer] = ACTIONS(2624), + [anon_sym___complex] = ACTIONS(2624), + [anon_sym___const] = ACTIONS(2624), + [anon_sym___imag] = ACTIONS(2624), + [anon_sym___kindof] = ACTIONS(2624), + [anon_sym___nonnull] = ACTIONS(2624), + [anon_sym___nullable] = ACTIONS(2624), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2624), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2624), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2624), + [anon_sym___real] = ACTIONS(2624), + [anon_sym___strong] = ACTIONS(2624), + [anon_sym___unsafe_unretained] = ACTIONS(2624), + [anon_sym___unused] = ACTIONS(2624), + [anon_sym___weak] = ACTIONS(2624), + [anon_sym_alignas] = ACTIONS(2624), + [anon_sym__Alignas] = ACTIONS(2624), + [sym_primitive_type] = ACTIONS(2624), + [anon_sym_enum] = ACTIONS(2624), + [anon_sym_struct] = ACTIONS(2624), + [anon_sym_union] = ACTIONS(2624), + [anon_sym_if] = ACTIONS(2624), + [anon_sym_switch] = ACTIONS(2624), + [anon_sym_case] = ACTIONS(2624), + [anon_sym_default] = ACTIONS(2624), + [anon_sym_while] = ACTIONS(2624), + [anon_sym_do] = ACTIONS(2624), + [anon_sym_for] = ACTIONS(2624), + [anon_sym_in] = ACTIONS(2624), + [anon_sym_return] = ACTIONS(2624), + [anon_sym_break] = ACTIONS(2624), + [anon_sym_continue] = ACTIONS(2624), + [anon_sym_goto] = ACTIONS(2624), + [anon_sym_DASH_DASH] = ACTIONS(2626), + [anon_sym_PLUS_PLUS] = ACTIONS(2626), + [anon_sym_sizeof] = ACTIONS(2624), + [anon_sym___alignof__] = ACTIONS(2624), + [anon_sym___alignof] = ACTIONS(2624), + [anon_sym__alignof] = ACTIONS(2624), + [anon_sym_alignof] = ACTIONS(2624), + [anon_sym__Alignof] = ACTIONS(2624), + [anon_sym_offsetof] = ACTIONS(2624), + [anon_sym__Generic] = ACTIONS(2624), + [anon_sym_asm] = ACTIONS(2624), + [anon_sym___asm__] = ACTIONS(2624), + [anon_sym___asm] = ACTIONS(2624), + [sym_number_literal] = ACTIONS(2626), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_AT] = ACTIONS(2624), + [anon_sym_DQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2626), + [anon_sym_u_DQUOTE] = ACTIONS(2626), + [anon_sym_U_DQUOTE] = ACTIONS(2626), + [anon_sym_u8_DQUOTE] = ACTIONS(2626), + [sym_true] = ACTIONS(2624), + [sym_false] = ACTIONS(2624), + [anon_sym_NULL] = ACTIONS(2624), + [anon_sym_nullptr] = ACTIONS(2624), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2624), + [anon_sym___typeof] = ACTIONS(2624), + [anon_sym_typeof] = ACTIONS(2624), + [anon_sym_ATimport] = ACTIONS(2626), + [aux_sym_preproc_undef_token1] = ACTIONS(2624), + [anon_sym_POUND] = ACTIONS(2624), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2624), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2624), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2624), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2624), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2624), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2624), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2624), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2624), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2624), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2624), + [anon_sym_NS_AVAILABLE] = ACTIONS(2624), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2624), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2624), + [anon_sym_API_AVAILABLE] = ACTIONS(2624), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2624), + [anon_sym_API_DEPRECATED] = ACTIONS(2624), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2624), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2624), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2624), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2624), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2624), + [anon_sym___deprecated_msg] = ACTIONS(2624), + [anon_sym___deprecated_enum_msg] = ACTIONS(2624), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2624), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2624), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2624), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2624), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2624), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2624), + [anon_sym_ATprotocol] = ACTIONS(2626), + [anon_sym_ATinterface] = ACTIONS(2626), + [anon_sym_ATimplementation] = ACTIONS(2626), + [anon_sym_ATcompatibility_alias] = ACTIONS(2626), + [anon_sym_ATsynthesize] = ACTIONS(2626), + [anon_sym_ATdynamic] = ACTIONS(2626), + [anon_sym_ATtry] = ACTIONS(2626), + [anon_sym___try] = ACTIONS(2624), + [anon_sym_ATthrow] = ACTIONS(2626), + [anon_sym_ATselector] = ACTIONS(2626), + [anon_sym_ATavailable] = ACTIONS(2626), + [anon_sym___builtin_available] = ACTIONS(2624), + [anon_sym_va_arg] = ACTIONS(2624), + [anon_sym_ATencode] = ACTIONS(2626), + [anon_sym_ATsynchronized] = ACTIONS(2626), + [anon_sym_BOOL] = ACTIONS(2624), + [anon_sym_IMP] = ACTIONS(2624), + [anon_sym_SEL] = ACTIONS(2624), + [anon_sym_Class] = ACTIONS(2624), + [anon_sym_id] = ACTIONS(2624), + }, + [522] = { + [sym_identifier] = ACTIONS(2628), + [aux_sym_preproc_include_token1] = ACTIONS(2628), + [aux_sym_preproc_include_token2] = ACTIONS(2628), + [aux_sym_preproc_def_token1] = ACTIONS(2628), + [aux_sym_preproc_if_token1] = ACTIONS(2628), + [aux_sym_preproc_if_token2] = ACTIONS(2628), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2628), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2628), + [aux_sym_preproc_else_token1] = ACTIONS(2628), + [aux_sym_preproc_elif_token1] = ACTIONS(2628), + [sym_preproc_directive] = ACTIONS(2628), + [anon_sym_LPAREN2] = ACTIONS(2630), + [anon_sym_BANG] = ACTIONS(2630), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2628), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_CARET] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2630), + [anon_sym_SEMI] = ACTIONS(2630), + [anon_sym___extension__] = ACTIONS(2628), + [anon_sym_typedef] = ACTIONS(2628), + [anon_sym_extern] = ACTIONS(2628), + [anon_sym___attribute__] = ACTIONS(2628), + [anon_sym___attribute] = ACTIONS(2628), + [anon_sym_noreturn] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2630), + [anon_sym___declspec] = ACTIONS(2628), + [anon_sym___cdecl] = ACTIONS(2628), + [anon_sym___clrcall] = ACTIONS(2628), + [anon_sym___stdcall] = ACTIONS(2628), + [anon_sym___fastcall] = ACTIONS(2628), + [anon_sym___thiscall] = ACTIONS(2628), + [anon_sym___vectorcall] = ACTIONS(2628), + [anon_sym_LBRACE] = ACTIONS(2630), + [anon_sym_signed] = ACTIONS(2628), + [anon_sym_unsigned] = ACTIONS(2628), + [anon_sym_long] = ACTIONS(2628), + [anon_sym_short] = ACTIONS(2628), + [anon_sym_static] = ACTIONS(2628), + [anon_sym_ATautoreleasepool] = ACTIONS(2630), + [anon_sym_auto] = ACTIONS(2628), + [anon_sym_register] = ACTIONS(2628), + [anon_sym_inline] = ACTIONS(2628), + [anon_sym___inline] = ACTIONS(2628), + [anon_sym___inline__] = ACTIONS(2628), + [anon_sym___forceinline] = ACTIONS(2628), + [anon_sym_thread_local] = ACTIONS(2628), + [anon_sym___thread] = ACTIONS(2628), + [anon_sym_CG_EXTERN] = ACTIONS(2628), + [anon_sym_CG_INLINE] = ACTIONS(2628), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2628), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2628), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2628), + [anon_sym_IBOutlet] = ACTIONS(2628), + [anon_sym_IBInspectable] = ACTIONS(2628), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2628), + [anon_sym_NS_INLINE] = ACTIONS(2628), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2628), + [anon_sym_OBJC_EXPORT] = ACTIONS(2628), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2628), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2628), + [anon_sym_const] = ACTIONS(2628), + [anon_sym_constexpr] = ACTIONS(2628), + [anon_sym_volatile] = ACTIONS(2628), + [anon_sym_restrict] = ACTIONS(2628), + [anon_sym___restrict__] = ACTIONS(2628), + [anon_sym__Atomic] = ACTIONS(2628), + [anon_sym__Noreturn] = ACTIONS(2628), + [anon_sym__Nonnull] = ACTIONS(2628), + [anon_sym_nullable] = ACTIONS(2628), + [anon_sym__Complex] = ACTIONS(2628), + [anon_sym__Nullable] = ACTIONS(2628), + [anon_sym__Nullable_result] = ACTIONS(2628), + [anon_sym__Null_unspecified] = ACTIONS(2628), + [anon_sym___autoreleasing] = ACTIONS(2628), + [anon_sym___block] = ACTIONS(2628), + [anon_sym___bridge] = ACTIONS(2628), + [anon_sym___bridge_retained] = ACTIONS(2628), + [anon_sym___bridge_transfer] = ACTIONS(2628), + [anon_sym___complex] = ACTIONS(2628), + [anon_sym___const] = ACTIONS(2628), + [anon_sym___imag] = ACTIONS(2628), + [anon_sym___kindof] = ACTIONS(2628), + [anon_sym___nonnull] = ACTIONS(2628), + [anon_sym___nullable] = ACTIONS(2628), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2628), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2628), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2628), + [anon_sym___real] = ACTIONS(2628), + [anon_sym___strong] = ACTIONS(2628), + [anon_sym___unsafe_unretained] = ACTIONS(2628), + [anon_sym___unused] = ACTIONS(2628), + [anon_sym___weak] = ACTIONS(2628), + [anon_sym_alignas] = ACTIONS(2628), + [anon_sym__Alignas] = ACTIONS(2628), + [sym_primitive_type] = ACTIONS(2628), + [anon_sym_enum] = ACTIONS(2628), + [anon_sym_struct] = ACTIONS(2628), + [anon_sym_union] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_switch] = ACTIONS(2628), + [anon_sym_case] = ACTIONS(2628), + [anon_sym_default] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [anon_sym_do] = ACTIONS(2628), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_in] = ACTIONS(2628), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_break] = ACTIONS(2628), + [anon_sym_continue] = ACTIONS(2628), + [anon_sym_goto] = ACTIONS(2628), + [anon_sym_DASH_DASH] = ACTIONS(2630), + [anon_sym_PLUS_PLUS] = ACTIONS(2630), + [anon_sym_sizeof] = ACTIONS(2628), + [anon_sym___alignof__] = ACTIONS(2628), + [anon_sym___alignof] = ACTIONS(2628), + [anon_sym__alignof] = ACTIONS(2628), + [anon_sym_alignof] = ACTIONS(2628), + [anon_sym__Alignof] = ACTIONS(2628), + [anon_sym_offsetof] = ACTIONS(2628), + [anon_sym__Generic] = ACTIONS(2628), + [anon_sym_asm] = ACTIONS(2628), + [anon_sym___asm__] = ACTIONS(2628), + [anon_sym___asm] = ACTIONS(2628), + [sym_number_literal] = ACTIONS(2630), + [anon_sym_L_SQUOTE] = ACTIONS(2630), + [anon_sym_u_SQUOTE] = ACTIONS(2630), + [anon_sym_U_SQUOTE] = ACTIONS(2630), + [anon_sym_u8_SQUOTE] = ACTIONS(2630), + [anon_sym_SQUOTE] = ACTIONS(2630), + [anon_sym_AT] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2630), + [anon_sym_L_DQUOTE] = ACTIONS(2630), + [anon_sym_u_DQUOTE] = ACTIONS(2630), + [anon_sym_U_DQUOTE] = ACTIONS(2630), + [anon_sym_u8_DQUOTE] = ACTIONS(2630), + [sym_true] = ACTIONS(2628), + [sym_false] = ACTIONS(2628), + [anon_sym_NULL] = ACTIONS(2628), + [anon_sym_nullptr] = ACTIONS(2628), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2628), + [anon_sym___typeof] = ACTIONS(2628), + [anon_sym_typeof] = ACTIONS(2628), + [anon_sym_ATimport] = ACTIONS(2630), + [aux_sym_preproc_undef_token1] = ACTIONS(2628), + [anon_sym_POUND] = ACTIONS(2628), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2628), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2628), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2628), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2628), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2628), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2628), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2628), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2628), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2628), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2628), + [anon_sym_NS_AVAILABLE] = ACTIONS(2628), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2628), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2628), + [anon_sym_API_AVAILABLE] = ACTIONS(2628), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2628), + [anon_sym_API_DEPRECATED] = ACTIONS(2628), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2628), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2628), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2628), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2628), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2628), + [anon_sym___deprecated_msg] = ACTIONS(2628), + [anon_sym___deprecated_enum_msg] = ACTIONS(2628), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2628), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2628), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2628), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2628), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2628), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2628), + [anon_sym_ATprotocol] = ACTIONS(2630), + [anon_sym_ATinterface] = ACTIONS(2630), + [anon_sym_ATimplementation] = ACTIONS(2630), + [anon_sym_ATcompatibility_alias] = ACTIONS(2630), + [anon_sym_ATsynthesize] = ACTIONS(2630), + [anon_sym_ATdynamic] = ACTIONS(2630), + [anon_sym_ATtry] = ACTIONS(2630), + [anon_sym___try] = ACTIONS(2628), + [anon_sym_ATthrow] = ACTIONS(2630), + [anon_sym_ATselector] = ACTIONS(2630), + [anon_sym_ATavailable] = ACTIONS(2630), + [anon_sym___builtin_available] = ACTIONS(2628), + [anon_sym_va_arg] = ACTIONS(2628), + [anon_sym_ATencode] = ACTIONS(2630), + [anon_sym_ATsynchronized] = ACTIONS(2630), + [anon_sym_BOOL] = ACTIONS(2628), + [anon_sym_IMP] = ACTIONS(2628), + [anon_sym_SEL] = ACTIONS(2628), + [anon_sym_Class] = ACTIONS(2628), + [anon_sym_id] = ACTIONS(2628), + }, + [523] = { + [sym_identifier] = ACTIONS(2824), + [aux_sym_preproc_include_token1] = ACTIONS(2824), + [aux_sym_preproc_include_token2] = ACTIONS(2824), + [aux_sym_preproc_def_token1] = ACTIONS(2824), + [aux_sym_preproc_if_token1] = ACTIONS(2824), + [aux_sym_preproc_if_token2] = ACTIONS(2824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2824), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2824), + [aux_sym_preproc_else_token1] = ACTIONS(2824), + [aux_sym_preproc_elif_token1] = ACTIONS(2824), + [sym_preproc_directive] = ACTIONS(2824), + [anon_sym_LPAREN2] = ACTIONS(2826), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_DASH] = ACTIONS(2824), + [anon_sym_PLUS] = ACTIONS(2824), + [anon_sym_STAR] = ACTIONS(2826), + [anon_sym_CARET] = ACTIONS(2826), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym___extension__] = ACTIONS(2824), + [anon_sym_typedef] = ACTIONS(2824), + [anon_sym_extern] = ACTIONS(2824), + [anon_sym___attribute__] = ACTIONS(2824), + [anon_sym___attribute] = ACTIONS(2824), + [anon_sym_noreturn] = ACTIONS(2824), + [anon_sym_LBRACK] = ACTIONS(2826), + [anon_sym___declspec] = ACTIONS(2824), + [anon_sym___cdecl] = ACTIONS(2824), + [anon_sym___clrcall] = ACTIONS(2824), + [anon_sym___stdcall] = ACTIONS(2824), + [anon_sym___fastcall] = ACTIONS(2824), + [anon_sym___thiscall] = ACTIONS(2824), + [anon_sym___vectorcall] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_signed] = ACTIONS(2824), + [anon_sym_unsigned] = ACTIONS(2824), + [anon_sym_long] = ACTIONS(2824), + [anon_sym_short] = ACTIONS(2824), + [anon_sym_static] = ACTIONS(2824), + [anon_sym_ATautoreleasepool] = ACTIONS(2826), + [anon_sym_auto] = ACTIONS(2824), + [anon_sym_register] = ACTIONS(2824), + [anon_sym_inline] = ACTIONS(2824), + [anon_sym___inline] = ACTIONS(2824), + [anon_sym___inline__] = ACTIONS(2824), + [anon_sym___forceinline] = ACTIONS(2824), + [anon_sym_thread_local] = ACTIONS(2824), + [anon_sym___thread] = ACTIONS(2824), + [anon_sym_CG_EXTERN] = ACTIONS(2824), + [anon_sym_CG_INLINE] = ACTIONS(2824), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2824), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2824), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2824), + [anon_sym_IBOutlet] = ACTIONS(2824), + [anon_sym_IBInspectable] = ACTIONS(2824), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2824), + [anon_sym_NS_INLINE] = ACTIONS(2824), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2824), + [anon_sym_OBJC_EXPORT] = ACTIONS(2824), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2824), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2824), + [anon_sym_const] = ACTIONS(2824), + [anon_sym_constexpr] = ACTIONS(2824), + [anon_sym_volatile] = ACTIONS(2824), + [anon_sym_restrict] = ACTIONS(2824), + [anon_sym___restrict__] = ACTIONS(2824), + [anon_sym__Atomic] = ACTIONS(2824), + [anon_sym__Noreturn] = ACTIONS(2824), + [anon_sym__Nonnull] = ACTIONS(2824), + [anon_sym_nullable] = ACTIONS(2824), + [anon_sym__Complex] = ACTIONS(2824), + [anon_sym__Nullable] = ACTIONS(2824), + [anon_sym__Nullable_result] = ACTIONS(2824), + [anon_sym__Null_unspecified] = ACTIONS(2824), + [anon_sym___autoreleasing] = ACTIONS(2824), + [anon_sym___block] = ACTIONS(2824), + [anon_sym___bridge] = ACTIONS(2824), + [anon_sym___bridge_retained] = ACTIONS(2824), + [anon_sym___bridge_transfer] = ACTIONS(2824), + [anon_sym___complex] = ACTIONS(2824), + [anon_sym___const] = ACTIONS(2824), + [anon_sym___imag] = ACTIONS(2824), + [anon_sym___kindof] = ACTIONS(2824), + [anon_sym___nonnull] = ACTIONS(2824), + [anon_sym___nullable] = ACTIONS(2824), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2824), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2824), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2824), + [anon_sym___real] = ACTIONS(2824), + [anon_sym___strong] = ACTIONS(2824), + [anon_sym___unsafe_unretained] = ACTIONS(2824), + [anon_sym___unused] = ACTIONS(2824), + [anon_sym___weak] = ACTIONS(2824), + [anon_sym_alignas] = ACTIONS(2824), + [anon_sym__Alignas] = ACTIONS(2824), + [sym_primitive_type] = ACTIONS(2824), + [anon_sym_enum] = ACTIONS(2824), + [anon_sym_struct] = ACTIONS(2824), + [anon_sym_union] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2824), + [anon_sym_switch] = ACTIONS(2824), + [anon_sym_case] = ACTIONS(2824), + [anon_sym_default] = ACTIONS(2824), + [anon_sym_while] = ACTIONS(2824), + [anon_sym_do] = ACTIONS(2824), + [anon_sym_for] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2824), + [anon_sym_return] = ACTIONS(2824), + [anon_sym_break] = ACTIONS(2824), + [anon_sym_continue] = ACTIONS(2824), + [anon_sym_goto] = ACTIONS(2824), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_sizeof] = ACTIONS(2824), + [anon_sym___alignof__] = ACTIONS(2824), + [anon_sym___alignof] = ACTIONS(2824), + [anon_sym__alignof] = ACTIONS(2824), + [anon_sym_alignof] = ACTIONS(2824), + [anon_sym__Alignof] = ACTIONS(2824), + [anon_sym_offsetof] = ACTIONS(2824), + [anon_sym__Generic] = ACTIONS(2824), + [anon_sym_asm] = ACTIONS(2824), + [anon_sym___asm__] = ACTIONS(2824), + [anon_sym___asm] = ACTIONS(2824), + [sym_number_literal] = ACTIONS(2826), + [anon_sym_L_SQUOTE] = ACTIONS(2826), + [anon_sym_u_SQUOTE] = ACTIONS(2826), + [anon_sym_U_SQUOTE] = ACTIONS(2826), + [anon_sym_u8_SQUOTE] = ACTIONS(2826), + [anon_sym_SQUOTE] = ACTIONS(2826), + [anon_sym_AT] = ACTIONS(2824), + [anon_sym_DQUOTE] = ACTIONS(2826), + [anon_sym_L_DQUOTE] = ACTIONS(2826), + [anon_sym_u_DQUOTE] = ACTIONS(2826), + [anon_sym_U_DQUOTE] = ACTIONS(2826), + [anon_sym_u8_DQUOTE] = ACTIONS(2826), + [sym_true] = ACTIONS(2824), + [sym_false] = ACTIONS(2824), + [anon_sym_NULL] = ACTIONS(2824), + [anon_sym_nullptr] = ACTIONS(2824), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2824), + [anon_sym___typeof] = ACTIONS(2824), + [anon_sym_typeof] = ACTIONS(2824), + [anon_sym_ATimport] = ACTIONS(2826), + [aux_sym_preproc_undef_token1] = ACTIONS(2824), + [anon_sym_POUND] = ACTIONS(2824), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2824), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2824), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2824), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2824), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2824), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2824), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2824), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2824), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2824), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2824), + [anon_sym_NS_AVAILABLE] = ACTIONS(2824), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2824), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2824), + [anon_sym_API_AVAILABLE] = ACTIONS(2824), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2824), + [anon_sym_API_DEPRECATED] = ACTIONS(2824), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2824), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2824), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2824), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2824), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2824), + [anon_sym___deprecated_msg] = ACTIONS(2824), + [anon_sym___deprecated_enum_msg] = ACTIONS(2824), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2824), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2824), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2824), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2824), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2824), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2824), + [anon_sym_ATprotocol] = ACTIONS(2826), + [anon_sym_ATinterface] = ACTIONS(2826), + [anon_sym_ATimplementation] = ACTIONS(2826), + [anon_sym_ATcompatibility_alias] = ACTIONS(2826), + [anon_sym_ATsynthesize] = ACTIONS(2826), + [anon_sym_ATdynamic] = ACTIONS(2826), + [anon_sym_ATtry] = ACTIONS(2826), + [anon_sym___try] = ACTIONS(2824), + [anon_sym_ATthrow] = ACTIONS(2826), + [anon_sym_ATselector] = ACTIONS(2826), + [anon_sym_ATavailable] = ACTIONS(2826), + [anon_sym___builtin_available] = ACTIONS(2824), + [anon_sym_va_arg] = ACTIONS(2824), + [anon_sym_ATencode] = ACTIONS(2826), + [anon_sym_ATsynchronized] = ACTIONS(2826), + [anon_sym_BOOL] = ACTIONS(2824), + [anon_sym_IMP] = ACTIONS(2824), + [anon_sym_SEL] = ACTIONS(2824), + [anon_sym_Class] = ACTIONS(2824), + [anon_sym_id] = ACTIONS(2824), + }, + [524] = { + [sym_identifier] = ACTIONS(2724), + [aux_sym_preproc_include_token1] = ACTIONS(2724), + [aux_sym_preproc_include_token2] = ACTIONS(2724), + [aux_sym_preproc_def_token1] = ACTIONS(2724), + [aux_sym_preproc_if_token1] = ACTIONS(2724), + [aux_sym_preproc_if_token2] = ACTIONS(2724), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2724), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2724), + [aux_sym_preproc_else_token1] = ACTIONS(2724), + [aux_sym_preproc_elif_token1] = ACTIONS(2724), + [sym_preproc_directive] = ACTIONS(2724), + [anon_sym_LPAREN2] = ACTIONS(2726), + [anon_sym_BANG] = ACTIONS(2726), + [anon_sym_TILDE] = ACTIONS(2726), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2726), + [anon_sym_CARET] = ACTIONS(2726), + [anon_sym_AMP] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym___extension__] = ACTIONS(2724), + [anon_sym_typedef] = ACTIONS(2724), + [anon_sym_extern] = ACTIONS(2724), + [anon_sym___attribute__] = ACTIONS(2724), + [anon_sym___attribute] = ACTIONS(2724), + [anon_sym_noreturn] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2726), + [anon_sym___declspec] = ACTIONS(2724), + [anon_sym___cdecl] = ACTIONS(2724), + [anon_sym___clrcall] = ACTIONS(2724), + [anon_sym___stdcall] = ACTIONS(2724), + [anon_sym___fastcall] = ACTIONS(2724), + [anon_sym___thiscall] = ACTIONS(2724), + [anon_sym___vectorcall] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2726), + [anon_sym_signed] = ACTIONS(2724), + [anon_sym_unsigned] = ACTIONS(2724), + [anon_sym_long] = ACTIONS(2724), + [anon_sym_short] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2724), + [anon_sym_ATautoreleasepool] = ACTIONS(2726), + [anon_sym_auto] = ACTIONS(2724), + [anon_sym_register] = ACTIONS(2724), + [anon_sym_inline] = ACTIONS(2724), + [anon_sym___inline] = ACTIONS(2724), + [anon_sym___inline__] = ACTIONS(2724), + [anon_sym___forceinline] = ACTIONS(2724), + [anon_sym_thread_local] = ACTIONS(2724), + [anon_sym___thread] = ACTIONS(2724), + [anon_sym_CG_EXTERN] = ACTIONS(2724), + [anon_sym_CG_INLINE] = ACTIONS(2724), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2724), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2724), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2724), + [anon_sym_IBOutlet] = ACTIONS(2724), + [anon_sym_IBInspectable] = ACTIONS(2724), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2724), + [anon_sym_NS_INLINE] = ACTIONS(2724), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2724), + [anon_sym_OBJC_EXPORT] = ACTIONS(2724), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2724), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2724), + [anon_sym_const] = ACTIONS(2724), + [anon_sym_constexpr] = ACTIONS(2724), + [anon_sym_volatile] = ACTIONS(2724), + [anon_sym_restrict] = ACTIONS(2724), + [anon_sym___restrict__] = ACTIONS(2724), + [anon_sym__Atomic] = ACTIONS(2724), + [anon_sym__Noreturn] = ACTIONS(2724), + [anon_sym__Nonnull] = ACTIONS(2724), + [anon_sym_nullable] = ACTIONS(2724), + [anon_sym__Complex] = ACTIONS(2724), + [anon_sym__Nullable] = ACTIONS(2724), + [anon_sym__Nullable_result] = ACTIONS(2724), + [anon_sym__Null_unspecified] = ACTIONS(2724), + [anon_sym___autoreleasing] = ACTIONS(2724), + [anon_sym___block] = ACTIONS(2724), + [anon_sym___bridge] = ACTIONS(2724), + [anon_sym___bridge_retained] = ACTIONS(2724), + [anon_sym___bridge_transfer] = ACTIONS(2724), + [anon_sym___complex] = ACTIONS(2724), + [anon_sym___const] = ACTIONS(2724), + [anon_sym___imag] = ACTIONS(2724), + [anon_sym___kindof] = ACTIONS(2724), + [anon_sym___nonnull] = ACTIONS(2724), + [anon_sym___nullable] = ACTIONS(2724), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2724), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2724), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2724), + [anon_sym___real] = ACTIONS(2724), + [anon_sym___strong] = ACTIONS(2724), + [anon_sym___unsafe_unretained] = ACTIONS(2724), + [anon_sym___unused] = ACTIONS(2724), + [anon_sym___weak] = ACTIONS(2724), + [anon_sym_alignas] = ACTIONS(2724), + [anon_sym__Alignas] = ACTIONS(2724), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), + [anon_sym_struct] = ACTIONS(2724), + [anon_sym_union] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2724), + [anon_sym_default] = ACTIONS(2724), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_do] = ACTIONS(2724), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_goto] = ACTIONS(2724), + [anon_sym_DASH_DASH] = ACTIONS(2726), + [anon_sym_PLUS_PLUS] = ACTIONS(2726), + [anon_sym_sizeof] = ACTIONS(2724), + [anon_sym___alignof__] = ACTIONS(2724), + [anon_sym___alignof] = ACTIONS(2724), + [anon_sym__alignof] = ACTIONS(2724), + [anon_sym_alignof] = ACTIONS(2724), + [anon_sym__Alignof] = ACTIONS(2724), + [anon_sym_offsetof] = ACTIONS(2724), + [anon_sym__Generic] = ACTIONS(2724), + [anon_sym_asm] = ACTIONS(2724), + [anon_sym___asm__] = ACTIONS(2724), + [anon_sym___asm] = ACTIONS(2724), + [sym_number_literal] = ACTIONS(2726), + [anon_sym_L_SQUOTE] = ACTIONS(2726), + [anon_sym_u_SQUOTE] = ACTIONS(2726), + [anon_sym_U_SQUOTE] = ACTIONS(2726), + [anon_sym_u8_SQUOTE] = ACTIONS(2726), + [anon_sym_SQUOTE] = ACTIONS(2726), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_DQUOTE] = ACTIONS(2726), + [anon_sym_L_DQUOTE] = ACTIONS(2726), + [anon_sym_u_DQUOTE] = ACTIONS(2726), + [anon_sym_U_DQUOTE] = ACTIONS(2726), + [anon_sym_u8_DQUOTE] = ACTIONS(2726), + [sym_true] = ACTIONS(2724), + [sym_false] = ACTIONS(2724), + [anon_sym_NULL] = ACTIONS(2724), + [anon_sym_nullptr] = ACTIONS(2724), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2724), + [anon_sym___typeof] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(2724), + [anon_sym_ATimport] = ACTIONS(2726), + [aux_sym_preproc_undef_token1] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(2724), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2724), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2724), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2724), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2724), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2724), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2724), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2724), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2724), + [anon_sym_NS_AVAILABLE] = ACTIONS(2724), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2724), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_API_AVAILABLE] = ACTIONS(2724), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_API_DEPRECATED] = ACTIONS(2724), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2724), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2724), + [anon_sym___deprecated_msg] = ACTIONS(2724), + [anon_sym___deprecated_enum_msg] = ACTIONS(2724), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2724), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2724), + [anon_sym_ATprotocol] = ACTIONS(2726), + [anon_sym_ATinterface] = ACTIONS(2726), + [anon_sym_ATimplementation] = ACTIONS(2726), + [anon_sym_ATcompatibility_alias] = ACTIONS(2726), + [anon_sym_ATsynthesize] = ACTIONS(2726), + [anon_sym_ATdynamic] = ACTIONS(2726), + [anon_sym_ATtry] = ACTIONS(2726), + [anon_sym___try] = ACTIONS(2724), + [anon_sym_ATthrow] = ACTIONS(2726), + [anon_sym_ATselector] = ACTIONS(2726), + [anon_sym_ATavailable] = ACTIONS(2726), + [anon_sym___builtin_available] = ACTIONS(2724), + [anon_sym_va_arg] = ACTIONS(2724), + [anon_sym_ATencode] = ACTIONS(2726), + [anon_sym_ATsynchronized] = ACTIONS(2726), + [anon_sym_BOOL] = ACTIONS(2724), + [anon_sym_IMP] = ACTIONS(2724), + [anon_sym_SEL] = ACTIONS(2724), + [anon_sym_Class] = ACTIONS(2724), + [anon_sym_id] = ACTIONS(2724), + }, + [525] = { + [sym_identifier] = ACTIONS(2632), + [aux_sym_preproc_include_token1] = ACTIONS(2632), + [aux_sym_preproc_include_token2] = ACTIONS(2632), + [aux_sym_preproc_def_token1] = ACTIONS(2632), + [aux_sym_preproc_if_token1] = ACTIONS(2632), + [aux_sym_preproc_if_token2] = ACTIONS(2632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2632), + [aux_sym_preproc_else_token1] = ACTIONS(2632), + [aux_sym_preproc_elif_token1] = ACTIONS(2632), + [sym_preproc_directive] = ACTIONS(2632), + [anon_sym_LPAREN2] = ACTIONS(2634), + [anon_sym_BANG] = ACTIONS(2634), + [anon_sym_TILDE] = ACTIONS(2634), + [anon_sym_DASH] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(2632), + [anon_sym_STAR] = ACTIONS(2634), + [anon_sym_CARET] = ACTIONS(2634), + [anon_sym_AMP] = ACTIONS(2634), + [anon_sym_SEMI] = ACTIONS(2634), + [anon_sym___extension__] = ACTIONS(2632), + [anon_sym_typedef] = ACTIONS(2632), + [anon_sym_extern] = ACTIONS(2632), + [anon_sym___attribute__] = ACTIONS(2632), + [anon_sym___attribute] = ACTIONS(2632), + [anon_sym_noreturn] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2634), + [anon_sym___declspec] = ACTIONS(2632), + [anon_sym___cdecl] = ACTIONS(2632), + [anon_sym___clrcall] = ACTIONS(2632), + [anon_sym___stdcall] = ACTIONS(2632), + [anon_sym___fastcall] = ACTIONS(2632), + [anon_sym___thiscall] = ACTIONS(2632), + [anon_sym___vectorcall] = ACTIONS(2632), + [anon_sym_LBRACE] = ACTIONS(2634), + [anon_sym_signed] = ACTIONS(2632), + [anon_sym_unsigned] = ACTIONS(2632), + [anon_sym_long] = ACTIONS(2632), + [anon_sym_short] = ACTIONS(2632), + [anon_sym_static] = ACTIONS(2632), + [anon_sym_ATautoreleasepool] = ACTIONS(2634), + [anon_sym_auto] = ACTIONS(2632), + [anon_sym_register] = ACTIONS(2632), + [anon_sym_inline] = ACTIONS(2632), + [anon_sym___inline] = ACTIONS(2632), + [anon_sym___inline__] = ACTIONS(2632), + [anon_sym___forceinline] = ACTIONS(2632), + [anon_sym_thread_local] = ACTIONS(2632), + [anon_sym___thread] = ACTIONS(2632), + [anon_sym_CG_EXTERN] = ACTIONS(2632), + [anon_sym_CG_INLINE] = ACTIONS(2632), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2632), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2632), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2632), + [anon_sym_IBOutlet] = ACTIONS(2632), + [anon_sym_IBInspectable] = ACTIONS(2632), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2632), + [anon_sym_NS_INLINE] = ACTIONS(2632), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2632), + [anon_sym_OBJC_EXPORT] = ACTIONS(2632), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2632), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2632), + [anon_sym_const] = ACTIONS(2632), + [anon_sym_constexpr] = ACTIONS(2632), + [anon_sym_volatile] = ACTIONS(2632), + [anon_sym_restrict] = ACTIONS(2632), + [anon_sym___restrict__] = ACTIONS(2632), + [anon_sym__Atomic] = ACTIONS(2632), + [anon_sym__Noreturn] = ACTIONS(2632), + [anon_sym__Nonnull] = ACTIONS(2632), + [anon_sym_nullable] = ACTIONS(2632), + [anon_sym__Complex] = ACTIONS(2632), + [anon_sym__Nullable] = ACTIONS(2632), + [anon_sym__Nullable_result] = ACTIONS(2632), + [anon_sym__Null_unspecified] = ACTIONS(2632), + [anon_sym___autoreleasing] = ACTIONS(2632), + [anon_sym___block] = ACTIONS(2632), + [anon_sym___bridge] = ACTIONS(2632), + [anon_sym___bridge_retained] = ACTIONS(2632), + [anon_sym___bridge_transfer] = ACTIONS(2632), + [anon_sym___complex] = ACTIONS(2632), + [anon_sym___const] = ACTIONS(2632), + [anon_sym___imag] = ACTIONS(2632), + [anon_sym___kindof] = ACTIONS(2632), + [anon_sym___nonnull] = ACTIONS(2632), + [anon_sym___nullable] = ACTIONS(2632), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2632), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2632), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2632), + [anon_sym___real] = ACTIONS(2632), + [anon_sym___strong] = ACTIONS(2632), + [anon_sym___unsafe_unretained] = ACTIONS(2632), + [anon_sym___unused] = ACTIONS(2632), + [anon_sym___weak] = ACTIONS(2632), + [anon_sym_alignas] = ACTIONS(2632), + [anon_sym__Alignas] = ACTIONS(2632), + [sym_primitive_type] = ACTIONS(2632), + [anon_sym_enum] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2632), + [anon_sym_union] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_switch] = ACTIONS(2632), + [anon_sym_case] = ACTIONS(2632), + [anon_sym_default] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_do] = ACTIONS(2632), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_in] = ACTIONS(2632), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_break] = ACTIONS(2632), + [anon_sym_continue] = ACTIONS(2632), + [anon_sym_goto] = ACTIONS(2632), + [anon_sym_DASH_DASH] = ACTIONS(2634), + [anon_sym_PLUS_PLUS] = ACTIONS(2634), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2632), + [anon_sym___alignof] = ACTIONS(2632), + [anon_sym__alignof] = ACTIONS(2632), + [anon_sym_alignof] = ACTIONS(2632), + [anon_sym__Alignof] = ACTIONS(2632), + [anon_sym_offsetof] = ACTIONS(2632), + [anon_sym__Generic] = ACTIONS(2632), + [anon_sym_asm] = ACTIONS(2632), + [anon_sym___asm__] = ACTIONS(2632), + [anon_sym___asm] = ACTIONS(2632), + [sym_number_literal] = ACTIONS(2634), + [anon_sym_L_SQUOTE] = ACTIONS(2634), + [anon_sym_u_SQUOTE] = ACTIONS(2634), + [anon_sym_U_SQUOTE] = ACTIONS(2634), + [anon_sym_u8_SQUOTE] = ACTIONS(2634), + [anon_sym_SQUOTE] = ACTIONS(2634), + [anon_sym_AT] = ACTIONS(2632), + [anon_sym_DQUOTE] = ACTIONS(2634), + [anon_sym_L_DQUOTE] = ACTIONS(2634), + [anon_sym_u_DQUOTE] = ACTIONS(2634), + [anon_sym_U_DQUOTE] = ACTIONS(2634), + [anon_sym_u8_DQUOTE] = ACTIONS(2634), + [sym_true] = ACTIONS(2632), + [sym_false] = ACTIONS(2632), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2632), + [anon_sym___typeof] = ACTIONS(2632), + [anon_sym_typeof] = ACTIONS(2632), + [anon_sym_ATimport] = ACTIONS(2634), + [aux_sym_preproc_undef_token1] = ACTIONS(2632), + [anon_sym_POUND] = ACTIONS(2632), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2632), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2632), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2632), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2632), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2632), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2632), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2632), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2632), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2632), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2632), + [anon_sym_NS_AVAILABLE] = ACTIONS(2632), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2632), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2632), + [anon_sym_API_AVAILABLE] = ACTIONS(2632), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2632), + [anon_sym_API_DEPRECATED] = ACTIONS(2632), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2632), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2632), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2632), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2632), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2632), + [anon_sym___deprecated_msg] = ACTIONS(2632), + [anon_sym___deprecated_enum_msg] = ACTIONS(2632), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2632), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2632), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2632), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2632), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2632), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2632), + [anon_sym_ATprotocol] = ACTIONS(2634), + [anon_sym_ATinterface] = ACTIONS(2634), + [anon_sym_ATimplementation] = ACTIONS(2634), + [anon_sym_ATcompatibility_alias] = ACTIONS(2634), + [anon_sym_ATsynthesize] = ACTIONS(2634), + [anon_sym_ATdynamic] = ACTIONS(2634), + [anon_sym_ATtry] = ACTIONS(2634), + [anon_sym___try] = ACTIONS(2632), + [anon_sym_ATthrow] = ACTIONS(2634), + [anon_sym_ATselector] = ACTIONS(2634), + [anon_sym_ATavailable] = ACTIONS(2634), + [anon_sym___builtin_available] = ACTIONS(2632), + [anon_sym_va_arg] = ACTIONS(2632), + [anon_sym_ATencode] = ACTIONS(2634), + [anon_sym_ATsynchronized] = ACTIONS(2634), + [anon_sym_BOOL] = ACTIONS(2632), + [anon_sym_IMP] = ACTIONS(2632), + [anon_sym_SEL] = ACTIONS(2632), + [anon_sym_Class] = ACTIONS(2632), + [anon_sym_id] = ACTIONS(2632), + }, + [526] = { + [sym_identifier] = ACTIONS(2572), + [aux_sym_preproc_include_token1] = ACTIONS(2572), + [aux_sym_preproc_include_token2] = ACTIONS(2572), + [aux_sym_preproc_def_token1] = ACTIONS(2572), + [aux_sym_preproc_if_token1] = ACTIONS(2572), + [aux_sym_preproc_if_token2] = ACTIONS(2572), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2572), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2572), + [aux_sym_preproc_else_token1] = ACTIONS(2572), + [aux_sym_preproc_elif_token1] = ACTIONS(2572), + [sym_preproc_directive] = ACTIONS(2572), + [anon_sym_LPAREN2] = ACTIONS(2574), + [anon_sym_BANG] = ACTIONS(2574), + [anon_sym_TILDE] = ACTIONS(2574), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_STAR] = ACTIONS(2574), + [anon_sym_CARET] = ACTIONS(2574), + [anon_sym_AMP] = ACTIONS(2574), + [anon_sym_SEMI] = ACTIONS(2574), + [anon_sym___extension__] = ACTIONS(2572), + [anon_sym_typedef] = ACTIONS(2572), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym___attribute__] = ACTIONS(2572), + [anon_sym___attribute] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym___declspec] = ACTIONS(2572), + [anon_sym___cdecl] = ACTIONS(2572), + [anon_sym___clrcall] = ACTIONS(2572), + [anon_sym___stdcall] = ACTIONS(2572), + [anon_sym___fastcall] = ACTIONS(2572), + [anon_sym___thiscall] = ACTIONS(2572), + [anon_sym___vectorcall] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2574), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_ATautoreleasepool] = ACTIONS(2574), + [anon_sym_auto] = ACTIONS(2572), + [anon_sym_register] = ACTIONS(2572), + [anon_sym_inline] = ACTIONS(2572), + [anon_sym___inline] = ACTIONS(2572), + [anon_sym___inline__] = ACTIONS(2572), + [anon_sym___forceinline] = ACTIONS(2572), + [anon_sym_thread_local] = ACTIONS(2572), + [anon_sym___thread] = ACTIONS(2572), + [anon_sym_CG_EXTERN] = ACTIONS(2572), + [anon_sym_CG_INLINE] = ACTIONS(2572), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2572), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2572), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2572), + [anon_sym_IBOutlet] = ACTIONS(2572), + [anon_sym_IBInspectable] = ACTIONS(2572), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2572), + [anon_sym_NS_INLINE] = ACTIONS(2572), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2572), + [anon_sym_OBJC_EXPORT] = ACTIONS(2572), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2572), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_nullable] = ACTIONS(2572), + [anon_sym__Complex] = ACTIONS(2572), + [anon_sym__Nullable] = ACTIONS(2572), + [anon_sym__Nullable_result] = ACTIONS(2572), + [anon_sym__Null_unspecified] = ACTIONS(2572), + [anon_sym___autoreleasing] = ACTIONS(2572), + [anon_sym___block] = ACTIONS(2572), + [anon_sym___bridge] = ACTIONS(2572), + [anon_sym___bridge_retained] = ACTIONS(2572), + [anon_sym___bridge_transfer] = ACTIONS(2572), + [anon_sym___complex] = ACTIONS(2572), + [anon_sym___const] = ACTIONS(2572), + [anon_sym___imag] = ACTIONS(2572), + [anon_sym___kindof] = ACTIONS(2572), + [anon_sym___nonnull] = ACTIONS(2572), + [anon_sym___nullable] = ACTIONS(2572), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2572), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2572), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2572), + [anon_sym___real] = ACTIONS(2572), + [anon_sym___strong] = ACTIONS(2572), + [anon_sym___unsafe_unretained] = ACTIONS(2572), + [anon_sym___unused] = ACTIONS(2572), + [anon_sym___weak] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(2572), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_struct] = ACTIONS(2572), + [anon_sym_union] = ACTIONS(2572), + [anon_sym_if] = ACTIONS(2572), + [anon_sym_switch] = ACTIONS(2572), + [anon_sym_case] = ACTIONS(2572), + [anon_sym_default] = ACTIONS(2572), + [anon_sym_while] = ACTIONS(2572), + [anon_sym_do] = ACTIONS(2572), + [anon_sym_for] = ACTIONS(2572), + [anon_sym_in] = ACTIONS(2572), + [anon_sym_return] = ACTIONS(2572), + [anon_sym_break] = ACTIONS(2572), + [anon_sym_continue] = ACTIONS(2572), + [anon_sym_goto] = ACTIONS(2572), + [anon_sym_DASH_DASH] = ACTIONS(2574), + [anon_sym_PLUS_PLUS] = ACTIONS(2574), + [anon_sym_sizeof] = ACTIONS(2572), + [anon_sym___alignof__] = ACTIONS(2572), + [anon_sym___alignof] = ACTIONS(2572), + [anon_sym__alignof] = ACTIONS(2572), + [anon_sym_alignof] = ACTIONS(2572), + [anon_sym__Alignof] = ACTIONS(2572), + [anon_sym_offsetof] = ACTIONS(2572), + [anon_sym__Generic] = ACTIONS(2572), + [anon_sym_asm] = ACTIONS(2572), + [anon_sym___asm__] = ACTIONS(2572), + [anon_sym___asm] = ACTIONS(2572), + [sym_number_literal] = ACTIONS(2574), + [anon_sym_L_SQUOTE] = ACTIONS(2574), + [anon_sym_u_SQUOTE] = ACTIONS(2574), + [anon_sym_U_SQUOTE] = ACTIONS(2574), + [anon_sym_u8_SQUOTE] = ACTIONS(2574), + [anon_sym_SQUOTE] = ACTIONS(2574), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_DQUOTE] = ACTIONS(2574), + [anon_sym_L_DQUOTE] = ACTIONS(2574), + [anon_sym_u_DQUOTE] = ACTIONS(2574), + [anon_sym_U_DQUOTE] = ACTIONS(2574), + [anon_sym_u8_DQUOTE] = ACTIONS(2574), + [sym_true] = ACTIONS(2572), + [sym_false] = ACTIONS(2572), + [anon_sym_NULL] = ACTIONS(2572), + [anon_sym_nullptr] = ACTIONS(2572), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2572), + [anon_sym___typeof] = ACTIONS(2572), + [anon_sym_typeof] = ACTIONS(2572), + [anon_sym_ATimport] = ACTIONS(2574), + [aux_sym_preproc_undef_token1] = ACTIONS(2572), + [anon_sym_POUND] = ACTIONS(2572), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2572), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2572), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2572), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2572), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2572), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2572), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2572), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2572), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2572), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2572), + [anon_sym_NS_AVAILABLE] = ACTIONS(2572), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2572), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2572), + [anon_sym_API_AVAILABLE] = ACTIONS(2572), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2572), + [anon_sym_API_DEPRECATED] = ACTIONS(2572), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2572), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2572), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2572), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2572), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2572), + [anon_sym___deprecated_msg] = ACTIONS(2572), + [anon_sym___deprecated_enum_msg] = ACTIONS(2572), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2572), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2572), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2572), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2572), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2572), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2572), + [anon_sym_ATprotocol] = ACTIONS(2574), + [anon_sym_ATinterface] = ACTIONS(2574), + [anon_sym_ATimplementation] = ACTIONS(2574), + [anon_sym_ATcompatibility_alias] = ACTIONS(2574), + [anon_sym_ATsynthesize] = ACTIONS(2574), + [anon_sym_ATdynamic] = ACTIONS(2574), + [anon_sym_ATtry] = ACTIONS(2574), + [anon_sym___try] = ACTIONS(2572), + [anon_sym_ATthrow] = ACTIONS(2574), + [anon_sym_ATselector] = ACTIONS(2574), + [anon_sym_ATavailable] = ACTIONS(2574), + [anon_sym___builtin_available] = ACTIONS(2572), + [anon_sym_va_arg] = ACTIONS(2572), + [anon_sym_ATencode] = ACTIONS(2574), + [anon_sym_ATsynchronized] = ACTIONS(2574), + [anon_sym_BOOL] = ACTIONS(2572), + [anon_sym_IMP] = ACTIONS(2572), + [anon_sym_SEL] = ACTIONS(2572), + [anon_sym_Class] = ACTIONS(2572), + [anon_sym_id] = ACTIONS(2572), + }, + [527] = { + [sym_identifier] = ACTIONS(2636), + [aux_sym_preproc_include_token1] = ACTIONS(2636), + [aux_sym_preproc_include_token2] = ACTIONS(2636), + [aux_sym_preproc_def_token1] = ACTIONS(2636), + [aux_sym_preproc_if_token1] = ACTIONS(2636), + [aux_sym_preproc_if_token2] = ACTIONS(2636), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2636), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2636), + [aux_sym_preproc_else_token1] = ACTIONS(2636), + [aux_sym_preproc_elif_token1] = ACTIONS(2636), + [sym_preproc_directive] = ACTIONS(2636), + [anon_sym_LPAREN2] = ACTIONS(2638), + [anon_sym_BANG] = ACTIONS(2638), + [anon_sym_TILDE] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_PLUS] = ACTIONS(2636), + [anon_sym_STAR] = ACTIONS(2638), + [anon_sym_CARET] = ACTIONS(2638), + [anon_sym_AMP] = ACTIONS(2638), + [anon_sym_SEMI] = ACTIONS(2638), + [anon_sym___extension__] = ACTIONS(2636), + [anon_sym_typedef] = ACTIONS(2636), + [anon_sym_extern] = ACTIONS(2636), + [anon_sym___attribute__] = ACTIONS(2636), + [anon_sym___attribute] = ACTIONS(2636), + [anon_sym_noreturn] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2638), + [anon_sym___declspec] = ACTIONS(2636), + [anon_sym___cdecl] = ACTIONS(2636), + [anon_sym___clrcall] = ACTIONS(2636), + [anon_sym___stdcall] = ACTIONS(2636), + [anon_sym___fastcall] = ACTIONS(2636), + [anon_sym___thiscall] = ACTIONS(2636), + [anon_sym___vectorcall] = ACTIONS(2636), + [anon_sym_LBRACE] = ACTIONS(2638), + [anon_sym_signed] = ACTIONS(2636), + [anon_sym_unsigned] = ACTIONS(2636), + [anon_sym_long] = ACTIONS(2636), + [anon_sym_short] = ACTIONS(2636), + [anon_sym_static] = ACTIONS(2636), + [anon_sym_ATautoreleasepool] = ACTIONS(2638), + [anon_sym_auto] = ACTIONS(2636), + [anon_sym_register] = ACTIONS(2636), + [anon_sym_inline] = ACTIONS(2636), + [anon_sym___inline] = ACTIONS(2636), + [anon_sym___inline__] = ACTIONS(2636), + [anon_sym___forceinline] = ACTIONS(2636), + [anon_sym_thread_local] = ACTIONS(2636), + [anon_sym___thread] = ACTIONS(2636), + [anon_sym_CG_EXTERN] = ACTIONS(2636), + [anon_sym_CG_INLINE] = ACTIONS(2636), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2636), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2636), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2636), + [anon_sym_IBOutlet] = ACTIONS(2636), + [anon_sym_IBInspectable] = ACTIONS(2636), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2636), + [anon_sym_NS_INLINE] = ACTIONS(2636), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2636), + [anon_sym_OBJC_EXPORT] = ACTIONS(2636), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2636), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2636), + [anon_sym_const] = ACTIONS(2636), + [anon_sym_constexpr] = ACTIONS(2636), + [anon_sym_volatile] = ACTIONS(2636), + [anon_sym_restrict] = ACTIONS(2636), + [anon_sym___restrict__] = ACTIONS(2636), + [anon_sym__Atomic] = ACTIONS(2636), + [anon_sym__Noreturn] = ACTIONS(2636), + [anon_sym__Nonnull] = ACTIONS(2636), + [anon_sym_nullable] = ACTIONS(2636), + [anon_sym__Complex] = ACTIONS(2636), + [anon_sym__Nullable] = ACTIONS(2636), + [anon_sym__Nullable_result] = ACTIONS(2636), + [anon_sym__Null_unspecified] = ACTIONS(2636), + [anon_sym___autoreleasing] = ACTIONS(2636), + [anon_sym___block] = ACTIONS(2636), + [anon_sym___bridge] = ACTIONS(2636), + [anon_sym___bridge_retained] = ACTIONS(2636), + [anon_sym___bridge_transfer] = ACTIONS(2636), + [anon_sym___complex] = ACTIONS(2636), + [anon_sym___const] = ACTIONS(2636), + [anon_sym___imag] = ACTIONS(2636), + [anon_sym___kindof] = ACTIONS(2636), + [anon_sym___nonnull] = ACTIONS(2636), + [anon_sym___nullable] = ACTIONS(2636), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2636), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2636), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2636), + [anon_sym___real] = ACTIONS(2636), + [anon_sym___strong] = ACTIONS(2636), + [anon_sym___unsafe_unretained] = ACTIONS(2636), + [anon_sym___unused] = ACTIONS(2636), + [anon_sym___weak] = ACTIONS(2636), + [anon_sym_alignas] = ACTIONS(2636), + [anon_sym__Alignas] = ACTIONS(2636), + [sym_primitive_type] = ACTIONS(2636), + [anon_sym_enum] = ACTIONS(2636), + [anon_sym_struct] = ACTIONS(2636), + [anon_sym_union] = ACTIONS(2636), + [anon_sym_if] = ACTIONS(2636), + [anon_sym_switch] = ACTIONS(2636), + [anon_sym_case] = ACTIONS(2636), + [anon_sym_default] = ACTIONS(2636), + [anon_sym_while] = ACTIONS(2636), + [anon_sym_do] = ACTIONS(2636), + [anon_sym_for] = ACTIONS(2636), + [anon_sym_in] = ACTIONS(2636), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_break] = ACTIONS(2636), + [anon_sym_continue] = ACTIONS(2636), + [anon_sym_goto] = ACTIONS(2636), + [anon_sym_DASH_DASH] = ACTIONS(2638), + [anon_sym_PLUS_PLUS] = ACTIONS(2638), + [anon_sym_sizeof] = ACTIONS(2636), + [anon_sym___alignof__] = ACTIONS(2636), + [anon_sym___alignof] = ACTIONS(2636), + [anon_sym__alignof] = ACTIONS(2636), + [anon_sym_alignof] = ACTIONS(2636), + [anon_sym__Alignof] = ACTIONS(2636), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2636), + [anon_sym_asm] = ACTIONS(2636), + [anon_sym___asm__] = ACTIONS(2636), + [anon_sym___asm] = ACTIONS(2636), + [sym_number_literal] = ACTIONS(2638), + [anon_sym_L_SQUOTE] = ACTIONS(2638), + [anon_sym_u_SQUOTE] = ACTIONS(2638), + [anon_sym_U_SQUOTE] = ACTIONS(2638), + [anon_sym_u8_SQUOTE] = ACTIONS(2638), + [anon_sym_SQUOTE] = ACTIONS(2638), + [anon_sym_AT] = ACTIONS(2636), + [anon_sym_DQUOTE] = ACTIONS(2638), + [anon_sym_L_DQUOTE] = ACTIONS(2638), + [anon_sym_u_DQUOTE] = ACTIONS(2638), + [anon_sym_U_DQUOTE] = ACTIONS(2638), + [anon_sym_u8_DQUOTE] = ACTIONS(2638), + [sym_true] = ACTIONS(2636), + [sym_false] = ACTIONS(2636), + [anon_sym_NULL] = ACTIONS(2636), + [anon_sym_nullptr] = ACTIONS(2636), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2636), + [anon_sym___typeof] = ACTIONS(2636), + [anon_sym_typeof] = ACTIONS(2636), + [anon_sym_ATimport] = ACTIONS(2638), + [aux_sym_preproc_undef_token1] = ACTIONS(2636), + [anon_sym_POUND] = ACTIONS(2636), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2636), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2636), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2636), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2636), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2636), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2636), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2636), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2636), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2636), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2636), + [anon_sym_NS_AVAILABLE] = ACTIONS(2636), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2636), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2636), + [anon_sym_API_AVAILABLE] = ACTIONS(2636), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2636), + [anon_sym_API_DEPRECATED] = ACTIONS(2636), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2636), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2636), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2636), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2636), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2636), + [anon_sym___deprecated_msg] = ACTIONS(2636), + [anon_sym___deprecated_enum_msg] = ACTIONS(2636), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2636), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2636), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2636), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2636), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2636), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2636), + [anon_sym_ATprotocol] = ACTIONS(2638), + [anon_sym_ATinterface] = ACTIONS(2638), + [anon_sym_ATimplementation] = ACTIONS(2638), + [anon_sym_ATcompatibility_alias] = ACTIONS(2638), + [anon_sym_ATsynthesize] = ACTIONS(2638), + [anon_sym_ATdynamic] = ACTIONS(2638), + [anon_sym_ATtry] = ACTIONS(2638), + [anon_sym___try] = ACTIONS(2636), + [anon_sym_ATthrow] = ACTIONS(2638), + [anon_sym_ATselector] = ACTIONS(2638), + [anon_sym_ATavailable] = ACTIONS(2638), + [anon_sym___builtin_available] = ACTIONS(2636), + [anon_sym_va_arg] = ACTIONS(2636), + [anon_sym_ATencode] = ACTIONS(2638), + [anon_sym_ATsynchronized] = ACTIONS(2638), + [anon_sym_BOOL] = ACTIONS(2636), + [anon_sym_IMP] = ACTIONS(2636), + [anon_sym_SEL] = ACTIONS(2636), + [anon_sym_Class] = ACTIONS(2636), + [anon_sym_id] = ACTIONS(2636), + }, + [528] = { + [sym_identifier] = ACTIONS(2640), + [aux_sym_preproc_include_token1] = ACTIONS(2640), + [aux_sym_preproc_include_token2] = ACTIONS(2640), + [aux_sym_preproc_def_token1] = ACTIONS(2640), + [aux_sym_preproc_if_token1] = ACTIONS(2640), + [aux_sym_preproc_if_token2] = ACTIONS(2640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2640), + [aux_sym_preproc_else_token1] = ACTIONS(2640), + [aux_sym_preproc_elif_token1] = ACTIONS(2640), + [sym_preproc_directive] = ACTIONS(2640), + [anon_sym_LPAREN2] = ACTIONS(2642), + [anon_sym_BANG] = ACTIONS(2642), + [anon_sym_TILDE] = ACTIONS(2642), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2642), + [anon_sym_CARET] = ACTIONS(2642), + [anon_sym_AMP] = ACTIONS(2642), + [anon_sym_SEMI] = ACTIONS(2642), + [anon_sym___extension__] = ACTIONS(2640), + [anon_sym_typedef] = ACTIONS(2640), + [anon_sym_extern] = ACTIONS(2640), + [anon_sym___attribute__] = ACTIONS(2640), + [anon_sym___attribute] = ACTIONS(2640), + [anon_sym_noreturn] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym___declspec] = ACTIONS(2640), + [anon_sym___cdecl] = ACTIONS(2640), + [anon_sym___clrcall] = ACTIONS(2640), + [anon_sym___stdcall] = ACTIONS(2640), + [anon_sym___fastcall] = ACTIONS(2640), + [anon_sym___thiscall] = ACTIONS(2640), + [anon_sym___vectorcall] = ACTIONS(2640), + [anon_sym_LBRACE] = ACTIONS(2642), + [anon_sym_signed] = ACTIONS(2640), + [anon_sym_unsigned] = ACTIONS(2640), + [anon_sym_long] = ACTIONS(2640), + [anon_sym_short] = ACTIONS(2640), + [anon_sym_static] = ACTIONS(2640), + [anon_sym_ATautoreleasepool] = ACTIONS(2642), + [anon_sym_auto] = ACTIONS(2640), + [anon_sym_register] = ACTIONS(2640), + [anon_sym_inline] = ACTIONS(2640), + [anon_sym___inline] = ACTIONS(2640), + [anon_sym___inline__] = ACTIONS(2640), + [anon_sym___forceinline] = ACTIONS(2640), + [anon_sym_thread_local] = ACTIONS(2640), + [anon_sym___thread] = ACTIONS(2640), + [anon_sym_CG_EXTERN] = ACTIONS(2640), + [anon_sym_CG_INLINE] = ACTIONS(2640), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2640), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2640), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2640), + [anon_sym_IBOutlet] = ACTIONS(2640), + [anon_sym_IBInspectable] = ACTIONS(2640), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2640), + [anon_sym_NS_INLINE] = ACTIONS(2640), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2640), + [anon_sym_OBJC_EXPORT] = ACTIONS(2640), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2640), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2640), + [anon_sym_const] = ACTIONS(2640), + [anon_sym_constexpr] = ACTIONS(2640), + [anon_sym_volatile] = ACTIONS(2640), + [anon_sym_restrict] = ACTIONS(2640), + [anon_sym___restrict__] = ACTIONS(2640), + [anon_sym__Atomic] = ACTIONS(2640), + [anon_sym__Noreturn] = ACTIONS(2640), + [anon_sym__Nonnull] = ACTIONS(2640), + [anon_sym_nullable] = ACTIONS(2640), + [anon_sym__Complex] = ACTIONS(2640), + [anon_sym__Nullable] = ACTIONS(2640), + [anon_sym__Nullable_result] = ACTIONS(2640), + [anon_sym__Null_unspecified] = ACTIONS(2640), + [anon_sym___autoreleasing] = ACTIONS(2640), + [anon_sym___block] = ACTIONS(2640), + [anon_sym___bridge] = ACTIONS(2640), + [anon_sym___bridge_retained] = ACTIONS(2640), + [anon_sym___bridge_transfer] = ACTIONS(2640), + [anon_sym___complex] = ACTIONS(2640), + [anon_sym___const] = ACTIONS(2640), + [anon_sym___imag] = ACTIONS(2640), + [anon_sym___kindof] = ACTIONS(2640), + [anon_sym___nonnull] = ACTIONS(2640), + [anon_sym___nullable] = ACTIONS(2640), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2640), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2640), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2640), + [anon_sym___real] = ACTIONS(2640), + [anon_sym___strong] = ACTIONS(2640), + [anon_sym___unsafe_unretained] = ACTIONS(2640), + [anon_sym___unused] = ACTIONS(2640), + [anon_sym___weak] = ACTIONS(2640), + [anon_sym_alignas] = ACTIONS(2640), + [anon_sym__Alignas] = ACTIONS(2640), + [sym_primitive_type] = ACTIONS(2640), + [anon_sym_enum] = ACTIONS(2640), + [anon_sym_struct] = ACTIONS(2640), + [anon_sym_union] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_switch] = ACTIONS(2640), + [anon_sym_case] = ACTIONS(2640), + [anon_sym_default] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_in] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_break] = ACTIONS(2640), + [anon_sym_continue] = ACTIONS(2640), + [anon_sym_goto] = ACTIONS(2640), + [anon_sym_DASH_DASH] = ACTIONS(2642), + [anon_sym_PLUS_PLUS] = ACTIONS(2642), + [anon_sym_sizeof] = ACTIONS(2640), + [anon_sym___alignof__] = ACTIONS(2640), + [anon_sym___alignof] = ACTIONS(2640), + [anon_sym__alignof] = ACTIONS(2640), + [anon_sym_alignof] = ACTIONS(2640), + [anon_sym__Alignof] = ACTIONS(2640), + [anon_sym_offsetof] = ACTIONS(2640), + [anon_sym__Generic] = ACTIONS(2640), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [anon_sym___asm] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2642), + [anon_sym_u_SQUOTE] = ACTIONS(2642), + [anon_sym_U_SQUOTE] = ACTIONS(2642), + [anon_sym_u8_SQUOTE] = ACTIONS(2642), + [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_AT] = ACTIONS(2640), + [anon_sym_DQUOTE] = ACTIONS(2642), + [anon_sym_L_DQUOTE] = ACTIONS(2642), + [anon_sym_u_DQUOTE] = ACTIONS(2642), + [anon_sym_U_DQUOTE] = ACTIONS(2642), + [anon_sym_u8_DQUOTE] = ACTIONS(2642), + [sym_true] = ACTIONS(2640), + [sym_false] = ACTIONS(2640), + [anon_sym_NULL] = ACTIONS(2640), + [anon_sym_nullptr] = ACTIONS(2640), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2640), + [anon_sym___typeof] = ACTIONS(2640), + [anon_sym_typeof] = ACTIONS(2640), + [anon_sym_ATimport] = ACTIONS(2642), + [aux_sym_preproc_undef_token1] = ACTIONS(2640), + [anon_sym_POUND] = ACTIONS(2640), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2640), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2640), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2640), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2640), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2640), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2640), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2640), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2640), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2640), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2640), + [anon_sym_NS_AVAILABLE] = ACTIONS(2640), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2640), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2640), + [anon_sym_API_AVAILABLE] = ACTIONS(2640), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2640), + [anon_sym_API_DEPRECATED] = ACTIONS(2640), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2640), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2640), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2640), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2640), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2640), + [anon_sym___deprecated_msg] = ACTIONS(2640), + [anon_sym___deprecated_enum_msg] = ACTIONS(2640), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2640), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2640), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2640), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2640), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2640), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2640), + [anon_sym_ATprotocol] = ACTIONS(2642), + [anon_sym_ATinterface] = ACTIONS(2642), + [anon_sym_ATimplementation] = ACTIONS(2642), + [anon_sym_ATcompatibility_alias] = ACTIONS(2642), + [anon_sym_ATsynthesize] = ACTIONS(2642), + [anon_sym_ATdynamic] = ACTIONS(2642), + [anon_sym_ATtry] = ACTIONS(2642), + [anon_sym___try] = ACTIONS(2640), + [anon_sym_ATthrow] = ACTIONS(2642), + [anon_sym_ATselector] = ACTIONS(2642), + [anon_sym_ATavailable] = ACTIONS(2642), + [anon_sym___builtin_available] = ACTIONS(2640), + [anon_sym_va_arg] = ACTIONS(2640), + [anon_sym_ATencode] = ACTIONS(2642), + [anon_sym_ATsynchronized] = ACTIONS(2642), + [anon_sym_BOOL] = ACTIONS(2640), + [anon_sym_IMP] = ACTIONS(2640), + [anon_sym_SEL] = ACTIONS(2640), + [anon_sym_Class] = ACTIONS(2640), + [anon_sym_id] = ACTIONS(2640), + }, + [529] = { + [sym_identifier] = ACTIONS(2644), + [aux_sym_preproc_include_token1] = ACTIONS(2644), + [aux_sym_preproc_include_token2] = ACTIONS(2644), + [aux_sym_preproc_def_token1] = ACTIONS(2644), + [aux_sym_preproc_if_token1] = ACTIONS(2644), + [aux_sym_preproc_if_token2] = ACTIONS(2644), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2644), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2644), + [aux_sym_preproc_else_token1] = ACTIONS(2644), + [aux_sym_preproc_elif_token1] = ACTIONS(2644), + [sym_preproc_directive] = ACTIONS(2644), + [anon_sym_LPAREN2] = ACTIONS(2646), + [anon_sym_BANG] = ACTIONS(2646), + [anon_sym_TILDE] = ACTIONS(2646), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_PLUS] = ACTIONS(2644), + [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_CARET] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2646), + [anon_sym_SEMI] = ACTIONS(2646), + [anon_sym___extension__] = ACTIONS(2644), + [anon_sym_typedef] = ACTIONS(2644), + [anon_sym_extern] = ACTIONS(2644), + [anon_sym___attribute__] = ACTIONS(2644), + [anon_sym___attribute] = ACTIONS(2644), + [anon_sym_noreturn] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2646), + [anon_sym___declspec] = ACTIONS(2644), + [anon_sym___cdecl] = ACTIONS(2644), + [anon_sym___clrcall] = ACTIONS(2644), + [anon_sym___stdcall] = ACTIONS(2644), + [anon_sym___fastcall] = ACTIONS(2644), + [anon_sym___thiscall] = ACTIONS(2644), + [anon_sym___vectorcall] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2646), + [anon_sym_signed] = ACTIONS(2644), + [anon_sym_unsigned] = ACTIONS(2644), + [anon_sym_long] = ACTIONS(2644), + [anon_sym_short] = ACTIONS(2644), + [anon_sym_static] = ACTIONS(2644), + [anon_sym_ATautoreleasepool] = ACTIONS(2646), + [anon_sym_auto] = ACTIONS(2644), + [anon_sym_register] = ACTIONS(2644), + [anon_sym_inline] = ACTIONS(2644), + [anon_sym___inline] = ACTIONS(2644), + [anon_sym___inline__] = ACTIONS(2644), + [anon_sym___forceinline] = ACTIONS(2644), + [anon_sym_thread_local] = ACTIONS(2644), + [anon_sym___thread] = ACTIONS(2644), + [anon_sym_CG_EXTERN] = ACTIONS(2644), + [anon_sym_CG_INLINE] = ACTIONS(2644), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2644), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2644), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2644), + [anon_sym_IBOutlet] = ACTIONS(2644), + [anon_sym_IBInspectable] = ACTIONS(2644), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2644), + [anon_sym_NS_INLINE] = ACTIONS(2644), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2644), + [anon_sym_OBJC_EXPORT] = ACTIONS(2644), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2644), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2644), + [anon_sym_const] = ACTIONS(2644), + [anon_sym_constexpr] = ACTIONS(2644), + [anon_sym_volatile] = ACTIONS(2644), + [anon_sym_restrict] = ACTIONS(2644), + [anon_sym___restrict__] = ACTIONS(2644), + [anon_sym__Atomic] = ACTIONS(2644), + [anon_sym__Noreturn] = ACTIONS(2644), + [anon_sym__Nonnull] = ACTIONS(2644), + [anon_sym_nullable] = ACTIONS(2644), + [anon_sym__Complex] = ACTIONS(2644), + [anon_sym__Nullable] = ACTIONS(2644), + [anon_sym__Nullable_result] = ACTIONS(2644), + [anon_sym__Null_unspecified] = ACTIONS(2644), + [anon_sym___autoreleasing] = ACTIONS(2644), + [anon_sym___block] = ACTIONS(2644), + [anon_sym___bridge] = ACTIONS(2644), + [anon_sym___bridge_retained] = ACTIONS(2644), + [anon_sym___bridge_transfer] = ACTIONS(2644), + [anon_sym___complex] = ACTIONS(2644), + [anon_sym___const] = ACTIONS(2644), + [anon_sym___imag] = ACTIONS(2644), + [anon_sym___kindof] = ACTIONS(2644), + [anon_sym___nonnull] = ACTIONS(2644), + [anon_sym___nullable] = ACTIONS(2644), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2644), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2644), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2644), + [anon_sym___real] = ACTIONS(2644), + [anon_sym___strong] = ACTIONS(2644), + [anon_sym___unsafe_unretained] = ACTIONS(2644), + [anon_sym___unused] = ACTIONS(2644), + [anon_sym___weak] = ACTIONS(2644), + [anon_sym_alignas] = ACTIONS(2644), + [anon_sym__Alignas] = ACTIONS(2644), + [sym_primitive_type] = ACTIONS(2644), + [anon_sym_enum] = ACTIONS(2644), + [anon_sym_struct] = ACTIONS(2644), + [anon_sym_union] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_switch] = ACTIONS(2644), + [anon_sym_case] = ACTIONS(2644), + [anon_sym_default] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_do] = ACTIONS(2644), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_in] = ACTIONS(2644), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_break] = ACTIONS(2644), + [anon_sym_continue] = ACTIONS(2644), + [anon_sym_goto] = ACTIONS(2644), + [anon_sym_DASH_DASH] = ACTIONS(2646), + [anon_sym_PLUS_PLUS] = ACTIONS(2646), + [anon_sym_sizeof] = ACTIONS(2644), + [anon_sym___alignof__] = ACTIONS(2644), + [anon_sym___alignof] = ACTIONS(2644), + [anon_sym__alignof] = ACTIONS(2644), + [anon_sym_alignof] = ACTIONS(2644), + [anon_sym__Alignof] = ACTIONS(2644), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2644), + [anon_sym_asm] = ACTIONS(2644), + [anon_sym___asm__] = ACTIONS(2644), + [anon_sym___asm] = ACTIONS(2644), + [sym_number_literal] = ACTIONS(2646), + [anon_sym_L_SQUOTE] = ACTIONS(2646), + [anon_sym_u_SQUOTE] = ACTIONS(2646), + [anon_sym_U_SQUOTE] = ACTIONS(2646), + [anon_sym_u8_SQUOTE] = ACTIONS(2646), + [anon_sym_SQUOTE] = ACTIONS(2646), + [anon_sym_AT] = ACTIONS(2644), + [anon_sym_DQUOTE] = ACTIONS(2646), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2644), + [sym_false] = ACTIONS(2644), + [anon_sym_NULL] = ACTIONS(2644), + [anon_sym_nullptr] = ACTIONS(2644), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2644), + [anon_sym___typeof] = ACTIONS(2644), + [anon_sym_typeof] = ACTIONS(2644), + [anon_sym_ATimport] = ACTIONS(2646), + [aux_sym_preproc_undef_token1] = ACTIONS(2644), + [anon_sym_POUND] = ACTIONS(2644), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2644), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2644), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2644), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2644), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2644), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2644), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2644), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2644), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2644), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2644), + [anon_sym_NS_AVAILABLE] = ACTIONS(2644), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2644), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2644), + [anon_sym_API_AVAILABLE] = ACTIONS(2644), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2644), + [anon_sym_API_DEPRECATED] = ACTIONS(2644), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2644), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2644), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2644), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2644), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2644), + [anon_sym___deprecated_msg] = ACTIONS(2644), + [anon_sym___deprecated_enum_msg] = ACTIONS(2644), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2644), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2644), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2644), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2644), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2644), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2644), + [anon_sym_ATprotocol] = ACTIONS(2646), + [anon_sym_ATinterface] = ACTIONS(2646), + [anon_sym_ATimplementation] = ACTIONS(2646), + [anon_sym_ATcompatibility_alias] = ACTIONS(2646), + [anon_sym_ATsynthesize] = ACTIONS(2646), + [anon_sym_ATdynamic] = ACTIONS(2646), + [anon_sym_ATtry] = ACTIONS(2646), + [anon_sym___try] = ACTIONS(2644), + [anon_sym_ATthrow] = ACTIONS(2646), + [anon_sym_ATselector] = ACTIONS(2646), + [anon_sym_ATavailable] = ACTIONS(2646), + [anon_sym___builtin_available] = ACTIONS(2644), + [anon_sym_va_arg] = ACTIONS(2644), + [anon_sym_ATencode] = ACTIONS(2646), + [anon_sym_ATsynchronized] = ACTIONS(2646), + [anon_sym_BOOL] = ACTIONS(2644), + [anon_sym_IMP] = ACTIONS(2644), + [anon_sym_SEL] = ACTIONS(2644), + [anon_sym_Class] = ACTIONS(2644), + [anon_sym_id] = ACTIONS(2644), + }, + [530] = { + [sym_identifier] = ACTIONS(2720), + [aux_sym_preproc_include_token1] = ACTIONS(2720), + [aux_sym_preproc_include_token2] = ACTIONS(2720), + [aux_sym_preproc_def_token1] = ACTIONS(2720), + [aux_sym_preproc_if_token1] = ACTIONS(2720), + [aux_sym_preproc_if_token2] = ACTIONS(2720), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2720), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2720), + [aux_sym_preproc_else_token1] = ACTIONS(2720), + [aux_sym_preproc_elif_token1] = ACTIONS(2720), + [sym_preproc_directive] = ACTIONS(2720), + [anon_sym_LPAREN2] = ACTIONS(2722), + [anon_sym_BANG] = ACTIONS(2722), + [anon_sym_TILDE] = ACTIONS(2722), + [anon_sym_DASH] = ACTIONS(2720), + [anon_sym_PLUS] = ACTIONS(2720), + [anon_sym_STAR] = ACTIONS(2722), + [anon_sym_CARET] = ACTIONS(2722), + [anon_sym_AMP] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_typedef] = ACTIONS(2720), + [anon_sym_extern] = ACTIONS(2720), + [anon_sym___attribute__] = ACTIONS(2720), + [anon_sym___attribute] = ACTIONS(2720), + [anon_sym_noreturn] = ACTIONS(2720), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym___declspec] = ACTIONS(2720), + [anon_sym___cdecl] = ACTIONS(2720), + [anon_sym___clrcall] = ACTIONS(2720), + [anon_sym___stdcall] = ACTIONS(2720), + [anon_sym___fastcall] = ACTIONS(2720), + [anon_sym___thiscall] = ACTIONS(2720), + [anon_sym___vectorcall] = ACTIONS(2720), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_signed] = ACTIONS(2720), + [anon_sym_unsigned] = ACTIONS(2720), + [anon_sym_long] = ACTIONS(2720), + [anon_sym_short] = ACTIONS(2720), + [anon_sym_static] = ACTIONS(2720), + [anon_sym_ATautoreleasepool] = ACTIONS(2722), + [anon_sym_auto] = ACTIONS(2720), + [anon_sym_register] = ACTIONS(2720), + [anon_sym_inline] = ACTIONS(2720), + [anon_sym___inline] = ACTIONS(2720), + [anon_sym___inline__] = ACTIONS(2720), + [anon_sym___forceinline] = ACTIONS(2720), + [anon_sym_thread_local] = ACTIONS(2720), + [anon_sym___thread] = ACTIONS(2720), + [anon_sym_CG_EXTERN] = ACTIONS(2720), + [anon_sym_CG_INLINE] = ACTIONS(2720), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2720), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2720), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2720), + [anon_sym_IBOutlet] = ACTIONS(2720), + [anon_sym_IBInspectable] = ACTIONS(2720), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2720), + [anon_sym_NS_INLINE] = ACTIONS(2720), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2720), + [anon_sym_OBJC_EXPORT] = ACTIONS(2720), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2720), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2720), + [anon_sym_const] = ACTIONS(2720), + [anon_sym_constexpr] = ACTIONS(2720), + [anon_sym_volatile] = ACTIONS(2720), + [anon_sym_restrict] = ACTIONS(2720), + [anon_sym___restrict__] = ACTIONS(2720), + [anon_sym__Atomic] = ACTIONS(2720), + [anon_sym__Noreturn] = ACTIONS(2720), + [anon_sym__Nonnull] = ACTIONS(2720), + [anon_sym_nullable] = ACTIONS(2720), + [anon_sym__Complex] = ACTIONS(2720), + [anon_sym__Nullable] = ACTIONS(2720), + [anon_sym__Nullable_result] = ACTIONS(2720), + [anon_sym__Null_unspecified] = ACTIONS(2720), + [anon_sym___autoreleasing] = ACTIONS(2720), + [anon_sym___block] = ACTIONS(2720), + [anon_sym___bridge] = ACTIONS(2720), + [anon_sym___bridge_retained] = ACTIONS(2720), + [anon_sym___bridge_transfer] = ACTIONS(2720), + [anon_sym___complex] = ACTIONS(2720), + [anon_sym___const] = ACTIONS(2720), + [anon_sym___imag] = ACTIONS(2720), + [anon_sym___kindof] = ACTIONS(2720), + [anon_sym___nonnull] = ACTIONS(2720), + [anon_sym___nullable] = ACTIONS(2720), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2720), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2720), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2720), + [anon_sym___real] = ACTIONS(2720), + [anon_sym___strong] = ACTIONS(2720), + [anon_sym___unsafe_unretained] = ACTIONS(2720), + [anon_sym___unused] = ACTIONS(2720), + [anon_sym___weak] = ACTIONS(2720), + [anon_sym_alignas] = ACTIONS(2720), + [anon_sym__Alignas] = ACTIONS(2720), + [sym_primitive_type] = ACTIONS(2720), + [anon_sym_enum] = ACTIONS(2720), + [anon_sym_struct] = ACTIONS(2720), + [anon_sym_union] = ACTIONS(2720), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_switch] = ACTIONS(2720), + [anon_sym_case] = ACTIONS(2720), + [anon_sym_default] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2720), + [anon_sym_do] = ACTIONS(2720), + [anon_sym_for] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2720), + [anon_sym_return] = ACTIONS(2720), + [anon_sym_break] = ACTIONS(2720), + [anon_sym_continue] = ACTIONS(2720), + [anon_sym_goto] = ACTIONS(2720), + [anon_sym_DASH_DASH] = ACTIONS(2722), + [anon_sym_PLUS_PLUS] = ACTIONS(2722), + [anon_sym_sizeof] = ACTIONS(2720), + [anon_sym___alignof__] = ACTIONS(2720), + [anon_sym___alignof] = ACTIONS(2720), + [anon_sym__alignof] = ACTIONS(2720), + [anon_sym_alignof] = ACTIONS(2720), + [anon_sym__Alignof] = ACTIONS(2720), + [anon_sym_offsetof] = ACTIONS(2720), + [anon_sym__Generic] = ACTIONS(2720), + [anon_sym_asm] = ACTIONS(2720), + [anon_sym___asm__] = ACTIONS(2720), + [anon_sym___asm] = ACTIONS(2720), + [sym_number_literal] = ACTIONS(2722), + [anon_sym_L_SQUOTE] = ACTIONS(2722), + [anon_sym_u_SQUOTE] = ACTIONS(2722), + [anon_sym_U_SQUOTE] = ACTIONS(2722), + [anon_sym_u8_SQUOTE] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2722), + [anon_sym_AT] = ACTIONS(2720), + [anon_sym_DQUOTE] = ACTIONS(2722), + [anon_sym_L_DQUOTE] = ACTIONS(2722), + [anon_sym_u_DQUOTE] = ACTIONS(2722), + [anon_sym_U_DQUOTE] = ACTIONS(2722), + [anon_sym_u8_DQUOTE] = ACTIONS(2722), + [sym_true] = ACTIONS(2720), + [sym_false] = ACTIONS(2720), + [anon_sym_NULL] = ACTIONS(2720), + [anon_sym_nullptr] = ACTIONS(2720), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2720), + [anon_sym___typeof] = ACTIONS(2720), + [anon_sym_typeof] = ACTIONS(2720), + [anon_sym_ATimport] = ACTIONS(2722), + [aux_sym_preproc_undef_token1] = ACTIONS(2720), + [anon_sym_POUND] = ACTIONS(2720), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2720), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2720), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2720), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2720), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2720), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2720), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2720), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2720), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2720), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2720), + [anon_sym_NS_AVAILABLE] = ACTIONS(2720), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2720), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2720), + [anon_sym_API_AVAILABLE] = ACTIONS(2720), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2720), + [anon_sym_API_DEPRECATED] = ACTIONS(2720), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2720), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2720), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2720), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2720), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2720), + [anon_sym___deprecated_msg] = ACTIONS(2720), + [anon_sym___deprecated_enum_msg] = ACTIONS(2720), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2720), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2720), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2720), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2720), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2720), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2720), + [anon_sym_ATprotocol] = ACTIONS(2722), + [anon_sym_ATinterface] = ACTIONS(2722), + [anon_sym_ATimplementation] = ACTIONS(2722), + [anon_sym_ATcompatibility_alias] = ACTIONS(2722), + [anon_sym_ATsynthesize] = ACTIONS(2722), + [anon_sym_ATdynamic] = ACTIONS(2722), + [anon_sym_ATtry] = ACTIONS(2722), + [anon_sym___try] = ACTIONS(2720), + [anon_sym_ATthrow] = ACTIONS(2722), + [anon_sym_ATselector] = ACTIONS(2722), + [anon_sym_ATavailable] = ACTIONS(2722), + [anon_sym___builtin_available] = ACTIONS(2720), + [anon_sym_va_arg] = ACTIONS(2720), + [anon_sym_ATencode] = ACTIONS(2722), + [anon_sym_ATsynchronized] = ACTIONS(2722), + [anon_sym_BOOL] = ACTIONS(2720), + [anon_sym_IMP] = ACTIONS(2720), + [anon_sym_SEL] = ACTIONS(2720), + [anon_sym_Class] = ACTIONS(2720), + [anon_sym_id] = ACTIONS(2720), + }, + [531] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [532] = { + [sym_identifier] = ACTIONS(2528), + [aux_sym_preproc_include_token1] = ACTIONS(2528), + [aux_sym_preproc_include_token2] = ACTIONS(2528), + [aux_sym_preproc_def_token1] = ACTIONS(2528), + [aux_sym_preproc_if_token1] = ACTIONS(2528), + [aux_sym_preproc_if_token2] = ACTIONS(2528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2528), + [sym_preproc_directive] = ACTIONS(2528), + [anon_sym_LPAREN2] = ACTIONS(2530), + [anon_sym_BANG] = ACTIONS(2530), + [anon_sym_TILDE] = ACTIONS(2530), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_CARET] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2530), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym___extension__] = ACTIONS(2528), + [anon_sym_typedef] = ACTIONS(2528), + [anon_sym_extern] = ACTIONS(2528), + [anon_sym___attribute__] = ACTIONS(2528), + [anon_sym___attribute] = ACTIONS(2528), + [anon_sym_noreturn] = ACTIONS(2528), + [anon_sym_LBRACK] = ACTIONS(2530), + [anon_sym___declspec] = ACTIONS(2528), + [anon_sym___cdecl] = ACTIONS(2528), + [anon_sym___clrcall] = ACTIONS(2528), + [anon_sym___stdcall] = ACTIONS(2528), + [anon_sym___fastcall] = ACTIONS(2528), + [anon_sym___thiscall] = ACTIONS(2528), + [anon_sym___vectorcall] = ACTIONS(2528), + [anon_sym_LBRACE] = ACTIONS(2530), + [anon_sym_signed] = ACTIONS(2528), + [anon_sym_unsigned] = ACTIONS(2528), + [anon_sym_long] = ACTIONS(2528), + [anon_sym_short] = ACTIONS(2528), + [anon_sym_static] = ACTIONS(2528), + [anon_sym_ATautoreleasepool] = ACTIONS(2530), + [anon_sym_auto] = ACTIONS(2528), + [anon_sym_register] = ACTIONS(2528), + [anon_sym_inline] = ACTIONS(2528), + [anon_sym___inline] = ACTIONS(2528), + [anon_sym___inline__] = ACTIONS(2528), + [anon_sym___forceinline] = ACTIONS(2528), + [anon_sym_thread_local] = ACTIONS(2528), + [anon_sym___thread] = ACTIONS(2528), + [anon_sym_CG_EXTERN] = ACTIONS(2528), + [anon_sym_CG_INLINE] = ACTIONS(2528), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2528), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2528), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2528), + [anon_sym_IBOutlet] = ACTIONS(2528), + [anon_sym_IBInspectable] = ACTIONS(2528), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2528), + [anon_sym_NS_INLINE] = ACTIONS(2528), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2528), + [anon_sym_OBJC_EXPORT] = ACTIONS(2528), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2528), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2528), + [anon_sym_const] = ACTIONS(2528), + [anon_sym_constexpr] = ACTIONS(2528), + [anon_sym_volatile] = ACTIONS(2528), + [anon_sym_restrict] = ACTIONS(2528), + [anon_sym___restrict__] = ACTIONS(2528), + [anon_sym__Atomic] = ACTIONS(2528), + [anon_sym__Noreturn] = ACTIONS(2528), + [anon_sym__Nonnull] = ACTIONS(2528), + [anon_sym_nullable] = ACTIONS(2528), + [anon_sym__Complex] = ACTIONS(2528), + [anon_sym__Nullable] = ACTIONS(2528), + [anon_sym__Nullable_result] = ACTIONS(2528), + [anon_sym__Null_unspecified] = ACTIONS(2528), + [anon_sym___autoreleasing] = ACTIONS(2528), + [anon_sym___block] = ACTIONS(2528), + [anon_sym___bridge] = ACTIONS(2528), + [anon_sym___bridge_retained] = ACTIONS(2528), + [anon_sym___bridge_transfer] = ACTIONS(2528), + [anon_sym___complex] = ACTIONS(2528), + [anon_sym___const] = ACTIONS(2528), + [anon_sym___imag] = ACTIONS(2528), + [anon_sym___kindof] = ACTIONS(2528), + [anon_sym___nonnull] = ACTIONS(2528), + [anon_sym___nullable] = ACTIONS(2528), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2528), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2528), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2528), + [anon_sym___real] = ACTIONS(2528), + [anon_sym___strong] = ACTIONS(2528), + [anon_sym___unsafe_unretained] = ACTIONS(2528), + [anon_sym___unused] = ACTIONS(2528), + [anon_sym___weak] = ACTIONS(2528), + [anon_sym_alignas] = ACTIONS(2528), + [anon_sym__Alignas] = ACTIONS(2528), + [sym_primitive_type] = ACTIONS(2528), + [anon_sym_enum] = ACTIONS(2528), + [anon_sym_struct] = ACTIONS(2528), + [anon_sym_union] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_else] = ACTIONS(2528), + [anon_sym_switch] = ACTIONS(2528), + [anon_sym_case] = ACTIONS(2528), + [anon_sym_default] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_in] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_break] = ACTIONS(2528), + [anon_sym_continue] = ACTIONS(2528), + [anon_sym_goto] = ACTIONS(2528), + [anon_sym_DASH_DASH] = ACTIONS(2530), + [anon_sym_PLUS_PLUS] = ACTIONS(2530), + [anon_sym_sizeof] = ACTIONS(2528), + [anon_sym___alignof__] = ACTIONS(2528), + [anon_sym___alignof] = ACTIONS(2528), + [anon_sym__alignof] = ACTIONS(2528), + [anon_sym_alignof] = ACTIONS(2528), + [anon_sym__Alignof] = ACTIONS(2528), + [anon_sym_offsetof] = ACTIONS(2528), + [anon_sym__Generic] = ACTIONS(2528), + [anon_sym_asm] = ACTIONS(2528), + [anon_sym___asm__] = ACTIONS(2528), + [anon_sym___asm] = ACTIONS(2528), + [sym_number_literal] = ACTIONS(2530), + [anon_sym_L_SQUOTE] = ACTIONS(2530), + [anon_sym_u_SQUOTE] = ACTIONS(2530), + [anon_sym_U_SQUOTE] = ACTIONS(2530), + [anon_sym_u8_SQUOTE] = ACTIONS(2530), + [anon_sym_SQUOTE] = ACTIONS(2530), + [anon_sym_AT] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2530), + [anon_sym_L_DQUOTE] = ACTIONS(2530), + [anon_sym_u_DQUOTE] = ACTIONS(2530), + [anon_sym_U_DQUOTE] = ACTIONS(2530), + [anon_sym_u8_DQUOTE] = ACTIONS(2530), + [sym_true] = ACTIONS(2528), + [sym_false] = ACTIONS(2528), + [anon_sym_NULL] = ACTIONS(2528), + [anon_sym_nullptr] = ACTIONS(2528), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2528), + [anon_sym___typeof] = ACTIONS(2528), + [anon_sym_typeof] = ACTIONS(2528), + [anon_sym_ATimport] = ACTIONS(2530), + [aux_sym_preproc_undef_token1] = ACTIONS(2528), + [anon_sym_POUND] = ACTIONS(2528), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2528), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2528), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2528), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2528), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2528), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2528), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2528), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2528), + [anon_sym_NS_AVAILABLE] = ACTIONS(2528), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2528), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_API_AVAILABLE] = ACTIONS(2528), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_API_DEPRECATED] = ACTIONS(2528), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2528), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2528), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2528), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2528), + [anon_sym___deprecated_msg] = ACTIONS(2528), + [anon_sym___deprecated_enum_msg] = ACTIONS(2528), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2528), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2528), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2528), + [anon_sym_ATprotocol] = ACTIONS(2530), + [anon_sym_ATinterface] = ACTIONS(2530), + [anon_sym_ATimplementation] = ACTIONS(2530), + [anon_sym_ATcompatibility_alias] = ACTIONS(2530), + [anon_sym_ATsynthesize] = ACTIONS(2530), + [anon_sym_ATdynamic] = ACTIONS(2530), + [anon_sym_ATtry] = ACTIONS(2530), + [anon_sym___try] = ACTIONS(2528), + [anon_sym_ATthrow] = ACTIONS(2530), + [anon_sym_ATselector] = ACTIONS(2530), + [anon_sym_ATavailable] = ACTIONS(2530), + [anon_sym___builtin_available] = ACTIONS(2528), + [anon_sym_va_arg] = ACTIONS(2528), + [anon_sym_ATencode] = ACTIONS(2530), + [anon_sym_ATsynchronized] = ACTIONS(2530), + [anon_sym_BOOL] = ACTIONS(2528), + [anon_sym_IMP] = ACTIONS(2528), + [anon_sym_SEL] = ACTIONS(2528), + [anon_sym_Class] = ACTIONS(2528), + [anon_sym_id] = ACTIONS(2528), + }, + [533] = { + [sym_identifier] = ACTIONS(2470), + [aux_sym_preproc_include_token1] = ACTIONS(2470), + [aux_sym_preproc_include_token2] = ACTIONS(2470), + [aux_sym_preproc_def_token1] = ACTIONS(2470), + [aux_sym_preproc_if_token1] = ACTIONS(2470), + [aux_sym_preproc_if_token2] = ACTIONS(2470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2470), + [sym_preproc_directive] = ACTIONS(2470), + [anon_sym_LPAREN2] = ACTIONS(2472), + [anon_sym_BANG] = ACTIONS(2472), + [anon_sym_TILDE] = ACTIONS(2472), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_CARET] = ACTIONS(2472), + [anon_sym_AMP] = ACTIONS(2472), + [anon_sym_SEMI] = ACTIONS(2472), + [anon_sym___extension__] = ACTIONS(2470), + [anon_sym_typedef] = ACTIONS(2470), + [anon_sym_extern] = ACTIONS(2470), + [anon_sym___attribute__] = ACTIONS(2470), + [anon_sym___attribute] = ACTIONS(2470), + [anon_sym_noreturn] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2472), + [anon_sym___declspec] = ACTIONS(2470), + [anon_sym___cdecl] = ACTIONS(2470), + [anon_sym___clrcall] = ACTIONS(2470), + [anon_sym___stdcall] = ACTIONS(2470), + [anon_sym___fastcall] = ACTIONS(2470), + [anon_sym___thiscall] = ACTIONS(2470), + [anon_sym___vectorcall] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2472), + [anon_sym_signed] = ACTIONS(2470), + [anon_sym_unsigned] = ACTIONS(2470), + [anon_sym_long] = ACTIONS(2470), + [anon_sym_short] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_ATautoreleasepool] = ACTIONS(2472), + [anon_sym_auto] = ACTIONS(2470), + [anon_sym_register] = ACTIONS(2470), + [anon_sym_inline] = ACTIONS(2470), + [anon_sym___inline] = ACTIONS(2470), + [anon_sym___inline__] = ACTIONS(2470), + [anon_sym___forceinline] = ACTIONS(2470), + [anon_sym_thread_local] = ACTIONS(2470), + [anon_sym___thread] = ACTIONS(2470), + [anon_sym_CG_EXTERN] = ACTIONS(2470), + [anon_sym_CG_INLINE] = ACTIONS(2470), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2470), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2470), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2470), + [anon_sym_IBOutlet] = ACTIONS(2470), + [anon_sym_IBInspectable] = ACTIONS(2470), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2470), + [anon_sym_NS_INLINE] = ACTIONS(2470), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2470), + [anon_sym_OBJC_EXPORT] = ACTIONS(2470), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2470), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_constexpr] = ACTIONS(2470), + [anon_sym_volatile] = ACTIONS(2470), + [anon_sym_restrict] = ACTIONS(2470), + [anon_sym___restrict__] = ACTIONS(2470), + [anon_sym__Atomic] = ACTIONS(2470), + [anon_sym__Noreturn] = ACTIONS(2470), + [anon_sym__Nonnull] = ACTIONS(2470), + [anon_sym_nullable] = ACTIONS(2470), + [anon_sym__Complex] = ACTIONS(2470), + [anon_sym__Nullable] = ACTIONS(2470), + [anon_sym__Nullable_result] = ACTIONS(2470), + [anon_sym__Null_unspecified] = ACTIONS(2470), + [anon_sym___autoreleasing] = ACTIONS(2470), + [anon_sym___block] = ACTIONS(2470), + [anon_sym___bridge] = ACTIONS(2470), + [anon_sym___bridge_retained] = ACTIONS(2470), + [anon_sym___bridge_transfer] = ACTIONS(2470), + [anon_sym___complex] = ACTIONS(2470), + [anon_sym___const] = ACTIONS(2470), + [anon_sym___imag] = ACTIONS(2470), + [anon_sym___kindof] = ACTIONS(2470), + [anon_sym___nonnull] = ACTIONS(2470), + [anon_sym___nullable] = ACTIONS(2470), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2470), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2470), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2470), + [anon_sym___real] = ACTIONS(2470), + [anon_sym___strong] = ACTIONS(2470), + [anon_sym___unsafe_unretained] = ACTIONS(2470), + [anon_sym___unused] = ACTIONS(2470), + [anon_sym___weak] = ACTIONS(2470), + [anon_sym_alignas] = ACTIONS(2470), + [anon_sym__Alignas] = ACTIONS(2470), + [sym_primitive_type] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [anon_sym_struct] = ACTIONS(2470), + [anon_sym_union] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_else] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_case] = ACTIONS(2470), + [anon_sym_default] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_in] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_goto] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2472), + [anon_sym_PLUS_PLUS] = ACTIONS(2472), + [anon_sym_sizeof] = ACTIONS(2470), + [anon_sym___alignof__] = ACTIONS(2470), + [anon_sym___alignof] = ACTIONS(2470), + [anon_sym__alignof] = ACTIONS(2470), + [anon_sym_alignof] = ACTIONS(2470), + [anon_sym__Alignof] = ACTIONS(2470), + [anon_sym_offsetof] = ACTIONS(2470), + [anon_sym__Generic] = ACTIONS(2470), + [anon_sym_asm] = ACTIONS(2470), + [anon_sym___asm__] = ACTIONS(2470), + [anon_sym___asm] = ACTIONS(2470), + [sym_number_literal] = ACTIONS(2472), + [anon_sym_L_SQUOTE] = ACTIONS(2472), + [anon_sym_u_SQUOTE] = ACTIONS(2472), + [anon_sym_U_SQUOTE] = ACTIONS(2472), + [anon_sym_u8_SQUOTE] = ACTIONS(2472), + [anon_sym_SQUOTE] = ACTIONS(2472), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2472), + [anon_sym_L_DQUOTE] = ACTIONS(2472), + [anon_sym_u_DQUOTE] = ACTIONS(2472), + [anon_sym_U_DQUOTE] = ACTIONS(2472), + [anon_sym_u8_DQUOTE] = ACTIONS(2472), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [anon_sym_NULL] = ACTIONS(2470), + [anon_sym_nullptr] = ACTIONS(2470), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2470), + [anon_sym___typeof] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_ATimport] = ACTIONS(2472), + [aux_sym_preproc_undef_token1] = ACTIONS(2470), + [anon_sym_POUND] = ACTIONS(2470), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2470), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2470), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2470), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2470), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2470), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2470), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2470), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2470), + [anon_sym_NS_AVAILABLE] = ACTIONS(2470), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2470), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_API_AVAILABLE] = ACTIONS(2470), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_API_DEPRECATED] = ACTIONS(2470), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2470), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2470), + [anon_sym___deprecated_msg] = ACTIONS(2470), + [anon_sym___deprecated_enum_msg] = ACTIONS(2470), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2470), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2470), + [anon_sym_ATprotocol] = ACTIONS(2472), + [anon_sym_ATinterface] = ACTIONS(2472), + [anon_sym_ATimplementation] = ACTIONS(2472), + [anon_sym_ATcompatibility_alias] = ACTIONS(2472), + [anon_sym_ATsynthesize] = ACTIONS(2472), + [anon_sym_ATdynamic] = ACTIONS(2472), + [anon_sym_ATtry] = ACTIONS(2472), + [anon_sym___try] = ACTIONS(2470), + [anon_sym_ATthrow] = ACTIONS(2472), + [anon_sym_ATselector] = ACTIONS(2472), + [anon_sym_ATavailable] = ACTIONS(2472), + [anon_sym___builtin_available] = ACTIONS(2470), + [anon_sym_va_arg] = ACTIONS(2470), + [anon_sym_ATencode] = ACTIONS(2472), + [anon_sym_ATsynchronized] = ACTIONS(2472), + [anon_sym_BOOL] = ACTIONS(2470), + [anon_sym_IMP] = ACTIONS(2470), + [anon_sym_SEL] = ACTIONS(2470), + [anon_sym_Class] = ACTIONS(2470), + [anon_sym_id] = ACTIONS(2470), + }, + [534] = { + [sym_identifier] = ACTIONS(2532), + [aux_sym_preproc_include_token1] = ACTIONS(2532), + [aux_sym_preproc_include_token2] = ACTIONS(2532), + [aux_sym_preproc_def_token1] = ACTIONS(2532), + [aux_sym_preproc_if_token1] = ACTIONS(2532), + [aux_sym_preproc_if_token2] = ACTIONS(2532), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2532), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2532), + [sym_preproc_directive] = ACTIONS(2532), + [anon_sym_LPAREN2] = ACTIONS(2534), + [anon_sym_BANG] = ACTIONS(2534), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2532), + [anon_sym_STAR] = ACTIONS(2534), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2534), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym___extension__] = ACTIONS(2532), + [anon_sym_typedef] = ACTIONS(2532), + [anon_sym_extern] = ACTIONS(2532), + [anon_sym___attribute__] = ACTIONS(2532), + [anon_sym___attribute] = ACTIONS(2532), + [anon_sym_noreturn] = ACTIONS(2532), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym___declspec] = ACTIONS(2532), + [anon_sym___cdecl] = ACTIONS(2532), + [anon_sym___clrcall] = ACTIONS(2532), + [anon_sym___stdcall] = ACTIONS(2532), + [anon_sym___fastcall] = ACTIONS(2532), + [anon_sym___thiscall] = ACTIONS(2532), + [anon_sym___vectorcall] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_signed] = ACTIONS(2532), + [anon_sym_unsigned] = ACTIONS(2532), + [anon_sym_long] = ACTIONS(2532), + [anon_sym_short] = ACTIONS(2532), + [anon_sym_static] = ACTIONS(2532), + [anon_sym_ATautoreleasepool] = ACTIONS(2534), + [anon_sym_auto] = ACTIONS(2532), + [anon_sym_register] = ACTIONS(2532), + [anon_sym_inline] = ACTIONS(2532), + [anon_sym___inline] = ACTIONS(2532), + [anon_sym___inline__] = ACTIONS(2532), + [anon_sym___forceinline] = ACTIONS(2532), + [anon_sym_thread_local] = ACTIONS(2532), + [anon_sym___thread] = ACTIONS(2532), + [anon_sym_CG_EXTERN] = ACTIONS(2532), + [anon_sym_CG_INLINE] = ACTIONS(2532), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2532), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2532), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2532), + [anon_sym_IBOutlet] = ACTIONS(2532), + [anon_sym_IBInspectable] = ACTIONS(2532), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2532), + [anon_sym_NS_INLINE] = ACTIONS(2532), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2532), + [anon_sym_OBJC_EXPORT] = ACTIONS(2532), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2532), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2532), + [anon_sym_const] = ACTIONS(2532), + [anon_sym_constexpr] = ACTIONS(2532), + [anon_sym_volatile] = ACTIONS(2532), + [anon_sym_restrict] = ACTIONS(2532), + [anon_sym___restrict__] = ACTIONS(2532), + [anon_sym__Atomic] = ACTIONS(2532), + [anon_sym__Noreturn] = ACTIONS(2532), + [anon_sym__Nonnull] = ACTIONS(2532), + [anon_sym_nullable] = ACTIONS(2532), + [anon_sym__Complex] = ACTIONS(2532), + [anon_sym__Nullable] = ACTIONS(2532), + [anon_sym__Nullable_result] = ACTIONS(2532), + [anon_sym__Null_unspecified] = ACTIONS(2532), + [anon_sym___autoreleasing] = ACTIONS(2532), + [anon_sym___block] = ACTIONS(2532), + [anon_sym___bridge] = ACTIONS(2532), + [anon_sym___bridge_retained] = ACTIONS(2532), + [anon_sym___bridge_transfer] = ACTIONS(2532), + [anon_sym___complex] = ACTIONS(2532), + [anon_sym___const] = ACTIONS(2532), + [anon_sym___imag] = ACTIONS(2532), + [anon_sym___kindof] = ACTIONS(2532), + [anon_sym___nonnull] = ACTIONS(2532), + [anon_sym___nullable] = ACTIONS(2532), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2532), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2532), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2532), + [anon_sym___real] = ACTIONS(2532), + [anon_sym___strong] = ACTIONS(2532), + [anon_sym___unsafe_unretained] = ACTIONS(2532), + [anon_sym___unused] = ACTIONS(2532), + [anon_sym___weak] = ACTIONS(2532), + [anon_sym_alignas] = ACTIONS(2532), + [anon_sym__Alignas] = ACTIONS(2532), + [sym_primitive_type] = ACTIONS(2532), + [anon_sym_enum] = ACTIONS(2532), + [anon_sym_struct] = ACTIONS(2532), + [anon_sym_union] = ACTIONS(2532), + [anon_sym_if] = ACTIONS(2532), + [anon_sym_else] = ACTIONS(2532), + [anon_sym_switch] = ACTIONS(2532), + [anon_sym_case] = ACTIONS(2532), + [anon_sym_default] = ACTIONS(2532), + [anon_sym_while] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_for] = ACTIONS(2532), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_return] = ACTIONS(2532), + [anon_sym_break] = ACTIONS(2532), + [anon_sym_continue] = ACTIONS(2532), + [anon_sym_goto] = ACTIONS(2532), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), + [anon_sym_sizeof] = ACTIONS(2532), + [anon_sym___alignof__] = ACTIONS(2532), + [anon_sym___alignof] = ACTIONS(2532), + [anon_sym__alignof] = ACTIONS(2532), + [anon_sym_alignof] = ACTIONS(2532), + [anon_sym__Alignof] = ACTIONS(2532), + [anon_sym_offsetof] = ACTIONS(2532), + [anon_sym__Generic] = ACTIONS(2532), + [anon_sym_asm] = ACTIONS(2532), + [anon_sym___asm__] = ACTIONS(2532), + [anon_sym___asm] = ACTIONS(2532), + [sym_number_literal] = ACTIONS(2534), + [anon_sym_L_SQUOTE] = ACTIONS(2534), + [anon_sym_u_SQUOTE] = ACTIONS(2534), + [anon_sym_U_SQUOTE] = ACTIONS(2534), + [anon_sym_u8_SQUOTE] = ACTIONS(2534), + [anon_sym_SQUOTE] = ACTIONS(2534), + [anon_sym_AT] = ACTIONS(2532), + [anon_sym_DQUOTE] = ACTIONS(2534), + [anon_sym_L_DQUOTE] = ACTIONS(2534), + [anon_sym_u_DQUOTE] = ACTIONS(2534), + [anon_sym_U_DQUOTE] = ACTIONS(2534), + [anon_sym_u8_DQUOTE] = ACTIONS(2534), + [sym_true] = ACTIONS(2532), + [sym_false] = ACTIONS(2532), + [anon_sym_NULL] = ACTIONS(2532), + [anon_sym_nullptr] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2532), + [anon_sym___typeof] = ACTIONS(2532), + [anon_sym_typeof] = ACTIONS(2532), + [anon_sym_ATimport] = ACTIONS(2534), + [aux_sym_preproc_undef_token1] = ACTIONS(2532), + [anon_sym_POUND] = ACTIONS(2532), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2532), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2532), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2532), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2532), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2532), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2532), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2532), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2532), + [anon_sym_NS_AVAILABLE] = ACTIONS(2532), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2532), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_API_AVAILABLE] = ACTIONS(2532), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_API_DEPRECATED] = ACTIONS(2532), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2532), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2532), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2532), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2532), + [anon_sym___deprecated_msg] = ACTIONS(2532), + [anon_sym___deprecated_enum_msg] = ACTIONS(2532), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2532), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2532), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2532), + [anon_sym_ATprotocol] = ACTIONS(2534), + [anon_sym_ATinterface] = ACTIONS(2534), + [anon_sym_ATimplementation] = ACTIONS(2534), + [anon_sym_ATcompatibility_alias] = ACTIONS(2534), + [anon_sym_ATsynthesize] = ACTIONS(2534), + [anon_sym_ATdynamic] = ACTIONS(2534), + [anon_sym_ATtry] = ACTIONS(2534), + [anon_sym___try] = ACTIONS(2532), + [anon_sym_ATthrow] = ACTIONS(2534), + [anon_sym_ATselector] = ACTIONS(2534), + [anon_sym_ATavailable] = ACTIONS(2534), + [anon_sym___builtin_available] = ACTIONS(2532), + [anon_sym_va_arg] = ACTIONS(2532), + [anon_sym_ATencode] = ACTIONS(2534), + [anon_sym_ATsynchronized] = ACTIONS(2534), + [anon_sym_BOOL] = ACTIONS(2532), + [anon_sym_IMP] = ACTIONS(2532), + [anon_sym_SEL] = ACTIONS(2532), + [anon_sym_Class] = ACTIONS(2532), + [anon_sym_id] = ACTIONS(2532), + }, + [535] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_include_token1] = ACTIONS(2436), + [aux_sym_preproc_include_token2] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token2] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_ATautoreleasepool] = ACTIONS(2438), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_case] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_goto] = ACTIONS(2436), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_sizeof] = ACTIONS(2436), + [anon_sym___alignof__] = ACTIONS(2436), + [anon_sym___alignof] = ACTIONS(2436), + [anon_sym__alignof] = ACTIONS(2436), + [anon_sym_alignof] = ACTIONS(2436), + [anon_sym__Alignof] = ACTIONS(2436), + [anon_sym_offsetof] = ACTIONS(2436), + [anon_sym__Generic] = ACTIONS(2436), + [anon_sym_asm] = ACTIONS(2436), + [anon_sym___asm__] = ACTIONS(2436), + [anon_sym___asm] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_L_SQUOTE] = ACTIONS(2438), + [anon_sym_u_SQUOTE] = ACTIONS(2438), + [anon_sym_U_SQUOTE] = ACTIONS(2438), + [anon_sym_u8_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_L_DQUOTE] = ACTIONS(2438), + [anon_sym_u_DQUOTE] = ACTIONS(2438), + [anon_sym_U_DQUOTE] = ACTIONS(2438), + [anon_sym_u8_DQUOTE] = ACTIONS(2438), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_nullptr] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [anon_sym_ATimport] = ACTIONS(2438), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_POUND] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATprotocol] = ACTIONS(2438), + [anon_sym_ATinterface] = ACTIONS(2438), + [anon_sym_ATimplementation] = ACTIONS(2438), + [anon_sym_ATcompatibility_alias] = ACTIONS(2438), + [anon_sym_ATsynthesize] = ACTIONS(2438), + [anon_sym_ATdynamic] = ACTIONS(2438), + [anon_sym_ATtry] = ACTIONS(2438), + [anon_sym___try] = ACTIONS(2436), + [anon_sym_ATthrow] = ACTIONS(2438), + [anon_sym_ATselector] = ACTIONS(2438), + [anon_sym_ATavailable] = ACTIONS(2438), + [anon_sym___builtin_available] = ACTIONS(2436), + [anon_sym_va_arg] = ACTIONS(2436), + [anon_sym_ATencode] = ACTIONS(2438), + [anon_sym_ATsynchronized] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [536] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_include_token1] = ACTIONS(2436), + [aux_sym_preproc_include_token2] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token2] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_ATautoreleasepool] = ACTIONS(2438), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_case] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_goto] = ACTIONS(2436), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_sizeof] = ACTIONS(2436), + [anon_sym___alignof__] = ACTIONS(2436), + [anon_sym___alignof] = ACTIONS(2436), + [anon_sym__alignof] = ACTIONS(2436), + [anon_sym_alignof] = ACTIONS(2436), + [anon_sym__Alignof] = ACTIONS(2436), + [anon_sym_offsetof] = ACTIONS(2436), + [anon_sym__Generic] = ACTIONS(2436), + [anon_sym_asm] = ACTIONS(2436), + [anon_sym___asm__] = ACTIONS(2436), + [anon_sym___asm] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_L_SQUOTE] = ACTIONS(2438), + [anon_sym_u_SQUOTE] = ACTIONS(2438), + [anon_sym_U_SQUOTE] = ACTIONS(2438), + [anon_sym_u8_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_L_DQUOTE] = ACTIONS(2438), + [anon_sym_u_DQUOTE] = ACTIONS(2438), + [anon_sym_U_DQUOTE] = ACTIONS(2438), + [anon_sym_u8_DQUOTE] = ACTIONS(2438), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_nullptr] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [anon_sym_ATimport] = ACTIONS(2438), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_POUND] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATprotocol] = ACTIONS(2438), + [anon_sym_ATinterface] = ACTIONS(2438), + [anon_sym_ATimplementation] = ACTIONS(2438), + [anon_sym_ATcompatibility_alias] = ACTIONS(2438), + [anon_sym_ATsynthesize] = ACTIONS(2438), + [anon_sym_ATdynamic] = ACTIONS(2438), + [anon_sym_ATtry] = ACTIONS(2438), + [anon_sym___try] = ACTIONS(2436), + [anon_sym_ATthrow] = ACTIONS(2438), + [anon_sym_ATselector] = ACTIONS(2438), + [anon_sym_ATavailable] = ACTIONS(2438), + [anon_sym___builtin_available] = ACTIONS(2436), + [anon_sym_va_arg] = ACTIONS(2436), + [anon_sym_ATencode] = ACTIONS(2438), + [anon_sym_ATsynchronized] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [537] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_include_token1] = ACTIONS(2436), + [aux_sym_preproc_include_token2] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token2] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_ATautoreleasepool] = ACTIONS(2438), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_case] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_goto] = ACTIONS(2436), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_sizeof] = ACTIONS(2436), + [anon_sym___alignof__] = ACTIONS(2436), + [anon_sym___alignof] = ACTIONS(2436), + [anon_sym__alignof] = ACTIONS(2436), + [anon_sym_alignof] = ACTIONS(2436), + [anon_sym__Alignof] = ACTIONS(2436), + [anon_sym_offsetof] = ACTIONS(2436), + [anon_sym__Generic] = ACTIONS(2436), + [anon_sym_asm] = ACTIONS(2436), + [anon_sym___asm__] = ACTIONS(2436), + [anon_sym___asm] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_L_SQUOTE] = ACTIONS(2438), + [anon_sym_u_SQUOTE] = ACTIONS(2438), + [anon_sym_U_SQUOTE] = ACTIONS(2438), + [anon_sym_u8_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_L_DQUOTE] = ACTIONS(2438), + [anon_sym_u_DQUOTE] = ACTIONS(2438), + [anon_sym_U_DQUOTE] = ACTIONS(2438), + [anon_sym_u8_DQUOTE] = ACTIONS(2438), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_nullptr] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [anon_sym_ATimport] = ACTIONS(2438), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_POUND] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATprotocol] = ACTIONS(2438), + [anon_sym_ATinterface] = ACTIONS(2438), + [anon_sym_ATimplementation] = ACTIONS(2438), + [anon_sym_ATcompatibility_alias] = ACTIONS(2438), + [anon_sym_ATsynthesize] = ACTIONS(2438), + [anon_sym_ATdynamic] = ACTIONS(2438), + [anon_sym_ATtry] = ACTIONS(2438), + [anon_sym___try] = ACTIONS(2436), + [anon_sym_ATthrow] = ACTIONS(2438), + [anon_sym_ATselector] = ACTIONS(2438), + [anon_sym_ATavailable] = ACTIONS(2438), + [anon_sym___builtin_available] = ACTIONS(2436), + [anon_sym_va_arg] = ACTIONS(2436), + [anon_sym_ATencode] = ACTIONS(2438), + [anon_sym_ATsynchronized] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [538] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [539] = { + [sym_identifier] = ACTIONS(2536), + [aux_sym_preproc_include_token1] = ACTIONS(2536), + [aux_sym_preproc_include_token2] = ACTIONS(2536), + [aux_sym_preproc_def_token1] = ACTIONS(2536), + [aux_sym_preproc_if_token1] = ACTIONS(2536), + [aux_sym_preproc_if_token2] = ACTIONS(2536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2536), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2536), + [sym_preproc_directive] = ACTIONS(2536), + [anon_sym_LPAREN2] = ACTIONS(2538), + [anon_sym_BANG] = ACTIONS(2538), + [anon_sym_TILDE] = ACTIONS(2538), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_STAR] = ACTIONS(2538), + [anon_sym_CARET] = ACTIONS(2538), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_SEMI] = ACTIONS(2538), + [anon_sym___extension__] = ACTIONS(2536), + [anon_sym_typedef] = ACTIONS(2536), + [anon_sym_extern] = ACTIONS(2536), + [anon_sym___attribute__] = ACTIONS(2536), + [anon_sym___attribute] = ACTIONS(2536), + [anon_sym_noreturn] = ACTIONS(2536), + [anon_sym_LBRACK] = ACTIONS(2538), + [anon_sym___declspec] = ACTIONS(2536), + [anon_sym___cdecl] = ACTIONS(2536), + [anon_sym___clrcall] = ACTIONS(2536), + [anon_sym___stdcall] = ACTIONS(2536), + [anon_sym___fastcall] = ACTIONS(2536), + [anon_sym___thiscall] = ACTIONS(2536), + [anon_sym___vectorcall] = ACTIONS(2536), + [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_signed] = ACTIONS(2536), + [anon_sym_unsigned] = ACTIONS(2536), + [anon_sym_long] = ACTIONS(2536), + [anon_sym_short] = ACTIONS(2536), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_ATautoreleasepool] = ACTIONS(2538), + [anon_sym_auto] = ACTIONS(2536), + [anon_sym_register] = ACTIONS(2536), + [anon_sym_inline] = ACTIONS(2536), + [anon_sym___inline] = ACTIONS(2536), + [anon_sym___inline__] = ACTIONS(2536), + [anon_sym___forceinline] = ACTIONS(2536), + [anon_sym_thread_local] = ACTIONS(2536), + [anon_sym___thread] = ACTIONS(2536), + [anon_sym_CG_EXTERN] = ACTIONS(2536), + [anon_sym_CG_INLINE] = ACTIONS(2536), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2536), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2536), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2536), + [anon_sym_IBOutlet] = ACTIONS(2536), + [anon_sym_IBInspectable] = ACTIONS(2536), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2536), + [anon_sym_NS_INLINE] = ACTIONS(2536), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2536), + [anon_sym_OBJC_EXPORT] = ACTIONS(2536), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2536), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2536), + [anon_sym_const] = ACTIONS(2536), + [anon_sym_constexpr] = ACTIONS(2536), + [anon_sym_volatile] = ACTIONS(2536), + [anon_sym_restrict] = ACTIONS(2536), + [anon_sym___restrict__] = ACTIONS(2536), + [anon_sym__Atomic] = ACTIONS(2536), + [anon_sym__Noreturn] = ACTIONS(2536), + [anon_sym__Nonnull] = ACTIONS(2536), + [anon_sym_nullable] = ACTIONS(2536), + [anon_sym__Complex] = ACTIONS(2536), + [anon_sym__Nullable] = ACTIONS(2536), + [anon_sym__Nullable_result] = ACTIONS(2536), + [anon_sym__Null_unspecified] = ACTIONS(2536), + [anon_sym___autoreleasing] = ACTIONS(2536), + [anon_sym___block] = ACTIONS(2536), + [anon_sym___bridge] = ACTIONS(2536), + [anon_sym___bridge_retained] = ACTIONS(2536), + [anon_sym___bridge_transfer] = ACTIONS(2536), + [anon_sym___complex] = ACTIONS(2536), + [anon_sym___const] = ACTIONS(2536), + [anon_sym___imag] = ACTIONS(2536), + [anon_sym___kindof] = ACTIONS(2536), + [anon_sym___nonnull] = ACTIONS(2536), + [anon_sym___nullable] = ACTIONS(2536), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2536), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2536), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2536), + [anon_sym___real] = ACTIONS(2536), + [anon_sym___strong] = ACTIONS(2536), + [anon_sym___unsafe_unretained] = ACTIONS(2536), + [anon_sym___unused] = ACTIONS(2536), + [anon_sym___weak] = ACTIONS(2536), + [anon_sym_alignas] = ACTIONS(2536), + [anon_sym__Alignas] = ACTIONS(2536), + [sym_primitive_type] = ACTIONS(2536), + [anon_sym_enum] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2536), + [anon_sym_union] = ACTIONS(2536), + [anon_sym_if] = ACTIONS(2536), + [anon_sym_else] = ACTIONS(2536), + [anon_sym_switch] = ACTIONS(2536), + [anon_sym_case] = ACTIONS(2536), + [anon_sym_default] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2536), + [anon_sym_do] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2536), + [anon_sym_in] = ACTIONS(2536), + [anon_sym_return] = ACTIONS(2536), + [anon_sym_break] = ACTIONS(2536), + [anon_sym_continue] = ACTIONS(2536), + [anon_sym_goto] = ACTIONS(2536), + [anon_sym_DASH_DASH] = ACTIONS(2538), + [anon_sym_PLUS_PLUS] = ACTIONS(2538), + [anon_sym_sizeof] = ACTIONS(2536), + [anon_sym___alignof__] = ACTIONS(2536), + [anon_sym___alignof] = ACTIONS(2536), + [anon_sym__alignof] = ACTIONS(2536), + [anon_sym_alignof] = ACTIONS(2536), + [anon_sym__Alignof] = ACTIONS(2536), + [anon_sym_offsetof] = ACTIONS(2536), + [anon_sym__Generic] = ACTIONS(2536), + [anon_sym_asm] = ACTIONS(2536), + [anon_sym___asm__] = ACTIONS(2536), + [anon_sym___asm] = ACTIONS(2536), + [sym_number_literal] = ACTIONS(2538), + [anon_sym_L_SQUOTE] = ACTIONS(2538), + [anon_sym_u_SQUOTE] = ACTIONS(2538), + [anon_sym_U_SQUOTE] = ACTIONS(2538), + [anon_sym_u8_SQUOTE] = ACTIONS(2538), + [anon_sym_SQUOTE] = ACTIONS(2538), + [anon_sym_AT] = ACTIONS(2536), + [anon_sym_DQUOTE] = ACTIONS(2538), + [anon_sym_L_DQUOTE] = ACTIONS(2538), + [anon_sym_u_DQUOTE] = ACTIONS(2538), + [anon_sym_U_DQUOTE] = ACTIONS(2538), + [anon_sym_u8_DQUOTE] = ACTIONS(2538), + [sym_true] = ACTIONS(2536), + [sym_false] = ACTIONS(2536), + [anon_sym_NULL] = ACTIONS(2536), + [anon_sym_nullptr] = ACTIONS(2536), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2536), + [anon_sym___typeof] = ACTIONS(2536), + [anon_sym_typeof] = ACTIONS(2536), + [anon_sym_ATimport] = ACTIONS(2538), + [aux_sym_preproc_undef_token1] = ACTIONS(2536), + [anon_sym_POUND] = ACTIONS(2536), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2536), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2536), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2536), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2536), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2536), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2536), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2536), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2536), + [anon_sym_NS_AVAILABLE] = ACTIONS(2536), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2536), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_API_AVAILABLE] = ACTIONS(2536), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_API_DEPRECATED] = ACTIONS(2536), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2536), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2536), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2536), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2536), + [anon_sym___deprecated_msg] = ACTIONS(2536), + [anon_sym___deprecated_enum_msg] = ACTIONS(2536), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2536), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2536), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2536), + [anon_sym_ATprotocol] = ACTIONS(2538), + [anon_sym_ATinterface] = ACTIONS(2538), + [anon_sym_ATimplementation] = ACTIONS(2538), + [anon_sym_ATcompatibility_alias] = ACTIONS(2538), + [anon_sym_ATsynthesize] = ACTIONS(2538), + [anon_sym_ATdynamic] = ACTIONS(2538), + [anon_sym_ATtry] = ACTIONS(2538), + [anon_sym___try] = ACTIONS(2536), + [anon_sym_ATthrow] = ACTIONS(2538), + [anon_sym_ATselector] = ACTIONS(2538), + [anon_sym_ATavailable] = ACTIONS(2538), + [anon_sym___builtin_available] = ACTIONS(2536), + [anon_sym_va_arg] = ACTIONS(2536), + [anon_sym_ATencode] = ACTIONS(2538), + [anon_sym_ATsynchronized] = ACTIONS(2538), + [anon_sym_BOOL] = ACTIONS(2536), + [anon_sym_IMP] = ACTIONS(2536), + [anon_sym_SEL] = ACTIONS(2536), + [anon_sym_Class] = ACTIONS(2536), + [anon_sym_id] = ACTIONS(2536), + }, + [540] = { + [sym_identifier] = ACTIONS(2540), + [aux_sym_preproc_include_token1] = ACTIONS(2540), + [aux_sym_preproc_include_token2] = ACTIONS(2540), + [aux_sym_preproc_def_token1] = ACTIONS(2540), + [aux_sym_preproc_if_token1] = ACTIONS(2540), + [aux_sym_preproc_if_token2] = ACTIONS(2540), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2540), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2540), + [sym_preproc_directive] = ACTIONS(2540), + [anon_sym_LPAREN2] = ACTIONS(2542), + [anon_sym_BANG] = ACTIONS(2542), + [anon_sym_TILDE] = ACTIONS(2542), + [anon_sym_DASH] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2540), + [anon_sym_STAR] = ACTIONS(2542), + [anon_sym_CARET] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2542), + [anon_sym___extension__] = ACTIONS(2540), + [anon_sym_typedef] = ACTIONS(2540), + [anon_sym_extern] = ACTIONS(2540), + [anon_sym___attribute__] = ACTIONS(2540), + [anon_sym___attribute] = ACTIONS(2540), + [anon_sym_noreturn] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym___declspec] = ACTIONS(2540), + [anon_sym___cdecl] = ACTIONS(2540), + [anon_sym___clrcall] = ACTIONS(2540), + [anon_sym___stdcall] = ACTIONS(2540), + [anon_sym___fastcall] = ACTIONS(2540), + [anon_sym___thiscall] = ACTIONS(2540), + [anon_sym___vectorcall] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2542), + [anon_sym_signed] = ACTIONS(2540), + [anon_sym_unsigned] = ACTIONS(2540), + [anon_sym_long] = ACTIONS(2540), + [anon_sym_short] = ACTIONS(2540), + [anon_sym_static] = ACTIONS(2540), + [anon_sym_ATautoreleasepool] = ACTIONS(2542), + [anon_sym_auto] = ACTIONS(2540), + [anon_sym_register] = ACTIONS(2540), + [anon_sym_inline] = ACTIONS(2540), + [anon_sym___inline] = ACTIONS(2540), + [anon_sym___inline__] = ACTIONS(2540), + [anon_sym___forceinline] = ACTIONS(2540), + [anon_sym_thread_local] = ACTIONS(2540), + [anon_sym___thread] = ACTIONS(2540), + [anon_sym_CG_EXTERN] = ACTIONS(2540), + [anon_sym_CG_INLINE] = ACTIONS(2540), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2540), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2540), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2540), + [anon_sym_IBOutlet] = ACTIONS(2540), + [anon_sym_IBInspectable] = ACTIONS(2540), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2540), + [anon_sym_NS_INLINE] = ACTIONS(2540), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2540), + [anon_sym_OBJC_EXPORT] = ACTIONS(2540), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2540), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2540), + [anon_sym_const] = ACTIONS(2540), + [anon_sym_constexpr] = ACTIONS(2540), + [anon_sym_volatile] = ACTIONS(2540), + [anon_sym_restrict] = ACTIONS(2540), + [anon_sym___restrict__] = ACTIONS(2540), + [anon_sym__Atomic] = ACTIONS(2540), + [anon_sym__Noreturn] = ACTIONS(2540), + [anon_sym__Nonnull] = ACTIONS(2540), + [anon_sym_nullable] = ACTIONS(2540), + [anon_sym__Complex] = ACTIONS(2540), + [anon_sym__Nullable] = ACTIONS(2540), + [anon_sym__Nullable_result] = ACTIONS(2540), + [anon_sym__Null_unspecified] = ACTIONS(2540), + [anon_sym___autoreleasing] = ACTIONS(2540), + [anon_sym___block] = ACTIONS(2540), + [anon_sym___bridge] = ACTIONS(2540), + [anon_sym___bridge_retained] = ACTIONS(2540), + [anon_sym___bridge_transfer] = ACTIONS(2540), + [anon_sym___complex] = ACTIONS(2540), + [anon_sym___const] = ACTIONS(2540), + [anon_sym___imag] = ACTIONS(2540), + [anon_sym___kindof] = ACTIONS(2540), + [anon_sym___nonnull] = ACTIONS(2540), + [anon_sym___nullable] = ACTIONS(2540), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2540), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2540), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2540), + [anon_sym___real] = ACTIONS(2540), + [anon_sym___strong] = ACTIONS(2540), + [anon_sym___unsafe_unretained] = ACTIONS(2540), + [anon_sym___unused] = ACTIONS(2540), + [anon_sym___weak] = ACTIONS(2540), + [anon_sym_alignas] = ACTIONS(2540), + [anon_sym__Alignas] = ACTIONS(2540), + [sym_primitive_type] = ACTIONS(2540), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_struct] = ACTIONS(2540), + [anon_sym_union] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_else] = ACTIONS(2540), + [anon_sym_switch] = ACTIONS(2540), + [anon_sym_case] = ACTIONS(2540), + [anon_sym_default] = ACTIONS(2540), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_do] = ACTIONS(2540), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_in] = ACTIONS(2540), + [anon_sym_return] = ACTIONS(2540), + [anon_sym_break] = ACTIONS(2540), + [anon_sym_continue] = ACTIONS(2540), + [anon_sym_goto] = ACTIONS(2540), + [anon_sym_DASH_DASH] = ACTIONS(2542), + [anon_sym_PLUS_PLUS] = ACTIONS(2542), + [anon_sym_sizeof] = ACTIONS(2540), + [anon_sym___alignof__] = ACTIONS(2540), + [anon_sym___alignof] = ACTIONS(2540), + [anon_sym__alignof] = ACTIONS(2540), + [anon_sym_alignof] = ACTIONS(2540), + [anon_sym__Alignof] = ACTIONS(2540), + [anon_sym_offsetof] = ACTIONS(2540), + [anon_sym__Generic] = ACTIONS(2540), + [anon_sym_asm] = ACTIONS(2540), + [anon_sym___asm__] = ACTIONS(2540), + [anon_sym___asm] = ACTIONS(2540), + [sym_number_literal] = ACTIONS(2542), + [anon_sym_L_SQUOTE] = ACTIONS(2542), + [anon_sym_u_SQUOTE] = ACTIONS(2542), + [anon_sym_U_SQUOTE] = ACTIONS(2542), + [anon_sym_u8_SQUOTE] = ACTIONS(2542), + [anon_sym_SQUOTE] = ACTIONS(2542), + [anon_sym_AT] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2542), + [anon_sym_L_DQUOTE] = ACTIONS(2542), + [anon_sym_u_DQUOTE] = ACTIONS(2542), + [anon_sym_U_DQUOTE] = ACTIONS(2542), + [anon_sym_u8_DQUOTE] = ACTIONS(2542), + [sym_true] = ACTIONS(2540), + [sym_false] = ACTIONS(2540), + [anon_sym_NULL] = ACTIONS(2540), + [anon_sym_nullptr] = ACTIONS(2540), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2540), + [anon_sym___typeof] = ACTIONS(2540), + [anon_sym_typeof] = ACTIONS(2540), + [anon_sym_ATimport] = ACTIONS(2542), + [aux_sym_preproc_undef_token1] = ACTIONS(2540), + [anon_sym_POUND] = ACTIONS(2540), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2540), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2540), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2540), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2540), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2540), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2540), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2540), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2540), + [anon_sym_NS_AVAILABLE] = ACTIONS(2540), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2540), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_API_AVAILABLE] = ACTIONS(2540), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_API_DEPRECATED] = ACTIONS(2540), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2540), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2540), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2540), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2540), + [anon_sym___deprecated_msg] = ACTIONS(2540), + [anon_sym___deprecated_enum_msg] = ACTIONS(2540), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2540), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2540), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2540), + [anon_sym_ATprotocol] = ACTIONS(2542), + [anon_sym_ATinterface] = ACTIONS(2542), + [anon_sym_ATimplementation] = ACTIONS(2542), + [anon_sym_ATcompatibility_alias] = ACTIONS(2542), + [anon_sym_ATsynthesize] = ACTIONS(2542), + [anon_sym_ATdynamic] = ACTIONS(2542), + [anon_sym_ATtry] = ACTIONS(2542), + [anon_sym___try] = ACTIONS(2540), + [anon_sym_ATthrow] = ACTIONS(2542), + [anon_sym_ATselector] = ACTIONS(2542), + [anon_sym_ATavailable] = ACTIONS(2542), + [anon_sym___builtin_available] = ACTIONS(2540), + [anon_sym_va_arg] = ACTIONS(2540), + [anon_sym_ATencode] = ACTIONS(2542), + [anon_sym_ATsynchronized] = ACTIONS(2542), + [anon_sym_BOOL] = ACTIONS(2540), + [anon_sym_IMP] = ACTIONS(2540), + [anon_sym_SEL] = ACTIONS(2540), + [anon_sym_Class] = ACTIONS(2540), + [anon_sym_id] = ACTIONS(2540), + }, + [541] = { + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_include_token1] = ACTIONS(2424), + [aux_sym_preproc_include_token2] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token2] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_CARET] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_ATautoreleasepool] = ACTIONS(2426), + [anon_sym_auto] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_CG_EXTERN] = ACTIONS(2424), + [anon_sym_CG_INLINE] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2424), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2424), + [anon_sym_IBOutlet] = ACTIONS(2424), + [anon_sym_IBInspectable] = ACTIONS(2424), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2424), + [anon_sym_NS_INLINE] = ACTIONS(2424), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2424), + [anon_sym_OBJC_EXPORT] = ACTIONS(2424), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_nullable] = ACTIONS(2424), + [anon_sym__Complex] = ACTIONS(2424), + [anon_sym__Nullable] = ACTIONS(2424), + [anon_sym__Nullable_result] = ACTIONS(2424), + [anon_sym__Null_unspecified] = ACTIONS(2424), + [anon_sym___autoreleasing] = ACTIONS(2424), + [anon_sym___block] = ACTIONS(2424), + [anon_sym___bridge] = ACTIONS(2424), + [anon_sym___bridge_retained] = ACTIONS(2424), + [anon_sym___bridge_transfer] = ACTIONS(2424), + [anon_sym___complex] = ACTIONS(2424), + [anon_sym___const] = ACTIONS(2424), + [anon_sym___imag] = ACTIONS(2424), + [anon_sym___kindof] = ACTIONS(2424), + [anon_sym___nonnull] = ACTIONS(2424), + [anon_sym___nullable] = ACTIONS(2424), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2424), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2424), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2424), + [anon_sym___real] = ACTIONS(2424), + [anon_sym___strong] = ACTIONS(2424), + [anon_sym___unsafe_unretained] = ACTIONS(2424), + [anon_sym___unused] = ACTIONS(2424), + [anon_sym___weak] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_else] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_in] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_goto] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_sizeof] = ACTIONS(2424), + [anon_sym___alignof__] = ACTIONS(2424), + [anon_sym___alignof] = ACTIONS(2424), + [anon_sym__alignof] = ACTIONS(2424), + [anon_sym_alignof] = ACTIONS(2424), + [anon_sym__Alignof] = ACTIONS(2424), + [anon_sym_offsetof] = ACTIONS(2424), + [anon_sym__Generic] = ACTIONS(2424), + [anon_sym_asm] = ACTIONS(2424), + [anon_sym___asm__] = ACTIONS(2424), + [anon_sym___asm] = ACTIONS(2424), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_L_SQUOTE] = ACTIONS(2426), + [anon_sym_u_SQUOTE] = ACTIONS(2426), + [anon_sym_U_SQUOTE] = ACTIONS(2426), + [anon_sym_u8_SQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_AT] = ACTIONS(2424), + [anon_sym_DQUOTE] = ACTIONS(2426), + [anon_sym_L_DQUOTE] = ACTIONS(2426), + [anon_sym_u_DQUOTE] = ACTIONS(2426), + [anon_sym_U_DQUOTE] = ACTIONS(2426), + [anon_sym_u8_DQUOTE] = ACTIONS(2426), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [anon_sym_NULL] = ACTIONS(2424), + [anon_sym_nullptr] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2424), + [anon_sym___typeof] = ACTIONS(2424), + [anon_sym_typeof] = ACTIONS(2424), + [anon_sym_ATimport] = ACTIONS(2426), + [aux_sym_preproc_undef_token1] = ACTIONS(2424), + [anon_sym_POUND] = ACTIONS(2424), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2424), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2424), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2424), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2424), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE] = ACTIONS(2424), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_API_AVAILABLE] = ACTIONS(2424), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_API_DEPRECATED] = ACTIONS(2424), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2424), + [anon_sym___deprecated_msg] = ACTIONS(2424), + [anon_sym___deprecated_enum_msg] = ACTIONS(2424), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2424), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2424), + [anon_sym_ATprotocol] = ACTIONS(2426), + [anon_sym_ATinterface] = ACTIONS(2426), + [anon_sym_ATimplementation] = ACTIONS(2426), + [anon_sym_ATcompatibility_alias] = ACTIONS(2426), + [anon_sym_ATsynthesize] = ACTIONS(2426), + [anon_sym_ATdynamic] = ACTIONS(2426), + [anon_sym_ATtry] = ACTIONS(2426), + [anon_sym___try] = ACTIONS(2424), + [anon_sym_ATthrow] = ACTIONS(2426), + [anon_sym_ATselector] = ACTIONS(2426), + [anon_sym_ATavailable] = ACTIONS(2426), + [anon_sym___builtin_available] = ACTIONS(2424), + [anon_sym_va_arg] = ACTIONS(2424), + [anon_sym_ATencode] = ACTIONS(2426), + [anon_sym_ATsynchronized] = ACTIONS(2426), + [anon_sym_BOOL] = ACTIONS(2424), + [anon_sym_IMP] = ACTIONS(2424), + [anon_sym_SEL] = ACTIONS(2424), + [anon_sym_Class] = ACTIONS(2424), + [anon_sym_id] = ACTIONS(2424), + }, + [542] = { + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_include_token1] = ACTIONS(2544), + [aux_sym_preproc_include_token2] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(2544), + [aux_sym_preproc_if_token1] = ACTIONS(2544), + [aux_sym_preproc_if_token2] = ACTIONS(2544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2544), + [sym_preproc_directive] = ACTIONS(2544), + [anon_sym_LPAREN2] = ACTIONS(2546), + [anon_sym_BANG] = ACTIONS(2546), + [anon_sym_TILDE] = ACTIONS(2546), + [anon_sym_DASH] = ACTIONS(2544), + [anon_sym_PLUS] = ACTIONS(2544), + [anon_sym_STAR] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2546), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym___extension__] = ACTIONS(2544), + [anon_sym_typedef] = ACTIONS(2544), + [anon_sym_extern] = ACTIONS(2544), + [anon_sym___attribute__] = ACTIONS(2544), + [anon_sym___attribute] = ACTIONS(2544), + [anon_sym_noreturn] = ACTIONS(2544), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym___declspec] = ACTIONS(2544), + [anon_sym___cdecl] = ACTIONS(2544), + [anon_sym___clrcall] = ACTIONS(2544), + [anon_sym___stdcall] = ACTIONS(2544), + [anon_sym___fastcall] = ACTIONS(2544), + [anon_sym___thiscall] = ACTIONS(2544), + [anon_sym___vectorcall] = ACTIONS(2544), + [anon_sym_LBRACE] = ACTIONS(2546), + [anon_sym_signed] = ACTIONS(2544), + [anon_sym_unsigned] = ACTIONS(2544), + [anon_sym_long] = ACTIONS(2544), + [anon_sym_short] = ACTIONS(2544), + [anon_sym_static] = ACTIONS(2544), + [anon_sym_ATautoreleasepool] = ACTIONS(2546), + [anon_sym_auto] = ACTIONS(2544), + [anon_sym_register] = ACTIONS(2544), + [anon_sym_inline] = ACTIONS(2544), + [anon_sym___inline] = ACTIONS(2544), + [anon_sym___inline__] = ACTIONS(2544), + [anon_sym___forceinline] = ACTIONS(2544), + [anon_sym_thread_local] = ACTIONS(2544), + [anon_sym___thread] = ACTIONS(2544), + [anon_sym_CG_EXTERN] = ACTIONS(2544), + [anon_sym_CG_INLINE] = ACTIONS(2544), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2544), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2544), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2544), + [anon_sym_IBOutlet] = ACTIONS(2544), + [anon_sym_IBInspectable] = ACTIONS(2544), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2544), + [anon_sym_NS_INLINE] = ACTIONS(2544), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2544), + [anon_sym_OBJC_EXPORT] = ACTIONS(2544), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2544), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2544), + [anon_sym_const] = ACTIONS(2544), + [anon_sym_constexpr] = ACTIONS(2544), + [anon_sym_volatile] = ACTIONS(2544), + [anon_sym_restrict] = ACTIONS(2544), + [anon_sym___restrict__] = ACTIONS(2544), + [anon_sym__Atomic] = ACTIONS(2544), + [anon_sym__Noreturn] = ACTIONS(2544), + [anon_sym__Nonnull] = ACTIONS(2544), + [anon_sym_nullable] = ACTIONS(2544), + [anon_sym__Complex] = ACTIONS(2544), + [anon_sym__Nullable] = ACTIONS(2544), + [anon_sym__Nullable_result] = ACTIONS(2544), + [anon_sym__Null_unspecified] = ACTIONS(2544), + [anon_sym___autoreleasing] = ACTIONS(2544), + [anon_sym___block] = ACTIONS(2544), + [anon_sym___bridge] = ACTIONS(2544), + [anon_sym___bridge_retained] = ACTIONS(2544), + [anon_sym___bridge_transfer] = ACTIONS(2544), + [anon_sym___complex] = ACTIONS(2544), + [anon_sym___const] = ACTIONS(2544), + [anon_sym___imag] = ACTIONS(2544), + [anon_sym___kindof] = ACTIONS(2544), + [anon_sym___nonnull] = ACTIONS(2544), + [anon_sym___nullable] = ACTIONS(2544), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2544), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2544), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2544), + [anon_sym___real] = ACTIONS(2544), + [anon_sym___strong] = ACTIONS(2544), + [anon_sym___unsafe_unretained] = ACTIONS(2544), + [anon_sym___unused] = ACTIONS(2544), + [anon_sym___weak] = ACTIONS(2544), + [anon_sym_alignas] = ACTIONS(2544), + [anon_sym__Alignas] = ACTIONS(2544), + [sym_primitive_type] = ACTIONS(2544), + [anon_sym_enum] = ACTIONS(2544), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2544), + [anon_sym_if] = ACTIONS(2544), + [anon_sym_else] = ACTIONS(2544), + [anon_sym_switch] = ACTIONS(2544), + [anon_sym_case] = ACTIONS(2544), + [anon_sym_default] = ACTIONS(2544), + [anon_sym_while] = ACTIONS(2544), + [anon_sym_do] = ACTIONS(2544), + [anon_sym_for] = ACTIONS(2544), + [anon_sym_in] = ACTIONS(2544), + [anon_sym_return] = ACTIONS(2544), + [anon_sym_break] = ACTIONS(2544), + [anon_sym_continue] = ACTIONS(2544), + [anon_sym_goto] = ACTIONS(2544), + [anon_sym_DASH_DASH] = ACTIONS(2546), + [anon_sym_PLUS_PLUS] = ACTIONS(2546), + [anon_sym_sizeof] = ACTIONS(2544), + [anon_sym___alignof__] = ACTIONS(2544), + [anon_sym___alignof] = ACTIONS(2544), + [anon_sym__alignof] = ACTIONS(2544), + [anon_sym_alignof] = ACTIONS(2544), + [anon_sym__Alignof] = ACTIONS(2544), + [anon_sym_offsetof] = ACTIONS(2544), + [anon_sym__Generic] = ACTIONS(2544), + [anon_sym_asm] = ACTIONS(2544), + [anon_sym___asm__] = ACTIONS(2544), + [anon_sym___asm] = ACTIONS(2544), + [sym_number_literal] = ACTIONS(2546), + [anon_sym_L_SQUOTE] = ACTIONS(2546), + [anon_sym_u_SQUOTE] = ACTIONS(2546), + [anon_sym_U_SQUOTE] = ACTIONS(2546), + [anon_sym_u8_SQUOTE] = ACTIONS(2546), + [anon_sym_SQUOTE] = ACTIONS(2546), + [anon_sym_AT] = ACTIONS(2544), + [anon_sym_DQUOTE] = ACTIONS(2546), + [anon_sym_L_DQUOTE] = ACTIONS(2546), + [anon_sym_u_DQUOTE] = ACTIONS(2546), + [anon_sym_U_DQUOTE] = ACTIONS(2546), + [anon_sym_u8_DQUOTE] = ACTIONS(2546), + [sym_true] = ACTIONS(2544), + [sym_false] = ACTIONS(2544), + [anon_sym_NULL] = ACTIONS(2544), + [anon_sym_nullptr] = ACTIONS(2544), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2544), + [anon_sym___typeof] = ACTIONS(2544), + [anon_sym_typeof] = ACTIONS(2544), + [anon_sym_ATimport] = ACTIONS(2546), + [aux_sym_preproc_undef_token1] = ACTIONS(2544), + [anon_sym_POUND] = ACTIONS(2544), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2544), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2544), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2544), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2544), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2544), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2544), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2544), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2544), + [anon_sym_NS_AVAILABLE] = ACTIONS(2544), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2544), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_API_AVAILABLE] = ACTIONS(2544), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_API_DEPRECATED] = ACTIONS(2544), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2544), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2544), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2544), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2544), + [anon_sym___deprecated_msg] = ACTIONS(2544), + [anon_sym___deprecated_enum_msg] = ACTIONS(2544), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2544), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2544), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2544), + [anon_sym_ATprotocol] = ACTIONS(2546), + [anon_sym_ATinterface] = ACTIONS(2546), + [anon_sym_ATimplementation] = ACTIONS(2546), + [anon_sym_ATcompatibility_alias] = ACTIONS(2546), + [anon_sym_ATsynthesize] = ACTIONS(2546), + [anon_sym_ATdynamic] = ACTIONS(2546), + [anon_sym_ATtry] = ACTIONS(2546), + [anon_sym___try] = ACTIONS(2544), + [anon_sym_ATthrow] = ACTIONS(2546), + [anon_sym_ATselector] = ACTIONS(2546), + [anon_sym_ATavailable] = ACTIONS(2546), + [anon_sym___builtin_available] = ACTIONS(2544), + [anon_sym_va_arg] = ACTIONS(2544), + [anon_sym_ATencode] = ACTIONS(2546), + [anon_sym_ATsynchronized] = ACTIONS(2546), + [anon_sym_BOOL] = ACTIONS(2544), + [anon_sym_IMP] = ACTIONS(2544), + [anon_sym_SEL] = ACTIONS(2544), + [anon_sym_Class] = ACTIONS(2544), + [anon_sym_id] = ACTIONS(2544), + }, + [543] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [544] = { + [sym_identifier] = ACTIONS(2494), + [aux_sym_preproc_include_token1] = ACTIONS(2494), + [aux_sym_preproc_include_token2] = ACTIONS(2494), + [aux_sym_preproc_def_token1] = ACTIONS(2494), + [aux_sym_preproc_if_token1] = ACTIONS(2494), + [aux_sym_preproc_if_token2] = ACTIONS(2494), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2494), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2494), + [sym_preproc_directive] = ACTIONS(2494), + [anon_sym_LPAREN2] = ACTIONS(2496), + [anon_sym_BANG] = ACTIONS(2496), + [anon_sym_TILDE] = ACTIONS(2496), + [anon_sym_DASH] = ACTIONS(2494), + [anon_sym_PLUS] = ACTIONS(2494), + [anon_sym_STAR] = ACTIONS(2496), + [anon_sym_CARET] = ACTIONS(2496), + [anon_sym_AMP] = ACTIONS(2496), + [anon_sym_SEMI] = ACTIONS(2496), + [anon_sym___extension__] = ACTIONS(2494), + [anon_sym_typedef] = ACTIONS(2494), + [anon_sym_extern] = ACTIONS(2494), + [anon_sym___attribute__] = ACTIONS(2494), + [anon_sym___attribute] = ACTIONS(2494), + [anon_sym_noreturn] = ACTIONS(2494), + [anon_sym_LBRACK] = ACTIONS(2496), + [anon_sym___declspec] = ACTIONS(2494), + [anon_sym___cdecl] = ACTIONS(2494), + [anon_sym___clrcall] = ACTIONS(2494), + [anon_sym___stdcall] = ACTIONS(2494), + [anon_sym___fastcall] = ACTIONS(2494), + [anon_sym___thiscall] = ACTIONS(2494), + [anon_sym___vectorcall] = ACTIONS(2494), + [anon_sym_LBRACE] = ACTIONS(2496), + [anon_sym_signed] = ACTIONS(2494), + [anon_sym_unsigned] = ACTIONS(2494), + [anon_sym_long] = ACTIONS(2494), + [anon_sym_short] = ACTIONS(2494), + [anon_sym_static] = ACTIONS(2494), + [anon_sym_ATautoreleasepool] = ACTIONS(2496), + [anon_sym_auto] = ACTIONS(2494), + [anon_sym_register] = ACTIONS(2494), + [anon_sym_inline] = ACTIONS(2494), + [anon_sym___inline] = ACTIONS(2494), + [anon_sym___inline__] = ACTIONS(2494), + [anon_sym___forceinline] = ACTIONS(2494), + [anon_sym_thread_local] = ACTIONS(2494), + [anon_sym___thread] = ACTIONS(2494), + [anon_sym_CG_EXTERN] = ACTIONS(2494), + [anon_sym_CG_INLINE] = ACTIONS(2494), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2494), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2494), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2494), + [anon_sym_IBOutlet] = ACTIONS(2494), + [anon_sym_IBInspectable] = ACTIONS(2494), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2494), + [anon_sym_NS_INLINE] = ACTIONS(2494), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2494), + [anon_sym_OBJC_EXPORT] = ACTIONS(2494), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2494), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2494), + [anon_sym_const] = ACTIONS(2494), + [anon_sym_constexpr] = ACTIONS(2494), + [anon_sym_volatile] = ACTIONS(2494), + [anon_sym_restrict] = ACTIONS(2494), + [anon_sym___restrict__] = ACTIONS(2494), + [anon_sym__Atomic] = ACTIONS(2494), + [anon_sym__Noreturn] = ACTIONS(2494), + [anon_sym__Nonnull] = ACTIONS(2494), + [anon_sym_nullable] = ACTIONS(2494), + [anon_sym__Complex] = ACTIONS(2494), + [anon_sym__Nullable] = ACTIONS(2494), + [anon_sym__Nullable_result] = ACTIONS(2494), + [anon_sym__Null_unspecified] = ACTIONS(2494), + [anon_sym___autoreleasing] = ACTIONS(2494), + [anon_sym___block] = ACTIONS(2494), + [anon_sym___bridge] = ACTIONS(2494), + [anon_sym___bridge_retained] = ACTIONS(2494), + [anon_sym___bridge_transfer] = ACTIONS(2494), + [anon_sym___complex] = ACTIONS(2494), + [anon_sym___const] = ACTIONS(2494), + [anon_sym___imag] = ACTIONS(2494), + [anon_sym___kindof] = ACTIONS(2494), + [anon_sym___nonnull] = ACTIONS(2494), + [anon_sym___nullable] = ACTIONS(2494), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2494), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2494), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2494), + [anon_sym___real] = ACTIONS(2494), + [anon_sym___strong] = ACTIONS(2494), + [anon_sym___unsafe_unretained] = ACTIONS(2494), + [anon_sym___unused] = ACTIONS(2494), + [anon_sym___weak] = ACTIONS(2494), + [anon_sym_alignas] = ACTIONS(2494), + [anon_sym__Alignas] = ACTIONS(2494), + [sym_primitive_type] = ACTIONS(2494), + [anon_sym_enum] = ACTIONS(2494), + [anon_sym_struct] = ACTIONS(2494), + [anon_sym_union] = ACTIONS(2494), + [anon_sym_if] = ACTIONS(2494), + [anon_sym_else] = ACTIONS(2494), + [anon_sym_switch] = ACTIONS(2494), + [anon_sym_case] = ACTIONS(2494), + [anon_sym_default] = ACTIONS(2494), + [anon_sym_while] = ACTIONS(2494), + [anon_sym_do] = ACTIONS(2494), + [anon_sym_for] = ACTIONS(2494), + [anon_sym_in] = ACTIONS(2494), + [anon_sym_return] = ACTIONS(2494), + [anon_sym_break] = ACTIONS(2494), + [anon_sym_continue] = ACTIONS(2494), + [anon_sym_goto] = ACTIONS(2494), + [anon_sym_DASH_DASH] = ACTIONS(2496), + [anon_sym_PLUS_PLUS] = ACTIONS(2496), + [anon_sym_sizeof] = ACTIONS(2494), + [anon_sym___alignof__] = ACTIONS(2494), + [anon_sym___alignof] = ACTIONS(2494), + [anon_sym__alignof] = ACTIONS(2494), + [anon_sym_alignof] = ACTIONS(2494), + [anon_sym__Alignof] = ACTIONS(2494), + [anon_sym_offsetof] = ACTIONS(2494), + [anon_sym__Generic] = ACTIONS(2494), + [anon_sym_asm] = ACTIONS(2494), + [anon_sym___asm__] = ACTIONS(2494), + [anon_sym___asm] = ACTIONS(2494), + [sym_number_literal] = ACTIONS(2496), + [anon_sym_L_SQUOTE] = ACTIONS(2496), + [anon_sym_u_SQUOTE] = ACTIONS(2496), + [anon_sym_U_SQUOTE] = ACTIONS(2496), + [anon_sym_u8_SQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2496), + [anon_sym_AT] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_L_DQUOTE] = ACTIONS(2496), + [anon_sym_u_DQUOTE] = ACTIONS(2496), + [anon_sym_U_DQUOTE] = ACTIONS(2496), + [anon_sym_u8_DQUOTE] = ACTIONS(2496), + [sym_true] = ACTIONS(2494), + [sym_false] = ACTIONS(2494), + [anon_sym_NULL] = ACTIONS(2494), + [anon_sym_nullptr] = ACTIONS(2494), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2494), + [anon_sym___typeof] = ACTIONS(2494), + [anon_sym_typeof] = ACTIONS(2494), + [anon_sym_ATimport] = ACTIONS(2496), + [aux_sym_preproc_undef_token1] = ACTIONS(2494), + [anon_sym_POUND] = ACTIONS(2494), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2494), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2494), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2494), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2494), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2494), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2494), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2494), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2494), + [anon_sym_NS_AVAILABLE] = ACTIONS(2494), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2494), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_API_AVAILABLE] = ACTIONS(2494), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_API_DEPRECATED] = ACTIONS(2494), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2494), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2494), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2494), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2494), + [anon_sym___deprecated_msg] = ACTIONS(2494), + [anon_sym___deprecated_enum_msg] = ACTIONS(2494), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2494), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2494), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2494), + [anon_sym_ATprotocol] = ACTIONS(2496), + [anon_sym_ATinterface] = ACTIONS(2496), + [anon_sym_ATimplementation] = ACTIONS(2496), + [anon_sym_ATcompatibility_alias] = ACTIONS(2496), + [anon_sym_ATsynthesize] = ACTIONS(2496), + [anon_sym_ATdynamic] = ACTIONS(2496), + [anon_sym_ATtry] = ACTIONS(2496), + [anon_sym___try] = ACTIONS(2494), + [anon_sym_ATthrow] = ACTIONS(2496), + [anon_sym_ATselector] = ACTIONS(2496), + [anon_sym_ATavailable] = ACTIONS(2496), + [anon_sym___builtin_available] = ACTIONS(2494), + [anon_sym_va_arg] = ACTIONS(2494), + [anon_sym_ATencode] = ACTIONS(2496), + [anon_sym_ATsynchronized] = ACTIONS(2496), + [anon_sym_BOOL] = ACTIONS(2494), + [anon_sym_IMP] = ACTIONS(2494), + [anon_sym_SEL] = ACTIONS(2494), + [anon_sym_Class] = ACTIONS(2494), + [anon_sym_id] = ACTIONS(2494), + }, + [545] = { + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_include_token1] = ACTIONS(2458), + [aux_sym_preproc_include_token2] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token2] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2460), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2460), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_ATautoreleasepool] = ACTIONS(2460), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_goto] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2460), + [anon_sym_sizeof] = ACTIONS(2458), + [anon_sym___alignof__] = ACTIONS(2458), + [anon_sym___alignof] = ACTIONS(2458), + [anon_sym__alignof] = ACTIONS(2458), + [anon_sym_alignof] = ACTIONS(2458), + [anon_sym__Alignof] = ACTIONS(2458), + [anon_sym_offsetof] = ACTIONS(2458), + [anon_sym__Generic] = ACTIONS(2458), + [anon_sym_asm] = ACTIONS(2458), + [anon_sym___asm__] = ACTIONS(2458), + [anon_sym___asm] = ACTIONS(2458), + [sym_number_literal] = ACTIONS(2460), + [anon_sym_L_SQUOTE] = ACTIONS(2460), + [anon_sym_u_SQUOTE] = ACTIONS(2460), + [anon_sym_U_SQUOTE] = ACTIONS(2460), + [anon_sym_u8_SQUOTE] = ACTIONS(2460), + [anon_sym_SQUOTE] = ACTIONS(2460), + [anon_sym_AT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_L_DQUOTE] = ACTIONS(2460), + [anon_sym_u_DQUOTE] = ACTIONS(2460), + [anon_sym_U_DQUOTE] = ACTIONS(2460), + [anon_sym_u8_DQUOTE] = ACTIONS(2460), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [anon_sym_NULL] = ACTIONS(2458), + [anon_sym_nullptr] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_ATimport] = ACTIONS(2460), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_POUND] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATprotocol] = ACTIONS(2460), + [anon_sym_ATinterface] = ACTIONS(2460), + [anon_sym_ATimplementation] = ACTIONS(2460), + [anon_sym_ATcompatibility_alias] = ACTIONS(2460), + [anon_sym_ATsynthesize] = ACTIONS(2460), + [anon_sym_ATdynamic] = ACTIONS(2460), + [anon_sym_ATtry] = ACTIONS(2460), + [anon_sym___try] = ACTIONS(2458), + [anon_sym_ATthrow] = ACTIONS(2460), + [anon_sym_ATselector] = ACTIONS(2460), + [anon_sym_ATavailable] = ACTIONS(2460), + [anon_sym___builtin_available] = ACTIONS(2458), + [anon_sym_va_arg] = ACTIONS(2458), + [anon_sym_ATencode] = ACTIONS(2460), + [anon_sym_ATsynchronized] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [546] = { + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_include_token1] = ACTIONS(2458), + [aux_sym_preproc_include_token2] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token2] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2460), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2460), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_ATautoreleasepool] = ACTIONS(2460), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_goto] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2460), + [anon_sym_sizeof] = ACTIONS(2458), + [anon_sym___alignof__] = ACTIONS(2458), + [anon_sym___alignof] = ACTIONS(2458), + [anon_sym__alignof] = ACTIONS(2458), + [anon_sym_alignof] = ACTIONS(2458), + [anon_sym__Alignof] = ACTIONS(2458), + [anon_sym_offsetof] = ACTIONS(2458), + [anon_sym__Generic] = ACTIONS(2458), + [anon_sym_asm] = ACTIONS(2458), + [anon_sym___asm__] = ACTIONS(2458), + [anon_sym___asm] = ACTIONS(2458), + [sym_number_literal] = ACTIONS(2460), + [anon_sym_L_SQUOTE] = ACTIONS(2460), + [anon_sym_u_SQUOTE] = ACTIONS(2460), + [anon_sym_U_SQUOTE] = ACTIONS(2460), + [anon_sym_u8_SQUOTE] = ACTIONS(2460), + [anon_sym_SQUOTE] = ACTIONS(2460), + [anon_sym_AT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_L_DQUOTE] = ACTIONS(2460), + [anon_sym_u_DQUOTE] = ACTIONS(2460), + [anon_sym_U_DQUOTE] = ACTIONS(2460), + [anon_sym_u8_DQUOTE] = ACTIONS(2460), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [anon_sym_NULL] = ACTIONS(2458), + [anon_sym_nullptr] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_ATimport] = ACTIONS(2460), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_POUND] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATprotocol] = ACTIONS(2460), + [anon_sym_ATinterface] = ACTIONS(2460), + [anon_sym_ATimplementation] = ACTIONS(2460), + [anon_sym_ATcompatibility_alias] = ACTIONS(2460), + [anon_sym_ATsynthesize] = ACTIONS(2460), + [anon_sym_ATdynamic] = ACTIONS(2460), + [anon_sym_ATtry] = ACTIONS(2460), + [anon_sym___try] = ACTIONS(2458), + [anon_sym_ATthrow] = ACTIONS(2460), + [anon_sym_ATselector] = ACTIONS(2460), + [anon_sym_ATavailable] = ACTIONS(2460), + [anon_sym___builtin_available] = ACTIONS(2458), + [anon_sym_va_arg] = ACTIONS(2458), + [anon_sym_ATencode] = ACTIONS(2460), + [anon_sym_ATsynchronized] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [547] = { + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_include_token1] = ACTIONS(2458), + [aux_sym_preproc_include_token2] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token2] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2460), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2460), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_ATautoreleasepool] = ACTIONS(2460), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_goto] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2460), + [anon_sym_sizeof] = ACTIONS(2458), + [anon_sym___alignof__] = ACTIONS(2458), + [anon_sym___alignof] = ACTIONS(2458), + [anon_sym__alignof] = ACTIONS(2458), + [anon_sym_alignof] = ACTIONS(2458), + [anon_sym__Alignof] = ACTIONS(2458), + [anon_sym_offsetof] = ACTIONS(2458), + [anon_sym__Generic] = ACTIONS(2458), + [anon_sym_asm] = ACTIONS(2458), + [anon_sym___asm__] = ACTIONS(2458), + [anon_sym___asm] = ACTIONS(2458), + [sym_number_literal] = ACTIONS(2460), + [anon_sym_L_SQUOTE] = ACTIONS(2460), + [anon_sym_u_SQUOTE] = ACTIONS(2460), + [anon_sym_U_SQUOTE] = ACTIONS(2460), + [anon_sym_u8_SQUOTE] = ACTIONS(2460), + [anon_sym_SQUOTE] = ACTIONS(2460), + [anon_sym_AT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_L_DQUOTE] = ACTIONS(2460), + [anon_sym_u_DQUOTE] = ACTIONS(2460), + [anon_sym_U_DQUOTE] = ACTIONS(2460), + [anon_sym_u8_DQUOTE] = ACTIONS(2460), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [anon_sym_NULL] = ACTIONS(2458), + [anon_sym_nullptr] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_ATimport] = ACTIONS(2460), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_POUND] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATprotocol] = ACTIONS(2460), + [anon_sym_ATinterface] = ACTIONS(2460), + [anon_sym_ATimplementation] = ACTIONS(2460), + [anon_sym_ATcompatibility_alias] = ACTIONS(2460), + [anon_sym_ATsynthesize] = ACTIONS(2460), + [anon_sym_ATdynamic] = ACTIONS(2460), + [anon_sym_ATtry] = ACTIONS(2460), + [anon_sym___try] = ACTIONS(2458), + [anon_sym_ATthrow] = ACTIONS(2460), + [anon_sym_ATselector] = ACTIONS(2460), + [anon_sym_ATavailable] = ACTIONS(2460), + [anon_sym___builtin_available] = ACTIONS(2458), + [anon_sym_va_arg] = ACTIONS(2458), + [anon_sym_ATencode] = ACTIONS(2460), + [anon_sym_ATsynchronized] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [548] = { + [sym_identifier] = ACTIONS(2294), + [aux_sym_preproc_include_token1] = ACTIONS(2294), + [aux_sym_preproc_include_token2] = ACTIONS(2294), + [aux_sym_preproc_def_token1] = ACTIONS(2294), + [aux_sym_preproc_if_token1] = ACTIONS(2294), + [aux_sym_preproc_if_token2] = ACTIONS(2294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2294), + [sym_preproc_directive] = ACTIONS(2294), + [anon_sym_LPAREN2] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_STAR] = ACTIONS(2296), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym___extension__] = ACTIONS(2294), + [anon_sym_typedef] = ACTIONS(2294), + [anon_sym_extern] = ACTIONS(2294), + [anon_sym___attribute__] = ACTIONS(2294), + [anon_sym___attribute] = ACTIONS(2294), + [anon_sym_noreturn] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym___declspec] = ACTIONS(2294), + [anon_sym___cdecl] = ACTIONS(2294), + [anon_sym___clrcall] = ACTIONS(2294), + [anon_sym___stdcall] = ACTIONS(2294), + [anon_sym___fastcall] = ACTIONS(2294), + [anon_sym___thiscall] = ACTIONS(2294), + [anon_sym___vectorcall] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_signed] = ACTIONS(2294), + [anon_sym_unsigned] = ACTIONS(2294), + [anon_sym_long] = ACTIONS(2294), + [anon_sym_short] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_ATautoreleasepool] = ACTIONS(2296), + [anon_sym_auto] = ACTIONS(2294), + [anon_sym_register] = ACTIONS(2294), + [anon_sym_inline] = ACTIONS(2294), + [anon_sym___inline] = ACTIONS(2294), + [anon_sym___inline__] = ACTIONS(2294), + [anon_sym___forceinline] = ACTIONS(2294), + [anon_sym_thread_local] = ACTIONS(2294), + [anon_sym___thread] = ACTIONS(2294), + [anon_sym_CG_EXTERN] = ACTIONS(2294), + [anon_sym_CG_INLINE] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2294), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2294), + [anon_sym_IBOutlet] = ACTIONS(2294), + [anon_sym_IBInspectable] = ACTIONS(2294), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2294), + [anon_sym_NS_INLINE] = ACTIONS(2294), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2294), + [anon_sym_OBJC_EXPORT] = ACTIONS(2294), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [anon_sym_constexpr] = ACTIONS(2294), + [anon_sym_volatile] = ACTIONS(2294), + [anon_sym_restrict] = ACTIONS(2294), + [anon_sym___restrict__] = ACTIONS(2294), + [anon_sym__Atomic] = ACTIONS(2294), + [anon_sym__Noreturn] = ACTIONS(2294), + [anon_sym__Nonnull] = ACTIONS(2294), + [anon_sym_nullable] = ACTIONS(2294), + [anon_sym__Complex] = ACTIONS(2294), + [anon_sym__Nullable] = ACTIONS(2294), + [anon_sym__Nullable_result] = ACTIONS(2294), + [anon_sym__Null_unspecified] = ACTIONS(2294), + [anon_sym___autoreleasing] = ACTIONS(2294), + [anon_sym___block] = ACTIONS(2294), + [anon_sym___bridge] = ACTIONS(2294), + [anon_sym___bridge_retained] = ACTIONS(2294), + [anon_sym___bridge_transfer] = ACTIONS(2294), + [anon_sym___complex] = ACTIONS(2294), + [anon_sym___const] = ACTIONS(2294), + [anon_sym___imag] = ACTIONS(2294), + [anon_sym___kindof] = ACTIONS(2294), + [anon_sym___nonnull] = ACTIONS(2294), + [anon_sym___nullable] = ACTIONS(2294), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2294), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2294), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2294), + [anon_sym___real] = ACTIONS(2294), + [anon_sym___strong] = ACTIONS(2294), + [anon_sym___unsafe_unretained] = ACTIONS(2294), + [anon_sym___unused] = ACTIONS(2294), + [anon_sym___weak] = ACTIONS(2294), + [anon_sym_alignas] = ACTIONS(2294), + [anon_sym__Alignas] = ACTIONS(2294), + [sym_primitive_type] = ACTIONS(2294), + [anon_sym_enum] = ACTIONS(2294), + [anon_sym_struct] = ACTIONS(2294), + [anon_sym_union] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_switch] = ACTIONS(2294), + [anon_sym_case] = ACTIONS(2294), + [anon_sym_default] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_goto] = ACTIONS(2294), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_sizeof] = ACTIONS(2294), + [anon_sym___alignof__] = ACTIONS(2294), + [anon_sym___alignof] = ACTIONS(2294), + [anon_sym__alignof] = ACTIONS(2294), + [anon_sym_alignof] = ACTIONS(2294), + [anon_sym__Alignof] = ACTIONS(2294), + [anon_sym_offsetof] = ACTIONS(2294), + [anon_sym__Generic] = ACTIONS(2294), + [anon_sym_asm] = ACTIONS(2294), + [anon_sym___asm__] = ACTIONS(2294), + [anon_sym___asm] = ACTIONS(2294), + [sym_number_literal] = ACTIONS(2296), + [anon_sym_L_SQUOTE] = ACTIONS(2296), + [anon_sym_u_SQUOTE] = ACTIONS(2296), + [anon_sym_U_SQUOTE] = ACTIONS(2296), + [anon_sym_u8_SQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_L_DQUOTE] = ACTIONS(2296), + [anon_sym_u_DQUOTE] = ACTIONS(2296), + [anon_sym_U_DQUOTE] = ACTIONS(2296), + [anon_sym_u8_DQUOTE] = ACTIONS(2296), + [sym_true] = ACTIONS(2294), + [sym_false] = ACTIONS(2294), + [anon_sym_NULL] = ACTIONS(2294), + [anon_sym_nullptr] = ACTIONS(2294), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2294), + [anon_sym___typeof] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(2294), + [anon_sym_ATimport] = ACTIONS(2296), + [aux_sym_preproc_undef_token1] = ACTIONS(2294), + [anon_sym_POUND] = ACTIONS(2294), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2294), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2294), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2294), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2294), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE] = ACTIONS(2294), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_API_AVAILABLE] = ACTIONS(2294), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_API_DEPRECATED] = ACTIONS(2294), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2294), + [anon_sym___deprecated_msg] = ACTIONS(2294), + [anon_sym___deprecated_enum_msg] = ACTIONS(2294), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2294), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2294), + [anon_sym_ATprotocol] = ACTIONS(2296), + [anon_sym_ATinterface] = ACTIONS(2296), + [anon_sym_ATimplementation] = ACTIONS(2296), + [anon_sym_ATcompatibility_alias] = ACTIONS(2296), + [anon_sym_ATsynthesize] = ACTIONS(2296), + [anon_sym_ATdynamic] = ACTIONS(2296), + [anon_sym_ATtry] = ACTIONS(2296), + [anon_sym___try] = ACTIONS(2294), + [anon_sym_ATthrow] = ACTIONS(2296), + [anon_sym_ATselector] = ACTIONS(2296), + [anon_sym_ATavailable] = ACTIONS(2296), + [anon_sym___builtin_available] = ACTIONS(2294), + [anon_sym_va_arg] = ACTIONS(2294), + [anon_sym_ATencode] = ACTIONS(2296), + [anon_sym_ATsynchronized] = ACTIONS(2296), + [anon_sym_BOOL] = ACTIONS(2294), + [anon_sym_IMP] = ACTIONS(2294), + [anon_sym_SEL] = ACTIONS(2294), + [anon_sym_Class] = ACTIONS(2294), + [anon_sym_id] = ACTIONS(2294), + }, + [549] = { + [sym_identifier] = ACTIONS(2560), + [aux_sym_preproc_include_token1] = ACTIONS(2560), + [aux_sym_preproc_include_token2] = ACTIONS(2560), + [aux_sym_preproc_def_token1] = ACTIONS(2560), + [aux_sym_preproc_if_token1] = ACTIONS(2560), + [aux_sym_preproc_if_token2] = ACTIONS(2560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2560), + [sym_preproc_directive] = ACTIONS(2560), + [anon_sym_LPAREN2] = ACTIONS(2562), + [anon_sym_BANG] = ACTIONS(2562), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_DASH] = ACTIONS(2560), + [anon_sym_PLUS] = ACTIONS(2560), + [anon_sym_STAR] = ACTIONS(2562), + [anon_sym_CARET] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2562), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym___extension__] = ACTIONS(2560), + [anon_sym_typedef] = ACTIONS(2560), + [anon_sym_extern] = ACTIONS(2560), + [anon_sym___attribute__] = ACTIONS(2560), + [anon_sym___attribute] = ACTIONS(2560), + [anon_sym_noreturn] = ACTIONS(2560), + [anon_sym_LBRACK] = ACTIONS(2562), + [anon_sym___declspec] = ACTIONS(2560), + [anon_sym___cdecl] = ACTIONS(2560), + [anon_sym___clrcall] = ACTIONS(2560), + [anon_sym___stdcall] = ACTIONS(2560), + [anon_sym___fastcall] = ACTIONS(2560), + [anon_sym___thiscall] = ACTIONS(2560), + [anon_sym___vectorcall] = ACTIONS(2560), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_signed] = ACTIONS(2560), + [anon_sym_unsigned] = ACTIONS(2560), + [anon_sym_long] = ACTIONS(2560), + [anon_sym_short] = ACTIONS(2560), + [anon_sym_static] = ACTIONS(2560), + [anon_sym_ATautoreleasepool] = ACTIONS(2562), + [anon_sym_auto] = ACTIONS(2560), + [anon_sym_register] = ACTIONS(2560), + [anon_sym_inline] = ACTIONS(2560), + [anon_sym___inline] = ACTIONS(2560), + [anon_sym___inline__] = ACTIONS(2560), + [anon_sym___forceinline] = ACTIONS(2560), + [anon_sym_thread_local] = ACTIONS(2560), + [anon_sym___thread] = ACTIONS(2560), + [anon_sym_CG_EXTERN] = ACTIONS(2560), + [anon_sym_CG_INLINE] = ACTIONS(2560), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2560), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2560), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2560), + [anon_sym_IBOutlet] = ACTIONS(2560), + [anon_sym_IBInspectable] = ACTIONS(2560), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2560), + [anon_sym_NS_INLINE] = ACTIONS(2560), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2560), + [anon_sym_OBJC_EXPORT] = ACTIONS(2560), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2560), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2560), + [anon_sym_const] = ACTIONS(2560), + [anon_sym_constexpr] = ACTIONS(2560), + [anon_sym_volatile] = ACTIONS(2560), + [anon_sym_restrict] = ACTIONS(2560), + [anon_sym___restrict__] = ACTIONS(2560), + [anon_sym__Atomic] = ACTIONS(2560), + [anon_sym__Noreturn] = ACTIONS(2560), + [anon_sym__Nonnull] = ACTIONS(2560), + [anon_sym_nullable] = ACTIONS(2560), + [anon_sym__Complex] = ACTIONS(2560), + [anon_sym__Nullable] = ACTIONS(2560), + [anon_sym__Nullable_result] = ACTIONS(2560), + [anon_sym__Null_unspecified] = ACTIONS(2560), + [anon_sym___autoreleasing] = ACTIONS(2560), + [anon_sym___block] = ACTIONS(2560), + [anon_sym___bridge] = ACTIONS(2560), + [anon_sym___bridge_retained] = ACTIONS(2560), + [anon_sym___bridge_transfer] = ACTIONS(2560), + [anon_sym___complex] = ACTIONS(2560), + [anon_sym___const] = ACTIONS(2560), + [anon_sym___imag] = ACTIONS(2560), + [anon_sym___kindof] = ACTIONS(2560), + [anon_sym___nonnull] = ACTIONS(2560), + [anon_sym___nullable] = ACTIONS(2560), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2560), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2560), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2560), + [anon_sym___real] = ACTIONS(2560), + [anon_sym___strong] = ACTIONS(2560), + [anon_sym___unsafe_unretained] = ACTIONS(2560), + [anon_sym___unused] = ACTIONS(2560), + [anon_sym___weak] = ACTIONS(2560), + [anon_sym_alignas] = ACTIONS(2560), + [anon_sym__Alignas] = ACTIONS(2560), + [sym_primitive_type] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2560), + [anon_sym_struct] = ACTIONS(2560), + [anon_sym_union] = ACTIONS(2560), + [anon_sym_if] = ACTIONS(2560), + [anon_sym_else] = ACTIONS(2560), + [anon_sym_switch] = ACTIONS(2560), + [anon_sym_case] = ACTIONS(2560), + [anon_sym_default] = ACTIONS(2560), + [anon_sym_while] = ACTIONS(2560), + [anon_sym_do] = ACTIONS(2560), + [anon_sym_for] = ACTIONS(2560), + [anon_sym_in] = ACTIONS(2560), + [anon_sym_return] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_goto] = ACTIONS(2560), + [anon_sym_DASH_DASH] = ACTIONS(2562), + [anon_sym_PLUS_PLUS] = ACTIONS(2562), + [anon_sym_sizeof] = ACTIONS(2560), + [anon_sym___alignof__] = ACTIONS(2560), + [anon_sym___alignof] = ACTIONS(2560), + [anon_sym__alignof] = ACTIONS(2560), + [anon_sym_alignof] = ACTIONS(2560), + [anon_sym__Alignof] = ACTIONS(2560), + [anon_sym_offsetof] = ACTIONS(2560), + [anon_sym__Generic] = ACTIONS(2560), + [anon_sym_asm] = ACTIONS(2560), + [anon_sym___asm__] = ACTIONS(2560), + [anon_sym___asm] = ACTIONS(2560), + [sym_number_literal] = ACTIONS(2562), + [anon_sym_L_SQUOTE] = ACTIONS(2562), + [anon_sym_u_SQUOTE] = ACTIONS(2562), + [anon_sym_U_SQUOTE] = ACTIONS(2562), + [anon_sym_u8_SQUOTE] = ACTIONS(2562), + [anon_sym_SQUOTE] = ACTIONS(2562), + [anon_sym_AT] = ACTIONS(2560), + [anon_sym_DQUOTE] = ACTIONS(2562), + [anon_sym_L_DQUOTE] = ACTIONS(2562), + [anon_sym_u_DQUOTE] = ACTIONS(2562), + [anon_sym_U_DQUOTE] = ACTIONS(2562), + [anon_sym_u8_DQUOTE] = ACTIONS(2562), + [sym_true] = ACTIONS(2560), + [sym_false] = ACTIONS(2560), + [anon_sym_NULL] = ACTIONS(2560), + [anon_sym_nullptr] = ACTIONS(2560), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2560), + [anon_sym___typeof] = ACTIONS(2560), + [anon_sym_typeof] = ACTIONS(2560), + [anon_sym_ATimport] = ACTIONS(2562), + [aux_sym_preproc_undef_token1] = ACTIONS(2560), + [anon_sym_POUND] = ACTIONS(2560), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2560), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2560), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2560), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2560), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2560), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2560), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2560), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2560), + [anon_sym_NS_AVAILABLE] = ACTIONS(2560), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2560), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_API_AVAILABLE] = ACTIONS(2560), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_API_DEPRECATED] = ACTIONS(2560), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2560), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2560), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2560), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2560), + [anon_sym___deprecated_msg] = ACTIONS(2560), + [anon_sym___deprecated_enum_msg] = ACTIONS(2560), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2560), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2560), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2560), + [anon_sym_ATprotocol] = ACTIONS(2562), + [anon_sym_ATinterface] = ACTIONS(2562), + [anon_sym_ATimplementation] = ACTIONS(2562), + [anon_sym_ATcompatibility_alias] = ACTIONS(2562), + [anon_sym_ATsynthesize] = ACTIONS(2562), + [anon_sym_ATdynamic] = ACTIONS(2562), + [anon_sym_ATtry] = ACTIONS(2562), + [anon_sym___try] = ACTIONS(2560), + [anon_sym_ATthrow] = ACTIONS(2562), + [anon_sym_ATselector] = ACTIONS(2562), + [anon_sym_ATavailable] = ACTIONS(2562), + [anon_sym___builtin_available] = ACTIONS(2560), + [anon_sym_va_arg] = ACTIONS(2560), + [anon_sym_ATencode] = ACTIONS(2562), + [anon_sym_ATsynchronized] = ACTIONS(2562), + [anon_sym_BOOL] = ACTIONS(2560), + [anon_sym_IMP] = ACTIONS(2560), + [anon_sym_SEL] = ACTIONS(2560), + [anon_sym_Class] = ACTIONS(2560), + [anon_sym_id] = ACTIONS(2560), + }, + [550] = { + [sym_identifier] = ACTIONS(2428), + [aux_sym_preproc_include_token1] = ACTIONS(2428), + [aux_sym_preproc_include_token2] = ACTIONS(2428), + [aux_sym_preproc_def_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token2] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2428), + [sym_preproc_directive] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_STAR] = ACTIONS(2430), + [anon_sym_CARET] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym___cdecl] = ACTIONS(2428), + [anon_sym___clrcall] = ACTIONS(2428), + [anon_sym___stdcall] = ACTIONS(2428), + [anon_sym___fastcall] = ACTIONS(2428), + [anon_sym___thiscall] = ACTIONS(2428), + [anon_sym___vectorcall] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_ATautoreleasepool] = ACTIONS(2430), + [anon_sym_auto] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_CG_EXTERN] = ACTIONS(2428), + [anon_sym_CG_INLINE] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2428), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2428), + [anon_sym_IBOutlet] = ACTIONS(2428), + [anon_sym_IBInspectable] = ACTIONS(2428), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2428), + [anon_sym_NS_INLINE] = ACTIONS(2428), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2428), + [anon_sym_OBJC_EXPORT] = ACTIONS(2428), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_nullable] = ACTIONS(2428), + [anon_sym__Complex] = ACTIONS(2428), + [anon_sym__Nullable] = ACTIONS(2428), + [anon_sym__Nullable_result] = ACTIONS(2428), + [anon_sym__Null_unspecified] = ACTIONS(2428), + [anon_sym___autoreleasing] = ACTIONS(2428), + [anon_sym___block] = ACTIONS(2428), + [anon_sym___bridge] = ACTIONS(2428), + [anon_sym___bridge_retained] = ACTIONS(2428), + [anon_sym___bridge_transfer] = ACTIONS(2428), + [anon_sym___complex] = ACTIONS(2428), + [anon_sym___const] = ACTIONS(2428), + [anon_sym___imag] = ACTIONS(2428), + [anon_sym___kindof] = ACTIONS(2428), + [anon_sym___nonnull] = ACTIONS(2428), + [anon_sym___nullable] = ACTIONS(2428), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2428), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2428), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2428), + [anon_sym___real] = ACTIONS(2428), + [anon_sym___strong] = ACTIONS(2428), + [anon_sym___unsafe_unretained] = ACTIONS(2428), + [anon_sym___unused] = ACTIONS(2428), + [anon_sym___weak] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_else] = ACTIONS(2428), + [anon_sym_switch] = ACTIONS(2428), + [anon_sym_case] = ACTIONS(2428), + [anon_sym_default] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_do] = ACTIONS(2428), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_in] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_goto] = ACTIONS(2428), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_sizeof] = ACTIONS(2428), + [anon_sym___alignof__] = ACTIONS(2428), + [anon_sym___alignof] = ACTIONS(2428), + [anon_sym__alignof] = ACTIONS(2428), + [anon_sym_alignof] = ACTIONS(2428), + [anon_sym__Alignof] = ACTIONS(2428), + [anon_sym_offsetof] = ACTIONS(2428), + [anon_sym__Generic] = ACTIONS(2428), + [anon_sym_asm] = ACTIONS(2428), + [anon_sym___asm__] = ACTIONS(2428), + [anon_sym___asm] = ACTIONS(2428), + [sym_number_literal] = ACTIONS(2430), + [anon_sym_L_SQUOTE] = ACTIONS(2430), + [anon_sym_u_SQUOTE] = ACTIONS(2430), + [anon_sym_U_SQUOTE] = ACTIONS(2430), + [anon_sym_u8_SQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_AT] = ACTIONS(2428), + [anon_sym_DQUOTE] = ACTIONS(2430), + [anon_sym_L_DQUOTE] = ACTIONS(2430), + [anon_sym_u_DQUOTE] = ACTIONS(2430), + [anon_sym_U_DQUOTE] = ACTIONS(2430), + [anon_sym_u8_DQUOTE] = ACTIONS(2430), + [sym_true] = ACTIONS(2428), + [sym_false] = ACTIONS(2428), + [anon_sym_NULL] = ACTIONS(2428), + [anon_sym_nullptr] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2428), + [anon_sym___typeof] = ACTIONS(2428), + [anon_sym_typeof] = ACTIONS(2428), + [anon_sym_ATimport] = ACTIONS(2430), + [aux_sym_preproc_undef_token1] = ACTIONS(2428), + [anon_sym_POUND] = ACTIONS(2428), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2428), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2428), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2428), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2428), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE] = ACTIONS(2428), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_API_AVAILABLE] = ACTIONS(2428), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_API_DEPRECATED] = ACTIONS(2428), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2428), + [anon_sym___deprecated_msg] = ACTIONS(2428), + [anon_sym___deprecated_enum_msg] = ACTIONS(2428), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2428), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2428), + [anon_sym_ATprotocol] = ACTIONS(2430), + [anon_sym_ATinterface] = ACTIONS(2430), + [anon_sym_ATimplementation] = ACTIONS(2430), + [anon_sym_ATcompatibility_alias] = ACTIONS(2430), + [anon_sym_ATsynthesize] = ACTIONS(2430), + [anon_sym_ATdynamic] = ACTIONS(2430), + [anon_sym_ATtry] = ACTIONS(2430), + [anon_sym___try] = ACTIONS(2428), + [anon_sym_ATthrow] = ACTIONS(2430), + [anon_sym_ATselector] = ACTIONS(2430), + [anon_sym_ATavailable] = ACTIONS(2430), + [anon_sym___builtin_available] = ACTIONS(2428), + [anon_sym_va_arg] = ACTIONS(2428), + [anon_sym_ATencode] = ACTIONS(2430), + [anon_sym_ATsynchronized] = ACTIONS(2430), + [anon_sym_BOOL] = ACTIONS(2428), + [anon_sym_IMP] = ACTIONS(2428), + [anon_sym_SEL] = ACTIONS(2428), + [anon_sym_Class] = ACTIONS(2428), + [anon_sym_id] = ACTIONS(2428), + }, + [551] = { + [sym_identifier] = ACTIONS(2548), + [aux_sym_preproc_include_token1] = ACTIONS(2548), + [aux_sym_preproc_include_token2] = ACTIONS(2548), + [aux_sym_preproc_def_token1] = ACTIONS(2548), + [aux_sym_preproc_if_token1] = ACTIONS(2548), + [aux_sym_preproc_if_token2] = ACTIONS(2548), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2548), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2548), + [sym_preproc_directive] = ACTIONS(2548), + [anon_sym_LPAREN2] = ACTIONS(2550), + [anon_sym_BANG] = ACTIONS(2550), + [anon_sym_TILDE] = ACTIONS(2550), + [anon_sym_DASH] = ACTIONS(2548), + [anon_sym_PLUS] = ACTIONS(2548), + [anon_sym_STAR] = ACTIONS(2550), + [anon_sym_CARET] = ACTIONS(2550), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_SEMI] = ACTIONS(2550), + [anon_sym___extension__] = ACTIONS(2548), + [anon_sym_typedef] = ACTIONS(2548), + [anon_sym_extern] = ACTIONS(2548), + [anon_sym___attribute__] = ACTIONS(2548), + [anon_sym___attribute] = ACTIONS(2548), + [anon_sym_noreturn] = ACTIONS(2548), + [anon_sym_LBRACK] = ACTIONS(2550), + [anon_sym___declspec] = ACTIONS(2548), + [anon_sym___cdecl] = ACTIONS(2548), + [anon_sym___clrcall] = ACTIONS(2548), + [anon_sym___stdcall] = ACTIONS(2548), + [anon_sym___fastcall] = ACTIONS(2548), + [anon_sym___thiscall] = ACTIONS(2548), + [anon_sym___vectorcall] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2550), + [anon_sym_signed] = ACTIONS(2548), + [anon_sym_unsigned] = ACTIONS(2548), + [anon_sym_long] = ACTIONS(2548), + [anon_sym_short] = ACTIONS(2548), + [anon_sym_static] = ACTIONS(2548), + [anon_sym_ATautoreleasepool] = ACTIONS(2550), + [anon_sym_auto] = ACTIONS(2548), + [anon_sym_register] = ACTIONS(2548), + [anon_sym_inline] = ACTIONS(2548), + [anon_sym___inline] = ACTIONS(2548), + [anon_sym___inline__] = ACTIONS(2548), + [anon_sym___forceinline] = ACTIONS(2548), + [anon_sym_thread_local] = ACTIONS(2548), + [anon_sym___thread] = ACTIONS(2548), + [anon_sym_CG_EXTERN] = ACTIONS(2548), + [anon_sym_CG_INLINE] = ACTIONS(2548), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2548), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2548), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2548), + [anon_sym_IBOutlet] = ACTIONS(2548), + [anon_sym_IBInspectable] = ACTIONS(2548), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2548), + [anon_sym_NS_INLINE] = ACTIONS(2548), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2548), + [anon_sym_OBJC_EXPORT] = ACTIONS(2548), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2548), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2548), + [anon_sym_const] = ACTIONS(2548), + [anon_sym_constexpr] = ACTIONS(2548), + [anon_sym_volatile] = ACTIONS(2548), + [anon_sym_restrict] = ACTIONS(2548), + [anon_sym___restrict__] = ACTIONS(2548), + [anon_sym__Atomic] = ACTIONS(2548), + [anon_sym__Noreturn] = ACTIONS(2548), + [anon_sym__Nonnull] = ACTIONS(2548), + [anon_sym_nullable] = ACTIONS(2548), + [anon_sym__Complex] = ACTIONS(2548), + [anon_sym__Nullable] = ACTIONS(2548), + [anon_sym__Nullable_result] = ACTIONS(2548), + [anon_sym__Null_unspecified] = ACTIONS(2548), + [anon_sym___autoreleasing] = ACTIONS(2548), + [anon_sym___block] = ACTIONS(2548), + [anon_sym___bridge] = ACTIONS(2548), + [anon_sym___bridge_retained] = ACTIONS(2548), + [anon_sym___bridge_transfer] = ACTIONS(2548), + [anon_sym___complex] = ACTIONS(2548), + [anon_sym___const] = ACTIONS(2548), + [anon_sym___imag] = ACTIONS(2548), + [anon_sym___kindof] = ACTIONS(2548), + [anon_sym___nonnull] = ACTIONS(2548), + [anon_sym___nullable] = ACTIONS(2548), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2548), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2548), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2548), + [anon_sym___real] = ACTIONS(2548), + [anon_sym___strong] = ACTIONS(2548), + [anon_sym___unsafe_unretained] = ACTIONS(2548), + [anon_sym___unused] = ACTIONS(2548), + [anon_sym___weak] = ACTIONS(2548), + [anon_sym_alignas] = ACTIONS(2548), + [anon_sym__Alignas] = ACTIONS(2548), + [sym_primitive_type] = ACTIONS(2548), + [anon_sym_enum] = ACTIONS(2548), + [anon_sym_struct] = ACTIONS(2548), + [anon_sym_union] = ACTIONS(2548), + [anon_sym_if] = ACTIONS(2548), + [anon_sym_else] = ACTIONS(2548), + [anon_sym_switch] = ACTIONS(2548), + [anon_sym_case] = ACTIONS(2548), + [anon_sym_default] = ACTIONS(2548), + [anon_sym_while] = ACTIONS(2548), + [anon_sym_do] = ACTIONS(2548), + [anon_sym_for] = ACTIONS(2548), + [anon_sym_in] = ACTIONS(2548), + [anon_sym_return] = ACTIONS(2548), + [anon_sym_break] = ACTIONS(2548), + [anon_sym_continue] = ACTIONS(2548), + [anon_sym_goto] = ACTIONS(2548), + [anon_sym_DASH_DASH] = ACTIONS(2550), + [anon_sym_PLUS_PLUS] = ACTIONS(2550), + [anon_sym_sizeof] = ACTIONS(2548), + [anon_sym___alignof__] = ACTIONS(2548), + [anon_sym___alignof] = ACTIONS(2548), + [anon_sym__alignof] = ACTIONS(2548), + [anon_sym_alignof] = ACTIONS(2548), + [anon_sym__Alignof] = ACTIONS(2548), + [anon_sym_offsetof] = ACTIONS(2548), + [anon_sym__Generic] = ACTIONS(2548), + [anon_sym_asm] = ACTIONS(2548), + [anon_sym___asm__] = ACTIONS(2548), + [anon_sym___asm] = ACTIONS(2548), + [sym_number_literal] = ACTIONS(2550), + [anon_sym_L_SQUOTE] = ACTIONS(2550), + [anon_sym_u_SQUOTE] = ACTIONS(2550), + [anon_sym_U_SQUOTE] = ACTIONS(2550), + [anon_sym_u8_SQUOTE] = ACTIONS(2550), + [anon_sym_SQUOTE] = ACTIONS(2550), + [anon_sym_AT] = ACTIONS(2548), + [anon_sym_DQUOTE] = ACTIONS(2550), + [anon_sym_L_DQUOTE] = ACTIONS(2550), + [anon_sym_u_DQUOTE] = ACTIONS(2550), + [anon_sym_U_DQUOTE] = ACTIONS(2550), + [anon_sym_u8_DQUOTE] = ACTIONS(2550), + [sym_true] = ACTIONS(2548), + [sym_false] = ACTIONS(2548), + [anon_sym_NULL] = ACTIONS(2548), + [anon_sym_nullptr] = ACTIONS(2548), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2548), + [anon_sym___typeof] = ACTIONS(2548), + [anon_sym_typeof] = ACTIONS(2548), + [anon_sym_ATimport] = ACTIONS(2550), + [aux_sym_preproc_undef_token1] = ACTIONS(2548), + [anon_sym_POUND] = ACTIONS(2548), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2548), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2548), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2548), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2548), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2548), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2548), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2548), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2548), + [anon_sym_NS_AVAILABLE] = ACTIONS(2548), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2548), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_API_AVAILABLE] = ACTIONS(2548), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_API_DEPRECATED] = ACTIONS(2548), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2548), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2548), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2548), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2548), + [anon_sym___deprecated_msg] = ACTIONS(2548), + [anon_sym___deprecated_enum_msg] = ACTIONS(2548), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2548), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2548), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2548), + [anon_sym_ATprotocol] = ACTIONS(2550), + [anon_sym_ATinterface] = ACTIONS(2550), + [anon_sym_ATimplementation] = ACTIONS(2550), + [anon_sym_ATcompatibility_alias] = ACTIONS(2550), + [anon_sym_ATsynthesize] = ACTIONS(2550), + [anon_sym_ATdynamic] = ACTIONS(2550), + [anon_sym_ATtry] = ACTIONS(2550), + [anon_sym___try] = ACTIONS(2548), + [anon_sym_ATthrow] = ACTIONS(2550), + [anon_sym_ATselector] = ACTIONS(2550), + [anon_sym_ATavailable] = ACTIONS(2550), + [anon_sym___builtin_available] = ACTIONS(2548), + [anon_sym_va_arg] = ACTIONS(2548), + [anon_sym_ATencode] = ACTIONS(2550), + [anon_sym_ATsynchronized] = ACTIONS(2550), + [anon_sym_BOOL] = ACTIONS(2548), + [anon_sym_IMP] = ACTIONS(2548), + [anon_sym_SEL] = ACTIONS(2548), + [anon_sym_Class] = ACTIONS(2548), + [anon_sym_id] = ACTIONS(2548), + }, + [552] = { + [sym_identifier] = ACTIONS(2416), + [aux_sym_preproc_include_token1] = ACTIONS(2416), + [aux_sym_preproc_include_token2] = ACTIONS(2416), + [aux_sym_preproc_def_token1] = ACTIONS(2416), + [aux_sym_preproc_if_token1] = ACTIONS(2416), + [aux_sym_preproc_if_token2] = ACTIONS(2416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2416), + [sym_preproc_directive] = ACTIONS(2416), + [anon_sym_LPAREN2] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym___extension__] = ACTIONS(2416), + [anon_sym_typedef] = ACTIONS(2416), + [anon_sym_extern] = ACTIONS(2416), + [anon_sym___attribute__] = ACTIONS(2416), + [anon_sym___attribute] = ACTIONS(2416), + [anon_sym_noreturn] = ACTIONS(2416), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym___declspec] = ACTIONS(2416), + [anon_sym___cdecl] = ACTIONS(2416), + [anon_sym___clrcall] = ACTIONS(2416), + [anon_sym___stdcall] = ACTIONS(2416), + [anon_sym___fastcall] = ACTIONS(2416), + [anon_sym___thiscall] = ACTIONS(2416), + [anon_sym___vectorcall] = ACTIONS(2416), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_signed] = ACTIONS(2416), + [anon_sym_unsigned] = ACTIONS(2416), + [anon_sym_long] = ACTIONS(2416), + [anon_sym_short] = ACTIONS(2416), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_ATautoreleasepool] = ACTIONS(2418), + [anon_sym_auto] = ACTIONS(2416), + [anon_sym_register] = ACTIONS(2416), + [anon_sym_inline] = ACTIONS(2416), + [anon_sym___inline] = ACTIONS(2416), + [anon_sym___inline__] = ACTIONS(2416), + [anon_sym___forceinline] = ACTIONS(2416), + [anon_sym_thread_local] = ACTIONS(2416), + [anon_sym___thread] = ACTIONS(2416), + [anon_sym_CG_EXTERN] = ACTIONS(2416), + [anon_sym_CG_INLINE] = ACTIONS(2416), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2416), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2416), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2416), + [anon_sym_IBOutlet] = ACTIONS(2416), + [anon_sym_IBInspectable] = ACTIONS(2416), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2416), + [anon_sym_NS_INLINE] = ACTIONS(2416), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2416), + [anon_sym_OBJC_EXPORT] = ACTIONS(2416), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2416), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2416), + [anon_sym_const] = ACTIONS(2416), + [anon_sym_constexpr] = ACTIONS(2416), + [anon_sym_volatile] = ACTIONS(2416), + [anon_sym_restrict] = ACTIONS(2416), + [anon_sym___restrict__] = ACTIONS(2416), + [anon_sym__Atomic] = ACTIONS(2416), + [anon_sym__Noreturn] = ACTIONS(2416), + [anon_sym__Nonnull] = ACTIONS(2416), + [anon_sym_nullable] = ACTIONS(2416), + [anon_sym__Complex] = ACTIONS(2416), + [anon_sym__Nullable] = ACTIONS(2416), + [anon_sym__Nullable_result] = ACTIONS(2416), + [anon_sym__Null_unspecified] = ACTIONS(2416), + [anon_sym___autoreleasing] = ACTIONS(2416), + [anon_sym___block] = ACTIONS(2416), + [anon_sym___bridge] = ACTIONS(2416), + [anon_sym___bridge_retained] = ACTIONS(2416), + [anon_sym___bridge_transfer] = ACTIONS(2416), + [anon_sym___complex] = ACTIONS(2416), + [anon_sym___const] = ACTIONS(2416), + [anon_sym___imag] = ACTIONS(2416), + [anon_sym___kindof] = ACTIONS(2416), + [anon_sym___nonnull] = ACTIONS(2416), + [anon_sym___nullable] = ACTIONS(2416), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2416), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2416), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2416), + [anon_sym___real] = ACTIONS(2416), + [anon_sym___strong] = ACTIONS(2416), + [anon_sym___unsafe_unretained] = ACTIONS(2416), + [anon_sym___unused] = ACTIONS(2416), + [anon_sym___weak] = ACTIONS(2416), + [anon_sym_alignas] = ACTIONS(2416), + [anon_sym__Alignas] = ACTIONS(2416), + [sym_primitive_type] = ACTIONS(2416), + [anon_sym_enum] = ACTIONS(2416), + [anon_sym_struct] = ACTIONS(2416), + [anon_sym_union] = ACTIONS(2416), + [anon_sym_if] = ACTIONS(2416), + [anon_sym_else] = ACTIONS(2416), + [anon_sym_switch] = ACTIONS(2416), + [anon_sym_case] = ACTIONS(2416), + [anon_sym_default] = ACTIONS(2416), + [anon_sym_while] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2416), + [anon_sym_for] = ACTIONS(2416), + [anon_sym_in] = ACTIONS(2416), + [anon_sym_return] = ACTIONS(2416), + [anon_sym_break] = ACTIONS(2416), + [anon_sym_continue] = ACTIONS(2416), + [anon_sym_goto] = ACTIONS(2416), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_sizeof] = ACTIONS(2416), + [anon_sym___alignof__] = ACTIONS(2416), + [anon_sym___alignof] = ACTIONS(2416), + [anon_sym__alignof] = ACTIONS(2416), + [anon_sym_alignof] = ACTIONS(2416), + [anon_sym__Alignof] = ACTIONS(2416), + [anon_sym_offsetof] = ACTIONS(2416), + [anon_sym__Generic] = ACTIONS(2416), + [anon_sym_asm] = ACTIONS(2416), + [anon_sym___asm__] = ACTIONS(2416), + [anon_sym___asm] = ACTIONS(2416), + [sym_number_literal] = ACTIONS(2418), + [anon_sym_L_SQUOTE] = ACTIONS(2418), + [anon_sym_u_SQUOTE] = ACTIONS(2418), + [anon_sym_U_SQUOTE] = ACTIONS(2418), + [anon_sym_u8_SQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_L_DQUOTE] = ACTIONS(2418), + [anon_sym_u_DQUOTE] = ACTIONS(2418), + [anon_sym_U_DQUOTE] = ACTIONS(2418), + [anon_sym_u8_DQUOTE] = ACTIONS(2418), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2416), + [anon_sym_nullptr] = ACTIONS(2416), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2416), + [anon_sym___typeof] = ACTIONS(2416), + [anon_sym_typeof] = ACTIONS(2416), + [anon_sym_ATimport] = ACTIONS(2418), + [aux_sym_preproc_undef_token1] = ACTIONS(2416), + [anon_sym_POUND] = ACTIONS(2416), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2416), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2416), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2416), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2416), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2416), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2416), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2416), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2416), + [anon_sym_NS_AVAILABLE] = ACTIONS(2416), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2416), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_API_AVAILABLE] = ACTIONS(2416), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_API_DEPRECATED] = ACTIONS(2416), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2416), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2416), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2416), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2416), + [anon_sym___deprecated_msg] = ACTIONS(2416), + [anon_sym___deprecated_enum_msg] = ACTIONS(2416), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2416), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2416), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2416), + [anon_sym_ATprotocol] = ACTIONS(2418), + [anon_sym_ATinterface] = ACTIONS(2418), + [anon_sym_ATimplementation] = ACTIONS(2418), + [anon_sym_ATcompatibility_alias] = ACTIONS(2418), + [anon_sym_ATsynthesize] = ACTIONS(2418), + [anon_sym_ATdynamic] = ACTIONS(2418), + [anon_sym_ATtry] = ACTIONS(2418), + [anon_sym___try] = ACTIONS(2416), + [anon_sym_ATthrow] = ACTIONS(2418), + [anon_sym_ATselector] = ACTIONS(2418), + [anon_sym_ATavailable] = ACTIONS(2418), + [anon_sym___builtin_available] = ACTIONS(2416), + [anon_sym_va_arg] = ACTIONS(2416), + [anon_sym_ATencode] = ACTIONS(2418), + [anon_sym_ATsynchronized] = ACTIONS(2418), + [anon_sym_BOOL] = ACTIONS(2416), + [anon_sym_IMP] = ACTIONS(2416), + [anon_sym_SEL] = ACTIONS(2416), + [anon_sym_Class] = ACTIONS(2416), + [anon_sym_id] = ACTIONS(2416), + }, + [553] = { + [sym_identifier] = ACTIONS(2432), + [aux_sym_preproc_include_token1] = ACTIONS(2432), + [aux_sym_preproc_include_token2] = ACTIONS(2432), + [aux_sym_preproc_def_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token2] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2432), + [sym_preproc_directive] = ACTIONS(2432), + [anon_sym_LPAREN2] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym___extension__] = ACTIONS(2432), + [anon_sym_typedef] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym___attribute__] = ACTIONS(2432), + [anon_sym___attribute] = ACTIONS(2432), + [anon_sym_noreturn] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym___declspec] = ACTIONS(2432), + [anon_sym___cdecl] = ACTIONS(2432), + [anon_sym___clrcall] = ACTIONS(2432), + [anon_sym___stdcall] = ACTIONS(2432), + [anon_sym___fastcall] = ACTIONS(2432), + [anon_sym___thiscall] = ACTIONS(2432), + [anon_sym___vectorcall] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_signed] = ACTIONS(2432), + [anon_sym_unsigned] = ACTIONS(2432), + [anon_sym_long] = ACTIONS(2432), + [anon_sym_short] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_ATautoreleasepool] = ACTIONS(2434), + [anon_sym_auto] = ACTIONS(2432), + [anon_sym_register] = ACTIONS(2432), + [anon_sym_inline] = ACTIONS(2432), + [anon_sym___inline] = ACTIONS(2432), + [anon_sym___inline__] = ACTIONS(2432), + [anon_sym___forceinline] = ACTIONS(2432), + [anon_sym_thread_local] = ACTIONS(2432), + [anon_sym___thread] = ACTIONS(2432), + [anon_sym_CG_EXTERN] = ACTIONS(2432), + [anon_sym_CG_INLINE] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2432), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2432), + [anon_sym_IBOutlet] = ACTIONS(2432), + [anon_sym_IBInspectable] = ACTIONS(2432), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2432), + [anon_sym_NS_INLINE] = ACTIONS(2432), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2432), + [anon_sym_OBJC_EXPORT] = ACTIONS(2432), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_constexpr] = ACTIONS(2432), + [anon_sym_volatile] = ACTIONS(2432), + [anon_sym_restrict] = ACTIONS(2432), + [anon_sym___restrict__] = ACTIONS(2432), + [anon_sym__Atomic] = ACTIONS(2432), + [anon_sym__Noreturn] = ACTIONS(2432), + [anon_sym__Nonnull] = ACTIONS(2432), + [anon_sym_nullable] = ACTIONS(2432), + [anon_sym__Complex] = ACTIONS(2432), + [anon_sym__Nullable] = ACTIONS(2432), + [anon_sym__Nullable_result] = ACTIONS(2432), + [anon_sym__Null_unspecified] = ACTIONS(2432), + [anon_sym___autoreleasing] = ACTIONS(2432), + [anon_sym___block] = ACTIONS(2432), + [anon_sym___bridge] = ACTIONS(2432), + [anon_sym___bridge_retained] = ACTIONS(2432), + [anon_sym___bridge_transfer] = ACTIONS(2432), + [anon_sym___complex] = ACTIONS(2432), + [anon_sym___const] = ACTIONS(2432), + [anon_sym___imag] = ACTIONS(2432), + [anon_sym___kindof] = ACTIONS(2432), + [anon_sym___nonnull] = ACTIONS(2432), + [anon_sym___nullable] = ACTIONS(2432), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2432), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2432), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2432), + [anon_sym___real] = ACTIONS(2432), + [anon_sym___strong] = ACTIONS(2432), + [anon_sym___unsafe_unretained] = ACTIONS(2432), + [anon_sym___unused] = ACTIONS(2432), + [anon_sym___weak] = ACTIONS(2432), + [anon_sym_alignas] = ACTIONS(2432), + [anon_sym__Alignas] = ACTIONS(2432), + [sym_primitive_type] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_else] = ACTIONS(2432), + [anon_sym_switch] = ACTIONS(2432), + [anon_sym_case] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_in] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_goto] = ACTIONS(2432), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_sizeof] = ACTIONS(2432), + [anon_sym___alignof__] = ACTIONS(2432), + [anon_sym___alignof] = ACTIONS(2432), + [anon_sym__alignof] = ACTIONS(2432), + [anon_sym_alignof] = ACTIONS(2432), + [anon_sym__Alignof] = ACTIONS(2432), + [anon_sym_offsetof] = ACTIONS(2432), + [anon_sym__Generic] = ACTIONS(2432), + [anon_sym_asm] = ACTIONS(2432), + [anon_sym___asm__] = ACTIONS(2432), + [anon_sym___asm] = ACTIONS(2432), + [sym_number_literal] = ACTIONS(2434), + [anon_sym_L_SQUOTE] = ACTIONS(2434), + [anon_sym_u_SQUOTE] = ACTIONS(2434), + [anon_sym_U_SQUOTE] = ACTIONS(2434), + [anon_sym_u8_SQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_AT] = ACTIONS(2432), + [anon_sym_DQUOTE] = ACTIONS(2434), + [anon_sym_L_DQUOTE] = ACTIONS(2434), + [anon_sym_u_DQUOTE] = ACTIONS(2434), + [anon_sym_U_DQUOTE] = ACTIONS(2434), + [anon_sym_u8_DQUOTE] = ACTIONS(2434), + [sym_true] = ACTIONS(2432), + [sym_false] = ACTIONS(2432), + [anon_sym_NULL] = ACTIONS(2432), + [anon_sym_nullptr] = ACTIONS(2432), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2432), + [anon_sym___typeof] = ACTIONS(2432), + [anon_sym_typeof] = ACTIONS(2432), + [anon_sym_ATimport] = ACTIONS(2434), + [aux_sym_preproc_undef_token1] = ACTIONS(2432), + [anon_sym_POUND] = ACTIONS(2432), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2432), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2432), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2432), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2432), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE] = ACTIONS(2432), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_API_AVAILABLE] = ACTIONS(2432), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_API_DEPRECATED] = ACTIONS(2432), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2432), + [anon_sym___deprecated_msg] = ACTIONS(2432), + [anon_sym___deprecated_enum_msg] = ACTIONS(2432), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2432), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2432), + [anon_sym_ATprotocol] = ACTIONS(2434), + [anon_sym_ATinterface] = ACTIONS(2434), + [anon_sym_ATimplementation] = ACTIONS(2434), + [anon_sym_ATcompatibility_alias] = ACTIONS(2434), + [anon_sym_ATsynthesize] = ACTIONS(2434), + [anon_sym_ATdynamic] = ACTIONS(2434), + [anon_sym_ATtry] = ACTIONS(2434), + [anon_sym___try] = ACTIONS(2432), + [anon_sym_ATthrow] = ACTIONS(2434), + [anon_sym_ATselector] = ACTIONS(2434), + [anon_sym_ATavailable] = ACTIONS(2434), + [anon_sym___builtin_available] = ACTIONS(2432), + [anon_sym_va_arg] = ACTIONS(2432), + [anon_sym_ATencode] = ACTIONS(2434), + [anon_sym_ATsynchronized] = ACTIONS(2434), + [anon_sym_BOOL] = ACTIONS(2432), + [anon_sym_IMP] = ACTIONS(2432), + [anon_sym_SEL] = ACTIONS(2432), + [anon_sym_Class] = ACTIONS(2432), + [anon_sym_id] = ACTIONS(2432), + }, + [554] = { + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_include_token1] = ACTIONS(2424), + [aux_sym_preproc_include_token2] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token2] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_CARET] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_ATautoreleasepool] = ACTIONS(2426), + [anon_sym_auto] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_CG_EXTERN] = ACTIONS(2424), + [anon_sym_CG_INLINE] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2424), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2424), + [anon_sym_IBOutlet] = ACTIONS(2424), + [anon_sym_IBInspectable] = ACTIONS(2424), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2424), + [anon_sym_NS_INLINE] = ACTIONS(2424), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2424), + [anon_sym_OBJC_EXPORT] = ACTIONS(2424), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_nullable] = ACTIONS(2424), + [anon_sym__Complex] = ACTIONS(2424), + [anon_sym__Nullable] = ACTIONS(2424), + [anon_sym__Nullable_result] = ACTIONS(2424), + [anon_sym__Null_unspecified] = ACTIONS(2424), + [anon_sym___autoreleasing] = ACTIONS(2424), + [anon_sym___block] = ACTIONS(2424), + [anon_sym___bridge] = ACTIONS(2424), + [anon_sym___bridge_retained] = ACTIONS(2424), + [anon_sym___bridge_transfer] = ACTIONS(2424), + [anon_sym___complex] = ACTIONS(2424), + [anon_sym___const] = ACTIONS(2424), + [anon_sym___imag] = ACTIONS(2424), + [anon_sym___kindof] = ACTIONS(2424), + [anon_sym___nonnull] = ACTIONS(2424), + [anon_sym___nullable] = ACTIONS(2424), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2424), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2424), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2424), + [anon_sym___real] = ACTIONS(2424), + [anon_sym___strong] = ACTIONS(2424), + [anon_sym___unsafe_unretained] = ACTIONS(2424), + [anon_sym___unused] = ACTIONS(2424), + [anon_sym___weak] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_else] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_in] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_goto] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_sizeof] = ACTIONS(2424), + [anon_sym___alignof__] = ACTIONS(2424), + [anon_sym___alignof] = ACTIONS(2424), + [anon_sym__alignof] = ACTIONS(2424), + [anon_sym_alignof] = ACTIONS(2424), + [anon_sym__Alignof] = ACTIONS(2424), + [anon_sym_offsetof] = ACTIONS(2424), + [anon_sym__Generic] = ACTIONS(2424), + [anon_sym_asm] = ACTIONS(2424), + [anon_sym___asm__] = ACTIONS(2424), + [anon_sym___asm] = ACTIONS(2424), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_L_SQUOTE] = ACTIONS(2426), + [anon_sym_u_SQUOTE] = ACTIONS(2426), + [anon_sym_U_SQUOTE] = ACTIONS(2426), + [anon_sym_u8_SQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_AT] = ACTIONS(2424), + [anon_sym_DQUOTE] = ACTIONS(2426), + [anon_sym_L_DQUOTE] = ACTIONS(2426), + [anon_sym_u_DQUOTE] = ACTIONS(2426), + [anon_sym_U_DQUOTE] = ACTIONS(2426), + [anon_sym_u8_DQUOTE] = ACTIONS(2426), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [anon_sym_NULL] = ACTIONS(2424), + [anon_sym_nullptr] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2424), + [anon_sym___typeof] = ACTIONS(2424), + [anon_sym_typeof] = ACTIONS(2424), + [anon_sym_ATimport] = ACTIONS(2426), + [aux_sym_preproc_undef_token1] = ACTIONS(2424), + [anon_sym_POUND] = ACTIONS(2424), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2424), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2424), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2424), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2424), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE] = ACTIONS(2424), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_API_AVAILABLE] = ACTIONS(2424), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_API_DEPRECATED] = ACTIONS(2424), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2424), + [anon_sym___deprecated_msg] = ACTIONS(2424), + [anon_sym___deprecated_enum_msg] = ACTIONS(2424), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2424), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2424), + [anon_sym_ATprotocol] = ACTIONS(2426), + [anon_sym_ATinterface] = ACTIONS(2426), + [anon_sym_ATimplementation] = ACTIONS(2426), + [anon_sym_ATcompatibility_alias] = ACTIONS(2426), + [anon_sym_ATsynthesize] = ACTIONS(2426), + [anon_sym_ATdynamic] = ACTIONS(2426), + [anon_sym_ATtry] = ACTIONS(2426), + [anon_sym___try] = ACTIONS(2424), + [anon_sym_ATthrow] = ACTIONS(2426), + [anon_sym_ATselector] = ACTIONS(2426), + [anon_sym_ATavailable] = ACTIONS(2426), + [anon_sym___builtin_available] = ACTIONS(2424), + [anon_sym_va_arg] = ACTIONS(2424), + [anon_sym_ATencode] = ACTIONS(2426), + [anon_sym_ATsynchronized] = ACTIONS(2426), + [anon_sym_BOOL] = ACTIONS(2424), + [anon_sym_IMP] = ACTIONS(2424), + [anon_sym_SEL] = ACTIONS(2424), + [anon_sym_Class] = ACTIONS(2424), + [anon_sym_id] = ACTIONS(2424), + }, + [555] = { + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_include_token1] = ACTIONS(2420), + [aux_sym_preproc_include_token2] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2420), + [aux_sym_preproc_if_token1] = ACTIONS(2420), + [aux_sym_preproc_if_token2] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2420), + [sym_preproc_directive] = ACTIONS(2420), + [anon_sym_LPAREN2] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(2422), + [anon_sym_CARET] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym___extension__] = ACTIONS(2420), + [anon_sym_typedef] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym___attribute__] = ACTIONS(2420), + [anon_sym___attribute] = ACTIONS(2420), + [anon_sym_noreturn] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2422), + [anon_sym___declspec] = ACTIONS(2420), + [anon_sym___cdecl] = ACTIONS(2420), + [anon_sym___clrcall] = ACTIONS(2420), + [anon_sym___stdcall] = ACTIONS(2420), + [anon_sym___fastcall] = ACTIONS(2420), + [anon_sym___thiscall] = ACTIONS(2420), + [anon_sym___vectorcall] = ACTIONS(2420), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_signed] = ACTIONS(2420), + [anon_sym_unsigned] = ACTIONS(2420), + [anon_sym_long] = ACTIONS(2420), + [anon_sym_short] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_ATautoreleasepool] = ACTIONS(2422), + [anon_sym_auto] = ACTIONS(2420), + [anon_sym_register] = ACTIONS(2420), + [anon_sym_inline] = ACTIONS(2420), + [anon_sym___inline] = ACTIONS(2420), + [anon_sym___inline__] = ACTIONS(2420), + [anon_sym___forceinline] = ACTIONS(2420), + [anon_sym_thread_local] = ACTIONS(2420), + [anon_sym___thread] = ACTIONS(2420), + [anon_sym_CG_EXTERN] = ACTIONS(2420), + [anon_sym_CG_INLINE] = ACTIONS(2420), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2420), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2420), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2420), + [anon_sym_IBOutlet] = ACTIONS(2420), + [anon_sym_IBInspectable] = ACTIONS(2420), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2420), + [anon_sym_NS_INLINE] = ACTIONS(2420), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2420), + [anon_sym_OBJC_EXPORT] = ACTIONS(2420), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2420), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [anon_sym_constexpr] = ACTIONS(2420), + [anon_sym_volatile] = ACTIONS(2420), + [anon_sym_restrict] = ACTIONS(2420), + [anon_sym___restrict__] = ACTIONS(2420), + [anon_sym__Atomic] = ACTIONS(2420), + [anon_sym__Noreturn] = ACTIONS(2420), + [anon_sym__Nonnull] = ACTIONS(2420), + [anon_sym_nullable] = ACTIONS(2420), + [anon_sym__Complex] = ACTIONS(2420), + [anon_sym__Nullable] = ACTIONS(2420), + [anon_sym__Nullable_result] = ACTIONS(2420), + [anon_sym__Null_unspecified] = ACTIONS(2420), + [anon_sym___autoreleasing] = ACTIONS(2420), + [anon_sym___block] = ACTIONS(2420), + [anon_sym___bridge] = ACTIONS(2420), + [anon_sym___bridge_retained] = ACTIONS(2420), + [anon_sym___bridge_transfer] = ACTIONS(2420), + [anon_sym___complex] = ACTIONS(2420), + [anon_sym___const] = ACTIONS(2420), + [anon_sym___imag] = ACTIONS(2420), + [anon_sym___kindof] = ACTIONS(2420), + [anon_sym___nonnull] = ACTIONS(2420), + [anon_sym___nullable] = ACTIONS(2420), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2420), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2420), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2420), + [anon_sym___real] = ACTIONS(2420), + [anon_sym___strong] = ACTIONS(2420), + [anon_sym___unsafe_unretained] = ACTIONS(2420), + [anon_sym___unused] = ACTIONS(2420), + [anon_sym___weak] = ACTIONS(2420), + [anon_sym_alignas] = ACTIONS(2420), + [anon_sym__Alignas] = ACTIONS(2420), + [sym_primitive_type] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), + [anon_sym_struct] = ACTIONS(2420), + [anon_sym_union] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_else] = ACTIONS(2420), + [anon_sym_switch] = ACTIONS(2420), + [anon_sym_case] = ACTIONS(2420), + [anon_sym_default] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_do] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_in] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_goto] = ACTIONS(2420), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_sizeof] = ACTIONS(2420), + [anon_sym___alignof__] = ACTIONS(2420), + [anon_sym___alignof] = ACTIONS(2420), + [anon_sym__alignof] = ACTIONS(2420), + [anon_sym_alignof] = ACTIONS(2420), + [anon_sym__Alignof] = ACTIONS(2420), + [anon_sym_offsetof] = ACTIONS(2420), + [anon_sym__Generic] = ACTIONS(2420), + [anon_sym_asm] = ACTIONS(2420), + [anon_sym___asm__] = ACTIONS(2420), + [anon_sym___asm] = ACTIONS(2420), + [sym_number_literal] = ACTIONS(2422), + [anon_sym_L_SQUOTE] = ACTIONS(2422), + [anon_sym_u_SQUOTE] = ACTIONS(2422), + [anon_sym_U_SQUOTE] = ACTIONS(2422), + [anon_sym_u8_SQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [anon_sym_AT] = ACTIONS(2420), + [anon_sym_DQUOTE] = ACTIONS(2422), + [anon_sym_L_DQUOTE] = ACTIONS(2422), + [anon_sym_u_DQUOTE] = ACTIONS(2422), + [anon_sym_U_DQUOTE] = ACTIONS(2422), + [anon_sym_u8_DQUOTE] = ACTIONS(2422), + [sym_true] = ACTIONS(2420), + [sym_false] = ACTIONS(2420), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2420), + [anon_sym___typeof] = ACTIONS(2420), + [anon_sym_typeof] = ACTIONS(2420), + [anon_sym_ATimport] = ACTIONS(2422), + [aux_sym_preproc_undef_token1] = ACTIONS(2420), + [anon_sym_POUND] = ACTIONS(2420), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2420), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2420), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2420), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2420), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2420), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2420), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2420), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2420), + [anon_sym_NS_AVAILABLE] = ACTIONS(2420), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2420), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_API_AVAILABLE] = ACTIONS(2420), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_API_DEPRECATED] = ACTIONS(2420), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2420), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2420), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2420), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2420), + [anon_sym___deprecated_msg] = ACTIONS(2420), + [anon_sym___deprecated_enum_msg] = ACTIONS(2420), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2420), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2420), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2420), + [anon_sym_ATprotocol] = ACTIONS(2422), + [anon_sym_ATinterface] = ACTIONS(2422), + [anon_sym_ATimplementation] = ACTIONS(2422), + [anon_sym_ATcompatibility_alias] = ACTIONS(2422), + [anon_sym_ATsynthesize] = ACTIONS(2422), + [anon_sym_ATdynamic] = ACTIONS(2422), + [anon_sym_ATtry] = ACTIONS(2422), + [anon_sym___try] = ACTIONS(2420), + [anon_sym_ATthrow] = ACTIONS(2422), + [anon_sym_ATselector] = ACTIONS(2422), + [anon_sym_ATavailable] = ACTIONS(2422), + [anon_sym___builtin_available] = ACTIONS(2420), + [anon_sym_va_arg] = ACTIONS(2420), + [anon_sym_ATencode] = ACTIONS(2422), + [anon_sym_ATsynchronized] = ACTIONS(2422), + [anon_sym_BOOL] = ACTIONS(2420), + [anon_sym_IMP] = ACTIONS(2420), + [anon_sym_SEL] = ACTIONS(2420), + [anon_sym_Class] = ACTIONS(2420), + [anon_sym_id] = ACTIONS(2420), + }, + [556] = { + [sym_identifier] = ACTIONS(2432), + [aux_sym_preproc_include_token1] = ACTIONS(2432), + [aux_sym_preproc_include_token2] = ACTIONS(2432), + [aux_sym_preproc_def_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token2] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2432), + [sym_preproc_directive] = ACTIONS(2432), + [anon_sym_LPAREN2] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym___extension__] = ACTIONS(2432), + [anon_sym_typedef] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym___attribute__] = ACTIONS(2432), + [anon_sym___attribute] = ACTIONS(2432), + [anon_sym_noreturn] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym___declspec] = ACTIONS(2432), + [anon_sym___cdecl] = ACTIONS(2432), + [anon_sym___clrcall] = ACTIONS(2432), + [anon_sym___stdcall] = ACTIONS(2432), + [anon_sym___fastcall] = ACTIONS(2432), + [anon_sym___thiscall] = ACTIONS(2432), + [anon_sym___vectorcall] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_signed] = ACTIONS(2432), + [anon_sym_unsigned] = ACTIONS(2432), + [anon_sym_long] = ACTIONS(2432), + [anon_sym_short] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_ATautoreleasepool] = ACTIONS(2434), + [anon_sym_auto] = ACTIONS(2432), + [anon_sym_register] = ACTIONS(2432), + [anon_sym_inline] = ACTIONS(2432), + [anon_sym___inline] = ACTIONS(2432), + [anon_sym___inline__] = ACTIONS(2432), + [anon_sym___forceinline] = ACTIONS(2432), + [anon_sym_thread_local] = ACTIONS(2432), + [anon_sym___thread] = ACTIONS(2432), + [anon_sym_CG_EXTERN] = ACTIONS(2432), + [anon_sym_CG_INLINE] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2432), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2432), + [anon_sym_IBOutlet] = ACTIONS(2432), + [anon_sym_IBInspectable] = ACTIONS(2432), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2432), + [anon_sym_NS_INLINE] = ACTIONS(2432), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2432), + [anon_sym_OBJC_EXPORT] = ACTIONS(2432), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_constexpr] = ACTIONS(2432), + [anon_sym_volatile] = ACTIONS(2432), + [anon_sym_restrict] = ACTIONS(2432), + [anon_sym___restrict__] = ACTIONS(2432), + [anon_sym__Atomic] = ACTIONS(2432), + [anon_sym__Noreturn] = ACTIONS(2432), + [anon_sym__Nonnull] = ACTIONS(2432), + [anon_sym_nullable] = ACTIONS(2432), + [anon_sym__Complex] = ACTIONS(2432), + [anon_sym__Nullable] = ACTIONS(2432), + [anon_sym__Nullable_result] = ACTIONS(2432), + [anon_sym__Null_unspecified] = ACTIONS(2432), + [anon_sym___autoreleasing] = ACTIONS(2432), + [anon_sym___block] = ACTIONS(2432), + [anon_sym___bridge] = ACTIONS(2432), + [anon_sym___bridge_retained] = ACTIONS(2432), + [anon_sym___bridge_transfer] = ACTIONS(2432), + [anon_sym___complex] = ACTIONS(2432), + [anon_sym___const] = ACTIONS(2432), + [anon_sym___imag] = ACTIONS(2432), + [anon_sym___kindof] = ACTIONS(2432), + [anon_sym___nonnull] = ACTIONS(2432), + [anon_sym___nullable] = ACTIONS(2432), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2432), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2432), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2432), + [anon_sym___real] = ACTIONS(2432), + [anon_sym___strong] = ACTIONS(2432), + [anon_sym___unsafe_unretained] = ACTIONS(2432), + [anon_sym___unused] = ACTIONS(2432), + [anon_sym___weak] = ACTIONS(2432), + [anon_sym_alignas] = ACTIONS(2432), + [anon_sym__Alignas] = ACTIONS(2432), + [sym_primitive_type] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_else] = ACTIONS(2432), + [anon_sym_switch] = ACTIONS(2432), + [anon_sym_case] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_in] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_goto] = ACTIONS(2432), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_sizeof] = ACTIONS(2432), + [anon_sym___alignof__] = ACTIONS(2432), + [anon_sym___alignof] = ACTIONS(2432), + [anon_sym__alignof] = ACTIONS(2432), + [anon_sym_alignof] = ACTIONS(2432), + [anon_sym__Alignof] = ACTIONS(2432), + [anon_sym_offsetof] = ACTIONS(2432), + [anon_sym__Generic] = ACTIONS(2432), + [anon_sym_asm] = ACTIONS(2432), + [anon_sym___asm__] = ACTIONS(2432), + [anon_sym___asm] = ACTIONS(2432), + [sym_number_literal] = ACTIONS(2434), + [anon_sym_L_SQUOTE] = ACTIONS(2434), + [anon_sym_u_SQUOTE] = ACTIONS(2434), + [anon_sym_U_SQUOTE] = ACTIONS(2434), + [anon_sym_u8_SQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_AT] = ACTIONS(2432), + [anon_sym_DQUOTE] = ACTIONS(2434), + [anon_sym_L_DQUOTE] = ACTIONS(2434), + [anon_sym_u_DQUOTE] = ACTIONS(2434), + [anon_sym_U_DQUOTE] = ACTIONS(2434), + [anon_sym_u8_DQUOTE] = ACTIONS(2434), + [sym_true] = ACTIONS(2432), + [sym_false] = ACTIONS(2432), + [anon_sym_NULL] = ACTIONS(2432), + [anon_sym_nullptr] = ACTIONS(2432), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2432), + [anon_sym___typeof] = ACTIONS(2432), + [anon_sym_typeof] = ACTIONS(2432), + [anon_sym_ATimport] = ACTIONS(2434), + [aux_sym_preproc_undef_token1] = ACTIONS(2432), + [anon_sym_POUND] = ACTIONS(2432), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2432), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2432), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2432), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2432), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE] = ACTIONS(2432), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_API_AVAILABLE] = ACTIONS(2432), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_API_DEPRECATED] = ACTIONS(2432), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2432), + [anon_sym___deprecated_msg] = ACTIONS(2432), + [anon_sym___deprecated_enum_msg] = ACTIONS(2432), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2432), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2432), + [anon_sym_ATprotocol] = ACTIONS(2434), + [anon_sym_ATinterface] = ACTIONS(2434), + [anon_sym_ATimplementation] = ACTIONS(2434), + [anon_sym_ATcompatibility_alias] = ACTIONS(2434), + [anon_sym_ATsynthesize] = ACTIONS(2434), + [anon_sym_ATdynamic] = ACTIONS(2434), + [anon_sym_ATtry] = ACTIONS(2434), + [anon_sym___try] = ACTIONS(2432), + [anon_sym_ATthrow] = ACTIONS(2434), + [anon_sym_ATselector] = ACTIONS(2434), + [anon_sym_ATavailable] = ACTIONS(2434), + [anon_sym___builtin_available] = ACTIONS(2432), + [anon_sym_va_arg] = ACTIONS(2432), + [anon_sym_ATencode] = ACTIONS(2434), + [anon_sym_ATsynchronized] = ACTIONS(2434), + [anon_sym_BOOL] = ACTIONS(2432), + [anon_sym_IMP] = ACTIONS(2432), + [anon_sym_SEL] = ACTIONS(2432), + [anon_sym_Class] = ACTIONS(2432), + [anon_sym_id] = ACTIONS(2432), + }, + [557] = { + [sym_identifier] = ACTIONS(2474), + [aux_sym_preproc_include_token1] = ACTIONS(2474), + [aux_sym_preproc_include_token2] = ACTIONS(2474), + [aux_sym_preproc_def_token1] = ACTIONS(2474), + [aux_sym_preproc_if_token1] = ACTIONS(2474), + [aux_sym_preproc_if_token2] = ACTIONS(2474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2474), + [sym_preproc_directive] = ACTIONS(2474), + [anon_sym_LPAREN2] = ACTIONS(2476), + [anon_sym_BANG] = ACTIONS(2476), + [anon_sym_TILDE] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2474), + [anon_sym_PLUS] = ACTIONS(2474), + [anon_sym_STAR] = ACTIONS(2476), + [anon_sym_CARET] = ACTIONS(2476), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2476), + [anon_sym___extension__] = ACTIONS(2474), + [anon_sym_typedef] = ACTIONS(2474), + [anon_sym_extern] = ACTIONS(2474), + [anon_sym___attribute__] = ACTIONS(2474), + [anon_sym___attribute] = ACTIONS(2474), + [anon_sym_noreturn] = ACTIONS(2474), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym___declspec] = ACTIONS(2474), + [anon_sym___cdecl] = ACTIONS(2474), + [anon_sym___clrcall] = ACTIONS(2474), + [anon_sym___stdcall] = ACTIONS(2474), + [anon_sym___fastcall] = ACTIONS(2474), + [anon_sym___thiscall] = ACTIONS(2474), + [anon_sym___vectorcall] = ACTIONS(2474), + [anon_sym_LBRACE] = ACTIONS(2476), + [anon_sym_signed] = ACTIONS(2474), + [anon_sym_unsigned] = ACTIONS(2474), + [anon_sym_long] = ACTIONS(2474), + [anon_sym_short] = ACTIONS(2474), + [anon_sym_static] = ACTIONS(2474), + [anon_sym_ATautoreleasepool] = ACTIONS(2476), + [anon_sym_auto] = ACTIONS(2474), + [anon_sym_register] = ACTIONS(2474), + [anon_sym_inline] = ACTIONS(2474), + [anon_sym___inline] = ACTIONS(2474), + [anon_sym___inline__] = ACTIONS(2474), + [anon_sym___forceinline] = ACTIONS(2474), + [anon_sym_thread_local] = ACTIONS(2474), + [anon_sym___thread] = ACTIONS(2474), + [anon_sym_CG_EXTERN] = ACTIONS(2474), + [anon_sym_CG_INLINE] = ACTIONS(2474), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2474), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2474), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2474), + [anon_sym_IBOutlet] = ACTIONS(2474), + [anon_sym_IBInspectable] = ACTIONS(2474), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2474), + [anon_sym_NS_INLINE] = ACTIONS(2474), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2474), + [anon_sym_OBJC_EXPORT] = ACTIONS(2474), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2474), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2474), + [anon_sym_const] = ACTIONS(2474), + [anon_sym_constexpr] = ACTIONS(2474), + [anon_sym_volatile] = ACTIONS(2474), + [anon_sym_restrict] = ACTIONS(2474), + [anon_sym___restrict__] = ACTIONS(2474), + [anon_sym__Atomic] = ACTIONS(2474), + [anon_sym__Noreturn] = ACTIONS(2474), + [anon_sym__Nonnull] = ACTIONS(2474), + [anon_sym_nullable] = ACTIONS(2474), + [anon_sym__Complex] = ACTIONS(2474), + [anon_sym__Nullable] = ACTIONS(2474), + [anon_sym__Nullable_result] = ACTIONS(2474), + [anon_sym__Null_unspecified] = ACTIONS(2474), + [anon_sym___autoreleasing] = ACTIONS(2474), + [anon_sym___block] = ACTIONS(2474), + [anon_sym___bridge] = ACTIONS(2474), + [anon_sym___bridge_retained] = ACTIONS(2474), + [anon_sym___bridge_transfer] = ACTIONS(2474), + [anon_sym___complex] = ACTIONS(2474), + [anon_sym___const] = ACTIONS(2474), + [anon_sym___imag] = ACTIONS(2474), + [anon_sym___kindof] = ACTIONS(2474), + [anon_sym___nonnull] = ACTIONS(2474), + [anon_sym___nullable] = ACTIONS(2474), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2474), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2474), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2474), + [anon_sym___real] = ACTIONS(2474), + [anon_sym___strong] = ACTIONS(2474), + [anon_sym___unsafe_unretained] = ACTIONS(2474), + [anon_sym___unused] = ACTIONS(2474), + [anon_sym___weak] = ACTIONS(2474), + [anon_sym_alignas] = ACTIONS(2474), + [anon_sym__Alignas] = ACTIONS(2474), + [sym_primitive_type] = ACTIONS(2474), + [anon_sym_enum] = ACTIONS(2474), + [anon_sym_struct] = ACTIONS(2474), + [anon_sym_union] = ACTIONS(2474), + [anon_sym_if] = ACTIONS(2474), + [anon_sym_else] = ACTIONS(2474), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_case] = ACTIONS(2474), + [anon_sym_default] = ACTIONS(2474), + [anon_sym_while] = ACTIONS(2474), + [anon_sym_do] = ACTIONS(2474), + [anon_sym_for] = ACTIONS(2474), + [anon_sym_in] = ACTIONS(2474), + [anon_sym_return] = ACTIONS(2474), + [anon_sym_break] = ACTIONS(2474), + [anon_sym_continue] = ACTIONS(2474), + [anon_sym_goto] = ACTIONS(2474), + [anon_sym_DASH_DASH] = ACTIONS(2476), + [anon_sym_PLUS_PLUS] = ACTIONS(2476), + [anon_sym_sizeof] = ACTIONS(2474), + [anon_sym___alignof__] = ACTIONS(2474), + [anon_sym___alignof] = ACTIONS(2474), + [anon_sym__alignof] = ACTIONS(2474), + [anon_sym_alignof] = ACTIONS(2474), + [anon_sym__Alignof] = ACTIONS(2474), + [anon_sym_offsetof] = ACTIONS(2474), + [anon_sym__Generic] = ACTIONS(2474), + [anon_sym_asm] = ACTIONS(2474), + [anon_sym___asm__] = ACTIONS(2474), + [anon_sym___asm] = ACTIONS(2474), + [sym_number_literal] = ACTIONS(2476), + [anon_sym_L_SQUOTE] = ACTIONS(2476), + [anon_sym_u_SQUOTE] = ACTIONS(2476), + [anon_sym_U_SQUOTE] = ACTIONS(2476), + [anon_sym_u8_SQUOTE] = ACTIONS(2476), + [anon_sym_SQUOTE] = ACTIONS(2476), + [anon_sym_AT] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_L_DQUOTE] = ACTIONS(2476), + [anon_sym_u_DQUOTE] = ACTIONS(2476), + [anon_sym_U_DQUOTE] = ACTIONS(2476), + [anon_sym_u8_DQUOTE] = ACTIONS(2476), + [sym_true] = ACTIONS(2474), + [sym_false] = ACTIONS(2474), + [anon_sym_NULL] = ACTIONS(2474), + [anon_sym_nullptr] = ACTIONS(2474), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2474), + [anon_sym___typeof] = ACTIONS(2474), + [anon_sym_typeof] = ACTIONS(2474), + [anon_sym_ATimport] = ACTIONS(2476), + [aux_sym_preproc_undef_token1] = ACTIONS(2474), + [anon_sym_POUND] = ACTIONS(2474), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2474), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2474), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2474), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2474), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2474), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2474), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2474), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2474), + [anon_sym_NS_AVAILABLE] = ACTIONS(2474), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2474), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_API_AVAILABLE] = ACTIONS(2474), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_API_DEPRECATED] = ACTIONS(2474), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2474), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2474), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2474), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2474), + [anon_sym___deprecated_msg] = ACTIONS(2474), + [anon_sym___deprecated_enum_msg] = ACTIONS(2474), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2474), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2474), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2474), + [anon_sym_ATprotocol] = ACTIONS(2476), + [anon_sym_ATinterface] = ACTIONS(2476), + [anon_sym_ATimplementation] = ACTIONS(2476), + [anon_sym_ATcompatibility_alias] = ACTIONS(2476), + [anon_sym_ATsynthesize] = ACTIONS(2476), + [anon_sym_ATdynamic] = ACTIONS(2476), + [anon_sym_ATtry] = ACTIONS(2476), + [anon_sym___try] = ACTIONS(2474), + [anon_sym_ATthrow] = ACTIONS(2476), + [anon_sym_ATselector] = ACTIONS(2476), + [anon_sym_ATavailable] = ACTIONS(2476), + [anon_sym___builtin_available] = ACTIONS(2474), + [anon_sym_va_arg] = ACTIONS(2474), + [anon_sym_ATencode] = ACTIONS(2476), + [anon_sym_ATsynchronized] = ACTIONS(2476), + [anon_sym_BOOL] = ACTIONS(2474), + [anon_sym_IMP] = ACTIONS(2474), + [anon_sym_SEL] = ACTIONS(2474), + [anon_sym_Class] = ACTIONS(2474), + [anon_sym_id] = ACTIONS(2474), + }, + [558] = { + [sym_catch_clause] = STATE(558), + [aux_sym_try_statement_repeat1] = STATE(558), + [ts_builtin_sym_end] = ACTIONS(2320), + [sym_identifier] = ACTIONS(2318), + [aux_sym_preproc_include_token1] = ACTIONS(2318), + [aux_sym_preproc_include_token2] = ACTIONS(2318), + [aux_sym_preproc_def_token1] = ACTIONS(2318), + [aux_sym_preproc_if_token1] = ACTIONS(2318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2318), + [sym_preproc_directive] = ACTIONS(2318), + [anon_sym_LPAREN2] = ACTIONS(2320), + [anon_sym_BANG] = ACTIONS(2320), + [anon_sym_TILDE] = ACTIONS(2320), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2320), + [anon_sym_CARET] = ACTIONS(2320), + [anon_sym_AMP] = ACTIONS(2320), + [anon_sym_SEMI] = ACTIONS(2320), + [anon_sym___extension__] = ACTIONS(2318), + [anon_sym_typedef] = ACTIONS(2318), + [anon_sym_extern] = ACTIONS(2318), + [anon_sym___attribute__] = ACTIONS(2318), + [anon_sym___attribute] = ACTIONS(2318), + [anon_sym_noreturn] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2320), + [anon_sym___declspec] = ACTIONS(2318), + [anon_sym___cdecl] = ACTIONS(2318), + [anon_sym___clrcall] = ACTIONS(2318), + [anon_sym___stdcall] = ACTIONS(2318), + [anon_sym___fastcall] = ACTIONS(2318), + [anon_sym___thiscall] = ACTIONS(2318), + [anon_sym___vectorcall] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2320), + [anon_sym_signed] = ACTIONS(2318), + [anon_sym_unsigned] = ACTIONS(2318), + [anon_sym_long] = ACTIONS(2318), + [anon_sym_short] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_ATautoreleasepool] = ACTIONS(2320), + [anon_sym_auto] = ACTIONS(2318), + [anon_sym_register] = ACTIONS(2318), + [anon_sym_inline] = ACTIONS(2318), + [anon_sym___inline] = ACTIONS(2318), + [anon_sym___inline__] = ACTIONS(2318), + [anon_sym___forceinline] = ACTIONS(2318), + [anon_sym_thread_local] = ACTIONS(2318), + [anon_sym___thread] = ACTIONS(2318), + [anon_sym_CG_EXTERN] = ACTIONS(2318), + [anon_sym_CG_INLINE] = ACTIONS(2318), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2318), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2318), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2318), + [anon_sym_IBOutlet] = ACTIONS(2318), + [anon_sym_IBInspectable] = ACTIONS(2318), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2318), + [anon_sym_NS_INLINE] = ACTIONS(2318), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2318), + [anon_sym_OBJC_EXPORT] = ACTIONS(2318), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2318), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_constexpr] = ACTIONS(2318), + [anon_sym_volatile] = ACTIONS(2318), + [anon_sym_restrict] = ACTIONS(2318), + [anon_sym___restrict__] = ACTIONS(2318), + [anon_sym__Atomic] = ACTIONS(2318), + [anon_sym__Noreturn] = ACTIONS(2318), + [anon_sym__Nonnull] = ACTIONS(2318), + [anon_sym_nullable] = ACTIONS(2318), + [anon_sym__Complex] = ACTIONS(2318), + [anon_sym__Nullable] = ACTIONS(2318), + [anon_sym__Nullable_result] = ACTIONS(2318), + [anon_sym__Null_unspecified] = ACTIONS(2318), + [anon_sym___autoreleasing] = ACTIONS(2318), + [anon_sym___block] = ACTIONS(2318), + [anon_sym___bridge] = ACTIONS(2318), + [anon_sym___bridge_retained] = ACTIONS(2318), + [anon_sym___bridge_transfer] = ACTIONS(2318), + [anon_sym___complex] = ACTIONS(2318), + [anon_sym___const] = ACTIONS(2318), + [anon_sym___imag] = ACTIONS(2318), + [anon_sym___kindof] = ACTIONS(2318), + [anon_sym___nonnull] = ACTIONS(2318), + [anon_sym___nullable] = ACTIONS(2318), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2318), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2318), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2318), + [anon_sym___real] = ACTIONS(2318), + [anon_sym___strong] = ACTIONS(2318), + [anon_sym___unsafe_unretained] = ACTIONS(2318), + [anon_sym___unused] = ACTIONS(2318), + [anon_sym___weak] = ACTIONS(2318), + [anon_sym_alignas] = ACTIONS(2318), + [anon_sym__Alignas] = ACTIONS(2318), + [sym_primitive_type] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_case] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_goto] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2320), + [anon_sym_sizeof] = ACTIONS(2318), + [anon_sym___alignof__] = ACTIONS(2318), + [anon_sym___alignof] = ACTIONS(2318), + [anon_sym__alignof] = ACTIONS(2318), + [anon_sym_alignof] = ACTIONS(2318), + [anon_sym__Alignof] = ACTIONS(2318), + [anon_sym_offsetof] = ACTIONS(2318), + [anon_sym__Generic] = ACTIONS(2318), + [anon_sym_asm] = ACTIONS(2318), + [anon_sym___asm__] = ACTIONS(2318), + [anon_sym___asm] = ACTIONS(2318), + [sym_number_literal] = ACTIONS(2320), + [anon_sym_L_SQUOTE] = ACTIONS(2320), + [anon_sym_u_SQUOTE] = ACTIONS(2320), + [anon_sym_U_SQUOTE] = ACTIONS(2320), + [anon_sym_u8_SQUOTE] = ACTIONS(2320), + [anon_sym_SQUOTE] = ACTIONS(2320), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_DQUOTE] = ACTIONS(2320), + [anon_sym_L_DQUOTE] = ACTIONS(2320), + [anon_sym_u_DQUOTE] = ACTIONS(2320), + [anon_sym_U_DQUOTE] = ACTIONS(2320), + [anon_sym_u8_DQUOTE] = ACTIONS(2320), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [anon_sym_NULL] = ACTIONS(2318), + [anon_sym_nullptr] = ACTIONS(2318), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2318), + [anon_sym___typeof] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_ATimport] = ACTIONS(2320), + [aux_sym_preproc_undef_token1] = ACTIONS(2318), + [anon_sym_POUND] = ACTIONS(2318), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2318), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2318), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2318), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2318), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2318), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2318), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2318), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2318), + [anon_sym_NS_AVAILABLE] = ACTIONS(2318), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2318), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_API_AVAILABLE] = ACTIONS(2318), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_API_DEPRECATED] = ACTIONS(2318), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2318), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2318), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2318), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2318), + [anon_sym___deprecated_msg] = ACTIONS(2318), + [anon_sym___deprecated_enum_msg] = ACTIONS(2318), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2318), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2318), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2318), + [anon_sym_ATprotocol] = ACTIONS(2320), + [anon_sym_ATinterface] = ACTIONS(2320), + [anon_sym_ATimplementation] = ACTIONS(2320), + [anon_sym_ATcompatibility_alias] = ACTIONS(2320), + [anon_sym_ATcatch] = ACTIONS(2886), + [anon_sym___catch] = ACTIONS(2889), + [anon_sym_ATfinally] = ACTIONS(2320), + [anon_sym___finally] = ACTIONS(2318), + [anon_sym_ATselector] = ACTIONS(2320), + [anon_sym_ATavailable] = ACTIONS(2320), + [anon_sym___builtin_available] = ACTIONS(2318), + [anon_sym_va_arg] = ACTIONS(2318), + [anon_sym_ATencode] = ACTIONS(2320), + [anon_sym_BOOL] = ACTIONS(2318), + [anon_sym_IMP] = ACTIONS(2318), + [anon_sym_SEL] = ACTIONS(2318), + [anon_sym_Class] = ACTIONS(2318), + [anon_sym_id] = ACTIONS(2318), + }, + [559] = { + [sym_identifier] = ACTIONS(2428), + [aux_sym_preproc_include_token1] = ACTIONS(2428), + [aux_sym_preproc_include_token2] = ACTIONS(2428), + [aux_sym_preproc_def_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token2] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2428), + [sym_preproc_directive] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_STAR] = ACTIONS(2430), + [anon_sym_CARET] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym___cdecl] = ACTIONS(2428), + [anon_sym___clrcall] = ACTIONS(2428), + [anon_sym___stdcall] = ACTIONS(2428), + [anon_sym___fastcall] = ACTIONS(2428), + [anon_sym___thiscall] = ACTIONS(2428), + [anon_sym___vectorcall] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_ATautoreleasepool] = ACTIONS(2430), + [anon_sym_auto] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_CG_EXTERN] = ACTIONS(2428), + [anon_sym_CG_INLINE] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2428), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2428), + [anon_sym_IBOutlet] = ACTIONS(2428), + [anon_sym_IBInspectable] = ACTIONS(2428), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2428), + [anon_sym_NS_INLINE] = ACTIONS(2428), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2428), + [anon_sym_OBJC_EXPORT] = ACTIONS(2428), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_nullable] = ACTIONS(2428), + [anon_sym__Complex] = ACTIONS(2428), + [anon_sym__Nullable] = ACTIONS(2428), + [anon_sym__Nullable_result] = ACTIONS(2428), + [anon_sym__Null_unspecified] = ACTIONS(2428), + [anon_sym___autoreleasing] = ACTIONS(2428), + [anon_sym___block] = ACTIONS(2428), + [anon_sym___bridge] = ACTIONS(2428), + [anon_sym___bridge_retained] = ACTIONS(2428), + [anon_sym___bridge_transfer] = ACTIONS(2428), + [anon_sym___complex] = ACTIONS(2428), + [anon_sym___const] = ACTIONS(2428), + [anon_sym___imag] = ACTIONS(2428), + [anon_sym___kindof] = ACTIONS(2428), + [anon_sym___nonnull] = ACTIONS(2428), + [anon_sym___nullable] = ACTIONS(2428), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2428), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2428), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2428), + [anon_sym___real] = ACTIONS(2428), + [anon_sym___strong] = ACTIONS(2428), + [anon_sym___unsafe_unretained] = ACTIONS(2428), + [anon_sym___unused] = ACTIONS(2428), + [anon_sym___weak] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_else] = ACTIONS(2428), + [anon_sym_switch] = ACTIONS(2428), + [anon_sym_case] = ACTIONS(2428), + [anon_sym_default] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_do] = ACTIONS(2428), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_in] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_goto] = ACTIONS(2428), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_sizeof] = ACTIONS(2428), + [anon_sym___alignof__] = ACTIONS(2428), + [anon_sym___alignof] = ACTIONS(2428), + [anon_sym__alignof] = ACTIONS(2428), + [anon_sym_alignof] = ACTIONS(2428), + [anon_sym__Alignof] = ACTIONS(2428), + [anon_sym_offsetof] = ACTIONS(2428), + [anon_sym__Generic] = ACTIONS(2428), + [anon_sym_asm] = ACTIONS(2428), + [anon_sym___asm__] = ACTIONS(2428), + [anon_sym___asm] = ACTIONS(2428), + [sym_number_literal] = ACTIONS(2430), + [anon_sym_L_SQUOTE] = ACTIONS(2430), + [anon_sym_u_SQUOTE] = ACTIONS(2430), + [anon_sym_U_SQUOTE] = ACTIONS(2430), + [anon_sym_u8_SQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_AT] = ACTIONS(2428), + [anon_sym_DQUOTE] = ACTIONS(2430), + [anon_sym_L_DQUOTE] = ACTIONS(2430), + [anon_sym_u_DQUOTE] = ACTIONS(2430), + [anon_sym_U_DQUOTE] = ACTIONS(2430), + [anon_sym_u8_DQUOTE] = ACTIONS(2430), + [sym_true] = ACTIONS(2428), + [sym_false] = ACTIONS(2428), + [anon_sym_NULL] = ACTIONS(2428), + [anon_sym_nullptr] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2428), + [anon_sym___typeof] = ACTIONS(2428), + [anon_sym_typeof] = ACTIONS(2428), + [anon_sym_ATimport] = ACTIONS(2430), + [aux_sym_preproc_undef_token1] = ACTIONS(2428), + [anon_sym_POUND] = ACTIONS(2428), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2428), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2428), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2428), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2428), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE] = ACTIONS(2428), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_API_AVAILABLE] = ACTIONS(2428), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_API_DEPRECATED] = ACTIONS(2428), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2428), + [anon_sym___deprecated_msg] = ACTIONS(2428), + [anon_sym___deprecated_enum_msg] = ACTIONS(2428), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2428), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2428), + [anon_sym_ATprotocol] = ACTIONS(2430), + [anon_sym_ATinterface] = ACTIONS(2430), + [anon_sym_ATimplementation] = ACTIONS(2430), + [anon_sym_ATcompatibility_alias] = ACTIONS(2430), + [anon_sym_ATsynthesize] = ACTIONS(2430), + [anon_sym_ATdynamic] = ACTIONS(2430), + [anon_sym_ATtry] = ACTIONS(2430), + [anon_sym___try] = ACTIONS(2428), + [anon_sym_ATthrow] = ACTIONS(2430), + [anon_sym_ATselector] = ACTIONS(2430), + [anon_sym_ATavailable] = ACTIONS(2430), + [anon_sym___builtin_available] = ACTIONS(2428), + [anon_sym_va_arg] = ACTIONS(2428), + [anon_sym_ATencode] = ACTIONS(2430), + [anon_sym_ATsynchronized] = ACTIONS(2430), + [anon_sym_BOOL] = ACTIONS(2428), + [anon_sym_IMP] = ACTIONS(2428), + [anon_sym_SEL] = ACTIONS(2428), + [anon_sym_Class] = ACTIONS(2428), + [anon_sym_id] = ACTIONS(2428), + }, + [560] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [561] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [562] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [563] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [564] = { + [sym_identifier] = ACTIONS(2446), + [aux_sym_preproc_include_token1] = ACTIONS(2446), + [aux_sym_preproc_include_token2] = ACTIONS(2446), + [aux_sym_preproc_def_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token2] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2446), + [sym_preproc_directive] = ACTIONS(2446), + [anon_sym_LPAREN2] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_TILDE] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_STAR] = ACTIONS(2448), + [anon_sym_CARET] = ACTIONS(2448), + [anon_sym_AMP] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym___extension__] = ACTIONS(2446), + [anon_sym_typedef] = ACTIONS(2446), + [anon_sym_extern] = ACTIONS(2446), + [anon_sym___attribute__] = ACTIONS(2446), + [anon_sym___attribute] = ACTIONS(2446), + [anon_sym_noreturn] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym___declspec] = ACTIONS(2446), + [anon_sym___cdecl] = ACTIONS(2446), + [anon_sym___clrcall] = ACTIONS(2446), + [anon_sym___stdcall] = ACTIONS(2446), + [anon_sym___fastcall] = ACTIONS(2446), + [anon_sym___thiscall] = ACTIONS(2446), + [anon_sym___vectorcall] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_signed] = ACTIONS(2446), + [anon_sym_unsigned] = ACTIONS(2446), + [anon_sym_long] = ACTIONS(2446), + [anon_sym_short] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_ATautoreleasepool] = ACTIONS(2448), + [anon_sym_auto] = ACTIONS(2446), + [anon_sym_register] = ACTIONS(2446), + [anon_sym_inline] = ACTIONS(2446), + [anon_sym___inline] = ACTIONS(2446), + [anon_sym___inline__] = ACTIONS(2446), + [anon_sym___forceinline] = ACTIONS(2446), + [anon_sym_thread_local] = ACTIONS(2446), + [anon_sym___thread] = ACTIONS(2446), + [anon_sym_CG_EXTERN] = ACTIONS(2446), + [anon_sym_CG_INLINE] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2446), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2446), + [anon_sym_IBOutlet] = ACTIONS(2446), + [anon_sym_IBInspectable] = ACTIONS(2446), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2446), + [anon_sym_NS_INLINE] = ACTIONS(2446), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2446), + [anon_sym_OBJC_EXPORT] = ACTIONS(2446), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [anon_sym_constexpr] = ACTIONS(2446), + [anon_sym_volatile] = ACTIONS(2446), + [anon_sym_restrict] = ACTIONS(2446), + [anon_sym___restrict__] = ACTIONS(2446), + [anon_sym__Atomic] = ACTIONS(2446), + [anon_sym__Noreturn] = ACTIONS(2446), + [anon_sym__Nonnull] = ACTIONS(2446), + [anon_sym_nullable] = ACTIONS(2446), + [anon_sym__Complex] = ACTIONS(2446), + [anon_sym__Nullable] = ACTIONS(2446), + [anon_sym__Nullable_result] = ACTIONS(2446), + [anon_sym__Null_unspecified] = ACTIONS(2446), + [anon_sym___autoreleasing] = ACTIONS(2446), + [anon_sym___block] = ACTIONS(2446), + [anon_sym___bridge] = ACTIONS(2446), + [anon_sym___bridge_retained] = ACTIONS(2446), + [anon_sym___bridge_transfer] = ACTIONS(2446), + [anon_sym___complex] = ACTIONS(2446), + [anon_sym___const] = ACTIONS(2446), + [anon_sym___imag] = ACTIONS(2446), + [anon_sym___kindof] = ACTIONS(2446), + [anon_sym___nonnull] = ACTIONS(2446), + [anon_sym___nullable] = ACTIONS(2446), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2446), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2446), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2446), + [anon_sym___real] = ACTIONS(2446), + [anon_sym___strong] = ACTIONS(2446), + [anon_sym___unsafe_unretained] = ACTIONS(2446), + [anon_sym___unused] = ACTIONS(2446), + [anon_sym___weak] = ACTIONS(2446), + [anon_sym_alignas] = ACTIONS(2446), + [anon_sym__Alignas] = ACTIONS(2446), + [sym_primitive_type] = ACTIONS(2446), + [anon_sym_enum] = ACTIONS(2446), + [anon_sym_struct] = ACTIONS(2446), + [anon_sym_union] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2446), + [anon_sym_else] = ACTIONS(2446), + [anon_sym_switch] = ACTIONS(2446), + [anon_sym_case] = ACTIONS(2446), + [anon_sym_default] = ACTIONS(2446), + [anon_sym_while] = ACTIONS(2446), + [anon_sym_do] = ACTIONS(2446), + [anon_sym_for] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_return] = ACTIONS(2446), + [anon_sym_break] = ACTIONS(2446), + [anon_sym_continue] = ACTIONS(2446), + [anon_sym_goto] = ACTIONS(2446), + [anon_sym_DASH_DASH] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2448), + [anon_sym_sizeof] = ACTIONS(2446), + [anon_sym___alignof__] = ACTIONS(2446), + [anon_sym___alignof] = ACTIONS(2446), + [anon_sym__alignof] = ACTIONS(2446), + [anon_sym_alignof] = ACTIONS(2446), + [anon_sym__Alignof] = ACTIONS(2446), + [anon_sym_offsetof] = ACTIONS(2446), + [anon_sym__Generic] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(2446), + [anon_sym___asm__] = ACTIONS(2446), + [anon_sym___asm] = ACTIONS(2446), + [sym_number_literal] = ACTIONS(2448), + [anon_sym_L_SQUOTE] = ACTIONS(2448), + [anon_sym_u_SQUOTE] = ACTIONS(2448), + [anon_sym_U_SQUOTE] = ACTIONS(2448), + [anon_sym_u8_SQUOTE] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_L_DQUOTE] = ACTIONS(2448), + [anon_sym_u_DQUOTE] = ACTIONS(2448), + [anon_sym_U_DQUOTE] = ACTIONS(2448), + [anon_sym_u8_DQUOTE] = ACTIONS(2448), + [sym_true] = ACTIONS(2446), + [sym_false] = ACTIONS(2446), + [anon_sym_NULL] = ACTIONS(2446), + [anon_sym_nullptr] = ACTIONS(2446), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2446), + [anon_sym___typeof] = ACTIONS(2446), + [anon_sym_typeof] = ACTIONS(2446), + [anon_sym_ATimport] = ACTIONS(2448), + [aux_sym_preproc_undef_token1] = ACTIONS(2446), + [anon_sym_POUND] = ACTIONS(2446), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2446), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2446), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2446), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2446), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE] = ACTIONS(2446), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_API_AVAILABLE] = ACTIONS(2446), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_API_DEPRECATED] = ACTIONS(2446), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2446), + [anon_sym___deprecated_msg] = ACTIONS(2446), + [anon_sym___deprecated_enum_msg] = ACTIONS(2446), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2446), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2446), + [anon_sym_ATprotocol] = ACTIONS(2448), + [anon_sym_ATinterface] = ACTIONS(2448), + [anon_sym_ATimplementation] = ACTIONS(2448), + [anon_sym_ATcompatibility_alias] = ACTIONS(2448), + [anon_sym_ATsynthesize] = ACTIONS(2448), + [anon_sym_ATdynamic] = ACTIONS(2448), + [anon_sym_ATtry] = ACTIONS(2448), + [anon_sym___try] = ACTIONS(2446), + [anon_sym_ATthrow] = ACTIONS(2448), + [anon_sym_ATselector] = ACTIONS(2448), + [anon_sym_ATavailable] = ACTIONS(2448), + [anon_sym___builtin_available] = ACTIONS(2446), + [anon_sym_va_arg] = ACTIONS(2446), + [anon_sym_ATencode] = ACTIONS(2448), + [anon_sym_ATsynchronized] = ACTIONS(2448), + [anon_sym_BOOL] = ACTIONS(2446), + [anon_sym_IMP] = ACTIONS(2446), + [anon_sym_SEL] = ACTIONS(2446), + [anon_sym_Class] = ACTIONS(2446), + [anon_sym_id] = ACTIONS(2446), + }, + [565] = { + [sym_identifier] = ACTIONS(2450), + [aux_sym_preproc_include_token1] = ACTIONS(2450), + [aux_sym_preproc_include_token2] = ACTIONS(2450), + [aux_sym_preproc_def_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token2] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2450), + [anon_sym_LPAREN2] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_CARET] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym___cdecl] = ACTIONS(2450), + [anon_sym___clrcall] = ACTIONS(2450), + [anon_sym___stdcall] = ACTIONS(2450), + [anon_sym___fastcall] = ACTIONS(2450), + [anon_sym___thiscall] = ACTIONS(2450), + [anon_sym___vectorcall] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2452), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_ATautoreleasepool] = ACTIONS(2452), + [anon_sym_auto] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_CG_EXTERN] = ACTIONS(2450), + [anon_sym_CG_INLINE] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2450), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2450), + [anon_sym_IBOutlet] = ACTIONS(2450), + [anon_sym_IBInspectable] = ACTIONS(2450), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2450), + [anon_sym_NS_INLINE] = ACTIONS(2450), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2450), + [anon_sym_OBJC_EXPORT] = ACTIONS(2450), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_nullable] = ACTIONS(2450), + [anon_sym__Complex] = ACTIONS(2450), + [anon_sym__Nullable] = ACTIONS(2450), + [anon_sym__Nullable_result] = ACTIONS(2450), + [anon_sym__Null_unspecified] = ACTIONS(2450), + [anon_sym___autoreleasing] = ACTIONS(2450), + [anon_sym___block] = ACTIONS(2450), + [anon_sym___bridge] = ACTIONS(2450), + [anon_sym___bridge_retained] = ACTIONS(2450), + [anon_sym___bridge_transfer] = ACTIONS(2450), + [anon_sym___complex] = ACTIONS(2450), + [anon_sym___const] = ACTIONS(2450), + [anon_sym___imag] = ACTIONS(2450), + [anon_sym___kindof] = ACTIONS(2450), + [anon_sym___nonnull] = ACTIONS(2450), + [anon_sym___nullable] = ACTIONS(2450), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2450), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2450), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2450), + [anon_sym___real] = ACTIONS(2450), + [anon_sym___strong] = ACTIONS(2450), + [anon_sym___unsafe_unretained] = ACTIONS(2450), + [anon_sym___unused] = ACTIONS(2450), + [anon_sym___weak] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_else] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2450), + [anon_sym_case] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2450), + [anon_sym_while] = ACTIONS(2450), + [anon_sym_do] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_break] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_goto] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2452), + [anon_sym_sizeof] = ACTIONS(2450), + [anon_sym___alignof__] = ACTIONS(2450), + [anon_sym___alignof] = ACTIONS(2450), + [anon_sym__alignof] = ACTIONS(2450), + [anon_sym_alignof] = ACTIONS(2450), + [anon_sym__Alignof] = ACTIONS(2450), + [anon_sym_offsetof] = ACTIONS(2450), + [anon_sym__Generic] = ACTIONS(2450), + [anon_sym_asm] = ACTIONS(2450), + [anon_sym___asm__] = ACTIONS(2450), + [anon_sym___asm] = ACTIONS(2450), + [sym_number_literal] = ACTIONS(2452), + [anon_sym_L_SQUOTE] = ACTIONS(2452), + [anon_sym_u_SQUOTE] = ACTIONS(2452), + [anon_sym_U_SQUOTE] = ACTIONS(2452), + [anon_sym_u8_SQUOTE] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(2452), + [anon_sym_AT] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2452), + [anon_sym_L_DQUOTE] = ACTIONS(2452), + [anon_sym_u_DQUOTE] = ACTIONS(2452), + [anon_sym_U_DQUOTE] = ACTIONS(2452), + [anon_sym_u8_DQUOTE] = ACTIONS(2452), + [sym_true] = ACTIONS(2450), + [sym_false] = ACTIONS(2450), + [anon_sym_NULL] = ACTIONS(2450), + [anon_sym_nullptr] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2450), + [anon_sym___typeof] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [anon_sym_ATimport] = ACTIONS(2452), + [aux_sym_preproc_undef_token1] = ACTIONS(2450), + [anon_sym_POUND] = ACTIONS(2450), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2450), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2450), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2450), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2450), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE] = ACTIONS(2450), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_API_AVAILABLE] = ACTIONS(2450), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_API_DEPRECATED] = ACTIONS(2450), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2450), + [anon_sym___deprecated_msg] = ACTIONS(2450), + [anon_sym___deprecated_enum_msg] = ACTIONS(2450), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2450), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2450), + [anon_sym_ATprotocol] = ACTIONS(2452), + [anon_sym_ATinterface] = ACTIONS(2452), + [anon_sym_ATimplementation] = ACTIONS(2452), + [anon_sym_ATcompatibility_alias] = ACTIONS(2452), + [anon_sym_ATsynthesize] = ACTIONS(2452), + [anon_sym_ATdynamic] = ACTIONS(2452), + [anon_sym_ATtry] = ACTIONS(2452), + [anon_sym___try] = ACTIONS(2450), + [anon_sym_ATthrow] = ACTIONS(2452), + [anon_sym_ATselector] = ACTIONS(2452), + [anon_sym_ATavailable] = ACTIONS(2452), + [anon_sym___builtin_available] = ACTIONS(2450), + [anon_sym_va_arg] = ACTIONS(2450), + [anon_sym_ATencode] = ACTIONS(2452), + [anon_sym_ATsynchronized] = ACTIONS(2452), + [anon_sym_BOOL] = ACTIONS(2450), + [anon_sym_IMP] = ACTIONS(2450), + [anon_sym_SEL] = ACTIONS(2450), + [anon_sym_Class] = ACTIONS(2450), + [anon_sym_id] = ACTIONS(2450), + }, + [566] = { + [sym_identifier] = ACTIONS(2454), + [aux_sym_preproc_include_token1] = ACTIONS(2454), + [aux_sym_preproc_include_token2] = ACTIONS(2454), + [aux_sym_preproc_def_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token2] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2454), + [sym_preproc_directive] = ACTIONS(2454), + [anon_sym_LPAREN2] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_CARET] = ACTIONS(2456), + [anon_sym_AMP] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym___extension__] = ACTIONS(2454), + [anon_sym_typedef] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym___attribute__] = ACTIONS(2454), + [anon_sym___attribute] = ACTIONS(2454), + [anon_sym_noreturn] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym___declspec] = ACTIONS(2454), + [anon_sym___cdecl] = ACTIONS(2454), + [anon_sym___clrcall] = ACTIONS(2454), + [anon_sym___stdcall] = ACTIONS(2454), + [anon_sym___fastcall] = ACTIONS(2454), + [anon_sym___thiscall] = ACTIONS(2454), + [anon_sym___vectorcall] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_signed] = ACTIONS(2454), + [anon_sym_unsigned] = ACTIONS(2454), + [anon_sym_long] = ACTIONS(2454), + [anon_sym_short] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_ATautoreleasepool] = ACTIONS(2456), + [anon_sym_auto] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_inline] = ACTIONS(2454), + [anon_sym___inline] = ACTIONS(2454), + [anon_sym___inline__] = ACTIONS(2454), + [anon_sym___forceinline] = ACTIONS(2454), + [anon_sym_thread_local] = ACTIONS(2454), + [anon_sym___thread] = ACTIONS(2454), + [anon_sym_CG_EXTERN] = ACTIONS(2454), + [anon_sym_CG_INLINE] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2454), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2454), + [anon_sym_IBOutlet] = ACTIONS(2454), + [anon_sym_IBInspectable] = ACTIONS(2454), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2454), + [anon_sym_NS_INLINE] = ACTIONS(2454), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2454), + [anon_sym_OBJC_EXPORT] = ACTIONS(2454), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_constexpr] = ACTIONS(2454), + [anon_sym_volatile] = ACTIONS(2454), + [anon_sym_restrict] = ACTIONS(2454), + [anon_sym___restrict__] = ACTIONS(2454), + [anon_sym__Atomic] = ACTIONS(2454), + [anon_sym__Noreturn] = ACTIONS(2454), + [anon_sym__Nonnull] = ACTIONS(2454), + [anon_sym_nullable] = ACTIONS(2454), + [anon_sym__Complex] = ACTIONS(2454), + [anon_sym__Nullable] = ACTIONS(2454), + [anon_sym__Nullable_result] = ACTIONS(2454), + [anon_sym__Null_unspecified] = ACTIONS(2454), + [anon_sym___autoreleasing] = ACTIONS(2454), + [anon_sym___block] = ACTIONS(2454), + [anon_sym___bridge] = ACTIONS(2454), + [anon_sym___bridge_retained] = ACTIONS(2454), + [anon_sym___bridge_transfer] = ACTIONS(2454), + [anon_sym___complex] = ACTIONS(2454), + [anon_sym___const] = ACTIONS(2454), + [anon_sym___imag] = ACTIONS(2454), + [anon_sym___kindof] = ACTIONS(2454), + [anon_sym___nonnull] = ACTIONS(2454), + [anon_sym___nullable] = ACTIONS(2454), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2454), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2454), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2454), + [anon_sym___real] = ACTIONS(2454), + [anon_sym___strong] = ACTIONS(2454), + [anon_sym___unsafe_unretained] = ACTIONS(2454), + [anon_sym___unused] = ACTIONS(2454), + [anon_sym___weak] = ACTIONS(2454), + [anon_sym_alignas] = ACTIONS(2454), + [anon_sym__Alignas] = ACTIONS(2454), + [sym_primitive_type] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2454), + [anon_sym_else] = ACTIONS(2454), + [anon_sym_switch] = ACTIONS(2454), + [anon_sym_case] = ACTIONS(2454), + [anon_sym_default] = ACTIONS(2454), + [anon_sym_while] = ACTIONS(2454), + [anon_sym_do] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_in] = ACTIONS(2454), + [anon_sym_return] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_goto] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_sizeof] = ACTIONS(2454), + [anon_sym___alignof__] = ACTIONS(2454), + [anon_sym___alignof] = ACTIONS(2454), + [anon_sym__alignof] = ACTIONS(2454), + [anon_sym_alignof] = ACTIONS(2454), + [anon_sym__Alignof] = ACTIONS(2454), + [anon_sym_offsetof] = ACTIONS(2454), + [anon_sym__Generic] = ACTIONS(2454), + [anon_sym_asm] = ACTIONS(2454), + [anon_sym___asm__] = ACTIONS(2454), + [anon_sym___asm] = ACTIONS(2454), + [sym_number_literal] = ACTIONS(2456), + [anon_sym_L_SQUOTE] = ACTIONS(2456), + [anon_sym_u_SQUOTE] = ACTIONS(2456), + [anon_sym_U_SQUOTE] = ACTIONS(2456), + [anon_sym_u8_SQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_L_DQUOTE] = ACTIONS(2456), + [anon_sym_u_DQUOTE] = ACTIONS(2456), + [anon_sym_U_DQUOTE] = ACTIONS(2456), + [anon_sym_u8_DQUOTE] = ACTIONS(2456), + [sym_true] = ACTIONS(2454), + [sym_false] = ACTIONS(2454), + [anon_sym_NULL] = ACTIONS(2454), + [anon_sym_nullptr] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2454), + [anon_sym___typeof] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(2454), + [anon_sym_ATimport] = ACTIONS(2456), + [aux_sym_preproc_undef_token1] = ACTIONS(2454), + [anon_sym_POUND] = ACTIONS(2454), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2454), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2454), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2454), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2454), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE] = ACTIONS(2454), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_API_AVAILABLE] = ACTIONS(2454), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_API_DEPRECATED] = ACTIONS(2454), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2454), + [anon_sym___deprecated_msg] = ACTIONS(2454), + [anon_sym___deprecated_enum_msg] = ACTIONS(2454), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2454), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2454), + [anon_sym_ATprotocol] = ACTIONS(2456), + [anon_sym_ATinterface] = ACTIONS(2456), + [anon_sym_ATimplementation] = ACTIONS(2456), + [anon_sym_ATcompatibility_alias] = ACTIONS(2456), + [anon_sym_ATsynthesize] = ACTIONS(2456), + [anon_sym_ATdynamic] = ACTIONS(2456), + [anon_sym_ATtry] = ACTIONS(2456), + [anon_sym___try] = ACTIONS(2454), + [anon_sym_ATthrow] = ACTIONS(2456), + [anon_sym_ATselector] = ACTIONS(2456), + [anon_sym_ATavailable] = ACTIONS(2456), + [anon_sym___builtin_available] = ACTIONS(2454), + [anon_sym_va_arg] = ACTIONS(2454), + [anon_sym_ATencode] = ACTIONS(2456), + [anon_sym_ATsynchronized] = ACTIONS(2456), + [anon_sym_BOOL] = ACTIONS(2454), + [anon_sym_IMP] = ACTIONS(2454), + [anon_sym_SEL] = ACTIONS(2454), + [anon_sym_Class] = ACTIONS(2454), + [anon_sym_id] = ACTIONS(2454), + }, + [567] = { + [sym_identifier] = ACTIONS(2454), + [aux_sym_preproc_include_token1] = ACTIONS(2454), + [aux_sym_preproc_include_token2] = ACTIONS(2454), + [aux_sym_preproc_def_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token2] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2454), + [sym_preproc_directive] = ACTIONS(2454), + [anon_sym_LPAREN2] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_CARET] = ACTIONS(2456), + [anon_sym_AMP] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym___extension__] = ACTIONS(2454), + [anon_sym_typedef] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym___attribute__] = ACTIONS(2454), + [anon_sym___attribute] = ACTIONS(2454), + [anon_sym_noreturn] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym___declspec] = ACTIONS(2454), + [anon_sym___cdecl] = ACTIONS(2454), + [anon_sym___clrcall] = ACTIONS(2454), + [anon_sym___stdcall] = ACTIONS(2454), + [anon_sym___fastcall] = ACTIONS(2454), + [anon_sym___thiscall] = ACTIONS(2454), + [anon_sym___vectorcall] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_signed] = ACTIONS(2454), + [anon_sym_unsigned] = ACTIONS(2454), + [anon_sym_long] = ACTIONS(2454), + [anon_sym_short] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_ATautoreleasepool] = ACTIONS(2456), + [anon_sym_auto] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_inline] = ACTIONS(2454), + [anon_sym___inline] = ACTIONS(2454), + [anon_sym___inline__] = ACTIONS(2454), + [anon_sym___forceinline] = ACTIONS(2454), + [anon_sym_thread_local] = ACTIONS(2454), + [anon_sym___thread] = ACTIONS(2454), + [anon_sym_CG_EXTERN] = ACTIONS(2454), + [anon_sym_CG_INLINE] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2454), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2454), + [anon_sym_IBOutlet] = ACTIONS(2454), + [anon_sym_IBInspectable] = ACTIONS(2454), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2454), + [anon_sym_NS_INLINE] = ACTIONS(2454), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2454), + [anon_sym_OBJC_EXPORT] = ACTIONS(2454), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_constexpr] = ACTIONS(2454), + [anon_sym_volatile] = ACTIONS(2454), + [anon_sym_restrict] = ACTIONS(2454), + [anon_sym___restrict__] = ACTIONS(2454), + [anon_sym__Atomic] = ACTIONS(2454), + [anon_sym__Noreturn] = ACTIONS(2454), + [anon_sym__Nonnull] = ACTIONS(2454), + [anon_sym_nullable] = ACTIONS(2454), + [anon_sym__Complex] = ACTIONS(2454), + [anon_sym__Nullable] = ACTIONS(2454), + [anon_sym__Nullable_result] = ACTIONS(2454), + [anon_sym__Null_unspecified] = ACTIONS(2454), + [anon_sym___autoreleasing] = ACTIONS(2454), + [anon_sym___block] = ACTIONS(2454), + [anon_sym___bridge] = ACTIONS(2454), + [anon_sym___bridge_retained] = ACTIONS(2454), + [anon_sym___bridge_transfer] = ACTIONS(2454), + [anon_sym___complex] = ACTIONS(2454), + [anon_sym___const] = ACTIONS(2454), + [anon_sym___imag] = ACTIONS(2454), + [anon_sym___kindof] = ACTIONS(2454), + [anon_sym___nonnull] = ACTIONS(2454), + [anon_sym___nullable] = ACTIONS(2454), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2454), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2454), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2454), + [anon_sym___real] = ACTIONS(2454), + [anon_sym___strong] = ACTIONS(2454), + [anon_sym___unsafe_unretained] = ACTIONS(2454), + [anon_sym___unused] = ACTIONS(2454), + [anon_sym___weak] = ACTIONS(2454), + [anon_sym_alignas] = ACTIONS(2454), + [anon_sym__Alignas] = ACTIONS(2454), + [sym_primitive_type] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2454), + [anon_sym_else] = ACTIONS(2454), + [anon_sym_switch] = ACTIONS(2454), + [anon_sym_case] = ACTIONS(2454), + [anon_sym_default] = ACTIONS(2454), + [anon_sym_while] = ACTIONS(2454), + [anon_sym_do] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_in] = ACTIONS(2454), + [anon_sym_return] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_goto] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_sizeof] = ACTIONS(2454), + [anon_sym___alignof__] = ACTIONS(2454), + [anon_sym___alignof] = ACTIONS(2454), + [anon_sym__alignof] = ACTIONS(2454), + [anon_sym_alignof] = ACTIONS(2454), + [anon_sym__Alignof] = ACTIONS(2454), + [anon_sym_offsetof] = ACTIONS(2454), + [anon_sym__Generic] = ACTIONS(2454), + [anon_sym_asm] = ACTIONS(2454), + [anon_sym___asm__] = ACTIONS(2454), + [anon_sym___asm] = ACTIONS(2454), + [sym_number_literal] = ACTIONS(2456), + [anon_sym_L_SQUOTE] = ACTIONS(2456), + [anon_sym_u_SQUOTE] = ACTIONS(2456), + [anon_sym_U_SQUOTE] = ACTIONS(2456), + [anon_sym_u8_SQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_L_DQUOTE] = ACTIONS(2456), + [anon_sym_u_DQUOTE] = ACTIONS(2456), + [anon_sym_U_DQUOTE] = ACTIONS(2456), + [anon_sym_u8_DQUOTE] = ACTIONS(2456), + [sym_true] = ACTIONS(2454), + [sym_false] = ACTIONS(2454), + [anon_sym_NULL] = ACTIONS(2454), + [anon_sym_nullptr] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2454), + [anon_sym___typeof] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(2454), + [anon_sym_ATimport] = ACTIONS(2456), + [aux_sym_preproc_undef_token1] = ACTIONS(2454), + [anon_sym_POUND] = ACTIONS(2454), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2454), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2454), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2454), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2454), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE] = ACTIONS(2454), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_API_AVAILABLE] = ACTIONS(2454), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_API_DEPRECATED] = ACTIONS(2454), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2454), + [anon_sym___deprecated_msg] = ACTIONS(2454), + [anon_sym___deprecated_enum_msg] = ACTIONS(2454), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2454), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2454), + [anon_sym_ATprotocol] = ACTIONS(2456), + [anon_sym_ATinterface] = ACTIONS(2456), + [anon_sym_ATimplementation] = ACTIONS(2456), + [anon_sym_ATcompatibility_alias] = ACTIONS(2456), + [anon_sym_ATsynthesize] = ACTIONS(2456), + [anon_sym_ATdynamic] = ACTIONS(2456), + [anon_sym_ATtry] = ACTIONS(2456), + [anon_sym___try] = ACTIONS(2454), + [anon_sym_ATthrow] = ACTIONS(2456), + [anon_sym_ATselector] = ACTIONS(2456), + [anon_sym_ATavailable] = ACTIONS(2456), + [anon_sym___builtin_available] = ACTIONS(2454), + [anon_sym_va_arg] = ACTIONS(2454), + [anon_sym_ATencode] = ACTIONS(2456), + [anon_sym_ATsynchronized] = ACTIONS(2456), + [anon_sym_BOOL] = ACTIONS(2454), + [anon_sym_IMP] = ACTIONS(2454), + [anon_sym_SEL] = ACTIONS(2454), + [anon_sym_Class] = ACTIONS(2454), + [anon_sym_id] = ACTIONS(2454), + }, + [568] = { + [sym_identifier] = ACTIONS(2446), + [aux_sym_preproc_include_token1] = ACTIONS(2446), + [aux_sym_preproc_include_token2] = ACTIONS(2446), + [aux_sym_preproc_def_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token2] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2446), + [sym_preproc_directive] = ACTIONS(2446), + [anon_sym_LPAREN2] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_TILDE] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_STAR] = ACTIONS(2448), + [anon_sym_CARET] = ACTIONS(2448), + [anon_sym_AMP] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym___extension__] = ACTIONS(2446), + [anon_sym_typedef] = ACTIONS(2446), + [anon_sym_extern] = ACTIONS(2446), + [anon_sym___attribute__] = ACTIONS(2446), + [anon_sym___attribute] = ACTIONS(2446), + [anon_sym_noreturn] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym___declspec] = ACTIONS(2446), + [anon_sym___cdecl] = ACTIONS(2446), + [anon_sym___clrcall] = ACTIONS(2446), + [anon_sym___stdcall] = ACTIONS(2446), + [anon_sym___fastcall] = ACTIONS(2446), + [anon_sym___thiscall] = ACTIONS(2446), + [anon_sym___vectorcall] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_signed] = ACTIONS(2446), + [anon_sym_unsigned] = ACTIONS(2446), + [anon_sym_long] = ACTIONS(2446), + [anon_sym_short] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_ATautoreleasepool] = ACTIONS(2448), + [anon_sym_auto] = ACTIONS(2446), + [anon_sym_register] = ACTIONS(2446), + [anon_sym_inline] = ACTIONS(2446), + [anon_sym___inline] = ACTIONS(2446), + [anon_sym___inline__] = ACTIONS(2446), + [anon_sym___forceinline] = ACTIONS(2446), + [anon_sym_thread_local] = ACTIONS(2446), + [anon_sym___thread] = ACTIONS(2446), + [anon_sym_CG_EXTERN] = ACTIONS(2446), + [anon_sym_CG_INLINE] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2446), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2446), + [anon_sym_IBOutlet] = ACTIONS(2446), + [anon_sym_IBInspectable] = ACTIONS(2446), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2446), + [anon_sym_NS_INLINE] = ACTIONS(2446), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2446), + [anon_sym_OBJC_EXPORT] = ACTIONS(2446), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [anon_sym_constexpr] = ACTIONS(2446), + [anon_sym_volatile] = ACTIONS(2446), + [anon_sym_restrict] = ACTIONS(2446), + [anon_sym___restrict__] = ACTIONS(2446), + [anon_sym__Atomic] = ACTIONS(2446), + [anon_sym__Noreturn] = ACTIONS(2446), + [anon_sym__Nonnull] = ACTIONS(2446), + [anon_sym_nullable] = ACTIONS(2446), + [anon_sym__Complex] = ACTIONS(2446), + [anon_sym__Nullable] = ACTIONS(2446), + [anon_sym__Nullable_result] = ACTIONS(2446), + [anon_sym__Null_unspecified] = ACTIONS(2446), + [anon_sym___autoreleasing] = ACTIONS(2446), + [anon_sym___block] = ACTIONS(2446), + [anon_sym___bridge] = ACTIONS(2446), + [anon_sym___bridge_retained] = ACTIONS(2446), + [anon_sym___bridge_transfer] = ACTIONS(2446), + [anon_sym___complex] = ACTIONS(2446), + [anon_sym___const] = ACTIONS(2446), + [anon_sym___imag] = ACTIONS(2446), + [anon_sym___kindof] = ACTIONS(2446), + [anon_sym___nonnull] = ACTIONS(2446), + [anon_sym___nullable] = ACTIONS(2446), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2446), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2446), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2446), + [anon_sym___real] = ACTIONS(2446), + [anon_sym___strong] = ACTIONS(2446), + [anon_sym___unsafe_unretained] = ACTIONS(2446), + [anon_sym___unused] = ACTIONS(2446), + [anon_sym___weak] = ACTIONS(2446), + [anon_sym_alignas] = ACTIONS(2446), + [anon_sym__Alignas] = ACTIONS(2446), + [sym_primitive_type] = ACTIONS(2446), + [anon_sym_enum] = ACTIONS(2446), + [anon_sym_struct] = ACTIONS(2446), + [anon_sym_union] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2446), + [anon_sym_else] = ACTIONS(2446), + [anon_sym_switch] = ACTIONS(2446), + [anon_sym_case] = ACTIONS(2446), + [anon_sym_default] = ACTIONS(2446), + [anon_sym_while] = ACTIONS(2446), + [anon_sym_do] = ACTIONS(2446), + [anon_sym_for] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_return] = ACTIONS(2446), + [anon_sym_break] = ACTIONS(2446), + [anon_sym_continue] = ACTIONS(2446), + [anon_sym_goto] = ACTIONS(2446), + [anon_sym_DASH_DASH] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2448), + [anon_sym_sizeof] = ACTIONS(2446), + [anon_sym___alignof__] = ACTIONS(2446), + [anon_sym___alignof] = ACTIONS(2446), + [anon_sym__alignof] = ACTIONS(2446), + [anon_sym_alignof] = ACTIONS(2446), + [anon_sym__Alignof] = ACTIONS(2446), + [anon_sym_offsetof] = ACTIONS(2446), + [anon_sym__Generic] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(2446), + [anon_sym___asm__] = ACTIONS(2446), + [anon_sym___asm] = ACTIONS(2446), + [sym_number_literal] = ACTIONS(2448), + [anon_sym_L_SQUOTE] = ACTIONS(2448), + [anon_sym_u_SQUOTE] = ACTIONS(2448), + [anon_sym_U_SQUOTE] = ACTIONS(2448), + [anon_sym_u8_SQUOTE] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_L_DQUOTE] = ACTIONS(2448), + [anon_sym_u_DQUOTE] = ACTIONS(2448), + [anon_sym_U_DQUOTE] = ACTIONS(2448), + [anon_sym_u8_DQUOTE] = ACTIONS(2448), + [sym_true] = ACTIONS(2446), + [sym_false] = ACTIONS(2446), + [anon_sym_NULL] = ACTIONS(2446), + [anon_sym_nullptr] = ACTIONS(2446), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2446), + [anon_sym___typeof] = ACTIONS(2446), + [anon_sym_typeof] = ACTIONS(2446), + [anon_sym_ATimport] = ACTIONS(2448), + [aux_sym_preproc_undef_token1] = ACTIONS(2446), + [anon_sym_POUND] = ACTIONS(2446), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2446), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2446), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2446), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2446), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE] = ACTIONS(2446), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_API_AVAILABLE] = ACTIONS(2446), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_API_DEPRECATED] = ACTIONS(2446), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2446), + [anon_sym___deprecated_msg] = ACTIONS(2446), + [anon_sym___deprecated_enum_msg] = ACTIONS(2446), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2446), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2446), + [anon_sym_ATprotocol] = ACTIONS(2448), + [anon_sym_ATinterface] = ACTIONS(2448), + [anon_sym_ATimplementation] = ACTIONS(2448), + [anon_sym_ATcompatibility_alias] = ACTIONS(2448), + [anon_sym_ATsynthesize] = ACTIONS(2448), + [anon_sym_ATdynamic] = ACTIONS(2448), + [anon_sym_ATtry] = ACTIONS(2448), + [anon_sym___try] = ACTIONS(2446), + [anon_sym_ATthrow] = ACTIONS(2448), + [anon_sym_ATselector] = ACTIONS(2448), + [anon_sym_ATavailable] = ACTIONS(2448), + [anon_sym___builtin_available] = ACTIONS(2446), + [anon_sym_va_arg] = ACTIONS(2446), + [anon_sym_ATencode] = ACTIONS(2448), + [anon_sym_ATsynchronized] = ACTIONS(2448), + [anon_sym_BOOL] = ACTIONS(2446), + [anon_sym_IMP] = ACTIONS(2446), + [anon_sym_SEL] = ACTIONS(2446), + [anon_sym_Class] = ACTIONS(2446), + [anon_sym_id] = ACTIONS(2446), + }, + [569] = { + [sym_identifier] = ACTIONS(2478), + [aux_sym_preproc_include_token1] = ACTIONS(2478), + [aux_sym_preproc_include_token2] = ACTIONS(2478), + [aux_sym_preproc_def_token1] = ACTIONS(2478), + [aux_sym_preproc_if_token1] = ACTIONS(2478), + [aux_sym_preproc_if_token2] = ACTIONS(2478), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2478), + [sym_preproc_directive] = ACTIONS(2478), + [anon_sym_LPAREN2] = ACTIONS(2480), + [anon_sym_BANG] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2478), + [anon_sym_PLUS] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2480), + [anon_sym_CARET] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2480), + [anon_sym_SEMI] = ACTIONS(2480), + [anon_sym___extension__] = ACTIONS(2478), + [anon_sym_typedef] = ACTIONS(2478), + [anon_sym_extern] = ACTIONS(2478), + [anon_sym___attribute__] = ACTIONS(2478), + [anon_sym___attribute] = ACTIONS(2478), + [anon_sym_noreturn] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2480), + [anon_sym___declspec] = ACTIONS(2478), + [anon_sym___cdecl] = ACTIONS(2478), + [anon_sym___clrcall] = ACTIONS(2478), + [anon_sym___stdcall] = ACTIONS(2478), + [anon_sym___fastcall] = ACTIONS(2478), + [anon_sym___thiscall] = ACTIONS(2478), + [anon_sym___vectorcall] = ACTIONS(2478), + [anon_sym_LBRACE] = ACTIONS(2480), + [anon_sym_signed] = ACTIONS(2478), + [anon_sym_unsigned] = ACTIONS(2478), + [anon_sym_long] = ACTIONS(2478), + [anon_sym_short] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_ATautoreleasepool] = ACTIONS(2480), + [anon_sym_auto] = ACTIONS(2478), + [anon_sym_register] = ACTIONS(2478), + [anon_sym_inline] = ACTIONS(2478), + [anon_sym___inline] = ACTIONS(2478), + [anon_sym___inline__] = ACTIONS(2478), + [anon_sym___forceinline] = ACTIONS(2478), + [anon_sym_thread_local] = ACTIONS(2478), + [anon_sym___thread] = ACTIONS(2478), + [anon_sym_CG_EXTERN] = ACTIONS(2478), + [anon_sym_CG_INLINE] = ACTIONS(2478), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2478), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2478), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2478), + [anon_sym_IBOutlet] = ACTIONS(2478), + [anon_sym_IBInspectable] = ACTIONS(2478), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2478), + [anon_sym_NS_INLINE] = ACTIONS(2478), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2478), + [anon_sym_OBJC_EXPORT] = ACTIONS(2478), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2478), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [anon_sym_constexpr] = ACTIONS(2478), + [anon_sym_volatile] = ACTIONS(2478), + [anon_sym_restrict] = ACTIONS(2478), + [anon_sym___restrict__] = ACTIONS(2478), + [anon_sym__Atomic] = ACTIONS(2478), + [anon_sym__Noreturn] = ACTIONS(2478), + [anon_sym__Nonnull] = ACTIONS(2478), + [anon_sym_nullable] = ACTIONS(2478), + [anon_sym__Complex] = ACTIONS(2478), + [anon_sym__Nullable] = ACTIONS(2478), + [anon_sym__Nullable_result] = ACTIONS(2478), + [anon_sym__Null_unspecified] = ACTIONS(2478), + [anon_sym___autoreleasing] = ACTIONS(2478), + [anon_sym___block] = ACTIONS(2478), + [anon_sym___bridge] = ACTIONS(2478), + [anon_sym___bridge_retained] = ACTIONS(2478), + [anon_sym___bridge_transfer] = ACTIONS(2478), + [anon_sym___complex] = ACTIONS(2478), + [anon_sym___const] = ACTIONS(2478), + [anon_sym___imag] = ACTIONS(2478), + [anon_sym___kindof] = ACTIONS(2478), + [anon_sym___nonnull] = ACTIONS(2478), + [anon_sym___nullable] = ACTIONS(2478), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2478), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2478), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2478), + [anon_sym___real] = ACTIONS(2478), + [anon_sym___strong] = ACTIONS(2478), + [anon_sym___unsafe_unretained] = ACTIONS(2478), + [anon_sym___unused] = ACTIONS(2478), + [anon_sym___weak] = ACTIONS(2478), + [anon_sym_alignas] = ACTIONS(2478), + [anon_sym__Alignas] = ACTIONS(2478), + [sym_primitive_type] = ACTIONS(2478), + [anon_sym_enum] = ACTIONS(2478), + [anon_sym_struct] = ACTIONS(2478), + [anon_sym_union] = ACTIONS(2478), + [anon_sym_if] = ACTIONS(2478), + [anon_sym_else] = ACTIONS(2478), + [anon_sym_switch] = ACTIONS(2478), + [anon_sym_case] = ACTIONS(2478), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2478), + [anon_sym_do] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_in] = ACTIONS(2478), + [anon_sym_return] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_goto] = ACTIONS(2478), + [anon_sym_DASH_DASH] = ACTIONS(2480), + [anon_sym_PLUS_PLUS] = ACTIONS(2480), + [anon_sym_sizeof] = ACTIONS(2478), + [anon_sym___alignof__] = ACTIONS(2478), + [anon_sym___alignof] = ACTIONS(2478), + [anon_sym__alignof] = ACTIONS(2478), + [anon_sym_alignof] = ACTIONS(2478), + [anon_sym__Alignof] = ACTIONS(2478), + [anon_sym_offsetof] = ACTIONS(2478), + [anon_sym__Generic] = ACTIONS(2478), + [anon_sym_asm] = ACTIONS(2478), + [anon_sym___asm__] = ACTIONS(2478), + [anon_sym___asm] = ACTIONS(2478), + [sym_number_literal] = ACTIONS(2480), + [anon_sym_L_SQUOTE] = ACTIONS(2480), + [anon_sym_u_SQUOTE] = ACTIONS(2480), + [anon_sym_U_SQUOTE] = ACTIONS(2480), + [anon_sym_u8_SQUOTE] = ACTIONS(2480), + [anon_sym_SQUOTE] = ACTIONS(2480), + [anon_sym_AT] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2480), + [anon_sym_L_DQUOTE] = ACTIONS(2480), + [anon_sym_u_DQUOTE] = ACTIONS(2480), + [anon_sym_U_DQUOTE] = ACTIONS(2480), + [anon_sym_u8_DQUOTE] = ACTIONS(2480), + [sym_true] = ACTIONS(2478), + [sym_false] = ACTIONS(2478), + [anon_sym_NULL] = ACTIONS(2478), + [anon_sym_nullptr] = ACTIONS(2478), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2478), + [anon_sym___typeof] = ACTIONS(2478), + [anon_sym_typeof] = ACTIONS(2478), + [anon_sym_ATimport] = ACTIONS(2480), + [aux_sym_preproc_undef_token1] = ACTIONS(2478), + [anon_sym_POUND] = ACTIONS(2478), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2478), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2478), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2478), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2478), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2478), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2478), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2478), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2478), + [anon_sym_NS_AVAILABLE] = ACTIONS(2478), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2478), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_API_AVAILABLE] = ACTIONS(2478), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_API_DEPRECATED] = ACTIONS(2478), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2478), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2478), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2478), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2478), + [anon_sym___deprecated_msg] = ACTIONS(2478), + [anon_sym___deprecated_enum_msg] = ACTIONS(2478), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2478), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2478), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2478), + [anon_sym_ATprotocol] = ACTIONS(2480), + [anon_sym_ATinterface] = ACTIONS(2480), + [anon_sym_ATimplementation] = ACTIONS(2480), + [anon_sym_ATcompatibility_alias] = ACTIONS(2480), + [anon_sym_ATsynthesize] = ACTIONS(2480), + [anon_sym_ATdynamic] = ACTIONS(2480), + [anon_sym_ATtry] = ACTIONS(2480), + [anon_sym___try] = ACTIONS(2478), + [anon_sym_ATthrow] = ACTIONS(2480), + [anon_sym_ATselector] = ACTIONS(2480), + [anon_sym_ATavailable] = ACTIONS(2480), + [anon_sym___builtin_available] = ACTIONS(2478), + [anon_sym_va_arg] = ACTIONS(2478), + [anon_sym_ATencode] = ACTIONS(2480), + [anon_sym_ATsynchronized] = ACTIONS(2480), + [anon_sym_BOOL] = ACTIONS(2478), + [anon_sym_IMP] = ACTIONS(2478), + [anon_sym_SEL] = ACTIONS(2478), + [anon_sym_Class] = ACTIONS(2478), + [anon_sym_id] = ACTIONS(2478), + }, + [570] = { + [sym_identifier] = ACTIONS(2466), + [aux_sym_preproc_include_token1] = ACTIONS(2466), + [aux_sym_preproc_include_token2] = ACTIONS(2466), + [aux_sym_preproc_def_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token2] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2466), + [sym_preproc_directive] = ACTIONS(2466), + [anon_sym_LPAREN2] = ACTIONS(2468), + [anon_sym_BANG] = ACTIONS(2468), + [anon_sym_TILDE] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_PLUS] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2468), + [anon_sym_CARET] = ACTIONS(2468), + [anon_sym_AMP] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym___extension__] = ACTIONS(2466), + [anon_sym_typedef] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym___attribute__] = ACTIONS(2466), + [anon_sym___attribute] = ACTIONS(2466), + [anon_sym_noreturn] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2468), + [anon_sym___declspec] = ACTIONS(2466), + [anon_sym___cdecl] = ACTIONS(2466), + [anon_sym___clrcall] = ACTIONS(2466), + [anon_sym___stdcall] = ACTIONS(2466), + [anon_sym___fastcall] = ACTIONS(2466), + [anon_sym___thiscall] = ACTIONS(2466), + [anon_sym___vectorcall] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_signed] = ACTIONS(2466), + [anon_sym_unsigned] = ACTIONS(2466), + [anon_sym_long] = ACTIONS(2466), + [anon_sym_short] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_ATautoreleasepool] = ACTIONS(2468), + [anon_sym_auto] = ACTIONS(2466), + [anon_sym_register] = ACTIONS(2466), + [anon_sym_inline] = ACTIONS(2466), + [anon_sym___inline] = ACTIONS(2466), + [anon_sym___inline__] = ACTIONS(2466), + [anon_sym___forceinline] = ACTIONS(2466), + [anon_sym_thread_local] = ACTIONS(2466), + [anon_sym___thread] = ACTIONS(2466), + [anon_sym_CG_EXTERN] = ACTIONS(2466), + [anon_sym_CG_INLINE] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2466), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2466), + [anon_sym_IBOutlet] = ACTIONS(2466), + [anon_sym_IBInspectable] = ACTIONS(2466), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2466), + [anon_sym_NS_INLINE] = ACTIONS(2466), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2466), + [anon_sym_OBJC_EXPORT] = ACTIONS(2466), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_constexpr] = ACTIONS(2466), + [anon_sym_volatile] = ACTIONS(2466), + [anon_sym_restrict] = ACTIONS(2466), + [anon_sym___restrict__] = ACTIONS(2466), + [anon_sym__Atomic] = ACTIONS(2466), + [anon_sym__Noreturn] = ACTIONS(2466), + [anon_sym__Nonnull] = ACTIONS(2466), + [anon_sym_nullable] = ACTIONS(2466), + [anon_sym__Complex] = ACTIONS(2466), + [anon_sym__Nullable] = ACTIONS(2466), + [anon_sym__Nullable_result] = ACTIONS(2466), + [anon_sym__Null_unspecified] = ACTIONS(2466), + [anon_sym___autoreleasing] = ACTIONS(2466), + [anon_sym___block] = ACTIONS(2466), + [anon_sym___bridge] = ACTIONS(2466), + [anon_sym___bridge_retained] = ACTIONS(2466), + [anon_sym___bridge_transfer] = ACTIONS(2466), + [anon_sym___complex] = ACTIONS(2466), + [anon_sym___const] = ACTIONS(2466), + [anon_sym___imag] = ACTIONS(2466), + [anon_sym___kindof] = ACTIONS(2466), + [anon_sym___nonnull] = ACTIONS(2466), + [anon_sym___nullable] = ACTIONS(2466), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2466), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2466), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2466), + [anon_sym___real] = ACTIONS(2466), + [anon_sym___strong] = ACTIONS(2466), + [anon_sym___unsafe_unretained] = ACTIONS(2466), + [anon_sym___unused] = ACTIONS(2466), + [anon_sym___weak] = ACTIONS(2466), + [anon_sym_alignas] = ACTIONS(2466), + [anon_sym__Alignas] = ACTIONS(2466), + [sym_primitive_type] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), + [anon_sym_struct] = ACTIONS(2466), + [anon_sym_union] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_else] = ACTIONS(2466), + [anon_sym_switch] = ACTIONS(2466), + [anon_sym_case] = ACTIONS(2466), + [anon_sym_default] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_do] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_in] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_goto] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2468), + [anon_sym_PLUS_PLUS] = ACTIONS(2468), + [anon_sym_sizeof] = ACTIONS(2466), + [anon_sym___alignof__] = ACTIONS(2466), + [anon_sym___alignof] = ACTIONS(2466), + [anon_sym__alignof] = ACTIONS(2466), + [anon_sym_alignof] = ACTIONS(2466), + [anon_sym__Alignof] = ACTIONS(2466), + [anon_sym_offsetof] = ACTIONS(2466), + [anon_sym__Generic] = ACTIONS(2466), + [anon_sym_asm] = ACTIONS(2466), + [anon_sym___asm__] = ACTIONS(2466), + [anon_sym___asm] = ACTIONS(2466), + [sym_number_literal] = ACTIONS(2468), + [anon_sym_L_SQUOTE] = ACTIONS(2468), + [anon_sym_u_SQUOTE] = ACTIONS(2468), + [anon_sym_U_SQUOTE] = ACTIONS(2468), + [anon_sym_u8_SQUOTE] = ACTIONS(2468), + [anon_sym_SQUOTE] = ACTIONS(2468), + [anon_sym_AT] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2468), + [anon_sym_L_DQUOTE] = ACTIONS(2468), + [anon_sym_u_DQUOTE] = ACTIONS(2468), + [anon_sym_U_DQUOTE] = ACTIONS(2468), + [anon_sym_u8_DQUOTE] = ACTIONS(2468), + [sym_true] = ACTIONS(2466), + [sym_false] = ACTIONS(2466), + [anon_sym_NULL] = ACTIONS(2466), + [anon_sym_nullptr] = ACTIONS(2466), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2466), + [anon_sym___typeof] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2466), + [anon_sym_ATimport] = ACTIONS(2468), + [aux_sym_preproc_undef_token1] = ACTIONS(2466), + [anon_sym_POUND] = ACTIONS(2466), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2466), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2466), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2466), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2466), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE] = ACTIONS(2466), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_API_AVAILABLE] = ACTIONS(2466), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_API_DEPRECATED] = ACTIONS(2466), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2466), + [anon_sym___deprecated_msg] = ACTIONS(2466), + [anon_sym___deprecated_enum_msg] = ACTIONS(2466), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2466), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2466), + [anon_sym_ATprotocol] = ACTIONS(2468), + [anon_sym_ATinterface] = ACTIONS(2468), + [anon_sym_ATimplementation] = ACTIONS(2468), + [anon_sym_ATcompatibility_alias] = ACTIONS(2468), + [anon_sym_ATsynthesize] = ACTIONS(2468), + [anon_sym_ATdynamic] = ACTIONS(2468), + [anon_sym_ATtry] = ACTIONS(2468), + [anon_sym___try] = ACTIONS(2466), + [anon_sym_ATthrow] = ACTIONS(2468), + [anon_sym_ATselector] = ACTIONS(2468), + [anon_sym_ATavailable] = ACTIONS(2468), + [anon_sym___builtin_available] = ACTIONS(2466), + [anon_sym_va_arg] = ACTIONS(2466), + [anon_sym_ATencode] = ACTIONS(2468), + [anon_sym_ATsynchronized] = ACTIONS(2468), + [anon_sym_BOOL] = ACTIONS(2466), + [anon_sym_IMP] = ACTIONS(2466), + [anon_sym_SEL] = ACTIONS(2466), + [anon_sym_Class] = ACTIONS(2466), + [anon_sym_id] = ACTIONS(2466), + }, + [571] = { + [sym_identifier] = ACTIONS(2350), + [aux_sym_preproc_include_token1] = ACTIONS(2350), + [aux_sym_preproc_include_token2] = ACTIONS(2350), + [aux_sym_preproc_def_token1] = ACTIONS(2350), + [aux_sym_preproc_if_token1] = ACTIONS(2350), + [aux_sym_preproc_if_token2] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2350), + [sym_preproc_directive] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(2352), + [anon_sym_BANG] = ACTIONS(2352), + [anon_sym_TILDE] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2350), + [anon_sym_STAR] = ACTIONS(2352), + [anon_sym_CARET] = ACTIONS(2352), + [anon_sym_AMP] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2352), + [anon_sym___extension__] = ACTIONS(2350), + [anon_sym_typedef] = ACTIONS(2350), + [anon_sym_extern] = ACTIONS(2350), + [anon_sym___attribute__] = ACTIONS(2350), + [anon_sym___attribute] = ACTIONS(2350), + [anon_sym_noreturn] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2352), + [anon_sym___declspec] = ACTIONS(2350), + [anon_sym___cdecl] = ACTIONS(2350), + [anon_sym___clrcall] = ACTIONS(2350), + [anon_sym___stdcall] = ACTIONS(2350), + [anon_sym___fastcall] = ACTIONS(2350), + [anon_sym___thiscall] = ACTIONS(2350), + [anon_sym___vectorcall] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2352), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(2350), + [anon_sym_ATautoreleasepool] = ACTIONS(2352), + [anon_sym_auto] = ACTIONS(2350), + [anon_sym_register] = ACTIONS(2350), + [anon_sym_inline] = ACTIONS(2350), + [anon_sym___inline] = ACTIONS(2350), + [anon_sym___inline__] = ACTIONS(2350), + [anon_sym___forceinline] = ACTIONS(2350), + [anon_sym_thread_local] = ACTIONS(2350), + [anon_sym___thread] = ACTIONS(2350), + [anon_sym_CG_EXTERN] = ACTIONS(2350), + [anon_sym_CG_INLINE] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2350), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2350), + [anon_sym_IBOutlet] = ACTIONS(2350), + [anon_sym_IBInspectable] = ACTIONS(2350), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2350), + [anon_sym_NS_INLINE] = ACTIONS(2350), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2350), + [anon_sym_OBJC_EXPORT] = ACTIONS(2350), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2350), + [anon_sym_const] = ACTIONS(2350), + [anon_sym_constexpr] = ACTIONS(2350), + [anon_sym_volatile] = ACTIONS(2350), + [anon_sym_restrict] = ACTIONS(2350), + [anon_sym___restrict__] = ACTIONS(2350), + [anon_sym__Atomic] = ACTIONS(2350), + [anon_sym__Noreturn] = ACTIONS(2350), + [anon_sym__Nonnull] = ACTIONS(2350), + [anon_sym_nullable] = ACTIONS(2350), + [anon_sym__Complex] = ACTIONS(2350), + [anon_sym__Nullable] = ACTIONS(2350), + [anon_sym__Nullable_result] = ACTIONS(2350), + [anon_sym__Null_unspecified] = ACTIONS(2350), + [anon_sym___autoreleasing] = ACTIONS(2350), + [anon_sym___block] = ACTIONS(2350), + [anon_sym___bridge] = ACTIONS(2350), + [anon_sym___bridge_retained] = ACTIONS(2350), + [anon_sym___bridge_transfer] = ACTIONS(2350), + [anon_sym___complex] = ACTIONS(2350), + [anon_sym___const] = ACTIONS(2350), + [anon_sym___imag] = ACTIONS(2350), + [anon_sym___kindof] = ACTIONS(2350), + [anon_sym___nonnull] = ACTIONS(2350), + [anon_sym___nullable] = ACTIONS(2350), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2350), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2350), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2350), + [anon_sym___real] = ACTIONS(2350), + [anon_sym___strong] = ACTIONS(2350), + [anon_sym___unsafe_unretained] = ACTIONS(2350), + [anon_sym___unused] = ACTIONS(2350), + [anon_sym___weak] = ACTIONS(2350), + [anon_sym_alignas] = ACTIONS(2350), + [anon_sym__Alignas] = ACTIONS(2350), + [sym_primitive_type] = ACTIONS(2350), + [anon_sym_enum] = ACTIONS(2350), + [anon_sym_struct] = ACTIONS(2350), + [anon_sym_union] = ACTIONS(2350), + [anon_sym_if] = ACTIONS(2350), + [anon_sym_else] = ACTIONS(2350), + [anon_sym_switch] = ACTIONS(2350), + [anon_sym_case] = ACTIONS(2350), + [anon_sym_default] = ACTIONS(2350), + [anon_sym_while] = ACTIONS(2350), + [anon_sym_do] = ACTIONS(2350), + [anon_sym_for] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_return] = ACTIONS(2350), + [anon_sym_break] = ACTIONS(2350), + [anon_sym_continue] = ACTIONS(2350), + [anon_sym_goto] = ACTIONS(2350), + [anon_sym_DASH_DASH] = ACTIONS(2352), + [anon_sym_PLUS_PLUS] = ACTIONS(2352), + [anon_sym_sizeof] = ACTIONS(2350), + [anon_sym___alignof__] = ACTIONS(2350), + [anon_sym___alignof] = ACTIONS(2350), + [anon_sym__alignof] = ACTIONS(2350), + [anon_sym_alignof] = ACTIONS(2350), + [anon_sym__Alignof] = ACTIONS(2350), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_asm] = ACTIONS(2350), + [anon_sym___asm__] = ACTIONS(2350), + [anon_sym___asm] = ACTIONS(2350), + [sym_number_literal] = ACTIONS(2352), + [anon_sym_L_SQUOTE] = ACTIONS(2352), + [anon_sym_u_SQUOTE] = ACTIONS(2352), + [anon_sym_U_SQUOTE] = ACTIONS(2352), + [anon_sym_u8_SQUOTE] = ACTIONS(2352), + [anon_sym_SQUOTE] = ACTIONS(2352), + [anon_sym_AT] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2352), + [anon_sym_L_DQUOTE] = ACTIONS(2352), + [anon_sym_u_DQUOTE] = ACTIONS(2352), + [anon_sym_U_DQUOTE] = ACTIONS(2352), + [anon_sym_u8_DQUOTE] = ACTIONS(2352), + [sym_true] = ACTIONS(2350), + [sym_false] = ACTIONS(2350), + [anon_sym_NULL] = ACTIONS(2350), + [anon_sym_nullptr] = ACTIONS(2350), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2350), + [anon_sym___typeof] = ACTIONS(2350), + [anon_sym_typeof] = ACTIONS(2350), + [anon_sym_ATimport] = ACTIONS(2352), + [aux_sym_preproc_undef_token1] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(2350), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2350), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2350), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2350), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2350), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE] = ACTIONS(2350), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_API_AVAILABLE] = ACTIONS(2350), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_API_DEPRECATED] = ACTIONS(2350), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2350), + [anon_sym___deprecated_msg] = ACTIONS(2350), + [anon_sym___deprecated_enum_msg] = ACTIONS(2350), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2350), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2350), + [anon_sym_ATprotocol] = ACTIONS(2352), + [anon_sym_ATinterface] = ACTIONS(2352), + [anon_sym_ATimplementation] = ACTIONS(2352), + [anon_sym_ATcompatibility_alias] = ACTIONS(2352), + [anon_sym_ATsynthesize] = ACTIONS(2352), + [anon_sym_ATdynamic] = ACTIONS(2352), + [anon_sym_ATtry] = ACTIONS(2352), + [anon_sym___try] = ACTIONS(2350), + [anon_sym_ATthrow] = ACTIONS(2352), + [anon_sym_ATselector] = ACTIONS(2352), + [anon_sym_ATavailable] = ACTIONS(2352), + [anon_sym___builtin_available] = ACTIONS(2350), + [anon_sym_va_arg] = ACTIONS(2350), + [anon_sym_ATencode] = ACTIONS(2352), + [anon_sym_ATsynchronized] = ACTIONS(2352), + [anon_sym_BOOL] = ACTIONS(2350), + [anon_sym_IMP] = ACTIONS(2350), + [anon_sym_SEL] = ACTIONS(2350), + [anon_sym_Class] = ACTIONS(2350), + [anon_sym_id] = ACTIONS(2350), + }, + [572] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [573] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [574] = { + [sym_identifier] = ACTIONS(2462), + [aux_sym_preproc_include_token1] = ACTIONS(2462), + [aux_sym_preproc_include_token2] = ACTIONS(2462), + [aux_sym_preproc_def_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token2] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2462), + [sym_preproc_directive] = ACTIONS(2462), + [anon_sym_LPAREN2] = ACTIONS(2464), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_CARET] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym___extension__] = ACTIONS(2462), + [anon_sym_typedef] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym___attribute__] = ACTIONS(2462), + [anon_sym___attribute] = ACTIONS(2462), + [anon_sym_noreturn] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2464), + [anon_sym___declspec] = ACTIONS(2462), + [anon_sym___cdecl] = ACTIONS(2462), + [anon_sym___clrcall] = ACTIONS(2462), + [anon_sym___stdcall] = ACTIONS(2462), + [anon_sym___fastcall] = ACTIONS(2462), + [anon_sym___thiscall] = ACTIONS(2462), + [anon_sym___vectorcall] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_signed] = ACTIONS(2462), + [anon_sym_unsigned] = ACTIONS(2462), + [anon_sym_long] = ACTIONS(2462), + [anon_sym_short] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_ATautoreleasepool] = ACTIONS(2464), + [anon_sym_auto] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_inline] = ACTIONS(2462), + [anon_sym___inline] = ACTIONS(2462), + [anon_sym___inline__] = ACTIONS(2462), + [anon_sym___forceinline] = ACTIONS(2462), + [anon_sym_thread_local] = ACTIONS(2462), + [anon_sym___thread] = ACTIONS(2462), + [anon_sym_CG_EXTERN] = ACTIONS(2462), + [anon_sym_CG_INLINE] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2462), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2462), + [anon_sym_IBOutlet] = ACTIONS(2462), + [anon_sym_IBInspectable] = ACTIONS(2462), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2462), + [anon_sym_NS_INLINE] = ACTIONS(2462), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2462), + [anon_sym_OBJC_EXPORT] = ACTIONS(2462), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_constexpr] = ACTIONS(2462), + [anon_sym_volatile] = ACTIONS(2462), + [anon_sym_restrict] = ACTIONS(2462), + [anon_sym___restrict__] = ACTIONS(2462), + [anon_sym__Atomic] = ACTIONS(2462), + [anon_sym__Noreturn] = ACTIONS(2462), + [anon_sym__Nonnull] = ACTIONS(2462), + [anon_sym_nullable] = ACTIONS(2462), + [anon_sym__Complex] = ACTIONS(2462), + [anon_sym__Nullable] = ACTIONS(2462), + [anon_sym__Nullable_result] = ACTIONS(2462), + [anon_sym__Null_unspecified] = ACTIONS(2462), + [anon_sym___autoreleasing] = ACTIONS(2462), + [anon_sym___block] = ACTIONS(2462), + [anon_sym___bridge] = ACTIONS(2462), + [anon_sym___bridge_retained] = ACTIONS(2462), + [anon_sym___bridge_transfer] = ACTIONS(2462), + [anon_sym___complex] = ACTIONS(2462), + [anon_sym___const] = ACTIONS(2462), + [anon_sym___imag] = ACTIONS(2462), + [anon_sym___kindof] = ACTIONS(2462), + [anon_sym___nonnull] = ACTIONS(2462), + [anon_sym___nullable] = ACTIONS(2462), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2462), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2462), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2462), + [anon_sym___real] = ACTIONS(2462), + [anon_sym___strong] = ACTIONS(2462), + [anon_sym___unsafe_unretained] = ACTIONS(2462), + [anon_sym___unused] = ACTIONS(2462), + [anon_sym___weak] = ACTIONS(2462), + [anon_sym_alignas] = ACTIONS(2462), + [anon_sym__Alignas] = ACTIONS(2462), + [sym_primitive_type] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_case] = ACTIONS(2462), + [anon_sym_default] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_in] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_goto] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(2464), + [anon_sym_sizeof] = ACTIONS(2462), + [anon_sym___alignof__] = ACTIONS(2462), + [anon_sym___alignof] = ACTIONS(2462), + [anon_sym__alignof] = ACTIONS(2462), + [anon_sym_alignof] = ACTIONS(2462), + [anon_sym__Alignof] = ACTIONS(2462), + [anon_sym_offsetof] = ACTIONS(2462), + [anon_sym__Generic] = ACTIONS(2462), + [anon_sym_asm] = ACTIONS(2462), + [anon_sym___asm__] = ACTIONS(2462), + [anon_sym___asm] = ACTIONS(2462), + [sym_number_literal] = ACTIONS(2464), + [anon_sym_L_SQUOTE] = ACTIONS(2464), + [anon_sym_u_SQUOTE] = ACTIONS(2464), + [anon_sym_U_SQUOTE] = ACTIONS(2464), + [anon_sym_u8_SQUOTE] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2464), + [anon_sym_AT] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2464), + [anon_sym_L_DQUOTE] = ACTIONS(2464), + [anon_sym_u_DQUOTE] = ACTIONS(2464), + [anon_sym_U_DQUOTE] = ACTIONS(2464), + [anon_sym_u8_DQUOTE] = ACTIONS(2464), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [anon_sym_NULL] = ACTIONS(2462), + [anon_sym_nullptr] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2462), + [anon_sym___typeof] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [anon_sym_ATimport] = ACTIONS(2464), + [aux_sym_preproc_undef_token1] = ACTIONS(2462), + [anon_sym_POUND] = ACTIONS(2462), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2462), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2462), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2462), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2462), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE] = ACTIONS(2462), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_API_AVAILABLE] = ACTIONS(2462), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_API_DEPRECATED] = ACTIONS(2462), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2462), + [anon_sym___deprecated_msg] = ACTIONS(2462), + [anon_sym___deprecated_enum_msg] = ACTIONS(2462), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2462), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2462), + [anon_sym_ATprotocol] = ACTIONS(2464), + [anon_sym_ATinterface] = ACTIONS(2464), + [anon_sym_ATimplementation] = ACTIONS(2464), + [anon_sym_ATcompatibility_alias] = ACTIONS(2464), + [anon_sym_ATsynthesize] = ACTIONS(2464), + [anon_sym_ATdynamic] = ACTIONS(2464), + [anon_sym_ATtry] = ACTIONS(2464), + [anon_sym___try] = ACTIONS(2462), + [anon_sym_ATthrow] = ACTIONS(2464), + [anon_sym_ATselector] = ACTIONS(2464), + [anon_sym_ATavailable] = ACTIONS(2464), + [anon_sym___builtin_available] = ACTIONS(2462), + [anon_sym_va_arg] = ACTIONS(2462), + [anon_sym_ATencode] = ACTIONS(2464), + [anon_sym_ATsynchronized] = ACTIONS(2464), + [anon_sym_BOOL] = ACTIONS(2462), + [anon_sym_IMP] = ACTIONS(2462), + [anon_sym_SEL] = ACTIONS(2462), + [anon_sym_Class] = ACTIONS(2462), + [anon_sym_id] = ACTIONS(2462), + }, + [575] = { + [sym_identifier] = ACTIONS(2462), + [aux_sym_preproc_include_token1] = ACTIONS(2462), + [aux_sym_preproc_include_token2] = ACTIONS(2462), + [aux_sym_preproc_def_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token2] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2462), + [sym_preproc_directive] = ACTIONS(2462), + [anon_sym_LPAREN2] = ACTIONS(2464), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_CARET] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym___extension__] = ACTIONS(2462), + [anon_sym_typedef] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym___attribute__] = ACTIONS(2462), + [anon_sym___attribute] = ACTIONS(2462), + [anon_sym_noreturn] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2464), + [anon_sym___declspec] = ACTIONS(2462), + [anon_sym___cdecl] = ACTIONS(2462), + [anon_sym___clrcall] = ACTIONS(2462), + [anon_sym___stdcall] = ACTIONS(2462), + [anon_sym___fastcall] = ACTIONS(2462), + [anon_sym___thiscall] = ACTIONS(2462), + [anon_sym___vectorcall] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_signed] = ACTIONS(2462), + [anon_sym_unsigned] = ACTIONS(2462), + [anon_sym_long] = ACTIONS(2462), + [anon_sym_short] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_ATautoreleasepool] = ACTIONS(2464), + [anon_sym_auto] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_inline] = ACTIONS(2462), + [anon_sym___inline] = ACTIONS(2462), + [anon_sym___inline__] = ACTIONS(2462), + [anon_sym___forceinline] = ACTIONS(2462), + [anon_sym_thread_local] = ACTIONS(2462), + [anon_sym___thread] = ACTIONS(2462), + [anon_sym_CG_EXTERN] = ACTIONS(2462), + [anon_sym_CG_INLINE] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2462), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2462), + [anon_sym_IBOutlet] = ACTIONS(2462), + [anon_sym_IBInspectable] = ACTIONS(2462), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2462), + [anon_sym_NS_INLINE] = ACTIONS(2462), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2462), + [anon_sym_OBJC_EXPORT] = ACTIONS(2462), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_constexpr] = ACTIONS(2462), + [anon_sym_volatile] = ACTIONS(2462), + [anon_sym_restrict] = ACTIONS(2462), + [anon_sym___restrict__] = ACTIONS(2462), + [anon_sym__Atomic] = ACTIONS(2462), + [anon_sym__Noreturn] = ACTIONS(2462), + [anon_sym__Nonnull] = ACTIONS(2462), + [anon_sym_nullable] = ACTIONS(2462), + [anon_sym__Complex] = ACTIONS(2462), + [anon_sym__Nullable] = ACTIONS(2462), + [anon_sym__Nullable_result] = ACTIONS(2462), + [anon_sym__Null_unspecified] = ACTIONS(2462), + [anon_sym___autoreleasing] = ACTIONS(2462), + [anon_sym___block] = ACTIONS(2462), + [anon_sym___bridge] = ACTIONS(2462), + [anon_sym___bridge_retained] = ACTIONS(2462), + [anon_sym___bridge_transfer] = ACTIONS(2462), + [anon_sym___complex] = ACTIONS(2462), + [anon_sym___const] = ACTIONS(2462), + [anon_sym___imag] = ACTIONS(2462), + [anon_sym___kindof] = ACTIONS(2462), + [anon_sym___nonnull] = ACTIONS(2462), + [anon_sym___nullable] = ACTIONS(2462), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2462), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2462), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2462), + [anon_sym___real] = ACTIONS(2462), + [anon_sym___strong] = ACTIONS(2462), + [anon_sym___unsafe_unretained] = ACTIONS(2462), + [anon_sym___unused] = ACTIONS(2462), + [anon_sym___weak] = ACTIONS(2462), + [anon_sym_alignas] = ACTIONS(2462), + [anon_sym__Alignas] = ACTIONS(2462), + [sym_primitive_type] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_case] = ACTIONS(2462), + [anon_sym_default] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_in] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_goto] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(2464), + [anon_sym_sizeof] = ACTIONS(2462), + [anon_sym___alignof__] = ACTIONS(2462), + [anon_sym___alignof] = ACTIONS(2462), + [anon_sym__alignof] = ACTIONS(2462), + [anon_sym_alignof] = ACTIONS(2462), + [anon_sym__Alignof] = ACTIONS(2462), + [anon_sym_offsetof] = ACTIONS(2462), + [anon_sym__Generic] = ACTIONS(2462), + [anon_sym_asm] = ACTIONS(2462), + [anon_sym___asm__] = ACTIONS(2462), + [anon_sym___asm] = ACTIONS(2462), + [sym_number_literal] = ACTIONS(2464), + [anon_sym_L_SQUOTE] = ACTIONS(2464), + [anon_sym_u_SQUOTE] = ACTIONS(2464), + [anon_sym_U_SQUOTE] = ACTIONS(2464), + [anon_sym_u8_SQUOTE] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2464), + [anon_sym_AT] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2464), + [anon_sym_L_DQUOTE] = ACTIONS(2464), + [anon_sym_u_DQUOTE] = ACTIONS(2464), + [anon_sym_U_DQUOTE] = ACTIONS(2464), + [anon_sym_u8_DQUOTE] = ACTIONS(2464), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [anon_sym_NULL] = ACTIONS(2462), + [anon_sym_nullptr] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2462), + [anon_sym___typeof] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [anon_sym_ATimport] = ACTIONS(2464), + [aux_sym_preproc_undef_token1] = ACTIONS(2462), + [anon_sym_POUND] = ACTIONS(2462), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2462), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2462), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2462), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2462), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE] = ACTIONS(2462), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_API_AVAILABLE] = ACTIONS(2462), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_API_DEPRECATED] = ACTIONS(2462), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2462), + [anon_sym___deprecated_msg] = ACTIONS(2462), + [anon_sym___deprecated_enum_msg] = ACTIONS(2462), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2462), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2462), + [anon_sym_ATprotocol] = ACTIONS(2464), + [anon_sym_ATinterface] = ACTIONS(2464), + [anon_sym_ATimplementation] = ACTIONS(2464), + [anon_sym_ATcompatibility_alias] = ACTIONS(2464), + [anon_sym_ATsynthesize] = ACTIONS(2464), + [anon_sym_ATdynamic] = ACTIONS(2464), + [anon_sym_ATtry] = ACTIONS(2464), + [anon_sym___try] = ACTIONS(2462), + [anon_sym_ATthrow] = ACTIONS(2464), + [anon_sym_ATselector] = ACTIONS(2464), + [anon_sym_ATavailable] = ACTIONS(2464), + [anon_sym___builtin_available] = ACTIONS(2462), + [anon_sym_va_arg] = ACTIONS(2462), + [anon_sym_ATencode] = ACTIONS(2464), + [anon_sym_ATsynchronized] = ACTIONS(2464), + [anon_sym_BOOL] = ACTIONS(2462), + [anon_sym_IMP] = ACTIONS(2462), + [anon_sym_SEL] = ACTIONS(2462), + [anon_sym_Class] = ACTIONS(2462), + [anon_sym_id] = ACTIONS(2462), + }, + [576] = { + [sym_identifier] = ACTIONS(2346), + [aux_sym_preproc_include_token1] = ACTIONS(2346), + [aux_sym_preproc_include_token2] = ACTIONS(2346), + [aux_sym_preproc_def_token1] = ACTIONS(2346), + [aux_sym_preproc_if_token1] = ACTIONS(2346), + [aux_sym_preproc_if_token2] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2346), + [sym_preproc_directive] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2346), + [anon_sym_PLUS] = ACTIONS(2346), + [anon_sym_STAR] = ACTIONS(2348), + [anon_sym_CARET] = ACTIONS(2348), + [anon_sym_AMP] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym___extension__] = ACTIONS(2346), + [anon_sym_typedef] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym___attribute__] = ACTIONS(2346), + [anon_sym___attribute] = ACTIONS(2346), + [anon_sym_noreturn] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym___declspec] = ACTIONS(2346), + [anon_sym___cdecl] = ACTIONS(2346), + [anon_sym___clrcall] = ACTIONS(2346), + [anon_sym___stdcall] = ACTIONS(2346), + [anon_sym___fastcall] = ACTIONS(2346), + [anon_sym___thiscall] = ACTIONS(2346), + [anon_sym___vectorcall] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_signed] = ACTIONS(2346), + [anon_sym_unsigned] = ACTIONS(2346), + [anon_sym_long] = ACTIONS(2346), + [anon_sym_short] = ACTIONS(2346), + [anon_sym_static] = ACTIONS(2346), + [anon_sym_ATautoreleasepool] = ACTIONS(2348), + [anon_sym_auto] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2346), + [anon_sym_inline] = ACTIONS(2346), + [anon_sym___inline] = ACTIONS(2346), + [anon_sym___inline__] = ACTIONS(2346), + [anon_sym___forceinline] = ACTIONS(2346), + [anon_sym_thread_local] = ACTIONS(2346), + [anon_sym___thread] = ACTIONS(2346), + [anon_sym_CG_EXTERN] = ACTIONS(2346), + [anon_sym_CG_INLINE] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2346), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2346), + [anon_sym_IBOutlet] = ACTIONS(2346), + [anon_sym_IBInspectable] = ACTIONS(2346), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2346), + [anon_sym_NS_INLINE] = ACTIONS(2346), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2346), + [anon_sym_OBJC_EXPORT] = ACTIONS(2346), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_constexpr] = ACTIONS(2346), + [anon_sym_volatile] = ACTIONS(2346), + [anon_sym_restrict] = ACTIONS(2346), + [anon_sym___restrict__] = ACTIONS(2346), + [anon_sym__Atomic] = ACTIONS(2346), + [anon_sym__Noreturn] = ACTIONS(2346), + [anon_sym__Nonnull] = ACTIONS(2346), + [anon_sym_nullable] = ACTIONS(2346), + [anon_sym__Complex] = ACTIONS(2346), + [anon_sym__Nullable] = ACTIONS(2346), + [anon_sym__Nullable_result] = ACTIONS(2346), + [anon_sym__Null_unspecified] = ACTIONS(2346), + [anon_sym___autoreleasing] = ACTIONS(2346), + [anon_sym___block] = ACTIONS(2346), + [anon_sym___bridge] = ACTIONS(2346), + [anon_sym___bridge_retained] = ACTIONS(2346), + [anon_sym___bridge_transfer] = ACTIONS(2346), + [anon_sym___complex] = ACTIONS(2346), + [anon_sym___const] = ACTIONS(2346), + [anon_sym___imag] = ACTIONS(2346), + [anon_sym___kindof] = ACTIONS(2346), + [anon_sym___nonnull] = ACTIONS(2346), + [anon_sym___nullable] = ACTIONS(2346), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2346), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2346), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2346), + [anon_sym___real] = ACTIONS(2346), + [anon_sym___strong] = ACTIONS(2346), + [anon_sym___unsafe_unretained] = ACTIONS(2346), + [anon_sym___unused] = ACTIONS(2346), + [anon_sym___weak] = ACTIONS(2346), + [anon_sym_alignas] = ACTIONS(2346), + [anon_sym__Alignas] = ACTIONS(2346), + [sym_primitive_type] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_switch] = ACTIONS(2346), + [anon_sym_case] = ACTIONS(2346), + [anon_sym_default] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_do] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_goto] = ACTIONS(2346), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2346), + [anon_sym__Generic] = ACTIONS(2346), + [anon_sym_asm] = ACTIONS(2346), + [anon_sym___asm__] = ACTIONS(2346), + [anon_sym___asm] = ACTIONS(2346), + [sym_number_literal] = ACTIONS(2348), + [anon_sym_L_SQUOTE] = ACTIONS(2348), + [anon_sym_u_SQUOTE] = ACTIONS(2348), + [anon_sym_U_SQUOTE] = ACTIONS(2348), + [anon_sym_u8_SQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_L_DQUOTE] = ACTIONS(2348), + [anon_sym_u_DQUOTE] = ACTIONS(2348), + [anon_sym_U_DQUOTE] = ACTIONS(2348), + [anon_sym_u8_DQUOTE] = ACTIONS(2348), + [sym_true] = ACTIONS(2346), + [sym_false] = ACTIONS(2346), + [anon_sym_NULL] = ACTIONS(2346), + [anon_sym_nullptr] = ACTIONS(2346), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2346), + [anon_sym___typeof] = ACTIONS(2346), + [anon_sym_typeof] = ACTIONS(2346), + [anon_sym_ATimport] = ACTIONS(2348), + [aux_sym_preproc_undef_token1] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(2346), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2346), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2346), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2346), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2346), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE] = ACTIONS(2346), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_API_AVAILABLE] = ACTIONS(2346), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_API_DEPRECATED] = ACTIONS(2346), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2346), + [anon_sym___deprecated_msg] = ACTIONS(2346), + [anon_sym___deprecated_enum_msg] = ACTIONS(2346), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2346), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2346), + [anon_sym_ATprotocol] = ACTIONS(2348), + [anon_sym_ATinterface] = ACTIONS(2348), + [anon_sym_ATimplementation] = ACTIONS(2348), + [anon_sym_ATcompatibility_alias] = ACTIONS(2348), + [anon_sym_ATsynthesize] = ACTIONS(2348), + [anon_sym_ATdynamic] = ACTIONS(2348), + [anon_sym_ATtry] = ACTIONS(2348), + [anon_sym___try] = ACTIONS(2346), + [anon_sym_ATthrow] = ACTIONS(2348), + [anon_sym_ATselector] = ACTIONS(2348), + [anon_sym_ATavailable] = ACTIONS(2348), + [anon_sym___builtin_available] = ACTIONS(2346), + [anon_sym_va_arg] = ACTIONS(2346), + [anon_sym_ATencode] = ACTIONS(2348), + [anon_sym_ATsynchronized] = ACTIONS(2348), + [anon_sym_BOOL] = ACTIONS(2346), + [anon_sym_IMP] = ACTIONS(2346), + [anon_sym_SEL] = ACTIONS(2346), + [anon_sym_Class] = ACTIONS(2346), + [anon_sym_id] = ACTIONS(2346), + }, + [577] = { + [sym_identifier] = ACTIONS(2516), + [aux_sym_preproc_include_token1] = ACTIONS(2516), + [aux_sym_preproc_include_token2] = ACTIONS(2516), + [aux_sym_preproc_def_token1] = ACTIONS(2516), + [aux_sym_preproc_if_token1] = ACTIONS(2516), + [aux_sym_preproc_if_token2] = ACTIONS(2516), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2516), + [sym_preproc_directive] = ACTIONS(2516), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_BANG] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_PLUS] = ACTIONS(2516), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_CARET] = ACTIONS(2518), + [anon_sym_AMP] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym___extension__] = ACTIONS(2516), + [anon_sym_typedef] = ACTIONS(2516), + [anon_sym_extern] = ACTIONS(2516), + [anon_sym___attribute__] = ACTIONS(2516), + [anon_sym___attribute] = ACTIONS(2516), + [anon_sym_noreturn] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2518), + [anon_sym___declspec] = ACTIONS(2516), + [anon_sym___cdecl] = ACTIONS(2516), + [anon_sym___clrcall] = ACTIONS(2516), + [anon_sym___stdcall] = ACTIONS(2516), + [anon_sym___fastcall] = ACTIONS(2516), + [anon_sym___thiscall] = ACTIONS(2516), + [anon_sym___vectorcall] = ACTIONS(2516), + [anon_sym_LBRACE] = ACTIONS(2518), + [anon_sym_signed] = ACTIONS(2516), + [anon_sym_unsigned] = ACTIONS(2516), + [anon_sym_long] = ACTIONS(2516), + [anon_sym_short] = ACTIONS(2516), + [anon_sym_static] = ACTIONS(2516), + [anon_sym_ATautoreleasepool] = ACTIONS(2518), + [anon_sym_auto] = ACTIONS(2516), + [anon_sym_register] = ACTIONS(2516), + [anon_sym_inline] = ACTIONS(2516), + [anon_sym___inline] = ACTIONS(2516), + [anon_sym___inline__] = ACTIONS(2516), + [anon_sym___forceinline] = ACTIONS(2516), + [anon_sym_thread_local] = ACTIONS(2516), + [anon_sym___thread] = ACTIONS(2516), + [anon_sym_CG_EXTERN] = ACTIONS(2516), + [anon_sym_CG_INLINE] = ACTIONS(2516), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2516), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2516), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2516), + [anon_sym_IBOutlet] = ACTIONS(2516), + [anon_sym_IBInspectable] = ACTIONS(2516), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2516), + [anon_sym_NS_INLINE] = ACTIONS(2516), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2516), + [anon_sym_OBJC_EXPORT] = ACTIONS(2516), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2516), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2516), + [anon_sym_const] = ACTIONS(2516), + [anon_sym_constexpr] = ACTIONS(2516), + [anon_sym_volatile] = ACTIONS(2516), + [anon_sym_restrict] = ACTIONS(2516), + [anon_sym___restrict__] = ACTIONS(2516), + [anon_sym__Atomic] = ACTIONS(2516), + [anon_sym__Noreturn] = ACTIONS(2516), + [anon_sym__Nonnull] = ACTIONS(2516), + [anon_sym_nullable] = ACTIONS(2516), + [anon_sym__Complex] = ACTIONS(2516), + [anon_sym__Nullable] = ACTIONS(2516), + [anon_sym__Nullable_result] = ACTIONS(2516), + [anon_sym__Null_unspecified] = ACTIONS(2516), + [anon_sym___autoreleasing] = ACTIONS(2516), + [anon_sym___block] = ACTIONS(2516), + [anon_sym___bridge] = ACTIONS(2516), + [anon_sym___bridge_retained] = ACTIONS(2516), + [anon_sym___bridge_transfer] = ACTIONS(2516), + [anon_sym___complex] = ACTIONS(2516), + [anon_sym___const] = ACTIONS(2516), + [anon_sym___imag] = ACTIONS(2516), + [anon_sym___kindof] = ACTIONS(2516), + [anon_sym___nonnull] = ACTIONS(2516), + [anon_sym___nullable] = ACTIONS(2516), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2516), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2516), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2516), + [anon_sym___real] = ACTIONS(2516), + [anon_sym___strong] = ACTIONS(2516), + [anon_sym___unsafe_unretained] = ACTIONS(2516), + [anon_sym___unused] = ACTIONS(2516), + [anon_sym___weak] = ACTIONS(2516), + [anon_sym_alignas] = ACTIONS(2516), + [anon_sym__Alignas] = ACTIONS(2516), + [sym_primitive_type] = ACTIONS(2516), + [anon_sym_enum] = ACTIONS(2516), + [anon_sym_struct] = ACTIONS(2516), + [anon_sym_union] = ACTIONS(2516), + [anon_sym_if] = ACTIONS(2516), + [anon_sym_else] = ACTIONS(2516), + [anon_sym_switch] = ACTIONS(2516), + [anon_sym_case] = ACTIONS(2516), + [anon_sym_default] = ACTIONS(2516), + [anon_sym_while] = ACTIONS(2516), + [anon_sym_do] = ACTIONS(2516), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_in] = ACTIONS(2516), + [anon_sym_return] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_goto] = ACTIONS(2516), + [anon_sym_DASH_DASH] = ACTIONS(2518), + [anon_sym_PLUS_PLUS] = ACTIONS(2518), + [anon_sym_sizeof] = ACTIONS(2516), + [anon_sym___alignof__] = ACTIONS(2516), + [anon_sym___alignof] = ACTIONS(2516), + [anon_sym__alignof] = ACTIONS(2516), + [anon_sym_alignof] = ACTIONS(2516), + [anon_sym__Alignof] = ACTIONS(2516), + [anon_sym_offsetof] = ACTIONS(2516), + [anon_sym__Generic] = ACTIONS(2516), + [anon_sym_asm] = ACTIONS(2516), + [anon_sym___asm__] = ACTIONS(2516), + [anon_sym___asm] = ACTIONS(2516), + [sym_number_literal] = ACTIONS(2518), + [anon_sym_L_SQUOTE] = ACTIONS(2518), + [anon_sym_u_SQUOTE] = ACTIONS(2518), + [anon_sym_U_SQUOTE] = ACTIONS(2518), + [anon_sym_u8_SQUOTE] = ACTIONS(2518), + [anon_sym_SQUOTE] = ACTIONS(2518), + [anon_sym_AT] = ACTIONS(2516), + [anon_sym_DQUOTE] = ACTIONS(2518), + [anon_sym_L_DQUOTE] = ACTIONS(2518), + [anon_sym_u_DQUOTE] = ACTIONS(2518), + [anon_sym_U_DQUOTE] = ACTIONS(2518), + [anon_sym_u8_DQUOTE] = ACTIONS(2518), + [sym_true] = ACTIONS(2516), + [sym_false] = ACTIONS(2516), + [anon_sym_NULL] = ACTIONS(2516), + [anon_sym_nullptr] = ACTIONS(2516), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2516), + [anon_sym___typeof] = ACTIONS(2516), + [anon_sym_typeof] = ACTIONS(2516), + [anon_sym_ATimport] = ACTIONS(2518), + [aux_sym_preproc_undef_token1] = ACTIONS(2516), + [anon_sym_POUND] = ACTIONS(2516), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2516), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2516), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2516), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2516), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2516), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2516), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2516), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2516), + [anon_sym_NS_AVAILABLE] = ACTIONS(2516), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2516), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_API_AVAILABLE] = ACTIONS(2516), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_API_DEPRECATED] = ACTIONS(2516), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2516), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2516), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2516), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2516), + [anon_sym___deprecated_msg] = ACTIONS(2516), + [anon_sym___deprecated_enum_msg] = ACTIONS(2516), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2516), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2516), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2516), + [anon_sym_ATprotocol] = ACTIONS(2518), + [anon_sym_ATinterface] = ACTIONS(2518), + [anon_sym_ATimplementation] = ACTIONS(2518), + [anon_sym_ATcompatibility_alias] = ACTIONS(2518), + [anon_sym_ATsynthesize] = ACTIONS(2518), + [anon_sym_ATdynamic] = ACTIONS(2518), + [anon_sym_ATtry] = ACTIONS(2518), + [anon_sym___try] = ACTIONS(2516), + [anon_sym_ATthrow] = ACTIONS(2518), + [anon_sym_ATselector] = ACTIONS(2518), + [anon_sym_ATavailable] = ACTIONS(2518), + [anon_sym___builtin_available] = ACTIONS(2516), + [anon_sym_va_arg] = ACTIONS(2516), + [anon_sym_ATencode] = ACTIONS(2518), + [anon_sym_ATsynchronized] = ACTIONS(2518), + [anon_sym_BOOL] = ACTIONS(2516), + [anon_sym_IMP] = ACTIONS(2516), + [anon_sym_SEL] = ACTIONS(2516), + [anon_sym_Class] = ACTIONS(2516), + [anon_sym_id] = ACTIONS(2516), + }, + [578] = { + [sym_identifier] = ACTIONS(2466), + [aux_sym_preproc_include_token1] = ACTIONS(2466), + [aux_sym_preproc_include_token2] = ACTIONS(2466), + [aux_sym_preproc_def_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token2] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2466), + [sym_preproc_directive] = ACTIONS(2466), + [anon_sym_LPAREN2] = ACTIONS(2468), + [anon_sym_BANG] = ACTIONS(2468), + [anon_sym_TILDE] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_PLUS] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2468), + [anon_sym_CARET] = ACTIONS(2468), + [anon_sym_AMP] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym___extension__] = ACTIONS(2466), + [anon_sym_typedef] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym___attribute__] = ACTIONS(2466), + [anon_sym___attribute] = ACTIONS(2466), + [anon_sym_noreturn] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2468), + [anon_sym___declspec] = ACTIONS(2466), + [anon_sym___cdecl] = ACTIONS(2466), + [anon_sym___clrcall] = ACTIONS(2466), + [anon_sym___stdcall] = ACTIONS(2466), + [anon_sym___fastcall] = ACTIONS(2466), + [anon_sym___thiscall] = ACTIONS(2466), + [anon_sym___vectorcall] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_signed] = ACTIONS(2466), + [anon_sym_unsigned] = ACTIONS(2466), + [anon_sym_long] = ACTIONS(2466), + [anon_sym_short] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_ATautoreleasepool] = ACTIONS(2468), + [anon_sym_auto] = ACTIONS(2466), + [anon_sym_register] = ACTIONS(2466), + [anon_sym_inline] = ACTIONS(2466), + [anon_sym___inline] = ACTIONS(2466), + [anon_sym___inline__] = ACTIONS(2466), + [anon_sym___forceinline] = ACTIONS(2466), + [anon_sym_thread_local] = ACTIONS(2466), + [anon_sym___thread] = ACTIONS(2466), + [anon_sym_CG_EXTERN] = ACTIONS(2466), + [anon_sym_CG_INLINE] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2466), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2466), + [anon_sym_IBOutlet] = ACTIONS(2466), + [anon_sym_IBInspectable] = ACTIONS(2466), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2466), + [anon_sym_NS_INLINE] = ACTIONS(2466), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2466), + [anon_sym_OBJC_EXPORT] = ACTIONS(2466), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_constexpr] = ACTIONS(2466), + [anon_sym_volatile] = ACTIONS(2466), + [anon_sym_restrict] = ACTIONS(2466), + [anon_sym___restrict__] = ACTIONS(2466), + [anon_sym__Atomic] = ACTIONS(2466), + [anon_sym__Noreturn] = ACTIONS(2466), + [anon_sym__Nonnull] = ACTIONS(2466), + [anon_sym_nullable] = ACTIONS(2466), + [anon_sym__Complex] = ACTIONS(2466), + [anon_sym__Nullable] = ACTIONS(2466), + [anon_sym__Nullable_result] = ACTIONS(2466), + [anon_sym__Null_unspecified] = ACTIONS(2466), + [anon_sym___autoreleasing] = ACTIONS(2466), + [anon_sym___block] = ACTIONS(2466), + [anon_sym___bridge] = ACTIONS(2466), + [anon_sym___bridge_retained] = ACTIONS(2466), + [anon_sym___bridge_transfer] = ACTIONS(2466), + [anon_sym___complex] = ACTIONS(2466), + [anon_sym___const] = ACTIONS(2466), + [anon_sym___imag] = ACTIONS(2466), + [anon_sym___kindof] = ACTIONS(2466), + [anon_sym___nonnull] = ACTIONS(2466), + [anon_sym___nullable] = ACTIONS(2466), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2466), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2466), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2466), + [anon_sym___real] = ACTIONS(2466), + [anon_sym___strong] = ACTIONS(2466), + [anon_sym___unsafe_unretained] = ACTIONS(2466), + [anon_sym___unused] = ACTIONS(2466), + [anon_sym___weak] = ACTIONS(2466), + [anon_sym_alignas] = ACTIONS(2466), + [anon_sym__Alignas] = ACTIONS(2466), + [sym_primitive_type] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), + [anon_sym_struct] = ACTIONS(2466), + [anon_sym_union] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_else] = ACTIONS(2466), + [anon_sym_switch] = ACTIONS(2466), + [anon_sym_case] = ACTIONS(2466), + [anon_sym_default] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_do] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_in] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_goto] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2468), + [anon_sym_PLUS_PLUS] = ACTIONS(2468), + [anon_sym_sizeof] = ACTIONS(2466), + [anon_sym___alignof__] = ACTIONS(2466), + [anon_sym___alignof] = ACTIONS(2466), + [anon_sym__alignof] = ACTIONS(2466), + [anon_sym_alignof] = ACTIONS(2466), + [anon_sym__Alignof] = ACTIONS(2466), + [anon_sym_offsetof] = ACTIONS(2466), + [anon_sym__Generic] = ACTIONS(2466), + [anon_sym_asm] = ACTIONS(2466), + [anon_sym___asm__] = ACTIONS(2466), + [anon_sym___asm] = ACTIONS(2466), + [sym_number_literal] = ACTIONS(2468), + [anon_sym_L_SQUOTE] = ACTIONS(2468), + [anon_sym_u_SQUOTE] = ACTIONS(2468), + [anon_sym_U_SQUOTE] = ACTIONS(2468), + [anon_sym_u8_SQUOTE] = ACTIONS(2468), + [anon_sym_SQUOTE] = ACTIONS(2468), + [anon_sym_AT] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2468), + [anon_sym_L_DQUOTE] = ACTIONS(2468), + [anon_sym_u_DQUOTE] = ACTIONS(2468), + [anon_sym_U_DQUOTE] = ACTIONS(2468), + [anon_sym_u8_DQUOTE] = ACTIONS(2468), + [sym_true] = ACTIONS(2466), + [sym_false] = ACTIONS(2466), + [anon_sym_NULL] = ACTIONS(2466), + [anon_sym_nullptr] = ACTIONS(2466), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2466), + [anon_sym___typeof] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2466), + [anon_sym_ATimport] = ACTIONS(2468), + [aux_sym_preproc_undef_token1] = ACTIONS(2466), + [anon_sym_POUND] = ACTIONS(2466), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2466), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2466), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2466), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2466), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE] = ACTIONS(2466), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_API_AVAILABLE] = ACTIONS(2466), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_API_DEPRECATED] = ACTIONS(2466), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2466), + [anon_sym___deprecated_msg] = ACTIONS(2466), + [anon_sym___deprecated_enum_msg] = ACTIONS(2466), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2466), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2466), + [anon_sym_ATprotocol] = ACTIONS(2468), + [anon_sym_ATinterface] = ACTIONS(2468), + [anon_sym_ATimplementation] = ACTIONS(2468), + [anon_sym_ATcompatibility_alias] = ACTIONS(2468), + [anon_sym_ATsynthesize] = ACTIONS(2468), + [anon_sym_ATdynamic] = ACTIONS(2468), + [anon_sym_ATtry] = ACTIONS(2468), + [anon_sym___try] = ACTIONS(2466), + [anon_sym_ATthrow] = ACTIONS(2468), + [anon_sym_ATselector] = ACTIONS(2468), + [anon_sym_ATavailable] = ACTIONS(2468), + [anon_sym___builtin_available] = ACTIONS(2466), + [anon_sym_va_arg] = ACTIONS(2466), + [anon_sym_ATencode] = ACTIONS(2468), + [anon_sym_ATsynchronized] = ACTIONS(2468), + [anon_sym_BOOL] = ACTIONS(2466), + [anon_sym_IMP] = ACTIONS(2466), + [anon_sym_SEL] = ACTIONS(2466), + [anon_sym_Class] = ACTIONS(2466), + [anon_sym_id] = ACTIONS(2466), + }, + [579] = { + [sym_identifier] = ACTIONS(2552), + [aux_sym_preproc_include_token1] = ACTIONS(2552), + [aux_sym_preproc_include_token2] = ACTIONS(2552), + [aux_sym_preproc_def_token1] = ACTIONS(2552), + [aux_sym_preproc_if_token1] = ACTIONS(2552), + [aux_sym_preproc_if_token2] = ACTIONS(2552), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2552), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2552), + [sym_preproc_directive] = ACTIONS(2552), + [anon_sym_LPAREN2] = ACTIONS(2554), + [anon_sym_BANG] = ACTIONS(2554), + [anon_sym_TILDE] = ACTIONS(2554), + [anon_sym_DASH] = ACTIONS(2552), + [anon_sym_PLUS] = ACTIONS(2552), + [anon_sym_STAR] = ACTIONS(2554), + [anon_sym_CARET] = ACTIONS(2554), + [anon_sym_AMP] = ACTIONS(2554), + [anon_sym_SEMI] = ACTIONS(2554), + [anon_sym___extension__] = ACTIONS(2552), + [anon_sym_typedef] = ACTIONS(2552), + [anon_sym_extern] = ACTIONS(2552), + [anon_sym___attribute__] = ACTIONS(2552), + [anon_sym___attribute] = ACTIONS(2552), + [anon_sym_noreturn] = ACTIONS(2552), + [anon_sym_LBRACK] = ACTIONS(2554), + [anon_sym___declspec] = ACTIONS(2552), + [anon_sym___cdecl] = ACTIONS(2552), + [anon_sym___clrcall] = ACTIONS(2552), + [anon_sym___stdcall] = ACTIONS(2552), + [anon_sym___fastcall] = ACTIONS(2552), + [anon_sym___thiscall] = ACTIONS(2552), + [anon_sym___vectorcall] = ACTIONS(2552), + [anon_sym_LBRACE] = ACTIONS(2554), + [anon_sym_signed] = ACTIONS(2552), + [anon_sym_unsigned] = ACTIONS(2552), + [anon_sym_long] = ACTIONS(2552), + [anon_sym_short] = ACTIONS(2552), + [anon_sym_static] = ACTIONS(2552), + [anon_sym_ATautoreleasepool] = ACTIONS(2554), + [anon_sym_auto] = ACTIONS(2552), + [anon_sym_register] = ACTIONS(2552), + [anon_sym_inline] = ACTIONS(2552), + [anon_sym___inline] = ACTIONS(2552), + [anon_sym___inline__] = ACTIONS(2552), + [anon_sym___forceinline] = ACTIONS(2552), + [anon_sym_thread_local] = ACTIONS(2552), + [anon_sym___thread] = ACTIONS(2552), + [anon_sym_CG_EXTERN] = ACTIONS(2552), + [anon_sym_CG_INLINE] = ACTIONS(2552), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2552), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2552), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2552), + [anon_sym_IBOutlet] = ACTIONS(2552), + [anon_sym_IBInspectable] = ACTIONS(2552), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2552), + [anon_sym_NS_INLINE] = ACTIONS(2552), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2552), + [anon_sym_OBJC_EXPORT] = ACTIONS(2552), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2552), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2552), + [anon_sym_const] = ACTIONS(2552), + [anon_sym_constexpr] = ACTIONS(2552), + [anon_sym_volatile] = ACTIONS(2552), + [anon_sym_restrict] = ACTIONS(2552), + [anon_sym___restrict__] = ACTIONS(2552), + [anon_sym__Atomic] = ACTIONS(2552), + [anon_sym__Noreturn] = ACTIONS(2552), + [anon_sym__Nonnull] = ACTIONS(2552), + [anon_sym_nullable] = ACTIONS(2552), + [anon_sym__Complex] = ACTIONS(2552), + [anon_sym__Nullable] = ACTIONS(2552), + [anon_sym__Nullable_result] = ACTIONS(2552), + [anon_sym__Null_unspecified] = ACTIONS(2552), + [anon_sym___autoreleasing] = ACTIONS(2552), + [anon_sym___block] = ACTIONS(2552), + [anon_sym___bridge] = ACTIONS(2552), + [anon_sym___bridge_retained] = ACTIONS(2552), + [anon_sym___bridge_transfer] = ACTIONS(2552), + [anon_sym___complex] = ACTIONS(2552), + [anon_sym___const] = ACTIONS(2552), + [anon_sym___imag] = ACTIONS(2552), + [anon_sym___kindof] = ACTIONS(2552), + [anon_sym___nonnull] = ACTIONS(2552), + [anon_sym___nullable] = ACTIONS(2552), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2552), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2552), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2552), + [anon_sym___real] = ACTIONS(2552), + [anon_sym___strong] = ACTIONS(2552), + [anon_sym___unsafe_unretained] = ACTIONS(2552), + [anon_sym___unused] = ACTIONS(2552), + [anon_sym___weak] = ACTIONS(2552), + [anon_sym_alignas] = ACTIONS(2552), + [anon_sym__Alignas] = ACTIONS(2552), + [sym_primitive_type] = ACTIONS(2552), + [anon_sym_enum] = ACTIONS(2552), + [anon_sym_struct] = ACTIONS(2552), + [anon_sym_union] = ACTIONS(2552), + [anon_sym_if] = ACTIONS(2552), + [anon_sym_else] = ACTIONS(2552), + [anon_sym_switch] = ACTIONS(2552), + [anon_sym_case] = ACTIONS(2552), + [anon_sym_default] = ACTIONS(2552), + [anon_sym_while] = ACTIONS(2552), + [anon_sym_do] = ACTIONS(2552), + [anon_sym_for] = ACTIONS(2552), + [anon_sym_in] = ACTIONS(2552), + [anon_sym_return] = ACTIONS(2552), + [anon_sym_break] = ACTIONS(2552), + [anon_sym_continue] = ACTIONS(2552), + [anon_sym_goto] = ACTIONS(2552), + [anon_sym_DASH_DASH] = ACTIONS(2554), + [anon_sym_PLUS_PLUS] = ACTIONS(2554), + [anon_sym_sizeof] = ACTIONS(2552), + [anon_sym___alignof__] = ACTIONS(2552), + [anon_sym___alignof] = ACTIONS(2552), + [anon_sym__alignof] = ACTIONS(2552), + [anon_sym_alignof] = ACTIONS(2552), + [anon_sym__Alignof] = ACTIONS(2552), + [anon_sym_offsetof] = ACTIONS(2552), + [anon_sym__Generic] = ACTIONS(2552), + [anon_sym_asm] = ACTIONS(2552), + [anon_sym___asm__] = ACTIONS(2552), + [anon_sym___asm] = ACTIONS(2552), + [sym_number_literal] = ACTIONS(2554), + [anon_sym_L_SQUOTE] = ACTIONS(2554), + [anon_sym_u_SQUOTE] = ACTIONS(2554), + [anon_sym_U_SQUOTE] = ACTIONS(2554), + [anon_sym_u8_SQUOTE] = ACTIONS(2554), + [anon_sym_SQUOTE] = ACTIONS(2554), + [anon_sym_AT] = ACTIONS(2552), + [anon_sym_DQUOTE] = ACTIONS(2554), + [anon_sym_L_DQUOTE] = ACTIONS(2554), + [anon_sym_u_DQUOTE] = ACTIONS(2554), + [anon_sym_U_DQUOTE] = ACTIONS(2554), + [anon_sym_u8_DQUOTE] = ACTIONS(2554), + [sym_true] = ACTIONS(2552), + [sym_false] = ACTIONS(2552), + [anon_sym_NULL] = ACTIONS(2552), + [anon_sym_nullptr] = ACTIONS(2552), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2552), + [anon_sym___typeof] = ACTIONS(2552), + [anon_sym_typeof] = ACTIONS(2552), + [anon_sym_ATimport] = ACTIONS(2554), + [aux_sym_preproc_undef_token1] = ACTIONS(2552), + [anon_sym_POUND] = ACTIONS(2552), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2552), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2552), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2552), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2552), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2552), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2552), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2552), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2552), + [anon_sym_NS_AVAILABLE] = ACTIONS(2552), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2552), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_API_AVAILABLE] = ACTIONS(2552), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_API_DEPRECATED] = ACTIONS(2552), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2552), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2552), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2552), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2552), + [anon_sym___deprecated_msg] = ACTIONS(2552), + [anon_sym___deprecated_enum_msg] = ACTIONS(2552), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2552), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2552), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2552), + [anon_sym_ATprotocol] = ACTIONS(2554), + [anon_sym_ATinterface] = ACTIONS(2554), + [anon_sym_ATimplementation] = ACTIONS(2554), + [anon_sym_ATcompatibility_alias] = ACTIONS(2554), + [anon_sym_ATsynthesize] = ACTIONS(2554), + [anon_sym_ATdynamic] = ACTIONS(2554), + [anon_sym_ATtry] = ACTIONS(2554), + [anon_sym___try] = ACTIONS(2552), + [anon_sym_ATthrow] = ACTIONS(2554), + [anon_sym_ATselector] = ACTIONS(2554), + [anon_sym_ATavailable] = ACTIONS(2554), + [anon_sym___builtin_available] = ACTIONS(2552), + [anon_sym_va_arg] = ACTIONS(2552), + [anon_sym_ATencode] = ACTIONS(2554), + [anon_sym_ATsynchronized] = ACTIONS(2554), + [anon_sym_BOOL] = ACTIONS(2552), + [anon_sym_IMP] = ACTIONS(2552), + [anon_sym_SEL] = ACTIONS(2552), + [anon_sym_Class] = ACTIONS(2552), + [anon_sym_id] = ACTIONS(2552), + }, + [580] = { + [sym_identifier] = ACTIONS(2556), + [aux_sym_preproc_include_token1] = ACTIONS(2556), + [aux_sym_preproc_include_token2] = ACTIONS(2556), + [aux_sym_preproc_def_token1] = ACTIONS(2556), + [aux_sym_preproc_if_token1] = ACTIONS(2556), + [aux_sym_preproc_if_token2] = ACTIONS(2556), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2556), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2556), + [sym_preproc_directive] = ACTIONS(2556), + [anon_sym_LPAREN2] = ACTIONS(2558), + [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_TILDE] = ACTIONS(2558), + [anon_sym_DASH] = ACTIONS(2556), + [anon_sym_PLUS] = ACTIONS(2556), + [anon_sym_STAR] = ACTIONS(2558), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym_AMP] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym___extension__] = ACTIONS(2556), + [anon_sym_typedef] = ACTIONS(2556), + [anon_sym_extern] = ACTIONS(2556), + [anon_sym___attribute__] = ACTIONS(2556), + [anon_sym___attribute] = ACTIONS(2556), + [anon_sym_noreturn] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym___declspec] = ACTIONS(2556), + [anon_sym___cdecl] = ACTIONS(2556), + [anon_sym___clrcall] = ACTIONS(2556), + [anon_sym___stdcall] = ACTIONS(2556), + [anon_sym___fastcall] = ACTIONS(2556), + [anon_sym___thiscall] = ACTIONS(2556), + [anon_sym___vectorcall] = ACTIONS(2556), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_signed] = ACTIONS(2556), + [anon_sym_unsigned] = ACTIONS(2556), + [anon_sym_long] = ACTIONS(2556), + [anon_sym_short] = ACTIONS(2556), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_ATautoreleasepool] = ACTIONS(2558), + [anon_sym_auto] = ACTIONS(2556), + [anon_sym_register] = ACTIONS(2556), + [anon_sym_inline] = ACTIONS(2556), + [anon_sym___inline] = ACTIONS(2556), + [anon_sym___inline__] = ACTIONS(2556), + [anon_sym___forceinline] = ACTIONS(2556), + [anon_sym_thread_local] = ACTIONS(2556), + [anon_sym___thread] = ACTIONS(2556), + [anon_sym_CG_EXTERN] = ACTIONS(2556), + [anon_sym_CG_INLINE] = ACTIONS(2556), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2556), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2556), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2556), + [anon_sym_IBOutlet] = ACTIONS(2556), + [anon_sym_IBInspectable] = ACTIONS(2556), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2556), + [anon_sym_NS_INLINE] = ACTIONS(2556), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2556), + [anon_sym_OBJC_EXPORT] = ACTIONS(2556), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2556), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2556), + [anon_sym_const] = ACTIONS(2556), + [anon_sym_constexpr] = ACTIONS(2556), + [anon_sym_volatile] = ACTIONS(2556), + [anon_sym_restrict] = ACTIONS(2556), + [anon_sym___restrict__] = ACTIONS(2556), + [anon_sym__Atomic] = ACTIONS(2556), + [anon_sym__Noreturn] = ACTIONS(2556), + [anon_sym__Nonnull] = ACTIONS(2556), + [anon_sym_nullable] = ACTIONS(2556), + [anon_sym__Complex] = ACTIONS(2556), + [anon_sym__Nullable] = ACTIONS(2556), + [anon_sym__Nullable_result] = ACTIONS(2556), + [anon_sym__Null_unspecified] = ACTIONS(2556), + [anon_sym___autoreleasing] = ACTIONS(2556), + [anon_sym___block] = ACTIONS(2556), + [anon_sym___bridge] = ACTIONS(2556), + [anon_sym___bridge_retained] = ACTIONS(2556), + [anon_sym___bridge_transfer] = ACTIONS(2556), + [anon_sym___complex] = ACTIONS(2556), + [anon_sym___const] = ACTIONS(2556), + [anon_sym___imag] = ACTIONS(2556), + [anon_sym___kindof] = ACTIONS(2556), + [anon_sym___nonnull] = ACTIONS(2556), + [anon_sym___nullable] = ACTIONS(2556), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2556), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2556), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2556), + [anon_sym___real] = ACTIONS(2556), + [anon_sym___strong] = ACTIONS(2556), + [anon_sym___unsafe_unretained] = ACTIONS(2556), + [anon_sym___unused] = ACTIONS(2556), + [anon_sym___weak] = ACTIONS(2556), + [anon_sym_alignas] = ACTIONS(2556), + [anon_sym__Alignas] = ACTIONS(2556), + [sym_primitive_type] = ACTIONS(2556), + [anon_sym_enum] = ACTIONS(2556), + [anon_sym_struct] = ACTIONS(2556), + [anon_sym_union] = ACTIONS(2556), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_else] = ACTIONS(2556), + [anon_sym_switch] = ACTIONS(2556), + [anon_sym_case] = ACTIONS(2556), + [anon_sym_default] = ACTIONS(2556), + [anon_sym_while] = ACTIONS(2556), + [anon_sym_do] = ACTIONS(2556), + [anon_sym_for] = ACTIONS(2556), + [anon_sym_in] = ACTIONS(2556), + [anon_sym_return] = ACTIONS(2556), + [anon_sym_break] = ACTIONS(2556), + [anon_sym_continue] = ACTIONS(2556), + [anon_sym_goto] = ACTIONS(2556), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_sizeof] = ACTIONS(2556), + [anon_sym___alignof__] = ACTIONS(2556), + [anon_sym___alignof] = ACTIONS(2556), + [anon_sym__alignof] = ACTIONS(2556), + [anon_sym_alignof] = ACTIONS(2556), + [anon_sym__Alignof] = ACTIONS(2556), + [anon_sym_offsetof] = ACTIONS(2556), + [anon_sym__Generic] = ACTIONS(2556), + [anon_sym_asm] = ACTIONS(2556), + [anon_sym___asm__] = ACTIONS(2556), + [anon_sym___asm] = ACTIONS(2556), + [sym_number_literal] = ACTIONS(2558), + [anon_sym_L_SQUOTE] = ACTIONS(2558), + [anon_sym_u_SQUOTE] = ACTIONS(2558), + [anon_sym_U_SQUOTE] = ACTIONS(2558), + [anon_sym_u8_SQUOTE] = ACTIONS(2558), + [anon_sym_SQUOTE] = ACTIONS(2558), + [anon_sym_AT] = ACTIONS(2556), + [anon_sym_DQUOTE] = ACTIONS(2558), + [anon_sym_L_DQUOTE] = ACTIONS(2558), + [anon_sym_u_DQUOTE] = ACTIONS(2558), + [anon_sym_U_DQUOTE] = ACTIONS(2558), + [anon_sym_u8_DQUOTE] = ACTIONS(2558), + [sym_true] = ACTIONS(2556), + [sym_false] = ACTIONS(2556), + [anon_sym_NULL] = ACTIONS(2556), + [anon_sym_nullptr] = ACTIONS(2556), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2556), + [anon_sym___typeof] = ACTIONS(2556), + [anon_sym_typeof] = ACTIONS(2556), + [anon_sym_ATimport] = ACTIONS(2558), + [aux_sym_preproc_undef_token1] = ACTIONS(2556), + [anon_sym_POUND] = ACTIONS(2556), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2556), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2556), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2556), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2556), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2556), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2556), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2556), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2556), + [anon_sym_NS_AVAILABLE] = ACTIONS(2556), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2556), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_API_AVAILABLE] = ACTIONS(2556), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_API_DEPRECATED] = ACTIONS(2556), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2556), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2556), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2556), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2556), + [anon_sym___deprecated_msg] = ACTIONS(2556), + [anon_sym___deprecated_enum_msg] = ACTIONS(2556), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2556), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2556), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2556), + [anon_sym_ATprotocol] = ACTIONS(2558), + [anon_sym_ATinterface] = ACTIONS(2558), + [anon_sym_ATimplementation] = ACTIONS(2558), + [anon_sym_ATcompatibility_alias] = ACTIONS(2558), + [anon_sym_ATsynthesize] = ACTIONS(2558), + [anon_sym_ATdynamic] = ACTIONS(2558), + [anon_sym_ATtry] = ACTIONS(2558), + [anon_sym___try] = ACTIONS(2556), + [anon_sym_ATthrow] = ACTIONS(2558), + [anon_sym_ATselector] = ACTIONS(2558), + [anon_sym_ATavailable] = ACTIONS(2558), + [anon_sym___builtin_available] = ACTIONS(2556), + [anon_sym_va_arg] = ACTIONS(2556), + [anon_sym_ATencode] = ACTIONS(2558), + [anon_sym_ATsynchronized] = ACTIONS(2558), + [anon_sym_BOOL] = ACTIONS(2556), + [anon_sym_IMP] = ACTIONS(2556), + [anon_sym_SEL] = ACTIONS(2556), + [anon_sym_Class] = ACTIONS(2556), + [anon_sym_id] = ACTIONS(2556), + }, + [581] = { + [sym_identifier] = ACTIONS(2520), + [aux_sym_preproc_include_token1] = ACTIONS(2520), + [aux_sym_preproc_include_token2] = ACTIONS(2520), + [aux_sym_preproc_def_token1] = ACTIONS(2520), + [aux_sym_preproc_if_token1] = ACTIONS(2520), + [aux_sym_preproc_if_token2] = ACTIONS(2520), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2520), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2520), + [sym_preproc_directive] = ACTIONS(2520), + [anon_sym_LPAREN2] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2522), + [anon_sym_TILDE] = ACTIONS(2522), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_PLUS] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_CARET] = ACTIONS(2522), + [anon_sym_AMP] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym___extension__] = ACTIONS(2520), + [anon_sym_typedef] = ACTIONS(2520), + [anon_sym_extern] = ACTIONS(2520), + [anon_sym___attribute__] = ACTIONS(2520), + [anon_sym___attribute] = ACTIONS(2520), + [anon_sym_noreturn] = ACTIONS(2520), + [anon_sym_LBRACK] = ACTIONS(2522), + [anon_sym___declspec] = ACTIONS(2520), + [anon_sym___cdecl] = ACTIONS(2520), + [anon_sym___clrcall] = ACTIONS(2520), + [anon_sym___stdcall] = ACTIONS(2520), + [anon_sym___fastcall] = ACTIONS(2520), + [anon_sym___thiscall] = ACTIONS(2520), + [anon_sym___vectorcall] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_signed] = ACTIONS(2520), + [anon_sym_unsigned] = ACTIONS(2520), + [anon_sym_long] = ACTIONS(2520), + [anon_sym_short] = ACTIONS(2520), + [anon_sym_static] = ACTIONS(2520), + [anon_sym_ATautoreleasepool] = ACTIONS(2522), + [anon_sym_auto] = ACTIONS(2520), + [anon_sym_register] = ACTIONS(2520), + [anon_sym_inline] = ACTIONS(2520), + [anon_sym___inline] = ACTIONS(2520), + [anon_sym___inline__] = ACTIONS(2520), + [anon_sym___forceinline] = ACTIONS(2520), + [anon_sym_thread_local] = ACTIONS(2520), + [anon_sym___thread] = ACTIONS(2520), + [anon_sym_CG_EXTERN] = ACTIONS(2520), + [anon_sym_CG_INLINE] = ACTIONS(2520), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2520), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2520), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2520), + [anon_sym_IBOutlet] = ACTIONS(2520), + [anon_sym_IBInspectable] = ACTIONS(2520), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2520), + [anon_sym_NS_INLINE] = ACTIONS(2520), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2520), + [anon_sym_OBJC_EXPORT] = ACTIONS(2520), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2520), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2520), + [anon_sym_const] = ACTIONS(2520), + [anon_sym_constexpr] = ACTIONS(2520), + [anon_sym_volatile] = ACTIONS(2520), + [anon_sym_restrict] = ACTIONS(2520), + [anon_sym___restrict__] = ACTIONS(2520), + [anon_sym__Atomic] = ACTIONS(2520), + [anon_sym__Noreturn] = ACTIONS(2520), + [anon_sym__Nonnull] = ACTIONS(2520), + [anon_sym_nullable] = ACTIONS(2520), + [anon_sym__Complex] = ACTIONS(2520), + [anon_sym__Nullable] = ACTIONS(2520), + [anon_sym__Nullable_result] = ACTIONS(2520), + [anon_sym__Null_unspecified] = ACTIONS(2520), + [anon_sym___autoreleasing] = ACTIONS(2520), + [anon_sym___block] = ACTIONS(2520), + [anon_sym___bridge] = ACTIONS(2520), + [anon_sym___bridge_retained] = ACTIONS(2520), + [anon_sym___bridge_transfer] = ACTIONS(2520), + [anon_sym___complex] = ACTIONS(2520), + [anon_sym___const] = ACTIONS(2520), + [anon_sym___imag] = ACTIONS(2520), + [anon_sym___kindof] = ACTIONS(2520), + [anon_sym___nonnull] = ACTIONS(2520), + [anon_sym___nullable] = ACTIONS(2520), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2520), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2520), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2520), + [anon_sym___real] = ACTIONS(2520), + [anon_sym___strong] = ACTIONS(2520), + [anon_sym___unsafe_unretained] = ACTIONS(2520), + [anon_sym___unused] = ACTIONS(2520), + [anon_sym___weak] = ACTIONS(2520), + [anon_sym_alignas] = ACTIONS(2520), + [anon_sym__Alignas] = ACTIONS(2520), + [sym_primitive_type] = ACTIONS(2520), + [anon_sym_enum] = ACTIONS(2520), + [anon_sym_struct] = ACTIONS(2520), + [anon_sym_union] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2520), + [anon_sym_else] = ACTIONS(2520), + [anon_sym_switch] = ACTIONS(2520), + [anon_sym_case] = ACTIONS(2520), + [anon_sym_default] = ACTIONS(2520), + [anon_sym_while] = ACTIONS(2520), + [anon_sym_do] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2520), + [anon_sym_in] = ACTIONS(2520), + [anon_sym_return] = ACTIONS(2520), + [anon_sym_break] = ACTIONS(2520), + [anon_sym_continue] = ACTIONS(2520), + [anon_sym_goto] = ACTIONS(2520), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_sizeof] = ACTIONS(2520), + [anon_sym___alignof__] = ACTIONS(2520), + [anon_sym___alignof] = ACTIONS(2520), + [anon_sym__alignof] = ACTIONS(2520), + [anon_sym_alignof] = ACTIONS(2520), + [anon_sym__Alignof] = ACTIONS(2520), + [anon_sym_offsetof] = ACTIONS(2520), + [anon_sym__Generic] = ACTIONS(2520), + [anon_sym_asm] = ACTIONS(2520), + [anon_sym___asm__] = ACTIONS(2520), + [anon_sym___asm] = ACTIONS(2520), + [sym_number_literal] = ACTIONS(2522), + [anon_sym_L_SQUOTE] = ACTIONS(2522), + [anon_sym_u_SQUOTE] = ACTIONS(2522), + [anon_sym_U_SQUOTE] = ACTIONS(2522), + [anon_sym_u8_SQUOTE] = ACTIONS(2522), + [anon_sym_SQUOTE] = ACTIONS(2522), + [anon_sym_AT] = ACTIONS(2520), + [anon_sym_DQUOTE] = ACTIONS(2522), + [anon_sym_L_DQUOTE] = ACTIONS(2522), + [anon_sym_u_DQUOTE] = ACTIONS(2522), + [anon_sym_U_DQUOTE] = ACTIONS(2522), + [anon_sym_u8_DQUOTE] = ACTIONS(2522), + [sym_true] = ACTIONS(2520), + [sym_false] = ACTIONS(2520), + [anon_sym_NULL] = ACTIONS(2520), + [anon_sym_nullptr] = ACTIONS(2520), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2520), + [anon_sym___typeof] = ACTIONS(2520), + [anon_sym_typeof] = ACTIONS(2520), + [anon_sym_ATimport] = ACTIONS(2522), + [aux_sym_preproc_undef_token1] = ACTIONS(2520), + [anon_sym_POUND] = ACTIONS(2520), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2520), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2520), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2520), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2520), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2520), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2520), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2520), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2520), + [anon_sym_NS_AVAILABLE] = ACTIONS(2520), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2520), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_API_AVAILABLE] = ACTIONS(2520), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_API_DEPRECATED] = ACTIONS(2520), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2520), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2520), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2520), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2520), + [anon_sym___deprecated_msg] = ACTIONS(2520), + [anon_sym___deprecated_enum_msg] = ACTIONS(2520), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2520), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2520), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2520), + [anon_sym_ATprotocol] = ACTIONS(2522), + [anon_sym_ATinterface] = ACTIONS(2522), + [anon_sym_ATimplementation] = ACTIONS(2522), + [anon_sym_ATcompatibility_alias] = ACTIONS(2522), + [anon_sym_ATsynthesize] = ACTIONS(2522), + [anon_sym_ATdynamic] = ACTIONS(2522), + [anon_sym_ATtry] = ACTIONS(2522), + [anon_sym___try] = ACTIONS(2520), + [anon_sym_ATthrow] = ACTIONS(2522), + [anon_sym_ATselector] = ACTIONS(2522), + [anon_sym_ATavailable] = ACTIONS(2522), + [anon_sym___builtin_available] = ACTIONS(2520), + [anon_sym_va_arg] = ACTIONS(2520), + [anon_sym_ATencode] = ACTIONS(2522), + [anon_sym_ATsynchronized] = ACTIONS(2522), + [anon_sym_BOOL] = ACTIONS(2520), + [anon_sym_IMP] = ACTIONS(2520), + [anon_sym_SEL] = ACTIONS(2520), + [anon_sym_Class] = ACTIONS(2520), + [anon_sym_id] = ACTIONS(2520), + }, + [582] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [583] = { + [sym_identifier] = ACTIONS(2364), + [aux_sym_preproc_include_token1] = ACTIONS(2364), + [aux_sym_preproc_include_token2] = ACTIONS(2364), + [aux_sym_preproc_def_token1] = ACTIONS(2364), + [aux_sym_preproc_if_token1] = ACTIONS(2364), + [aux_sym_preproc_if_token2] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2364), + [sym_preproc_directive] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_PLUS] = ACTIONS(2364), + [anon_sym_STAR] = ACTIONS(2366), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_AMP] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_typedef] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym___attribute__] = ACTIONS(2364), + [anon_sym___attribute] = ACTIONS(2364), + [anon_sym_noreturn] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym___declspec] = ACTIONS(2364), + [anon_sym___cdecl] = ACTIONS(2364), + [anon_sym___clrcall] = ACTIONS(2364), + [anon_sym___stdcall] = ACTIONS(2364), + [anon_sym___fastcall] = ACTIONS(2364), + [anon_sym___thiscall] = ACTIONS(2364), + [anon_sym___vectorcall] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_signed] = ACTIONS(2364), + [anon_sym_unsigned] = ACTIONS(2364), + [anon_sym_long] = ACTIONS(2364), + [anon_sym_short] = ACTIONS(2364), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_ATautoreleasepool] = ACTIONS(2366), + [anon_sym_auto] = ACTIONS(2364), + [anon_sym_register] = ACTIONS(2364), + [anon_sym_inline] = ACTIONS(2364), + [anon_sym___inline] = ACTIONS(2364), + [anon_sym___inline__] = ACTIONS(2364), + [anon_sym___forceinline] = ACTIONS(2364), + [anon_sym_thread_local] = ACTIONS(2364), + [anon_sym___thread] = ACTIONS(2364), + [anon_sym_CG_EXTERN] = ACTIONS(2364), + [anon_sym_CG_INLINE] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2364), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2364), + [anon_sym_IBOutlet] = ACTIONS(2364), + [anon_sym_IBInspectable] = ACTIONS(2364), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2364), + [anon_sym_NS_INLINE] = ACTIONS(2364), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2364), + [anon_sym_OBJC_EXPORT] = ACTIONS(2364), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [anon_sym_constexpr] = ACTIONS(2364), + [anon_sym_volatile] = ACTIONS(2364), + [anon_sym_restrict] = ACTIONS(2364), + [anon_sym___restrict__] = ACTIONS(2364), + [anon_sym__Atomic] = ACTIONS(2364), + [anon_sym__Noreturn] = ACTIONS(2364), + [anon_sym__Nonnull] = ACTIONS(2364), + [anon_sym_nullable] = ACTIONS(2364), + [anon_sym__Complex] = ACTIONS(2364), + [anon_sym__Nullable] = ACTIONS(2364), + [anon_sym__Nullable_result] = ACTIONS(2364), + [anon_sym__Null_unspecified] = ACTIONS(2364), + [anon_sym___autoreleasing] = ACTIONS(2364), + [anon_sym___block] = ACTIONS(2364), + [anon_sym___bridge] = ACTIONS(2364), + [anon_sym___bridge_retained] = ACTIONS(2364), + [anon_sym___bridge_transfer] = ACTIONS(2364), + [anon_sym___complex] = ACTIONS(2364), + [anon_sym___const] = ACTIONS(2364), + [anon_sym___imag] = ACTIONS(2364), + [anon_sym___kindof] = ACTIONS(2364), + [anon_sym___nonnull] = ACTIONS(2364), + [anon_sym___nullable] = ACTIONS(2364), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2364), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2364), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2364), + [anon_sym___real] = ACTIONS(2364), + [anon_sym___strong] = ACTIONS(2364), + [anon_sym___unsafe_unretained] = ACTIONS(2364), + [anon_sym___unused] = ACTIONS(2364), + [anon_sym___weak] = ACTIONS(2364), + [anon_sym_alignas] = ACTIONS(2364), + [anon_sym__Alignas] = ACTIONS(2364), + [sym_primitive_type] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(2364), + [anon_sym_union] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_switch] = ACTIONS(2364), + [anon_sym_case] = ACTIONS(2364), + [anon_sym_default] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_do] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_in] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_goto] = ACTIONS(2364), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_sizeof] = ACTIONS(2364), + [anon_sym___alignof__] = ACTIONS(2364), + [anon_sym___alignof] = ACTIONS(2364), + [anon_sym__alignof] = ACTIONS(2364), + [anon_sym_alignof] = ACTIONS(2364), + [anon_sym__Alignof] = ACTIONS(2364), + [anon_sym_offsetof] = ACTIONS(2364), + [anon_sym__Generic] = ACTIONS(2364), + [anon_sym_asm] = ACTIONS(2364), + [anon_sym___asm__] = ACTIONS(2364), + [anon_sym___asm] = ACTIONS(2364), + [sym_number_literal] = ACTIONS(2366), + [anon_sym_L_SQUOTE] = ACTIONS(2366), + [anon_sym_u_SQUOTE] = ACTIONS(2366), + [anon_sym_U_SQUOTE] = ACTIONS(2366), + [anon_sym_u8_SQUOTE] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2366), + [anon_sym_AT] = ACTIONS(2364), + [anon_sym_DQUOTE] = ACTIONS(2366), + [anon_sym_L_DQUOTE] = ACTIONS(2366), + [anon_sym_u_DQUOTE] = ACTIONS(2366), + [anon_sym_U_DQUOTE] = ACTIONS(2366), + [anon_sym_u8_DQUOTE] = ACTIONS(2366), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2364), + [anon_sym___typeof] = ACTIONS(2364), + [anon_sym_typeof] = ACTIONS(2364), + [anon_sym_ATimport] = ACTIONS(2366), + [aux_sym_preproc_undef_token1] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(2364), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2364), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2364), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2364), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2364), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE] = ACTIONS(2364), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_API_AVAILABLE] = ACTIONS(2364), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_API_DEPRECATED] = ACTIONS(2364), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2364), + [anon_sym___deprecated_msg] = ACTIONS(2364), + [anon_sym___deprecated_enum_msg] = ACTIONS(2364), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2364), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2364), + [anon_sym_ATprotocol] = ACTIONS(2366), + [anon_sym_ATinterface] = ACTIONS(2366), + [anon_sym_ATimplementation] = ACTIONS(2366), + [anon_sym_ATcompatibility_alias] = ACTIONS(2366), + [anon_sym_ATsynthesize] = ACTIONS(2366), + [anon_sym_ATdynamic] = ACTIONS(2366), + [anon_sym_ATtry] = ACTIONS(2366), + [anon_sym___try] = ACTIONS(2364), + [anon_sym_ATthrow] = ACTIONS(2366), + [anon_sym_ATselector] = ACTIONS(2366), + [anon_sym_ATavailable] = ACTIONS(2366), + [anon_sym___builtin_available] = ACTIONS(2364), + [anon_sym_va_arg] = ACTIONS(2364), + [anon_sym_ATencode] = ACTIONS(2366), + [anon_sym_ATsynchronized] = ACTIONS(2366), + [anon_sym_BOOL] = ACTIONS(2364), + [anon_sym_IMP] = ACTIONS(2364), + [anon_sym_SEL] = ACTIONS(2364), + [anon_sym_Class] = ACTIONS(2364), + [anon_sym_id] = ACTIONS(2364), + }, + [584] = { + [sym_identifier] = ACTIONS(2482), + [aux_sym_preproc_include_token1] = ACTIONS(2482), + [aux_sym_preproc_include_token2] = ACTIONS(2482), + [aux_sym_preproc_def_token1] = ACTIONS(2482), + [aux_sym_preproc_if_token1] = ACTIONS(2482), + [aux_sym_preproc_if_token2] = ACTIONS(2482), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2482), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2482), + [sym_preproc_directive] = ACTIONS(2482), + [anon_sym_LPAREN2] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2484), + [anon_sym_TILDE] = ACTIONS(2484), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_STAR] = ACTIONS(2484), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym___extension__] = ACTIONS(2482), + [anon_sym_typedef] = ACTIONS(2482), + [anon_sym_extern] = ACTIONS(2482), + [anon_sym___attribute__] = ACTIONS(2482), + [anon_sym___attribute] = ACTIONS(2482), + [anon_sym_noreturn] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2484), + [anon_sym___declspec] = ACTIONS(2482), + [anon_sym___cdecl] = ACTIONS(2482), + [anon_sym___clrcall] = ACTIONS(2482), + [anon_sym___stdcall] = ACTIONS(2482), + [anon_sym___fastcall] = ACTIONS(2482), + [anon_sym___thiscall] = ACTIONS(2482), + [anon_sym___vectorcall] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_signed] = ACTIONS(2482), + [anon_sym_unsigned] = ACTIONS(2482), + [anon_sym_long] = ACTIONS(2482), + [anon_sym_short] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_ATautoreleasepool] = ACTIONS(2484), + [anon_sym_auto] = ACTIONS(2482), + [anon_sym_register] = ACTIONS(2482), + [anon_sym_inline] = ACTIONS(2482), + [anon_sym___inline] = ACTIONS(2482), + [anon_sym___inline__] = ACTIONS(2482), + [anon_sym___forceinline] = ACTIONS(2482), + [anon_sym_thread_local] = ACTIONS(2482), + [anon_sym___thread] = ACTIONS(2482), + [anon_sym_CG_EXTERN] = ACTIONS(2482), + [anon_sym_CG_INLINE] = ACTIONS(2482), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2482), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2482), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2482), + [anon_sym_IBOutlet] = ACTIONS(2482), + [anon_sym_IBInspectable] = ACTIONS(2482), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2482), + [anon_sym_NS_INLINE] = ACTIONS(2482), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2482), + [anon_sym_OBJC_EXPORT] = ACTIONS(2482), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2482), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2482), + [anon_sym_const] = ACTIONS(2482), + [anon_sym_constexpr] = ACTIONS(2482), + [anon_sym_volatile] = ACTIONS(2482), + [anon_sym_restrict] = ACTIONS(2482), + [anon_sym___restrict__] = ACTIONS(2482), + [anon_sym__Atomic] = ACTIONS(2482), + [anon_sym__Noreturn] = ACTIONS(2482), + [anon_sym__Nonnull] = ACTIONS(2482), + [anon_sym_nullable] = ACTIONS(2482), + [anon_sym__Complex] = ACTIONS(2482), + [anon_sym__Nullable] = ACTIONS(2482), + [anon_sym__Nullable_result] = ACTIONS(2482), + [anon_sym__Null_unspecified] = ACTIONS(2482), + [anon_sym___autoreleasing] = ACTIONS(2482), + [anon_sym___block] = ACTIONS(2482), + [anon_sym___bridge] = ACTIONS(2482), + [anon_sym___bridge_retained] = ACTIONS(2482), + [anon_sym___bridge_transfer] = ACTIONS(2482), + [anon_sym___complex] = ACTIONS(2482), + [anon_sym___const] = ACTIONS(2482), + [anon_sym___imag] = ACTIONS(2482), + [anon_sym___kindof] = ACTIONS(2482), + [anon_sym___nonnull] = ACTIONS(2482), + [anon_sym___nullable] = ACTIONS(2482), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2482), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2482), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2482), + [anon_sym___real] = ACTIONS(2482), + [anon_sym___strong] = ACTIONS(2482), + [anon_sym___unsafe_unretained] = ACTIONS(2482), + [anon_sym___unused] = ACTIONS(2482), + [anon_sym___weak] = ACTIONS(2482), + [anon_sym_alignas] = ACTIONS(2482), + [anon_sym__Alignas] = ACTIONS(2482), + [sym_primitive_type] = ACTIONS(2482), + [anon_sym_enum] = ACTIONS(2482), + [anon_sym_struct] = ACTIONS(2482), + [anon_sym_union] = ACTIONS(2482), + [anon_sym_if] = ACTIONS(2482), + [anon_sym_else] = ACTIONS(2482), + [anon_sym_switch] = ACTIONS(2482), + [anon_sym_case] = ACTIONS(2482), + [anon_sym_default] = ACTIONS(2482), + [anon_sym_while] = ACTIONS(2482), + [anon_sym_do] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2482), + [anon_sym_continue] = ACTIONS(2482), + [anon_sym_goto] = ACTIONS(2482), + [anon_sym_DASH_DASH] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(2484), + [anon_sym_sizeof] = ACTIONS(2482), + [anon_sym___alignof__] = ACTIONS(2482), + [anon_sym___alignof] = ACTIONS(2482), + [anon_sym__alignof] = ACTIONS(2482), + [anon_sym_alignof] = ACTIONS(2482), + [anon_sym__Alignof] = ACTIONS(2482), + [anon_sym_offsetof] = ACTIONS(2482), + [anon_sym__Generic] = ACTIONS(2482), + [anon_sym_asm] = ACTIONS(2482), + [anon_sym___asm__] = ACTIONS(2482), + [anon_sym___asm] = ACTIONS(2482), + [sym_number_literal] = ACTIONS(2484), + [anon_sym_L_SQUOTE] = ACTIONS(2484), + [anon_sym_u_SQUOTE] = ACTIONS(2484), + [anon_sym_U_SQUOTE] = ACTIONS(2484), + [anon_sym_u8_SQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [anon_sym_AT] = ACTIONS(2482), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_L_DQUOTE] = ACTIONS(2484), + [anon_sym_u_DQUOTE] = ACTIONS(2484), + [anon_sym_U_DQUOTE] = ACTIONS(2484), + [anon_sym_u8_DQUOTE] = ACTIONS(2484), + [sym_true] = ACTIONS(2482), + [sym_false] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_nullptr] = ACTIONS(2482), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2482), + [anon_sym___typeof] = ACTIONS(2482), + [anon_sym_typeof] = ACTIONS(2482), + [anon_sym_ATimport] = ACTIONS(2484), + [aux_sym_preproc_undef_token1] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2482), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2482), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2482), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2482), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2482), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2482), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2482), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2482), + [anon_sym_NS_AVAILABLE] = ACTIONS(2482), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2482), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_API_AVAILABLE] = ACTIONS(2482), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_API_DEPRECATED] = ACTIONS(2482), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2482), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2482), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2482), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2482), + [anon_sym___deprecated_msg] = ACTIONS(2482), + [anon_sym___deprecated_enum_msg] = ACTIONS(2482), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2482), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2482), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2482), + [anon_sym_ATprotocol] = ACTIONS(2484), + [anon_sym_ATinterface] = ACTIONS(2484), + [anon_sym_ATimplementation] = ACTIONS(2484), + [anon_sym_ATcompatibility_alias] = ACTIONS(2484), + [anon_sym_ATsynthesize] = ACTIONS(2484), + [anon_sym_ATdynamic] = ACTIONS(2484), + [anon_sym_ATtry] = ACTIONS(2484), + [anon_sym___try] = ACTIONS(2482), + [anon_sym_ATthrow] = ACTIONS(2484), + [anon_sym_ATselector] = ACTIONS(2484), + [anon_sym_ATavailable] = ACTIONS(2484), + [anon_sym___builtin_available] = ACTIONS(2482), + [anon_sym_va_arg] = ACTIONS(2482), + [anon_sym_ATencode] = ACTIONS(2484), + [anon_sym_ATsynchronized] = ACTIONS(2484), + [anon_sym_BOOL] = ACTIONS(2482), + [anon_sym_IMP] = ACTIONS(2482), + [anon_sym_SEL] = ACTIONS(2482), + [anon_sym_Class] = ACTIONS(2482), + [anon_sym_id] = ACTIONS(2482), + }, + [585] = { + [sym_identifier] = ACTIONS(2486), + [aux_sym_preproc_include_token1] = ACTIONS(2486), + [aux_sym_preproc_include_token2] = ACTIONS(2486), + [aux_sym_preproc_def_token1] = ACTIONS(2486), + [aux_sym_preproc_if_token1] = ACTIONS(2486), + [aux_sym_preproc_if_token2] = ACTIONS(2486), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2486), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2486), + [sym_preproc_directive] = ACTIONS(2486), + [anon_sym_LPAREN2] = ACTIONS(2488), + [anon_sym_BANG] = ACTIONS(2488), + [anon_sym_TILDE] = ACTIONS(2488), + [anon_sym_DASH] = ACTIONS(2486), + [anon_sym_PLUS] = ACTIONS(2486), + [anon_sym_STAR] = ACTIONS(2488), + [anon_sym_CARET] = ACTIONS(2488), + [anon_sym_AMP] = ACTIONS(2488), + [anon_sym_SEMI] = ACTIONS(2488), + [anon_sym___extension__] = ACTIONS(2486), + [anon_sym_typedef] = ACTIONS(2486), + [anon_sym_extern] = ACTIONS(2486), + [anon_sym___attribute__] = ACTIONS(2486), + [anon_sym___attribute] = ACTIONS(2486), + [anon_sym_noreturn] = ACTIONS(2486), + [anon_sym_LBRACK] = ACTIONS(2488), + [anon_sym___declspec] = ACTIONS(2486), + [anon_sym___cdecl] = ACTIONS(2486), + [anon_sym___clrcall] = ACTIONS(2486), + [anon_sym___stdcall] = ACTIONS(2486), + [anon_sym___fastcall] = ACTIONS(2486), + [anon_sym___thiscall] = ACTIONS(2486), + [anon_sym___vectorcall] = ACTIONS(2486), + [anon_sym_LBRACE] = ACTIONS(2488), + [anon_sym_signed] = ACTIONS(2486), + [anon_sym_unsigned] = ACTIONS(2486), + [anon_sym_long] = ACTIONS(2486), + [anon_sym_short] = ACTIONS(2486), + [anon_sym_static] = ACTIONS(2486), + [anon_sym_ATautoreleasepool] = ACTIONS(2488), + [anon_sym_auto] = ACTIONS(2486), + [anon_sym_register] = ACTIONS(2486), + [anon_sym_inline] = ACTIONS(2486), + [anon_sym___inline] = ACTIONS(2486), + [anon_sym___inline__] = ACTIONS(2486), + [anon_sym___forceinline] = ACTIONS(2486), + [anon_sym_thread_local] = ACTIONS(2486), + [anon_sym___thread] = ACTIONS(2486), + [anon_sym_CG_EXTERN] = ACTIONS(2486), + [anon_sym_CG_INLINE] = ACTIONS(2486), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2486), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2486), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2486), + [anon_sym_IBOutlet] = ACTIONS(2486), + [anon_sym_IBInspectable] = ACTIONS(2486), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2486), + [anon_sym_NS_INLINE] = ACTIONS(2486), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2486), + [anon_sym_OBJC_EXPORT] = ACTIONS(2486), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2486), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2486), + [anon_sym_const] = ACTIONS(2486), + [anon_sym_constexpr] = ACTIONS(2486), + [anon_sym_volatile] = ACTIONS(2486), + [anon_sym_restrict] = ACTIONS(2486), + [anon_sym___restrict__] = ACTIONS(2486), + [anon_sym__Atomic] = ACTIONS(2486), + [anon_sym__Noreturn] = ACTIONS(2486), + [anon_sym__Nonnull] = ACTIONS(2486), + [anon_sym_nullable] = ACTIONS(2486), + [anon_sym__Complex] = ACTIONS(2486), + [anon_sym__Nullable] = ACTIONS(2486), + [anon_sym__Nullable_result] = ACTIONS(2486), + [anon_sym__Null_unspecified] = ACTIONS(2486), + [anon_sym___autoreleasing] = ACTIONS(2486), + [anon_sym___block] = ACTIONS(2486), + [anon_sym___bridge] = ACTIONS(2486), + [anon_sym___bridge_retained] = ACTIONS(2486), + [anon_sym___bridge_transfer] = ACTIONS(2486), + [anon_sym___complex] = ACTIONS(2486), + [anon_sym___const] = ACTIONS(2486), + [anon_sym___imag] = ACTIONS(2486), + [anon_sym___kindof] = ACTIONS(2486), + [anon_sym___nonnull] = ACTIONS(2486), + [anon_sym___nullable] = ACTIONS(2486), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2486), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2486), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2486), + [anon_sym___real] = ACTIONS(2486), + [anon_sym___strong] = ACTIONS(2486), + [anon_sym___unsafe_unretained] = ACTIONS(2486), + [anon_sym___unused] = ACTIONS(2486), + [anon_sym___weak] = ACTIONS(2486), + [anon_sym_alignas] = ACTIONS(2486), + [anon_sym__Alignas] = ACTIONS(2486), + [sym_primitive_type] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2486), + [anon_sym_struct] = ACTIONS(2486), + [anon_sym_union] = ACTIONS(2486), + [anon_sym_if] = ACTIONS(2486), + [anon_sym_else] = ACTIONS(2486), + [anon_sym_switch] = ACTIONS(2486), + [anon_sym_case] = ACTIONS(2486), + [anon_sym_default] = ACTIONS(2486), + [anon_sym_while] = ACTIONS(2486), + [anon_sym_do] = ACTIONS(2486), + [anon_sym_for] = ACTIONS(2486), + [anon_sym_in] = ACTIONS(2486), + [anon_sym_return] = ACTIONS(2486), + [anon_sym_break] = ACTIONS(2486), + [anon_sym_continue] = ACTIONS(2486), + [anon_sym_goto] = ACTIONS(2486), + [anon_sym_DASH_DASH] = ACTIONS(2488), + [anon_sym_PLUS_PLUS] = ACTIONS(2488), + [anon_sym_sizeof] = ACTIONS(2486), + [anon_sym___alignof__] = ACTIONS(2486), + [anon_sym___alignof] = ACTIONS(2486), + [anon_sym__alignof] = ACTIONS(2486), + [anon_sym_alignof] = ACTIONS(2486), + [anon_sym__Alignof] = ACTIONS(2486), + [anon_sym_offsetof] = ACTIONS(2486), + [anon_sym__Generic] = ACTIONS(2486), + [anon_sym_asm] = ACTIONS(2486), + [anon_sym___asm__] = ACTIONS(2486), + [anon_sym___asm] = ACTIONS(2486), + [sym_number_literal] = ACTIONS(2488), + [anon_sym_L_SQUOTE] = ACTIONS(2488), + [anon_sym_u_SQUOTE] = ACTIONS(2488), + [anon_sym_U_SQUOTE] = ACTIONS(2488), + [anon_sym_u8_SQUOTE] = ACTIONS(2488), + [anon_sym_SQUOTE] = ACTIONS(2488), + [anon_sym_AT] = ACTIONS(2486), + [anon_sym_DQUOTE] = ACTIONS(2488), + [anon_sym_L_DQUOTE] = ACTIONS(2488), + [anon_sym_u_DQUOTE] = ACTIONS(2488), + [anon_sym_U_DQUOTE] = ACTIONS(2488), + [anon_sym_u8_DQUOTE] = ACTIONS(2488), + [sym_true] = ACTIONS(2486), + [sym_false] = ACTIONS(2486), + [anon_sym_NULL] = ACTIONS(2486), + [anon_sym_nullptr] = ACTIONS(2486), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2486), + [anon_sym___typeof] = ACTIONS(2486), + [anon_sym_typeof] = ACTIONS(2486), + [anon_sym_ATimport] = ACTIONS(2488), + [aux_sym_preproc_undef_token1] = ACTIONS(2486), + [anon_sym_POUND] = ACTIONS(2486), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2486), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2486), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2486), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2486), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2486), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2486), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2486), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2486), + [anon_sym_NS_AVAILABLE] = ACTIONS(2486), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2486), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_API_AVAILABLE] = ACTIONS(2486), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_API_DEPRECATED] = ACTIONS(2486), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2486), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2486), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2486), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2486), + [anon_sym___deprecated_msg] = ACTIONS(2486), + [anon_sym___deprecated_enum_msg] = ACTIONS(2486), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2486), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2486), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2486), + [anon_sym_ATprotocol] = ACTIONS(2488), + [anon_sym_ATinterface] = ACTIONS(2488), + [anon_sym_ATimplementation] = ACTIONS(2488), + [anon_sym_ATcompatibility_alias] = ACTIONS(2488), + [anon_sym_ATsynthesize] = ACTIONS(2488), + [anon_sym_ATdynamic] = ACTIONS(2488), + [anon_sym_ATtry] = ACTIONS(2488), + [anon_sym___try] = ACTIONS(2486), + [anon_sym_ATthrow] = ACTIONS(2488), + [anon_sym_ATselector] = ACTIONS(2488), + [anon_sym_ATavailable] = ACTIONS(2488), + [anon_sym___builtin_available] = ACTIONS(2486), + [anon_sym_va_arg] = ACTIONS(2486), + [anon_sym_ATencode] = ACTIONS(2488), + [anon_sym_ATsynchronized] = ACTIONS(2488), + [anon_sym_BOOL] = ACTIONS(2486), + [anon_sym_IMP] = ACTIONS(2486), + [anon_sym_SEL] = ACTIONS(2486), + [anon_sym_Class] = ACTIONS(2486), + [anon_sym_id] = ACTIONS(2486), + }, + [586] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [587] = { + [sym_identifier] = ACTIONS(2498), + [aux_sym_preproc_include_token1] = ACTIONS(2498), + [aux_sym_preproc_include_token2] = ACTIONS(2498), + [aux_sym_preproc_def_token1] = ACTIONS(2498), + [aux_sym_preproc_if_token1] = ACTIONS(2498), + [aux_sym_preproc_if_token2] = ACTIONS(2498), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2498), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2498), + [sym_preproc_directive] = ACTIONS(2498), + [anon_sym_LPAREN2] = ACTIONS(2500), + [anon_sym_BANG] = ACTIONS(2500), + [anon_sym_TILDE] = ACTIONS(2500), + [anon_sym_DASH] = ACTIONS(2498), + [anon_sym_PLUS] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(2500), + [anon_sym_CARET] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(2500), + [anon_sym_SEMI] = ACTIONS(2500), + [anon_sym___extension__] = ACTIONS(2498), + [anon_sym_typedef] = ACTIONS(2498), + [anon_sym_extern] = ACTIONS(2498), + [anon_sym___attribute__] = ACTIONS(2498), + [anon_sym___attribute] = ACTIONS(2498), + [anon_sym_noreturn] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2500), + [anon_sym___declspec] = ACTIONS(2498), + [anon_sym___cdecl] = ACTIONS(2498), + [anon_sym___clrcall] = ACTIONS(2498), + [anon_sym___stdcall] = ACTIONS(2498), + [anon_sym___fastcall] = ACTIONS(2498), + [anon_sym___thiscall] = ACTIONS(2498), + [anon_sym___vectorcall] = ACTIONS(2498), + [anon_sym_LBRACE] = ACTIONS(2500), + [anon_sym_signed] = ACTIONS(2498), + [anon_sym_unsigned] = ACTIONS(2498), + [anon_sym_long] = ACTIONS(2498), + [anon_sym_short] = ACTIONS(2498), + [anon_sym_static] = ACTIONS(2498), + [anon_sym_ATautoreleasepool] = ACTIONS(2500), + [anon_sym_auto] = ACTIONS(2498), + [anon_sym_register] = ACTIONS(2498), + [anon_sym_inline] = ACTIONS(2498), + [anon_sym___inline] = ACTIONS(2498), + [anon_sym___inline__] = ACTIONS(2498), + [anon_sym___forceinline] = ACTIONS(2498), + [anon_sym_thread_local] = ACTIONS(2498), + [anon_sym___thread] = ACTIONS(2498), + [anon_sym_CG_EXTERN] = ACTIONS(2498), + [anon_sym_CG_INLINE] = ACTIONS(2498), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2498), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2498), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2498), + [anon_sym_IBOutlet] = ACTIONS(2498), + [anon_sym_IBInspectable] = ACTIONS(2498), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2498), + [anon_sym_NS_INLINE] = ACTIONS(2498), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2498), + [anon_sym_OBJC_EXPORT] = ACTIONS(2498), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2498), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2498), + [anon_sym_const] = ACTIONS(2498), + [anon_sym_constexpr] = ACTIONS(2498), + [anon_sym_volatile] = ACTIONS(2498), + [anon_sym_restrict] = ACTIONS(2498), + [anon_sym___restrict__] = ACTIONS(2498), + [anon_sym__Atomic] = ACTIONS(2498), + [anon_sym__Noreturn] = ACTIONS(2498), + [anon_sym__Nonnull] = ACTIONS(2498), + [anon_sym_nullable] = ACTIONS(2498), + [anon_sym__Complex] = ACTIONS(2498), + [anon_sym__Nullable] = ACTIONS(2498), + [anon_sym__Nullable_result] = ACTIONS(2498), + [anon_sym__Null_unspecified] = ACTIONS(2498), + [anon_sym___autoreleasing] = ACTIONS(2498), + [anon_sym___block] = ACTIONS(2498), + [anon_sym___bridge] = ACTIONS(2498), + [anon_sym___bridge_retained] = ACTIONS(2498), + [anon_sym___bridge_transfer] = ACTIONS(2498), + [anon_sym___complex] = ACTIONS(2498), + [anon_sym___const] = ACTIONS(2498), + [anon_sym___imag] = ACTIONS(2498), + [anon_sym___kindof] = ACTIONS(2498), + [anon_sym___nonnull] = ACTIONS(2498), + [anon_sym___nullable] = ACTIONS(2498), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2498), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2498), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2498), + [anon_sym___real] = ACTIONS(2498), + [anon_sym___strong] = ACTIONS(2498), + [anon_sym___unsafe_unretained] = ACTIONS(2498), + [anon_sym___unused] = ACTIONS(2498), + [anon_sym___weak] = ACTIONS(2498), + [anon_sym_alignas] = ACTIONS(2498), + [anon_sym__Alignas] = ACTIONS(2498), + [sym_primitive_type] = ACTIONS(2498), + [anon_sym_enum] = ACTIONS(2498), + [anon_sym_struct] = ACTIONS(2498), + [anon_sym_union] = ACTIONS(2498), + [anon_sym_if] = ACTIONS(2498), + [anon_sym_else] = ACTIONS(2498), + [anon_sym_switch] = ACTIONS(2498), + [anon_sym_case] = ACTIONS(2498), + [anon_sym_default] = ACTIONS(2498), + [anon_sym_while] = ACTIONS(2498), + [anon_sym_do] = ACTIONS(2498), + [anon_sym_for] = ACTIONS(2498), + [anon_sym_in] = ACTIONS(2498), + [anon_sym_return] = ACTIONS(2498), + [anon_sym_break] = ACTIONS(2498), + [anon_sym_continue] = ACTIONS(2498), + [anon_sym_goto] = ACTIONS(2498), + [anon_sym_DASH_DASH] = ACTIONS(2500), + [anon_sym_PLUS_PLUS] = ACTIONS(2500), + [anon_sym_sizeof] = ACTIONS(2498), + [anon_sym___alignof__] = ACTIONS(2498), + [anon_sym___alignof] = ACTIONS(2498), + [anon_sym__alignof] = ACTIONS(2498), + [anon_sym_alignof] = ACTIONS(2498), + [anon_sym__Alignof] = ACTIONS(2498), + [anon_sym_offsetof] = ACTIONS(2498), + [anon_sym__Generic] = ACTIONS(2498), + [anon_sym_asm] = ACTIONS(2498), + [anon_sym___asm__] = ACTIONS(2498), + [anon_sym___asm] = ACTIONS(2498), + [sym_number_literal] = ACTIONS(2500), + [anon_sym_L_SQUOTE] = ACTIONS(2500), + [anon_sym_u_SQUOTE] = ACTIONS(2500), + [anon_sym_U_SQUOTE] = ACTIONS(2500), + [anon_sym_u8_SQUOTE] = ACTIONS(2500), + [anon_sym_SQUOTE] = ACTIONS(2500), + [anon_sym_AT] = ACTIONS(2498), + [anon_sym_DQUOTE] = ACTIONS(2500), + [anon_sym_L_DQUOTE] = ACTIONS(2500), + [anon_sym_u_DQUOTE] = ACTIONS(2500), + [anon_sym_U_DQUOTE] = ACTIONS(2500), + [anon_sym_u8_DQUOTE] = ACTIONS(2500), + [sym_true] = ACTIONS(2498), + [sym_false] = ACTIONS(2498), + [anon_sym_NULL] = ACTIONS(2498), + [anon_sym_nullptr] = ACTIONS(2498), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2498), + [anon_sym___typeof] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(2498), + [anon_sym_ATimport] = ACTIONS(2500), + [aux_sym_preproc_undef_token1] = ACTIONS(2498), + [anon_sym_POUND] = ACTIONS(2498), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2498), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2498), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2498), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2498), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2498), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2498), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2498), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2498), + [anon_sym_NS_AVAILABLE] = ACTIONS(2498), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2498), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_API_AVAILABLE] = ACTIONS(2498), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_API_DEPRECATED] = ACTIONS(2498), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2498), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2498), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2498), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2498), + [anon_sym___deprecated_msg] = ACTIONS(2498), + [anon_sym___deprecated_enum_msg] = ACTIONS(2498), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2498), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2498), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2498), + [anon_sym_ATprotocol] = ACTIONS(2500), + [anon_sym_ATinterface] = ACTIONS(2500), + [anon_sym_ATimplementation] = ACTIONS(2500), + [anon_sym_ATcompatibility_alias] = ACTIONS(2500), + [anon_sym_ATsynthesize] = ACTIONS(2500), + [anon_sym_ATdynamic] = ACTIONS(2500), + [anon_sym_ATtry] = ACTIONS(2500), + [anon_sym___try] = ACTIONS(2498), + [anon_sym_ATthrow] = ACTIONS(2500), + [anon_sym_ATselector] = ACTIONS(2500), + [anon_sym_ATavailable] = ACTIONS(2500), + [anon_sym___builtin_available] = ACTIONS(2498), + [anon_sym_va_arg] = ACTIONS(2498), + [anon_sym_ATencode] = ACTIONS(2500), + [anon_sym_ATsynchronized] = ACTIONS(2500), + [anon_sym_BOOL] = ACTIONS(2498), + [anon_sym_IMP] = ACTIONS(2498), + [anon_sym_SEL] = ACTIONS(2498), + [anon_sym_Class] = ACTIONS(2498), + [anon_sym_id] = ACTIONS(2498), + }, + [588] = { + [sym_identifier] = ACTIONS(2568), + [aux_sym_preproc_include_token1] = ACTIONS(2568), + [aux_sym_preproc_include_token2] = ACTIONS(2568), + [aux_sym_preproc_def_token1] = ACTIONS(2568), + [aux_sym_preproc_if_token1] = ACTIONS(2568), + [aux_sym_preproc_if_token2] = ACTIONS(2568), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2568), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2568), + [sym_preproc_directive] = ACTIONS(2568), + [anon_sym_LPAREN2] = ACTIONS(2570), + [anon_sym_BANG] = ACTIONS(2570), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_CARET] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym___extension__] = ACTIONS(2568), + [anon_sym_typedef] = ACTIONS(2568), + [anon_sym_extern] = ACTIONS(2568), + [anon_sym___attribute__] = ACTIONS(2568), + [anon_sym___attribute] = ACTIONS(2568), + [anon_sym_noreturn] = ACTIONS(2568), + [anon_sym_LBRACK] = ACTIONS(2570), + [anon_sym___declspec] = ACTIONS(2568), + [anon_sym___cdecl] = ACTIONS(2568), + [anon_sym___clrcall] = ACTIONS(2568), + [anon_sym___stdcall] = ACTIONS(2568), + [anon_sym___fastcall] = ACTIONS(2568), + [anon_sym___thiscall] = ACTIONS(2568), + [anon_sym___vectorcall] = ACTIONS(2568), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_signed] = ACTIONS(2568), + [anon_sym_unsigned] = ACTIONS(2568), + [anon_sym_long] = ACTIONS(2568), + [anon_sym_short] = ACTIONS(2568), + [anon_sym_static] = ACTIONS(2568), + [anon_sym_ATautoreleasepool] = ACTIONS(2570), + [anon_sym_auto] = ACTIONS(2568), + [anon_sym_register] = ACTIONS(2568), + [anon_sym_inline] = ACTIONS(2568), + [anon_sym___inline] = ACTIONS(2568), + [anon_sym___inline__] = ACTIONS(2568), + [anon_sym___forceinline] = ACTIONS(2568), + [anon_sym_thread_local] = ACTIONS(2568), + [anon_sym___thread] = ACTIONS(2568), + [anon_sym_CG_EXTERN] = ACTIONS(2568), + [anon_sym_CG_INLINE] = ACTIONS(2568), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2568), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2568), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2568), + [anon_sym_IBOutlet] = ACTIONS(2568), + [anon_sym_IBInspectable] = ACTIONS(2568), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2568), + [anon_sym_NS_INLINE] = ACTIONS(2568), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2568), + [anon_sym_OBJC_EXPORT] = ACTIONS(2568), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2568), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2568), + [anon_sym_const] = ACTIONS(2568), + [anon_sym_constexpr] = ACTIONS(2568), + [anon_sym_volatile] = ACTIONS(2568), + [anon_sym_restrict] = ACTIONS(2568), + [anon_sym___restrict__] = ACTIONS(2568), + [anon_sym__Atomic] = ACTIONS(2568), + [anon_sym__Noreturn] = ACTIONS(2568), + [anon_sym__Nonnull] = ACTIONS(2568), + [anon_sym_nullable] = ACTIONS(2568), + [anon_sym__Complex] = ACTIONS(2568), + [anon_sym__Nullable] = ACTIONS(2568), + [anon_sym__Nullable_result] = ACTIONS(2568), + [anon_sym__Null_unspecified] = ACTIONS(2568), + [anon_sym___autoreleasing] = ACTIONS(2568), + [anon_sym___block] = ACTIONS(2568), + [anon_sym___bridge] = ACTIONS(2568), + [anon_sym___bridge_retained] = ACTIONS(2568), + [anon_sym___bridge_transfer] = ACTIONS(2568), + [anon_sym___complex] = ACTIONS(2568), + [anon_sym___const] = ACTIONS(2568), + [anon_sym___imag] = ACTIONS(2568), + [anon_sym___kindof] = ACTIONS(2568), + [anon_sym___nonnull] = ACTIONS(2568), + [anon_sym___nullable] = ACTIONS(2568), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2568), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2568), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2568), + [anon_sym___real] = ACTIONS(2568), + [anon_sym___strong] = ACTIONS(2568), + [anon_sym___unsafe_unretained] = ACTIONS(2568), + [anon_sym___unused] = ACTIONS(2568), + [anon_sym___weak] = ACTIONS(2568), + [anon_sym_alignas] = ACTIONS(2568), + [anon_sym__Alignas] = ACTIONS(2568), + [sym_primitive_type] = ACTIONS(2568), + [anon_sym_enum] = ACTIONS(2568), + [anon_sym_struct] = ACTIONS(2568), + [anon_sym_union] = ACTIONS(2568), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_else] = ACTIONS(2568), + [anon_sym_switch] = ACTIONS(2568), + [anon_sym_case] = ACTIONS(2568), + [anon_sym_default] = ACTIONS(2568), + [anon_sym_while] = ACTIONS(2568), + [anon_sym_do] = ACTIONS(2568), + [anon_sym_for] = ACTIONS(2568), + [anon_sym_in] = ACTIONS(2568), + [anon_sym_return] = ACTIONS(2568), + [anon_sym_break] = ACTIONS(2568), + [anon_sym_continue] = ACTIONS(2568), + [anon_sym_goto] = ACTIONS(2568), + [anon_sym_DASH_DASH] = ACTIONS(2570), + [anon_sym_PLUS_PLUS] = ACTIONS(2570), + [anon_sym_sizeof] = ACTIONS(2568), + [anon_sym___alignof__] = ACTIONS(2568), + [anon_sym___alignof] = ACTIONS(2568), + [anon_sym__alignof] = ACTIONS(2568), + [anon_sym_alignof] = ACTIONS(2568), + [anon_sym__Alignof] = ACTIONS(2568), + [anon_sym_offsetof] = ACTIONS(2568), + [anon_sym__Generic] = ACTIONS(2568), + [anon_sym_asm] = ACTIONS(2568), + [anon_sym___asm__] = ACTIONS(2568), + [anon_sym___asm] = ACTIONS(2568), + [sym_number_literal] = ACTIONS(2570), + [anon_sym_L_SQUOTE] = ACTIONS(2570), + [anon_sym_u_SQUOTE] = ACTIONS(2570), + [anon_sym_U_SQUOTE] = ACTIONS(2570), + [anon_sym_u8_SQUOTE] = ACTIONS(2570), + [anon_sym_SQUOTE] = ACTIONS(2570), + [anon_sym_AT] = ACTIONS(2568), + [anon_sym_DQUOTE] = ACTIONS(2570), + [anon_sym_L_DQUOTE] = ACTIONS(2570), + [anon_sym_u_DQUOTE] = ACTIONS(2570), + [anon_sym_U_DQUOTE] = ACTIONS(2570), + [anon_sym_u8_DQUOTE] = ACTIONS(2570), + [sym_true] = ACTIONS(2568), + [sym_false] = ACTIONS(2568), + [anon_sym_NULL] = ACTIONS(2568), + [anon_sym_nullptr] = ACTIONS(2568), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2568), + [anon_sym___typeof] = ACTIONS(2568), + [anon_sym_typeof] = ACTIONS(2568), + [anon_sym_ATimport] = ACTIONS(2570), + [aux_sym_preproc_undef_token1] = ACTIONS(2568), + [anon_sym_POUND] = ACTIONS(2568), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2568), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2568), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2568), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2568), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2568), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2568), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2568), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2568), + [anon_sym_NS_AVAILABLE] = ACTIONS(2568), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2568), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_API_AVAILABLE] = ACTIONS(2568), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_API_DEPRECATED] = ACTIONS(2568), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2568), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2568), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2568), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2568), + [anon_sym___deprecated_msg] = ACTIONS(2568), + [anon_sym___deprecated_enum_msg] = ACTIONS(2568), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2568), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2568), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2568), + [anon_sym_ATprotocol] = ACTIONS(2570), + [anon_sym_ATinterface] = ACTIONS(2570), + [anon_sym_ATimplementation] = ACTIONS(2570), + [anon_sym_ATcompatibility_alias] = ACTIONS(2570), + [anon_sym_ATsynthesize] = ACTIONS(2570), + [anon_sym_ATdynamic] = ACTIONS(2570), + [anon_sym_ATtry] = ACTIONS(2570), + [anon_sym___try] = ACTIONS(2568), + [anon_sym_ATthrow] = ACTIONS(2570), + [anon_sym_ATselector] = ACTIONS(2570), + [anon_sym_ATavailable] = ACTIONS(2570), + [anon_sym___builtin_available] = ACTIONS(2568), + [anon_sym_va_arg] = ACTIONS(2568), + [anon_sym_ATencode] = ACTIONS(2570), + [anon_sym_ATsynchronized] = ACTIONS(2570), + [anon_sym_BOOL] = ACTIONS(2568), + [anon_sym_IMP] = ACTIONS(2568), + [anon_sym_SEL] = ACTIONS(2568), + [anon_sym_Class] = ACTIONS(2568), + [anon_sym_id] = ACTIONS(2568), + }, + [589] = { + [sym_expression] = STATE(1637), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1995), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1995), + [sym_call_expression] = STATE(1995), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1995), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1995), + [sym_initializer_list] = STATE(1655), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_COMMA] = ACTIONS(2222), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2222), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(2222), + [anon_sym_PIPE_PIPE] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2222), + [anon_sym_PIPE] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2222), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_EQ_EQ] = ACTIONS(2222), + [anon_sym_BANG_EQ] = ACTIONS(2222), + [anon_sym_GT] = ACTIONS(2220), + [anon_sym_GT_EQ] = ACTIONS(2222), + [anon_sym_LT_EQ] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2220), + [anon_sym_LT_LT] = ACTIONS(2222), + [anon_sym_GT_GT] = ACTIONS(2222), + [anon_sym___extension__] = ACTIONS(2220), + [anon_sym_extern] = ACTIONS(2220), + [anon_sym___attribute__] = ACTIONS(2220), + [anon_sym___attribute] = ACTIONS(2220), + [anon_sym_noreturn] = ACTIONS(2220), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym___declspec] = ACTIONS(2220), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2220), + [anon_sym_auto] = ACTIONS(2220), + [anon_sym_register] = ACTIONS(2220), + [anon_sym_inline] = ACTIONS(2220), + [anon_sym___inline] = ACTIONS(2220), + [anon_sym___inline__] = ACTIONS(2220), + [anon_sym___forceinline] = ACTIONS(2220), + [anon_sym_thread_local] = ACTIONS(2220), + [anon_sym___thread] = ACTIONS(2220), + [anon_sym_CG_EXTERN] = ACTIONS(2220), + [anon_sym_CG_INLINE] = ACTIONS(2220), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2220), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2220), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2220), + [anon_sym_IBOutlet] = ACTIONS(2220), + [anon_sym_IBInspectable] = ACTIONS(2220), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2220), + [anon_sym_NS_INLINE] = ACTIONS(2220), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2220), + [anon_sym_OBJC_EXPORT] = ACTIONS(2220), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2220), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2220), + [anon_sym_const] = ACTIONS(2220), + [anon_sym_constexpr] = ACTIONS(2220), + [anon_sym_volatile] = ACTIONS(2220), + [anon_sym_restrict] = ACTIONS(2220), + [anon_sym___restrict__] = ACTIONS(2220), + [anon_sym__Atomic] = ACTIONS(2220), + [anon_sym__Noreturn] = ACTIONS(2220), + [anon_sym__Nonnull] = ACTIONS(2220), + [anon_sym_nullable] = ACTIONS(2220), + [anon_sym__Complex] = ACTIONS(2220), + [anon_sym__Nullable] = ACTIONS(2220), + [anon_sym__Nullable_result] = ACTIONS(2220), + [anon_sym__Null_unspecified] = ACTIONS(2220), + [anon_sym___autoreleasing] = ACTIONS(2220), + [anon_sym___block] = ACTIONS(2220), + [anon_sym___bridge] = ACTIONS(2220), + [anon_sym___bridge_retained] = ACTIONS(2220), + [anon_sym___bridge_transfer] = ACTIONS(2220), + [anon_sym___complex] = ACTIONS(2220), + [anon_sym___const] = ACTIONS(2220), + [anon_sym___imag] = ACTIONS(2220), + [anon_sym___kindof] = ACTIONS(2220), + [anon_sym___nonnull] = ACTIONS(2220), + [anon_sym___nullable] = ACTIONS(2220), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2220), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2220), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2220), + [anon_sym___real] = ACTIONS(2220), + [anon_sym___strong] = ACTIONS(2220), + [anon_sym___unsafe_unretained] = ACTIONS(2220), + [anon_sym___unused] = ACTIONS(2220), + [anon_sym___weak] = ACTIONS(2220), + [anon_sym_alignas] = ACTIONS(2220), + [anon_sym__Alignas] = ACTIONS(2220), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_sizeof] = ACTIONS(2898), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [anon_sym_DOT] = ACTIONS(2220), + [anon_sym_DASH_GT] = ACTIONS(2222), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2220), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2220), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2220), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2220), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2220), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2220), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2220), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2220), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2220), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2220), + [anon_sym_NS_AVAILABLE] = ACTIONS(2220), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2220), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2220), + [anon_sym_API_AVAILABLE] = ACTIONS(2220), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2220), + [anon_sym_API_DEPRECATED] = ACTIONS(2220), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2220), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2220), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2220), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2220), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2220), + [anon_sym___deprecated_msg] = ACTIONS(2220), + [anon_sym___deprecated_enum_msg] = ACTIONS(2220), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2220), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2220), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2220), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2220), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2220), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2220), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [590] = { + [sym_identifier] = ACTIONS(2512), + [aux_sym_preproc_include_token1] = ACTIONS(2512), + [aux_sym_preproc_include_token2] = ACTIONS(2512), + [aux_sym_preproc_def_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token2] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2512), + [sym_preproc_directive] = ACTIONS(2512), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_TILDE] = ACTIONS(2514), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_STAR] = ACTIONS(2514), + [anon_sym_CARET] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym___extension__] = ACTIONS(2512), + [anon_sym_typedef] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym___attribute__] = ACTIONS(2512), + [anon_sym___attribute] = ACTIONS(2512), + [anon_sym_noreturn] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym___declspec] = ACTIONS(2512), + [anon_sym___cdecl] = ACTIONS(2512), + [anon_sym___clrcall] = ACTIONS(2512), + [anon_sym___stdcall] = ACTIONS(2512), + [anon_sym___fastcall] = ACTIONS(2512), + [anon_sym___thiscall] = ACTIONS(2512), + [anon_sym___vectorcall] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_signed] = ACTIONS(2512), + [anon_sym_unsigned] = ACTIONS(2512), + [anon_sym_long] = ACTIONS(2512), + [anon_sym_short] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_ATautoreleasepool] = ACTIONS(2514), + [anon_sym_auto] = ACTIONS(2512), + [anon_sym_register] = ACTIONS(2512), + [anon_sym_inline] = ACTIONS(2512), + [anon_sym___inline] = ACTIONS(2512), + [anon_sym___inline__] = ACTIONS(2512), + [anon_sym___forceinline] = ACTIONS(2512), + [anon_sym_thread_local] = ACTIONS(2512), + [anon_sym___thread] = ACTIONS(2512), + [anon_sym_CG_EXTERN] = ACTIONS(2512), + [anon_sym_CG_INLINE] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2512), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2512), + [anon_sym_IBOutlet] = ACTIONS(2512), + [anon_sym_IBInspectable] = ACTIONS(2512), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2512), + [anon_sym_NS_INLINE] = ACTIONS(2512), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2512), + [anon_sym_OBJC_EXPORT] = ACTIONS(2512), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_constexpr] = ACTIONS(2512), + [anon_sym_volatile] = ACTIONS(2512), + [anon_sym_restrict] = ACTIONS(2512), + [anon_sym___restrict__] = ACTIONS(2512), + [anon_sym__Atomic] = ACTIONS(2512), + [anon_sym__Noreturn] = ACTIONS(2512), + [anon_sym__Nonnull] = ACTIONS(2512), + [anon_sym_nullable] = ACTIONS(2512), + [anon_sym__Complex] = ACTIONS(2512), + [anon_sym__Nullable] = ACTIONS(2512), + [anon_sym__Nullable_result] = ACTIONS(2512), + [anon_sym__Null_unspecified] = ACTIONS(2512), + [anon_sym___autoreleasing] = ACTIONS(2512), + [anon_sym___block] = ACTIONS(2512), + [anon_sym___bridge] = ACTIONS(2512), + [anon_sym___bridge_retained] = ACTIONS(2512), + [anon_sym___bridge_transfer] = ACTIONS(2512), + [anon_sym___complex] = ACTIONS(2512), + [anon_sym___const] = ACTIONS(2512), + [anon_sym___imag] = ACTIONS(2512), + [anon_sym___kindof] = ACTIONS(2512), + [anon_sym___nonnull] = ACTIONS(2512), + [anon_sym___nullable] = ACTIONS(2512), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2512), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2512), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2512), + [anon_sym___real] = ACTIONS(2512), + [anon_sym___strong] = ACTIONS(2512), + [anon_sym___unsafe_unretained] = ACTIONS(2512), + [anon_sym___unused] = ACTIONS(2512), + [anon_sym___weak] = ACTIONS(2512), + [anon_sym_alignas] = ACTIONS(2512), + [anon_sym__Alignas] = ACTIONS(2512), + [sym_primitive_type] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [anon_sym_struct] = ACTIONS(2512), + [anon_sym_union] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_else] = ACTIONS(2512), + [anon_sym_switch] = ACTIONS(2512), + [anon_sym_case] = ACTIONS(2512), + [anon_sym_default] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_do] = ACTIONS(2512), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_in] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_goto] = ACTIONS(2512), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_sizeof] = ACTIONS(2512), + [anon_sym___alignof__] = ACTIONS(2512), + [anon_sym___alignof] = ACTIONS(2512), + [anon_sym__alignof] = ACTIONS(2512), + [anon_sym_alignof] = ACTIONS(2512), + [anon_sym__Alignof] = ACTIONS(2512), + [anon_sym_offsetof] = ACTIONS(2512), + [anon_sym__Generic] = ACTIONS(2512), + [anon_sym_asm] = ACTIONS(2512), + [anon_sym___asm__] = ACTIONS(2512), + [anon_sym___asm] = ACTIONS(2512), + [sym_number_literal] = ACTIONS(2514), + [anon_sym_L_SQUOTE] = ACTIONS(2514), + [anon_sym_u_SQUOTE] = ACTIONS(2514), + [anon_sym_U_SQUOTE] = ACTIONS(2514), + [anon_sym_u8_SQUOTE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_AT] = ACTIONS(2512), + [anon_sym_DQUOTE] = ACTIONS(2514), + [anon_sym_L_DQUOTE] = ACTIONS(2514), + [anon_sym_u_DQUOTE] = ACTIONS(2514), + [anon_sym_U_DQUOTE] = ACTIONS(2514), + [anon_sym_u8_DQUOTE] = ACTIONS(2514), + [sym_true] = ACTIONS(2512), + [sym_false] = ACTIONS(2512), + [anon_sym_NULL] = ACTIONS(2512), + [anon_sym_nullptr] = ACTIONS(2512), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2512), + [anon_sym___typeof] = ACTIONS(2512), + [anon_sym_typeof] = ACTIONS(2512), + [anon_sym_ATimport] = ACTIONS(2514), + [aux_sym_preproc_undef_token1] = ACTIONS(2512), + [anon_sym_POUND] = ACTIONS(2512), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2512), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2512), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2512), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2512), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE] = ACTIONS(2512), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_API_AVAILABLE] = ACTIONS(2512), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_API_DEPRECATED] = ACTIONS(2512), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2512), + [anon_sym___deprecated_msg] = ACTIONS(2512), + [anon_sym___deprecated_enum_msg] = ACTIONS(2512), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2512), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2512), + [anon_sym_ATprotocol] = ACTIONS(2514), + [anon_sym_ATinterface] = ACTIONS(2514), + [anon_sym_ATimplementation] = ACTIONS(2514), + [anon_sym_ATcompatibility_alias] = ACTIONS(2514), + [anon_sym_ATsynthesize] = ACTIONS(2514), + [anon_sym_ATdynamic] = ACTIONS(2514), + [anon_sym_ATtry] = ACTIONS(2514), + [anon_sym___try] = ACTIONS(2512), + [anon_sym_ATthrow] = ACTIONS(2514), + [anon_sym_ATselector] = ACTIONS(2514), + [anon_sym_ATavailable] = ACTIONS(2514), + [anon_sym___builtin_available] = ACTIONS(2512), + [anon_sym_va_arg] = ACTIONS(2512), + [anon_sym_ATencode] = ACTIONS(2514), + [anon_sym_ATsynchronized] = ACTIONS(2514), + [anon_sym_BOOL] = ACTIONS(2512), + [anon_sym_IMP] = ACTIONS(2512), + [anon_sym_SEL] = ACTIONS(2512), + [anon_sym_Class] = ACTIONS(2512), + [anon_sym_id] = ACTIONS(2512), + }, + [591] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [592] = { + [sym_identifier] = ACTIONS(2490), + [aux_sym_preproc_include_token1] = ACTIONS(2490), + [aux_sym_preproc_include_token2] = ACTIONS(2490), + [aux_sym_preproc_def_token1] = ACTIONS(2490), + [aux_sym_preproc_if_token1] = ACTIONS(2490), + [aux_sym_preproc_if_token2] = ACTIONS(2490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2490), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2490), + [sym_preproc_directive] = ACTIONS(2490), + [anon_sym_LPAREN2] = ACTIONS(2492), + [anon_sym_BANG] = ACTIONS(2492), + [anon_sym_TILDE] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2490), + [anon_sym_PLUS] = ACTIONS(2490), + [anon_sym_STAR] = ACTIONS(2492), + [anon_sym_CARET] = ACTIONS(2492), + [anon_sym_AMP] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym___extension__] = ACTIONS(2490), + [anon_sym_typedef] = ACTIONS(2490), + [anon_sym_extern] = ACTIONS(2490), + [anon_sym___attribute__] = ACTIONS(2490), + [anon_sym___attribute] = ACTIONS(2490), + [anon_sym_noreturn] = ACTIONS(2490), + [anon_sym_LBRACK] = ACTIONS(2492), + [anon_sym___declspec] = ACTIONS(2490), + [anon_sym___cdecl] = ACTIONS(2490), + [anon_sym___clrcall] = ACTIONS(2490), + [anon_sym___stdcall] = ACTIONS(2490), + [anon_sym___fastcall] = ACTIONS(2490), + [anon_sym___thiscall] = ACTIONS(2490), + [anon_sym___vectorcall] = ACTIONS(2490), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_signed] = ACTIONS(2490), + [anon_sym_unsigned] = ACTIONS(2490), + [anon_sym_long] = ACTIONS(2490), + [anon_sym_short] = ACTIONS(2490), + [anon_sym_static] = ACTIONS(2490), + [anon_sym_ATautoreleasepool] = ACTIONS(2492), + [anon_sym_auto] = ACTIONS(2490), + [anon_sym_register] = ACTIONS(2490), + [anon_sym_inline] = ACTIONS(2490), + [anon_sym___inline] = ACTIONS(2490), + [anon_sym___inline__] = ACTIONS(2490), + [anon_sym___forceinline] = ACTIONS(2490), + [anon_sym_thread_local] = ACTIONS(2490), + [anon_sym___thread] = ACTIONS(2490), + [anon_sym_CG_EXTERN] = ACTIONS(2490), + [anon_sym_CG_INLINE] = ACTIONS(2490), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2490), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2490), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2490), + [anon_sym_IBOutlet] = ACTIONS(2490), + [anon_sym_IBInspectable] = ACTIONS(2490), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2490), + [anon_sym_NS_INLINE] = ACTIONS(2490), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2490), + [anon_sym_OBJC_EXPORT] = ACTIONS(2490), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2490), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(2490), + [anon_sym_constexpr] = ACTIONS(2490), + [anon_sym_volatile] = ACTIONS(2490), + [anon_sym_restrict] = ACTIONS(2490), + [anon_sym___restrict__] = ACTIONS(2490), + [anon_sym__Atomic] = ACTIONS(2490), + [anon_sym__Noreturn] = ACTIONS(2490), + [anon_sym__Nonnull] = ACTIONS(2490), + [anon_sym_nullable] = ACTIONS(2490), + [anon_sym__Complex] = ACTIONS(2490), + [anon_sym__Nullable] = ACTIONS(2490), + [anon_sym__Nullable_result] = ACTIONS(2490), + [anon_sym__Null_unspecified] = ACTIONS(2490), + [anon_sym___autoreleasing] = ACTIONS(2490), + [anon_sym___block] = ACTIONS(2490), + [anon_sym___bridge] = ACTIONS(2490), + [anon_sym___bridge_retained] = ACTIONS(2490), + [anon_sym___bridge_transfer] = ACTIONS(2490), + [anon_sym___complex] = ACTIONS(2490), + [anon_sym___const] = ACTIONS(2490), + [anon_sym___imag] = ACTIONS(2490), + [anon_sym___kindof] = ACTIONS(2490), + [anon_sym___nonnull] = ACTIONS(2490), + [anon_sym___nullable] = ACTIONS(2490), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2490), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2490), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2490), + [anon_sym___real] = ACTIONS(2490), + [anon_sym___strong] = ACTIONS(2490), + [anon_sym___unsafe_unretained] = ACTIONS(2490), + [anon_sym___unused] = ACTIONS(2490), + [anon_sym___weak] = ACTIONS(2490), + [anon_sym_alignas] = ACTIONS(2490), + [anon_sym__Alignas] = ACTIONS(2490), + [sym_primitive_type] = ACTIONS(2490), + [anon_sym_enum] = ACTIONS(2490), + [anon_sym_struct] = ACTIONS(2490), + [anon_sym_union] = ACTIONS(2490), + [anon_sym_if] = ACTIONS(2490), + [anon_sym_else] = ACTIONS(2490), + [anon_sym_switch] = ACTIONS(2490), + [anon_sym_case] = ACTIONS(2490), + [anon_sym_default] = ACTIONS(2490), + [anon_sym_while] = ACTIONS(2490), + [anon_sym_do] = ACTIONS(2490), + [anon_sym_for] = ACTIONS(2490), + [anon_sym_in] = ACTIONS(2490), + [anon_sym_return] = ACTIONS(2490), + [anon_sym_break] = ACTIONS(2490), + [anon_sym_continue] = ACTIONS(2490), + [anon_sym_goto] = ACTIONS(2490), + [anon_sym_DASH_DASH] = ACTIONS(2492), + [anon_sym_PLUS_PLUS] = ACTIONS(2492), + [anon_sym_sizeof] = ACTIONS(2490), + [anon_sym___alignof__] = ACTIONS(2490), + [anon_sym___alignof] = ACTIONS(2490), + [anon_sym__alignof] = ACTIONS(2490), + [anon_sym_alignof] = ACTIONS(2490), + [anon_sym__Alignof] = ACTIONS(2490), + [anon_sym_offsetof] = ACTIONS(2490), + [anon_sym__Generic] = ACTIONS(2490), + [anon_sym_asm] = ACTIONS(2490), + [anon_sym___asm__] = ACTIONS(2490), + [anon_sym___asm] = ACTIONS(2490), + [sym_number_literal] = ACTIONS(2492), + [anon_sym_L_SQUOTE] = ACTIONS(2492), + [anon_sym_u_SQUOTE] = ACTIONS(2492), + [anon_sym_U_SQUOTE] = ACTIONS(2492), + [anon_sym_u8_SQUOTE] = ACTIONS(2492), + [anon_sym_SQUOTE] = ACTIONS(2492), + [anon_sym_AT] = ACTIONS(2490), + [anon_sym_DQUOTE] = ACTIONS(2492), + [anon_sym_L_DQUOTE] = ACTIONS(2492), + [anon_sym_u_DQUOTE] = ACTIONS(2492), + [anon_sym_U_DQUOTE] = ACTIONS(2492), + [anon_sym_u8_DQUOTE] = ACTIONS(2492), + [sym_true] = ACTIONS(2490), + [sym_false] = ACTIONS(2490), + [anon_sym_NULL] = ACTIONS(2490), + [anon_sym_nullptr] = ACTIONS(2490), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2490), + [anon_sym___typeof] = ACTIONS(2490), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_ATimport] = ACTIONS(2492), + [aux_sym_preproc_undef_token1] = ACTIONS(2490), + [anon_sym_POUND] = ACTIONS(2490), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2490), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2490), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2490), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2490), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2490), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2490), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2490), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2490), + [anon_sym_NS_AVAILABLE] = ACTIONS(2490), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2490), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_API_AVAILABLE] = ACTIONS(2490), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_API_DEPRECATED] = ACTIONS(2490), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2490), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2490), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2490), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2490), + [anon_sym___deprecated_msg] = ACTIONS(2490), + [anon_sym___deprecated_enum_msg] = ACTIONS(2490), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2490), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2490), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2490), + [anon_sym_ATprotocol] = ACTIONS(2492), + [anon_sym_ATinterface] = ACTIONS(2492), + [anon_sym_ATimplementation] = ACTIONS(2492), + [anon_sym_ATcompatibility_alias] = ACTIONS(2492), + [anon_sym_ATsynthesize] = ACTIONS(2492), + [anon_sym_ATdynamic] = ACTIONS(2492), + [anon_sym_ATtry] = ACTIONS(2492), + [anon_sym___try] = ACTIONS(2490), + [anon_sym_ATthrow] = ACTIONS(2492), + [anon_sym_ATselector] = ACTIONS(2492), + [anon_sym_ATavailable] = ACTIONS(2492), + [anon_sym___builtin_available] = ACTIONS(2490), + [anon_sym_va_arg] = ACTIONS(2490), + [anon_sym_ATencode] = ACTIONS(2492), + [anon_sym_ATsynchronized] = ACTIONS(2492), + [anon_sym_BOOL] = ACTIONS(2490), + [anon_sym_IMP] = ACTIONS(2490), + [anon_sym_SEL] = ACTIONS(2490), + [anon_sym_Class] = ACTIONS(2490), + [anon_sym_id] = ACTIONS(2490), + }, + [593] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [594] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [595] = { + [sym_identifier] = ACTIONS(2412), + [aux_sym_preproc_include_token1] = ACTIONS(2412), + [aux_sym_preproc_include_token2] = ACTIONS(2412), + [aux_sym_preproc_def_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token2] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2412), + [sym_preproc_directive] = ACTIONS(2412), + [anon_sym_LPAREN2] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2414), + [anon_sym_TILDE] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_STAR] = ACTIONS(2414), + [anon_sym_CARET] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym___extension__] = ACTIONS(2412), + [anon_sym_typedef] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym___attribute__] = ACTIONS(2412), + [anon_sym___attribute] = ACTIONS(2412), + [anon_sym_noreturn] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym___declspec] = ACTIONS(2412), + [anon_sym___cdecl] = ACTIONS(2412), + [anon_sym___clrcall] = ACTIONS(2412), + [anon_sym___stdcall] = ACTIONS(2412), + [anon_sym___fastcall] = ACTIONS(2412), + [anon_sym___thiscall] = ACTIONS(2412), + [anon_sym___vectorcall] = ACTIONS(2412), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_signed] = ACTIONS(2412), + [anon_sym_unsigned] = ACTIONS(2412), + [anon_sym_long] = ACTIONS(2412), + [anon_sym_short] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_ATautoreleasepool] = ACTIONS(2414), + [anon_sym_auto] = ACTIONS(2412), + [anon_sym_register] = ACTIONS(2412), + [anon_sym_inline] = ACTIONS(2412), + [anon_sym___inline] = ACTIONS(2412), + [anon_sym___inline__] = ACTIONS(2412), + [anon_sym___forceinline] = ACTIONS(2412), + [anon_sym_thread_local] = ACTIONS(2412), + [anon_sym___thread] = ACTIONS(2412), + [anon_sym_CG_EXTERN] = ACTIONS(2412), + [anon_sym_CG_INLINE] = ACTIONS(2412), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2412), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2412), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2412), + [anon_sym_IBOutlet] = ACTIONS(2412), + [anon_sym_IBInspectable] = ACTIONS(2412), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2412), + [anon_sym_NS_INLINE] = ACTIONS(2412), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2412), + [anon_sym_OBJC_EXPORT] = ACTIONS(2412), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2412), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_constexpr] = ACTIONS(2412), + [anon_sym_volatile] = ACTIONS(2412), + [anon_sym_restrict] = ACTIONS(2412), + [anon_sym___restrict__] = ACTIONS(2412), + [anon_sym__Atomic] = ACTIONS(2412), + [anon_sym__Noreturn] = ACTIONS(2412), + [anon_sym__Nonnull] = ACTIONS(2412), + [anon_sym_nullable] = ACTIONS(2412), + [anon_sym__Complex] = ACTIONS(2412), + [anon_sym__Nullable] = ACTIONS(2412), + [anon_sym__Nullable_result] = ACTIONS(2412), + [anon_sym__Null_unspecified] = ACTIONS(2412), + [anon_sym___autoreleasing] = ACTIONS(2412), + [anon_sym___block] = ACTIONS(2412), + [anon_sym___bridge] = ACTIONS(2412), + [anon_sym___bridge_retained] = ACTIONS(2412), + [anon_sym___bridge_transfer] = ACTIONS(2412), + [anon_sym___complex] = ACTIONS(2412), + [anon_sym___const] = ACTIONS(2412), + [anon_sym___imag] = ACTIONS(2412), + [anon_sym___kindof] = ACTIONS(2412), + [anon_sym___nonnull] = ACTIONS(2412), + [anon_sym___nullable] = ACTIONS(2412), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2412), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2412), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2412), + [anon_sym___real] = ACTIONS(2412), + [anon_sym___strong] = ACTIONS(2412), + [anon_sym___unsafe_unretained] = ACTIONS(2412), + [anon_sym___unused] = ACTIONS(2412), + [anon_sym___weak] = ACTIONS(2412), + [anon_sym_alignas] = ACTIONS(2412), + [anon_sym__Alignas] = ACTIONS(2412), + [sym_primitive_type] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [anon_sym_struct] = ACTIONS(2412), + [anon_sym_union] = ACTIONS(2412), + [anon_sym_if] = ACTIONS(2412), + [anon_sym_else] = ACTIONS(2412), + [anon_sym_switch] = ACTIONS(2412), + [anon_sym_case] = ACTIONS(2412), + [anon_sym_default] = ACTIONS(2412), + [anon_sym_while] = ACTIONS(2412), + [anon_sym_do] = ACTIONS(2412), + [anon_sym_for] = ACTIONS(2412), + [anon_sym_in] = ACTIONS(2412), + [anon_sym_return] = ACTIONS(2412), + [anon_sym_break] = ACTIONS(2412), + [anon_sym_continue] = ACTIONS(2412), + [anon_sym_goto] = ACTIONS(2412), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_sizeof] = ACTIONS(2412), + [anon_sym___alignof__] = ACTIONS(2412), + [anon_sym___alignof] = ACTIONS(2412), + [anon_sym__alignof] = ACTIONS(2412), + [anon_sym_alignof] = ACTIONS(2412), + [anon_sym__Alignof] = ACTIONS(2412), + [anon_sym_offsetof] = ACTIONS(2412), + [anon_sym__Generic] = ACTIONS(2412), + [anon_sym_asm] = ACTIONS(2412), + [anon_sym___asm__] = ACTIONS(2412), + [anon_sym___asm] = ACTIONS(2412), + [sym_number_literal] = ACTIONS(2414), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_AT] = ACTIONS(2412), + [anon_sym_DQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2412), + [sym_false] = ACTIONS(2412), + [anon_sym_NULL] = ACTIONS(2412), + [anon_sym_nullptr] = ACTIONS(2412), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2412), + [anon_sym___typeof] = ACTIONS(2412), + [anon_sym_typeof] = ACTIONS(2412), + [anon_sym_ATimport] = ACTIONS(2414), + [aux_sym_preproc_undef_token1] = ACTIONS(2412), + [anon_sym_POUND] = ACTIONS(2412), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2412), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2412), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2412), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2412), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2412), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2412), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2412), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2412), + [anon_sym_NS_AVAILABLE] = ACTIONS(2412), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2412), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_API_AVAILABLE] = ACTIONS(2412), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_API_DEPRECATED] = ACTIONS(2412), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2412), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2412), + [anon_sym___deprecated_msg] = ACTIONS(2412), + [anon_sym___deprecated_enum_msg] = ACTIONS(2412), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2412), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2412), + [anon_sym_ATprotocol] = ACTIONS(2414), + [anon_sym_ATinterface] = ACTIONS(2414), + [anon_sym_ATimplementation] = ACTIONS(2414), + [anon_sym_ATcompatibility_alias] = ACTIONS(2414), + [anon_sym_ATsynthesize] = ACTIONS(2414), + [anon_sym_ATdynamic] = ACTIONS(2414), + [anon_sym_ATtry] = ACTIONS(2414), + [anon_sym___try] = ACTIONS(2412), + [anon_sym_ATthrow] = ACTIONS(2414), + [anon_sym_ATselector] = ACTIONS(2414), + [anon_sym_ATavailable] = ACTIONS(2414), + [anon_sym___builtin_available] = ACTIONS(2412), + [anon_sym_va_arg] = ACTIONS(2412), + [anon_sym_ATencode] = ACTIONS(2414), + [anon_sym_ATsynchronized] = ACTIONS(2414), + [anon_sym_BOOL] = ACTIONS(2412), + [anon_sym_IMP] = ACTIONS(2412), + [anon_sym_SEL] = ACTIONS(2412), + [anon_sym_Class] = ACTIONS(2412), + [anon_sym_id] = ACTIONS(2412), + }, + [596] = { + [sym_identifier] = ACTIONS(2408), + [aux_sym_preproc_include_token1] = ACTIONS(2408), + [aux_sym_preproc_include_token2] = ACTIONS(2408), + [aux_sym_preproc_def_token1] = ACTIONS(2408), + [aux_sym_preproc_if_token1] = ACTIONS(2408), + [aux_sym_preproc_if_token2] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2408), + [sym_preproc_directive] = ACTIONS(2408), + [anon_sym_LPAREN2] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2408), + [anon_sym_PLUS] = ACTIONS(2408), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_CARET] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym___extension__] = ACTIONS(2408), + [anon_sym_typedef] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym___attribute__] = ACTIONS(2408), + [anon_sym___attribute] = ACTIONS(2408), + [anon_sym_noreturn] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym___declspec] = ACTIONS(2408), + [anon_sym___cdecl] = ACTIONS(2408), + [anon_sym___clrcall] = ACTIONS(2408), + [anon_sym___stdcall] = ACTIONS(2408), + [anon_sym___fastcall] = ACTIONS(2408), + [anon_sym___thiscall] = ACTIONS(2408), + [anon_sym___vectorcall] = ACTIONS(2408), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_signed] = ACTIONS(2408), + [anon_sym_unsigned] = ACTIONS(2408), + [anon_sym_long] = ACTIONS(2408), + [anon_sym_short] = ACTIONS(2408), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_ATautoreleasepool] = ACTIONS(2410), + [anon_sym_auto] = ACTIONS(2408), + [anon_sym_register] = ACTIONS(2408), + [anon_sym_inline] = ACTIONS(2408), + [anon_sym___inline] = ACTIONS(2408), + [anon_sym___inline__] = ACTIONS(2408), + [anon_sym___forceinline] = ACTIONS(2408), + [anon_sym_thread_local] = ACTIONS(2408), + [anon_sym___thread] = ACTIONS(2408), + [anon_sym_CG_EXTERN] = ACTIONS(2408), + [anon_sym_CG_INLINE] = ACTIONS(2408), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2408), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2408), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2408), + [anon_sym_IBOutlet] = ACTIONS(2408), + [anon_sym_IBInspectable] = ACTIONS(2408), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2408), + [anon_sym_NS_INLINE] = ACTIONS(2408), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2408), + [anon_sym_OBJC_EXPORT] = ACTIONS(2408), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2408), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_constexpr] = ACTIONS(2408), + [anon_sym_volatile] = ACTIONS(2408), + [anon_sym_restrict] = ACTIONS(2408), + [anon_sym___restrict__] = ACTIONS(2408), + [anon_sym__Atomic] = ACTIONS(2408), + [anon_sym__Noreturn] = ACTIONS(2408), + [anon_sym__Nonnull] = ACTIONS(2408), + [anon_sym_nullable] = ACTIONS(2408), + [anon_sym__Complex] = ACTIONS(2408), + [anon_sym__Nullable] = ACTIONS(2408), + [anon_sym__Nullable_result] = ACTIONS(2408), + [anon_sym__Null_unspecified] = ACTIONS(2408), + [anon_sym___autoreleasing] = ACTIONS(2408), + [anon_sym___block] = ACTIONS(2408), + [anon_sym___bridge] = ACTIONS(2408), + [anon_sym___bridge_retained] = ACTIONS(2408), + [anon_sym___bridge_transfer] = ACTIONS(2408), + [anon_sym___complex] = ACTIONS(2408), + [anon_sym___const] = ACTIONS(2408), + [anon_sym___imag] = ACTIONS(2408), + [anon_sym___kindof] = ACTIONS(2408), + [anon_sym___nonnull] = ACTIONS(2408), + [anon_sym___nullable] = ACTIONS(2408), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2408), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2408), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2408), + [anon_sym___real] = ACTIONS(2408), + [anon_sym___strong] = ACTIONS(2408), + [anon_sym___unsafe_unretained] = ACTIONS(2408), + [anon_sym___unused] = ACTIONS(2408), + [anon_sym___weak] = ACTIONS(2408), + [anon_sym_alignas] = ACTIONS(2408), + [anon_sym__Alignas] = ACTIONS(2408), + [sym_primitive_type] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_struct] = ACTIONS(2408), + [anon_sym_union] = ACTIONS(2408), + [anon_sym_if] = ACTIONS(2408), + [anon_sym_else] = ACTIONS(2408), + [anon_sym_switch] = ACTIONS(2408), + [anon_sym_case] = ACTIONS(2408), + [anon_sym_default] = ACTIONS(2408), + [anon_sym_while] = ACTIONS(2408), + [anon_sym_do] = ACTIONS(2408), + [anon_sym_for] = ACTIONS(2408), + [anon_sym_in] = ACTIONS(2408), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_break] = ACTIONS(2408), + [anon_sym_continue] = ACTIONS(2408), + [anon_sym_goto] = ACTIONS(2408), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_sizeof] = ACTIONS(2408), + [anon_sym___alignof__] = ACTIONS(2408), + [anon_sym___alignof] = ACTIONS(2408), + [anon_sym__alignof] = ACTIONS(2408), + [anon_sym_alignof] = ACTIONS(2408), + [anon_sym__Alignof] = ACTIONS(2408), + [anon_sym_offsetof] = ACTIONS(2408), + [anon_sym__Generic] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2410), + [anon_sym_u_SQUOTE] = ACTIONS(2410), + [anon_sym_U_SQUOTE] = ACTIONS(2410), + [anon_sym_u8_SQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(2408), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_L_DQUOTE] = ACTIONS(2410), + [anon_sym_u_DQUOTE] = ACTIONS(2410), + [anon_sym_U_DQUOTE] = ACTIONS(2410), + [anon_sym_u8_DQUOTE] = ACTIONS(2410), + [sym_true] = ACTIONS(2408), + [sym_false] = ACTIONS(2408), + [anon_sym_NULL] = ACTIONS(2408), + [anon_sym_nullptr] = ACTIONS(2408), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2408), + [anon_sym___typeof] = ACTIONS(2408), + [anon_sym_typeof] = ACTIONS(2408), + [anon_sym_ATimport] = ACTIONS(2410), + [aux_sym_preproc_undef_token1] = ACTIONS(2408), + [anon_sym_POUND] = ACTIONS(2408), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2408), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2408), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2408), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2408), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2408), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2408), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2408), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2408), + [anon_sym_NS_AVAILABLE] = ACTIONS(2408), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2408), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_API_AVAILABLE] = ACTIONS(2408), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_API_DEPRECATED] = ACTIONS(2408), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2408), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2408), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2408), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2408), + [anon_sym___deprecated_msg] = ACTIONS(2408), + [anon_sym___deprecated_enum_msg] = ACTIONS(2408), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2408), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2408), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2408), + [anon_sym_ATprotocol] = ACTIONS(2410), + [anon_sym_ATinterface] = ACTIONS(2410), + [anon_sym_ATimplementation] = ACTIONS(2410), + [anon_sym_ATcompatibility_alias] = ACTIONS(2410), + [anon_sym_ATsynthesize] = ACTIONS(2410), + [anon_sym_ATdynamic] = ACTIONS(2410), + [anon_sym_ATtry] = ACTIONS(2410), + [anon_sym___try] = ACTIONS(2408), + [anon_sym_ATthrow] = ACTIONS(2410), + [anon_sym_ATselector] = ACTIONS(2410), + [anon_sym_ATavailable] = ACTIONS(2410), + [anon_sym___builtin_available] = ACTIONS(2408), + [anon_sym_va_arg] = ACTIONS(2408), + [anon_sym_ATencode] = ACTIONS(2410), + [anon_sym_ATsynchronized] = ACTIONS(2410), + [anon_sym_BOOL] = ACTIONS(2408), + [anon_sym_IMP] = ACTIONS(2408), + [anon_sym_SEL] = ACTIONS(2408), + [anon_sym_Class] = ACTIONS(2408), + [anon_sym_id] = ACTIONS(2408), + }, + [597] = { + [sym_identifier] = ACTIONS(2512), + [aux_sym_preproc_include_token1] = ACTIONS(2512), + [aux_sym_preproc_include_token2] = ACTIONS(2512), + [aux_sym_preproc_def_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token2] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2512), + [sym_preproc_directive] = ACTIONS(2512), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_TILDE] = ACTIONS(2514), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_STAR] = ACTIONS(2514), + [anon_sym_CARET] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym___extension__] = ACTIONS(2512), + [anon_sym_typedef] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym___attribute__] = ACTIONS(2512), + [anon_sym___attribute] = ACTIONS(2512), + [anon_sym_noreturn] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym___declspec] = ACTIONS(2512), + [anon_sym___cdecl] = ACTIONS(2512), + [anon_sym___clrcall] = ACTIONS(2512), + [anon_sym___stdcall] = ACTIONS(2512), + [anon_sym___fastcall] = ACTIONS(2512), + [anon_sym___thiscall] = ACTIONS(2512), + [anon_sym___vectorcall] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_signed] = ACTIONS(2512), + [anon_sym_unsigned] = ACTIONS(2512), + [anon_sym_long] = ACTIONS(2512), + [anon_sym_short] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_ATautoreleasepool] = ACTIONS(2514), + [anon_sym_auto] = ACTIONS(2512), + [anon_sym_register] = ACTIONS(2512), + [anon_sym_inline] = ACTIONS(2512), + [anon_sym___inline] = ACTIONS(2512), + [anon_sym___inline__] = ACTIONS(2512), + [anon_sym___forceinline] = ACTIONS(2512), + [anon_sym_thread_local] = ACTIONS(2512), + [anon_sym___thread] = ACTIONS(2512), + [anon_sym_CG_EXTERN] = ACTIONS(2512), + [anon_sym_CG_INLINE] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2512), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2512), + [anon_sym_IBOutlet] = ACTIONS(2512), + [anon_sym_IBInspectable] = ACTIONS(2512), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2512), + [anon_sym_NS_INLINE] = ACTIONS(2512), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2512), + [anon_sym_OBJC_EXPORT] = ACTIONS(2512), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_constexpr] = ACTIONS(2512), + [anon_sym_volatile] = ACTIONS(2512), + [anon_sym_restrict] = ACTIONS(2512), + [anon_sym___restrict__] = ACTIONS(2512), + [anon_sym__Atomic] = ACTIONS(2512), + [anon_sym__Noreturn] = ACTIONS(2512), + [anon_sym__Nonnull] = ACTIONS(2512), + [anon_sym_nullable] = ACTIONS(2512), + [anon_sym__Complex] = ACTIONS(2512), + [anon_sym__Nullable] = ACTIONS(2512), + [anon_sym__Nullable_result] = ACTIONS(2512), + [anon_sym__Null_unspecified] = ACTIONS(2512), + [anon_sym___autoreleasing] = ACTIONS(2512), + [anon_sym___block] = ACTIONS(2512), + [anon_sym___bridge] = ACTIONS(2512), + [anon_sym___bridge_retained] = ACTIONS(2512), + [anon_sym___bridge_transfer] = ACTIONS(2512), + [anon_sym___complex] = ACTIONS(2512), + [anon_sym___const] = ACTIONS(2512), + [anon_sym___imag] = ACTIONS(2512), + [anon_sym___kindof] = ACTIONS(2512), + [anon_sym___nonnull] = ACTIONS(2512), + [anon_sym___nullable] = ACTIONS(2512), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2512), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2512), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2512), + [anon_sym___real] = ACTIONS(2512), + [anon_sym___strong] = ACTIONS(2512), + [anon_sym___unsafe_unretained] = ACTIONS(2512), + [anon_sym___unused] = ACTIONS(2512), + [anon_sym___weak] = ACTIONS(2512), + [anon_sym_alignas] = ACTIONS(2512), + [anon_sym__Alignas] = ACTIONS(2512), + [sym_primitive_type] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [anon_sym_struct] = ACTIONS(2512), + [anon_sym_union] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_else] = ACTIONS(2512), + [anon_sym_switch] = ACTIONS(2512), + [anon_sym_case] = ACTIONS(2512), + [anon_sym_default] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_do] = ACTIONS(2512), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_in] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_goto] = ACTIONS(2512), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_sizeof] = ACTIONS(2512), + [anon_sym___alignof__] = ACTIONS(2512), + [anon_sym___alignof] = ACTIONS(2512), + [anon_sym__alignof] = ACTIONS(2512), + [anon_sym_alignof] = ACTIONS(2512), + [anon_sym__Alignof] = ACTIONS(2512), + [anon_sym_offsetof] = ACTIONS(2512), + [anon_sym__Generic] = ACTIONS(2512), + [anon_sym_asm] = ACTIONS(2512), + [anon_sym___asm__] = ACTIONS(2512), + [anon_sym___asm] = ACTIONS(2512), + [sym_number_literal] = ACTIONS(2514), + [anon_sym_L_SQUOTE] = ACTIONS(2514), + [anon_sym_u_SQUOTE] = ACTIONS(2514), + [anon_sym_U_SQUOTE] = ACTIONS(2514), + [anon_sym_u8_SQUOTE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_AT] = ACTIONS(2512), + [anon_sym_DQUOTE] = ACTIONS(2514), + [anon_sym_L_DQUOTE] = ACTIONS(2514), + [anon_sym_u_DQUOTE] = ACTIONS(2514), + [anon_sym_U_DQUOTE] = ACTIONS(2514), + [anon_sym_u8_DQUOTE] = ACTIONS(2514), + [sym_true] = ACTIONS(2512), + [sym_false] = ACTIONS(2512), + [anon_sym_NULL] = ACTIONS(2512), + [anon_sym_nullptr] = ACTIONS(2512), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2512), + [anon_sym___typeof] = ACTIONS(2512), + [anon_sym_typeof] = ACTIONS(2512), + [anon_sym_ATimport] = ACTIONS(2514), + [aux_sym_preproc_undef_token1] = ACTIONS(2512), + [anon_sym_POUND] = ACTIONS(2512), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2512), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2512), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2512), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2512), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE] = ACTIONS(2512), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_API_AVAILABLE] = ACTIONS(2512), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_API_DEPRECATED] = ACTIONS(2512), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2512), + [anon_sym___deprecated_msg] = ACTIONS(2512), + [anon_sym___deprecated_enum_msg] = ACTIONS(2512), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2512), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2512), + [anon_sym_ATprotocol] = ACTIONS(2514), + [anon_sym_ATinterface] = ACTIONS(2514), + [anon_sym_ATimplementation] = ACTIONS(2514), + [anon_sym_ATcompatibility_alias] = ACTIONS(2514), + [anon_sym_ATsynthesize] = ACTIONS(2514), + [anon_sym_ATdynamic] = ACTIONS(2514), + [anon_sym_ATtry] = ACTIONS(2514), + [anon_sym___try] = ACTIONS(2512), + [anon_sym_ATthrow] = ACTIONS(2514), + [anon_sym_ATselector] = ACTIONS(2514), + [anon_sym_ATavailable] = ACTIONS(2514), + [anon_sym___builtin_available] = ACTIONS(2512), + [anon_sym_va_arg] = ACTIONS(2512), + [anon_sym_ATencode] = ACTIONS(2514), + [anon_sym_ATsynchronized] = ACTIONS(2514), + [anon_sym_BOOL] = ACTIONS(2512), + [anon_sym_IMP] = ACTIONS(2512), + [anon_sym_SEL] = ACTIONS(2512), + [anon_sym_Class] = ACTIONS(2512), + [anon_sym_id] = ACTIONS(2512), + }, + [598] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [599] = { + [sym_identifier] = ACTIONS(2508), + [aux_sym_preproc_include_token1] = ACTIONS(2508), + [aux_sym_preproc_include_token2] = ACTIONS(2508), + [aux_sym_preproc_def_token1] = ACTIONS(2508), + [aux_sym_preproc_if_token1] = ACTIONS(2508), + [aux_sym_preproc_if_token2] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2508), + [sym_preproc_directive] = ACTIONS(2508), + [anon_sym_LPAREN2] = ACTIONS(2510), + [anon_sym_BANG] = ACTIONS(2510), + [anon_sym_TILDE] = ACTIONS(2510), + [anon_sym_DASH] = ACTIONS(2508), + [anon_sym_PLUS] = ACTIONS(2508), + [anon_sym_STAR] = ACTIONS(2510), + [anon_sym_CARET] = ACTIONS(2510), + [anon_sym_AMP] = ACTIONS(2510), + [anon_sym_SEMI] = ACTIONS(2510), + [anon_sym___extension__] = ACTIONS(2508), + [anon_sym_typedef] = ACTIONS(2508), + [anon_sym_extern] = ACTIONS(2508), + [anon_sym___attribute__] = ACTIONS(2508), + [anon_sym___attribute] = ACTIONS(2508), + [anon_sym_noreturn] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym___declspec] = ACTIONS(2508), + [anon_sym___cdecl] = ACTIONS(2508), + [anon_sym___clrcall] = ACTIONS(2508), + [anon_sym___stdcall] = ACTIONS(2508), + [anon_sym___fastcall] = ACTIONS(2508), + [anon_sym___thiscall] = ACTIONS(2508), + [anon_sym___vectorcall] = ACTIONS(2508), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_signed] = ACTIONS(2508), + [anon_sym_unsigned] = ACTIONS(2508), + [anon_sym_long] = ACTIONS(2508), + [anon_sym_short] = ACTIONS(2508), + [anon_sym_static] = ACTIONS(2508), + [anon_sym_ATautoreleasepool] = ACTIONS(2510), + [anon_sym_auto] = ACTIONS(2508), + [anon_sym_register] = ACTIONS(2508), + [anon_sym_inline] = ACTIONS(2508), + [anon_sym___inline] = ACTIONS(2508), + [anon_sym___inline__] = ACTIONS(2508), + [anon_sym___forceinline] = ACTIONS(2508), + [anon_sym_thread_local] = ACTIONS(2508), + [anon_sym___thread] = ACTIONS(2508), + [anon_sym_CG_EXTERN] = ACTIONS(2508), + [anon_sym_CG_INLINE] = ACTIONS(2508), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2508), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2508), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2508), + [anon_sym_IBOutlet] = ACTIONS(2508), + [anon_sym_IBInspectable] = ACTIONS(2508), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2508), + [anon_sym_NS_INLINE] = ACTIONS(2508), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2508), + [anon_sym_OBJC_EXPORT] = ACTIONS(2508), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2508), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2508), + [anon_sym_const] = ACTIONS(2508), + [anon_sym_constexpr] = ACTIONS(2508), + [anon_sym_volatile] = ACTIONS(2508), + [anon_sym_restrict] = ACTIONS(2508), + [anon_sym___restrict__] = ACTIONS(2508), + [anon_sym__Atomic] = ACTIONS(2508), + [anon_sym__Noreturn] = ACTIONS(2508), + [anon_sym__Nonnull] = ACTIONS(2508), + [anon_sym_nullable] = ACTIONS(2508), + [anon_sym__Complex] = ACTIONS(2508), + [anon_sym__Nullable] = ACTIONS(2508), + [anon_sym__Nullable_result] = ACTIONS(2508), + [anon_sym__Null_unspecified] = ACTIONS(2508), + [anon_sym___autoreleasing] = ACTIONS(2508), + [anon_sym___block] = ACTIONS(2508), + [anon_sym___bridge] = ACTIONS(2508), + [anon_sym___bridge_retained] = ACTIONS(2508), + [anon_sym___bridge_transfer] = ACTIONS(2508), + [anon_sym___complex] = ACTIONS(2508), + [anon_sym___const] = ACTIONS(2508), + [anon_sym___imag] = ACTIONS(2508), + [anon_sym___kindof] = ACTIONS(2508), + [anon_sym___nonnull] = ACTIONS(2508), + [anon_sym___nullable] = ACTIONS(2508), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2508), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2508), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2508), + [anon_sym___real] = ACTIONS(2508), + [anon_sym___strong] = ACTIONS(2508), + [anon_sym___unsafe_unretained] = ACTIONS(2508), + [anon_sym___unused] = ACTIONS(2508), + [anon_sym___weak] = ACTIONS(2508), + [anon_sym_alignas] = ACTIONS(2508), + [anon_sym__Alignas] = ACTIONS(2508), + [sym_primitive_type] = ACTIONS(2508), + [anon_sym_enum] = ACTIONS(2508), + [anon_sym_struct] = ACTIONS(2508), + [anon_sym_union] = ACTIONS(2508), + [anon_sym_if] = ACTIONS(2508), + [anon_sym_else] = ACTIONS(2508), + [anon_sym_switch] = ACTIONS(2508), + [anon_sym_case] = ACTIONS(2508), + [anon_sym_default] = ACTIONS(2508), + [anon_sym_while] = ACTIONS(2508), + [anon_sym_do] = ACTIONS(2508), + [anon_sym_for] = ACTIONS(2508), + [anon_sym_in] = ACTIONS(2508), + [anon_sym_return] = ACTIONS(2508), + [anon_sym_break] = ACTIONS(2508), + [anon_sym_continue] = ACTIONS(2508), + [anon_sym_goto] = ACTIONS(2508), + [anon_sym_DASH_DASH] = ACTIONS(2510), + [anon_sym_PLUS_PLUS] = ACTIONS(2510), + [anon_sym_sizeof] = ACTIONS(2508), + [anon_sym___alignof__] = ACTIONS(2508), + [anon_sym___alignof] = ACTIONS(2508), + [anon_sym__alignof] = ACTIONS(2508), + [anon_sym_alignof] = ACTIONS(2508), + [anon_sym__Alignof] = ACTIONS(2508), + [anon_sym_offsetof] = ACTIONS(2508), + [anon_sym__Generic] = ACTIONS(2508), + [anon_sym_asm] = ACTIONS(2508), + [anon_sym___asm__] = ACTIONS(2508), + [anon_sym___asm] = ACTIONS(2508), + [sym_number_literal] = ACTIONS(2510), + [anon_sym_L_SQUOTE] = ACTIONS(2510), + [anon_sym_u_SQUOTE] = ACTIONS(2510), + [anon_sym_U_SQUOTE] = ACTIONS(2510), + [anon_sym_u8_SQUOTE] = ACTIONS(2510), + [anon_sym_SQUOTE] = ACTIONS(2510), + [anon_sym_AT] = ACTIONS(2508), + [anon_sym_DQUOTE] = ACTIONS(2510), + [anon_sym_L_DQUOTE] = ACTIONS(2510), + [anon_sym_u_DQUOTE] = ACTIONS(2510), + [anon_sym_U_DQUOTE] = ACTIONS(2510), + [anon_sym_u8_DQUOTE] = ACTIONS(2510), + [sym_true] = ACTIONS(2508), + [sym_false] = ACTIONS(2508), + [anon_sym_NULL] = ACTIONS(2508), + [anon_sym_nullptr] = ACTIONS(2508), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2508), + [anon_sym___typeof] = ACTIONS(2508), + [anon_sym_typeof] = ACTIONS(2508), + [anon_sym_ATimport] = ACTIONS(2510), + [aux_sym_preproc_undef_token1] = ACTIONS(2508), + [anon_sym_POUND] = ACTIONS(2508), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2508), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2508), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2508), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2508), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2508), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2508), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2508), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2508), + [anon_sym_NS_AVAILABLE] = ACTIONS(2508), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2508), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_API_AVAILABLE] = ACTIONS(2508), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_API_DEPRECATED] = ACTIONS(2508), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2508), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2508), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2508), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2508), + [anon_sym___deprecated_msg] = ACTIONS(2508), + [anon_sym___deprecated_enum_msg] = ACTIONS(2508), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2508), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2508), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2508), + [anon_sym_ATprotocol] = ACTIONS(2510), + [anon_sym_ATinterface] = ACTIONS(2510), + [anon_sym_ATimplementation] = ACTIONS(2510), + [anon_sym_ATcompatibility_alias] = ACTIONS(2510), + [anon_sym_ATsynthesize] = ACTIONS(2510), + [anon_sym_ATdynamic] = ACTIONS(2510), + [anon_sym_ATtry] = ACTIONS(2510), + [anon_sym___try] = ACTIONS(2508), + [anon_sym_ATthrow] = ACTIONS(2510), + [anon_sym_ATselector] = ACTIONS(2510), + [anon_sym_ATavailable] = ACTIONS(2510), + [anon_sym___builtin_available] = ACTIONS(2508), + [anon_sym_va_arg] = ACTIONS(2508), + [anon_sym_ATencode] = ACTIONS(2510), + [anon_sym_ATsynchronized] = ACTIONS(2510), + [anon_sym_BOOL] = ACTIONS(2508), + [anon_sym_IMP] = ACTIONS(2508), + [anon_sym_SEL] = ACTIONS(2508), + [anon_sym_Class] = ACTIONS(2508), + [anon_sym_id] = ACTIONS(2508), + }, + [600] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [601] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATsynthesize] = ACTIONS(2566), + [anon_sym_ATdynamic] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [602] = { + [sym_identifier] = ACTIONS(2524), + [aux_sym_preproc_include_token1] = ACTIONS(2524), + [aux_sym_preproc_include_token2] = ACTIONS(2524), + [aux_sym_preproc_def_token1] = ACTIONS(2524), + [aux_sym_preproc_if_token1] = ACTIONS(2524), + [aux_sym_preproc_if_token2] = ACTIONS(2524), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2524), + [sym_preproc_directive] = ACTIONS(2524), + [anon_sym_LPAREN2] = ACTIONS(2526), + [anon_sym_BANG] = ACTIONS(2526), + [anon_sym_TILDE] = ACTIONS(2526), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_STAR] = ACTIONS(2526), + [anon_sym_CARET] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2526), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym___extension__] = ACTIONS(2524), + [anon_sym_typedef] = ACTIONS(2524), + [anon_sym_extern] = ACTIONS(2524), + [anon_sym___attribute__] = ACTIONS(2524), + [anon_sym___attribute] = ACTIONS(2524), + [anon_sym_noreturn] = ACTIONS(2524), + [anon_sym_LBRACK] = ACTIONS(2526), + [anon_sym___declspec] = ACTIONS(2524), + [anon_sym___cdecl] = ACTIONS(2524), + [anon_sym___clrcall] = ACTIONS(2524), + [anon_sym___stdcall] = ACTIONS(2524), + [anon_sym___fastcall] = ACTIONS(2524), + [anon_sym___thiscall] = ACTIONS(2524), + [anon_sym___vectorcall] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2526), + [anon_sym_signed] = ACTIONS(2524), + [anon_sym_unsigned] = ACTIONS(2524), + [anon_sym_long] = ACTIONS(2524), + [anon_sym_short] = ACTIONS(2524), + [anon_sym_static] = ACTIONS(2524), + [anon_sym_ATautoreleasepool] = ACTIONS(2526), + [anon_sym_auto] = ACTIONS(2524), + [anon_sym_register] = ACTIONS(2524), + [anon_sym_inline] = ACTIONS(2524), + [anon_sym___inline] = ACTIONS(2524), + [anon_sym___inline__] = ACTIONS(2524), + [anon_sym___forceinline] = ACTIONS(2524), + [anon_sym_thread_local] = ACTIONS(2524), + [anon_sym___thread] = ACTIONS(2524), + [anon_sym_CG_EXTERN] = ACTIONS(2524), + [anon_sym_CG_INLINE] = ACTIONS(2524), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2524), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2524), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2524), + [anon_sym_IBOutlet] = ACTIONS(2524), + [anon_sym_IBInspectable] = ACTIONS(2524), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2524), + [anon_sym_NS_INLINE] = ACTIONS(2524), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2524), + [anon_sym_OBJC_EXPORT] = ACTIONS(2524), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2524), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2524), + [anon_sym_const] = ACTIONS(2524), + [anon_sym_constexpr] = ACTIONS(2524), + [anon_sym_volatile] = ACTIONS(2524), + [anon_sym_restrict] = ACTIONS(2524), + [anon_sym___restrict__] = ACTIONS(2524), + [anon_sym__Atomic] = ACTIONS(2524), + [anon_sym__Noreturn] = ACTIONS(2524), + [anon_sym__Nonnull] = ACTIONS(2524), + [anon_sym_nullable] = ACTIONS(2524), + [anon_sym__Complex] = ACTIONS(2524), + [anon_sym__Nullable] = ACTIONS(2524), + [anon_sym__Nullable_result] = ACTIONS(2524), + [anon_sym__Null_unspecified] = ACTIONS(2524), + [anon_sym___autoreleasing] = ACTIONS(2524), + [anon_sym___block] = ACTIONS(2524), + [anon_sym___bridge] = ACTIONS(2524), + [anon_sym___bridge_retained] = ACTIONS(2524), + [anon_sym___bridge_transfer] = ACTIONS(2524), + [anon_sym___complex] = ACTIONS(2524), + [anon_sym___const] = ACTIONS(2524), + [anon_sym___imag] = ACTIONS(2524), + [anon_sym___kindof] = ACTIONS(2524), + [anon_sym___nonnull] = ACTIONS(2524), + [anon_sym___nullable] = ACTIONS(2524), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2524), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2524), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2524), + [anon_sym___real] = ACTIONS(2524), + [anon_sym___strong] = ACTIONS(2524), + [anon_sym___unsafe_unretained] = ACTIONS(2524), + [anon_sym___unused] = ACTIONS(2524), + [anon_sym___weak] = ACTIONS(2524), + [anon_sym_alignas] = ACTIONS(2524), + [anon_sym__Alignas] = ACTIONS(2524), + [sym_primitive_type] = ACTIONS(2524), + [anon_sym_enum] = ACTIONS(2524), + [anon_sym_struct] = ACTIONS(2524), + [anon_sym_union] = ACTIONS(2524), + [anon_sym_if] = ACTIONS(2524), + [anon_sym_else] = ACTIONS(2524), + [anon_sym_switch] = ACTIONS(2524), + [anon_sym_case] = ACTIONS(2524), + [anon_sym_default] = ACTIONS(2524), + [anon_sym_while] = ACTIONS(2524), + [anon_sym_do] = ACTIONS(2524), + [anon_sym_for] = ACTIONS(2524), + [anon_sym_in] = ACTIONS(2524), + [anon_sym_return] = ACTIONS(2524), + [anon_sym_break] = ACTIONS(2524), + [anon_sym_continue] = ACTIONS(2524), + [anon_sym_goto] = ACTIONS(2524), + [anon_sym_DASH_DASH] = ACTIONS(2526), + [anon_sym_PLUS_PLUS] = ACTIONS(2526), + [anon_sym_sizeof] = ACTIONS(2524), + [anon_sym___alignof__] = ACTIONS(2524), + [anon_sym___alignof] = ACTIONS(2524), + [anon_sym__alignof] = ACTIONS(2524), + [anon_sym_alignof] = ACTIONS(2524), + [anon_sym__Alignof] = ACTIONS(2524), + [anon_sym_offsetof] = ACTIONS(2524), + [anon_sym__Generic] = ACTIONS(2524), + [anon_sym_asm] = ACTIONS(2524), + [anon_sym___asm__] = ACTIONS(2524), + [anon_sym___asm] = ACTIONS(2524), + [sym_number_literal] = ACTIONS(2526), + [anon_sym_L_SQUOTE] = ACTIONS(2526), + [anon_sym_u_SQUOTE] = ACTIONS(2526), + [anon_sym_U_SQUOTE] = ACTIONS(2526), + [anon_sym_u8_SQUOTE] = ACTIONS(2526), + [anon_sym_SQUOTE] = ACTIONS(2526), + [anon_sym_AT] = ACTIONS(2524), + [anon_sym_DQUOTE] = ACTIONS(2526), + [anon_sym_L_DQUOTE] = ACTIONS(2526), + [anon_sym_u_DQUOTE] = ACTIONS(2526), + [anon_sym_U_DQUOTE] = ACTIONS(2526), + [anon_sym_u8_DQUOTE] = ACTIONS(2526), + [sym_true] = ACTIONS(2524), + [sym_false] = ACTIONS(2524), + [anon_sym_NULL] = ACTIONS(2524), + [anon_sym_nullptr] = ACTIONS(2524), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2524), + [anon_sym___typeof] = ACTIONS(2524), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_ATimport] = ACTIONS(2526), + [aux_sym_preproc_undef_token1] = ACTIONS(2524), + [anon_sym_POUND] = ACTIONS(2524), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2524), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2524), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2524), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2524), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2524), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2524), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2524), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2524), + [anon_sym_NS_AVAILABLE] = ACTIONS(2524), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2524), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_API_AVAILABLE] = ACTIONS(2524), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_API_DEPRECATED] = ACTIONS(2524), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2524), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2524), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2524), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2524), + [anon_sym___deprecated_msg] = ACTIONS(2524), + [anon_sym___deprecated_enum_msg] = ACTIONS(2524), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2524), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2524), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2524), + [anon_sym_ATprotocol] = ACTIONS(2526), + [anon_sym_ATinterface] = ACTIONS(2526), + [anon_sym_ATimplementation] = ACTIONS(2526), + [anon_sym_ATcompatibility_alias] = ACTIONS(2526), + [anon_sym_ATsynthesize] = ACTIONS(2526), + [anon_sym_ATdynamic] = ACTIONS(2526), + [anon_sym_ATtry] = ACTIONS(2526), + [anon_sym___try] = ACTIONS(2524), + [anon_sym_ATthrow] = ACTIONS(2526), + [anon_sym_ATselector] = ACTIONS(2526), + [anon_sym_ATavailable] = ACTIONS(2526), + [anon_sym___builtin_available] = ACTIONS(2524), + [anon_sym_va_arg] = ACTIONS(2524), + [anon_sym_ATencode] = ACTIONS(2526), + [anon_sym_ATsynchronized] = ACTIONS(2526), + [anon_sym_BOOL] = ACTIONS(2524), + [anon_sym_IMP] = ACTIONS(2524), + [anon_sym_SEL] = ACTIONS(2524), + [anon_sym_Class] = ACTIONS(2524), + [anon_sym_id] = ACTIONS(2524), + }, + [603] = { + [sym_identifier] = ACTIONS(2450), + [aux_sym_preproc_include_token1] = ACTIONS(2450), + [aux_sym_preproc_include_token2] = ACTIONS(2450), + [aux_sym_preproc_def_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token2] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2450), + [anon_sym_LPAREN2] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_CARET] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym___cdecl] = ACTIONS(2450), + [anon_sym___clrcall] = ACTIONS(2450), + [anon_sym___stdcall] = ACTIONS(2450), + [anon_sym___fastcall] = ACTIONS(2450), + [anon_sym___thiscall] = ACTIONS(2450), + [anon_sym___vectorcall] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2452), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_ATautoreleasepool] = ACTIONS(2452), + [anon_sym_auto] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_CG_EXTERN] = ACTIONS(2450), + [anon_sym_CG_INLINE] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2450), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2450), + [anon_sym_IBOutlet] = ACTIONS(2450), + [anon_sym_IBInspectable] = ACTIONS(2450), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2450), + [anon_sym_NS_INLINE] = ACTIONS(2450), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2450), + [anon_sym_OBJC_EXPORT] = ACTIONS(2450), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_nullable] = ACTIONS(2450), + [anon_sym__Complex] = ACTIONS(2450), + [anon_sym__Nullable] = ACTIONS(2450), + [anon_sym__Nullable_result] = ACTIONS(2450), + [anon_sym__Null_unspecified] = ACTIONS(2450), + [anon_sym___autoreleasing] = ACTIONS(2450), + [anon_sym___block] = ACTIONS(2450), + [anon_sym___bridge] = ACTIONS(2450), + [anon_sym___bridge_retained] = ACTIONS(2450), + [anon_sym___bridge_transfer] = ACTIONS(2450), + [anon_sym___complex] = ACTIONS(2450), + [anon_sym___const] = ACTIONS(2450), + [anon_sym___imag] = ACTIONS(2450), + [anon_sym___kindof] = ACTIONS(2450), + [anon_sym___nonnull] = ACTIONS(2450), + [anon_sym___nullable] = ACTIONS(2450), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2450), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2450), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2450), + [anon_sym___real] = ACTIONS(2450), + [anon_sym___strong] = ACTIONS(2450), + [anon_sym___unsafe_unretained] = ACTIONS(2450), + [anon_sym___unused] = ACTIONS(2450), + [anon_sym___weak] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_else] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2450), + [anon_sym_case] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2450), + [anon_sym_while] = ACTIONS(2450), + [anon_sym_do] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_break] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_goto] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2452), + [anon_sym_sizeof] = ACTIONS(2450), + [anon_sym___alignof__] = ACTIONS(2450), + [anon_sym___alignof] = ACTIONS(2450), + [anon_sym__alignof] = ACTIONS(2450), + [anon_sym_alignof] = ACTIONS(2450), + [anon_sym__Alignof] = ACTIONS(2450), + [anon_sym_offsetof] = ACTIONS(2450), + [anon_sym__Generic] = ACTIONS(2450), + [anon_sym_asm] = ACTIONS(2450), + [anon_sym___asm__] = ACTIONS(2450), + [anon_sym___asm] = ACTIONS(2450), + [sym_number_literal] = ACTIONS(2452), + [anon_sym_L_SQUOTE] = ACTIONS(2452), + [anon_sym_u_SQUOTE] = ACTIONS(2452), + [anon_sym_U_SQUOTE] = ACTIONS(2452), + [anon_sym_u8_SQUOTE] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(2452), + [anon_sym_AT] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2452), + [anon_sym_L_DQUOTE] = ACTIONS(2452), + [anon_sym_u_DQUOTE] = ACTIONS(2452), + [anon_sym_U_DQUOTE] = ACTIONS(2452), + [anon_sym_u8_DQUOTE] = ACTIONS(2452), + [sym_true] = ACTIONS(2450), + [sym_false] = ACTIONS(2450), + [anon_sym_NULL] = ACTIONS(2450), + [anon_sym_nullptr] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2450), + [anon_sym___typeof] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [anon_sym_ATimport] = ACTIONS(2452), + [aux_sym_preproc_undef_token1] = ACTIONS(2450), + [anon_sym_POUND] = ACTIONS(2450), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2450), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2450), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2450), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2450), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE] = ACTIONS(2450), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_API_AVAILABLE] = ACTIONS(2450), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_API_DEPRECATED] = ACTIONS(2450), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2450), + [anon_sym___deprecated_msg] = ACTIONS(2450), + [anon_sym___deprecated_enum_msg] = ACTIONS(2450), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2450), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2450), + [anon_sym_ATprotocol] = ACTIONS(2452), + [anon_sym_ATinterface] = ACTIONS(2452), + [anon_sym_ATimplementation] = ACTIONS(2452), + [anon_sym_ATcompatibility_alias] = ACTIONS(2452), + [anon_sym_ATsynthesize] = ACTIONS(2452), + [anon_sym_ATdynamic] = ACTIONS(2452), + [anon_sym_ATtry] = ACTIONS(2452), + [anon_sym___try] = ACTIONS(2450), + [anon_sym_ATthrow] = ACTIONS(2452), + [anon_sym_ATselector] = ACTIONS(2452), + [anon_sym_ATavailable] = ACTIONS(2452), + [anon_sym___builtin_available] = ACTIONS(2450), + [anon_sym_va_arg] = ACTIONS(2450), + [anon_sym_ATencode] = ACTIONS(2452), + [anon_sym_ATsynchronized] = ACTIONS(2452), + [anon_sym_BOOL] = ACTIONS(2450), + [anon_sym_IMP] = ACTIONS(2450), + [anon_sym_SEL] = ACTIONS(2450), + [anon_sym_Class] = ACTIONS(2450), + [anon_sym_id] = ACTIONS(2450), + }, + [604] = { + [sym_identifier] = ACTIONS(2712), + [aux_sym_preproc_include_token1] = ACTIONS(2712), + [aux_sym_preproc_include_token2] = ACTIONS(2712), + [aux_sym_preproc_def_token1] = ACTIONS(2712), + [aux_sym_preproc_if_token1] = ACTIONS(2712), + [aux_sym_preproc_if_token2] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2712), + [sym_preproc_directive] = ACTIONS(2712), + [anon_sym_LPAREN2] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_PLUS] = ACTIONS(2712), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_CARET] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym___extension__] = ACTIONS(2712), + [anon_sym_typedef] = ACTIONS(2712), + [anon_sym_extern] = ACTIONS(2712), + [anon_sym___attribute__] = ACTIONS(2712), + [anon_sym___attribute] = ACTIONS(2712), + [anon_sym_noreturn] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym___declspec] = ACTIONS(2712), + [anon_sym___cdecl] = ACTIONS(2712), + [anon_sym___clrcall] = ACTIONS(2712), + [anon_sym___stdcall] = ACTIONS(2712), + [anon_sym___fastcall] = ACTIONS(2712), + [anon_sym___thiscall] = ACTIONS(2712), + [anon_sym___vectorcall] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_signed] = ACTIONS(2712), + [anon_sym_unsigned] = ACTIONS(2712), + [anon_sym_long] = ACTIONS(2712), + [anon_sym_short] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2712), + [anon_sym_ATautoreleasepool] = ACTIONS(2714), + [anon_sym_auto] = ACTIONS(2712), + [anon_sym_register] = ACTIONS(2712), + [anon_sym_inline] = ACTIONS(2712), + [anon_sym___inline] = ACTIONS(2712), + [anon_sym___inline__] = ACTIONS(2712), + [anon_sym___forceinline] = ACTIONS(2712), + [anon_sym_thread_local] = ACTIONS(2712), + [anon_sym___thread] = ACTIONS(2712), + [anon_sym_CG_EXTERN] = ACTIONS(2712), + [anon_sym_CG_INLINE] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2712), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2712), + [anon_sym_IBOutlet] = ACTIONS(2712), + [anon_sym_IBInspectable] = ACTIONS(2712), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2712), + [anon_sym_NS_INLINE] = ACTIONS(2712), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2712), + [anon_sym_OBJC_EXPORT] = ACTIONS(2712), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2712), + [anon_sym_const] = ACTIONS(2712), + [anon_sym_constexpr] = ACTIONS(2712), + [anon_sym_volatile] = ACTIONS(2712), + [anon_sym_restrict] = ACTIONS(2712), + [anon_sym___restrict__] = ACTIONS(2712), + [anon_sym__Atomic] = ACTIONS(2712), + [anon_sym__Noreturn] = ACTIONS(2712), + [anon_sym__Nonnull] = ACTIONS(2712), + [anon_sym_nullable] = ACTIONS(2712), + [anon_sym__Complex] = ACTIONS(2712), + [anon_sym__Nullable] = ACTIONS(2712), + [anon_sym__Nullable_result] = ACTIONS(2712), + [anon_sym__Null_unspecified] = ACTIONS(2712), + [anon_sym___autoreleasing] = ACTIONS(2712), + [anon_sym___block] = ACTIONS(2712), + [anon_sym___bridge] = ACTIONS(2712), + [anon_sym___bridge_retained] = ACTIONS(2712), + [anon_sym___bridge_transfer] = ACTIONS(2712), + [anon_sym___complex] = ACTIONS(2712), + [anon_sym___const] = ACTIONS(2712), + [anon_sym___imag] = ACTIONS(2712), + [anon_sym___kindof] = ACTIONS(2712), + [anon_sym___nonnull] = ACTIONS(2712), + [anon_sym___nullable] = ACTIONS(2712), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2712), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2712), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2712), + [anon_sym___real] = ACTIONS(2712), + [anon_sym___strong] = ACTIONS(2712), + [anon_sym___unsafe_unretained] = ACTIONS(2712), + [anon_sym___unused] = ACTIONS(2712), + [anon_sym___weak] = ACTIONS(2712), + [anon_sym_alignas] = ACTIONS(2712), + [anon_sym__Alignas] = ACTIONS(2712), + [sym_primitive_type] = ACTIONS(2712), + [anon_sym_enum] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_union] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_switch] = ACTIONS(2712), + [anon_sym_case] = ACTIONS(2712), + [anon_sym_default] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_do] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_goto] = ACTIONS(2712), + [anon_sym_DASH_DASH] = ACTIONS(2714), + [anon_sym_PLUS_PLUS] = ACTIONS(2714), + [anon_sym_sizeof] = ACTIONS(2712), + [anon_sym___alignof__] = ACTIONS(2712), + [anon_sym___alignof] = ACTIONS(2712), + [anon_sym__alignof] = ACTIONS(2712), + [anon_sym_alignof] = ACTIONS(2712), + [anon_sym__Alignof] = ACTIONS(2712), + [anon_sym_offsetof] = ACTIONS(2712), + [anon_sym__Generic] = ACTIONS(2712), + [anon_sym_asm] = ACTIONS(2712), + [anon_sym___asm__] = ACTIONS(2712), + [anon_sym___asm] = ACTIONS(2712), + [sym_number_literal] = ACTIONS(2714), + [anon_sym_L_SQUOTE] = ACTIONS(2714), + [anon_sym_u_SQUOTE] = ACTIONS(2714), + [anon_sym_U_SQUOTE] = ACTIONS(2714), + [anon_sym_u8_SQUOTE] = ACTIONS(2714), + [anon_sym_SQUOTE] = ACTIONS(2714), + [anon_sym_AT] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2714), + [anon_sym_L_DQUOTE] = ACTIONS(2714), + [anon_sym_u_DQUOTE] = ACTIONS(2714), + [anon_sym_U_DQUOTE] = ACTIONS(2714), + [anon_sym_u8_DQUOTE] = ACTIONS(2714), + [sym_true] = ACTIONS(2712), + [sym_false] = ACTIONS(2712), + [anon_sym_NULL] = ACTIONS(2712), + [anon_sym_nullptr] = ACTIONS(2712), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2712), + [anon_sym___typeof] = ACTIONS(2712), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_ATimport] = ACTIONS(2714), + [aux_sym_preproc_undef_token1] = ACTIONS(2712), + [anon_sym_POUND] = ACTIONS(2712), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2712), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2712), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2712), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2712), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE] = ACTIONS(2712), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_API_AVAILABLE] = ACTIONS(2712), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_API_DEPRECATED] = ACTIONS(2712), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2712), + [anon_sym___deprecated_msg] = ACTIONS(2712), + [anon_sym___deprecated_enum_msg] = ACTIONS(2712), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2712), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2712), + [anon_sym_ATprotocol] = ACTIONS(2714), + [anon_sym_ATinterface] = ACTIONS(2714), + [anon_sym_ATimplementation] = ACTIONS(2714), + [anon_sym_ATcompatibility_alias] = ACTIONS(2714), + [anon_sym_ATsynthesize] = ACTIONS(2714), + [anon_sym_ATdynamic] = ACTIONS(2714), + [anon_sym_ATtry] = ACTIONS(2714), + [anon_sym___try] = ACTIONS(2712), + [anon_sym_ATthrow] = ACTIONS(2714), + [anon_sym_ATselector] = ACTIONS(2714), + [anon_sym_ATavailable] = ACTIONS(2714), + [anon_sym___builtin_available] = ACTIONS(2712), + [anon_sym_va_arg] = ACTIONS(2712), + [anon_sym_ATencode] = ACTIONS(2714), + [anon_sym_ATsynchronized] = ACTIONS(2714), + [anon_sym_BOOL] = ACTIONS(2712), + [anon_sym_IMP] = ACTIONS(2712), + [anon_sym_SEL] = ACTIONS(2712), + [anon_sym_Class] = ACTIONS(2712), + [anon_sym_id] = ACTIONS(2712), + }, + [605] = { + [sym_identifier] = ACTIONS(2664), + [aux_sym_preproc_include_token1] = ACTIONS(2664), + [aux_sym_preproc_include_token2] = ACTIONS(2664), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token2] = ACTIONS(2664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2664), + [sym_preproc_directive] = ACTIONS(2664), + [anon_sym_LPAREN2] = ACTIONS(2666), + [anon_sym_BANG] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2666), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_PLUS] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_CARET] = ACTIONS(2666), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym___extension__] = ACTIONS(2664), + [anon_sym_typedef] = ACTIONS(2664), + [anon_sym_extern] = ACTIONS(2664), + [anon_sym___attribute__] = ACTIONS(2664), + [anon_sym___attribute] = ACTIONS(2664), + [anon_sym_noreturn] = ACTIONS(2664), + [anon_sym_LBRACK] = ACTIONS(2666), + [anon_sym___declspec] = ACTIONS(2664), + [anon_sym___cdecl] = ACTIONS(2664), + [anon_sym___clrcall] = ACTIONS(2664), + [anon_sym___stdcall] = ACTIONS(2664), + [anon_sym___fastcall] = ACTIONS(2664), + [anon_sym___thiscall] = ACTIONS(2664), + [anon_sym___vectorcall] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_signed] = ACTIONS(2664), + [anon_sym_unsigned] = ACTIONS(2664), + [anon_sym_long] = ACTIONS(2664), + [anon_sym_short] = ACTIONS(2664), + [anon_sym_static] = ACTIONS(2664), + [anon_sym_ATautoreleasepool] = ACTIONS(2666), + [anon_sym_auto] = ACTIONS(2664), + [anon_sym_register] = ACTIONS(2664), + [anon_sym_inline] = ACTIONS(2664), + [anon_sym___inline] = ACTIONS(2664), + [anon_sym___inline__] = ACTIONS(2664), + [anon_sym___forceinline] = ACTIONS(2664), + [anon_sym_thread_local] = ACTIONS(2664), + [anon_sym___thread] = ACTIONS(2664), + [anon_sym_CG_EXTERN] = ACTIONS(2664), + [anon_sym_CG_INLINE] = ACTIONS(2664), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2664), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2664), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2664), + [anon_sym_IBOutlet] = ACTIONS(2664), + [anon_sym_IBInspectable] = ACTIONS(2664), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2664), + [anon_sym_NS_INLINE] = ACTIONS(2664), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2664), + [anon_sym_OBJC_EXPORT] = ACTIONS(2664), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2664), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2664), + [anon_sym_const] = ACTIONS(2664), + [anon_sym_constexpr] = ACTIONS(2664), + [anon_sym_volatile] = ACTIONS(2664), + [anon_sym_restrict] = ACTIONS(2664), + [anon_sym___restrict__] = ACTIONS(2664), + [anon_sym__Atomic] = ACTIONS(2664), + [anon_sym__Noreturn] = ACTIONS(2664), + [anon_sym__Nonnull] = ACTIONS(2664), + [anon_sym_nullable] = ACTIONS(2664), + [anon_sym__Complex] = ACTIONS(2664), + [anon_sym__Nullable] = ACTIONS(2664), + [anon_sym__Nullable_result] = ACTIONS(2664), + [anon_sym__Null_unspecified] = ACTIONS(2664), + [anon_sym___autoreleasing] = ACTIONS(2664), + [anon_sym___block] = ACTIONS(2664), + [anon_sym___bridge] = ACTIONS(2664), + [anon_sym___bridge_retained] = ACTIONS(2664), + [anon_sym___bridge_transfer] = ACTIONS(2664), + [anon_sym___complex] = ACTIONS(2664), + [anon_sym___const] = ACTIONS(2664), + [anon_sym___imag] = ACTIONS(2664), + [anon_sym___kindof] = ACTIONS(2664), + [anon_sym___nonnull] = ACTIONS(2664), + [anon_sym___nullable] = ACTIONS(2664), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2664), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2664), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2664), + [anon_sym___real] = ACTIONS(2664), + [anon_sym___strong] = ACTIONS(2664), + [anon_sym___unsafe_unretained] = ACTIONS(2664), + [anon_sym___unused] = ACTIONS(2664), + [anon_sym___weak] = ACTIONS(2664), + [anon_sym_alignas] = ACTIONS(2664), + [anon_sym__Alignas] = ACTIONS(2664), + [sym_primitive_type] = ACTIONS(2664), + [anon_sym_enum] = ACTIONS(2664), + [anon_sym_struct] = ACTIONS(2664), + [anon_sym_union] = ACTIONS(2664), + [anon_sym_if] = ACTIONS(2664), + [anon_sym_switch] = ACTIONS(2664), + [anon_sym_case] = ACTIONS(2664), + [anon_sym_default] = ACTIONS(2664), + [anon_sym_while] = ACTIONS(2664), + [anon_sym_do] = ACTIONS(2664), + [anon_sym_for] = ACTIONS(2664), + [anon_sym_in] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2664), + [anon_sym_break] = ACTIONS(2664), + [anon_sym_continue] = ACTIONS(2664), + [anon_sym_goto] = ACTIONS(2664), + [anon_sym_DASH_DASH] = ACTIONS(2666), + [anon_sym_PLUS_PLUS] = ACTIONS(2666), + [anon_sym_sizeof] = ACTIONS(2664), + [anon_sym___alignof__] = ACTIONS(2664), + [anon_sym___alignof] = ACTIONS(2664), + [anon_sym__alignof] = ACTIONS(2664), + [anon_sym_alignof] = ACTIONS(2664), + [anon_sym__Alignof] = ACTIONS(2664), + [anon_sym_offsetof] = ACTIONS(2664), + [anon_sym__Generic] = ACTIONS(2664), + [anon_sym_asm] = ACTIONS(2664), + [anon_sym___asm__] = ACTIONS(2664), + [anon_sym___asm] = ACTIONS(2664), + [sym_number_literal] = ACTIONS(2666), + [anon_sym_L_SQUOTE] = ACTIONS(2666), + [anon_sym_u_SQUOTE] = ACTIONS(2666), + [anon_sym_U_SQUOTE] = ACTIONS(2666), + [anon_sym_u8_SQUOTE] = ACTIONS(2666), + [anon_sym_SQUOTE] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2666), + [anon_sym_L_DQUOTE] = ACTIONS(2666), + [anon_sym_u_DQUOTE] = ACTIONS(2666), + [anon_sym_U_DQUOTE] = ACTIONS(2666), + [anon_sym_u8_DQUOTE] = ACTIONS(2666), + [sym_true] = ACTIONS(2664), + [sym_false] = ACTIONS(2664), + [anon_sym_NULL] = ACTIONS(2664), + [anon_sym_nullptr] = ACTIONS(2664), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2664), + [anon_sym___typeof] = ACTIONS(2664), + [anon_sym_typeof] = ACTIONS(2664), + [anon_sym_ATimport] = ACTIONS(2666), + [aux_sym_preproc_undef_token1] = ACTIONS(2664), + [anon_sym_POUND] = ACTIONS(2664), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2664), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2664), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2664), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2664), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2664), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2664), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2664), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2664), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2664), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2664), + [anon_sym_NS_AVAILABLE] = ACTIONS(2664), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2664), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2664), + [anon_sym_API_AVAILABLE] = ACTIONS(2664), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2664), + [anon_sym_API_DEPRECATED] = ACTIONS(2664), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2664), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2664), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2664), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2664), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2664), + [anon_sym___deprecated_msg] = ACTIONS(2664), + [anon_sym___deprecated_enum_msg] = ACTIONS(2664), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2664), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2664), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2664), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2664), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2664), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2664), + [anon_sym_ATprotocol] = ACTIONS(2666), + [anon_sym_ATinterface] = ACTIONS(2666), + [anon_sym_ATimplementation] = ACTIONS(2666), + [anon_sym_ATcompatibility_alias] = ACTIONS(2666), + [anon_sym_ATsynthesize] = ACTIONS(2666), + [anon_sym_ATdynamic] = ACTIONS(2666), + [anon_sym_ATtry] = ACTIONS(2666), + [anon_sym___try] = ACTIONS(2664), + [anon_sym_ATthrow] = ACTIONS(2666), + [anon_sym_ATselector] = ACTIONS(2666), + [anon_sym_ATavailable] = ACTIONS(2666), + [anon_sym___builtin_available] = ACTIONS(2664), + [anon_sym_va_arg] = ACTIONS(2664), + [anon_sym_ATencode] = ACTIONS(2666), + [anon_sym_ATsynchronized] = ACTIONS(2666), + [anon_sym_BOOL] = ACTIONS(2664), + [anon_sym_IMP] = ACTIONS(2664), + [anon_sym_SEL] = ACTIONS(2664), + [anon_sym_Class] = ACTIONS(2664), + [anon_sym_id] = ACTIONS(2664), + }, + [606] = { + [sym_identifier] = ACTIONS(2668), + [aux_sym_preproc_include_token1] = ACTIONS(2668), + [aux_sym_preproc_include_token2] = ACTIONS(2668), + [aux_sym_preproc_def_token1] = ACTIONS(2668), + [aux_sym_preproc_if_token1] = ACTIONS(2668), + [aux_sym_preproc_if_token2] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [sym_preproc_directive] = ACTIONS(2668), + [anon_sym_LPAREN2] = ACTIONS(2670), + [anon_sym_BANG] = ACTIONS(2670), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2668), + [anon_sym_PLUS] = ACTIONS(2668), + [anon_sym_STAR] = ACTIONS(2670), + [anon_sym_CARET] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2670), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym___extension__] = ACTIONS(2668), + [anon_sym_typedef] = ACTIONS(2668), + [anon_sym_extern] = ACTIONS(2668), + [anon_sym___attribute__] = ACTIONS(2668), + [anon_sym___attribute] = ACTIONS(2668), + [anon_sym_noreturn] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym___declspec] = ACTIONS(2668), + [anon_sym___cdecl] = ACTIONS(2668), + [anon_sym___clrcall] = ACTIONS(2668), + [anon_sym___stdcall] = ACTIONS(2668), + [anon_sym___fastcall] = ACTIONS(2668), + [anon_sym___thiscall] = ACTIONS(2668), + [anon_sym___vectorcall] = ACTIONS(2668), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_signed] = ACTIONS(2668), + [anon_sym_unsigned] = ACTIONS(2668), + [anon_sym_long] = ACTIONS(2668), + [anon_sym_short] = ACTIONS(2668), + [anon_sym_static] = ACTIONS(2668), + [anon_sym_ATautoreleasepool] = ACTIONS(2670), + [anon_sym_auto] = ACTIONS(2668), + [anon_sym_register] = ACTIONS(2668), + [anon_sym_inline] = ACTIONS(2668), + [anon_sym___inline] = ACTIONS(2668), + [anon_sym___inline__] = ACTIONS(2668), + [anon_sym___forceinline] = ACTIONS(2668), + [anon_sym_thread_local] = ACTIONS(2668), + [anon_sym___thread] = ACTIONS(2668), + [anon_sym_CG_EXTERN] = ACTIONS(2668), + [anon_sym_CG_INLINE] = ACTIONS(2668), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2668), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2668), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2668), + [anon_sym_IBOutlet] = ACTIONS(2668), + [anon_sym_IBInspectable] = ACTIONS(2668), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2668), + [anon_sym_NS_INLINE] = ACTIONS(2668), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2668), + [anon_sym_OBJC_EXPORT] = ACTIONS(2668), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2668), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2668), + [anon_sym_const] = ACTIONS(2668), + [anon_sym_constexpr] = ACTIONS(2668), + [anon_sym_volatile] = ACTIONS(2668), + [anon_sym_restrict] = ACTIONS(2668), + [anon_sym___restrict__] = ACTIONS(2668), + [anon_sym__Atomic] = ACTIONS(2668), + [anon_sym__Noreturn] = ACTIONS(2668), + [anon_sym__Nonnull] = ACTIONS(2668), + [anon_sym_nullable] = ACTIONS(2668), + [anon_sym__Complex] = ACTIONS(2668), + [anon_sym__Nullable] = ACTIONS(2668), + [anon_sym__Nullable_result] = ACTIONS(2668), + [anon_sym__Null_unspecified] = ACTIONS(2668), + [anon_sym___autoreleasing] = ACTIONS(2668), + [anon_sym___block] = ACTIONS(2668), + [anon_sym___bridge] = ACTIONS(2668), + [anon_sym___bridge_retained] = ACTIONS(2668), + [anon_sym___bridge_transfer] = ACTIONS(2668), + [anon_sym___complex] = ACTIONS(2668), + [anon_sym___const] = ACTIONS(2668), + [anon_sym___imag] = ACTIONS(2668), + [anon_sym___kindof] = ACTIONS(2668), + [anon_sym___nonnull] = ACTIONS(2668), + [anon_sym___nullable] = ACTIONS(2668), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2668), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2668), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2668), + [anon_sym___real] = ACTIONS(2668), + [anon_sym___strong] = ACTIONS(2668), + [anon_sym___unsafe_unretained] = ACTIONS(2668), + [anon_sym___unused] = ACTIONS(2668), + [anon_sym___weak] = ACTIONS(2668), + [anon_sym_alignas] = ACTIONS(2668), + [anon_sym__Alignas] = ACTIONS(2668), + [sym_primitive_type] = ACTIONS(2668), + [anon_sym_enum] = ACTIONS(2668), + [anon_sym_struct] = ACTIONS(2668), + [anon_sym_union] = ACTIONS(2668), + [anon_sym_if] = ACTIONS(2668), + [anon_sym_switch] = ACTIONS(2668), + [anon_sym_case] = ACTIONS(2668), + [anon_sym_default] = ACTIONS(2668), + [anon_sym_while] = ACTIONS(2668), + [anon_sym_do] = ACTIONS(2668), + [anon_sym_for] = ACTIONS(2668), + [anon_sym_in] = ACTIONS(2668), + [anon_sym_return] = ACTIONS(2668), + [anon_sym_break] = ACTIONS(2668), + [anon_sym_continue] = ACTIONS(2668), + [anon_sym_goto] = ACTIONS(2668), + [anon_sym_DASH_DASH] = ACTIONS(2670), + [anon_sym_PLUS_PLUS] = ACTIONS(2670), + [anon_sym_sizeof] = ACTIONS(2668), + [anon_sym___alignof__] = ACTIONS(2668), + [anon_sym___alignof] = ACTIONS(2668), + [anon_sym__alignof] = ACTIONS(2668), + [anon_sym_alignof] = ACTIONS(2668), + [anon_sym__Alignof] = ACTIONS(2668), + [anon_sym_offsetof] = ACTIONS(2668), + [anon_sym__Generic] = ACTIONS(2668), + [anon_sym_asm] = ACTIONS(2668), + [anon_sym___asm__] = ACTIONS(2668), + [anon_sym___asm] = ACTIONS(2668), + [sym_number_literal] = ACTIONS(2670), + [anon_sym_L_SQUOTE] = ACTIONS(2670), + [anon_sym_u_SQUOTE] = ACTIONS(2670), + [anon_sym_U_SQUOTE] = ACTIONS(2670), + [anon_sym_u8_SQUOTE] = ACTIONS(2670), + [anon_sym_SQUOTE] = ACTIONS(2670), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_DQUOTE] = ACTIONS(2670), + [anon_sym_L_DQUOTE] = ACTIONS(2670), + [anon_sym_u_DQUOTE] = ACTIONS(2670), + [anon_sym_U_DQUOTE] = ACTIONS(2670), + [anon_sym_u8_DQUOTE] = ACTIONS(2670), + [sym_true] = ACTIONS(2668), + [sym_false] = ACTIONS(2668), + [anon_sym_NULL] = ACTIONS(2668), + [anon_sym_nullptr] = ACTIONS(2668), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2668), + [anon_sym___typeof] = ACTIONS(2668), + [anon_sym_typeof] = ACTIONS(2668), + [anon_sym_ATimport] = ACTIONS(2670), + [aux_sym_preproc_undef_token1] = ACTIONS(2668), + [anon_sym_POUND] = ACTIONS(2668), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2668), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2668), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2668), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2668), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2668), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2668), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2668), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2668), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2668), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2668), + [anon_sym_NS_AVAILABLE] = ACTIONS(2668), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2668), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2668), + [anon_sym_API_AVAILABLE] = ACTIONS(2668), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2668), + [anon_sym_API_DEPRECATED] = ACTIONS(2668), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2668), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2668), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2668), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2668), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2668), + [anon_sym___deprecated_msg] = ACTIONS(2668), + [anon_sym___deprecated_enum_msg] = ACTIONS(2668), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2668), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2668), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2668), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2668), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2668), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2668), + [anon_sym_ATprotocol] = ACTIONS(2670), + [anon_sym_ATinterface] = ACTIONS(2670), + [anon_sym_ATimplementation] = ACTIONS(2670), + [anon_sym_ATcompatibility_alias] = ACTIONS(2670), + [anon_sym_ATsynthesize] = ACTIONS(2670), + [anon_sym_ATdynamic] = ACTIONS(2670), + [anon_sym_ATtry] = ACTIONS(2670), + [anon_sym___try] = ACTIONS(2668), + [anon_sym_ATthrow] = ACTIONS(2670), + [anon_sym_ATselector] = ACTIONS(2670), + [anon_sym_ATavailable] = ACTIONS(2670), + [anon_sym___builtin_available] = ACTIONS(2668), + [anon_sym_va_arg] = ACTIONS(2668), + [anon_sym_ATencode] = ACTIONS(2670), + [anon_sym_ATsynchronized] = ACTIONS(2670), + [anon_sym_BOOL] = ACTIONS(2668), + [anon_sym_IMP] = ACTIONS(2668), + [anon_sym_SEL] = ACTIONS(2668), + [anon_sym_Class] = ACTIONS(2668), + [anon_sym_id] = ACTIONS(2668), + }, + [607] = { + [sym_else_clause] = STATE(811), + [sym_identifier] = ACTIONS(2402), + [aux_sym_preproc_include_token1] = ACTIONS(2402), + [aux_sym_preproc_include_token2] = ACTIONS(2402), + [aux_sym_preproc_def_token1] = ACTIONS(2402), + [aux_sym_preproc_if_token1] = ACTIONS(2402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2402), + [sym_preproc_directive] = ACTIONS(2402), + [anon_sym_LPAREN2] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_TILDE] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_PLUS] = ACTIONS(2402), + [anon_sym_STAR] = ACTIONS(2404), + [anon_sym_CARET] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym___extension__] = ACTIONS(2402), + [anon_sym_typedef] = ACTIONS(2402), + [anon_sym_extern] = ACTIONS(2402), + [anon_sym___attribute__] = ACTIONS(2402), + [anon_sym___attribute] = ACTIONS(2402), + [anon_sym_noreturn] = ACTIONS(2402), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym___declspec] = ACTIONS(2402), + [anon_sym___cdecl] = ACTIONS(2402), + [anon_sym___clrcall] = ACTIONS(2402), + [anon_sym___stdcall] = ACTIONS(2402), + [anon_sym___fastcall] = ACTIONS(2402), + [anon_sym___thiscall] = ACTIONS(2402), + [anon_sym___vectorcall] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2404), + [anon_sym_RBRACE] = ACTIONS(2404), + [anon_sym_signed] = ACTIONS(2402), + [anon_sym_unsigned] = ACTIONS(2402), + [anon_sym_long] = ACTIONS(2402), + [anon_sym_short] = ACTIONS(2402), + [anon_sym_static] = ACTIONS(2402), + [anon_sym_ATautoreleasepool] = ACTIONS(2404), + [anon_sym_auto] = ACTIONS(2402), + [anon_sym_register] = ACTIONS(2402), + [anon_sym_inline] = ACTIONS(2402), + [anon_sym___inline] = ACTIONS(2402), + [anon_sym___inline__] = ACTIONS(2402), + [anon_sym___forceinline] = ACTIONS(2402), + [anon_sym_thread_local] = ACTIONS(2402), + [anon_sym___thread] = ACTIONS(2402), + [anon_sym_CG_EXTERN] = ACTIONS(2402), + [anon_sym_CG_INLINE] = ACTIONS(2402), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2402), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2402), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2402), + [anon_sym_IBOutlet] = ACTIONS(2402), + [anon_sym_IBInspectable] = ACTIONS(2402), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2402), + [anon_sym_NS_INLINE] = ACTIONS(2402), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2402), + [anon_sym_OBJC_EXPORT] = ACTIONS(2402), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2402), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2402), + [anon_sym_const] = ACTIONS(2402), + [anon_sym_constexpr] = ACTIONS(2402), + [anon_sym_volatile] = ACTIONS(2402), + [anon_sym_restrict] = ACTIONS(2402), + [anon_sym___restrict__] = ACTIONS(2402), + [anon_sym__Atomic] = ACTIONS(2402), + [anon_sym__Noreturn] = ACTIONS(2402), + [anon_sym__Nonnull] = ACTIONS(2402), + [anon_sym_nullable] = ACTIONS(2402), + [anon_sym__Complex] = ACTIONS(2402), + [anon_sym__Nullable] = ACTIONS(2402), + [anon_sym__Nullable_result] = ACTIONS(2402), + [anon_sym__Null_unspecified] = ACTIONS(2402), + [anon_sym___autoreleasing] = ACTIONS(2402), + [anon_sym___block] = ACTIONS(2402), + [anon_sym___bridge] = ACTIONS(2402), + [anon_sym___bridge_retained] = ACTIONS(2402), + [anon_sym___bridge_transfer] = ACTIONS(2402), + [anon_sym___complex] = ACTIONS(2402), + [anon_sym___const] = ACTIONS(2402), + [anon_sym___imag] = ACTIONS(2402), + [anon_sym___kindof] = ACTIONS(2402), + [anon_sym___nonnull] = ACTIONS(2402), + [anon_sym___nullable] = ACTIONS(2402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2402), + [anon_sym___real] = ACTIONS(2402), + [anon_sym___strong] = ACTIONS(2402), + [anon_sym___unsafe_unretained] = ACTIONS(2402), + [anon_sym___unused] = ACTIONS(2402), + [anon_sym___weak] = ACTIONS(2402), + [anon_sym_alignas] = ACTIONS(2402), + [anon_sym__Alignas] = ACTIONS(2402), + [sym_primitive_type] = ACTIONS(2402), + [anon_sym_enum] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(2402), + [anon_sym_union] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_else] = ACTIONS(2902), + [anon_sym_switch] = ACTIONS(2402), + [anon_sym_case] = ACTIONS(2402), + [anon_sym_default] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_in] = ACTIONS(2402), + [anon_sym_return] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_goto] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2404), + [anon_sym_sizeof] = ACTIONS(2402), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2402), + [anon_sym_asm] = ACTIONS(2402), + [anon_sym___asm__] = ACTIONS(2402), + [anon_sym___asm] = ACTIONS(2402), + [sym_number_literal] = ACTIONS(2404), + [anon_sym_L_SQUOTE] = ACTIONS(2404), + [anon_sym_u_SQUOTE] = ACTIONS(2404), + [anon_sym_U_SQUOTE] = ACTIONS(2404), + [anon_sym_u8_SQUOTE] = ACTIONS(2404), + [anon_sym_SQUOTE] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_L_DQUOTE] = ACTIONS(2404), + [anon_sym_u_DQUOTE] = ACTIONS(2404), + [anon_sym_U_DQUOTE] = ACTIONS(2404), + [anon_sym_u8_DQUOTE] = ACTIONS(2404), + [sym_true] = ACTIONS(2402), + [sym_false] = ACTIONS(2402), + [anon_sym_NULL] = ACTIONS(2402), + [anon_sym_nullptr] = ACTIONS(2402), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2402), + [anon_sym___typeof] = ACTIONS(2402), + [anon_sym_typeof] = ACTIONS(2402), + [anon_sym_ATimport] = ACTIONS(2404), + [aux_sym_preproc_undef_token1] = ACTIONS(2402), + [anon_sym_POUND] = ACTIONS(2402), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2402), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2402), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2402), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2402), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2402), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2402), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2402), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2402), + [anon_sym_NS_AVAILABLE] = ACTIONS(2402), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2402), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_API_AVAILABLE] = ACTIONS(2402), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_API_DEPRECATED] = ACTIONS(2402), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2402), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2402), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2402), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2402), + [anon_sym___deprecated_msg] = ACTIONS(2402), + [anon_sym___deprecated_enum_msg] = ACTIONS(2402), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2402), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2402), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2402), + [anon_sym_ATprotocol] = ACTIONS(2404), + [anon_sym_ATinterface] = ACTIONS(2404), + [anon_sym_ATimplementation] = ACTIONS(2404), + [anon_sym_ATcompatibility_alias] = ACTIONS(2404), + [anon_sym_ATtry] = ACTIONS(2404), + [anon_sym___try] = ACTIONS(2402), + [anon_sym_ATthrow] = ACTIONS(2404), + [anon_sym_ATselector] = ACTIONS(2404), + [anon_sym_ATavailable] = ACTIONS(2404), + [anon_sym___builtin_available] = ACTIONS(2402), + [anon_sym_va_arg] = ACTIONS(2402), + [anon_sym_ATencode] = ACTIONS(2404), + [anon_sym_ATsynchronized] = ACTIONS(2404), + [anon_sym_BOOL] = ACTIONS(2402), + [anon_sym_IMP] = ACTIONS(2402), + [anon_sym_SEL] = ACTIONS(2402), + [anon_sym_Class] = ACTIONS(2402), + [anon_sym_id] = ACTIONS(2402), + }, + [608] = { + [sym_identifier] = ACTIONS(2740), + [aux_sym_preproc_include_token1] = ACTIONS(2740), + [aux_sym_preproc_include_token2] = ACTIONS(2740), + [aux_sym_preproc_def_token1] = ACTIONS(2740), + [aux_sym_preproc_if_token1] = ACTIONS(2740), + [aux_sym_preproc_if_token2] = ACTIONS(2740), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2740), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2740), + [sym_preproc_directive] = ACTIONS(2740), + [anon_sym_LPAREN2] = ACTIONS(2742), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_TILDE] = ACTIONS(2742), + [anon_sym_DASH] = ACTIONS(2740), + [anon_sym_PLUS] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2742), + [anon_sym_CARET] = ACTIONS(2742), + [anon_sym_AMP] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym___extension__] = ACTIONS(2740), + [anon_sym_typedef] = ACTIONS(2740), + [anon_sym_extern] = ACTIONS(2740), + [anon_sym___attribute__] = ACTIONS(2740), + [anon_sym___attribute] = ACTIONS(2740), + [anon_sym_noreturn] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym___declspec] = ACTIONS(2740), + [anon_sym___cdecl] = ACTIONS(2740), + [anon_sym___clrcall] = ACTIONS(2740), + [anon_sym___stdcall] = ACTIONS(2740), + [anon_sym___fastcall] = ACTIONS(2740), + [anon_sym___thiscall] = ACTIONS(2740), + [anon_sym___vectorcall] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_signed] = ACTIONS(2740), + [anon_sym_unsigned] = ACTIONS(2740), + [anon_sym_long] = ACTIONS(2740), + [anon_sym_short] = ACTIONS(2740), + [anon_sym_static] = ACTIONS(2740), + [anon_sym_ATautoreleasepool] = ACTIONS(2742), + [anon_sym_auto] = ACTIONS(2740), + [anon_sym_register] = ACTIONS(2740), + [anon_sym_inline] = ACTIONS(2740), + [anon_sym___inline] = ACTIONS(2740), + [anon_sym___inline__] = ACTIONS(2740), + [anon_sym___forceinline] = ACTIONS(2740), + [anon_sym_thread_local] = ACTIONS(2740), + [anon_sym___thread] = ACTIONS(2740), + [anon_sym_CG_EXTERN] = ACTIONS(2740), + [anon_sym_CG_INLINE] = ACTIONS(2740), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2740), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2740), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2740), + [anon_sym_IBOutlet] = ACTIONS(2740), + [anon_sym_IBInspectable] = ACTIONS(2740), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2740), + [anon_sym_NS_INLINE] = ACTIONS(2740), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2740), + [anon_sym_OBJC_EXPORT] = ACTIONS(2740), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2740), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2740), + [anon_sym_const] = ACTIONS(2740), + [anon_sym_constexpr] = ACTIONS(2740), + [anon_sym_volatile] = ACTIONS(2740), + [anon_sym_restrict] = ACTIONS(2740), + [anon_sym___restrict__] = ACTIONS(2740), + [anon_sym__Atomic] = ACTIONS(2740), + [anon_sym__Noreturn] = ACTIONS(2740), + [anon_sym__Nonnull] = ACTIONS(2740), + [anon_sym_nullable] = ACTIONS(2740), + [anon_sym__Complex] = ACTIONS(2740), + [anon_sym__Nullable] = ACTIONS(2740), + [anon_sym__Nullable_result] = ACTIONS(2740), + [anon_sym__Null_unspecified] = ACTIONS(2740), + [anon_sym___autoreleasing] = ACTIONS(2740), + [anon_sym___block] = ACTIONS(2740), + [anon_sym___bridge] = ACTIONS(2740), + [anon_sym___bridge_retained] = ACTIONS(2740), + [anon_sym___bridge_transfer] = ACTIONS(2740), + [anon_sym___complex] = ACTIONS(2740), + [anon_sym___const] = ACTIONS(2740), + [anon_sym___imag] = ACTIONS(2740), + [anon_sym___kindof] = ACTIONS(2740), + [anon_sym___nonnull] = ACTIONS(2740), + [anon_sym___nullable] = ACTIONS(2740), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2740), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2740), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2740), + [anon_sym___real] = ACTIONS(2740), + [anon_sym___strong] = ACTIONS(2740), + [anon_sym___unsafe_unretained] = ACTIONS(2740), + [anon_sym___unused] = ACTIONS(2740), + [anon_sym___weak] = ACTIONS(2740), + [anon_sym_alignas] = ACTIONS(2740), + [anon_sym__Alignas] = ACTIONS(2740), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_enum] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(2740), + [anon_sym_union] = ACTIONS(2740), + [anon_sym_if] = ACTIONS(2740), + [anon_sym_switch] = ACTIONS(2740), + [anon_sym_case] = ACTIONS(2740), + [anon_sym_default] = ACTIONS(2740), + [anon_sym_while] = ACTIONS(2740), + [anon_sym_do] = ACTIONS(2740), + [anon_sym_for] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2740), + [anon_sym_return] = ACTIONS(2740), + [anon_sym_break] = ACTIONS(2740), + [anon_sym_continue] = ACTIONS(2740), + [anon_sym_goto] = ACTIONS(2740), + [anon_sym_DASH_DASH] = ACTIONS(2742), + [anon_sym_PLUS_PLUS] = ACTIONS(2742), + [anon_sym_sizeof] = ACTIONS(2740), + [anon_sym___alignof__] = ACTIONS(2740), + [anon_sym___alignof] = ACTIONS(2740), + [anon_sym__alignof] = ACTIONS(2740), + [anon_sym_alignof] = ACTIONS(2740), + [anon_sym__Alignof] = ACTIONS(2740), + [anon_sym_offsetof] = ACTIONS(2740), + [anon_sym__Generic] = ACTIONS(2740), + [anon_sym_asm] = ACTIONS(2740), + [anon_sym___asm__] = ACTIONS(2740), + [anon_sym___asm] = ACTIONS(2740), + [sym_number_literal] = ACTIONS(2742), + [anon_sym_L_SQUOTE] = ACTIONS(2742), + [anon_sym_u_SQUOTE] = ACTIONS(2742), + [anon_sym_U_SQUOTE] = ACTIONS(2742), + [anon_sym_u8_SQUOTE] = ACTIONS(2742), + [anon_sym_SQUOTE] = ACTIONS(2742), + [anon_sym_AT] = ACTIONS(2740), + [anon_sym_DQUOTE] = ACTIONS(2742), + [anon_sym_L_DQUOTE] = ACTIONS(2742), + [anon_sym_u_DQUOTE] = ACTIONS(2742), + [anon_sym_U_DQUOTE] = ACTIONS(2742), + [anon_sym_u8_DQUOTE] = ACTIONS(2742), + [sym_true] = ACTIONS(2740), + [sym_false] = ACTIONS(2740), + [anon_sym_NULL] = ACTIONS(2740), + [anon_sym_nullptr] = ACTIONS(2740), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2740), + [anon_sym___typeof] = ACTIONS(2740), + [anon_sym_typeof] = ACTIONS(2740), + [anon_sym_ATimport] = ACTIONS(2742), + [aux_sym_preproc_undef_token1] = ACTIONS(2740), + [anon_sym_POUND] = ACTIONS(2740), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2740), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2740), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2740), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2740), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2740), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2740), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2740), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2740), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2740), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2740), + [anon_sym_NS_AVAILABLE] = ACTIONS(2740), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2740), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2740), + [anon_sym_API_AVAILABLE] = ACTIONS(2740), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2740), + [anon_sym_API_DEPRECATED] = ACTIONS(2740), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2740), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2740), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2740), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2740), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2740), + [anon_sym___deprecated_msg] = ACTIONS(2740), + [anon_sym___deprecated_enum_msg] = ACTIONS(2740), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2740), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2740), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2740), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2740), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2740), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2740), + [anon_sym_ATprotocol] = ACTIONS(2742), + [anon_sym_ATinterface] = ACTIONS(2742), + [anon_sym_ATimplementation] = ACTIONS(2742), + [anon_sym_ATcompatibility_alias] = ACTIONS(2742), + [anon_sym_ATsynthesize] = ACTIONS(2742), + [anon_sym_ATdynamic] = ACTIONS(2742), + [anon_sym_ATtry] = ACTIONS(2742), + [anon_sym___try] = ACTIONS(2740), + [anon_sym_ATthrow] = ACTIONS(2742), + [anon_sym_ATselector] = ACTIONS(2742), + [anon_sym_ATavailable] = ACTIONS(2742), + [anon_sym___builtin_available] = ACTIONS(2740), + [anon_sym_va_arg] = ACTIONS(2740), + [anon_sym_ATencode] = ACTIONS(2742), + [anon_sym_ATsynchronized] = ACTIONS(2742), + [anon_sym_BOOL] = ACTIONS(2740), + [anon_sym_IMP] = ACTIONS(2740), + [anon_sym_SEL] = ACTIONS(2740), + [anon_sym_Class] = ACTIONS(2740), + [anon_sym_id] = ACTIONS(2740), + }, + [609] = { + [sym_identifier] = ACTIONS(2748), + [aux_sym_preproc_include_token1] = ACTIONS(2748), + [aux_sym_preproc_include_token2] = ACTIONS(2748), + [aux_sym_preproc_def_token1] = ACTIONS(2748), + [aux_sym_preproc_if_token1] = ACTIONS(2748), + [aux_sym_preproc_if_token2] = ACTIONS(2748), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2748), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2748), + [sym_preproc_directive] = ACTIONS(2748), + [anon_sym_LPAREN2] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2750), + [anon_sym_TILDE] = ACTIONS(2750), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_PLUS] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_CARET] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym___extension__] = ACTIONS(2748), + [anon_sym_typedef] = ACTIONS(2748), + [anon_sym_extern] = ACTIONS(2748), + [anon_sym___attribute__] = ACTIONS(2748), + [anon_sym___attribute] = ACTIONS(2748), + [anon_sym_noreturn] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2750), + [anon_sym___declspec] = ACTIONS(2748), + [anon_sym___cdecl] = ACTIONS(2748), + [anon_sym___clrcall] = ACTIONS(2748), + [anon_sym___stdcall] = ACTIONS(2748), + [anon_sym___fastcall] = ACTIONS(2748), + [anon_sym___thiscall] = ACTIONS(2748), + [anon_sym___vectorcall] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(2750), + [anon_sym_signed] = ACTIONS(2748), + [anon_sym_unsigned] = ACTIONS(2748), + [anon_sym_long] = ACTIONS(2748), + [anon_sym_short] = ACTIONS(2748), + [anon_sym_static] = ACTIONS(2748), + [anon_sym_ATautoreleasepool] = ACTIONS(2750), + [anon_sym_auto] = ACTIONS(2748), + [anon_sym_register] = ACTIONS(2748), + [anon_sym_inline] = ACTIONS(2748), + [anon_sym___inline] = ACTIONS(2748), + [anon_sym___inline__] = ACTIONS(2748), + [anon_sym___forceinline] = ACTIONS(2748), + [anon_sym_thread_local] = ACTIONS(2748), + [anon_sym___thread] = ACTIONS(2748), + [anon_sym_CG_EXTERN] = ACTIONS(2748), + [anon_sym_CG_INLINE] = ACTIONS(2748), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2748), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2748), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2748), + [anon_sym_IBOutlet] = ACTIONS(2748), + [anon_sym_IBInspectable] = ACTIONS(2748), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2748), + [anon_sym_NS_INLINE] = ACTIONS(2748), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2748), + [anon_sym_OBJC_EXPORT] = ACTIONS(2748), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2748), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2748), + [anon_sym_constexpr] = ACTIONS(2748), + [anon_sym_volatile] = ACTIONS(2748), + [anon_sym_restrict] = ACTIONS(2748), + [anon_sym___restrict__] = ACTIONS(2748), + [anon_sym__Atomic] = ACTIONS(2748), + [anon_sym__Noreturn] = ACTIONS(2748), + [anon_sym__Nonnull] = ACTIONS(2748), + [anon_sym_nullable] = ACTIONS(2748), + [anon_sym__Complex] = ACTIONS(2748), + [anon_sym__Nullable] = ACTIONS(2748), + [anon_sym__Nullable_result] = ACTIONS(2748), + [anon_sym__Null_unspecified] = ACTIONS(2748), + [anon_sym___autoreleasing] = ACTIONS(2748), + [anon_sym___block] = ACTIONS(2748), + [anon_sym___bridge] = ACTIONS(2748), + [anon_sym___bridge_retained] = ACTIONS(2748), + [anon_sym___bridge_transfer] = ACTIONS(2748), + [anon_sym___complex] = ACTIONS(2748), + [anon_sym___const] = ACTIONS(2748), + [anon_sym___imag] = ACTIONS(2748), + [anon_sym___kindof] = ACTIONS(2748), + [anon_sym___nonnull] = ACTIONS(2748), + [anon_sym___nullable] = ACTIONS(2748), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2748), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2748), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2748), + [anon_sym___real] = ACTIONS(2748), + [anon_sym___strong] = ACTIONS(2748), + [anon_sym___unsafe_unretained] = ACTIONS(2748), + [anon_sym___unused] = ACTIONS(2748), + [anon_sym___weak] = ACTIONS(2748), + [anon_sym_alignas] = ACTIONS(2748), + [anon_sym__Alignas] = ACTIONS(2748), + [sym_primitive_type] = ACTIONS(2748), + [anon_sym_enum] = ACTIONS(2748), + [anon_sym_struct] = ACTIONS(2748), + [anon_sym_union] = ACTIONS(2748), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_switch] = ACTIONS(2748), + [anon_sym_case] = ACTIONS(2748), + [anon_sym_default] = ACTIONS(2748), + [anon_sym_while] = ACTIONS(2748), + [anon_sym_do] = ACTIONS(2748), + [anon_sym_for] = ACTIONS(2748), + [anon_sym_in] = ACTIONS(2748), + [anon_sym_return] = ACTIONS(2748), + [anon_sym_break] = ACTIONS(2748), + [anon_sym_continue] = ACTIONS(2748), + [anon_sym_goto] = ACTIONS(2748), + [anon_sym_DASH_DASH] = ACTIONS(2750), + [anon_sym_PLUS_PLUS] = ACTIONS(2750), + [anon_sym_sizeof] = ACTIONS(2748), + [anon_sym___alignof__] = ACTIONS(2748), + [anon_sym___alignof] = ACTIONS(2748), + [anon_sym__alignof] = ACTIONS(2748), + [anon_sym_alignof] = ACTIONS(2748), + [anon_sym__Alignof] = ACTIONS(2748), + [anon_sym_offsetof] = ACTIONS(2748), + [anon_sym__Generic] = ACTIONS(2748), + [anon_sym_asm] = ACTIONS(2748), + [anon_sym___asm__] = ACTIONS(2748), + [anon_sym___asm] = ACTIONS(2748), + [sym_number_literal] = ACTIONS(2750), + [anon_sym_L_SQUOTE] = ACTIONS(2750), + [anon_sym_u_SQUOTE] = ACTIONS(2750), + [anon_sym_U_SQUOTE] = ACTIONS(2750), + [anon_sym_u8_SQUOTE] = ACTIONS(2750), + [anon_sym_SQUOTE] = ACTIONS(2750), + [anon_sym_AT] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2750), + [anon_sym_L_DQUOTE] = ACTIONS(2750), + [anon_sym_u_DQUOTE] = ACTIONS(2750), + [anon_sym_U_DQUOTE] = ACTIONS(2750), + [anon_sym_u8_DQUOTE] = ACTIONS(2750), + [sym_true] = ACTIONS(2748), + [sym_false] = ACTIONS(2748), + [anon_sym_NULL] = ACTIONS(2748), + [anon_sym_nullptr] = ACTIONS(2748), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2748), + [anon_sym___typeof] = ACTIONS(2748), + [anon_sym_typeof] = ACTIONS(2748), + [anon_sym_ATimport] = ACTIONS(2750), + [aux_sym_preproc_undef_token1] = ACTIONS(2748), + [anon_sym_POUND] = ACTIONS(2748), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2748), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2748), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2748), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2748), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2748), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2748), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2748), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2748), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2748), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2748), + [anon_sym_NS_AVAILABLE] = ACTIONS(2748), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2748), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2748), + [anon_sym_API_AVAILABLE] = ACTIONS(2748), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2748), + [anon_sym_API_DEPRECATED] = ACTIONS(2748), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2748), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2748), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2748), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2748), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2748), + [anon_sym___deprecated_msg] = ACTIONS(2748), + [anon_sym___deprecated_enum_msg] = ACTIONS(2748), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2748), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2748), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2748), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2748), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2748), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2748), + [anon_sym_ATprotocol] = ACTIONS(2750), + [anon_sym_ATinterface] = ACTIONS(2750), + [anon_sym_ATimplementation] = ACTIONS(2750), + [anon_sym_ATcompatibility_alias] = ACTIONS(2750), + [anon_sym_ATsynthesize] = ACTIONS(2750), + [anon_sym_ATdynamic] = ACTIONS(2750), + [anon_sym_ATtry] = ACTIONS(2750), + [anon_sym___try] = ACTIONS(2748), + [anon_sym_ATthrow] = ACTIONS(2750), + [anon_sym_ATselector] = ACTIONS(2750), + [anon_sym_ATavailable] = ACTIONS(2750), + [anon_sym___builtin_available] = ACTIONS(2748), + [anon_sym_va_arg] = ACTIONS(2748), + [anon_sym_ATencode] = ACTIONS(2750), + [anon_sym_ATsynchronized] = ACTIONS(2750), + [anon_sym_BOOL] = ACTIONS(2748), + [anon_sym_IMP] = ACTIONS(2748), + [anon_sym_SEL] = ACTIONS(2748), + [anon_sym_Class] = ACTIONS(2748), + [anon_sym_id] = ACTIONS(2748), + }, + [610] = { + [sym_identifier] = ACTIONS(2582), + [aux_sym_preproc_include_token1] = ACTIONS(2582), + [aux_sym_preproc_include_token2] = ACTIONS(2582), + [aux_sym_preproc_def_token1] = ACTIONS(2582), + [aux_sym_preproc_if_token1] = ACTIONS(2582), + [aux_sym_preproc_if_token2] = ACTIONS(2582), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2582), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2582), + [sym_preproc_directive] = ACTIONS(2582), + [anon_sym_LPAREN2] = ACTIONS(2584), + [anon_sym_BANG] = ACTIONS(2584), + [anon_sym_TILDE] = ACTIONS(2584), + [anon_sym_DASH] = ACTIONS(2582), + [anon_sym_PLUS] = ACTIONS(2582), + [anon_sym_STAR] = ACTIONS(2584), + [anon_sym_CARET] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym___extension__] = ACTIONS(2582), + [anon_sym_typedef] = ACTIONS(2582), + [anon_sym_extern] = ACTIONS(2582), + [anon_sym___attribute__] = ACTIONS(2582), + [anon_sym___attribute] = ACTIONS(2582), + [anon_sym_noreturn] = ACTIONS(2582), + [anon_sym_LBRACK] = ACTIONS(2584), + [anon_sym___declspec] = ACTIONS(2582), + [anon_sym___cdecl] = ACTIONS(2582), + [anon_sym___clrcall] = ACTIONS(2582), + [anon_sym___stdcall] = ACTIONS(2582), + [anon_sym___fastcall] = ACTIONS(2582), + [anon_sym___thiscall] = ACTIONS(2582), + [anon_sym___vectorcall] = ACTIONS(2582), + [anon_sym_LBRACE] = ACTIONS(2584), + [anon_sym_signed] = ACTIONS(2582), + [anon_sym_unsigned] = ACTIONS(2582), + [anon_sym_long] = ACTIONS(2582), + [anon_sym_short] = ACTIONS(2582), + [anon_sym_static] = ACTIONS(2582), + [anon_sym_ATautoreleasepool] = ACTIONS(2584), + [anon_sym_auto] = ACTIONS(2582), + [anon_sym_register] = ACTIONS(2582), + [anon_sym_inline] = ACTIONS(2582), + [anon_sym___inline] = ACTIONS(2582), + [anon_sym___inline__] = ACTIONS(2582), + [anon_sym___forceinline] = ACTIONS(2582), + [anon_sym_thread_local] = ACTIONS(2582), + [anon_sym___thread] = ACTIONS(2582), + [anon_sym_CG_EXTERN] = ACTIONS(2582), + [anon_sym_CG_INLINE] = ACTIONS(2582), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2582), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2582), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2582), + [anon_sym_IBOutlet] = ACTIONS(2582), + [anon_sym_IBInspectable] = ACTIONS(2582), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2582), + [anon_sym_NS_INLINE] = ACTIONS(2582), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2582), + [anon_sym_OBJC_EXPORT] = ACTIONS(2582), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2582), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2582), + [anon_sym_const] = ACTIONS(2582), + [anon_sym_constexpr] = ACTIONS(2582), + [anon_sym_volatile] = ACTIONS(2582), + [anon_sym_restrict] = ACTIONS(2582), + [anon_sym___restrict__] = ACTIONS(2582), + [anon_sym__Atomic] = ACTIONS(2582), + [anon_sym__Noreturn] = ACTIONS(2582), + [anon_sym__Nonnull] = ACTIONS(2582), + [anon_sym_nullable] = ACTIONS(2582), + [anon_sym__Complex] = ACTIONS(2582), + [anon_sym__Nullable] = ACTIONS(2582), + [anon_sym__Nullable_result] = ACTIONS(2582), + [anon_sym__Null_unspecified] = ACTIONS(2582), + [anon_sym___autoreleasing] = ACTIONS(2582), + [anon_sym___block] = ACTIONS(2582), + [anon_sym___bridge] = ACTIONS(2582), + [anon_sym___bridge_retained] = ACTIONS(2582), + [anon_sym___bridge_transfer] = ACTIONS(2582), + [anon_sym___complex] = ACTIONS(2582), + [anon_sym___const] = ACTIONS(2582), + [anon_sym___imag] = ACTIONS(2582), + [anon_sym___kindof] = ACTIONS(2582), + [anon_sym___nonnull] = ACTIONS(2582), + [anon_sym___nullable] = ACTIONS(2582), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2582), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2582), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2582), + [anon_sym___real] = ACTIONS(2582), + [anon_sym___strong] = ACTIONS(2582), + [anon_sym___unsafe_unretained] = ACTIONS(2582), + [anon_sym___unused] = ACTIONS(2582), + [anon_sym___weak] = ACTIONS(2582), + [anon_sym_alignas] = ACTIONS(2582), + [anon_sym__Alignas] = ACTIONS(2582), + [sym_primitive_type] = ACTIONS(2582), + [anon_sym_enum] = ACTIONS(2582), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2582), + [anon_sym_if] = ACTIONS(2582), + [anon_sym_switch] = ACTIONS(2582), + [anon_sym_case] = ACTIONS(2582), + [anon_sym_default] = ACTIONS(2582), + [anon_sym_while] = ACTIONS(2582), + [anon_sym_do] = ACTIONS(2582), + [anon_sym_for] = ACTIONS(2582), + [anon_sym_in] = ACTIONS(2582), + [anon_sym_return] = ACTIONS(2582), + [anon_sym_break] = ACTIONS(2582), + [anon_sym_continue] = ACTIONS(2582), + [anon_sym_goto] = ACTIONS(2582), + [anon_sym_DASH_DASH] = ACTIONS(2584), + [anon_sym_PLUS_PLUS] = ACTIONS(2584), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2582), + [anon_sym___alignof] = ACTIONS(2582), + [anon_sym__alignof] = ACTIONS(2582), + [anon_sym_alignof] = ACTIONS(2582), + [anon_sym__Alignof] = ACTIONS(2582), + [anon_sym_offsetof] = ACTIONS(2582), + [anon_sym__Generic] = ACTIONS(2582), + [anon_sym_asm] = ACTIONS(2582), + [anon_sym___asm__] = ACTIONS(2582), + [anon_sym___asm] = ACTIONS(2582), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2584), + [anon_sym_u_SQUOTE] = ACTIONS(2584), + [anon_sym_U_SQUOTE] = ACTIONS(2584), + [anon_sym_u8_SQUOTE] = ACTIONS(2584), + [anon_sym_SQUOTE] = ACTIONS(2584), + [anon_sym_AT] = ACTIONS(2582), + [anon_sym_DQUOTE] = ACTIONS(2584), + [anon_sym_L_DQUOTE] = ACTIONS(2584), + [anon_sym_u_DQUOTE] = ACTIONS(2584), + [anon_sym_U_DQUOTE] = ACTIONS(2584), + [anon_sym_u8_DQUOTE] = ACTIONS(2584), + [sym_true] = ACTIONS(2582), + [sym_false] = ACTIONS(2582), + [anon_sym_NULL] = ACTIONS(2582), + [anon_sym_nullptr] = ACTIONS(2582), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2582), + [anon_sym___typeof] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(2582), + [anon_sym_ATimport] = ACTIONS(2584), + [aux_sym_preproc_undef_token1] = ACTIONS(2582), + [anon_sym_POUND] = ACTIONS(2582), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2582), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2582), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2582), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2582), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2582), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2582), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2582), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2582), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2582), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2582), + [anon_sym_NS_AVAILABLE] = ACTIONS(2582), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2582), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2582), + [anon_sym_API_AVAILABLE] = ACTIONS(2582), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2582), + [anon_sym_API_DEPRECATED] = ACTIONS(2582), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2582), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2582), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2582), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2582), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2582), + [anon_sym___deprecated_msg] = ACTIONS(2582), + [anon_sym___deprecated_enum_msg] = ACTIONS(2582), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2582), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2582), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2582), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2582), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2582), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2582), + [anon_sym_ATprotocol] = ACTIONS(2584), + [anon_sym_ATinterface] = ACTIONS(2584), + [anon_sym_ATimplementation] = ACTIONS(2584), + [anon_sym_ATcompatibility_alias] = ACTIONS(2584), + [anon_sym_ATsynthesize] = ACTIONS(2584), + [anon_sym_ATdynamic] = ACTIONS(2584), + [anon_sym_ATtry] = ACTIONS(2584), + [anon_sym___try] = ACTIONS(2582), + [anon_sym_ATthrow] = ACTIONS(2584), + [anon_sym_ATselector] = ACTIONS(2584), + [anon_sym_ATavailable] = ACTIONS(2584), + [anon_sym___builtin_available] = ACTIONS(2582), + [anon_sym_va_arg] = ACTIONS(2582), + [anon_sym_ATencode] = ACTIONS(2584), + [anon_sym_ATsynchronized] = ACTIONS(2584), + [anon_sym_BOOL] = ACTIONS(2582), + [anon_sym_IMP] = ACTIONS(2582), + [anon_sym_SEL] = ACTIONS(2582), + [anon_sym_Class] = ACTIONS(2582), + [anon_sym_id] = ACTIONS(2582), + }, + [611] = { + [sym_identifier] = ACTIONS(2586), + [aux_sym_preproc_include_token1] = ACTIONS(2586), + [aux_sym_preproc_include_token2] = ACTIONS(2586), + [aux_sym_preproc_def_token1] = ACTIONS(2586), + [aux_sym_preproc_if_token1] = ACTIONS(2586), + [aux_sym_preproc_if_token2] = ACTIONS(2586), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2586), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2586), + [sym_preproc_directive] = ACTIONS(2586), + [anon_sym_LPAREN2] = ACTIONS(2588), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2588), + [anon_sym_DASH] = ACTIONS(2586), + [anon_sym_PLUS] = ACTIONS(2586), + [anon_sym_STAR] = ACTIONS(2588), + [anon_sym_CARET] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2588), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym___extension__] = ACTIONS(2586), + [anon_sym_typedef] = ACTIONS(2586), + [anon_sym_extern] = ACTIONS(2586), + [anon_sym___attribute__] = ACTIONS(2586), + [anon_sym___attribute] = ACTIONS(2586), + [anon_sym_noreturn] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(2588), + [anon_sym___declspec] = ACTIONS(2586), + [anon_sym___cdecl] = ACTIONS(2586), + [anon_sym___clrcall] = ACTIONS(2586), + [anon_sym___stdcall] = ACTIONS(2586), + [anon_sym___fastcall] = ACTIONS(2586), + [anon_sym___thiscall] = ACTIONS(2586), + [anon_sym___vectorcall] = ACTIONS(2586), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_signed] = ACTIONS(2586), + [anon_sym_unsigned] = ACTIONS(2586), + [anon_sym_long] = ACTIONS(2586), + [anon_sym_short] = ACTIONS(2586), + [anon_sym_static] = ACTIONS(2586), + [anon_sym_ATautoreleasepool] = ACTIONS(2588), + [anon_sym_auto] = ACTIONS(2586), + [anon_sym_register] = ACTIONS(2586), + [anon_sym_inline] = ACTIONS(2586), + [anon_sym___inline] = ACTIONS(2586), + [anon_sym___inline__] = ACTIONS(2586), + [anon_sym___forceinline] = ACTIONS(2586), + [anon_sym_thread_local] = ACTIONS(2586), + [anon_sym___thread] = ACTIONS(2586), + [anon_sym_CG_EXTERN] = ACTIONS(2586), + [anon_sym_CG_INLINE] = ACTIONS(2586), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2586), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2586), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2586), + [anon_sym_IBOutlet] = ACTIONS(2586), + [anon_sym_IBInspectable] = ACTIONS(2586), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2586), + [anon_sym_NS_INLINE] = ACTIONS(2586), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2586), + [anon_sym_OBJC_EXPORT] = ACTIONS(2586), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2586), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2586), + [anon_sym_const] = ACTIONS(2586), + [anon_sym_constexpr] = ACTIONS(2586), + [anon_sym_volatile] = ACTIONS(2586), + [anon_sym_restrict] = ACTIONS(2586), + [anon_sym___restrict__] = ACTIONS(2586), + [anon_sym__Atomic] = ACTIONS(2586), + [anon_sym__Noreturn] = ACTIONS(2586), + [anon_sym__Nonnull] = ACTIONS(2586), + [anon_sym_nullable] = ACTIONS(2586), + [anon_sym__Complex] = ACTIONS(2586), + [anon_sym__Nullable] = ACTIONS(2586), + [anon_sym__Nullable_result] = ACTIONS(2586), + [anon_sym__Null_unspecified] = ACTIONS(2586), + [anon_sym___autoreleasing] = ACTIONS(2586), + [anon_sym___block] = ACTIONS(2586), + [anon_sym___bridge] = ACTIONS(2586), + [anon_sym___bridge_retained] = ACTIONS(2586), + [anon_sym___bridge_transfer] = ACTIONS(2586), + [anon_sym___complex] = ACTIONS(2586), + [anon_sym___const] = ACTIONS(2586), + [anon_sym___imag] = ACTIONS(2586), + [anon_sym___kindof] = ACTIONS(2586), + [anon_sym___nonnull] = ACTIONS(2586), + [anon_sym___nullable] = ACTIONS(2586), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2586), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2586), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2586), + [anon_sym___real] = ACTIONS(2586), + [anon_sym___strong] = ACTIONS(2586), + [anon_sym___unsafe_unretained] = ACTIONS(2586), + [anon_sym___unused] = ACTIONS(2586), + [anon_sym___weak] = ACTIONS(2586), + [anon_sym_alignas] = ACTIONS(2586), + [anon_sym__Alignas] = ACTIONS(2586), + [sym_primitive_type] = ACTIONS(2586), + [anon_sym_enum] = ACTIONS(2586), + [anon_sym_struct] = ACTIONS(2586), + [anon_sym_union] = ACTIONS(2586), + [anon_sym_if] = ACTIONS(2586), + [anon_sym_switch] = ACTIONS(2586), + [anon_sym_case] = ACTIONS(2586), + [anon_sym_default] = ACTIONS(2586), + [anon_sym_while] = ACTIONS(2586), + [anon_sym_do] = ACTIONS(2586), + [anon_sym_for] = ACTIONS(2586), + [anon_sym_in] = ACTIONS(2586), + [anon_sym_return] = ACTIONS(2586), + [anon_sym_break] = ACTIONS(2586), + [anon_sym_continue] = ACTIONS(2586), + [anon_sym_goto] = ACTIONS(2586), + [anon_sym_DASH_DASH] = ACTIONS(2588), + [anon_sym_PLUS_PLUS] = ACTIONS(2588), + [anon_sym_sizeof] = ACTIONS(2586), + [anon_sym___alignof__] = ACTIONS(2586), + [anon_sym___alignof] = ACTIONS(2586), + [anon_sym__alignof] = ACTIONS(2586), + [anon_sym_alignof] = ACTIONS(2586), + [anon_sym__Alignof] = ACTIONS(2586), + [anon_sym_offsetof] = ACTIONS(2586), + [anon_sym__Generic] = ACTIONS(2586), + [anon_sym_asm] = ACTIONS(2586), + [anon_sym___asm__] = ACTIONS(2586), + [anon_sym___asm] = ACTIONS(2586), + [sym_number_literal] = ACTIONS(2588), + [anon_sym_L_SQUOTE] = ACTIONS(2588), + [anon_sym_u_SQUOTE] = ACTIONS(2588), + [anon_sym_U_SQUOTE] = ACTIONS(2588), + [anon_sym_u8_SQUOTE] = ACTIONS(2588), + [anon_sym_SQUOTE] = ACTIONS(2588), + [anon_sym_AT] = ACTIONS(2586), + [anon_sym_DQUOTE] = ACTIONS(2588), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2586), + [sym_false] = ACTIONS(2586), + [anon_sym_NULL] = ACTIONS(2586), + [anon_sym_nullptr] = ACTIONS(2586), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2586), + [anon_sym___typeof] = ACTIONS(2586), + [anon_sym_typeof] = ACTIONS(2586), + [anon_sym_ATimport] = ACTIONS(2588), + [aux_sym_preproc_undef_token1] = ACTIONS(2586), + [anon_sym_POUND] = ACTIONS(2586), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2586), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2586), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2586), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2586), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2586), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2586), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2586), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2586), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2586), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2586), + [anon_sym_NS_AVAILABLE] = ACTIONS(2586), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2586), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2586), + [anon_sym_API_AVAILABLE] = ACTIONS(2586), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2586), + [anon_sym_API_DEPRECATED] = ACTIONS(2586), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2586), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2586), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2586), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2586), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2586), + [anon_sym___deprecated_msg] = ACTIONS(2586), + [anon_sym___deprecated_enum_msg] = ACTIONS(2586), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2586), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2586), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2586), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2586), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2586), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2586), + [anon_sym_ATprotocol] = ACTIONS(2588), + [anon_sym_ATinterface] = ACTIONS(2588), + [anon_sym_ATimplementation] = ACTIONS(2588), + [anon_sym_ATcompatibility_alias] = ACTIONS(2588), + [anon_sym_ATsynthesize] = ACTIONS(2588), + [anon_sym_ATdynamic] = ACTIONS(2588), + [anon_sym_ATtry] = ACTIONS(2588), + [anon_sym___try] = ACTIONS(2586), + [anon_sym_ATthrow] = ACTIONS(2588), + [anon_sym_ATselector] = ACTIONS(2588), + [anon_sym_ATavailable] = ACTIONS(2588), + [anon_sym___builtin_available] = ACTIONS(2586), + [anon_sym_va_arg] = ACTIONS(2586), + [anon_sym_ATencode] = ACTIONS(2588), + [anon_sym_ATsynchronized] = ACTIONS(2588), + [anon_sym_BOOL] = ACTIONS(2586), + [anon_sym_IMP] = ACTIONS(2586), + [anon_sym_SEL] = ACTIONS(2586), + [anon_sym_Class] = ACTIONS(2586), + [anon_sym_id] = ACTIONS(2586), + }, + [612] = { + [sym_identifier] = ACTIONS(2590), + [aux_sym_preproc_include_token1] = ACTIONS(2590), + [aux_sym_preproc_include_token2] = ACTIONS(2590), + [aux_sym_preproc_def_token1] = ACTIONS(2590), + [aux_sym_preproc_if_token1] = ACTIONS(2590), + [aux_sym_preproc_if_token2] = ACTIONS(2590), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2590), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2590), + [sym_preproc_directive] = ACTIONS(2590), + [anon_sym_LPAREN2] = ACTIONS(2592), + [anon_sym_BANG] = ACTIONS(2592), + [anon_sym_TILDE] = ACTIONS(2592), + [anon_sym_DASH] = ACTIONS(2590), + [anon_sym_PLUS] = ACTIONS(2590), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_CARET] = ACTIONS(2592), + [anon_sym_AMP] = ACTIONS(2592), + [anon_sym_SEMI] = ACTIONS(2592), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_typedef] = ACTIONS(2590), + [anon_sym_extern] = ACTIONS(2590), + [anon_sym___attribute__] = ACTIONS(2590), + [anon_sym___attribute] = ACTIONS(2590), + [anon_sym_noreturn] = ACTIONS(2590), + [anon_sym_LBRACK] = ACTIONS(2592), + [anon_sym___declspec] = ACTIONS(2590), + [anon_sym___cdecl] = ACTIONS(2590), + [anon_sym___clrcall] = ACTIONS(2590), + [anon_sym___stdcall] = ACTIONS(2590), + [anon_sym___fastcall] = ACTIONS(2590), + [anon_sym___thiscall] = ACTIONS(2590), + [anon_sym___vectorcall] = ACTIONS(2590), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_signed] = ACTIONS(2590), + [anon_sym_unsigned] = ACTIONS(2590), + [anon_sym_long] = ACTIONS(2590), + [anon_sym_short] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(2590), + [anon_sym_ATautoreleasepool] = ACTIONS(2592), + [anon_sym_auto] = ACTIONS(2590), + [anon_sym_register] = ACTIONS(2590), + [anon_sym_inline] = ACTIONS(2590), + [anon_sym___inline] = ACTIONS(2590), + [anon_sym___inline__] = ACTIONS(2590), + [anon_sym___forceinline] = ACTIONS(2590), + [anon_sym_thread_local] = ACTIONS(2590), + [anon_sym___thread] = ACTIONS(2590), + [anon_sym_CG_EXTERN] = ACTIONS(2590), + [anon_sym_CG_INLINE] = ACTIONS(2590), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2590), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2590), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2590), + [anon_sym_IBOutlet] = ACTIONS(2590), + [anon_sym_IBInspectable] = ACTIONS(2590), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2590), + [anon_sym_NS_INLINE] = ACTIONS(2590), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2590), + [anon_sym_OBJC_EXPORT] = ACTIONS(2590), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2590), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2590), + [anon_sym_const] = ACTIONS(2590), + [anon_sym_constexpr] = ACTIONS(2590), + [anon_sym_volatile] = ACTIONS(2590), + [anon_sym_restrict] = ACTIONS(2590), + [anon_sym___restrict__] = ACTIONS(2590), + [anon_sym__Atomic] = ACTIONS(2590), + [anon_sym__Noreturn] = ACTIONS(2590), + [anon_sym__Nonnull] = ACTIONS(2590), + [anon_sym_nullable] = ACTIONS(2590), + [anon_sym__Complex] = ACTIONS(2590), + [anon_sym__Nullable] = ACTIONS(2590), + [anon_sym__Nullable_result] = ACTIONS(2590), + [anon_sym__Null_unspecified] = ACTIONS(2590), + [anon_sym___autoreleasing] = ACTIONS(2590), + [anon_sym___block] = ACTIONS(2590), + [anon_sym___bridge] = ACTIONS(2590), + [anon_sym___bridge_retained] = ACTIONS(2590), + [anon_sym___bridge_transfer] = ACTIONS(2590), + [anon_sym___complex] = ACTIONS(2590), + [anon_sym___const] = ACTIONS(2590), + [anon_sym___imag] = ACTIONS(2590), + [anon_sym___kindof] = ACTIONS(2590), + [anon_sym___nonnull] = ACTIONS(2590), + [anon_sym___nullable] = ACTIONS(2590), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2590), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2590), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2590), + [anon_sym___real] = ACTIONS(2590), + [anon_sym___strong] = ACTIONS(2590), + [anon_sym___unsafe_unretained] = ACTIONS(2590), + [anon_sym___unused] = ACTIONS(2590), + [anon_sym___weak] = ACTIONS(2590), + [anon_sym_alignas] = ACTIONS(2590), + [anon_sym__Alignas] = ACTIONS(2590), + [sym_primitive_type] = ACTIONS(2590), + [anon_sym_enum] = ACTIONS(2590), + [anon_sym_struct] = ACTIONS(2590), + [anon_sym_union] = ACTIONS(2590), + [anon_sym_if] = ACTIONS(2590), + [anon_sym_switch] = ACTIONS(2590), + [anon_sym_case] = ACTIONS(2590), + [anon_sym_default] = ACTIONS(2590), + [anon_sym_while] = ACTIONS(2590), + [anon_sym_do] = ACTIONS(2590), + [anon_sym_for] = ACTIONS(2590), + [anon_sym_in] = ACTIONS(2590), + [anon_sym_return] = ACTIONS(2590), + [anon_sym_break] = ACTIONS(2590), + [anon_sym_continue] = ACTIONS(2590), + [anon_sym_goto] = ACTIONS(2590), + [anon_sym_DASH_DASH] = ACTIONS(2592), + [anon_sym_PLUS_PLUS] = ACTIONS(2592), + [anon_sym_sizeof] = ACTIONS(2590), + [anon_sym___alignof__] = ACTIONS(2590), + [anon_sym___alignof] = ACTIONS(2590), + [anon_sym__alignof] = ACTIONS(2590), + [anon_sym_alignof] = ACTIONS(2590), + [anon_sym__Alignof] = ACTIONS(2590), + [anon_sym_offsetof] = ACTIONS(2590), + [anon_sym__Generic] = ACTIONS(2590), + [anon_sym_asm] = ACTIONS(2590), + [anon_sym___asm__] = ACTIONS(2590), + [anon_sym___asm] = ACTIONS(2590), + [sym_number_literal] = ACTIONS(2592), + [anon_sym_L_SQUOTE] = ACTIONS(2592), + [anon_sym_u_SQUOTE] = ACTIONS(2592), + [anon_sym_U_SQUOTE] = ACTIONS(2592), + [anon_sym_u8_SQUOTE] = ACTIONS(2592), + [anon_sym_SQUOTE] = ACTIONS(2592), + [anon_sym_AT] = ACTIONS(2590), + [anon_sym_DQUOTE] = ACTIONS(2592), + [anon_sym_L_DQUOTE] = ACTIONS(2592), + [anon_sym_u_DQUOTE] = ACTIONS(2592), + [anon_sym_U_DQUOTE] = ACTIONS(2592), + [anon_sym_u8_DQUOTE] = ACTIONS(2592), + [sym_true] = ACTIONS(2590), + [sym_false] = ACTIONS(2590), + [anon_sym_NULL] = ACTIONS(2590), + [anon_sym_nullptr] = ACTIONS(2590), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2590), + [anon_sym___typeof] = ACTIONS(2590), + [anon_sym_typeof] = ACTIONS(2590), + [anon_sym_ATimport] = ACTIONS(2592), + [aux_sym_preproc_undef_token1] = ACTIONS(2590), + [anon_sym_POUND] = ACTIONS(2590), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2590), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2590), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2590), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2590), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2590), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2590), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2590), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2590), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2590), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2590), + [anon_sym_NS_AVAILABLE] = ACTIONS(2590), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2590), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2590), + [anon_sym_API_AVAILABLE] = ACTIONS(2590), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2590), + [anon_sym_API_DEPRECATED] = ACTIONS(2590), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2590), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2590), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2590), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2590), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2590), + [anon_sym___deprecated_msg] = ACTIONS(2590), + [anon_sym___deprecated_enum_msg] = ACTIONS(2590), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2590), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2590), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2590), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2590), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2590), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2590), + [anon_sym_ATprotocol] = ACTIONS(2592), + [anon_sym_ATinterface] = ACTIONS(2592), + [anon_sym_ATimplementation] = ACTIONS(2592), + [anon_sym_ATcompatibility_alias] = ACTIONS(2592), + [anon_sym_ATsynthesize] = ACTIONS(2592), + [anon_sym_ATdynamic] = ACTIONS(2592), + [anon_sym_ATtry] = ACTIONS(2592), + [anon_sym___try] = ACTIONS(2590), + [anon_sym_ATthrow] = ACTIONS(2592), + [anon_sym_ATselector] = ACTIONS(2592), + [anon_sym_ATavailable] = ACTIONS(2592), + [anon_sym___builtin_available] = ACTIONS(2590), + [anon_sym_va_arg] = ACTIONS(2590), + [anon_sym_ATencode] = ACTIONS(2592), + [anon_sym_ATsynchronized] = ACTIONS(2592), + [anon_sym_BOOL] = ACTIONS(2590), + [anon_sym_IMP] = ACTIONS(2590), + [anon_sym_SEL] = ACTIONS(2590), + [anon_sym_Class] = ACTIONS(2590), + [anon_sym_id] = ACTIONS(2590), + }, + [613] = { + [sym_identifier] = ACTIONS(2594), + [aux_sym_preproc_include_token1] = ACTIONS(2594), + [aux_sym_preproc_include_token2] = ACTIONS(2594), + [aux_sym_preproc_def_token1] = ACTIONS(2594), + [aux_sym_preproc_if_token1] = ACTIONS(2594), + [aux_sym_preproc_if_token2] = ACTIONS(2594), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2594), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2594), + [sym_preproc_directive] = ACTIONS(2594), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_BANG] = ACTIONS(2596), + [anon_sym_TILDE] = ACTIONS(2596), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_CARET] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2596), + [anon_sym_SEMI] = ACTIONS(2596), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_typedef] = ACTIONS(2594), + [anon_sym_extern] = ACTIONS(2594), + [anon_sym___attribute__] = ACTIONS(2594), + [anon_sym___attribute] = ACTIONS(2594), + [anon_sym_noreturn] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2596), + [anon_sym___declspec] = ACTIONS(2594), + [anon_sym___cdecl] = ACTIONS(2594), + [anon_sym___clrcall] = ACTIONS(2594), + [anon_sym___stdcall] = ACTIONS(2594), + [anon_sym___fastcall] = ACTIONS(2594), + [anon_sym___thiscall] = ACTIONS(2594), + [anon_sym___vectorcall] = ACTIONS(2594), + [anon_sym_LBRACE] = ACTIONS(2596), + [anon_sym_signed] = ACTIONS(2594), + [anon_sym_unsigned] = ACTIONS(2594), + [anon_sym_long] = ACTIONS(2594), + [anon_sym_short] = ACTIONS(2594), + [anon_sym_static] = ACTIONS(2594), + [anon_sym_ATautoreleasepool] = ACTIONS(2596), + [anon_sym_auto] = ACTIONS(2594), + [anon_sym_register] = ACTIONS(2594), + [anon_sym_inline] = ACTIONS(2594), + [anon_sym___inline] = ACTIONS(2594), + [anon_sym___inline__] = ACTIONS(2594), + [anon_sym___forceinline] = ACTIONS(2594), + [anon_sym_thread_local] = ACTIONS(2594), + [anon_sym___thread] = ACTIONS(2594), + [anon_sym_CG_EXTERN] = ACTIONS(2594), + [anon_sym_CG_INLINE] = ACTIONS(2594), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2594), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2594), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2594), + [anon_sym_IBOutlet] = ACTIONS(2594), + [anon_sym_IBInspectable] = ACTIONS(2594), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2594), + [anon_sym_NS_INLINE] = ACTIONS(2594), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2594), + [anon_sym_OBJC_EXPORT] = ACTIONS(2594), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2594), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2594), + [anon_sym_const] = ACTIONS(2594), + [anon_sym_constexpr] = ACTIONS(2594), + [anon_sym_volatile] = ACTIONS(2594), + [anon_sym_restrict] = ACTIONS(2594), + [anon_sym___restrict__] = ACTIONS(2594), + [anon_sym__Atomic] = ACTIONS(2594), + [anon_sym__Noreturn] = ACTIONS(2594), + [anon_sym__Nonnull] = ACTIONS(2594), + [anon_sym_nullable] = ACTIONS(2594), + [anon_sym__Complex] = ACTIONS(2594), + [anon_sym__Nullable] = ACTIONS(2594), + [anon_sym__Nullable_result] = ACTIONS(2594), + [anon_sym__Null_unspecified] = ACTIONS(2594), + [anon_sym___autoreleasing] = ACTIONS(2594), + [anon_sym___block] = ACTIONS(2594), + [anon_sym___bridge] = ACTIONS(2594), + [anon_sym___bridge_retained] = ACTIONS(2594), + [anon_sym___bridge_transfer] = ACTIONS(2594), + [anon_sym___complex] = ACTIONS(2594), + [anon_sym___const] = ACTIONS(2594), + [anon_sym___imag] = ACTIONS(2594), + [anon_sym___kindof] = ACTIONS(2594), + [anon_sym___nonnull] = ACTIONS(2594), + [anon_sym___nullable] = ACTIONS(2594), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2594), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2594), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2594), + [anon_sym___real] = ACTIONS(2594), + [anon_sym___strong] = ACTIONS(2594), + [anon_sym___unsafe_unretained] = ACTIONS(2594), + [anon_sym___unused] = ACTIONS(2594), + [anon_sym___weak] = ACTIONS(2594), + [anon_sym_alignas] = ACTIONS(2594), + [anon_sym__Alignas] = ACTIONS(2594), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_enum] = ACTIONS(2594), + [anon_sym_struct] = ACTIONS(2594), + [anon_sym_union] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_switch] = ACTIONS(2594), + [anon_sym_case] = ACTIONS(2594), + [anon_sym_default] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_in] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_break] = ACTIONS(2594), + [anon_sym_continue] = ACTIONS(2594), + [anon_sym_goto] = ACTIONS(2594), + [anon_sym_DASH_DASH] = ACTIONS(2596), + [anon_sym_PLUS_PLUS] = ACTIONS(2596), + [anon_sym_sizeof] = ACTIONS(2594), + [anon_sym___alignof__] = ACTIONS(2594), + [anon_sym___alignof] = ACTIONS(2594), + [anon_sym__alignof] = ACTIONS(2594), + [anon_sym_alignof] = ACTIONS(2594), + [anon_sym__Alignof] = ACTIONS(2594), + [anon_sym_offsetof] = ACTIONS(2594), + [anon_sym__Generic] = ACTIONS(2594), + [anon_sym_asm] = ACTIONS(2594), + [anon_sym___asm__] = ACTIONS(2594), + [anon_sym___asm] = ACTIONS(2594), + [sym_number_literal] = ACTIONS(2596), + [anon_sym_L_SQUOTE] = ACTIONS(2596), + [anon_sym_u_SQUOTE] = ACTIONS(2596), + [anon_sym_U_SQUOTE] = ACTIONS(2596), + [anon_sym_u8_SQUOTE] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_AT] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2596), + [anon_sym_L_DQUOTE] = ACTIONS(2596), + [anon_sym_u_DQUOTE] = ACTIONS(2596), + [anon_sym_U_DQUOTE] = ACTIONS(2596), + [anon_sym_u8_DQUOTE] = ACTIONS(2596), + [sym_true] = ACTIONS(2594), + [sym_false] = ACTIONS(2594), + [anon_sym_NULL] = ACTIONS(2594), + [anon_sym_nullptr] = ACTIONS(2594), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2594), + [anon_sym___typeof] = ACTIONS(2594), + [anon_sym_typeof] = ACTIONS(2594), + [anon_sym_ATimport] = ACTIONS(2596), + [aux_sym_preproc_undef_token1] = ACTIONS(2594), + [anon_sym_POUND] = ACTIONS(2594), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2594), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2594), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2594), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2594), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2594), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2594), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2594), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2594), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2594), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2594), + [anon_sym_NS_AVAILABLE] = ACTIONS(2594), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2594), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2594), + [anon_sym_API_AVAILABLE] = ACTIONS(2594), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2594), + [anon_sym_API_DEPRECATED] = ACTIONS(2594), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2594), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2594), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2594), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2594), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2594), + [anon_sym___deprecated_msg] = ACTIONS(2594), + [anon_sym___deprecated_enum_msg] = ACTIONS(2594), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2594), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2594), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2594), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2594), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2594), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2594), + [anon_sym_ATprotocol] = ACTIONS(2596), + [anon_sym_ATinterface] = ACTIONS(2596), + [anon_sym_ATimplementation] = ACTIONS(2596), + [anon_sym_ATcompatibility_alias] = ACTIONS(2596), + [anon_sym_ATsynthesize] = ACTIONS(2596), + [anon_sym_ATdynamic] = ACTIONS(2596), + [anon_sym_ATtry] = ACTIONS(2596), + [anon_sym___try] = ACTIONS(2594), + [anon_sym_ATthrow] = ACTIONS(2596), + [anon_sym_ATselector] = ACTIONS(2596), + [anon_sym_ATavailable] = ACTIONS(2596), + [anon_sym___builtin_available] = ACTIONS(2594), + [anon_sym_va_arg] = ACTIONS(2594), + [anon_sym_ATencode] = ACTIONS(2596), + [anon_sym_ATsynchronized] = ACTIONS(2596), + [anon_sym_BOOL] = ACTIONS(2594), + [anon_sym_IMP] = ACTIONS(2594), + [anon_sym_SEL] = ACTIONS(2594), + [anon_sym_Class] = ACTIONS(2594), + [anon_sym_id] = ACTIONS(2594), + }, + [614] = { + [sym_identifier] = ACTIONS(2598), + [aux_sym_preproc_include_token1] = ACTIONS(2598), + [aux_sym_preproc_include_token2] = ACTIONS(2598), + [aux_sym_preproc_def_token1] = ACTIONS(2598), + [aux_sym_preproc_if_token1] = ACTIONS(2598), + [aux_sym_preproc_if_token2] = ACTIONS(2598), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2598), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2598), + [sym_preproc_directive] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(2600), + [anon_sym_BANG] = ACTIONS(2600), + [anon_sym_TILDE] = ACTIONS(2600), + [anon_sym_DASH] = ACTIONS(2598), + [anon_sym_PLUS] = ACTIONS(2598), + [anon_sym_STAR] = ACTIONS(2600), + [anon_sym_CARET] = ACTIONS(2600), + [anon_sym_AMP] = ACTIONS(2600), + [anon_sym_SEMI] = ACTIONS(2600), + [anon_sym___extension__] = ACTIONS(2598), + [anon_sym_typedef] = ACTIONS(2598), + [anon_sym_extern] = ACTIONS(2598), + [anon_sym___attribute__] = ACTIONS(2598), + [anon_sym___attribute] = ACTIONS(2598), + [anon_sym_noreturn] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(2600), + [anon_sym___declspec] = ACTIONS(2598), + [anon_sym___cdecl] = ACTIONS(2598), + [anon_sym___clrcall] = ACTIONS(2598), + [anon_sym___stdcall] = ACTIONS(2598), + [anon_sym___fastcall] = ACTIONS(2598), + [anon_sym___thiscall] = ACTIONS(2598), + [anon_sym___vectorcall] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_signed] = ACTIONS(2598), + [anon_sym_unsigned] = ACTIONS(2598), + [anon_sym_long] = ACTIONS(2598), + [anon_sym_short] = ACTIONS(2598), + [anon_sym_static] = ACTIONS(2598), + [anon_sym_ATautoreleasepool] = ACTIONS(2600), + [anon_sym_auto] = ACTIONS(2598), + [anon_sym_register] = ACTIONS(2598), + [anon_sym_inline] = ACTIONS(2598), + [anon_sym___inline] = ACTIONS(2598), + [anon_sym___inline__] = ACTIONS(2598), + [anon_sym___forceinline] = ACTIONS(2598), + [anon_sym_thread_local] = ACTIONS(2598), + [anon_sym___thread] = ACTIONS(2598), + [anon_sym_CG_EXTERN] = ACTIONS(2598), + [anon_sym_CG_INLINE] = ACTIONS(2598), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2598), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2598), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2598), + [anon_sym_IBOutlet] = ACTIONS(2598), + [anon_sym_IBInspectable] = ACTIONS(2598), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2598), + [anon_sym_NS_INLINE] = ACTIONS(2598), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2598), + [anon_sym_OBJC_EXPORT] = ACTIONS(2598), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2598), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2598), + [anon_sym_const] = ACTIONS(2598), + [anon_sym_constexpr] = ACTIONS(2598), + [anon_sym_volatile] = ACTIONS(2598), + [anon_sym_restrict] = ACTIONS(2598), + [anon_sym___restrict__] = ACTIONS(2598), + [anon_sym__Atomic] = ACTIONS(2598), + [anon_sym__Noreturn] = ACTIONS(2598), + [anon_sym__Nonnull] = ACTIONS(2598), + [anon_sym_nullable] = ACTIONS(2598), + [anon_sym__Complex] = ACTIONS(2598), + [anon_sym__Nullable] = ACTIONS(2598), + [anon_sym__Nullable_result] = ACTIONS(2598), + [anon_sym__Null_unspecified] = ACTIONS(2598), + [anon_sym___autoreleasing] = ACTIONS(2598), + [anon_sym___block] = ACTIONS(2598), + [anon_sym___bridge] = ACTIONS(2598), + [anon_sym___bridge_retained] = ACTIONS(2598), + [anon_sym___bridge_transfer] = ACTIONS(2598), + [anon_sym___complex] = ACTIONS(2598), + [anon_sym___const] = ACTIONS(2598), + [anon_sym___imag] = ACTIONS(2598), + [anon_sym___kindof] = ACTIONS(2598), + [anon_sym___nonnull] = ACTIONS(2598), + [anon_sym___nullable] = ACTIONS(2598), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2598), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2598), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2598), + [anon_sym___real] = ACTIONS(2598), + [anon_sym___strong] = ACTIONS(2598), + [anon_sym___unsafe_unretained] = ACTIONS(2598), + [anon_sym___unused] = ACTIONS(2598), + [anon_sym___weak] = ACTIONS(2598), + [anon_sym_alignas] = ACTIONS(2598), + [anon_sym__Alignas] = ACTIONS(2598), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_enum] = ACTIONS(2598), + [anon_sym_struct] = ACTIONS(2598), + [anon_sym_union] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2598), + [anon_sym_switch] = ACTIONS(2598), + [anon_sym_case] = ACTIONS(2598), + [anon_sym_default] = ACTIONS(2598), + [anon_sym_while] = ACTIONS(2598), + [anon_sym_do] = ACTIONS(2598), + [anon_sym_for] = ACTIONS(2598), + [anon_sym_in] = ACTIONS(2598), + [anon_sym_return] = ACTIONS(2598), + [anon_sym_break] = ACTIONS(2598), + [anon_sym_continue] = ACTIONS(2598), + [anon_sym_goto] = ACTIONS(2598), + [anon_sym_DASH_DASH] = ACTIONS(2600), + [anon_sym_PLUS_PLUS] = ACTIONS(2600), + [anon_sym_sizeof] = ACTIONS(2598), + [anon_sym___alignof__] = ACTIONS(2598), + [anon_sym___alignof] = ACTIONS(2598), + [anon_sym__alignof] = ACTIONS(2598), + [anon_sym_alignof] = ACTIONS(2598), + [anon_sym__Alignof] = ACTIONS(2598), + [anon_sym_offsetof] = ACTIONS(2598), + [anon_sym__Generic] = ACTIONS(2598), + [anon_sym_asm] = ACTIONS(2598), + [anon_sym___asm__] = ACTIONS(2598), + [anon_sym___asm] = ACTIONS(2598), + [sym_number_literal] = ACTIONS(2600), + [anon_sym_L_SQUOTE] = ACTIONS(2600), + [anon_sym_u_SQUOTE] = ACTIONS(2600), + [anon_sym_U_SQUOTE] = ACTIONS(2600), + [anon_sym_u8_SQUOTE] = ACTIONS(2600), + [anon_sym_SQUOTE] = ACTIONS(2600), + [anon_sym_AT] = ACTIONS(2598), + [anon_sym_DQUOTE] = ACTIONS(2600), + [anon_sym_L_DQUOTE] = ACTIONS(2600), + [anon_sym_u_DQUOTE] = ACTIONS(2600), + [anon_sym_U_DQUOTE] = ACTIONS(2600), + [anon_sym_u8_DQUOTE] = ACTIONS(2600), + [sym_true] = ACTIONS(2598), + [sym_false] = ACTIONS(2598), + [anon_sym_NULL] = ACTIONS(2598), + [anon_sym_nullptr] = ACTIONS(2598), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2598), + [anon_sym___typeof] = ACTIONS(2598), + [anon_sym_typeof] = ACTIONS(2598), + [anon_sym_ATimport] = ACTIONS(2600), + [aux_sym_preproc_undef_token1] = ACTIONS(2598), + [anon_sym_POUND] = ACTIONS(2598), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2598), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2598), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2598), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2598), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2598), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2598), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2598), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2598), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2598), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2598), + [anon_sym_NS_AVAILABLE] = ACTIONS(2598), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2598), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2598), + [anon_sym_API_AVAILABLE] = ACTIONS(2598), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2598), + [anon_sym_API_DEPRECATED] = ACTIONS(2598), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2598), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2598), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2598), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2598), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2598), + [anon_sym___deprecated_msg] = ACTIONS(2598), + [anon_sym___deprecated_enum_msg] = ACTIONS(2598), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2598), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2598), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2598), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2598), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2598), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2598), + [anon_sym_ATprotocol] = ACTIONS(2600), + [anon_sym_ATinterface] = ACTIONS(2600), + [anon_sym_ATimplementation] = ACTIONS(2600), + [anon_sym_ATcompatibility_alias] = ACTIONS(2600), + [anon_sym_ATsynthesize] = ACTIONS(2600), + [anon_sym_ATdynamic] = ACTIONS(2600), + [anon_sym_ATtry] = ACTIONS(2600), + [anon_sym___try] = ACTIONS(2598), + [anon_sym_ATthrow] = ACTIONS(2600), + [anon_sym_ATselector] = ACTIONS(2600), + [anon_sym_ATavailable] = ACTIONS(2600), + [anon_sym___builtin_available] = ACTIONS(2598), + [anon_sym_va_arg] = ACTIONS(2598), + [anon_sym_ATencode] = ACTIONS(2600), + [anon_sym_ATsynchronized] = ACTIONS(2600), + [anon_sym_BOOL] = ACTIONS(2598), + [anon_sym_IMP] = ACTIONS(2598), + [anon_sym_SEL] = ACTIONS(2598), + [anon_sym_Class] = ACTIONS(2598), + [anon_sym_id] = ACTIONS(2598), + }, + [615] = { + [sym_identifier] = ACTIONS(2620), + [aux_sym_preproc_include_token1] = ACTIONS(2620), + [aux_sym_preproc_include_token2] = ACTIONS(2620), + [aux_sym_preproc_def_token1] = ACTIONS(2620), + [aux_sym_preproc_if_token1] = ACTIONS(2620), + [aux_sym_preproc_if_token2] = ACTIONS(2620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2620), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2620), + [sym_preproc_directive] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(2622), + [anon_sym_BANG] = ACTIONS(2622), + [anon_sym_TILDE] = ACTIONS(2622), + [anon_sym_DASH] = ACTIONS(2620), + [anon_sym_PLUS] = ACTIONS(2620), + [anon_sym_STAR] = ACTIONS(2622), + [anon_sym_CARET] = ACTIONS(2622), + [anon_sym_AMP] = ACTIONS(2622), + [anon_sym_SEMI] = ACTIONS(2622), + [anon_sym___extension__] = ACTIONS(2620), + [anon_sym_typedef] = ACTIONS(2620), + [anon_sym_extern] = ACTIONS(2620), + [anon_sym___attribute__] = ACTIONS(2620), + [anon_sym___attribute] = ACTIONS(2620), + [anon_sym_noreturn] = ACTIONS(2620), + [anon_sym_LBRACK] = ACTIONS(2622), + [anon_sym___declspec] = ACTIONS(2620), + [anon_sym___cdecl] = ACTIONS(2620), + [anon_sym___clrcall] = ACTIONS(2620), + [anon_sym___stdcall] = ACTIONS(2620), + [anon_sym___fastcall] = ACTIONS(2620), + [anon_sym___thiscall] = ACTIONS(2620), + [anon_sym___vectorcall] = ACTIONS(2620), + [anon_sym_LBRACE] = ACTIONS(2622), + [anon_sym_signed] = ACTIONS(2620), + [anon_sym_unsigned] = ACTIONS(2620), + [anon_sym_long] = ACTIONS(2620), + [anon_sym_short] = ACTIONS(2620), + [anon_sym_static] = ACTIONS(2620), + [anon_sym_ATautoreleasepool] = ACTIONS(2622), + [anon_sym_auto] = ACTIONS(2620), + [anon_sym_register] = ACTIONS(2620), + [anon_sym_inline] = ACTIONS(2620), + [anon_sym___inline] = ACTIONS(2620), + [anon_sym___inline__] = ACTIONS(2620), + [anon_sym___forceinline] = ACTIONS(2620), + [anon_sym_thread_local] = ACTIONS(2620), + [anon_sym___thread] = ACTIONS(2620), + [anon_sym_CG_EXTERN] = ACTIONS(2620), + [anon_sym_CG_INLINE] = ACTIONS(2620), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2620), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2620), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2620), + [anon_sym_IBOutlet] = ACTIONS(2620), + [anon_sym_IBInspectable] = ACTIONS(2620), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2620), + [anon_sym_NS_INLINE] = ACTIONS(2620), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2620), + [anon_sym_OBJC_EXPORT] = ACTIONS(2620), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2620), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2620), + [anon_sym_const] = ACTIONS(2620), + [anon_sym_constexpr] = ACTIONS(2620), + [anon_sym_volatile] = ACTIONS(2620), + [anon_sym_restrict] = ACTIONS(2620), + [anon_sym___restrict__] = ACTIONS(2620), + [anon_sym__Atomic] = ACTIONS(2620), + [anon_sym__Noreturn] = ACTIONS(2620), + [anon_sym__Nonnull] = ACTIONS(2620), + [anon_sym_nullable] = ACTIONS(2620), + [anon_sym__Complex] = ACTIONS(2620), + [anon_sym__Nullable] = ACTIONS(2620), + [anon_sym__Nullable_result] = ACTIONS(2620), + [anon_sym__Null_unspecified] = ACTIONS(2620), + [anon_sym___autoreleasing] = ACTIONS(2620), + [anon_sym___block] = ACTIONS(2620), + [anon_sym___bridge] = ACTIONS(2620), + [anon_sym___bridge_retained] = ACTIONS(2620), + [anon_sym___bridge_transfer] = ACTIONS(2620), + [anon_sym___complex] = ACTIONS(2620), + [anon_sym___const] = ACTIONS(2620), + [anon_sym___imag] = ACTIONS(2620), + [anon_sym___kindof] = ACTIONS(2620), + [anon_sym___nonnull] = ACTIONS(2620), + [anon_sym___nullable] = ACTIONS(2620), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2620), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2620), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2620), + [anon_sym___real] = ACTIONS(2620), + [anon_sym___strong] = ACTIONS(2620), + [anon_sym___unsafe_unretained] = ACTIONS(2620), + [anon_sym___unused] = ACTIONS(2620), + [anon_sym___weak] = ACTIONS(2620), + [anon_sym_alignas] = ACTIONS(2620), + [anon_sym__Alignas] = ACTIONS(2620), + [sym_primitive_type] = ACTIONS(2620), + [anon_sym_enum] = ACTIONS(2620), + [anon_sym_struct] = ACTIONS(2620), + [anon_sym_union] = ACTIONS(2620), + [anon_sym_if] = ACTIONS(2620), + [anon_sym_switch] = ACTIONS(2620), + [anon_sym_case] = ACTIONS(2620), + [anon_sym_default] = ACTIONS(2620), + [anon_sym_while] = ACTIONS(2620), + [anon_sym_do] = ACTIONS(2620), + [anon_sym_for] = ACTIONS(2620), + [anon_sym_in] = ACTIONS(2620), + [anon_sym_return] = ACTIONS(2620), + [anon_sym_break] = ACTIONS(2620), + [anon_sym_continue] = ACTIONS(2620), + [anon_sym_goto] = ACTIONS(2620), + [anon_sym_DASH_DASH] = ACTIONS(2622), + [anon_sym_PLUS_PLUS] = ACTIONS(2622), + [anon_sym_sizeof] = ACTIONS(2620), + [anon_sym___alignof__] = ACTIONS(2620), + [anon_sym___alignof] = ACTIONS(2620), + [anon_sym__alignof] = ACTIONS(2620), + [anon_sym_alignof] = ACTIONS(2620), + [anon_sym__Alignof] = ACTIONS(2620), + [anon_sym_offsetof] = ACTIONS(2620), + [anon_sym__Generic] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2620), + [anon_sym___asm__] = ACTIONS(2620), + [anon_sym___asm] = ACTIONS(2620), + [sym_number_literal] = ACTIONS(2622), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_AT] = ACTIONS(2620), + [anon_sym_DQUOTE] = ACTIONS(2622), + [anon_sym_L_DQUOTE] = ACTIONS(2622), + [anon_sym_u_DQUOTE] = ACTIONS(2622), + [anon_sym_U_DQUOTE] = ACTIONS(2622), + [anon_sym_u8_DQUOTE] = ACTIONS(2622), + [sym_true] = ACTIONS(2620), + [sym_false] = ACTIONS(2620), + [anon_sym_NULL] = ACTIONS(2620), + [anon_sym_nullptr] = ACTIONS(2620), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2620), + [anon_sym___typeof] = ACTIONS(2620), + [anon_sym_typeof] = ACTIONS(2620), + [anon_sym_ATimport] = ACTIONS(2622), + [aux_sym_preproc_undef_token1] = ACTIONS(2620), + [anon_sym_POUND] = ACTIONS(2620), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2620), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2620), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2620), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2620), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2620), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2620), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2620), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2620), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2620), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2620), + [anon_sym_NS_AVAILABLE] = ACTIONS(2620), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2620), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2620), + [anon_sym_API_AVAILABLE] = ACTIONS(2620), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2620), + [anon_sym_API_DEPRECATED] = ACTIONS(2620), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2620), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2620), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2620), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2620), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2620), + [anon_sym___deprecated_msg] = ACTIONS(2620), + [anon_sym___deprecated_enum_msg] = ACTIONS(2620), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2620), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2620), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2620), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2620), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2620), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2620), + [anon_sym_ATprotocol] = ACTIONS(2622), + [anon_sym_ATinterface] = ACTIONS(2622), + [anon_sym_ATimplementation] = ACTIONS(2622), + [anon_sym_ATcompatibility_alias] = ACTIONS(2622), + [anon_sym_ATsynthesize] = ACTIONS(2622), + [anon_sym_ATdynamic] = ACTIONS(2622), + [anon_sym_ATtry] = ACTIONS(2622), + [anon_sym___try] = ACTIONS(2620), + [anon_sym_ATthrow] = ACTIONS(2622), + [anon_sym_ATselector] = ACTIONS(2622), + [anon_sym_ATavailable] = ACTIONS(2622), + [anon_sym___builtin_available] = ACTIONS(2620), + [anon_sym_va_arg] = ACTIONS(2620), + [anon_sym_ATencode] = ACTIONS(2622), + [anon_sym_ATsynchronized] = ACTIONS(2622), + [anon_sym_BOOL] = ACTIONS(2620), + [anon_sym_IMP] = ACTIONS(2620), + [anon_sym_SEL] = ACTIONS(2620), + [anon_sym_Class] = ACTIONS(2620), + [anon_sym_id] = ACTIONS(2620), + }, + [616] = { + [sym_identifier] = ACTIONS(2624), + [aux_sym_preproc_include_token1] = ACTIONS(2624), + [aux_sym_preproc_include_token2] = ACTIONS(2624), + [aux_sym_preproc_def_token1] = ACTIONS(2624), + [aux_sym_preproc_if_token1] = ACTIONS(2624), + [aux_sym_preproc_if_token2] = ACTIONS(2624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2624), + [sym_preproc_directive] = ACTIONS(2624), + [anon_sym_LPAREN2] = ACTIONS(2626), + [anon_sym_BANG] = ACTIONS(2626), + [anon_sym_TILDE] = ACTIONS(2626), + [anon_sym_DASH] = ACTIONS(2624), + [anon_sym_PLUS] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2626), + [anon_sym_CARET] = ACTIONS(2626), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_SEMI] = ACTIONS(2626), + [anon_sym___extension__] = ACTIONS(2624), + [anon_sym_typedef] = ACTIONS(2624), + [anon_sym_extern] = ACTIONS(2624), + [anon_sym___attribute__] = ACTIONS(2624), + [anon_sym___attribute] = ACTIONS(2624), + [anon_sym_noreturn] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2626), + [anon_sym___declspec] = ACTIONS(2624), + [anon_sym___cdecl] = ACTIONS(2624), + [anon_sym___clrcall] = ACTIONS(2624), + [anon_sym___stdcall] = ACTIONS(2624), + [anon_sym___fastcall] = ACTIONS(2624), + [anon_sym___thiscall] = ACTIONS(2624), + [anon_sym___vectorcall] = ACTIONS(2624), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_signed] = ACTIONS(2624), + [anon_sym_unsigned] = ACTIONS(2624), + [anon_sym_long] = ACTIONS(2624), + [anon_sym_short] = ACTIONS(2624), + [anon_sym_static] = ACTIONS(2624), + [anon_sym_ATautoreleasepool] = ACTIONS(2626), + [anon_sym_auto] = ACTIONS(2624), + [anon_sym_register] = ACTIONS(2624), + [anon_sym_inline] = ACTIONS(2624), + [anon_sym___inline] = ACTIONS(2624), + [anon_sym___inline__] = ACTIONS(2624), + [anon_sym___forceinline] = ACTIONS(2624), + [anon_sym_thread_local] = ACTIONS(2624), + [anon_sym___thread] = ACTIONS(2624), + [anon_sym_CG_EXTERN] = ACTIONS(2624), + [anon_sym_CG_INLINE] = ACTIONS(2624), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2624), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2624), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2624), + [anon_sym_IBOutlet] = ACTIONS(2624), + [anon_sym_IBInspectable] = ACTIONS(2624), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2624), + [anon_sym_NS_INLINE] = ACTIONS(2624), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2624), + [anon_sym_OBJC_EXPORT] = ACTIONS(2624), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2624), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2624), + [anon_sym_const] = ACTIONS(2624), + [anon_sym_constexpr] = ACTIONS(2624), + [anon_sym_volatile] = ACTIONS(2624), + [anon_sym_restrict] = ACTIONS(2624), + [anon_sym___restrict__] = ACTIONS(2624), + [anon_sym__Atomic] = ACTIONS(2624), + [anon_sym__Noreturn] = ACTIONS(2624), + [anon_sym__Nonnull] = ACTIONS(2624), + [anon_sym_nullable] = ACTIONS(2624), + [anon_sym__Complex] = ACTIONS(2624), + [anon_sym__Nullable] = ACTIONS(2624), + [anon_sym__Nullable_result] = ACTIONS(2624), + [anon_sym__Null_unspecified] = ACTIONS(2624), + [anon_sym___autoreleasing] = ACTIONS(2624), + [anon_sym___block] = ACTIONS(2624), + [anon_sym___bridge] = ACTIONS(2624), + [anon_sym___bridge_retained] = ACTIONS(2624), + [anon_sym___bridge_transfer] = ACTIONS(2624), + [anon_sym___complex] = ACTIONS(2624), + [anon_sym___const] = ACTIONS(2624), + [anon_sym___imag] = ACTIONS(2624), + [anon_sym___kindof] = ACTIONS(2624), + [anon_sym___nonnull] = ACTIONS(2624), + [anon_sym___nullable] = ACTIONS(2624), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2624), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2624), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2624), + [anon_sym___real] = ACTIONS(2624), + [anon_sym___strong] = ACTIONS(2624), + [anon_sym___unsafe_unretained] = ACTIONS(2624), + [anon_sym___unused] = ACTIONS(2624), + [anon_sym___weak] = ACTIONS(2624), + [anon_sym_alignas] = ACTIONS(2624), + [anon_sym__Alignas] = ACTIONS(2624), + [sym_primitive_type] = ACTIONS(2624), + [anon_sym_enum] = ACTIONS(2624), + [anon_sym_struct] = ACTIONS(2624), + [anon_sym_union] = ACTIONS(2624), + [anon_sym_if] = ACTIONS(2624), + [anon_sym_switch] = ACTIONS(2624), + [anon_sym_case] = ACTIONS(2624), + [anon_sym_default] = ACTIONS(2624), + [anon_sym_while] = ACTIONS(2624), + [anon_sym_do] = ACTIONS(2624), + [anon_sym_for] = ACTIONS(2624), + [anon_sym_in] = ACTIONS(2624), + [anon_sym_return] = ACTIONS(2624), + [anon_sym_break] = ACTIONS(2624), + [anon_sym_continue] = ACTIONS(2624), + [anon_sym_goto] = ACTIONS(2624), + [anon_sym_DASH_DASH] = ACTIONS(2626), + [anon_sym_PLUS_PLUS] = ACTIONS(2626), + [anon_sym_sizeof] = ACTIONS(2624), + [anon_sym___alignof__] = ACTIONS(2624), + [anon_sym___alignof] = ACTIONS(2624), + [anon_sym__alignof] = ACTIONS(2624), + [anon_sym_alignof] = ACTIONS(2624), + [anon_sym__Alignof] = ACTIONS(2624), + [anon_sym_offsetof] = ACTIONS(2624), + [anon_sym__Generic] = ACTIONS(2624), + [anon_sym_asm] = ACTIONS(2624), + [anon_sym___asm__] = ACTIONS(2624), + [anon_sym___asm] = ACTIONS(2624), + [sym_number_literal] = ACTIONS(2626), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_AT] = ACTIONS(2624), + [anon_sym_DQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2626), + [anon_sym_u_DQUOTE] = ACTIONS(2626), + [anon_sym_U_DQUOTE] = ACTIONS(2626), + [anon_sym_u8_DQUOTE] = ACTIONS(2626), + [sym_true] = ACTIONS(2624), + [sym_false] = ACTIONS(2624), + [anon_sym_NULL] = ACTIONS(2624), + [anon_sym_nullptr] = ACTIONS(2624), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2624), + [anon_sym___typeof] = ACTIONS(2624), + [anon_sym_typeof] = ACTIONS(2624), + [anon_sym_ATimport] = ACTIONS(2626), + [aux_sym_preproc_undef_token1] = ACTIONS(2624), + [anon_sym_POUND] = ACTIONS(2624), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2624), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2624), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2624), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2624), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2624), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2624), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2624), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2624), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2624), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2624), + [anon_sym_NS_AVAILABLE] = ACTIONS(2624), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2624), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2624), + [anon_sym_API_AVAILABLE] = ACTIONS(2624), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2624), + [anon_sym_API_DEPRECATED] = ACTIONS(2624), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2624), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2624), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2624), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2624), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2624), + [anon_sym___deprecated_msg] = ACTIONS(2624), + [anon_sym___deprecated_enum_msg] = ACTIONS(2624), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2624), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2624), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2624), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2624), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2624), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2624), + [anon_sym_ATprotocol] = ACTIONS(2626), + [anon_sym_ATinterface] = ACTIONS(2626), + [anon_sym_ATimplementation] = ACTIONS(2626), + [anon_sym_ATcompatibility_alias] = ACTIONS(2626), + [anon_sym_ATsynthesize] = ACTIONS(2626), + [anon_sym_ATdynamic] = ACTIONS(2626), + [anon_sym_ATtry] = ACTIONS(2626), + [anon_sym___try] = ACTIONS(2624), + [anon_sym_ATthrow] = ACTIONS(2626), + [anon_sym_ATselector] = ACTIONS(2626), + [anon_sym_ATavailable] = ACTIONS(2626), + [anon_sym___builtin_available] = ACTIONS(2624), + [anon_sym_va_arg] = ACTIONS(2624), + [anon_sym_ATencode] = ACTIONS(2626), + [anon_sym_ATsynchronized] = ACTIONS(2626), + [anon_sym_BOOL] = ACTIONS(2624), + [anon_sym_IMP] = ACTIONS(2624), + [anon_sym_SEL] = ACTIONS(2624), + [anon_sym_Class] = ACTIONS(2624), + [anon_sym_id] = ACTIONS(2624), + }, + [617] = { + [sym_identifier] = ACTIONS(2628), + [aux_sym_preproc_include_token1] = ACTIONS(2628), + [aux_sym_preproc_include_token2] = ACTIONS(2628), + [aux_sym_preproc_def_token1] = ACTIONS(2628), + [aux_sym_preproc_if_token1] = ACTIONS(2628), + [aux_sym_preproc_if_token2] = ACTIONS(2628), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2628), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2628), + [sym_preproc_directive] = ACTIONS(2628), + [anon_sym_LPAREN2] = ACTIONS(2630), + [anon_sym_BANG] = ACTIONS(2630), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2628), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_CARET] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2630), + [anon_sym_SEMI] = ACTIONS(2630), + [anon_sym___extension__] = ACTIONS(2628), + [anon_sym_typedef] = ACTIONS(2628), + [anon_sym_extern] = ACTIONS(2628), + [anon_sym___attribute__] = ACTIONS(2628), + [anon_sym___attribute] = ACTIONS(2628), + [anon_sym_noreturn] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2630), + [anon_sym___declspec] = ACTIONS(2628), + [anon_sym___cdecl] = ACTIONS(2628), + [anon_sym___clrcall] = ACTIONS(2628), + [anon_sym___stdcall] = ACTIONS(2628), + [anon_sym___fastcall] = ACTIONS(2628), + [anon_sym___thiscall] = ACTIONS(2628), + [anon_sym___vectorcall] = ACTIONS(2628), + [anon_sym_LBRACE] = ACTIONS(2630), + [anon_sym_signed] = ACTIONS(2628), + [anon_sym_unsigned] = ACTIONS(2628), + [anon_sym_long] = ACTIONS(2628), + [anon_sym_short] = ACTIONS(2628), + [anon_sym_static] = ACTIONS(2628), + [anon_sym_ATautoreleasepool] = ACTIONS(2630), + [anon_sym_auto] = ACTIONS(2628), + [anon_sym_register] = ACTIONS(2628), + [anon_sym_inline] = ACTIONS(2628), + [anon_sym___inline] = ACTIONS(2628), + [anon_sym___inline__] = ACTIONS(2628), + [anon_sym___forceinline] = ACTIONS(2628), + [anon_sym_thread_local] = ACTIONS(2628), + [anon_sym___thread] = ACTIONS(2628), + [anon_sym_CG_EXTERN] = ACTIONS(2628), + [anon_sym_CG_INLINE] = ACTIONS(2628), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2628), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2628), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2628), + [anon_sym_IBOutlet] = ACTIONS(2628), + [anon_sym_IBInspectable] = ACTIONS(2628), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2628), + [anon_sym_NS_INLINE] = ACTIONS(2628), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2628), + [anon_sym_OBJC_EXPORT] = ACTIONS(2628), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2628), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2628), + [anon_sym_const] = ACTIONS(2628), + [anon_sym_constexpr] = ACTIONS(2628), + [anon_sym_volatile] = ACTIONS(2628), + [anon_sym_restrict] = ACTIONS(2628), + [anon_sym___restrict__] = ACTIONS(2628), + [anon_sym__Atomic] = ACTIONS(2628), + [anon_sym__Noreturn] = ACTIONS(2628), + [anon_sym__Nonnull] = ACTIONS(2628), + [anon_sym_nullable] = ACTIONS(2628), + [anon_sym__Complex] = ACTIONS(2628), + [anon_sym__Nullable] = ACTIONS(2628), + [anon_sym__Nullable_result] = ACTIONS(2628), + [anon_sym__Null_unspecified] = ACTIONS(2628), + [anon_sym___autoreleasing] = ACTIONS(2628), + [anon_sym___block] = ACTIONS(2628), + [anon_sym___bridge] = ACTIONS(2628), + [anon_sym___bridge_retained] = ACTIONS(2628), + [anon_sym___bridge_transfer] = ACTIONS(2628), + [anon_sym___complex] = ACTIONS(2628), + [anon_sym___const] = ACTIONS(2628), + [anon_sym___imag] = ACTIONS(2628), + [anon_sym___kindof] = ACTIONS(2628), + [anon_sym___nonnull] = ACTIONS(2628), + [anon_sym___nullable] = ACTIONS(2628), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2628), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2628), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2628), + [anon_sym___real] = ACTIONS(2628), + [anon_sym___strong] = ACTIONS(2628), + [anon_sym___unsafe_unretained] = ACTIONS(2628), + [anon_sym___unused] = ACTIONS(2628), + [anon_sym___weak] = ACTIONS(2628), + [anon_sym_alignas] = ACTIONS(2628), + [anon_sym__Alignas] = ACTIONS(2628), + [sym_primitive_type] = ACTIONS(2628), + [anon_sym_enum] = ACTIONS(2628), + [anon_sym_struct] = ACTIONS(2628), + [anon_sym_union] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_switch] = ACTIONS(2628), + [anon_sym_case] = ACTIONS(2628), + [anon_sym_default] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [anon_sym_do] = ACTIONS(2628), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_in] = ACTIONS(2628), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_break] = ACTIONS(2628), + [anon_sym_continue] = ACTIONS(2628), + [anon_sym_goto] = ACTIONS(2628), + [anon_sym_DASH_DASH] = ACTIONS(2630), + [anon_sym_PLUS_PLUS] = ACTIONS(2630), + [anon_sym_sizeof] = ACTIONS(2628), + [anon_sym___alignof__] = ACTIONS(2628), + [anon_sym___alignof] = ACTIONS(2628), + [anon_sym__alignof] = ACTIONS(2628), + [anon_sym_alignof] = ACTIONS(2628), + [anon_sym__Alignof] = ACTIONS(2628), + [anon_sym_offsetof] = ACTIONS(2628), + [anon_sym__Generic] = ACTIONS(2628), + [anon_sym_asm] = ACTIONS(2628), + [anon_sym___asm__] = ACTIONS(2628), + [anon_sym___asm] = ACTIONS(2628), + [sym_number_literal] = ACTIONS(2630), + [anon_sym_L_SQUOTE] = ACTIONS(2630), + [anon_sym_u_SQUOTE] = ACTIONS(2630), + [anon_sym_U_SQUOTE] = ACTIONS(2630), + [anon_sym_u8_SQUOTE] = ACTIONS(2630), + [anon_sym_SQUOTE] = ACTIONS(2630), + [anon_sym_AT] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2630), + [anon_sym_L_DQUOTE] = ACTIONS(2630), + [anon_sym_u_DQUOTE] = ACTIONS(2630), + [anon_sym_U_DQUOTE] = ACTIONS(2630), + [anon_sym_u8_DQUOTE] = ACTIONS(2630), + [sym_true] = ACTIONS(2628), + [sym_false] = ACTIONS(2628), + [anon_sym_NULL] = ACTIONS(2628), + [anon_sym_nullptr] = ACTIONS(2628), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2628), + [anon_sym___typeof] = ACTIONS(2628), + [anon_sym_typeof] = ACTIONS(2628), + [anon_sym_ATimport] = ACTIONS(2630), + [aux_sym_preproc_undef_token1] = ACTIONS(2628), + [anon_sym_POUND] = ACTIONS(2628), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2628), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2628), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2628), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2628), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2628), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2628), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2628), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2628), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2628), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2628), + [anon_sym_NS_AVAILABLE] = ACTIONS(2628), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2628), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2628), + [anon_sym_API_AVAILABLE] = ACTIONS(2628), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2628), + [anon_sym_API_DEPRECATED] = ACTIONS(2628), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2628), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2628), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2628), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2628), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2628), + [anon_sym___deprecated_msg] = ACTIONS(2628), + [anon_sym___deprecated_enum_msg] = ACTIONS(2628), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2628), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2628), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2628), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2628), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2628), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2628), + [anon_sym_ATprotocol] = ACTIONS(2630), + [anon_sym_ATinterface] = ACTIONS(2630), + [anon_sym_ATimplementation] = ACTIONS(2630), + [anon_sym_ATcompatibility_alias] = ACTIONS(2630), + [anon_sym_ATsynthesize] = ACTIONS(2630), + [anon_sym_ATdynamic] = ACTIONS(2630), + [anon_sym_ATtry] = ACTIONS(2630), + [anon_sym___try] = ACTIONS(2628), + [anon_sym_ATthrow] = ACTIONS(2630), + [anon_sym_ATselector] = ACTIONS(2630), + [anon_sym_ATavailable] = ACTIONS(2630), + [anon_sym___builtin_available] = ACTIONS(2628), + [anon_sym_va_arg] = ACTIONS(2628), + [anon_sym_ATencode] = ACTIONS(2630), + [anon_sym_ATsynchronized] = ACTIONS(2630), + [anon_sym_BOOL] = ACTIONS(2628), + [anon_sym_IMP] = ACTIONS(2628), + [anon_sym_SEL] = ACTIONS(2628), + [anon_sym_Class] = ACTIONS(2628), + [anon_sym_id] = ACTIONS(2628), + }, + [618] = { + [sym_identifier] = ACTIONS(2632), + [aux_sym_preproc_include_token1] = ACTIONS(2632), + [aux_sym_preproc_include_token2] = ACTIONS(2632), + [aux_sym_preproc_def_token1] = ACTIONS(2632), + [aux_sym_preproc_if_token1] = ACTIONS(2632), + [aux_sym_preproc_if_token2] = ACTIONS(2632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2632), + [sym_preproc_directive] = ACTIONS(2632), + [anon_sym_LPAREN2] = ACTIONS(2634), + [anon_sym_BANG] = ACTIONS(2634), + [anon_sym_TILDE] = ACTIONS(2634), + [anon_sym_DASH] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(2632), + [anon_sym_STAR] = ACTIONS(2634), + [anon_sym_CARET] = ACTIONS(2634), + [anon_sym_AMP] = ACTIONS(2634), + [anon_sym_SEMI] = ACTIONS(2634), + [anon_sym___extension__] = ACTIONS(2632), + [anon_sym_typedef] = ACTIONS(2632), + [anon_sym_extern] = ACTIONS(2632), + [anon_sym___attribute__] = ACTIONS(2632), + [anon_sym___attribute] = ACTIONS(2632), + [anon_sym_noreturn] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2634), + [anon_sym___declspec] = ACTIONS(2632), + [anon_sym___cdecl] = ACTIONS(2632), + [anon_sym___clrcall] = ACTIONS(2632), + [anon_sym___stdcall] = ACTIONS(2632), + [anon_sym___fastcall] = ACTIONS(2632), + [anon_sym___thiscall] = ACTIONS(2632), + [anon_sym___vectorcall] = ACTIONS(2632), + [anon_sym_LBRACE] = ACTIONS(2634), + [anon_sym_signed] = ACTIONS(2632), + [anon_sym_unsigned] = ACTIONS(2632), + [anon_sym_long] = ACTIONS(2632), + [anon_sym_short] = ACTIONS(2632), + [anon_sym_static] = ACTIONS(2632), + [anon_sym_ATautoreleasepool] = ACTIONS(2634), + [anon_sym_auto] = ACTIONS(2632), + [anon_sym_register] = ACTIONS(2632), + [anon_sym_inline] = ACTIONS(2632), + [anon_sym___inline] = ACTIONS(2632), + [anon_sym___inline__] = ACTIONS(2632), + [anon_sym___forceinline] = ACTIONS(2632), + [anon_sym_thread_local] = ACTIONS(2632), + [anon_sym___thread] = ACTIONS(2632), + [anon_sym_CG_EXTERN] = ACTIONS(2632), + [anon_sym_CG_INLINE] = ACTIONS(2632), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2632), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2632), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2632), + [anon_sym_IBOutlet] = ACTIONS(2632), + [anon_sym_IBInspectable] = ACTIONS(2632), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2632), + [anon_sym_NS_INLINE] = ACTIONS(2632), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2632), + [anon_sym_OBJC_EXPORT] = ACTIONS(2632), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2632), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2632), + [anon_sym_const] = ACTIONS(2632), + [anon_sym_constexpr] = ACTIONS(2632), + [anon_sym_volatile] = ACTIONS(2632), + [anon_sym_restrict] = ACTIONS(2632), + [anon_sym___restrict__] = ACTIONS(2632), + [anon_sym__Atomic] = ACTIONS(2632), + [anon_sym__Noreturn] = ACTIONS(2632), + [anon_sym__Nonnull] = ACTIONS(2632), + [anon_sym_nullable] = ACTIONS(2632), + [anon_sym__Complex] = ACTIONS(2632), + [anon_sym__Nullable] = ACTIONS(2632), + [anon_sym__Nullable_result] = ACTIONS(2632), + [anon_sym__Null_unspecified] = ACTIONS(2632), + [anon_sym___autoreleasing] = ACTIONS(2632), + [anon_sym___block] = ACTIONS(2632), + [anon_sym___bridge] = ACTIONS(2632), + [anon_sym___bridge_retained] = ACTIONS(2632), + [anon_sym___bridge_transfer] = ACTIONS(2632), + [anon_sym___complex] = ACTIONS(2632), + [anon_sym___const] = ACTIONS(2632), + [anon_sym___imag] = ACTIONS(2632), + [anon_sym___kindof] = ACTIONS(2632), + [anon_sym___nonnull] = ACTIONS(2632), + [anon_sym___nullable] = ACTIONS(2632), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2632), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2632), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2632), + [anon_sym___real] = ACTIONS(2632), + [anon_sym___strong] = ACTIONS(2632), + [anon_sym___unsafe_unretained] = ACTIONS(2632), + [anon_sym___unused] = ACTIONS(2632), + [anon_sym___weak] = ACTIONS(2632), + [anon_sym_alignas] = ACTIONS(2632), + [anon_sym__Alignas] = ACTIONS(2632), + [sym_primitive_type] = ACTIONS(2632), + [anon_sym_enum] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2632), + [anon_sym_union] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_switch] = ACTIONS(2632), + [anon_sym_case] = ACTIONS(2632), + [anon_sym_default] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_do] = ACTIONS(2632), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_in] = ACTIONS(2632), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_break] = ACTIONS(2632), + [anon_sym_continue] = ACTIONS(2632), + [anon_sym_goto] = ACTIONS(2632), + [anon_sym_DASH_DASH] = ACTIONS(2634), + [anon_sym_PLUS_PLUS] = ACTIONS(2634), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2632), + [anon_sym___alignof] = ACTIONS(2632), + [anon_sym__alignof] = ACTIONS(2632), + [anon_sym_alignof] = ACTIONS(2632), + [anon_sym__Alignof] = ACTIONS(2632), + [anon_sym_offsetof] = ACTIONS(2632), + [anon_sym__Generic] = ACTIONS(2632), + [anon_sym_asm] = ACTIONS(2632), + [anon_sym___asm__] = ACTIONS(2632), + [anon_sym___asm] = ACTIONS(2632), + [sym_number_literal] = ACTIONS(2634), + [anon_sym_L_SQUOTE] = ACTIONS(2634), + [anon_sym_u_SQUOTE] = ACTIONS(2634), + [anon_sym_U_SQUOTE] = ACTIONS(2634), + [anon_sym_u8_SQUOTE] = ACTIONS(2634), + [anon_sym_SQUOTE] = ACTIONS(2634), + [anon_sym_AT] = ACTIONS(2632), + [anon_sym_DQUOTE] = ACTIONS(2634), + [anon_sym_L_DQUOTE] = ACTIONS(2634), + [anon_sym_u_DQUOTE] = ACTIONS(2634), + [anon_sym_U_DQUOTE] = ACTIONS(2634), + [anon_sym_u8_DQUOTE] = ACTIONS(2634), + [sym_true] = ACTIONS(2632), + [sym_false] = ACTIONS(2632), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2632), + [anon_sym___typeof] = ACTIONS(2632), + [anon_sym_typeof] = ACTIONS(2632), + [anon_sym_ATimport] = ACTIONS(2634), + [aux_sym_preproc_undef_token1] = ACTIONS(2632), + [anon_sym_POUND] = ACTIONS(2632), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2632), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2632), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2632), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2632), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2632), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2632), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2632), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2632), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2632), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2632), + [anon_sym_NS_AVAILABLE] = ACTIONS(2632), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2632), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2632), + [anon_sym_API_AVAILABLE] = ACTIONS(2632), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2632), + [anon_sym_API_DEPRECATED] = ACTIONS(2632), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2632), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2632), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2632), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2632), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2632), + [anon_sym___deprecated_msg] = ACTIONS(2632), + [anon_sym___deprecated_enum_msg] = ACTIONS(2632), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2632), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2632), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2632), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2632), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2632), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2632), + [anon_sym_ATprotocol] = ACTIONS(2634), + [anon_sym_ATinterface] = ACTIONS(2634), + [anon_sym_ATimplementation] = ACTIONS(2634), + [anon_sym_ATcompatibility_alias] = ACTIONS(2634), + [anon_sym_ATsynthesize] = ACTIONS(2634), + [anon_sym_ATdynamic] = ACTIONS(2634), + [anon_sym_ATtry] = ACTIONS(2634), + [anon_sym___try] = ACTIONS(2632), + [anon_sym_ATthrow] = ACTIONS(2634), + [anon_sym_ATselector] = ACTIONS(2634), + [anon_sym_ATavailable] = ACTIONS(2634), + [anon_sym___builtin_available] = ACTIONS(2632), + [anon_sym_va_arg] = ACTIONS(2632), + [anon_sym_ATencode] = ACTIONS(2634), + [anon_sym_ATsynchronized] = ACTIONS(2634), + [anon_sym_BOOL] = ACTIONS(2632), + [anon_sym_IMP] = ACTIONS(2632), + [anon_sym_SEL] = ACTIONS(2632), + [anon_sym_Class] = ACTIONS(2632), + [anon_sym_id] = ACTIONS(2632), + }, + [619] = { + [sym_identifier] = ACTIONS(2636), + [aux_sym_preproc_include_token1] = ACTIONS(2636), + [aux_sym_preproc_include_token2] = ACTIONS(2636), + [aux_sym_preproc_def_token1] = ACTIONS(2636), + [aux_sym_preproc_if_token1] = ACTIONS(2636), + [aux_sym_preproc_if_token2] = ACTIONS(2636), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2636), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2636), + [sym_preproc_directive] = ACTIONS(2636), + [anon_sym_LPAREN2] = ACTIONS(2638), + [anon_sym_BANG] = ACTIONS(2638), + [anon_sym_TILDE] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_PLUS] = ACTIONS(2636), + [anon_sym_STAR] = ACTIONS(2638), + [anon_sym_CARET] = ACTIONS(2638), + [anon_sym_AMP] = ACTIONS(2638), + [anon_sym_SEMI] = ACTIONS(2638), + [anon_sym___extension__] = ACTIONS(2636), + [anon_sym_typedef] = ACTIONS(2636), + [anon_sym_extern] = ACTIONS(2636), + [anon_sym___attribute__] = ACTIONS(2636), + [anon_sym___attribute] = ACTIONS(2636), + [anon_sym_noreturn] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2638), + [anon_sym___declspec] = ACTIONS(2636), + [anon_sym___cdecl] = ACTIONS(2636), + [anon_sym___clrcall] = ACTIONS(2636), + [anon_sym___stdcall] = ACTIONS(2636), + [anon_sym___fastcall] = ACTIONS(2636), + [anon_sym___thiscall] = ACTIONS(2636), + [anon_sym___vectorcall] = ACTIONS(2636), + [anon_sym_LBRACE] = ACTIONS(2638), + [anon_sym_signed] = ACTIONS(2636), + [anon_sym_unsigned] = ACTIONS(2636), + [anon_sym_long] = ACTIONS(2636), + [anon_sym_short] = ACTIONS(2636), + [anon_sym_static] = ACTIONS(2636), + [anon_sym_ATautoreleasepool] = ACTIONS(2638), + [anon_sym_auto] = ACTIONS(2636), + [anon_sym_register] = ACTIONS(2636), + [anon_sym_inline] = ACTIONS(2636), + [anon_sym___inline] = ACTIONS(2636), + [anon_sym___inline__] = ACTIONS(2636), + [anon_sym___forceinline] = ACTIONS(2636), + [anon_sym_thread_local] = ACTIONS(2636), + [anon_sym___thread] = ACTIONS(2636), + [anon_sym_CG_EXTERN] = ACTIONS(2636), + [anon_sym_CG_INLINE] = ACTIONS(2636), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2636), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2636), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2636), + [anon_sym_IBOutlet] = ACTIONS(2636), + [anon_sym_IBInspectable] = ACTIONS(2636), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2636), + [anon_sym_NS_INLINE] = ACTIONS(2636), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2636), + [anon_sym_OBJC_EXPORT] = ACTIONS(2636), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2636), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2636), + [anon_sym_const] = ACTIONS(2636), + [anon_sym_constexpr] = ACTIONS(2636), + [anon_sym_volatile] = ACTIONS(2636), + [anon_sym_restrict] = ACTIONS(2636), + [anon_sym___restrict__] = ACTIONS(2636), + [anon_sym__Atomic] = ACTIONS(2636), + [anon_sym__Noreturn] = ACTIONS(2636), + [anon_sym__Nonnull] = ACTIONS(2636), + [anon_sym_nullable] = ACTIONS(2636), + [anon_sym__Complex] = ACTIONS(2636), + [anon_sym__Nullable] = ACTIONS(2636), + [anon_sym__Nullable_result] = ACTIONS(2636), + [anon_sym__Null_unspecified] = ACTIONS(2636), + [anon_sym___autoreleasing] = ACTIONS(2636), + [anon_sym___block] = ACTIONS(2636), + [anon_sym___bridge] = ACTIONS(2636), + [anon_sym___bridge_retained] = ACTIONS(2636), + [anon_sym___bridge_transfer] = ACTIONS(2636), + [anon_sym___complex] = ACTIONS(2636), + [anon_sym___const] = ACTIONS(2636), + [anon_sym___imag] = ACTIONS(2636), + [anon_sym___kindof] = ACTIONS(2636), + [anon_sym___nonnull] = ACTIONS(2636), + [anon_sym___nullable] = ACTIONS(2636), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2636), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2636), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2636), + [anon_sym___real] = ACTIONS(2636), + [anon_sym___strong] = ACTIONS(2636), + [anon_sym___unsafe_unretained] = ACTIONS(2636), + [anon_sym___unused] = ACTIONS(2636), + [anon_sym___weak] = ACTIONS(2636), + [anon_sym_alignas] = ACTIONS(2636), + [anon_sym__Alignas] = ACTIONS(2636), + [sym_primitive_type] = ACTIONS(2636), + [anon_sym_enum] = ACTIONS(2636), + [anon_sym_struct] = ACTIONS(2636), + [anon_sym_union] = ACTIONS(2636), + [anon_sym_if] = ACTIONS(2636), + [anon_sym_switch] = ACTIONS(2636), + [anon_sym_case] = ACTIONS(2636), + [anon_sym_default] = ACTIONS(2636), + [anon_sym_while] = ACTIONS(2636), + [anon_sym_do] = ACTIONS(2636), + [anon_sym_for] = ACTIONS(2636), + [anon_sym_in] = ACTIONS(2636), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_break] = ACTIONS(2636), + [anon_sym_continue] = ACTIONS(2636), + [anon_sym_goto] = ACTIONS(2636), + [anon_sym_DASH_DASH] = ACTIONS(2638), + [anon_sym_PLUS_PLUS] = ACTIONS(2638), + [anon_sym_sizeof] = ACTIONS(2636), + [anon_sym___alignof__] = ACTIONS(2636), + [anon_sym___alignof] = ACTIONS(2636), + [anon_sym__alignof] = ACTIONS(2636), + [anon_sym_alignof] = ACTIONS(2636), + [anon_sym__Alignof] = ACTIONS(2636), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2636), + [anon_sym_asm] = ACTIONS(2636), + [anon_sym___asm__] = ACTIONS(2636), + [anon_sym___asm] = ACTIONS(2636), + [sym_number_literal] = ACTIONS(2638), + [anon_sym_L_SQUOTE] = ACTIONS(2638), + [anon_sym_u_SQUOTE] = ACTIONS(2638), + [anon_sym_U_SQUOTE] = ACTIONS(2638), + [anon_sym_u8_SQUOTE] = ACTIONS(2638), + [anon_sym_SQUOTE] = ACTIONS(2638), + [anon_sym_AT] = ACTIONS(2636), + [anon_sym_DQUOTE] = ACTIONS(2638), + [anon_sym_L_DQUOTE] = ACTIONS(2638), + [anon_sym_u_DQUOTE] = ACTIONS(2638), + [anon_sym_U_DQUOTE] = ACTIONS(2638), + [anon_sym_u8_DQUOTE] = ACTIONS(2638), + [sym_true] = ACTIONS(2636), + [sym_false] = ACTIONS(2636), + [anon_sym_NULL] = ACTIONS(2636), + [anon_sym_nullptr] = ACTIONS(2636), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2636), + [anon_sym___typeof] = ACTIONS(2636), + [anon_sym_typeof] = ACTIONS(2636), + [anon_sym_ATimport] = ACTIONS(2638), + [aux_sym_preproc_undef_token1] = ACTIONS(2636), + [anon_sym_POUND] = ACTIONS(2636), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2636), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2636), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2636), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2636), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2636), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2636), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2636), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2636), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2636), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2636), + [anon_sym_NS_AVAILABLE] = ACTIONS(2636), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2636), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2636), + [anon_sym_API_AVAILABLE] = ACTIONS(2636), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2636), + [anon_sym_API_DEPRECATED] = ACTIONS(2636), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2636), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2636), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2636), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2636), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2636), + [anon_sym___deprecated_msg] = ACTIONS(2636), + [anon_sym___deprecated_enum_msg] = ACTIONS(2636), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2636), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2636), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2636), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2636), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2636), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2636), + [anon_sym_ATprotocol] = ACTIONS(2638), + [anon_sym_ATinterface] = ACTIONS(2638), + [anon_sym_ATimplementation] = ACTIONS(2638), + [anon_sym_ATcompatibility_alias] = ACTIONS(2638), + [anon_sym_ATsynthesize] = ACTIONS(2638), + [anon_sym_ATdynamic] = ACTIONS(2638), + [anon_sym_ATtry] = ACTIONS(2638), + [anon_sym___try] = ACTIONS(2636), + [anon_sym_ATthrow] = ACTIONS(2638), + [anon_sym_ATselector] = ACTIONS(2638), + [anon_sym_ATavailable] = ACTIONS(2638), + [anon_sym___builtin_available] = ACTIONS(2636), + [anon_sym_va_arg] = ACTIONS(2636), + [anon_sym_ATencode] = ACTIONS(2638), + [anon_sym_ATsynchronized] = ACTIONS(2638), + [anon_sym_BOOL] = ACTIONS(2636), + [anon_sym_IMP] = ACTIONS(2636), + [anon_sym_SEL] = ACTIONS(2636), + [anon_sym_Class] = ACTIONS(2636), + [anon_sym_id] = ACTIONS(2636), + }, + [620] = { + [sym_identifier] = ACTIONS(2640), + [aux_sym_preproc_include_token1] = ACTIONS(2640), + [aux_sym_preproc_include_token2] = ACTIONS(2640), + [aux_sym_preproc_def_token1] = ACTIONS(2640), + [aux_sym_preproc_if_token1] = ACTIONS(2640), + [aux_sym_preproc_if_token2] = ACTIONS(2640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2640), + [sym_preproc_directive] = ACTIONS(2640), + [anon_sym_LPAREN2] = ACTIONS(2642), + [anon_sym_BANG] = ACTIONS(2642), + [anon_sym_TILDE] = ACTIONS(2642), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2642), + [anon_sym_CARET] = ACTIONS(2642), + [anon_sym_AMP] = ACTIONS(2642), + [anon_sym_SEMI] = ACTIONS(2642), + [anon_sym___extension__] = ACTIONS(2640), + [anon_sym_typedef] = ACTIONS(2640), + [anon_sym_extern] = ACTIONS(2640), + [anon_sym___attribute__] = ACTIONS(2640), + [anon_sym___attribute] = ACTIONS(2640), + [anon_sym_noreturn] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym___declspec] = ACTIONS(2640), + [anon_sym___cdecl] = ACTIONS(2640), + [anon_sym___clrcall] = ACTIONS(2640), + [anon_sym___stdcall] = ACTIONS(2640), + [anon_sym___fastcall] = ACTIONS(2640), + [anon_sym___thiscall] = ACTIONS(2640), + [anon_sym___vectorcall] = ACTIONS(2640), + [anon_sym_LBRACE] = ACTIONS(2642), + [anon_sym_signed] = ACTIONS(2640), + [anon_sym_unsigned] = ACTIONS(2640), + [anon_sym_long] = ACTIONS(2640), + [anon_sym_short] = ACTIONS(2640), + [anon_sym_static] = ACTIONS(2640), + [anon_sym_ATautoreleasepool] = ACTIONS(2642), + [anon_sym_auto] = ACTIONS(2640), + [anon_sym_register] = ACTIONS(2640), + [anon_sym_inline] = ACTIONS(2640), + [anon_sym___inline] = ACTIONS(2640), + [anon_sym___inline__] = ACTIONS(2640), + [anon_sym___forceinline] = ACTIONS(2640), + [anon_sym_thread_local] = ACTIONS(2640), + [anon_sym___thread] = ACTIONS(2640), + [anon_sym_CG_EXTERN] = ACTIONS(2640), + [anon_sym_CG_INLINE] = ACTIONS(2640), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2640), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2640), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2640), + [anon_sym_IBOutlet] = ACTIONS(2640), + [anon_sym_IBInspectable] = ACTIONS(2640), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2640), + [anon_sym_NS_INLINE] = ACTIONS(2640), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2640), + [anon_sym_OBJC_EXPORT] = ACTIONS(2640), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2640), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2640), + [anon_sym_const] = ACTIONS(2640), + [anon_sym_constexpr] = ACTIONS(2640), + [anon_sym_volatile] = ACTIONS(2640), + [anon_sym_restrict] = ACTIONS(2640), + [anon_sym___restrict__] = ACTIONS(2640), + [anon_sym__Atomic] = ACTIONS(2640), + [anon_sym__Noreturn] = ACTIONS(2640), + [anon_sym__Nonnull] = ACTIONS(2640), + [anon_sym_nullable] = ACTIONS(2640), + [anon_sym__Complex] = ACTIONS(2640), + [anon_sym__Nullable] = ACTIONS(2640), + [anon_sym__Nullable_result] = ACTIONS(2640), + [anon_sym__Null_unspecified] = ACTIONS(2640), + [anon_sym___autoreleasing] = ACTIONS(2640), + [anon_sym___block] = ACTIONS(2640), + [anon_sym___bridge] = ACTIONS(2640), + [anon_sym___bridge_retained] = ACTIONS(2640), + [anon_sym___bridge_transfer] = ACTIONS(2640), + [anon_sym___complex] = ACTIONS(2640), + [anon_sym___const] = ACTIONS(2640), + [anon_sym___imag] = ACTIONS(2640), + [anon_sym___kindof] = ACTIONS(2640), + [anon_sym___nonnull] = ACTIONS(2640), + [anon_sym___nullable] = ACTIONS(2640), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2640), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2640), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2640), + [anon_sym___real] = ACTIONS(2640), + [anon_sym___strong] = ACTIONS(2640), + [anon_sym___unsafe_unretained] = ACTIONS(2640), + [anon_sym___unused] = ACTIONS(2640), + [anon_sym___weak] = ACTIONS(2640), + [anon_sym_alignas] = ACTIONS(2640), + [anon_sym__Alignas] = ACTIONS(2640), + [sym_primitive_type] = ACTIONS(2640), + [anon_sym_enum] = ACTIONS(2640), + [anon_sym_struct] = ACTIONS(2640), + [anon_sym_union] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_switch] = ACTIONS(2640), + [anon_sym_case] = ACTIONS(2640), + [anon_sym_default] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_in] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_break] = ACTIONS(2640), + [anon_sym_continue] = ACTIONS(2640), + [anon_sym_goto] = ACTIONS(2640), + [anon_sym_DASH_DASH] = ACTIONS(2642), + [anon_sym_PLUS_PLUS] = ACTIONS(2642), + [anon_sym_sizeof] = ACTIONS(2640), + [anon_sym___alignof__] = ACTIONS(2640), + [anon_sym___alignof] = ACTIONS(2640), + [anon_sym__alignof] = ACTIONS(2640), + [anon_sym_alignof] = ACTIONS(2640), + [anon_sym__Alignof] = ACTIONS(2640), + [anon_sym_offsetof] = ACTIONS(2640), + [anon_sym__Generic] = ACTIONS(2640), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [anon_sym___asm] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2642), + [anon_sym_u_SQUOTE] = ACTIONS(2642), + [anon_sym_U_SQUOTE] = ACTIONS(2642), + [anon_sym_u8_SQUOTE] = ACTIONS(2642), + [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_AT] = ACTIONS(2640), + [anon_sym_DQUOTE] = ACTIONS(2642), + [anon_sym_L_DQUOTE] = ACTIONS(2642), + [anon_sym_u_DQUOTE] = ACTIONS(2642), + [anon_sym_U_DQUOTE] = ACTIONS(2642), + [anon_sym_u8_DQUOTE] = ACTIONS(2642), + [sym_true] = ACTIONS(2640), + [sym_false] = ACTIONS(2640), + [anon_sym_NULL] = ACTIONS(2640), + [anon_sym_nullptr] = ACTIONS(2640), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2640), + [anon_sym___typeof] = ACTIONS(2640), + [anon_sym_typeof] = ACTIONS(2640), + [anon_sym_ATimport] = ACTIONS(2642), + [aux_sym_preproc_undef_token1] = ACTIONS(2640), + [anon_sym_POUND] = ACTIONS(2640), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2640), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2640), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2640), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2640), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2640), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2640), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2640), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2640), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2640), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2640), + [anon_sym_NS_AVAILABLE] = ACTIONS(2640), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2640), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2640), + [anon_sym_API_AVAILABLE] = ACTIONS(2640), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2640), + [anon_sym_API_DEPRECATED] = ACTIONS(2640), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2640), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2640), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2640), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2640), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2640), + [anon_sym___deprecated_msg] = ACTIONS(2640), + [anon_sym___deprecated_enum_msg] = ACTIONS(2640), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2640), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2640), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2640), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2640), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2640), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2640), + [anon_sym_ATprotocol] = ACTIONS(2642), + [anon_sym_ATinterface] = ACTIONS(2642), + [anon_sym_ATimplementation] = ACTIONS(2642), + [anon_sym_ATcompatibility_alias] = ACTIONS(2642), + [anon_sym_ATsynthesize] = ACTIONS(2642), + [anon_sym_ATdynamic] = ACTIONS(2642), + [anon_sym_ATtry] = ACTIONS(2642), + [anon_sym___try] = ACTIONS(2640), + [anon_sym_ATthrow] = ACTIONS(2642), + [anon_sym_ATselector] = ACTIONS(2642), + [anon_sym_ATavailable] = ACTIONS(2642), + [anon_sym___builtin_available] = ACTIONS(2640), + [anon_sym_va_arg] = ACTIONS(2640), + [anon_sym_ATencode] = ACTIONS(2642), + [anon_sym_ATsynchronized] = ACTIONS(2642), + [anon_sym_BOOL] = ACTIONS(2640), + [anon_sym_IMP] = ACTIONS(2640), + [anon_sym_SEL] = ACTIONS(2640), + [anon_sym_Class] = ACTIONS(2640), + [anon_sym_id] = ACTIONS(2640), + }, + [621] = { + [sym_identifier] = ACTIONS(2644), + [aux_sym_preproc_include_token1] = ACTIONS(2644), + [aux_sym_preproc_include_token2] = ACTIONS(2644), + [aux_sym_preproc_def_token1] = ACTIONS(2644), + [aux_sym_preproc_if_token1] = ACTIONS(2644), + [aux_sym_preproc_if_token2] = ACTIONS(2644), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2644), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2644), + [sym_preproc_directive] = ACTIONS(2644), + [anon_sym_LPAREN2] = ACTIONS(2646), + [anon_sym_BANG] = ACTIONS(2646), + [anon_sym_TILDE] = ACTIONS(2646), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_PLUS] = ACTIONS(2644), + [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_CARET] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2646), + [anon_sym_SEMI] = ACTIONS(2646), + [anon_sym___extension__] = ACTIONS(2644), + [anon_sym_typedef] = ACTIONS(2644), + [anon_sym_extern] = ACTIONS(2644), + [anon_sym___attribute__] = ACTIONS(2644), + [anon_sym___attribute] = ACTIONS(2644), + [anon_sym_noreturn] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2646), + [anon_sym___declspec] = ACTIONS(2644), + [anon_sym___cdecl] = ACTIONS(2644), + [anon_sym___clrcall] = ACTIONS(2644), + [anon_sym___stdcall] = ACTIONS(2644), + [anon_sym___fastcall] = ACTIONS(2644), + [anon_sym___thiscall] = ACTIONS(2644), + [anon_sym___vectorcall] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2646), + [anon_sym_signed] = ACTIONS(2644), + [anon_sym_unsigned] = ACTIONS(2644), + [anon_sym_long] = ACTIONS(2644), + [anon_sym_short] = ACTIONS(2644), + [anon_sym_static] = ACTIONS(2644), + [anon_sym_ATautoreleasepool] = ACTIONS(2646), + [anon_sym_auto] = ACTIONS(2644), + [anon_sym_register] = ACTIONS(2644), + [anon_sym_inline] = ACTIONS(2644), + [anon_sym___inline] = ACTIONS(2644), + [anon_sym___inline__] = ACTIONS(2644), + [anon_sym___forceinline] = ACTIONS(2644), + [anon_sym_thread_local] = ACTIONS(2644), + [anon_sym___thread] = ACTIONS(2644), + [anon_sym_CG_EXTERN] = ACTIONS(2644), + [anon_sym_CG_INLINE] = ACTIONS(2644), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2644), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2644), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2644), + [anon_sym_IBOutlet] = ACTIONS(2644), + [anon_sym_IBInspectable] = ACTIONS(2644), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2644), + [anon_sym_NS_INLINE] = ACTIONS(2644), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2644), + [anon_sym_OBJC_EXPORT] = ACTIONS(2644), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2644), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2644), + [anon_sym_const] = ACTIONS(2644), + [anon_sym_constexpr] = ACTIONS(2644), + [anon_sym_volatile] = ACTIONS(2644), + [anon_sym_restrict] = ACTIONS(2644), + [anon_sym___restrict__] = ACTIONS(2644), + [anon_sym__Atomic] = ACTIONS(2644), + [anon_sym__Noreturn] = ACTIONS(2644), + [anon_sym__Nonnull] = ACTIONS(2644), + [anon_sym_nullable] = ACTIONS(2644), + [anon_sym__Complex] = ACTIONS(2644), + [anon_sym__Nullable] = ACTIONS(2644), + [anon_sym__Nullable_result] = ACTIONS(2644), + [anon_sym__Null_unspecified] = ACTIONS(2644), + [anon_sym___autoreleasing] = ACTIONS(2644), + [anon_sym___block] = ACTIONS(2644), + [anon_sym___bridge] = ACTIONS(2644), + [anon_sym___bridge_retained] = ACTIONS(2644), + [anon_sym___bridge_transfer] = ACTIONS(2644), + [anon_sym___complex] = ACTIONS(2644), + [anon_sym___const] = ACTIONS(2644), + [anon_sym___imag] = ACTIONS(2644), + [anon_sym___kindof] = ACTIONS(2644), + [anon_sym___nonnull] = ACTIONS(2644), + [anon_sym___nullable] = ACTIONS(2644), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2644), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2644), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2644), + [anon_sym___real] = ACTIONS(2644), + [anon_sym___strong] = ACTIONS(2644), + [anon_sym___unsafe_unretained] = ACTIONS(2644), + [anon_sym___unused] = ACTIONS(2644), + [anon_sym___weak] = ACTIONS(2644), + [anon_sym_alignas] = ACTIONS(2644), + [anon_sym__Alignas] = ACTIONS(2644), + [sym_primitive_type] = ACTIONS(2644), + [anon_sym_enum] = ACTIONS(2644), + [anon_sym_struct] = ACTIONS(2644), + [anon_sym_union] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_switch] = ACTIONS(2644), + [anon_sym_case] = ACTIONS(2644), + [anon_sym_default] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_do] = ACTIONS(2644), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_in] = ACTIONS(2644), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_break] = ACTIONS(2644), + [anon_sym_continue] = ACTIONS(2644), + [anon_sym_goto] = ACTIONS(2644), + [anon_sym_DASH_DASH] = ACTIONS(2646), + [anon_sym_PLUS_PLUS] = ACTIONS(2646), + [anon_sym_sizeof] = ACTIONS(2644), + [anon_sym___alignof__] = ACTIONS(2644), + [anon_sym___alignof] = ACTIONS(2644), + [anon_sym__alignof] = ACTIONS(2644), + [anon_sym_alignof] = ACTIONS(2644), + [anon_sym__Alignof] = ACTIONS(2644), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2644), + [anon_sym_asm] = ACTIONS(2644), + [anon_sym___asm__] = ACTIONS(2644), + [anon_sym___asm] = ACTIONS(2644), + [sym_number_literal] = ACTIONS(2646), + [anon_sym_L_SQUOTE] = ACTIONS(2646), + [anon_sym_u_SQUOTE] = ACTIONS(2646), + [anon_sym_U_SQUOTE] = ACTIONS(2646), + [anon_sym_u8_SQUOTE] = ACTIONS(2646), + [anon_sym_SQUOTE] = ACTIONS(2646), + [anon_sym_AT] = ACTIONS(2644), + [anon_sym_DQUOTE] = ACTIONS(2646), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2644), + [sym_false] = ACTIONS(2644), + [anon_sym_NULL] = ACTIONS(2644), + [anon_sym_nullptr] = ACTIONS(2644), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2644), + [anon_sym___typeof] = ACTIONS(2644), + [anon_sym_typeof] = ACTIONS(2644), + [anon_sym_ATimport] = ACTIONS(2646), + [aux_sym_preproc_undef_token1] = ACTIONS(2644), + [anon_sym_POUND] = ACTIONS(2644), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2644), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2644), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2644), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2644), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2644), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2644), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2644), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2644), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2644), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2644), + [anon_sym_NS_AVAILABLE] = ACTIONS(2644), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2644), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2644), + [anon_sym_API_AVAILABLE] = ACTIONS(2644), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2644), + [anon_sym_API_DEPRECATED] = ACTIONS(2644), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2644), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2644), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2644), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2644), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2644), + [anon_sym___deprecated_msg] = ACTIONS(2644), + [anon_sym___deprecated_enum_msg] = ACTIONS(2644), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2644), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2644), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2644), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2644), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2644), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2644), + [anon_sym_ATprotocol] = ACTIONS(2646), + [anon_sym_ATinterface] = ACTIONS(2646), + [anon_sym_ATimplementation] = ACTIONS(2646), + [anon_sym_ATcompatibility_alias] = ACTIONS(2646), + [anon_sym_ATsynthesize] = ACTIONS(2646), + [anon_sym_ATdynamic] = ACTIONS(2646), + [anon_sym_ATtry] = ACTIONS(2646), + [anon_sym___try] = ACTIONS(2644), + [anon_sym_ATthrow] = ACTIONS(2646), + [anon_sym_ATselector] = ACTIONS(2646), + [anon_sym_ATavailable] = ACTIONS(2646), + [anon_sym___builtin_available] = ACTIONS(2644), + [anon_sym_va_arg] = ACTIONS(2644), + [anon_sym_ATencode] = ACTIONS(2646), + [anon_sym_ATsynchronized] = ACTIONS(2646), + [anon_sym_BOOL] = ACTIONS(2644), + [anon_sym_IMP] = ACTIONS(2644), + [anon_sym_SEL] = ACTIONS(2644), + [anon_sym_Class] = ACTIONS(2644), + [anon_sym_id] = ACTIONS(2644), + }, + [622] = { + [sym_identifier] = ACTIONS(2648), + [aux_sym_preproc_include_token1] = ACTIONS(2648), + [aux_sym_preproc_include_token2] = ACTIONS(2648), + [aux_sym_preproc_def_token1] = ACTIONS(2648), + [aux_sym_preproc_if_token1] = ACTIONS(2648), + [aux_sym_preproc_if_token2] = ACTIONS(2648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2648), + [sym_preproc_directive] = ACTIONS(2648), + [anon_sym_LPAREN2] = ACTIONS(2650), + [anon_sym_BANG] = ACTIONS(2650), + [anon_sym_TILDE] = ACTIONS(2650), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_PLUS] = ACTIONS(2648), + [anon_sym_STAR] = ACTIONS(2650), + [anon_sym_CARET] = ACTIONS(2650), + [anon_sym_AMP] = ACTIONS(2650), + [anon_sym_SEMI] = ACTIONS(2650), + [anon_sym___extension__] = ACTIONS(2648), + [anon_sym_typedef] = ACTIONS(2648), + [anon_sym_extern] = ACTIONS(2648), + [anon_sym___attribute__] = ACTIONS(2648), + [anon_sym___attribute] = ACTIONS(2648), + [anon_sym_noreturn] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(2650), + [anon_sym___declspec] = ACTIONS(2648), + [anon_sym___cdecl] = ACTIONS(2648), + [anon_sym___clrcall] = ACTIONS(2648), + [anon_sym___stdcall] = ACTIONS(2648), + [anon_sym___fastcall] = ACTIONS(2648), + [anon_sym___thiscall] = ACTIONS(2648), + [anon_sym___vectorcall] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2650), + [anon_sym_signed] = ACTIONS(2648), + [anon_sym_unsigned] = ACTIONS(2648), + [anon_sym_long] = ACTIONS(2648), + [anon_sym_short] = ACTIONS(2648), + [anon_sym_static] = ACTIONS(2648), + [anon_sym_ATautoreleasepool] = ACTIONS(2650), + [anon_sym_auto] = ACTIONS(2648), + [anon_sym_register] = ACTIONS(2648), + [anon_sym_inline] = ACTIONS(2648), + [anon_sym___inline] = ACTIONS(2648), + [anon_sym___inline__] = ACTIONS(2648), + [anon_sym___forceinline] = ACTIONS(2648), + [anon_sym_thread_local] = ACTIONS(2648), + [anon_sym___thread] = ACTIONS(2648), + [anon_sym_CG_EXTERN] = ACTIONS(2648), + [anon_sym_CG_INLINE] = ACTIONS(2648), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2648), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2648), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2648), + [anon_sym_IBOutlet] = ACTIONS(2648), + [anon_sym_IBInspectable] = ACTIONS(2648), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2648), + [anon_sym_NS_INLINE] = ACTIONS(2648), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2648), + [anon_sym_OBJC_EXPORT] = ACTIONS(2648), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2648), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2648), + [anon_sym_const] = ACTIONS(2648), + [anon_sym_constexpr] = ACTIONS(2648), + [anon_sym_volatile] = ACTIONS(2648), + [anon_sym_restrict] = ACTIONS(2648), + [anon_sym___restrict__] = ACTIONS(2648), + [anon_sym__Atomic] = ACTIONS(2648), + [anon_sym__Noreturn] = ACTIONS(2648), + [anon_sym__Nonnull] = ACTIONS(2648), + [anon_sym_nullable] = ACTIONS(2648), + [anon_sym__Complex] = ACTIONS(2648), + [anon_sym__Nullable] = ACTIONS(2648), + [anon_sym__Nullable_result] = ACTIONS(2648), + [anon_sym__Null_unspecified] = ACTIONS(2648), + [anon_sym___autoreleasing] = ACTIONS(2648), + [anon_sym___block] = ACTIONS(2648), + [anon_sym___bridge] = ACTIONS(2648), + [anon_sym___bridge_retained] = ACTIONS(2648), + [anon_sym___bridge_transfer] = ACTIONS(2648), + [anon_sym___complex] = ACTIONS(2648), + [anon_sym___const] = ACTIONS(2648), + [anon_sym___imag] = ACTIONS(2648), + [anon_sym___kindof] = ACTIONS(2648), + [anon_sym___nonnull] = ACTIONS(2648), + [anon_sym___nullable] = ACTIONS(2648), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2648), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2648), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2648), + [anon_sym___real] = ACTIONS(2648), + [anon_sym___strong] = ACTIONS(2648), + [anon_sym___unsafe_unretained] = ACTIONS(2648), + [anon_sym___unused] = ACTIONS(2648), + [anon_sym___weak] = ACTIONS(2648), + [anon_sym_alignas] = ACTIONS(2648), + [anon_sym__Alignas] = ACTIONS(2648), + [sym_primitive_type] = ACTIONS(2648), + [anon_sym_enum] = ACTIONS(2648), + [anon_sym_struct] = ACTIONS(2648), + [anon_sym_union] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2648), + [anon_sym_switch] = ACTIONS(2648), + [anon_sym_case] = ACTIONS(2648), + [anon_sym_default] = ACTIONS(2648), + [anon_sym_while] = ACTIONS(2648), + [anon_sym_do] = ACTIONS(2648), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_in] = ACTIONS(2648), + [anon_sym_return] = ACTIONS(2648), + [anon_sym_break] = ACTIONS(2648), + [anon_sym_continue] = ACTIONS(2648), + [anon_sym_goto] = ACTIONS(2648), + [anon_sym_DASH_DASH] = ACTIONS(2650), + [anon_sym_PLUS_PLUS] = ACTIONS(2650), + [anon_sym_sizeof] = ACTIONS(2648), + [anon_sym___alignof__] = ACTIONS(2648), + [anon_sym___alignof] = ACTIONS(2648), + [anon_sym__alignof] = ACTIONS(2648), + [anon_sym_alignof] = ACTIONS(2648), + [anon_sym__Alignof] = ACTIONS(2648), + [anon_sym_offsetof] = ACTIONS(2648), + [anon_sym__Generic] = ACTIONS(2648), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [anon_sym___asm] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2650), + [anon_sym_u_SQUOTE] = ACTIONS(2650), + [anon_sym_U_SQUOTE] = ACTIONS(2650), + [anon_sym_u8_SQUOTE] = ACTIONS(2650), + [anon_sym_SQUOTE] = ACTIONS(2650), + [anon_sym_AT] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(2650), + [anon_sym_L_DQUOTE] = ACTIONS(2650), + [anon_sym_u_DQUOTE] = ACTIONS(2650), + [anon_sym_U_DQUOTE] = ACTIONS(2650), + [anon_sym_u8_DQUOTE] = ACTIONS(2650), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2648), + [anon_sym_nullptr] = ACTIONS(2648), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2648), + [anon_sym___typeof] = ACTIONS(2648), + [anon_sym_typeof] = ACTIONS(2648), + [anon_sym_ATimport] = ACTIONS(2650), + [aux_sym_preproc_undef_token1] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(2648), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2648), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2648), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2648), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2648), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2648), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2648), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2648), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2648), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2648), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2648), + [anon_sym_NS_AVAILABLE] = ACTIONS(2648), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2648), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2648), + [anon_sym_API_AVAILABLE] = ACTIONS(2648), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2648), + [anon_sym_API_DEPRECATED] = ACTIONS(2648), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2648), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2648), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2648), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2648), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2648), + [anon_sym___deprecated_msg] = ACTIONS(2648), + [anon_sym___deprecated_enum_msg] = ACTIONS(2648), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2648), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2648), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2648), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2648), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2648), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2648), + [anon_sym_ATprotocol] = ACTIONS(2650), + [anon_sym_ATinterface] = ACTIONS(2650), + [anon_sym_ATimplementation] = ACTIONS(2650), + [anon_sym_ATcompatibility_alias] = ACTIONS(2650), + [anon_sym_ATsynthesize] = ACTIONS(2650), + [anon_sym_ATdynamic] = ACTIONS(2650), + [anon_sym_ATtry] = ACTIONS(2650), + [anon_sym___try] = ACTIONS(2648), + [anon_sym_ATthrow] = ACTIONS(2650), + [anon_sym_ATselector] = ACTIONS(2650), + [anon_sym_ATavailable] = ACTIONS(2650), + [anon_sym___builtin_available] = ACTIONS(2648), + [anon_sym_va_arg] = ACTIONS(2648), + [anon_sym_ATencode] = ACTIONS(2650), + [anon_sym_ATsynchronized] = ACTIONS(2650), + [anon_sym_BOOL] = ACTIONS(2648), + [anon_sym_IMP] = ACTIONS(2648), + [anon_sym_SEL] = ACTIONS(2648), + [anon_sym_Class] = ACTIONS(2648), + [anon_sym_id] = ACTIONS(2648), + }, + [623] = { + [sym_identifier] = ACTIONS(2656), + [aux_sym_preproc_include_token1] = ACTIONS(2656), + [aux_sym_preproc_include_token2] = ACTIONS(2656), + [aux_sym_preproc_def_token1] = ACTIONS(2656), + [aux_sym_preproc_if_token1] = ACTIONS(2656), + [aux_sym_preproc_if_token2] = ACTIONS(2656), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2656), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2656), + [sym_preproc_directive] = ACTIONS(2656), + [anon_sym_LPAREN2] = ACTIONS(2658), + [anon_sym_BANG] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2656), + [anon_sym_PLUS] = ACTIONS(2656), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_CARET] = ACTIONS(2658), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym___extension__] = ACTIONS(2656), + [anon_sym_typedef] = ACTIONS(2656), + [anon_sym_extern] = ACTIONS(2656), + [anon_sym___attribute__] = ACTIONS(2656), + [anon_sym___attribute] = ACTIONS(2656), + [anon_sym_noreturn] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym___declspec] = ACTIONS(2656), + [anon_sym___cdecl] = ACTIONS(2656), + [anon_sym___clrcall] = ACTIONS(2656), + [anon_sym___stdcall] = ACTIONS(2656), + [anon_sym___fastcall] = ACTIONS(2656), + [anon_sym___thiscall] = ACTIONS(2656), + [anon_sym___vectorcall] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_signed] = ACTIONS(2656), + [anon_sym_unsigned] = ACTIONS(2656), + [anon_sym_long] = ACTIONS(2656), + [anon_sym_short] = ACTIONS(2656), + [anon_sym_static] = ACTIONS(2656), + [anon_sym_ATautoreleasepool] = ACTIONS(2658), + [anon_sym_auto] = ACTIONS(2656), + [anon_sym_register] = ACTIONS(2656), + [anon_sym_inline] = ACTIONS(2656), + [anon_sym___inline] = ACTIONS(2656), + [anon_sym___inline__] = ACTIONS(2656), + [anon_sym___forceinline] = ACTIONS(2656), + [anon_sym_thread_local] = ACTIONS(2656), + [anon_sym___thread] = ACTIONS(2656), + [anon_sym_CG_EXTERN] = ACTIONS(2656), + [anon_sym_CG_INLINE] = ACTIONS(2656), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2656), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2656), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2656), + [anon_sym_IBOutlet] = ACTIONS(2656), + [anon_sym_IBInspectable] = ACTIONS(2656), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2656), + [anon_sym_NS_INLINE] = ACTIONS(2656), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2656), + [anon_sym_OBJC_EXPORT] = ACTIONS(2656), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2656), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2656), + [anon_sym_const] = ACTIONS(2656), + [anon_sym_constexpr] = ACTIONS(2656), + [anon_sym_volatile] = ACTIONS(2656), + [anon_sym_restrict] = ACTIONS(2656), + [anon_sym___restrict__] = ACTIONS(2656), + [anon_sym__Atomic] = ACTIONS(2656), + [anon_sym__Noreturn] = ACTIONS(2656), + [anon_sym__Nonnull] = ACTIONS(2656), + [anon_sym_nullable] = ACTIONS(2656), + [anon_sym__Complex] = ACTIONS(2656), + [anon_sym__Nullable] = ACTIONS(2656), + [anon_sym__Nullable_result] = ACTIONS(2656), + [anon_sym__Null_unspecified] = ACTIONS(2656), + [anon_sym___autoreleasing] = ACTIONS(2656), + [anon_sym___block] = ACTIONS(2656), + [anon_sym___bridge] = ACTIONS(2656), + [anon_sym___bridge_retained] = ACTIONS(2656), + [anon_sym___bridge_transfer] = ACTIONS(2656), + [anon_sym___complex] = ACTIONS(2656), + [anon_sym___const] = ACTIONS(2656), + [anon_sym___imag] = ACTIONS(2656), + [anon_sym___kindof] = ACTIONS(2656), + [anon_sym___nonnull] = ACTIONS(2656), + [anon_sym___nullable] = ACTIONS(2656), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2656), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2656), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2656), + [anon_sym___real] = ACTIONS(2656), + [anon_sym___strong] = ACTIONS(2656), + [anon_sym___unsafe_unretained] = ACTIONS(2656), + [anon_sym___unused] = ACTIONS(2656), + [anon_sym___weak] = ACTIONS(2656), + [anon_sym_alignas] = ACTIONS(2656), + [anon_sym__Alignas] = ACTIONS(2656), + [sym_primitive_type] = ACTIONS(2656), + [anon_sym_enum] = ACTIONS(2656), + [anon_sym_struct] = ACTIONS(2656), + [anon_sym_union] = ACTIONS(2656), + [anon_sym_if] = ACTIONS(2656), + [anon_sym_switch] = ACTIONS(2656), + [anon_sym_case] = ACTIONS(2656), + [anon_sym_default] = ACTIONS(2656), + [anon_sym_while] = ACTIONS(2656), + [anon_sym_do] = ACTIONS(2656), + [anon_sym_for] = ACTIONS(2656), + [anon_sym_in] = ACTIONS(2656), + [anon_sym_return] = ACTIONS(2656), + [anon_sym_break] = ACTIONS(2656), + [anon_sym_continue] = ACTIONS(2656), + [anon_sym_goto] = ACTIONS(2656), + [anon_sym_DASH_DASH] = ACTIONS(2658), + [anon_sym_PLUS_PLUS] = ACTIONS(2658), + [anon_sym_sizeof] = ACTIONS(2656), + [anon_sym___alignof__] = ACTIONS(2656), + [anon_sym___alignof] = ACTIONS(2656), + [anon_sym__alignof] = ACTIONS(2656), + [anon_sym_alignof] = ACTIONS(2656), + [anon_sym__Alignof] = ACTIONS(2656), + [anon_sym_offsetof] = ACTIONS(2656), + [anon_sym__Generic] = ACTIONS(2656), + [anon_sym_asm] = ACTIONS(2656), + [anon_sym___asm__] = ACTIONS(2656), + [anon_sym___asm] = ACTIONS(2656), + [sym_number_literal] = ACTIONS(2658), + [anon_sym_L_SQUOTE] = ACTIONS(2658), + [anon_sym_u_SQUOTE] = ACTIONS(2658), + [anon_sym_U_SQUOTE] = ACTIONS(2658), + [anon_sym_u8_SQUOTE] = ACTIONS(2658), + [anon_sym_SQUOTE] = ACTIONS(2658), + [anon_sym_AT] = ACTIONS(2656), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_L_DQUOTE] = ACTIONS(2658), + [anon_sym_u_DQUOTE] = ACTIONS(2658), + [anon_sym_U_DQUOTE] = ACTIONS(2658), + [anon_sym_u8_DQUOTE] = ACTIONS(2658), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2656), + [anon_sym_nullptr] = ACTIONS(2656), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2656), + [anon_sym___typeof] = ACTIONS(2656), + [anon_sym_typeof] = ACTIONS(2656), + [anon_sym_ATimport] = ACTIONS(2658), + [aux_sym_preproc_undef_token1] = ACTIONS(2656), + [anon_sym_POUND] = ACTIONS(2656), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2656), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2656), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2656), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2656), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2656), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2656), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2656), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2656), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2656), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2656), + [anon_sym_NS_AVAILABLE] = ACTIONS(2656), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2656), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2656), + [anon_sym_API_AVAILABLE] = ACTIONS(2656), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2656), + [anon_sym_API_DEPRECATED] = ACTIONS(2656), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2656), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2656), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2656), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2656), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2656), + [anon_sym___deprecated_msg] = ACTIONS(2656), + [anon_sym___deprecated_enum_msg] = ACTIONS(2656), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2656), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2656), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2656), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2656), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2656), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2656), + [anon_sym_ATprotocol] = ACTIONS(2658), + [anon_sym_ATinterface] = ACTIONS(2658), + [anon_sym_ATimplementation] = ACTIONS(2658), + [anon_sym_ATcompatibility_alias] = ACTIONS(2658), + [anon_sym_ATsynthesize] = ACTIONS(2658), + [anon_sym_ATdynamic] = ACTIONS(2658), + [anon_sym_ATtry] = ACTIONS(2658), + [anon_sym___try] = ACTIONS(2656), + [anon_sym_ATthrow] = ACTIONS(2658), + [anon_sym_ATselector] = ACTIONS(2658), + [anon_sym_ATavailable] = ACTIONS(2658), + [anon_sym___builtin_available] = ACTIONS(2656), + [anon_sym_va_arg] = ACTIONS(2656), + [anon_sym_ATencode] = ACTIONS(2658), + [anon_sym_ATsynchronized] = ACTIONS(2658), + [anon_sym_BOOL] = ACTIONS(2656), + [anon_sym_IMP] = ACTIONS(2656), + [anon_sym_SEL] = ACTIONS(2656), + [anon_sym_Class] = ACTIONS(2656), + [anon_sym_id] = ACTIONS(2656), + }, + [624] = { + [sym_identifier] = ACTIONS(2660), + [aux_sym_preproc_include_token1] = ACTIONS(2660), + [aux_sym_preproc_include_token2] = ACTIONS(2660), + [aux_sym_preproc_def_token1] = ACTIONS(2660), + [aux_sym_preproc_if_token1] = ACTIONS(2660), + [aux_sym_preproc_if_token2] = ACTIONS(2660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2660), + [sym_preproc_directive] = ACTIONS(2660), + [anon_sym_LPAREN2] = ACTIONS(2662), + [anon_sym_BANG] = ACTIONS(2662), + [anon_sym_TILDE] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2660), + [anon_sym_PLUS] = ACTIONS(2660), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_CARET] = ACTIONS(2662), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym___extension__] = ACTIONS(2660), + [anon_sym_typedef] = ACTIONS(2660), + [anon_sym_extern] = ACTIONS(2660), + [anon_sym___attribute__] = ACTIONS(2660), + [anon_sym___attribute] = ACTIONS(2660), + [anon_sym_noreturn] = ACTIONS(2660), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym___declspec] = ACTIONS(2660), + [anon_sym___cdecl] = ACTIONS(2660), + [anon_sym___clrcall] = ACTIONS(2660), + [anon_sym___stdcall] = ACTIONS(2660), + [anon_sym___fastcall] = ACTIONS(2660), + [anon_sym___thiscall] = ACTIONS(2660), + [anon_sym___vectorcall] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_signed] = ACTIONS(2660), + [anon_sym_unsigned] = ACTIONS(2660), + [anon_sym_long] = ACTIONS(2660), + [anon_sym_short] = ACTIONS(2660), + [anon_sym_static] = ACTIONS(2660), + [anon_sym_ATautoreleasepool] = ACTIONS(2662), + [anon_sym_auto] = ACTIONS(2660), + [anon_sym_register] = ACTIONS(2660), + [anon_sym_inline] = ACTIONS(2660), + [anon_sym___inline] = ACTIONS(2660), + [anon_sym___inline__] = ACTIONS(2660), + [anon_sym___forceinline] = ACTIONS(2660), + [anon_sym_thread_local] = ACTIONS(2660), + [anon_sym___thread] = ACTIONS(2660), + [anon_sym_CG_EXTERN] = ACTIONS(2660), + [anon_sym_CG_INLINE] = ACTIONS(2660), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2660), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2660), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2660), + [anon_sym_IBOutlet] = ACTIONS(2660), + [anon_sym_IBInspectable] = ACTIONS(2660), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2660), + [anon_sym_NS_INLINE] = ACTIONS(2660), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2660), + [anon_sym_OBJC_EXPORT] = ACTIONS(2660), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2660), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2660), + [anon_sym_const] = ACTIONS(2660), + [anon_sym_constexpr] = ACTIONS(2660), + [anon_sym_volatile] = ACTIONS(2660), + [anon_sym_restrict] = ACTIONS(2660), + [anon_sym___restrict__] = ACTIONS(2660), + [anon_sym__Atomic] = ACTIONS(2660), + [anon_sym__Noreturn] = ACTIONS(2660), + [anon_sym__Nonnull] = ACTIONS(2660), + [anon_sym_nullable] = ACTIONS(2660), + [anon_sym__Complex] = ACTIONS(2660), + [anon_sym__Nullable] = ACTIONS(2660), + [anon_sym__Nullable_result] = ACTIONS(2660), + [anon_sym__Null_unspecified] = ACTIONS(2660), + [anon_sym___autoreleasing] = ACTIONS(2660), + [anon_sym___block] = ACTIONS(2660), + [anon_sym___bridge] = ACTIONS(2660), + [anon_sym___bridge_retained] = ACTIONS(2660), + [anon_sym___bridge_transfer] = ACTIONS(2660), + [anon_sym___complex] = ACTIONS(2660), + [anon_sym___const] = ACTIONS(2660), + [anon_sym___imag] = ACTIONS(2660), + [anon_sym___kindof] = ACTIONS(2660), + [anon_sym___nonnull] = ACTIONS(2660), + [anon_sym___nullable] = ACTIONS(2660), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2660), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2660), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2660), + [anon_sym___real] = ACTIONS(2660), + [anon_sym___strong] = ACTIONS(2660), + [anon_sym___unsafe_unretained] = ACTIONS(2660), + [anon_sym___unused] = ACTIONS(2660), + [anon_sym___weak] = ACTIONS(2660), + [anon_sym_alignas] = ACTIONS(2660), + [anon_sym__Alignas] = ACTIONS(2660), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_enum] = ACTIONS(2660), + [anon_sym_struct] = ACTIONS(2660), + [anon_sym_union] = ACTIONS(2660), + [anon_sym_if] = ACTIONS(2660), + [anon_sym_switch] = ACTIONS(2660), + [anon_sym_case] = ACTIONS(2660), + [anon_sym_default] = ACTIONS(2660), + [anon_sym_while] = ACTIONS(2660), + [anon_sym_do] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2660), + [anon_sym_in] = ACTIONS(2660), + [anon_sym_return] = ACTIONS(2660), + [anon_sym_break] = ACTIONS(2660), + [anon_sym_continue] = ACTIONS(2660), + [anon_sym_goto] = ACTIONS(2660), + [anon_sym_DASH_DASH] = ACTIONS(2662), + [anon_sym_PLUS_PLUS] = ACTIONS(2662), + [anon_sym_sizeof] = ACTIONS(2660), + [anon_sym___alignof__] = ACTIONS(2660), + [anon_sym___alignof] = ACTIONS(2660), + [anon_sym__alignof] = ACTIONS(2660), + [anon_sym_alignof] = ACTIONS(2660), + [anon_sym__Alignof] = ACTIONS(2660), + [anon_sym_offsetof] = ACTIONS(2660), + [anon_sym__Generic] = ACTIONS(2660), + [anon_sym_asm] = ACTIONS(2660), + [anon_sym___asm__] = ACTIONS(2660), + [anon_sym___asm] = ACTIONS(2660), + [sym_number_literal] = ACTIONS(2662), + [anon_sym_L_SQUOTE] = ACTIONS(2662), + [anon_sym_u_SQUOTE] = ACTIONS(2662), + [anon_sym_U_SQUOTE] = ACTIONS(2662), + [anon_sym_u8_SQUOTE] = ACTIONS(2662), + [anon_sym_SQUOTE] = ACTIONS(2662), + [anon_sym_AT] = ACTIONS(2660), + [anon_sym_DQUOTE] = ACTIONS(2662), + [anon_sym_L_DQUOTE] = ACTIONS(2662), + [anon_sym_u_DQUOTE] = ACTIONS(2662), + [anon_sym_U_DQUOTE] = ACTIONS(2662), + [anon_sym_u8_DQUOTE] = ACTIONS(2662), + [sym_true] = ACTIONS(2660), + [sym_false] = ACTIONS(2660), + [anon_sym_NULL] = ACTIONS(2660), + [anon_sym_nullptr] = ACTIONS(2660), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2660), + [anon_sym___typeof] = ACTIONS(2660), + [anon_sym_typeof] = ACTIONS(2660), + [anon_sym_ATimport] = ACTIONS(2662), + [aux_sym_preproc_undef_token1] = ACTIONS(2660), + [anon_sym_POUND] = ACTIONS(2660), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2660), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2660), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2660), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2660), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2660), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2660), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2660), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2660), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2660), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2660), + [anon_sym_NS_AVAILABLE] = ACTIONS(2660), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2660), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2660), + [anon_sym_API_AVAILABLE] = ACTIONS(2660), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2660), + [anon_sym_API_DEPRECATED] = ACTIONS(2660), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2660), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2660), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2660), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2660), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2660), + [anon_sym___deprecated_msg] = ACTIONS(2660), + [anon_sym___deprecated_enum_msg] = ACTIONS(2660), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2660), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2660), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2660), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2660), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2660), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2660), + [anon_sym_ATprotocol] = ACTIONS(2662), + [anon_sym_ATinterface] = ACTIONS(2662), + [anon_sym_ATimplementation] = ACTIONS(2662), + [anon_sym_ATcompatibility_alias] = ACTIONS(2662), + [anon_sym_ATsynthesize] = ACTIONS(2662), + [anon_sym_ATdynamic] = ACTIONS(2662), + [anon_sym_ATtry] = ACTIONS(2662), + [anon_sym___try] = ACTIONS(2660), + [anon_sym_ATthrow] = ACTIONS(2662), + [anon_sym_ATselector] = ACTIONS(2662), + [anon_sym_ATavailable] = ACTIONS(2662), + [anon_sym___builtin_available] = ACTIONS(2660), + [anon_sym_va_arg] = ACTIONS(2660), + [anon_sym_ATencode] = ACTIONS(2662), + [anon_sym_ATsynchronized] = ACTIONS(2662), + [anon_sym_BOOL] = ACTIONS(2660), + [anon_sym_IMP] = ACTIONS(2660), + [anon_sym_SEL] = ACTIONS(2660), + [anon_sym_Class] = ACTIONS(2660), + [anon_sym_id] = ACTIONS(2660), + }, + [625] = { + [sym_identifier] = ACTIONS(2672), + [aux_sym_preproc_include_token1] = ACTIONS(2672), + [aux_sym_preproc_include_token2] = ACTIONS(2672), + [aux_sym_preproc_def_token1] = ACTIONS(2672), + [aux_sym_preproc_if_token1] = ACTIONS(2672), + [aux_sym_preproc_if_token2] = ACTIONS(2672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2672), + [sym_preproc_directive] = ACTIONS(2672), + [anon_sym_LPAREN2] = ACTIONS(2674), + [anon_sym_BANG] = ACTIONS(2674), + [anon_sym_TILDE] = ACTIONS(2674), + [anon_sym_DASH] = ACTIONS(2672), + [anon_sym_PLUS] = ACTIONS(2672), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_CARET] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2674), + [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym___extension__] = ACTIONS(2672), + [anon_sym_typedef] = ACTIONS(2672), + [anon_sym_extern] = ACTIONS(2672), + [anon_sym___attribute__] = ACTIONS(2672), + [anon_sym___attribute] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(2674), + [anon_sym___declspec] = ACTIONS(2672), + [anon_sym___cdecl] = ACTIONS(2672), + [anon_sym___clrcall] = ACTIONS(2672), + [anon_sym___stdcall] = ACTIONS(2672), + [anon_sym___fastcall] = ACTIONS(2672), + [anon_sym___thiscall] = ACTIONS(2672), + [anon_sym___vectorcall] = ACTIONS(2672), + [anon_sym_LBRACE] = ACTIONS(2674), + [anon_sym_signed] = ACTIONS(2672), + [anon_sym_unsigned] = ACTIONS(2672), + [anon_sym_long] = ACTIONS(2672), + [anon_sym_short] = ACTIONS(2672), + [anon_sym_static] = ACTIONS(2672), + [anon_sym_ATautoreleasepool] = ACTIONS(2674), + [anon_sym_auto] = ACTIONS(2672), + [anon_sym_register] = ACTIONS(2672), + [anon_sym_inline] = ACTIONS(2672), + [anon_sym___inline] = ACTIONS(2672), + [anon_sym___inline__] = ACTIONS(2672), + [anon_sym___forceinline] = ACTIONS(2672), + [anon_sym_thread_local] = ACTIONS(2672), + [anon_sym___thread] = ACTIONS(2672), + [anon_sym_CG_EXTERN] = ACTIONS(2672), + [anon_sym_CG_INLINE] = ACTIONS(2672), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2672), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2672), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2672), + [anon_sym_IBOutlet] = ACTIONS(2672), + [anon_sym_IBInspectable] = ACTIONS(2672), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2672), + [anon_sym_NS_INLINE] = ACTIONS(2672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2672), + [anon_sym_OBJC_EXPORT] = ACTIONS(2672), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2672), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2672), + [anon_sym_const] = ACTIONS(2672), + [anon_sym_constexpr] = ACTIONS(2672), + [anon_sym_volatile] = ACTIONS(2672), + [anon_sym_restrict] = ACTIONS(2672), + [anon_sym___restrict__] = ACTIONS(2672), + [anon_sym__Atomic] = ACTIONS(2672), + [anon_sym__Noreturn] = ACTIONS(2672), + [anon_sym__Nonnull] = ACTIONS(2672), + [anon_sym_nullable] = ACTIONS(2672), + [anon_sym__Complex] = ACTIONS(2672), + [anon_sym__Nullable] = ACTIONS(2672), + [anon_sym__Nullable_result] = ACTIONS(2672), + [anon_sym__Null_unspecified] = ACTIONS(2672), + [anon_sym___autoreleasing] = ACTIONS(2672), + [anon_sym___block] = ACTIONS(2672), + [anon_sym___bridge] = ACTIONS(2672), + [anon_sym___bridge_retained] = ACTIONS(2672), + [anon_sym___bridge_transfer] = ACTIONS(2672), + [anon_sym___complex] = ACTIONS(2672), + [anon_sym___const] = ACTIONS(2672), + [anon_sym___imag] = ACTIONS(2672), + [anon_sym___kindof] = ACTIONS(2672), + [anon_sym___nonnull] = ACTIONS(2672), + [anon_sym___nullable] = ACTIONS(2672), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2672), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2672), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2672), + [anon_sym___real] = ACTIONS(2672), + [anon_sym___strong] = ACTIONS(2672), + [anon_sym___unsafe_unretained] = ACTIONS(2672), + [anon_sym___unused] = ACTIONS(2672), + [anon_sym___weak] = ACTIONS(2672), + [anon_sym_alignas] = ACTIONS(2672), + [anon_sym__Alignas] = ACTIONS(2672), + [sym_primitive_type] = ACTIONS(2672), + [anon_sym_enum] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_union] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_switch] = ACTIONS(2672), + [anon_sym_case] = ACTIONS(2672), + [anon_sym_default] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_do] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_in] = ACTIONS(2672), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_goto] = ACTIONS(2672), + [anon_sym_DASH_DASH] = ACTIONS(2674), + [anon_sym_PLUS_PLUS] = ACTIONS(2674), + [anon_sym_sizeof] = ACTIONS(2672), + [anon_sym___alignof__] = ACTIONS(2672), + [anon_sym___alignof] = ACTIONS(2672), + [anon_sym__alignof] = ACTIONS(2672), + [anon_sym_alignof] = ACTIONS(2672), + [anon_sym__Alignof] = ACTIONS(2672), + [anon_sym_offsetof] = ACTIONS(2672), + [anon_sym__Generic] = ACTIONS(2672), + [anon_sym_asm] = ACTIONS(2672), + [anon_sym___asm__] = ACTIONS(2672), + [anon_sym___asm] = ACTIONS(2672), + [sym_number_literal] = ACTIONS(2674), + [anon_sym_L_SQUOTE] = ACTIONS(2674), + [anon_sym_u_SQUOTE] = ACTIONS(2674), + [anon_sym_U_SQUOTE] = ACTIONS(2674), + [anon_sym_u8_SQUOTE] = ACTIONS(2674), + [anon_sym_SQUOTE] = ACTIONS(2674), + [anon_sym_AT] = ACTIONS(2672), + [anon_sym_DQUOTE] = ACTIONS(2674), + [anon_sym_L_DQUOTE] = ACTIONS(2674), + [anon_sym_u_DQUOTE] = ACTIONS(2674), + [anon_sym_U_DQUOTE] = ACTIONS(2674), + [anon_sym_u8_DQUOTE] = ACTIONS(2674), + [sym_true] = ACTIONS(2672), + [sym_false] = ACTIONS(2672), + [anon_sym_NULL] = ACTIONS(2672), + [anon_sym_nullptr] = ACTIONS(2672), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2672), + [anon_sym___typeof] = ACTIONS(2672), + [anon_sym_typeof] = ACTIONS(2672), + [anon_sym_ATimport] = ACTIONS(2674), + [aux_sym_preproc_undef_token1] = ACTIONS(2672), + [anon_sym_POUND] = ACTIONS(2672), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2672), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2672), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2672), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2672), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2672), + [anon_sym_NS_AVAILABLE] = ACTIONS(2672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2672), + [anon_sym_API_AVAILABLE] = ACTIONS(2672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2672), + [anon_sym_API_DEPRECATED] = ACTIONS(2672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2672), + [anon_sym___deprecated_msg] = ACTIONS(2672), + [anon_sym___deprecated_enum_msg] = ACTIONS(2672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2672), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2672), + [anon_sym_ATprotocol] = ACTIONS(2674), + [anon_sym_ATinterface] = ACTIONS(2674), + [anon_sym_ATimplementation] = ACTIONS(2674), + [anon_sym_ATcompatibility_alias] = ACTIONS(2674), + [anon_sym_ATsynthesize] = ACTIONS(2674), + [anon_sym_ATdynamic] = ACTIONS(2674), + [anon_sym_ATtry] = ACTIONS(2674), + [anon_sym___try] = ACTIONS(2672), + [anon_sym_ATthrow] = ACTIONS(2674), + [anon_sym_ATselector] = ACTIONS(2674), + [anon_sym_ATavailable] = ACTIONS(2674), + [anon_sym___builtin_available] = ACTIONS(2672), + [anon_sym_va_arg] = ACTIONS(2672), + [anon_sym_ATencode] = ACTIONS(2674), + [anon_sym_ATsynchronized] = ACTIONS(2674), + [anon_sym_BOOL] = ACTIONS(2672), + [anon_sym_IMP] = ACTIONS(2672), + [anon_sym_SEL] = ACTIONS(2672), + [anon_sym_Class] = ACTIONS(2672), + [anon_sym_id] = ACTIONS(2672), + }, + [626] = { + [sym_identifier] = ACTIONS(2676), + [aux_sym_preproc_include_token1] = ACTIONS(2676), + [aux_sym_preproc_include_token2] = ACTIONS(2676), + [aux_sym_preproc_def_token1] = ACTIONS(2676), + [aux_sym_preproc_if_token1] = ACTIONS(2676), + [aux_sym_preproc_if_token2] = ACTIONS(2676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2676), + [sym_preproc_directive] = ACTIONS(2676), + [anon_sym_LPAREN2] = ACTIONS(2678), + [anon_sym_BANG] = ACTIONS(2678), + [anon_sym_TILDE] = ACTIONS(2678), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_STAR] = ACTIONS(2678), + [anon_sym_CARET] = ACTIONS(2678), + [anon_sym_AMP] = ACTIONS(2678), + [anon_sym_SEMI] = ACTIONS(2678), + [anon_sym___extension__] = ACTIONS(2676), + [anon_sym_typedef] = ACTIONS(2676), + [anon_sym_extern] = ACTIONS(2676), + [anon_sym___attribute__] = ACTIONS(2676), + [anon_sym___attribute] = ACTIONS(2676), + [anon_sym_noreturn] = ACTIONS(2676), + [anon_sym_LBRACK] = ACTIONS(2678), + [anon_sym___declspec] = ACTIONS(2676), + [anon_sym___cdecl] = ACTIONS(2676), + [anon_sym___clrcall] = ACTIONS(2676), + [anon_sym___stdcall] = ACTIONS(2676), + [anon_sym___fastcall] = ACTIONS(2676), + [anon_sym___thiscall] = ACTIONS(2676), + [anon_sym___vectorcall] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_signed] = ACTIONS(2676), + [anon_sym_unsigned] = ACTIONS(2676), + [anon_sym_long] = ACTIONS(2676), + [anon_sym_short] = ACTIONS(2676), + [anon_sym_static] = ACTIONS(2676), + [anon_sym_ATautoreleasepool] = ACTIONS(2678), + [anon_sym_auto] = ACTIONS(2676), + [anon_sym_register] = ACTIONS(2676), + [anon_sym_inline] = ACTIONS(2676), + [anon_sym___inline] = ACTIONS(2676), + [anon_sym___inline__] = ACTIONS(2676), + [anon_sym___forceinline] = ACTIONS(2676), + [anon_sym_thread_local] = ACTIONS(2676), + [anon_sym___thread] = ACTIONS(2676), + [anon_sym_CG_EXTERN] = ACTIONS(2676), + [anon_sym_CG_INLINE] = ACTIONS(2676), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2676), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2676), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2676), + [anon_sym_IBOutlet] = ACTIONS(2676), + [anon_sym_IBInspectable] = ACTIONS(2676), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2676), + [anon_sym_NS_INLINE] = ACTIONS(2676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2676), + [anon_sym_OBJC_EXPORT] = ACTIONS(2676), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2676), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2676), + [anon_sym_const] = ACTIONS(2676), + [anon_sym_constexpr] = ACTIONS(2676), + [anon_sym_volatile] = ACTIONS(2676), + [anon_sym_restrict] = ACTIONS(2676), + [anon_sym___restrict__] = ACTIONS(2676), + [anon_sym__Atomic] = ACTIONS(2676), + [anon_sym__Noreturn] = ACTIONS(2676), + [anon_sym__Nonnull] = ACTIONS(2676), + [anon_sym_nullable] = ACTIONS(2676), + [anon_sym__Complex] = ACTIONS(2676), + [anon_sym__Nullable] = ACTIONS(2676), + [anon_sym__Nullable_result] = ACTIONS(2676), + [anon_sym__Null_unspecified] = ACTIONS(2676), + [anon_sym___autoreleasing] = ACTIONS(2676), + [anon_sym___block] = ACTIONS(2676), + [anon_sym___bridge] = ACTIONS(2676), + [anon_sym___bridge_retained] = ACTIONS(2676), + [anon_sym___bridge_transfer] = ACTIONS(2676), + [anon_sym___complex] = ACTIONS(2676), + [anon_sym___const] = ACTIONS(2676), + [anon_sym___imag] = ACTIONS(2676), + [anon_sym___kindof] = ACTIONS(2676), + [anon_sym___nonnull] = ACTIONS(2676), + [anon_sym___nullable] = ACTIONS(2676), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2676), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2676), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2676), + [anon_sym___real] = ACTIONS(2676), + [anon_sym___strong] = ACTIONS(2676), + [anon_sym___unsafe_unretained] = ACTIONS(2676), + [anon_sym___unused] = ACTIONS(2676), + [anon_sym___weak] = ACTIONS(2676), + [anon_sym_alignas] = ACTIONS(2676), + [anon_sym__Alignas] = ACTIONS(2676), + [sym_primitive_type] = ACTIONS(2676), + [anon_sym_enum] = ACTIONS(2676), + [anon_sym_struct] = ACTIONS(2676), + [anon_sym_union] = ACTIONS(2676), + [anon_sym_if] = ACTIONS(2676), + [anon_sym_switch] = ACTIONS(2676), + [anon_sym_case] = ACTIONS(2676), + [anon_sym_default] = ACTIONS(2676), + [anon_sym_while] = ACTIONS(2676), + [anon_sym_do] = ACTIONS(2676), + [anon_sym_for] = ACTIONS(2676), + [anon_sym_in] = ACTIONS(2676), + [anon_sym_return] = ACTIONS(2676), + [anon_sym_break] = ACTIONS(2676), + [anon_sym_continue] = ACTIONS(2676), + [anon_sym_goto] = ACTIONS(2676), + [anon_sym_DASH_DASH] = ACTIONS(2678), + [anon_sym_PLUS_PLUS] = ACTIONS(2678), + [anon_sym_sizeof] = ACTIONS(2676), + [anon_sym___alignof__] = ACTIONS(2676), + [anon_sym___alignof] = ACTIONS(2676), + [anon_sym__alignof] = ACTIONS(2676), + [anon_sym_alignof] = ACTIONS(2676), + [anon_sym__Alignof] = ACTIONS(2676), + [anon_sym_offsetof] = ACTIONS(2676), + [anon_sym__Generic] = ACTIONS(2676), + [anon_sym_asm] = ACTIONS(2676), + [anon_sym___asm__] = ACTIONS(2676), + [anon_sym___asm] = ACTIONS(2676), + [sym_number_literal] = ACTIONS(2678), + [anon_sym_L_SQUOTE] = ACTIONS(2678), + [anon_sym_u_SQUOTE] = ACTIONS(2678), + [anon_sym_U_SQUOTE] = ACTIONS(2678), + [anon_sym_u8_SQUOTE] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2678), + [anon_sym_AT] = ACTIONS(2676), + [anon_sym_DQUOTE] = ACTIONS(2678), + [anon_sym_L_DQUOTE] = ACTIONS(2678), + [anon_sym_u_DQUOTE] = ACTIONS(2678), + [anon_sym_U_DQUOTE] = ACTIONS(2678), + [anon_sym_u8_DQUOTE] = ACTIONS(2678), + [sym_true] = ACTIONS(2676), + [sym_false] = ACTIONS(2676), + [anon_sym_NULL] = ACTIONS(2676), + [anon_sym_nullptr] = ACTIONS(2676), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2676), + [anon_sym___typeof] = ACTIONS(2676), + [anon_sym_typeof] = ACTIONS(2676), + [anon_sym_ATimport] = ACTIONS(2678), + [aux_sym_preproc_undef_token1] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(2676), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2676), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2676), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2676), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2676), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2676), + [anon_sym_NS_AVAILABLE] = ACTIONS(2676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2676), + [anon_sym_API_AVAILABLE] = ACTIONS(2676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2676), + [anon_sym_API_DEPRECATED] = ACTIONS(2676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2676), + [anon_sym___deprecated_msg] = ACTIONS(2676), + [anon_sym___deprecated_enum_msg] = ACTIONS(2676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2676), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2676), + [anon_sym_ATprotocol] = ACTIONS(2678), + [anon_sym_ATinterface] = ACTIONS(2678), + [anon_sym_ATimplementation] = ACTIONS(2678), + [anon_sym_ATcompatibility_alias] = ACTIONS(2678), + [anon_sym_ATsynthesize] = ACTIONS(2678), + [anon_sym_ATdynamic] = ACTIONS(2678), + [anon_sym_ATtry] = ACTIONS(2678), + [anon_sym___try] = ACTIONS(2676), + [anon_sym_ATthrow] = ACTIONS(2678), + [anon_sym_ATselector] = ACTIONS(2678), + [anon_sym_ATavailable] = ACTIONS(2678), + [anon_sym___builtin_available] = ACTIONS(2676), + [anon_sym_va_arg] = ACTIONS(2676), + [anon_sym_ATencode] = ACTIONS(2678), + [anon_sym_ATsynchronized] = ACTIONS(2678), + [anon_sym_BOOL] = ACTIONS(2676), + [anon_sym_IMP] = ACTIONS(2676), + [anon_sym_SEL] = ACTIONS(2676), + [anon_sym_Class] = ACTIONS(2676), + [anon_sym_id] = ACTIONS(2676), + }, + [627] = { + [sym_identifier] = ACTIONS(2680), + [aux_sym_preproc_include_token1] = ACTIONS(2680), + [aux_sym_preproc_include_token2] = ACTIONS(2680), + [aux_sym_preproc_def_token1] = ACTIONS(2680), + [aux_sym_preproc_if_token1] = ACTIONS(2680), + [aux_sym_preproc_if_token2] = ACTIONS(2680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2680), + [sym_preproc_directive] = ACTIONS(2680), + [anon_sym_LPAREN2] = ACTIONS(2682), + [anon_sym_BANG] = ACTIONS(2682), + [anon_sym_TILDE] = ACTIONS(2682), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_CARET] = ACTIONS(2682), + [anon_sym_AMP] = ACTIONS(2682), + [anon_sym_SEMI] = ACTIONS(2682), + [anon_sym___extension__] = ACTIONS(2680), + [anon_sym_typedef] = ACTIONS(2680), + [anon_sym_extern] = ACTIONS(2680), + [anon_sym___attribute__] = ACTIONS(2680), + [anon_sym___attribute] = ACTIONS(2680), + [anon_sym_noreturn] = ACTIONS(2680), + [anon_sym_LBRACK] = ACTIONS(2682), + [anon_sym___declspec] = ACTIONS(2680), + [anon_sym___cdecl] = ACTIONS(2680), + [anon_sym___clrcall] = ACTIONS(2680), + [anon_sym___stdcall] = ACTIONS(2680), + [anon_sym___fastcall] = ACTIONS(2680), + [anon_sym___thiscall] = ACTIONS(2680), + [anon_sym___vectorcall] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2682), + [anon_sym_signed] = ACTIONS(2680), + [anon_sym_unsigned] = ACTIONS(2680), + [anon_sym_long] = ACTIONS(2680), + [anon_sym_short] = ACTIONS(2680), + [anon_sym_static] = ACTIONS(2680), + [anon_sym_ATautoreleasepool] = ACTIONS(2682), + [anon_sym_auto] = ACTIONS(2680), + [anon_sym_register] = ACTIONS(2680), + [anon_sym_inline] = ACTIONS(2680), + [anon_sym___inline] = ACTIONS(2680), + [anon_sym___inline__] = ACTIONS(2680), + [anon_sym___forceinline] = ACTIONS(2680), + [anon_sym_thread_local] = ACTIONS(2680), + [anon_sym___thread] = ACTIONS(2680), + [anon_sym_CG_EXTERN] = ACTIONS(2680), + [anon_sym_CG_INLINE] = ACTIONS(2680), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2680), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2680), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2680), + [anon_sym_IBOutlet] = ACTIONS(2680), + [anon_sym_IBInspectable] = ACTIONS(2680), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2680), + [anon_sym_NS_INLINE] = ACTIONS(2680), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2680), + [anon_sym_OBJC_EXPORT] = ACTIONS(2680), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2680), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2680), + [anon_sym_const] = ACTIONS(2680), + [anon_sym_constexpr] = ACTIONS(2680), + [anon_sym_volatile] = ACTIONS(2680), + [anon_sym_restrict] = ACTIONS(2680), + [anon_sym___restrict__] = ACTIONS(2680), + [anon_sym__Atomic] = ACTIONS(2680), + [anon_sym__Noreturn] = ACTIONS(2680), + [anon_sym__Nonnull] = ACTIONS(2680), + [anon_sym_nullable] = ACTIONS(2680), + [anon_sym__Complex] = ACTIONS(2680), + [anon_sym__Nullable] = ACTIONS(2680), + [anon_sym__Nullable_result] = ACTIONS(2680), + [anon_sym__Null_unspecified] = ACTIONS(2680), + [anon_sym___autoreleasing] = ACTIONS(2680), + [anon_sym___block] = ACTIONS(2680), + [anon_sym___bridge] = ACTIONS(2680), + [anon_sym___bridge_retained] = ACTIONS(2680), + [anon_sym___bridge_transfer] = ACTIONS(2680), + [anon_sym___complex] = ACTIONS(2680), + [anon_sym___const] = ACTIONS(2680), + [anon_sym___imag] = ACTIONS(2680), + [anon_sym___kindof] = ACTIONS(2680), + [anon_sym___nonnull] = ACTIONS(2680), + [anon_sym___nullable] = ACTIONS(2680), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2680), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2680), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2680), + [anon_sym___real] = ACTIONS(2680), + [anon_sym___strong] = ACTIONS(2680), + [anon_sym___unsafe_unretained] = ACTIONS(2680), + [anon_sym___unused] = ACTIONS(2680), + [anon_sym___weak] = ACTIONS(2680), + [anon_sym_alignas] = ACTIONS(2680), + [anon_sym__Alignas] = ACTIONS(2680), + [sym_primitive_type] = ACTIONS(2680), + [anon_sym_enum] = ACTIONS(2680), + [anon_sym_struct] = ACTIONS(2680), + [anon_sym_union] = ACTIONS(2680), + [anon_sym_if] = ACTIONS(2680), + [anon_sym_switch] = ACTIONS(2680), + [anon_sym_case] = ACTIONS(2680), + [anon_sym_default] = ACTIONS(2680), + [anon_sym_while] = ACTIONS(2680), + [anon_sym_do] = ACTIONS(2680), + [anon_sym_for] = ACTIONS(2680), + [anon_sym_in] = ACTIONS(2680), + [anon_sym_return] = ACTIONS(2680), + [anon_sym_break] = ACTIONS(2680), + [anon_sym_continue] = ACTIONS(2680), + [anon_sym_goto] = ACTIONS(2680), + [anon_sym_DASH_DASH] = ACTIONS(2682), + [anon_sym_PLUS_PLUS] = ACTIONS(2682), + [anon_sym_sizeof] = ACTIONS(2680), + [anon_sym___alignof__] = ACTIONS(2680), + [anon_sym___alignof] = ACTIONS(2680), + [anon_sym__alignof] = ACTIONS(2680), + [anon_sym_alignof] = ACTIONS(2680), + [anon_sym__Alignof] = ACTIONS(2680), + [anon_sym_offsetof] = ACTIONS(2680), + [anon_sym__Generic] = ACTIONS(2680), + [anon_sym_asm] = ACTIONS(2680), + [anon_sym___asm__] = ACTIONS(2680), + [anon_sym___asm] = ACTIONS(2680), + [sym_number_literal] = ACTIONS(2682), + [anon_sym_L_SQUOTE] = ACTIONS(2682), + [anon_sym_u_SQUOTE] = ACTIONS(2682), + [anon_sym_U_SQUOTE] = ACTIONS(2682), + [anon_sym_u8_SQUOTE] = ACTIONS(2682), + [anon_sym_SQUOTE] = ACTIONS(2682), + [anon_sym_AT] = ACTIONS(2680), + [anon_sym_DQUOTE] = ACTIONS(2682), + [anon_sym_L_DQUOTE] = ACTIONS(2682), + [anon_sym_u_DQUOTE] = ACTIONS(2682), + [anon_sym_U_DQUOTE] = ACTIONS(2682), + [anon_sym_u8_DQUOTE] = ACTIONS(2682), + [sym_true] = ACTIONS(2680), + [sym_false] = ACTIONS(2680), + [anon_sym_NULL] = ACTIONS(2680), + [anon_sym_nullptr] = ACTIONS(2680), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2680), + [anon_sym___typeof] = ACTIONS(2680), + [anon_sym_typeof] = ACTIONS(2680), + [anon_sym_ATimport] = ACTIONS(2682), + [aux_sym_preproc_undef_token1] = ACTIONS(2680), + [anon_sym_POUND] = ACTIONS(2680), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2680), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2680), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2680), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2680), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2680), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2680), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2680), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2680), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2680), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2680), + [anon_sym_NS_AVAILABLE] = ACTIONS(2680), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2680), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2680), + [anon_sym_API_AVAILABLE] = ACTIONS(2680), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2680), + [anon_sym_API_DEPRECATED] = ACTIONS(2680), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2680), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2680), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2680), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2680), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2680), + [anon_sym___deprecated_msg] = ACTIONS(2680), + [anon_sym___deprecated_enum_msg] = ACTIONS(2680), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2680), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2680), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2680), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2680), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2680), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2680), + [anon_sym_ATprotocol] = ACTIONS(2682), + [anon_sym_ATinterface] = ACTIONS(2682), + [anon_sym_ATimplementation] = ACTIONS(2682), + [anon_sym_ATcompatibility_alias] = ACTIONS(2682), + [anon_sym_ATsynthesize] = ACTIONS(2682), + [anon_sym_ATdynamic] = ACTIONS(2682), + [anon_sym_ATtry] = ACTIONS(2682), + [anon_sym___try] = ACTIONS(2680), + [anon_sym_ATthrow] = ACTIONS(2682), + [anon_sym_ATselector] = ACTIONS(2682), + [anon_sym_ATavailable] = ACTIONS(2682), + [anon_sym___builtin_available] = ACTIONS(2680), + [anon_sym_va_arg] = ACTIONS(2680), + [anon_sym_ATencode] = ACTIONS(2682), + [anon_sym_ATsynchronized] = ACTIONS(2682), + [anon_sym_BOOL] = ACTIONS(2680), + [anon_sym_IMP] = ACTIONS(2680), + [anon_sym_SEL] = ACTIONS(2680), + [anon_sym_Class] = ACTIONS(2680), + [anon_sym_id] = ACTIONS(2680), + }, + [628] = { + [sym_identifier] = ACTIONS(2684), + [aux_sym_preproc_include_token1] = ACTIONS(2684), + [aux_sym_preproc_include_token2] = ACTIONS(2684), + [aux_sym_preproc_def_token1] = ACTIONS(2684), + [aux_sym_preproc_if_token1] = ACTIONS(2684), + [aux_sym_preproc_if_token2] = ACTIONS(2684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2684), + [sym_preproc_directive] = ACTIONS(2684), + [anon_sym_LPAREN2] = ACTIONS(2686), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_CARET] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_SEMI] = ACTIONS(2686), + [anon_sym___extension__] = ACTIONS(2684), + [anon_sym_typedef] = ACTIONS(2684), + [anon_sym_extern] = ACTIONS(2684), + [anon_sym___attribute__] = ACTIONS(2684), + [anon_sym___attribute] = ACTIONS(2684), + [anon_sym_noreturn] = ACTIONS(2684), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym___declspec] = ACTIONS(2684), + [anon_sym___cdecl] = ACTIONS(2684), + [anon_sym___clrcall] = ACTIONS(2684), + [anon_sym___stdcall] = ACTIONS(2684), + [anon_sym___fastcall] = ACTIONS(2684), + [anon_sym___thiscall] = ACTIONS(2684), + [anon_sym___vectorcall] = ACTIONS(2684), + [anon_sym_LBRACE] = ACTIONS(2686), + [anon_sym_signed] = ACTIONS(2684), + [anon_sym_unsigned] = ACTIONS(2684), + [anon_sym_long] = ACTIONS(2684), + [anon_sym_short] = ACTIONS(2684), + [anon_sym_static] = ACTIONS(2684), + [anon_sym_ATautoreleasepool] = ACTIONS(2686), + [anon_sym_auto] = ACTIONS(2684), + [anon_sym_register] = ACTIONS(2684), + [anon_sym_inline] = ACTIONS(2684), + [anon_sym___inline] = ACTIONS(2684), + [anon_sym___inline__] = ACTIONS(2684), + [anon_sym___forceinline] = ACTIONS(2684), + [anon_sym_thread_local] = ACTIONS(2684), + [anon_sym___thread] = ACTIONS(2684), + [anon_sym_CG_EXTERN] = ACTIONS(2684), + [anon_sym_CG_INLINE] = ACTIONS(2684), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2684), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2684), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2684), + [anon_sym_IBOutlet] = ACTIONS(2684), + [anon_sym_IBInspectable] = ACTIONS(2684), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2684), + [anon_sym_NS_INLINE] = ACTIONS(2684), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2684), + [anon_sym_OBJC_EXPORT] = ACTIONS(2684), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2684), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2684), + [anon_sym_const] = ACTIONS(2684), + [anon_sym_constexpr] = ACTIONS(2684), + [anon_sym_volatile] = ACTIONS(2684), + [anon_sym_restrict] = ACTIONS(2684), + [anon_sym___restrict__] = ACTIONS(2684), + [anon_sym__Atomic] = ACTIONS(2684), + [anon_sym__Noreturn] = ACTIONS(2684), + [anon_sym__Nonnull] = ACTIONS(2684), + [anon_sym_nullable] = ACTIONS(2684), + [anon_sym__Complex] = ACTIONS(2684), + [anon_sym__Nullable] = ACTIONS(2684), + [anon_sym__Nullable_result] = ACTIONS(2684), + [anon_sym__Null_unspecified] = ACTIONS(2684), + [anon_sym___autoreleasing] = ACTIONS(2684), + [anon_sym___block] = ACTIONS(2684), + [anon_sym___bridge] = ACTIONS(2684), + [anon_sym___bridge_retained] = ACTIONS(2684), + [anon_sym___bridge_transfer] = ACTIONS(2684), + [anon_sym___complex] = ACTIONS(2684), + [anon_sym___const] = ACTIONS(2684), + [anon_sym___imag] = ACTIONS(2684), + [anon_sym___kindof] = ACTIONS(2684), + [anon_sym___nonnull] = ACTIONS(2684), + [anon_sym___nullable] = ACTIONS(2684), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2684), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2684), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2684), + [anon_sym___real] = ACTIONS(2684), + [anon_sym___strong] = ACTIONS(2684), + [anon_sym___unsafe_unretained] = ACTIONS(2684), + [anon_sym___unused] = ACTIONS(2684), + [anon_sym___weak] = ACTIONS(2684), + [anon_sym_alignas] = ACTIONS(2684), + [anon_sym__Alignas] = ACTIONS(2684), + [sym_primitive_type] = ACTIONS(2684), + [anon_sym_enum] = ACTIONS(2684), + [anon_sym_struct] = ACTIONS(2684), + [anon_sym_union] = ACTIONS(2684), + [anon_sym_if] = ACTIONS(2684), + [anon_sym_switch] = ACTIONS(2684), + [anon_sym_case] = ACTIONS(2684), + [anon_sym_default] = ACTIONS(2684), + [anon_sym_while] = ACTIONS(2684), + [anon_sym_do] = ACTIONS(2684), + [anon_sym_for] = ACTIONS(2684), + [anon_sym_in] = ACTIONS(2684), + [anon_sym_return] = ACTIONS(2684), + [anon_sym_break] = ACTIONS(2684), + [anon_sym_continue] = ACTIONS(2684), + [anon_sym_goto] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(2686), + [anon_sym_PLUS_PLUS] = ACTIONS(2686), + [anon_sym_sizeof] = ACTIONS(2684), + [anon_sym___alignof__] = ACTIONS(2684), + [anon_sym___alignof] = ACTIONS(2684), + [anon_sym__alignof] = ACTIONS(2684), + [anon_sym_alignof] = ACTIONS(2684), + [anon_sym__Alignof] = ACTIONS(2684), + [anon_sym_offsetof] = ACTIONS(2684), + [anon_sym__Generic] = ACTIONS(2684), + [anon_sym_asm] = ACTIONS(2684), + [anon_sym___asm__] = ACTIONS(2684), + [anon_sym___asm] = ACTIONS(2684), + [sym_number_literal] = ACTIONS(2686), + [anon_sym_L_SQUOTE] = ACTIONS(2686), + [anon_sym_u_SQUOTE] = ACTIONS(2686), + [anon_sym_U_SQUOTE] = ACTIONS(2686), + [anon_sym_u8_SQUOTE] = ACTIONS(2686), + [anon_sym_SQUOTE] = ACTIONS(2686), + [anon_sym_AT] = ACTIONS(2684), + [anon_sym_DQUOTE] = ACTIONS(2686), + [anon_sym_L_DQUOTE] = ACTIONS(2686), + [anon_sym_u_DQUOTE] = ACTIONS(2686), + [anon_sym_U_DQUOTE] = ACTIONS(2686), + [anon_sym_u8_DQUOTE] = ACTIONS(2686), + [sym_true] = ACTIONS(2684), + [sym_false] = ACTIONS(2684), + [anon_sym_NULL] = ACTIONS(2684), + [anon_sym_nullptr] = ACTIONS(2684), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2684), + [anon_sym___typeof] = ACTIONS(2684), + [anon_sym_typeof] = ACTIONS(2684), + [anon_sym_ATimport] = ACTIONS(2686), + [aux_sym_preproc_undef_token1] = ACTIONS(2684), + [anon_sym_POUND] = ACTIONS(2684), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2684), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2684), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2684), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2684), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2684), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2684), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2684), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2684), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2684), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2684), + [anon_sym_NS_AVAILABLE] = ACTIONS(2684), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2684), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2684), + [anon_sym_API_AVAILABLE] = ACTIONS(2684), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2684), + [anon_sym_API_DEPRECATED] = ACTIONS(2684), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2684), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2684), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2684), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2684), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2684), + [anon_sym___deprecated_msg] = ACTIONS(2684), + [anon_sym___deprecated_enum_msg] = ACTIONS(2684), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2684), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2684), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2684), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2684), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2684), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2684), + [anon_sym_ATprotocol] = ACTIONS(2686), + [anon_sym_ATinterface] = ACTIONS(2686), + [anon_sym_ATimplementation] = ACTIONS(2686), + [anon_sym_ATcompatibility_alias] = ACTIONS(2686), + [anon_sym_ATsynthesize] = ACTIONS(2686), + [anon_sym_ATdynamic] = ACTIONS(2686), + [anon_sym_ATtry] = ACTIONS(2686), + [anon_sym___try] = ACTIONS(2684), + [anon_sym_ATthrow] = ACTIONS(2686), + [anon_sym_ATselector] = ACTIONS(2686), + [anon_sym_ATavailable] = ACTIONS(2686), + [anon_sym___builtin_available] = ACTIONS(2684), + [anon_sym_va_arg] = ACTIONS(2684), + [anon_sym_ATencode] = ACTIONS(2686), + [anon_sym_ATsynchronized] = ACTIONS(2686), + [anon_sym_BOOL] = ACTIONS(2684), + [anon_sym_IMP] = ACTIONS(2684), + [anon_sym_SEL] = ACTIONS(2684), + [anon_sym_Class] = ACTIONS(2684), + [anon_sym_id] = ACTIONS(2684), + }, + [629] = { + [sym_identifier] = ACTIONS(2688), + [aux_sym_preproc_include_token1] = ACTIONS(2688), + [aux_sym_preproc_include_token2] = ACTIONS(2688), + [aux_sym_preproc_def_token1] = ACTIONS(2688), + [aux_sym_preproc_if_token1] = ACTIONS(2688), + [aux_sym_preproc_if_token2] = ACTIONS(2688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2688), + [sym_preproc_directive] = ACTIONS(2688), + [anon_sym_LPAREN2] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_TILDE] = ACTIONS(2690), + [anon_sym_DASH] = ACTIONS(2688), + [anon_sym_PLUS] = ACTIONS(2688), + [anon_sym_STAR] = ACTIONS(2690), + [anon_sym_CARET] = ACTIONS(2690), + [anon_sym_AMP] = ACTIONS(2690), + [anon_sym_SEMI] = ACTIONS(2690), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_typedef] = ACTIONS(2688), + [anon_sym_extern] = ACTIONS(2688), + [anon_sym___attribute__] = ACTIONS(2688), + [anon_sym___attribute] = ACTIONS(2688), + [anon_sym_noreturn] = ACTIONS(2688), + [anon_sym_LBRACK] = ACTIONS(2690), + [anon_sym___declspec] = ACTIONS(2688), + [anon_sym___cdecl] = ACTIONS(2688), + [anon_sym___clrcall] = ACTIONS(2688), + [anon_sym___stdcall] = ACTIONS(2688), + [anon_sym___fastcall] = ACTIONS(2688), + [anon_sym___thiscall] = ACTIONS(2688), + [anon_sym___vectorcall] = ACTIONS(2688), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_signed] = ACTIONS(2688), + [anon_sym_unsigned] = ACTIONS(2688), + [anon_sym_long] = ACTIONS(2688), + [anon_sym_short] = ACTIONS(2688), + [anon_sym_static] = ACTIONS(2688), + [anon_sym_ATautoreleasepool] = ACTIONS(2690), + [anon_sym_auto] = ACTIONS(2688), + [anon_sym_register] = ACTIONS(2688), + [anon_sym_inline] = ACTIONS(2688), + [anon_sym___inline] = ACTIONS(2688), + [anon_sym___inline__] = ACTIONS(2688), + [anon_sym___forceinline] = ACTIONS(2688), + [anon_sym_thread_local] = ACTIONS(2688), + [anon_sym___thread] = ACTIONS(2688), + [anon_sym_CG_EXTERN] = ACTIONS(2688), + [anon_sym_CG_INLINE] = ACTIONS(2688), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2688), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2688), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2688), + [anon_sym_IBOutlet] = ACTIONS(2688), + [anon_sym_IBInspectable] = ACTIONS(2688), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2688), + [anon_sym_NS_INLINE] = ACTIONS(2688), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2688), + [anon_sym_OBJC_EXPORT] = ACTIONS(2688), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2688), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2688), + [anon_sym_const] = ACTIONS(2688), + [anon_sym_constexpr] = ACTIONS(2688), + [anon_sym_volatile] = ACTIONS(2688), + [anon_sym_restrict] = ACTIONS(2688), + [anon_sym___restrict__] = ACTIONS(2688), + [anon_sym__Atomic] = ACTIONS(2688), + [anon_sym__Noreturn] = ACTIONS(2688), + [anon_sym__Nonnull] = ACTIONS(2688), + [anon_sym_nullable] = ACTIONS(2688), + [anon_sym__Complex] = ACTIONS(2688), + [anon_sym__Nullable] = ACTIONS(2688), + [anon_sym__Nullable_result] = ACTIONS(2688), + [anon_sym__Null_unspecified] = ACTIONS(2688), + [anon_sym___autoreleasing] = ACTIONS(2688), + [anon_sym___block] = ACTIONS(2688), + [anon_sym___bridge] = ACTIONS(2688), + [anon_sym___bridge_retained] = ACTIONS(2688), + [anon_sym___bridge_transfer] = ACTIONS(2688), + [anon_sym___complex] = ACTIONS(2688), + [anon_sym___const] = ACTIONS(2688), + [anon_sym___imag] = ACTIONS(2688), + [anon_sym___kindof] = ACTIONS(2688), + [anon_sym___nonnull] = ACTIONS(2688), + [anon_sym___nullable] = ACTIONS(2688), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2688), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2688), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2688), + [anon_sym___real] = ACTIONS(2688), + [anon_sym___strong] = ACTIONS(2688), + [anon_sym___unsafe_unretained] = ACTIONS(2688), + [anon_sym___unused] = ACTIONS(2688), + [anon_sym___weak] = ACTIONS(2688), + [anon_sym_alignas] = ACTIONS(2688), + [anon_sym__Alignas] = ACTIONS(2688), + [sym_primitive_type] = ACTIONS(2688), + [anon_sym_enum] = ACTIONS(2688), + [anon_sym_struct] = ACTIONS(2688), + [anon_sym_union] = ACTIONS(2688), + [anon_sym_if] = ACTIONS(2688), + [anon_sym_switch] = ACTIONS(2688), + [anon_sym_case] = ACTIONS(2688), + [anon_sym_default] = ACTIONS(2688), + [anon_sym_while] = ACTIONS(2688), + [anon_sym_do] = ACTIONS(2688), + [anon_sym_for] = ACTIONS(2688), + [anon_sym_in] = ACTIONS(2688), + [anon_sym_return] = ACTIONS(2688), + [anon_sym_break] = ACTIONS(2688), + [anon_sym_continue] = ACTIONS(2688), + [anon_sym_goto] = ACTIONS(2688), + [anon_sym_DASH_DASH] = ACTIONS(2690), + [anon_sym_PLUS_PLUS] = ACTIONS(2690), + [anon_sym_sizeof] = ACTIONS(2688), + [anon_sym___alignof__] = ACTIONS(2688), + [anon_sym___alignof] = ACTIONS(2688), + [anon_sym__alignof] = ACTIONS(2688), + [anon_sym_alignof] = ACTIONS(2688), + [anon_sym__Alignof] = ACTIONS(2688), + [anon_sym_offsetof] = ACTIONS(2688), + [anon_sym__Generic] = ACTIONS(2688), + [anon_sym_asm] = ACTIONS(2688), + [anon_sym___asm__] = ACTIONS(2688), + [anon_sym___asm] = ACTIONS(2688), + [sym_number_literal] = ACTIONS(2690), + [anon_sym_L_SQUOTE] = ACTIONS(2690), + [anon_sym_u_SQUOTE] = ACTIONS(2690), + [anon_sym_U_SQUOTE] = ACTIONS(2690), + [anon_sym_u8_SQUOTE] = ACTIONS(2690), + [anon_sym_SQUOTE] = ACTIONS(2690), + [anon_sym_AT] = ACTIONS(2688), + [anon_sym_DQUOTE] = ACTIONS(2690), + [anon_sym_L_DQUOTE] = ACTIONS(2690), + [anon_sym_u_DQUOTE] = ACTIONS(2690), + [anon_sym_U_DQUOTE] = ACTIONS(2690), + [anon_sym_u8_DQUOTE] = ACTIONS(2690), + [sym_true] = ACTIONS(2688), + [sym_false] = ACTIONS(2688), + [anon_sym_NULL] = ACTIONS(2688), + [anon_sym_nullptr] = ACTIONS(2688), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2688), + [anon_sym___typeof] = ACTIONS(2688), + [anon_sym_typeof] = ACTIONS(2688), + [anon_sym_ATimport] = ACTIONS(2690), + [aux_sym_preproc_undef_token1] = ACTIONS(2688), + [anon_sym_POUND] = ACTIONS(2688), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2688), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2688), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2688), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2688), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2688), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2688), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2688), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2688), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2688), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2688), + [anon_sym_NS_AVAILABLE] = ACTIONS(2688), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2688), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2688), + [anon_sym_API_AVAILABLE] = ACTIONS(2688), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2688), + [anon_sym_API_DEPRECATED] = ACTIONS(2688), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2688), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2688), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2688), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2688), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2688), + [anon_sym___deprecated_msg] = ACTIONS(2688), + [anon_sym___deprecated_enum_msg] = ACTIONS(2688), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2688), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2688), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2688), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2688), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2688), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2688), + [anon_sym_ATprotocol] = ACTIONS(2690), + [anon_sym_ATinterface] = ACTIONS(2690), + [anon_sym_ATimplementation] = ACTIONS(2690), + [anon_sym_ATcompatibility_alias] = ACTIONS(2690), + [anon_sym_ATsynthesize] = ACTIONS(2690), + [anon_sym_ATdynamic] = ACTIONS(2690), + [anon_sym_ATtry] = ACTIONS(2690), + [anon_sym___try] = ACTIONS(2688), + [anon_sym_ATthrow] = ACTIONS(2690), + [anon_sym_ATselector] = ACTIONS(2690), + [anon_sym_ATavailable] = ACTIONS(2690), + [anon_sym___builtin_available] = ACTIONS(2688), + [anon_sym_va_arg] = ACTIONS(2688), + [anon_sym_ATencode] = ACTIONS(2690), + [anon_sym_ATsynchronized] = ACTIONS(2690), + [anon_sym_BOOL] = ACTIONS(2688), + [anon_sym_IMP] = ACTIONS(2688), + [anon_sym_SEL] = ACTIONS(2688), + [anon_sym_Class] = ACTIONS(2688), + [anon_sym_id] = ACTIONS(2688), + }, + [630] = { + [sym_identifier] = ACTIONS(2692), + [aux_sym_preproc_include_token1] = ACTIONS(2692), + [aux_sym_preproc_include_token2] = ACTIONS(2692), + [aux_sym_preproc_def_token1] = ACTIONS(2692), + [aux_sym_preproc_if_token1] = ACTIONS(2692), + [aux_sym_preproc_if_token2] = ACTIONS(2692), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2692), + [sym_preproc_directive] = ACTIONS(2692), + [anon_sym_LPAREN2] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2694), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2692), + [anon_sym_PLUS] = ACTIONS(2692), + [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_CARET] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_SEMI] = ACTIONS(2694), + [anon_sym___extension__] = ACTIONS(2692), + [anon_sym_typedef] = ACTIONS(2692), + [anon_sym_extern] = ACTIONS(2692), + [anon_sym___attribute__] = ACTIONS(2692), + [anon_sym___attribute] = ACTIONS(2692), + [anon_sym_noreturn] = ACTIONS(2692), + [anon_sym_LBRACK] = ACTIONS(2694), + [anon_sym___declspec] = ACTIONS(2692), + [anon_sym___cdecl] = ACTIONS(2692), + [anon_sym___clrcall] = ACTIONS(2692), + [anon_sym___stdcall] = ACTIONS(2692), + [anon_sym___fastcall] = ACTIONS(2692), + [anon_sym___thiscall] = ACTIONS(2692), + [anon_sym___vectorcall] = ACTIONS(2692), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_signed] = ACTIONS(2692), + [anon_sym_unsigned] = ACTIONS(2692), + [anon_sym_long] = ACTIONS(2692), + [anon_sym_short] = ACTIONS(2692), + [anon_sym_static] = ACTIONS(2692), + [anon_sym_ATautoreleasepool] = ACTIONS(2694), + [anon_sym_auto] = ACTIONS(2692), + [anon_sym_register] = ACTIONS(2692), + [anon_sym_inline] = ACTIONS(2692), + [anon_sym___inline] = ACTIONS(2692), + [anon_sym___inline__] = ACTIONS(2692), + [anon_sym___forceinline] = ACTIONS(2692), + [anon_sym_thread_local] = ACTIONS(2692), + [anon_sym___thread] = ACTIONS(2692), + [anon_sym_CG_EXTERN] = ACTIONS(2692), + [anon_sym_CG_INLINE] = ACTIONS(2692), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2692), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2692), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2692), + [anon_sym_IBOutlet] = ACTIONS(2692), + [anon_sym_IBInspectable] = ACTIONS(2692), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2692), + [anon_sym_NS_INLINE] = ACTIONS(2692), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2692), + [anon_sym_OBJC_EXPORT] = ACTIONS(2692), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2692), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2692), + [anon_sym_const] = ACTIONS(2692), + [anon_sym_constexpr] = ACTIONS(2692), + [anon_sym_volatile] = ACTIONS(2692), + [anon_sym_restrict] = ACTIONS(2692), + [anon_sym___restrict__] = ACTIONS(2692), + [anon_sym__Atomic] = ACTIONS(2692), + [anon_sym__Noreturn] = ACTIONS(2692), + [anon_sym__Nonnull] = ACTIONS(2692), + [anon_sym_nullable] = ACTIONS(2692), + [anon_sym__Complex] = ACTIONS(2692), + [anon_sym__Nullable] = ACTIONS(2692), + [anon_sym__Nullable_result] = ACTIONS(2692), + [anon_sym__Null_unspecified] = ACTIONS(2692), + [anon_sym___autoreleasing] = ACTIONS(2692), + [anon_sym___block] = ACTIONS(2692), + [anon_sym___bridge] = ACTIONS(2692), + [anon_sym___bridge_retained] = ACTIONS(2692), + [anon_sym___bridge_transfer] = ACTIONS(2692), + [anon_sym___complex] = ACTIONS(2692), + [anon_sym___const] = ACTIONS(2692), + [anon_sym___imag] = ACTIONS(2692), + [anon_sym___kindof] = ACTIONS(2692), + [anon_sym___nonnull] = ACTIONS(2692), + [anon_sym___nullable] = ACTIONS(2692), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2692), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2692), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2692), + [anon_sym___real] = ACTIONS(2692), + [anon_sym___strong] = ACTIONS(2692), + [anon_sym___unsafe_unretained] = ACTIONS(2692), + [anon_sym___unused] = ACTIONS(2692), + [anon_sym___weak] = ACTIONS(2692), + [anon_sym_alignas] = ACTIONS(2692), + [anon_sym__Alignas] = ACTIONS(2692), + [sym_primitive_type] = ACTIONS(2692), + [anon_sym_enum] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_union] = ACTIONS(2692), + [anon_sym_if] = ACTIONS(2692), + [anon_sym_switch] = ACTIONS(2692), + [anon_sym_case] = ACTIONS(2692), + [anon_sym_default] = ACTIONS(2692), + [anon_sym_while] = ACTIONS(2692), + [anon_sym_do] = ACTIONS(2692), + [anon_sym_for] = ACTIONS(2692), + [anon_sym_in] = ACTIONS(2692), + [anon_sym_return] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_goto] = ACTIONS(2692), + [anon_sym_DASH_DASH] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2694), + [anon_sym_sizeof] = ACTIONS(2692), + [anon_sym___alignof__] = ACTIONS(2692), + [anon_sym___alignof] = ACTIONS(2692), + [anon_sym__alignof] = ACTIONS(2692), + [anon_sym_alignof] = ACTIONS(2692), + [anon_sym__Alignof] = ACTIONS(2692), + [anon_sym_offsetof] = ACTIONS(2692), + [anon_sym__Generic] = ACTIONS(2692), + [anon_sym_asm] = ACTIONS(2692), + [anon_sym___asm__] = ACTIONS(2692), + [anon_sym___asm] = ACTIONS(2692), + [sym_number_literal] = ACTIONS(2694), + [anon_sym_L_SQUOTE] = ACTIONS(2694), + [anon_sym_u_SQUOTE] = ACTIONS(2694), + [anon_sym_U_SQUOTE] = ACTIONS(2694), + [anon_sym_u8_SQUOTE] = ACTIONS(2694), + [anon_sym_SQUOTE] = ACTIONS(2694), + [anon_sym_AT] = ACTIONS(2692), + [anon_sym_DQUOTE] = ACTIONS(2694), + [anon_sym_L_DQUOTE] = ACTIONS(2694), + [anon_sym_u_DQUOTE] = ACTIONS(2694), + [anon_sym_U_DQUOTE] = ACTIONS(2694), + [anon_sym_u8_DQUOTE] = ACTIONS(2694), + [sym_true] = ACTIONS(2692), + [sym_false] = ACTIONS(2692), + [anon_sym_NULL] = ACTIONS(2692), + [anon_sym_nullptr] = ACTIONS(2692), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2692), + [anon_sym___typeof] = ACTIONS(2692), + [anon_sym_typeof] = ACTIONS(2692), + [anon_sym_ATimport] = ACTIONS(2694), + [aux_sym_preproc_undef_token1] = ACTIONS(2692), + [anon_sym_POUND] = ACTIONS(2692), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2692), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2692), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2692), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2692), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2692), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2692), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2692), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2692), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2692), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2692), + [anon_sym_NS_AVAILABLE] = ACTIONS(2692), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2692), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2692), + [anon_sym_API_AVAILABLE] = ACTIONS(2692), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2692), + [anon_sym_API_DEPRECATED] = ACTIONS(2692), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2692), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2692), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2692), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2692), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2692), + [anon_sym___deprecated_msg] = ACTIONS(2692), + [anon_sym___deprecated_enum_msg] = ACTIONS(2692), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2692), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2692), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2692), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2692), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2692), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2692), + [anon_sym_ATprotocol] = ACTIONS(2694), + [anon_sym_ATinterface] = ACTIONS(2694), + [anon_sym_ATimplementation] = ACTIONS(2694), + [anon_sym_ATcompatibility_alias] = ACTIONS(2694), + [anon_sym_ATsynthesize] = ACTIONS(2694), + [anon_sym_ATdynamic] = ACTIONS(2694), + [anon_sym_ATtry] = ACTIONS(2694), + [anon_sym___try] = ACTIONS(2692), + [anon_sym_ATthrow] = ACTIONS(2694), + [anon_sym_ATselector] = ACTIONS(2694), + [anon_sym_ATavailable] = ACTIONS(2694), + [anon_sym___builtin_available] = ACTIONS(2692), + [anon_sym_va_arg] = ACTIONS(2692), + [anon_sym_ATencode] = ACTIONS(2694), + [anon_sym_ATsynchronized] = ACTIONS(2694), + [anon_sym_BOOL] = ACTIONS(2692), + [anon_sym_IMP] = ACTIONS(2692), + [anon_sym_SEL] = ACTIONS(2692), + [anon_sym_Class] = ACTIONS(2692), + [anon_sym_id] = ACTIONS(2692), + }, + [631] = { + [sym_identifier] = ACTIONS(2696), + [aux_sym_preproc_include_token1] = ACTIONS(2696), + [aux_sym_preproc_include_token2] = ACTIONS(2696), + [aux_sym_preproc_def_token1] = ACTIONS(2696), + [aux_sym_preproc_if_token1] = ACTIONS(2696), + [aux_sym_preproc_if_token2] = ACTIONS(2696), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2696), + [sym_preproc_directive] = ACTIONS(2696), + [anon_sym_LPAREN2] = ACTIONS(2698), + [anon_sym_BANG] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2698), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_CARET] = ACTIONS(2698), + [anon_sym_AMP] = ACTIONS(2698), + [anon_sym_SEMI] = ACTIONS(2698), + [anon_sym___extension__] = ACTIONS(2696), + [anon_sym_typedef] = ACTIONS(2696), + [anon_sym_extern] = ACTIONS(2696), + [anon_sym___attribute__] = ACTIONS(2696), + [anon_sym___attribute] = ACTIONS(2696), + [anon_sym_noreturn] = ACTIONS(2696), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym___declspec] = ACTIONS(2696), + [anon_sym___cdecl] = ACTIONS(2696), + [anon_sym___clrcall] = ACTIONS(2696), + [anon_sym___stdcall] = ACTIONS(2696), + [anon_sym___fastcall] = ACTIONS(2696), + [anon_sym___thiscall] = ACTIONS(2696), + [anon_sym___vectorcall] = ACTIONS(2696), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_signed] = ACTIONS(2696), + [anon_sym_unsigned] = ACTIONS(2696), + [anon_sym_long] = ACTIONS(2696), + [anon_sym_short] = ACTIONS(2696), + [anon_sym_static] = ACTIONS(2696), + [anon_sym_ATautoreleasepool] = ACTIONS(2698), + [anon_sym_auto] = ACTIONS(2696), + [anon_sym_register] = ACTIONS(2696), + [anon_sym_inline] = ACTIONS(2696), + [anon_sym___inline] = ACTIONS(2696), + [anon_sym___inline__] = ACTIONS(2696), + [anon_sym___forceinline] = ACTIONS(2696), + [anon_sym_thread_local] = ACTIONS(2696), + [anon_sym___thread] = ACTIONS(2696), + [anon_sym_CG_EXTERN] = ACTIONS(2696), + [anon_sym_CG_INLINE] = ACTIONS(2696), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2696), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2696), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2696), + [anon_sym_IBOutlet] = ACTIONS(2696), + [anon_sym_IBInspectable] = ACTIONS(2696), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2696), + [anon_sym_NS_INLINE] = ACTIONS(2696), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2696), + [anon_sym_OBJC_EXPORT] = ACTIONS(2696), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2696), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2696), + [anon_sym_const] = ACTIONS(2696), + [anon_sym_constexpr] = ACTIONS(2696), + [anon_sym_volatile] = ACTIONS(2696), + [anon_sym_restrict] = ACTIONS(2696), + [anon_sym___restrict__] = ACTIONS(2696), + [anon_sym__Atomic] = ACTIONS(2696), + [anon_sym__Noreturn] = ACTIONS(2696), + [anon_sym__Nonnull] = ACTIONS(2696), + [anon_sym_nullable] = ACTIONS(2696), + [anon_sym__Complex] = ACTIONS(2696), + [anon_sym__Nullable] = ACTIONS(2696), + [anon_sym__Nullable_result] = ACTIONS(2696), + [anon_sym__Null_unspecified] = ACTIONS(2696), + [anon_sym___autoreleasing] = ACTIONS(2696), + [anon_sym___block] = ACTIONS(2696), + [anon_sym___bridge] = ACTIONS(2696), + [anon_sym___bridge_retained] = ACTIONS(2696), + [anon_sym___bridge_transfer] = ACTIONS(2696), + [anon_sym___complex] = ACTIONS(2696), + [anon_sym___const] = ACTIONS(2696), + [anon_sym___imag] = ACTIONS(2696), + [anon_sym___kindof] = ACTIONS(2696), + [anon_sym___nonnull] = ACTIONS(2696), + [anon_sym___nullable] = ACTIONS(2696), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2696), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2696), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2696), + [anon_sym___real] = ACTIONS(2696), + [anon_sym___strong] = ACTIONS(2696), + [anon_sym___unsafe_unretained] = ACTIONS(2696), + [anon_sym___unused] = ACTIONS(2696), + [anon_sym___weak] = ACTIONS(2696), + [anon_sym_alignas] = ACTIONS(2696), + [anon_sym__Alignas] = ACTIONS(2696), + [sym_primitive_type] = ACTIONS(2696), + [anon_sym_enum] = ACTIONS(2696), + [anon_sym_struct] = ACTIONS(2696), + [anon_sym_union] = ACTIONS(2696), + [anon_sym_if] = ACTIONS(2696), + [anon_sym_switch] = ACTIONS(2696), + [anon_sym_case] = ACTIONS(2696), + [anon_sym_default] = ACTIONS(2696), + [anon_sym_while] = ACTIONS(2696), + [anon_sym_do] = ACTIONS(2696), + [anon_sym_for] = ACTIONS(2696), + [anon_sym_in] = ACTIONS(2696), + [anon_sym_return] = ACTIONS(2696), + [anon_sym_break] = ACTIONS(2696), + [anon_sym_continue] = ACTIONS(2696), + [anon_sym_goto] = ACTIONS(2696), + [anon_sym_DASH_DASH] = ACTIONS(2698), + [anon_sym_PLUS_PLUS] = ACTIONS(2698), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2696), + [anon_sym___alignof] = ACTIONS(2696), + [anon_sym__alignof] = ACTIONS(2696), + [anon_sym_alignof] = ACTIONS(2696), + [anon_sym__Alignof] = ACTIONS(2696), + [anon_sym_offsetof] = ACTIONS(2696), + [anon_sym__Generic] = ACTIONS(2696), + [anon_sym_asm] = ACTIONS(2696), + [anon_sym___asm__] = ACTIONS(2696), + [anon_sym___asm] = ACTIONS(2696), + [sym_number_literal] = ACTIONS(2698), + [anon_sym_L_SQUOTE] = ACTIONS(2698), + [anon_sym_u_SQUOTE] = ACTIONS(2698), + [anon_sym_U_SQUOTE] = ACTIONS(2698), + [anon_sym_u8_SQUOTE] = ACTIONS(2698), + [anon_sym_SQUOTE] = ACTIONS(2698), + [anon_sym_AT] = ACTIONS(2696), + [anon_sym_DQUOTE] = ACTIONS(2698), + [anon_sym_L_DQUOTE] = ACTIONS(2698), + [anon_sym_u_DQUOTE] = ACTIONS(2698), + [anon_sym_U_DQUOTE] = ACTIONS(2698), + [anon_sym_u8_DQUOTE] = ACTIONS(2698), + [sym_true] = ACTIONS(2696), + [sym_false] = ACTIONS(2696), + [anon_sym_NULL] = ACTIONS(2696), + [anon_sym_nullptr] = ACTIONS(2696), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2696), + [anon_sym___typeof] = ACTIONS(2696), + [anon_sym_typeof] = ACTIONS(2696), + [anon_sym_ATimport] = ACTIONS(2698), + [aux_sym_preproc_undef_token1] = ACTIONS(2696), + [anon_sym_POUND] = ACTIONS(2696), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2696), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2696), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2696), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2696), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2696), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2696), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2696), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2696), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2696), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2696), + [anon_sym_NS_AVAILABLE] = ACTIONS(2696), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2696), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2696), + [anon_sym_API_AVAILABLE] = ACTIONS(2696), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2696), + [anon_sym_API_DEPRECATED] = ACTIONS(2696), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2696), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2696), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2696), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2696), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2696), + [anon_sym___deprecated_msg] = ACTIONS(2696), + [anon_sym___deprecated_enum_msg] = ACTIONS(2696), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2696), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2696), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2696), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2696), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2696), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2696), + [anon_sym_ATprotocol] = ACTIONS(2698), + [anon_sym_ATinterface] = ACTIONS(2698), + [anon_sym_ATimplementation] = ACTIONS(2698), + [anon_sym_ATcompatibility_alias] = ACTIONS(2698), + [anon_sym_ATsynthesize] = ACTIONS(2698), + [anon_sym_ATdynamic] = ACTIONS(2698), + [anon_sym_ATtry] = ACTIONS(2698), + [anon_sym___try] = ACTIONS(2696), + [anon_sym_ATthrow] = ACTIONS(2698), + [anon_sym_ATselector] = ACTIONS(2698), + [anon_sym_ATavailable] = ACTIONS(2698), + [anon_sym___builtin_available] = ACTIONS(2696), + [anon_sym_va_arg] = ACTIONS(2696), + [anon_sym_ATencode] = ACTIONS(2698), + [anon_sym_ATsynchronized] = ACTIONS(2698), + [anon_sym_BOOL] = ACTIONS(2696), + [anon_sym_IMP] = ACTIONS(2696), + [anon_sym_SEL] = ACTIONS(2696), + [anon_sym_Class] = ACTIONS(2696), + [anon_sym_id] = ACTIONS(2696), + }, + [632] = { + [sym_identifier] = ACTIONS(2700), + [aux_sym_preproc_include_token1] = ACTIONS(2700), + [aux_sym_preproc_include_token2] = ACTIONS(2700), + [aux_sym_preproc_def_token1] = ACTIONS(2700), + [aux_sym_preproc_if_token1] = ACTIONS(2700), + [aux_sym_preproc_if_token2] = ACTIONS(2700), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2700), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2700), + [sym_preproc_directive] = ACTIONS(2700), + [anon_sym_LPAREN2] = ACTIONS(2702), + [anon_sym_BANG] = ACTIONS(2702), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_STAR] = ACTIONS(2702), + [anon_sym_CARET] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2702), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym___extension__] = ACTIONS(2700), + [anon_sym_typedef] = ACTIONS(2700), + [anon_sym_extern] = ACTIONS(2700), + [anon_sym___attribute__] = ACTIONS(2700), + [anon_sym___attribute] = ACTIONS(2700), + [anon_sym_noreturn] = ACTIONS(2700), + [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym___declspec] = ACTIONS(2700), + [anon_sym___cdecl] = ACTIONS(2700), + [anon_sym___clrcall] = ACTIONS(2700), + [anon_sym___stdcall] = ACTIONS(2700), + [anon_sym___fastcall] = ACTIONS(2700), + [anon_sym___thiscall] = ACTIONS(2700), + [anon_sym___vectorcall] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_signed] = ACTIONS(2700), + [anon_sym_unsigned] = ACTIONS(2700), + [anon_sym_long] = ACTIONS(2700), + [anon_sym_short] = ACTIONS(2700), + [anon_sym_static] = ACTIONS(2700), + [anon_sym_ATautoreleasepool] = ACTIONS(2702), + [anon_sym_auto] = ACTIONS(2700), + [anon_sym_register] = ACTIONS(2700), + [anon_sym_inline] = ACTIONS(2700), + [anon_sym___inline] = ACTIONS(2700), + [anon_sym___inline__] = ACTIONS(2700), + [anon_sym___forceinline] = ACTIONS(2700), + [anon_sym_thread_local] = ACTIONS(2700), + [anon_sym___thread] = ACTIONS(2700), + [anon_sym_CG_EXTERN] = ACTIONS(2700), + [anon_sym_CG_INLINE] = ACTIONS(2700), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2700), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2700), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2700), + [anon_sym_IBOutlet] = ACTIONS(2700), + [anon_sym_IBInspectable] = ACTIONS(2700), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2700), + [anon_sym_NS_INLINE] = ACTIONS(2700), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2700), + [anon_sym_OBJC_EXPORT] = ACTIONS(2700), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2700), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2700), + [anon_sym_const] = ACTIONS(2700), + [anon_sym_constexpr] = ACTIONS(2700), + [anon_sym_volatile] = ACTIONS(2700), + [anon_sym_restrict] = ACTIONS(2700), + [anon_sym___restrict__] = ACTIONS(2700), + [anon_sym__Atomic] = ACTIONS(2700), + [anon_sym__Noreturn] = ACTIONS(2700), + [anon_sym__Nonnull] = ACTIONS(2700), + [anon_sym_nullable] = ACTIONS(2700), + [anon_sym__Complex] = ACTIONS(2700), + [anon_sym__Nullable] = ACTIONS(2700), + [anon_sym__Nullable_result] = ACTIONS(2700), + [anon_sym__Null_unspecified] = ACTIONS(2700), + [anon_sym___autoreleasing] = ACTIONS(2700), + [anon_sym___block] = ACTIONS(2700), + [anon_sym___bridge] = ACTIONS(2700), + [anon_sym___bridge_retained] = ACTIONS(2700), + [anon_sym___bridge_transfer] = ACTIONS(2700), + [anon_sym___complex] = ACTIONS(2700), + [anon_sym___const] = ACTIONS(2700), + [anon_sym___imag] = ACTIONS(2700), + [anon_sym___kindof] = ACTIONS(2700), + [anon_sym___nonnull] = ACTIONS(2700), + [anon_sym___nullable] = ACTIONS(2700), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2700), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2700), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2700), + [anon_sym___real] = ACTIONS(2700), + [anon_sym___strong] = ACTIONS(2700), + [anon_sym___unsafe_unretained] = ACTIONS(2700), + [anon_sym___unused] = ACTIONS(2700), + [anon_sym___weak] = ACTIONS(2700), + [anon_sym_alignas] = ACTIONS(2700), + [anon_sym__Alignas] = ACTIONS(2700), + [sym_primitive_type] = ACTIONS(2700), + [anon_sym_enum] = ACTIONS(2700), + [anon_sym_struct] = ACTIONS(2700), + [anon_sym_union] = ACTIONS(2700), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_switch] = ACTIONS(2700), + [anon_sym_case] = ACTIONS(2700), + [anon_sym_default] = ACTIONS(2700), + [anon_sym_while] = ACTIONS(2700), + [anon_sym_do] = ACTIONS(2700), + [anon_sym_for] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(2700), + [anon_sym_return] = ACTIONS(2700), + [anon_sym_break] = ACTIONS(2700), + [anon_sym_continue] = ACTIONS(2700), + [anon_sym_goto] = ACTIONS(2700), + [anon_sym_DASH_DASH] = ACTIONS(2702), + [anon_sym_PLUS_PLUS] = ACTIONS(2702), + [anon_sym_sizeof] = ACTIONS(2700), + [anon_sym___alignof__] = ACTIONS(2700), + [anon_sym___alignof] = ACTIONS(2700), + [anon_sym__alignof] = ACTIONS(2700), + [anon_sym_alignof] = ACTIONS(2700), + [anon_sym__Alignof] = ACTIONS(2700), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2700), + [anon_sym_asm] = ACTIONS(2700), + [anon_sym___asm__] = ACTIONS(2700), + [anon_sym___asm] = ACTIONS(2700), + [sym_number_literal] = ACTIONS(2702), + [anon_sym_L_SQUOTE] = ACTIONS(2702), + [anon_sym_u_SQUOTE] = ACTIONS(2702), + [anon_sym_U_SQUOTE] = ACTIONS(2702), + [anon_sym_u8_SQUOTE] = ACTIONS(2702), + [anon_sym_SQUOTE] = ACTIONS(2702), + [anon_sym_AT] = ACTIONS(2700), + [anon_sym_DQUOTE] = ACTIONS(2702), + [anon_sym_L_DQUOTE] = ACTIONS(2702), + [anon_sym_u_DQUOTE] = ACTIONS(2702), + [anon_sym_U_DQUOTE] = ACTIONS(2702), + [anon_sym_u8_DQUOTE] = ACTIONS(2702), + [sym_true] = ACTIONS(2700), + [sym_false] = ACTIONS(2700), + [anon_sym_NULL] = ACTIONS(2700), + [anon_sym_nullptr] = ACTIONS(2700), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2700), + [anon_sym___typeof] = ACTIONS(2700), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_ATimport] = ACTIONS(2702), + [aux_sym_preproc_undef_token1] = ACTIONS(2700), + [anon_sym_POUND] = ACTIONS(2700), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2700), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2700), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2700), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2700), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2700), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2700), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2700), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2700), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2700), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2700), + [anon_sym_NS_AVAILABLE] = ACTIONS(2700), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2700), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2700), + [anon_sym_API_AVAILABLE] = ACTIONS(2700), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2700), + [anon_sym_API_DEPRECATED] = ACTIONS(2700), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2700), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2700), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2700), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2700), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2700), + [anon_sym___deprecated_msg] = ACTIONS(2700), + [anon_sym___deprecated_enum_msg] = ACTIONS(2700), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2700), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2700), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2700), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2700), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2700), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2700), + [anon_sym_ATprotocol] = ACTIONS(2702), + [anon_sym_ATinterface] = ACTIONS(2702), + [anon_sym_ATimplementation] = ACTIONS(2702), + [anon_sym_ATcompatibility_alias] = ACTIONS(2702), + [anon_sym_ATsynthesize] = ACTIONS(2702), + [anon_sym_ATdynamic] = ACTIONS(2702), + [anon_sym_ATtry] = ACTIONS(2702), + [anon_sym___try] = ACTIONS(2700), + [anon_sym_ATthrow] = ACTIONS(2702), + [anon_sym_ATselector] = ACTIONS(2702), + [anon_sym_ATavailable] = ACTIONS(2702), + [anon_sym___builtin_available] = ACTIONS(2700), + [anon_sym_va_arg] = ACTIONS(2700), + [anon_sym_ATencode] = ACTIONS(2702), + [anon_sym_ATsynchronized] = ACTIONS(2702), + [anon_sym_BOOL] = ACTIONS(2700), + [anon_sym_IMP] = ACTIONS(2700), + [anon_sym_SEL] = ACTIONS(2700), + [anon_sym_Class] = ACTIONS(2700), + [anon_sym_id] = ACTIONS(2700), + }, + [633] = { + [sym_identifier] = ACTIONS(2704), + [aux_sym_preproc_include_token1] = ACTIONS(2704), + [aux_sym_preproc_include_token2] = ACTIONS(2704), + [aux_sym_preproc_def_token1] = ACTIONS(2704), + [aux_sym_preproc_if_token1] = ACTIONS(2704), + [aux_sym_preproc_if_token2] = ACTIONS(2704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2704), + [sym_preproc_directive] = ACTIONS(2704), + [anon_sym_LPAREN2] = ACTIONS(2706), + [anon_sym_BANG] = ACTIONS(2706), + [anon_sym_TILDE] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_STAR] = ACTIONS(2706), + [anon_sym_CARET] = ACTIONS(2706), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym___extension__] = ACTIONS(2704), + [anon_sym_typedef] = ACTIONS(2704), + [anon_sym_extern] = ACTIONS(2704), + [anon_sym___attribute__] = ACTIONS(2704), + [anon_sym___attribute] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_LBRACK] = ACTIONS(2706), + [anon_sym___declspec] = ACTIONS(2704), + [anon_sym___cdecl] = ACTIONS(2704), + [anon_sym___clrcall] = ACTIONS(2704), + [anon_sym___stdcall] = ACTIONS(2704), + [anon_sym___fastcall] = ACTIONS(2704), + [anon_sym___thiscall] = ACTIONS(2704), + [anon_sym___vectorcall] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_signed] = ACTIONS(2704), + [anon_sym_unsigned] = ACTIONS(2704), + [anon_sym_long] = ACTIONS(2704), + [anon_sym_short] = ACTIONS(2704), + [anon_sym_static] = ACTIONS(2704), + [anon_sym_ATautoreleasepool] = ACTIONS(2706), + [anon_sym_auto] = ACTIONS(2704), + [anon_sym_register] = ACTIONS(2704), + [anon_sym_inline] = ACTIONS(2704), + [anon_sym___inline] = ACTIONS(2704), + [anon_sym___inline__] = ACTIONS(2704), + [anon_sym___forceinline] = ACTIONS(2704), + [anon_sym_thread_local] = ACTIONS(2704), + [anon_sym___thread] = ACTIONS(2704), + [anon_sym_CG_EXTERN] = ACTIONS(2704), + [anon_sym_CG_INLINE] = ACTIONS(2704), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2704), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2704), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2704), + [anon_sym_IBOutlet] = ACTIONS(2704), + [anon_sym_IBInspectable] = ACTIONS(2704), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2704), + [anon_sym_NS_INLINE] = ACTIONS(2704), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2704), + [anon_sym_OBJC_EXPORT] = ACTIONS(2704), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2704), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2704), + [anon_sym_const] = ACTIONS(2704), + [anon_sym_constexpr] = ACTIONS(2704), + [anon_sym_volatile] = ACTIONS(2704), + [anon_sym_restrict] = ACTIONS(2704), + [anon_sym___restrict__] = ACTIONS(2704), + [anon_sym__Atomic] = ACTIONS(2704), + [anon_sym__Noreturn] = ACTIONS(2704), + [anon_sym__Nonnull] = ACTIONS(2704), + [anon_sym_nullable] = ACTIONS(2704), + [anon_sym__Complex] = ACTIONS(2704), + [anon_sym__Nullable] = ACTIONS(2704), + [anon_sym__Nullable_result] = ACTIONS(2704), + [anon_sym__Null_unspecified] = ACTIONS(2704), + [anon_sym___autoreleasing] = ACTIONS(2704), + [anon_sym___block] = ACTIONS(2704), + [anon_sym___bridge] = ACTIONS(2704), + [anon_sym___bridge_retained] = ACTIONS(2704), + [anon_sym___bridge_transfer] = ACTIONS(2704), + [anon_sym___complex] = ACTIONS(2704), + [anon_sym___const] = ACTIONS(2704), + [anon_sym___imag] = ACTIONS(2704), + [anon_sym___kindof] = ACTIONS(2704), + [anon_sym___nonnull] = ACTIONS(2704), + [anon_sym___nullable] = ACTIONS(2704), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2704), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2704), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2704), + [anon_sym___real] = ACTIONS(2704), + [anon_sym___strong] = ACTIONS(2704), + [anon_sym___unsafe_unretained] = ACTIONS(2704), + [anon_sym___unused] = ACTIONS(2704), + [anon_sym___weak] = ACTIONS(2704), + [anon_sym_alignas] = ACTIONS(2704), + [anon_sym__Alignas] = ACTIONS(2704), + [sym_primitive_type] = ACTIONS(2704), + [anon_sym_enum] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_union] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_switch] = ACTIONS(2704), + [anon_sym_case] = ACTIONS(2704), + [anon_sym_default] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_do] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_in] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_goto] = ACTIONS(2704), + [anon_sym_DASH_DASH] = ACTIONS(2706), + [anon_sym_PLUS_PLUS] = ACTIONS(2706), + [anon_sym_sizeof] = ACTIONS(2704), + [anon_sym___alignof__] = ACTIONS(2704), + [anon_sym___alignof] = ACTIONS(2704), + [anon_sym__alignof] = ACTIONS(2704), + [anon_sym_alignof] = ACTIONS(2704), + [anon_sym__Alignof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2704), + [anon_sym__Generic] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2704), + [anon_sym___asm__] = ACTIONS(2704), + [anon_sym___asm] = ACTIONS(2704), + [sym_number_literal] = ACTIONS(2706), + [anon_sym_L_SQUOTE] = ACTIONS(2706), + [anon_sym_u_SQUOTE] = ACTIONS(2706), + [anon_sym_U_SQUOTE] = ACTIONS(2706), + [anon_sym_u8_SQUOTE] = ACTIONS(2706), + [anon_sym_SQUOTE] = ACTIONS(2706), + [anon_sym_AT] = ACTIONS(2704), + [anon_sym_DQUOTE] = ACTIONS(2706), + [anon_sym_L_DQUOTE] = ACTIONS(2706), + [anon_sym_u_DQUOTE] = ACTIONS(2706), + [anon_sym_U_DQUOTE] = ACTIONS(2706), + [anon_sym_u8_DQUOTE] = ACTIONS(2706), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [anon_sym_NULL] = ACTIONS(2704), + [anon_sym_nullptr] = ACTIONS(2704), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2704), + [anon_sym___typeof] = ACTIONS(2704), + [anon_sym_typeof] = ACTIONS(2704), + [anon_sym_ATimport] = ACTIONS(2706), + [aux_sym_preproc_undef_token1] = ACTIONS(2704), + [anon_sym_POUND] = ACTIONS(2704), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2704), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2704), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2704), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2704), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2704), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2704), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2704), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2704), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2704), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2704), + [anon_sym_NS_AVAILABLE] = ACTIONS(2704), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2704), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2704), + [anon_sym_API_AVAILABLE] = ACTIONS(2704), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2704), + [anon_sym_API_DEPRECATED] = ACTIONS(2704), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2704), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2704), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2704), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2704), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2704), + [anon_sym___deprecated_msg] = ACTIONS(2704), + [anon_sym___deprecated_enum_msg] = ACTIONS(2704), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2704), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2704), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2704), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2704), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2704), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2704), + [anon_sym_ATprotocol] = ACTIONS(2706), + [anon_sym_ATinterface] = ACTIONS(2706), + [anon_sym_ATimplementation] = ACTIONS(2706), + [anon_sym_ATcompatibility_alias] = ACTIONS(2706), + [anon_sym_ATsynthesize] = ACTIONS(2706), + [anon_sym_ATdynamic] = ACTIONS(2706), + [anon_sym_ATtry] = ACTIONS(2706), + [anon_sym___try] = ACTIONS(2704), + [anon_sym_ATthrow] = ACTIONS(2706), + [anon_sym_ATselector] = ACTIONS(2706), + [anon_sym_ATavailable] = ACTIONS(2706), + [anon_sym___builtin_available] = ACTIONS(2704), + [anon_sym_va_arg] = ACTIONS(2704), + [anon_sym_ATencode] = ACTIONS(2706), + [anon_sym_ATsynchronized] = ACTIONS(2706), + [anon_sym_BOOL] = ACTIONS(2704), + [anon_sym_IMP] = ACTIONS(2704), + [anon_sym_SEL] = ACTIONS(2704), + [anon_sym_Class] = ACTIONS(2704), + [anon_sym_id] = ACTIONS(2704), + }, + [634] = { + [sym_identifier] = ACTIONS(2708), + [aux_sym_preproc_include_token1] = ACTIONS(2708), + [aux_sym_preproc_include_token2] = ACTIONS(2708), + [aux_sym_preproc_def_token1] = ACTIONS(2708), + [aux_sym_preproc_if_token1] = ACTIONS(2708), + [aux_sym_preproc_if_token2] = ACTIONS(2708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2708), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2708), + [sym_preproc_directive] = ACTIONS(2708), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_BANG] = ACTIONS(2710), + [anon_sym_TILDE] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_STAR] = ACTIONS(2710), + [anon_sym_CARET] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym___extension__] = ACTIONS(2708), + [anon_sym_typedef] = ACTIONS(2708), + [anon_sym_extern] = ACTIONS(2708), + [anon_sym___attribute__] = ACTIONS(2708), + [anon_sym___attribute] = ACTIONS(2708), + [anon_sym_noreturn] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2710), + [anon_sym___declspec] = ACTIONS(2708), + [anon_sym___cdecl] = ACTIONS(2708), + [anon_sym___clrcall] = ACTIONS(2708), + [anon_sym___stdcall] = ACTIONS(2708), + [anon_sym___fastcall] = ACTIONS(2708), + [anon_sym___thiscall] = ACTIONS(2708), + [anon_sym___vectorcall] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_signed] = ACTIONS(2708), + [anon_sym_unsigned] = ACTIONS(2708), + [anon_sym_long] = ACTIONS(2708), + [anon_sym_short] = ACTIONS(2708), + [anon_sym_static] = ACTIONS(2708), + [anon_sym_ATautoreleasepool] = ACTIONS(2710), + [anon_sym_auto] = ACTIONS(2708), + [anon_sym_register] = ACTIONS(2708), + [anon_sym_inline] = ACTIONS(2708), + [anon_sym___inline] = ACTIONS(2708), + [anon_sym___inline__] = ACTIONS(2708), + [anon_sym___forceinline] = ACTIONS(2708), + [anon_sym_thread_local] = ACTIONS(2708), + [anon_sym___thread] = ACTIONS(2708), + [anon_sym_CG_EXTERN] = ACTIONS(2708), + [anon_sym_CG_INLINE] = ACTIONS(2708), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2708), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2708), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2708), + [anon_sym_IBOutlet] = ACTIONS(2708), + [anon_sym_IBInspectable] = ACTIONS(2708), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2708), + [anon_sym_NS_INLINE] = ACTIONS(2708), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2708), + [anon_sym_OBJC_EXPORT] = ACTIONS(2708), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2708), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2708), + [anon_sym_const] = ACTIONS(2708), + [anon_sym_constexpr] = ACTIONS(2708), + [anon_sym_volatile] = ACTIONS(2708), + [anon_sym_restrict] = ACTIONS(2708), + [anon_sym___restrict__] = ACTIONS(2708), + [anon_sym__Atomic] = ACTIONS(2708), + [anon_sym__Noreturn] = ACTIONS(2708), + [anon_sym__Nonnull] = ACTIONS(2708), + [anon_sym_nullable] = ACTIONS(2708), + [anon_sym__Complex] = ACTIONS(2708), + [anon_sym__Nullable] = ACTIONS(2708), + [anon_sym__Nullable_result] = ACTIONS(2708), + [anon_sym__Null_unspecified] = ACTIONS(2708), + [anon_sym___autoreleasing] = ACTIONS(2708), + [anon_sym___block] = ACTIONS(2708), + [anon_sym___bridge] = ACTIONS(2708), + [anon_sym___bridge_retained] = ACTIONS(2708), + [anon_sym___bridge_transfer] = ACTIONS(2708), + [anon_sym___complex] = ACTIONS(2708), + [anon_sym___const] = ACTIONS(2708), + [anon_sym___imag] = ACTIONS(2708), + [anon_sym___kindof] = ACTIONS(2708), + [anon_sym___nonnull] = ACTIONS(2708), + [anon_sym___nullable] = ACTIONS(2708), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2708), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2708), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2708), + [anon_sym___real] = ACTIONS(2708), + [anon_sym___strong] = ACTIONS(2708), + [anon_sym___unsafe_unretained] = ACTIONS(2708), + [anon_sym___unused] = ACTIONS(2708), + [anon_sym___weak] = ACTIONS(2708), + [anon_sym_alignas] = ACTIONS(2708), + [anon_sym__Alignas] = ACTIONS(2708), + [sym_primitive_type] = ACTIONS(2708), + [anon_sym_enum] = ACTIONS(2708), + [anon_sym_struct] = ACTIONS(2708), + [anon_sym_union] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_switch] = ACTIONS(2708), + [anon_sym_case] = ACTIONS(2708), + [anon_sym_default] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_in] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_break] = ACTIONS(2708), + [anon_sym_continue] = ACTIONS(2708), + [anon_sym_goto] = ACTIONS(2708), + [anon_sym_DASH_DASH] = ACTIONS(2710), + [anon_sym_PLUS_PLUS] = ACTIONS(2710), + [anon_sym_sizeof] = ACTIONS(2708), + [anon_sym___alignof__] = ACTIONS(2708), + [anon_sym___alignof] = ACTIONS(2708), + [anon_sym__alignof] = ACTIONS(2708), + [anon_sym_alignof] = ACTIONS(2708), + [anon_sym__Alignof] = ACTIONS(2708), + [anon_sym_offsetof] = ACTIONS(2708), + [anon_sym__Generic] = ACTIONS(2708), + [anon_sym_asm] = ACTIONS(2708), + [anon_sym___asm__] = ACTIONS(2708), + [anon_sym___asm] = ACTIONS(2708), + [sym_number_literal] = ACTIONS(2710), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_AT] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2710), + [anon_sym_u_DQUOTE] = ACTIONS(2710), + [anon_sym_U_DQUOTE] = ACTIONS(2710), + [anon_sym_u8_DQUOTE] = ACTIONS(2710), + [sym_true] = ACTIONS(2708), + [sym_false] = ACTIONS(2708), + [anon_sym_NULL] = ACTIONS(2708), + [anon_sym_nullptr] = ACTIONS(2708), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2708), + [anon_sym___typeof] = ACTIONS(2708), + [anon_sym_typeof] = ACTIONS(2708), + [anon_sym_ATimport] = ACTIONS(2710), + [aux_sym_preproc_undef_token1] = ACTIONS(2708), + [anon_sym_POUND] = ACTIONS(2708), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2708), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2708), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2708), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2708), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2708), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2708), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2708), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2708), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2708), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2708), + [anon_sym_NS_AVAILABLE] = ACTIONS(2708), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2708), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2708), + [anon_sym_API_AVAILABLE] = ACTIONS(2708), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2708), + [anon_sym_API_DEPRECATED] = ACTIONS(2708), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2708), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2708), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2708), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2708), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2708), + [anon_sym___deprecated_msg] = ACTIONS(2708), + [anon_sym___deprecated_enum_msg] = ACTIONS(2708), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2708), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2708), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2708), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2708), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2708), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2708), + [anon_sym_ATprotocol] = ACTIONS(2710), + [anon_sym_ATinterface] = ACTIONS(2710), + [anon_sym_ATimplementation] = ACTIONS(2710), + [anon_sym_ATcompatibility_alias] = ACTIONS(2710), + [anon_sym_ATsynthesize] = ACTIONS(2710), + [anon_sym_ATdynamic] = ACTIONS(2710), + [anon_sym_ATtry] = ACTIONS(2710), + [anon_sym___try] = ACTIONS(2708), + [anon_sym_ATthrow] = ACTIONS(2710), + [anon_sym_ATselector] = ACTIONS(2710), + [anon_sym_ATavailable] = ACTIONS(2710), + [anon_sym___builtin_available] = ACTIONS(2708), + [anon_sym_va_arg] = ACTIONS(2708), + [anon_sym_ATencode] = ACTIONS(2710), + [anon_sym_ATsynchronized] = ACTIONS(2710), + [anon_sym_BOOL] = ACTIONS(2708), + [anon_sym_IMP] = ACTIONS(2708), + [anon_sym_SEL] = ACTIONS(2708), + [anon_sym_Class] = ACTIONS(2708), + [anon_sym_id] = ACTIONS(2708), + }, + [635] = { + [sym_identifier] = ACTIONS(2712), + [aux_sym_preproc_include_token1] = ACTIONS(2712), + [aux_sym_preproc_include_token2] = ACTIONS(2712), + [aux_sym_preproc_def_token1] = ACTIONS(2712), + [aux_sym_preproc_if_token1] = ACTIONS(2712), + [aux_sym_preproc_if_token2] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2712), + [sym_preproc_directive] = ACTIONS(2712), + [anon_sym_LPAREN2] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_PLUS] = ACTIONS(2712), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_CARET] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym___extension__] = ACTIONS(2712), + [anon_sym_typedef] = ACTIONS(2712), + [anon_sym_extern] = ACTIONS(2712), + [anon_sym___attribute__] = ACTIONS(2712), + [anon_sym___attribute] = ACTIONS(2712), + [anon_sym_noreturn] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym___declspec] = ACTIONS(2712), + [anon_sym___cdecl] = ACTIONS(2712), + [anon_sym___clrcall] = ACTIONS(2712), + [anon_sym___stdcall] = ACTIONS(2712), + [anon_sym___fastcall] = ACTIONS(2712), + [anon_sym___thiscall] = ACTIONS(2712), + [anon_sym___vectorcall] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_signed] = ACTIONS(2712), + [anon_sym_unsigned] = ACTIONS(2712), + [anon_sym_long] = ACTIONS(2712), + [anon_sym_short] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2712), + [anon_sym_ATautoreleasepool] = ACTIONS(2714), + [anon_sym_auto] = ACTIONS(2712), + [anon_sym_register] = ACTIONS(2712), + [anon_sym_inline] = ACTIONS(2712), + [anon_sym___inline] = ACTIONS(2712), + [anon_sym___inline__] = ACTIONS(2712), + [anon_sym___forceinline] = ACTIONS(2712), + [anon_sym_thread_local] = ACTIONS(2712), + [anon_sym___thread] = ACTIONS(2712), + [anon_sym_CG_EXTERN] = ACTIONS(2712), + [anon_sym_CG_INLINE] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2712), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2712), + [anon_sym_IBOutlet] = ACTIONS(2712), + [anon_sym_IBInspectable] = ACTIONS(2712), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2712), + [anon_sym_NS_INLINE] = ACTIONS(2712), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2712), + [anon_sym_OBJC_EXPORT] = ACTIONS(2712), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2712), + [anon_sym_const] = ACTIONS(2712), + [anon_sym_constexpr] = ACTIONS(2712), + [anon_sym_volatile] = ACTIONS(2712), + [anon_sym_restrict] = ACTIONS(2712), + [anon_sym___restrict__] = ACTIONS(2712), + [anon_sym__Atomic] = ACTIONS(2712), + [anon_sym__Noreturn] = ACTIONS(2712), + [anon_sym__Nonnull] = ACTIONS(2712), + [anon_sym_nullable] = ACTIONS(2712), + [anon_sym__Complex] = ACTIONS(2712), + [anon_sym__Nullable] = ACTIONS(2712), + [anon_sym__Nullable_result] = ACTIONS(2712), + [anon_sym__Null_unspecified] = ACTIONS(2712), + [anon_sym___autoreleasing] = ACTIONS(2712), + [anon_sym___block] = ACTIONS(2712), + [anon_sym___bridge] = ACTIONS(2712), + [anon_sym___bridge_retained] = ACTIONS(2712), + [anon_sym___bridge_transfer] = ACTIONS(2712), + [anon_sym___complex] = ACTIONS(2712), + [anon_sym___const] = ACTIONS(2712), + [anon_sym___imag] = ACTIONS(2712), + [anon_sym___kindof] = ACTIONS(2712), + [anon_sym___nonnull] = ACTIONS(2712), + [anon_sym___nullable] = ACTIONS(2712), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2712), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2712), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2712), + [anon_sym___real] = ACTIONS(2712), + [anon_sym___strong] = ACTIONS(2712), + [anon_sym___unsafe_unretained] = ACTIONS(2712), + [anon_sym___unused] = ACTIONS(2712), + [anon_sym___weak] = ACTIONS(2712), + [anon_sym_alignas] = ACTIONS(2712), + [anon_sym__Alignas] = ACTIONS(2712), + [sym_primitive_type] = ACTIONS(2712), + [anon_sym_enum] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_union] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_switch] = ACTIONS(2712), + [anon_sym_case] = ACTIONS(2712), + [anon_sym_default] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_do] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_goto] = ACTIONS(2712), + [anon_sym_DASH_DASH] = ACTIONS(2714), + [anon_sym_PLUS_PLUS] = ACTIONS(2714), + [anon_sym_sizeof] = ACTIONS(2712), + [anon_sym___alignof__] = ACTIONS(2712), + [anon_sym___alignof] = ACTIONS(2712), + [anon_sym__alignof] = ACTIONS(2712), + [anon_sym_alignof] = ACTIONS(2712), + [anon_sym__Alignof] = ACTIONS(2712), + [anon_sym_offsetof] = ACTIONS(2712), + [anon_sym__Generic] = ACTIONS(2712), + [anon_sym_asm] = ACTIONS(2712), + [anon_sym___asm__] = ACTIONS(2712), + [anon_sym___asm] = ACTIONS(2712), + [sym_number_literal] = ACTIONS(2714), + [anon_sym_L_SQUOTE] = ACTIONS(2714), + [anon_sym_u_SQUOTE] = ACTIONS(2714), + [anon_sym_U_SQUOTE] = ACTIONS(2714), + [anon_sym_u8_SQUOTE] = ACTIONS(2714), + [anon_sym_SQUOTE] = ACTIONS(2714), + [anon_sym_AT] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2714), + [anon_sym_L_DQUOTE] = ACTIONS(2714), + [anon_sym_u_DQUOTE] = ACTIONS(2714), + [anon_sym_U_DQUOTE] = ACTIONS(2714), + [anon_sym_u8_DQUOTE] = ACTIONS(2714), + [sym_true] = ACTIONS(2712), + [sym_false] = ACTIONS(2712), + [anon_sym_NULL] = ACTIONS(2712), + [anon_sym_nullptr] = ACTIONS(2712), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2712), + [anon_sym___typeof] = ACTIONS(2712), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_ATimport] = ACTIONS(2714), + [aux_sym_preproc_undef_token1] = ACTIONS(2712), + [anon_sym_POUND] = ACTIONS(2712), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2712), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2712), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2712), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2712), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE] = ACTIONS(2712), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_API_AVAILABLE] = ACTIONS(2712), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_API_DEPRECATED] = ACTIONS(2712), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2712), + [anon_sym___deprecated_msg] = ACTIONS(2712), + [anon_sym___deprecated_enum_msg] = ACTIONS(2712), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2712), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2712), + [anon_sym_ATprotocol] = ACTIONS(2714), + [anon_sym_ATinterface] = ACTIONS(2714), + [anon_sym_ATimplementation] = ACTIONS(2714), + [anon_sym_ATcompatibility_alias] = ACTIONS(2714), + [anon_sym_ATsynthesize] = ACTIONS(2714), + [anon_sym_ATdynamic] = ACTIONS(2714), + [anon_sym_ATtry] = ACTIONS(2714), + [anon_sym___try] = ACTIONS(2712), + [anon_sym_ATthrow] = ACTIONS(2714), + [anon_sym_ATselector] = ACTIONS(2714), + [anon_sym_ATavailable] = ACTIONS(2714), + [anon_sym___builtin_available] = ACTIONS(2712), + [anon_sym_va_arg] = ACTIONS(2712), + [anon_sym_ATencode] = ACTIONS(2714), + [anon_sym_ATsynchronized] = ACTIONS(2714), + [anon_sym_BOOL] = ACTIONS(2712), + [anon_sym_IMP] = ACTIONS(2712), + [anon_sym_SEL] = ACTIONS(2712), + [anon_sym_Class] = ACTIONS(2712), + [anon_sym_id] = ACTIONS(2712), + }, + [636] = { + [sym_identifier] = ACTIONS(2712), + [aux_sym_preproc_include_token1] = ACTIONS(2712), + [aux_sym_preproc_include_token2] = ACTIONS(2712), + [aux_sym_preproc_def_token1] = ACTIONS(2712), + [aux_sym_preproc_if_token1] = ACTIONS(2712), + [aux_sym_preproc_if_token2] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2712), + [sym_preproc_directive] = ACTIONS(2712), + [anon_sym_LPAREN2] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_PLUS] = ACTIONS(2712), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_CARET] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym___extension__] = ACTIONS(2712), + [anon_sym_typedef] = ACTIONS(2712), + [anon_sym_extern] = ACTIONS(2712), + [anon_sym___attribute__] = ACTIONS(2712), + [anon_sym___attribute] = ACTIONS(2712), + [anon_sym_noreturn] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym___declspec] = ACTIONS(2712), + [anon_sym___cdecl] = ACTIONS(2712), + [anon_sym___clrcall] = ACTIONS(2712), + [anon_sym___stdcall] = ACTIONS(2712), + [anon_sym___fastcall] = ACTIONS(2712), + [anon_sym___thiscall] = ACTIONS(2712), + [anon_sym___vectorcall] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_signed] = ACTIONS(2712), + [anon_sym_unsigned] = ACTIONS(2712), + [anon_sym_long] = ACTIONS(2712), + [anon_sym_short] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2712), + [anon_sym_ATautoreleasepool] = ACTIONS(2714), + [anon_sym_auto] = ACTIONS(2712), + [anon_sym_register] = ACTIONS(2712), + [anon_sym_inline] = ACTIONS(2712), + [anon_sym___inline] = ACTIONS(2712), + [anon_sym___inline__] = ACTIONS(2712), + [anon_sym___forceinline] = ACTIONS(2712), + [anon_sym_thread_local] = ACTIONS(2712), + [anon_sym___thread] = ACTIONS(2712), + [anon_sym_CG_EXTERN] = ACTIONS(2712), + [anon_sym_CG_INLINE] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2712), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2712), + [anon_sym_IBOutlet] = ACTIONS(2712), + [anon_sym_IBInspectable] = ACTIONS(2712), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2712), + [anon_sym_NS_INLINE] = ACTIONS(2712), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2712), + [anon_sym_OBJC_EXPORT] = ACTIONS(2712), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2712), + [anon_sym_const] = ACTIONS(2712), + [anon_sym_constexpr] = ACTIONS(2712), + [anon_sym_volatile] = ACTIONS(2712), + [anon_sym_restrict] = ACTIONS(2712), + [anon_sym___restrict__] = ACTIONS(2712), + [anon_sym__Atomic] = ACTIONS(2712), + [anon_sym__Noreturn] = ACTIONS(2712), + [anon_sym__Nonnull] = ACTIONS(2712), + [anon_sym_nullable] = ACTIONS(2712), + [anon_sym__Complex] = ACTIONS(2712), + [anon_sym__Nullable] = ACTIONS(2712), + [anon_sym__Nullable_result] = ACTIONS(2712), + [anon_sym__Null_unspecified] = ACTIONS(2712), + [anon_sym___autoreleasing] = ACTIONS(2712), + [anon_sym___block] = ACTIONS(2712), + [anon_sym___bridge] = ACTIONS(2712), + [anon_sym___bridge_retained] = ACTIONS(2712), + [anon_sym___bridge_transfer] = ACTIONS(2712), + [anon_sym___complex] = ACTIONS(2712), + [anon_sym___const] = ACTIONS(2712), + [anon_sym___imag] = ACTIONS(2712), + [anon_sym___kindof] = ACTIONS(2712), + [anon_sym___nonnull] = ACTIONS(2712), + [anon_sym___nullable] = ACTIONS(2712), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2712), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2712), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2712), + [anon_sym___real] = ACTIONS(2712), + [anon_sym___strong] = ACTIONS(2712), + [anon_sym___unsafe_unretained] = ACTIONS(2712), + [anon_sym___unused] = ACTIONS(2712), + [anon_sym___weak] = ACTIONS(2712), + [anon_sym_alignas] = ACTIONS(2712), + [anon_sym__Alignas] = ACTIONS(2712), + [sym_primitive_type] = ACTIONS(2712), + [anon_sym_enum] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_union] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_switch] = ACTIONS(2712), + [anon_sym_case] = ACTIONS(2712), + [anon_sym_default] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_do] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_goto] = ACTIONS(2712), + [anon_sym_DASH_DASH] = ACTIONS(2714), + [anon_sym_PLUS_PLUS] = ACTIONS(2714), + [anon_sym_sizeof] = ACTIONS(2712), + [anon_sym___alignof__] = ACTIONS(2712), + [anon_sym___alignof] = ACTIONS(2712), + [anon_sym__alignof] = ACTIONS(2712), + [anon_sym_alignof] = ACTIONS(2712), + [anon_sym__Alignof] = ACTIONS(2712), + [anon_sym_offsetof] = ACTIONS(2712), + [anon_sym__Generic] = ACTIONS(2712), + [anon_sym_asm] = ACTIONS(2712), + [anon_sym___asm__] = ACTIONS(2712), + [anon_sym___asm] = ACTIONS(2712), + [sym_number_literal] = ACTIONS(2714), + [anon_sym_L_SQUOTE] = ACTIONS(2714), + [anon_sym_u_SQUOTE] = ACTIONS(2714), + [anon_sym_U_SQUOTE] = ACTIONS(2714), + [anon_sym_u8_SQUOTE] = ACTIONS(2714), + [anon_sym_SQUOTE] = ACTIONS(2714), + [anon_sym_AT] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2714), + [anon_sym_L_DQUOTE] = ACTIONS(2714), + [anon_sym_u_DQUOTE] = ACTIONS(2714), + [anon_sym_U_DQUOTE] = ACTIONS(2714), + [anon_sym_u8_DQUOTE] = ACTIONS(2714), + [sym_true] = ACTIONS(2712), + [sym_false] = ACTIONS(2712), + [anon_sym_NULL] = ACTIONS(2712), + [anon_sym_nullptr] = ACTIONS(2712), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2712), + [anon_sym___typeof] = ACTIONS(2712), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_ATimport] = ACTIONS(2714), + [aux_sym_preproc_undef_token1] = ACTIONS(2712), + [anon_sym_POUND] = ACTIONS(2712), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2712), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2712), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2712), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2712), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE] = ACTIONS(2712), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_API_AVAILABLE] = ACTIONS(2712), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_API_DEPRECATED] = ACTIONS(2712), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2712), + [anon_sym___deprecated_msg] = ACTIONS(2712), + [anon_sym___deprecated_enum_msg] = ACTIONS(2712), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2712), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2712), + [anon_sym_ATprotocol] = ACTIONS(2714), + [anon_sym_ATinterface] = ACTIONS(2714), + [anon_sym_ATimplementation] = ACTIONS(2714), + [anon_sym_ATcompatibility_alias] = ACTIONS(2714), + [anon_sym_ATsynthesize] = ACTIONS(2714), + [anon_sym_ATdynamic] = ACTIONS(2714), + [anon_sym_ATtry] = ACTIONS(2714), + [anon_sym___try] = ACTIONS(2712), + [anon_sym_ATthrow] = ACTIONS(2714), + [anon_sym_ATselector] = ACTIONS(2714), + [anon_sym_ATavailable] = ACTIONS(2714), + [anon_sym___builtin_available] = ACTIONS(2712), + [anon_sym_va_arg] = ACTIONS(2712), + [anon_sym_ATencode] = ACTIONS(2714), + [anon_sym_ATsynchronized] = ACTIONS(2714), + [anon_sym_BOOL] = ACTIONS(2712), + [anon_sym_IMP] = ACTIONS(2712), + [anon_sym_SEL] = ACTIONS(2712), + [anon_sym_Class] = ACTIONS(2712), + [anon_sym_id] = ACTIONS(2712), + }, + [637] = { + [sym_identifier] = ACTIONS(2716), + [aux_sym_preproc_include_token1] = ACTIONS(2716), + [aux_sym_preproc_include_token2] = ACTIONS(2716), + [aux_sym_preproc_def_token1] = ACTIONS(2716), + [aux_sym_preproc_if_token1] = ACTIONS(2716), + [aux_sym_preproc_if_token2] = ACTIONS(2716), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2716), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2716), + [sym_preproc_directive] = ACTIONS(2716), + [anon_sym_LPAREN2] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2718), + [anon_sym_TILDE] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2716), + [anon_sym_PLUS] = ACTIONS(2716), + [anon_sym_STAR] = ACTIONS(2718), + [anon_sym_CARET] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2718), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym___extension__] = ACTIONS(2716), + [anon_sym_typedef] = ACTIONS(2716), + [anon_sym_extern] = ACTIONS(2716), + [anon_sym___attribute__] = ACTIONS(2716), + [anon_sym___attribute] = ACTIONS(2716), + [anon_sym_noreturn] = ACTIONS(2716), + [anon_sym_LBRACK] = ACTIONS(2718), + [anon_sym___declspec] = ACTIONS(2716), + [anon_sym___cdecl] = ACTIONS(2716), + [anon_sym___clrcall] = ACTIONS(2716), + [anon_sym___stdcall] = ACTIONS(2716), + [anon_sym___fastcall] = ACTIONS(2716), + [anon_sym___thiscall] = ACTIONS(2716), + [anon_sym___vectorcall] = ACTIONS(2716), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_signed] = ACTIONS(2716), + [anon_sym_unsigned] = ACTIONS(2716), + [anon_sym_long] = ACTIONS(2716), + [anon_sym_short] = ACTIONS(2716), + [anon_sym_static] = ACTIONS(2716), + [anon_sym_ATautoreleasepool] = ACTIONS(2718), + [anon_sym_auto] = ACTIONS(2716), + [anon_sym_register] = ACTIONS(2716), + [anon_sym_inline] = ACTIONS(2716), + [anon_sym___inline] = ACTIONS(2716), + [anon_sym___inline__] = ACTIONS(2716), + [anon_sym___forceinline] = ACTIONS(2716), + [anon_sym_thread_local] = ACTIONS(2716), + [anon_sym___thread] = ACTIONS(2716), + [anon_sym_CG_EXTERN] = ACTIONS(2716), + [anon_sym_CG_INLINE] = ACTIONS(2716), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2716), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2716), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2716), + [anon_sym_IBOutlet] = ACTIONS(2716), + [anon_sym_IBInspectable] = ACTIONS(2716), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2716), + [anon_sym_NS_INLINE] = ACTIONS(2716), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2716), + [anon_sym_OBJC_EXPORT] = ACTIONS(2716), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2716), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2716), + [anon_sym_const] = ACTIONS(2716), + [anon_sym_constexpr] = ACTIONS(2716), + [anon_sym_volatile] = ACTIONS(2716), + [anon_sym_restrict] = ACTIONS(2716), + [anon_sym___restrict__] = ACTIONS(2716), + [anon_sym__Atomic] = ACTIONS(2716), + [anon_sym__Noreturn] = ACTIONS(2716), + [anon_sym__Nonnull] = ACTIONS(2716), + [anon_sym_nullable] = ACTIONS(2716), + [anon_sym__Complex] = ACTIONS(2716), + [anon_sym__Nullable] = ACTIONS(2716), + [anon_sym__Nullable_result] = ACTIONS(2716), + [anon_sym__Null_unspecified] = ACTIONS(2716), + [anon_sym___autoreleasing] = ACTIONS(2716), + [anon_sym___block] = ACTIONS(2716), + [anon_sym___bridge] = ACTIONS(2716), + [anon_sym___bridge_retained] = ACTIONS(2716), + [anon_sym___bridge_transfer] = ACTIONS(2716), + [anon_sym___complex] = ACTIONS(2716), + [anon_sym___const] = ACTIONS(2716), + [anon_sym___imag] = ACTIONS(2716), + [anon_sym___kindof] = ACTIONS(2716), + [anon_sym___nonnull] = ACTIONS(2716), + [anon_sym___nullable] = ACTIONS(2716), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2716), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2716), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2716), + [anon_sym___real] = ACTIONS(2716), + [anon_sym___strong] = ACTIONS(2716), + [anon_sym___unsafe_unretained] = ACTIONS(2716), + [anon_sym___unused] = ACTIONS(2716), + [anon_sym___weak] = ACTIONS(2716), + [anon_sym_alignas] = ACTIONS(2716), + [anon_sym__Alignas] = ACTIONS(2716), + [sym_primitive_type] = ACTIONS(2716), + [anon_sym_enum] = ACTIONS(2716), + [anon_sym_struct] = ACTIONS(2716), + [anon_sym_union] = ACTIONS(2716), + [anon_sym_if] = ACTIONS(2716), + [anon_sym_switch] = ACTIONS(2716), + [anon_sym_case] = ACTIONS(2716), + [anon_sym_default] = ACTIONS(2716), + [anon_sym_while] = ACTIONS(2716), + [anon_sym_do] = ACTIONS(2716), + [anon_sym_for] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2716), + [anon_sym_return] = ACTIONS(2716), + [anon_sym_break] = ACTIONS(2716), + [anon_sym_continue] = ACTIONS(2716), + [anon_sym_goto] = ACTIONS(2716), + [anon_sym_DASH_DASH] = ACTIONS(2718), + [anon_sym_PLUS_PLUS] = ACTIONS(2718), + [anon_sym_sizeof] = ACTIONS(2716), + [anon_sym___alignof__] = ACTIONS(2716), + [anon_sym___alignof] = ACTIONS(2716), + [anon_sym__alignof] = ACTIONS(2716), + [anon_sym_alignof] = ACTIONS(2716), + [anon_sym__Alignof] = ACTIONS(2716), + [anon_sym_offsetof] = ACTIONS(2716), + [anon_sym__Generic] = ACTIONS(2716), + [anon_sym_asm] = ACTIONS(2716), + [anon_sym___asm__] = ACTIONS(2716), + [anon_sym___asm] = ACTIONS(2716), + [sym_number_literal] = ACTIONS(2718), + [anon_sym_L_SQUOTE] = ACTIONS(2718), + [anon_sym_u_SQUOTE] = ACTIONS(2718), + [anon_sym_U_SQUOTE] = ACTIONS(2718), + [anon_sym_u8_SQUOTE] = ACTIONS(2718), + [anon_sym_SQUOTE] = ACTIONS(2718), + [anon_sym_AT] = ACTIONS(2716), + [anon_sym_DQUOTE] = ACTIONS(2718), + [anon_sym_L_DQUOTE] = ACTIONS(2718), + [anon_sym_u_DQUOTE] = ACTIONS(2718), + [anon_sym_U_DQUOTE] = ACTIONS(2718), + [anon_sym_u8_DQUOTE] = ACTIONS(2718), + [sym_true] = ACTIONS(2716), + [sym_false] = ACTIONS(2716), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2716), + [anon_sym___typeof] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(2716), + [anon_sym_ATimport] = ACTIONS(2718), + [aux_sym_preproc_undef_token1] = ACTIONS(2716), + [anon_sym_POUND] = ACTIONS(2716), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2716), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2716), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2716), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2716), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2716), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2716), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2716), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2716), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2716), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2716), + [anon_sym_NS_AVAILABLE] = ACTIONS(2716), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2716), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2716), + [anon_sym_API_AVAILABLE] = ACTIONS(2716), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2716), + [anon_sym_API_DEPRECATED] = ACTIONS(2716), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2716), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2716), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2716), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2716), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2716), + [anon_sym___deprecated_msg] = ACTIONS(2716), + [anon_sym___deprecated_enum_msg] = ACTIONS(2716), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2716), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2716), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2716), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2716), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2716), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2716), + [anon_sym_ATprotocol] = ACTIONS(2718), + [anon_sym_ATinterface] = ACTIONS(2718), + [anon_sym_ATimplementation] = ACTIONS(2718), + [anon_sym_ATcompatibility_alias] = ACTIONS(2718), + [anon_sym_ATsynthesize] = ACTIONS(2718), + [anon_sym_ATdynamic] = ACTIONS(2718), + [anon_sym_ATtry] = ACTIONS(2718), + [anon_sym___try] = ACTIONS(2716), + [anon_sym_ATthrow] = ACTIONS(2718), + [anon_sym_ATselector] = ACTIONS(2718), + [anon_sym_ATavailable] = ACTIONS(2718), + [anon_sym___builtin_available] = ACTIONS(2716), + [anon_sym_va_arg] = ACTIONS(2716), + [anon_sym_ATencode] = ACTIONS(2718), + [anon_sym_ATsynchronized] = ACTIONS(2718), + [anon_sym_BOOL] = ACTIONS(2716), + [anon_sym_IMP] = ACTIONS(2716), + [anon_sym_SEL] = ACTIONS(2716), + [anon_sym_Class] = ACTIONS(2716), + [anon_sym_id] = ACTIONS(2716), + }, + [638] = { + [sym_identifier] = ACTIONS(2720), + [aux_sym_preproc_include_token1] = ACTIONS(2720), + [aux_sym_preproc_include_token2] = ACTIONS(2720), + [aux_sym_preproc_def_token1] = ACTIONS(2720), + [aux_sym_preproc_if_token1] = ACTIONS(2720), + [aux_sym_preproc_if_token2] = ACTIONS(2720), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2720), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2720), + [sym_preproc_directive] = ACTIONS(2720), + [anon_sym_LPAREN2] = ACTIONS(2722), + [anon_sym_BANG] = ACTIONS(2722), + [anon_sym_TILDE] = ACTIONS(2722), + [anon_sym_DASH] = ACTIONS(2720), + [anon_sym_PLUS] = ACTIONS(2720), + [anon_sym_STAR] = ACTIONS(2722), + [anon_sym_CARET] = ACTIONS(2722), + [anon_sym_AMP] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_typedef] = ACTIONS(2720), + [anon_sym_extern] = ACTIONS(2720), + [anon_sym___attribute__] = ACTIONS(2720), + [anon_sym___attribute] = ACTIONS(2720), + [anon_sym_noreturn] = ACTIONS(2720), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym___declspec] = ACTIONS(2720), + [anon_sym___cdecl] = ACTIONS(2720), + [anon_sym___clrcall] = ACTIONS(2720), + [anon_sym___stdcall] = ACTIONS(2720), + [anon_sym___fastcall] = ACTIONS(2720), + [anon_sym___thiscall] = ACTIONS(2720), + [anon_sym___vectorcall] = ACTIONS(2720), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_signed] = ACTIONS(2720), + [anon_sym_unsigned] = ACTIONS(2720), + [anon_sym_long] = ACTIONS(2720), + [anon_sym_short] = ACTIONS(2720), + [anon_sym_static] = ACTIONS(2720), + [anon_sym_ATautoreleasepool] = ACTIONS(2722), + [anon_sym_auto] = ACTIONS(2720), + [anon_sym_register] = ACTIONS(2720), + [anon_sym_inline] = ACTIONS(2720), + [anon_sym___inline] = ACTIONS(2720), + [anon_sym___inline__] = ACTIONS(2720), + [anon_sym___forceinline] = ACTIONS(2720), + [anon_sym_thread_local] = ACTIONS(2720), + [anon_sym___thread] = ACTIONS(2720), + [anon_sym_CG_EXTERN] = ACTIONS(2720), + [anon_sym_CG_INLINE] = ACTIONS(2720), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2720), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2720), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2720), + [anon_sym_IBOutlet] = ACTIONS(2720), + [anon_sym_IBInspectable] = ACTIONS(2720), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2720), + [anon_sym_NS_INLINE] = ACTIONS(2720), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2720), + [anon_sym_OBJC_EXPORT] = ACTIONS(2720), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2720), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2720), + [anon_sym_const] = ACTIONS(2720), + [anon_sym_constexpr] = ACTIONS(2720), + [anon_sym_volatile] = ACTIONS(2720), + [anon_sym_restrict] = ACTIONS(2720), + [anon_sym___restrict__] = ACTIONS(2720), + [anon_sym__Atomic] = ACTIONS(2720), + [anon_sym__Noreturn] = ACTIONS(2720), + [anon_sym__Nonnull] = ACTIONS(2720), + [anon_sym_nullable] = ACTIONS(2720), + [anon_sym__Complex] = ACTIONS(2720), + [anon_sym__Nullable] = ACTIONS(2720), + [anon_sym__Nullable_result] = ACTIONS(2720), + [anon_sym__Null_unspecified] = ACTIONS(2720), + [anon_sym___autoreleasing] = ACTIONS(2720), + [anon_sym___block] = ACTIONS(2720), + [anon_sym___bridge] = ACTIONS(2720), + [anon_sym___bridge_retained] = ACTIONS(2720), + [anon_sym___bridge_transfer] = ACTIONS(2720), + [anon_sym___complex] = ACTIONS(2720), + [anon_sym___const] = ACTIONS(2720), + [anon_sym___imag] = ACTIONS(2720), + [anon_sym___kindof] = ACTIONS(2720), + [anon_sym___nonnull] = ACTIONS(2720), + [anon_sym___nullable] = ACTIONS(2720), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2720), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2720), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2720), + [anon_sym___real] = ACTIONS(2720), + [anon_sym___strong] = ACTIONS(2720), + [anon_sym___unsafe_unretained] = ACTIONS(2720), + [anon_sym___unused] = ACTIONS(2720), + [anon_sym___weak] = ACTIONS(2720), + [anon_sym_alignas] = ACTIONS(2720), + [anon_sym__Alignas] = ACTIONS(2720), + [sym_primitive_type] = ACTIONS(2720), + [anon_sym_enum] = ACTIONS(2720), + [anon_sym_struct] = ACTIONS(2720), + [anon_sym_union] = ACTIONS(2720), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_switch] = ACTIONS(2720), + [anon_sym_case] = ACTIONS(2720), + [anon_sym_default] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2720), + [anon_sym_do] = ACTIONS(2720), + [anon_sym_for] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2720), + [anon_sym_return] = ACTIONS(2720), + [anon_sym_break] = ACTIONS(2720), + [anon_sym_continue] = ACTIONS(2720), + [anon_sym_goto] = ACTIONS(2720), + [anon_sym_DASH_DASH] = ACTIONS(2722), + [anon_sym_PLUS_PLUS] = ACTIONS(2722), + [anon_sym_sizeof] = ACTIONS(2720), + [anon_sym___alignof__] = ACTIONS(2720), + [anon_sym___alignof] = ACTIONS(2720), + [anon_sym__alignof] = ACTIONS(2720), + [anon_sym_alignof] = ACTIONS(2720), + [anon_sym__Alignof] = ACTIONS(2720), + [anon_sym_offsetof] = ACTIONS(2720), + [anon_sym__Generic] = ACTIONS(2720), + [anon_sym_asm] = ACTIONS(2720), + [anon_sym___asm__] = ACTIONS(2720), + [anon_sym___asm] = ACTIONS(2720), + [sym_number_literal] = ACTIONS(2722), + [anon_sym_L_SQUOTE] = ACTIONS(2722), + [anon_sym_u_SQUOTE] = ACTIONS(2722), + [anon_sym_U_SQUOTE] = ACTIONS(2722), + [anon_sym_u8_SQUOTE] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2722), + [anon_sym_AT] = ACTIONS(2720), + [anon_sym_DQUOTE] = ACTIONS(2722), + [anon_sym_L_DQUOTE] = ACTIONS(2722), + [anon_sym_u_DQUOTE] = ACTIONS(2722), + [anon_sym_U_DQUOTE] = ACTIONS(2722), + [anon_sym_u8_DQUOTE] = ACTIONS(2722), + [sym_true] = ACTIONS(2720), + [sym_false] = ACTIONS(2720), + [anon_sym_NULL] = ACTIONS(2720), + [anon_sym_nullptr] = ACTIONS(2720), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2720), + [anon_sym___typeof] = ACTIONS(2720), + [anon_sym_typeof] = ACTIONS(2720), + [anon_sym_ATimport] = ACTIONS(2722), + [aux_sym_preproc_undef_token1] = ACTIONS(2720), + [anon_sym_POUND] = ACTIONS(2720), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2720), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2720), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2720), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2720), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2720), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2720), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2720), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2720), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2720), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2720), + [anon_sym_NS_AVAILABLE] = ACTIONS(2720), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2720), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2720), + [anon_sym_API_AVAILABLE] = ACTIONS(2720), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2720), + [anon_sym_API_DEPRECATED] = ACTIONS(2720), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2720), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2720), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2720), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2720), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2720), + [anon_sym___deprecated_msg] = ACTIONS(2720), + [anon_sym___deprecated_enum_msg] = ACTIONS(2720), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2720), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2720), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2720), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2720), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2720), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2720), + [anon_sym_ATprotocol] = ACTIONS(2722), + [anon_sym_ATinterface] = ACTIONS(2722), + [anon_sym_ATimplementation] = ACTIONS(2722), + [anon_sym_ATcompatibility_alias] = ACTIONS(2722), + [anon_sym_ATsynthesize] = ACTIONS(2722), + [anon_sym_ATdynamic] = ACTIONS(2722), + [anon_sym_ATtry] = ACTIONS(2722), + [anon_sym___try] = ACTIONS(2720), + [anon_sym_ATthrow] = ACTIONS(2722), + [anon_sym_ATselector] = ACTIONS(2722), + [anon_sym_ATavailable] = ACTIONS(2722), + [anon_sym___builtin_available] = ACTIONS(2720), + [anon_sym_va_arg] = ACTIONS(2720), + [anon_sym_ATencode] = ACTIONS(2722), + [anon_sym_ATsynchronized] = ACTIONS(2722), + [anon_sym_BOOL] = ACTIONS(2720), + [anon_sym_IMP] = ACTIONS(2720), + [anon_sym_SEL] = ACTIONS(2720), + [anon_sym_Class] = ACTIONS(2720), + [anon_sym_id] = ACTIONS(2720), + }, + [639] = { + [sym_identifier] = ACTIONS(2724), + [aux_sym_preproc_include_token1] = ACTIONS(2724), + [aux_sym_preproc_include_token2] = ACTIONS(2724), + [aux_sym_preproc_def_token1] = ACTIONS(2724), + [aux_sym_preproc_if_token1] = ACTIONS(2724), + [aux_sym_preproc_if_token2] = ACTIONS(2724), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2724), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2724), + [sym_preproc_directive] = ACTIONS(2724), + [anon_sym_LPAREN2] = ACTIONS(2726), + [anon_sym_BANG] = ACTIONS(2726), + [anon_sym_TILDE] = ACTIONS(2726), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2726), + [anon_sym_CARET] = ACTIONS(2726), + [anon_sym_AMP] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym___extension__] = ACTIONS(2724), + [anon_sym_typedef] = ACTIONS(2724), + [anon_sym_extern] = ACTIONS(2724), + [anon_sym___attribute__] = ACTIONS(2724), + [anon_sym___attribute] = ACTIONS(2724), + [anon_sym_noreturn] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2726), + [anon_sym___declspec] = ACTIONS(2724), + [anon_sym___cdecl] = ACTIONS(2724), + [anon_sym___clrcall] = ACTIONS(2724), + [anon_sym___stdcall] = ACTIONS(2724), + [anon_sym___fastcall] = ACTIONS(2724), + [anon_sym___thiscall] = ACTIONS(2724), + [anon_sym___vectorcall] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2726), + [anon_sym_signed] = ACTIONS(2724), + [anon_sym_unsigned] = ACTIONS(2724), + [anon_sym_long] = ACTIONS(2724), + [anon_sym_short] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2724), + [anon_sym_ATautoreleasepool] = ACTIONS(2726), + [anon_sym_auto] = ACTIONS(2724), + [anon_sym_register] = ACTIONS(2724), + [anon_sym_inline] = ACTIONS(2724), + [anon_sym___inline] = ACTIONS(2724), + [anon_sym___inline__] = ACTIONS(2724), + [anon_sym___forceinline] = ACTIONS(2724), + [anon_sym_thread_local] = ACTIONS(2724), + [anon_sym___thread] = ACTIONS(2724), + [anon_sym_CG_EXTERN] = ACTIONS(2724), + [anon_sym_CG_INLINE] = ACTIONS(2724), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2724), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2724), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2724), + [anon_sym_IBOutlet] = ACTIONS(2724), + [anon_sym_IBInspectable] = ACTIONS(2724), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2724), + [anon_sym_NS_INLINE] = ACTIONS(2724), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2724), + [anon_sym_OBJC_EXPORT] = ACTIONS(2724), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2724), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2724), + [anon_sym_const] = ACTIONS(2724), + [anon_sym_constexpr] = ACTIONS(2724), + [anon_sym_volatile] = ACTIONS(2724), + [anon_sym_restrict] = ACTIONS(2724), + [anon_sym___restrict__] = ACTIONS(2724), + [anon_sym__Atomic] = ACTIONS(2724), + [anon_sym__Noreturn] = ACTIONS(2724), + [anon_sym__Nonnull] = ACTIONS(2724), + [anon_sym_nullable] = ACTIONS(2724), + [anon_sym__Complex] = ACTIONS(2724), + [anon_sym__Nullable] = ACTIONS(2724), + [anon_sym__Nullable_result] = ACTIONS(2724), + [anon_sym__Null_unspecified] = ACTIONS(2724), + [anon_sym___autoreleasing] = ACTIONS(2724), + [anon_sym___block] = ACTIONS(2724), + [anon_sym___bridge] = ACTIONS(2724), + [anon_sym___bridge_retained] = ACTIONS(2724), + [anon_sym___bridge_transfer] = ACTIONS(2724), + [anon_sym___complex] = ACTIONS(2724), + [anon_sym___const] = ACTIONS(2724), + [anon_sym___imag] = ACTIONS(2724), + [anon_sym___kindof] = ACTIONS(2724), + [anon_sym___nonnull] = ACTIONS(2724), + [anon_sym___nullable] = ACTIONS(2724), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2724), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2724), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2724), + [anon_sym___real] = ACTIONS(2724), + [anon_sym___strong] = ACTIONS(2724), + [anon_sym___unsafe_unretained] = ACTIONS(2724), + [anon_sym___unused] = ACTIONS(2724), + [anon_sym___weak] = ACTIONS(2724), + [anon_sym_alignas] = ACTIONS(2724), + [anon_sym__Alignas] = ACTIONS(2724), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), + [anon_sym_struct] = ACTIONS(2724), + [anon_sym_union] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2724), + [anon_sym_default] = ACTIONS(2724), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_do] = ACTIONS(2724), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_goto] = ACTIONS(2724), + [anon_sym_DASH_DASH] = ACTIONS(2726), + [anon_sym_PLUS_PLUS] = ACTIONS(2726), + [anon_sym_sizeof] = ACTIONS(2724), + [anon_sym___alignof__] = ACTIONS(2724), + [anon_sym___alignof] = ACTIONS(2724), + [anon_sym__alignof] = ACTIONS(2724), + [anon_sym_alignof] = ACTIONS(2724), + [anon_sym__Alignof] = ACTIONS(2724), + [anon_sym_offsetof] = ACTIONS(2724), + [anon_sym__Generic] = ACTIONS(2724), + [anon_sym_asm] = ACTIONS(2724), + [anon_sym___asm__] = ACTIONS(2724), + [anon_sym___asm] = ACTIONS(2724), + [sym_number_literal] = ACTIONS(2726), + [anon_sym_L_SQUOTE] = ACTIONS(2726), + [anon_sym_u_SQUOTE] = ACTIONS(2726), + [anon_sym_U_SQUOTE] = ACTIONS(2726), + [anon_sym_u8_SQUOTE] = ACTIONS(2726), + [anon_sym_SQUOTE] = ACTIONS(2726), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_DQUOTE] = ACTIONS(2726), + [anon_sym_L_DQUOTE] = ACTIONS(2726), + [anon_sym_u_DQUOTE] = ACTIONS(2726), + [anon_sym_U_DQUOTE] = ACTIONS(2726), + [anon_sym_u8_DQUOTE] = ACTIONS(2726), + [sym_true] = ACTIONS(2724), + [sym_false] = ACTIONS(2724), + [anon_sym_NULL] = ACTIONS(2724), + [anon_sym_nullptr] = ACTIONS(2724), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2724), + [anon_sym___typeof] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(2724), + [anon_sym_ATimport] = ACTIONS(2726), + [aux_sym_preproc_undef_token1] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(2724), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2724), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2724), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2724), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2724), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2724), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2724), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2724), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2724), + [anon_sym_NS_AVAILABLE] = ACTIONS(2724), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2724), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_API_AVAILABLE] = ACTIONS(2724), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_API_DEPRECATED] = ACTIONS(2724), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2724), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2724), + [anon_sym___deprecated_msg] = ACTIONS(2724), + [anon_sym___deprecated_enum_msg] = ACTIONS(2724), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2724), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2724), + [anon_sym_ATprotocol] = ACTIONS(2726), + [anon_sym_ATinterface] = ACTIONS(2726), + [anon_sym_ATimplementation] = ACTIONS(2726), + [anon_sym_ATcompatibility_alias] = ACTIONS(2726), + [anon_sym_ATsynthesize] = ACTIONS(2726), + [anon_sym_ATdynamic] = ACTIONS(2726), + [anon_sym_ATtry] = ACTIONS(2726), + [anon_sym___try] = ACTIONS(2724), + [anon_sym_ATthrow] = ACTIONS(2726), + [anon_sym_ATselector] = ACTIONS(2726), + [anon_sym_ATavailable] = ACTIONS(2726), + [anon_sym___builtin_available] = ACTIONS(2724), + [anon_sym_va_arg] = ACTIONS(2724), + [anon_sym_ATencode] = ACTIONS(2726), + [anon_sym_ATsynchronized] = ACTIONS(2726), + [anon_sym_BOOL] = ACTIONS(2724), + [anon_sym_IMP] = ACTIONS(2724), + [anon_sym_SEL] = ACTIONS(2724), + [anon_sym_Class] = ACTIONS(2724), + [anon_sym_id] = ACTIONS(2724), + }, + [640] = { + [sym_identifier] = ACTIONS(2724), + [aux_sym_preproc_include_token1] = ACTIONS(2724), + [aux_sym_preproc_include_token2] = ACTIONS(2724), + [aux_sym_preproc_def_token1] = ACTIONS(2724), + [aux_sym_preproc_if_token1] = ACTIONS(2724), + [aux_sym_preproc_if_token2] = ACTIONS(2724), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2724), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2724), + [sym_preproc_directive] = ACTIONS(2724), + [anon_sym_LPAREN2] = ACTIONS(2726), + [anon_sym_BANG] = ACTIONS(2726), + [anon_sym_TILDE] = ACTIONS(2726), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2726), + [anon_sym_CARET] = ACTIONS(2726), + [anon_sym_AMP] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym___extension__] = ACTIONS(2724), + [anon_sym_typedef] = ACTIONS(2724), + [anon_sym_extern] = ACTIONS(2724), + [anon_sym___attribute__] = ACTIONS(2724), + [anon_sym___attribute] = ACTIONS(2724), + [anon_sym_noreturn] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2726), + [anon_sym___declspec] = ACTIONS(2724), + [anon_sym___cdecl] = ACTIONS(2724), + [anon_sym___clrcall] = ACTIONS(2724), + [anon_sym___stdcall] = ACTIONS(2724), + [anon_sym___fastcall] = ACTIONS(2724), + [anon_sym___thiscall] = ACTIONS(2724), + [anon_sym___vectorcall] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2726), + [anon_sym_signed] = ACTIONS(2724), + [anon_sym_unsigned] = ACTIONS(2724), + [anon_sym_long] = ACTIONS(2724), + [anon_sym_short] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2724), + [anon_sym_ATautoreleasepool] = ACTIONS(2726), + [anon_sym_auto] = ACTIONS(2724), + [anon_sym_register] = ACTIONS(2724), + [anon_sym_inline] = ACTIONS(2724), + [anon_sym___inline] = ACTIONS(2724), + [anon_sym___inline__] = ACTIONS(2724), + [anon_sym___forceinline] = ACTIONS(2724), + [anon_sym_thread_local] = ACTIONS(2724), + [anon_sym___thread] = ACTIONS(2724), + [anon_sym_CG_EXTERN] = ACTIONS(2724), + [anon_sym_CG_INLINE] = ACTIONS(2724), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2724), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2724), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2724), + [anon_sym_IBOutlet] = ACTIONS(2724), + [anon_sym_IBInspectable] = ACTIONS(2724), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2724), + [anon_sym_NS_INLINE] = ACTIONS(2724), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2724), + [anon_sym_OBJC_EXPORT] = ACTIONS(2724), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2724), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2724), + [anon_sym_const] = ACTIONS(2724), + [anon_sym_constexpr] = ACTIONS(2724), + [anon_sym_volatile] = ACTIONS(2724), + [anon_sym_restrict] = ACTIONS(2724), + [anon_sym___restrict__] = ACTIONS(2724), + [anon_sym__Atomic] = ACTIONS(2724), + [anon_sym__Noreturn] = ACTIONS(2724), + [anon_sym__Nonnull] = ACTIONS(2724), + [anon_sym_nullable] = ACTIONS(2724), + [anon_sym__Complex] = ACTIONS(2724), + [anon_sym__Nullable] = ACTIONS(2724), + [anon_sym__Nullable_result] = ACTIONS(2724), + [anon_sym__Null_unspecified] = ACTIONS(2724), + [anon_sym___autoreleasing] = ACTIONS(2724), + [anon_sym___block] = ACTIONS(2724), + [anon_sym___bridge] = ACTIONS(2724), + [anon_sym___bridge_retained] = ACTIONS(2724), + [anon_sym___bridge_transfer] = ACTIONS(2724), + [anon_sym___complex] = ACTIONS(2724), + [anon_sym___const] = ACTIONS(2724), + [anon_sym___imag] = ACTIONS(2724), + [anon_sym___kindof] = ACTIONS(2724), + [anon_sym___nonnull] = ACTIONS(2724), + [anon_sym___nullable] = ACTIONS(2724), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2724), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2724), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2724), + [anon_sym___real] = ACTIONS(2724), + [anon_sym___strong] = ACTIONS(2724), + [anon_sym___unsafe_unretained] = ACTIONS(2724), + [anon_sym___unused] = ACTIONS(2724), + [anon_sym___weak] = ACTIONS(2724), + [anon_sym_alignas] = ACTIONS(2724), + [anon_sym__Alignas] = ACTIONS(2724), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), + [anon_sym_struct] = ACTIONS(2724), + [anon_sym_union] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2724), + [anon_sym_default] = ACTIONS(2724), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_do] = ACTIONS(2724), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_goto] = ACTIONS(2724), + [anon_sym_DASH_DASH] = ACTIONS(2726), + [anon_sym_PLUS_PLUS] = ACTIONS(2726), + [anon_sym_sizeof] = ACTIONS(2724), + [anon_sym___alignof__] = ACTIONS(2724), + [anon_sym___alignof] = ACTIONS(2724), + [anon_sym__alignof] = ACTIONS(2724), + [anon_sym_alignof] = ACTIONS(2724), + [anon_sym__Alignof] = ACTIONS(2724), + [anon_sym_offsetof] = ACTIONS(2724), + [anon_sym__Generic] = ACTIONS(2724), + [anon_sym_asm] = ACTIONS(2724), + [anon_sym___asm__] = ACTIONS(2724), + [anon_sym___asm] = ACTIONS(2724), + [sym_number_literal] = ACTIONS(2726), + [anon_sym_L_SQUOTE] = ACTIONS(2726), + [anon_sym_u_SQUOTE] = ACTIONS(2726), + [anon_sym_U_SQUOTE] = ACTIONS(2726), + [anon_sym_u8_SQUOTE] = ACTIONS(2726), + [anon_sym_SQUOTE] = ACTIONS(2726), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_DQUOTE] = ACTIONS(2726), + [anon_sym_L_DQUOTE] = ACTIONS(2726), + [anon_sym_u_DQUOTE] = ACTIONS(2726), + [anon_sym_U_DQUOTE] = ACTIONS(2726), + [anon_sym_u8_DQUOTE] = ACTIONS(2726), + [sym_true] = ACTIONS(2724), + [sym_false] = ACTIONS(2724), + [anon_sym_NULL] = ACTIONS(2724), + [anon_sym_nullptr] = ACTIONS(2724), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2724), + [anon_sym___typeof] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(2724), + [anon_sym_ATimport] = ACTIONS(2726), + [aux_sym_preproc_undef_token1] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(2724), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2724), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2724), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2724), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2724), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2724), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2724), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2724), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2724), + [anon_sym_NS_AVAILABLE] = ACTIONS(2724), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2724), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_API_AVAILABLE] = ACTIONS(2724), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_API_DEPRECATED] = ACTIONS(2724), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2724), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2724), + [anon_sym___deprecated_msg] = ACTIONS(2724), + [anon_sym___deprecated_enum_msg] = ACTIONS(2724), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2724), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2724), + [anon_sym_ATprotocol] = ACTIONS(2726), + [anon_sym_ATinterface] = ACTIONS(2726), + [anon_sym_ATimplementation] = ACTIONS(2726), + [anon_sym_ATcompatibility_alias] = ACTIONS(2726), + [anon_sym_ATsynthesize] = ACTIONS(2726), + [anon_sym_ATdynamic] = ACTIONS(2726), + [anon_sym_ATtry] = ACTIONS(2726), + [anon_sym___try] = ACTIONS(2724), + [anon_sym_ATthrow] = ACTIONS(2726), + [anon_sym_ATselector] = ACTIONS(2726), + [anon_sym_ATavailable] = ACTIONS(2726), + [anon_sym___builtin_available] = ACTIONS(2724), + [anon_sym_va_arg] = ACTIONS(2724), + [anon_sym_ATencode] = ACTIONS(2726), + [anon_sym_ATsynchronized] = ACTIONS(2726), + [anon_sym_BOOL] = ACTIONS(2724), + [anon_sym_IMP] = ACTIONS(2724), + [anon_sym_SEL] = ACTIONS(2724), + [anon_sym_Class] = ACTIONS(2724), + [anon_sym_id] = ACTIONS(2724), + }, + [641] = { + [sym_identifier] = ACTIONS(2736), + [aux_sym_preproc_include_token1] = ACTIONS(2736), + [aux_sym_preproc_include_token2] = ACTIONS(2736), + [aux_sym_preproc_def_token1] = ACTIONS(2736), + [aux_sym_preproc_if_token1] = ACTIONS(2736), + [aux_sym_preproc_if_token2] = ACTIONS(2736), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2736), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2736), + [sym_preproc_directive] = ACTIONS(2736), + [anon_sym_LPAREN2] = ACTIONS(2738), + [anon_sym_BANG] = ACTIONS(2738), + [anon_sym_TILDE] = ACTIONS(2738), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_CARET] = ACTIONS(2738), + [anon_sym_AMP] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_typedef] = ACTIONS(2736), + [anon_sym_extern] = ACTIONS(2736), + [anon_sym___attribute__] = ACTIONS(2736), + [anon_sym___attribute] = ACTIONS(2736), + [anon_sym_noreturn] = ACTIONS(2736), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym___declspec] = ACTIONS(2736), + [anon_sym___cdecl] = ACTIONS(2736), + [anon_sym___clrcall] = ACTIONS(2736), + [anon_sym___stdcall] = ACTIONS(2736), + [anon_sym___fastcall] = ACTIONS(2736), + [anon_sym___thiscall] = ACTIONS(2736), + [anon_sym___vectorcall] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_signed] = ACTIONS(2736), + [anon_sym_unsigned] = ACTIONS(2736), + [anon_sym_long] = ACTIONS(2736), + [anon_sym_short] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2736), + [anon_sym_ATautoreleasepool] = ACTIONS(2738), + [anon_sym_auto] = ACTIONS(2736), + [anon_sym_register] = ACTIONS(2736), + [anon_sym_inline] = ACTIONS(2736), + [anon_sym___inline] = ACTIONS(2736), + [anon_sym___inline__] = ACTIONS(2736), + [anon_sym___forceinline] = ACTIONS(2736), + [anon_sym_thread_local] = ACTIONS(2736), + [anon_sym___thread] = ACTIONS(2736), + [anon_sym_CG_EXTERN] = ACTIONS(2736), + [anon_sym_CG_INLINE] = ACTIONS(2736), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2736), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2736), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2736), + [anon_sym_IBOutlet] = ACTIONS(2736), + [anon_sym_IBInspectable] = ACTIONS(2736), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2736), + [anon_sym_NS_INLINE] = ACTIONS(2736), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2736), + [anon_sym_OBJC_EXPORT] = ACTIONS(2736), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2736), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2736), + [anon_sym_const] = ACTIONS(2736), + [anon_sym_constexpr] = ACTIONS(2736), + [anon_sym_volatile] = ACTIONS(2736), + [anon_sym_restrict] = ACTIONS(2736), + [anon_sym___restrict__] = ACTIONS(2736), + [anon_sym__Atomic] = ACTIONS(2736), + [anon_sym__Noreturn] = ACTIONS(2736), + [anon_sym__Nonnull] = ACTIONS(2736), + [anon_sym_nullable] = ACTIONS(2736), + [anon_sym__Complex] = ACTIONS(2736), + [anon_sym__Nullable] = ACTIONS(2736), + [anon_sym__Nullable_result] = ACTIONS(2736), + [anon_sym__Null_unspecified] = ACTIONS(2736), + [anon_sym___autoreleasing] = ACTIONS(2736), + [anon_sym___block] = ACTIONS(2736), + [anon_sym___bridge] = ACTIONS(2736), + [anon_sym___bridge_retained] = ACTIONS(2736), + [anon_sym___bridge_transfer] = ACTIONS(2736), + [anon_sym___complex] = ACTIONS(2736), + [anon_sym___const] = ACTIONS(2736), + [anon_sym___imag] = ACTIONS(2736), + [anon_sym___kindof] = ACTIONS(2736), + [anon_sym___nonnull] = ACTIONS(2736), + [anon_sym___nullable] = ACTIONS(2736), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2736), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2736), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2736), + [anon_sym___real] = ACTIONS(2736), + [anon_sym___strong] = ACTIONS(2736), + [anon_sym___unsafe_unretained] = ACTIONS(2736), + [anon_sym___unused] = ACTIONS(2736), + [anon_sym___weak] = ACTIONS(2736), + [anon_sym_alignas] = ACTIONS(2736), + [anon_sym__Alignas] = ACTIONS(2736), + [sym_primitive_type] = ACTIONS(2736), + [anon_sym_enum] = ACTIONS(2736), + [anon_sym_struct] = ACTIONS(2736), + [anon_sym_union] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_switch] = ACTIONS(2736), + [anon_sym_case] = ACTIONS(2736), + [anon_sym_default] = ACTIONS(2736), + [anon_sym_while] = ACTIONS(2736), + [anon_sym_do] = ACTIONS(2736), + [anon_sym_for] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2736), + [anon_sym_return] = ACTIONS(2736), + [anon_sym_break] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2736), + [anon_sym_goto] = ACTIONS(2736), + [anon_sym_DASH_DASH] = ACTIONS(2738), + [anon_sym_PLUS_PLUS] = ACTIONS(2738), + [anon_sym_sizeof] = ACTIONS(2736), + [anon_sym___alignof__] = ACTIONS(2736), + [anon_sym___alignof] = ACTIONS(2736), + [anon_sym__alignof] = ACTIONS(2736), + [anon_sym_alignof] = ACTIONS(2736), + [anon_sym__Alignof] = ACTIONS(2736), + [anon_sym_offsetof] = ACTIONS(2736), + [anon_sym__Generic] = ACTIONS(2736), + [anon_sym_asm] = ACTIONS(2736), + [anon_sym___asm__] = ACTIONS(2736), + [anon_sym___asm] = ACTIONS(2736), + [sym_number_literal] = ACTIONS(2738), + [anon_sym_L_SQUOTE] = ACTIONS(2738), + [anon_sym_u_SQUOTE] = ACTIONS(2738), + [anon_sym_U_SQUOTE] = ACTIONS(2738), + [anon_sym_u8_SQUOTE] = ACTIONS(2738), + [anon_sym_SQUOTE] = ACTIONS(2738), + [anon_sym_AT] = ACTIONS(2736), + [anon_sym_DQUOTE] = ACTIONS(2738), + [anon_sym_L_DQUOTE] = ACTIONS(2738), + [anon_sym_u_DQUOTE] = ACTIONS(2738), + [anon_sym_U_DQUOTE] = ACTIONS(2738), + [anon_sym_u8_DQUOTE] = ACTIONS(2738), + [sym_true] = ACTIONS(2736), + [sym_false] = ACTIONS(2736), + [anon_sym_NULL] = ACTIONS(2736), + [anon_sym_nullptr] = ACTIONS(2736), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2736), + [anon_sym___typeof] = ACTIONS(2736), + [anon_sym_typeof] = ACTIONS(2736), + [anon_sym_ATimport] = ACTIONS(2738), + [aux_sym_preproc_undef_token1] = ACTIONS(2736), + [anon_sym_POUND] = ACTIONS(2736), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2736), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2736), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2736), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2736), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2736), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2736), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2736), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2736), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2736), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2736), + [anon_sym_NS_AVAILABLE] = ACTIONS(2736), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2736), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2736), + [anon_sym_API_AVAILABLE] = ACTIONS(2736), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2736), + [anon_sym_API_DEPRECATED] = ACTIONS(2736), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2736), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2736), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2736), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2736), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2736), + [anon_sym___deprecated_msg] = ACTIONS(2736), + [anon_sym___deprecated_enum_msg] = ACTIONS(2736), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2736), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2736), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2736), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2736), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2736), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2736), + [anon_sym_ATprotocol] = ACTIONS(2738), + [anon_sym_ATinterface] = ACTIONS(2738), + [anon_sym_ATimplementation] = ACTIONS(2738), + [anon_sym_ATcompatibility_alias] = ACTIONS(2738), + [anon_sym_ATsynthesize] = ACTIONS(2738), + [anon_sym_ATdynamic] = ACTIONS(2738), + [anon_sym_ATtry] = ACTIONS(2738), + [anon_sym___try] = ACTIONS(2736), + [anon_sym_ATthrow] = ACTIONS(2738), + [anon_sym_ATselector] = ACTIONS(2738), + [anon_sym_ATavailable] = ACTIONS(2738), + [anon_sym___builtin_available] = ACTIONS(2736), + [anon_sym_va_arg] = ACTIONS(2736), + [anon_sym_ATencode] = ACTIONS(2738), + [anon_sym_ATsynchronized] = ACTIONS(2738), + [anon_sym_BOOL] = ACTIONS(2736), + [anon_sym_IMP] = ACTIONS(2736), + [anon_sym_SEL] = ACTIONS(2736), + [anon_sym_Class] = ACTIONS(2736), + [anon_sym_id] = ACTIONS(2736), + }, + [642] = { + [sym_identifier] = ACTIONS(2756), + [aux_sym_preproc_include_token1] = ACTIONS(2756), + [aux_sym_preproc_include_token2] = ACTIONS(2756), + [aux_sym_preproc_def_token1] = ACTIONS(2756), + [aux_sym_preproc_if_token1] = ACTIONS(2756), + [aux_sym_preproc_if_token2] = ACTIONS(2756), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2756), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2756), + [sym_preproc_directive] = ACTIONS(2756), + [anon_sym_LPAREN2] = ACTIONS(2758), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_TILDE] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_STAR] = ACTIONS(2758), + [anon_sym_CARET] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym___extension__] = ACTIONS(2756), + [anon_sym_typedef] = ACTIONS(2756), + [anon_sym_extern] = ACTIONS(2756), + [anon_sym___attribute__] = ACTIONS(2756), + [anon_sym___attribute] = ACTIONS(2756), + [anon_sym_noreturn] = ACTIONS(2756), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym___declspec] = ACTIONS(2756), + [anon_sym___cdecl] = ACTIONS(2756), + [anon_sym___clrcall] = ACTIONS(2756), + [anon_sym___stdcall] = ACTIONS(2756), + [anon_sym___fastcall] = ACTIONS(2756), + [anon_sym___thiscall] = ACTIONS(2756), + [anon_sym___vectorcall] = ACTIONS(2756), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_signed] = ACTIONS(2756), + [anon_sym_unsigned] = ACTIONS(2756), + [anon_sym_long] = ACTIONS(2756), + [anon_sym_short] = ACTIONS(2756), + [anon_sym_static] = ACTIONS(2756), + [anon_sym_ATautoreleasepool] = ACTIONS(2758), + [anon_sym_auto] = ACTIONS(2756), + [anon_sym_register] = ACTIONS(2756), + [anon_sym_inline] = ACTIONS(2756), + [anon_sym___inline] = ACTIONS(2756), + [anon_sym___inline__] = ACTIONS(2756), + [anon_sym___forceinline] = ACTIONS(2756), + [anon_sym_thread_local] = ACTIONS(2756), + [anon_sym___thread] = ACTIONS(2756), + [anon_sym_CG_EXTERN] = ACTIONS(2756), + [anon_sym_CG_INLINE] = ACTIONS(2756), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2756), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2756), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2756), + [anon_sym_IBOutlet] = ACTIONS(2756), + [anon_sym_IBInspectable] = ACTIONS(2756), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2756), + [anon_sym_NS_INLINE] = ACTIONS(2756), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2756), + [anon_sym_OBJC_EXPORT] = ACTIONS(2756), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2756), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2756), + [anon_sym_const] = ACTIONS(2756), + [anon_sym_constexpr] = ACTIONS(2756), + [anon_sym_volatile] = ACTIONS(2756), + [anon_sym_restrict] = ACTIONS(2756), + [anon_sym___restrict__] = ACTIONS(2756), + [anon_sym__Atomic] = ACTIONS(2756), + [anon_sym__Noreturn] = ACTIONS(2756), + [anon_sym__Nonnull] = ACTIONS(2756), + [anon_sym_nullable] = ACTIONS(2756), + [anon_sym__Complex] = ACTIONS(2756), + [anon_sym__Nullable] = ACTIONS(2756), + [anon_sym__Nullable_result] = ACTIONS(2756), + [anon_sym__Null_unspecified] = ACTIONS(2756), + [anon_sym___autoreleasing] = ACTIONS(2756), + [anon_sym___block] = ACTIONS(2756), + [anon_sym___bridge] = ACTIONS(2756), + [anon_sym___bridge_retained] = ACTIONS(2756), + [anon_sym___bridge_transfer] = ACTIONS(2756), + [anon_sym___complex] = ACTIONS(2756), + [anon_sym___const] = ACTIONS(2756), + [anon_sym___imag] = ACTIONS(2756), + [anon_sym___kindof] = ACTIONS(2756), + [anon_sym___nonnull] = ACTIONS(2756), + [anon_sym___nullable] = ACTIONS(2756), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2756), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2756), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2756), + [anon_sym___real] = ACTIONS(2756), + [anon_sym___strong] = ACTIONS(2756), + [anon_sym___unsafe_unretained] = ACTIONS(2756), + [anon_sym___unused] = ACTIONS(2756), + [anon_sym___weak] = ACTIONS(2756), + [anon_sym_alignas] = ACTIONS(2756), + [anon_sym__Alignas] = ACTIONS(2756), + [sym_primitive_type] = ACTIONS(2756), + [anon_sym_enum] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(2756), + [anon_sym_union] = ACTIONS(2756), + [anon_sym_if] = ACTIONS(2756), + [anon_sym_switch] = ACTIONS(2756), + [anon_sym_case] = ACTIONS(2756), + [anon_sym_default] = ACTIONS(2756), + [anon_sym_while] = ACTIONS(2756), + [anon_sym_do] = ACTIONS(2756), + [anon_sym_for] = ACTIONS(2756), + [anon_sym_in] = ACTIONS(2756), + [anon_sym_return] = ACTIONS(2756), + [anon_sym_break] = ACTIONS(2756), + [anon_sym_continue] = ACTIONS(2756), + [anon_sym_goto] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_sizeof] = ACTIONS(2756), + [anon_sym___alignof__] = ACTIONS(2756), + [anon_sym___alignof] = ACTIONS(2756), + [anon_sym__alignof] = ACTIONS(2756), + [anon_sym_alignof] = ACTIONS(2756), + [anon_sym__Alignof] = ACTIONS(2756), + [anon_sym_offsetof] = ACTIONS(2756), + [anon_sym__Generic] = ACTIONS(2756), + [anon_sym_asm] = ACTIONS(2756), + [anon_sym___asm__] = ACTIONS(2756), + [anon_sym___asm] = ACTIONS(2756), + [sym_number_literal] = ACTIONS(2758), + [anon_sym_L_SQUOTE] = ACTIONS(2758), + [anon_sym_u_SQUOTE] = ACTIONS(2758), + [anon_sym_U_SQUOTE] = ACTIONS(2758), + [anon_sym_u8_SQUOTE] = ACTIONS(2758), + [anon_sym_SQUOTE] = ACTIONS(2758), + [anon_sym_AT] = ACTIONS(2756), + [anon_sym_DQUOTE] = ACTIONS(2758), + [anon_sym_L_DQUOTE] = ACTIONS(2758), + [anon_sym_u_DQUOTE] = ACTIONS(2758), + [anon_sym_U_DQUOTE] = ACTIONS(2758), + [anon_sym_u8_DQUOTE] = ACTIONS(2758), + [sym_true] = ACTIONS(2756), + [sym_false] = ACTIONS(2756), + [anon_sym_NULL] = ACTIONS(2756), + [anon_sym_nullptr] = ACTIONS(2756), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2756), + [anon_sym___typeof] = ACTIONS(2756), + [anon_sym_typeof] = ACTIONS(2756), + [anon_sym_ATimport] = ACTIONS(2758), + [aux_sym_preproc_undef_token1] = ACTIONS(2756), + [anon_sym_POUND] = ACTIONS(2756), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2756), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2756), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2756), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2756), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2756), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2756), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2756), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2756), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2756), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2756), + [anon_sym_NS_AVAILABLE] = ACTIONS(2756), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2756), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2756), + [anon_sym_API_AVAILABLE] = ACTIONS(2756), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2756), + [anon_sym_API_DEPRECATED] = ACTIONS(2756), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2756), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2756), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2756), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2756), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2756), + [anon_sym___deprecated_msg] = ACTIONS(2756), + [anon_sym___deprecated_enum_msg] = ACTIONS(2756), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2756), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2756), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2756), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2756), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2756), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2756), + [anon_sym_ATprotocol] = ACTIONS(2758), + [anon_sym_ATinterface] = ACTIONS(2758), + [anon_sym_ATimplementation] = ACTIONS(2758), + [anon_sym_ATcompatibility_alias] = ACTIONS(2758), + [anon_sym_ATsynthesize] = ACTIONS(2758), + [anon_sym_ATdynamic] = ACTIONS(2758), + [anon_sym_ATtry] = ACTIONS(2758), + [anon_sym___try] = ACTIONS(2756), + [anon_sym_ATthrow] = ACTIONS(2758), + [anon_sym_ATselector] = ACTIONS(2758), + [anon_sym_ATavailable] = ACTIONS(2758), + [anon_sym___builtin_available] = ACTIONS(2756), + [anon_sym_va_arg] = ACTIONS(2756), + [anon_sym_ATencode] = ACTIONS(2758), + [anon_sym_ATsynchronized] = ACTIONS(2758), + [anon_sym_BOOL] = ACTIONS(2756), + [anon_sym_IMP] = ACTIONS(2756), + [anon_sym_SEL] = ACTIONS(2756), + [anon_sym_Class] = ACTIONS(2756), + [anon_sym_id] = ACTIONS(2756), + }, + [643] = { + [sym_identifier] = ACTIONS(2760), + [aux_sym_preproc_include_token1] = ACTIONS(2760), + [aux_sym_preproc_include_token2] = ACTIONS(2760), + [aux_sym_preproc_def_token1] = ACTIONS(2760), + [aux_sym_preproc_if_token1] = ACTIONS(2760), + [aux_sym_preproc_if_token2] = ACTIONS(2760), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2760), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2760), + [sym_preproc_directive] = ACTIONS(2760), + [anon_sym_LPAREN2] = ACTIONS(2762), + [anon_sym_BANG] = ACTIONS(2762), + [anon_sym_TILDE] = ACTIONS(2762), + [anon_sym_DASH] = ACTIONS(2760), + [anon_sym_PLUS] = ACTIONS(2760), + [anon_sym_STAR] = ACTIONS(2762), + [anon_sym_CARET] = ACTIONS(2762), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym___extension__] = ACTIONS(2760), + [anon_sym_typedef] = ACTIONS(2760), + [anon_sym_extern] = ACTIONS(2760), + [anon_sym___attribute__] = ACTIONS(2760), + [anon_sym___attribute] = ACTIONS(2760), + [anon_sym_noreturn] = ACTIONS(2760), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym___declspec] = ACTIONS(2760), + [anon_sym___cdecl] = ACTIONS(2760), + [anon_sym___clrcall] = ACTIONS(2760), + [anon_sym___stdcall] = ACTIONS(2760), + [anon_sym___fastcall] = ACTIONS(2760), + [anon_sym___thiscall] = ACTIONS(2760), + [anon_sym___vectorcall] = ACTIONS(2760), + [anon_sym_LBRACE] = ACTIONS(2762), + [anon_sym_signed] = ACTIONS(2760), + [anon_sym_unsigned] = ACTIONS(2760), + [anon_sym_long] = ACTIONS(2760), + [anon_sym_short] = ACTIONS(2760), + [anon_sym_static] = ACTIONS(2760), + [anon_sym_ATautoreleasepool] = ACTIONS(2762), + [anon_sym_auto] = ACTIONS(2760), + [anon_sym_register] = ACTIONS(2760), + [anon_sym_inline] = ACTIONS(2760), + [anon_sym___inline] = ACTIONS(2760), + [anon_sym___inline__] = ACTIONS(2760), + [anon_sym___forceinline] = ACTIONS(2760), + [anon_sym_thread_local] = ACTIONS(2760), + [anon_sym___thread] = ACTIONS(2760), + [anon_sym_CG_EXTERN] = ACTIONS(2760), + [anon_sym_CG_INLINE] = ACTIONS(2760), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2760), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2760), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2760), + [anon_sym_IBOutlet] = ACTIONS(2760), + [anon_sym_IBInspectable] = ACTIONS(2760), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2760), + [anon_sym_NS_INLINE] = ACTIONS(2760), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2760), + [anon_sym_OBJC_EXPORT] = ACTIONS(2760), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2760), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2760), + [anon_sym_const] = ACTIONS(2760), + [anon_sym_constexpr] = ACTIONS(2760), + [anon_sym_volatile] = ACTIONS(2760), + [anon_sym_restrict] = ACTIONS(2760), + [anon_sym___restrict__] = ACTIONS(2760), + [anon_sym__Atomic] = ACTIONS(2760), + [anon_sym__Noreturn] = ACTIONS(2760), + [anon_sym__Nonnull] = ACTIONS(2760), + [anon_sym_nullable] = ACTIONS(2760), + [anon_sym__Complex] = ACTIONS(2760), + [anon_sym__Nullable] = ACTIONS(2760), + [anon_sym__Nullable_result] = ACTIONS(2760), + [anon_sym__Null_unspecified] = ACTIONS(2760), + [anon_sym___autoreleasing] = ACTIONS(2760), + [anon_sym___block] = ACTIONS(2760), + [anon_sym___bridge] = ACTIONS(2760), + [anon_sym___bridge_retained] = ACTIONS(2760), + [anon_sym___bridge_transfer] = ACTIONS(2760), + [anon_sym___complex] = ACTIONS(2760), + [anon_sym___const] = ACTIONS(2760), + [anon_sym___imag] = ACTIONS(2760), + [anon_sym___kindof] = ACTIONS(2760), + [anon_sym___nonnull] = ACTIONS(2760), + [anon_sym___nullable] = ACTIONS(2760), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2760), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2760), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2760), + [anon_sym___real] = ACTIONS(2760), + [anon_sym___strong] = ACTIONS(2760), + [anon_sym___unsafe_unretained] = ACTIONS(2760), + [anon_sym___unused] = ACTIONS(2760), + [anon_sym___weak] = ACTIONS(2760), + [anon_sym_alignas] = ACTIONS(2760), + [anon_sym__Alignas] = ACTIONS(2760), + [sym_primitive_type] = ACTIONS(2760), + [anon_sym_enum] = ACTIONS(2760), + [anon_sym_struct] = ACTIONS(2760), + [anon_sym_union] = ACTIONS(2760), + [anon_sym_if] = ACTIONS(2760), + [anon_sym_switch] = ACTIONS(2760), + [anon_sym_case] = ACTIONS(2760), + [anon_sym_default] = ACTIONS(2760), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_do] = ACTIONS(2760), + [anon_sym_for] = ACTIONS(2760), + [anon_sym_in] = ACTIONS(2760), + [anon_sym_return] = ACTIONS(2760), + [anon_sym_break] = ACTIONS(2760), + [anon_sym_continue] = ACTIONS(2760), + [anon_sym_goto] = ACTIONS(2760), + [anon_sym_DASH_DASH] = ACTIONS(2762), + [anon_sym_PLUS_PLUS] = ACTIONS(2762), + [anon_sym_sizeof] = ACTIONS(2760), + [anon_sym___alignof__] = ACTIONS(2760), + [anon_sym___alignof] = ACTIONS(2760), + [anon_sym__alignof] = ACTIONS(2760), + [anon_sym_alignof] = ACTIONS(2760), + [anon_sym__Alignof] = ACTIONS(2760), + [anon_sym_offsetof] = ACTIONS(2760), + [anon_sym__Generic] = ACTIONS(2760), + [anon_sym_asm] = ACTIONS(2760), + [anon_sym___asm__] = ACTIONS(2760), + [anon_sym___asm] = ACTIONS(2760), + [sym_number_literal] = ACTIONS(2762), + [anon_sym_L_SQUOTE] = ACTIONS(2762), + [anon_sym_u_SQUOTE] = ACTIONS(2762), + [anon_sym_U_SQUOTE] = ACTIONS(2762), + [anon_sym_u8_SQUOTE] = ACTIONS(2762), + [anon_sym_SQUOTE] = ACTIONS(2762), + [anon_sym_AT] = ACTIONS(2760), + [anon_sym_DQUOTE] = ACTIONS(2762), + [anon_sym_L_DQUOTE] = ACTIONS(2762), + [anon_sym_u_DQUOTE] = ACTIONS(2762), + [anon_sym_U_DQUOTE] = ACTIONS(2762), + [anon_sym_u8_DQUOTE] = ACTIONS(2762), + [sym_true] = ACTIONS(2760), + [sym_false] = ACTIONS(2760), + [anon_sym_NULL] = ACTIONS(2760), + [anon_sym_nullptr] = ACTIONS(2760), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2760), + [anon_sym___typeof] = ACTIONS(2760), + [anon_sym_typeof] = ACTIONS(2760), + [anon_sym_ATimport] = ACTIONS(2762), + [aux_sym_preproc_undef_token1] = ACTIONS(2760), + [anon_sym_POUND] = ACTIONS(2760), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2760), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2760), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2760), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2760), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2760), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2760), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2760), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2760), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2760), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2760), + [anon_sym_NS_AVAILABLE] = ACTIONS(2760), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2760), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2760), + [anon_sym_API_AVAILABLE] = ACTIONS(2760), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2760), + [anon_sym_API_DEPRECATED] = ACTIONS(2760), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2760), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2760), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2760), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2760), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2760), + [anon_sym___deprecated_msg] = ACTIONS(2760), + [anon_sym___deprecated_enum_msg] = ACTIONS(2760), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2760), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2760), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2760), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2760), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2760), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2760), + [anon_sym_ATprotocol] = ACTIONS(2762), + [anon_sym_ATinterface] = ACTIONS(2762), + [anon_sym_ATimplementation] = ACTIONS(2762), + [anon_sym_ATcompatibility_alias] = ACTIONS(2762), + [anon_sym_ATsynthesize] = ACTIONS(2762), + [anon_sym_ATdynamic] = ACTIONS(2762), + [anon_sym_ATtry] = ACTIONS(2762), + [anon_sym___try] = ACTIONS(2760), + [anon_sym_ATthrow] = ACTIONS(2762), + [anon_sym_ATselector] = ACTIONS(2762), + [anon_sym_ATavailable] = ACTIONS(2762), + [anon_sym___builtin_available] = ACTIONS(2760), + [anon_sym_va_arg] = ACTIONS(2760), + [anon_sym_ATencode] = ACTIONS(2762), + [anon_sym_ATsynchronized] = ACTIONS(2762), + [anon_sym_BOOL] = ACTIONS(2760), + [anon_sym_IMP] = ACTIONS(2760), + [anon_sym_SEL] = ACTIONS(2760), + [anon_sym_Class] = ACTIONS(2760), + [anon_sym_id] = ACTIONS(2760), + }, + [644] = { + [sym_identifier] = ACTIONS(2764), + [aux_sym_preproc_include_token1] = ACTIONS(2764), + [aux_sym_preproc_include_token2] = ACTIONS(2764), + [aux_sym_preproc_def_token1] = ACTIONS(2764), + [aux_sym_preproc_if_token1] = ACTIONS(2764), + [aux_sym_preproc_if_token2] = ACTIONS(2764), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2764), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2764), + [sym_preproc_directive] = ACTIONS(2764), + [anon_sym_LPAREN2] = ACTIONS(2766), + [anon_sym_BANG] = ACTIONS(2766), + [anon_sym_TILDE] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2764), + [anon_sym_PLUS] = ACTIONS(2764), + [anon_sym_STAR] = ACTIONS(2766), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2766), + [anon_sym_SEMI] = ACTIONS(2766), + [anon_sym___extension__] = ACTIONS(2764), + [anon_sym_typedef] = ACTIONS(2764), + [anon_sym_extern] = ACTIONS(2764), + [anon_sym___attribute__] = ACTIONS(2764), + [anon_sym___attribute] = ACTIONS(2764), + [anon_sym_noreturn] = ACTIONS(2764), + [anon_sym_LBRACK] = ACTIONS(2766), + [anon_sym___declspec] = ACTIONS(2764), + [anon_sym___cdecl] = ACTIONS(2764), + [anon_sym___clrcall] = ACTIONS(2764), + [anon_sym___stdcall] = ACTIONS(2764), + [anon_sym___fastcall] = ACTIONS(2764), + [anon_sym___thiscall] = ACTIONS(2764), + [anon_sym___vectorcall] = ACTIONS(2764), + [anon_sym_LBRACE] = ACTIONS(2766), + [anon_sym_signed] = ACTIONS(2764), + [anon_sym_unsigned] = ACTIONS(2764), + [anon_sym_long] = ACTIONS(2764), + [anon_sym_short] = ACTIONS(2764), + [anon_sym_static] = ACTIONS(2764), + [anon_sym_ATautoreleasepool] = ACTIONS(2766), + [anon_sym_auto] = ACTIONS(2764), + [anon_sym_register] = ACTIONS(2764), + [anon_sym_inline] = ACTIONS(2764), + [anon_sym___inline] = ACTIONS(2764), + [anon_sym___inline__] = ACTIONS(2764), + [anon_sym___forceinline] = ACTIONS(2764), + [anon_sym_thread_local] = ACTIONS(2764), + [anon_sym___thread] = ACTIONS(2764), + [anon_sym_CG_EXTERN] = ACTIONS(2764), + [anon_sym_CG_INLINE] = ACTIONS(2764), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2764), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2764), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2764), + [anon_sym_IBOutlet] = ACTIONS(2764), + [anon_sym_IBInspectable] = ACTIONS(2764), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2764), + [anon_sym_NS_INLINE] = ACTIONS(2764), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2764), + [anon_sym_OBJC_EXPORT] = ACTIONS(2764), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2764), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2764), + [anon_sym_const] = ACTIONS(2764), + [anon_sym_constexpr] = ACTIONS(2764), + [anon_sym_volatile] = ACTIONS(2764), + [anon_sym_restrict] = ACTIONS(2764), + [anon_sym___restrict__] = ACTIONS(2764), + [anon_sym__Atomic] = ACTIONS(2764), + [anon_sym__Noreturn] = ACTIONS(2764), + [anon_sym__Nonnull] = ACTIONS(2764), + [anon_sym_nullable] = ACTIONS(2764), + [anon_sym__Complex] = ACTIONS(2764), + [anon_sym__Nullable] = ACTIONS(2764), + [anon_sym__Nullable_result] = ACTIONS(2764), + [anon_sym__Null_unspecified] = ACTIONS(2764), + [anon_sym___autoreleasing] = ACTIONS(2764), + [anon_sym___block] = ACTIONS(2764), + [anon_sym___bridge] = ACTIONS(2764), + [anon_sym___bridge_retained] = ACTIONS(2764), + [anon_sym___bridge_transfer] = ACTIONS(2764), + [anon_sym___complex] = ACTIONS(2764), + [anon_sym___const] = ACTIONS(2764), + [anon_sym___imag] = ACTIONS(2764), + [anon_sym___kindof] = ACTIONS(2764), + [anon_sym___nonnull] = ACTIONS(2764), + [anon_sym___nullable] = ACTIONS(2764), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2764), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2764), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2764), + [anon_sym___real] = ACTIONS(2764), + [anon_sym___strong] = ACTIONS(2764), + [anon_sym___unsafe_unretained] = ACTIONS(2764), + [anon_sym___unused] = ACTIONS(2764), + [anon_sym___weak] = ACTIONS(2764), + [anon_sym_alignas] = ACTIONS(2764), + [anon_sym__Alignas] = ACTIONS(2764), + [sym_primitive_type] = ACTIONS(2764), + [anon_sym_enum] = ACTIONS(2764), + [anon_sym_struct] = ACTIONS(2764), + [anon_sym_union] = ACTIONS(2764), + [anon_sym_if] = ACTIONS(2764), + [anon_sym_switch] = ACTIONS(2764), + [anon_sym_case] = ACTIONS(2764), + [anon_sym_default] = ACTIONS(2764), + [anon_sym_while] = ACTIONS(2764), + [anon_sym_do] = ACTIONS(2764), + [anon_sym_for] = ACTIONS(2764), + [anon_sym_in] = ACTIONS(2764), + [anon_sym_return] = ACTIONS(2764), + [anon_sym_break] = ACTIONS(2764), + [anon_sym_continue] = ACTIONS(2764), + [anon_sym_goto] = ACTIONS(2764), + [anon_sym_DASH_DASH] = ACTIONS(2766), + [anon_sym_PLUS_PLUS] = ACTIONS(2766), + [anon_sym_sizeof] = ACTIONS(2764), + [anon_sym___alignof__] = ACTIONS(2764), + [anon_sym___alignof] = ACTIONS(2764), + [anon_sym__alignof] = ACTIONS(2764), + [anon_sym_alignof] = ACTIONS(2764), + [anon_sym__Alignof] = ACTIONS(2764), + [anon_sym_offsetof] = ACTIONS(2764), + [anon_sym__Generic] = ACTIONS(2764), + [anon_sym_asm] = ACTIONS(2764), + [anon_sym___asm__] = ACTIONS(2764), + [anon_sym___asm] = ACTIONS(2764), + [sym_number_literal] = ACTIONS(2766), + [anon_sym_L_SQUOTE] = ACTIONS(2766), + [anon_sym_u_SQUOTE] = ACTIONS(2766), + [anon_sym_U_SQUOTE] = ACTIONS(2766), + [anon_sym_u8_SQUOTE] = ACTIONS(2766), + [anon_sym_SQUOTE] = ACTIONS(2766), + [anon_sym_AT] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2766), + [anon_sym_L_DQUOTE] = ACTIONS(2766), + [anon_sym_u_DQUOTE] = ACTIONS(2766), + [anon_sym_U_DQUOTE] = ACTIONS(2766), + [anon_sym_u8_DQUOTE] = ACTIONS(2766), + [sym_true] = ACTIONS(2764), + [sym_false] = ACTIONS(2764), + [anon_sym_NULL] = ACTIONS(2764), + [anon_sym_nullptr] = ACTIONS(2764), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2764), + [anon_sym___typeof] = ACTIONS(2764), + [anon_sym_typeof] = ACTIONS(2764), + [anon_sym_ATimport] = ACTIONS(2766), + [aux_sym_preproc_undef_token1] = ACTIONS(2764), + [anon_sym_POUND] = ACTIONS(2764), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2764), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2764), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2764), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2764), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2764), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2764), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2764), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2764), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2764), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2764), + [anon_sym_NS_AVAILABLE] = ACTIONS(2764), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2764), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2764), + [anon_sym_API_AVAILABLE] = ACTIONS(2764), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2764), + [anon_sym_API_DEPRECATED] = ACTIONS(2764), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2764), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2764), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2764), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2764), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2764), + [anon_sym___deprecated_msg] = ACTIONS(2764), + [anon_sym___deprecated_enum_msg] = ACTIONS(2764), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2764), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2764), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2764), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2764), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2764), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2764), + [anon_sym_ATprotocol] = ACTIONS(2766), + [anon_sym_ATinterface] = ACTIONS(2766), + [anon_sym_ATimplementation] = ACTIONS(2766), + [anon_sym_ATcompatibility_alias] = ACTIONS(2766), + [anon_sym_ATsynthesize] = ACTIONS(2766), + [anon_sym_ATdynamic] = ACTIONS(2766), + [anon_sym_ATtry] = ACTIONS(2766), + [anon_sym___try] = ACTIONS(2764), + [anon_sym_ATthrow] = ACTIONS(2766), + [anon_sym_ATselector] = ACTIONS(2766), + [anon_sym_ATavailable] = ACTIONS(2766), + [anon_sym___builtin_available] = ACTIONS(2764), + [anon_sym_va_arg] = ACTIONS(2764), + [anon_sym_ATencode] = ACTIONS(2766), + [anon_sym_ATsynchronized] = ACTIONS(2766), + [anon_sym_BOOL] = ACTIONS(2764), + [anon_sym_IMP] = ACTIONS(2764), + [anon_sym_SEL] = ACTIONS(2764), + [anon_sym_Class] = ACTIONS(2764), + [anon_sym_id] = ACTIONS(2764), + }, + [645] = { + [sym_identifier] = ACTIONS(2768), + [aux_sym_preproc_include_token1] = ACTIONS(2768), + [aux_sym_preproc_include_token2] = ACTIONS(2768), + [aux_sym_preproc_def_token1] = ACTIONS(2768), + [aux_sym_preproc_if_token1] = ACTIONS(2768), + [aux_sym_preproc_if_token2] = ACTIONS(2768), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2768), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2768), + [sym_preproc_directive] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_TILDE] = ACTIONS(2770), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(2770), + [anon_sym_CARET] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2770), + [anon_sym_SEMI] = ACTIONS(2770), + [anon_sym___extension__] = ACTIONS(2768), + [anon_sym_typedef] = ACTIONS(2768), + [anon_sym_extern] = ACTIONS(2768), + [anon_sym___attribute__] = ACTIONS(2768), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2770), + [anon_sym___declspec] = ACTIONS(2768), + [anon_sym___cdecl] = ACTIONS(2768), + [anon_sym___clrcall] = ACTIONS(2768), + [anon_sym___stdcall] = ACTIONS(2768), + [anon_sym___fastcall] = ACTIONS(2768), + [anon_sym___thiscall] = ACTIONS(2768), + [anon_sym___vectorcall] = ACTIONS(2768), + [anon_sym_LBRACE] = ACTIONS(2770), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_ATautoreleasepool] = ACTIONS(2770), + [anon_sym_auto] = ACTIONS(2768), + [anon_sym_register] = ACTIONS(2768), + [anon_sym_inline] = ACTIONS(2768), + [anon_sym___inline] = ACTIONS(2768), + [anon_sym___inline__] = ACTIONS(2768), + [anon_sym___forceinline] = ACTIONS(2768), + [anon_sym_thread_local] = ACTIONS(2768), + [anon_sym___thread] = ACTIONS(2768), + [anon_sym_CG_EXTERN] = ACTIONS(2768), + [anon_sym_CG_INLINE] = ACTIONS(2768), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2768), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2768), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2768), + [anon_sym_IBOutlet] = ACTIONS(2768), + [anon_sym_IBInspectable] = ACTIONS(2768), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2768), + [anon_sym_NS_INLINE] = ACTIONS(2768), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2768), + [anon_sym_OBJC_EXPORT] = ACTIONS(2768), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2768), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_nullable] = ACTIONS(2768), + [anon_sym__Complex] = ACTIONS(2768), + [anon_sym__Nullable] = ACTIONS(2768), + [anon_sym__Nullable_result] = ACTIONS(2768), + [anon_sym__Null_unspecified] = ACTIONS(2768), + [anon_sym___autoreleasing] = ACTIONS(2768), + [anon_sym___block] = ACTIONS(2768), + [anon_sym___bridge] = ACTIONS(2768), + [anon_sym___bridge_retained] = ACTIONS(2768), + [anon_sym___bridge_transfer] = ACTIONS(2768), + [anon_sym___complex] = ACTIONS(2768), + [anon_sym___const] = ACTIONS(2768), + [anon_sym___imag] = ACTIONS(2768), + [anon_sym___kindof] = ACTIONS(2768), + [anon_sym___nonnull] = ACTIONS(2768), + [anon_sym___nullable] = ACTIONS(2768), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2768), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2768), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2768), + [anon_sym___real] = ACTIONS(2768), + [anon_sym___strong] = ACTIONS(2768), + [anon_sym___unsafe_unretained] = ACTIONS(2768), + [anon_sym___unused] = ACTIONS(2768), + [anon_sym___weak] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2768), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_switch] = ACTIONS(2768), + [anon_sym_case] = ACTIONS(2768), + [anon_sym_default] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_in] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_break] = ACTIONS(2768), + [anon_sym_continue] = ACTIONS(2768), + [anon_sym_goto] = ACTIONS(2768), + [anon_sym_DASH_DASH] = ACTIONS(2770), + [anon_sym_PLUS_PLUS] = ACTIONS(2770), + [anon_sym_sizeof] = ACTIONS(2768), + [anon_sym___alignof__] = ACTIONS(2768), + [anon_sym___alignof] = ACTIONS(2768), + [anon_sym__alignof] = ACTIONS(2768), + [anon_sym_alignof] = ACTIONS(2768), + [anon_sym__Alignof] = ACTIONS(2768), + [anon_sym_offsetof] = ACTIONS(2768), + [anon_sym__Generic] = ACTIONS(2768), + [anon_sym_asm] = ACTIONS(2768), + [anon_sym___asm__] = ACTIONS(2768), + [anon_sym___asm] = ACTIONS(2768), + [sym_number_literal] = ACTIONS(2770), + [anon_sym_L_SQUOTE] = ACTIONS(2770), + [anon_sym_u_SQUOTE] = ACTIONS(2770), + [anon_sym_U_SQUOTE] = ACTIONS(2770), + [anon_sym_u8_SQUOTE] = ACTIONS(2770), + [anon_sym_SQUOTE] = ACTIONS(2770), + [anon_sym_AT] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2770), + [anon_sym_L_DQUOTE] = ACTIONS(2770), + [anon_sym_u_DQUOTE] = ACTIONS(2770), + [anon_sym_U_DQUOTE] = ACTIONS(2770), + [anon_sym_u8_DQUOTE] = ACTIONS(2770), + [sym_true] = ACTIONS(2768), + [sym_false] = ACTIONS(2768), + [anon_sym_NULL] = ACTIONS(2768), + [anon_sym_nullptr] = ACTIONS(2768), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2768), + [anon_sym___typeof] = ACTIONS(2768), + [anon_sym_typeof] = ACTIONS(2768), + [anon_sym_ATimport] = ACTIONS(2770), + [aux_sym_preproc_undef_token1] = ACTIONS(2768), + [anon_sym_POUND] = ACTIONS(2768), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2768), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2768), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2768), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2768), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2768), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2768), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2768), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2768), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2768), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2768), + [anon_sym_NS_AVAILABLE] = ACTIONS(2768), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2768), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2768), + [anon_sym_API_AVAILABLE] = ACTIONS(2768), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2768), + [anon_sym_API_DEPRECATED] = ACTIONS(2768), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2768), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2768), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2768), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2768), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2768), + [anon_sym___deprecated_msg] = ACTIONS(2768), + [anon_sym___deprecated_enum_msg] = ACTIONS(2768), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2768), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2768), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2768), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2768), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2768), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2768), + [anon_sym_ATprotocol] = ACTIONS(2770), + [anon_sym_ATinterface] = ACTIONS(2770), + [anon_sym_ATimplementation] = ACTIONS(2770), + [anon_sym_ATcompatibility_alias] = ACTIONS(2770), + [anon_sym_ATsynthesize] = ACTIONS(2770), + [anon_sym_ATdynamic] = ACTIONS(2770), + [anon_sym_ATtry] = ACTIONS(2770), + [anon_sym___try] = ACTIONS(2768), + [anon_sym_ATthrow] = ACTIONS(2770), + [anon_sym_ATselector] = ACTIONS(2770), + [anon_sym_ATavailable] = ACTIONS(2770), + [anon_sym___builtin_available] = ACTIONS(2768), + [anon_sym_va_arg] = ACTIONS(2768), + [anon_sym_ATencode] = ACTIONS(2770), + [anon_sym_ATsynchronized] = ACTIONS(2770), + [anon_sym_BOOL] = ACTIONS(2768), + [anon_sym_IMP] = ACTIONS(2768), + [anon_sym_SEL] = ACTIONS(2768), + [anon_sym_Class] = ACTIONS(2768), + [anon_sym_id] = ACTIONS(2768), + }, + [646] = { + [sym_identifier] = ACTIONS(2772), + [aux_sym_preproc_include_token1] = ACTIONS(2772), + [aux_sym_preproc_include_token2] = ACTIONS(2772), + [aux_sym_preproc_def_token1] = ACTIONS(2772), + [aux_sym_preproc_if_token1] = ACTIONS(2772), + [aux_sym_preproc_if_token2] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2772), + [sym_preproc_directive] = ACTIONS(2772), + [anon_sym_LPAREN2] = ACTIONS(2774), + [anon_sym_BANG] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_CARET] = ACTIONS(2774), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym___extension__] = ACTIONS(2772), + [anon_sym_typedef] = ACTIONS(2772), + [anon_sym_extern] = ACTIONS(2772), + [anon_sym___attribute__] = ACTIONS(2772), + [anon_sym___attribute] = ACTIONS(2772), + [anon_sym_noreturn] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym___declspec] = ACTIONS(2772), + [anon_sym___cdecl] = ACTIONS(2772), + [anon_sym___clrcall] = ACTIONS(2772), + [anon_sym___stdcall] = ACTIONS(2772), + [anon_sym___fastcall] = ACTIONS(2772), + [anon_sym___thiscall] = ACTIONS(2772), + [anon_sym___vectorcall] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_signed] = ACTIONS(2772), + [anon_sym_unsigned] = ACTIONS(2772), + [anon_sym_long] = ACTIONS(2772), + [anon_sym_short] = ACTIONS(2772), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_ATautoreleasepool] = ACTIONS(2774), + [anon_sym_auto] = ACTIONS(2772), + [anon_sym_register] = ACTIONS(2772), + [anon_sym_inline] = ACTIONS(2772), + [anon_sym___inline] = ACTIONS(2772), + [anon_sym___inline__] = ACTIONS(2772), + [anon_sym___forceinline] = ACTIONS(2772), + [anon_sym_thread_local] = ACTIONS(2772), + [anon_sym___thread] = ACTIONS(2772), + [anon_sym_CG_EXTERN] = ACTIONS(2772), + [anon_sym_CG_INLINE] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2772), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2772), + [anon_sym_IBOutlet] = ACTIONS(2772), + [anon_sym_IBInspectable] = ACTIONS(2772), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2772), + [anon_sym_NS_INLINE] = ACTIONS(2772), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2772), + [anon_sym_OBJC_EXPORT] = ACTIONS(2772), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2772), + [anon_sym_const] = ACTIONS(2772), + [anon_sym_constexpr] = ACTIONS(2772), + [anon_sym_volatile] = ACTIONS(2772), + [anon_sym_restrict] = ACTIONS(2772), + [anon_sym___restrict__] = ACTIONS(2772), + [anon_sym__Atomic] = ACTIONS(2772), + [anon_sym__Noreturn] = ACTIONS(2772), + [anon_sym__Nonnull] = ACTIONS(2772), + [anon_sym_nullable] = ACTIONS(2772), + [anon_sym__Complex] = ACTIONS(2772), + [anon_sym__Nullable] = ACTIONS(2772), + [anon_sym__Nullable_result] = ACTIONS(2772), + [anon_sym__Null_unspecified] = ACTIONS(2772), + [anon_sym___autoreleasing] = ACTIONS(2772), + [anon_sym___block] = ACTIONS(2772), + [anon_sym___bridge] = ACTIONS(2772), + [anon_sym___bridge_retained] = ACTIONS(2772), + [anon_sym___bridge_transfer] = ACTIONS(2772), + [anon_sym___complex] = ACTIONS(2772), + [anon_sym___const] = ACTIONS(2772), + [anon_sym___imag] = ACTIONS(2772), + [anon_sym___kindof] = ACTIONS(2772), + [anon_sym___nonnull] = ACTIONS(2772), + [anon_sym___nullable] = ACTIONS(2772), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2772), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2772), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2772), + [anon_sym___real] = ACTIONS(2772), + [anon_sym___strong] = ACTIONS(2772), + [anon_sym___unsafe_unretained] = ACTIONS(2772), + [anon_sym___unused] = ACTIONS(2772), + [anon_sym___weak] = ACTIONS(2772), + [anon_sym_alignas] = ACTIONS(2772), + [anon_sym__Alignas] = ACTIONS(2772), + [sym_primitive_type] = ACTIONS(2772), + [anon_sym_enum] = ACTIONS(2772), + [anon_sym_struct] = ACTIONS(2772), + [anon_sym_union] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_switch] = ACTIONS(2772), + [anon_sym_case] = ACTIONS(2772), + [anon_sym_default] = ACTIONS(2772), + [anon_sym_while] = ACTIONS(2772), + [anon_sym_do] = ACTIONS(2772), + [anon_sym_for] = ACTIONS(2772), + [anon_sym_in] = ACTIONS(2772), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_break] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2772), + [anon_sym_goto] = ACTIONS(2772), + [anon_sym_DASH_DASH] = ACTIONS(2774), + [anon_sym_PLUS_PLUS] = ACTIONS(2774), + [anon_sym_sizeof] = ACTIONS(2772), + [anon_sym___alignof__] = ACTIONS(2772), + [anon_sym___alignof] = ACTIONS(2772), + [anon_sym__alignof] = ACTIONS(2772), + [anon_sym_alignof] = ACTIONS(2772), + [anon_sym__Alignof] = ACTIONS(2772), + [anon_sym_offsetof] = ACTIONS(2772), + [anon_sym__Generic] = ACTIONS(2772), + [anon_sym_asm] = ACTIONS(2772), + [anon_sym___asm__] = ACTIONS(2772), + [anon_sym___asm] = ACTIONS(2772), + [sym_number_literal] = ACTIONS(2774), + [anon_sym_L_SQUOTE] = ACTIONS(2774), + [anon_sym_u_SQUOTE] = ACTIONS(2774), + [anon_sym_U_SQUOTE] = ACTIONS(2774), + [anon_sym_u8_SQUOTE] = ACTIONS(2774), + [anon_sym_SQUOTE] = ACTIONS(2774), + [anon_sym_AT] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_L_DQUOTE] = ACTIONS(2774), + [anon_sym_u_DQUOTE] = ACTIONS(2774), + [anon_sym_U_DQUOTE] = ACTIONS(2774), + [anon_sym_u8_DQUOTE] = ACTIONS(2774), + [sym_true] = ACTIONS(2772), + [sym_false] = ACTIONS(2772), + [anon_sym_NULL] = ACTIONS(2772), + [anon_sym_nullptr] = ACTIONS(2772), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2772), + [anon_sym___typeof] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2772), + [anon_sym_ATimport] = ACTIONS(2774), + [aux_sym_preproc_undef_token1] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(2772), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2772), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2772), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2772), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2772), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE] = ACTIONS(2772), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_API_AVAILABLE] = ACTIONS(2772), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_API_DEPRECATED] = ACTIONS(2772), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2772), + [anon_sym___deprecated_msg] = ACTIONS(2772), + [anon_sym___deprecated_enum_msg] = ACTIONS(2772), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2772), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2772), + [anon_sym_ATprotocol] = ACTIONS(2774), + [anon_sym_ATinterface] = ACTIONS(2774), + [anon_sym_ATimplementation] = ACTIONS(2774), + [anon_sym_ATcompatibility_alias] = ACTIONS(2774), + [anon_sym_ATsynthesize] = ACTIONS(2774), + [anon_sym_ATdynamic] = ACTIONS(2774), + [anon_sym_ATtry] = ACTIONS(2774), + [anon_sym___try] = ACTIONS(2772), + [anon_sym_ATthrow] = ACTIONS(2774), + [anon_sym_ATselector] = ACTIONS(2774), + [anon_sym_ATavailable] = ACTIONS(2774), + [anon_sym___builtin_available] = ACTIONS(2772), + [anon_sym_va_arg] = ACTIONS(2772), + [anon_sym_ATencode] = ACTIONS(2774), + [anon_sym_ATsynchronized] = ACTIONS(2774), + [anon_sym_BOOL] = ACTIONS(2772), + [anon_sym_IMP] = ACTIONS(2772), + [anon_sym_SEL] = ACTIONS(2772), + [anon_sym_Class] = ACTIONS(2772), + [anon_sym_id] = ACTIONS(2772), + }, + [647] = { + [sym_identifier] = ACTIONS(2772), + [aux_sym_preproc_include_token1] = ACTIONS(2772), + [aux_sym_preproc_include_token2] = ACTIONS(2772), + [aux_sym_preproc_def_token1] = ACTIONS(2772), + [aux_sym_preproc_if_token1] = ACTIONS(2772), + [aux_sym_preproc_if_token2] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2772), + [sym_preproc_directive] = ACTIONS(2772), + [anon_sym_LPAREN2] = ACTIONS(2774), + [anon_sym_BANG] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_CARET] = ACTIONS(2774), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym___extension__] = ACTIONS(2772), + [anon_sym_typedef] = ACTIONS(2772), + [anon_sym_extern] = ACTIONS(2772), + [anon_sym___attribute__] = ACTIONS(2772), + [anon_sym___attribute] = ACTIONS(2772), + [anon_sym_noreturn] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym___declspec] = ACTIONS(2772), + [anon_sym___cdecl] = ACTIONS(2772), + [anon_sym___clrcall] = ACTIONS(2772), + [anon_sym___stdcall] = ACTIONS(2772), + [anon_sym___fastcall] = ACTIONS(2772), + [anon_sym___thiscall] = ACTIONS(2772), + [anon_sym___vectorcall] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_signed] = ACTIONS(2772), + [anon_sym_unsigned] = ACTIONS(2772), + [anon_sym_long] = ACTIONS(2772), + [anon_sym_short] = ACTIONS(2772), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_ATautoreleasepool] = ACTIONS(2774), + [anon_sym_auto] = ACTIONS(2772), + [anon_sym_register] = ACTIONS(2772), + [anon_sym_inline] = ACTIONS(2772), + [anon_sym___inline] = ACTIONS(2772), + [anon_sym___inline__] = ACTIONS(2772), + [anon_sym___forceinline] = ACTIONS(2772), + [anon_sym_thread_local] = ACTIONS(2772), + [anon_sym___thread] = ACTIONS(2772), + [anon_sym_CG_EXTERN] = ACTIONS(2772), + [anon_sym_CG_INLINE] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2772), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2772), + [anon_sym_IBOutlet] = ACTIONS(2772), + [anon_sym_IBInspectable] = ACTIONS(2772), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2772), + [anon_sym_NS_INLINE] = ACTIONS(2772), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2772), + [anon_sym_OBJC_EXPORT] = ACTIONS(2772), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2772), + [anon_sym_const] = ACTIONS(2772), + [anon_sym_constexpr] = ACTIONS(2772), + [anon_sym_volatile] = ACTIONS(2772), + [anon_sym_restrict] = ACTIONS(2772), + [anon_sym___restrict__] = ACTIONS(2772), + [anon_sym__Atomic] = ACTIONS(2772), + [anon_sym__Noreturn] = ACTIONS(2772), + [anon_sym__Nonnull] = ACTIONS(2772), + [anon_sym_nullable] = ACTIONS(2772), + [anon_sym__Complex] = ACTIONS(2772), + [anon_sym__Nullable] = ACTIONS(2772), + [anon_sym__Nullable_result] = ACTIONS(2772), + [anon_sym__Null_unspecified] = ACTIONS(2772), + [anon_sym___autoreleasing] = ACTIONS(2772), + [anon_sym___block] = ACTIONS(2772), + [anon_sym___bridge] = ACTIONS(2772), + [anon_sym___bridge_retained] = ACTIONS(2772), + [anon_sym___bridge_transfer] = ACTIONS(2772), + [anon_sym___complex] = ACTIONS(2772), + [anon_sym___const] = ACTIONS(2772), + [anon_sym___imag] = ACTIONS(2772), + [anon_sym___kindof] = ACTIONS(2772), + [anon_sym___nonnull] = ACTIONS(2772), + [anon_sym___nullable] = ACTIONS(2772), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2772), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2772), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2772), + [anon_sym___real] = ACTIONS(2772), + [anon_sym___strong] = ACTIONS(2772), + [anon_sym___unsafe_unretained] = ACTIONS(2772), + [anon_sym___unused] = ACTIONS(2772), + [anon_sym___weak] = ACTIONS(2772), + [anon_sym_alignas] = ACTIONS(2772), + [anon_sym__Alignas] = ACTIONS(2772), + [sym_primitive_type] = ACTIONS(2772), + [anon_sym_enum] = ACTIONS(2772), + [anon_sym_struct] = ACTIONS(2772), + [anon_sym_union] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_switch] = ACTIONS(2772), + [anon_sym_case] = ACTIONS(2772), + [anon_sym_default] = ACTIONS(2772), + [anon_sym_while] = ACTIONS(2772), + [anon_sym_do] = ACTIONS(2772), + [anon_sym_for] = ACTIONS(2772), + [anon_sym_in] = ACTIONS(2772), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_break] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2772), + [anon_sym_goto] = ACTIONS(2772), + [anon_sym_DASH_DASH] = ACTIONS(2774), + [anon_sym_PLUS_PLUS] = ACTIONS(2774), + [anon_sym_sizeof] = ACTIONS(2772), + [anon_sym___alignof__] = ACTIONS(2772), + [anon_sym___alignof] = ACTIONS(2772), + [anon_sym__alignof] = ACTIONS(2772), + [anon_sym_alignof] = ACTIONS(2772), + [anon_sym__Alignof] = ACTIONS(2772), + [anon_sym_offsetof] = ACTIONS(2772), + [anon_sym__Generic] = ACTIONS(2772), + [anon_sym_asm] = ACTIONS(2772), + [anon_sym___asm__] = ACTIONS(2772), + [anon_sym___asm] = ACTIONS(2772), + [sym_number_literal] = ACTIONS(2774), + [anon_sym_L_SQUOTE] = ACTIONS(2774), + [anon_sym_u_SQUOTE] = ACTIONS(2774), + [anon_sym_U_SQUOTE] = ACTIONS(2774), + [anon_sym_u8_SQUOTE] = ACTIONS(2774), + [anon_sym_SQUOTE] = ACTIONS(2774), + [anon_sym_AT] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_L_DQUOTE] = ACTIONS(2774), + [anon_sym_u_DQUOTE] = ACTIONS(2774), + [anon_sym_U_DQUOTE] = ACTIONS(2774), + [anon_sym_u8_DQUOTE] = ACTIONS(2774), + [sym_true] = ACTIONS(2772), + [sym_false] = ACTIONS(2772), + [anon_sym_NULL] = ACTIONS(2772), + [anon_sym_nullptr] = ACTIONS(2772), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2772), + [anon_sym___typeof] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2772), + [anon_sym_ATimport] = ACTIONS(2774), + [aux_sym_preproc_undef_token1] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(2772), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2772), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2772), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2772), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2772), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE] = ACTIONS(2772), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_API_AVAILABLE] = ACTIONS(2772), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_API_DEPRECATED] = ACTIONS(2772), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2772), + [anon_sym___deprecated_msg] = ACTIONS(2772), + [anon_sym___deprecated_enum_msg] = ACTIONS(2772), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2772), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2772), + [anon_sym_ATprotocol] = ACTIONS(2774), + [anon_sym_ATinterface] = ACTIONS(2774), + [anon_sym_ATimplementation] = ACTIONS(2774), + [anon_sym_ATcompatibility_alias] = ACTIONS(2774), + [anon_sym_ATsynthesize] = ACTIONS(2774), + [anon_sym_ATdynamic] = ACTIONS(2774), + [anon_sym_ATtry] = ACTIONS(2774), + [anon_sym___try] = ACTIONS(2772), + [anon_sym_ATthrow] = ACTIONS(2774), + [anon_sym_ATselector] = ACTIONS(2774), + [anon_sym_ATavailable] = ACTIONS(2774), + [anon_sym___builtin_available] = ACTIONS(2772), + [anon_sym_va_arg] = ACTIONS(2772), + [anon_sym_ATencode] = ACTIONS(2774), + [anon_sym_ATsynchronized] = ACTIONS(2774), + [anon_sym_BOOL] = ACTIONS(2772), + [anon_sym_IMP] = ACTIONS(2772), + [anon_sym_SEL] = ACTIONS(2772), + [anon_sym_Class] = ACTIONS(2772), + [anon_sym_id] = ACTIONS(2772), + }, + [648] = { + [sym_else_clause] = STATE(837), + [ts_builtin_sym_end] = ACTIONS(2404), + [sym_identifier] = ACTIONS(2402), + [aux_sym_preproc_include_token1] = ACTIONS(2402), + [aux_sym_preproc_include_token2] = ACTIONS(2402), + [aux_sym_preproc_def_token1] = ACTIONS(2402), + [aux_sym_preproc_if_token1] = ACTIONS(2402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2402), + [sym_preproc_directive] = ACTIONS(2402), + [anon_sym_LPAREN2] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_TILDE] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_PLUS] = ACTIONS(2402), + [anon_sym_STAR] = ACTIONS(2404), + [anon_sym_CARET] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym___extension__] = ACTIONS(2402), + [anon_sym_typedef] = ACTIONS(2402), + [anon_sym_extern] = ACTIONS(2402), + [anon_sym___attribute__] = ACTIONS(2402), + [anon_sym___attribute] = ACTIONS(2402), + [anon_sym_noreturn] = ACTIONS(2402), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym___declspec] = ACTIONS(2402), + [anon_sym___cdecl] = ACTIONS(2402), + [anon_sym___clrcall] = ACTIONS(2402), + [anon_sym___stdcall] = ACTIONS(2402), + [anon_sym___fastcall] = ACTIONS(2402), + [anon_sym___thiscall] = ACTIONS(2402), + [anon_sym___vectorcall] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2404), + [anon_sym_signed] = ACTIONS(2402), + [anon_sym_unsigned] = ACTIONS(2402), + [anon_sym_long] = ACTIONS(2402), + [anon_sym_short] = ACTIONS(2402), + [anon_sym_static] = ACTIONS(2402), + [anon_sym_ATautoreleasepool] = ACTIONS(2404), + [anon_sym_auto] = ACTIONS(2402), + [anon_sym_register] = ACTIONS(2402), + [anon_sym_inline] = ACTIONS(2402), + [anon_sym___inline] = ACTIONS(2402), + [anon_sym___inline__] = ACTIONS(2402), + [anon_sym___forceinline] = ACTIONS(2402), + [anon_sym_thread_local] = ACTIONS(2402), + [anon_sym___thread] = ACTIONS(2402), + [anon_sym_CG_EXTERN] = ACTIONS(2402), + [anon_sym_CG_INLINE] = ACTIONS(2402), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2402), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2402), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2402), + [anon_sym_IBOutlet] = ACTIONS(2402), + [anon_sym_IBInspectable] = ACTIONS(2402), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2402), + [anon_sym_NS_INLINE] = ACTIONS(2402), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2402), + [anon_sym_OBJC_EXPORT] = ACTIONS(2402), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2402), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2402), + [anon_sym_const] = ACTIONS(2402), + [anon_sym_constexpr] = ACTIONS(2402), + [anon_sym_volatile] = ACTIONS(2402), + [anon_sym_restrict] = ACTIONS(2402), + [anon_sym___restrict__] = ACTIONS(2402), + [anon_sym__Atomic] = ACTIONS(2402), + [anon_sym__Noreturn] = ACTIONS(2402), + [anon_sym__Nonnull] = ACTIONS(2402), + [anon_sym_nullable] = ACTIONS(2402), + [anon_sym__Complex] = ACTIONS(2402), + [anon_sym__Nullable] = ACTIONS(2402), + [anon_sym__Nullable_result] = ACTIONS(2402), + [anon_sym__Null_unspecified] = ACTIONS(2402), + [anon_sym___autoreleasing] = ACTIONS(2402), + [anon_sym___block] = ACTIONS(2402), + [anon_sym___bridge] = ACTIONS(2402), + [anon_sym___bridge_retained] = ACTIONS(2402), + [anon_sym___bridge_transfer] = ACTIONS(2402), + [anon_sym___complex] = ACTIONS(2402), + [anon_sym___const] = ACTIONS(2402), + [anon_sym___imag] = ACTIONS(2402), + [anon_sym___kindof] = ACTIONS(2402), + [anon_sym___nonnull] = ACTIONS(2402), + [anon_sym___nullable] = ACTIONS(2402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2402), + [anon_sym___real] = ACTIONS(2402), + [anon_sym___strong] = ACTIONS(2402), + [anon_sym___unsafe_unretained] = ACTIONS(2402), + [anon_sym___unused] = ACTIONS(2402), + [anon_sym___weak] = ACTIONS(2402), + [anon_sym_alignas] = ACTIONS(2402), + [anon_sym__Alignas] = ACTIONS(2402), + [sym_primitive_type] = ACTIONS(2402), + [anon_sym_enum] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(2402), + [anon_sym_union] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_else] = ACTIONS(2904), + [anon_sym_switch] = ACTIONS(2402), + [anon_sym_case] = ACTIONS(2402), + [anon_sym_default] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_in] = ACTIONS(2402), + [anon_sym_return] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_goto] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2404), + [anon_sym_sizeof] = ACTIONS(2402), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2402), + [anon_sym_asm] = ACTIONS(2402), + [anon_sym___asm__] = ACTIONS(2402), + [anon_sym___asm] = ACTIONS(2402), + [sym_number_literal] = ACTIONS(2404), + [anon_sym_L_SQUOTE] = ACTIONS(2404), + [anon_sym_u_SQUOTE] = ACTIONS(2404), + [anon_sym_U_SQUOTE] = ACTIONS(2404), + [anon_sym_u8_SQUOTE] = ACTIONS(2404), + [anon_sym_SQUOTE] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_L_DQUOTE] = ACTIONS(2404), + [anon_sym_u_DQUOTE] = ACTIONS(2404), + [anon_sym_U_DQUOTE] = ACTIONS(2404), + [anon_sym_u8_DQUOTE] = ACTIONS(2404), + [sym_true] = ACTIONS(2402), + [sym_false] = ACTIONS(2402), + [anon_sym_NULL] = ACTIONS(2402), + [anon_sym_nullptr] = ACTIONS(2402), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2402), + [anon_sym___typeof] = ACTIONS(2402), + [anon_sym_typeof] = ACTIONS(2402), + [anon_sym_ATimport] = ACTIONS(2404), + [aux_sym_preproc_undef_token1] = ACTIONS(2402), + [anon_sym_POUND] = ACTIONS(2402), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2402), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2402), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2402), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2402), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2402), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2402), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2402), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2402), + [anon_sym_NS_AVAILABLE] = ACTIONS(2402), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2402), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_API_AVAILABLE] = ACTIONS(2402), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_API_DEPRECATED] = ACTIONS(2402), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2402), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2402), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2402), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2402), + [anon_sym___deprecated_msg] = ACTIONS(2402), + [anon_sym___deprecated_enum_msg] = ACTIONS(2402), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2402), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2402), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2402), + [anon_sym_ATprotocol] = ACTIONS(2404), + [anon_sym_ATinterface] = ACTIONS(2404), + [anon_sym_ATimplementation] = ACTIONS(2404), + [anon_sym_ATcompatibility_alias] = ACTIONS(2404), + [anon_sym_ATtry] = ACTIONS(2404), + [anon_sym___try] = ACTIONS(2402), + [anon_sym_ATthrow] = ACTIONS(2404), + [anon_sym_ATselector] = ACTIONS(2404), + [anon_sym_ATavailable] = ACTIONS(2404), + [anon_sym___builtin_available] = ACTIONS(2402), + [anon_sym_va_arg] = ACTIONS(2402), + [anon_sym_ATencode] = ACTIONS(2404), + [anon_sym_ATsynchronized] = ACTIONS(2404), + [anon_sym_BOOL] = ACTIONS(2402), + [anon_sym_IMP] = ACTIONS(2402), + [anon_sym_SEL] = ACTIONS(2402), + [anon_sym_Class] = ACTIONS(2402), + [anon_sym_id] = ACTIONS(2402), + }, + [649] = { + [sym_identifier] = ACTIONS(2776), + [aux_sym_preproc_include_token1] = ACTIONS(2776), + [aux_sym_preproc_include_token2] = ACTIONS(2776), + [aux_sym_preproc_def_token1] = ACTIONS(2776), + [aux_sym_preproc_if_token1] = ACTIONS(2776), + [aux_sym_preproc_if_token2] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2776), + [sym_preproc_directive] = ACTIONS(2776), + [anon_sym_LPAREN2] = ACTIONS(2778), + [anon_sym_BANG] = ACTIONS(2778), + [anon_sym_TILDE] = ACTIONS(2778), + [anon_sym_DASH] = ACTIONS(2776), + [anon_sym_PLUS] = ACTIONS(2776), + [anon_sym_STAR] = ACTIONS(2778), + [anon_sym_CARET] = ACTIONS(2778), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym___extension__] = ACTIONS(2776), + [anon_sym_typedef] = ACTIONS(2776), + [anon_sym_extern] = ACTIONS(2776), + [anon_sym___attribute__] = ACTIONS(2776), + [anon_sym___attribute] = ACTIONS(2776), + [anon_sym_noreturn] = ACTIONS(2776), + [anon_sym_LBRACK] = ACTIONS(2778), + [anon_sym___declspec] = ACTIONS(2776), + [anon_sym___cdecl] = ACTIONS(2776), + [anon_sym___clrcall] = ACTIONS(2776), + [anon_sym___stdcall] = ACTIONS(2776), + [anon_sym___fastcall] = ACTIONS(2776), + [anon_sym___thiscall] = ACTIONS(2776), + [anon_sym___vectorcall] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_signed] = ACTIONS(2776), + [anon_sym_unsigned] = ACTIONS(2776), + [anon_sym_long] = ACTIONS(2776), + [anon_sym_short] = ACTIONS(2776), + [anon_sym_static] = ACTIONS(2776), + [anon_sym_ATautoreleasepool] = ACTIONS(2778), + [anon_sym_auto] = ACTIONS(2776), + [anon_sym_register] = ACTIONS(2776), + [anon_sym_inline] = ACTIONS(2776), + [anon_sym___inline] = ACTIONS(2776), + [anon_sym___inline__] = ACTIONS(2776), + [anon_sym___forceinline] = ACTIONS(2776), + [anon_sym_thread_local] = ACTIONS(2776), + [anon_sym___thread] = ACTIONS(2776), + [anon_sym_CG_EXTERN] = ACTIONS(2776), + [anon_sym_CG_INLINE] = ACTIONS(2776), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2776), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2776), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2776), + [anon_sym_IBOutlet] = ACTIONS(2776), + [anon_sym_IBInspectable] = ACTIONS(2776), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2776), + [anon_sym_NS_INLINE] = ACTIONS(2776), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2776), + [anon_sym_OBJC_EXPORT] = ACTIONS(2776), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2776), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2776), + [anon_sym_const] = ACTIONS(2776), + [anon_sym_constexpr] = ACTIONS(2776), + [anon_sym_volatile] = ACTIONS(2776), + [anon_sym_restrict] = ACTIONS(2776), + [anon_sym___restrict__] = ACTIONS(2776), + [anon_sym__Atomic] = ACTIONS(2776), + [anon_sym__Noreturn] = ACTIONS(2776), + [anon_sym__Nonnull] = ACTIONS(2776), + [anon_sym_nullable] = ACTIONS(2776), + [anon_sym__Complex] = ACTIONS(2776), + [anon_sym__Nullable] = ACTIONS(2776), + [anon_sym__Nullable_result] = ACTIONS(2776), + [anon_sym__Null_unspecified] = ACTIONS(2776), + [anon_sym___autoreleasing] = ACTIONS(2776), + [anon_sym___block] = ACTIONS(2776), + [anon_sym___bridge] = ACTIONS(2776), + [anon_sym___bridge_retained] = ACTIONS(2776), + [anon_sym___bridge_transfer] = ACTIONS(2776), + [anon_sym___complex] = ACTIONS(2776), + [anon_sym___const] = ACTIONS(2776), + [anon_sym___imag] = ACTIONS(2776), + [anon_sym___kindof] = ACTIONS(2776), + [anon_sym___nonnull] = ACTIONS(2776), + [anon_sym___nullable] = ACTIONS(2776), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2776), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2776), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2776), + [anon_sym___real] = ACTIONS(2776), + [anon_sym___strong] = ACTIONS(2776), + [anon_sym___unsafe_unretained] = ACTIONS(2776), + [anon_sym___unused] = ACTIONS(2776), + [anon_sym___weak] = ACTIONS(2776), + [anon_sym_alignas] = ACTIONS(2776), + [anon_sym__Alignas] = ACTIONS(2776), + [sym_primitive_type] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2776), + [anon_sym_struct] = ACTIONS(2776), + [anon_sym_union] = ACTIONS(2776), + [anon_sym_if] = ACTIONS(2776), + [anon_sym_switch] = ACTIONS(2776), + [anon_sym_case] = ACTIONS(2776), + [anon_sym_default] = ACTIONS(2776), + [anon_sym_while] = ACTIONS(2776), + [anon_sym_do] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2776), + [anon_sym_in] = ACTIONS(2776), + [anon_sym_return] = ACTIONS(2776), + [anon_sym_break] = ACTIONS(2776), + [anon_sym_continue] = ACTIONS(2776), + [anon_sym_goto] = ACTIONS(2776), + [anon_sym_DASH_DASH] = ACTIONS(2778), + [anon_sym_PLUS_PLUS] = ACTIONS(2778), + [anon_sym_sizeof] = ACTIONS(2776), + [anon_sym___alignof__] = ACTIONS(2776), + [anon_sym___alignof] = ACTIONS(2776), + [anon_sym__alignof] = ACTIONS(2776), + [anon_sym_alignof] = ACTIONS(2776), + [anon_sym__Alignof] = ACTIONS(2776), + [anon_sym_offsetof] = ACTIONS(2776), + [anon_sym__Generic] = ACTIONS(2776), + [anon_sym_asm] = ACTIONS(2776), + [anon_sym___asm__] = ACTIONS(2776), + [anon_sym___asm] = ACTIONS(2776), + [sym_number_literal] = ACTIONS(2778), + [anon_sym_L_SQUOTE] = ACTIONS(2778), + [anon_sym_u_SQUOTE] = ACTIONS(2778), + [anon_sym_U_SQUOTE] = ACTIONS(2778), + [anon_sym_u8_SQUOTE] = ACTIONS(2778), + [anon_sym_SQUOTE] = ACTIONS(2778), + [anon_sym_AT] = ACTIONS(2776), + [anon_sym_DQUOTE] = ACTIONS(2778), + [anon_sym_L_DQUOTE] = ACTIONS(2778), + [anon_sym_u_DQUOTE] = ACTIONS(2778), + [anon_sym_U_DQUOTE] = ACTIONS(2778), + [anon_sym_u8_DQUOTE] = ACTIONS(2778), + [sym_true] = ACTIONS(2776), + [sym_false] = ACTIONS(2776), + [anon_sym_NULL] = ACTIONS(2776), + [anon_sym_nullptr] = ACTIONS(2776), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2776), + [anon_sym___typeof] = ACTIONS(2776), + [anon_sym_typeof] = ACTIONS(2776), + [anon_sym_ATimport] = ACTIONS(2778), + [aux_sym_preproc_undef_token1] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(2776), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2776), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2776), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2776), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2776), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2776), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2776), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2776), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2776), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2776), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2776), + [anon_sym_NS_AVAILABLE] = ACTIONS(2776), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2776), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2776), + [anon_sym_API_AVAILABLE] = ACTIONS(2776), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2776), + [anon_sym_API_DEPRECATED] = ACTIONS(2776), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2776), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2776), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2776), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2776), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2776), + [anon_sym___deprecated_msg] = ACTIONS(2776), + [anon_sym___deprecated_enum_msg] = ACTIONS(2776), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2776), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2776), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2776), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2776), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2776), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2776), + [anon_sym_ATprotocol] = ACTIONS(2778), + [anon_sym_ATinterface] = ACTIONS(2778), + [anon_sym_ATimplementation] = ACTIONS(2778), + [anon_sym_ATcompatibility_alias] = ACTIONS(2778), + [anon_sym_ATsynthesize] = ACTIONS(2778), + [anon_sym_ATdynamic] = ACTIONS(2778), + [anon_sym_ATtry] = ACTIONS(2778), + [anon_sym___try] = ACTIONS(2776), + [anon_sym_ATthrow] = ACTIONS(2778), + [anon_sym_ATselector] = ACTIONS(2778), + [anon_sym_ATavailable] = ACTIONS(2778), + [anon_sym___builtin_available] = ACTIONS(2776), + [anon_sym_va_arg] = ACTIONS(2776), + [anon_sym_ATencode] = ACTIONS(2778), + [anon_sym_ATsynchronized] = ACTIONS(2778), + [anon_sym_BOOL] = ACTIONS(2776), + [anon_sym_IMP] = ACTIONS(2776), + [anon_sym_SEL] = ACTIONS(2776), + [anon_sym_Class] = ACTIONS(2776), + [anon_sym_id] = ACTIONS(2776), + }, + [650] = { + [sym_identifier] = ACTIONS(2780), + [aux_sym_preproc_include_token1] = ACTIONS(2780), + [aux_sym_preproc_include_token2] = ACTIONS(2780), + [aux_sym_preproc_def_token1] = ACTIONS(2780), + [aux_sym_preproc_if_token1] = ACTIONS(2780), + [aux_sym_preproc_if_token2] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2780), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2782), + [anon_sym_BANG] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(2780), + [anon_sym_STAR] = ACTIONS(2782), + [anon_sym_CARET] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym___extension__] = ACTIONS(2780), + [anon_sym_typedef] = ACTIONS(2780), + [anon_sym_extern] = ACTIONS(2780), + [anon_sym___attribute__] = ACTIONS(2780), + [anon_sym___attribute] = ACTIONS(2780), + [anon_sym_noreturn] = ACTIONS(2780), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym___declspec] = ACTIONS(2780), + [anon_sym___cdecl] = ACTIONS(2780), + [anon_sym___clrcall] = ACTIONS(2780), + [anon_sym___stdcall] = ACTIONS(2780), + [anon_sym___fastcall] = ACTIONS(2780), + [anon_sym___thiscall] = ACTIONS(2780), + [anon_sym___vectorcall] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_signed] = ACTIONS(2780), + [anon_sym_unsigned] = ACTIONS(2780), + [anon_sym_long] = ACTIONS(2780), + [anon_sym_short] = ACTIONS(2780), + [anon_sym_static] = ACTIONS(2780), + [anon_sym_ATautoreleasepool] = ACTIONS(2782), + [anon_sym_auto] = ACTIONS(2780), + [anon_sym_register] = ACTIONS(2780), + [anon_sym_inline] = ACTIONS(2780), + [anon_sym___inline] = ACTIONS(2780), + [anon_sym___inline__] = ACTIONS(2780), + [anon_sym___forceinline] = ACTIONS(2780), + [anon_sym_thread_local] = ACTIONS(2780), + [anon_sym___thread] = ACTIONS(2780), + [anon_sym_CG_EXTERN] = ACTIONS(2780), + [anon_sym_CG_INLINE] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2780), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2780), + [anon_sym_IBOutlet] = ACTIONS(2780), + [anon_sym_IBInspectable] = ACTIONS(2780), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2780), + [anon_sym_NS_INLINE] = ACTIONS(2780), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2780), + [anon_sym_OBJC_EXPORT] = ACTIONS(2780), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2780), + [anon_sym_const] = ACTIONS(2780), + [anon_sym_constexpr] = ACTIONS(2780), + [anon_sym_volatile] = ACTIONS(2780), + [anon_sym_restrict] = ACTIONS(2780), + [anon_sym___restrict__] = ACTIONS(2780), + [anon_sym__Atomic] = ACTIONS(2780), + [anon_sym__Noreturn] = ACTIONS(2780), + [anon_sym__Nonnull] = ACTIONS(2780), + [anon_sym_nullable] = ACTIONS(2780), + [anon_sym__Complex] = ACTIONS(2780), + [anon_sym__Nullable] = ACTIONS(2780), + [anon_sym__Nullable_result] = ACTIONS(2780), + [anon_sym__Null_unspecified] = ACTIONS(2780), + [anon_sym___autoreleasing] = ACTIONS(2780), + [anon_sym___block] = ACTIONS(2780), + [anon_sym___bridge] = ACTIONS(2780), + [anon_sym___bridge_retained] = ACTIONS(2780), + [anon_sym___bridge_transfer] = ACTIONS(2780), + [anon_sym___complex] = ACTIONS(2780), + [anon_sym___const] = ACTIONS(2780), + [anon_sym___imag] = ACTIONS(2780), + [anon_sym___kindof] = ACTIONS(2780), + [anon_sym___nonnull] = ACTIONS(2780), + [anon_sym___nullable] = ACTIONS(2780), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2780), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2780), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2780), + [anon_sym___real] = ACTIONS(2780), + [anon_sym___strong] = ACTIONS(2780), + [anon_sym___unsafe_unretained] = ACTIONS(2780), + [anon_sym___unused] = ACTIONS(2780), + [anon_sym___weak] = ACTIONS(2780), + [anon_sym_alignas] = ACTIONS(2780), + [anon_sym__Alignas] = ACTIONS(2780), + [sym_primitive_type] = ACTIONS(2780), + [anon_sym_enum] = ACTIONS(2780), + [anon_sym_struct] = ACTIONS(2780), + [anon_sym_union] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_switch] = ACTIONS(2780), + [anon_sym_case] = ACTIONS(2780), + [anon_sym_default] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_in] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_break] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2780), + [anon_sym_goto] = ACTIONS(2780), + [anon_sym_DASH_DASH] = ACTIONS(2782), + [anon_sym_PLUS_PLUS] = ACTIONS(2782), + [anon_sym_sizeof] = ACTIONS(2780), + [anon_sym___alignof__] = ACTIONS(2780), + [anon_sym___alignof] = ACTIONS(2780), + [anon_sym__alignof] = ACTIONS(2780), + [anon_sym_alignof] = ACTIONS(2780), + [anon_sym__Alignof] = ACTIONS(2780), + [anon_sym_offsetof] = ACTIONS(2780), + [anon_sym__Generic] = ACTIONS(2780), + [anon_sym_asm] = ACTIONS(2780), + [anon_sym___asm__] = ACTIONS(2780), + [anon_sym___asm] = ACTIONS(2780), + [sym_number_literal] = ACTIONS(2782), + [anon_sym_L_SQUOTE] = ACTIONS(2782), + [anon_sym_u_SQUOTE] = ACTIONS(2782), + [anon_sym_U_SQUOTE] = ACTIONS(2782), + [anon_sym_u8_SQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2782), + [anon_sym_AT] = ACTIONS(2780), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_L_DQUOTE] = ACTIONS(2782), + [anon_sym_u_DQUOTE] = ACTIONS(2782), + [anon_sym_U_DQUOTE] = ACTIONS(2782), + [anon_sym_u8_DQUOTE] = ACTIONS(2782), + [sym_true] = ACTIONS(2780), + [sym_false] = ACTIONS(2780), + [anon_sym_NULL] = ACTIONS(2780), + [anon_sym_nullptr] = ACTIONS(2780), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2780), + [anon_sym___typeof] = ACTIONS(2780), + [anon_sym_typeof] = ACTIONS(2780), + [anon_sym_ATimport] = ACTIONS(2782), + [aux_sym_preproc_undef_token1] = ACTIONS(2780), + [anon_sym_POUND] = ACTIONS(2780), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2780), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2780), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2780), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2780), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE] = ACTIONS(2780), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_API_AVAILABLE] = ACTIONS(2780), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_API_DEPRECATED] = ACTIONS(2780), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2780), + [anon_sym___deprecated_msg] = ACTIONS(2780), + [anon_sym___deprecated_enum_msg] = ACTIONS(2780), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2780), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2780), + [anon_sym_ATprotocol] = ACTIONS(2782), + [anon_sym_ATinterface] = ACTIONS(2782), + [anon_sym_ATimplementation] = ACTIONS(2782), + [anon_sym_ATcompatibility_alias] = ACTIONS(2782), + [anon_sym_ATsynthesize] = ACTIONS(2782), + [anon_sym_ATdynamic] = ACTIONS(2782), + [anon_sym_ATtry] = ACTIONS(2782), + [anon_sym___try] = ACTIONS(2780), + [anon_sym_ATthrow] = ACTIONS(2782), + [anon_sym_ATselector] = ACTIONS(2782), + [anon_sym_ATavailable] = ACTIONS(2782), + [anon_sym___builtin_available] = ACTIONS(2780), + [anon_sym_va_arg] = ACTIONS(2780), + [anon_sym_ATencode] = ACTIONS(2782), + [anon_sym_ATsynchronized] = ACTIONS(2782), + [anon_sym_BOOL] = ACTIONS(2780), + [anon_sym_IMP] = ACTIONS(2780), + [anon_sym_SEL] = ACTIONS(2780), + [anon_sym_Class] = ACTIONS(2780), + [anon_sym_id] = ACTIONS(2780), + }, + [651] = { + [sym_identifier] = ACTIONS(2780), + [aux_sym_preproc_include_token1] = ACTIONS(2780), + [aux_sym_preproc_include_token2] = ACTIONS(2780), + [aux_sym_preproc_def_token1] = ACTIONS(2780), + [aux_sym_preproc_if_token1] = ACTIONS(2780), + [aux_sym_preproc_if_token2] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2780), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2782), + [anon_sym_BANG] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(2780), + [anon_sym_STAR] = ACTIONS(2782), + [anon_sym_CARET] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym___extension__] = ACTIONS(2780), + [anon_sym_typedef] = ACTIONS(2780), + [anon_sym_extern] = ACTIONS(2780), + [anon_sym___attribute__] = ACTIONS(2780), + [anon_sym___attribute] = ACTIONS(2780), + [anon_sym_noreturn] = ACTIONS(2780), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym___declspec] = ACTIONS(2780), + [anon_sym___cdecl] = ACTIONS(2780), + [anon_sym___clrcall] = ACTIONS(2780), + [anon_sym___stdcall] = ACTIONS(2780), + [anon_sym___fastcall] = ACTIONS(2780), + [anon_sym___thiscall] = ACTIONS(2780), + [anon_sym___vectorcall] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_signed] = ACTIONS(2780), + [anon_sym_unsigned] = ACTIONS(2780), + [anon_sym_long] = ACTIONS(2780), + [anon_sym_short] = ACTIONS(2780), + [anon_sym_static] = ACTIONS(2780), + [anon_sym_ATautoreleasepool] = ACTIONS(2782), + [anon_sym_auto] = ACTIONS(2780), + [anon_sym_register] = ACTIONS(2780), + [anon_sym_inline] = ACTIONS(2780), + [anon_sym___inline] = ACTIONS(2780), + [anon_sym___inline__] = ACTIONS(2780), + [anon_sym___forceinline] = ACTIONS(2780), + [anon_sym_thread_local] = ACTIONS(2780), + [anon_sym___thread] = ACTIONS(2780), + [anon_sym_CG_EXTERN] = ACTIONS(2780), + [anon_sym_CG_INLINE] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2780), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2780), + [anon_sym_IBOutlet] = ACTIONS(2780), + [anon_sym_IBInspectable] = ACTIONS(2780), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2780), + [anon_sym_NS_INLINE] = ACTIONS(2780), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2780), + [anon_sym_OBJC_EXPORT] = ACTIONS(2780), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2780), + [anon_sym_const] = ACTIONS(2780), + [anon_sym_constexpr] = ACTIONS(2780), + [anon_sym_volatile] = ACTIONS(2780), + [anon_sym_restrict] = ACTIONS(2780), + [anon_sym___restrict__] = ACTIONS(2780), + [anon_sym__Atomic] = ACTIONS(2780), + [anon_sym__Noreturn] = ACTIONS(2780), + [anon_sym__Nonnull] = ACTIONS(2780), + [anon_sym_nullable] = ACTIONS(2780), + [anon_sym__Complex] = ACTIONS(2780), + [anon_sym__Nullable] = ACTIONS(2780), + [anon_sym__Nullable_result] = ACTIONS(2780), + [anon_sym__Null_unspecified] = ACTIONS(2780), + [anon_sym___autoreleasing] = ACTIONS(2780), + [anon_sym___block] = ACTIONS(2780), + [anon_sym___bridge] = ACTIONS(2780), + [anon_sym___bridge_retained] = ACTIONS(2780), + [anon_sym___bridge_transfer] = ACTIONS(2780), + [anon_sym___complex] = ACTIONS(2780), + [anon_sym___const] = ACTIONS(2780), + [anon_sym___imag] = ACTIONS(2780), + [anon_sym___kindof] = ACTIONS(2780), + [anon_sym___nonnull] = ACTIONS(2780), + [anon_sym___nullable] = ACTIONS(2780), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2780), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2780), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2780), + [anon_sym___real] = ACTIONS(2780), + [anon_sym___strong] = ACTIONS(2780), + [anon_sym___unsafe_unretained] = ACTIONS(2780), + [anon_sym___unused] = ACTIONS(2780), + [anon_sym___weak] = ACTIONS(2780), + [anon_sym_alignas] = ACTIONS(2780), + [anon_sym__Alignas] = ACTIONS(2780), + [sym_primitive_type] = ACTIONS(2780), + [anon_sym_enum] = ACTIONS(2780), + [anon_sym_struct] = ACTIONS(2780), + [anon_sym_union] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_switch] = ACTIONS(2780), + [anon_sym_case] = ACTIONS(2780), + [anon_sym_default] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_in] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_break] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2780), + [anon_sym_goto] = ACTIONS(2780), + [anon_sym_DASH_DASH] = ACTIONS(2782), + [anon_sym_PLUS_PLUS] = ACTIONS(2782), + [anon_sym_sizeof] = ACTIONS(2780), + [anon_sym___alignof__] = ACTIONS(2780), + [anon_sym___alignof] = ACTIONS(2780), + [anon_sym__alignof] = ACTIONS(2780), + [anon_sym_alignof] = ACTIONS(2780), + [anon_sym__Alignof] = ACTIONS(2780), + [anon_sym_offsetof] = ACTIONS(2780), + [anon_sym__Generic] = ACTIONS(2780), + [anon_sym_asm] = ACTIONS(2780), + [anon_sym___asm__] = ACTIONS(2780), + [anon_sym___asm] = ACTIONS(2780), + [sym_number_literal] = ACTIONS(2782), + [anon_sym_L_SQUOTE] = ACTIONS(2782), + [anon_sym_u_SQUOTE] = ACTIONS(2782), + [anon_sym_U_SQUOTE] = ACTIONS(2782), + [anon_sym_u8_SQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2782), + [anon_sym_AT] = ACTIONS(2780), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_L_DQUOTE] = ACTIONS(2782), + [anon_sym_u_DQUOTE] = ACTIONS(2782), + [anon_sym_U_DQUOTE] = ACTIONS(2782), + [anon_sym_u8_DQUOTE] = ACTIONS(2782), + [sym_true] = ACTIONS(2780), + [sym_false] = ACTIONS(2780), + [anon_sym_NULL] = ACTIONS(2780), + [anon_sym_nullptr] = ACTIONS(2780), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2780), + [anon_sym___typeof] = ACTIONS(2780), + [anon_sym_typeof] = ACTIONS(2780), + [anon_sym_ATimport] = ACTIONS(2782), + [aux_sym_preproc_undef_token1] = ACTIONS(2780), + [anon_sym_POUND] = ACTIONS(2780), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2780), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2780), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2780), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2780), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE] = ACTIONS(2780), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_API_AVAILABLE] = ACTIONS(2780), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_API_DEPRECATED] = ACTIONS(2780), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2780), + [anon_sym___deprecated_msg] = ACTIONS(2780), + [anon_sym___deprecated_enum_msg] = ACTIONS(2780), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2780), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2780), + [anon_sym_ATprotocol] = ACTIONS(2782), + [anon_sym_ATinterface] = ACTIONS(2782), + [anon_sym_ATimplementation] = ACTIONS(2782), + [anon_sym_ATcompatibility_alias] = ACTIONS(2782), + [anon_sym_ATsynthesize] = ACTIONS(2782), + [anon_sym_ATdynamic] = ACTIONS(2782), + [anon_sym_ATtry] = ACTIONS(2782), + [anon_sym___try] = ACTIONS(2780), + [anon_sym_ATthrow] = ACTIONS(2782), + [anon_sym_ATselector] = ACTIONS(2782), + [anon_sym_ATavailable] = ACTIONS(2782), + [anon_sym___builtin_available] = ACTIONS(2780), + [anon_sym_va_arg] = ACTIONS(2780), + [anon_sym_ATencode] = ACTIONS(2782), + [anon_sym_ATsynchronized] = ACTIONS(2782), + [anon_sym_BOOL] = ACTIONS(2780), + [anon_sym_IMP] = ACTIONS(2780), + [anon_sym_SEL] = ACTIONS(2780), + [anon_sym_Class] = ACTIONS(2780), + [anon_sym_id] = ACTIONS(2780), + }, + [652] = { + [sym_identifier] = ACTIONS(2780), + [aux_sym_preproc_include_token1] = ACTIONS(2780), + [aux_sym_preproc_include_token2] = ACTIONS(2780), + [aux_sym_preproc_def_token1] = ACTIONS(2780), + [aux_sym_preproc_if_token1] = ACTIONS(2780), + [aux_sym_preproc_if_token2] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2780), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2782), + [anon_sym_BANG] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(2780), + [anon_sym_STAR] = ACTIONS(2782), + [anon_sym_CARET] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym___extension__] = ACTIONS(2780), + [anon_sym_typedef] = ACTIONS(2780), + [anon_sym_extern] = ACTIONS(2780), + [anon_sym___attribute__] = ACTIONS(2780), + [anon_sym___attribute] = ACTIONS(2780), + [anon_sym_noreturn] = ACTIONS(2780), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym___declspec] = ACTIONS(2780), + [anon_sym___cdecl] = ACTIONS(2780), + [anon_sym___clrcall] = ACTIONS(2780), + [anon_sym___stdcall] = ACTIONS(2780), + [anon_sym___fastcall] = ACTIONS(2780), + [anon_sym___thiscall] = ACTIONS(2780), + [anon_sym___vectorcall] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_signed] = ACTIONS(2780), + [anon_sym_unsigned] = ACTIONS(2780), + [anon_sym_long] = ACTIONS(2780), + [anon_sym_short] = ACTIONS(2780), + [anon_sym_static] = ACTIONS(2780), + [anon_sym_ATautoreleasepool] = ACTIONS(2782), + [anon_sym_auto] = ACTIONS(2780), + [anon_sym_register] = ACTIONS(2780), + [anon_sym_inline] = ACTIONS(2780), + [anon_sym___inline] = ACTIONS(2780), + [anon_sym___inline__] = ACTIONS(2780), + [anon_sym___forceinline] = ACTIONS(2780), + [anon_sym_thread_local] = ACTIONS(2780), + [anon_sym___thread] = ACTIONS(2780), + [anon_sym_CG_EXTERN] = ACTIONS(2780), + [anon_sym_CG_INLINE] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2780), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2780), + [anon_sym_IBOutlet] = ACTIONS(2780), + [anon_sym_IBInspectable] = ACTIONS(2780), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2780), + [anon_sym_NS_INLINE] = ACTIONS(2780), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2780), + [anon_sym_OBJC_EXPORT] = ACTIONS(2780), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2780), + [anon_sym_const] = ACTIONS(2780), + [anon_sym_constexpr] = ACTIONS(2780), + [anon_sym_volatile] = ACTIONS(2780), + [anon_sym_restrict] = ACTIONS(2780), + [anon_sym___restrict__] = ACTIONS(2780), + [anon_sym__Atomic] = ACTIONS(2780), + [anon_sym__Noreturn] = ACTIONS(2780), + [anon_sym__Nonnull] = ACTIONS(2780), + [anon_sym_nullable] = ACTIONS(2780), + [anon_sym__Complex] = ACTIONS(2780), + [anon_sym__Nullable] = ACTIONS(2780), + [anon_sym__Nullable_result] = ACTIONS(2780), + [anon_sym__Null_unspecified] = ACTIONS(2780), + [anon_sym___autoreleasing] = ACTIONS(2780), + [anon_sym___block] = ACTIONS(2780), + [anon_sym___bridge] = ACTIONS(2780), + [anon_sym___bridge_retained] = ACTIONS(2780), + [anon_sym___bridge_transfer] = ACTIONS(2780), + [anon_sym___complex] = ACTIONS(2780), + [anon_sym___const] = ACTIONS(2780), + [anon_sym___imag] = ACTIONS(2780), + [anon_sym___kindof] = ACTIONS(2780), + [anon_sym___nonnull] = ACTIONS(2780), + [anon_sym___nullable] = ACTIONS(2780), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2780), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2780), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2780), + [anon_sym___real] = ACTIONS(2780), + [anon_sym___strong] = ACTIONS(2780), + [anon_sym___unsafe_unretained] = ACTIONS(2780), + [anon_sym___unused] = ACTIONS(2780), + [anon_sym___weak] = ACTIONS(2780), + [anon_sym_alignas] = ACTIONS(2780), + [anon_sym__Alignas] = ACTIONS(2780), + [sym_primitive_type] = ACTIONS(2780), + [anon_sym_enum] = ACTIONS(2780), + [anon_sym_struct] = ACTIONS(2780), + [anon_sym_union] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_switch] = ACTIONS(2780), + [anon_sym_case] = ACTIONS(2780), + [anon_sym_default] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_in] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_break] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2780), + [anon_sym_goto] = ACTIONS(2780), + [anon_sym_DASH_DASH] = ACTIONS(2782), + [anon_sym_PLUS_PLUS] = ACTIONS(2782), + [anon_sym_sizeof] = ACTIONS(2780), + [anon_sym___alignof__] = ACTIONS(2780), + [anon_sym___alignof] = ACTIONS(2780), + [anon_sym__alignof] = ACTIONS(2780), + [anon_sym_alignof] = ACTIONS(2780), + [anon_sym__Alignof] = ACTIONS(2780), + [anon_sym_offsetof] = ACTIONS(2780), + [anon_sym__Generic] = ACTIONS(2780), + [anon_sym_asm] = ACTIONS(2780), + [anon_sym___asm__] = ACTIONS(2780), + [anon_sym___asm] = ACTIONS(2780), + [sym_number_literal] = ACTIONS(2782), + [anon_sym_L_SQUOTE] = ACTIONS(2782), + [anon_sym_u_SQUOTE] = ACTIONS(2782), + [anon_sym_U_SQUOTE] = ACTIONS(2782), + [anon_sym_u8_SQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2782), + [anon_sym_AT] = ACTIONS(2780), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_L_DQUOTE] = ACTIONS(2782), + [anon_sym_u_DQUOTE] = ACTIONS(2782), + [anon_sym_U_DQUOTE] = ACTIONS(2782), + [anon_sym_u8_DQUOTE] = ACTIONS(2782), + [sym_true] = ACTIONS(2780), + [sym_false] = ACTIONS(2780), + [anon_sym_NULL] = ACTIONS(2780), + [anon_sym_nullptr] = ACTIONS(2780), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2780), + [anon_sym___typeof] = ACTIONS(2780), + [anon_sym_typeof] = ACTIONS(2780), + [anon_sym_ATimport] = ACTIONS(2782), + [aux_sym_preproc_undef_token1] = ACTIONS(2780), + [anon_sym_POUND] = ACTIONS(2780), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2780), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2780), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2780), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2780), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE] = ACTIONS(2780), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_API_AVAILABLE] = ACTIONS(2780), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_API_DEPRECATED] = ACTIONS(2780), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2780), + [anon_sym___deprecated_msg] = ACTIONS(2780), + [anon_sym___deprecated_enum_msg] = ACTIONS(2780), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2780), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2780), + [anon_sym_ATprotocol] = ACTIONS(2782), + [anon_sym_ATinterface] = ACTIONS(2782), + [anon_sym_ATimplementation] = ACTIONS(2782), + [anon_sym_ATcompatibility_alias] = ACTIONS(2782), + [anon_sym_ATsynthesize] = ACTIONS(2782), + [anon_sym_ATdynamic] = ACTIONS(2782), + [anon_sym_ATtry] = ACTIONS(2782), + [anon_sym___try] = ACTIONS(2780), + [anon_sym_ATthrow] = ACTIONS(2782), + [anon_sym_ATselector] = ACTIONS(2782), + [anon_sym_ATavailable] = ACTIONS(2782), + [anon_sym___builtin_available] = ACTIONS(2780), + [anon_sym_va_arg] = ACTIONS(2780), + [anon_sym_ATencode] = ACTIONS(2782), + [anon_sym_ATsynchronized] = ACTIONS(2782), + [anon_sym_BOOL] = ACTIONS(2780), + [anon_sym_IMP] = ACTIONS(2780), + [anon_sym_SEL] = ACTIONS(2780), + [anon_sym_Class] = ACTIONS(2780), + [anon_sym_id] = ACTIONS(2780), + }, + [653] = { + [sym_identifier] = ACTIONS(2784), + [aux_sym_preproc_include_token1] = ACTIONS(2784), + [aux_sym_preproc_include_token2] = ACTIONS(2784), + [aux_sym_preproc_def_token1] = ACTIONS(2784), + [aux_sym_preproc_if_token1] = ACTIONS(2784), + [aux_sym_preproc_if_token2] = ACTIONS(2784), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2784), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2784), + [sym_preproc_directive] = ACTIONS(2784), + [anon_sym_LPAREN2] = ACTIONS(2786), + [anon_sym_BANG] = ACTIONS(2786), + [anon_sym_TILDE] = ACTIONS(2786), + [anon_sym_DASH] = ACTIONS(2784), + [anon_sym_PLUS] = ACTIONS(2784), + [anon_sym_STAR] = ACTIONS(2786), + [anon_sym_CARET] = ACTIONS(2786), + [anon_sym_AMP] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2784), + [anon_sym_extern] = ACTIONS(2784), + [anon_sym___attribute__] = ACTIONS(2784), + [anon_sym___attribute] = ACTIONS(2784), + [anon_sym_noreturn] = ACTIONS(2784), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym___declspec] = ACTIONS(2784), + [anon_sym___cdecl] = ACTIONS(2784), + [anon_sym___clrcall] = ACTIONS(2784), + [anon_sym___stdcall] = ACTIONS(2784), + [anon_sym___fastcall] = ACTIONS(2784), + [anon_sym___thiscall] = ACTIONS(2784), + [anon_sym___vectorcall] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_signed] = ACTIONS(2784), + [anon_sym_unsigned] = ACTIONS(2784), + [anon_sym_long] = ACTIONS(2784), + [anon_sym_short] = ACTIONS(2784), + [anon_sym_static] = ACTIONS(2784), + [anon_sym_ATautoreleasepool] = ACTIONS(2786), + [anon_sym_auto] = ACTIONS(2784), + [anon_sym_register] = ACTIONS(2784), + [anon_sym_inline] = ACTIONS(2784), + [anon_sym___inline] = ACTIONS(2784), + [anon_sym___inline__] = ACTIONS(2784), + [anon_sym___forceinline] = ACTIONS(2784), + [anon_sym_thread_local] = ACTIONS(2784), + [anon_sym___thread] = ACTIONS(2784), + [anon_sym_CG_EXTERN] = ACTIONS(2784), + [anon_sym_CG_INLINE] = ACTIONS(2784), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2784), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2784), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2784), + [anon_sym_IBOutlet] = ACTIONS(2784), + [anon_sym_IBInspectable] = ACTIONS(2784), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2784), + [anon_sym_NS_INLINE] = ACTIONS(2784), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2784), + [anon_sym_OBJC_EXPORT] = ACTIONS(2784), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2784), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2784), + [anon_sym_const] = ACTIONS(2784), + [anon_sym_constexpr] = ACTIONS(2784), + [anon_sym_volatile] = ACTIONS(2784), + [anon_sym_restrict] = ACTIONS(2784), + [anon_sym___restrict__] = ACTIONS(2784), + [anon_sym__Atomic] = ACTIONS(2784), + [anon_sym__Noreturn] = ACTIONS(2784), + [anon_sym__Nonnull] = ACTIONS(2784), + [anon_sym_nullable] = ACTIONS(2784), + [anon_sym__Complex] = ACTIONS(2784), + [anon_sym__Nullable] = ACTIONS(2784), + [anon_sym__Nullable_result] = ACTIONS(2784), + [anon_sym__Null_unspecified] = ACTIONS(2784), + [anon_sym___autoreleasing] = ACTIONS(2784), + [anon_sym___block] = ACTIONS(2784), + [anon_sym___bridge] = ACTIONS(2784), + [anon_sym___bridge_retained] = ACTIONS(2784), + [anon_sym___bridge_transfer] = ACTIONS(2784), + [anon_sym___complex] = ACTIONS(2784), + [anon_sym___const] = ACTIONS(2784), + [anon_sym___imag] = ACTIONS(2784), + [anon_sym___kindof] = ACTIONS(2784), + [anon_sym___nonnull] = ACTIONS(2784), + [anon_sym___nullable] = ACTIONS(2784), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2784), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2784), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2784), + [anon_sym___real] = ACTIONS(2784), + [anon_sym___strong] = ACTIONS(2784), + [anon_sym___unsafe_unretained] = ACTIONS(2784), + [anon_sym___unused] = ACTIONS(2784), + [anon_sym___weak] = ACTIONS(2784), + [anon_sym_alignas] = ACTIONS(2784), + [anon_sym__Alignas] = ACTIONS(2784), + [sym_primitive_type] = ACTIONS(2784), + [anon_sym_enum] = ACTIONS(2784), + [anon_sym_struct] = ACTIONS(2784), + [anon_sym_union] = ACTIONS(2784), + [anon_sym_if] = ACTIONS(2784), + [anon_sym_switch] = ACTIONS(2784), + [anon_sym_case] = ACTIONS(2784), + [anon_sym_default] = ACTIONS(2784), + [anon_sym_while] = ACTIONS(2784), + [anon_sym_do] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2784), + [anon_sym_in] = ACTIONS(2784), + [anon_sym_return] = ACTIONS(2784), + [anon_sym_break] = ACTIONS(2784), + [anon_sym_continue] = ACTIONS(2784), + [anon_sym_goto] = ACTIONS(2784), + [anon_sym_DASH_DASH] = ACTIONS(2786), + [anon_sym_PLUS_PLUS] = ACTIONS(2786), + [anon_sym_sizeof] = ACTIONS(2784), + [anon_sym___alignof__] = ACTIONS(2784), + [anon_sym___alignof] = ACTIONS(2784), + [anon_sym__alignof] = ACTIONS(2784), + [anon_sym_alignof] = ACTIONS(2784), + [anon_sym__Alignof] = ACTIONS(2784), + [anon_sym_offsetof] = ACTIONS(2784), + [anon_sym__Generic] = ACTIONS(2784), + [anon_sym_asm] = ACTIONS(2784), + [anon_sym___asm__] = ACTIONS(2784), + [anon_sym___asm] = ACTIONS(2784), + [sym_number_literal] = ACTIONS(2786), + [anon_sym_L_SQUOTE] = ACTIONS(2786), + [anon_sym_u_SQUOTE] = ACTIONS(2786), + [anon_sym_U_SQUOTE] = ACTIONS(2786), + [anon_sym_u8_SQUOTE] = ACTIONS(2786), + [anon_sym_SQUOTE] = ACTIONS(2786), + [anon_sym_AT] = ACTIONS(2784), + [anon_sym_DQUOTE] = ACTIONS(2786), + [anon_sym_L_DQUOTE] = ACTIONS(2786), + [anon_sym_u_DQUOTE] = ACTIONS(2786), + [anon_sym_U_DQUOTE] = ACTIONS(2786), + [anon_sym_u8_DQUOTE] = ACTIONS(2786), + [sym_true] = ACTIONS(2784), + [sym_false] = ACTIONS(2784), + [anon_sym_NULL] = ACTIONS(2784), + [anon_sym_nullptr] = ACTIONS(2784), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2784), + [anon_sym___typeof] = ACTIONS(2784), + [anon_sym_typeof] = ACTIONS(2784), + [anon_sym_ATimport] = ACTIONS(2786), + [aux_sym_preproc_undef_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(2784), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2784), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2784), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2784), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2784), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2784), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2784), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2784), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2784), + [anon_sym_NS_AVAILABLE] = ACTIONS(2784), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2784), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_API_AVAILABLE] = ACTIONS(2784), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_API_DEPRECATED] = ACTIONS(2784), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2784), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2784), + [anon_sym___deprecated_msg] = ACTIONS(2784), + [anon_sym___deprecated_enum_msg] = ACTIONS(2784), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2784), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2784), + [anon_sym_ATprotocol] = ACTIONS(2786), + [anon_sym_ATinterface] = ACTIONS(2786), + [anon_sym_ATimplementation] = ACTIONS(2786), + [anon_sym_ATcompatibility_alias] = ACTIONS(2786), + [anon_sym_ATsynthesize] = ACTIONS(2786), + [anon_sym_ATdynamic] = ACTIONS(2786), + [anon_sym_ATtry] = ACTIONS(2786), + [anon_sym___try] = ACTIONS(2784), + [anon_sym_ATthrow] = ACTIONS(2786), + [anon_sym_ATselector] = ACTIONS(2786), + [anon_sym_ATavailable] = ACTIONS(2786), + [anon_sym___builtin_available] = ACTIONS(2784), + [anon_sym_va_arg] = ACTIONS(2784), + [anon_sym_ATencode] = ACTIONS(2786), + [anon_sym_ATsynchronized] = ACTIONS(2786), + [anon_sym_BOOL] = ACTIONS(2784), + [anon_sym_IMP] = ACTIONS(2784), + [anon_sym_SEL] = ACTIONS(2784), + [anon_sym_Class] = ACTIONS(2784), + [anon_sym_id] = ACTIONS(2784), + }, + [654] = { + [sym_identifier] = ACTIONS(2784), + [aux_sym_preproc_include_token1] = ACTIONS(2784), + [aux_sym_preproc_include_token2] = ACTIONS(2784), + [aux_sym_preproc_def_token1] = ACTIONS(2784), + [aux_sym_preproc_if_token1] = ACTIONS(2784), + [aux_sym_preproc_if_token2] = ACTIONS(2784), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2784), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2784), + [sym_preproc_directive] = ACTIONS(2784), + [anon_sym_LPAREN2] = ACTIONS(2786), + [anon_sym_BANG] = ACTIONS(2786), + [anon_sym_TILDE] = ACTIONS(2786), + [anon_sym_DASH] = ACTIONS(2784), + [anon_sym_PLUS] = ACTIONS(2784), + [anon_sym_STAR] = ACTIONS(2786), + [anon_sym_CARET] = ACTIONS(2786), + [anon_sym_AMP] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2784), + [anon_sym_extern] = ACTIONS(2784), + [anon_sym___attribute__] = ACTIONS(2784), + [anon_sym___attribute] = ACTIONS(2784), + [anon_sym_noreturn] = ACTIONS(2784), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym___declspec] = ACTIONS(2784), + [anon_sym___cdecl] = ACTIONS(2784), + [anon_sym___clrcall] = ACTIONS(2784), + [anon_sym___stdcall] = ACTIONS(2784), + [anon_sym___fastcall] = ACTIONS(2784), + [anon_sym___thiscall] = ACTIONS(2784), + [anon_sym___vectorcall] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_signed] = ACTIONS(2784), + [anon_sym_unsigned] = ACTIONS(2784), + [anon_sym_long] = ACTIONS(2784), + [anon_sym_short] = ACTIONS(2784), + [anon_sym_static] = ACTIONS(2784), + [anon_sym_ATautoreleasepool] = ACTIONS(2786), + [anon_sym_auto] = ACTIONS(2784), + [anon_sym_register] = ACTIONS(2784), + [anon_sym_inline] = ACTIONS(2784), + [anon_sym___inline] = ACTIONS(2784), + [anon_sym___inline__] = ACTIONS(2784), + [anon_sym___forceinline] = ACTIONS(2784), + [anon_sym_thread_local] = ACTIONS(2784), + [anon_sym___thread] = ACTIONS(2784), + [anon_sym_CG_EXTERN] = ACTIONS(2784), + [anon_sym_CG_INLINE] = ACTIONS(2784), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2784), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2784), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2784), + [anon_sym_IBOutlet] = ACTIONS(2784), + [anon_sym_IBInspectable] = ACTIONS(2784), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2784), + [anon_sym_NS_INLINE] = ACTIONS(2784), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2784), + [anon_sym_OBJC_EXPORT] = ACTIONS(2784), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2784), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2784), + [anon_sym_const] = ACTIONS(2784), + [anon_sym_constexpr] = ACTIONS(2784), + [anon_sym_volatile] = ACTIONS(2784), + [anon_sym_restrict] = ACTIONS(2784), + [anon_sym___restrict__] = ACTIONS(2784), + [anon_sym__Atomic] = ACTIONS(2784), + [anon_sym__Noreturn] = ACTIONS(2784), + [anon_sym__Nonnull] = ACTIONS(2784), + [anon_sym_nullable] = ACTIONS(2784), + [anon_sym__Complex] = ACTIONS(2784), + [anon_sym__Nullable] = ACTIONS(2784), + [anon_sym__Nullable_result] = ACTIONS(2784), + [anon_sym__Null_unspecified] = ACTIONS(2784), + [anon_sym___autoreleasing] = ACTIONS(2784), + [anon_sym___block] = ACTIONS(2784), + [anon_sym___bridge] = ACTIONS(2784), + [anon_sym___bridge_retained] = ACTIONS(2784), + [anon_sym___bridge_transfer] = ACTIONS(2784), + [anon_sym___complex] = ACTIONS(2784), + [anon_sym___const] = ACTIONS(2784), + [anon_sym___imag] = ACTIONS(2784), + [anon_sym___kindof] = ACTIONS(2784), + [anon_sym___nonnull] = ACTIONS(2784), + [anon_sym___nullable] = ACTIONS(2784), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2784), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2784), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2784), + [anon_sym___real] = ACTIONS(2784), + [anon_sym___strong] = ACTIONS(2784), + [anon_sym___unsafe_unretained] = ACTIONS(2784), + [anon_sym___unused] = ACTIONS(2784), + [anon_sym___weak] = ACTIONS(2784), + [anon_sym_alignas] = ACTIONS(2784), + [anon_sym__Alignas] = ACTIONS(2784), + [sym_primitive_type] = ACTIONS(2784), + [anon_sym_enum] = ACTIONS(2784), + [anon_sym_struct] = ACTIONS(2784), + [anon_sym_union] = ACTIONS(2784), + [anon_sym_if] = ACTIONS(2784), + [anon_sym_switch] = ACTIONS(2784), + [anon_sym_case] = ACTIONS(2784), + [anon_sym_default] = ACTIONS(2784), + [anon_sym_while] = ACTIONS(2784), + [anon_sym_do] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2784), + [anon_sym_in] = ACTIONS(2784), + [anon_sym_return] = ACTIONS(2784), + [anon_sym_break] = ACTIONS(2784), + [anon_sym_continue] = ACTIONS(2784), + [anon_sym_goto] = ACTIONS(2784), + [anon_sym_DASH_DASH] = ACTIONS(2786), + [anon_sym_PLUS_PLUS] = ACTIONS(2786), + [anon_sym_sizeof] = ACTIONS(2784), + [anon_sym___alignof__] = ACTIONS(2784), + [anon_sym___alignof] = ACTIONS(2784), + [anon_sym__alignof] = ACTIONS(2784), + [anon_sym_alignof] = ACTIONS(2784), + [anon_sym__Alignof] = ACTIONS(2784), + [anon_sym_offsetof] = ACTIONS(2784), + [anon_sym__Generic] = ACTIONS(2784), + [anon_sym_asm] = ACTIONS(2784), + [anon_sym___asm__] = ACTIONS(2784), + [anon_sym___asm] = ACTIONS(2784), + [sym_number_literal] = ACTIONS(2786), + [anon_sym_L_SQUOTE] = ACTIONS(2786), + [anon_sym_u_SQUOTE] = ACTIONS(2786), + [anon_sym_U_SQUOTE] = ACTIONS(2786), + [anon_sym_u8_SQUOTE] = ACTIONS(2786), + [anon_sym_SQUOTE] = ACTIONS(2786), + [anon_sym_AT] = ACTIONS(2784), + [anon_sym_DQUOTE] = ACTIONS(2786), + [anon_sym_L_DQUOTE] = ACTIONS(2786), + [anon_sym_u_DQUOTE] = ACTIONS(2786), + [anon_sym_U_DQUOTE] = ACTIONS(2786), + [anon_sym_u8_DQUOTE] = ACTIONS(2786), + [sym_true] = ACTIONS(2784), + [sym_false] = ACTIONS(2784), + [anon_sym_NULL] = ACTIONS(2784), + [anon_sym_nullptr] = ACTIONS(2784), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2784), + [anon_sym___typeof] = ACTIONS(2784), + [anon_sym_typeof] = ACTIONS(2784), + [anon_sym_ATimport] = ACTIONS(2786), + [aux_sym_preproc_undef_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(2784), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2784), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2784), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2784), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2784), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2784), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2784), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2784), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2784), + [anon_sym_NS_AVAILABLE] = ACTIONS(2784), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2784), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_API_AVAILABLE] = ACTIONS(2784), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_API_DEPRECATED] = ACTIONS(2784), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2784), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2784), + [anon_sym___deprecated_msg] = ACTIONS(2784), + [anon_sym___deprecated_enum_msg] = ACTIONS(2784), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2784), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2784), + [anon_sym_ATprotocol] = ACTIONS(2786), + [anon_sym_ATinterface] = ACTIONS(2786), + [anon_sym_ATimplementation] = ACTIONS(2786), + [anon_sym_ATcompatibility_alias] = ACTIONS(2786), + [anon_sym_ATsynthesize] = ACTIONS(2786), + [anon_sym_ATdynamic] = ACTIONS(2786), + [anon_sym_ATtry] = ACTIONS(2786), + [anon_sym___try] = ACTIONS(2784), + [anon_sym_ATthrow] = ACTIONS(2786), + [anon_sym_ATselector] = ACTIONS(2786), + [anon_sym_ATavailable] = ACTIONS(2786), + [anon_sym___builtin_available] = ACTIONS(2784), + [anon_sym_va_arg] = ACTIONS(2784), + [anon_sym_ATencode] = ACTIONS(2786), + [anon_sym_ATsynchronized] = ACTIONS(2786), + [anon_sym_BOOL] = ACTIONS(2784), + [anon_sym_IMP] = ACTIONS(2784), + [anon_sym_SEL] = ACTIONS(2784), + [anon_sym_Class] = ACTIONS(2784), + [anon_sym_id] = ACTIONS(2784), + }, + [655] = { + [sym_identifier] = ACTIONS(2788), + [aux_sym_preproc_include_token1] = ACTIONS(2788), + [aux_sym_preproc_include_token2] = ACTIONS(2788), + [aux_sym_preproc_def_token1] = ACTIONS(2788), + [aux_sym_preproc_if_token1] = ACTIONS(2788), + [aux_sym_preproc_if_token2] = ACTIONS(2788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2788), + [sym_preproc_directive] = ACTIONS(2788), + [anon_sym_LPAREN2] = ACTIONS(2790), + [anon_sym_BANG] = ACTIONS(2790), + [anon_sym_TILDE] = ACTIONS(2790), + [anon_sym_DASH] = ACTIONS(2788), + [anon_sym_PLUS] = ACTIONS(2788), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_CARET] = ACTIONS(2790), + [anon_sym_AMP] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym___extension__] = ACTIONS(2788), + [anon_sym_typedef] = ACTIONS(2788), + [anon_sym_extern] = ACTIONS(2788), + [anon_sym___attribute__] = ACTIONS(2788), + [anon_sym___attribute] = ACTIONS(2788), + [anon_sym_noreturn] = ACTIONS(2788), + [anon_sym_LBRACK] = ACTIONS(2790), + [anon_sym___declspec] = ACTIONS(2788), + [anon_sym___cdecl] = ACTIONS(2788), + [anon_sym___clrcall] = ACTIONS(2788), + [anon_sym___stdcall] = ACTIONS(2788), + [anon_sym___fastcall] = ACTIONS(2788), + [anon_sym___thiscall] = ACTIONS(2788), + [anon_sym___vectorcall] = ACTIONS(2788), + [anon_sym_LBRACE] = ACTIONS(2790), + [anon_sym_signed] = ACTIONS(2788), + [anon_sym_unsigned] = ACTIONS(2788), + [anon_sym_long] = ACTIONS(2788), + [anon_sym_short] = ACTIONS(2788), + [anon_sym_static] = ACTIONS(2788), + [anon_sym_ATautoreleasepool] = ACTIONS(2790), + [anon_sym_auto] = ACTIONS(2788), + [anon_sym_register] = ACTIONS(2788), + [anon_sym_inline] = ACTIONS(2788), + [anon_sym___inline] = ACTIONS(2788), + [anon_sym___inline__] = ACTIONS(2788), + [anon_sym___forceinline] = ACTIONS(2788), + [anon_sym_thread_local] = ACTIONS(2788), + [anon_sym___thread] = ACTIONS(2788), + [anon_sym_CG_EXTERN] = ACTIONS(2788), + [anon_sym_CG_INLINE] = ACTIONS(2788), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2788), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2788), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2788), + [anon_sym_IBOutlet] = ACTIONS(2788), + [anon_sym_IBInspectable] = ACTIONS(2788), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2788), + [anon_sym_NS_INLINE] = ACTIONS(2788), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2788), + [anon_sym_OBJC_EXPORT] = ACTIONS(2788), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2788), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2788), + [anon_sym_const] = ACTIONS(2788), + [anon_sym_constexpr] = ACTIONS(2788), + [anon_sym_volatile] = ACTIONS(2788), + [anon_sym_restrict] = ACTIONS(2788), + [anon_sym___restrict__] = ACTIONS(2788), + [anon_sym__Atomic] = ACTIONS(2788), + [anon_sym__Noreturn] = ACTIONS(2788), + [anon_sym__Nonnull] = ACTIONS(2788), + [anon_sym_nullable] = ACTIONS(2788), + [anon_sym__Complex] = ACTIONS(2788), + [anon_sym__Nullable] = ACTIONS(2788), + [anon_sym__Nullable_result] = ACTIONS(2788), + [anon_sym__Null_unspecified] = ACTIONS(2788), + [anon_sym___autoreleasing] = ACTIONS(2788), + [anon_sym___block] = ACTIONS(2788), + [anon_sym___bridge] = ACTIONS(2788), + [anon_sym___bridge_retained] = ACTIONS(2788), + [anon_sym___bridge_transfer] = ACTIONS(2788), + [anon_sym___complex] = ACTIONS(2788), + [anon_sym___const] = ACTIONS(2788), + [anon_sym___imag] = ACTIONS(2788), + [anon_sym___kindof] = ACTIONS(2788), + [anon_sym___nonnull] = ACTIONS(2788), + [anon_sym___nullable] = ACTIONS(2788), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2788), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2788), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2788), + [anon_sym___real] = ACTIONS(2788), + [anon_sym___strong] = ACTIONS(2788), + [anon_sym___unsafe_unretained] = ACTIONS(2788), + [anon_sym___unused] = ACTIONS(2788), + [anon_sym___weak] = ACTIONS(2788), + [anon_sym_alignas] = ACTIONS(2788), + [anon_sym__Alignas] = ACTIONS(2788), + [sym_primitive_type] = ACTIONS(2788), + [anon_sym_enum] = ACTIONS(2788), + [anon_sym_struct] = ACTIONS(2788), + [anon_sym_union] = ACTIONS(2788), + [anon_sym_if] = ACTIONS(2788), + [anon_sym_switch] = ACTIONS(2788), + [anon_sym_case] = ACTIONS(2788), + [anon_sym_default] = ACTIONS(2788), + [anon_sym_while] = ACTIONS(2788), + [anon_sym_do] = ACTIONS(2788), + [anon_sym_for] = ACTIONS(2788), + [anon_sym_in] = ACTIONS(2788), + [anon_sym_return] = ACTIONS(2788), + [anon_sym_break] = ACTIONS(2788), + [anon_sym_continue] = ACTIONS(2788), + [anon_sym_goto] = ACTIONS(2788), + [anon_sym_DASH_DASH] = ACTIONS(2790), + [anon_sym_PLUS_PLUS] = ACTIONS(2790), + [anon_sym_sizeof] = ACTIONS(2788), + [anon_sym___alignof__] = ACTIONS(2788), + [anon_sym___alignof] = ACTIONS(2788), + [anon_sym__alignof] = ACTIONS(2788), + [anon_sym_alignof] = ACTIONS(2788), + [anon_sym__Alignof] = ACTIONS(2788), + [anon_sym_offsetof] = ACTIONS(2788), + [anon_sym__Generic] = ACTIONS(2788), + [anon_sym_asm] = ACTIONS(2788), + [anon_sym___asm__] = ACTIONS(2788), + [anon_sym___asm] = ACTIONS(2788), + [sym_number_literal] = ACTIONS(2790), + [anon_sym_L_SQUOTE] = ACTIONS(2790), + [anon_sym_u_SQUOTE] = ACTIONS(2790), + [anon_sym_U_SQUOTE] = ACTIONS(2790), + [anon_sym_u8_SQUOTE] = ACTIONS(2790), + [anon_sym_SQUOTE] = ACTIONS(2790), + [anon_sym_AT] = ACTIONS(2788), + [anon_sym_DQUOTE] = ACTIONS(2790), + [anon_sym_L_DQUOTE] = ACTIONS(2790), + [anon_sym_u_DQUOTE] = ACTIONS(2790), + [anon_sym_U_DQUOTE] = ACTIONS(2790), + [anon_sym_u8_DQUOTE] = ACTIONS(2790), + [sym_true] = ACTIONS(2788), + [sym_false] = ACTIONS(2788), + [anon_sym_NULL] = ACTIONS(2788), + [anon_sym_nullptr] = ACTIONS(2788), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2788), + [anon_sym___typeof] = ACTIONS(2788), + [anon_sym_typeof] = ACTIONS(2788), + [anon_sym_ATimport] = ACTIONS(2790), + [aux_sym_preproc_undef_token1] = ACTIONS(2788), + [anon_sym_POUND] = ACTIONS(2788), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2788), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2788), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2788), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2788), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2788), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2788), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2788), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2788), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2788), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2788), + [anon_sym_NS_AVAILABLE] = ACTIONS(2788), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2788), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2788), + [anon_sym_API_AVAILABLE] = ACTIONS(2788), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2788), + [anon_sym_API_DEPRECATED] = ACTIONS(2788), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2788), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2788), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2788), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2788), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2788), + [anon_sym___deprecated_msg] = ACTIONS(2788), + [anon_sym___deprecated_enum_msg] = ACTIONS(2788), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2788), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2788), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2788), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2788), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2788), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2788), + [anon_sym_ATprotocol] = ACTIONS(2790), + [anon_sym_ATinterface] = ACTIONS(2790), + [anon_sym_ATimplementation] = ACTIONS(2790), + [anon_sym_ATcompatibility_alias] = ACTIONS(2790), + [anon_sym_ATsynthesize] = ACTIONS(2790), + [anon_sym_ATdynamic] = ACTIONS(2790), + [anon_sym_ATtry] = ACTIONS(2790), + [anon_sym___try] = ACTIONS(2788), + [anon_sym_ATthrow] = ACTIONS(2790), + [anon_sym_ATselector] = ACTIONS(2790), + [anon_sym_ATavailable] = ACTIONS(2790), + [anon_sym___builtin_available] = ACTIONS(2788), + [anon_sym_va_arg] = ACTIONS(2788), + [anon_sym_ATencode] = ACTIONS(2790), + [anon_sym_ATsynchronized] = ACTIONS(2790), + [anon_sym_BOOL] = ACTIONS(2788), + [anon_sym_IMP] = ACTIONS(2788), + [anon_sym_SEL] = ACTIONS(2788), + [anon_sym_Class] = ACTIONS(2788), + [anon_sym_id] = ACTIONS(2788), + }, + [656] = { + [sym_identifier] = ACTIONS(2792), + [aux_sym_preproc_include_token1] = ACTIONS(2792), + [aux_sym_preproc_include_token2] = ACTIONS(2792), + [aux_sym_preproc_def_token1] = ACTIONS(2792), + [aux_sym_preproc_if_token1] = ACTIONS(2792), + [aux_sym_preproc_if_token2] = ACTIONS(2792), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2792), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2792), + [sym_preproc_directive] = ACTIONS(2792), + [anon_sym_LPAREN2] = ACTIONS(2794), + [anon_sym_BANG] = ACTIONS(2794), + [anon_sym_TILDE] = ACTIONS(2794), + [anon_sym_DASH] = ACTIONS(2792), + [anon_sym_PLUS] = ACTIONS(2792), + [anon_sym_STAR] = ACTIONS(2794), + [anon_sym_CARET] = ACTIONS(2794), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym___extension__] = ACTIONS(2792), + [anon_sym_typedef] = ACTIONS(2792), + [anon_sym_extern] = ACTIONS(2792), + [anon_sym___attribute__] = ACTIONS(2792), + [anon_sym___attribute] = ACTIONS(2792), + [anon_sym_noreturn] = ACTIONS(2792), + [anon_sym_LBRACK] = ACTIONS(2794), + [anon_sym___declspec] = ACTIONS(2792), + [anon_sym___cdecl] = ACTIONS(2792), + [anon_sym___clrcall] = ACTIONS(2792), + [anon_sym___stdcall] = ACTIONS(2792), + [anon_sym___fastcall] = ACTIONS(2792), + [anon_sym___thiscall] = ACTIONS(2792), + [anon_sym___vectorcall] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_signed] = ACTIONS(2792), + [anon_sym_unsigned] = ACTIONS(2792), + [anon_sym_long] = ACTIONS(2792), + [anon_sym_short] = ACTIONS(2792), + [anon_sym_static] = ACTIONS(2792), + [anon_sym_ATautoreleasepool] = ACTIONS(2794), + [anon_sym_auto] = ACTIONS(2792), + [anon_sym_register] = ACTIONS(2792), + [anon_sym_inline] = ACTIONS(2792), + [anon_sym___inline] = ACTIONS(2792), + [anon_sym___inline__] = ACTIONS(2792), + [anon_sym___forceinline] = ACTIONS(2792), + [anon_sym_thread_local] = ACTIONS(2792), + [anon_sym___thread] = ACTIONS(2792), + [anon_sym_CG_EXTERN] = ACTIONS(2792), + [anon_sym_CG_INLINE] = ACTIONS(2792), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2792), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2792), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2792), + [anon_sym_IBOutlet] = ACTIONS(2792), + [anon_sym_IBInspectable] = ACTIONS(2792), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2792), + [anon_sym_NS_INLINE] = ACTIONS(2792), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2792), + [anon_sym_OBJC_EXPORT] = ACTIONS(2792), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2792), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2792), + [anon_sym_const] = ACTIONS(2792), + [anon_sym_constexpr] = ACTIONS(2792), + [anon_sym_volatile] = ACTIONS(2792), + [anon_sym_restrict] = ACTIONS(2792), + [anon_sym___restrict__] = ACTIONS(2792), + [anon_sym__Atomic] = ACTIONS(2792), + [anon_sym__Noreturn] = ACTIONS(2792), + [anon_sym__Nonnull] = ACTIONS(2792), + [anon_sym_nullable] = ACTIONS(2792), + [anon_sym__Complex] = ACTIONS(2792), + [anon_sym__Nullable] = ACTIONS(2792), + [anon_sym__Nullable_result] = ACTIONS(2792), + [anon_sym__Null_unspecified] = ACTIONS(2792), + [anon_sym___autoreleasing] = ACTIONS(2792), + [anon_sym___block] = ACTIONS(2792), + [anon_sym___bridge] = ACTIONS(2792), + [anon_sym___bridge_retained] = ACTIONS(2792), + [anon_sym___bridge_transfer] = ACTIONS(2792), + [anon_sym___complex] = ACTIONS(2792), + [anon_sym___const] = ACTIONS(2792), + [anon_sym___imag] = ACTIONS(2792), + [anon_sym___kindof] = ACTIONS(2792), + [anon_sym___nonnull] = ACTIONS(2792), + [anon_sym___nullable] = ACTIONS(2792), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2792), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2792), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2792), + [anon_sym___real] = ACTIONS(2792), + [anon_sym___strong] = ACTIONS(2792), + [anon_sym___unsafe_unretained] = ACTIONS(2792), + [anon_sym___unused] = ACTIONS(2792), + [anon_sym___weak] = ACTIONS(2792), + [anon_sym_alignas] = ACTIONS(2792), + [anon_sym__Alignas] = ACTIONS(2792), + [sym_primitive_type] = ACTIONS(2792), + [anon_sym_enum] = ACTIONS(2792), + [anon_sym_struct] = ACTIONS(2792), + [anon_sym_union] = ACTIONS(2792), + [anon_sym_if] = ACTIONS(2792), + [anon_sym_switch] = ACTIONS(2792), + [anon_sym_case] = ACTIONS(2792), + [anon_sym_default] = ACTIONS(2792), + [anon_sym_while] = ACTIONS(2792), + [anon_sym_do] = ACTIONS(2792), + [anon_sym_for] = ACTIONS(2792), + [anon_sym_in] = ACTIONS(2792), + [anon_sym_return] = ACTIONS(2792), + [anon_sym_break] = ACTIONS(2792), + [anon_sym_continue] = ACTIONS(2792), + [anon_sym_goto] = ACTIONS(2792), + [anon_sym_DASH_DASH] = ACTIONS(2794), + [anon_sym_PLUS_PLUS] = ACTIONS(2794), + [anon_sym_sizeof] = ACTIONS(2792), + [anon_sym___alignof__] = ACTIONS(2792), + [anon_sym___alignof] = ACTIONS(2792), + [anon_sym__alignof] = ACTIONS(2792), + [anon_sym_alignof] = ACTIONS(2792), + [anon_sym__Alignof] = ACTIONS(2792), + [anon_sym_offsetof] = ACTIONS(2792), + [anon_sym__Generic] = ACTIONS(2792), + [anon_sym_asm] = ACTIONS(2792), + [anon_sym___asm__] = ACTIONS(2792), + [anon_sym___asm] = ACTIONS(2792), + [sym_number_literal] = ACTIONS(2794), + [anon_sym_L_SQUOTE] = ACTIONS(2794), + [anon_sym_u_SQUOTE] = ACTIONS(2794), + [anon_sym_U_SQUOTE] = ACTIONS(2794), + [anon_sym_u8_SQUOTE] = ACTIONS(2794), + [anon_sym_SQUOTE] = ACTIONS(2794), + [anon_sym_AT] = ACTIONS(2792), + [anon_sym_DQUOTE] = ACTIONS(2794), + [anon_sym_L_DQUOTE] = ACTIONS(2794), + [anon_sym_u_DQUOTE] = ACTIONS(2794), + [anon_sym_U_DQUOTE] = ACTIONS(2794), + [anon_sym_u8_DQUOTE] = ACTIONS(2794), + [sym_true] = ACTIONS(2792), + [sym_false] = ACTIONS(2792), + [anon_sym_NULL] = ACTIONS(2792), + [anon_sym_nullptr] = ACTIONS(2792), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2792), + [anon_sym___typeof] = ACTIONS(2792), + [anon_sym_typeof] = ACTIONS(2792), + [anon_sym_ATimport] = ACTIONS(2794), + [aux_sym_preproc_undef_token1] = ACTIONS(2792), + [anon_sym_POUND] = ACTIONS(2792), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2792), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2792), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2792), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2792), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2792), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2792), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2792), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2792), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2792), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2792), + [anon_sym_NS_AVAILABLE] = ACTIONS(2792), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2792), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2792), + [anon_sym_API_AVAILABLE] = ACTIONS(2792), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2792), + [anon_sym_API_DEPRECATED] = ACTIONS(2792), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2792), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2792), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2792), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2792), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2792), + [anon_sym___deprecated_msg] = ACTIONS(2792), + [anon_sym___deprecated_enum_msg] = ACTIONS(2792), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2792), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2792), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2792), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2792), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2792), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2792), + [anon_sym_ATprotocol] = ACTIONS(2794), + [anon_sym_ATinterface] = ACTIONS(2794), + [anon_sym_ATimplementation] = ACTIONS(2794), + [anon_sym_ATcompatibility_alias] = ACTIONS(2794), + [anon_sym_ATsynthesize] = ACTIONS(2794), + [anon_sym_ATdynamic] = ACTIONS(2794), + [anon_sym_ATtry] = ACTIONS(2794), + [anon_sym___try] = ACTIONS(2792), + [anon_sym_ATthrow] = ACTIONS(2794), + [anon_sym_ATselector] = ACTIONS(2794), + [anon_sym_ATavailable] = ACTIONS(2794), + [anon_sym___builtin_available] = ACTIONS(2792), + [anon_sym_va_arg] = ACTIONS(2792), + [anon_sym_ATencode] = ACTIONS(2794), + [anon_sym_ATsynchronized] = ACTIONS(2794), + [anon_sym_BOOL] = ACTIONS(2792), + [anon_sym_IMP] = ACTIONS(2792), + [anon_sym_SEL] = ACTIONS(2792), + [anon_sym_Class] = ACTIONS(2792), + [anon_sym_id] = ACTIONS(2792), + }, + [657] = { + [sym_identifier] = ACTIONS(2796), + [aux_sym_preproc_include_token1] = ACTIONS(2796), + [aux_sym_preproc_include_token2] = ACTIONS(2796), + [aux_sym_preproc_def_token1] = ACTIONS(2796), + [aux_sym_preproc_if_token1] = ACTIONS(2796), + [aux_sym_preproc_if_token2] = ACTIONS(2796), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2796), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2796), + [sym_preproc_directive] = ACTIONS(2796), + [anon_sym_LPAREN2] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_TILDE] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2796), + [anon_sym_PLUS] = ACTIONS(2796), + [anon_sym_STAR] = ACTIONS(2798), + [anon_sym_CARET] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2798), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym___extension__] = ACTIONS(2796), + [anon_sym_typedef] = ACTIONS(2796), + [anon_sym_extern] = ACTIONS(2796), + [anon_sym___attribute__] = ACTIONS(2796), + [anon_sym___attribute] = ACTIONS(2796), + [anon_sym_noreturn] = ACTIONS(2796), + [anon_sym_LBRACK] = ACTIONS(2798), + [anon_sym___declspec] = ACTIONS(2796), + [anon_sym___cdecl] = ACTIONS(2796), + [anon_sym___clrcall] = ACTIONS(2796), + [anon_sym___stdcall] = ACTIONS(2796), + [anon_sym___fastcall] = ACTIONS(2796), + [anon_sym___thiscall] = ACTIONS(2796), + [anon_sym___vectorcall] = ACTIONS(2796), + [anon_sym_LBRACE] = ACTIONS(2798), + [anon_sym_signed] = ACTIONS(2796), + [anon_sym_unsigned] = ACTIONS(2796), + [anon_sym_long] = ACTIONS(2796), + [anon_sym_short] = ACTIONS(2796), + [anon_sym_static] = ACTIONS(2796), + [anon_sym_ATautoreleasepool] = ACTIONS(2798), + [anon_sym_auto] = ACTIONS(2796), + [anon_sym_register] = ACTIONS(2796), + [anon_sym_inline] = ACTIONS(2796), + [anon_sym___inline] = ACTIONS(2796), + [anon_sym___inline__] = ACTIONS(2796), + [anon_sym___forceinline] = ACTIONS(2796), + [anon_sym_thread_local] = ACTIONS(2796), + [anon_sym___thread] = ACTIONS(2796), + [anon_sym_CG_EXTERN] = ACTIONS(2796), + [anon_sym_CG_INLINE] = ACTIONS(2796), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2796), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2796), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2796), + [anon_sym_IBOutlet] = ACTIONS(2796), + [anon_sym_IBInspectable] = ACTIONS(2796), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2796), + [anon_sym_NS_INLINE] = ACTIONS(2796), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2796), + [anon_sym_OBJC_EXPORT] = ACTIONS(2796), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2796), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2796), + [anon_sym_const] = ACTIONS(2796), + [anon_sym_constexpr] = ACTIONS(2796), + [anon_sym_volatile] = ACTIONS(2796), + [anon_sym_restrict] = ACTIONS(2796), + [anon_sym___restrict__] = ACTIONS(2796), + [anon_sym__Atomic] = ACTIONS(2796), + [anon_sym__Noreturn] = ACTIONS(2796), + [anon_sym__Nonnull] = ACTIONS(2796), + [anon_sym_nullable] = ACTIONS(2796), + [anon_sym__Complex] = ACTIONS(2796), + [anon_sym__Nullable] = ACTIONS(2796), + [anon_sym__Nullable_result] = ACTIONS(2796), + [anon_sym__Null_unspecified] = ACTIONS(2796), + [anon_sym___autoreleasing] = ACTIONS(2796), + [anon_sym___block] = ACTIONS(2796), + [anon_sym___bridge] = ACTIONS(2796), + [anon_sym___bridge_retained] = ACTIONS(2796), + [anon_sym___bridge_transfer] = ACTIONS(2796), + [anon_sym___complex] = ACTIONS(2796), + [anon_sym___const] = ACTIONS(2796), + [anon_sym___imag] = ACTIONS(2796), + [anon_sym___kindof] = ACTIONS(2796), + [anon_sym___nonnull] = ACTIONS(2796), + [anon_sym___nullable] = ACTIONS(2796), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2796), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2796), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2796), + [anon_sym___real] = ACTIONS(2796), + [anon_sym___strong] = ACTIONS(2796), + [anon_sym___unsafe_unretained] = ACTIONS(2796), + [anon_sym___unused] = ACTIONS(2796), + [anon_sym___weak] = ACTIONS(2796), + [anon_sym_alignas] = ACTIONS(2796), + [anon_sym__Alignas] = ACTIONS(2796), + [sym_primitive_type] = ACTIONS(2796), + [anon_sym_enum] = ACTIONS(2796), + [anon_sym_struct] = ACTIONS(2796), + [anon_sym_union] = ACTIONS(2796), + [anon_sym_if] = ACTIONS(2796), + [anon_sym_switch] = ACTIONS(2796), + [anon_sym_case] = ACTIONS(2796), + [anon_sym_default] = ACTIONS(2796), + [anon_sym_while] = ACTIONS(2796), + [anon_sym_do] = ACTIONS(2796), + [anon_sym_for] = ACTIONS(2796), + [anon_sym_in] = ACTIONS(2796), + [anon_sym_return] = ACTIONS(2796), + [anon_sym_break] = ACTIONS(2796), + [anon_sym_continue] = ACTIONS(2796), + [anon_sym_goto] = ACTIONS(2796), + [anon_sym_DASH_DASH] = ACTIONS(2798), + [anon_sym_PLUS_PLUS] = ACTIONS(2798), + [anon_sym_sizeof] = ACTIONS(2796), + [anon_sym___alignof__] = ACTIONS(2796), + [anon_sym___alignof] = ACTIONS(2796), + [anon_sym__alignof] = ACTIONS(2796), + [anon_sym_alignof] = ACTIONS(2796), + [anon_sym__Alignof] = ACTIONS(2796), + [anon_sym_offsetof] = ACTIONS(2796), + [anon_sym__Generic] = ACTIONS(2796), + [anon_sym_asm] = ACTIONS(2796), + [anon_sym___asm__] = ACTIONS(2796), + [anon_sym___asm] = ACTIONS(2796), + [sym_number_literal] = ACTIONS(2798), + [anon_sym_L_SQUOTE] = ACTIONS(2798), + [anon_sym_u_SQUOTE] = ACTIONS(2798), + [anon_sym_U_SQUOTE] = ACTIONS(2798), + [anon_sym_u8_SQUOTE] = ACTIONS(2798), + [anon_sym_SQUOTE] = ACTIONS(2798), + [anon_sym_AT] = ACTIONS(2796), + [anon_sym_DQUOTE] = ACTIONS(2798), + [anon_sym_L_DQUOTE] = ACTIONS(2798), + [anon_sym_u_DQUOTE] = ACTIONS(2798), + [anon_sym_U_DQUOTE] = ACTIONS(2798), + [anon_sym_u8_DQUOTE] = ACTIONS(2798), + [sym_true] = ACTIONS(2796), + [sym_false] = ACTIONS(2796), + [anon_sym_NULL] = ACTIONS(2796), + [anon_sym_nullptr] = ACTIONS(2796), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2796), + [anon_sym___typeof] = ACTIONS(2796), + [anon_sym_typeof] = ACTIONS(2796), + [anon_sym_ATimport] = ACTIONS(2798), + [aux_sym_preproc_undef_token1] = ACTIONS(2796), + [anon_sym_POUND] = ACTIONS(2796), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2796), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2796), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2796), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2796), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2796), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2796), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2796), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2796), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2796), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2796), + [anon_sym_NS_AVAILABLE] = ACTIONS(2796), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2796), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2796), + [anon_sym_API_AVAILABLE] = ACTIONS(2796), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2796), + [anon_sym_API_DEPRECATED] = ACTIONS(2796), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2796), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2796), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2796), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2796), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2796), + [anon_sym___deprecated_msg] = ACTIONS(2796), + [anon_sym___deprecated_enum_msg] = ACTIONS(2796), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2796), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2796), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2796), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2796), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2796), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2796), + [anon_sym_ATprotocol] = ACTIONS(2798), + [anon_sym_ATinterface] = ACTIONS(2798), + [anon_sym_ATimplementation] = ACTIONS(2798), + [anon_sym_ATcompatibility_alias] = ACTIONS(2798), + [anon_sym_ATsynthesize] = ACTIONS(2798), + [anon_sym_ATdynamic] = ACTIONS(2798), + [anon_sym_ATtry] = ACTIONS(2798), + [anon_sym___try] = ACTIONS(2796), + [anon_sym_ATthrow] = ACTIONS(2798), + [anon_sym_ATselector] = ACTIONS(2798), + [anon_sym_ATavailable] = ACTIONS(2798), + [anon_sym___builtin_available] = ACTIONS(2796), + [anon_sym_va_arg] = ACTIONS(2796), + [anon_sym_ATencode] = ACTIONS(2798), + [anon_sym_ATsynchronized] = ACTIONS(2798), + [anon_sym_BOOL] = ACTIONS(2796), + [anon_sym_IMP] = ACTIONS(2796), + [anon_sym_SEL] = ACTIONS(2796), + [anon_sym_Class] = ACTIONS(2796), + [anon_sym_id] = ACTIONS(2796), + }, + [658] = { + [sym_identifier] = ACTIONS(2804), + [aux_sym_preproc_include_token1] = ACTIONS(2804), + [aux_sym_preproc_include_token2] = ACTIONS(2804), + [aux_sym_preproc_def_token1] = ACTIONS(2804), + [aux_sym_preproc_if_token1] = ACTIONS(2804), + [aux_sym_preproc_if_token2] = ACTIONS(2804), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2804), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2804), + [sym_preproc_directive] = ACTIONS(2804), + [anon_sym_LPAREN2] = ACTIONS(2806), + [anon_sym_BANG] = ACTIONS(2806), + [anon_sym_TILDE] = ACTIONS(2806), + [anon_sym_DASH] = ACTIONS(2804), + [anon_sym_PLUS] = ACTIONS(2804), + [anon_sym_STAR] = ACTIONS(2806), + [anon_sym_CARET] = ACTIONS(2806), + [anon_sym_AMP] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym___extension__] = ACTIONS(2804), + [anon_sym_typedef] = ACTIONS(2804), + [anon_sym_extern] = ACTIONS(2804), + [anon_sym___attribute__] = ACTIONS(2804), + [anon_sym___attribute] = ACTIONS(2804), + [anon_sym_noreturn] = ACTIONS(2804), + [anon_sym_LBRACK] = ACTIONS(2806), + [anon_sym___declspec] = ACTIONS(2804), + [anon_sym___cdecl] = ACTIONS(2804), + [anon_sym___clrcall] = ACTIONS(2804), + [anon_sym___stdcall] = ACTIONS(2804), + [anon_sym___fastcall] = ACTIONS(2804), + [anon_sym___thiscall] = ACTIONS(2804), + [anon_sym___vectorcall] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_signed] = ACTIONS(2804), + [anon_sym_unsigned] = ACTIONS(2804), + [anon_sym_long] = ACTIONS(2804), + [anon_sym_short] = ACTIONS(2804), + [anon_sym_static] = ACTIONS(2804), + [anon_sym_ATautoreleasepool] = ACTIONS(2806), + [anon_sym_auto] = ACTIONS(2804), + [anon_sym_register] = ACTIONS(2804), + [anon_sym_inline] = ACTIONS(2804), + [anon_sym___inline] = ACTIONS(2804), + [anon_sym___inline__] = ACTIONS(2804), + [anon_sym___forceinline] = ACTIONS(2804), + [anon_sym_thread_local] = ACTIONS(2804), + [anon_sym___thread] = ACTIONS(2804), + [anon_sym_CG_EXTERN] = ACTIONS(2804), + [anon_sym_CG_INLINE] = ACTIONS(2804), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2804), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2804), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2804), + [anon_sym_IBOutlet] = ACTIONS(2804), + [anon_sym_IBInspectable] = ACTIONS(2804), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2804), + [anon_sym_NS_INLINE] = ACTIONS(2804), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2804), + [anon_sym_OBJC_EXPORT] = ACTIONS(2804), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2804), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2804), + [anon_sym_const] = ACTIONS(2804), + [anon_sym_constexpr] = ACTIONS(2804), + [anon_sym_volatile] = ACTIONS(2804), + [anon_sym_restrict] = ACTIONS(2804), + [anon_sym___restrict__] = ACTIONS(2804), + [anon_sym__Atomic] = ACTIONS(2804), + [anon_sym__Noreturn] = ACTIONS(2804), + [anon_sym__Nonnull] = ACTIONS(2804), + [anon_sym_nullable] = ACTIONS(2804), + [anon_sym__Complex] = ACTIONS(2804), + [anon_sym__Nullable] = ACTIONS(2804), + [anon_sym__Nullable_result] = ACTIONS(2804), + [anon_sym__Null_unspecified] = ACTIONS(2804), + [anon_sym___autoreleasing] = ACTIONS(2804), + [anon_sym___block] = ACTIONS(2804), + [anon_sym___bridge] = ACTIONS(2804), + [anon_sym___bridge_retained] = ACTIONS(2804), + [anon_sym___bridge_transfer] = ACTIONS(2804), + [anon_sym___complex] = ACTIONS(2804), + [anon_sym___const] = ACTIONS(2804), + [anon_sym___imag] = ACTIONS(2804), + [anon_sym___kindof] = ACTIONS(2804), + [anon_sym___nonnull] = ACTIONS(2804), + [anon_sym___nullable] = ACTIONS(2804), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2804), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2804), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2804), + [anon_sym___real] = ACTIONS(2804), + [anon_sym___strong] = ACTIONS(2804), + [anon_sym___unsafe_unretained] = ACTIONS(2804), + [anon_sym___unused] = ACTIONS(2804), + [anon_sym___weak] = ACTIONS(2804), + [anon_sym_alignas] = ACTIONS(2804), + [anon_sym__Alignas] = ACTIONS(2804), + [sym_primitive_type] = ACTIONS(2804), + [anon_sym_enum] = ACTIONS(2804), + [anon_sym_struct] = ACTIONS(2804), + [anon_sym_union] = ACTIONS(2804), + [anon_sym_if] = ACTIONS(2804), + [anon_sym_switch] = ACTIONS(2804), + [anon_sym_case] = ACTIONS(2804), + [anon_sym_default] = ACTIONS(2804), + [anon_sym_while] = ACTIONS(2804), + [anon_sym_do] = ACTIONS(2804), + [anon_sym_for] = ACTIONS(2804), + [anon_sym_in] = ACTIONS(2804), + [anon_sym_return] = ACTIONS(2804), + [anon_sym_break] = ACTIONS(2804), + [anon_sym_continue] = ACTIONS(2804), + [anon_sym_goto] = ACTIONS(2804), + [anon_sym_DASH_DASH] = ACTIONS(2806), + [anon_sym_PLUS_PLUS] = ACTIONS(2806), + [anon_sym_sizeof] = ACTIONS(2804), + [anon_sym___alignof__] = ACTIONS(2804), + [anon_sym___alignof] = ACTIONS(2804), + [anon_sym__alignof] = ACTIONS(2804), + [anon_sym_alignof] = ACTIONS(2804), + [anon_sym__Alignof] = ACTIONS(2804), + [anon_sym_offsetof] = ACTIONS(2804), + [anon_sym__Generic] = ACTIONS(2804), + [anon_sym_asm] = ACTIONS(2804), + [anon_sym___asm__] = ACTIONS(2804), + [anon_sym___asm] = ACTIONS(2804), + [sym_number_literal] = ACTIONS(2806), + [anon_sym_L_SQUOTE] = ACTIONS(2806), + [anon_sym_u_SQUOTE] = ACTIONS(2806), + [anon_sym_U_SQUOTE] = ACTIONS(2806), + [anon_sym_u8_SQUOTE] = ACTIONS(2806), + [anon_sym_SQUOTE] = ACTIONS(2806), + [anon_sym_AT] = ACTIONS(2804), + [anon_sym_DQUOTE] = ACTIONS(2806), + [anon_sym_L_DQUOTE] = ACTIONS(2806), + [anon_sym_u_DQUOTE] = ACTIONS(2806), + [anon_sym_U_DQUOTE] = ACTIONS(2806), + [anon_sym_u8_DQUOTE] = ACTIONS(2806), + [sym_true] = ACTIONS(2804), + [sym_false] = ACTIONS(2804), + [anon_sym_NULL] = ACTIONS(2804), + [anon_sym_nullptr] = ACTIONS(2804), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2804), + [anon_sym___typeof] = ACTIONS(2804), + [anon_sym_typeof] = ACTIONS(2804), + [anon_sym_ATimport] = ACTIONS(2806), + [aux_sym_preproc_undef_token1] = ACTIONS(2804), + [anon_sym_POUND] = ACTIONS(2804), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2804), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2804), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2804), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2804), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2804), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2804), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2804), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2804), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2804), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2804), + [anon_sym_NS_AVAILABLE] = ACTIONS(2804), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2804), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2804), + [anon_sym_API_AVAILABLE] = ACTIONS(2804), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2804), + [anon_sym_API_DEPRECATED] = ACTIONS(2804), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2804), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2804), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2804), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2804), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2804), + [anon_sym___deprecated_msg] = ACTIONS(2804), + [anon_sym___deprecated_enum_msg] = ACTIONS(2804), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2804), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2804), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2804), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2804), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2804), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2804), + [anon_sym_ATprotocol] = ACTIONS(2806), + [anon_sym_ATinterface] = ACTIONS(2806), + [anon_sym_ATimplementation] = ACTIONS(2806), + [anon_sym_ATcompatibility_alias] = ACTIONS(2806), + [anon_sym_ATsynthesize] = ACTIONS(2806), + [anon_sym_ATdynamic] = ACTIONS(2806), + [anon_sym_ATtry] = ACTIONS(2806), + [anon_sym___try] = ACTIONS(2804), + [anon_sym_ATthrow] = ACTIONS(2806), + [anon_sym_ATselector] = ACTIONS(2806), + [anon_sym_ATavailable] = ACTIONS(2806), + [anon_sym___builtin_available] = ACTIONS(2804), + [anon_sym_va_arg] = ACTIONS(2804), + [anon_sym_ATencode] = ACTIONS(2806), + [anon_sym_ATsynchronized] = ACTIONS(2806), + [anon_sym_BOOL] = ACTIONS(2804), + [anon_sym_IMP] = ACTIONS(2804), + [anon_sym_SEL] = ACTIONS(2804), + [anon_sym_Class] = ACTIONS(2804), + [anon_sym_id] = ACTIONS(2804), + }, + [659] = { + [sym_identifier] = ACTIONS(2808), + [aux_sym_preproc_include_token1] = ACTIONS(2808), + [aux_sym_preproc_include_token2] = ACTIONS(2808), + [aux_sym_preproc_def_token1] = ACTIONS(2808), + [aux_sym_preproc_if_token1] = ACTIONS(2808), + [aux_sym_preproc_if_token2] = ACTIONS(2808), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2808), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2808), + [sym_preproc_directive] = ACTIONS(2808), + [anon_sym_LPAREN2] = ACTIONS(2810), + [anon_sym_BANG] = ACTIONS(2810), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2808), + [anon_sym_STAR] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym___extension__] = ACTIONS(2808), + [anon_sym_typedef] = ACTIONS(2808), + [anon_sym_extern] = ACTIONS(2808), + [anon_sym___attribute__] = ACTIONS(2808), + [anon_sym___attribute] = ACTIONS(2808), + [anon_sym_noreturn] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2810), + [anon_sym___declspec] = ACTIONS(2808), + [anon_sym___cdecl] = ACTIONS(2808), + [anon_sym___clrcall] = ACTIONS(2808), + [anon_sym___stdcall] = ACTIONS(2808), + [anon_sym___fastcall] = ACTIONS(2808), + [anon_sym___thiscall] = ACTIONS(2808), + [anon_sym___vectorcall] = ACTIONS(2808), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_signed] = ACTIONS(2808), + [anon_sym_unsigned] = ACTIONS(2808), + [anon_sym_long] = ACTIONS(2808), + [anon_sym_short] = ACTIONS(2808), + [anon_sym_static] = ACTIONS(2808), + [anon_sym_ATautoreleasepool] = ACTIONS(2810), + [anon_sym_auto] = ACTIONS(2808), + [anon_sym_register] = ACTIONS(2808), + [anon_sym_inline] = ACTIONS(2808), + [anon_sym___inline] = ACTIONS(2808), + [anon_sym___inline__] = ACTIONS(2808), + [anon_sym___forceinline] = ACTIONS(2808), + [anon_sym_thread_local] = ACTIONS(2808), + [anon_sym___thread] = ACTIONS(2808), + [anon_sym_CG_EXTERN] = ACTIONS(2808), + [anon_sym_CG_INLINE] = ACTIONS(2808), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2808), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2808), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2808), + [anon_sym_IBOutlet] = ACTIONS(2808), + [anon_sym_IBInspectable] = ACTIONS(2808), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2808), + [anon_sym_NS_INLINE] = ACTIONS(2808), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2808), + [anon_sym_OBJC_EXPORT] = ACTIONS(2808), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2808), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2808), + [anon_sym_const] = ACTIONS(2808), + [anon_sym_constexpr] = ACTIONS(2808), + [anon_sym_volatile] = ACTIONS(2808), + [anon_sym_restrict] = ACTIONS(2808), + [anon_sym___restrict__] = ACTIONS(2808), + [anon_sym__Atomic] = ACTIONS(2808), + [anon_sym__Noreturn] = ACTIONS(2808), + [anon_sym__Nonnull] = ACTIONS(2808), + [anon_sym_nullable] = ACTIONS(2808), + [anon_sym__Complex] = ACTIONS(2808), + [anon_sym__Nullable] = ACTIONS(2808), + [anon_sym__Nullable_result] = ACTIONS(2808), + [anon_sym__Null_unspecified] = ACTIONS(2808), + [anon_sym___autoreleasing] = ACTIONS(2808), + [anon_sym___block] = ACTIONS(2808), + [anon_sym___bridge] = ACTIONS(2808), + [anon_sym___bridge_retained] = ACTIONS(2808), + [anon_sym___bridge_transfer] = ACTIONS(2808), + [anon_sym___complex] = ACTIONS(2808), + [anon_sym___const] = ACTIONS(2808), + [anon_sym___imag] = ACTIONS(2808), + [anon_sym___kindof] = ACTIONS(2808), + [anon_sym___nonnull] = ACTIONS(2808), + [anon_sym___nullable] = ACTIONS(2808), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2808), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2808), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2808), + [anon_sym___real] = ACTIONS(2808), + [anon_sym___strong] = ACTIONS(2808), + [anon_sym___unsafe_unretained] = ACTIONS(2808), + [anon_sym___unused] = ACTIONS(2808), + [anon_sym___weak] = ACTIONS(2808), + [anon_sym_alignas] = ACTIONS(2808), + [anon_sym__Alignas] = ACTIONS(2808), + [sym_primitive_type] = ACTIONS(2808), + [anon_sym_enum] = ACTIONS(2808), + [anon_sym_struct] = ACTIONS(2808), + [anon_sym_union] = ACTIONS(2808), + [anon_sym_if] = ACTIONS(2808), + [anon_sym_switch] = ACTIONS(2808), + [anon_sym_case] = ACTIONS(2808), + [anon_sym_default] = ACTIONS(2808), + [anon_sym_while] = ACTIONS(2808), + [anon_sym_do] = ACTIONS(2808), + [anon_sym_for] = ACTIONS(2808), + [anon_sym_in] = ACTIONS(2808), + [anon_sym_return] = ACTIONS(2808), + [anon_sym_break] = ACTIONS(2808), + [anon_sym_continue] = ACTIONS(2808), + [anon_sym_goto] = ACTIONS(2808), + [anon_sym_DASH_DASH] = ACTIONS(2810), + [anon_sym_PLUS_PLUS] = ACTIONS(2810), + [anon_sym_sizeof] = ACTIONS(2808), + [anon_sym___alignof__] = ACTIONS(2808), + [anon_sym___alignof] = ACTIONS(2808), + [anon_sym__alignof] = ACTIONS(2808), + [anon_sym_alignof] = ACTIONS(2808), + [anon_sym__Alignof] = ACTIONS(2808), + [anon_sym_offsetof] = ACTIONS(2808), + [anon_sym__Generic] = ACTIONS(2808), + [anon_sym_asm] = ACTIONS(2808), + [anon_sym___asm__] = ACTIONS(2808), + [anon_sym___asm] = ACTIONS(2808), + [sym_number_literal] = ACTIONS(2810), + [anon_sym_L_SQUOTE] = ACTIONS(2810), + [anon_sym_u_SQUOTE] = ACTIONS(2810), + [anon_sym_U_SQUOTE] = ACTIONS(2810), + [anon_sym_u8_SQUOTE] = ACTIONS(2810), + [anon_sym_SQUOTE] = ACTIONS(2810), + [anon_sym_AT] = ACTIONS(2808), + [anon_sym_DQUOTE] = ACTIONS(2810), + [anon_sym_L_DQUOTE] = ACTIONS(2810), + [anon_sym_u_DQUOTE] = ACTIONS(2810), + [anon_sym_U_DQUOTE] = ACTIONS(2810), + [anon_sym_u8_DQUOTE] = ACTIONS(2810), + [sym_true] = ACTIONS(2808), + [sym_false] = ACTIONS(2808), + [anon_sym_NULL] = ACTIONS(2808), + [anon_sym_nullptr] = ACTIONS(2808), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2808), + [anon_sym___typeof] = ACTIONS(2808), + [anon_sym_typeof] = ACTIONS(2808), + [anon_sym_ATimport] = ACTIONS(2810), + [aux_sym_preproc_undef_token1] = ACTIONS(2808), + [anon_sym_POUND] = ACTIONS(2808), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2808), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2808), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2808), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2808), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2808), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2808), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2808), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2808), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2808), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2808), + [anon_sym_NS_AVAILABLE] = ACTIONS(2808), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2808), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2808), + [anon_sym_API_AVAILABLE] = ACTIONS(2808), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2808), + [anon_sym_API_DEPRECATED] = ACTIONS(2808), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2808), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2808), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2808), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2808), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2808), + [anon_sym___deprecated_msg] = ACTIONS(2808), + [anon_sym___deprecated_enum_msg] = ACTIONS(2808), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2808), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2808), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2808), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2808), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2808), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2808), + [anon_sym_ATprotocol] = ACTIONS(2810), + [anon_sym_ATinterface] = ACTIONS(2810), + [anon_sym_ATimplementation] = ACTIONS(2810), + [anon_sym_ATcompatibility_alias] = ACTIONS(2810), + [anon_sym_ATsynthesize] = ACTIONS(2810), + [anon_sym_ATdynamic] = ACTIONS(2810), + [anon_sym_ATtry] = ACTIONS(2810), + [anon_sym___try] = ACTIONS(2808), + [anon_sym_ATthrow] = ACTIONS(2810), + [anon_sym_ATselector] = ACTIONS(2810), + [anon_sym_ATavailable] = ACTIONS(2810), + [anon_sym___builtin_available] = ACTIONS(2808), + [anon_sym_va_arg] = ACTIONS(2808), + [anon_sym_ATencode] = ACTIONS(2810), + [anon_sym_ATsynchronized] = ACTIONS(2810), + [anon_sym_BOOL] = ACTIONS(2808), + [anon_sym_IMP] = ACTIONS(2808), + [anon_sym_SEL] = ACTIONS(2808), + [anon_sym_Class] = ACTIONS(2808), + [anon_sym_id] = ACTIONS(2808), + }, + [660] = { + [sym_identifier] = ACTIONS(2812), + [aux_sym_preproc_include_token1] = ACTIONS(2812), + [aux_sym_preproc_include_token2] = ACTIONS(2812), + [aux_sym_preproc_def_token1] = ACTIONS(2812), + [aux_sym_preproc_if_token1] = ACTIONS(2812), + [aux_sym_preproc_if_token2] = ACTIONS(2812), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2812), + [sym_preproc_directive] = ACTIONS(2812), + [anon_sym_LPAREN2] = ACTIONS(2814), + [anon_sym_BANG] = ACTIONS(2814), + [anon_sym_TILDE] = ACTIONS(2814), + [anon_sym_DASH] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_CARET] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2814), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym___extension__] = ACTIONS(2812), + [anon_sym_typedef] = ACTIONS(2812), + [anon_sym_extern] = ACTIONS(2812), + [anon_sym___attribute__] = ACTIONS(2812), + [anon_sym___attribute] = ACTIONS(2812), + [anon_sym_noreturn] = ACTIONS(2812), + [anon_sym_LBRACK] = ACTIONS(2814), + [anon_sym___declspec] = ACTIONS(2812), + [anon_sym___cdecl] = ACTIONS(2812), + [anon_sym___clrcall] = ACTIONS(2812), + [anon_sym___stdcall] = ACTIONS(2812), + [anon_sym___fastcall] = ACTIONS(2812), + [anon_sym___thiscall] = ACTIONS(2812), + [anon_sym___vectorcall] = ACTIONS(2812), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_signed] = ACTIONS(2812), + [anon_sym_unsigned] = ACTIONS(2812), + [anon_sym_long] = ACTIONS(2812), + [anon_sym_short] = ACTIONS(2812), + [anon_sym_static] = ACTIONS(2812), + [anon_sym_ATautoreleasepool] = ACTIONS(2814), + [anon_sym_auto] = ACTIONS(2812), + [anon_sym_register] = ACTIONS(2812), + [anon_sym_inline] = ACTIONS(2812), + [anon_sym___inline] = ACTIONS(2812), + [anon_sym___inline__] = ACTIONS(2812), + [anon_sym___forceinline] = ACTIONS(2812), + [anon_sym_thread_local] = ACTIONS(2812), + [anon_sym___thread] = ACTIONS(2812), + [anon_sym_CG_EXTERN] = ACTIONS(2812), + [anon_sym_CG_INLINE] = ACTIONS(2812), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2812), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2812), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2812), + [anon_sym_IBOutlet] = ACTIONS(2812), + [anon_sym_IBInspectable] = ACTIONS(2812), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2812), + [anon_sym_NS_INLINE] = ACTIONS(2812), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2812), + [anon_sym_OBJC_EXPORT] = ACTIONS(2812), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2812), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2812), + [anon_sym_const] = ACTIONS(2812), + [anon_sym_constexpr] = ACTIONS(2812), + [anon_sym_volatile] = ACTIONS(2812), + [anon_sym_restrict] = ACTIONS(2812), + [anon_sym___restrict__] = ACTIONS(2812), + [anon_sym__Atomic] = ACTIONS(2812), + [anon_sym__Noreturn] = ACTIONS(2812), + [anon_sym__Nonnull] = ACTIONS(2812), + [anon_sym_nullable] = ACTIONS(2812), + [anon_sym__Complex] = ACTIONS(2812), + [anon_sym__Nullable] = ACTIONS(2812), + [anon_sym__Nullable_result] = ACTIONS(2812), + [anon_sym__Null_unspecified] = ACTIONS(2812), + [anon_sym___autoreleasing] = ACTIONS(2812), + [anon_sym___block] = ACTIONS(2812), + [anon_sym___bridge] = ACTIONS(2812), + [anon_sym___bridge_retained] = ACTIONS(2812), + [anon_sym___bridge_transfer] = ACTIONS(2812), + [anon_sym___complex] = ACTIONS(2812), + [anon_sym___const] = ACTIONS(2812), + [anon_sym___imag] = ACTIONS(2812), + [anon_sym___kindof] = ACTIONS(2812), + [anon_sym___nonnull] = ACTIONS(2812), + [anon_sym___nullable] = ACTIONS(2812), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2812), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2812), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2812), + [anon_sym___real] = ACTIONS(2812), + [anon_sym___strong] = ACTIONS(2812), + [anon_sym___unsafe_unretained] = ACTIONS(2812), + [anon_sym___unused] = ACTIONS(2812), + [anon_sym___weak] = ACTIONS(2812), + [anon_sym_alignas] = ACTIONS(2812), + [anon_sym__Alignas] = ACTIONS(2812), + [sym_primitive_type] = ACTIONS(2812), + [anon_sym_enum] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2812), + [anon_sym_union] = ACTIONS(2812), + [anon_sym_if] = ACTIONS(2812), + [anon_sym_switch] = ACTIONS(2812), + [anon_sym_case] = ACTIONS(2812), + [anon_sym_default] = ACTIONS(2812), + [anon_sym_while] = ACTIONS(2812), + [anon_sym_do] = ACTIONS(2812), + [anon_sym_for] = ACTIONS(2812), + [anon_sym_in] = ACTIONS(2812), + [anon_sym_return] = ACTIONS(2812), + [anon_sym_break] = ACTIONS(2812), + [anon_sym_continue] = ACTIONS(2812), + [anon_sym_goto] = ACTIONS(2812), + [anon_sym_DASH_DASH] = ACTIONS(2814), + [anon_sym_PLUS_PLUS] = ACTIONS(2814), + [anon_sym_sizeof] = ACTIONS(2812), + [anon_sym___alignof__] = ACTIONS(2812), + [anon_sym___alignof] = ACTIONS(2812), + [anon_sym__alignof] = ACTIONS(2812), + [anon_sym_alignof] = ACTIONS(2812), + [anon_sym__Alignof] = ACTIONS(2812), + [anon_sym_offsetof] = ACTIONS(2812), + [anon_sym__Generic] = ACTIONS(2812), + [anon_sym_asm] = ACTIONS(2812), + [anon_sym___asm__] = ACTIONS(2812), + [anon_sym___asm] = ACTIONS(2812), + [sym_number_literal] = ACTIONS(2814), + [anon_sym_L_SQUOTE] = ACTIONS(2814), + [anon_sym_u_SQUOTE] = ACTIONS(2814), + [anon_sym_U_SQUOTE] = ACTIONS(2814), + [anon_sym_u8_SQUOTE] = ACTIONS(2814), + [anon_sym_SQUOTE] = ACTIONS(2814), + [anon_sym_AT] = ACTIONS(2812), + [anon_sym_DQUOTE] = ACTIONS(2814), + [anon_sym_L_DQUOTE] = ACTIONS(2814), + [anon_sym_u_DQUOTE] = ACTIONS(2814), + [anon_sym_U_DQUOTE] = ACTIONS(2814), + [anon_sym_u8_DQUOTE] = ACTIONS(2814), + [sym_true] = ACTIONS(2812), + [sym_false] = ACTIONS(2812), + [anon_sym_NULL] = ACTIONS(2812), + [anon_sym_nullptr] = ACTIONS(2812), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2812), + [anon_sym___typeof] = ACTIONS(2812), + [anon_sym_typeof] = ACTIONS(2812), + [anon_sym_ATimport] = ACTIONS(2814), + [aux_sym_preproc_undef_token1] = ACTIONS(2812), + [anon_sym_POUND] = ACTIONS(2812), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2812), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2812), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2812), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2812), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2812), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2812), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2812), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2812), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2812), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2812), + [anon_sym_NS_AVAILABLE] = ACTIONS(2812), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2812), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2812), + [anon_sym_API_AVAILABLE] = ACTIONS(2812), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2812), + [anon_sym_API_DEPRECATED] = ACTIONS(2812), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2812), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2812), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2812), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2812), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2812), + [anon_sym___deprecated_msg] = ACTIONS(2812), + [anon_sym___deprecated_enum_msg] = ACTIONS(2812), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2812), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2812), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2812), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2812), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2812), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2812), + [anon_sym_ATprotocol] = ACTIONS(2814), + [anon_sym_ATinterface] = ACTIONS(2814), + [anon_sym_ATimplementation] = ACTIONS(2814), + [anon_sym_ATcompatibility_alias] = ACTIONS(2814), + [anon_sym_ATsynthesize] = ACTIONS(2814), + [anon_sym_ATdynamic] = ACTIONS(2814), + [anon_sym_ATtry] = ACTIONS(2814), + [anon_sym___try] = ACTIONS(2812), + [anon_sym_ATthrow] = ACTIONS(2814), + [anon_sym_ATselector] = ACTIONS(2814), + [anon_sym_ATavailable] = ACTIONS(2814), + [anon_sym___builtin_available] = ACTIONS(2812), + [anon_sym_va_arg] = ACTIONS(2812), + [anon_sym_ATencode] = ACTIONS(2814), + [anon_sym_ATsynchronized] = ACTIONS(2814), + [anon_sym_BOOL] = ACTIONS(2812), + [anon_sym_IMP] = ACTIONS(2812), + [anon_sym_SEL] = ACTIONS(2812), + [anon_sym_Class] = ACTIONS(2812), + [anon_sym_id] = ACTIONS(2812), + }, + [661] = { + [sym_identifier] = ACTIONS(2816), + [aux_sym_preproc_include_token1] = ACTIONS(2816), + [aux_sym_preproc_include_token2] = ACTIONS(2816), + [aux_sym_preproc_def_token1] = ACTIONS(2816), + [aux_sym_preproc_if_token1] = ACTIONS(2816), + [aux_sym_preproc_if_token2] = ACTIONS(2816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2816), + [sym_preproc_directive] = ACTIONS(2816), + [anon_sym_LPAREN2] = ACTIONS(2818), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_TILDE] = ACTIONS(2818), + [anon_sym_DASH] = ACTIONS(2816), + [anon_sym_PLUS] = ACTIONS(2816), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_CARET] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym___extension__] = ACTIONS(2816), + [anon_sym_typedef] = ACTIONS(2816), + [anon_sym_extern] = ACTIONS(2816), + [anon_sym___attribute__] = ACTIONS(2816), + [anon_sym___attribute] = ACTIONS(2816), + [anon_sym_noreturn] = ACTIONS(2816), + [anon_sym_LBRACK] = ACTIONS(2818), + [anon_sym___declspec] = ACTIONS(2816), + [anon_sym___cdecl] = ACTIONS(2816), + [anon_sym___clrcall] = ACTIONS(2816), + [anon_sym___stdcall] = ACTIONS(2816), + [anon_sym___fastcall] = ACTIONS(2816), + [anon_sym___thiscall] = ACTIONS(2816), + [anon_sym___vectorcall] = ACTIONS(2816), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_signed] = ACTIONS(2816), + [anon_sym_unsigned] = ACTIONS(2816), + [anon_sym_long] = ACTIONS(2816), + [anon_sym_short] = ACTIONS(2816), + [anon_sym_static] = ACTIONS(2816), + [anon_sym_ATautoreleasepool] = ACTIONS(2818), + [anon_sym_auto] = ACTIONS(2816), + [anon_sym_register] = ACTIONS(2816), + [anon_sym_inline] = ACTIONS(2816), + [anon_sym___inline] = ACTIONS(2816), + [anon_sym___inline__] = ACTIONS(2816), + [anon_sym___forceinline] = ACTIONS(2816), + [anon_sym_thread_local] = ACTIONS(2816), + [anon_sym___thread] = ACTIONS(2816), + [anon_sym_CG_EXTERN] = ACTIONS(2816), + [anon_sym_CG_INLINE] = ACTIONS(2816), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2816), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2816), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2816), + [anon_sym_IBOutlet] = ACTIONS(2816), + [anon_sym_IBInspectable] = ACTIONS(2816), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2816), + [anon_sym_NS_INLINE] = ACTIONS(2816), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2816), + [anon_sym_OBJC_EXPORT] = ACTIONS(2816), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2816), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2816), + [anon_sym_const] = ACTIONS(2816), + [anon_sym_constexpr] = ACTIONS(2816), + [anon_sym_volatile] = ACTIONS(2816), + [anon_sym_restrict] = ACTIONS(2816), + [anon_sym___restrict__] = ACTIONS(2816), + [anon_sym__Atomic] = ACTIONS(2816), + [anon_sym__Noreturn] = ACTIONS(2816), + [anon_sym__Nonnull] = ACTIONS(2816), + [anon_sym_nullable] = ACTIONS(2816), + [anon_sym__Complex] = ACTIONS(2816), + [anon_sym__Nullable] = ACTIONS(2816), + [anon_sym__Nullable_result] = ACTIONS(2816), + [anon_sym__Null_unspecified] = ACTIONS(2816), + [anon_sym___autoreleasing] = ACTIONS(2816), + [anon_sym___block] = ACTIONS(2816), + [anon_sym___bridge] = ACTIONS(2816), + [anon_sym___bridge_retained] = ACTIONS(2816), + [anon_sym___bridge_transfer] = ACTIONS(2816), + [anon_sym___complex] = ACTIONS(2816), + [anon_sym___const] = ACTIONS(2816), + [anon_sym___imag] = ACTIONS(2816), + [anon_sym___kindof] = ACTIONS(2816), + [anon_sym___nonnull] = ACTIONS(2816), + [anon_sym___nullable] = ACTIONS(2816), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2816), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2816), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2816), + [anon_sym___real] = ACTIONS(2816), + [anon_sym___strong] = ACTIONS(2816), + [anon_sym___unsafe_unretained] = ACTIONS(2816), + [anon_sym___unused] = ACTIONS(2816), + [anon_sym___weak] = ACTIONS(2816), + [anon_sym_alignas] = ACTIONS(2816), + [anon_sym__Alignas] = ACTIONS(2816), + [sym_primitive_type] = ACTIONS(2816), + [anon_sym_enum] = ACTIONS(2816), + [anon_sym_struct] = ACTIONS(2816), + [anon_sym_union] = ACTIONS(2816), + [anon_sym_if] = ACTIONS(2816), + [anon_sym_switch] = ACTIONS(2816), + [anon_sym_case] = ACTIONS(2816), + [anon_sym_default] = ACTIONS(2816), + [anon_sym_while] = ACTIONS(2816), + [anon_sym_do] = ACTIONS(2816), + [anon_sym_for] = ACTIONS(2816), + [anon_sym_in] = ACTIONS(2816), + [anon_sym_return] = ACTIONS(2816), + [anon_sym_break] = ACTIONS(2816), + [anon_sym_continue] = ACTIONS(2816), + [anon_sym_goto] = ACTIONS(2816), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_sizeof] = ACTIONS(2816), + [anon_sym___alignof__] = ACTIONS(2816), + [anon_sym___alignof] = ACTIONS(2816), + [anon_sym__alignof] = ACTIONS(2816), + [anon_sym_alignof] = ACTIONS(2816), + [anon_sym__Alignof] = ACTIONS(2816), + [anon_sym_offsetof] = ACTIONS(2816), + [anon_sym__Generic] = ACTIONS(2816), + [anon_sym_asm] = ACTIONS(2816), + [anon_sym___asm__] = ACTIONS(2816), + [anon_sym___asm] = ACTIONS(2816), + [sym_number_literal] = ACTIONS(2818), + [anon_sym_L_SQUOTE] = ACTIONS(2818), + [anon_sym_u_SQUOTE] = ACTIONS(2818), + [anon_sym_U_SQUOTE] = ACTIONS(2818), + [anon_sym_u8_SQUOTE] = ACTIONS(2818), + [anon_sym_SQUOTE] = ACTIONS(2818), + [anon_sym_AT] = ACTIONS(2816), + [anon_sym_DQUOTE] = ACTIONS(2818), + [anon_sym_L_DQUOTE] = ACTIONS(2818), + [anon_sym_u_DQUOTE] = ACTIONS(2818), + [anon_sym_U_DQUOTE] = ACTIONS(2818), + [anon_sym_u8_DQUOTE] = ACTIONS(2818), + [sym_true] = ACTIONS(2816), + [sym_false] = ACTIONS(2816), + [anon_sym_NULL] = ACTIONS(2816), + [anon_sym_nullptr] = ACTIONS(2816), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2816), + [anon_sym___typeof] = ACTIONS(2816), + [anon_sym_typeof] = ACTIONS(2816), + [anon_sym_ATimport] = ACTIONS(2818), + [aux_sym_preproc_undef_token1] = ACTIONS(2816), + [anon_sym_POUND] = ACTIONS(2816), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2816), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2816), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2816), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2816), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2816), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2816), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2816), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2816), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2816), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2816), + [anon_sym_NS_AVAILABLE] = ACTIONS(2816), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2816), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2816), + [anon_sym_API_AVAILABLE] = ACTIONS(2816), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2816), + [anon_sym_API_DEPRECATED] = ACTIONS(2816), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2816), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2816), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2816), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2816), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2816), + [anon_sym___deprecated_msg] = ACTIONS(2816), + [anon_sym___deprecated_enum_msg] = ACTIONS(2816), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2816), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2816), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2816), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2816), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2816), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2816), + [anon_sym_ATprotocol] = ACTIONS(2818), + [anon_sym_ATinterface] = ACTIONS(2818), + [anon_sym_ATimplementation] = ACTIONS(2818), + [anon_sym_ATcompatibility_alias] = ACTIONS(2818), + [anon_sym_ATsynthesize] = ACTIONS(2818), + [anon_sym_ATdynamic] = ACTIONS(2818), + [anon_sym_ATtry] = ACTIONS(2818), + [anon_sym___try] = ACTIONS(2816), + [anon_sym_ATthrow] = ACTIONS(2818), + [anon_sym_ATselector] = ACTIONS(2818), + [anon_sym_ATavailable] = ACTIONS(2818), + [anon_sym___builtin_available] = ACTIONS(2816), + [anon_sym_va_arg] = ACTIONS(2816), + [anon_sym_ATencode] = ACTIONS(2818), + [anon_sym_ATsynchronized] = ACTIONS(2818), + [anon_sym_BOOL] = ACTIONS(2816), + [anon_sym_IMP] = ACTIONS(2816), + [anon_sym_SEL] = ACTIONS(2816), + [anon_sym_Class] = ACTIONS(2816), + [anon_sym_id] = ACTIONS(2816), + }, + [662] = { + [sym_identifier] = ACTIONS(2820), + [aux_sym_preproc_include_token1] = ACTIONS(2820), + [aux_sym_preproc_include_token2] = ACTIONS(2820), + [aux_sym_preproc_def_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token2] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), + [sym_preproc_directive] = ACTIONS(2820), + [anon_sym_LPAREN2] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_CARET] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym___extension__] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym___attribute__] = ACTIONS(2820), + [anon_sym___attribute] = ACTIONS(2820), + [anon_sym_noreturn] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym___declspec] = ACTIONS(2820), + [anon_sym___cdecl] = ACTIONS(2820), + [anon_sym___clrcall] = ACTIONS(2820), + [anon_sym___stdcall] = ACTIONS(2820), + [anon_sym___fastcall] = ACTIONS(2820), + [anon_sym___thiscall] = ACTIONS(2820), + [anon_sym___vectorcall] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2820), + [anon_sym_unsigned] = ACTIONS(2820), + [anon_sym_long] = ACTIONS(2820), + [anon_sym_short] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_ATautoreleasepool] = ACTIONS(2822), + [anon_sym_auto] = ACTIONS(2820), + [anon_sym_register] = ACTIONS(2820), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym___inline] = ACTIONS(2820), + [anon_sym___inline__] = ACTIONS(2820), + [anon_sym___forceinline] = ACTIONS(2820), + [anon_sym_thread_local] = ACTIONS(2820), + [anon_sym___thread] = ACTIONS(2820), + [anon_sym_CG_EXTERN] = ACTIONS(2820), + [anon_sym_CG_INLINE] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2820), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2820), + [anon_sym_IBOutlet] = ACTIONS(2820), + [anon_sym_IBInspectable] = ACTIONS(2820), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2820), + [anon_sym_NS_INLINE] = ACTIONS(2820), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2820), + [anon_sym_OBJC_EXPORT] = ACTIONS(2820), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_constexpr] = ACTIONS(2820), + [anon_sym_volatile] = ACTIONS(2820), + [anon_sym_restrict] = ACTIONS(2820), + [anon_sym___restrict__] = ACTIONS(2820), + [anon_sym__Atomic] = ACTIONS(2820), + [anon_sym__Noreturn] = ACTIONS(2820), + [anon_sym__Nonnull] = ACTIONS(2820), + [anon_sym_nullable] = ACTIONS(2820), + [anon_sym__Complex] = ACTIONS(2820), + [anon_sym__Nullable] = ACTIONS(2820), + [anon_sym__Nullable_result] = ACTIONS(2820), + [anon_sym__Null_unspecified] = ACTIONS(2820), + [anon_sym___autoreleasing] = ACTIONS(2820), + [anon_sym___block] = ACTIONS(2820), + [anon_sym___bridge] = ACTIONS(2820), + [anon_sym___bridge_retained] = ACTIONS(2820), + [anon_sym___bridge_transfer] = ACTIONS(2820), + [anon_sym___complex] = ACTIONS(2820), + [anon_sym___const] = ACTIONS(2820), + [anon_sym___imag] = ACTIONS(2820), + [anon_sym___kindof] = ACTIONS(2820), + [anon_sym___nonnull] = ACTIONS(2820), + [anon_sym___nullable] = ACTIONS(2820), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2820), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2820), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2820), + [anon_sym___real] = ACTIONS(2820), + [anon_sym___strong] = ACTIONS(2820), + [anon_sym___unsafe_unretained] = ACTIONS(2820), + [anon_sym___unused] = ACTIONS(2820), + [anon_sym___weak] = ACTIONS(2820), + [anon_sym_alignas] = ACTIONS(2820), + [anon_sym__Alignas] = ACTIONS(2820), + [sym_primitive_type] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2820), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_case] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_in] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_goto] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_sizeof] = ACTIONS(2820), + [anon_sym___alignof__] = ACTIONS(2820), + [anon_sym___alignof] = ACTIONS(2820), + [anon_sym__alignof] = ACTIONS(2820), + [anon_sym_alignof] = ACTIONS(2820), + [anon_sym__Alignof] = ACTIONS(2820), + [anon_sym_offsetof] = ACTIONS(2820), + [anon_sym__Generic] = ACTIONS(2820), + [anon_sym_asm] = ACTIONS(2820), + [anon_sym___asm__] = ACTIONS(2820), + [anon_sym___asm] = ACTIONS(2820), + [sym_number_literal] = ACTIONS(2822), + [anon_sym_L_SQUOTE] = ACTIONS(2822), + [anon_sym_u_SQUOTE] = ACTIONS(2822), + [anon_sym_U_SQUOTE] = ACTIONS(2822), + [anon_sym_u8_SQUOTE] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2822), + [anon_sym_AT] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2822), + [anon_sym_L_DQUOTE] = ACTIONS(2822), + [anon_sym_u_DQUOTE] = ACTIONS(2822), + [anon_sym_U_DQUOTE] = ACTIONS(2822), + [anon_sym_u8_DQUOTE] = ACTIONS(2822), + [sym_true] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [anon_sym_NULL] = ACTIONS(2820), + [anon_sym_nullptr] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2820), + [anon_sym___typeof] = ACTIONS(2820), + [anon_sym_typeof] = ACTIONS(2820), + [anon_sym_ATimport] = ACTIONS(2822), + [aux_sym_preproc_undef_token1] = ACTIONS(2820), + [anon_sym_POUND] = ACTIONS(2820), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2820), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2820), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2820), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2820), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE] = ACTIONS(2820), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_API_AVAILABLE] = ACTIONS(2820), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_API_DEPRECATED] = ACTIONS(2820), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2820), + [anon_sym___deprecated_msg] = ACTIONS(2820), + [anon_sym___deprecated_enum_msg] = ACTIONS(2820), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2820), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2820), + [anon_sym_ATprotocol] = ACTIONS(2822), + [anon_sym_ATinterface] = ACTIONS(2822), + [anon_sym_ATimplementation] = ACTIONS(2822), + [anon_sym_ATcompatibility_alias] = ACTIONS(2822), + [anon_sym_ATsynthesize] = ACTIONS(2822), + [anon_sym_ATdynamic] = ACTIONS(2822), + [anon_sym_ATtry] = ACTIONS(2822), + [anon_sym___try] = ACTIONS(2820), + [anon_sym_ATthrow] = ACTIONS(2822), + [anon_sym_ATselector] = ACTIONS(2822), + [anon_sym_ATavailable] = ACTIONS(2822), + [anon_sym___builtin_available] = ACTIONS(2820), + [anon_sym_va_arg] = ACTIONS(2820), + [anon_sym_ATencode] = ACTIONS(2822), + [anon_sym_ATsynchronized] = ACTIONS(2822), + [anon_sym_BOOL] = ACTIONS(2820), + [anon_sym_IMP] = ACTIONS(2820), + [anon_sym_SEL] = ACTIONS(2820), + [anon_sym_Class] = ACTIONS(2820), + [anon_sym_id] = ACTIONS(2820), + }, + [663] = { + [sym_identifier] = ACTIONS(2820), + [aux_sym_preproc_include_token1] = ACTIONS(2820), + [aux_sym_preproc_include_token2] = ACTIONS(2820), + [aux_sym_preproc_def_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token2] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), + [sym_preproc_directive] = ACTIONS(2820), + [anon_sym_LPAREN2] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_CARET] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym___extension__] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym___attribute__] = ACTIONS(2820), + [anon_sym___attribute] = ACTIONS(2820), + [anon_sym_noreturn] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym___declspec] = ACTIONS(2820), + [anon_sym___cdecl] = ACTIONS(2820), + [anon_sym___clrcall] = ACTIONS(2820), + [anon_sym___stdcall] = ACTIONS(2820), + [anon_sym___fastcall] = ACTIONS(2820), + [anon_sym___thiscall] = ACTIONS(2820), + [anon_sym___vectorcall] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2820), + [anon_sym_unsigned] = ACTIONS(2820), + [anon_sym_long] = ACTIONS(2820), + [anon_sym_short] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_ATautoreleasepool] = ACTIONS(2822), + [anon_sym_auto] = ACTIONS(2820), + [anon_sym_register] = ACTIONS(2820), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym___inline] = ACTIONS(2820), + [anon_sym___inline__] = ACTIONS(2820), + [anon_sym___forceinline] = ACTIONS(2820), + [anon_sym_thread_local] = ACTIONS(2820), + [anon_sym___thread] = ACTIONS(2820), + [anon_sym_CG_EXTERN] = ACTIONS(2820), + [anon_sym_CG_INLINE] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2820), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2820), + [anon_sym_IBOutlet] = ACTIONS(2820), + [anon_sym_IBInspectable] = ACTIONS(2820), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2820), + [anon_sym_NS_INLINE] = ACTIONS(2820), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2820), + [anon_sym_OBJC_EXPORT] = ACTIONS(2820), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_constexpr] = ACTIONS(2820), + [anon_sym_volatile] = ACTIONS(2820), + [anon_sym_restrict] = ACTIONS(2820), + [anon_sym___restrict__] = ACTIONS(2820), + [anon_sym__Atomic] = ACTIONS(2820), + [anon_sym__Noreturn] = ACTIONS(2820), + [anon_sym__Nonnull] = ACTIONS(2820), + [anon_sym_nullable] = ACTIONS(2820), + [anon_sym__Complex] = ACTIONS(2820), + [anon_sym__Nullable] = ACTIONS(2820), + [anon_sym__Nullable_result] = ACTIONS(2820), + [anon_sym__Null_unspecified] = ACTIONS(2820), + [anon_sym___autoreleasing] = ACTIONS(2820), + [anon_sym___block] = ACTIONS(2820), + [anon_sym___bridge] = ACTIONS(2820), + [anon_sym___bridge_retained] = ACTIONS(2820), + [anon_sym___bridge_transfer] = ACTIONS(2820), + [anon_sym___complex] = ACTIONS(2820), + [anon_sym___const] = ACTIONS(2820), + [anon_sym___imag] = ACTIONS(2820), + [anon_sym___kindof] = ACTIONS(2820), + [anon_sym___nonnull] = ACTIONS(2820), + [anon_sym___nullable] = ACTIONS(2820), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2820), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2820), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2820), + [anon_sym___real] = ACTIONS(2820), + [anon_sym___strong] = ACTIONS(2820), + [anon_sym___unsafe_unretained] = ACTIONS(2820), + [anon_sym___unused] = ACTIONS(2820), + [anon_sym___weak] = ACTIONS(2820), + [anon_sym_alignas] = ACTIONS(2820), + [anon_sym__Alignas] = ACTIONS(2820), + [sym_primitive_type] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2820), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_case] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_in] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_goto] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_sizeof] = ACTIONS(2820), + [anon_sym___alignof__] = ACTIONS(2820), + [anon_sym___alignof] = ACTIONS(2820), + [anon_sym__alignof] = ACTIONS(2820), + [anon_sym_alignof] = ACTIONS(2820), + [anon_sym__Alignof] = ACTIONS(2820), + [anon_sym_offsetof] = ACTIONS(2820), + [anon_sym__Generic] = ACTIONS(2820), + [anon_sym_asm] = ACTIONS(2820), + [anon_sym___asm__] = ACTIONS(2820), + [anon_sym___asm] = ACTIONS(2820), + [sym_number_literal] = ACTIONS(2822), + [anon_sym_L_SQUOTE] = ACTIONS(2822), + [anon_sym_u_SQUOTE] = ACTIONS(2822), + [anon_sym_U_SQUOTE] = ACTIONS(2822), + [anon_sym_u8_SQUOTE] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2822), + [anon_sym_AT] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2822), + [anon_sym_L_DQUOTE] = ACTIONS(2822), + [anon_sym_u_DQUOTE] = ACTIONS(2822), + [anon_sym_U_DQUOTE] = ACTIONS(2822), + [anon_sym_u8_DQUOTE] = ACTIONS(2822), + [sym_true] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [anon_sym_NULL] = ACTIONS(2820), + [anon_sym_nullptr] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2820), + [anon_sym___typeof] = ACTIONS(2820), + [anon_sym_typeof] = ACTIONS(2820), + [anon_sym_ATimport] = ACTIONS(2822), + [aux_sym_preproc_undef_token1] = ACTIONS(2820), + [anon_sym_POUND] = ACTIONS(2820), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2820), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2820), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2820), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2820), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE] = ACTIONS(2820), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_API_AVAILABLE] = ACTIONS(2820), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_API_DEPRECATED] = ACTIONS(2820), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2820), + [anon_sym___deprecated_msg] = ACTIONS(2820), + [anon_sym___deprecated_enum_msg] = ACTIONS(2820), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2820), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2820), + [anon_sym_ATprotocol] = ACTIONS(2822), + [anon_sym_ATinterface] = ACTIONS(2822), + [anon_sym_ATimplementation] = ACTIONS(2822), + [anon_sym_ATcompatibility_alias] = ACTIONS(2822), + [anon_sym_ATsynthesize] = ACTIONS(2822), + [anon_sym_ATdynamic] = ACTIONS(2822), + [anon_sym_ATtry] = ACTIONS(2822), + [anon_sym___try] = ACTIONS(2820), + [anon_sym_ATthrow] = ACTIONS(2822), + [anon_sym_ATselector] = ACTIONS(2822), + [anon_sym_ATavailable] = ACTIONS(2822), + [anon_sym___builtin_available] = ACTIONS(2820), + [anon_sym_va_arg] = ACTIONS(2820), + [anon_sym_ATencode] = ACTIONS(2822), + [anon_sym_ATsynchronized] = ACTIONS(2822), + [anon_sym_BOOL] = ACTIONS(2820), + [anon_sym_IMP] = ACTIONS(2820), + [anon_sym_SEL] = ACTIONS(2820), + [anon_sym_Class] = ACTIONS(2820), + [anon_sym_id] = ACTIONS(2820), + }, + [664] = { + [sym_identifier] = ACTIONS(2820), + [aux_sym_preproc_include_token1] = ACTIONS(2820), + [aux_sym_preproc_include_token2] = ACTIONS(2820), + [aux_sym_preproc_def_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token2] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), + [sym_preproc_directive] = ACTIONS(2820), + [anon_sym_LPAREN2] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_CARET] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym___extension__] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym___attribute__] = ACTIONS(2820), + [anon_sym___attribute] = ACTIONS(2820), + [anon_sym_noreturn] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym___declspec] = ACTIONS(2820), + [anon_sym___cdecl] = ACTIONS(2820), + [anon_sym___clrcall] = ACTIONS(2820), + [anon_sym___stdcall] = ACTIONS(2820), + [anon_sym___fastcall] = ACTIONS(2820), + [anon_sym___thiscall] = ACTIONS(2820), + [anon_sym___vectorcall] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2820), + [anon_sym_unsigned] = ACTIONS(2820), + [anon_sym_long] = ACTIONS(2820), + [anon_sym_short] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_ATautoreleasepool] = ACTIONS(2822), + [anon_sym_auto] = ACTIONS(2820), + [anon_sym_register] = ACTIONS(2820), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym___inline] = ACTIONS(2820), + [anon_sym___inline__] = ACTIONS(2820), + [anon_sym___forceinline] = ACTIONS(2820), + [anon_sym_thread_local] = ACTIONS(2820), + [anon_sym___thread] = ACTIONS(2820), + [anon_sym_CG_EXTERN] = ACTIONS(2820), + [anon_sym_CG_INLINE] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2820), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2820), + [anon_sym_IBOutlet] = ACTIONS(2820), + [anon_sym_IBInspectable] = ACTIONS(2820), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2820), + [anon_sym_NS_INLINE] = ACTIONS(2820), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2820), + [anon_sym_OBJC_EXPORT] = ACTIONS(2820), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_constexpr] = ACTIONS(2820), + [anon_sym_volatile] = ACTIONS(2820), + [anon_sym_restrict] = ACTIONS(2820), + [anon_sym___restrict__] = ACTIONS(2820), + [anon_sym__Atomic] = ACTIONS(2820), + [anon_sym__Noreturn] = ACTIONS(2820), + [anon_sym__Nonnull] = ACTIONS(2820), + [anon_sym_nullable] = ACTIONS(2820), + [anon_sym__Complex] = ACTIONS(2820), + [anon_sym__Nullable] = ACTIONS(2820), + [anon_sym__Nullable_result] = ACTIONS(2820), + [anon_sym__Null_unspecified] = ACTIONS(2820), + [anon_sym___autoreleasing] = ACTIONS(2820), + [anon_sym___block] = ACTIONS(2820), + [anon_sym___bridge] = ACTIONS(2820), + [anon_sym___bridge_retained] = ACTIONS(2820), + [anon_sym___bridge_transfer] = ACTIONS(2820), + [anon_sym___complex] = ACTIONS(2820), + [anon_sym___const] = ACTIONS(2820), + [anon_sym___imag] = ACTIONS(2820), + [anon_sym___kindof] = ACTIONS(2820), + [anon_sym___nonnull] = ACTIONS(2820), + [anon_sym___nullable] = ACTIONS(2820), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2820), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2820), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2820), + [anon_sym___real] = ACTIONS(2820), + [anon_sym___strong] = ACTIONS(2820), + [anon_sym___unsafe_unretained] = ACTIONS(2820), + [anon_sym___unused] = ACTIONS(2820), + [anon_sym___weak] = ACTIONS(2820), + [anon_sym_alignas] = ACTIONS(2820), + [anon_sym__Alignas] = ACTIONS(2820), + [sym_primitive_type] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2820), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_case] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_in] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_goto] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_sizeof] = ACTIONS(2820), + [anon_sym___alignof__] = ACTIONS(2820), + [anon_sym___alignof] = ACTIONS(2820), + [anon_sym__alignof] = ACTIONS(2820), + [anon_sym_alignof] = ACTIONS(2820), + [anon_sym__Alignof] = ACTIONS(2820), + [anon_sym_offsetof] = ACTIONS(2820), + [anon_sym__Generic] = ACTIONS(2820), + [anon_sym_asm] = ACTIONS(2820), + [anon_sym___asm__] = ACTIONS(2820), + [anon_sym___asm] = ACTIONS(2820), + [sym_number_literal] = ACTIONS(2822), + [anon_sym_L_SQUOTE] = ACTIONS(2822), + [anon_sym_u_SQUOTE] = ACTIONS(2822), + [anon_sym_U_SQUOTE] = ACTIONS(2822), + [anon_sym_u8_SQUOTE] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2822), + [anon_sym_AT] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2822), + [anon_sym_L_DQUOTE] = ACTIONS(2822), + [anon_sym_u_DQUOTE] = ACTIONS(2822), + [anon_sym_U_DQUOTE] = ACTIONS(2822), + [anon_sym_u8_DQUOTE] = ACTIONS(2822), + [sym_true] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [anon_sym_NULL] = ACTIONS(2820), + [anon_sym_nullptr] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2820), + [anon_sym___typeof] = ACTIONS(2820), + [anon_sym_typeof] = ACTIONS(2820), + [anon_sym_ATimport] = ACTIONS(2822), + [aux_sym_preproc_undef_token1] = ACTIONS(2820), + [anon_sym_POUND] = ACTIONS(2820), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2820), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2820), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2820), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2820), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE] = ACTIONS(2820), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_API_AVAILABLE] = ACTIONS(2820), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_API_DEPRECATED] = ACTIONS(2820), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2820), + [anon_sym___deprecated_msg] = ACTIONS(2820), + [anon_sym___deprecated_enum_msg] = ACTIONS(2820), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2820), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2820), + [anon_sym_ATprotocol] = ACTIONS(2822), + [anon_sym_ATinterface] = ACTIONS(2822), + [anon_sym_ATimplementation] = ACTIONS(2822), + [anon_sym_ATcompatibility_alias] = ACTIONS(2822), + [anon_sym_ATsynthesize] = ACTIONS(2822), + [anon_sym_ATdynamic] = ACTIONS(2822), + [anon_sym_ATtry] = ACTIONS(2822), + [anon_sym___try] = ACTIONS(2820), + [anon_sym_ATthrow] = ACTIONS(2822), + [anon_sym_ATselector] = ACTIONS(2822), + [anon_sym_ATavailable] = ACTIONS(2822), + [anon_sym___builtin_available] = ACTIONS(2820), + [anon_sym_va_arg] = ACTIONS(2820), + [anon_sym_ATencode] = ACTIONS(2822), + [anon_sym_ATsynchronized] = ACTIONS(2822), + [anon_sym_BOOL] = ACTIONS(2820), + [anon_sym_IMP] = ACTIONS(2820), + [anon_sym_SEL] = ACTIONS(2820), + [anon_sym_Class] = ACTIONS(2820), + [anon_sym_id] = ACTIONS(2820), + }, + [665] = { + [sym_identifier] = ACTIONS(2824), + [aux_sym_preproc_include_token1] = ACTIONS(2824), + [aux_sym_preproc_include_token2] = ACTIONS(2824), + [aux_sym_preproc_def_token1] = ACTIONS(2824), + [aux_sym_preproc_if_token1] = ACTIONS(2824), + [aux_sym_preproc_if_token2] = ACTIONS(2824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2824), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2824), + [sym_preproc_directive] = ACTIONS(2824), + [anon_sym_LPAREN2] = ACTIONS(2826), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_DASH] = ACTIONS(2824), + [anon_sym_PLUS] = ACTIONS(2824), + [anon_sym_STAR] = ACTIONS(2826), + [anon_sym_CARET] = ACTIONS(2826), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym___extension__] = ACTIONS(2824), + [anon_sym_typedef] = ACTIONS(2824), + [anon_sym_extern] = ACTIONS(2824), + [anon_sym___attribute__] = ACTIONS(2824), + [anon_sym___attribute] = ACTIONS(2824), + [anon_sym_noreturn] = ACTIONS(2824), + [anon_sym_LBRACK] = ACTIONS(2826), + [anon_sym___declspec] = ACTIONS(2824), + [anon_sym___cdecl] = ACTIONS(2824), + [anon_sym___clrcall] = ACTIONS(2824), + [anon_sym___stdcall] = ACTIONS(2824), + [anon_sym___fastcall] = ACTIONS(2824), + [anon_sym___thiscall] = ACTIONS(2824), + [anon_sym___vectorcall] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_signed] = ACTIONS(2824), + [anon_sym_unsigned] = ACTIONS(2824), + [anon_sym_long] = ACTIONS(2824), + [anon_sym_short] = ACTIONS(2824), + [anon_sym_static] = ACTIONS(2824), + [anon_sym_ATautoreleasepool] = ACTIONS(2826), + [anon_sym_auto] = ACTIONS(2824), + [anon_sym_register] = ACTIONS(2824), + [anon_sym_inline] = ACTIONS(2824), + [anon_sym___inline] = ACTIONS(2824), + [anon_sym___inline__] = ACTIONS(2824), + [anon_sym___forceinline] = ACTIONS(2824), + [anon_sym_thread_local] = ACTIONS(2824), + [anon_sym___thread] = ACTIONS(2824), + [anon_sym_CG_EXTERN] = ACTIONS(2824), + [anon_sym_CG_INLINE] = ACTIONS(2824), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2824), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2824), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2824), + [anon_sym_IBOutlet] = ACTIONS(2824), + [anon_sym_IBInspectable] = ACTIONS(2824), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2824), + [anon_sym_NS_INLINE] = ACTIONS(2824), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2824), + [anon_sym_OBJC_EXPORT] = ACTIONS(2824), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2824), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2824), + [anon_sym_const] = ACTIONS(2824), + [anon_sym_constexpr] = ACTIONS(2824), + [anon_sym_volatile] = ACTIONS(2824), + [anon_sym_restrict] = ACTIONS(2824), + [anon_sym___restrict__] = ACTIONS(2824), + [anon_sym__Atomic] = ACTIONS(2824), + [anon_sym__Noreturn] = ACTIONS(2824), + [anon_sym__Nonnull] = ACTIONS(2824), + [anon_sym_nullable] = ACTIONS(2824), + [anon_sym__Complex] = ACTIONS(2824), + [anon_sym__Nullable] = ACTIONS(2824), + [anon_sym__Nullable_result] = ACTIONS(2824), + [anon_sym__Null_unspecified] = ACTIONS(2824), + [anon_sym___autoreleasing] = ACTIONS(2824), + [anon_sym___block] = ACTIONS(2824), + [anon_sym___bridge] = ACTIONS(2824), + [anon_sym___bridge_retained] = ACTIONS(2824), + [anon_sym___bridge_transfer] = ACTIONS(2824), + [anon_sym___complex] = ACTIONS(2824), + [anon_sym___const] = ACTIONS(2824), + [anon_sym___imag] = ACTIONS(2824), + [anon_sym___kindof] = ACTIONS(2824), + [anon_sym___nonnull] = ACTIONS(2824), + [anon_sym___nullable] = ACTIONS(2824), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2824), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2824), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2824), + [anon_sym___real] = ACTIONS(2824), + [anon_sym___strong] = ACTIONS(2824), + [anon_sym___unsafe_unretained] = ACTIONS(2824), + [anon_sym___unused] = ACTIONS(2824), + [anon_sym___weak] = ACTIONS(2824), + [anon_sym_alignas] = ACTIONS(2824), + [anon_sym__Alignas] = ACTIONS(2824), + [sym_primitive_type] = ACTIONS(2824), + [anon_sym_enum] = ACTIONS(2824), + [anon_sym_struct] = ACTIONS(2824), + [anon_sym_union] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2824), + [anon_sym_switch] = ACTIONS(2824), + [anon_sym_case] = ACTIONS(2824), + [anon_sym_default] = ACTIONS(2824), + [anon_sym_while] = ACTIONS(2824), + [anon_sym_do] = ACTIONS(2824), + [anon_sym_for] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2824), + [anon_sym_return] = ACTIONS(2824), + [anon_sym_break] = ACTIONS(2824), + [anon_sym_continue] = ACTIONS(2824), + [anon_sym_goto] = ACTIONS(2824), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_sizeof] = ACTIONS(2824), + [anon_sym___alignof__] = ACTIONS(2824), + [anon_sym___alignof] = ACTIONS(2824), + [anon_sym__alignof] = ACTIONS(2824), + [anon_sym_alignof] = ACTIONS(2824), + [anon_sym__Alignof] = ACTIONS(2824), + [anon_sym_offsetof] = ACTIONS(2824), + [anon_sym__Generic] = ACTIONS(2824), + [anon_sym_asm] = ACTIONS(2824), + [anon_sym___asm__] = ACTIONS(2824), + [anon_sym___asm] = ACTIONS(2824), + [sym_number_literal] = ACTIONS(2826), + [anon_sym_L_SQUOTE] = ACTIONS(2826), + [anon_sym_u_SQUOTE] = ACTIONS(2826), + [anon_sym_U_SQUOTE] = ACTIONS(2826), + [anon_sym_u8_SQUOTE] = ACTIONS(2826), + [anon_sym_SQUOTE] = ACTIONS(2826), + [anon_sym_AT] = ACTIONS(2824), + [anon_sym_DQUOTE] = ACTIONS(2826), + [anon_sym_L_DQUOTE] = ACTIONS(2826), + [anon_sym_u_DQUOTE] = ACTIONS(2826), + [anon_sym_U_DQUOTE] = ACTIONS(2826), + [anon_sym_u8_DQUOTE] = ACTIONS(2826), + [sym_true] = ACTIONS(2824), + [sym_false] = ACTIONS(2824), + [anon_sym_NULL] = ACTIONS(2824), + [anon_sym_nullptr] = ACTIONS(2824), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2824), + [anon_sym___typeof] = ACTIONS(2824), + [anon_sym_typeof] = ACTIONS(2824), + [anon_sym_ATimport] = ACTIONS(2826), + [aux_sym_preproc_undef_token1] = ACTIONS(2824), + [anon_sym_POUND] = ACTIONS(2824), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2824), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2824), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2824), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2824), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2824), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2824), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2824), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2824), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2824), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2824), + [anon_sym_NS_AVAILABLE] = ACTIONS(2824), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2824), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2824), + [anon_sym_API_AVAILABLE] = ACTIONS(2824), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2824), + [anon_sym_API_DEPRECATED] = ACTIONS(2824), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2824), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2824), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2824), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2824), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2824), + [anon_sym___deprecated_msg] = ACTIONS(2824), + [anon_sym___deprecated_enum_msg] = ACTIONS(2824), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2824), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2824), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2824), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2824), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2824), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2824), + [anon_sym_ATprotocol] = ACTIONS(2826), + [anon_sym_ATinterface] = ACTIONS(2826), + [anon_sym_ATimplementation] = ACTIONS(2826), + [anon_sym_ATcompatibility_alias] = ACTIONS(2826), + [anon_sym_ATsynthesize] = ACTIONS(2826), + [anon_sym_ATdynamic] = ACTIONS(2826), + [anon_sym_ATtry] = ACTIONS(2826), + [anon_sym___try] = ACTIONS(2824), + [anon_sym_ATthrow] = ACTIONS(2826), + [anon_sym_ATselector] = ACTIONS(2826), + [anon_sym_ATavailable] = ACTIONS(2826), + [anon_sym___builtin_available] = ACTIONS(2824), + [anon_sym_va_arg] = ACTIONS(2824), + [anon_sym_ATencode] = ACTIONS(2826), + [anon_sym_ATsynchronized] = ACTIONS(2826), + [anon_sym_BOOL] = ACTIONS(2824), + [anon_sym_IMP] = ACTIONS(2824), + [anon_sym_SEL] = ACTIONS(2824), + [anon_sym_Class] = ACTIONS(2824), + [anon_sym_id] = ACTIONS(2824), + }, + [666] = { + [sym_identifier] = ACTIONS(2572), + [aux_sym_preproc_include_token1] = ACTIONS(2572), + [aux_sym_preproc_include_token2] = ACTIONS(2572), + [aux_sym_preproc_def_token1] = ACTIONS(2572), + [aux_sym_preproc_if_token1] = ACTIONS(2572), + [aux_sym_preproc_if_token2] = ACTIONS(2572), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2572), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2572), + [sym_preproc_directive] = ACTIONS(2572), + [anon_sym_LPAREN2] = ACTIONS(2574), + [anon_sym_BANG] = ACTIONS(2574), + [anon_sym_TILDE] = ACTIONS(2574), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_STAR] = ACTIONS(2574), + [anon_sym_CARET] = ACTIONS(2574), + [anon_sym_AMP] = ACTIONS(2574), + [anon_sym_SEMI] = ACTIONS(2574), + [anon_sym___extension__] = ACTIONS(2572), + [anon_sym_typedef] = ACTIONS(2572), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym___attribute__] = ACTIONS(2572), + [anon_sym___attribute] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym___declspec] = ACTIONS(2572), + [anon_sym___cdecl] = ACTIONS(2572), + [anon_sym___clrcall] = ACTIONS(2572), + [anon_sym___stdcall] = ACTIONS(2572), + [anon_sym___fastcall] = ACTIONS(2572), + [anon_sym___thiscall] = ACTIONS(2572), + [anon_sym___vectorcall] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2574), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_ATautoreleasepool] = ACTIONS(2574), + [anon_sym_auto] = ACTIONS(2572), + [anon_sym_register] = ACTIONS(2572), + [anon_sym_inline] = ACTIONS(2572), + [anon_sym___inline] = ACTIONS(2572), + [anon_sym___inline__] = ACTIONS(2572), + [anon_sym___forceinline] = ACTIONS(2572), + [anon_sym_thread_local] = ACTIONS(2572), + [anon_sym___thread] = ACTIONS(2572), + [anon_sym_CG_EXTERN] = ACTIONS(2572), + [anon_sym_CG_INLINE] = ACTIONS(2572), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2572), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2572), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2572), + [anon_sym_IBOutlet] = ACTIONS(2572), + [anon_sym_IBInspectable] = ACTIONS(2572), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2572), + [anon_sym_NS_INLINE] = ACTIONS(2572), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2572), + [anon_sym_OBJC_EXPORT] = ACTIONS(2572), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2572), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_nullable] = ACTIONS(2572), + [anon_sym__Complex] = ACTIONS(2572), + [anon_sym__Nullable] = ACTIONS(2572), + [anon_sym__Nullable_result] = ACTIONS(2572), + [anon_sym__Null_unspecified] = ACTIONS(2572), + [anon_sym___autoreleasing] = ACTIONS(2572), + [anon_sym___block] = ACTIONS(2572), + [anon_sym___bridge] = ACTIONS(2572), + [anon_sym___bridge_retained] = ACTIONS(2572), + [anon_sym___bridge_transfer] = ACTIONS(2572), + [anon_sym___complex] = ACTIONS(2572), + [anon_sym___const] = ACTIONS(2572), + [anon_sym___imag] = ACTIONS(2572), + [anon_sym___kindof] = ACTIONS(2572), + [anon_sym___nonnull] = ACTIONS(2572), + [anon_sym___nullable] = ACTIONS(2572), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2572), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2572), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2572), + [anon_sym___real] = ACTIONS(2572), + [anon_sym___strong] = ACTIONS(2572), + [anon_sym___unsafe_unretained] = ACTIONS(2572), + [anon_sym___unused] = ACTIONS(2572), + [anon_sym___weak] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(2572), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_struct] = ACTIONS(2572), + [anon_sym_union] = ACTIONS(2572), + [anon_sym_if] = ACTIONS(2572), + [anon_sym_switch] = ACTIONS(2572), + [anon_sym_case] = ACTIONS(2572), + [anon_sym_default] = ACTIONS(2572), + [anon_sym_while] = ACTIONS(2572), + [anon_sym_do] = ACTIONS(2572), + [anon_sym_for] = ACTIONS(2572), + [anon_sym_in] = ACTIONS(2572), + [anon_sym_return] = ACTIONS(2572), + [anon_sym_break] = ACTIONS(2572), + [anon_sym_continue] = ACTIONS(2572), + [anon_sym_goto] = ACTIONS(2572), + [anon_sym_DASH_DASH] = ACTIONS(2574), + [anon_sym_PLUS_PLUS] = ACTIONS(2574), + [anon_sym_sizeof] = ACTIONS(2572), + [anon_sym___alignof__] = ACTIONS(2572), + [anon_sym___alignof] = ACTIONS(2572), + [anon_sym__alignof] = ACTIONS(2572), + [anon_sym_alignof] = ACTIONS(2572), + [anon_sym__Alignof] = ACTIONS(2572), + [anon_sym_offsetof] = ACTIONS(2572), + [anon_sym__Generic] = ACTIONS(2572), + [anon_sym_asm] = ACTIONS(2572), + [anon_sym___asm__] = ACTIONS(2572), + [anon_sym___asm] = ACTIONS(2572), + [sym_number_literal] = ACTIONS(2574), + [anon_sym_L_SQUOTE] = ACTIONS(2574), + [anon_sym_u_SQUOTE] = ACTIONS(2574), + [anon_sym_U_SQUOTE] = ACTIONS(2574), + [anon_sym_u8_SQUOTE] = ACTIONS(2574), + [anon_sym_SQUOTE] = ACTIONS(2574), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_DQUOTE] = ACTIONS(2574), + [anon_sym_L_DQUOTE] = ACTIONS(2574), + [anon_sym_u_DQUOTE] = ACTIONS(2574), + [anon_sym_U_DQUOTE] = ACTIONS(2574), + [anon_sym_u8_DQUOTE] = ACTIONS(2574), + [sym_true] = ACTIONS(2572), + [sym_false] = ACTIONS(2572), + [anon_sym_NULL] = ACTIONS(2572), + [anon_sym_nullptr] = ACTIONS(2572), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2572), + [anon_sym___typeof] = ACTIONS(2572), + [anon_sym_typeof] = ACTIONS(2572), + [anon_sym_ATimport] = ACTIONS(2574), + [aux_sym_preproc_undef_token1] = ACTIONS(2572), + [anon_sym_POUND] = ACTIONS(2572), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2572), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2572), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2572), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2572), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2572), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2572), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2572), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2572), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2572), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2572), + [anon_sym_NS_AVAILABLE] = ACTIONS(2572), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2572), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2572), + [anon_sym_API_AVAILABLE] = ACTIONS(2572), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2572), + [anon_sym_API_DEPRECATED] = ACTIONS(2572), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2572), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2572), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2572), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2572), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2572), + [anon_sym___deprecated_msg] = ACTIONS(2572), + [anon_sym___deprecated_enum_msg] = ACTIONS(2572), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2572), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2572), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2572), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2572), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2572), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2572), + [anon_sym_ATprotocol] = ACTIONS(2574), + [anon_sym_ATinterface] = ACTIONS(2574), + [anon_sym_ATimplementation] = ACTIONS(2574), + [anon_sym_ATcompatibility_alias] = ACTIONS(2574), + [anon_sym_ATsynthesize] = ACTIONS(2574), + [anon_sym_ATdynamic] = ACTIONS(2574), + [anon_sym_ATtry] = ACTIONS(2574), + [anon_sym___try] = ACTIONS(2572), + [anon_sym_ATthrow] = ACTIONS(2574), + [anon_sym_ATselector] = ACTIONS(2574), + [anon_sym_ATavailable] = ACTIONS(2574), + [anon_sym___builtin_available] = ACTIONS(2572), + [anon_sym_va_arg] = ACTIONS(2572), + [anon_sym_ATencode] = ACTIONS(2574), + [anon_sym_ATsynchronized] = ACTIONS(2574), + [anon_sym_BOOL] = ACTIONS(2572), + [anon_sym_IMP] = ACTIONS(2572), + [anon_sym_SEL] = ACTIONS(2572), + [anon_sym_Class] = ACTIONS(2572), + [anon_sym_id] = ACTIONS(2572), + }, + [667] = { + [sym_identifier] = ACTIONS(2832), + [aux_sym_preproc_include_token1] = ACTIONS(2832), + [aux_sym_preproc_include_token2] = ACTIONS(2832), + [aux_sym_preproc_def_token1] = ACTIONS(2832), + [aux_sym_preproc_if_token1] = ACTIONS(2832), + [aux_sym_preproc_if_token2] = ACTIONS(2832), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2832), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2832), + [sym_preproc_directive] = ACTIONS(2832), + [anon_sym_LPAREN2] = ACTIONS(2834), + [anon_sym_BANG] = ACTIONS(2834), + [anon_sym_TILDE] = ACTIONS(2834), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_PLUS] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2834), + [anon_sym_CARET] = ACTIONS(2834), + [anon_sym_AMP] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym___extension__] = ACTIONS(2832), + [anon_sym_typedef] = ACTIONS(2832), + [anon_sym_extern] = ACTIONS(2832), + [anon_sym___attribute__] = ACTIONS(2832), + [anon_sym___attribute] = ACTIONS(2832), + [anon_sym_noreturn] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2834), + [anon_sym___declspec] = ACTIONS(2832), + [anon_sym___cdecl] = ACTIONS(2832), + [anon_sym___clrcall] = ACTIONS(2832), + [anon_sym___stdcall] = ACTIONS(2832), + [anon_sym___fastcall] = ACTIONS(2832), + [anon_sym___thiscall] = ACTIONS(2832), + [anon_sym___vectorcall] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2834), + [anon_sym_signed] = ACTIONS(2832), + [anon_sym_unsigned] = ACTIONS(2832), + [anon_sym_long] = ACTIONS(2832), + [anon_sym_short] = ACTIONS(2832), + [anon_sym_static] = ACTIONS(2832), + [anon_sym_ATautoreleasepool] = ACTIONS(2834), + [anon_sym_auto] = ACTIONS(2832), + [anon_sym_register] = ACTIONS(2832), + [anon_sym_inline] = ACTIONS(2832), + [anon_sym___inline] = ACTIONS(2832), + [anon_sym___inline__] = ACTIONS(2832), + [anon_sym___forceinline] = ACTIONS(2832), + [anon_sym_thread_local] = ACTIONS(2832), + [anon_sym___thread] = ACTIONS(2832), + [anon_sym_CG_EXTERN] = ACTIONS(2832), + [anon_sym_CG_INLINE] = ACTIONS(2832), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2832), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2832), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2832), + [anon_sym_IBOutlet] = ACTIONS(2832), + [anon_sym_IBInspectable] = ACTIONS(2832), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2832), + [anon_sym_NS_INLINE] = ACTIONS(2832), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2832), + [anon_sym_OBJC_EXPORT] = ACTIONS(2832), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2832), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2832), + [anon_sym_const] = ACTIONS(2832), + [anon_sym_constexpr] = ACTIONS(2832), + [anon_sym_volatile] = ACTIONS(2832), + [anon_sym_restrict] = ACTIONS(2832), + [anon_sym___restrict__] = ACTIONS(2832), + [anon_sym__Atomic] = ACTIONS(2832), + [anon_sym__Noreturn] = ACTIONS(2832), + [anon_sym__Nonnull] = ACTIONS(2832), + [anon_sym_nullable] = ACTIONS(2832), + [anon_sym__Complex] = ACTIONS(2832), + [anon_sym__Nullable] = ACTIONS(2832), + [anon_sym__Nullable_result] = ACTIONS(2832), + [anon_sym__Null_unspecified] = ACTIONS(2832), + [anon_sym___autoreleasing] = ACTIONS(2832), + [anon_sym___block] = ACTIONS(2832), + [anon_sym___bridge] = ACTIONS(2832), + [anon_sym___bridge_retained] = ACTIONS(2832), + [anon_sym___bridge_transfer] = ACTIONS(2832), + [anon_sym___complex] = ACTIONS(2832), + [anon_sym___const] = ACTIONS(2832), + [anon_sym___imag] = ACTIONS(2832), + [anon_sym___kindof] = ACTIONS(2832), + [anon_sym___nonnull] = ACTIONS(2832), + [anon_sym___nullable] = ACTIONS(2832), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2832), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2832), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2832), + [anon_sym___real] = ACTIONS(2832), + [anon_sym___strong] = ACTIONS(2832), + [anon_sym___unsafe_unretained] = ACTIONS(2832), + [anon_sym___unused] = ACTIONS(2832), + [anon_sym___weak] = ACTIONS(2832), + [anon_sym_alignas] = ACTIONS(2832), + [anon_sym__Alignas] = ACTIONS(2832), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_enum] = ACTIONS(2832), + [anon_sym_struct] = ACTIONS(2832), + [anon_sym_union] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_switch] = ACTIONS(2832), + [anon_sym_case] = ACTIONS(2832), + [anon_sym_default] = ACTIONS(2832), + [anon_sym_while] = ACTIONS(2832), + [anon_sym_do] = ACTIONS(2832), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_in] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_goto] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2834), + [anon_sym_PLUS_PLUS] = ACTIONS(2834), + [anon_sym_sizeof] = ACTIONS(2832), + [anon_sym___alignof__] = ACTIONS(2832), + [anon_sym___alignof] = ACTIONS(2832), + [anon_sym__alignof] = ACTIONS(2832), + [anon_sym_alignof] = ACTIONS(2832), + [anon_sym__Alignof] = ACTIONS(2832), + [anon_sym_offsetof] = ACTIONS(2832), + [anon_sym__Generic] = ACTIONS(2832), + [anon_sym_asm] = ACTIONS(2832), + [anon_sym___asm__] = ACTIONS(2832), + [anon_sym___asm] = ACTIONS(2832), + [sym_number_literal] = ACTIONS(2834), + [anon_sym_L_SQUOTE] = ACTIONS(2834), + [anon_sym_u_SQUOTE] = ACTIONS(2834), + [anon_sym_U_SQUOTE] = ACTIONS(2834), + [anon_sym_u8_SQUOTE] = ACTIONS(2834), + [anon_sym_SQUOTE] = ACTIONS(2834), + [anon_sym_AT] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2834), + [anon_sym_L_DQUOTE] = ACTIONS(2834), + [anon_sym_u_DQUOTE] = ACTIONS(2834), + [anon_sym_U_DQUOTE] = ACTIONS(2834), + [anon_sym_u8_DQUOTE] = ACTIONS(2834), + [sym_true] = ACTIONS(2832), + [sym_false] = ACTIONS(2832), + [anon_sym_NULL] = ACTIONS(2832), + [anon_sym_nullptr] = ACTIONS(2832), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2832), + [anon_sym___typeof] = ACTIONS(2832), + [anon_sym_typeof] = ACTIONS(2832), + [anon_sym_ATimport] = ACTIONS(2834), + [aux_sym_preproc_undef_token1] = ACTIONS(2832), + [anon_sym_POUND] = ACTIONS(2832), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2832), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2832), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2832), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2832), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2832), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2832), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2832), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2832), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2832), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2832), + [anon_sym_NS_AVAILABLE] = ACTIONS(2832), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2832), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2832), + [anon_sym_API_AVAILABLE] = ACTIONS(2832), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2832), + [anon_sym_API_DEPRECATED] = ACTIONS(2832), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2832), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2832), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2832), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2832), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2832), + [anon_sym___deprecated_msg] = ACTIONS(2832), + [anon_sym___deprecated_enum_msg] = ACTIONS(2832), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2832), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2832), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2832), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2832), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2832), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2832), + [anon_sym_ATprotocol] = ACTIONS(2834), + [anon_sym_ATinterface] = ACTIONS(2834), + [anon_sym_ATimplementation] = ACTIONS(2834), + [anon_sym_ATcompatibility_alias] = ACTIONS(2834), + [anon_sym_ATsynthesize] = ACTIONS(2834), + [anon_sym_ATdynamic] = ACTIONS(2834), + [anon_sym_ATtry] = ACTIONS(2834), + [anon_sym___try] = ACTIONS(2832), + [anon_sym_ATthrow] = ACTIONS(2834), + [anon_sym_ATselector] = ACTIONS(2834), + [anon_sym_ATavailable] = ACTIONS(2834), + [anon_sym___builtin_available] = ACTIONS(2832), + [anon_sym_va_arg] = ACTIONS(2832), + [anon_sym_ATencode] = ACTIONS(2834), + [anon_sym_ATsynchronized] = ACTIONS(2834), + [anon_sym_BOOL] = ACTIONS(2832), + [anon_sym_IMP] = ACTIONS(2832), + [anon_sym_SEL] = ACTIONS(2832), + [anon_sym_Class] = ACTIONS(2832), + [anon_sym_id] = ACTIONS(2832), + }, + [668] = { + [sym_identifier] = ACTIONS(2836), + [aux_sym_preproc_include_token1] = ACTIONS(2836), + [aux_sym_preproc_include_token2] = ACTIONS(2836), + [aux_sym_preproc_def_token1] = ACTIONS(2836), + [aux_sym_preproc_if_token1] = ACTIONS(2836), + [aux_sym_preproc_if_token2] = ACTIONS(2836), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2836), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2836), + [sym_preproc_directive] = ACTIONS(2836), + [anon_sym_LPAREN2] = ACTIONS(2838), + [anon_sym_BANG] = ACTIONS(2838), + [anon_sym_TILDE] = ACTIONS(2838), + [anon_sym_DASH] = ACTIONS(2836), + [anon_sym_PLUS] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2838), + [anon_sym_CARET] = ACTIONS(2838), + [anon_sym_AMP] = ACTIONS(2838), + [anon_sym_SEMI] = ACTIONS(2838), + [anon_sym___extension__] = ACTIONS(2836), + [anon_sym_typedef] = ACTIONS(2836), + [anon_sym_extern] = ACTIONS(2836), + [anon_sym___attribute__] = ACTIONS(2836), + [anon_sym___attribute] = ACTIONS(2836), + [anon_sym_noreturn] = ACTIONS(2836), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym___declspec] = ACTIONS(2836), + [anon_sym___cdecl] = ACTIONS(2836), + [anon_sym___clrcall] = ACTIONS(2836), + [anon_sym___stdcall] = ACTIONS(2836), + [anon_sym___fastcall] = ACTIONS(2836), + [anon_sym___thiscall] = ACTIONS(2836), + [anon_sym___vectorcall] = ACTIONS(2836), + [anon_sym_LBRACE] = ACTIONS(2838), + [anon_sym_signed] = ACTIONS(2836), + [anon_sym_unsigned] = ACTIONS(2836), + [anon_sym_long] = ACTIONS(2836), + [anon_sym_short] = ACTIONS(2836), + [anon_sym_static] = ACTIONS(2836), + [anon_sym_ATautoreleasepool] = ACTIONS(2838), + [anon_sym_auto] = ACTIONS(2836), + [anon_sym_register] = ACTIONS(2836), + [anon_sym_inline] = ACTIONS(2836), + [anon_sym___inline] = ACTIONS(2836), + [anon_sym___inline__] = ACTIONS(2836), + [anon_sym___forceinline] = ACTIONS(2836), + [anon_sym_thread_local] = ACTIONS(2836), + [anon_sym___thread] = ACTIONS(2836), + [anon_sym_CG_EXTERN] = ACTIONS(2836), + [anon_sym_CG_INLINE] = ACTIONS(2836), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2836), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2836), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2836), + [anon_sym_IBOutlet] = ACTIONS(2836), + [anon_sym_IBInspectable] = ACTIONS(2836), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2836), + [anon_sym_NS_INLINE] = ACTIONS(2836), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2836), + [anon_sym_OBJC_EXPORT] = ACTIONS(2836), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2836), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2836), + [anon_sym_const] = ACTIONS(2836), + [anon_sym_constexpr] = ACTIONS(2836), + [anon_sym_volatile] = ACTIONS(2836), + [anon_sym_restrict] = ACTIONS(2836), + [anon_sym___restrict__] = ACTIONS(2836), + [anon_sym__Atomic] = ACTIONS(2836), + [anon_sym__Noreturn] = ACTIONS(2836), + [anon_sym__Nonnull] = ACTIONS(2836), + [anon_sym_nullable] = ACTIONS(2836), + [anon_sym__Complex] = ACTIONS(2836), + [anon_sym__Nullable] = ACTIONS(2836), + [anon_sym__Nullable_result] = ACTIONS(2836), + [anon_sym__Null_unspecified] = ACTIONS(2836), + [anon_sym___autoreleasing] = ACTIONS(2836), + [anon_sym___block] = ACTIONS(2836), + [anon_sym___bridge] = ACTIONS(2836), + [anon_sym___bridge_retained] = ACTIONS(2836), + [anon_sym___bridge_transfer] = ACTIONS(2836), + [anon_sym___complex] = ACTIONS(2836), + [anon_sym___const] = ACTIONS(2836), + [anon_sym___imag] = ACTIONS(2836), + [anon_sym___kindof] = ACTIONS(2836), + [anon_sym___nonnull] = ACTIONS(2836), + [anon_sym___nullable] = ACTIONS(2836), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2836), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2836), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2836), + [anon_sym___real] = ACTIONS(2836), + [anon_sym___strong] = ACTIONS(2836), + [anon_sym___unsafe_unretained] = ACTIONS(2836), + [anon_sym___unused] = ACTIONS(2836), + [anon_sym___weak] = ACTIONS(2836), + [anon_sym_alignas] = ACTIONS(2836), + [anon_sym__Alignas] = ACTIONS(2836), + [sym_primitive_type] = ACTIONS(2836), + [anon_sym_enum] = ACTIONS(2836), + [anon_sym_struct] = ACTIONS(2836), + [anon_sym_union] = ACTIONS(2836), + [anon_sym_if] = ACTIONS(2836), + [anon_sym_switch] = ACTIONS(2836), + [anon_sym_case] = ACTIONS(2836), + [anon_sym_default] = ACTIONS(2836), + [anon_sym_while] = ACTIONS(2836), + [anon_sym_do] = ACTIONS(2836), + [anon_sym_for] = ACTIONS(2836), + [anon_sym_in] = ACTIONS(2836), + [anon_sym_return] = ACTIONS(2836), + [anon_sym_break] = ACTIONS(2836), + [anon_sym_continue] = ACTIONS(2836), + [anon_sym_goto] = ACTIONS(2836), + [anon_sym_DASH_DASH] = ACTIONS(2838), + [anon_sym_PLUS_PLUS] = ACTIONS(2838), + [anon_sym_sizeof] = ACTIONS(2836), + [anon_sym___alignof__] = ACTIONS(2836), + [anon_sym___alignof] = ACTIONS(2836), + [anon_sym__alignof] = ACTIONS(2836), + [anon_sym_alignof] = ACTIONS(2836), + [anon_sym__Alignof] = ACTIONS(2836), + [anon_sym_offsetof] = ACTIONS(2836), + [anon_sym__Generic] = ACTIONS(2836), + [anon_sym_asm] = ACTIONS(2836), + [anon_sym___asm__] = ACTIONS(2836), + [anon_sym___asm] = ACTIONS(2836), + [sym_number_literal] = ACTIONS(2838), + [anon_sym_L_SQUOTE] = ACTIONS(2838), + [anon_sym_u_SQUOTE] = ACTIONS(2838), + [anon_sym_U_SQUOTE] = ACTIONS(2838), + [anon_sym_u8_SQUOTE] = ACTIONS(2838), + [anon_sym_SQUOTE] = ACTIONS(2838), + [anon_sym_AT] = ACTIONS(2836), + [anon_sym_DQUOTE] = ACTIONS(2838), + [anon_sym_L_DQUOTE] = ACTIONS(2838), + [anon_sym_u_DQUOTE] = ACTIONS(2838), + [anon_sym_U_DQUOTE] = ACTIONS(2838), + [anon_sym_u8_DQUOTE] = ACTIONS(2838), + [sym_true] = ACTIONS(2836), + [sym_false] = ACTIONS(2836), + [anon_sym_NULL] = ACTIONS(2836), + [anon_sym_nullptr] = ACTIONS(2836), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2836), + [anon_sym___typeof] = ACTIONS(2836), + [anon_sym_typeof] = ACTIONS(2836), + [anon_sym_ATimport] = ACTIONS(2838), + [aux_sym_preproc_undef_token1] = ACTIONS(2836), + [anon_sym_POUND] = ACTIONS(2836), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2836), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2836), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2836), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2836), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2836), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2836), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2836), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2836), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2836), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2836), + [anon_sym_NS_AVAILABLE] = ACTIONS(2836), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2836), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2836), + [anon_sym_API_AVAILABLE] = ACTIONS(2836), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2836), + [anon_sym_API_DEPRECATED] = ACTIONS(2836), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2836), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2836), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2836), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2836), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2836), + [anon_sym___deprecated_msg] = ACTIONS(2836), + [anon_sym___deprecated_enum_msg] = ACTIONS(2836), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2836), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2836), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2836), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2836), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2836), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2836), + [anon_sym_ATprotocol] = ACTIONS(2838), + [anon_sym_ATinterface] = ACTIONS(2838), + [anon_sym_ATimplementation] = ACTIONS(2838), + [anon_sym_ATcompatibility_alias] = ACTIONS(2838), + [anon_sym_ATsynthesize] = ACTIONS(2838), + [anon_sym_ATdynamic] = ACTIONS(2838), + [anon_sym_ATtry] = ACTIONS(2838), + [anon_sym___try] = ACTIONS(2836), + [anon_sym_ATthrow] = ACTIONS(2838), + [anon_sym_ATselector] = ACTIONS(2838), + [anon_sym_ATavailable] = ACTIONS(2838), + [anon_sym___builtin_available] = ACTIONS(2836), + [anon_sym_va_arg] = ACTIONS(2836), + [anon_sym_ATencode] = ACTIONS(2838), + [anon_sym_ATsynchronized] = ACTIONS(2838), + [anon_sym_BOOL] = ACTIONS(2836), + [anon_sym_IMP] = ACTIONS(2836), + [anon_sym_SEL] = ACTIONS(2836), + [anon_sym_Class] = ACTIONS(2836), + [anon_sym_id] = ACTIONS(2836), + }, + [669] = { + [sym_identifier] = ACTIONS(2840), + [aux_sym_preproc_include_token1] = ACTIONS(2840), + [aux_sym_preproc_include_token2] = ACTIONS(2840), + [aux_sym_preproc_def_token1] = ACTIONS(2840), + [aux_sym_preproc_if_token1] = ACTIONS(2840), + [aux_sym_preproc_if_token2] = ACTIONS(2840), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2840), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2840), + [sym_preproc_directive] = ACTIONS(2840), + [anon_sym_LPAREN2] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(2842), + [anon_sym_TILDE] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2840), + [anon_sym_PLUS] = ACTIONS(2840), + [anon_sym_STAR] = ACTIONS(2842), + [anon_sym_CARET] = ACTIONS(2842), + [anon_sym_AMP] = ACTIONS(2842), + [anon_sym_SEMI] = ACTIONS(2842), + [anon_sym___extension__] = ACTIONS(2840), + [anon_sym_typedef] = ACTIONS(2840), + [anon_sym_extern] = ACTIONS(2840), + [anon_sym___attribute__] = ACTIONS(2840), + [anon_sym___attribute] = ACTIONS(2840), + [anon_sym_noreturn] = ACTIONS(2840), + [anon_sym_LBRACK] = ACTIONS(2842), + [anon_sym___declspec] = ACTIONS(2840), + [anon_sym___cdecl] = ACTIONS(2840), + [anon_sym___clrcall] = ACTIONS(2840), + [anon_sym___stdcall] = ACTIONS(2840), + [anon_sym___fastcall] = ACTIONS(2840), + [anon_sym___thiscall] = ACTIONS(2840), + [anon_sym___vectorcall] = ACTIONS(2840), + [anon_sym_LBRACE] = ACTIONS(2842), + [anon_sym_signed] = ACTIONS(2840), + [anon_sym_unsigned] = ACTIONS(2840), + [anon_sym_long] = ACTIONS(2840), + [anon_sym_short] = ACTIONS(2840), + [anon_sym_static] = ACTIONS(2840), + [anon_sym_ATautoreleasepool] = ACTIONS(2842), + [anon_sym_auto] = ACTIONS(2840), + [anon_sym_register] = ACTIONS(2840), + [anon_sym_inline] = ACTIONS(2840), + [anon_sym___inline] = ACTIONS(2840), + [anon_sym___inline__] = ACTIONS(2840), + [anon_sym___forceinline] = ACTIONS(2840), + [anon_sym_thread_local] = ACTIONS(2840), + [anon_sym___thread] = ACTIONS(2840), + [anon_sym_CG_EXTERN] = ACTIONS(2840), + [anon_sym_CG_INLINE] = ACTIONS(2840), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2840), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2840), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2840), + [anon_sym_IBOutlet] = ACTIONS(2840), + [anon_sym_IBInspectable] = ACTIONS(2840), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2840), + [anon_sym_NS_INLINE] = ACTIONS(2840), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2840), + [anon_sym_OBJC_EXPORT] = ACTIONS(2840), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2840), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2840), + [anon_sym_const] = ACTIONS(2840), + [anon_sym_constexpr] = ACTIONS(2840), + [anon_sym_volatile] = ACTIONS(2840), + [anon_sym_restrict] = ACTIONS(2840), + [anon_sym___restrict__] = ACTIONS(2840), + [anon_sym__Atomic] = ACTIONS(2840), + [anon_sym__Noreturn] = ACTIONS(2840), + [anon_sym__Nonnull] = ACTIONS(2840), + [anon_sym_nullable] = ACTIONS(2840), + [anon_sym__Complex] = ACTIONS(2840), + [anon_sym__Nullable] = ACTIONS(2840), + [anon_sym__Nullable_result] = ACTIONS(2840), + [anon_sym__Null_unspecified] = ACTIONS(2840), + [anon_sym___autoreleasing] = ACTIONS(2840), + [anon_sym___block] = ACTIONS(2840), + [anon_sym___bridge] = ACTIONS(2840), + [anon_sym___bridge_retained] = ACTIONS(2840), + [anon_sym___bridge_transfer] = ACTIONS(2840), + [anon_sym___complex] = ACTIONS(2840), + [anon_sym___const] = ACTIONS(2840), + [anon_sym___imag] = ACTIONS(2840), + [anon_sym___kindof] = ACTIONS(2840), + [anon_sym___nonnull] = ACTIONS(2840), + [anon_sym___nullable] = ACTIONS(2840), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2840), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2840), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2840), + [anon_sym___real] = ACTIONS(2840), + [anon_sym___strong] = ACTIONS(2840), + [anon_sym___unsafe_unretained] = ACTIONS(2840), + [anon_sym___unused] = ACTIONS(2840), + [anon_sym___weak] = ACTIONS(2840), + [anon_sym_alignas] = ACTIONS(2840), + [anon_sym__Alignas] = ACTIONS(2840), + [sym_primitive_type] = ACTIONS(2840), + [anon_sym_enum] = ACTIONS(2840), + [anon_sym_struct] = ACTIONS(2840), + [anon_sym_union] = ACTIONS(2840), + [anon_sym_if] = ACTIONS(2840), + [anon_sym_switch] = ACTIONS(2840), + [anon_sym_case] = ACTIONS(2840), + [anon_sym_default] = ACTIONS(2840), + [anon_sym_while] = ACTIONS(2840), + [anon_sym_do] = ACTIONS(2840), + [anon_sym_for] = ACTIONS(2840), + [anon_sym_in] = ACTIONS(2840), + [anon_sym_return] = ACTIONS(2840), + [anon_sym_break] = ACTIONS(2840), + [anon_sym_continue] = ACTIONS(2840), + [anon_sym_goto] = ACTIONS(2840), + [anon_sym_DASH_DASH] = ACTIONS(2842), + [anon_sym_PLUS_PLUS] = ACTIONS(2842), + [anon_sym_sizeof] = ACTIONS(2840), + [anon_sym___alignof__] = ACTIONS(2840), + [anon_sym___alignof] = ACTIONS(2840), + [anon_sym__alignof] = ACTIONS(2840), + [anon_sym_alignof] = ACTIONS(2840), + [anon_sym__Alignof] = ACTIONS(2840), + [anon_sym_offsetof] = ACTIONS(2840), + [anon_sym__Generic] = ACTIONS(2840), + [anon_sym_asm] = ACTIONS(2840), + [anon_sym___asm__] = ACTIONS(2840), + [anon_sym___asm] = ACTIONS(2840), + [sym_number_literal] = ACTIONS(2842), + [anon_sym_L_SQUOTE] = ACTIONS(2842), + [anon_sym_u_SQUOTE] = ACTIONS(2842), + [anon_sym_U_SQUOTE] = ACTIONS(2842), + [anon_sym_u8_SQUOTE] = ACTIONS(2842), + [anon_sym_SQUOTE] = ACTIONS(2842), + [anon_sym_AT] = ACTIONS(2840), + [anon_sym_DQUOTE] = ACTIONS(2842), + [anon_sym_L_DQUOTE] = ACTIONS(2842), + [anon_sym_u_DQUOTE] = ACTIONS(2842), + [anon_sym_U_DQUOTE] = ACTIONS(2842), + [anon_sym_u8_DQUOTE] = ACTIONS(2842), + [sym_true] = ACTIONS(2840), + [sym_false] = ACTIONS(2840), + [anon_sym_NULL] = ACTIONS(2840), + [anon_sym_nullptr] = ACTIONS(2840), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2840), + [anon_sym___typeof] = ACTIONS(2840), + [anon_sym_typeof] = ACTIONS(2840), + [anon_sym_ATimport] = ACTIONS(2842), + [aux_sym_preproc_undef_token1] = ACTIONS(2840), + [anon_sym_POUND] = ACTIONS(2840), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2840), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2840), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2840), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2840), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2840), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2840), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2840), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2840), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2840), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2840), + [anon_sym_NS_AVAILABLE] = ACTIONS(2840), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2840), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2840), + [anon_sym_API_AVAILABLE] = ACTIONS(2840), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2840), + [anon_sym_API_DEPRECATED] = ACTIONS(2840), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2840), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2840), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2840), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2840), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2840), + [anon_sym___deprecated_msg] = ACTIONS(2840), + [anon_sym___deprecated_enum_msg] = ACTIONS(2840), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2840), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2840), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2840), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2840), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2840), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2840), + [anon_sym_ATprotocol] = ACTIONS(2842), + [anon_sym_ATinterface] = ACTIONS(2842), + [anon_sym_ATimplementation] = ACTIONS(2842), + [anon_sym_ATcompatibility_alias] = ACTIONS(2842), + [anon_sym_ATsynthesize] = ACTIONS(2842), + [anon_sym_ATdynamic] = ACTIONS(2842), + [anon_sym_ATtry] = ACTIONS(2842), + [anon_sym___try] = ACTIONS(2840), + [anon_sym_ATthrow] = ACTIONS(2842), + [anon_sym_ATselector] = ACTIONS(2842), + [anon_sym_ATavailable] = ACTIONS(2842), + [anon_sym___builtin_available] = ACTIONS(2840), + [anon_sym_va_arg] = ACTIONS(2840), + [anon_sym_ATencode] = ACTIONS(2842), + [anon_sym_ATsynchronized] = ACTIONS(2842), + [anon_sym_BOOL] = ACTIONS(2840), + [anon_sym_IMP] = ACTIONS(2840), + [anon_sym_SEL] = ACTIONS(2840), + [anon_sym_Class] = ACTIONS(2840), + [anon_sym_id] = ACTIONS(2840), + }, + [670] = { + [sym_identifier] = ACTIONS(2844), + [aux_sym_preproc_include_token1] = ACTIONS(2844), + [aux_sym_preproc_include_token2] = ACTIONS(2844), + [aux_sym_preproc_def_token1] = ACTIONS(2844), + [aux_sym_preproc_if_token1] = ACTIONS(2844), + [aux_sym_preproc_if_token2] = ACTIONS(2844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2844), + [sym_preproc_directive] = ACTIONS(2844), + [anon_sym_LPAREN2] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2844), + [anon_sym_PLUS] = ACTIONS(2844), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_CARET] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2846), + [anon_sym_SEMI] = ACTIONS(2846), + [anon_sym___extension__] = ACTIONS(2844), + [anon_sym_typedef] = ACTIONS(2844), + [anon_sym_extern] = ACTIONS(2844), + [anon_sym___attribute__] = ACTIONS(2844), + [anon_sym___attribute] = ACTIONS(2844), + [anon_sym_noreturn] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym___declspec] = ACTIONS(2844), + [anon_sym___cdecl] = ACTIONS(2844), + [anon_sym___clrcall] = ACTIONS(2844), + [anon_sym___stdcall] = ACTIONS(2844), + [anon_sym___fastcall] = ACTIONS(2844), + [anon_sym___thiscall] = ACTIONS(2844), + [anon_sym___vectorcall] = ACTIONS(2844), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_signed] = ACTIONS(2844), + [anon_sym_unsigned] = ACTIONS(2844), + [anon_sym_long] = ACTIONS(2844), + [anon_sym_short] = ACTIONS(2844), + [anon_sym_static] = ACTIONS(2844), + [anon_sym_ATautoreleasepool] = ACTIONS(2846), + [anon_sym_auto] = ACTIONS(2844), + [anon_sym_register] = ACTIONS(2844), + [anon_sym_inline] = ACTIONS(2844), + [anon_sym___inline] = ACTIONS(2844), + [anon_sym___inline__] = ACTIONS(2844), + [anon_sym___forceinline] = ACTIONS(2844), + [anon_sym_thread_local] = ACTIONS(2844), + [anon_sym___thread] = ACTIONS(2844), + [anon_sym_CG_EXTERN] = ACTIONS(2844), + [anon_sym_CG_INLINE] = ACTIONS(2844), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2844), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2844), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2844), + [anon_sym_IBOutlet] = ACTIONS(2844), + [anon_sym_IBInspectable] = ACTIONS(2844), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2844), + [anon_sym_NS_INLINE] = ACTIONS(2844), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2844), + [anon_sym_OBJC_EXPORT] = ACTIONS(2844), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2844), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2844), + [anon_sym_const] = ACTIONS(2844), + [anon_sym_constexpr] = ACTIONS(2844), + [anon_sym_volatile] = ACTIONS(2844), + [anon_sym_restrict] = ACTIONS(2844), + [anon_sym___restrict__] = ACTIONS(2844), + [anon_sym__Atomic] = ACTIONS(2844), + [anon_sym__Noreturn] = ACTIONS(2844), + [anon_sym__Nonnull] = ACTIONS(2844), + [anon_sym_nullable] = ACTIONS(2844), + [anon_sym__Complex] = ACTIONS(2844), + [anon_sym__Nullable] = ACTIONS(2844), + [anon_sym__Nullable_result] = ACTIONS(2844), + [anon_sym__Null_unspecified] = ACTIONS(2844), + [anon_sym___autoreleasing] = ACTIONS(2844), + [anon_sym___block] = ACTIONS(2844), + [anon_sym___bridge] = ACTIONS(2844), + [anon_sym___bridge_retained] = ACTIONS(2844), + [anon_sym___bridge_transfer] = ACTIONS(2844), + [anon_sym___complex] = ACTIONS(2844), + [anon_sym___const] = ACTIONS(2844), + [anon_sym___imag] = ACTIONS(2844), + [anon_sym___kindof] = ACTIONS(2844), + [anon_sym___nonnull] = ACTIONS(2844), + [anon_sym___nullable] = ACTIONS(2844), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2844), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2844), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2844), + [anon_sym___real] = ACTIONS(2844), + [anon_sym___strong] = ACTIONS(2844), + [anon_sym___unsafe_unretained] = ACTIONS(2844), + [anon_sym___unused] = ACTIONS(2844), + [anon_sym___weak] = ACTIONS(2844), + [anon_sym_alignas] = ACTIONS(2844), + [anon_sym__Alignas] = ACTIONS(2844), + [sym_primitive_type] = ACTIONS(2844), + [anon_sym_enum] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2844), + [anon_sym_union] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2844), + [anon_sym_switch] = ACTIONS(2844), + [anon_sym_case] = ACTIONS(2844), + [anon_sym_default] = ACTIONS(2844), + [anon_sym_while] = ACTIONS(2844), + [anon_sym_do] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(2844), + [anon_sym_in] = ACTIONS(2844), + [anon_sym_return] = ACTIONS(2844), + [anon_sym_break] = ACTIONS(2844), + [anon_sym_continue] = ACTIONS(2844), + [anon_sym_goto] = ACTIONS(2844), + [anon_sym_DASH_DASH] = ACTIONS(2846), + [anon_sym_PLUS_PLUS] = ACTIONS(2846), + [anon_sym_sizeof] = ACTIONS(2844), + [anon_sym___alignof__] = ACTIONS(2844), + [anon_sym___alignof] = ACTIONS(2844), + [anon_sym__alignof] = ACTIONS(2844), + [anon_sym_alignof] = ACTIONS(2844), + [anon_sym__Alignof] = ACTIONS(2844), + [anon_sym_offsetof] = ACTIONS(2844), + [anon_sym__Generic] = ACTIONS(2844), + [anon_sym_asm] = ACTIONS(2844), + [anon_sym___asm__] = ACTIONS(2844), + [anon_sym___asm] = ACTIONS(2844), + [sym_number_literal] = ACTIONS(2846), + [anon_sym_L_SQUOTE] = ACTIONS(2846), + [anon_sym_u_SQUOTE] = ACTIONS(2846), + [anon_sym_U_SQUOTE] = ACTIONS(2846), + [anon_sym_u8_SQUOTE] = ACTIONS(2846), + [anon_sym_SQUOTE] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2844), + [anon_sym_DQUOTE] = ACTIONS(2846), + [anon_sym_L_DQUOTE] = ACTIONS(2846), + [anon_sym_u_DQUOTE] = ACTIONS(2846), + [anon_sym_U_DQUOTE] = ACTIONS(2846), + [anon_sym_u8_DQUOTE] = ACTIONS(2846), + [sym_true] = ACTIONS(2844), + [sym_false] = ACTIONS(2844), + [anon_sym_NULL] = ACTIONS(2844), + [anon_sym_nullptr] = ACTIONS(2844), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2844), + [anon_sym___typeof] = ACTIONS(2844), + [anon_sym_typeof] = ACTIONS(2844), + [anon_sym_ATimport] = ACTIONS(2846), + [aux_sym_preproc_undef_token1] = ACTIONS(2844), + [anon_sym_POUND] = ACTIONS(2844), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2844), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2844), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2844), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2844), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2844), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2844), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2844), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2844), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2844), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2844), + [anon_sym_NS_AVAILABLE] = ACTIONS(2844), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2844), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2844), + [anon_sym_API_AVAILABLE] = ACTIONS(2844), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2844), + [anon_sym_API_DEPRECATED] = ACTIONS(2844), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2844), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2844), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2844), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2844), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2844), + [anon_sym___deprecated_msg] = ACTIONS(2844), + [anon_sym___deprecated_enum_msg] = ACTIONS(2844), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2844), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2844), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2844), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2844), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2844), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2844), + [anon_sym_ATprotocol] = ACTIONS(2846), + [anon_sym_ATinterface] = ACTIONS(2846), + [anon_sym_ATimplementation] = ACTIONS(2846), + [anon_sym_ATcompatibility_alias] = ACTIONS(2846), + [anon_sym_ATsynthesize] = ACTIONS(2846), + [anon_sym_ATdynamic] = ACTIONS(2846), + [anon_sym_ATtry] = ACTIONS(2846), + [anon_sym___try] = ACTIONS(2844), + [anon_sym_ATthrow] = ACTIONS(2846), + [anon_sym_ATselector] = ACTIONS(2846), + [anon_sym_ATavailable] = ACTIONS(2846), + [anon_sym___builtin_available] = ACTIONS(2844), + [anon_sym_va_arg] = ACTIONS(2844), + [anon_sym_ATencode] = ACTIONS(2846), + [anon_sym_ATsynchronized] = ACTIONS(2846), + [anon_sym_BOOL] = ACTIONS(2844), + [anon_sym_IMP] = ACTIONS(2844), + [anon_sym_SEL] = ACTIONS(2844), + [anon_sym_Class] = ACTIONS(2844), + [anon_sym_id] = ACTIONS(2844), + }, + [671] = { + [sym_identifier] = ACTIONS(2852), + [aux_sym_preproc_include_token1] = ACTIONS(2852), + [aux_sym_preproc_include_token2] = ACTIONS(2852), + [aux_sym_preproc_def_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token2] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2852), + [sym_preproc_directive] = ACTIONS(2852), + [anon_sym_LPAREN2] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_CARET] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym___extension__] = ACTIONS(2852), + [anon_sym_typedef] = ACTIONS(2852), + [anon_sym_extern] = ACTIONS(2852), + [anon_sym___attribute__] = ACTIONS(2852), + [anon_sym___attribute] = ACTIONS(2852), + [anon_sym_noreturn] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2854), + [anon_sym___declspec] = ACTIONS(2852), + [anon_sym___cdecl] = ACTIONS(2852), + [anon_sym___clrcall] = ACTIONS(2852), + [anon_sym___stdcall] = ACTIONS(2852), + [anon_sym___fastcall] = ACTIONS(2852), + [anon_sym___thiscall] = ACTIONS(2852), + [anon_sym___vectorcall] = ACTIONS(2852), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_signed] = ACTIONS(2852), + [anon_sym_unsigned] = ACTIONS(2852), + [anon_sym_long] = ACTIONS(2852), + [anon_sym_short] = ACTIONS(2852), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_ATautoreleasepool] = ACTIONS(2854), + [anon_sym_auto] = ACTIONS(2852), + [anon_sym_register] = ACTIONS(2852), + [anon_sym_inline] = ACTIONS(2852), + [anon_sym___inline] = ACTIONS(2852), + [anon_sym___inline__] = ACTIONS(2852), + [anon_sym___forceinline] = ACTIONS(2852), + [anon_sym_thread_local] = ACTIONS(2852), + [anon_sym___thread] = ACTIONS(2852), + [anon_sym_CG_EXTERN] = ACTIONS(2852), + [anon_sym_CG_INLINE] = ACTIONS(2852), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2852), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2852), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2852), + [anon_sym_IBOutlet] = ACTIONS(2852), + [anon_sym_IBInspectable] = ACTIONS(2852), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2852), + [anon_sym_NS_INLINE] = ACTIONS(2852), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2852), + [anon_sym_OBJC_EXPORT] = ACTIONS(2852), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2852), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2852), + [anon_sym_const] = ACTIONS(2852), + [anon_sym_constexpr] = ACTIONS(2852), + [anon_sym_volatile] = ACTIONS(2852), + [anon_sym_restrict] = ACTIONS(2852), + [anon_sym___restrict__] = ACTIONS(2852), + [anon_sym__Atomic] = ACTIONS(2852), + [anon_sym__Noreturn] = ACTIONS(2852), + [anon_sym__Nonnull] = ACTIONS(2852), + [anon_sym_nullable] = ACTIONS(2852), + [anon_sym__Complex] = ACTIONS(2852), + [anon_sym__Nullable] = ACTIONS(2852), + [anon_sym__Nullable_result] = ACTIONS(2852), + [anon_sym__Null_unspecified] = ACTIONS(2852), + [anon_sym___autoreleasing] = ACTIONS(2852), + [anon_sym___block] = ACTIONS(2852), + [anon_sym___bridge] = ACTIONS(2852), + [anon_sym___bridge_retained] = ACTIONS(2852), + [anon_sym___bridge_transfer] = ACTIONS(2852), + [anon_sym___complex] = ACTIONS(2852), + [anon_sym___const] = ACTIONS(2852), + [anon_sym___imag] = ACTIONS(2852), + [anon_sym___kindof] = ACTIONS(2852), + [anon_sym___nonnull] = ACTIONS(2852), + [anon_sym___nullable] = ACTIONS(2852), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2852), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2852), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2852), + [anon_sym___real] = ACTIONS(2852), + [anon_sym___strong] = ACTIONS(2852), + [anon_sym___unsafe_unretained] = ACTIONS(2852), + [anon_sym___unused] = ACTIONS(2852), + [anon_sym___weak] = ACTIONS(2852), + [anon_sym_alignas] = ACTIONS(2852), + [anon_sym__Alignas] = ACTIONS(2852), + [sym_primitive_type] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2852), + [anon_sym_union] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_switch] = ACTIONS(2852), + [anon_sym_case] = ACTIONS(2852), + [anon_sym_default] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_in] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_break] = ACTIONS(2852), + [anon_sym_continue] = ACTIONS(2852), + [anon_sym_goto] = ACTIONS(2852), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_sizeof] = ACTIONS(2852), + [anon_sym___alignof__] = ACTIONS(2852), + [anon_sym___alignof] = ACTIONS(2852), + [anon_sym__alignof] = ACTIONS(2852), + [anon_sym_alignof] = ACTIONS(2852), + [anon_sym__Alignof] = ACTIONS(2852), + [anon_sym_offsetof] = ACTIONS(2852), + [anon_sym__Generic] = ACTIONS(2852), + [anon_sym_asm] = ACTIONS(2852), + [anon_sym___asm__] = ACTIONS(2852), + [anon_sym___asm] = ACTIONS(2852), + [sym_number_literal] = ACTIONS(2854), + [anon_sym_L_SQUOTE] = ACTIONS(2854), + [anon_sym_u_SQUOTE] = ACTIONS(2854), + [anon_sym_U_SQUOTE] = ACTIONS(2854), + [anon_sym_u8_SQUOTE] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_AT] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2854), + [anon_sym_L_DQUOTE] = ACTIONS(2854), + [anon_sym_u_DQUOTE] = ACTIONS(2854), + [anon_sym_U_DQUOTE] = ACTIONS(2854), + [anon_sym_u8_DQUOTE] = ACTIONS(2854), + [sym_true] = ACTIONS(2852), + [sym_false] = ACTIONS(2852), + [anon_sym_NULL] = ACTIONS(2852), + [anon_sym_nullptr] = ACTIONS(2852), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2852), + [anon_sym___typeof] = ACTIONS(2852), + [anon_sym_typeof] = ACTIONS(2852), + [anon_sym_ATimport] = ACTIONS(2854), + [aux_sym_preproc_undef_token1] = ACTIONS(2852), + [anon_sym_POUND] = ACTIONS(2852), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2852), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2852), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2852), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2852), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2852), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2852), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2852), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2852), + [anon_sym_NS_AVAILABLE] = ACTIONS(2852), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2852), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_API_AVAILABLE] = ACTIONS(2852), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_API_DEPRECATED] = ACTIONS(2852), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2852), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2852), + [anon_sym___deprecated_msg] = ACTIONS(2852), + [anon_sym___deprecated_enum_msg] = ACTIONS(2852), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2852), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2852), + [anon_sym_ATprotocol] = ACTIONS(2854), + [anon_sym_ATinterface] = ACTIONS(2854), + [anon_sym_ATimplementation] = ACTIONS(2854), + [anon_sym_ATcompatibility_alias] = ACTIONS(2854), + [anon_sym_ATsynthesize] = ACTIONS(2854), + [anon_sym_ATdynamic] = ACTIONS(2854), + [anon_sym_ATtry] = ACTIONS(2854), + [anon_sym___try] = ACTIONS(2852), + [anon_sym_ATthrow] = ACTIONS(2854), + [anon_sym_ATselector] = ACTIONS(2854), + [anon_sym_ATavailable] = ACTIONS(2854), + [anon_sym___builtin_available] = ACTIONS(2852), + [anon_sym_va_arg] = ACTIONS(2852), + [anon_sym_ATencode] = ACTIONS(2854), + [anon_sym_ATsynchronized] = ACTIONS(2854), + [anon_sym_BOOL] = ACTIONS(2852), + [anon_sym_IMP] = ACTIONS(2852), + [anon_sym_SEL] = ACTIONS(2852), + [anon_sym_Class] = ACTIONS(2852), + [anon_sym_id] = ACTIONS(2852), + }, + [672] = { + [sym_identifier] = ACTIONS(2856), + [aux_sym_preproc_include_token1] = ACTIONS(2856), + [aux_sym_preproc_include_token2] = ACTIONS(2856), + [aux_sym_preproc_def_token1] = ACTIONS(2856), + [aux_sym_preproc_if_token1] = ACTIONS(2856), + [aux_sym_preproc_if_token2] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2856), + [sym_preproc_directive] = ACTIONS(2856), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_CARET] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2858), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym___extension__] = ACTIONS(2856), + [anon_sym_typedef] = ACTIONS(2856), + [anon_sym_extern] = ACTIONS(2856), + [anon_sym___attribute__] = ACTIONS(2856), + [anon_sym___attribute] = ACTIONS(2856), + [anon_sym_noreturn] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2858), + [anon_sym___declspec] = ACTIONS(2856), + [anon_sym___cdecl] = ACTIONS(2856), + [anon_sym___clrcall] = ACTIONS(2856), + [anon_sym___stdcall] = ACTIONS(2856), + [anon_sym___fastcall] = ACTIONS(2856), + [anon_sym___thiscall] = ACTIONS(2856), + [anon_sym___vectorcall] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_signed] = ACTIONS(2856), + [anon_sym_unsigned] = ACTIONS(2856), + [anon_sym_long] = ACTIONS(2856), + [anon_sym_short] = ACTIONS(2856), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_ATautoreleasepool] = ACTIONS(2858), + [anon_sym_auto] = ACTIONS(2856), + [anon_sym_register] = ACTIONS(2856), + [anon_sym_inline] = ACTIONS(2856), + [anon_sym___inline] = ACTIONS(2856), + [anon_sym___inline__] = ACTIONS(2856), + [anon_sym___forceinline] = ACTIONS(2856), + [anon_sym_thread_local] = ACTIONS(2856), + [anon_sym___thread] = ACTIONS(2856), + [anon_sym_CG_EXTERN] = ACTIONS(2856), + [anon_sym_CG_INLINE] = ACTIONS(2856), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2856), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2856), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2856), + [anon_sym_IBOutlet] = ACTIONS(2856), + [anon_sym_IBInspectable] = ACTIONS(2856), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2856), + [anon_sym_NS_INLINE] = ACTIONS(2856), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2856), + [anon_sym_OBJC_EXPORT] = ACTIONS(2856), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2856), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2856), + [anon_sym_constexpr] = ACTIONS(2856), + [anon_sym_volatile] = ACTIONS(2856), + [anon_sym_restrict] = ACTIONS(2856), + [anon_sym___restrict__] = ACTIONS(2856), + [anon_sym__Atomic] = ACTIONS(2856), + [anon_sym__Noreturn] = ACTIONS(2856), + [anon_sym__Nonnull] = ACTIONS(2856), + [anon_sym_nullable] = ACTIONS(2856), + [anon_sym__Complex] = ACTIONS(2856), + [anon_sym__Nullable] = ACTIONS(2856), + [anon_sym__Nullable_result] = ACTIONS(2856), + [anon_sym__Null_unspecified] = ACTIONS(2856), + [anon_sym___autoreleasing] = ACTIONS(2856), + [anon_sym___block] = ACTIONS(2856), + [anon_sym___bridge] = ACTIONS(2856), + [anon_sym___bridge_retained] = ACTIONS(2856), + [anon_sym___bridge_transfer] = ACTIONS(2856), + [anon_sym___complex] = ACTIONS(2856), + [anon_sym___const] = ACTIONS(2856), + [anon_sym___imag] = ACTIONS(2856), + [anon_sym___kindof] = ACTIONS(2856), + [anon_sym___nonnull] = ACTIONS(2856), + [anon_sym___nullable] = ACTIONS(2856), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2856), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2856), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2856), + [anon_sym___real] = ACTIONS(2856), + [anon_sym___strong] = ACTIONS(2856), + [anon_sym___unsafe_unretained] = ACTIONS(2856), + [anon_sym___unused] = ACTIONS(2856), + [anon_sym___weak] = ACTIONS(2856), + [anon_sym_alignas] = ACTIONS(2856), + [anon_sym__Alignas] = ACTIONS(2856), + [sym_primitive_type] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2856), + [anon_sym_union] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_switch] = ACTIONS(2856), + [anon_sym_case] = ACTIONS(2856), + [anon_sym_default] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_in] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(2856), + [anon_sym_continue] = ACTIONS(2856), + [anon_sym_goto] = ACTIONS(2856), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_sizeof] = ACTIONS(2856), + [anon_sym___alignof__] = ACTIONS(2856), + [anon_sym___alignof] = ACTIONS(2856), + [anon_sym__alignof] = ACTIONS(2856), + [anon_sym_alignof] = ACTIONS(2856), + [anon_sym__Alignof] = ACTIONS(2856), + [anon_sym_offsetof] = ACTIONS(2856), + [anon_sym__Generic] = ACTIONS(2856), + [anon_sym_asm] = ACTIONS(2856), + [anon_sym___asm__] = ACTIONS(2856), + [anon_sym___asm] = ACTIONS(2856), + [sym_number_literal] = ACTIONS(2858), + [anon_sym_L_SQUOTE] = ACTIONS(2858), + [anon_sym_u_SQUOTE] = ACTIONS(2858), + [anon_sym_U_SQUOTE] = ACTIONS(2858), + [anon_sym_u8_SQUOTE] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_AT] = ACTIONS(2856), + [anon_sym_DQUOTE] = ACTIONS(2858), + [anon_sym_L_DQUOTE] = ACTIONS(2858), + [anon_sym_u_DQUOTE] = ACTIONS(2858), + [anon_sym_U_DQUOTE] = ACTIONS(2858), + [anon_sym_u8_DQUOTE] = ACTIONS(2858), + [sym_true] = ACTIONS(2856), + [sym_false] = ACTIONS(2856), + [anon_sym_NULL] = ACTIONS(2856), + [anon_sym_nullptr] = ACTIONS(2856), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2856), + [anon_sym___typeof] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2856), + [anon_sym_ATimport] = ACTIONS(2858), + [aux_sym_preproc_undef_token1] = ACTIONS(2856), + [anon_sym_POUND] = ACTIONS(2856), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2856), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2856), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2856), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2856), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2856), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2856), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2856), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2856), + [anon_sym_NS_AVAILABLE] = ACTIONS(2856), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2856), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_API_AVAILABLE] = ACTIONS(2856), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_API_DEPRECATED] = ACTIONS(2856), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2856), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2856), + [anon_sym___deprecated_msg] = ACTIONS(2856), + [anon_sym___deprecated_enum_msg] = ACTIONS(2856), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2856), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2856), + [anon_sym_ATprotocol] = ACTIONS(2858), + [anon_sym_ATinterface] = ACTIONS(2858), + [anon_sym_ATimplementation] = ACTIONS(2858), + [anon_sym_ATcompatibility_alias] = ACTIONS(2858), + [anon_sym_ATsynthesize] = ACTIONS(2858), + [anon_sym_ATdynamic] = ACTIONS(2858), + [anon_sym_ATtry] = ACTIONS(2858), + [anon_sym___try] = ACTIONS(2856), + [anon_sym_ATthrow] = ACTIONS(2858), + [anon_sym_ATselector] = ACTIONS(2858), + [anon_sym_ATavailable] = ACTIONS(2858), + [anon_sym___builtin_available] = ACTIONS(2856), + [anon_sym_va_arg] = ACTIONS(2856), + [anon_sym_ATencode] = ACTIONS(2858), + [anon_sym_ATsynchronized] = ACTIONS(2858), + [anon_sym_BOOL] = ACTIONS(2856), + [anon_sym_IMP] = ACTIONS(2856), + [anon_sym_SEL] = ACTIONS(2856), + [anon_sym_Class] = ACTIONS(2856), + [anon_sym_id] = ACTIONS(2856), + }, + [673] = { + [sym_identifier] = ACTIONS(2864), + [aux_sym_preproc_include_token1] = ACTIONS(2864), + [aux_sym_preproc_include_token2] = ACTIONS(2864), + [aux_sym_preproc_def_token1] = ACTIONS(2864), + [aux_sym_preproc_if_token1] = ACTIONS(2864), + [aux_sym_preproc_if_token2] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2864), + [sym_preproc_directive] = ACTIONS(2864), + [anon_sym_LPAREN2] = ACTIONS(2866), + [anon_sym_BANG] = ACTIONS(2866), + [anon_sym_TILDE] = ACTIONS(2866), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_CARET] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_SEMI] = ACTIONS(2866), + [anon_sym___extension__] = ACTIONS(2864), + [anon_sym_typedef] = ACTIONS(2864), + [anon_sym_extern] = ACTIONS(2864), + [anon_sym___attribute__] = ACTIONS(2864), + [anon_sym___attribute] = ACTIONS(2864), + [anon_sym_noreturn] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2866), + [anon_sym___declspec] = ACTIONS(2864), + [anon_sym___cdecl] = ACTIONS(2864), + [anon_sym___clrcall] = ACTIONS(2864), + [anon_sym___stdcall] = ACTIONS(2864), + [anon_sym___fastcall] = ACTIONS(2864), + [anon_sym___thiscall] = ACTIONS(2864), + [anon_sym___vectorcall] = ACTIONS(2864), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_signed] = ACTIONS(2864), + [anon_sym_unsigned] = ACTIONS(2864), + [anon_sym_long] = ACTIONS(2864), + [anon_sym_short] = ACTIONS(2864), + [anon_sym_static] = ACTIONS(2864), + [anon_sym_ATautoreleasepool] = ACTIONS(2866), + [anon_sym_auto] = ACTIONS(2864), + [anon_sym_register] = ACTIONS(2864), + [anon_sym_inline] = ACTIONS(2864), + [anon_sym___inline] = ACTIONS(2864), + [anon_sym___inline__] = ACTIONS(2864), + [anon_sym___forceinline] = ACTIONS(2864), + [anon_sym_thread_local] = ACTIONS(2864), + [anon_sym___thread] = ACTIONS(2864), + [anon_sym_CG_EXTERN] = ACTIONS(2864), + [anon_sym_CG_INLINE] = ACTIONS(2864), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2864), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2864), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2864), + [anon_sym_IBOutlet] = ACTIONS(2864), + [anon_sym_IBInspectable] = ACTIONS(2864), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2864), + [anon_sym_NS_INLINE] = ACTIONS(2864), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2864), + [anon_sym_OBJC_EXPORT] = ACTIONS(2864), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2864), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2864), + [anon_sym_const] = ACTIONS(2864), + [anon_sym_constexpr] = ACTIONS(2864), + [anon_sym_volatile] = ACTIONS(2864), + [anon_sym_restrict] = ACTIONS(2864), + [anon_sym___restrict__] = ACTIONS(2864), + [anon_sym__Atomic] = ACTIONS(2864), + [anon_sym__Noreturn] = ACTIONS(2864), + [anon_sym__Nonnull] = ACTIONS(2864), + [anon_sym_nullable] = ACTIONS(2864), + [anon_sym__Complex] = ACTIONS(2864), + [anon_sym__Nullable] = ACTIONS(2864), + [anon_sym__Nullable_result] = ACTIONS(2864), + [anon_sym__Null_unspecified] = ACTIONS(2864), + [anon_sym___autoreleasing] = ACTIONS(2864), + [anon_sym___block] = ACTIONS(2864), + [anon_sym___bridge] = ACTIONS(2864), + [anon_sym___bridge_retained] = ACTIONS(2864), + [anon_sym___bridge_transfer] = ACTIONS(2864), + [anon_sym___complex] = ACTIONS(2864), + [anon_sym___const] = ACTIONS(2864), + [anon_sym___imag] = ACTIONS(2864), + [anon_sym___kindof] = ACTIONS(2864), + [anon_sym___nonnull] = ACTIONS(2864), + [anon_sym___nullable] = ACTIONS(2864), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2864), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2864), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2864), + [anon_sym___real] = ACTIONS(2864), + [anon_sym___strong] = ACTIONS(2864), + [anon_sym___unsafe_unretained] = ACTIONS(2864), + [anon_sym___unused] = ACTIONS(2864), + [anon_sym___weak] = ACTIONS(2864), + [anon_sym_alignas] = ACTIONS(2864), + [anon_sym__Alignas] = ACTIONS(2864), + [sym_primitive_type] = ACTIONS(2864), + [anon_sym_enum] = ACTIONS(2864), + [anon_sym_struct] = ACTIONS(2864), + [anon_sym_union] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_switch] = ACTIONS(2864), + [anon_sym_case] = ACTIONS(2864), + [anon_sym_default] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_in] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_break] = ACTIONS(2864), + [anon_sym_continue] = ACTIONS(2864), + [anon_sym_goto] = ACTIONS(2864), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [anon_sym_PLUS_PLUS] = ACTIONS(2866), + [anon_sym_sizeof] = ACTIONS(2864), + [anon_sym___alignof__] = ACTIONS(2864), + [anon_sym___alignof] = ACTIONS(2864), + [anon_sym__alignof] = ACTIONS(2864), + [anon_sym_alignof] = ACTIONS(2864), + [anon_sym__Alignof] = ACTIONS(2864), + [anon_sym_offsetof] = ACTIONS(2864), + [anon_sym__Generic] = ACTIONS(2864), + [anon_sym_asm] = ACTIONS(2864), + [anon_sym___asm__] = ACTIONS(2864), + [anon_sym___asm] = ACTIONS(2864), + [sym_number_literal] = ACTIONS(2866), + [anon_sym_L_SQUOTE] = ACTIONS(2866), + [anon_sym_u_SQUOTE] = ACTIONS(2866), + [anon_sym_U_SQUOTE] = ACTIONS(2866), + [anon_sym_u8_SQUOTE] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_AT] = ACTIONS(2864), + [anon_sym_DQUOTE] = ACTIONS(2866), + [anon_sym_L_DQUOTE] = ACTIONS(2866), + [anon_sym_u_DQUOTE] = ACTIONS(2866), + [anon_sym_U_DQUOTE] = ACTIONS(2866), + [anon_sym_u8_DQUOTE] = ACTIONS(2866), + [sym_true] = ACTIONS(2864), + [sym_false] = ACTIONS(2864), + [anon_sym_NULL] = ACTIONS(2864), + [anon_sym_nullptr] = ACTIONS(2864), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2864), + [anon_sym___typeof] = ACTIONS(2864), + [anon_sym_typeof] = ACTIONS(2864), + [anon_sym_ATimport] = ACTIONS(2866), + [aux_sym_preproc_undef_token1] = ACTIONS(2864), + [anon_sym_POUND] = ACTIONS(2864), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2864), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2864), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2864), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2864), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2864), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2864), + [anon_sym_NS_AVAILABLE] = ACTIONS(2864), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2864), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_API_AVAILABLE] = ACTIONS(2864), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_API_DEPRECATED] = ACTIONS(2864), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2864), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2864), + [anon_sym___deprecated_msg] = ACTIONS(2864), + [anon_sym___deprecated_enum_msg] = ACTIONS(2864), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2864), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2864), + [anon_sym_ATprotocol] = ACTIONS(2866), + [anon_sym_ATinterface] = ACTIONS(2866), + [anon_sym_ATimplementation] = ACTIONS(2866), + [anon_sym_ATcompatibility_alias] = ACTIONS(2866), + [anon_sym_ATsynthesize] = ACTIONS(2866), + [anon_sym_ATdynamic] = ACTIONS(2866), + [anon_sym_ATtry] = ACTIONS(2866), + [anon_sym___try] = ACTIONS(2864), + [anon_sym_ATthrow] = ACTIONS(2866), + [anon_sym_ATselector] = ACTIONS(2866), + [anon_sym_ATavailable] = ACTIONS(2866), + [anon_sym___builtin_available] = ACTIONS(2864), + [anon_sym_va_arg] = ACTIONS(2864), + [anon_sym_ATencode] = ACTIONS(2866), + [anon_sym_ATsynchronized] = ACTIONS(2866), + [anon_sym_BOOL] = ACTIONS(2864), + [anon_sym_IMP] = ACTIONS(2864), + [anon_sym_SEL] = ACTIONS(2864), + [anon_sym_Class] = ACTIONS(2864), + [anon_sym_id] = ACTIONS(2864), + }, + [674] = { + [sym_identifier] = ACTIONS(2868), + [aux_sym_preproc_include_token1] = ACTIONS(2868), + [aux_sym_preproc_include_token2] = ACTIONS(2868), + [aux_sym_preproc_def_token1] = ACTIONS(2868), + [aux_sym_preproc_if_token1] = ACTIONS(2868), + [aux_sym_preproc_if_token2] = ACTIONS(2868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2868), + [sym_preproc_directive] = ACTIONS(2868), + [anon_sym_LPAREN2] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_CARET] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym___extension__] = ACTIONS(2868), + [anon_sym_typedef] = ACTIONS(2868), + [anon_sym_extern] = ACTIONS(2868), + [anon_sym___attribute__] = ACTIONS(2868), + [anon_sym___attribute] = ACTIONS(2868), + [anon_sym_noreturn] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2870), + [anon_sym___declspec] = ACTIONS(2868), + [anon_sym___cdecl] = ACTIONS(2868), + [anon_sym___clrcall] = ACTIONS(2868), + [anon_sym___stdcall] = ACTIONS(2868), + [anon_sym___fastcall] = ACTIONS(2868), + [anon_sym___thiscall] = ACTIONS(2868), + [anon_sym___vectorcall] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_signed] = ACTIONS(2868), + [anon_sym_unsigned] = ACTIONS(2868), + [anon_sym_long] = ACTIONS(2868), + [anon_sym_short] = ACTIONS(2868), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_ATautoreleasepool] = ACTIONS(2870), + [anon_sym_auto] = ACTIONS(2868), + [anon_sym_register] = ACTIONS(2868), + [anon_sym_inline] = ACTIONS(2868), + [anon_sym___inline] = ACTIONS(2868), + [anon_sym___inline__] = ACTIONS(2868), + [anon_sym___forceinline] = ACTIONS(2868), + [anon_sym_thread_local] = ACTIONS(2868), + [anon_sym___thread] = ACTIONS(2868), + [anon_sym_CG_EXTERN] = ACTIONS(2868), + [anon_sym_CG_INLINE] = ACTIONS(2868), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2868), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2868), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2868), + [anon_sym_IBOutlet] = ACTIONS(2868), + [anon_sym_IBInspectable] = ACTIONS(2868), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2868), + [anon_sym_NS_INLINE] = ACTIONS(2868), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2868), + [anon_sym_OBJC_EXPORT] = ACTIONS(2868), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2868), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2868), + [anon_sym_const] = ACTIONS(2868), + [anon_sym_constexpr] = ACTIONS(2868), + [anon_sym_volatile] = ACTIONS(2868), + [anon_sym_restrict] = ACTIONS(2868), + [anon_sym___restrict__] = ACTIONS(2868), + [anon_sym__Atomic] = ACTIONS(2868), + [anon_sym__Noreturn] = ACTIONS(2868), + [anon_sym__Nonnull] = ACTIONS(2868), + [anon_sym_nullable] = ACTIONS(2868), + [anon_sym__Complex] = ACTIONS(2868), + [anon_sym__Nullable] = ACTIONS(2868), + [anon_sym__Nullable_result] = ACTIONS(2868), + [anon_sym__Null_unspecified] = ACTIONS(2868), + [anon_sym___autoreleasing] = ACTIONS(2868), + [anon_sym___block] = ACTIONS(2868), + [anon_sym___bridge] = ACTIONS(2868), + [anon_sym___bridge_retained] = ACTIONS(2868), + [anon_sym___bridge_transfer] = ACTIONS(2868), + [anon_sym___complex] = ACTIONS(2868), + [anon_sym___const] = ACTIONS(2868), + [anon_sym___imag] = ACTIONS(2868), + [anon_sym___kindof] = ACTIONS(2868), + [anon_sym___nonnull] = ACTIONS(2868), + [anon_sym___nullable] = ACTIONS(2868), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2868), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2868), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2868), + [anon_sym___real] = ACTIONS(2868), + [anon_sym___strong] = ACTIONS(2868), + [anon_sym___unsafe_unretained] = ACTIONS(2868), + [anon_sym___unused] = ACTIONS(2868), + [anon_sym___weak] = ACTIONS(2868), + [anon_sym_alignas] = ACTIONS(2868), + [anon_sym__Alignas] = ACTIONS(2868), + [sym_primitive_type] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2868), + [anon_sym_union] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_switch] = ACTIONS(2868), + [anon_sym_case] = ACTIONS(2868), + [anon_sym_default] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_in] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_goto] = ACTIONS(2868), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_sizeof] = ACTIONS(2868), + [anon_sym___alignof__] = ACTIONS(2868), + [anon_sym___alignof] = ACTIONS(2868), + [anon_sym__alignof] = ACTIONS(2868), + [anon_sym_alignof] = ACTIONS(2868), + [anon_sym__Alignof] = ACTIONS(2868), + [anon_sym_offsetof] = ACTIONS(2868), + [anon_sym__Generic] = ACTIONS(2868), + [anon_sym_asm] = ACTIONS(2868), + [anon_sym___asm__] = ACTIONS(2868), + [anon_sym___asm] = ACTIONS(2868), + [sym_number_literal] = ACTIONS(2870), + [anon_sym_L_SQUOTE] = ACTIONS(2870), + [anon_sym_u_SQUOTE] = ACTIONS(2870), + [anon_sym_U_SQUOTE] = ACTIONS(2870), + [anon_sym_u8_SQUOTE] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_AT] = ACTIONS(2868), + [anon_sym_DQUOTE] = ACTIONS(2870), + [anon_sym_L_DQUOTE] = ACTIONS(2870), + [anon_sym_u_DQUOTE] = ACTIONS(2870), + [anon_sym_U_DQUOTE] = ACTIONS(2870), + [anon_sym_u8_DQUOTE] = ACTIONS(2870), + [sym_true] = ACTIONS(2868), + [sym_false] = ACTIONS(2868), + [anon_sym_NULL] = ACTIONS(2868), + [anon_sym_nullptr] = ACTIONS(2868), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2868), + [anon_sym___typeof] = ACTIONS(2868), + [anon_sym_typeof] = ACTIONS(2868), + [anon_sym_ATimport] = ACTIONS(2870), + [aux_sym_preproc_undef_token1] = ACTIONS(2868), + [anon_sym_POUND] = ACTIONS(2868), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2868), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2868), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2868), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2868), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2868), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2868), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2868), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2868), + [anon_sym_NS_AVAILABLE] = ACTIONS(2868), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_API_AVAILABLE] = ACTIONS(2868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_API_DEPRECATED] = ACTIONS(2868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2868), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2868), + [anon_sym___deprecated_msg] = ACTIONS(2868), + [anon_sym___deprecated_enum_msg] = ACTIONS(2868), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2868), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2868), + [anon_sym_ATprotocol] = ACTIONS(2870), + [anon_sym_ATinterface] = ACTIONS(2870), + [anon_sym_ATimplementation] = ACTIONS(2870), + [anon_sym_ATcompatibility_alias] = ACTIONS(2870), + [anon_sym_ATsynthesize] = ACTIONS(2870), + [anon_sym_ATdynamic] = ACTIONS(2870), + [anon_sym_ATtry] = ACTIONS(2870), + [anon_sym___try] = ACTIONS(2868), + [anon_sym_ATthrow] = ACTIONS(2870), + [anon_sym_ATselector] = ACTIONS(2870), + [anon_sym_ATavailable] = ACTIONS(2870), + [anon_sym___builtin_available] = ACTIONS(2868), + [anon_sym_va_arg] = ACTIONS(2868), + [anon_sym_ATencode] = ACTIONS(2870), + [anon_sym_ATsynchronized] = ACTIONS(2870), + [anon_sym_BOOL] = ACTIONS(2868), + [anon_sym_IMP] = ACTIONS(2868), + [anon_sym_SEL] = ACTIONS(2868), + [anon_sym_Class] = ACTIONS(2868), + [anon_sym_id] = ACTIONS(2868), + }, + [675] = { + [sym_identifier] = ACTIONS(2576), + [aux_sym_preproc_include_token1] = ACTIONS(2576), + [aux_sym_preproc_include_token2] = ACTIONS(2576), + [aux_sym_preproc_def_token1] = ACTIONS(2576), + [aux_sym_preproc_if_token1] = ACTIONS(2576), + [aux_sym_preproc_if_token2] = ACTIONS(2576), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2576), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2576), + [sym_preproc_directive] = ACTIONS(2576), + [anon_sym_LPAREN2] = ACTIONS(2578), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_CARET] = ACTIONS(2578), + [anon_sym_AMP] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym___extension__] = ACTIONS(2576), + [anon_sym_typedef] = ACTIONS(2576), + [anon_sym_extern] = ACTIONS(2576), + [anon_sym___attribute__] = ACTIONS(2576), + [anon_sym___attribute] = ACTIONS(2576), + [anon_sym_noreturn] = ACTIONS(2576), + [anon_sym_LBRACK] = ACTIONS(2578), + [anon_sym___declspec] = ACTIONS(2576), + [anon_sym___cdecl] = ACTIONS(2576), + [anon_sym___clrcall] = ACTIONS(2576), + [anon_sym___stdcall] = ACTIONS(2576), + [anon_sym___fastcall] = ACTIONS(2576), + [anon_sym___thiscall] = ACTIONS(2576), + [anon_sym___vectorcall] = ACTIONS(2576), + [anon_sym_LBRACE] = ACTIONS(2578), + [anon_sym_signed] = ACTIONS(2576), + [anon_sym_unsigned] = ACTIONS(2576), + [anon_sym_long] = ACTIONS(2576), + [anon_sym_short] = ACTIONS(2576), + [anon_sym_static] = ACTIONS(2576), + [anon_sym_ATautoreleasepool] = ACTIONS(2578), + [anon_sym_auto] = ACTIONS(2576), + [anon_sym_register] = ACTIONS(2576), + [anon_sym_inline] = ACTIONS(2576), + [anon_sym___inline] = ACTIONS(2576), + [anon_sym___inline__] = ACTIONS(2576), + [anon_sym___forceinline] = ACTIONS(2576), + [anon_sym_thread_local] = ACTIONS(2576), + [anon_sym___thread] = ACTIONS(2576), + [anon_sym_CG_EXTERN] = ACTIONS(2576), + [anon_sym_CG_INLINE] = ACTIONS(2576), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2576), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2576), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2576), + [anon_sym_IBOutlet] = ACTIONS(2576), + [anon_sym_IBInspectable] = ACTIONS(2576), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2576), + [anon_sym_NS_INLINE] = ACTIONS(2576), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2576), + [anon_sym_OBJC_EXPORT] = ACTIONS(2576), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2576), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2576), + [anon_sym_const] = ACTIONS(2576), + [anon_sym_constexpr] = ACTIONS(2576), + [anon_sym_volatile] = ACTIONS(2576), + [anon_sym_restrict] = ACTIONS(2576), + [anon_sym___restrict__] = ACTIONS(2576), + [anon_sym__Atomic] = ACTIONS(2576), + [anon_sym__Noreturn] = ACTIONS(2576), + [anon_sym__Nonnull] = ACTIONS(2576), + [anon_sym_nullable] = ACTIONS(2576), + [anon_sym__Complex] = ACTIONS(2576), + [anon_sym__Nullable] = ACTIONS(2576), + [anon_sym__Nullable_result] = ACTIONS(2576), + [anon_sym__Null_unspecified] = ACTIONS(2576), + [anon_sym___autoreleasing] = ACTIONS(2576), + [anon_sym___block] = ACTIONS(2576), + [anon_sym___bridge] = ACTIONS(2576), + [anon_sym___bridge_retained] = ACTIONS(2576), + [anon_sym___bridge_transfer] = ACTIONS(2576), + [anon_sym___complex] = ACTIONS(2576), + [anon_sym___const] = ACTIONS(2576), + [anon_sym___imag] = ACTIONS(2576), + [anon_sym___kindof] = ACTIONS(2576), + [anon_sym___nonnull] = ACTIONS(2576), + [anon_sym___nullable] = ACTIONS(2576), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2576), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2576), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2576), + [anon_sym___real] = ACTIONS(2576), + [anon_sym___strong] = ACTIONS(2576), + [anon_sym___unsafe_unretained] = ACTIONS(2576), + [anon_sym___unused] = ACTIONS(2576), + [anon_sym___weak] = ACTIONS(2576), + [anon_sym_alignas] = ACTIONS(2576), + [anon_sym__Alignas] = ACTIONS(2576), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2576), + [anon_sym_struct] = ACTIONS(2576), + [anon_sym_union] = ACTIONS(2576), + [anon_sym_if] = ACTIONS(2576), + [anon_sym_switch] = ACTIONS(2576), + [anon_sym_case] = ACTIONS(2576), + [anon_sym_default] = ACTIONS(2576), + [anon_sym_while] = ACTIONS(2576), + [anon_sym_do] = ACTIONS(2576), + [anon_sym_for] = ACTIONS(2576), + [anon_sym_in] = ACTIONS(2576), + [anon_sym_return] = ACTIONS(2576), + [anon_sym_break] = ACTIONS(2576), + [anon_sym_continue] = ACTIONS(2576), + [anon_sym_goto] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(2578), + [anon_sym_PLUS_PLUS] = ACTIONS(2578), + [anon_sym_sizeof] = ACTIONS(2576), + [anon_sym___alignof__] = ACTIONS(2576), + [anon_sym___alignof] = ACTIONS(2576), + [anon_sym__alignof] = ACTIONS(2576), + [anon_sym_alignof] = ACTIONS(2576), + [anon_sym__Alignof] = ACTIONS(2576), + [anon_sym_offsetof] = ACTIONS(2576), + [anon_sym__Generic] = ACTIONS(2576), + [anon_sym_asm] = ACTIONS(2576), + [anon_sym___asm__] = ACTIONS(2576), + [anon_sym___asm] = ACTIONS(2576), + [sym_number_literal] = ACTIONS(2578), + [anon_sym_L_SQUOTE] = ACTIONS(2578), + [anon_sym_u_SQUOTE] = ACTIONS(2578), + [anon_sym_U_SQUOTE] = ACTIONS(2578), + [anon_sym_u8_SQUOTE] = ACTIONS(2578), + [anon_sym_SQUOTE] = ACTIONS(2578), + [anon_sym_AT] = ACTIONS(2576), + [anon_sym_DQUOTE] = ACTIONS(2578), + [anon_sym_L_DQUOTE] = ACTIONS(2578), + [anon_sym_u_DQUOTE] = ACTIONS(2578), + [anon_sym_U_DQUOTE] = ACTIONS(2578), + [anon_sym_u8_DQUOTE] = ACTIONS(2578), + [sym_true] = ACTIONS(2576), + [sym_false] = ACTIONS(2576), + [anon_sym_NULL] = ACTIONS(2576), + [anon_sym_nullptr] = ACTIONS(2576), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2576), + [anon_sym___typeof] = ACTIONS(2576), + [anon_sym_typeof] = ACTIONS(2576), + [anon_sym_ATimport] = ACTIONS(2578), + [aux_sym_preproc_undef_token1] = ACTIONS(2576), + [anon_sym_POUND] = ACTIONS(2576), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2576), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2576), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2576), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2576), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2576), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2576), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2576), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2576), + [anon_sym_NS_AVAILABLE] = ACTIONS(2576), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2576), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_API_AVAILABLE] = ACTIONS(2576), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_API_DEPRECATED] = ACTIONS(2576), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2576), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2576), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2576), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2576), + [anon_sym___deprecated_msg] = ACTIONS(2576), + [anon_sym___deprecated_enum_msg] = ACTIONS(2576), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2576), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2576), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2576), + [anon_sym_ATprotocol] = ACTIONS(2578), + [anon_sym_ATinterface] = ACTIONS(2578), + [anon_sym_ATimplementation] = ACTIONS(2578), + [anon_sym_ATcompatibility_alias] = ACTIONS(2578), + [anon_sym_ATsynthesize] = ACTIONS(2578), + [anon_sym_ATdynamic] = ACTIONS(2578), + [anon_sym_ATtry] = ACTIONS(2578), + [anon_sym___try] = ACTIONS(2576), + [anon_sym_ATthrow] = ACTIONS(2578), + [anon_sym_ATselector] = ACTIONS(2578), + [anon_sym_ATavailable] = ACTIONS(2578), + [anon_sym___builtin_available] = ACTIONS(2576), + [anon_sym_va_arg] = ACTIONS(2576), + [anon_sym_ATencode] = ACTIONS(2578), + [anon_sym_ATsynchronized] = ACTIONS(2578), + [anon_sym_BOOL] = ACTIONS(2576), + [anon_sym_IMP] = ACTIONS(2576), + [anon_sym_SEL] = ACTIONS(2576), + [anon_sym_Class] = ACTIONS(2576), + [anon_sym_id] = ACTIONS(2576), + }, + [676] = { + [sym_identifier] = ACTIONS(2828), + [aux_sym_preproc_include_token1] = ACTIONS(2828), + [aux_sym_preproc_include_token2] = ACTIONS(2828), + [aux_sym_preproc_def_token1] = ACTIONS(2828), + [aux_sym_preproc_if_token1] = ACTIONS(2828), + [aux_sym_preproc_if_token2] = ACTIONS(2828), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2828), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2828), + [sym_preproc_directive] = ACTIONS(2828), + [anon_sym_LPAREN2] = ACTIONS(2830), + [anon_sym_BANG] = ACTIONS(2830), + [anon_sym_TILDE] = ACTIONS(2830), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_PLUS] = ACTIONS(2828), + [anon_sym_STAR] = ACTIONS(2830), + [anon_sym_CARET] = ACTIONS(2830), + [anon_sym_AMP] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym___extension__] = ACTIONS(2828), + [anon_sym_typedef] = ACTIONS(2828), + [anon_sym_extern] = ACTIONS(2828), + [anon_sym___attribute__] = ACTIONS(2828), + [anon_sym___attribute] = ACTIONS(2828), + [anon_sym_noreturn] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym___declspec] = ACTIONS(2828), + [anon_sym___cdecl] = ACTIONS(2828), + [anon_sym___clrcall] = ACTIONS(2828), + [anon_sym___stdcall] = ACTIONS(2828), + [anon_sym___fastcall] = ACTIONS(2828), + [anon_sym___thiscall] = ACTIONS(2828), + [anon_sym___vectorcall] = ACTIONS(2828), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_signed] = ACTIONS(2828), + [anon_sym_unsigned] = ACTIONS(2828), + [anon_sym_long] = ACTIONS(2828), + [anon_sym_short] = ACTIONS(2828), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_ATautoreleasepool] = ACTIONS(2830), + [anon_sym_auto] = ACTIONS(2828), + [anon_sym_register] = ACTIONS(2828), + [anon_sym_inline] = ACTIONS(2828), + [anon_sym___inline] = ACTIONS(2828), + [anon_sym___inline__] = ACTIONS(2828), + [anon_sym___forceinline] = ACTIONS(2828), + [anon_sym_thread_local] = ACTIONS(2828), + [anon_sym___thread] = ACTIONS(2828), + [anon_sym_CG_EXTERN] = ACTIONS(2828), + [anon_sym_CG_INLINE] = ACTIONS(2828), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2828), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2828), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2828), + [anon_sym_IBOutlet] = ACTIONS(2828), + [anon_sym_IBInspectable] = ACTIONS(2828), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2828), + [anon_sym_NS_INLINE] = ACTIONS(2828), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2828), + [anon_sym_OBJC_EXPORT] = ACTIONS(2828), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2828), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2828), + [anon_sym_const] = ACTIONS(2828), + [anon_sym_constexpr] = ACTIONS(2828), + [anon_sym_volatile] = ACTIONS(2828), + [anon_sym_restrict] = ACTIONS(2828), + [anon_sym___restrict__] = ACTIONS(2828), + [anon_sym__Atomic] = ACTIONS(2828), + [anon_sym__Noreturn] = ACTIONS(2828), + [anon_sym__Nonnull] = ACTIONS(2828), + [anon_sym_nullable] = ACTIONS(2828), + [anon_sym__Complex] = ACTIONS(2828), + [anon_sym__Nullable] = ACTIONS(2828), + [anon_sym__Nullable_result] = ACTIONS(2828), + [anon_sym__Null_unspecified] = ACTIONS(2828), + [anon_sym___autoreleasing] = ACTIONS(2828), + [anon_sym___block] = ACTIONS(2828), + [anon_sym___bridge] = ACTIONS(2828), + [anon_sym___bridge_retained] = ACTIONS(2828), + [anon_sym___bridge_transfer] = ACTIONS(2828), + [anon_sym___complex] = ACTIONS(2828), + [anon_sym___const] = ACTIONS(2828), + [anon_sym___imag] = ACTIONS(2828), + [anon_sym___kindof] = ACTIONS(2828), + [anon_sym___nonnull] = ACTIONS(2828), + [anon_sym___nullable] = ACTIONS(2828), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2828), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2828), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2828), + [anon_sym___real] = ACTIONS(2828), + [anon_sym___strong] = ACTIONS(2828), + [anon_sym___unsafe_unretained] = ACTIONS(2828), + [anon_sym___unused] = ACTIONS(2828), + [anon_sym___weak] = ACTIONS(2828), + [anon_sym_alignas] = ACTIONS(2828), + [anon_sym__Alignas] = ACTIONS(2828), + [sym_primitive_type] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [anon_sym_struct] = ACTIONS(2828), + [anon_sym_union] = ACTIONS(2828), + [anon_sym_if] = ACTIONS(2828), + [anon_sym_switch] = ACTIONS(2828), + [anon_sym_case] = ACTIONS(2828), + [anon_sym_default] = ACTIONS(2828), + [anon_sym_while] = ACTIONS(2828), + [anon_sym_do] = ACTIONS(2828), + [anon_sym_for] = ACTIONS(2828), + [anon_sym_in] = ACTIONS(2828), + [anon_sym_return] = ACTIONS(2828), + [anon_sym_break] = ACTIONS(2828), + [anon_sym_continue] = ACTIONS(2828), + [anon_sym_goto] = ACTIONS(2828), + [anon_sym_DASH_DASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2830), + [anon_sym_sizeof] = ACTIONS(2828), + [anon_sym___alignof__] = ACTIONS(2828), + [anon_sym___alignof] = ACTIONS(2828), + [anon_sym__alignof] = ACTIONS(2828), + [anon_sym_alignof] = ACTIONS(2828), + [anon_sym__Alignof] = ACTIONS(2828), + [anon_sym_offsetof] = ACTIONS(2828), + [anon_sym__Generic] = ACTIONS(2828), + [anon_sym_asm] = ACTIONS(2828), + [anon_sym___asm__] = ACTIONS(2828), + [anon_sym___asm] = ACTIONS(2828), + [sym_number_literal] = ACTIONS(2830), + [anon_sym_L_SQUOTE] = ACTIONS(2830), + [anon_sym_u_SQUOTE] = ACTIONS(2830), + [anon_sym_U_SQUOTE] = ACTIONS(2830), + [anon_sym_u8_SQUOTE] = ACTIONS(2830), + [anon_sym_SQUOTE] = ACTIONS(2830), + [anon_sym_AT] = ACTIONS(2828), + [anon_sym_DQUOTE] = ACTIONS(2830), + [anon_sym_L_DQUOTE] = ACTIONS(2830), + [anon_sym_u_DQUOTE] = ACTIONS(2830), + [anon_sym_U_DQUOTE] = ACTIONS(2830), + [anon_sym_u8_DQUOTE] = ACTIONS(2830), + [sym_true] = ACTIONS(2828), + [sym_false] = ACTIONS(2828), + [anon_sym_NULL] = ACTIONS(2828), + [anon_sym_nullptr] = ACTIONS(2828), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2828), + [anon_sym___typeof] = ACTIONS(2828), + [anon_sym_typeof] = ACTIONS(2828), + [anon_sym_ATimport] = ACTIONS(2830), + [aux_sym_preproc_undef_token1] = ACTIONS(2828), + [anon_sym_POUND] = ACTIONS(2828), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2828), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2828), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2828), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2828), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2828), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2828), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2828), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2828), + [anon_sym_NS_AVAILABLE] = ACTIONS(2828), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2828), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_API_AVAILABLE] = ACTIONS(2828), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_API_DEPRECATED] = ACTIONS(2828), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2828), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2828), + [anon_sym___deprecated_msg] = ACTIONS(2828), + [anon_sym___deprecated_enum_msg] = ACTIONS(2828), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2828), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2828), + [anon_sym_ATprotocol] = ACTIONS(2830), + [anon_sym_ATinterface] = ACTIONS(2830), + [anon_sym_ATimplementation] = ACTIONS(2830), + [anon_sym_ATcompatibility_alias] = ACTIONS(2830), + [anon_sym_ATsynthesize] = ACTIONS(2830), + [anon_sym_ATdynamic] = ACTIONS(2830), + [anon_sym_ATtry] = ACTIONS(2830), + [anon_sym___try] = ACTIONS(2828), + [anon_sym_ATthrow] = ACTIONS(2830), + [anon_sym_ATselector] = ACTIONS(2830), + [anon_sym_ATavailable] = ACTIONS(2830), + [anon_sym___builtin_available] = ACTIONS(2828), + [anon_sym_va_arg] = ACTIONS(2828), + [anon_sym_ATencode] = ACTIONS(2830), + [anon_sym_ATsynchronized] = ACTIONS(2830), + [anon_sym_BOOL] = ACTIONS(2828), + [anon_sym_IMP] = ACTIONS(2828), + [anon_sym_SEL] = ACTIONS(2828), + [anon_sym_Class] = ACTIONS(2828), + [anon_sym_id] = ACTIONS(2828), + }, + [677] = { + [sym_identifier] = ACTIONS(2872), + [aux_sym_preproc_include_token1] = ACTIONS(2872), + [aux_sym_preproc_include_token2] = ACTIONS(2872), + [aux_sym_preproc_def_token1] = ACTIONS(2872), + [aux_sym_preproc_if_token1] = ACTIONS(2872), + [aux_sym_preproc_if_token2] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2872), + [sym_preproc_directive] = ACTIONS(2872), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_CARET] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2874), + [anon_sym___extension__] = ACTIONS(2872), + [anon_sym_typedef] = ACTIONS(2872), + [anon_sym_extern] = ACTIONS(2872), + [anon_sym___attribute__] = ACTIONS(2872), + [anon_sym___attribute] = ACTIONS(2872), + [anon_sym_noreturn] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2874), + [anon_sym___declspec] = ACTIONS(2872), + [anon_sym___cdecl] = ACTIONS(2872), + [anon_sym___clrcall] = ACTIONS(2872), + [anon_sym___stdcall] = ACTIONS(2872), + [anon_sym___fastcall] = ACTIONS(2872), + [anon_sym___thiscall] = ACTIONS(2872), + [anon_sym___vectorcall] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_signed] = ACTIONS(2872), + [anon_sym_unsigned] = ACTIONS(2872), + [anon_sym_long] = ACTIONS(2872), + [anon_sym_short] = ACTIONS(2872), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_ATautoreleasepool] = ACTIONS(2874), + [anon_sym_auto] = ACTIONS(2872), + [anon_sym_register] = ACTIONS(2872), + [anon_sym_inline] = ACTIONS(2872), + [anon_sym___inline] = ACTIONS(2872), + [anon_sym___inline__] = ACTIONS(2872), + [anon_sym___forceinline] = ACTIONS(2872), + [anon_sym_thread_local] = ACTIONS(2872), + [anon_sym___thread] = ACTIONS(2872), + [anon_sym_CG_EXTERN] = ACTIONS(2872), + [anon_sym_CG_INLINE] = ACTIONS(2872), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2872), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2872), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2872), + [anon_sym_IBOutlet] = ACTIONS(2872), + [anon_sym_IBInspectable] = ACTIONS(2872), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2872), + [anon_sym_NS_INLINE] = ACTIONS(2872), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2872), + [anon_sym_OBJC_EXPORT] = ACTIONS(2872), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2872), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2872), + [anon_sym_const] = ACTIONS(2872), + [anon_sym_constexpr] = ACTIONS(2872), + [anon_sym_volatile] = ACTIONS(2872), + [anon_sym_restrict] = ACTIONS(2872), + [anon_sym___restrict__] = ACTIONS(2872), + [anon_sym__Atomic] = ACTIONS(2872), + [anon_sym__Noreturn] = ACTIONS(2872), + [anon_sym__Nonnull] = ACTIONS(2872), + [anon_sym_nullable] = ACTIONS(2872), + [anon_sym__Complex] = ACTIONS(2872), + [anon_sym__Nullable] = ACTIONS(2872), + [anon_sym__Nullable_result] = ACTIONS(2872), + [anon_sym__Null_unspecified] = ACTIONS(2872), + [anon_sym___autoreleasing] = ACTIONS(2872), + [anon_sym___block] = ACTIONS(2872), + [anon_sym___bridge] = ACTIONS(2872), + [anon_sym___bridge_retained] = ACTIONS(2872), + [anon_sym___bridge_transfer] = ACTIONS(2872), + [anon_sym___complex] = ACTIONS(2872), + [anon_sym___const] = ACTIONS(2872), + [anon_sym___imag] = ACTIONS(2872), + [anon_sym___kindof] = ACTIONS(2872), + [anon_sym___nonnull] = ACTIONS(2872), + [anon_sym___nullable] = ACTIONS(2872), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2872), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2872), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2872), + [anon_sym___real] = ACTIONS(2872), + [anon_sym___strong] = ACTIONS(2872), + [anon_sym___unsafe_unretained] = ACTIONS(2872), + [anon_sym___unused] = ACTIONS(2872), + [anon_sym___weak] = ACTIONS(2872), + [anon_sym_alignas] = ACTIONS(2872), + [anon_sym__Alignas] = ACTIONS(2872), + [sym_primitive_type] = ACTIONS(2872), + [anon_sym_enum] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2872), + [anon_sym_union] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_switch] = ACTIONS(2872), + [anon_sym_case] = ACTIONS(2872), + [anon_sym_default] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_in] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_break] = ACTIONS(2872), + [anon_sym_continue] = ACTIONS(2872), + [anon_sym_goto] = ACTIONS(2872), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_sizeof] = ACTIONS(2872), + [anon_sym___alignof__] = ACTIONS(2872), + [anon_sym___alignof] = ACTIONS(2872), + [anon_sym__alignof] = ACTIONS(2872), + [anon_sym_alignof] = ACTIONS(2872), + [anon_sym__Alignof] = ACTIONS(2872), + [anon_sym_offsetof] = ACTIONS(2872), + [anon_sym__Generic] = ACTIONS(2872), + [anon_sym_asm] = ACTIONS(2872), + [anon_sym___asm__] = ACTIONS(2872), + [anon_sym___asm] = ACTIONS(2872), + [sym_number_literal] = ACTIONS(2874), + [anon_sym_L_SQUOTE] = ACTIONS(2874), + [anon_sym_u_SQUOTE] = ACTIONS(2874), + [anon_sym_U_SQUOTE] = ACTIONS(2874), + [anon_sym_u8_SQUOTE] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_AT] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(2874), + [anon_sym_L_DQUOTE] = ACTIONS(2874), + [anon_sym_u_DQUOTE] = ACTIONS(2874), + [anon_sym_U_DQUOTE] = ACTIONS(2874), + [anon_sym_u8_DQUOTE] = ACTIONS(2874), + [sym_true] = ACTIONS(2872), + [sym_false] = ACTIONS(2872), + [anon_sym_NULL] = ACTIONS(2872), + [anon_sym_nullptr] = ACTIONS(2872), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2872), + [anon_sym___typeof] = ACTIONS(2872), + [anon_sym_typeof] = ACTIONS(2872), + [anon_sym_ATimport] = ACTIONS(2874), + [aux_sym_preproc_undef_token1] = ACTIONS(2872), + [anon_sym_POUND] = ACTIONS(2872), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2872), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2872), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2872), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2872), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2872), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2872), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2872), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2872), + [anon_sym_NS_AVAILABLE] = ACTIONS(2872), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2872), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_API_AVAILABLE] = ACTIONS(2872), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_API_DEPRECATED] = ACTIONS(2872), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2872), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2872), + [anon_sym___deprecated_msg] = ACTIONS(2872), + [anon_sym___deprecated_enum_msg] = ACTIONS(2872), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2872), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2872), + [anon_sym_ATprotocol] = ACTIONS(2874), + [anon_sym_ATinterface] = ACTIONS(2874), + [anon_sym_ATimplementation] = ACTIONS(2874), + [anon_sym_ATcompatibility_alias] = ACTIONS(2874), + [anon_sym_ATsynthesize] = ACTIONS(2874), + [anon_sym_ATdynamic] = ACTIONS(2874), + [anon_sym_ATtry] = ACTIONS(2874), + [anon_sym___try] = ACTIONS(2872), + [anon_sym_ATthrow] = ACTIONS(2874), + [anon_sym_ATselector] = ACTIONS(2874), + [anon_sym_ATavailable] = ACTIONS(2874), + [anon_sym___builtin_available] = ACTIONS(2872), + [anon_sym_va_arg] = ACTIONS(2872), + [anon_sym_ATencode] = ACTIONS(2874), + [anon_sym_ATsynchronized] = ACTIONS(2874), + [anon_sym_BOOL] = ACTIONS(2872), + [anon_sym_IMP] = ACTIONS(2872), + [anon_sym_SEL] = ACTIONS(2872), + [anon_sym_Class] = ACTIONS(2872), + [anon_sym_id] = ACTIONS(2872), + }, + [678] = { + [sym_identifier] = ACTIONS(2652), + [aux_sym_preproc_include_token1] = ACTIONS(2652), + [aux_sym_preproc_include_token2] = ACTIONS(2652), + [aux_sym_preproc_def_token1] = ACTIONS(2652), + [aux_sym_preproc_if_token1] = ACTIONS(2652), + [aux_sym_preproc_if_token2] = ACTIONS(2652), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2652), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2652), + [sym_preproc_directive] = ACTIONS(2652), + [anon_sym_LPAREN2] = ACTIONS(2654), + [anon_sym_BANG] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2654), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_STAR] = ACTIONS(2654), + [anon_sym_CARET] = ACTIONS(2654), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_SEMI] = ACTIONS(2654), + [anon_sym___extension__] = ACTIONS(2652), + [anon_sym_typedef] = ACTIONS(2652), + [anon_sym_extern] = ACTIONS(2652), + [anon_sym___attribute__] = ACTIONS(2652), + [anon_sym___attribute] = ACTIONS(2652), + [anon_sym_noreturn] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2654), + [anon_sym___declspec] = ACTIONS(2652), + [anon_sym___cdecl] = ACTIONS(2652), + [anon_sym___clrcall] = ACTIONS(2652), + [anon_sym___stdcall] = ACTIONS(2652), + [anon_sym___fastcall] = ACTIONS(2652), + [anon_sym___thiscall] = ACTIONS(2652), + [anon_sym___vectorcall] = ACTIONS(2652), + [anon_sym_LBRACE] = ACTIONS(2654), + [anon_sym_signed] = ACTIONS(2652), + [anon_sym_unsigned] = ACTIONS(2652), + [anon_sym_long] = ACTIONS(2652), + [anon_sym_short] = ACTIONS(2652), + [anon_sym_static] = ACTIONS(2652), + [anon_sym_ATautoreleasepool] = ACTIONS(2654), + [anon_sym_auto] = ACTIONS(2652), + [anon_sym_register] = ACTIONS(2652), + [anon_sym_inline] = ACTIONS(2652), + [anon_sym___inline] = ACTIONS(2652), + [anon_sym___inline__] = ACTIONS(2652), + [anon_sym___forceinline] = ACTIONS(2652), + [anon_sym_thread_local] = ACTIONS(2652), + [anon_sym___thread] = ACTIONS(2652), + [anon_sym_CG_EXTERN] = ACTIONS(2652), + [anon_sym_CG_INLINE] = ACTIONS(2652), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2652), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2652), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2652), + [anon_sym_IBOutlet] = ACTIONS(2652), + [anon_sym_IBInspectable] = ACTIONS(2652), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2652), + [anon_sym_NS_INLINE] = ACTIONS(2652), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2652), + [anon_sym_OBJC_EXPORT] = ACTIONS(2652), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2652), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2652), + [anon_sym_const] = ACTIONS(2652), + [anon_sym_constexpr] = ACTIONS(2652), + [anon_sym_volatile] = ACTIONS(2652), + [anon_sym_restrict] = ACTIONS(2652), + [anon_sym___restrict__] = ACTIONS(2652), + [anon_sym__Atomic] = ACTIONS(2652), + [anon_sym__Noreturn] = ACTIONS(2652), + [anon_sym__Nonnull] = ACTIONS(2652), + [anon_sym_nullable] = ACTIONS(2652), + [anon_sym__Complex] = ACTIONS(2652), + [anon_sym__Nullable] = ACTIONS(2652), + [anon_sym__Nullable_result] = ACTIONS(2652), + [anon_sym__Null_unspecified] = ACTIONS(2652), + [anon_sym___autoreleasing] = ACTIONS(2652), + [anon_sym___block] = ACTIONS(2652), + [anon_sym___bridge] = ACTIONS(2652), + [anon_sym___bridge_retained] = ACTIONS(2652), + [anon_sym___bridge_transfer] = ACTIONS(2652), + [anon_sym___complex] = ACTIONS(2652), + [anon_sym___const] = ACTIONS(2652), + [anon_sym___imag] = ACTIONS(2652), + [anon_sym___kindof] = ACTIONS(2652), + [anon_sym___nonnull] = ACTIONS(2652), + [anon_sym___nullable] = ACTIONS(2652), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2652), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2652), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2652), + [anon_sym___real] = ACTIONS(2652), + [anon_sym___strong] = ACTIONS(2652), + [anon_sym___unsafe_unretained] = ACTIONS(2652), + [anon_sym___unused] = ACTIONS(2652), + [anon_sym___weak] = ACTIONS(2652), + [anon_sym_alignas] = ACTIONS(2652), + [anon_sym__Alignas] = ACTIONS(2652), + [sym_primitive_type] = ACTIONS(2652), + [anon_sym_enum] = ACTIONS(2652), + [anon_sym_struct] = ACTIONS(2652), + [anon_sym_union] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_switch] = ACTIONS(2652), + [anon_sym_case] = ACTIONS(2652), + [anon_sym_default] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_do] = ACTIONS(2652), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_in] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_break] = ACTIONS(2652), + [anon_sym_continue] = ACTIONS(2652), + [anon_sym_goto] = ACTIONS(2652), + [anon_sym_DASH_DASH] = ACTIONS(2654), + [anon_sym_PLUS_PLUS] = ACTIONS(2654), + [anon_sym_sizeof] = ACTIONS(2652), + [anon_sym___alignof__] = ACTIONS(2652), + [anon_sym___alignof] = ACTIONS(2652), + [anon_sym__alignof] = ACTIONS(2652), + [anon_sym_alignof] = ACTIONS(2652), + [anon_sym__Alignof] = ACTIONS(2652), + [anon_sym_offsetof] = ACTIONS(2652), + [anon_sym__Generic] = ACTIONS(2652), + [anon_sym_asm] = ACTIONS(2652), + [anon_sym___asm__] = ACTIONS(2652), + [anon_sym___asm] = ACTIONS(2652), + [sym_number_literal] = ACTIONS(2654), + [anon_sym_L_SQUOTE] = ACTIONS(2654), + [anon_sym_u_SQUOTE] = ACTIONS(2654), + [anon_sym_U_SQUOTE] = ACTIONS(2654), + [anon_sym_u8_SQUOTE] = ACTIONS(2654), + [anon_sym_SQUOTE] = ACTIONS(2654), + [anon_sym_AT] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2654), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2652), + [sym_false] = ACTIONS(2652), + [anon_sym_NULL] = ACTIONS(2652), + [anon_sym_nullptr] = ACTIONS(2652), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2652), + [anon_sym___typeof] = ACTIONS(2652), + [anon_sym_typeof] = ACTIONS(2652), + [anon_sym_ATimport] = ACTIONS(2654), + [aux_sym_preproc_undef_token1] = ACTIONS(2652), + [anon_sym_POUND] = ACTIONS(2652), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2652), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2652), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2652), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2652), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2652), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2652), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2652), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2652), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2652), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2652), + [anon_sym_NS_AVAILABLE] = ACTIONS(2652), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2652), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2652), + [anon_sym_API_AVAILABLE] = ACTIONS(2652), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2652), + [anon_sym_API_DEPRECATED] = ACTIONS(2652), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2652), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2652), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2652), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2652), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2652), + [anon_sym___deprecated_msg] = ACTIONS(2652), + [anon_sym___deprecated_enum_msg] = ACTIONS(2652), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2652), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2652), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2652), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2652), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2652), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2652), + [anon_sym_ATprotocol] = ACTIONS(2654), + [anon_sym_ATinterface] = ACTIONS(2654), + [anon_sym_ATimplementation] = ACTIONS(2654), + [anon_sym_ATcompatibility_alias] = ACTIONS(2654), + [anon_sym_ATsynthesize] = ACTIONS(2654), + [anon_sym_ATdynamic] = ACTIONS(2654), + [anon_sym_ATtry] = ACTIONS(2654), + [anon_sym___try] = ACTIONS(2652), + [anon_sym_ATthrow] = ACTIONS(2654), + [anon_sym_ATselector] = ACTIONS(2654), + [anon_sym_ATavailable] = ACTIONS(2654), + [anon_sym___builtin_available] = ACTIONS(2652), + [anon_sym_va_arg] = ACTIONS(2652), + [anon_sym_ATencode] = ACTIONS(2654), + [anon_sym_ATsynchronized] = ACTIONS(2654), + [anon_sym_BOOL] = ACTIONS(2652), + [anon_sym_IMP] = ACTIONS(2652), + [anon_sym_SEL] = ACTIONS(2652), + [anon_sym_Class] = ACTIONS(2652), + [anon_sym_id] = ACTIONS(2652), + }, + [679] = { + [sym_identifier] = ACTIONS(2848), + [aux_sym_preproc_include_token1] = ACTIONS(2848), + [aux_sym_preproc_include_token2] = ACTIONS(2848), + [aux_sym_preproc_def_token1] = ACTIONS(2848), + [aux_sym_preproc_if_token1] = ACTIONS(2848), + [aux_sym_preproc_if_token2] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2848), + [sym_preproc_directive] = ACTIONS(2848), + [anon_sym_LPAREN2] = ACTIONS(2850), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_TILDE] = ACTIONS(2850), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_STAR] = ACTIONS(2850), + [anon_sym_CARET] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2850), + [anon_sym___extension__] = ACTIONS(2848), + [anon_sym_typedef] = ACTIONS(2848), + [anon_sym_extern] = ACTIONS(2848), + [anon_sym___attribute__] = ACTIONS(2848), + [anon_sym___attribute] = ACTIONS(2848), + [anon_sym_noreturn] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2850), + [anon_sym___declspec] = ACTIONS(2848), + [anon_sym___cdecl] = ACTIONS(2848), + [anon_sym___clrcall] = ACTIONS(2848), + [anon_sym___stdcall] = ACTIONS(2848), + [anon_sym___fastcall] = ACTIONS(2848), + [anon_sym___thiscall] = ACTIONS(2848), + [anon_sym___vectorcall] = ACTIONS(2848), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_signed] = ACTIONS(2848), + [anon_sym_unsigned] = ACTIONS(2848), + [anon_sym_long] = ACTIONS(2848), + [anon_sym_short] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_ATautoreleasepool] = ACTIONS(2850), + [anon_sym_auto] = ACTIONS(2848), + [anon_sym_register] = ACTIONS(2848), + [anon_sym_inline] = ACTIONS(2848), + [anon_sym___inline] = ACTIONS(2848), + [anon_sym___inline__] = ACTIONS(2848), + [anon_sym___forceinline] = ACTIONS(2848), + [anon_sym_thread_local] = ACTIONS(2848), + [anon_sym___thread] = ACTIONS(2848), + [anon_sym_CG_EXTERN] = ACTIONS(2848), + [anon_sym_CG_INLINE] = ACTIONS(2848), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2848), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2848), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2848), + [anon_sym_IBOutlet] = ACTIONS(2848), + [anon_sym_IBInspectable] = ACTIONS(2848), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2848), + [anon_sym_NS_INLINE] = ACTIONS(2848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2848), + [anon_sym_OBJC_EXPORT] = ACTIONS(2848), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2848), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2848), + [anon_sym_const] = ACTIONS(2848), + [anon_sym_constexpr] = ACTIONS(2848), + [anon_sym_volatile] = ACTIONS(2848), + [anon_sym_restrict] = ACTIONS(2848), + [anon_sym___restrict__] = ACTIONS(2848), + [anon_sym__Atomic] = ACTIONS(2848), + [anon_sym__Noreturn] = ACTIONS(2848), + [anon_sym__Nonnull] = ACTIONS(2848), + [anon_sym_nullable] = ACTIONS(2848), + [anon_sym__Complex] = ACTIONS(2848), + [anon_sym__Nullable] = ACTIONS(2848), + [anon_sym__Nullable_result] = ACTIONS(2848), + [anon_sym__Null_unspecified] = ACTIONS(2848), + [anon_sym___autoreleasing] = ACTIONS(2848), + [anon_sym___block] = ACTIONS(2848), + [anon_sym___bridge] = ACTIONS(2848), + [anon_sym___bridge_retained] = ACTIONS(2848), + [anon_sym___bridge_transfer] = ACTIONS(2848), + [anon_sym___complex] = ACTIONS(2848), + [anon_sym___const] = ACTIONS(2848), + [anon_sym___imag] = ACTIONS(2848), + [anon_sym___kindof] = ACTIONS(2848), + [anon_sym___nonnull] = ACTIONS(2848), + [anon_sym___nullable] = ACTIONS(2848), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2848), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2848), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2848), + [anon_sym___real] = ACTIONS(2848), + [anon_sym___strong] = ACTIONS(2848), + [anon_sym___unsafe_unretained] = ACTIONS(2848), + [anon_sym___unused] = ACTIONS(2848), + [anon_sym___weak] = ACTIONS(2848), + [anon_sym_alignas] = ACTIONS(2848), + [anon_sym__Alignas] = ACTIONS(2848), + [sym_primitive_type] = ACTIONS(2848), + [anon_sym_enum] = ACTIONS(2848), + [anon_sym_struct] = ACTIONS(2848), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_switch] = ACTIONS(2848), + [anon_sym_case] = ACTIONS(2848), + [anon_sym_default] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_in] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_break] = ACTIONS(2848), + [anon_sym_continue] = ACTIONS(2848), + [anon_sym_goto] = ACTIONS(2848), + [anon_sym_DASH_DASH] = ACTIONS(2850), + [anon_sym_PLUS_PLUS] = ACTIONS(2850), + [anon_sym_sizeof] = ACTIONS(2848), + [anon_sym___alignof__] = ACTIONS(2848), + [anon_sym___alignof] = ACTIONS(2848), + [anon_sym__alignof] = ACTIONS(2848), + [anon_sym_alignof] = ACTIONS(2848), + [anon_sym__Alignof] = ACTIONS(2848), + [anon_sym_offsetof] = ACTIONS(2848), + [anon_sym__Generic] = ACTIONS(2848), + [anon_sym_asm] = ACTIONS(2848), + [anon_sym___asm__] = ACTIONS(2848), + [anon_sym___asm] = ACTIONS(2848), + [sym_number_literal] = ACTIONS(2850), + [anon_sym_L_SQUOTE] = ACTIONS(2850), + [anon_sym_u_SQUOTE] = ACTIONS(2850), + [anon_sym_U_SQUOTE] = ACTIONS(2850), + [anon_sym_u8_SQUOTE] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_AT] = ACTIONS(2848), + [anon_sym_DQUOTE] = ACTIONS(2850), + [anon_sym_L_DQUOTE] = ACTIONS(2850), + [anon_sym_u_DQUOTE] = ACTIONS(2850), + [anon_sym_U_DQUOTE] = ACTIONS(2850), + [anon_sym_u8_DQUOTE] = ACTIONS(2850), + [sym_true] = ACTIONS(2848), + [sym_false] = ACTIONS(2848), + [anon_sym_NULL] = ACTIONS(2848), + [anon_sym_nullptr] = ACTIONS(2848), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2848), + [anon_sym___typeof] = ACTIONS(2848), + [anon_sym_typeof] = ACTIONS(2848), + [anon_sym_ATimport] = ACTIONS(2850), + [aux_sym_preproc_undef_token1] = ACTIONS(2848), + [anon_sym_POUND] = ACTIONS(2848), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2848), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2848), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2848), + [anon_sym_NS_AVAILABLE] = ACTIONS(2848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_API_AVAILABLE] = ACTIONS(2848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_API_DEPRECATED] = ACTIONS(2848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2848), + [anon_sym___deprecated_msg] = ACTIONS(2848), + [anon_sym___deprecated_enum_msg] = ACTIONS(2848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2848), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2848), + [anon_sym_ATprotocol] = ACTIONS(2850), + [anon_sym_ATinterface] = ACTIONS(2850), + [anon_sym_ATimplementation] = ACTIONS(2850), + [anon_sym_ATcompatibility_alias] = ACTIONS(2850), + [anon_sym_ATsynthesize] = ACTIONS(2850), + [anon_sym_ATdynamic] = ACTIONS(2850), + [anon_sym_ATtry] = ACTIONS(2850), + [anon_sym___try] = ACTIONS(2848), + [anon_sym_ATthrow] = ACTIONS(2850), + [anon_sym_ATselector] = ACTIONS(2850), + [anon_sym_ATavailable] = ACTIONS(2850), + [anon_sym___builtin_available] = ACTIONS(2848), + [anon_sym_va_arg] = ACTIONS(2848), + [anon_sym_ATencode] = ACTIONS(2850), + [anon_sym_ATsynchronized] = ACTIONS(2850), + [anon_sym_BOOL] = ACTIONS(2848), + [anon_sym_IMP] = ACTIONS(2848), + [anon_sym_SEL] = ACTIONS(2848), + [anon_sym_Class] = ACTIONS(2848), + [anon_sym_id] = ACTIONS(2848), + }, + [680] = { + [sym_identifier] = ACTIONS(2612), + [aux_sym_preproc_include_token1] = ACTIONS(2612), + [aux_sym_preproc_include_token2] = ACTIONS(2612), + [aux_sym_preproc_def_token1] = ACTIONS(2612), + [aux_sym_preproc_if_token1] = ACTIONS(2612), + [aux_sym_preproc_if_token2] = ACTIONS(2612), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2612), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2612), + [sym_preproc_directive] = ACTIONS(2612), + [anon_sym_LPAREN2] = ACTIONS(2614), + [anon_sym_BANG] = ACTIONS(2614), + [anon_sym_TILDE] = ACTIONS(2614), + [anon_sym_DASH] = ACTIONS(2612), + [anon_sym_PLUS] = ACTIONS(2612), + [anon_sym_STAR] = ACTIONS(2614), + [anon_sym_CARET] = ACTIONS(2614), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_SEMI] = ACTIONS(2614), + [anon_sym___extension__] = ACTIONS(2612), + [anon_sym_typedef] = ACTIONS(2612), + [anon_sym_extern] = ACTIONS(2612), + [anon_sym___attribute__] = ACTIONS(2612), + [anon_sym___attribute] = ACTIONS(2612), + [anon_sym_noreturn] = ACTIONS(2612), + [anon_sym_LBRACK] = ACTIONS(2614), + [anon_sym___declspec] = ACTIONS(2612), + [anon_sym___cdecl] = ACTIONS(2612), + [anon_sym___clrcall] = ACTIONS(2612), + [anon_sym___stdcall] = ACTIONS(2612), + [anon_sym___fastcall] = ACTIONS(2612), + [anon_sym___thiscall] = ACTIONS(2612), + [anon_sym___vectorcall] = ACTIONS(2612), + [anon_sym_LBRACE] = ACTIONS(2614), + [anon_sym_signed] = ACTIONS(2612), + [anon_sym_unsigned] = ACTIONS(2612), + [anon_sym_long] = ACTIONS(2612), + [anon_sym_short] = ACTIONS(2612), + [anon_sym_static] = ACTIONS(2612), + [anon_sym_ATautoreleasepool] = ACTIONS(2614), + [anon_sym_auto] = ACTIONS(2612), + [anon_sym_register] = ACTIONS(2612), + [anon_sym_inline] = ACTIONS(2612), + [anon_sym___inline] = ACTIONS(2612), + [anon_sym___inline__] = ACTIONS(2612), + [anon_sym___forceinline] = ACTIONS(2612), + [anon_sym_thread_local] = ACTIONS(2612), + [anon_sym___thread] = ACTIONS(2612), + [anon_sym_CG_EXTERN] = ACTIONS(2612), + [anon_sym_CG_INLINE] = ACTIONS(2612), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2612), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2612), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2612), + [anon_sym_IBOutlet] = ACTIONS(2612), + [anon_sym_IBInspectable] = ACTIONS(2612), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2612), + [anon_sym_NS_INLINE] = ACTIONS(2612), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2612), + [anon_sym_OBJC_EXPORT] = ACTIONS(2612), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2612), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2612), + [anon_sym_const] = ACTIONS(2612), + [anon_sym_constexpr] = ACTIONS(2612), + [anon_sym_volatile] = ACTIONS(2612), + [anon_sym_restrict] = ACTIONS(2612), + [anon_sym___restrict__] = ACTIONS(2612), + [anon_sym__Atomic] = ACTIONS(2612), + [anon_sym__Noreturn] = ACTIONS(2612), + [anon_sym__Nonnull] = ACTIONS(2612), + [anon_sym_nullable] = ACTIONS(2612), + [anon_sym__Complex] = ACTIONS(2612), + [anon_sym__Nullable] = ACTIONS(2612), + [anon_sym__Nullable_result] = ACTIONS(2612), + [anon_sym__Null_unspecified] = ACTIONS(2612), + [anon_sym___autoreleasing] = ACTIONS(2612), + [anon_sym___block] = ACTIONS(2612), + [anon_sym___bridge] = ACTIONS(2612), + [anon_sym___bridge_retained] = ACTIONS(2612), + [anon_sym___bridge_transfer] = ACTIONS(2612), + [anon_sym___complex] = ACTIONS(2612), + [anon_sym___const] = ACTIONS(2612), + [anon_sym___imag] = ACTIONS(2612), + [anon_sym___kindof] = ACTIONS(2612), + [anon_sym___nonnull] = ACTIONS(2612), + [anon_sym___nullable] = ACTIONS(2612), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2612), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2612), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2612), + [anon_sym___real] = ACTIONS(2612), + [anon_sym___strong] = ACTIONS(2612), + [anon_sym___unsafe_unretained] = ACTIONS(2612), + [anon_sym___unused] = ACTIONS(2612), + [anon_sym___weak] = ACTIONS(2612), + [anon_sym_alignas] = ACTIONS(2612), + [anon_sym__Alignas] = ACTIONS(2612), + [sym_primitive_type] = ACTIONS(2612), + [anon_sym_enum] = ACTIONS(2612), + [anon_sym_struct] = ACTIONS(2612), + [anon_sym_union] = ACTIONS(2612), + [anon_sym_if] = ACTIONS(2612), + [anon_sym_switch] = ACTIONS(2612), + [anon_sym_case] = ACTIONS(2612), + [anon_sym_default] = ACTIONS(2612), + [anon_sym_while] = ACTIONS(2612), + [anon_sym_do] = ACTIONS(2612), + [anon_sym_for] = ACTIONS(2612), + [anon_sym_in] = ACTIONS(2612), + [anon_sym_return] = ACTIONS(2612), + [anon_sym_break] = ACTIONS(2612), + [anon_sym_continue] = ACTIONS(2612), + [anon_sym_goto] = ACTIONS(2612), + [anon_sym_DASH_DASH] = ACTIONS(2614), + [anon_sym_PLUS_PLUS] = ACTIONS(2614), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2612), + [anon_sym___alignof] = ACTIONS(2612), + [anon_sym__alignof] = ACTIONS(2612), + [anon_sym_alignof] = ACTIONS(2612), + [anon_sym__Alignof] = ACTIONS(2612), + [anon_sym_offsetof] = ACTIONS(2612), + [anon_sym__Generic] = ACTIONS(2612), + [anon_sym_asm] = ACTIONS(2612), + [anon_sym___asm__] = ACTIONS(2612), + [anon_sym___asm] = ACTIONS(2612), + [sym_number_literal] = ACTIONS(2614), + [anon_sym_L_SQUOTE] = ACTIONS(2614), + [anon_sym_u_SQUOTE] = ACTIONS(2614), + [anon_sym_U_SQUOTE] = ACTIONS(2614), + [anon_sym_u8_SQUOTE] = ACTIONS(2614), + [anon_sym_SQUOTE] = ACTIONS(2614), + [anon_sym_AT] = ACTIONS(2612), + [anon_sym_DQUOTE] = ACTIONS(2614), + [anon_sym_L_DQUOTE] = ACTIONS(2614), + [anon_sym_u_DQUOTE] = ACTIONS(2614), + [anon_sym_U_DQUOTE] = ACTIONS(2614), + [anon_sym_u8_DQUOTE] = ACTIONS(2614), + [sym_true] = ACTIONS(2612), + [sym_false] = ACTIONS(2612), + [anon_sym_NULL] = ACTIONS(2612), + [anon_sym_nullptr] = ACTIONS(2612), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2612), + [anon_sym___typeof] = ACTIONS(2612), + [anon_sym_typeof] = ACTIONS(2612), + [anon_sym_ATimport] = ACTIONS(2614), + [aux_sym_preproc_undef_token1] = ACTIONS(2612), + [anon_sym_POUND] = ACTIONS(2612), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2612), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2612), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2612), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2612), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2612), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2612), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2612), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2612), + [anon_sym_NS_AVAILABLE] = ACTIONS(2612), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2612), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_API_AVAILABLE] = ACTIONS(2612), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_API_DEPRECATED] = ACTIONS(2612), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2612), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2612), + [anon_sym___deprecated_msg] = ACTIONS(2612), + [anon_sym___deprecated_enum_msg] = ACTIONS(2612), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2612), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2612), + [anon_sym_ATprotocol] = ACTIONS(2614), + [anon_sym_ATinterface] = ACTIONS(2614), + [anon_sym_ATimplementation] = ACTIONS(2614), + [anon_sym_ATcompatibility_alias] = ACTIONS(2614), + [anon_sym_ATsynthesize] = ACTIONS(2614), + [anon_sym_ATdynamic] = ACTIONS(2614), + [anon_sym_ATtry] = ACTIONS(2614), + [anon_sym___try] = ACTIONS(2612), + [anon_sym_ATthrow] = ACTIONS(2614), + [anon_sym_ATselector] = ACTIONS(2614), + [anon_sym_ATavailable] = ACTIONS(2614), + [anon_sym___builtin_available] = ACTIONS(2612), + [anon_sym_va_arg] = ACTIONS(2612), + [anon_sym_ATencode] = ACTIONS(2614), + [anon_sym_ATsynchronized] = ACTIONS(2614), + [anon_sym_BOOL] = ACTIONS(2612), + [anon_sym_IMP] = ACTIONS(2612), + [anon_sym_SEL] = ACTIONS(2612), + [anon_sym_Class] = ACTIONS(2612), + [anon_sym_id] = ACTIONS(2612), + }, + [681] = { + [sym_identifier] = ACTIONS(2728), + [aux_sym_preproc_include_token1] = ACTIONS(2728), + [aux_sym_preproc_include_token2] = ACTIONS(2728), + [aux_sym_preproc_def_token1] = ACTIONS(2728), + [aux_sym_preproc_if_token1] = ACTIONS(2728), + [aux_sym_preproc_if_token2] = ACTIONS(2728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2728), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2728), + [sym_preproc_directive] = ACTIONS(2728), + [anon_sym_LPAREN2] = ACTIONS(2730), + [anon_sym_BANG] = ACTIONS(2730), + [anon_sym_TILDE] = ACTIONS(2730), + [anon_sym_DASH] = ACTIONS(2728), + [anon_sym_PLUS] = ACTIONS(2728), + [anon_sym_STAR] = ACTIONS(2730), + [anon_sym_CARET] = ACTIONS(2730), + [anon_sym_AMP] = ACTIONS(2730), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym___extension__] = ACTIONS(2728), + [anon_sym_typedef] = ACTIONS(2728), + [anon_sym_extern] = ACTIONS(2728), + [anon_sym___attribute__] = ACTIONS(2728), + [anon_sym___attribute] = ACTIONS(2728), + [anon_sym_noreturn] = ACTIONS(2728), + [anon_sym_LBRACK] = ACTIONS(2730), + [anon_sym___declspec] = ACTIONS(2728), + [anon_sym___cdecl] = ACTIONS(2728), + [anon_sym___clrcall] = ACTIONS(2728), + [anon_sym___stdcall] = ACTIONS(2728), + [anon_sym___fastcall] = ACTIONS(2728), + [anon_sym___thiscall] = ACTIONS(2728), + [anon_sym___vectorcall] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_signed] = ACTIONS(2728), + [anon_sym_unsigned] = ACTIONS(2728), + [anon_sym_long] = ACTIONS(2728), + [anon_sym_short] = ACTIONS(2728), + [anon_sym_static] = ACTIONS(2728), + [anon_sym_ATautoreleasepool] = ACTIONS(2730), + [anon_sym_auto] = ACTIONS(2728), + [anon_sym_register] = ACTIONS(2728), + [anon_sym_inline] = ACTIONS(2728), + [anon_sym___inline] = ACTIONS(2728), + [anon_sym___inline__] = ACTIONS(2728), + [anon_sym___forceinline] = ACTIONS(2728), + [anon_sym_thread_local] = ACTIONS(2728), + [anon_sym___thread] = ACTIONS(2728), + [anon_sym_CG_EXTERN] = ACTIONS(2728), + [anon_sym_CG_INLINE] = ACTIONS(2728), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2728), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2728), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2728), + [anon_sym_IBOutlet] = ACTIONS(2728), + [anon_sym_IBInspectable] = ACTIONS(2728), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2728), + [anon_sym_NS_INLINE] = ACTIONS(2728), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2728), + [anon_sym_OBJC_EXPORT] = ACTIONS(2728), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2728), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2728), + [anon_sym_const] = ACTIONS(2728), + [anon_sym_constexpr] = ACTIONS(2728), + [anon_sym_volatile] = ACTIONS(2728), + [anon_sym_restrict] = ACTIONS(2728), + [anon_sym___restrict__] = ACTIONS(2728), + [anon_sym__Atomic] = ACTIONS(2728), + [anon_sym__Noreturn] = ACTIONS(2728), + [anon_sym__Nonnull] = ACTIONS(2728), + [anon_sym_nullable] = ACTIONS(2728), + [anon_sym__Complex] = ACTIONS(2728), + [anon_sym__Nullable] = ACTIONS(2728), + [anon_sym__Nullable_result] = ACTIONS(2728), + [anon_sym__Null_unspecified] = ACTIONS(2728), + [anon_sym___autoreleasing] = ACTIONS(2728), + [anon_sym___block] = ACTIONS(2728), + [anon_sym___bridge] = ACTIONS(2728), + [anon_sym___bridge_retained] = ACTIONS(2728), + [anon_sym___bridge_transfer] = ACTIONS(2728), + [anon_sym___complex] = ACTIONS(2728), + [anon_sym___const] = ACTIONS(2728), + [anon_sym___imag] = ACTIONS(2728), + [anon_sym___kindof] = ACTIONS(2728), + [anon_sym___nonnull] = ACTIONS(2728), + [anon_sym___nullable] = ACTIONS(2728), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2728), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2728), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2728), + [anon_sym___real] = ACTIONS(2728), + [anon_sym___strong] = ACTIONS(2728), + [anon_sym___unsafe_unretained] = ACTIONS(2728), + [anon_sym___unused] = ACTIONS(2728), + [anon_sym___weak] = ACTIONS(2728), + [anon_sym_alignas] = ACTIONS(2728), + [anon_sym__Alignas] = ACTIONS(2728), + [sym_primitive_type] = ACTIONS(2728), + [anon_sym_enum] = ACTIONS(2728), + [anon_sym_struct] = ACTIONS(2728), + [anon_sym_union] = ACTIONS(2728), + [anon_sym_if] = ACTIONS(2728), + [anon_sym_switch] = ACTIONS(2728), + [anon_sym_case] = ACTIONS(2728), + [anon_sym_default] = ACTIONS(2728), + [anon_sym_while] = ACTIONS(2728), + [anon_sym_do] = ACTIONS(2728), + [anon_sym_for] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2728), + [anon_sym_return] = ACTIONS(2728), + [anon_sym_break] = ACTIONS(2728), + [anon_sym_continue] = ACTIONS(2728), + [anon_sym_goto] = ACTIONS(2728), + [anon_sym_DASH_DASH] = ACTIONS(2730), + [anon_sym_PLUS_PLUS] = ACTIONS(2730), + [anon_sym_sizeof] = ACTIONS(2728), + [anon_sym___alignof__] = ACTIONS(2728), + [anon_sym___alignof] = ACTIONS(2728), + [anon_sym__alignof] = ACTIONS(2728), + [anon_sym_alignof] = ACTIONS(2728), + [anon_sym__Alignof] = ACTIONS(2728), + [anon_sym_offsetof] = ACTIONS(2728), + [anon_sym__Generic] = ACTIONS(2728), + [anon_sym_asm] = ACTIONS(2728), + [anon_sym___asm__] = ACTIONS(2728), + [anon_sym___asm] = ACTIONS(2728), + [sym_number_literal] = ACTIONS(2730), + [anon_sym_L_SQUOTE] = ACTIONS(2730), + [anon_sym_u_SQUOTE] = ACTIONS(2730), + [anon_sym_U_SQUOTE] = ACTIONS(2730), + [anon_sym_u8_SQUOTE] = ACTIONS(2730), + [anon_sym_SQUOTE] = ACTIONS(2730), + [anon_sym_AT] = ACTIONS(2728), + [anon_sym_DQUOTE] = ACTIONS(2730), + [anon_sym_L_DQUOTE] = ACTIONS(2730), + [anon_sym_u_DQUOTE] = ACTIONS(2730), + [anon_sym_U_DQUOTE] = ACTIONS(2730), + [anon_sym_u8_DQUOTE] = ACTIONS(2730), + [sym_true] = ACTIONS(2728), + [sym_false] = ACTIONS(2728), + [anon_sym_NULL] = ACTIONS(2728), + [anon_sym_nullptr] = ACTIONS(2728), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2728), + [anon_sym___typeof] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(2728), + [anon_sym_ATimport] = ACTIONS(2730), + [aux_sym_preproc_undef_token1] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(2728), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2728), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2728), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2728), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2728), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2728), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2728), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2728), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2728), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2728), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2728), + [anon_sym_NS_AVAILABLE] = ACTIONS(2728), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2728), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2728), + [anon_sym_API_AVAILABLE] = ACTIONS(2728), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2728), + [anon_sym_API_DEPRECATED] = ACTIONS(2728), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2728), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2728), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2728), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2728), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2728), + [anon_sym___deprecated_msg] = ACTIONS(2728), + [anon_sym___deprecated_enum_msg] = ACTIONS(2728), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2728), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2728), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2728), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2728), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2728), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2728), + [anon_sym_ATprotocol] = ACTIONS(2730), + [anon_sym_ATinterface] = ACTIONS(2730), + [anon_sym_ATimplementation] = ACTIONS(2730), + [anon_sym_ATcompatibility_alias] = ACTIONS(2730), + [anon_sym_ATsynthesize] = ACTIONS(2730), + [anon_sym_ATdynamic] = ACTIONS(2730), + [anon_sym_ATtry] = ACTIONS(2730), + [anon_sym___try] = ACTIONS(2728), + [anon_sym_ATthrow] = ACTIONS(2730), + [anon_sym_ATselector] = ACTIONS(2730), + [anon_sym_ATavailable] = ACTIONS(2730), + [anon_sym___builtin_available] = ACTIONS(2728), + [anon_sym_va_arg] = ACTIONS(2728), + [anon_sym_ATencode] = ACTIONS(2730), + [anon_sym_ATsynchronized] = ACTIONS(2730), + [anon_sym_BOOL] = ACTIONS(2728), + [anon_sym_IMP] = ACTIONS(2728), + [anon_sym_SEL] = ACTIONS(2728), + [anon_sym_Class] = ACTIONS(2728), + [anon_sym_id] = ACTIONS(2728), + }, + [682] = { + [sym_identifier] = ACTIONS(2732), + [aux_sym_preproc_include_token1] = ACTIONS(2732), + [aux_sym_preproc_include_token2] = ACTIONS(2732), + [aux_sym_preproc_def_token1] = ACTIONS(2732), + [aux_sym_preproc_if_token1] = ACTIONS(2732), + [aux_sym_preproc_if_token2] = ACTIONS(2732), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2732), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2732), + [sym_preproc_directive] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_BANG] = ACTIONS(2734), + [anon_sym_TILDE] = ACTIONS(2734), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_STAR] = ACTIONS(2734), + [anon_sym_CARET] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2734), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym___extension__] = ACTIONS(2732), + [anon_sym_typedef] = ACTIONS(2732), + [anon_sym_extern] = ACTIONS(2732), + [anon_sym___attribute__] = ACTIONS(2732), + [anon_sym___attribute] = ACTIONS(2732), + [anon_sym_noreturn] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym___declspec] = ACTIONS(2732), + [anon_sym___cdecl] = ACTIONS(2732), + [anon_sym___clrcall] = ACTIONS(2732), + [anon_sym___stdcall] = ACTIONS(2732), + [anon_sym___fastcall] = ACTIONS(2732), + [anon_sym___thiscall] = ACTIONS(2732), + [anon_sym___vectorcall] = ACTIONS(2732), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_signed] = ACTIONS(2732), + [anon_sym_unsigned] = ACTIONS(2732), + [anon_sym_long] = ACTIONS(2732), + [anon_sym_short] = ACTIONS(2732), + [anon_sym_static] = ACTIONS(2732), + [anon_sym_ATautoreleasepool] = ACTIONS(2734), + [anon_sym_auto] = ACTIONS(2732), + [anon_sym_register] = ACTIONS(2732), + [anon_sym_inline] = ACTIONS(2732), + [anon_sym___inline] = ACTIONS(2732), + [anon_sym___inline__] = ACTIONS(2732), + [anon_sym___forceinline] = ACTIONS(2732), + [anon_sym_thread_local] = ACTIONS(2732), + [anon_sym___thread] = ACTIONS(2732), + [anon_sym_CG_EXTERN] = ACTIONS(2732), + [anon_sym_CG_INLINE] = ACTIONS(2732), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2732), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2732), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2732), + [anon_sym_IBOutlet] = ACTIONS(2732), + [anon_sym_IBInspectable] = ACTIONS(2732), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2732), + [anon_sym_NS_INLINE] = ACTIONS(2732), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2732), + [anon_sym_OBJC_EXPORT] = ACTIONS(2732), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2732), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2732), + [anon_sym_const] = ACTIONS(2732), + [anon_sym_constexpr] = ACTIONS(2732), + [anon_sym_volatile] = ACTIONS(2732), + [anon_sym_restrict] = ACTIONS(2732), + [anon_sym___restrict__] = ACTIONS(2732), + [anon_sym__Atomic] = ACTIONS(2732), + [anon_sym__Noreturn] = ACTIONS(2732), + [anon_sym__Nonnull] = ACTIONS(2732), + [anon_sym_nullable] = ACTIONS(2732), + [anon_sym__Complex] = ACTIONS(2732), + [anon_sym__Nullable] = ACTIONS(2732), + [anon_sym__Nullable_result] = ACTIONS(2732), + [anon_sym__Null_unspecified] = ACTIONS(2732), + [anon_sym___autoreleasing] = ACTIONS(2732), + [anon_sym___block] = ACTIONS(2732), + [anon_sym___bridge] = ACTIONS(2732), + [anon_sym___bridge_retained] = ACTIONS(2732), + [anon_sym___bridge_transfer] = ACTIONS(2732), + [anon_sym___complex] = ACTIONS(2732), + [anon_sym___const] = ACTIONS(2732), + [anon_sym___imag] = ACTIONS(2732), + [anon_sym___kindof] = ACTIONS(2732), + [anon_sym___nonnull] = ACTIONS(2732), + [anon_sym___nullable] = ACTIONS(2732), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2732), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2732), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2732), + [anon_sym___real] = ACTIONS(2732), + [anon_sym___strong] = ACTIONS(2732), + [anon_sym___unsafe_unretained] = ACTIONS(2732), + [anon_sym___unused] = ACTIONS(2732), + [anon_sym___weak] = ACTIONS(2732), + [anon_sym_alignas] = ACTIONS(2732), + [anon_sym__Alignas] = ACTIONS(2732), + [sym_primitive_type] = ACTIONS(2732), + [anon_sym_enum] = ACTIONS(2732), + [anon_sym_struct] = ACTIONS(2732), + [anon_sym_union] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_switch] = ACTIONS(2732), + [anon_sym_case] = ACTIONS(2732), + [anon_sym_default] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_break] = ACTIONS(2732), + [anon_sym_continue] = ACTIONS(2732), + [anon_sym_goto] = ACTIONS(2732), + [anon_sym_DASH_DASH] = ACTIONS(2734), + [anon_sym_PLUS_PLUS] = ACTIONS(2734), + [anon_sym_sizeof] = ACTIONS(2732), + [anon_sym___alignof__] = ACTIONS(2732), + [anon_sym___alignof] = ACTIONS(2732), + [anon_sym__alignof] = ACTIONS(2732), + [anon_sym_alignof] = ACTIONS(2732), + [anon_sym__Alignof] = ACTIONS(2732), + [anon_sym_offsetof] = ACTIONS(2732), + [anon_sym__Generic] = ACTIONS(2732), + [anon_sym_asm] = ACTIONS(2732), + [anon_sym___asm__] = ACTIONS(2732), + [anon_sym___asm] = ACTIONS(2732), + [sym_number_literal] = ACTIONS(2734), + [anon_sym_L_SQUOTE] = ACTIONS(2734), + [anon_sym_u_SQUOTE] = ACTIONS(2734), + [anon_sym_U_SQUOTE] = ACTIONS(2734), + [anon_sym_u8_SQUOTE] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_AT] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2734), + [anon_sym_L_DQUOTE] = ACTIONS(2734), + [anon_sym_u_DQUOTE] = ACTIONS(2734), + [anon_sym_U_DQUOTE] = ACTIONS(2734), + [anon_sym_u8_DQUOTE] = ACTIONS(2734), + [sym_true] = ACTIONS(2732), + [sym_false] = ACTIONS(2732), + [anon_sym_NULL] = ACTIONS(2732), + [anon_sym_nullptr] = ACTIONS(2732), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2732), + [anon_sym___typeof] = ACTIONS(2732), + [anon_sym_typeof] = ACTIONS(2732), + [anon_sym_ATimport] = ACTIONS(2734), + [aux_sym_preproc_undef_token1] = ACTIONS(2732), + [anon_sym_POUND] = ACTIONS(2732), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2732), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2732), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2732), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2732), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2732), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2732), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2732), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2732), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2732), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2732), + [anon_sym_NS_AVAILABLE] = ACTIONS(2732), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2732), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2732), + [anon_sym_API_AVAILABLE] = ACTIONS(2732), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2732), + [anon_sym_API_DEPRECATED] = ACTIONS(2732), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2732), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2732), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2732), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2732), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2732), + [anon_sym___deprecated_msg] = ACTIONS(2732), + [anon_sym___deprecated_enum_msg] = ACTIONS(2732), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2732), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2732), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2732), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2732), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2732), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2732), + [anon_sym_ATprotocol] = ACTIONS(2734), + [anon_sym_ATinterface] = ACTIONS(2734), + [anon_sym_ATimplementation] = ACTIONS(2734), + [anon_sym_ATcompatibility_alias] = ACTIONS(2734), + [anon_sym_ATsynthesize] = ACTIONS(2734), + [anon_sym_ATdynamic] = ACTIONS(2734), + [anon_sym_ATtry] = ACTIONS(2734), + [anon_sym___try] = ACTIONS(2732), + [anon_sym_ATthrow] = ACTIONS(2734), + [anon_sym_ATselector] = ACTIONS(2734), + [anon_sym_ATavailable] = ACTIONS(2734), + [anon_sym___builtin_available] = ACTIONS(2732), + [anon_sym_va_arg] = ACTIONS(2732), + [anon_sym_ATencode] = ACTIONS(2734), + [anon_sym_ATsynchronized] = ACTIONS(2734), + [anon_sym_BOOL] = ACTIONS(2732), + [anon_sym_IMP] = ACTIONS(2732), + [anon_sym_SEL] = ACTIONS(2732), + [anon_sym_Class] = ACTIONS(2732), + [anon_sym_id] = ACTIONS(2732), + }, + [683] = { + [sym_identifier] = ACTIONS(2800), + [aux_sym_preproc_include_token1] = ACTIONS(2800), + [aux_sym_preproc_include_token2] = ACTIONS(2800), + [aux_sym_preproc_def_token1] = ACTIONS(2800), + [aux_sym_preproc_if_token1] = ACTIONS(2800), + [aux_sym_preproc_if_token2] = ACTIONS(2800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2800), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2800), + [sym_preproc_directive] = ACTIONS(2800), + [anon_sym_LPAREN2] = ACTIONS(2802), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_TILDE] = ACTIONS(2802), + [anon_sym_DASH] = ACTIONS(2800), + [anon_sym_PLUS] = ACTIONS(2800), + [anon_sym_STAR] = ACTIONS(2802), + [anon_sym_CARET] = ACTIONS(2802), + [anon_sym_AMP] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym___extension__] = ACTIONS(2800), + [anon_sym_typedef] = ACTIONS(2800), + [anon_sym_extern] = ACTIONS(2800), + [anon_sym___attribute__] = ACTIONS(2800), + [anon_sym___attribute] = ACTIONS(2800), + [anon_sym_noreturn] = ACTIONS(2800), + [anon_sym_LBRACK] = ACTIONS(2802), + [anon_sym___declspec] = ACTIONS(2800), + [anon_sym___cdecl] = ACTIONS(2800), + [anon_sym___clrcall] = ACTIONS(2800), + [anon_sym___stdcall] = ACTIONS(2800), + [anon_sym___fastcall] = ACTIONS(2800), + [anon_sym___thiscall] = ACTIONS(2800), + [anon_sym___vectorcall] = ACTIONS(2800), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_signed] = ACTIONS(2800), + [anon_sym_unsigned] = ACTIONS(2800), + [anon_sym_long] = ACTIONS(2800), + [anon_sym_short] = ACTIONS(2800), + [anon_sym_static] = ACTIONS(2800), + [anon_sym_ATautoreleasepool] = ACTIONS(2802), + [anon_sym_auto] = ACTIONS(2800), + [anon_sym_register] = ACTIONS(2800), + [anon_sym_inline] = ACTIONS(2800), + [anon_sym___inline] = ACTIONS(2800), + [anon_sym___inline__] = ACTIONS(2800), + [anon_sym___forceinline] = ACTIONS(2800), + [anon_sym_thread_local] = ACTIONS(2800), + [anon_sym___thread] = ACTIONS(2800), + [anon_sym_CG_EXTERN] = ACTIONS(2800), + [anon_sym_CG_INLINE] = ACTIONS(2800), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2800), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2800), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2800), + [anon_sym_IBOutlet] = ACTIONS(2800), + [anon_sym_IBInspectable] = ACTIONS(2800), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2800), + [anon_sym_NS_INLINE] = ACTIONS(2800), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2800), + [anon_sym_OBJC_EXPORT] = ACTIONS(2800), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2800), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2800), + [anon_sym_const] = ACTIONS(2800), + [anon_sym_constexpr] = ACTIONS(2800), + [anon_sym_volatile] = ACTIONS(2800), + [anon_sym_restrict] = ACTIONS(2800), + [anon_sym___restrict__] = ACTIONS(2800), + [anon_sym__Atomic] = ACTIONS(2800), + [anon_sym__Noreturn] = ACTIONS(2800), + [anon_sym__Nonnull] = ACTIONS(2800), + [anon_sym_nullable] = ACTIONS(2800), + [anon_sym__Complex] = ACTIONS(2800), + [anon_sym__Nullable] = ACTIONS(2800), + [anon_sym__Nullable_result] = ACTIONS(2800), + [anon_sym__Null_unspecified] = ACTIONS(2800), + [anon_sym___autoreleasing] = ACTIONS(2800), + [anon_sym___block] = ACTIONS(2800), + [anon_sym___bridge] = ACTIONS(2800), + [anon_sym___bridge_retained] = ACTIONS(2800), + [anon_sym___bridge_transfer] = ACTIONS(2800), + [anon_sym___complex] = ACTIONS(2800), + [anon_sym___const] = ACTIONS(2800), + [anon_sym___imag] = ACTIONS(2800), + [anon_sym___kindof] = ACTIONS(2800), + [anon_sym___nonnull] = ACTIONS(2800), + [anon_sym___nullable] = ACTIONS(2800), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2800), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2800), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2800), + [anon_sym___real] = ACTIONS(2800), + [anon_sym___strong] = ACTIONS(2800), + [anon_sym___unsafe_unretained] = ACTIONS(2800), + [anon_sym___unused] = ACTIONS(2800), + [anon_sym___weak] = ACTIONS(2800), + [anon_sym_alignas] = ACTIONS(2800), + [anon_sym__Alignas] = ACTIONS(2800), + [sym_primitive_type] = ACTIONS(2800), + [anon_sym_enum] = ACTIONS(2800), + [anon_sym_struct] = ACTIONS(2800), + [anon_sym_union] = ACTIONS(2800), + [anon_sym_if] = ACTIONS(2800), + [anon_sym_switch] = ACTIONS(2800), + [anon_sym_case] = ACTIONS(2800), + [anon_sym_default] = ACTIONS(2800), + [anon_sym_while] = ACTIONS(2800), + [anon_sym_do] = ACTIONS(2800), + [anon_sym_for] = ACTIONS(2800), + [anon_sym_in] = ACTIONS(2800), + [anon_sym_return] = ACTIONS(2800), + [anon_sym_break] = ACTIONS(2800), + [anon_sym_continue] = ACTIONS(2800), + [anon_sym_goto] = ACTIONS(2800), + [anon_sym_DASH_DASH] = ACTIONS(2802), + [anon_sym_PLUS_PLUS] = ACTIONS(2802), + [anon_sym_sizeof] = ACTIONS(2800), + [anon_sym___alignof__] = ACTIONS(2800), + [anon_sym___alignof] = ACTIONS(2800), + [anon_sym__alignof] = ACTIONS(2800), + [anon_sym_alignof] = ACTIONS(2800), + [anon_sym__Alignof] = ACTIONS(2800), + [anon_sym_offsetof] = ACTIONS(2800), + [anon_sym__Generic] = ACTIONS(2800), + [anon_sym_asm] = ACTIONS(2800), + [anon_sym___asm__] = ACTIONS(2800), + [anon_sym___asm] = ACTIONS(2800), + [sym_number_literal] = ACTIONS(2802), + [anon_sym_L_SQUOTE] = ACTIONS(2802), + [anon_sym_u_SQUOTE] = ACTIONS(2802), + [anon_sym_U_SQUOTE] = ACTIONS(2802), + [anon_sym_u8_SQUOTE] = ACTIONS(2802), + [anon_sym_SQUOTE] = ACTIONS(2802), + [anon_sym_AT] = ACTIONS(2800), + [anon_sym_DQUOTE] = ACTIONS(2802), + [anon_sym_L_DQUOTE] = ACTIONS(2802), + [anon_sym_u_DQUOTE] = ACTIONS(2802), + [anon_sym_U_DQUOTE] = ACTIONS(2802), + [anon_sym_u8_DQUOTE] = ACTIONS(2802), + [sym_true] = ACTIONS(2800), + [sym_false] = ACTIONS(2800), + [anon_sym_NULL] = ACTIONS(2800), + [anon_sym_nullptr] = ACTIONS(2800), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2800), + [anon_sym___typeof] = ACTIONS(2800), + [anon_sym_typeof] = ACTIONS(2800), + [anon_sym_ATimport] = ACTIONS(2802), + [aux_sym_preproc_undef_token1] = ACTIONS(2800), + [anon_sym_POUND] = ACTIONS(2800), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2800), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2800), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2800), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2800), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2800), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2800), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2800), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2800), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2800), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2800), + [anon_sym_NS_AVAILABLE] = ACTIONS(2800), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2800), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2800), + [anon_sym_API_AVAILABLE] = ACTIONS(2800), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2800), + [anon_sym_API_DEPRECATED] = ACTIONS(2800), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2800), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2800), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2800), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2800), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2800), + [anon_sym___deprecated_msg] = ACTIONS(2800), + [anon_sym___deprecated_enum_msg] = ACTIONS(2800), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2800), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2800), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2800), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2800), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2800), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2800), + [anon_sym_ATprotocol] = ACTIONS(2802), + [anon_sym_ATinterface] = ACTIONS(2802), + [anon_sym_ATimplementation] = ACTIONS(2802), + [anon_sym_ATcompatibility_alias] = ACTIONS(2802), + [anon_sym_ATsynthesize] = ACTIONS(2802), + [anon_sym_ATdynamic] = ACTIONS(2802), + [anon_sym_ATtry] = ACTIONS(2802), + [anon_sym___try] = ACTIONS(2800), + [anon_sym_ATthrow] = ACTIONS(2802), + [anon_sym_ATselector] = ACTIONS(2802), + [anon_sym_ATavailable] = ACTIONS(2802), + [anon_sym___builtin_available] = ACTIONS(2800), + [anon_sym_va_arg] = ACTIONS(2800), + [anon_sym_ATencode] = ACTIONS(2802), + [anon_sym_ATsynchronized] = ACTIONS(2802), + [anon_sym_BOOL] = ACTIONS(2800), + [anon_sym_IMP] = ACTIONS(2800), + [anon_sym_SEL] = ACTIONS(2800), + [anon_sym_Class] = ACTIONS(2800), + [anon_sym_id] = ACTIONS(2800), + }, + [684] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_include_token2] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_CARET] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym___attribute] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_ATautoreleasepool] = ACTIONS(2862), + [anon_sym_auto] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_CG_EXTERN] = ACTIONS(2860), + [anon_sym_CG_INLINE] = ACTIONS(2860), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2860), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2860), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2860), + [anon_sym_IBOutlet] = ACTIONS(2860), + [anon_sym_IBInspectable] = ACTIONS(2860), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2860), + [anon_sym_NS_INLINE] = ACTIONS(2860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2860), + [anon_sym_OBJC_EXPORT] = ACTIONS(2860), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2860), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym__Nonnull] = ACTIONS(2860), + [anon_sym_nullable] = ACTIONS(2860), + [anon_sym__Complex] = ACTIONS(2860), + [anon_sym__Nullable] = ACTIONS(2860), + [anon_sym__Nullable_result] = ACTIONS(2860), + [anon_sym__Null_unspecified] = ACTIONS(2860), + [anon_sym___autoreleasing] = ACTIONS(2860), + [anon_sym___block] = ACTIONS(2860), + [anon_sym___bridge] = ACTIONS(2860), + [anon_sym___bridge_retained] = ACTIONS(2860), + [anon_sym___bridge_transfer] = ACTIONS(2860), + [anon_sym___complex] = ACTIONS(2860), + [anon_sym___const] = ACTIONS(2860), + [anon_sym___imag] = ACTIONS(2860), + [anon_sym___kindof] = ACTIONS(2860), + [anon_sym___nonnull] = ACTIONS(2860), + [anon_sym___nullable] = ACTIONS(2860), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2860), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2860), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2860), + [anon_sym___real] = ACTIONS(2860), + [anon_sym___strong] = ACTIONS(2860), + [anon_sym___unsafe_unretained] = ACTIONS(2860), + [anon_sym___unused] = ACTIONS(2860), + [anon_sym___weak] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym__Alignas] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_in] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [anon_sym___asm] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_AT] = ACTIONS(2860), + [anon_sym_DQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2860), + [anon_sym___typeof] = ACTIONS(2860), + [anon_sym_typeof] = ACTIONS(2860), + [anon_sym_ATimport] = ACTIONS(2862), + [aux_sym_preproc_undef_token1] = ACTIONS(2860), + [anon_sym_POUND] = ACTIONS(2860), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2860), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2860), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2860), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2860), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2860), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2860), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2860), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2860), + [anon_sym_NS_AVAILABLE] = ACTIONS(2860), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2860), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_API_AVAILABLE] = ACTIONS(2860), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_API_DEPRECATED] = ACTIONS(2860), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2860), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2860), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2860), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2860), + [anon_sym___deprecated_msg] = ACTIONS(2860), + [anon_sym___deprecated_enum_msg] = ACTIONS(2860), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2860), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2860), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2860), + [anon_sym_ATprotocol] = ACTIONS(2862), + [anon_sym_ATinterface] = ACTIONS(2862), + [anon_sym_ATimplementation] = ACTIONS(2862), + [anon_sym_ATcompatibility_alias] = ACTIONS(2862), + [anon_sym_ATsynthesize] = ACTIONS(2862), + [anon_sym_ATdynamic] = ACTIONS(2862), + [anon_sym_ATtry] = ACTIONS(2862), + [anon_sym___try] = ACTIONS(2860), + [anon_sym_ATthrow] = ACTIONS(2862), + [anon_sym_ATselector] = ACTIONS(2862), + [anon_sym_ATavailable] = ACTIONS(2862), + [anon_sym___builtin_available] = ACTIONS(2860), + [anon_sym_va_arg] = ACTIONS(2860), + [anon_sym_ATencode] = ACTIONS(2862), + [anon_sym_ATsynchronized] = ACTIONS(2862), + [anon_sym_BOOL] = ACTIONS(2860), + [anon_sym_IMP] = ACTIONS(2860), + [anon_sym_SEL] = ACTIONS(2860), + [anon_sym_Class] = ACTIONS(2860), + [anon_sym_id] = ACTIONS(2860), + }, + [685] = { + [sym_identifier] = ACTIONS(2752), + [aux_sym_preproc_include_token1] = ACTIONS(2752), + [aux_sym_preproc_include_token2] = ACTIONS(2752), + [aux_sym_preproc_def_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token2] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2752), + [sym_preproc_directive] = ACTIONS(2752), + [anon_sym_LPAREN2] = ACTIONS(2754), + [anon_sym_BANG] = ACTIONS(2754), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_STAR] = ACTIONS(2754), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2754), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym___extension__] = ACTIONS(2752), + [anon_sym_typedef] = ACTIONS(2752), + [anon_sym_extern] = ACTIONS(2752), + [anon_sym___attribute__] = ACTIONS(2752), + [anon_sym___attribute] = ACTIONS(2752), + [anon_sym_noreturn] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym___declspec] = ACTIONS(2752), + [anon_sym___cdecl] = ACTIONS(2752), + [anon_sym___clrcall] = ACTIONS(2752), + [anon_sym___stdcall] = ACTIONS(2752), + [anon_sym___fastcall] = ACTIONS(2752), + [anon_sym___thiscall] = ACTIONS(2752), + [anon_sym___vectorcall] = ACTIONS(2752), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_signed] = ACTIONS(2752), + [anon_sym_unsigned] = ACTIONS(2752), + [anon_sym_long] = ACTIONS(2752), + [anon_sym_short] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_ATautoreleasepool] = ACTIONS(2754), + [anon_sym_auto] = ACTIONS(2752), + [anon_sym_register] = ACTIONS(2752), + [anon_sym_inline] = ACTIONS(2752), + [anon_sym___inline] = ACTIONS(2752), + [anon_sym___inline__] = ACTIONS(2752), + [anon_sym___forceinline] = ACTIONS(2752), + [anon_sym_thread_local] = ACTIONS(2752), + [anon_sym___thread] = ACTIONS(2752), + [anon_sym_CG_EXTERN] = ACTIONS(2752), + [anon_sym_CG_INLINE] = ACTIONS(2752), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2752), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2752), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2752), + [anon_sym_IBOutlet] = ACTIONS(2752), + [anon_sym_IBInspectable] = ACTIONS(2752), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2752), + [anon_sym_NS_INLINE] = ACTIONS(2752), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2752), + [anon_sym_OBJC_EXPORT] = ACTIONS(2752), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2752), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2752), + [anon_sym_const] = ACTIONS(2752), + [anon_sym_constexpr] = ACTIONS(2752), + [anon_sym_volatile] = ACTIONS(2752), + [anon_sym_restrict] = ACTIONS(2752), + [anon_sym___restrict__] = ACTIONS(2752), + [anon_sym__Atomic] = ACTIONS(2752), + [anon_sym__Noreturn] = ACTIONS(2752), + [anon_sym__Nonnull] = ACTIONS(2752), + [anon_sym_nullable] = ACTIONS(2752), + [anon_sym__Complex] = ACTIONS(2752), + [anon_sym__Nullable] = ACTIONS(2752), + [anon_sym__Nullable_result] = ACTIONS(2752), + [anon_sym__Null_unspecified] = ACTIONS(2752), + [anon_sym___autoreleasing] = ACTIONS(2752), + [anon_sym___block] = ACTIONS(2752), + [anon_sym___bridge] = ACTIONS(2752), + [anon_sym___bridge_retained] = ACTIONS(2752), + [anon_sym___bridge_transfer] = ACTIONS(2752), + [anon_sym___complex] = ACTIONS(2752), + [anon_sym___const] = ACTIONS(2752), + [anon_sym___imag] = ACTIONS(2752), + [anon_sym___kindof] = ACTIONS(2752), + [anon_sym___nonnull] = ACTIONS(2752), + [anon_sym___nullable] = ACTIONS(2752), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2752), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2752), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2752), + [anon_sym___real] = ACTIONS(2752), + [anon_sym___strong] = ACTIONS(2752), + [anon_sym___unsafe_unretained] = ACTIONS(2752), + [anon_sym___unused] = ACTIONS(2752), + [anon_sym___weak] = ACTIONS(2752), + [anon_sym_alignas] = ACTIONS(2752), + [anon_sym__Alignas] = ACTIONS(2752), + [sym_primitive_type] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2752), + [anon_sym_union] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2752), + [anon_sym_case] = ACTIONS(2752), + [anon_sym_default] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_in] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_break] = ACTIONS(2752), + [anon_sym_continue] = ACTIONS(2752), + [anon_sym_goto] = ACTIONS(2752), + [anon_sym_DASH_DASH] = ACTIONS(2754), + [anon_sym_PLUS_PLUS] = ACTIONS(2754), + [anon_sym_sizeof] = ACTIONS(2752), + [anon_sym___alignof__] = ACTIONS(2752), + [anon_sym___alignof] = ACTIONS(2752), + [anon_sym__alignof] = ACTIONS(2752), + [anon_sym_alignof] = ACTIONS(2752), + [anon_sym__Alignof] = ACTIONS(2752), + [anon_sym_offsetof] = ACTIONS(2752), + [anon_sym__Generic] = ACTIONS(2752), + [anon_sym_asm] = ACTIONS(2752), + [anon_sym___asm__] = ACTIONS(2752), + [anon_sym___asm] = ACTIONS(2752), + [sym_number_literal] = ACTIONS(2754), + [anon_sym_L_SQUOTE] = ACTIONS(2754), + [anon_sym_u_SQUOTE] = ACTIONS(2754), + [anon_sym_U_SQUOTE] = ACTIONS(2754), + [anon_sym_u8_SQUOTE] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2754), + [anon_sym_AT] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2754), + [anon_sym_L_DQUOTE] = ACTIONS(2754), + [anon_sym_u_DQUOTE] = ACTIONS(2754), + [anon_sym_U_DQUOTE] = ACTIONS(2754), + [anon_sym_u8_DQUOTE] = ACTIONS(2754), + [sym_true] = ACTIONS(2752), + [sym_false] = ACTIONS(2752), + [anon_sym_NULL] = ACTIONS(2752), + [anon_sym_nullptr] = ACTIONS(2752), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2752), + [anon_sym___typeof] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(2752), + [anon_sym_ATimport] = ACTIONS(2754), + [aux_sym_preproc_undef_token1] = ACTIONS(2752), + [anon_sym_POUND] = ACTIONS(2752), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2752), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2752), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2752), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2752), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2752), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2752), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2752), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2752), + [anon_sym_NS_AVAILABLE] = ACTIONS(2752), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2752), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_API_AVAILABLE] = ACTIONS(2752), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_API_DEPRECATED] = ACTIONS(2752), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2752), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2752), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2752), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2752), + [anon_sym___deprecated_msg] = ACTIONS(2752), + [anon_sym___deprecated_enum_msg] = ACTIONS(2752), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2752), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2752), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2752), + [anon_sym_ATprotocol] = ACTIONS(2754), + [anon_sym_ATinterface] = ACTIONS(2754), + [anon_sym_ATimplementation] = ACTIONS(2754), + [anon_sym_ATcompatibility_alias] = ACTIONS(2754), + [anon_sym_ATsynthesize] = ACTIONS(2754), + [anon_sym_ATdynamic] = ACTIONS(2754), + [anon_sym_ATtry] = ACTIONS(2754), + [anon_sym___try] = ACTIONS(2752), + [anon_sym_ATthrow] = ACTIONS(2754), + [anon_sym_ATselector] = ACTIONS(2754), + [anon_sym_ATavailable] = ACTIONS(2754), + [anon_sym___builtin_available] = ACTIONS(2752), + [anon_sym_va_arg] = ACTIONS(2752), + [anon_sym_ATencode] = ACTIONS(2754), + [anon_sym_ATsynchronized] = ACTIONS(2754), + [anon_sym_BOOL] = ACTIONS(2752), + [anon_sym_IMP] = ACTIONS(2752), + [anon_sym_SEL] = ACTIONS(2752), + [anon_sym_Class] = ACTIONS(2752), + [anon_sym_id] = ACTIONS(2752), + }, + [686] = { + [sym_identifier] = ACTIONS(2744), + [aux_sym_preproc_include_token1] = ACTIONS(2744), + [aux_sym_preproc_include_token2] = ACTIONS(2744), + [aux_sym_preproc_def_token1] = ACTIONS(2744), + [aux_sym_preproc_if_token1] = ACTIONS(2744), + [aux_sym_preproc_if_token2] = ACTIONS(2744), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2744), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2744), + [sym_preproc_directive] = ACTIONS(2744), + [anon_sym_LPAREN2] = ACTIONS(2746), + [anon_sym_BANG] = ACTIONS(2746), + [anon_sym_TILDE] = ACTIONS(2746), + [anon_sym_DASH] = ACTIONS(2744), + [anon_sym_PLUS] = ACTIONS(2744), + [anon_sym_STAR] = ACTIONS(2746), + [anon_sym_CARET] = ACTIONS(2746), + [anon_sym_AMP] = ACTIONS(2746), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym___extension__] = ACTIONS(2744), + [anon_sym_typedef] = ACTIONS(2744), + [anon_sym_extern] = ACTIONS(2744), + [anon_sym___attribute__] = ACTIONS(2744), + [anon_sym___attribute] = ACTIONS(2744), + [anon_sym_noreturn] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym___declspec] = ACTIONS(2744), + [anon_sym___cdecl] = ACTIONS(2744), + [anon_sym___clrcall] = ACTIONS(2744), + [anon_sym___stdcall] = ACTIONS(2744), + [anon_sym___fastcall] = ACTIONS(2744), + [anon_sym___thiscall] = ACTIONS(2744), + [anon_sym___vectorcall] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_signed] = ACTIONS(2744), + [anon_sym_unsigned] = ACTIONS(2744), + [anon_sym_long] = ACTIONS(2744), + [anon_sym_short] = ACTIONS(2744), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_ATautoreleasepool] = ACTIONS(2746), + [anon_sym_auto] = ACTIONS(2744), + [anon_sym_register] = ACTIONS(2744), + [anon_sym_inline] = ACTIONS(2744), + [anon_sym___inline] = ACTIONS(2744), + [anon_sym___inline__] = ACTIONS(2744), + [anon_sym___forceinline] = ACTIONS(2744), + [anon_sym_thread_local] = ACTIONS(2744), + [anon_sym___thread] = ACTIONS(2744), + [anon_sym_CG_EXTERN] = ACTIONS(2744), + [anon_sym_CG_INLINE] = ACTIONS(2744), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2744), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2744), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2744), + [anon_sym_IBOutlet] = ACTIONS(2744), + [anon_sym_IBInspectable] = ACTIONS(2744), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2744), + [anon_sym_NS_INLINE] = ACTIONS(2744), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2744), + [anon_sym_OBJC_EXPORT] = ACTIONS(2744), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2744), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2744), + [anon_sym_const] = ACTIONS(2744), + [anon_sym_constexpr] = ACTIONS(2744), + [anon_sym_volatile] = ACTIONS(2744), + [anon_sym_restrict] = ACTIONS(2744), + [anon_sym___restrict__] = ACTIONS(2744), + [anon_sym__Atomic] = ACTIONS(2744), + [anon_sym__Noreturn] = ACTIONS(2744), + [anon_sym__Nonnull] = ACTIONS(2744), + [anon_sym_nullable] = ACTIONS(2744), + [anon_sym__Complex] = ACTIONS(2744), + [anon_sym__Nullable] = ACTIONS(2744), + [anon_sym__Nullable_result] = ACTIONS(2744), + [anon_sym__Null_unspecified] = ACTIONS(2744), + [anon_sym___autoreleasing] = ACTIONS(2744), + [anon_sym___block] = ACTIONS(2744), + [anon_sym___bridge] = ACTIONS(2744), + [anon_sym___bridge_retained] = ACTIONS(2744), + [anon_sym___bridge_transfer] = ACTIONS(2744), + [anon_sym___complex] = ACTIONS(2744), + [anon_sym___const] = ACTIONS(2744), + [anon_sym___imag] = ACTIONS(2744), + [anon_sym___kindof] = ACTIONS(2744), + [anon_sym___nonnull] = ACTIONS(2744), + [anon_sym___nullable] = ACTIONS(2744), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2744), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2744), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2744), + [anon_sym___real] = ACTIONS(2744), + [anon_sym___strong] = ACTIONS(2744), + [anon_sym___unsafe_unretained] = ACTIONS(2744), + [anon_sym___unused] = ACTIONS(2744), + [anon_sym___weak] = ACTIONS(2744), + [anon_sym_alignas] = ACTIONS(2744), + [anon_sym__Alignas] = ACTIONS(2744), + [sym_primitive_type] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), + [anon_sym_struct] = ACTIONS(2744), + [anon_sym_union] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_switch] = ACTIONS(2744), + [anon_sym_case] = ACTIONS(2744), + [anon_sym_default] = ACTIONS(2744), + [anon_sym_while] = ACTIONS(2744), + [anon_sym_do] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2744), + [anon_sym_return] = ACTIONS(2744), + [anon_sym_break] = ACTIONS(2744), + [anon_sym_continue] = ACTIONS(2744), + [anon_sym_goto] = ACTIONS(2744), + [anon_sym_DASH_DASH] = ACTIONS(2746), + [anon_sym_PLUS_PLUS] = ACTIONS(2746), + [anon_sym_sizeof] = ACTIONS(2744), + [anon_sym___alignof__] = ACTIONS(2744), + [anon_sym___alignof] = ACTIONS(2744), + [anon_sym__alignof] = ACTIONS(2744), + [anon_sym_alignof] = ACTIONS(2744), + [anon_sym__Alignof] = ACTIONS(2744), + [anon_sym_offsetof] = ACTIONS(2744), + [anon_sym__Generic] = ACTIONS(2744), + [anon_sym_asm] = ACTIONS(2744), + [anon_sym___asm__] = ACTIONS(2744), + [anon_sym___asm] = ACTIONS(2744), + [sym_number_literal] = ACTIONS(2746), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_AT] = ACTIONS(2744), + [anon_sym_DQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2746), + [anon_sym_u_DQUOTE] = ACTIONS(2746), + [anon_sym_U_DQUOTE] = ACTIONS(2746), + [anon_sym_u8_DQUOTE] = ACTIONS(2746), + [sym_true] = ACTIONS(2744), + [sym_false] = ACTIONS(2744), + [anon_sym_NULL] = ACTIONS(2744), + [anon_sym_nullptr] = ACTIONS(2744), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2744), + [anon_sym___typeof] = ACTIONS(2744), + [anon_sym_typeof] = ACTIONS(2744), + [anon_sym_ATimport] = ACTIONS(2746), + [aux_sym_preproc_undef_token1] = ACTIONS(2744), + [anon_sym_POUND] = ACTIONS(2744), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2744), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2744), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2744), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2744), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2744), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2744), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2744), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2744), + [anon_sym_NS_AVAILABLE] = ACTIONS(2744), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2744), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_API_AVAILABLE] = ACTIONS(2744), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_API_DEPRECATED] = ACTIONS(2744), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2744), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2744), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2744), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2744), + [anon_sym___deprecated_msg] = ACTIONS(2744), + [anon_sym___deprecated_enum_msg] = ACTIONS(2744), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2744), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2744), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2744), + [anon_sym_ATprotocol] = ACTIONS(2746), + [anon_sym_ATinterface] = ACTIONS(2746), + [anon_sym_ATimplementation] = ACTIONS(2746), + [anon_sym_ATcompatibility_alias] = ACTIONS(2746), + [anon_sym_ATsynthesize] = ACTIONS(2746), + [anon_sym_ATdynamic] = ACTIONS(2746), + [anon_sym_ATtry] = ACTIONS(2746), + [anon_sym___try] = ACTIONS(2744), + [anon_sym_ATthrow] = ACTIONS(2746), + [anon_sym_ATselector] = ACTIONS(2746), + [anon_sym_ATavailable] = ACTIONS(2746), + [anon_sym___builtin_available] = ACTIONS(2744), + [anon_sym_va_arg] = ACTIONS(2744), + [anon_sym_ATencode] = ACTIONS(2746), + [anon_sym_ATsynchronized] = ACTIONS(2746), + [anon_sym_BOOL] = ACTIONS(2744), + [anon_sym_IMP] = ACTIONS(2744), + [anon_sym_SEL] = ACTIONS(2744), + [anon_sym_Class] = ACTIONS(2744), + [anon_sym_id] = ACTIONS(2744), + }, + [687] = { + [sym_identifier] = ACTIONS(2616), + [aux_sym_preproc_include_token1] = ACTIONS(2616), + [aux_sym_preproc_include_token2] = ACTIONS(2616), + [aux_sym_preproc_def_token1] = ACTIONS(2616), + [aux_sym_preproc_if_token1] = ACTIONS(2616), + [aux_sym_preproc_if_token2] = ACTIONS(2616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2616), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2616), + [sym_preproc_directive] = ACTIONS(2616), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2618), + [anon_sym_TILDE] = ACTIONS(2618), + [anon_sym_DASH] = ACTIONS(2616), + [anon_sym_PLUS] = ACTIONS(2616), + [anon_sym_STAR] = ACTIONS(2618), + [anon_sym_CARET] = ACTIONS(2618), + [anon_sym_AMP] = ACTIONS(2618), + [anon_sym_SEMI] = ACTIONS(2618), + [anon_sym___extension__] = ACTIONS(2616), + [anon_sym_typedef] = ACTIONS(2616), + [anon_sym_extern] = ACTIONS(2616), + [anon_sym___attribute__] = ACTIONS(2616), + [anon_sym___attribute] = ACTIONS(2616), + [anon_sym_noreturn] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(2618), + [anon_sym___declspec] = ACTIONS(2616), + [anon_sym___cdecl] = ACTIONS(2616), + [anon_sym___clrcall] = ACTIONS(2616), + [anon_sym___stdcall] = ACTIONS(2616), + [anon_sym___fastcall] = ACTIONS(2616), + [anon_sym___thiscall] = ACTIONS(2616), + [anon_sym___vectorcall] = ACTIONS(2616), + [anon_sym_LBRACE] = ACTIONS(2618), + [anon_sym_signed] = ACTIONS(2616), + [anon_sym_unsigned] = ACTIONS(2616), + [anon_sym_long] = ACTIONS(2616), + [anon_sym_short] = ACTIONS(2616), + [anon_sym_static] = ACTIONS(2616), + [anon_sym_ATautoreleasepool] = ACTIONS(2618), + [anon_sym_auto] = ACTIONS(2616), + [anon_sym_register] = ACTIONS(2616), + [anon_sym_inline] = ACTIONS(2616), + [anon_sym___inline] = ACTIONS(2616), + [anon_sym___inline__] = ACTIONS(2616), + [anon_sym___forceinline] = ACTIONS(2616), + [anon_sym_thread_local] = ACTIONS(2616), + [anon_sym___thread] = ACTIONS(2616), + [anon_sym_CG_EXTERN] = ACTIONS(2616), + [anon_sym_CG_INLINE] = ACTIONS(2616), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2616), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2616), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2616), + [anon_sym_IBOutlet] = ACTIONS(2616), + [anon_sym_IBInspectable] = ACTIONS(2616), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2616), + [anon_sym_NS_INLINE] = ACTIONS(2616), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2616), + [anon_sym_OBJC_EXPORT] = ACTIONS(2616), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2616), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2616), + [anon_sym_const] = ACTIONS(2616), + [anon_sym_constexpr] = ACTIONS(2616), + [anon_sym_volatile] = ACTIONS(2616), + [anon_sym_restrict] = ACTIONS(2616), + [anon_sym___restrict__] = ACTIONS(2616), + [anon_sym__Atomic] = ACTIONS(2616), + [anon_sym__Noreturn] = ACTIONS(2616), + [anon_sym__Nonnull] = ACTIONS(2616), + [anon_sym_nullable] = ACTIONS(2616), + [anon_sym__Complex] = ACTIONS(2616), + [anon_sym__Nullable] = ACTIONS(2616), + [anon_sym__Nullable_result] = ACTIONS(2616), + [anon_sym__Null_unspecified] = ACTIONS(2616), + [anon_sym___autoreleasing] = ACTIONS(2616), + [anon_sym___block] = ACTIONS(2616), + [anon_sym___bridge] = ACTIONS(2616), + [anon_sym___bridge_retained] = ACTIONS(2616), + [anon_sym___bridge_transfer] = ACTIONS(2616), + [anon_sym___complex] = ACTIONS(2616), + [anon_sym___const] = ACTIONS(2616), + [anon_sym___imag] = ACTIONS(2616), + [anon_sym___kindof] = ACTIONS(2616), + [anon_sym___nonnull] = ACTIONS(2616), + [anon_sym___nullable] = ACTIONS(2616), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2616), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2616), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2616), + [anon_sym___real] = ACTIONS(2616), + [anon_sym___strong] = ACTIONS(2616), + [anon_sym___unsafe_unretained] = ACTIONS(2616), + [anon_sym___unused] = ACTIONS(2616), + [anon_sym___weak] = ACTIONS(2616), + [anon_sym_alignas] = ACTIONS(2616), + [anon_sym__Alignas] = ACTIONS(2616), + [sym_primitive_type] = ACTIONS(2616), + [anon_sym_enum] = ACTIONS(2616), + [anon_sym_struct] = ACTIONS(2616), + [anon_sym_union] = ACTIONS(2616), + [anon_sym_if] = ACTIONS(2616), + [anon_sym_switch] = ACTIONS(2616), + [anon_sym_case] = ACTIONS(2616), + [anon_sym_default] = ACTIONS(2616), + [anon_sym_while] = ACTIONS(2616), + [anon_sym_do] = ACTIONS(2616), + [anon_sym_for] = ACTIONS(2616), + [anon_sym_in] = ACTIONS(2616), + [anon_sym_return] = ACTIONS(2616), + [anon_sym_break] = ACTIONS(2616), + [anon_sym_continue] = ACTIONS(2616), + [anon_sym_goto] = ACTIONS(2616), + [anon_sym_DASH_DASH] = ACTIONS(2618), + [anon_sym_PLUS_PLUS] = ACTIONS(2618), + [anon_sym_sizeof] = ACTIONS(2616), + [anon_sym___alignof__] = ACTIONS(2616), + [anon_sym___alignof] = ACTIONS(2616), + [anon_sym__alignof] = ACTIONS(2616), + [anon_sym_alignof] = ACTIONS(2616), + [anon_sym__Alignof] = ACTIONS(2616), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2616), + [anon_sym_asm] = ACTIONS(2616), + [anon_sym___asm__] = ACTIONS(2616), + [anon_sym___asm] = ACTIONS(2616), + [sym_number_literal] = ACTIONS(2618), + [anon_sym_L_SQUOTE] = ACTIONS(2618), + [anon_sym_u_SQUOTE] = ACTIONS(2618), + [anon_sym_U_SQUOTE] = ACTIONS(2618), + [anon_sym_u8_SQUOTE] = ACTIONS(2618), + [anon_sym_SQUOTE] = ACTIONS(2618), + [anon_sym_AT] = ACTIONS(2616), + [anon_sym_DQUOTE] = ACTIONS(2618), + [anon_sym_L_DQUOTE] = ACTIONS(2618), + [anon_sym_u_DQUOTE] = ACTIONS(2618), + [anon_sym_U_DQUOTE] = ACTIONS(2618), + [anon_sym_u8_DQUOTE] = ACTIONS(2618), + [sym_true] = ACTIONS(2616), + [sym_false] = ACTIONS(2616), + [anon_sym_NULL] = ACTIONS(2616), + [anon_sym_nullptr] = ACTIONS(2616), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2616), + [anon_sym___typeof] = ACTIONS(2616), + [anon_sym_typeof] = ACTIONS(2616), + [anon_sym_ATimport] = ACTIONS(2618), + [aux_sym_preproc_undef_token1] = ACTIONS(2616), + [anon_sym_POUND] = ACTIONS(2616), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2616), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2616), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2616), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2616), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2616), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2616), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2616), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2616), + [anon_sym_NS_AVAILABLE] = ACTIONS(2616), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2616), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_API_AVAILABLE] = ACTIONS(2616), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_API_DEPRECATED] = ACTIONS(2616), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2616), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2616), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2616), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2616), + [anon_sym___deprecated_msg] = ACTIONS(2616), + [anon_sym___deprecated_enum_msg] = ACTIONS(2616), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2616), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2616), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2616), + [anon_sym_ATprotocol] = ACTIONS(2618), + [anon_sym_ATinterface] = ACTIONS(2618), + [anon_sym_ATimplementation] = ACTIONS(2618), + [anon_sym_ATcompatibility_alias] = ACTIONS(2618), + [anon_sym_ATsynthesize] = ACTIONS(2618), + [anon_sym_ATdynamic] = ACTIONS(2618), + [anon_sym_ATtry] = ACTIONS(2618), + [anon_sym___try] = ACTIONS(2616), + [anon_sym_ATthrow] = ACTIONS(2618), + [anon_sym_ATselector] = ACTIONS(2618), + [anon_sym_ATavailable] = ACTIONS(2618), + [anon_sym___builtin_available] = ACTIONS(2616), + [anon_sym_va_arg] = ACTIONS(2616), + [anon_sym_ATencode] = ACTIONS(2618), + [anon_sym_ATsynchronized] = ACTIONS(2618), + [anon_sym_BOOL] = ACTIONS(2616), + [anon_sym_IMP] = ACTIONS(2616), + [anon_sym_SEL] = ACTIONS(2616), + [anon_sym_Class] = ACTIONS(2616), + [anon_sym_id] = ACTIONS(2616), + }, + [688] = { + [sym_identifier] = ACTIONS(2602), + [aux_sym_preproc_include_token1] = ACTIONS(2602), + [aux_sym_preproc_include_token2] = ACTIONS(2602), + [aux_sym_preproc_def_token1] = ACTIONS(2602), + [aux_sym_preproc_if_token1] = ACTIONS(2602), + [aux_sym_preproc_if_token2] = ACTIONS(2602), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2602), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2602), + [sym_preproc_directive] = ACTIONS(2602), + [anon_sym_LPAREN2] = ACTIONS(2604), + [anon_sym_BANG] = ACTIONS(2604), + [anon_sym_TILDE] = ACTIONS(2604), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_CARET] = ACTIONS(2604), + [anon_sym_AMP] = ACTIONS(2604), + [anon_sym_SEMI] = ACTIONS(2604), + [anon_sym___extension__] = ACTIONS(2602), + [anon_sym_typedef] = ACTIONS(2602), + [anon_sym_extern] = ACTIONS(2602), + [anon_sym___attribute__] = ACTIONS(2602), + [anon_sym___attribute] = ACTIONS(2602), + [anon_sym_noreturn] = ACTIONS(2602), + [anon_sym_LBRACK] = ACTIONS(2604), + [anon_sym___declspec] = ACTIONS(2602), + [anon_sym___cdecl] = ACTIONS(2602), + [anon_sym___clrcall] = ACTIONS(2602), + [anon_sym___stdcall] = ACTIONS(2602), + [anon_sym___fastcall] = ACTIONS(2602), + [anon_sym___thiscall] = ACTIONS(2602), + [anon_sym___vectorcall] = ACTIONS(2602), + [anon_sym_LBRACE] = ACTIONS(2604), + [anon_sym_signed] = ACTIONS(2602), + [anon_sym_unsigned] = ACTIONS(2602), + [anon_sym_long] = ACTIONS(2602), + [anon_sym_short] = ACTIONS(2602), + [anon_sym_static] = ACTIONS(2602), + [anon_sym_ATautoreleasepool] = ACTIONS(2604), + [anon_sym_auto] = ACTIONS(2602), + [anon_sym_register] = ACTIONS(2602), + [anon_sym_inline] = ACTIONS(2602), + [anon_sym___inline] = ACTIONS(2602), + [anon_sym___inline__] = ACTIONS(2602), + [anon_sym___forceinline] = ACTIONS(2602), + [anon_sym_thread_local] = ACTIONS(2602), + [anon_sym___thread] = ACTIONS(2602), + [anon_sym_CG_EXTERN] = ACTIONS(2602), + [anon_sym_CG_INLINE] = ACTIONS(2602), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2602), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2602), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2602), + [anon_sym_IBOutlet] = ACTIONS(2602), + [anon_sym_IBInspectable] = ACTIONS(2602), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2602), + [anon_sym_NS_INLINE] = ACTIONS(2602), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2602), + [anon_sym_OBJC_EXPORT] = ACTIONS(2602), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2602), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2602), + [anon_sym_const] = ACTIONS(2602), + [anon_sym_constexpr] = ACTIONS(2602), + [anon_sym_volatile] = ACTIONS(2602), + [anon_sym_restrict] = ACTIONS(2602), + [anon_sym___restrict__] = ACTIONS(2602), + [anon_sym__Atomic] = ACTIONS(2602), + [anon_sym__Noreturn] = ACTIONS(2602), + [anon_sym__Nonnull] = ACTIONS(2602), + [anon_sym_nullable] = ACTIONS(2602), + [anon_sym__Complex] = ACTIONS(2602), + [anon_sym__Nullable] = ACTIONS(2602), + [anon_sym__Nullable_result] = ACTIONS(2602), + [anon_sym__Null_unspecified] = ACTIONS(2602), + [anon_sym___autoreleasing] = ACTIONS(2602), + [anon_sym___block] = ACTIONS(2602), + [anon_sym___bridge] = ACTIONS(2602), + [anon_sym___bridge_retained] = ACTIONS(2602), + [anon_sym___bridge_transfer] = ACTIONS(2602), + [anon_sym___complex] = ACTIONS(2602), + [anon_sym___const] = ACTIONS(2602), + [anon_sym___imag] = ACTIONS(2602), + [anon_sym___kindof] = ACTIONS(2602), + [anon_sym___nonnull] = ACTIONS(2602), + [anon_sym___nullable] = ACTIONS(2602), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2602), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2602), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2602), + [anon_sym___real] = ACTIONS(2602), + [anon_sym___strong] = ACTIONS(2602), + [anon_sym___unsafe_unretained] = ACTIONS(2602), + [anon_sym___unused] = ACTIONS(2602), + [anon_sym___weak] = ACTIONS(2602), + [anon_sym_alignas] = ACTIONS(2602), + [anon_sym__Alignas] = ACTIONS(2602), + [sym_primitive_type] = ACTIONS(2602), + [anon_sym_enum] = ACTIONS(2602), + [anon_sym_struct] = ACTIONS(2602), + [anon_sym_union] = ACTIONS(2602), + [anon_sym_if] = ACTIONS(2602), + [anon_sym_switch] = ACTIONS(2602), + [anon_sym_case] = ACTIONS(2602), + [anon_sym_default] = ACTIONS(2602), + [anon_sym_while] = ACTIONS(2602), + [anon_sym_do] = ACTIONS(2602), + [anon_sym_for] = ACTIONS(2602), + [anon_sym_in] = ACTIONS(2602), + [anon_sym_return] = ACTIONS(2602), + [anon_sym_break] = ACTIONS(2602), + [anon_sym_continue] = ACTIONS(2602), + [anon_sym_goto] = ACTIONS(2602), + [anon_sym_DASH_DASH] = ACTIONS(2604), + [anon_sym_PLUS_PLUS] = ACTIONS(2604), + [anon_sym_sizeof] = ACTIONS(2602), + [anon_sym___alignof__] = ACTIONS(2602), + [anon_sym___alignof] = ACTIONS(2602), + [anon_sym__alignof] = ACTIONS(2602), + [anon_sym_alignof] = ACTIONS(2602), + [anon_sym__Alignof] = ACTIONS(2602), + [anon_sym_offsetof] = ACTIONS(2602), + [anon_sym__Generic] = ACTIONS(2602), + [anon_sym_asm] = ACTIONS(2602), + [anon_sym___asm__] = ACTIONS(2602), + [anon_sym___asm] = ACTIONS(2602), + [sym_number_literal] = ACTIONS(2604), + [anon_sym_L_SQUOTE] = ACTIONS(2604), + [anon_sym_u_SQUOTE] = ACTIONS(2604), + [anon_sym_U_SQUOTE] = ACTIONS(2604), + [anon_sym_u8_SQUOTE] = ACTIONS(2604), + [anon_sym_SQUOTE] = ACTIONS(2604), + [anon_sym_AT] = ACTIONS(2602), + [anon_sym_DQUOTE] = ACTIONS(2604), + [anon_sym_L_DQUOTE] = ACTIONS(2604), + [anon_sym_u_DQUOTE] = ACTIONS(2604), + [anon_sym_U_DQUOTE] = ACTIONS(2604), + [anon_sym_u8_DQUOTE] = ACTIONS(2604), + [sym_true] = ACTIONS(2602), + [sym_false] = ACTIONS(2602), + [anon_sym_NULL] = ACTIONS(2602), + [anon_sym_nullptr] = ACTIONS(2602), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2602), + [anon_sym___typeof] = ACTIONS(2602), + [anon_sym_typeof] = ACTIONS(2602), + [anon_sym_ATimport] = ACTIONS(2604), + [aux_sym_preproc_undef_token1] = ACTIONS(2602), + [anon_sym_POUND] = ACTIONS(2602), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2602), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2602), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2602), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2602), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2602), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2602), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2602), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2602), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2602), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2602), + [anon_sym_NS_AVAILABLE] = ACTIONS(2602), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2602), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2602), + [anon_sym_API_AVAILABLE] = ACTIONS(2602), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2602), + [anon_sym_API_DEPRECATED] = ACTIONS(2602), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2602), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2602), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2602), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2602), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2602), + [anon_sym___deprecated_msg] = ACTIONS(2602), + [anon_sym___deprecated_enum_msg] = ACTIONS(2602), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2602), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2602), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2602), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2602), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2602), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2602), + [anon_sym_ATprotocol] = ACTIONS(2604), + [anon_sym_ATinterface] = ACTIONS(2604), + [anon_sym_ATimplementation] = ACTIONS(2604), + [anon_sym_ATcompatibility_alias] = ACTIONS(2604), + [anon_sym_ATsynthesize] = ACTIONS(2604), + [anon_sym_ATdynamic] = ACTIONS(2604), + [anon_sym_ATtry] = ACTIONS(2604), + [anon_sym___try] = ACTIONS(2602), + [anon_sym_ATthrow] = ACTIONS(2604), + [anon_sym_ATselector] = ACTIONS(2604), + [anon_sym_ATavailable] = ACTIONS(2604), + [anon_sym___builtin_available] = ACTIONS(2602), + [anon_sym_va_arg] = ACTIONS(2602), + [anon_sym_ATencode] = ACTIONS(2604), + [anon_sym_ATsynchronized] = ACTIONS(2604), + [anon_sym_BOOL] = ACTIONS(2602), + [anon_sym_IMP] = ACTIONS(2602), + [anon_sym_SEL] = ACTIONS(2602), + [anon_sym_Class] = ACTIONS(2602), + [anon_sym_id] = ACTIONS(2602), + }, + [689] = { + [sym_identifier] = ACTIONS(2606), + [aux_sym_preproc_include_token1] = ACTIONS(2606), + [aux_sym_preproc_include_token2] = ACTIONS(2606), + [aux_sym_preproc_def_token1] = ACTIONS(2606), + [aux_sym_preproc_if_token1] = ACTIONS(2606), + [aux_sym_preproc_if_token2] = ACTIONS(2606), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2606), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2606), + [sym_preproc_directive] = ACTIONS(2606), + [anon_sym_LPAREN2] = ACTIONS(2609), + [anon_sym_BANG] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2606), + [anon_sym_PLUS] = ACTIONS(2606), + [anon_sym_STAR] = ACTIONS(2609), + [anon_sym_CARET] = ACTIONS(2609), + [anon_sym_AMP] = ACTIONS(2609), + [anon_sym_SEMI] = ACTIONS(2609), + [anon_sym___extension__] = ACTIONS(2606), + [anon_sym_typedef] = ACTIONS(2606), + [anon_sym_extern] = ACTIONS(2606), + [anon_sym___attribute__] = ACTIONS(2606), + [anon_sym___attribute] = ACTIONS(2606), + [anon_sym_noreturn] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(2609), + [anon_sym___declspec] = ACTIONS(2606), + [anon_sym___cdecl] = ACTIONS(2606), + [anon_sym___clrcall] = ACTIONS(2606), + [anon_sym___stdcall] = ACTIONS(2606), + [anon_sym___fastcall] = ACTIONS(2606), + [anon_sym___thiscall] = ACTIONS(2606), + [anon_sym___vectorcall] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2609), + [anon_sym_signed] = ACTIONS(2606), + [anon_sym_unsigned] = ACTIONS(2606), + [anon_sym_long] = ACTIONS(2606), + [anon_sym_short] = ACTIONS(2606), + [anon_sym_static] = ACTIONS(2606), + [anon_sym_ATautoreleasepool] = ACTIONS(2609), + [anon_sym_auto] = ACTIONS(2606), + [anon_sym_register] = ACTIONS(2606), + [anon_sym_inline] = ACTIONS(2606), + [anon_sym___inline] = ACTIONS(2606), + [anon_sym___inline__] = ACTIONS(2606), + [anon_sym___forceinline] = ACTIONS(2606), + [anon_sym_thread_local] = ACTIONS(2606), + [anon_sym___thread] = ACTIONS(2606), + [anon_sym_CG_EXTERN] = ACTIONS(2606), + [anon_sym_CG_INLINE] = ACTIONS(2606), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2606), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2606), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2606), + [anon_sym_IBOutlet] = ACTIONS(2606), + [anon_sym_IBInspectable] = ACTIONS(2606), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2606), + [anon_sym_NS_INLINE] = ACTIONS(2606), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2606), + [anon_sym_OBJC_EXPORT] = ACTIONS(2606), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2606), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2606), + [anon_sym_const] = ACTIONS(2606), + [anon_sym_constexpr] = ACTIONS(2606), + [anon_sym_volatile] = ACTIONS(2606), + [anon_sym_restrict] = ACTIONS(2606), + [anon_sym___restrict__] = ACTIONS(2606), + [anon_sym__Atomic] = ACTIONS(2606), + [anon_sym__Noreturn] = ACTIONS(2606), + [anon_sym__Nonnull] = ACTIONS(2606), + [anon_sym_nullable] = ACTIONS(2606), + [anon_sym__Complex] = ACTIONS(2606), + [anon_sym__Nullable] = ACTIONS(2606), + [anon_sym__Nullable_result] = ACTIONS(2606), + [anon_sym__Null_unspecified] = ACTIONS(2606), + [anon_sym___autoreleasing] = ACTIONS(2606), + [anon_sym___block] = ACTIONS(2606), + [anon_sym___bridge] = ACTIONS(2606), + [anon_sym___bridge_retained] = ACTIONS(2606), + [anon_sym___bridge_transfer] = ACTIONS(2606), + [anon_sym___complex] = ACTIONS(2606), + [anon_sym___const] = ACTIONS(2606), + [anon_sym___imag] = ACTIONS(2606), + [anon_sym___kindof] = ACTIONS(2606), + [anon_sym___nonnull] = ACTIONS(2606), + [anon_sym___nullable] = ACTIONS(2606), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2606), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2606), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2606), + [anon_sym___real] = ACTIONS(2606), + [anon_sym___strong] = ACTIONS(2606), + [anon_sym___unsafe_unretained] = ACTIONS(2606), + [anon_sym___unused] = ACTIONS(2606), + [anon_sym___weak] = ACTIONS(2606), + [anon_sym_alignas] = ACTIONS(2606), + [anon_sym__Alignas] = ACTIONS(2606), + [sym_primitive_type] = ACTIONS(2606), + [anon_sym_enum] = ACTIONS(2606), + [anon_sym_struct] = ACTIONS(2606), + [anon_sym_union] = ACTIONS(2606), + [anon_sym_if] = ACTIONS(2606), + [anon_sym_switch] = ACTIONS(2606), + [anon_sym_case] = ACTIONS(2606), + [anon_sym_default] = ACTIONS(2606), + [anon_sym_while] = ACTIONS(2606), + [anon_sym_do] = ACTIONS(2606), + [anon_sym_for] = ACTIONS(2606), + [anon_sym_in] = ACTIONS(2606), + [anon_sym_return] = ACTIONS(2606), + [anon_sym_break] = ACTIONS(2606), + [anon_sym_continue] = ACTIONS(2606), + [anon_sym_goto] = ACTIONS(2606), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2606), + [anon_sym___alignof__] = ACTIONS(2606), + [anon_sym___alignof] = ACTIONS(2606), + [anon_sym__alignof] = ACTIONS(2606), + [anon_sym_alignof] = ACTIONS(2606), + [anon_sym__Alignof] = ACTIONS(2606), + [anon_sym_offsetof] = ACTIONS(2606), + [anon_sym__Generic] = ACTIONS(2606), + [anon_sym_asm] = ACTIONS(2606), + [anon_sym___asm__] = ACTIONS(2606), + [anon_sym___asm] = ACTIONS(2606), + [sym_number_literal] = ACTIONS(2609), + [anon_sym_L_SQUOTE] = ACTIONS(2609), + [anon_sym_u_SQUOTE] = ACTIONS(2609), + [anon_sym_U_SQUOTE] = ACTIONS(2609), + [anon_sym_u8_SQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE] = ACTIONS(2609), + [anon_sym_AT] = ACTIONS(2606), + [anon_sym_DQUOTE] = ACTIONS(2609), + [anon_sym_L_DQUOTE] = ACTIONS(2609), + [anon_sym_u_DQUOTE] = ACTIONS(2609), + [anon_sym_U_DQUOTE] = ACTIONS(2609), + [anon_sym_u8_DQUOTE] = ACTIONS(2609), + [sym_true] = ACTIONS(2606), + [sym_false] = ACTIONS(2606), + [anon_sym_NULL] = ACTIONS(2606), + [anon_sym_nullptr] = ACTIONS(2606), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2606), + [anon_sym___typeof] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(2606), + [anon_sym_ATimport] = ACTIONS(2609), + [aux_sym_preproc_undef_token1] = ACTIONS(2606), + [anon_sym_POUND] = ACTIONS(2606), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2606), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2606), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2606), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2606), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2606), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2606), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2606), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2606), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2606), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2606), + [anon_sym_NS_AVAILABLE] = ACTIONS(2606), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2606), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2606), + [anon_sym_API_AVAILABLE] = ACTIONS(2606), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2606), + [anon_sym_API_DEPRECATED] = ACTIONS(2606), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2606), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2606), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2606), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2606), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2606), + [anon_sym___deprecated_msg] = ACTIONS(2606), + [anon_sym___deprecated_enum_msg] = ACTIONS(2606), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2606), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2606), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2606), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2606), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2606), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2606), + [anon_sym_ATprotocol] = ACTIONS(2609), + [anon_sym_ATinterface] = ACTIONS(2609), + [anon_sym_ATimplementation] = ACTIONS(2609), + [anon_sym_ATcompatibility_alias] = ACTIONS(2609), + [anon_sym_ATsynthesize] = ACTIONS(2609), + [anon_sym_ATdynamic] = ACTIONS(2609), + [anon_sym_ATtry] = ACTIONS(2609), + [anon_sym___try] = ACTIONS(2606), + [anon_sym_ATthrow] = ACTIONS(2609), + [anon_sym_ATselector] = ACTIONS(2609), + [anon_sym_ATavailable] = ACTIONS(2609), + [anon_sym___builtin_available] = ACTIONS(2606), + [anon_sym_va_arg] = ACTIONS(2606), + [anon_sym_ATencode] = ACTIONS(2609), + [anon_sym_ATsynchronized] = ACTIONS(2609), + [anon_sym_BOOL] = ACTIONS(2606), + [anon_sym_IMP] = ACTIONS(2606), + [anon_sym_SEL] = ACTIONS(2606), + [anon_sym_Class] = ACTIONS(2606), + [anon_sym_id] = ACTIONS(2606), + }, + [690] = { + [sym_identifier] = ACTIONS(2772), + [aux_sym_preproc_include_token1] = ACTIONS(2772), + [aux_sym_preproc_include_token2] = ACTIONS(2772), + [aux_sym_preproc_def_token1] = ACTIONS(2772), + [aux_sym_preproc_if_token1] = ACTIONS(2772), + [aux_sym_preproc_if_token2] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2772), + [sym_preproc_directive] = ACTIONS(2772), + [anon_sym_LPAREN2] = ACTIONS(2774), + [anon_sym_BANG] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_CARET] = ACTIONS(2774), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym___extension__] = ACTIONS(2772), + [anon_sym_typedef] = ACTIONS(2772), + [anon_sym_extern] = ACTIONS(2772), + [anon_sym___attribute__] = ACTIONS(2772), + [anon_sym___attribute] = ACTIONS(2772), + [anon_sym_noreturn] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym___declspec] = ACTIONS(2772), + [anon_sym___cdecl] = ACTIONS(2772), + [anon_sym___clrcall] = ACTIONS(2772), + [anon_sym___stdcall] = ACTIONS(2772), + [anon_sym___fastcall] = ACTIONS(2772), + [anon_sym___thiscall] = ACTIONS(2772), + [anon_sym___vectorcall] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_signed] = ACTIONS(2772), + [anon_sym_unsigned] = ACTIONS(2772), + [anon_sym_long] = ACTIONS(2772), + [anon_sym_short] = ACTIONS(2772), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_ATautoreleasepool] = ACTIONS(2774), + [anon_sym_auto] = ACTIONS(2772), + [anon_sym_register] = ACTIONS(2772), + [anon_sym_inline] = ACTIONS(2772), + [anon_sym___inline] = ACTIONS(2772), + [anon_sym___inline__] = ACTIONS(2772), + [anon_sym___forceinline] = ACTIONS(2772), + [anon_sym_thread_local] = ACTIONS(2772), + [anon_sym___thread] = ACTIONS(2772), + [anon_sym_CG_EXTERN] = ACTIONS(2772), + [anon_sym_CG_INLINE] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2772), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2772), + [anon_sym_IBOutlet] = ACTIONS(2772), + [anon_sym_IBInspectable] = ACTIONS(2772), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2772), + [anon_sym_NS_INLINE] = ACTIONS(2772), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2772), + [anon_sym_OBJC_EXPORT] = ACTIONS(2772), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2772), + [anon_sym_const] = ACTIONS(2772), + [anon_sym_constexpr] = ACTIONS(2772), + [anon_sym_volatile] = ACTIONS(2772), + [anon_sym_restrict] = ACTIONS(2772), + [anon_sym___restrict__] = ACTIONS(2772), + [anon_sym__Atomic] = ACTIONS(2772), + [anon_sym__Noreturn] = ACTIONS(2772), + [anon_sym__Nonnull] = ACTIONS(2772), + [anon_sym_nullable] = ACTIONS(2772), + [anon_sym__Complex] = ACTIONS(2772), + [anon_sym__Nullable] = ACTIONS(2772), + [anon_sym__Nullable_result] = ACTIONS(2772), + [anon_sym__Null_unspecified] = ACTIONS(2772), + [anon_sym___autoreleasing] = ACTIONS(2772), + [anon_sym___block] = ACTIONS(2772), + [anon_sym___bridge] = ACTIONS(2772), + [anon_sym___bridge_retained] = ACTIONS(2772), + [anon_sym___bridge_transfer] = ACTIONS(2772), + [anon_sym___complex] = ACTIONS(2772), + [anon_sym___const] = ACTIONS(2772), + [anon_sym___imag] = ACTIONS(2772), + [anon_sym___kindof] = ACTIONS(2772), + [anon_sym___nonnull] = ACTIONS(2772), + [anon_sym___nullable] = ACTIONS(2772), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2772), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2772), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2772), + [anon_sym___real] = ACTIONS(2772), + [anon_sym___strong] = ACTIONS(2772), + [anon_sym___unsafe_unretained] = ACTIONS(2772), + [anon_sym___unused] = ACTIONS(2772), + [anon_sym___weak] = ACTIONS(2772), + [anon_sym_alignas] = ACTIONS(2772), + [anon_sym__Alignas] = ACTIONS(2772), + [sym_primitive_type] = ACTIONS(2772), + [anon_sym_enum] = ACTIONS(2772), + [anon_sym_struct] = ACTIONS(2772), + [anon_sym_union] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_switch] = ACTIONS(2772), + [anon_sym_case] = ACTIONS(2772), + [anon_sym_default] = ACTIONS(2772), + [anon_sym_while] = ACTIONS(2772), + [anon_sym_do] = ACTIONS(2772), + [anon_sym_for] = ACTIONS(2772), + [anon_sym_in] = ACTIONS(2772), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_break] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2772), + [anon_sym_goto] = ACTIONS(2772), + [anon_sym_DASH_DASH] = ACTIONS(2774), + [anon_sym_PLUS_PLUS] = ACTIONS(2774), + [anon_sym_sizeof] = ACTIONS(2772), + [anon_sym___alignof__] = ACTIONS(2772), + [anon_sym___alignof] = ACTIONS(2772), + [anon_sym__alignof] = ACTIONS(2772), + [anon_sym_alignof] = ACTIONS(2772), + [anon_sym__Alignof] = ACTIONS(2772), + [anon_sym_offsetof] = ACTIONS(2772), + [anon_sym__Generic] = ACTIONS(2772), + [anon_sym_asm] = ACTIONS(2772), + [anon_sym___asm__] = ACTIONS(2772), + [anon_sym___asm] = ACTIONS(2772), + [sym_number_literal] = ACTIONS(2774), + [anon_sym_L_SQUOTE] = ACTIONS(2774), + [anon_sym_u_SQUOTE] = ACTIONS(2774), + [anon_sym_U_SQUOTE] = ACTIONS(2774), + [anon_sym_u8_SQUOTE] = ACTIONS(2774), + [anon_sym_SQUOTE] = ACTIONS(2774), + [anon_sym_AT] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_L_DQUOTE] = ACTIONS(2774), + [anon_sym_u_DQUOTE] = ACTIONS(2774), + [anon_sym_U_DQUOTE] = ACTIONS(2774), + [anon_sym_u8_DQUOTE] = ACTIONS(2774), + [sym_true] = ACTIONS(2772), + [sym_false] = ACTIONS(2772), + [anon_sym_NULL] = ACTIONS(2772), + [anon_sym_nullptr] = ACTIONS(2772), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2772), + [anon_sym___typeof] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2772), + [anon_sym_ATimport] = ACTIONS(2774), + [aux_sym_preproc_undef_token1] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(2772), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2772), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2772), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2772), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2772), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE] = ACTIONS(2772), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_API_AVAILABLE] = ACTIONS(2772), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_API_DEPRECATED] = ACTIONS(2772), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2772), + [anon_sym___deprecated_msg] = ACTIONS(2772), + [anon_sym___deprecated_enum_msg] = ACTIONS(2772), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2772), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2772), + [anon_sym_ATprotocol] = ACTIONS(2774), + [anon_sym_ATinterface] = ACTIONS(2774), + [anon_sym_ATimplementation] = ACTIONS(2774), + [anon_sym_ATcompatibility_alias] = ACTIONS(2774), + [anon_sym_ATsynthesize] = ACTIONS(2774), + [anon_sym_ATdynamic] = ACTIONS(2774), + [anon_sym_ATtry] = ACTIONS(2774), + [anon_sym___try] = ACTIONS(2772), + [anon_sym_ATthrow] = ACTIONS(2774), + [anon_sym_ATselector] = ACTIONS(2774), + [anon_sym_ATavailable] = ACTIONS(2774), + [anon_sym___builtin_available] = ACTIONS(2772), + [anon_sym_va_arg] = ACTIONS(2772), + [anon_sym_ATencode] = ACTIONS(2774), + [anon_sym_ATsynchronized] = ACTIONS(2774), + [anon_sym_BOOL] = ACTIONS(2772), + [anon_sym_IMP] = ACTIONS(2772), + [anon_sym_SEL] = ACTIONS(2772), + [anon_sym_Class] = ACTIONS(2772), + [anon_sym_id] = ACTIONS(2772), + }, + [691] = { + [ts_builtin_sym_end] = ACTIONS(2472), + [sym_identifier] = ACTIONS(2470), + [aux_sym_preproc_include_token1] = ACTIONS(2470), + [aux_sym_preproc_include_token2] = ACTIONS(2470), + [aux_sym_preproc_def_token1] = ACTIONS(2470), + [aux_sym_preproc_if_token1] = ACTIONS(2470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2470), + [sym_preproc_directive] = ACTIONS(2470), + [anon_sym_LPAREN2] = ACTIONS(2472), + [anon_sym_BANG] = ACTIONS(2472), + [anon_sym_TILDE] = ACTIONS(2472), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_CARET] = ACTIONS(2472), + [anon_sym_AMP] = ACTIONS(2472), + [anon_sym_SEMI] = ACTIONS(2472), + [anon_sym___extension__] = ACTIONS(2470), + [anon_sym_typedef] = ACTIONS(2470), + [anon_sym_extern] = ACTIONS(2470), + [anon_sym___attribute__] = ACTIONS(2470), + [anon_sym___attribute] = ACTIONS(2470), + [anon_sym_noreturn] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2472), + [anon_sym___declspec] = ACTIONS(2470), + [anon_sym___cdecl] = ACTIONS(2470), + [anon_sym___clrcall] = ACTIONS(2470), + [anon_sym___stdcall] = ACTIONS(2470), + [anon_sym___fastcall] = ACTIONS(2470), + [anon_sym___thiscall] = ACTIONS(2470), + [anon_sym___vectorcall] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2472), + [anon_sym_signed] = ACTIONS(2470), + [anon_sym_unsigned] = ACTIONS(2470), + [anon_sym_long] = ACTIONS(2470), + [anon_sym_short] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_ATautoreleasepool] = ACTIONS(2472), + [anon_sym_auto] = ACTIONS(2470), + [anon_sym_register] = ACTIONS(2470), + [anon_sym_inline] = ACTIONS(2470), + [anon_sym___inline] = ACTIONS(2470), + [anon_sym___inline__] = ACTIONS(2470), + [anon_sym___forceinline] = ACTIONS(2470), + [anon_sym_thread_local] = ACTIONS(2470), + [anon_sym___thread] = ACTIONS(2470), + [anon_sym_CG_EXTERN] = ACTIONS(2470), + [anon_sym_CG_INLINE] = ACTIONS(2470), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2470), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2470), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2470), + [anon_sym_IBOutlet] = ACTIONS(2470), + [anon_sym_IBInspectable] = ACTIONS(2470), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2470), + [anon_sym_NS_INLINE] = ACTIONS(2470), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2470), + [anon_sym_OBJC_EXPORT] = ACTIONS(2470), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2470), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_constexpr] = ACTIONS(2470), + [anon_sym_volatile] = ACTIONS(2470), + [anon_sym_restrict] = ACTIONS(2470), + [anon_sym___restrict__] = ACTIONS(2470), + [anon_sym__Atomic] = ACTIONS(2470), + [anon_sym__Noreturn] = ACTIONS(2470), + [anon_sym__Nonnull] = ACTIONS(2470), + [anon_sym_nullable] = ACTIONS(2470), + [anon_sym__Complex] = ACTIONS(2470), + [anon_sym__Nullable] = ACTIONS(2470), + [anon_sym__Nullable_result] = ACTIONS(2470), + [anon_sym__Null_unspecified] = ACTIONS(2470), + [anon_sym___autoreleasing] = ACTIONS(2470), + [anon_sym___block] = ACTIONS(2470), + [anon_sym___bridge] = ACTIONS(2470), + [anon_sym___bridge_retained] = ACTIONS(2470), + [anon_sym___bridge_transfer] = ACTIONS(2470), + [anon_sym___complex] = ACTIONS(2470), + [anon_sym___const] = ACTIONS(2470), + [anon_sym___imag] = ACTIONS(2470), + [anon_sym___kindof] = ACTIONS(2470), + [anon_sym___nonnull] = ACTIONS(2470), + [anon_sym___nullable] = ACTIONS(2470), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2470), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2470), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2470), + [anon_sym___real] = ACTIONS(2470), + [anon_sym___strong] = ACTIONS(2470), + [anon_sym___unsafe_unretained] = ACTIONS(2470), + [anon_sym___unused] = ACTIONS(2470), + [anon_sym___weak] = ACTIONS(2470), + [anon_sym_alignas] = ACTIONS(2470), + [anon_sym__Alignas] = ACTIONS(2470), + [sym_primitive_type] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [anon_sym_struct] = ACTIONS(2470), + [anon_sym_union] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_else] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_case] = ACTIONS(2470), + [anon_sym_default] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_in] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_goto] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2472), + [anon_sym_PLUS_PLUS] = ACTIONS(2472), + [anon_sym_sizeof] = ACTIONS(2470), + [anon_sym___alignof__] = ACTIONS(2470), + [anon_sym___alignof] = ACTIONS(2470), + [anon_sym__alignof] = ACTIONS(2470), + [anon_sym_alignof] = ACTIONS(2470), + [anon_sym__Alignof] = ACTIONS(2470), + [anon_sym_offsetof] = ACTIONS(2470), + [anon_sym__Generic] = ACTIONS(2470), + [anon_sym_asm] = ACTIONS(2470), + [anon_sym___asm__] = ACTIONS(2470), + [anon_sym___asm] = ACTIONS(2470), + [sym_number_literal] = ACTIONS(2472), + [anon_sym_L_SQUOTE] = ACTIONS(2472), + [anon_sym_u_SQUOTE] = ACTIONS(2472), + [anon_sym_U_SQUOTE] = ACTIONS(2472), + [anon_sym_u8_SQUOTE] = ACTIONS(2472), + [anon_sym_SQUOTE] = ACTIONS(2472), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2472), + [anon_sym_L_DQUOTE] = ACTIONS(2472), + [anon_sym_u_DQUOTE] = ACTIONS(2472), + [anon_sym_U_DQUOTE] = ACTIONS(2472), + [anon_sym_u8_DQUOTE] = ACTIONS(2472), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [anon_sym_NULL] = ACTIONS(2470), + [anon_sym_nullptr] = ACTIONS(2470), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2470), + [anon_sym___typeof] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_ATimport] = ACTIONS(2472), + [aux_sym_preproc_undef_token1] = ACTIONS(2470), + [anon_sym_POUND] = ACTIONS(2470), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2470), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2470), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2470), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2470), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2470), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2470), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2470), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2470), + [anon_sym_NS_AVAILABLE] = ACTIONS(2470), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2470), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_API_AVAILABLE] = ACTIONS(2470), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_API_DEPRECATED] = ACTIONS(2470), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2470), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2470), + [anon_sym___deprecated_msg] = ACTIONS(2470), + [anon_sym___deprecated_enum_msg] = ACTIONS(2470), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2470), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2470), + [anon_sym_ATprotocol] = ACTIONS(2472), + [anon_sym_ATinterface] = ACTIONS(2472), + [anon_sym_ATimplementation] = ACTIONS(2472), + [anon_sym_ATcompatibility_alias] = ACTIONS(2472), + [anon_sym_ATtry] = ACTIONS(2472), + [anon_sym___try] = ACTIONS(2470), + [anon_sym_ATthrow] = ACTIONS(2472), + [anon_sym_ATselector] = ACTIONS(2472), + [anon_sym_ATavailable] = ACTIONS(2472), + [anon_sym___builtin_available] = ACTIONS(2470), + [anon_sym_va_arg] = ACTIONS(2470), + [anon_sym_ATencode] = ACTIONS(2472), + [anon_sym_ATsynchronized] = ACTIONS(2472), + [anon_sym_BOOL] = ACTIONS(2470), + [anon_sym_IMP] = ACTIONS(2470), + [anon_sym_SEL] = ACTIONS(2470), + [anon_sym_Class] = ACTIONS(2470), + [anon_sym_id] = ACTIONS(2470), + }, + [692] = { + [ts_builtin_sym_end] = ACTIONS(2530), + [sym_identifier] = ACTIONS(2528), + [aux_sym_preproc_include_token1] = ACTIONS(2528), + [aux_sym_preproc_include_token2] = ACTIONS(2528), + [aux_sym_preproc_def_token1] = ACTIONS(2528), + [aux_sym_preproc_if_token1] = ACTIONS(2528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2528), + [sym_preproc_directive] = ACTIONS(2528), + [anon_sym_LPAREN2] = ACTIONS(2530), + [anon_sym_BANG] = ACTIONS(2530), + [anon_sym_TILDE] = ACTIONS(2530), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_CARET] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2530), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym___extension__] = ACTIONS(2528), + [anon_sym_typedef] = ACTIONS(2528), + [anon_sym_extern] = ACTIONS(2528), + [anon_sym___attribute__] = ACTIONS(2528), + [anon_sym___attribute] = ACTIONS(2528), + [anon_sym_noreturn] = ACTIONS(2528), + [anon_sym_LBRACK] = ACTIONS(2530), + [anon_sym___declspec] = ACTIONS(2528), + [anon_sym___cdecl] = ACTIONS(2528), + [anon_sym___clrcall] = ACTIONS(2528), + [anon_sym___stdcall] = ACTIONS(2528), + [anon_sym___fastcall] = ACTIONS(2528), + [anon_sym___thiscall] = ACTIONS(2528), + [anon_sym___vectorcall] = ACTIONS(2528), + [anon_sym_LBRACE] = ACTIONS(2530), + [anon_sym_signed] = ACTIONS(2528), + [anon_sym_unsigned] = ACTIONS(2528), + [anon_sym_long] = ACTIONS(2528), + [anon_sym_short] = ACTIONS(2528), + [anon_sym_static] = ACTIONS(2528), + [anon_sym_ATautoreleasepool] = ACTIONS(2530), + [anon_sym_auto] = ACTIONS(2528), + [anon_sym_register] = ACTIONS(2528), + [anon_sym_inline] = ACTIONS(2528), + [anon_sym___inline] = ACTIONS(2528), + [anon_sym___inline__] = ACTIONS(2528), + [anon_sym___forceinline] = ACTIONS(2528), + [anon_sym_thread_local] = ACTIONS(2528), + [anon_sym___thread] = ACTIONS(2528), + [anon_sym_CG_EXTERN] = ACTIONS(2528), + [anon_sym_CG_INLINE] = ACTIONS(2528), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2528), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2528), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2528), + [anon_sym_IBOutlet] = ACTIONS(2528), + [anon_sym_IBInspectable] = ACTIONS(2528), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2528), + [anon_sym_NS_INLINE] = ACTIONS(2528), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2528), + [anon_sym_OBJC_EXPORT] = ACTIONS(2528), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2528), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2528), + [anon_sym_const] = ACTIONS(2528), + [anon_sym_constexpr] = ACTIONS(2528), + [anon_sym_volatile] = ACTIONS(2528), + [anon_sym_restrict] = ACTIONS(2528), + [anon_sym___restrict__] = ACTIONS(2528), + [anon_sym__Atomic] = ACTIONS(2528), + [anon_sym__Noreturn] = ACTIONS(2528), + [anon_sym__Nonnull] = ACTIONS(2528), + [anon_sym_nullable] = ACTIONS(2528), + [anon_sym__Complex] = ACTIONS(2528), + [anon_sym__Nullable] = ACTIONS(2528), + [anon_sym__Nullable_result] = ACTIONS(2528), + [anon_sym__Null_unspecified] = ACTIONS(2528), + [anon_sym___autoreleasing] = ACTIONS(2528), + [anon_sym___block] = ACTIONS(2528), + [anon_sym___bridge] = ACTIONS(2528), + [anon_sym___bridge_retained] = ACTIONS(2528), + [anon_sym___bridge_transfer] = ACTIONS(2528), + [anon_sym___complex] = ACTIONS(2528), + [anon_sym___const] = ACTIONS(2528), + [anon_sym___imag] = ACTIONS(2528), + [anon_sym___kindof] = ACTIONS(2528), + [anon_sym___nonnull] = ACTIONS(2528), + [anon_sym___nullable] = ACTIONS(2528), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2528), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2528), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2528), + [anon_sym___real] = ACTIONS(2528), + [anon_sym___strong] = ACTIONS(2528), + [anon_sym___unsafe_unretained] = ACTIONS(2528), + [anon_sym___unused] = ACTIONS(2528), + [anon_sym___weak] = ACTIONS(2528), + [anon_sym_alignas] = ACTIONS(2528), + [anon_sym__Alignas] = ACTIONS(2528), + [sym_primitive_type] = ACTIONS(2528), + [anon_sym_enum] = ACTIONS(2528), + [anon_sym_struct] = ACTIONS(2528), + [anon_sym_union] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_else] = ACTIONS(2528), + [anon_sym_switch] = ACTIONS(2528), + [anon_sym_case] = ACTIONS(2528), + [anon_sym_default] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_in] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_break] = ACTIONS(2528), + [anon_sym_continue] = ACTIONS(2528), + [anon_sym_goto] = ACTIONS(2528), + [anon_sym_DASH_DASH] = ACTIONS(2530), + [anon_sym_PLUS_PLUS] = ACTIONS(2530), + [anon_sym_sizeof] = ACTIONS(2528), + [anon_sym___alignof__] = ACTIONS(2528), + [anon_sym___alignof] = ACTIONS(2528), + [anon_sym__alignof] = ACTIONS(2528), + [anon_sym_alignof] = ACTIONS(2528), + [anon_sym__Alignof] = ACTIONS(2528), + [anon_sym_offsetof] = ACTIONS(2528), + [anon_sym__Generic] = ACTIONS(2528), + [anon_sym_asm] = ACTIONS(2528), + [anon_sym___asm__] = ACTIONS(2528), + [anon_sym___asm] = ACTIONS(2528), + [sym_number_literal] = ACTIONS(2530), + [anon_sym_L_SQUOTE] = ACTIONS(2530), + [anon_sym_u_SQUOTE] = ACTIONS(2530), + [anon_sym_U_SQUOTE] = ACTIONS(2530), + [anon_sym_u8_SQUOTE] = ACTIONS(2530), + [anon_sym_SQUOTE] = ACTIONS(2530), + [anon_sym_AT] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2530), + [anon_sym_L_DQUOTE] = ACTIONS(2530), + [anon_sym_u_DQUOTE] = ACTIONS(2530), + [anon_sym_U_DQUOTE] = ACTIONS(2530), + [anon_sym_u8_DQUOTE] = ACTIONS(2530), + [sym_true] = ACTIONS(2528), + [sym_false] = ACTIONS(2528), + [anon_sym_NULL] = ACTIONS(2528), + [anon_sym_nullptr] = ACTIONS(2528), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2528), + [anon_sym___typeof] = ACTIONS(2528), + [anon_sym_typeof] = ACTIONS(2528), + [anon_sym_ATimport] = ACTIONS(2530), + [aux_sym_preproc_undef_token1] = ACTIONS(2528), + [anon_sym_POUND] = ACTIONS(2528), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2528), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2528), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2528), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2528), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2528), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2528), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2528), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2528), + [anon_sym_NS_AVAILABLE] = ACTIONS(2528), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2528), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_API_AVAILABLE] = ACTIONS(2528), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_API_DEPRECATED] = ACTIONS(2528), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2528), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2528), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2528), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2528), + [anon_sym___deprecated_msg] = ACTIONS(2528), + [anon_sym___deprecated_enum_msg] = ACTIONS(2528), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2528), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2528), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2528), + [anon_sym_ATprotocol] = ACTIONS(2530), + [anon_sym_ATinterface] = ACTIONS(2530), + [anon_sym_ATimplementation] = ACTIONS(2530), + [anon_sym_ATcompatibility_alias] = ACTIONS(2530), + [anon_sym_ATtry] = ACTIONS(2530), + [anon_sym___try] = ACTIONS(2528), + [anon_sym_ATthrow] = ACTIONS(2530), + [anon_sym_ATselector] = ACTIONS(2530), + [anon_sym_ATavailable] = ACTIONS(2530), + [anon_sym___builtin_available] = ACTIONS(2528), + [anon_sym_va_arg] = ACTIONS(2528), + [anon_sym_ATencode] = ACTIONS(2530), + [anon_sym_ATsynchronized] = ACTIONS(2530), + [anon_sym_BOOL] = ACTIONS(2528), + [anon_sym_IMP] = ACTIONS(2528), + [anon_sym_SEL] = ACTIONS(2528), + [anon_sym_Class] = ACTIONS(2528), + [anon_sym_id] = ACTIONS(2528), + }, + [693] = { + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_include_token1] = ACTIONS(2424), + [aux_sym_preproc_include_token2] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_CARET] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_RBRACE] = ACTIONS(2426), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_ATautoreleasepool] = ACTIONS(2426), + [anon_sym_auto] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_CG_EXTERN] = ACTIONS(2424), + [anon_sym_CG_INLINE] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2424), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2424), + [anon_sym_IBOutlet] = ACTIONS(2424), + [anon_sym_IBInspectable] = ACTIONS(2424), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2424), + [anon_sym_NS_INLINE] = ACTIONS(2424), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2424), + [anon_sym_OBJC_EXPORT] = ACTIONS(2424), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_nullable] = ACTIONS(2424), + [anon_sym__Complex] = ACTIONS(2424), + [anon_sym__Nullable] = ACTIONS(2424), + [anon_sym__Nullable_result] = ACTIONS(2424), + [anon_sym__Null_unspecified] = ACTIONS(2424), + [anon_sym___autoreleasing] = ACTIONS(2424), + [anon_sym___block] = ACTIONS(2424), + [anon_sym___bridge] = ACTIONS(2424), + [anon_sym___bridge_retained] = ACTIONS(2424), + [anon_sym___bridge_transfer] = ACTIONS(2424), + [anon_sym___complex] = ACTIONS(2424), + [anon_sym___const] = ACTIONS(2424), + [anon_sym___imag] = ACTIONS(2424), + [anon_sym___kindof] = ACTIONS(2424), + [anon_sym___nonnull] = ACTIONS(2424), + [anon_sym___nullable] = ACTIONS(2424), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2424), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2424), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2424), + [anon_sym___real] = ACTIONS(2424), + [anon_sym___strong] = ACTIONS(2424), + [anon_sym___unsafe_unretained] = ACTIONS(2424), + [anon_sym___unused] = ACTIONS(2424), + [anon_sym___weak] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_else] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_in] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_goto] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_sizeof] = ACTIONS(2424), + [anon_sym___alignof__] = ACTIONS(2424), + [anon_sym___alignof] = ACTIONS(2424), + [anon_sym__alignof] = ACTIONS(2424), + [anon_sym_alignof] = ACTIONS(2424), + [anon_sym__Alignof] = ACTIONS(2424), + [anon_sym_offsetof] = ACTIONS(2424), + [anon_sym__Generic] = ACTIONS(2424), + [anon_sym_asm] = ACTIONS(2424), + [anon_sym___asm__] = ACTIONS(2424), + [anon_sym___asm] = ACTIONS(2424), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_L_SQUOTE] = ACTIONS(2426), + [anon_sym_u_SQUOTE] = ACTIONS(2426), + [anon_sym_U_SQUOTE] = ACTIONS(2426), + [anon_sym_u8_SQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_AT] = ACTIONS(2424), + [anon_sym_DQUOTE] = ACTIONS(2426), + [anon_sym_L_DQUOTE] = ACTIONS(2426), + [anon_sym_u_DQUOTE] = ACTIONS(2426), + [anon_sym_U_DQUOTE] = ACTIONS(2426), + [anon_sym_u8_DQUOTE] = ACTIONS(2426), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [anon_sym_NULL] = ACTIONS(2424), + [anon_sym_nullptr] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2424), + [anon_sym___typeof] = ACTIONS(2424), + [anon_sym_typeof] = ACTIONS(2424), + [anon_sym_ATimport] = ACTIONS(2426), + [aux_sym_preproc_undef_token1] = ACTIONS(2424), + [anon_sym_POUND] = ACTIONS(2424), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2424), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2424), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2424), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2424), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE] = ACTIONS(2424), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_API_AVAILABLE] = ACTIONS(2424), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_API_DEPRECATED] = ACTIONS(2424), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2424), + [anon_sym___deprecated_msg] = ACTIONS(2424), + [anon_sym___deprecated_enum_msg] = ACTIONS(2424), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2424), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2424), + [anon_sym_ATprotocol] = ACTIONS(2426), + [anon_sym_ATinterface] = ACTIONS(2426), + [anon_sym_ATimplementation] = ACTIONS(2426), + [anon_sym_ATcompatibility_alias] = ACTIONS(2426), + [anon_sym_ATtry] = ACTIONS(2426), + [anon_sym___try] = ACTIONS(2424), + [anon_sym_ATthrow] = ACTIONS(2426), + [anon_sym_ATselector] = ACTIONS(2426), + [anon_sym_ATavailable] = ACTIONS(2426), + [anon_sym___builtin_available] = ACTIONS(2424), + [anon_sym_va_arg] = ACTIONS(2424), + [anon_sym_ATencode] = ACTIONS(2426), + [anon_sym_ATsynchronized] = ACTIONS(2426), + [anon_sym_BOOL] = ACTIONS(2424), + [anon_sym_IMP] = ACTIONS(2424), + [anon_sym_SEL] = ACTIONS(2424), + [anon_sym_Class] = ACTIONS(2424), + [anon_sym_id] = ACTIONS(2424), + }, + [694] = { + [sym_identifier] = ACTIONS(2428), + [aux_sym_preproc_include_token1] = ACTIONS(2428), + [aux_sym_preproc_include_token2] = ACTIONS(2428), + [aux_sym_preproc_def_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2428), + [sym_preproc_directive] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_STAR] = ACTIONS(2430), + [anon_sym_CARET] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym___cdecl] = ACTIONS(2428), + [anon_sym___clrcall] = ACTIONS(2428), + [anon_sym___stdcall] = ACTIONS(2428), + [anon_sym___fastcall] = ACTIONS(2428), + [anon_sym___thiscall] = ACTIONS(2428), + [anon_sym___vectorcall] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_RBRACE] = ACTIONS(2430), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_ATautoreleasepool] = ACTIONS(2430), + [anon_sym_auto] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_CG_EXTERN] = ACTIONS(2428), + [anon_sym_CG_INLINE] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2428), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2428), + [anon_sym_IBOutlet] = ACTIONS(2428), + [anon_sym_IBInspectable] = ACTIONS(2428), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2428), + [anon_sym_NS_INLINE] = ACTIONS(2428), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2428), + [anon_sym_OBJC_EXPORT] = ACTIONS(2428), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_nullable] = ACTIONS(2428), + [anon_sym__Complex] = ACTIONS(2428), + [anon_sym__Nullable] = ACTIONS(2428), + [anon_sym__Nullable_result] = ACTIONS(2428), + [anon_sym__Null_unspecified] = ACTIONS(2428), + [anon_sym___autoreleasing] = ACTIONS(2428), + [anon_sym___block] = ACTIONS(2428), + [anon_sym___bridge] = ACTIONS(2428), + [anon_sym___bridge_retained] = ACTIONS(2428), + [anon_sym___bridge_transfer] = ACTIONS(2428), + [anon_sym___complex] = ACTIONS(2428), + [anon_sym___const] = ACTIONS(2428), + [anon_sym___imag] = ACTIONS(2428), + [anon_sym___kindof] = ACTIONS(2428), + [anon_sym___nonnull] = ACTIONS(2428), + [anon_sym___nullable] = ACTIONS(2428), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2428), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2428), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2428), + [anon_sym___real] = ACTIONS(2428), + [anon_sym___strong] = ACTIONS(2428), + [anon_sym___unsafe_unretained] = ACTIONS(2428), + [anon_sym___unused] = ACTIONS(2428), + [anon_sym___weak] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_else] = ACTIONS(2428), + [anon_sym_switch] = ACTIONS(2428), + [anon_sym_case] = ACTIONS(2428), + [anon_sym_default] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_do] = ACTIONS(2428), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_in] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_goto] = ACTIONS(2428), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_sizeof] = ACTIONS(2428), + [anon_sym___alignof__] = ACTIONS(2428), + [anon_sym___alignof] = ACTIONS(2428), + [anon_sym__alignof] = ACTIONS(2428), + [anon_sym_alignof] = ACTIONS(2428), + [anon_sym__Alignof] = ACTIONS(2428), + [anon_sym_offsetof] = ACTIONS(2428), + [anon_sym__Generic] = ACTIONS(2428), + [anon_sym_asm] = ACTIONS(2428), + [anon_sym___asm__] = ACTIONS(2428), + [anon_sym___asm] = ACTIONS(2428), + [sym_number_literal] = ACTIONS(2430), + [anon_sym_L_SQUOTE] = ACTIONS(2430), + [anon_sym_u_SQUOTE] = ACTIONS(2430), + [anon_sym_U_SQUOTE] = ACTIONS(2430), + [anon_sym_u8_SQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_AT] = ACTIONS(2428), + [anon_sym_DQUOTE] = ACTIONS(2430), + [anon_sym_L_DQUOTE] = ACTIONS(2430), + [anon_sym_u_DQUOTE] = ACTIONS(2430), + [anon_sym_U_DQUOTE] = ACTIONS(2430), + [anon_sym_u8_DQUOTE] = ACTIONS(2430), + [sym_true] = ACTIONS(2428), + [sym_false] = ACTIONS(2428), + [anon_sym_NULL] = ACTIONS(2428), + [anon_sym_nullptr] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2428), + [anon_sym___typeof] = ACTIONS(2428), + [anon_sym_typeof] = ACTIONS(2428), + [anon_sym_ATimport] = ACTIONS(2430), + [aux_sym_preproc_undef_token1] = ACTIONS(2428), + [anon_sym_POUND] = ACTIONS(2428), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2428), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2428), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2428), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2428), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE] = ACTIONS(2428), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_API_AVAILABLE] = ACTIONS(2428), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_API_DEPRECATED] = ACTIONS(2428), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2428), + [anon_sym___deprecated_msg] = ACTIONS(2428), + [anon_sym___deprecated_enum_msg] = ACTIONS(2428), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2428), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2428), + [anon_sym_ATprotocol] = ACTIONS(2430), + [anon_sym_ATinterface] = ACTIONS(2430), + [anon_sym_ATimplementation] = ACTIONS(2430), + [anon_sym_ATcompatibility_alias] = ACTIONS(2430), + [anon_sym_ATtry] = ACTIONS(2430), + [anon_sym___try] = ACTIONS(2428), + [anon_sym_ATthrow] = ACTIONS(2430), + [anon_sym_ATselector] = ACTIONS(2430), + [anon_sym_ATavailable] = ACTIONS(2430), + [anon_sym___builtin_available] = ACTIONS(2428), + [anon_sym_va_arg] = ACTIONS(2428), + [anon_sym_ATencode] = ACTIONS(2430), + [anon_sym_ATsynchronized] = ACTIONS(2430), + [anon_sym_BOOL] = ACTIONS(2428), + [anon_sym_IMP] = ACTIONS(2428), + [anon_sym_SEL] = ACTIONS(2428), + [anon_sym_Class] = ACTIONS(2428), + [anon_sym_id] = ACTIONS(2428), + }, + [695] = { + [sym_identifier] = ACTIONS(2432), + [aux_sym_preproc_include_token1] = ACTIONS(2432), + [aux_sym_preproc_include_token2] = ACTIONS(2432), + [aux_sym_preproc_def_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2432), + [sym_preproc_directive] = ACTIONS(2432), + [anon_sym_LPAREN2] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym___extension__] = ACTIONS(2432), + [anon_sym_typedef] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym___attribute__] = ACTIONS(2432), + [anon_sym___attribute] = ACTIONS(2432), + [anon_sym_noreturn] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym___declspec] = ACTIONS(2432), + [anon_sym___cdecl] = ACTIONS(2432), + [anon_sym___clrcall] = ACTIONS(2432), + [anon_sym___stdcall] = ACTIONS(2432), + [anon_sym___fastcall] = ACTIONS(2432), + [anon_sym___thiscall] = ACTIONS(2432), + [anon_sym___vectorcall] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_RBRACE] = ACTIONS(2434), + [anon_sym_signed] = ACTIONS(2432), + [anon_sym_unsigned] = ACTIONS(2432), + [anon_sym_long] = ACTIONS(2432), + [anon_sym_short] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_ATautoreleasepool] = ACTIONS(2434), + [anon_sym_auto] = ACTIONS(2432), + [anon_sym_register] = ACTIONS(2432), + [anon_sym_inline] = ACTIONS(2432), + [anon_sym___inline] = ACTIONS(2432), + [anon_sym___inline__] = ACTIONS(2432), + [anon_sym___forceinline] = ACTIONS(2432), + [anon_sym_thread_local] = ACTIONS(2432), + [anon_sym___thread] = ACTIONS(2432), + [anon_sym_CG_EXTERN] = ACTIONS(2432), + [anon_sym_CG_INLINE] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2432), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2432), + [anon_sym_IBOutlet] = ACTIONS(2432), + [anon_sym_IBInspectable] = ACTIONS(2432), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2432), + [anon_sym_NS_INLINE] = ACTIONS(2432), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2432), + [anon_sym_OBJC_EXPORT] = ACTIONS(2432), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_constexpr] = ACTIONS(2432), + [anon_sym_volatile] = ACTIONS(2432), + [anon_sym_restrict] = ACTIONS(2432), + [anon_sym___restrict__] = ACTIONS(2432), + [anon_sym__Atomic] = ACTIONS(2432), + [anon_sym__Noreturn] = ACTIONS(2432), + [anon_sym__Nonnull] = ACTIONS(2432), + [anon_sym_nullable] = ACTIONS(2432), + [anon_sym__Complex] = ACTIONS(2432), + [anon_sym__Nullable] = ACTIONS(2432), + [anon_sym__Nullable_result] = ACTIONS(2432), + [anon_sym__Null_unspecified] = ACTIONS(2432), + [anon_sym___autoreleasing] = ACTIONS(2432), + [anon_sym___block] = ACTIONS(2432), + [anon_sym___bridge] = ACTIONS(2432), + [anon_sym___bridge_retained] = ACTIONS(2432), + [anon_sym___bridge_transfer] = ACTIONS(2432), + [anon_sym___complex] = ACTIONS(2432), + [anon_sym___const] = ACTIONS(2432), + [anon_sym___imag] = ACTIONS(2432), + [anon_sym___kindof] = ACTIONS(2432), + [anon_sym___nonnull] = ACTIONS(2432), + [anon_sym___nullable] = ACTIONS(2432), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2432), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2432), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2432), + [anon_sym___real] = ACTIONS(2432), + [anon_sym___strong] = ACTIONS(2432), + [anon_sym___unsafe_unretained] = ACTIONS(2432), + [anon_sym___unused] = ACTIONS(2432), + [anon_sym___weak] = ACTIONS(2432), + [anon_sym_alignas] = ACTIONS(2432), + [anon_sym__Alignas] = ACTIONS(2432), + [sym_primitive_type] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_else] = ACTIONS(2432), + [anon_sym_switch] = ACTIONS(2432), + [anon_sym_case] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_in] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_goto] = ACTIONS(2432), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_sizeof] = ACTIONS(2432), + [anon_sym___alignof__] = ACTIONS(2432), + [anon_sym___alignof] = ACTIONS(2432), + [anon_sym__alignof] = ACTIONS(2432), + [anon_sym_alignof] = ACTIONS(2432), + [anon_sym__Alignof] = ACTIONS(2432), + [anon_sym_offsetof] = ACTIONS(2432), + [anon_sym__Generic] = ACTIONS(2432), + [anon_sym_asm] = ACTIONS(2432), + [anon_sym___asm__] = ACTIONS(2432), + [anon_sym___asm] = ACTIONS(2432), + [sym_number_literal] = ACTIONS(2434), + [anon_sym_L_SQUOTE] = ACTIONS(2434), + [anon_sym_u_SQUOTE] = ACTIONS(2434), + [anon_sym_U_SQUOTE] = ACTIONS(2434), + [anon_sym_u8_SQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_AT] = ACTIONS(2432), + [anon_sym_DQUOTE] = ACTIONS(2434), + [anon_sym_L_DQUOTE] = ACTIONS(2434), + [anon_sym_u_DQUOTE] = ACTIONS(2434), + [anon_sym_U_DQUOTE] = ACTIONS(2434), + [anon_sym_u8_DQUOTE] = ACTIONS(2434), + [sym_true] = ACTIONS(2432), + [sym_false] = ACTIONS(2432), + [anon_sym_NULL] = ACTIONS(2432), + [anon_sym_nullptr] = ACTIONS(2432), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2432), + [anon_sym___typeof] = ACTIONS(2432), + [anon_sym_typeof] = ACTIONS(2432), + [anon_sym_ATimport] = ACTIONS(2434), + [aux_sym_preproc_undef_token1] = ACTIONS(2432), + [anon_sym_POUND] = ACTIONS(2432), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2432), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2432), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2432), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2432), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE] = ACTIONS(2432), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_API_AVAILABLE] = ACTIONS(2432), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_API_DEPRECATED] = ACTIONS(2432), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2432), + [anon_sym___deprecated_msg] = ACTIONS(2432), + [anon_sym___deprecated_enum_msg] = ACTIONS(2432), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2432), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2432), + [anon_sym_ATprotocol] = ACTIONS(2434), + [anon_sym_ATinterface] = ACTIONS(2434), + [anon_sym_ATimplementation] = ACTIONS(2434), + [anon_sym_ATcompatibility_alias] = ACTIONS(2434), + [anon_sym_ATtry] = ACTIONS(2434), + [anon_sym___try] = ACTIONS(2432), + [anon_sym_ATthrow] = ACTIONS(2434), + [anon_sym_ATselector] = ACTIONS(2434), + [anon_sym_ATavailable] = ACTIONS(2434), + [anon_sym___builtin_available] = ACTIONS(2432), + [anon_sym_va_arg] = ACTIONS(2432), + [anon_sym_ATencode] = ACTIONS(2434), + [anon_sym_ATsynchronized] = ACTIONS(2434), + [anon_sym_BOOL] = ACTIONS(2432), + [anon_sym_IMP] = ACTIONS(2432), + [anon_sym_SEL] = ACTIONS(2432), + [anon_sym_Class] = ACTIONS(2432), + [anon_sym_id] = ACTIONS(2432), + }, + [696] = { + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_include_token1] = ACTIONS(2424), + [aux_sym_preproc_include_token2] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_CARET] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_RBRACE] = ACTIONS(2426), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_ATautoreleasepool] = ACTIONS(2426), + [anon_sym_auto] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_CG_EXTERN] = ACTIONS(2424), + [anon_sym_CG_INLINE] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2424), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2424), + [anon_sym_IBOutlet] = ACTIONS(2424), + [anon_sym_IBInspectable] = ACTIONS(2424), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2424), + [anon_sym_NS_INLINE] = ACTIONS(2424), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2424), + [anon_sym_OBJC_EXPORT] = ACTIONS(2424), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_nullable] = ACTIONS(2424), + [anon_sym__Complex] = ACTIONS(2424), + [anon_sym__Nullable] = ACTIONS(2424), + [anon_sym__Nullable_result] = ACTIONS(2424), + [anon_sym__Null_unspecified] = ACTIONS(2424), + [anon_sym___autoreleasing] = ACTIONS(2424), + [anon_sym___block] = ACTIONS(2424), + [anon_sym___bridge] = ACTIONS(2424), + [anon_sym___bridge_retained] = ACTIONS(2424), + [anon_sym___bridge_transfer] = ACTIONS(2424), + [anon_sym___complex] = ACTIONS(2424), + [anon_sym___const] = ACTIONS(2424), + [anon_sym___imag] = ACTIONS(2424), + [anon_sym___kindof] = ACTIONS(2424), + [anon_sym___nonnull] = ACTIONS(2424), + [anon_sym___nullable] = ACTIONS(2424), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2424), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2424), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2424), + [anon_sym___real] = ACTIONS(2424), + [anon_sym___strong] = ACTIONS(2424), + [anon_sym___unsafe_unretained] = ACTIONS(2424), + [anon_sym___unused] = ACTIONS(2424), + [anon_sym___weak] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_else] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_in] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_goto] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_sizeof] = ACTIONS(2424), + [anon_sym___alignof__] = ACTIONS(2424), + [anon_sym___alignof] = ACTIONS(2424), + [anon_sym__alignof] = ACTIONS(2424), + [anon_sym_alignof] = ACTIONS(2424), + [anon_sym__Alignof] = ACTIONS(2424), + [anon_sym_offsetof] = ACTIONS(2424), + [anon_sym__Generic] = ACTIONS(2424), + [anon_sym_asm] = ACTIONS(2424), + [anon_sym___asm__] = ACTIONS(2424), + [anon_sym___asm] = ACTIONS(2424), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_L_SQUOTE] = ACTIONS(2426), + [anon_sym_u_SQUOTE] = ACTIONS(2426), + [anon_sym_U_SQUOTE] = ACTIONS(2426), + [anon_sym_u8_SQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_AT] = ACTIONS(2424), + [anon_sym_DQUOTE] = ACTIONS(2426), + [anon_sym_L_DQUOTE] = ACTIONS(2426), + [anon_sym_u_DQUOTE] = ACTIONS(2426), + [anon_sym_U_DQUOTE] = ACTIONS(2426), + [anon_sym_u8_DQUOTE] = ACTIONS(2426), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [anon_sym_NULL] = ACTIONS(2424), + [anon_sym_nullptr] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2424), + [anon_sym___typeof] = ACTIONS(2424), + [anon_sym_typeof] = ACTIONS(2424), + [anon_sym_ATimport] = ACTIONS(2426), + [aux_sym_preproc_undef_token1] = ACTIONS(2424), + [anon_sym_POUND] = ACTIONS(2424), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2424), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2424), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2424), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2424), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE] = ACTIONS(2424), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_API_AVAILABLE] = ACTIONS(2424), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_API_DEPRECATED] = ACTIONS(2424), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2424), + [anon_sym___deprecated_msg] = ACTIONS(2424), + [anon_sym___deprecated_enum_msg] = ACTIONS(2424), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2424), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2424), + [anon_sym_ATprotocol] = ACTIONS(2426), + [anon_sym_ATinterface] = ACTIONS(2426), + [anon_sym_ATimplementation] = ACTIONS(2426), + [anon_sym_ATcompatibility_alias] = ACTIONS(2426), + [anon_sym_ATtry] = ACTIONS(2426), + [anon_sym___try] = ACTIONS(2424), + [anon_sym_ATthrow] = ACTIONS(2426), + [anon_sym_ATselector] = ACTIONS(2426), + [anon_sym_ATavailable] = ACTIONS(2426), + [anon_sym___builtin_available] = ACTIONS(2424), + [anon_sym_va_arg] = ACTIONS(2424), + [anon_sym_ATencode] = ACTIONS(2426), + [anon_sym_ATsynchronized] = ACTIONS(2426), + [anon_sym_BOOL] = ACTIONS(2424), + [anon_sym_IMP] = ACTIONS(2424), + [anon_sym_SEL] = ACTIONS(2424), + [anon_sym_Class] = ACTIONS(2424), + [anon_sym_id] = ACTIONS(2424), + }, + [697] = { + [sym_identifier] = ACTIONS(2432), + [aux_sym_preproc_include_token1] = ACTIONS(2432), + [aux_sym_preproc_include_token2] = ACTIONS(2432), + [aux_sym_preproc_def_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2432), + [sym_preproc_directive] = ACTIONS(2432), + [anon_sym_LPAREN2] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym___extension__] = ACTIONS(2432), + [anon_sym_typedef] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym___attribute__] = ACTIONS(2432), + [anon_sym___attribute] = ACTIONS(2432), + [anon_sym_noreturn] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym___declspec] = ACTIONS(2432), + [anon_sym___cdecl] = ACTIONS(2432), + [anon_sym___clrcall] = ACTIONS(2432), + [anon_sym___stdcall] = ACTIONS(2432), + [anon_sym___fastcall] = ACTIONS(2432), + [anon_sym___thiscall] = ACTIONS(2432), + [anon_sym___vectorcall] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_RBRACE] = ACTIONS(2434), + [anon_sym_signed] = ACTIONS(2432), + [anon_sym_unsigned] = ACTIONS(2432), + [anon_sym_long] = ACTIONS(2432), + [anon_sym_short] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_ATautoreleasepool] = ACTIONS(2434), + [anon_sym_auto] = ACTIONS(2432), + [anon_sym_register] = ACTIONS(2432), + [anon_sym_inline] = ACTIONS(2432), + [anon_sym___inline] = ACTIONS(2432), + [anon_sym___inline__] = ACTIONS(2432), + [anon_sym___forceinline] = ACTIONS(2432), + [anon_sym_thread_local] = ACTIONS(2432), + [anon_sym___thread] = ACTIONS(2432), + [anon_sym_CG_EXTERN] = ACTIONS(2432), + [anon_sym_CG_INLINE] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2432), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2432), + [anon_sym_IBOutlet] = ACTIONS(2432), + [anon_sym_IBInspectable] = ACTIONS(2432), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2432), + [anon_sym_NS_INLINE] = ACTIONS(2432), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2432), + [anon_sym_OBJC_EXPORT] = ACTIONS(2432), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_constexpr] = ACTIONS(2432), + [anon_sym_volatile] = ACTIONS(2432), + [anon_sym_restrict] = ACTIONS(2432), + [anon_sym___restrict__] = ACTIONS(2432), + [anon_sym__Atomic] = ACTIONS(2432), + [anon_sym__Noreturn] = ACTIONS(2432), + [anon_sym__Nonnull] = ACTIONS(2432), + [anon_sym_nullable] = ACTIONS(2432), + [anon_sym__Complex] = ACTIONS(2432), + [anon_sym__Nullable] = ACTIONS(2432), + [anon_sym__Nullable_result] = ACTIONS(2432), + [anon_sym__Null_unspecified] = ACTIONS(2432), + [anon_sym___autoreleasing] = ACTIONS(2432), + [anon_sym___block] = ACTIONS(2432), + [anon_sym___bridge] = ACTIONS(2432), + [anon_sym___bridge_retained] = ACTIONS(2432), + [anon_sym___bridge_transfer] = ACTIONS(2432), + [anon_sym___complex] = ACTIONS(2432), + [anon_sym___const] = ACTIONS(2432), + [anon_sym___imag] = ACTIONS(2432), + [anon_sym___kindof] = ACTIONS(2432), + [anon_sym___nonnull] = ACTIONS(2432), + [anon_sym___nullable] = ACTIONS(2432), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2432), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2432), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2432), + [anon_sym___real] = ACTIONS(2432), + [anon_sym___strong] = ACTIONS(2432), + [anon_sym___unsafe_unretained] = ACTIONS(2432), + [anon_sym___unused] = ACTIONS(2432), + [anon_sym___weak] = ACTIONS(2432), + [anon_sym_alignas] = ACTIONS(2432), + [anon_sym__Alignas] = ACTIONS(2432), + [sym_primitive_type] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_else] = ACTIONS(2432), + [anon_sym_switch] = ACTIONS(2432), + [anon_sym_case] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_in] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_goto] = ACTIONS(2432), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_sizeof] = ACTIONS(2432), + [anon_sym___alignof__] = ACTIONS(2432), + [anon_sym___alignof] = ACTIONS(2432), + [anon_sym__alignof] = ACTIONS(2432), + [anon_sym_alignof] = ACTIONS(2432), + [anon_sym__Alignof] = ACTIONS(2432), + [anon_sym_offsetof] = ACTIONS(2432), + [anon_sym__Generic] = ACTIONS(2432), + [anon_sym_asm] = ACTIONS(2432), + [anon_sym___asm__] = ACTIONS(2432), + [anon_sym___asm] = ACTIONS(2432), + [sym_number_literal] = ACTIONS(2434), + [anon_sym_L_SQUOTE] = ACTIONS(2434), + [anon_sym_u_SQUOTE] = ACTIONS(2434), + [anon_sym_U_SQUOTE] = ACTIONS(2434), + [anon_sym_u8_SQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_AT] = ACTIONS(2432), + [anon_sym_DQUOTE] = ACTIONS(2434), + [anon_sym_L_DQUOTE] = ACTIONS(2434), + [anon_sym_u_DQUOTE] = ACTIONS(2434), + [anon_sym_U_DQUOTE] = ACTIONS(2434), + [anon_sym_u8_DQUOTE] = ACTIONS(2434), + [sym_true] = ACTIONS(2432), + [sym_false] = ACTIONS(2432), + [anon_sym_NULL] = ACTIONS(2432), + [anon_sym_nullptr] = ACTIONS(2432), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2432), + [anon_sym___typeof] = ACTIONS(2432), + [anon_sym_typeof] = ACTIONS(2432), + [anon_sym_ATimport] = ACTIONS(2434), + [aux_sym_preproc_undef_token1] = ACTIONS(2432), + [anon_sym_POUND] = ACTIONS(2432), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2432), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2432), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2432), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2432), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE] = ACTIONS(2432), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_API_AVAILABLE] = ACTIONS(2432), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_API_DEPRECATED] = ACTIONS(2432), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2432), + [anon_sym___deprecated_msg] = ACTIONS(2432), + [anon_sym___deprecated_enum_msg] = ACTIONS(2432), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2432), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2432), + [anon_sym_ATprotocol] = ACTIONS(2434), + [anon_sym_ATinterface] = ACTIONS(2434), + [anon_sym_ATimplementation] = ACTIONS(2434), + [anon_sym_ATcompatibility_alias] = ACTIONS(2434), + [anon_sym_ATtry] = ACTIONS(2434), + [anon_sym___try] = ACTIONS(2432), + [anon_sym_ATthrow] = ACTIONS(2434), + [anon_sym_ATselector] = ACTIONS(2434), + [anon_sym_ATavailable] = ACTIONS(2434), + [anon_sym___builtin_available] = ACTIONS(2432), + [anon_sym_va_arg] = ACTIONS(2432), + [anon_sym_ATencode] = ACTIONS(2434), + [anon_sym_ATsynchronized] = ACTIONS(2434), + [anon_sym_BOOL] = ACTIONS(2432), + [anon_sym_IMP] = ACTIONS(2432), + [anon_sym_SEL] = ACTIONS(2432), + [anon_sym_Class] = ACTIONS(2432), + [anon_sym_id] = ACTIONS(2432), + }, + [698] = { + [ts_builtin_sym_end] = ACTIONS(2534), + [sym_identifier] = ACTIONS(2532), + [aux_sym_preproc_include_token1] = ACTIONS(2532), + [aux_sym_preproc_include_token2] = ACTIONS(2532), + [aux_sym_preproc_def_token1] = ACTIONS(2532), + [aux_sym_preproc_if_token1] = ACTIONS(2532), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2532), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2532), + [sym_preproc_directive] = ACTIONS(2532), + [anon_sym_LPAREN2] = ACTIONS(2534), + [anon_sym_BANG] = ACTIONS(2534), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2532), + [anon_sym_STAR] = ACTIONS(2534), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2534), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym___extension__] = ACTIONS(2532), + [anon_sym_typedef] = ACTIONS(2532), + [anon_sym_extern] = ACTIONS(2532), + [anon_sym___attribute__] = ACTIONS(2532), + [anon_sym___attribute] = ACTIONS(2532), + [anon_sym_noreturn] = ACTIONS(2532), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym___declspec] = ACTIONS(2532), + [anon_sym___cdecl] = ACTIONS(2532), + [anon_sym___clrcall] = ACTIONS(2532), + [anon_sym___stdcall] = ACTIONS(2532), + [anon_sym___fastcall] = ACTIONS(2532), + [anon_sym___thiscall] = ACTIONS(2532), + [anon_sym___vectorcall] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_signed] = ACTIONS(2532), + [anon_sym_unsigned] = ACTIONS(2532), + [anon_sym_long] = ACTIONS(2532), + [anon_sym_short] = ACTIONS(2532), + [anon_sym_static] = ACTIONS(2532), + [anon_sym_ATautoreleasepool] = ACTIONS(2534), + [anon_sym_auto] = ACTIONS(2532), + [anon_sym_register] = ACTIONS(2532), + [anon_sym_inline] = ACTIONS(2532), + [anon_sym___inline] = ACTIONS(2532), + [anon_sym___inline__] = ACTIONS(2532), + [anon_sym___forceinline] = ACTIONS(2532), + [anon_sym_thread_local] = ACTIONS(2532), + [anon_sym___thread] = ACTIONS(2532), + [anon_sym_CG_EXTERN] = ACTIONS(2532), + [anon_sym_CG_INLINE] = ACTIONS(2532), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2532), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2532), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2532), + [anon_sym_IBOutlet] = ACTIONS(2532), + [anon_sym_IBInspectable] = ACTIONS(2532), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2532), + [anon_sym_NS_INLINE] = ACTIONS(2532), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2532), + [anon_sym_OBJC_EXPORT] = ACTIONS(2532), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2532), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2532), + [anon_sym_const] = ACTIONS(2532), + [anon_sym_constexpr] = ACTIONS(2532), + [anon_sym_volatile] = ACTIONS(2532), + [anon_sym_restrict] = ACTIONS(2532), + [anon_sym___restrict__] = ACTIONS(2532), + [anon_sym__Atomic] = ACTIONS(2532), + [anon_sym__Noreturn] = ACTIONS(2532), + [anon_sym__Nonnull] = ACTIONS(2532), + [anon_sym_nullable] = ACTIONS(2532), + [anon_sym__Complex] = ACTIONS(2532), + [anon_sym__Nullable] = ACTIONS(2532), + [anon_sym__Nullable_result] = ACTIONS(2532), + [anon_sym__Null_unspecified] = ACTIONS(2532), + [anon_sym___autoreleasing] = ACTIONS(2532), + [anon_sym___block] = ACTIONS(2532), + [anon_sym___bridge] = ACTIONS(2532), + [anon_sym___bridge_retained] = ACTIONS(2532), + [anon_sym___bridge_transfer] = ACTIONS(2532), + [anon_sym___complex] = ACTIONS(2532), + [anon_sym___const] = ACTIONS(2532), + [anon_sym___imag] = ACTIONS(2532), + [anon_sym___kindof] = ACTIONS(2532), + [anon_sym___nonnull] = ACTIONS(2532), + [anon_sym___nullable] = ACTIONS(2532), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2532), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2532), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2532), + [anon_sym___real] = ACTIONS(2532), + [anon_sym___strong] = ACTIONS(2532), + [anon_sym___unsafe_unretained] = ACTIONS(2532), + [anon_sym___unused] = ACTIONS(2532), + [anon_sym___weak] = ACTIONS(2532), + [anon_sym_alignas] = ACTIONS(2532), + [anon_sym__Alignas] = ACTIONS(2532), + [sym_primitive_type] = ACTIONS(2532), + [anon_sym_enum] = ACTIONS(2532), + [anon_sym_struct] = ACTIONS(2532), + [anon_sym_union] = ACTIONS(2532), + [anon_sym_if] = ACTIONS(2532), + [anon_sym_else] = ACTIONS(2532), + [anon_sym_switch] = ACTIONS(2532), + [anon_sym_case] = ACTIONS(2532), + [anon_sym_default] = ACTIONS(2532), + [anon_sym_while] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_for] = ACTIONS(2532), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_return] = ACTIONS(2532), + [anon_sym_break] = ACTIONS(2532), + [anon_sym_continue] = ACTIONS(2532), + [anon_sym_goto] = ACTIONS(2532), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), + [anon_sym_sizeof] = ACTIONS(2532), + [anon_sym___alignof__] = ACTIONS(2532), + [anon_sym___alignof] = ACTIONS(2532), + [anon_sym__alignof] = ACTIONS(2532), + [anon_sym_alignof] = ACTIONS(2532), + [anon_sym__Alignof] = ACTIONS(2532), + [anon_sym_offsetof] = ACTIONS(2532), + [anon_sym__Generic] = ACTIONS(2532), + [anon_sym_asm] = ACTIONS(2532), + [anon_sym___asm__] = ACTIONS(2532), + [anon_sym___asm] = ACTIONS(2532), + [sym_number_literal] = ACTIONS(2534), + [anon_sym_L_SQUOTE] = ACTIONS(2534), + [anon_sym_u_SQUOTE] = ACTIONS(2534), + [anon_sym_U_SQUOTE] = ACTIONS(2534), + [anon_sym_u8_SQUOTE] = ACTIONS(2534), + [anon_sym_SQUOTE] = ACTIONS(2534), + [anon_sym_AT] = ACTIONS(2532), + [anon_sym_DQUOTE] = ACTIONS(2534), + [anon_sym_L_DQUOTE] = ACTIONS(2534), + [anon_sym_u_DQUOTE] = ACTIONS(2534), + [anon_sym_U_DQUOTE] = ACTIONS(2534), + [anon_sym_u8_DQUOTE] = ACTIONS(2534), + [sym_true] = ACTIONS(2532), + [sym_false] = ACTIONS(2532), + [anon_sym_NULL] = ACTIONS(2532), + [anon_sym_nullptr] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2532), + [anon_sym___typeof] = ACTIONS(2532), + [anon_sym_typeof] = ACTIONS(2532), + [anon_sym_ATimport] = ACTIONS(2534), + [aux_sym_preproc_undef_token1] = ACTIONS(2532), + [anon_sym_POUND] = ACTIONS(2532), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2532), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2532), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2532), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2532), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2532), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2532), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2532), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2532), + [anon_sym_NS_AVAILABLE] = ACTIONS(2532), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2532), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_API_AVAILABLE] = ACTIONS(2532), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_API_DEPRECATED] = ACTIONS(2532), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2532), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2532), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2532), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2532), + [anon_sym___deprecated_msg] = ACTIONS(2532), + [anon_sym___deprecated_enum_msg] = ACTIONS(2532), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2532), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2532), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2532), + [anon_sym_ATprotocol] = ACTIONS(2534), + [anon_sym_ATinterface] = ACTIONS(2534), + [anon_sym_ATimplementation] = ACTIONS(2534), + [anon_sym_ATcompatibility_alias] = ACTIONS(2534), + [anon_sym_ATtry] = ACTIONS(2534), + [anon_sym___try] = ACTIONS(2532), + [anon_sym_ATthrow] = ACTIONS(2534), + [anon_sym_ATselector] = ACTIONS(2534), + [anon_sym_ATavailable] = ACTIONS(2534), + [anon_sym___builtin_available] = ACTIONS(2532), + [anon_sym_va_arg] = ACTIONS(2532), + [anon_sym_ATencode] = ACTIONS(2534), + [anon_sym_ATsynchronized] = ACTIONS(2534), + [anon_sym_BOOL] = ACTIONS(2532), + [anon_sym_IMP] = ACTIONS(2532), + [anon_sym_SEL] = ACTIONS(2532), + [anon_sym_Class] = ACTIONS(2532), + [anon_sym_id] = ACTIONS(2532), + }, + [699] = { + [sym_identifier] = ACTIONS(2428), + [aux_sym_preproc_include_token1] = ACTIONS(2428), + [aux_sym_preproc_include_token2] = ACTIONS(2428), + [aux_sym_preproc_def_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2428), + [sym_preproc_directive] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_STAR] = ACTIONS(2430), + [anon_sym_CARET] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym___cdecl] = ACTIONS(2428), + [anon_sym___clrcall] = ACTIONS(2428), + [anon_sym___stdcall] = ACTIONS(2428), + [anon_sym___fastcall] = ACTIONS(2428), + [anon_sym___thiscall] = ACTIONS(2428), + [anon_sym___vectorcall] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_RBRACE] = ACTIONS(2430), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_ATautoreleasepool] = ACTIONS(2430), + [anon_sym_auto] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_CG_EXTERN] = ACTIONS(2428), + [anon_sym_CG_INLINE] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2428), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2428), + [anon_sym_IBOutlet] = ACTIONS(2428), + [anon_sym_IBInspectable] = ACTIONS(2428), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2428), + [anon_sym_NS_INLINE] = ACTIONS(2428), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2428), + [anon_sym_OBJC_EXPORT] = ACTIONS(2428), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_nullable] = ACTIONS(2428), + [anon_sym__Complex] = ACTIONS(2428), + [anon_sym__Nullable] = ACTIONS(2428), + [anon_sym__Nullable_result] = ACTIONS(2428), + [anon_sym__Null_unspecified] = ACTIONS(2428), + [anon_sym___autoreleasing] = ACTIONS(2428), + [anon_sym___block] = ACTIONS(2428), + [anon_sym___bridge] = ACTIONS(2428), + [anon_sym___bridge_retained] = ACTIONS(2428), + [anon_sym___bridge_transfer] = ACTIONS(2428), + [anon_sym___complex] = ACTIONS(2428), + [anon_sym___const] = ACTIONS(2428), + [anon_sym___imag] = ACTIONS(2428), + [anon_sym___kindof] = ACTIONS(2428), + [anon_sym___nonnull] = ACTIONS(2428), + [anon_sym___nullable] = ACTIONS(2428), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2428), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2428), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2428), + [anon_sym___real] = ACTIONS(2428), + [anon_sym___strong] = ACTIONS(2428), + [anon_sym___unsafe_unretained] = ACTIONS(2428), + [anon_sym___unused] = ACTIONS(2428), + [anon_sym___weak] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_else] = ACTIONS(2428), + [anon_sym_switch] = ACTIONS(2428), + [anon_sym_case] = ACTIONS(2428), + [anon_sym_default] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_do] = ACTIONS(2428), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_in] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_goto] = ACTIONS(2428), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_sizeof] = ACTIONS(2428), + [anon_sym___alignof__] = ACTIONS(2428), + [anon_sym___alignof] = ACTIONS(2428), + [anon_sym__alignof] = ACTIONS(2428), + [anon_sym_alignof] = ACTIONS(2428), + [anon_sym__Alignof] = ACTIONS(2428), + [anon_sym_offsetof] = ACTIONS(2428), + [anon_sym__Generic] = ACTIONS(2428), + [anon_sym_asm] = ACTIONS(2428), + [anon_sym___asm__] = ACTIONS(2428), + [anon_sym___asm] = ACTIONS(2428), + [sym_number_literal] = ACTIONS(2430), + [anon_sym_L_SQUOTE] = ACTIONS(2430), + [anon_sym_u_SQUOTE] = ACTIONS(2430), + [anon_sym_U_SQUOTE] = ACTIONS(2430), + [anon_sym_u8_SQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_AT] = ACTIONS(2428), + [anon_sym_DQUOTE] = ACTIONS(2430), + [anon_sym_L_DQUOTE] = ACTIONS(2430), + [anon_sym_u_DQUOTE] = ACTIONS(2430), + [anon_sym_U_DQUOTE] = ACTIONS(2430), + [anon_sym_u8_DQUOTE] = ACTIONS(2430), + [sym_true] = ACTIONS(2428), + [sym_false] = ACTIONS(2428), + [anon_sym_NULL] = ACTIONS(2428), + [anon_sym_nullptr] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2428), + [anon_sym___typeof] = ACTIONS(2428), + [anon_sym_typeof] = ACTIONS(2428), + [anon_sym_ATimport] = ACTIONS(2430), + [aux_sym_preproc_undef_token1] = ACTIONS(2428), + [anon_sym_POUND] = ACTIONS(2428), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2428), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2428), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2428), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2428), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE] = ACTIONS(2428), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_API_AVAILABLE] = ACTIONS(2428), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_API_DEPRECATED] = ACTIONS(2428), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2428), + [anon_sym___deprecated_msg] = ACTIONS(2428), + [anon_sym___deprecated_enum_msg] = ACTIONS(2428), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2428), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2428), + [anon_sym_ATprotocol] = ACTIONS(2430), + [anon_sym_ATinterface] = ACTIONS(2430), + [anon_sym_ATimplementation] = ACTIONS(2430), + [anon_sym_ATcompatibility_alias] = ACTIONS(2430), + [anon_sym_ATtry] = ACTIONS(2430), + [anon_sym___try] = ACTIONS(2428), + [anon_sym_ATthrow] = ACTIONS(2430), + [anon_sym_ATselector] = ACTIONS(2430), + [anon_sym_ATavailable] = ACTIONS(2430), + [anon_sym___builtin_available] = ACTIONS(2428), + [anon_sym_va_arg] = ACTIONS(2428), + [anon_sym_ATencode] = ACTIONS(2430), + [anon_sym_ATsynchronized] = ACTIONS(2430), + [anon_sym_BOOL] = ACTIONS(2428), + [anon_sym_IMP] = ACTIONS(2428), + [anon_sym_SEL] = ACTIONS(2428), + [anon_sym_Class] = ACTIONS(2428), + [anon_sym_id] = ACTIONS(2428), + }, + [700] = { + [ts_builtin_sym_end] = ACTIONS(2538), + [sym_identifier] = ACTIONS(2536), + [aux_sym_preproc_include_token1] = ACTIONS(2536), + [aux_sym_preproc_include_token2] = ACTIONS(2536), + [aux_sym_preproc_def_token1] = ACTIONS(2536), + [aux_sym_preproc_if_token1] = ACTIONS(2536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2536), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2536), + [sym_preproc_directive] = ACTIONS(2536), + [anon_sym_LPAREN2] = ACTIONS(2538), + [anon_sym_BANG] = ACTIONS(2538), + [anon_sym_TILDE] = ACTIONS(2538), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_STAR] = ACTIONS(2538), + [anon_sym_CARET] = ACTIONS(2538), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_SEMI] = ACTIONS(2538), + [anon_sym___extension__] = ACTIONS(2536), + [anon_sym_typedef] = ACTIONS(2536), + [anon_sym_extern] = ACTIONS(2536), + [anon_sym___attribute__] = ACTIONS(2536), + [anon_sym___attribute] = ACTIONS(2536), + [anon_sym_noreturn] = ACTIONS(2536), + [anon_sym_LBRACK] = ACTIONS(2538), + [anon_sym___declspec] = ACTIONS(2536), + [anon_sym___cdecl] = ACTIONS(2536), + [anon_sym___clrcall] = ACTIONS(2536), + [anon_sym___stdcall] = ACTIONS(2536), + [anon_sym___fastcall] = ACTIONS(2536), + [anon_sym___thiscall] = ACTIONS(2536), + [anon_sym___vectorcall] = ACTIONS(2536), + [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_signed] = ACTIONS(2536), + [anon_sym_unsigned] = ACTIONS(2536), + [anon_sym_long] = ACTIONS(2536), + [anon_sym_short] = ACTIONS(2536), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_ATautoreleasepool] = ACTIONS(2538), + [anon_sym_auto] = ACTIONS(2536), + [anon_sym_register] = ACTIONS(2536), + [anon_sym_inline] = ACTIONS(2536), + [anon_sym___inline] = ACTIONS(2536), + [anon_sym___inline__] = ACTIONS(2536), + [anon_sym___forceinline] = ACTIONS(2536), + [anon_sym_thread_local] = ACTIONS(2536), + [anon_sym___thread] = ACTIONS(2536), + [anon_sym_CG_EXTERN] = ACTIONS(2536), + [anon_sym_CG_INLINE] = ACTIONS(2536), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2536), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2536), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2536), + [anon_sym_IBOutlet] = ACTIONS(2536), + [anon_sym_IBInspectable] = ACTIONS(2536), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2536), + [anon_sym_NS_INLINE] = ACTIONS(2536), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2536), + [anon_sym_OBJC_EXPORT] = ACTIONS(2536), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2536), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2536), + [anon_sym_const] = ACTIONS(2536), + [anon_sym_constexpr] = ACTIONS(2536), + [anon_sym_volatile] = ACTIONS(2536), + [anon_sym_restrict] = ACTIONS(2536), + [anon_sym___restrict__] = ACTIONS(2536), + [anon_sym__Atomic] = ACTIONS(2536), + [anon_sym__Noreturn] = ACTIONS(2536), + [anon_sym__Nonnull] = ACTIONS(2536), + [anon_sym_nullable] = ACTIONS(2536), + [anon_sym__Complex] = ACTIONS(2536), + [anon_sym__Nullable] = ACTIONS(2536), + [anon_sym__Nullable_result] = ACTIONS(2536), + [anon_sym__Null_unspecified] = ACTIONS(2536), + [anon_sym___autoreleasing] = ACTIONS(2536), + [anon_sym___block] = ACTIONS(2536), + [anon_sym___bridge] = ACTIONS(2536), + [anon_sym___bridge_retained] = ACTIONS(2536), + [anon_sym___bridge_transfer] = ACTIONS(2536), + [anon_sym___complex] = ACTIONS(2536), + [anon_sym___const] = ACTIONS(2536), + [anon_sym___imag] = ACTIONS(2536), + [anon_sym___kindof] = ACTIONS(2536), + [anon_sym___nonnull] = ACTIONS(2536), + [anon_sym___nullable] = ACTIONS(2536), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2536), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2536), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2536), + [anon_sym___real] = ACTIONS(2536), + [anon_sym___strong] = ACTIONS(2536), + [anon_sym___unsafe_unretained] = ACTIONS(2536), + [anon_sym___unused] = ACTIONS(2536), + [anon_sym___weak] = ACTIONS(2536), + [anon_sym_alignas] = ACTIONS(2536), + [anon_sym__Alignas] = ACTIONS(2536), + [sym_primitive_type] = ACTIONS(2536), + [anon_sym_enum] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2536), + [anon_sym_union] = ACTIONS(2536), + [anon_sym_if] = ACTIONS(2536), + [anon_sym_else] = ACTIONS(2536), + [anon_sym_switch] = ACTIONS(2536), + [anon_sym_case] = ACTIONS(2536), + [anon_sym_default] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2536), + [anon_sym_do] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2536), + [anon_sym_in] = ACTIONS(2536), + [anon_sym_return] = ACTIONS(2536), + [anon_sym_break] = ACTIONS(2536), + [anon_sym_continue] = ACTIONS(2536), + [anon_sym_goto] = ACTIONS(2536), + [anon_sym_DASH_DASH] = ACTIONS(2538), + [anon_sym_PLUS_PLUS] = ACTIONS(2538), + [anon_sym_sizeof] = ACTIONS(2536), + [anon_sym___alignof__] = ACTIONS(2536), + [anon_sym___alignof] = ACTIONS(2536), + [anon_sym__alignof] = ACTIONS(2536), + [anon_sym_alignof] = ACTIONS(2536), + [anon_sym__Alignof] = ACTIONS(2536), + [anon_sym_offsetof] = ACTIONS(2536), + [anon_sym__Generic] = ACTIONS(2536), + [anon_sym_asm] = ACTIONS(2536), + [anon_sym___asm__] = ACTIONS(2536), + [anon_sym___asm] = ACTIONS(2536), + [sym_number_literal] = ACTIONS(2538), + [anon_sym_L_SQUOTE] = ACTIONS(2538), + [anon_sym_u_SQUOTE] = ACTIONS(2538), + [anon_sym_U_SQUOTE] = ACTIONS(2538), + [anon_sym_u8_SQUOTE] = ACTIONS(2538), + [anon_sym_SQUOTE] = ACTIONS(2538), + [anon_sym_AT] = ACTIONS(2536), + [anon_sym_DQUOTE] = ACTIONS(2538), + [anon_sym_L_DQUOTE] = ACTIONS(2538), + [anon_sym_u_DQUOTE] = ACTIONS(2538), + [anon_sym_U_DQUOTE] = ACTIONS(2538), + [anon_sym_u8_DQUOTE] = ACTIONS(2538), + [sym_true] = ACTIONS(2536), + [sym_false] = ACTIONS(2536), + [anon_sym_NULL] = ACTIONS(2536), + [anon_sym_nullptr] = ACTIONS(2536), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2536), + [anon_sym___typeof] = ACTIONS(2536), + [anon_sym_typeof] = ACTIONS(2536), + [anon_sym_ATimport] = ACTIONS(2538), + [aux_sym_preproc_undef_token1] = ACTIONS(2536), + [anon_sym_POUND] = ACTIONS(2536), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2536), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2536), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2536), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2536), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2536), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2536), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2536), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2536), + [anon_sym_NS_AVAILABLE] = ACTIONS(2536), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2536), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_API_AVAILABLE] = ACTIONS(2536), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_API_DEPRECATED] = ACTIONS(2536), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2536), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2536), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2536), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2536), + [anon_sym___deprecated_msg] = ACTIONS(2536), + [anon_sym___deprecated_enum_msg] = ACTIONS(2536), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2536), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2536), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2536), + [anon_sym_ATprotocol] = ACTIONS(2538), + [anon_sym_ATinterface] = ACTIONS(2538), + [anon_sym_ATimplementation] = ACTIONS(2538), + [anon_sym_ATcompatibility_alias] = ACTIONS(2538), + [anon_sym_ATtry] = ACTIONS(2538), + [anon_sym___try] = ACTIONS(2536), + [anon_sym_ATthrow] = ACTIONS(2538), + [anon_sym_ATselector] = ACTIONS(2538), + [anon_sym_ATavailable] = ACTIONS(2538), + [anon_sym___builtin_available] = ACTIONS(2536), + [anon_sym_va_arg] = ACTIONS(2536), + [anon_sym_ATencode] = ACTIONS(2538), + [anon_sym_ATsynchronized] = ACTIONS(2538), + [anon_sym_BOOL] = ACTIONS(2536), + [anon_sym_IMP] = ACTIONS(2536), + [anon_sym_SEL] = ACTIONS(2536), + [anon_sym_Class] = ACTIONS(2536), + [anon_sym_id] = ACTIONS(2536), + }, + [701] = { + [ts_builtin_sym_end] = ACTIONS(2542), + [sym_identifier] = ACTIONS(2540), + [aux_sym_preproc_include_token1] = ACTIONS(2540), + [aux_sym_preproc_include_token2] = ACTIONS(2540), + [aux_sym_preproc_def_token1] = ACTIONS(2540), + [aux_sym_preproc_if_token1] = ACTIONS(2540), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2540), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2540), + [sym_preproc_directive] = ACTIONS(2540), + [anon_sym_LPAREN2] = ACTIONS(2542), + [anon_sym_BANG] = ACTIONS(2542), + [anon_sym_TILDE] = ACTIONS(2542), + [anon_sym_DASH] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2540), + [anon_sym_STAR] = ACTIONS(2542), + [anon_sym_CARET] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2542), + [anon_sym___extension__] = ACTIONS(2540), + [anon_sym_typedef] = ACTIONS(2540), + [anon_sym_extern] = ACTIONS(2540), + [anon_sym___attribute__] = ACTIONS(2540), + [anon_sym___attribute] = ACTIONS(2540), + [anon_sym_noreturn] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym___declspec] = ACTIONS(2540), + [anon_sym___cdecl] = ACTIONS(2540), + [anon_sym___clrcall] = ACTIONS(2540), + [anon_sym___stdcall] = ACTIONS(2540), + [anon_sym___fastcall] = ACTIONS(2540), + [anon_sym___thiscall] = ACTIONS(2540), + [anon_sym___vectorcall] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2542), + [anon_sym_signed] = ACTIONS(2540), + [anon_sym_unsigned] = ACTIONS(2540), + [anon_sym_long] = ACTIONS(2540), + [anon_sym_short] = ACTIONS(2540), + [anon_sym_static] = ACTIONS(2540), + [anon_sym_ATautoreleasepool] = ACTIONS(2542), + [anon_sym_auto] = ACTIONS(2540), + [anon_sym_register] = ACTIONS(2540), + [anon_sym_inline] = ACTIONS(2540), + [anon_sym___inline] = ACTIONS(2540), + [anon_sym___inline__] = ACTIONS(2540), + [anon_sym___forceinline] = ACTIONS(2540), + [anon_sym_thread_local] = ACTIONS(2540), + [anon_sym___thread] = ACTIONS(2540), + [anon_sym_CG_EXTERN] = ACTIONS(2540), + [anon_sym_CG_INLINE] = ACTIONS(2540), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2540), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2540), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2540), + [anon_sym_IBOutlet] = ACTIONS(2540), + [anon_sym_IBInspectable] = ACTIONS(2540), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2540), + [anon_sym_NS_INLINE] = ACTIONS(2540), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2540), + [anon_sym_OBJC_EXPORT] = ACTIONS(2540), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2540), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2540), + [anon_sym_const] = ACTIONS(2540), + [anon_sym_constexpr] = ACTIONS(2540), + [anon_sym_volatile] = ACTIONS(2540), + [anon_sym_restrict] = ACTIONS(2540), + [anon_sym___restrict__] = ACTIONS(2540), + [anon_sym__Atomic] = ACTIONS(2540), + [anon_sym__Noreturn] = ACTIONS(2540), + [anon_sym__Nonnull] = ACTIONS(2540), + [anon_sym_nullable] = ACTIONS(2540), + [anon_sym__Complex] = ACTIONS(2540), + [anon_sym__Nullable] = ACTIONS(2540), + [anon_sym__Nullable_result] = ACTIONS(2540), + [anon_sym__Null_unspecified] = ACTIONS(2540), + [anon_sym___autoreleasing] = ACTIONS(2540), + [anon_sym___block] = ACTIONS(2540), + [anon_sym___bridge] = ACTIONS(2540), + [anon_sym___bridge_retained] = ACTIONS(2540), + [anon_sym___bridge_transfer] = ACTIONS(2540), + [anon_sym___complex] = ACTIONS(2540), + [anon_sym___const] = ACTIONS(2540), + [anon_sym___imag] = ACTIONS(2540), + [anon_sym___kindof] = ACTIONS(2540), + [anon_sym___nonnull] = ACTIONS(2540), + [anon_sym___nullable] = ACTIONS(2540), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2540), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2540), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2540), + [anon_sym___real] = ACTIONS(2540), + [anon_sym___strong] = ACTIONS(2540), + [anon_sym___unsafe_unretained] = ACTIONS(2540), + [anon_sym___unused] = ACTIONS(2540), + [anon_sym___weak] = ACTIONS(2540), + [anon_sym_alignas] = ACTIONS(2540), + [anon_sym__Alignas] = ACTIONS(2540), + [sym_primitive_type] = ACTIONS(2540), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_struct] = ACTIONS(2540), + [anon_sym_union] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_else] = ACTIONS(2540), + [anon_sym_switch] = ACTIONS(2540), + [anon_sym_case] = ACTIONS(2540), + [anon_sym_default] = ACTIONS(2540), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_do] = ACTIONS(2540), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_in] = ACTIONS(2540), + [anon_sym_return] = ACTIONS(2540), + [anon_sym_break] = ACTIONS(2540), + [anon_sym_continue] = ACTIONS(2540), + [anon_sym_goto] = ACTIONS(2540), + [anon_sym_DASH_DASH] = ACTIONS(2542), + [anon_sym_PLUS_PLUS] = ACTIONS(2542), + [anon_sym_sizeof] = ACTIONS(2540), + [anon_sym___alignof__] = ACTIONS(2540), + [anon_sym___alignof] = ACTIONS(2540), + [anon_sym__alignof] = ACTIONS(2540), + [anon_sym_alignof] = ACTIONS(2540), + [anon_sym__Alignof] = ACTIONS(2540), + [anon_sym_offsetof] = ACTIONS(2540), + [anon_sym__Generic] = ACTIONS(2540), + [anon_sym_asm] = ACTIONS(2540), + [anon_sym___asm__] = ACTIONS(2540), + [anon_sym___asm] = ACTIONS(2540), + [sym_number_literal] = ACTIONS(2542), + [anon_sym_L_SQUOTE] = ACTIONS(2542), + [anon_sym_u_SQUOTE] = ACTIONS(2542), + [anon_sym_U_SQUOTE] = ACTIONS(2542), + [anon_sym_u8_SQUOTE] = ACTIONS(2542), + [anon_sym_SQUOTE] = ACTIONS(2542), + [anon_sym_AT] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2542), + [anon_sym_L_DQUOTE] = ACTIONS(2542), + [anon_sym_u_DQUOTE] = ACTIONS(2542), + [anon_sym_U_DQUOTE] = ACTIONS(2542), + [anon_sym_u8_DQUOTE] = ACTIONS(2542), + [sym_true] = ACTIONS(2540), + [sym_false] = ACTIONS(2540), + [anon_sym_NULL] = ACTIONS(2540), + [anon_sym_nullptr] = ACTIONS(2540), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2540), + [anon_sym___typeof] = ACTIONS(2540), + [anon_sym_typeof] = ACTIONS(2540), + [anon_sym_ATimport] = ACTIONS(2542), + [aux_sym_preproc_undef_token1] = ACTIONS(2540), + [anon_sym_POUND] = ACTIONS(2540), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2540), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2540), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2540), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2540), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2540), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2540), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2540), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2540), + [anon_sym_NS_AVAILABLE] = ACTIONS(2540), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2540), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_API_AVAILABLE] = ACTIONS(2540), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_API_DEPRECATED] = ACTIONS(2540), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2540), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2540), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2540), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2540), + [anon_sym___deprecated_msg] = ACTIONS(2540), + [anon_sym___deprecated_enum_msg] = ACTIONS(2540), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2540), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2540), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2540), + [anon_sym_ATprotocol] = ACTIONS(2542), + [anon_sym_ATinterface] = ACTIONS(2542), + [anon_sym_ATimplementation] = ACTIONS(2542), + [anon_sym_ATcompatibility_alias] = ACTIONS(2542), + [anon_sym_ATtry] = ACTIONS(2542), + [anon_sym___try] = ACTIONS(2540), + [anon_sym_ATthrow] = ACTIONS(2542), + [anon_sym_ATselector] = ACTIONS(2542), + [anon_sym_ATavailable] = ACTIONS(2542), + [anon_sym___builtin_available] = ACTIONS(2540), + [anon_sym_va_arg] = ACTIONS(2540), + [anon_sym_ATencode] = ACTIONS(2542), + [anon_sym_ATsynchronized] = ACTIONS(2542), + [anon_sym_BOOL] = ACTIONS(2540), + [anon_sym_IMP] = ACTIONS(2540), + [anon_sym_SEL] = ACTIONS(2540), + [anon_sym_Class] = ACTIONS(2540), + [anon_sym_id] = ACTIONS(2540), + }, + [702] = { + [ts_builtin_sym_end] = ACTIONS(2514), + [sym_identifier] = ACTIONS(2512), + [aux_sym_preproc_include_token1] = ACTIONS(2512), + [aux_sym_preproc_include_token2] = ACTIONS(2512), + [aux_sym_preproc_def_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token1] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2512), + [sym_preproc_directive] = ACTIONS(2512), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_TILDE] = ACTIONS(2514), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_STAR] = ACTIONS(2514), + [anon_sym_CARET] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym___extension__] = ACTIONS(2512), + [anon_sym_typedef] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym___attribute__] = ACTIONS(2512), + [anon_sym___attribute] = ACTIONS(2512), + [anon_sym_noreturn] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym___declspec] = ACTIONS(2512), + [anon_sym___cdecl] = ACTIONS(2512), + [anon_sym___clrcall] = ACTIONS(2512), + [anon_sym___stdcall] = ACTIONS(2512), + [anon_sym___fastcall] = ACTIONS(2512), + [anon_sym___thiscall] = ACTIONS(2512), + [anon_sym___vectorcall] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_signed] = ACTIONS(2512), + [anon_sym_unsigned] = ACTIONS(2512), + [anon_sym_long] = ACTIONS(2512), + [anon_sym_short] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_ATautoreleasepool] = ACTIONS(2514), + [anon_sym_auto] = ACTIONS(2512), + [anon_sym_register] = ACTIONS(2512), + [anon_sym_inline] = ACTIONS(2512), + [anon_sym___inline] = ACTIONS(2512), + [anon_sym___inline__] = ACTIONS(2512), + [anon_sym___forceinline] = ACTIONS(2512), + [anon_sym_thread_local] = ACTIONS(2512), + [anon_sym___thread] = ACTIONS(2512), + [anon_sym_CG_EXTERN] = ACTIONS(2512), + [anon_sym_CG_INLINE] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2512), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2512), + [anon_sym_IBOutlet] = ACTIONS(2512), + [anon_sym_IBInspectable] = ACTIONS(2512), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2512), + [anon_sym_NS_INLINE] = ACTIONS(2512), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2512), + [anon_sym_OBJC_EXPORT] = ACTIONS(2512), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_constexpr] = ACTIONS(2512), + [anon_sym_volatile] = ACTIONS(2512), + [anon_sym_restrict] = ACTIONS(2512), + [anon_sym___restrict__] = ACTIONS(2512), + [anon_sym__Atomic] = ACTIONS(2512), + [anon_sym__Noreturn] = ACTIONS(2512), + [anon_sym__Nonnull] = ACTIONS(2512), + [anon_sym_nullable] = ACTIONS(2512), + [anon_sym__Complex] = ACTIONS(2512), + [anon_sym__Nullable] = ACTIONS(2512), + [anon_sym__Nullable_result] = ACTIONS(2512), + [anon_sym__Null_unspecified] = ACTIONS(2512), + [anon_sym___autoreleasing] = ACTIONS(2512), + [anon_sym___block] = ACTIONS(2512), + [anon_sym___bridge] = ACTIONS(2512), + [anon_sym___bridge_retained] = ACTIONS(2512), + [anon_sym___bridge_transfer] = ACTIONS(2512), + [anon_sym___complex] = ACTIONS(2512), + [anon_sym___const] = ACTIONS(2512), + [anon_sym___imag] = ACTIONS(2512), + [anon_sym___kindof] = ACTIONS(2512), + [anon_sym___nonnull] = ACTIONS(2512), + [anon_sym___nullable] = ACTIONS(2512), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2512), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2512), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2512), + [anon_sym___real] = ACTIONS(2512), + [anon_sym___strong] = ACTIONS(2512), + [anon_sym___unsafe_unretained] = ACTIONS(2512), + [anon_sym___unused] = ACTIONS(2512), + [anon_sym___weak] = ACTIONS(2512), + [anon_sym_alignas] = ACTIONS(2512), + [anon_sym__Alignas] = ACTIONS(2512), + [sym_primitive_type] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [anon_sym_struct] = ACTIONS(2512), + [anon_sym_union] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_else] = ACTIONS(2512), + [anon_sym_switch] = ACTIONS(2512), + [anon_sym_case] = ACTIONS(2512), + [anon_sym_default] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_do] = ACTIONS(2512), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_in] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_goto] = ACTIONS(2512), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_sizeof] = ACTIONS(2512), + [anon_sym___alignof__] = ACTIONS(2512), + [anon_sym___alignof] = ACTIONS(2512), + [anon_sym__alignof] = ACTIONS(2512), + [anon_sym_alignof] = ACTIONS(2512), + [anon_sym__Alignof] = ACTIONS(2512), + [anon_sym_offsetof] = ACTIONS(2512), + [anon_sym__Generic] = ACTIONS(2512), + [anon_sym_asm] = ACTIONS(2512), + [anon_sym___asm__] = ACTIONS(2512), + [anon_sym___asm] = ACTIONS(2512), + [sym_number_literal] = ACTIONS(2514), + [anon_sym_L_SQUOTE] = ACTIONS(2514), + [anon_sym_u_SQUOTE] = ACTIONS(2514), + [anon_sym_U_SQUOTE] = ACTIONS(2514), + [anon_sym_u8_SQUOTE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_AT] = ACTIONS(2512), + [anon_sym_DQUOTE] = ACTIONS(2514), + [anon_sym_L_DQUOTE] = ACTIONS(2514), + [anon_sym_u_DQUOTE] = ACTIONS(2514), + [anon_sym_U_DQUOTE] = ACTIONS(2514), + [anon_sym_u8_DQUOTE] = ACTIONS(2514), + [sym_true] = ACTIONS(2512), + [sym_false] = ACTIONS(2512), + [anon_sym_NULL] = ACTIONS(2512), + [anon_sym_nullptr] = ACTIONS(2512), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2512), + [anon_sym___typeof] = ACTIONS(2512), + [anon_sym_typeof] = ACTIONS(2512), + [anon_sym_ATimport] = ACTIONS(2514), + [aux_sym_preproc_undef_token1] = ACTIONS(2512), + [anon_sym_POUND] = ACTIONS(2512), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2512), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2512), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2512), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2512), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE] = ACTIONS(2512), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_API_AVAILABLE] = ACTIONS(2512), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_API_DEPRECATED] = ACTIONS(2512), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2512), + [anon_sym___deprecated_msg] = ACTIONS(2512), + [anon_sym___deprecated_enum_msg] = ACTIONS(2512), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2512), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2512), + [anon_sym_ATprotocol] = ACTIONS(2514), + [anon_sym_ATinterface] = ACTIONS(2514), + [anon_sym_ATimplementation] = ACTIONS(2514), + [anon_sym_ATcompatibility_alias] = ACTIONS(2514), + [anon_sym_ATtry] = ACTIONS(2514), + [anon_sym___try] = ACTIONS(2512), + [anon_sym_ATthrow] = ACTIONS(2514), + [anon_sym_ATselector] = ACTIONS(2514), + [anon_sym_ATavailable] = ACTIONS(2514), + [anon_sym___builtin_available] = ACTIONS(2512), + [anon_sym_va_arg] = ACTIONS(2512), + [anon_sym_ATencode] = ACTIONS(2514), + [anon_sym_ATsynchronized] = ACTIONS(2514), + [anon_sym_BOOL] = ACTIONS(2512), + [anon_sym_IMP] = ACTIONS(2512), + [anon_sym_SEL] = ACTIONS(2512), + [anon_sym_Class] = ACTIONS(2512), + [anon_sym_id] = ACTIONS(2512), + }, + [703] = { + [ts_builtin_sym_end] = ACTIONS(2546), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_include_token1] = ACTIONS(2544), + [aux_sym_preproc_include_token2] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(2544), + [aux_sym_preproc_if_token1] = ACTIONS(2544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2544), + [sym_preproc_directive] = ACTIONS(2544), + [anon_sym_LPAREN2] = ACTIONS(2546), + [anon_sym_BANG] = ACTIONS(2546), + [anon_sym_TILDE] = ACTIONS(2546), + [anon_sym_DASH] = ACTIONS(2544), + [anon_sym_PLUS] = ACTIONS(2544), + [anon_sym_STAR] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2546), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym___extension__] = ACTIONS(2544), + [anon_sym_typedef] = ACTIONS(2544), + [anon_sym_extern] = ACTIONS(2544), + [anon_sym___attribute__] = ACTIONS(2544), + [anon_sym___attribute] = ACTIONS(2544), + [anon_sym_noreturn] = ACTIONS(2544), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym___declspec] = ACTIONS(2544), + [anon_sym___cdecl] = ACTIONS(2544), + [anon_sym___clrcall] = ACTIONS(2544), + [anon_sym___stdcall] = ACTIONS(2544), + [anon_sym___fastcall] = ACTIONS(2544), + [anon_sym___thiscall] = ACTIONS(2544), + [anon_sym___vectorcall] = ACTIONS(2544), + [anon_sym_LBRACE] = ACTIONS(2546), + [anon_sym_signed] = ACTIONS(2544), + [anon_sym_unsigned] = ACTIONS(2544), + [anon_sym_long] = ACTIONS(2544), + [anon_sym_short] = ACTIONS(2544), + [anon_sym_static] = ACTIONS(2544), + [anon_sym_ATautoreleasepool] = ACTIONS(2546), + [anon_sym_auto] = ACTIONS(2544), + [anon_sym_register] = ACTIONS(2544), + [anon_sym_inline] = ACTIONS(2544), + [anon_sym___inline] = ACTIONS(2544), + [anon_sym___inline__] = ACTIONS(2544), + [anon_sym___forceinline] = ACTIONS(2544), + [anon_sym_thread_local] = ACTIONS(2544), + [anon_sym___thread] = ACTIONS(2544), + [anon_sym_CG_EXTERN] = ACTIONS(2544), + [anon_sym_CG_INLINE] = ACTIONS(2544), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2544), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2544), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2544), + [anon_sym_IBOutlet] = ACTIONS(2544), + [anon_sym_IBInspectable] = ACTIONS(2544), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2544), + [anon_sym_NS_INLINE] = ACTIONS(2544), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2544), + [anon_sym_OBJC_EXPORT] = ACTIONS(2544), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2544), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2544), + [anon_sym_const] = ACTIONS(2544), + [anon_sym_constexpr] = ACTIONS(2544), + [anon_sym_volatile] = ACTIONS(2544), + [anon_sym_restrict] = ACTIONS(2544), + [anon_sym___restrict__] = ACTIONS(2544), + [anon_sym__Atomic] = ACTIONS(2544), + [anon_sym__Noreturn] = ACTIONS(2544), + [anon_sym__Nonnull] = ACTIONS(2544), + [anon_sym_nullable] = ACTIONS(2544), + [anon_sym__Complex] = ACTIONS(2544), + [anon_sym__Nullable] = ACTIONS(2544), + [anon_sym__Nullable_result] = ACTIONS(2544), + [anon_sym__Null_unspecified] = ACTIONS(2544), + [anon_sym___autoreleasing] = ACTIONS(2544), + [anon_sym___block] = ACTIONS(2544), + [anon_sym___bridge] = ACTIONS(2544), + [anon_sym___bridge_retained] = ACTIONS(2544), + [anon_sym___bridge_transfer] = ACTIONS(2544), + [anon_sym___complex] = ACTIONS(2544), + [anon_sym___const] = ACTIONS(2544), + [anon_sym___imag] = ACTIONS(2544), + [anon_sym___kindof] = ACTIONS(2544), + [anon_sym___nonnull] = ACTIONS(2544), + [anon_sym___nullable] = ACTIONS(2544), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2544), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2544), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2544), + [anon_sym___real] = ACTIONS(2544), + [anon_sym___strong] = ACTIONS(2544), + [anon_sym___unsafe_unretained] = ACTIONS(2544), + [anon_sym___unused] = ACTIONS(2544), + [anon_sym___weak] = ACTIONS(2544), + [anon_sym_alignas] = ACTIONS(2544), + [anon_sym__Alignas] = ACTIONS(2544), + [sym_primitive_type] = ACTIONS(2544), + [anon_sym_enum] = ACTIONS(2544), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2544), + [anon_sym_if] = ACTIONS(2544), + [anon_sym_else] = ACTIONS(2544), + [anon_sym_switch] = ACTIONS(2544), + [anon_sym_case] = ACTIONS(2544), + [anon_sym_default] = ACTIONS(2544), + [anon_sym_while] = ACTIONS(2544), + [anon_sym_do] = ACTIONS(2544), + [anon_sym_for] = ACTIONS(2544), + [anon_sym_in] = ACTIONS(2544), + [anon_sym_return] = ACTIONS(2544), + [anon_sym_break] = ACTIONS(2544), + [anon_sym_continue] = ACTIONS(2544), + [anon_sym_goto] = ACTIONS(2544), + [anon_sym_DASH_DASH] = ACTIONS(2546), + [anon_sym_PLUS_PLUS] = ACTIONS(2546), + [anon_sym_sizeof] = ACTIONS(2544), + [anon_sym___alignof__] = ACTIONS(2544), + [anon_sym___alignof] = ACTIONS(2544), + [anon_sym__alignof] = ACTIONS(2544), + [anon_sym_alignof] = ACTIONS(2544), + [anon_sym__Alignof] = ACTIONS(2544), + [anon_sym_offsetof] = ACTIONS(2544), + [anon_sym__Generic] = ACTIONS(2544), + [anon_sym_asm] = ACTIONS(2544), + [anon_sym___asm__] = ACTIONS(2544), + [anon_sym___asm] = ACTIONS(2544), + [sym_number_literal] = ACTIONS(2546), + [anon_sym_L_SQUOTE] = ACTIONS(2546), + [anon_sym_u_SQUOTE] = ACTIONS(2546), + [anon_sym_U_SQUOTE] = ACTIONS(2546), + [anon_sym_u8_SQUOTE] = ACTIONS(2546), + [anon_sym_SQUOTE] = ACTIONS(2546), + [anon_sym_AT] = ACTIONS(2544), + [anon_sym_DQUOTE] = ACTIONS(2546), + [anon_sym_L_DQUOTE] = ACTIONS(2546), + [anon_sym_u_DQUOTE] = ACTIONS(2546), + [anon_sym_U_DQUOTE] = ACTIONS(2546), + [anon_sym_u8_DQUOTE] = ACTIONS(2546), + [sym_true] = ACTIONS(2544), + [sym_false] = ACTIONS(2544), + [anon_sym_NULL] = ACTIONS(2544), + [anon_sym_nullptr] = ACTIONS(2544), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2544), + [anon_sym___typeof] = ACTIONS(2544), + [anon_sym_typeof] = ACTIONS(2544), + [anon_sym_ATimport] = ACTIONS(2546), + [aux_sym_preproc_undef_token1] = ACTIONS(2544), + [anon_sym_POUND] = ACTIONS(2544), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2544), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2544), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2544), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2544), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2544), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2544), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2544), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2544), + [anon_sym_NS_AVAILABLE] = ACTIONS(2544), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2544), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_API_AVAILABLE] = ACTIONS(2544), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_API_DEPRECATED] = ACTIONS(2544), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2544), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2544), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2544), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2544), + [anon_sym___deprecated_msg] = ACTIONS(2544), + [anon_sym___deprecated_enum_msg] = ACTIONS(2544), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2544), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2544), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2544), + [anon_sym_ATprotocol] = ACTIONS(2546), + [anon_sym_ATinterface] = ACTIONS(2546), + [anon_sym_ATimplementation] = ACTIONS(2546), + [anon_sym_ATcompatibility_alias] = ACTIONS(2546), + [anon_sym_ATtry] = ACTIONS(2546), + [anon_sym___try] = ACTIONS(2544), + [anon_sym_ATthrow] = ACTIONS(2546), + [anon_sym_ATselector] = ACTIONS(2546), + [anon_sym_ATavailable] = ACTIONS(2546), + [anon_sym___builtin_available] = ACTIONS(2544), + [anon_sym_va_arg] = ACTIONS(2544), + [anon_sym_ATencode] = ACTIONS(2546), + [anon_sym_ATsynchronized] = ACTIONS(2546), + [anon_sym_BOOL] = ACTIONS(2544), + [anon_sym_IMP] = ACTIONS(2544), + [anon_sym_SEL] = ACTIONS(2544), + [anon_sym_Class] = ACTIONS(2544), + [anon_sym_id] = ACTIONS(2544), + }, + [704] = { + [ts_builtin_sym_end] = ACTIONS(2514), + [sym_identifier] = ACTIONS(2512), + [aux_sym_preproc_include_token1] = ACTIONS(2512), + [aux_sym_preproc_include_token2] = ACTIONS(2512), + [aux_sym_preproc_def_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token1] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2512), + [sym_preproc_directive] = ACTIONS(2512), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_TILDE] = ACTIONS(2514), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_STAR] = ACTIONS(2514), + [anon_sym_CARET] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym___extension__] = ACTIONS(2512), + [anon_sym_typedef] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym___attribute__] = ACTIONS(2512), + [anon_sym___attribute] = ACTIONS(2512), + [anon_sym_noreturn] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym___declspec] = ACTIONS(2512), + [anon_sym___cdecl] = ACTIONS(2512), + [anon_sym___clrcall] = ACTIONS(2512), + [anon_sym___stdcall] = ACTIONS(2512), + [anon_sym___fastcall] = ACTIONS(2512), + [anon_sym___thiscall] = ACTIONS(2512), + [anon_sym___vectorcall] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_signed] = ACTIONS(2512), + [anon_sym_unsigned] = ACTIONS(2512), + [anon_sym_long] = ACTIONS(2512), + [anon_sym_short] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_ATautoreleasepool] = ACTIONS(2514), + [anon_sym_auto] = ACTIONS(2512), + [anon_sym_register] = ACTIONS(2512), + [anon_sym_inline] = ACTIONS(2512), + [anon_sym___inline] = ACTIONS(2512), + [anon_sym___inline__] = ACTIONS(2512), + [anon_sym___forceinline] = ACTIONS(2512), + [anon_sym_thread_local] = ACTIONS(2512), + [anon_sym___thread] = ACTIONS(2512), + [anon_sym_CG_EXTERN] = ACTIONS(2512), + [anon_sym_CG_INLINE] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2512), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2512), + [anon_sym_IBOutlet] = ACTIONS(2512), + [anon_sym_IBInspectable] = ACTIONS(2512), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2512), + [anon_sym_NS_INLINE] = ACTIONS(2512), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2512), + [anon_sym_OBJC_EXPORT] = ACTIONS(2512), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_constexpr] = ACTIONS(2512), + [anon_sym_volatile] = ACTIONS(2512), + [anon_sym_restrict] = ACTIONS(2512), + [anon_sym___restrict__] = ACTIONS(2512), + [anon_sym__Atomic] = ACTIONS(2512), + [anon_sym__Noreturn] = ACTIONS(2512), + [anon_sym__Nonnull] = ACTIONS(2512), + [anon_sym_nullable] = ACTIONS(2512), + [anon_sym__Complex] = ACTIONS(2512), + [anon_sym__Nullable] = ACTIONS(2512), + [anon_sym__Nullable_result] = ACTIONS(2512), + [anon_sym__Null_unspecified] = ACTIONS(2512), + [anon_sym___autoreleasing] = ACTIONS(2512), + [anon_sym___block] = ACTIONS(2512), + [anon_sym___bridge] = ACTIONS(2512), + [anon_sym___bridge_retained] = ACTIONS(2512), + [anon_sym___bridge_transfer] = ACTIONS(2512), + [anon_sym___complex] = ACTIONS(2512), + [anon_sym___const] = ACTIONS(2512), + [anon_sym___imag] = ACTIONS(2512), + [anon_sym___kindof] = ACTIONS(2512), + [anon_sym___nonnull] = ACTIONS(2512), + [anon_sym___nullable] = ACTIONS(2512), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2512), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2512), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2512), + [anon_sym___real] = ACTIONS(2512), + [anon_sym___strong] = ACTIONS(2512), + [anon_sym___unsafe_unretained] = ACTIONS(2512), + [anon_sym___unused] = ACTIONS(2512), + [anon_sym___weak] = ACTIONS(2512), + [anon_sym_alignas] = ACTIONS(2512), + [anon_sym__Alignas] = ACTIONS(2512), + [sym_primitive_type] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [anon_sym_struct] = ACTIONS(2512), + [anon_sym_union] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_else] = ACTIONS(2512), + [anon_sym_switch] = ACTIONS(2512), + [anon_sym_case] = ACTIONS(2512), + [anon_sym_default] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_do] = ACTIONS(2512), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_in] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_goto] = ACTIONS(2512), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_sizeof] = ACTIONS(2512), + [anon_sym___alignof__] = ACTIONS(2512), + [anon_sym___alignof] = ACTIONS(2512), + [anon_sym__alignof] = ACTIONS(2512), + [anon_sym_alignof] = ACTIONS(2512), + [anon_sym__Alignof] = ACTIONS(2512), + [anon_sym_offsetof] = ACTIONS(2512), + [anon_sym__Generic] = ACTIONS(2512), + [anon_sym_asm] = ACTIONS(2512), + [anon_sym___asm__] = ACTIONS(2512), + [anon_sym___asm] = ACTIONS(2512), + [sym_number_literal] = ACTIONS(2514), + [anon_sym_L_SQUOTE] = ACTIONS(2514), + [anon_sym_u_SQUOTE] = ACTIONS(2514), + [anon_sym_U_SQUOTE] = ACTIONS(2514), + [anon_sym_u8_SQUOTE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_AT] = ACTIONS(2512), + [anon_sym_DQUOTE] = ACTIONS(2514), + [anon_sym_L_DQUOTE] = ACTIONS(2514), + [anon_sym_u_DQUOTE] = ACTIONS(2514), + [anon_sym_U_DQUOTE] = ACTIONS(2514), + [anon_sym_u8_DQUOTE] = ACTIONS(2514), + [sym_true] = ACTIONS(2512), + [sym_false] = ACTIONS(2512), + [anon_sym_NULL] = ACTIONS(2512), + [anon_sym_nullptr] = ACTIONS(2512), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2512), + [anon_sym___typeof] = ACTIONS(2512), + [anon_sym_typeof] = ACTIONS(2512), + [anon_sym_ATimport] = ACTIONS(2514), + [aux_sym_preproc_undef_token1] = ACTIONS(2512), + [anon_sym_POUND] = ACTIONS(2512), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2512), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2512), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2512), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2512), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE] = ACTIONS(2512), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_API_AVAILABLE] = ACTIONS(2512), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_API_DEPRECATED] = ACTIONS(2512), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2512), + [anon_sym___deprecated_msg] = ACTIONS(2512), + [anon_sym___deprecated_enum_msg] = ACTIONS(2512), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2512), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2512), + [anon_sym_ATprotocol] = ACTIONS(2514), + [anon_sym_ATinterface] = ACTIONS(2514), + [anon_sym_ATimplementation] = ACTIONS(2514), + [anon_sym_ATcompatibility_alias] = ACTIONS(2514), + [anon_sym_ATtry] = ACTIONS(2514), + [anon_sym___try] = ACTIONS(2512), + [anon_sym_ATthrow] = ACTIONS(2514), + [anon_sym_ATselector] = ACTIONS(2514), + [anon_sym_ATavailable] = ACTIONS(2514), + [anon_sym___builtin_available] = ACTIONS(2512), + [anon_sym_va_arg] = ACTIONS(2512), + [anon_sym_ATencode] = ACTIONS(2514), + [anon_sym_ATsynchronized] = ACTIONS(2514), + [anon_sym_BOOL] = ACTIONS(2512), + [anon_sym_IMP] = ACTIONS(2512), + [anon_sym_SEL] = ACTIONS(2512), + [anon_sym_Class] = ACTIONS(2512), + [anon_sym_id] = ACTIONS(2512), + }, + [705] = { + [sym_identifier] = ACTIONS(2416), + [aux_sym_preproc_include_token1] = ACTIONS(2416), + [aux_sym_preproc_include_token2] = ACTIONS(2416), + [aux_sym_preproc_def_token1] = ACTIONS(2416), + [aux_sym_preproc_if_token1] = ACTIONS(2416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2416), + [sym_preproc_directive] = ACTIONS(2416), + [anon_sym_LPAREN2] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym___extension__] = ACTIONS(2416), + [anon_sym_typedef] = ACTIONS(2416), + [anon_sym_extern] = ACTIONS(2416), + [anon_sym___attribute__] = ACTIONS(2416), + [anon_sym___attribute] = ACTIONS(2416), + [anon_sym_noreturn] = ACTIONS(2416), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym___declspec] = ACTIONS(2416), + [anon_sym___cdecl] = ACTIONS(2416), + [anon_sym___clrcall] = ACTIONS(2416), + [anon_sym___stdcall] = ACTIONS(2416), + [anon_sym___fastcall] = ACTIONS(2416), + [anon_sym___thiscall] = ACTIONS(2416), + [anon_sym___vectorcall] = ACTIONS(2416), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_signed] = ACTIONS(2416), + [anon_sym_unsigned] = ACTIONS(2416), + [anon_sym_long] = ACTIONS(2416), + [anon_sym_short] = ACTIONS(2416), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_ATautoreleasepool] = ACTIONS(2418), + [anon_sym_auto] = ACTIONS(2416), + [anon_sym_register] = ACTIONS(2416), + [anon_sym_inline] = ACTIONS(2416), + [anon_sym___inline] = ACTIONS(2416), + [anon_sym___inline__] = ACTIONS(2416), + [anon_sym___forceinline] = ACTIONS(2416), + [anon_sym_thread_local] = ACTIONS(2416), + [anon_sym___thread] = ACTIONS(2416), + [anon_sym_CG_EXTERN] = ACTIONS(2416), + [anon_sym_CG_INLINE] = ACTIONS(2416), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2416), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2416), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2416), + [anon_sym_IBOutlet] = ACTIONS(2416), + [anon_sym_IBInspectable] = ACTIONS(2416), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2416), + [anon_sym_NS_INLINE] = ACTIONS(2416), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2416), + [anon_sym_OBJC_EXPORT] = ACTIONS(2416), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2416), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2416), + [anon_sym_const] = ACTIONS(2416), + [anon_sym_constexpr] = ACTIONS(2416), + [anon_sym_volatile] = ACTIONS(2416), + [anon_sym_restrict] = ACTIONS(2416), + [anon_sym___restrict__] = ACTIONS(2416), + [anon_sym__Atomic] = ACTIONS(2416), + [anon_sym__Noreturn] = ACTIONS(2416), + [anon_sym__Nonnull] = ACTIONS(2416), + [anon_sym_nullable] = ACTIONS(2416), + [anon_sym__Complex] = ACTIONS(2416), + [anon_sym__Nullable] = ACTIONS(2416), + [anon_sym__Nullable_result] = ACTIONS(2416), + [anon_sym__Null_unspecified] = ACTIONS(2416), + [anon_sym___autoreleasing] = ACTIONS(2416), + [anon_sym___block] = ACTIONS(2416), + [anon_sym___bridge] = ACTIONS(2416), + [anon_sym___bridge_retained] = ACTIONS(2416), + [anon_sym___bridge_transfer] = ACTIONS(2416), + [anon_sym___complex] = ACTIONS(2416), + [anon_sym___const] = ACTIONS(2416), + [anon_sym___imag] = ACTIONS(2416), + [anon_sym___kindof] = ACTIONS(2416), + [anon_sym___nonnull] = ACTIONS(2416), + [anon_sym___nullable] = ACTIONS(2416), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2416), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2416), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2416), + [anon_sym___real] = ACTIONS(2416), + [anon_sym___strong] = ACTIONS(2416), + [anon_sym___unsafe_unretained] = ACTIONS(2416), + [anon_sym___unused] = ACTIONS(2416), + [anon_sym___weak] = ACTIONS(2416), + [anon_sym_alignas] = ACTIONS(2416), + [anon_sym__Alignas] = ACTIONS(2416), + [sym_primitive_type] = ACTIONS(2416), + [anon_sym_enum] = ACTIONS(2416), + [anon_sym_struct] = ACTIONS(2416), + [anon_sym_union] = ACTIONS(2416), + [anon_sym_if] = ACTIONS(2416), + [anon_sym_else] = ACTIONS(2416), + [anon_sym_switch] = ACTIONS(2416), + [anon_sym_case] = ACTIONS(2416), + [anon_sym_default] = ACTIONS(2416), + [anon_sym_while] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2416), + [anon_sym_for] = ACTIONS(2416), + [anon_sym_in] = ACTIONS(2416), + [anon_sym_return] = ACTIONS(2416), + [anon_sym_break] = ACTIONS(2416), + [anon_sym_continue] = ACTIONS(2416), + [anon_sym_goto] = ACTIONS(2416), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_sizeof] = ACTIONS(2416), + [anon_sym___alignof__] = ACTIONS(2416), + [anon_sym___alignof] = ACTIONS(2416), + [anon_sym__alignof] = ACTIONS(2416), + [anon_sym_alignof] = ACTIONS(2416), + [anon_sym__Alignof] = ACTIONS(2416), + [anon_sym_offsetof] = ACTIONS(2416), + [anon_sym__Generic] = ACTIONS(2416), + [anon_sym_asm] = ACTIONS(2416), + [anon_sym___asm__] = ACTIONS(2416), + [anon_sym___asm] = ACTIONS(2416), + [sym_number_literal] = ACTIONS(2418), + [anon_sym_L_SQUOTE] = ACTIONS(2418), + [anon_sym_u_SQUOTE] = ACTIONS(2418), + [anon_sym_U_SQUOTE] = ACTIONS(2418), + [anon_sym_u8_SQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_L_DQUOTE] = ACTIONS(2418), + [anon_sym_u_DQUOTE] = ACTIONS(2418), + [anon_sym_U_DQUOTE] = ACTIONS(2418), + [anon_sym_u8_DQUOTE] = ACTIONS(2418), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2416), + [anon_sym_nullptr] = ACTIONS(2416), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2416), + [anon_sym___typeof] = ACTIONS(2416), + [anon_sym_typeof] = ACTIONS(2416), + [anon_sym_ATimport] = ACTIONS(2418), + [aux_sym_preproc_undef_token1] = ACTIONS(2416), + [anon_sym_POUND] = ACTIONS(2416), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2416), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2416), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2416), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2416), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2416), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2416), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2416), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2416), + [anon_sym_NS_AVAILABLE] = ACTIONS(2416), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2416), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_API_AVAILABLE] = ACTIONS(2416), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_API_DEPRECATED] = ACTIONS(2416), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2416), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2416), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2416), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2416), + [anon_sym___deprecated_msg] = ACTIONS(2416), + [anon_sym___deprecated_enum_msg] = ACTIONS(2416), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2416), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2416), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2416), + [anon_sym_ATprotocol] = ACTIONS(2418), + [anon_sym_ATinterface] = ACTIONS(2418), + [anon_sym_ATimplementation] = ACTIONS(2418), + [anon_sym_ATcompatibility_alias] = ACTIONS(2418), + [anon_sym_ATtry] = ACTIONS(2418), + [anon_sym___try] = ACTIONS(2416), + [anon_sym_ATthrow] = ACTIONS(2418), + [anon_sym_ATselector] = ACTIONS(2418), + [anon_sym_ATavailable] = ACTIONS(2418), + [anon_sym___builtin_available] = ACTIONS(2416), + [anon_sym_va_arg] = ACTIONS(2416), + [anon_sym_ATencode] = ACTIONS(2418), + [anon_sym_ATsynchronized] = ACTIONS(2418), + [anon_sym_BOOL] = ACTIONS(2416), + [anon_sym_IMP] = ACTIONS(2416), + [anon_sym_SEL] = ACTIONS(2416), + [anon_sym_Class] = ACTIONS(2416), + [anon_sym_id] = ACTIONS(2416), + }, + [706] = { + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_include_token1] = ACTIONS(2420), + [aux_sym_preproc_include_token2] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2420), + [aux_sym_preproc_if_token1] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2420), + [sym_preproc_directive] = ACTIONS(2420), + [anon_sym_LPAREN2] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(2422), + [anon_sym_CARET] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym___extension__] = ACTIONS(2420), + [anon_sym_typedef] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym___attribute__] = ACTIONS(2420), + [anon_sym___attribute] = ACTIONS(2420), + [anon_sym_noreturn] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2422), + [anon_sym___declspec] = ACTIONS(2420), + [anon_sym___cdecl] = ACTIONS(2420), + [anon_sym___clrcall] = ACTIONS(2420), + [anon_sym___stdcall] = ACTIONS(2420), + [anon_sym___fastcall] = ACTIONS(2420), + [anon_sym___thiscall] = ACTIONS(2420), + [anon_sym___vectorcall] = ACTIONS(2420), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_signed] = ACTIONS(2420), + [anon_sym_unsigned] = ACTIONS(2420), + [anon_sym_long] = ACTIONS(2420), + [anon_sym_short] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_ATautoreleasepool] = ACTIONS(2422), + [anon_sym_auto] = ACTIONS(2420), + [anon_sym_register] = ACTIONS(2420), + [anon_sym_inline] = ACTIONS(2420), + [anon_sym___inline] = ACTIONS(2420), + [anon_sym___inline__] = ACTIONS(2420), + [anon_sym___forceinline] = ACTIONS(2420), + [anon_sym_thread_local] = ACTIONS(2420), + [anon_sym___thread] = ACTIONS(2420), + [anon_sym_CG_EXTERN] = ACTIONS(2420), + [anon_sym_CG_INLINE] = ACTIONS(2420), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2420), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2420), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2420), + [anon_sym_IBOutlet] = ACTIONS(2420), + [anon_sym_IBInspectable] = ACTIONS(2420), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2420), + [anon_sym_NS_INLINE] = ACTIONS(2420), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2420), + [anon_sym_OBJC_EXPORT] = ACTIONS(2420), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2420), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [anon_sym_constexpr] = ACTIONS(2420), + [anon_sym_volatile] = ACTIONS(2420), + [anon_sym_restrict] = ACTIONS(2420), + [anon_sym___restrict__] = ACTIONS(2420), + [anon_sym__Atomic] = ACTIONS(2420), + [anon_sym__Noreturn] = ACTIONS(2420), + [anon_sym__Nonnull] = ACTIONS(2420), + [anon_sym_nullable] = ACTIONS(2420), + [anon_sym__Complex] = ACTIONS(2420), + [anon_sym__Nullable] = ACTIONS(2420), + [anon_sym__Nullable_result] = ACTIONS(2420), + [anon_sym__Null_unspecified] = ACTIONS(2420), + [anon_sym___autoreleasing] = ACTIONS(2420), + [anon_sym___block] = ACTIONS(2420), + [anon_sym___bridge] = ACTIONS(2420), + [anon_sym___bridge_retained] = ACTIONS(2420), + [anon_sym___bridge_transfer] = ACTIONS(2420), + [anon_sym___complex] = ACTIONS(2420), + [anon_sym___const] = ACTIONS(2420), + [anon_sym___imag] = ACTIONS(2420), + [anon_sym___kindof] = ACTIONS(2420), + [anon_sym___nonnull] = ACTIONS(2420), + [anon_sym___nullable] = ACTIONS(2420), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2420), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2420), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2420), + [anon_sym___real] = ACTIONS(2420), + [anon_sym___strong] = ACTIONS(2420), + [anon_sym___unsafe_unretained] = ACTIONS(2420), + [anon_sym___unused] = ACTIONS(2420), + [anon_sym___weak] = ACTIONS(2420), + [anon_sym_alignas] = ACTIONS(2420), + [anon_sym__Alignas] = ACTIONS(2420), + [sym_primitive_type] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), + [anon_sym_struct] = ACTIONS(2420), + [anon_sym_union] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_else] = ACTIONS(2420), + [anon_sym_switch] = ACTIONS(2420), + [anon_sym_case] = ACTIONS(2420), + [anon_sym_default] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_do] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_in] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_goto] = ACTIONS(2420), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_sizeof] = ACTIONS(2420), + [anon_sym___alignof__] = ACTIONS(2420), + [anon_sym___alignof] = ACTIONS(2420), + [anon_sym__alignof] = ACTIONS(2420), + [anon_sym_alignof] = ACTIONS(2420), + [anon_sym__Alignof] = ACTIONS(2420), + [anon_sym_offsetof] = ACTIONS(2420), + [anon_sym__Generic] = ACTIONS(2420), + [anon_sym_asm] = ACTIONS(2420), + [anon_sym___asm__] = ACTIONS(2420), + [anon_sym___asm] = ACTIONS(2420), + [sym_number_literal] = ACTIONS(2422), + [anon_sym_L_SQUOTE] = ACTIONS(2422), + [anon_sym_u_SQUOTE] = ACTIONS(2422), + [anon_sym_U_SQUOTE] = ACTIONS(2422), + [anon_sym_u8_SQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [anon_sym_AT] = ACTIONS(2420), + [anon_sym_DQUOTE] = ACTIONS(2422), + [anon_sym_L_DQUOTE] = ACTIONS(2422), + [anon_sym_u_DQUOTE] = ACTIONS(2422), + [anon_sym_U_DQUOTE] = ACTIONS(2422), + [anon_sym_u8_DQUOTE] = ACTIONS(2422), + [sym_true] = ACTIONS(2420), + [sym_false] = ACTIONS(2420), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2420), + [anon_sym___typeof] = ACTIONS(2420), + [anon_sym_typeof] = ACTIONS(2420), + [anon_sym_ATimport] = ACTIONS(2422), + [aux_sym_preproc_undef_token1] = ACTIONS(2420), + [anon_sym_POUND] = ACTIONS(2420), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2420), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2420), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2420), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2420), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2420), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2420), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2420), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2420), + [anon_sym_NS_AVAILABLE] = ACTIONS(2420), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2420), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_API_AVAILABLE] = ACTIONS(2420), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_API_DEPRECATED] = ACTIONS(2420), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2420), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2420), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2420), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2420), + [anon_sym___deprecated_msg] = ACTIONS(2420), + [anon_sym___deprecated_enum_msg] = ACTIONS(2420), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2420), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2420), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2420), + [anon_sym_ATprotocol] = ACTIONS(2422), + [anon_sym_ATinterface] = ACTIONS(2422), + [anon_sym_ATimplementation] = ACTIONS(2422), + [anon_sym_ATcompatibility_alias] = ACTIONS(2422), + [anon_sym_ATtry] = ACTIONS(2422), + [anon_sym___try] = ACTIONS(2420), + [anon_sym_ATthrow] = ACTIONS(2422), + [anon_sym_ATselector] = ACTIONS(2422), + [anon_sym_ATavailable] = ACTIONS(2422), + [anon_sym___builtin_available] = ACTIONS(2420), + [anon_sym_va_arg] = ACTIONS(2420), + [anon_sym_ATencode] = ACTIONS(2422), + [anon_sym_ATsynchronized] = ACTIONS(2422), + [anon_sym_BOOL] = ACTIONS(2420), + [anon_sym_IMP] = ACTIONS(2420), + [anon_sym_SEL] = ACTIONS(2420), + [anon_sym_Class] = ACTIONS(2420), + [anon_sym_id] = ACTIONS(2420), + }, + [707] = { + [sym_identifier] = ACTIONS(2474), + [aux_sym_preproc_include_token1] = ACTIONS(2474), + [aux_sym_preproc_include_token2] = ACTIONS(2474), + [aux_sym_preproc_def_token1] = ACTIONS(2474), + [aux_sym_preproc_if_token1] = ACTIONS(2474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2474), + [sym_preproc_directive] = ACTIONS(2474), + [anon_sym_LPAREN2] = ACTIONS(2476), + [anon_sym_BANG] = ACTIONS(2476), + [anon_sym_TILDE] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2474), + [anon_sym_PLUS] = ACTIONS(2474), + [anon_sym_STAR] = ACTIONS(2476), + [anon_sym_CARET] = ACTIONS(2476), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2476), + [anon_sym___extension__] = ACTIONS(2474), + [anon_sym_typedef] = ACTIONS(2474), + [anon_sym_extern] = ACTIONS(2474), + [anon_sym___attribute__] = ACTIONS(2474), + [anon_sym___attribute] = ACTIONS(2474), + [anon_sym_noreturn] = ACTIONS(2474), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym___declspec] = ACTIONS(2474), + [anon_sym___cdecl] = ACTIONS(2474), + [anon_sym___clrcall] = ACTIONS(2474), + [anon_sym___stdcall] = ACTIONS(2474), + [anon_sym___fastcall] = ACTIONS(2474), + [anon_sym___thiscall] = ACTIONS(2474), + [anon_sym___vectorcall] = ACTIONS(2474), + [anon_sym_LBRACE] = ACTIONS(2476), + [anon_sym_RBRACE] = ACTIONS(2476), + [anon_sym_signed] = ACTIONS(2474), + [anon_sym_unsigned] = ACTIONS(2474), + [anon_sym_long] = ACTIONS(2474), + [anon_sym_short] = ACTIONS(2474), + [anon_sym_static] = ACTIONS(2474), + [anon_sym_ATautoreleasepool] = ACTIONS(2476), + [anon_sym_auto] = ACTIONS(2474), + [anon_sym_register] = ACTIONS(2474), + [anon_sym_inline] = ACTIONS(2474), + [anon_sym___inline] = ACTIONS(2474), + [anon_sym___inline__] = ACTIONS(2474), + [anon_sym___forceinline] = ACTIONS(2474), + [anon_sym_thread_local] = ACTIONS(2474), + [anon_sym___thread] = ACTIONS(2474), + [anon_sym_CG_EXTERN] = ACTIONS(2474), + [anon_sym_CG_INLINE] = ACTIONS(2474), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2474), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2474), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2474), + [anon_sym_IBOutlet] = ACTIONS(2474), + [anon_sym_IBInspectable] = ACTIONS(2474), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2474), + [anon_sym_NS_INLINE] = ACTIONS(2474), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2474), + [anon_sym_OBJC_EXPORT] = ACTIONS(2474), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2474), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2474), + [anon_sym_const] = ACTIONS(2474), + [anon_sym_constexpr] = ACTIONS(2474), + [anon_sym_volatile] = ACTIONS(2474), + [anon_sym_restrict] = ACTIONS(2474), + [anon_sym___restrict__] = ACTIONS(2474), + [anon_sym__Atomic] = ACTIONS(2474), + [anon_sym__Noreturn] = ACTIONS(2474), + [anon_sym__Nonnull] = ACTIONS(2474), + [anon_sym_nullable] = ACTIONS(2474), + [anon_sym__Complex] = ACTIONS(2474), + [anon_sym__Nullable] = ACTIONS(2474), + [anon_sym__Nullable_result] = ACTIONS(2474), + [anon_sym__Null_unspecified] = ACTIONS(2474), + [anon_sym___autoreleasing] = ACTIONS(2474), + [anon_sym___block] = ACTIONS(2474), + [anon_sym___bridge] = ACTIONS(2474), + [anon_sym___bridge_retained] = ACTIONS(2474), + [anon_sym___bridge_transfer] = ACTIONS(2474), + [anon_sym___complex] = ACTIONS(2474), + [anon_sym___const] = ACTIONS(2474), + [anon_sym___imag] = ACTIONS(2474), + [anon_sym___kindof] = ACTIONS(2474), + [anon_sym___nonnull] = ACTIONS(2474), + [anon_sym___nullable] = ACTIONS(2474), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2474), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2474), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2474), + [anon_sym___real] = ACTIONS(2474), + [anon_sym___strong] = ACTIONS(2474), + [anon_sym___unsafe_unretained] = ACTIONS(2474), + [anon_sym___unused] = ACTIONS(2474), + [anon_sym___weak] = ACTIONS(2474), + [anon_sym_alignas] = ACTIONS(2474), + [anon_sym__Alignas] = ACTIONS(2474), + [sym_primitive_type] = ACTIONS(2474), + [anon_sym_enum] = ACTIONS(2474), + [anon_sym_struct] = ACTIONS(2474), + [anon_sym_union] = ACTIONS(2474), + [anon_sym_if] = ACTIONS(2474), + [anon_sym_else] = ACTIONS(2474), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_case] = ACTIONS(2474), + [anon_sym_default] = ACTIONS(2474), + [anon_sym_while] = ACTIONS(2474), + [anon_sym_do] = ACTIONS(2474), + [anon_sym_for] = ACTIONS(2474), + [anon_sym_in] = ACTIONS(2474), + [anon_sym_return] = ACTIONS(2474), + [anon_sym_break] = ACTIONS(2474), + [anon_sym_continue] = ACTIONS(2474), + [anon_sym_goto] = ACTIONS(2474), + [anon_sym_DASH_DASH] = ACTIONS(2476), + [anon_sym_PLUS_PLUS] = ACTIONS(2476), + [anon_sym_sizeof] = ACTIONS(2474), + [anon_sym___alignof__] = ACTIONS(2474), + [anon_sym___alignof] = ACTIONS(2474), + [anon_sym__alignof] = ACTIONS(2474), + [anon_sym_alignof] = ACTIONS(2474), + [anon_sym__Alignof] = ACTIONS(2474), + [anon_sym_offsetof] = ACTIONS(2474), + [anon_sym__Generic] = ACTIONS(2474), + [anon_sym_asm] = ACTIONS(2474), + [anon_sym___asm__] = ACTIONS(2474), + [anon_sym___asm] = ACTIONS(2474), + [sym_number_literal] = ACTIONS(2476), + [anon_sym_L_SQUOTE] = ACTIONS(2476), + [anon_sym_u_SQUOTE] = ACTIONS(2476), + [anon_sym_U_SQUOTE] = ACTIONS(2476), + [anon_sym_u8_SQUOTE] = ACTIONS(2476), + [anon_sym_SQUOTE] = ACTIONS(2476), + [anon_sym_AT] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_L_DQUOTE] = ACTIONS(2476), + [anon_sym_u_DQUOTE] = ACTIONS(2476), + [anon_sym_U_DQUOTE] = ACTIONS(2476), + [anon_sym_u8_DQUOTE] = ACTIONS(2476), + [sym_true] = ACTIONS(2474), + [sym_false] = ACTIONS(2474), + [anon_sym_NULL] = ACTIONS(2474), + [anon_sym_nullptr] = ACTIONS(2474), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2474), + [anon_sym___typeof] = ACTIONS(2474), + [anon_sym_typeof] = ACTIONS(2474), + [anon_sym_ATimport] = ACTIONS(2476), + [aux_sym_preproc_undef_token1] = ACTIONS(2474), + [anon_sym_POUND] = ACTIONS(2474), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2474), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2474), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2474), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2474), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2474), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2474), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2474), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2474), + [anon_sym_NS_AVAILABLE] = ACTIONS(2474), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2474), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_API_AVAILABLE] = ACTIONS(2474), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_API_DEPRECATED] = ACTIONS(2474), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2474), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2474), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2474), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2474), + [anon_sym___deprecated_msg] = ACTIONS(2474), + [anon_sym___deprecated_enum_msg] = ACTIONS(2474), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2474), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2474), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2474), + [anon_sym_ATprotocol] = ACTIONS(2476), + [anon_sym_ATinterface] = ACTIONS(2476), + [anon_sym_ATimplementation] = ACTIONS(2476), + [anon_sym_ATcompatibility_alias] = ACTIONS(2476), + [anon_sym_ATtry] = ACTIONS(2476), + [anon_sym___try] = ACTIONS(2474), + [anon_sym_ATthrow] = ACTIONS(2476), + [anon_sym_ATselector] = ACTIONS(2476), + [anon_sym_ATavailable] = ACTIONS(2476), + [anon_sym___builtin_available] = ACTIONS(2474), + [anon_sym_va_arg] = ACTIONS(2474), + [anon_sym_ATencode] = ACTIONS(2476), + [anon_sym_ATsynchronized] = ACTIONS(2476), + [anon_sym_BOOL] = ACTIONS(2474), + [anon_sym_IMP] = ACTIONS(2474), + [anon_sym_SEL] = ACTIONS(2474), + [anon_sym_Class] = ACTIONS(2474), + [anon_sym_id] = ACTIONS(2474), + }, + [708] = { + [ts_builtin_sym_end] = ACTIONS(2414), + [sym_identifier] = ACTIONS(2412), + [aux_sym_preproc_include_token1] = ACTIONS(2412), + [aux_sym_preproc_include_token2] = ACTIONS(2412), + [aux_sym_preproc_def_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2412), + [sym_preproc_directive] = ACTIONS(2412), + [anon_sym_LPAREN2] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2414), + [anon_sym_TILDE] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_STAR] = ACTIONS(2414), + [anon_sym_CARET] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym___extension__] = ACTIONS(2412), + [anon_sym_typedef] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym___attribute__] = ACTIONS(2412), + [anon_sym___attribute] = ACTIONS(2412), + [anon_sym_noreturn] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym___declspec] = ACTIONS(2412), + [anon_sym___cdecl] = ACTIONS(2412), + [anon_sym___clrcall] = ACTIONS(2412), + [anon_sym___stdcall] = ACTIONS(2412), + [anon_sym___fastcall] = ACTIONS(2412), + [anon_sym___thiscall] = ACTIONS(2412), + [anon_sym___vectorcall] = ACTIONS(2412), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_signed] = ACTIONS(2412), + [anon_sym_unsigned] = ACTIONS(2412), + [anon_sym_long] = ACTIONS(2412), + [anon_sym_short] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_ATautoreleasepool] = ACTIONS(2414), + [anon_sym_auto] = ACTIONS(2412), + [anon_sym_register] = ACTIONS(2412), + [anon_sym_inline] = ACTIONS(2412), + [anon_sym___inline] = ACTIONS(2412), + [anon_sym___inline__] = ACTIONS(2412), + [anon_sym___forceinline] = ACTIONS(2412), + [anon_sym_thread_local] = ACTIONS(2412), + [anon_sym___thread] = ACTIONS(2412), + [anon_sym_CG_EXTERN] = ACTIONS(2412), + [anon_sym_CG_INLINE] = ACTIONS(2412), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2412), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2412), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2412), + [anon_sym_IBOutlet] = ACTIONS(2412), + [anon_sym_IBInspectable] = ACTIONS(2412), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2412), + [anon_sym_NS_INLINE] = ACTIONS(2412), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2412), + [anon_sym_OBJC_EXPORT] = ACTIONS(2412), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2412), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_constexpr] = ACTIONS(2412), + [anon_sym_volatile] = ACTIONS(2412), + [anon_sym_restrict] = ACTIONS(2412), + [anon_sym___restrict__] = ACTIONS(2412), + [anon_sym__Atomic] = ACTIONS(2412), + [anon_sym__Noreturn] = ACTIONS(2412), + [anon_sym__Nonnull] = ACTIONS(2412), + [anon_sym_nullable] = ACTIONS(2412), + [anon_sym__Complex] = ACTIONS(2412), + [anon_sym__Nullable] = ACTIONS(2412), + [anon_sym__Nullable_result] = ACTIONS(2412), + [anon_sym__Null_unspecified] = ACTIONS(2412), + [anon_sym___autoreleasing] = ACTIONS(2412), + [anon_sym___block] = ACTIONS(2412), + [anon_sym___bridge] = ACTIONS(2412), + [anon_sym___bridge_retained] = ACTIONS(2412), + [anon_sym___bridge_transfer] = ACTIONS(2412), + [anon_sym___complex] = ACTIONS(2412), + [anon_sym___const] = ACTIONS(2412), + [anon_sym___imag] = ACTIONS(2412), + [anon_sym___kindof] = ACTIONS(2412), + [anon_sym___nonnull] = ACTIONS(2412), + [anon_sym___nullable] = ACTIONS(2412), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2412), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2412), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2412), + [anon_sym___real] = ACTIONS(2412), + [anon_sym___strong] = ACTIONS(2412), + [anon_sym___unsafe_unretained] = ACTIONS(2412), + [anon_sym___unused] = ACTIONS(2412), + [anon_sym___weak] = ACTIONS(2412), + [anon_sym_alignas] = ACTIONS(2412), + [anon_sym__Alignas] = ACTIONS(2412), + [sym_primitive_type] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [anon_sym_struct] = ACTIONS(2412), + [anon_sym_union] = ACTIONS(2412), + [anon_sym_if] = ACTIONS(2412), + [anon_sym_else] = ACTIONS(2412), + [anon_sym_switch] = ACTIONS(2412), + [anon_sym_case] = ACTIONS(2412), + [anon_sym_default] = ACTIONS(2412), + [anon_sym_while] = ACTIONS(2412), + [anon_sym_do] = ACTIONS(2412), + [anon_sym_for] = ACTIONS(2412), + [anon_sym_in] = ACTIONS(2412), + [anon_sym_return] = ACTIONS(2412), + [anon_sym_break] = ACTIONS(2412), + [anon_sym_continue] = ACTIONS(2412), + [anon_sym_goto] = ACTIONS(2412), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_sizeof] = ACTIONS(2412), + [anon_sym___alignof__] = ACTIONS(2412), + [anon_sym___alignof] = ACTIONS(2412), + [anon_sym__alignof] = ACTIONS(2412), + [anon_sym_alignof] = ACTIONS(2412), + [anon_sym__Alignof] = ACTIONS(2412), + [anon_sym_offsetof] = ACTIONS(2412), + [anon_sym__Generic] = ACTIONS(2412), + [anon_sym_asm] = ACTIONS(2412), + [anon_sym___asm__] = ACTIONS(2412), + [anon_sym___asm] = ACTIONS(2412), + [sym_number_literal] = ACTIONS(2414), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_AT] = ACTIONS(2412), + [anon_sym_DQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2412), + [sym_false] = ACTIONS(2412), + [anon_sym_NULL] = ACTIONS(2412), + [anon_sym_nullptr] = ACTIONS(2412), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2412), + [anon_sym___typeof] = ACTIONS(2412), + [anon_sym_typeof] = ACTIONS(2412), + [anon_sym_ATimport] = ACTIONS(2414), + [aux_sym_preproc_undef_token1] = ACTIONS(2412), + [anon_sym_POUND] = ACTIONS(2412), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2412), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2412), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2412), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2412), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2412), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2412), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2412), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2412), + [anon_sym_NS_AVAILABLE] = ACTIONS(2412), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2412), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_API_AVAILABLE] = ACTIONS(2412), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_API_DEPRECATED] = ACTIONS(2412), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2412), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2412), + [anon_sym___deprecated_msg] = ACTIONS(2412), + [anon_sym___deprecated_enum_msg] = ACTIONS(2412), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2412), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2412), + [anon_sym_ATprotocol] = ACTIONS(2414), + [anon_sym_ATinterface] = ACTIONS(2414), + [anon_sym_ATimplementation] = ACTIONS(2414), + [anon_sym_ATcompatibility_alias] = ACTIONS(2414), + [anon_sym_ATtry] = ACTIONS(2414), + [anon_sym___try] = ACTIONS(2412), + [anon_sym_ATthrow] = ACTIONS(2414), + [anon_sym_ATselector] = ACTIONS(2414), + [anon_sym_ATavailable] = ACTIONS(2414), + [anon_sym___builtin_available] = ACTIONS(2412), + [anon_sym_va_arg] = ACTIONS(2412), + [anon_sym_ATencode] = ACTIONS(2414), + [anon_sym_ATsynchronized] = ACTIONS(2414), + [anon_sym_BOOL] = ACTIONS(2412), + [anon_sym_IMP] = ACTIONS(2412), + [anon_sym_SEL] = ACTIONS(2412), + [anon_sym_Class] = ACTIONS(2412), + [anon_sym_id] = ACTIONS(2412), + }, + [709] = { + [sym_expression] = STATE(1637), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_initializer_list] = STATE(1655), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_COMMA] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(2908), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(2222), + [anon_sym_PIPE_PIPE] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2222), + [anon_sym_PIPE] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2222), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_EQ_EQ] = ACTIONS(2222), + [anon_sym_BANG_EQ] = ACTIONS(2222), + [anon_sym_GT] = ACTIONS(2220), + [anon_sym_GT_EQ] = ACTIONS(2222), + [anon_sym_LT_EQ] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2220), + [anon_sym_LT_LT] = ACTIONS(2222), + [anon_sym_GT_GT] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym___extension__] = ACTIONS(2220), + [anon_sym_extern] = ACTIONS(2220), + [anon_sym___attribute__] = ACTIONS(2220), + [anon_sym___attribute] = ACTIONS(2220), + [anon_sym_noreturn] = ACTIONS(2220), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym___declspec] = ACTIONS(2220), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_static] = ACTIONS(2220), + [anon_sym_auto] = ACTIONS(2220), + [anon_sym_register] = ACTIONS(2220), + [anon_sym_inline] = ACTIONS(2220), + [anon_sym___inline] = ACTIONS(2220), + [anon_sym___inline__] = ACTIONS(2220), + [anon_sym___forceinline] = ACTIONS(2220), + [anon_sym_thread_local] = ACTIONS(2220), + [anon_sym___thread] = ACTIONS(2220), + [anon_sym_CG_EXTERN] = ACTIONS(2220), + [anon_sym_CG_INLINE] = ACTIONS(2220), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2220), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2220), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2220), + [anon_sym_IBOutlet] = ACTIONS(2220), + [anon_sym_IBInspectable] = ACTIONS(2220), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2220), + [anon_sym_NS_INLINE] = ACTIONS(2220), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2220), + [anon_sym_OBJC_EXPORT] = ACTIONS(2220), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2220), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2220), + [anon_sym_const] = ACTIONS(2220), + [anon_sym_constexpr] = ACTIONS(2220), + [anon_sym_volatile] = ACTIONS(2220), + [anon_sym_restrict] = ACTIONS(2220), + [anon_sym___restrict__] = ACTIONS(2220), + [anon_sym__Atomic] = ACTIONS(2220), + [anon_sym__Noreturn] = ACTIONS(2220), + [anon_sym__Nonnull] = ACTIONS(2220), + [anon_sym_nullable] = ACTIONS(2220), + [anon_sym__Complex] = ACTIONS(2220), + [anon_sym__Nullable] = ACTIONS(2220), + [anon_sym__Nullable_result] = ACTIONS(2220), + [anon_sym__Null_unspecified] = ACTIONS(2220), + [anon_sym___autoreleasing] = ACTIONS(2220), + [anon_sym___block] = ACTIONS(2220), + [anon_sym___bridge] = ACTIONS(2220), + [anon_sym___bridge_retained] = ACTIONS(2220), + [anon_sym___bridge_transfer] = ACTIONS(2220), + [anon_sym___complex] = ACTIONS(2220), + [anon_sym___const] = ACTIONS(2220), + [anon_sym___imag] = ACTIONS(2220), + [anon_sym___kindof] = ACTIONS(2220), + [anon_sym___nonnull] = ACTIONS(2220), + [anon_sym___nullable] = ACTIONS(2220), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2220), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2220), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2220), + [anon_sym___real] = ACTIONS(2220), + [anon_sym___strong] = ACTIONS(2220), + [anon_sym___unsafe_unretained] = ACTIONS(2220), + [anon_sym___unused] = ACTIONS(2220), + [anon_sym___weak] = ACTIONS(2220), + [anon_sym_alignas] = ACTIONS(2220), + [anon_sym__Alignas] = ACTIONS(2220), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [anon_sym_DOT] = ACTIONS(2220), + [anon_sym_DASH_GT] = ACTIONS(2222), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2220), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2220), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2220), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2220), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2220), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2220), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2220), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2220), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2220), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2220), + [anon_sym_NS_AVAILABLE] = ACTIONS(2220), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2220), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2220), + [anon_sym_API_AVAILABLE] = ACTIONS(2220), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2220), + [anon_sym_API_DEPRECATED] = ACTIONS(2220), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2220), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2220), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2220), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2220), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2220), + [anon_sym___deprecated_msg] = ACTIONS(2220), + [anon_sym___deprecated_enum_msg] = ACTIONS(2220), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2220), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2220), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2220), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2220), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2220), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2220), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [710] = { + [sym_identifier] = ACTIONS(2478), + [aux_sym_preproc_include_token1] = ACTIONS(2478), + [aux_sym_preproc_include_token2] = ACTIONS(2478), + [aux_sym_preproc_def_token1] = ACTIONS(2478), + [aux_sym_preproc_if_token1] = ACTIONS(2478), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2478), + [sym_preproc_directive] = ACTIONS(2478), + [anon_sym_LPAREN2] = ACTIONS(2480), + [anon_sym_BANG] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2478), + [anon_sym_PLUS] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2480), + [anon_sym_CARET] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2480), + [anon_sym_SEMI] = ACTIONS(2480), + [anon_sym___extension__] = ACTIONS(2478), + [anon_sym_typedef] = ACTIONS(2478), + [anon_sym_extern] = ACTIONS(2478), + [anon_sym___attribute__] = ACTIONS(2478), + [anon_sym___attribute] = ACTIONS(2478), + [anon_sym_noreturn] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2480), + [anon_sym___declspec] = ACTIONS(2478), + [anon_sym___cdecl] = ACTIONS(2478), + [anon_sym___clrcall] = ACTIONS(2478), + [anon_sym___stdcall] = ACTIONS(2478), + [anon_sym___fastcall] = ACTIONS(2478), + [anon_sym___thiscall] = ACTIONS(2478), + [anon_sym___vectorcall] = ACTIONS(2478), + [anon_sym_LBRACE] = ACTIONS(2480), + [anon_sym_RBRACE] = ACTIONS(2480), + [anon_sym_signed] = ACTIONS(2478), + [anon_sym_unsigned] = ACTIONS(2478), + [anon_sym_long] = ACTIONS(2478), + [anon_sym_short] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_ATautoreleasepool] = ACTIONS(2480), + [anon_sym_auto] = ACTIONS(2478), + [anon_sym_register] = ACTIONS(2478), + [anon_sym_inline] = ACTIONS(2478), + [anon_sym___inline] = ACTIONS(2478), + [anon_sym___inline__] = ACTIONS(2478), + [anon_sym___forceinline] = ACTIONS(2478), + [anon_sym_thread_local] = ACTIONS(2478), + [anon_sym___thread] = ACTIONS(2478), + [anon_sym_CG_EXTERN] = ACTIONS(2478), + [anon_sym_CG_INLINE] = ACTIONS(2478), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2478), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2478), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2478), + [anon_sym_IBOutlet] = ACTIONS(2478), + [anon_sym_IBInspectable] = ACTIONS(2478), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2478), + [anon_sym_NS_INLINE] = ACTIONS(2478), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2478), + [anon_sym_OBJC_EXPORT] = ACTIONS(2478), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2478), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [anon_sym_constexpr] = ACTIONS(2478), + [anon_sym_volatile] = ACTIONS(2478), + [anon_sym_restrict] = ACTIONS(2478), + [anon_sym___restrict__] = ACTIONS(2478), + [anon_sym__Atomic] = ACTIONS(2478), + [anon_sym__Noreturn] = ACTIONS(2478), + [anon_sym__Nonnull] = ACTIONS(2478), + [anon_sym_nullable] = ACTIONS(2478), + [anon_sym__Complex] = ACTIONS(2478), + [anon_sym__Nullable] = ACTIONS(2478), + [anon_sym__Nullable_result] = ACTIONS(2478), + [anon_sym__Null_unspecified] = ACTIONS(2478), + [anon_sym___autoreleasing] = ACTIONS(2478), + [anon_sym___block] = ACTIONS(2478), + [anon_sym___bridge] = ACTIONS(2478), + [anon_sym___bridge_retained] = ACTIONS(2478), + [anon_sym___bridge_transfer] = ACTIONS(2478), + [anon_sym___complex] = ACTIONS(2478), + [anon_sym___const] = ACTIONS(2478), + [anon_sym___imag] = ACTIONS(2478), + [anon_sym___kindof] = ACTIONS(2478), + [anon_sym___nonnull] = ACTIONS(2478), + [anon_sym___nullable] = ACTIONS(2478), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2478), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2478), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2478), + [anon_sym___real] = ACTIONS(2478), + [anon_sym___strong] = ACTIONS(2478), + [anon_sym___unsafe_unretained] = ACTIONS(2478), + [anon_sym___unused] = ACTIONS(2478), + [anon_sym___weak] = ACTIONS(2478), + [anon_sym_alignas] = ACTIONS(2478), + [anon_sym__Alignas] = ACTIONS(2478), + [sym_primitive_type] = ACTIONS(2478), + [anon_sym_enum] = ACTIONS(2478), + [anon_sym_struct] = ACTIONS(2478), + [anon_sym_union] = ACTIONS(2478), + [anon_sym_if] = ACTIONS(2478), + [anon_sym_else] = ACTIONS(2478), + [anon_sym_switch] = ACTIONS(2478), + [anon_sym_case] = ACTIONS(2478), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2478), + [anon_sym_do] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_in] = ACTIONS(2478), + [anon_sym_return] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_goto] = ACTIONS(2478), + [anon_sym_DASH_DASH] = ACTIONS(2480), + [anon_sym_PLUS_PLUS] = ACTIONS(2480), + [anon_sym_sizeof] = ACTIONS(2478), + [anon_sym___alignof__] = ACTIONS(2478), + [anon_sym___alignof] = ACTIONS(2478), + [anon_sym__alignof] = ACTIONS(2478), + [anon_sym_alignof] = ACTIONS(2478), + [anon_sym__Alignof] = ACTIONS(2478), + [anon_sym_offsetof] = ACTIONS(2478), + [anon_sym__Generic] = ACTIONS(2478), + [anon_sym_asm] = ACTIONS(2478), + [anon_sym___asm__] = ACTIONS(2478), + [anon_sym___asm] = ACTIONS(2478), + [sym_number_literal] = ACTIONS(2480), + [anon_sym_L_SQUOTE] = ACTIONS(2480), + [anon_sym_u_SQUOTE] = ACTIONS(2480), + [anon_sym_U_SQUOTE] = ACTIONS(2480), + [anon_sym_u8_SQUOTE] = ACTIONS(2480), + [anon_sym_SQUOTE] = ACTIONS(2480), + [anon_sym_AT] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2480), + [anon_sym_L_DQUOTE] = ACTIONS(2480), + [anon_sym_u_DQUOTE] = ACTIONS(2480), + [anon_sym_U_DQUOTE] = ACTIONS(2480), + [anon_sym_u8_DQUOTE] = ACTIONS(2480), + [sym_true] = ACTIONS(2478), + [sym_false] = ACTIONS(2478), + [anon_sym_NULL] = ACTIONS(2478), + [anon_sym_nullptr] = ACTIONS(2478), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2478), + [anon_sym___typeof] = ACTIONS(2478), + [anon_sym_typeof] = ACTIONS(2478), + [anon_sym_ATimport] = ACTIONS(2480), + [aux_sym_preproc_undef_token1] = ACTIONS(2478), + [anon_sym_POUND] = ACTIONS(2478), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2478), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2478), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2478), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2478), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2478), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2478), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2478), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2478), + [anon_sym_NS_AVAILABLE] = ACTIONS(2478), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2478), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_API_AVAILABLE] = ACTIONS(2478), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_API_DEPRECATED] = ACTIONS(2478), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2478), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2478), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2478), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2478), + [anon_sym___deprecated_msg] = ACTIONS(2478), + [anon_sym___deprecated_enum_msg] = ACTIONS(2478), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2478), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2478), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2478), + [anon_sym_ATprotocol] = ACTIONS(2480), + [anon_sym_ATinterface] = ACTIONS(2480), + [anon_sym_ATimplementation] = ACTIONS(2480), + [anon_sym_ATcompatibility_alias] = ACTIONS(2480), + [anon_sym_ATtry] = ACTIONS(2480), + [anon_sym___try] = ACTIONS(2478), + [anon_sym_ATthrow] = ACTIONS(2480), + [anon_sym_ATselector] = ACTIONS(2480), + [anon_sym_ATavailable] = ACTIONS(2480), + [anon_sym___builtin_available] = ACTIONS(2478), + [anon_sym_va_arg] = ACTIONS(2478), + [anon_sym_ATencode] = ACTIONS(2480), + [anon_sym_ATsynchronized] = ACTIONS(2480), + [anon_sym_BOOL] = ACTIONS(2478), + [anon_sym_IMP] = ACTIONS(2478), + [anon_sym_SEL] = ACTIONS(2478), + [anon_sym_Class] = ACTIONS(2478), + [anon_sym_id] = ACTIONS(2478), + }, + [711] = { + [ts_builtin_sym_end] = ACTIONS(2426), + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_include_token1] = ACTIONS(2424), + [aux_sym_preproc_include_token2] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_CARET] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_ATautoreleasepool] = ACTIONS(2426), + [anon_sym_auto] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_CG_EXTERN] = ACTIONS(2424), + [anon_sym_CG_INLINE] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2424), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2424), + [anon_sym_IBOutlet] = ACTIONS(2424), + [anon_sym_IBInspectable] = ACTIONS(2424), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2424), + [anon_sym_NS_INLINE] = ACTIONS(2424), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2424), + [anon_sym_OBJC_EXPORT] = ACTIONS(2424), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_nullable] = ACTIONS(2424), + [anon_sym__Complex] = ACTIONS(2424), + [anon_sym__Nullable] = ACTIONS(2424), + [anon_sym__Nullable_result] = ACTIONS(2424), + [anon_sym__Null_unspecified] = ACTIONS(2424), + [anon_sym___autoreleasing] = ACTIONS(2424), + [anon_sym___block] = ACTIONS(2424), + [anon_sym___bridge] = ACTIONS(2424), + [anon_sym___bridge_retained] = ACTIONS(2424), + [anon_sym___bridge_transfer] = ACTIONS(2424), + [anon_sym___complex] = ACTIONS(2424), + [anon_sym___const] = ACTIONS(2424), + [anon_sym___imag] = ACTIONS(2424), + [anon_sym___kindof] = ACTIONS(2424), + [anon_sym___nonnull] = ACTIONS(2424), + [anon_sym___nullable] = ACTIONS(2424), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2424), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2424), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2424), + [anon_sym___real] = ACTIONS(2424), + [anon_sym___strong] = ACTIONS(2424), + [anon_sym___unsafe_unretained] = ACTIONS(2424), + [anon_sym___unused] = ACTIONS(2424), + [anon_sym___weak] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_else] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_in] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_goto] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_sizeof] = ACTIONS(2424), + [anon_sym___alignof__] = ACTIONS(2424), + [anon_sym___alignof] = ACTIONS(2424), + [anon_sym__alignof] = ACTIONS(2424), + [anon_sym_alignof] = ACTIONS(2424), + [anon_sym__Alignof] = ACTIONS(2424), + [anon_sym_offsetof] = ACTIONS(2424), + [anon_sym__Generic] = ACTIONS(2424), + [anon_sym_asm] = ACTIONS(2424), + [anon_sym___asm__] = ACTIONS(2424), + [anon_sym___asm] = ACTIONS(2424), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_L_SQUOTE] = ACTIONS(2426), + [anon_sym_u_SQUOTE] = ACTIONS(2426), + [anon_sym_U_SQUOTE] = ACTIONS(2426), + [anon_sym_u8_SQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_AT] = ACTIONS(2424), + [anon_sym_DQUOTE] = ACTIONS(2426), + [anon_sym_L_DQUOTE] = ACTIONS(2426), + [anon_sym_u_DQUOTE] = ACTIONS(2426), + [anon_sym_U_DQUOTE] = ACTIONS(2426), + [anon_sym_u8_DQUOTE] = ACTIONS(2426), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [anon_sym_NULL] = ACTIONS(2424), + [anon_sym_nullptr] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2424), + [anon_sym___typeof] = ACTIONS(2424), + [anon_sym_typeof] = ACTIONS(2424), + [anon_sym_ATimport] = ACTIONS(2426), + [aux_sym_preproc_undef_token1] = ACTIONS(2424), + [anon_sym_POUND] = ACTIONS(2424), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2424), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2424), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2424), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2424), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE] = ACTIONS(2424), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_API_AVAILABLE] = ACTIONS(2424), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_API_DEPRECATED] = ACTIONS(2424), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2424), + [anon_sym___deprecated_msg] = ACTIONS(2424), + [anon_sym___deprecated_enum_msg] = ACTIONS(2424), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2424), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2424), + [anon_sym_ATprotocol] = ACTIONS(2426), + [anon_sym_ATinterface] = ACTIONS(2426), + [anon_sym_ATimplementation] = ACTIONS(2426), + [anon_sym_ATcompatibility_alias] = ACTIONS(2426), + [anon_sym_ATtry] = ACTIONS(2426), + [anon_sym___try] = ACTIONS(2424), + [anon_sym_ATthrow] = ACTIONS(2426), + [anon_sym_ATselector] = ACTIONS(2426), + [anon_sym_ATavailable] = ACTIONS(2426), + [anon_sym___builtin_available] = ACTIONS(2424), + [anon_sym_va_arg] = ACTIONS(2424), + [anon_sym_ATencode] = ACTIONS(2426), + [anon_sym_ATsynchronized] = ACTIONS(2426), + [anon_sym_BOOL] = ACTIONS(2424), + [anon_sym_IMP] = ACTIONS(2424), + [anon_sym_SEL] = ACTIONS(2424), + [anon_sym_Class] = ACTIONS(2424), + [anon_sym_id] = ACTIONS(2424), + }, + [712] = { + [ts_builtin_sym_end] = ACTIONS(2430), + [sym_identifier] = ACTIONS(2428), + [aux_sym_preproc_include_token1] = ACTIONS(2428), + [aux_sym_preproc_include_token2] = ACTIONS(2428), + [aux_sym_preproc_def_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2428), + [sym_preproc_directive] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_STAR] = ACTIONS(2430), + [anon_sym_CARET] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym___cdecl] = ACTIONS(2428), + [anon_sym___clrcall] = ACTIONS(2428), + [anon_sym___stdcall] = ACTIONS(2428), + [anon_sym___fastcall] = ACTIONS(2428), + [anon_sym___thiscall] = ACTIONS(2428), + [anon_sym___vectorcall] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_ATautoreleasepool] = ACTIONS(2430), + [anon_sym_auto] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_CG_EXTERN] = ACTIONS(2428), + [anon_sym_CG_INLINE] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2428), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2428), + [anon_sym_IBOutlet] = ACTIONS(2428), + [anon_sym_IBInspectable] = ACTIONS(2428), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2428), + [anon_sym_NS_INLINE] = ACTIONS(2428), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2428), + [anon_sym_OBJC_EXPORT] = ACTIONS(2428), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_nullable] = ACTIONS(2428), + [anon_sym__Complex] = ACTIONS(2428), + [anon_sym__Nullable] = ACTIONS(2428), + [anon_sym__Nullable_result] = ACTIONS(2428), + [anon_sym__Null_unspecified] = ACTIONS(2428), + [anon_sym___autoreleasing] = ACTIONS(2428), + [anon_sym___block] = ACTIONS(2428), + [anon_sym___bridge] = ACTIONS(2428), + [anon_sym___bridge_retained] = ACTIONS(2428), + [anon_sym___bridge_transfer] = ACTIONS(2428), + [anon_sym___complex] = ACTIONS(2428), + [anon_sym___const] = ACTIONS(2428), + [anon_sym___imag] = ACTIONS(2428), + [anon_sym___kindof] = ACTIONS(2428), + [anon_sym___nonnull] = ACTIONS(2428), + [anon_sym___nullable] = ACTIONS(2428), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2428), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2428), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2428), + [anon_sym___real] = ACTIONS(2428), + [anon_sym___strong] = ACTIONS(2428), + [anon_sym___unsafe_unretained] = ACTIONS(2428), + [anon_sym___unused] = ACTIONS(2428), + [anon_sym___weak] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_else] = ACTIONS(2428), + [anon_sym_switch] = ACTIONS(2428), + [anon_sym_case] = ACTIONS(2428), + [anon_sym_default] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_do] = ACTIONS(2428), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_in] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_goto] = ACTIONS(2428), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_sizeof] = ACTIONS(2428), + [anon_sym___alignof__] = ACTIONS(2428), + [anon_sym___alignof] = ACTIONS(2428), + [anon_sym__alignof] = ACTIONS(2428), + [anon_sym_alignof] = ACTIONS(2428), + [anon_sym__Alignof] = ACTIONS(2428), + [anon_sym_offsetof] = ACTIONS(2428), + [anon_sym__Generic] = ACTIONS(2428), + [anon_sym_asm] = ACTIONS(2428), + [anon_sym___asm__] = ACTIONS(2428), + [anon_sym___asm] = ACTIONS(2428), + [sym_number_literal] = ACTIONS(2430), + [anon_sym_L_SQUOTE] = ACTIONS(2430), + [anon_sym_u_SQUOTE] = ACTIONS(2430), + [anon_sym_U_SQUOTE] = ACTIONS(2430), + [anon_sym_u8_SQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_AT] = ACTIONS(2428), + [anon_sym_DQUOTE] = ACTIONS(2430), + [anon_sym_L_DQUOTE] = ACTIONS(2430), + [anon_sym_u_DQUOTE] = ACTIONS(2430), + [anon_sym_U_DQUOTE] = ACTIONS(2430), + [anon_sym_u8_DQUOTE] = ACTIONS(2430), + [sym_true] = ACTIONS(2428), + [sym_false] = ACTIONS(2428), + [anon_sym_NULL] = ACTIONS(2428), + [anon_sym_nullptr] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2428), + [anon_sym___typeof] = ACTIONS(2428), + [anon_sym_typeof] = ACTIONS(2428), + [anon_sym_ATimport] = ACTIONS(2430), + [aux_sym_preproc_undef_token1] = ACTIONS(2428), + [anon_sym_POUND] = ACTIONS(2428), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2428), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2428), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2428), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2428), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE] = ACTIONS(2428), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_API_AVAILABLE] = ACTIONS(2428), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_API_DEPRECATED] = ACTIONS(2428), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2428), + [anon_sym___deprecated_msg] = ACTIONS(2428), + [anon_sym___deprecated_enum_msg] = ACTIONS(2428), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2428), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2428), + [anon_sym_ATprotocol] = ACTIONS(2430), + [anon_sym_ATinterface] = ACTIONS(2430), + [anon_sym_ATimplementation] = ACTIONS(2430), + [anon_sym_ATcompatibility_alias] = ACTIONS(2430), + [anon_sym_ATtry] = ACTIONS(2430), + [anon_sym___try] = ACTIONS(2428), + [anon_sym_ATthrow] = ACTIONS(2430), + [anon_sym_ATselector] = ACTIONS(2430), + [anon_sym_ATavailable] = ACTIONS(2430), + [anon_sym___builtin_available] = ACTIONS(2428), + [anon_sym_va_arg] = ACTIONS(2428), + [anon_sym_ATencode] = ACTIONS(2430), + [anon_sym_ATsynchronized] = ACTIONS(2430), + [anon_sym_BOOL] = ACTIONS(2428), + [anon_sym_IMP] = ACTIONS(2428), + [anon_sym_SEL] = ACTIONS(2428), + [anon_sym_Class] = ACTIONS(2428), + [anon_sym_id] = ACTIONS(2428), + }, + [713] = { + [ts_builtin_sym_end] = ACTIONS(2434), + [sym_identifier] = ACTIONS(2432), + [aux_sym_preproc_include_token1] = ACTIONS(2432), + [aux_sym_preproc_include_token2] = ACTIONS(2432), + [aux_sym_preproc_def_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2432), + [sym_preproc_directive] = ACTIONS(2432), + [anon_sym_LPAREN2] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym___extension__] = ACTIONS(2432), + [anon_sym_typedef] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym___attribute__] = ACTIONS(2432), + [anon_sym___attribute] = ACTIONS(2432), + [anon_sym_noreturn] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym___declspec] = ACTIONS(2432), + [anon_sym___cdecl] = ACTIONS(2432), + [anon_sym___clrcall] = ACTIONS(2432), + [anon_sym___stdcall] = ACTIONS(2432), + [anon_sym___fastcall] = ACTIONS(2432), + [anon_sym___thiscall] = ACTIONS(2432), + [anon_sym___vectorcall] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_signed] = ACTIONS(2432), + [anon_sym_unsigned] = ACTIONS(2432), + [anon_sym_long] = ACTIONS(2432), + [anon_sym_short] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_ATautoreleasepool] = ACTIONS(2434), + [anon_sym_auto] = ACTIONS(2432), + [anon_sym_register] = ACTIONS(2432), + [anon_sym_inline] = ACTIONS(2432), + [anon_sym___inline] = ACTIONS(2432), + [anon_sym___inline__] = ACTIONS(2432), + [anon_sym___forceinline] = ACTIONS(2432), + [anon_sym_thread_local] = ACTIONS(2432), + [anon_sym___thread] = ACTIONS(2432), + [anon_sym_CG_EXTERN] = ACTIONS(2432), + [anon_sym_CG_INLINE] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2432), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2432), + [anon_sym_IBOutlet] = ACTIONS(2432), + [anon_sym_IBInspectable] = ACTIONS(2432), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2432), + [anon_sym_NS_INLINE] = ACTIONS(2432), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2432), + [anon_sym_OBJC_EXPORT] = ACTIONS(2432), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_constexpr] = ACTIONS(2432), + [anon_sym_volatile] = ACTIONS(2432), + [anon_sym_restrict] = ACTIONS(2432), + [anon_sym___restrict__] = ACTIONS(2432), + [anon_sym__Atomic] = ACTIONS(2432), + [anon_sym__Noreturn] = ACTIONS(2432), + [anon_sym__Nonnull] = ACTIONS(2432), + [anon_sym_nullable] = ACTIONS(2432), + [anon_sym__Complex] = ACTIONS(2432), + [anon_sym__Nullable] = ACTIONS(2432), + [anon_sym__Nullable_result] = ACTIONS(2432), + [anon_sym__Null_unspecified] = ACTIONS(2432), + [anon_sym___autoreleasing] = ACTIONS(2432), + [anon_sym___block] = ACTIONS(2432), + [anon_sym___bridge] = ACTIONS(2432), + [anon_sym___bridge_retained] = ACTIONS(2432), + [anon_sym___bridge_transfer] = ACTIONS(2432), + [anon_sym___complex] = ACTIONS(2432), + [anon_sym___const] = ACTIONS(2432), + [anon_sym___imag] = ACTIONS(2432), + [anon_sym___kindof] = ACTIONS(2432), + [anon_sym___nonnull] = ACTIONS(2432), + [anon_sym___nullable] = ACTIONS(2432), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2432), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2432), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2432), + [anon_sym___real] = ACTIONS(2432), + [anon_sym___strong] = ACTIONS(2432), + [anon_sym___unsafe_unretained] = ACTIONS(2432), + [anon_sym___unused] = ACTIONS(2432), + [anon_sym___weak] = ACTIONS(2432), + [anon_sym_alignas] = ACTIONS(2432), + [anon_sym__Alignas] = ACTIONS(2432), + [sym_primitive_type] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_else] = ACTIONS(2432), + [anon_sym_switch] = ACTIONS(2432), + [anon_sym_case] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_in] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_goto] = ACTIONS(2432), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_sizeof] = ACTIONS(2432), + [anon_sym___alignof__] = ACTIONS(2432), + [anon_sym___alignof] = ACTIONS(2432), + [anon_sym__alignof] = ACTIONS(2432), + [anon_sym_alignof] = ACTIONS(2432), + [anon_sym__Alignof] = ACTIONS(2432), + [anon_sym_offsetof] = ACTIONS(2432), + [anon_sym__Generic] = ACTIONS(2432), + [anon_sym_asm] = ACTIONS(2432), + [anon_sym___asm__] = ACTIONS(2432), + [anon_sym___asm] = ACTIONS(2432), + [sym_number_literal] = ACTIONS(2434), + [anon_sym_L_SQUOTE] = ACTIONS(2434), + [anon_sym_u_SQUOTE] = ACTIONS(2434), + [anon_sym_U_SQUOTE] = ACTIONS(2434), + [anon_sym_u8_SQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_AT] = ACTIONS(2432), + [anon_sym_DQUOTE] = ACTIONS(2434), + [anon_sym_L_DQUOTE] = ACTIONS(2434), + [anon_sym_u_DQUOTE] = ACTIONS(2434), + [anon_sym_U_DQUOTE] = ACTIONS(2434), + [anon_sym_u8_DQUOTE] = ACTIONS(2434), + [sym_true] = ACTIONS(2432), + [sym_false] = ACTIONS(2432), + [anon_sym_NULL] = ACTIONS(2432), + [anon_sym_nullptr] = ACTIONS(2432), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2432), + [anon_sym___typeof] = ACTIONS(2432), + [anon_sym_typeof] = ACTIONS(2432), + [anon_sym_ATimport] = ACTIONS(2434), + [aux_sym_preproc_undef_token1] = ACTIONS(2432), + [anon_sym_POUND] = ACTIONS(2432), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2432), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2432), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2432), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2432), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE] = ACTIONS(2432), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_API_AVAILABLE] = ACTIONS(2432), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_API_DEPRECATED] = ACTIONS(2432), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2432), + [anon_sym___deprecated_msg] = ACTIONS(2432), + [anon_sym___deprecated_enum_msg] = ACTIONS(2432), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2432), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2432), + [anon_sym_ATprotocol] = ACTIONS(2434), + [anon_sym_ATinterface] = ACTIONS(2434), + [anon_sym_ATimplementation] = ACTIONS(2434), + [anon_sym_ATcompatibility_alias] = ACTIONS(2434), + [anon_sym_ATtry] = ACTIONS(2434), + [anon_sym___try] = ACTIONS(2432), + [anon_sym_ATthrow] = ACTIONS(2434), + [anon_sym_ATselector] = ACTIONS(2434), + [anon_sym_ATavailable] = ACTIONS(2434), + [anon_sym___builtin_available] = ACTIONS(2432), + [anon_sym_va_arg] = ACTIONS(2432), + [anon_sym_ATencode] = ACTIONS(2434), + [anon_sym_ATsynchronized] = ACTIONS(2434), + [anon_sym_BOOL] = ACTIONS(2432), + [anon_sym_IMP] = ACTIONS(2432), + [anon_sym_SEL] = ACTIONS(2432), + [anon_sym_Class] = ACTIONS(2432), + [anon_sym_id] = ACTIONS(2432), + }, + [714] = { + [ts_builtin_sym_end] = ACTIONS(2426), + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_include_token1] = ACTIONS(2424), + [aux_sym_preproc_include_token2] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_CARET] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_ATautoreleasepool] = ACTIONS(2426), + [anon_sym_auto] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_CG_EXTERN] = ACTIONS(2424), + [anon_sym_CG_INLINE] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2424), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2424), + [anon_sym_IBOutlet] = ACTIONS(2424), + [anon_sym_IBInspectable] = ACTIONS(2424), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2424), + [anon_sym_NS_INLINE] = ACTIONS(2424), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2424), + [anon_sym_OBJC_EXPORT] = ACTIONS(2424), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_nullable] = ACTIONS(2424), + [anon_sym__Complex] = ACTIONS(2424), + [anon_sym__Nullable] = ACTIONS(2424), + [anon_sym__Nullable_result] = ACTIONS(2424), + [anon_sym__Null_unspecified] = ACTIONS(2424), + [anon_sym___autoreleasing] = ACTIONS(2424), + [anon_sym___block] = ACTIONS(2424), + [anon_sym___bridge] = ACTIONS(2424), + [anon_sym___bridge_retained] = ACTIONS(2424), + [anon_sym___bridge_transfer] = ACTIONS(2424), + [anon_sym___complex] = ACTIONS(2424), + [anon_sym___const] = ACTIONS(2424), + [anon_sym___imag] = ACTIONS(2424), + [anon_sym___kindof] = ACTIONS(2424), + [anon_sym___nonnull] = ACTIONS(2424), + [anon_sym___nullable] = ACTIONS(2424), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2424), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2424), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2424), + [anon_sym___real] = ACTIONS(2424), + [anon_sym___strong] = ACTIONS(2424), + [anon_sym___unsafe_unretained] = ACTIONS(2424), + [anon_sym___unused] = ACTIONS(2424), + [anon_sym___weak] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_else] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_in] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_goto] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_sizeof] = ACTIONS(2424), + [anon_sym___alignof__] = ACTIONS(2424), + [anon_sym___alignof] = ACTIONS(2424), + [anon_sym__alignof] = ACTIONS(2424), + [anon_sym_alignof] = ACTIONS(2424), + [anon_sym__Alignof] = ACTIONS(2424), + [anon_sym_offsetof] = ACTIONS(2424), + [anon_sym__Generic] = ACTIONS(2424), + [anon_sym_asm] = ACTIONS(2424), + [anon_sym___asm__] = ACTIONS(2424), + [anon_sym___asm] = ACTIONS(2424), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_L_SQUOTE] = ACTIONS(2426), + [anon_sym_u_SQUOTE] = ACTIONS(2426), + [anon_sym_U_SQUOTE] = ACTIONS(2426), + [anon_sym_u8_SQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_AT] = ACTIONS(2424), + [anon_sym_DQUOTE] = ACTIONS(2426), + [anon_sym_L_DQUOTE] = ACTIONS(2426), + [anon_sym_u_DQUOTE] = ACTIONS(2426), + [anon_sym_U_DQUOTE] = ACTIONS(2426), + [anon_sym_u8_DQUOTE] = ACTIONS(2426), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [anon_sym_NULL] = ACTIONS(2424), + [anon_sym_nullptr] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2424), + [anon_sym___typeof] = ACTIONS(2424), + [anon_sym_typeof] = ACTIONS(2424), + [anon_sym_ATimport] = ACTIONS(2426), + [aux_sym_preproc_undef_token1] = ACTIONS(2424), + [anon_sym_POUND] = ACTIONS(2424), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2424), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2424), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2424), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2424), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE] = ACTIONS(2424), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_API_AVAILABLE] = ACTIONS(2424), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_API_DEPRECATED] = ACTIONS(2424), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2424), + [anon_sym___deprecated_msg] = ACTIONS(2424), + [anon_sym___deprecated_enum_msg] = ACTIONS(2424), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2424), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2424), + [anon_sym_ATprotocol] = ACTIONS(2426), + [anon_sym_ATinterface] = ACTIONS(2426), + [anon_sym_ATimplementation] = ACTIONS(2426), + [anon_sym_ATcompatibility_alias] = ACTIONS(2426), + [anon_sym_ATtry] = ACTIONS(2426), + [anon_sym___try] = ACTIONS(2424), + [anon_sym_ATthrow] = ACTIONS(2426), + [anon_sym_ATselector] = ACTIONS(2426), + [anon_sym_ATavailable] = ACTIONS(2426), + [anon_sym___builtin_available] = ACTIONS(2424), + [anon_sym_va_arg] = ACTIONS(2424), + [anon_sym_ATencode] = ACTIONS(2426), + [anon_sym_ATsynchronized] = ACTIONS(2426), + [anon_sym_BOOL] = ACTIONS(2424), + [anon_sym_IMP] = ACTIONS(2424), + [anon_sym_SEL] = ACTIONS(2424), + [anon_sym_Class] = ACTIONS(2424), + [anon_sym_id] = ACTIONS(2424), + }, + [715] = { + [ts_builtin_sym_end] = ACTIONS(2434), + [sym_identifier] = ACTIONS(2432), + [aux_sym_preproc_include_token1] = ACTIONS(2432), + [aux_sym_preproc_include_token2] = ACTIONS(2432), + [aux_sym_preproc_def_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2432), + [sym_preproc_directive] = ACTIONS(2432), + [anon_sym_LPAREN2] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym___extension__] = ACTIONS(2432), + [anon_sym_typedef] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym___attribute__] = ACTIONS(2432), + [anon_sym___attribute] = ACTIONS(2432), + [anon_sym_noreturn] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym___declspec] = ACTIONS(2432), + [anon_sym___cdecl] = ACTIONS(2432), + [anon_sym___clrcall] = ACTIONS(2432), + [anon_sym___stdcall] = ACTIONS(2432), + [anon_sym___fastcall] = ACTIONS(2432), + [anon_sym___thiscall] = ACTIONS(2432), + [anon_sym___vectorcall] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_signed] = ACTIONS(2432), + [anon_sym_unsigned] = ACTIONS(2432), + [anon_sym_long] = ACTIONS(2432), + [anon_sym_short] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_ATautoreleasepool] = ACTIONS(2434), + [anon_sym_auto] = ACTIONS(2432), + [anon_sym_register] = ACTIONS(2432), + [anon_sym_inline] = ACTIONS(2432), + [anon_sym___inline] = ACTIONS(2432), + [anon_sym___inline__] = ACTIONS(2432), + [anon_sym___forceinline] = ACTIONS(2432), + [anon_sym_thread_local] = ACTIONS(2432), + [anon_sym___thread] = ACTIONS(2432), + [anon_sym_CG_EXTERN] = ACTIONS(2432), + [anon_sym_CG_INLINE] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2432), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2432), + [anon_sym_IBOutlet] = ACTIONS(2432), + [anon_sym_IBInspectable] = ACTIONS(2432), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2432), + [anon_sym_NS_INLINE] = ACTIONS(2432), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2432), + [anon_sym_OBJC_EXPORT] = ACTIONS(2432), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_constexpr] = ACTIONS(2432), + [anon_sym_volatile] = ACTIONS(2432), + [anon_sym_restrict] = ACTIONS(2432), + [anon_sym___restrict__] = ACTIONS(2432), + [anon_sym__Atomic] = ACTIONS(2432), + [anon_sym__Noreturn] = ACTIONS(2432), + [anon_sym__Nonnull] = ACTIONS(2432), + [anon_sym_nullable] = ACTIONS(2432), + [anon_sym__Complex] = ACTIONS(2432), + [anon_sym__Nullable] = ACTIONS(2432), + [anon_sym__Nullable_result] = ACTIONS(2432), + [anon_sym__Null_unspecified] = ACTIONS(2432), + [anon_sym___autoreleasing] = ACTIONS(2432), + [anon_sym___block] = ACTIONS(2432), + [anon_sym___bridge] = ACTIONS(2432), + [anon_sym___bridge_retained] = ACTIONS(2432), + [anon_sym___bridge_transfer] = ACTIONS(2432), + [anon_sym___complex] = ACTIONS(2432), + [anon_sym___const] = ACTIONS(2432), + [anon_sym___imag] = ACTIONS(2432), + [anon_sym___kindof] = ACTIONS(2432), + [anon_sym___nonnull] = ACTIONS(2432), + [anon_sym___nullable] = ACTIONS(2432), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2432), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2432), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2432), + [anon_sym___real] = ACTIONS(2432), + [anon_sym___strong] = ACTIONS(2432), + [anon_sym___unsafe_unretained] = ACTIONS(2432), + [anon_sym___unused] = ACTIONS(2432), + [anon_sym___weak] = ACTIONS(2432), + [anon_sym_alignas] = ACTIONS(2432), + [anon_sym__Alignas] = ACTIONS(2432), + [sym_primitive_type] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_else] = ACTIONS(2432), + [anon_sym_switch] = ACTIONS(2432), + [anon_sym_case] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_in] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_goto] = ACTIONS(2432), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_sizeof] = ACTIONS(2432), + [anon_sym___alignof__] = ACTIONS(2432), + [anon_sym___alignof] = ACTIONS(2432), + [anon_sym__alignof] = ACTIONS(2432), + [anon_sym_alignof] = ACTIONS(2432), + [anon_sym__Alignof] = ACTIONS(2432), + [anon_sym_offsetof] = ACTIONS(2432), + [anon_sym__Generic] = ACTIONS(2432), + [anon_sym_asm] = ACTIONS(2432), + [anon_sym___asm__] = ACTIONS(2432), + [anon_sym___asm] = ACTIONS(2432), + [sym_number_literal] = ACTIONS(2434), + [anon_sym_L_SQUOTE] = ACTIONS(2434), + [anon_sym_u_SQUOTE] = ACTIONS(2434), + [anon_sym_U_SQUOTE] = ACTIONS(2434), + [anon_sym_u8_SQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_AT] = ACTIONS(2432), + [anon_sym_DQUOTE] = ACTIONS(2434), + [anon_sym_L_DQUOTE] = ACTIONS(2434), + [anon_sym_u_DQUOTE] = ACTIONS(2434), + [anon_sym_U_DQUOTE] = ACTIONS(2434), + [anon_sym_u8_DQUOTE] = ACTIONS(2434), + [sym_true] = ACTIONS(2432), + [sym_false] = ACTIONS(2432), + [anon_sym_NULL] = ACTIONS(2432), + [anon_sym_nullptr] = ACTIONS(2432), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2432), + [anon_sym___typeof] = ACTIONS(2432), + [anon_sym_typeof] = ACTIONS(2432), + [anon_sym_ATimport] = ACTIONS(2434), + [aux_sym_preproc_undef_token1] = ACTIONS(2432), + [anon_sym_POUND] = ACTIONS(2432), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2432), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2432), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2432), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2432), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE] = ACTIONS(2432), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_API_AVAILABLE] = ACTIONS(2432), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_API_DEPRECATED] = ACTIONS(2432), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2432), + [anon_sym___deprecated_msg] = ACTIONS(2432), + [anon_sym___deprecated_enum_msg] = ACTIONS(2432), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2432), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2432), + [anon_sym_ATprotocol] = ACTIONS(2434), + [anon_sym_ATinterface] = ACTIONS(2434), + [anon_sym_ATimplementation] = ACTIONS(2434), + [anon_sym_ATcompatibility_alias] = ACTIONS(2434), + [anon_sym_ATtry] = ACTIONS(2434), + [anon_sym___try] = ACTIONS(2432), + [anon_sym_ATthrow] = ACTIONS(2434), + [anon_sym_ATselector] = ACTIONS(2434), + [anon_sym_ATavailable] = ACTIONS(2434), + [anon_sym___builtin_available] = ACTIONS(2432), + [anon_sym_va_arg] = ACTIONS(2432), + [anon_sym_ATencode] = ACTIONS(2434), + [anon_sym_ATsynchronized] = ACTIONS(2434), + [anon_sym_BOOL] = ACTIONS(2432), + [anon_sym_IMP] = ACTIONS(2432), + [anon_sym_SEL] = ACTIONS(2432), + [anon_sym_Class] = ACTIONS(2432), + [anon_sym_id] = ACTIONS(2432), + }, + [716] = { + [ts_builtin_sym_end] = ACTIONS(2430), + [sym_identifier] = ACTIONS(2428), + [aux_sym_preproc_include_token1] = ACTIONS(2428), + [aux_sym_preproc_include_token2] = ACTIONS(2428), + [aux_sym_preproc_def_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2428), + [sym_preproc_directive] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_STAR] = ACTIONS(2430), + [anon_sym_CARET] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym___cdecl] = ACTIONS(2428), + [anon_sym___clrcall] = ACTIONS(2428), + [anon_sym___stdcall] = ACTIONS(2428), + [anon_sym___fastcall] = ACTIONS(2428), + [anon_sym___thiscall] = ACTIONS(2428), + [anon_sym___vectorcall] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_ATautoreleasepool] = ACTIONS(2430), + [anon_sym_auto] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_CG_EXTERN] = ACTIONS(2428), + [anon_sym_CG_INLINE] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2428), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2428), + [anon_sym_IBOutlet] = ACTIONS(2428), + [anon_sym_IBInspectable] = ACTIONS(2428), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2428), + [anon_sym_NS_INLINE] = ACTIONS(2428), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2428), + [anon_sym_OBJC_EXPORT] = ACTIONS(2428), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_nullable] = ACTIONS(2428), + [anon_sym__Complex] = ACTIONS(2428), + [anon_sym__Nullable] = ACTIONS(2428), + [anon_sym__Nullable_result] = ACTIONS(2428), + [anon_sym__Null_unspecified] = ACTIONS(2428), + [anon_sym___autoreleasing] = ACTIONS(2428), + [anon_sym___block] = ACTIONS(2428), + [anon_sym___bridge] = ACTIONS(2428), + [anon_sym___bridge_retained] = ACTIONS(2428), + [anon_sym___bridge_transfer] = ACTIONS(2428), + [anon_sym___complex] = ACTIONS(2428), + [anon_sym___const] = ACTIONS(2428), + [anon_sym___imag] = ACTIONS(2428), + [anon_sym___kindof] = ACTIONS(2428), + [anon_sym___nonnull] = ACTIONS(2428), + [anon_sym___nullable] = ACTIONS(2428), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2428), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2428), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2428), + [anon_sym___real] = ACTIONS(2428), + [anon_sym___strong] = ACTIONS(2428), + [anon_sym___unsafe_unretained] = ACTIONS(2428), + [anon_sym___unused] = ACTIONS(2428), + [anon_sym___weak] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_else] = ACTIONS(2428), + [anon_sym_switch] = ACTIONS(2428), + [anon_sym_case] = ACTIONS(2428), + [anon_sym_default] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_do] = ACTIONS(2428), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_in] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_goto] = ACTIONS(2428), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_sizeof] = ACTIONS(2428), + [anon_sym___alignof__] = ACTIONS(2428), + [anon_sym___alignof] = ACTIONS(2428), + [anon_sym__alignof] = ACTIONS(2428), + [anon_sym_alignof] = ACTIONS(2428), + [anon_sym__Alignof] = ACTIONS(2428), + [anon_sym_offsetof] = ACTIONS(2428), + [anon_sym__Generic] = ACTIONS(2428), + [anon_sym_asm] = ACTIONS(2428), + [anon_sym___asm__] = ACTIONS(2428), + [anon_sym___asm] = ACTIONS(2428), + [sym_number_literal] = ACTIONS(2430), + [anon_sym_L_SQUOTE] = ACTIONS(2430), + [anon_sym_u_SQUOTE] = ACTIONS(2430), + [anon_sym_U_SQUOTE] = ACTIONS(2430), + [anon_sym_u8_SQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_AT] = ACTIONS(2428), + [anon_sym_DQUOTE] = ACTIONS(2430), + [anon_sym_L_DQUOTE] = ACTIONS(2430), + [anon_sym_u_DQUOTE] = ACTIONS(2430), + [anon_sym_U_DQUOTE] = ACTIONS(2430), + [anon_sym_u8_DQUOTE] = ACTIONS(2430), + [sym_true] = ACTIONS(2428), + [sym_false] = ACTIONS(2428), + [anon_sym_NULL] = ACTIONS(2428), + [anon_sym_nullptr] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2428), + [anon_sym___typeof] = ACTIONS(2428), + [anon_sym_typeof] = ACTIONS(2428), + [anon_sym_ATimport] = ACTIONS(2430), + [aux_sym_preproc_undef_token1] = ACTIONS(2428), + [anon_sym_POUND] = ACTIONS(2428), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2428), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2428), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2428), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2428), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE] = ACTIONS(2428), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_API_AVAILABLE] = ACTIONS(2428), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_API_DEPRECATED] = ACTIONS(2428), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2428), + [anon_sym___deprecated_msg] = ACTIONS(2428), + [anon_sym___deprecated_enum_msg] = ACTIONS(2428), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2428), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2428), + [anon_sym_ATprotocol] = ACTIONS(2430), + [anon_sym_ATinterface] = ACTIONS(2430), + [anon_sym_ATimplementation] = ACTIONS(2430), + [anon_sym_ATcompatibility_alias] = ACTIONS(2430), + [anon_sym_ATtry] = ACTIONS(2430), + [anon_sym___try] = ACTIONS(2428), + [anon_sym_ATthrow] = ACTIONS(2430), + [anon_sym_ATselector] = ACTIONS(2430), + [anon_sym_ATavailable] = ACTIONS(2430), + [anon_sym___builtin_available] = ACTIONS(2428), + [anon_sym_va_arg] = ACTIONS(2428), + [anon_sym_ATencode] = ACTIONS(2430), + [anon_sym_ATsynchronized] = ACTIONS(2430), + [anon_sym_BOOL] = ACTIONS(2428), + [anon_sym_IMP] = ACTIONS(2428), + [anon_sym_SEL] = ACTIONS(2428), + [anon_sym_Class] = ACTIONS(2428), + [anon_sym_id] = ACTIONS(2428), + }, + [717] = { + [sym_identifier] = ACTIONS(2490), + [aux_sym_preproc_include_token1] = ACTIONS(2490), + [aux_sym_preproc_include_token2] = ACTIONS(2490), + [aux_sym_preproc_def_token1] = ACTIONS(2490), + [aux_sym_preproc_if_token1] = ACTIONS(2490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2490), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2490), + [sym_preproc_directive] = ACTIONS(2490), + [anon_sym_LPAREN2] = ACTIONS(2492), + [anon_sym_BANG] = ACTIONS(2492), + [anon_sym_TILDE] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2490), + [anon_sym_PLUS] = ACTIONS(2490), + [anon_sym_STAR] = ACTIONS(2492), + [anon_sym_CARET] = ACTIONS(2492), + [anon_sym_AMP] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym___extension__] = ACTIONS(2490), + [anon_sym_typedef] = ACTIONS(2490), + [anon_sym_extern] = ACTIONS(2490), + [anon_sym___attribute__] = ACTIONS(2490), + [anon_sym___attribute] = ACTIONS(2490), + [anon_sym_noreturn] = ACTIONS(2490), + [anon_sym_LBRACK] = ACTIONS(2492), + [anon_sym___declspec] = ACTIONS(2490), + [anon_sym___cdecl] = ACTIONS(2490), + [anon_sym___clrcall] = ACTIONS(2490), + [anon_sym___stdcall] = ACTIONS(2490), + [anon_sym___fastcall] = ACTIONS(2490), + [anon_sym___thiscall] = ACTIONS(2490), + [anon_sym___vectorcall] = ACTIONS(2490), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_RBRACE] = ACTIONS(2492), + [anon_sym_signed] = ACTIONS(2490), + [anon_sym_unsigned] = ACTIONS(2490), + [anon_sym_long] = ACTIONS(2490), + [anon_sym_short] = ACTIONS(2490), + [anon_sym_static] = ACTIONS(2490), + [anon_sym_ATautoreleasepool] = ACTIONS(2492), + [anon_sym_auto] = ACTIONS(2490), + [anon_sym_register] = ACTIONS(2490), + [anon_sym_inline] = ACTIONS(2490), + [anon_sym___inline] = ACTIONS(2490), + [anon_sym___inline__] = ACTIONS(2490), + [anon_sym___forceinline] = ACTIONS(2490), + [anon_sym_thread_local] = ACTIONS(2490), + [anon_sym___thread] = ACTIONS(2490), + [anon_sym_CG_EXTERN] = ACTIONS(2490), + [anon_sym_CG_INLINE] = ACTIONS(2490), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2490), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2490), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2490), + [anon_sym_IBOutlet] = ACTIONS(2490), + [anon_sym_IBInspectable] = ACTIONS(2490), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2490), + [anon_sym_NS_INLINE] = ACTIONS(2490), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2490), + [anon_sym_OBJC_EXPORT] = ACTIONS(2490), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2490), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(2490), + [anon_sym_constexpr] = ACTIONS(2490), + [anon_sym_volatile] = ACTIONS(2490), + [anon_sym_restrict] = ACTIONS(2490), + [anon_sym___restrict__] = ACTIONS(2490), + [anon_sym__Atomic] = ACTIONS(2490), + [anon_sym__Noreturn] = ACTIONS(2490), + [anon_sym__Nonnull] = ACTIONS(2490), + [anon_sym_nullable] = ACTIONS(2490), + [anon_sym__Complex] = ACTIONS(2490), + [anon_sym__Nullable] = ACTIONS(2490), + [anon_sym__Nullable_result] = ACTIONS(2490), + [anon_sym__Null_unspecified] = ACTIONS(2490), + [anon_sym___autoreleasing] = ACTIONS(2490), + [anon_sym___block] = ACTIONS(2490), + [anon_sym___bridge] = ACTIONS(2490), + [anon_sym___bridge_retained] = ACTIONS(2490), + [anon_sym___bridge_transfer] = ACTIONS(2490), + [anon_sym___complex] = ACTIONS(2490), + [anon_sym___const] = ACTIONS(2490), + [anon_sym___imag] = ACTIONS(2490), + [anon_sym___kindof] = ACTIONS(2490), + [anon_sym___nonnull] = ACTIONS(2490), + [anon_sym___nullable] = ACTIONS(2490), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2490), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2490), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2490), + [anon_sym___real] = ACTIONS(2490), + [anon_sym___strong] = ACTIONS(2490), + [anon_sym___unsafe_unretained] = ACTIONS(2490), + [anon_sym___unused] = ACTIONS(2490), + [anon_sym___weak] = ACTIONS(2490), + [anon_sym_alignas] = ACTIONS(2490), + [anon_sym__Alignas] = ACTIONS(2490), + [sym_primitive_type] = ACTIONS(2490), + [anon_sym_enum] = ACTIONS(2490), + [anon_sym_struct] = ACTIONS(2490), + [anon_sym_union] = ACTIONS(2490), + [anon_sym_if] = ACTIONS(2490), + [anon_sym_else] = ACTIONS(2490), + [anon_sym_switch] = ACTIONS(2490), + [anon_sym_case] = ACTIONS(2490), + [anon_sym_default] = ACTIONS(2490), + [anon_sym_while] = ACTIONS(2490), + [anon_sym_do] = ACTIONS(2490), + [anon_sym_for] = ACTIONS(2490), + [anon_sym_in] = ACTIONS(2490), + [anon_sym_return] = ACTIONS(2490), + [anon_sym_break] = ACTIONS(2490), + [anon_sym_continue] = ACTIONS(2490), + [anon_sym_goto] = ACTIONS(2490), + [anon_sym_DASH_DASH] = ACTIONS(2492), + [anon_sym_PLUS_PLUS] = ACTIONS(2492), + [anon_sym_sizeof] = ACTIONS(2490), + [anon_sym___alignof__] = ACTIONS(2490), + [anon_sym___alignof] = ACTIONS(2490), + [anon_sym__alignof] = ACTIONS(2490), + [anon_sym_alignof] = ACTIONS(2490), + [anon_sym__Alignof] = ACTIONS(2490), + [anon_sym_offsetof] = ACTIONS(2490), + [anon_sym__Generic] = ACTIONS(2490), + [anon_sym_asm] = ACTIONS(2490), + [anon_sym___asm__] = ACTIONS(2490), + [anon_sym___asm] = ACTIONS(2490), + [sym_number_literal] = ACTIONS(2492), + [anon_sym_L_SQUOTE] = ACTIONS(2492), + [anon_sym_u_SQUOTE] = ACTIONS(2492), + [anon_sym_U_SQUOTE] = ACTIONS(2492), + [anon_sym_u8_SQUOTE] = ACTIONS(2492), + [anon_sym_SQUOTE] = ACTIONS(2492), + [anon_sym_AT] = ACTIONS(2490), + [anon_sym_DQUOTE] = ACTIONS(2492), + [anon_sym_L_DQUOTE] = ACTIONS(2492), + [anon_sym_u_DQUOTE] = ACTIONS(2492), + [anon_sym_U_DQUOTE] = ACTIONS(2492), + [anon_sym_u8_DQUOTE] = ACTIONS(2492), + [sym_true] = ACTIONS(2490), + [sym_false] = ACTIONS(2490), + [anon_sym_NULL] = ACTIONS(2490), + [anon_sym_nullptr] = ACTIONS(2490), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2490), + [anon_sym___typeof] = ACTIONS(2490), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_ATimport] = ACTIONS(2492), + [aux_sym_preproc_undef_token1] = ACTIONS(2490), + [anon_sym_POUND] = ACTIONS(2490), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2490), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2490), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2490), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2490), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2490), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2490), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2490), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2490), + [anon_sym_NS_AVAILABLE] = ACTIONS(2490), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2490), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_API_AVAILABLE] = ACTIONS(2490), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_API_DEPRECATED] = ACTIONS(2490), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2490), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2490), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2490), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2490), + [anon_sym___deprecated_msg] = ACTIONS(2490), + [anon_sym___deprecated_enum_msg] = ACTIONS(2490), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2490), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2490), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2490), + [anon_sym_ATprotocol] = ACTIONS(2492), + [anon_sym_ATinterface] = ACTIONS(2492), + [anon_sym_ATimplementation] = ACTIONS(2492), + [anon_sym_ATcompatibility_alias] = ACTIONS(2492), + [anon_sym_ATtry] = ACTIONS(2492), + [anon_sym___try] = ACTIONS(2490), + [anon_sym_ATthrow] = ACTIONS(2492), + [anon_sym_ATselector] = ACTIONS(2492), + [anon_sym_ATavailable] = ACTIONS(2492), + [anon_sym___builtin_available] = ACTIONS(2490), + [anon_sym_va_arg] = ACTIONS(2490), + [anon_sym_ATencode] = ACTIONS(2492), + [anon_sym_ATsynchronized] = ACTIONS(2492), + [anon_sym_BOOL] = ACTIONS(2490), + [anon_sym_IMP] = ACTIONS(2490), + [anon_sym_SEL] = ACTIONS(2490), + [anon_sym_Class] = ACTIONS(2490), + [anon_sym_id] = ACTIONS(2490), + }, + [718] = { + [sym_identifier] = ACTIONS(2494), + [aux_sym_preproc_include_token1] = ACTIONS(2494), + [aux_sym_preproc_include_token2] = ACTIONS(2494), + [aux_sym_preproc_def_token1] = ACTIONS(2494), + [aux_sym_preproc_if_token1] = ACTIONS(2494), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2494), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2494), + [sym_preproc_directive] = ACTIONS(2494), + [anon_sym_LPAREN2] = ACTIONS(2496), + [anon_sym_BANG] = ACTIONS(2496), + [anon_sym_TILDE] = ACTIONS(2496), + [anon_sym_DASH] = ACTIONS(2494), + [anon_sym_PLUS] = ACTIONS(2494), + [anon_sym_STAR] = ACTIONS(2496), + [anon_sym_CARET] = ACTIONS(2496), + [anon_sym_AMP] = ACTIONS(2496), + [anon_sym_SEMI] = ACTIONS(2496), + [anon_sym___extension__] = ACTIONS(2494), + [anon_sym_typedef] = ACTIONS(2494), + [anon_sym_extern] = ACTIONS(2494), + [anon_sym___attribute__] = ACTIONS(2494), + [anon_sym___attribute] = ACTIONS(2494), + [anon_sym_noreturn] = ACTIONS(2494), + [anon_sym_LBRACK] = ACTIONS(2496), + [anon_sym___declspec] = ACTIONS(2494), + [anon_sym___cdecl] = ACTIONS(2494), + [anon_sym___clrcall] = ACTIONS(2494), + [anon_sym___stdcall] = ACTIONS(2494), + [anon_sym___fastcall] = ACTIONS(2494), + [anon_sym___thiscall] = ACTIONS(2494), + [anon_sym___vectorcall] = ACTIONS(2494), + [anon_sym_LBRACE] = ACTIONS(2496), + [anon_sym_RBRACE] = ACTIONS(2496), + [anon_sym_signed] = ACTIONS(2494), + [anon_sym_unsigned] = ACTIONS(2494), + [anon_sym_long] = ACTIONS(2494), + [anon_sym_short] = ACTIONS(2494), + [anon_sym_static] = ACTIONS(2494), + [anon_sym_ATautoreleasepool] = ACTIONS(2496), + [anon_sym_auto] = ACTIONS(2494), + [anon_sym_register] = ACTIONS(2494), + [anon_sym_inline] = ACTIONS(2494), + [anon_sym___inline] = ACTIONS(2494), + [anon_sym___inline__] = ACTIONS(2494), + [anon_sym___forceinline] = ACTIONS(2494), + [anon_sym_thread_local] = ACTIONS(2494), + [anon_sym___thread] = ACTIONS(2494), + [anon_sym_CG_EXTERN] = ACTIONS(2494), + [anon_sym_CG_INLINE] = ACTIONS(2494), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2494), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2494), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2494), + [anon_sym_IBOutlet] = ACTIONS(2494), + [anon_sym_IBInspectable] = ACTIONS(2494), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2494), + [anon_sym_NS_INLINE] = ACTIONS(2494), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2494), + [anon_sym_OBJC_EXPORT] = ACTIONS(2494), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2494), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2494), + [anon_sym_const] = ACTIONS(2494), + [anon_sym_constexpr] = ACTIONS(2494), + [anon_sym_volatile] = ACTIONS(2494), + [anon_sym_restrict] = ACTIONS(2494), + [anon_sym___restrict__] = ACTIONS(2494), + [anon_sym__Atomic] = ACTIONS(2494), + [anon_sym__Noreturn] = ACTIONS(2494), + [anon_sym__Nonnull] = ACTIONS(2494), + [anon_sym_nullable] = ACTIONS(2494), + [anon_sym__Complex] = ACTIONS(2494), + [anon_sym__Nullable] = ACTIONS(2494), + [anon_sym__Nullable_result] = ACTIONS(2494), + [anon_sym__Null_unspecified] = ACTIONS(2494), + [anon_sym___autoreleasing] = ACTIONS(2494), + [anon_sym___block] = ACTIONS(2494), + [anon_sym___bridge] = ACTIONS(2494), + [anon_sym___bridge_retained] = ACTIONS(2494), + [anon_sym___bridge_transfer] = ACTIONS(2494), + [anon_sym___complex] = ACTIONS(2494), + [anon_sym___const] = ACTIONS(2494), + [anon_sym___imag] = ACTIONS(2494), + [anon_sym___kindof] = ACTIONS(2494), + [anon_sym___nonnull] = ACTIONS(2494), + [anon_sym___nullable] = ACTIONS(2494), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2494), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2494), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2494), + [anon_sym___real] = ACTIONS(2494), + [anon_sym___strong] = ACTIONS(2494), + [anon_sym___unsafe_unretained] = ACTIONS(2494), + [anon_sym___unused] = ACTIONS(2494), + [anon_sym___weak] = ACTIONS(2494), + [anon_sym_alignas] = ACTIONS(2494), + [anon_sym__Alignas] = ACTIONS(2494), + [sym_primitive_type] = ACTIONS(2494), + [anon_sym_enum] = ACTIONS(2494), + [anon_sym_struct] = ACTIONS(2494), + [anon_sym_union] = ACTIONS(2494), + [anon_sym_if] = ACTIONS(2494), + [anon_sym_else] = ACTIONS(2494), + [anon_sym_switch] = ACTIONS(2494), + [anon_sym_case] = ACTIONS(2494), + [anon_sym_default] = ACTIONS(2494), + [anon_sym_while] = ACTIONS(2494), + [anon_sym_do] = ACTIONS(2494), + [anon_sym_for] = ACTIONS(2494), + [anon_sym_in] = ACTIONS(2494), + [anon_sym_return] = ACTIONS(2494), + [anon_sym_break] = ACTIONS(2494), + [anon_sym_continue] = ACTIONS(2494), + [anon_sym_goto] = ACTIONS(2494), + [anon_sym_DASH_DASH] = ACTIONS(2496), + [anon_sym_PLUS_PLUS] = ACTIONS(2496), + [anon_sym_sizeof] = ACTIONS(2494), + [anon_sym___alignof__] = ACTIONS(2494), + [anon_sym___alignof] = ACTIONS(2494), + [anon_sym__alignof] = ACTIONS(2494), + [anon_sym_alignof] = ACTIONS(2494), + [anon_sym__Alignof] = ACTIONS(2494), + [anon_sym_offsetof] = ACTIONS(2494), + [anon_sym__Generic] = ACTIONS(2494), + [anon_sym_asm] = ACTIONS(2494), + [anon_sym___asm__] = ACTIONS(2494), + [anon_sym___asm] = ACTIONS(2494), + [sym_number_literal] = ACTIONS(2496), + [anon_sym_L_SQUOTE] = ACTIONS(2496), + [anon_sym_u_SQUOTE] = ACTIONS(2496), + [anon_sym_U_SQUOTE] = ACTIONS(2496), + [anon_sym_u8_SQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2496), + [anon_sym_AT] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_L_DQUOTE] = ACTIONS(2496), + [anon_sym_u_DQUOTE] = ACTIONS(2496), + [anon_sym_U_DQUOTE] = ACTIONS(2496), + [anon_sym_u8_DQUOTE] = ACTIONS(2496), + [sym_true] = ACTIONS(2494), + [sym_false] = ACTIONS(2494), + [anon_sym_NULL] = ACTIONS(2494), + [anon_sym_nullptr] = ACTIONS(2494), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2494), + [anon_sym___typeof] = ACTIONS(2494), + [anon_sym_typeof] = ACTIONS(2494), + [anon_sym_ATimport] = ACTIONS(2496), + [aux_sym_preproc_undef_token1] = ACTIONS(2494), + [anon_sym_POUND] = ACTIONS(2494), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2494), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2494), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2494), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2494), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2494), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2494), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2494), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2494), + [anon_sym_NS_AVAILABLE] = ACTIONS(2494), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2494), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_API_AVAILABLE] = ACTIONS(2494), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_API_DEPRECATED] = ACTIONS(2494), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2494), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2494), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2494), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2494), + [anon_sym___deprecated_msg] = ACTIONS(2494), + [anon_sym___deprecated_enum_msg] = ACTIONS(2494), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2494), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2494), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2494), + [anon_sym_ATprotocol] = ACTIONS(2496), + [anon_sym_ATinterface] = ACTIONS(2496), + [anon_sym_ATimplementation] = ACTIONS(2496), + [anon_sym_ATcompatibility_alias] = ACTIONS(2496), + [anon_sym_ATtry] = ACTIONS(2496), + [anon_sym___try] = ACTIONS(2494), + [anon_sym_ATthrow] = ACTIONS(2496), + [anon_sym_ATselector] = ACTIONS(2496), + [anon_sym_ATavailable] = ACTIONS(2496), + [anon_sym___builtin_available] = ACTIONS(2494), + [anon_sym_va_arg] = ACTIONS(2494), + [anon_sym_ATencode] = ACTIONS(2496), + [anon_sym_ATsynchronized] = ACTIONS(2496), + [anon_sym_BOOL] = ACTIONS(2494), + [anon_sym_IMP] = ACTIONS(2494), + [anon_sym_SEL] = ACTIONS(2494), + [anon_sym_Class] = ACTIONS(2494), + [anon_sym_id] = ACTIONS(2494), + }, + [719] = { + [sym_identifier] = ACTIONS(2498), + [aux_sym_preproc_include_token1] = ACTIONS(2498), + [aux_sym_preproc_include_token2] = ACTIONS(2498), + [aux_sym_preproc_def_token1] = ACTIONS(2498), + [aux_sym_preproc_if_token1] = ACTIONS(2498), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2498), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2498), + [sym_preproc_directive] = ACTIONS(2498), + [anon_sym_LPAREN2] = ACTIONS(2500), + [anon_sym_BANG] = ACTIONS(2500), + [anon_sym_TILDE] = ACTIONS(2500), + [anon_sym_DASH] = ACTIONS(2498), + [anon_sym_PLUS] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(2500), + [anon_sym_CARET] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(2500), + [anon_sym_SEMI] = ACTIONS(2500), + [anon_sym___extension__] = ACTIONS(2498), + [anon_sym_typedef] = ACTIONS(2498), + [anon_sym_extern] = ACTIONS(2498), + [anon_sym___attribute__] = ACTIONS(2498), + [anon_sym___attribute] = ACTIONS(2498), + [anon_sym_noreturn] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2500), + [anon_sym___declspec] = ACTIONS(2498), + [anon_sym___cdecl] = ACTIONS(2498), + [anon_sym___clrcall] = ACTIONS(2498), + [anon_sym___stdcall] = ACTIONS(2498), + [anon_sym___fastcall] = ACTIONS(2498), + [anon_sym___thiscall] = ACTIONS(2498), + [anon_sym___vectorcall] = ACTIONS(2498), + [anon_sym_LBRACE] = ACTIONS(2500), + [anon_sym_RBRACE] = ACTIONS(2500), + [anon_sym_signed] = ACTIONS(2498), + [anon_sym_unsigned] = ACTIONS(2498), + [anon_sym_long] = ACTIONS(2498), + [anon_sym_short] = ACTIONS(2498), + [anon_sym_static] = ACTIONS(2498), + [anon_sym_ATautoreleasepool] = ACTIONS(2500), + [anon_sym_auto] = ACTIONS(2498), + [anon_sym_register] = ACTIONS(2498), + [anon_sym_inline] = ACTIONS(2498), + [anon_sym___inline] = ACTIONS(2498), + [anon_sym___inline__] = ACTIONS(2498), + [anon_sym___forceinline] = ACTIONS(2498), + [anon_sym_thread_local] = ACTIONS(2498), + [anon_sym___thread] = ACTIONS(2498), + [anon_sym_CG_EXTERN] = ACTIONS(2498), + [anon_sym_CG_INLINE] = ACTIONS(2498), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2498), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2498), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2498), + [anon_sym_IBOutlet] = ACTIONS(2498), + [anon_sym_IBInspectable] = ACTIONS(2498), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2498), + [anon_sym_NS_INLINE] = ACTIONS(2498), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2498), + [anon_sym_OBJC_EXPORT] = ACTIONS(2498), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2498), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2498), + [anon_sym_const] = ACTIONS(2498), + [anon_sym_constexpr] = ACTIONS(2498), + [anon_sym_volatile] = ACTIONS(2498), + [anon_sym_restrict] = ACTIONS(2498), + [anon_sym___restrict__] = ACTIONS(2498), + [anon_sym__Atomic] = ACTIONS(2498), + [anon_sym__Noreturn] = ACTIONS(2498), + [anon_sym__Nonnull] = ACTIONS(2498), + [anon_sym_nullable] = ACTIONS(2498), + [anon_sym__Complex] = ACTIONS(2498), + [anon_sym__Nullable] = ACTIONS(2498), + [anon_sym__Nullable_result] = ACTIONS(2498), + [anon_sym__Null_unspecified] = ACTIONS(2498), + [anon_sym___autoreleasing] = ACTIONS(2498), + [anon_sym___block] = ACTIONS(2498), + [anon_sym___bridge] = ACTIONS(2498), + [anon_sym___bridge_retained] = ACTIONS(2498), + [anon_sym___bridge_transfer] = ACTIONS(2498), + [anon_sym___complex] = ACTIONS(2498), + [anon_sym___const] = ACTIONS(2498), + [anon_sym___imag] = ACTIONS(2498), + [anon_sym___kindof] = ACTIONS(2498), + [anon_sym___nonnull] = ACTIONS(2498), + [anon_sym___nullable] = ACTIONS(2498), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2498), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2498), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2498), + [anon_sym___real] = ACTIONS(2498), + [anon_sym___strong] = ACTIONS(2498), + [anon_sym___unsafe_unretained] = ACTIONS(2498), + [anon_sym___unused] = ACTIONS(2498), + [anon_sym___weak] = ACTIONS(2498), + [anon_sym_alignas] = ACTIONS(2498), + [anon_sym__Alignas] = ACTIONS(2498), + [sym_primitive_type] = ACTIONS(2498), + [anon_sym_enum] = ACTIONS(2498), + [anon_sym_struct] = ACTIONS(2498), + [anon_sym_union] = ACTIONS(2498), + [anon_sym_if] = ACTIONS(2498), + [anon_sym_else] = ACTIONS(2498), + [anon_sym_switch] = ACTIONS(2498), + [anon_sym_case] = ACTIONS(2498), + [anon_sym_default] = ACTIONS(2498), + [anon_sym_while] = ACTIONS(2498), + [anon_sym_do] = ACTIONS(2498), + [anon_sym_for] = ACTIONS(2498), + [anon_sym_in] = ACTIONS(2498), + [anon_sym_return] = ACTIONS(2498), + [anon_sym_break] = ACTIONS(2498), + [anon_sym_continue] = ACTIONS(2498), + [anon_sym_goto] = ACTIONS(2498), + [anon_sym_DASH_DASH] = ACTIONS(2500), + [anon_sym_PLUS_PLUS] = ACTIONS(2500), + [anon_sym_sizeof] = ACTIONS(2498), + [anon_sym___alignof__] = ACTIONS(2498), + [anon_sym___alignof] = ACTIONS(2498), + [anon_sym__alignof] = ACTIONS(2498), + [anon_sym_alignof] = ACTIONS(2498), + [anon_sym__Alignof] = ACTIONS(2498), + [anon_sym_offsetof] = ACTIONS(2498), + [anon_sym__Generic] = ACTIONS(2498), + [anon_sym_asm] = ACTIONS(2498), + [anon_sym___asm__] = ACTIONS(2498), + [anon_sym___asm] = ACTIONS(2498), + [sym_number_literal] = ACTIONS(2500), + [anon_sym_L_SQUOTE] = ACTIONS(2500), + [anon_sym_u_SQUOTE] = ACTIONS(2500), + [anon_sym_U_SQUOTE] = ACTIONS(2500), + [anon_sym_u8_SQUOTE] = ACTIONS(2500), + [anon_sym_SQUOTE] = ACTIONS(2500), + [anon_sym_AT] = ACTIONS(2498), + [anon_sym_DQUOTE] = ACTIONS(2500), + [anon_sym_L_DQUOTE] = ACTIONS(2500), + [anon_sym_u_DQUOTE] = ACTIONS(2500), + [anon_sym_U_DQUOTE] = ACTIONS(2500), + [anon_sym_u8_DQUOTE] = ACTIONS(2500), + [sym_true] = ACTIONS(2498), + [sym_false] = ACTIONS(2498), + [anon_sym_NULL] = ACTIONS(2498), + [anon_sym_nullptr] = ACTIONS(2498), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2498), + [anon_sym___typeof] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(2498), + [anon_sym_ATimport] = ACTIONS(2500), + [aux_sym_preproc_undef_token1] = ACTIONS(2498), + [anon_sym_POUND] = ACTIONS(2498), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2498), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2498), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2498), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2498), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2498), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2498), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2498), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2498), + [anon_sym_NS_AVAILABLE] = ACTIONS(2498), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2498), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_API_AVAILABLE] = ACTIONS(2498), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_API_DEPRECATED] = ACTIONS(2498), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2498), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2498), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2498), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2498), + [anon_sym___deprecated_msg] = ACTIONS(2498), + [anon_sym___deprecated_enum_msg] = ACTIONS(2498), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2498), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2498), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2498), + [anon_sym_ATprotocol] = ACTIONS(2500), + [anon_sym_ATinterface] = ACTIONS(2500), + [anon_sym_ATimplementation] = ACTIONS(2500), + [anon_sym_ATcompatibility_alias] = ACTIONS(2500), + [anon_sym_ATtry] = ACTIONS(2500), + [anon_sym___try] = ACTIONS(2498), + [anon_sym_ATthrow] = ACTIONS(2500), + [anon_sym_ATselector] = ACTIONS(2500), + [anon_sym_ATavailable] = ACTIONS(2500), + [anon_sym___builtin_available] = ACTIONS(2498), + [anon_sym_va_arg] = ACTIONS(2498), + [anon_sym_ATencode] = ACTIONS(2500), + [anon_sym_ATsynchronized] = ACTIONS(2500), + [anon_sym_BOOL] = ACTIONS(2498), + [anon_sym_IMP] = ACTIONS(2498), + [anon_sym_SEL] = ACTIONS(2498), + [anon_sym_Class] = ACTIONS(2498), + [anon_sym_id] = ACTIONS(2498), + }, + [720] = { + [sym_identifier] = ACTIONS(2408), + [aux_sym_preproc_include_token1] = ACTIONS(2408), + [aux_sym_preproc_include_token2] = ACTIONS(2408), + [aux_sym_preproc_def_token1] = ACTIONS(2408), + [aux_sym_preproc_if_token1] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2408), + [sym_preproc_directive] = ACTIONS(2408), + [anon_sym_LPAREN2] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2408), + [anon_sym_PLUS] = ACTIONS(2408), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_CARET] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym___extension__] = ACTIONS(2408), + [anon_sym_typedef] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym___attribute__] = ACTIONS(2408), + [anon_sym___attribute] = ACTIONS(2408), + [anon_sym_noreturn] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym___declspec] = ACTIONS(2408), + [anon_sym___cdecl] = ACTIONS(2408), + [anon_sym___clrcall] = ACTIONS(2408), + [anon_sym___stdcall] = ACTIONS(2408), + [anon_sym___fastcall] = ACTIONS(2408), + [anon_sym___thiscall] = ACTIONS(2408), + [anon_sym___vectorcall] = ACTIONS(2408), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_signed] = ACTIONS(2408), + [anon_sym_unsigned] = ACTIONS(2408), + [anon_sym_long] = ACTIONS(2408), + [anon_sym_short] = ACTIONS(2408), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_ATautoreleasepool] = ACTIONS(2410), + [anon_sym_auto] = ACTIONS(2408), + [anon_sym_register] = ACTIONS(2408), + [anon_sym_inline] = ACTIONS(2408), + [anon_sym___inline] = ACTIONS(2408), + [anon_sym___inline__] = ACTIONS(2408), + [anon_sym___forceinline] = ACTIONS(2408), + [anon_sym_thread_local] = ACTIONS(2408), + [anon_sym___thread] = ACTIONS(2408), + [anon_sym_CG_EXTERN] = ACTIONS(2408), + [anon_sym_CG_INLINE] = ACTIONS(2408), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2408), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2408), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2408), + [anon_sym_IBOutlet] = ACTIONS(2408), + [anon_sym_IBInspectable] = ACTIONS(2408), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2408), + [anon_sym_NS_INLINE] = ACTIONS(2408), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2408), + [anon_sym_OBJC_EXPORT] = ACTIONS(2408), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2408), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_constexpr] = ACTIONS(2408), + [anon_sym_volatile] = ACTIONS(2408), + [anon_sym_restrict] = ACTIONS(2408), + [anon_sym___restrict__] = ACTIONS(2408), + [anon_sym__Atomic] = ACTIONS(2408), + [anon_sym__Noreturn] = ACTIONS(2408), + [anon_sym__Nonnull] = ACTIONS(2408), + [anon_sym_nullable] = ACTIONS(2408), + [anon_sym__Complex] = ACTIONS(2408), + [anon_sym__Nullable] = ACTIONS(2408), + [anon_sym__Nullable_result] = ACTIONS(2408), + [anon_sym__Null_unspecified] = ACTIONS(2408), + [anon_sym___autoreleasing] = ACTIONS(2408), + [anon_sym___block] = ACTIONS(2408), + [anon_sym___bridge] = ACTIONS(2408), + [anon_sym___bridge_retained] = ACTIONS(2408), + [anon_sym___bridge_transfer] = ACTIONS(2408), + [anon_sym___complex] = ACTIONS(2408), + [anon_sym___const] = ACTIONS(2408), + [anon_sym___imag] = ACTIONS(2408), + [anon_sym___kindof] = ACTIONS(2408), + [anon_sym___nonnull] = ACTIONS(2408), + [anon_sym___nullable] = ACTIONS(2408), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2408), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2408), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2408), + [anon_sym___real] = ACTIONS(2408), + [anon_sym___strong] = ACTIONS(2408), + [anon_sym___unsafe_unretained] = ACTIONS(2408), + [anon_sym___unused] = ACTIONS(2408), + [anon_sym___weak] = ACTIONS(2408), + [anon_sym_alignas] = ACTIONS(2408), + [anon_sym__Alignas] = ACTIONS(2408), + [sym_primitive_type] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_struct] = ACTIONS(2408), + [anon_sym_union] = ACTIONS(2408), + [anon_sym_if] = ACTIONS(2408), + [anon_sym_else] = ACTIONS(2408), + [anon_sym_switch] = ACTIONS(2408), + [anon_sym_case] = ACTIONS(2408), + [anon_sym_default] = ACTIONS(2408), + [anon_sym_while] = ACTIONS(2408), + [anon_sym_do] = ACTIONS(2408), + [anon_sym_for] = ACTIONS(2408), + [anon_sym_in] = ACTIONS(2408), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_break] = ACTIONS(2408), + [anon_sym_continue] = ACTIONS(2408), + [anon_sym_goto] = ACTIONS(2408), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_sizeof] = ACTIONS(2408), + [anon_sym___alignof__] = ACTIONS(2408), + [anon_sym___alignof] = ACTIONS(2408), + [anon_sym__alignof] = ACTIONS(2408), + [anon_sym_alignof] = ACTIONS(2408), + [anon_sym__Alignof] = ACTIONS(2408), + [anon_sym_offsetof] = ACTIONS(2408), + [anon_sym__Generic] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2410), + [anon_sym_u_SQUOTE] = ACTIONS(2410), + [anon_sym_U_SQUOTE] = ACTIONS(2410), + [anon_sym_u8_SQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(2408), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_L_DQUOTE] = ACTIONS(2410), + [anon_sym_u_DQUOTE] = ACTIONS(2410), + [anon_sym_U_DQUOTE] = ACTIONS(2410), + [anon_sym_u8_DQUOTE] = ACTIONS(2410), + [sym_true] = ACTIONS(2408), + [sym_false] = ACTIONS(2408), + [anon_sym_NULL] = ACTIONS(2408), + [anon_sym_nullptr] = ACTIONS(2408), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2408), + [anon_sym___typeof] = ACTIONS(2408), + [anon_sym_typeof] = ACTIONS(2408), + [anon_sym_ATimport] = ACTIONS(2410), + [aux_sym_preproc_undef_token1] = ACTIONS(2408), + [anon_sym_POUND] = ACTIONS(2408), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2408), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2408), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2408), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2408), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2408), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2408), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2408), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2408), + [anon_sym_NS_AVAILABLE] = ACTIONS(2408), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2408), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_API_AVAILABLE] = ACTIONS(2408), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_API_DEPRECATED] = ACTIONS(2408), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2408), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2408), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2408), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2408), + [anon_sym___deprecated_msg] = ACTIONS(2408), + [anon_sym___deprecated_enum_msg] = ACTIONS(2408), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2408), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2408), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2408), + [anon_sym_ATprotocol] = ACTIONS(2410), + [anon_sym_ATinterface] = ACTIONS(2410), + [anon_sym_ATimplementation] = ACTIONS(2410), + [anon_sym_ATcompatibility_alias] = ACTIONS(2410), + [anon_sym_ATtry] = ACTIONS(2410), + [anon_sym___try] = ACTIONS(2408), + [anon_sym_ATthrow] = ACTIONS(2410), + [anon_sym_ATselector] = ACTIONS(2410), + [anon_sym_ATavailable] = ACTIONS(2410), + [anon_sym___builtin_available] = ACTIONS(2408), + [anon_sym_va_arg] = ACTIONS(2408), + [anon_sym_ATencode] = ACTIONS(2410), + [anon_sym_ATsynchronized] = ACTIONS(2410), + [anon_sym_BOOL] = ACTIONS(2408), + [anon_sym_IMP] = ACTIONS(2408), + [anon_sym_SEL] = ACTIONS(2408), + [anon_sym_Class] = ACTIONS(2408), + [anon_sym_id] = ACTIONS(2408), + }, + [721] = { + [sym_identifier] = ACTIONS(2508), + [aux_sym_preproc_include_token1] = ACTIONS(2508), + [aux_sym_preproc_include_token2] = ACTIONS(2508), + [aux_sym_preproc_def_token1] = ACTIONS(2508), + [aux_sym_preproc_if_token1] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2508), + [sym_preproc_directive] = ACTIONS(2508), + [anon_sym_LPAREN2] = ACTIONS(2510), + [anon_sym_BANG] = ACTIONS(2510), + [anon_sym_TILDE] = ACTIONS(2510), + [anon_sym_DASH] = ACTIONS(2508), + [anon_sym_PLUS] = ACTIONS(2508), + [anon_sym_STAR] = ACTIONS(2510), + [anon_sym_CARET] = ACTIONS(2510), + [anon_sym_AMP] = ACTIONS(2510), + [anon_sym_SEMI] = ACTIONS(2510), + [anon_sym___extension__] = ACTIONS(2508), + [anon_sym_typedef] = ACTIONS(2508), + [anon_sym_extern] = ACTIONS(2508), + [anon_sym___attribute__] = ACTIONS(2508), + [anon_sym___attribute] = ACTIONS(2508), + [anon_sym_noreturn] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym___declspec] = ACTIONS(2508), + [anon_sym___cdecl] = ACTIONS(2508), + [anon_sym___clrcall] = ACTIONS(2508), + [anon_sym___stdcall] = ACTIONS(2508), + [anon_sym___fastcall] = ACTIONS(2508), + [anon_sym___thiscall] = ACTIONS(2508), + [anon_sym___vectorcall] = ACTIONS(2508), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_RBRACE] = ACTIONS(2510), + [anon_sym_signed] = ACTIONS(2508), + [anon_sym_unsigned] = ACTIONS(2508), + [anon_sym_long] = ACTIONS(2508), + [anon_sym_short] = ACTIONS(2508), + [anon_sym_static] = ACTIONS(2508), + [anon_sym_ATautoreleasepool] = ACTIONS(2510), + [anon_sym_auto] = ACTIONS(2508), + [anon_sym_register] = ACTIONS(2508), + [anon_sym_inline] = ACTIONS(2508), + [anon_sym___inline] = ACTIONS(2508), + [anon_sym___inline__] = ACTIONS(2508), + [anon_sym___forceinline] = ACTIONS(2508), + [anon_sym_thread_local] = ACTIONS(2508), + [anon_sym___thread] = ACTIONS(2508), + [anon_sym_CG_EXTERN] = ACTIONS(2508), + [anon_sym_CG_INLINE] = ACTIONS(2508), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2508), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2508), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2508), + [anon_sym_IBOutlet] = ACTIONS(2508), + [anon_sym_IBInspectable] = ACTIONS(2508), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2508), + [anon_sym_NS_INLINE] = ACTIONS(2508), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2508), + [anon_sym_OBJC_EXPORT] = ACTIONS(2508), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2508), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2508), + [anon_sym_const] = ACTIONS(2508), + [anon_sym_constexpr] = ACTIONS(2508), + [anon_sym_volatile] = ACTIONS(2508), + [anon_sym_restrict] = ACTIONS(2508), + [anon_sym___restrict__] = ACTIONS(2508), + [anon_sym__Atomic] = ACTIONS(2508), + [anon_sym__Noreturn] = ACTIONS(2508), + [anon_sym__Nonnull] = ACTIONS(2508), + [anon_sym_nullable] = ACTIONS(2508), + [anon_sym__Complex] = ACTIONS(2508), + [anon_sym__Nullable] = ACTIONS(2508), + [anon_sym__Nullable_result] = ACTIONS(2508), + [anon_sym__Null_unspecified] = ACTIONS(2508), + [anon_sym___autoreleasing] = ACTIONS(2508), + [anon_sym___block] = ACTIONS(2508), + [anon_sym___bridge] = ACTIONS(2508), + [anon_sym___bridge_retained] = ACTIONS(2508), + [anon_sym___bridge_transfer] = ACTIONS(2508), + [anon_sym___complex] = ACTIONS(2508), + [anon_sym___const] = ACTIONS(2508), + [anon_sym___imag] = ACTIONS(2508), + [anon_sym___kindof] = ACTIONS(2508), + [anon_sym___nonnull] = ACTIONS(2508), + [anon_sym___nullable] = ACTIONS(2508), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2508), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2508), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2508), + [anon_sym___real] = ACTIONS(2508), + [anon_sym___strong] = ACTIONS(2508), + [anon_sym___unsafe_unretained] = ACTIONS(2508), + [anon_sym___unused] = ACTIONS(2508), + [anon_sym___weak] = ACTIONS(2508), + [anon_sym_alignas] = ACTIONS(2508), + [anon_sym__Alignas] = ACTIONS(2508), + [sym_primitive_type] = ACTIONS(2508), + [anon_sym_enum] = ACTIONS(2508), + [anon_sym_struct] = ACTIONS(2508), + [anon_sym_union] = ACTIONS(2508), + [anon_sym_if] = ACTIONS(2508), + [anon_sym_else] = ACTIONS(2508), + [anon_sym_switch] = ACTIONS(2508), + [anon_sym_case] = ACTIONS(2508), + [anon_sym_default] = ACTIONS(2508), + [anon_sym_while] = ACTIONS(2508), + [anon_sym_do] = ACTIONS(2508), + [anon_sym_for] = ACTIONS(2508), + [anon_sym_in] = ACTIONS(2508), + [anon_sym_return] = ACTIONS(2508), + [anon_sym_break] = ACTIONS(2508), + [anon_sym_continue] = ACTIONS(2508), + [anon_sym_goto] = ACTIONS(2508), + [anon_sym_DASH_DASH] = ACTIONS(2510), + [anon_sym_PLUS_PLUS] = ACTIONS(2510), + [anon_sym_sizeof] = ACTIONS(2508), + [anon_sym___alignof__] = ACTIONS(2508), + [anon_sym___alignof] = ACTIONS(2508), + [anon_sym__alignof] = ACTIONS(2508), + [anon_sym_alignof] = ACTIONS(2508), + [anon_sym__Alignof] = ACTIONS(2508), + [anon_sym_offsetof] = ACTIONS(2508), + [anon_sym__Generic] = ACTIONS(2508), + [anon_sym_asm] = ACTIONS(2508), + [anon_sym___asm__] = ACTIONS(2508), + [anon_sym___asm] = ACTIONS(2508), + [sym_number_literal] = ACTIONS(2510), + [anon_sym_L_SQUOTE] = ACTIONS(2510), + [anon_sym_u_SQUOTE] = ACTIONS(2510), + [anon_sym_U_SQUOTE] = ACTIONS(2510), + [anon_sym_u8_SQUOTE] = ACTIONS(2510), + [anon_sym_SQUOTE] = ACTIONS(2510), + [anon_sym_AT] = ACTIONS(2508), + [anon_sym_DQUOTE] = ACTIONS(2510), + [anon_sym_L_DQUOTE] = ACTIONS(2510), + [anon_sym_u_DQUOTE] = ACTIONS(2510), + [anon_sym_U_DQUOTE] = ACTIONS(2510), + [anon_sym_u8_DQUOTE] = ACTIONS(2510), + [sym_true] = ACTIONS(2508), + [sym_false] = ACTIONS(2508), + [anon_sym_NULL] = ACTIONS(2508), + [anon_sym_nullptr] = ACTIONS(2508), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2508), + [anon_sym___typeof] = ACTIONS(2508), + [anon_sym_typeof] = ACTIONS(2508), + [anon_sym_ATimport] = ACTIONS(2510), + [aux_sym_preproc_undef_token1] = ACTIONS(2508), + [anon_sym_POUND] = ACTIONS(2508), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2508), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2508), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2508), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2508), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2508), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2508), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2508), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2508), + [anon_sym_NS_AVAILABLE] = ACTIONS(2508), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2508), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_API_AVAILABLE] = ACTIONS(2508), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_API_DEPRECATED] = ACTIONS(2508), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2508), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2508), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2508), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2508), + [anon_sym___deprecated_msg] = ACTIONS(2508), + [anon_sym___deprecated_enum_msg] = ACTIONS(2508), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2508), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2508), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2508), + [anon_sym_ATprotocol] = ACTIONS(2510), + [anon_sym_ATinterface] = ACTIONS(2510), + [anon_sym_ATimplementation] = ACTIONS(2510), + [anon_sym_ATcompatibility_alias] = ACTIONS(2510), + [anon_sym_ATtry] = ACTIONS(2510), + [anon_sym___try] = ACTIONS(2508), + [anon_sym_ATthrow] = ACTIONS(2510), + [anon_sym_ATselector] = ACTIONS(2510), + [anon_sym_ATavailable] = ACTIONS(2510), + [anon_sym___builtin_available] = ACTIONS(2508), + [anon_sym_va_arg] = ACTIONS(2508), + [anon_sym_ATencode] = ACTIONS(2510), + [anon_sym_ATsynchronized] = ACTIONS(2510), + [anon_sym_BOOL] = ACTIONS(2508), + [anon_sym_IMP] = ACTIONS(2508), + [anon_sym_SEL] = ACTIONS(2508), + [anon_sym_Class] = ACTIONS(2508), + [anon_sym_id] = ACTIONS(2508), + }, + [722] = { + [ts_builtin_sym_end] = ACTIONS(2438), + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_include_token1] = ACTIONS(2436), + [aux_sym_preproc_include_token2] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_ATautoreleasepool] = ACTIONS(2438), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_case] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_goto] = ACTIONS(2436), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_sizeof] = ACTIONS(2436), + [anon_sym___alignof__] = ACTIONS(2436), + [anon_sym___alignof] = ACTIONS(2436), + [anon_sym__alignof] = ACTIONS(2436), + [anon_sym_alignof] = ACTIONS(2436), + [anon_sym__Alignof] = ACTIONS(2436), + [anon_sym_offsetof] = ACTIONS(2436), + [anon_sym__Generic] = ACTIONS(2436), + [anon_sym_asm] = ACTIONS(2436), + [anon_sym___asm__] = ACTIONS(2436), + [anon_sym___asm] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_L_SQUOTE] = ACTIONS(2438), + [anon_sym_u_SQUOTE] = ACTIONS(2438), + [anon_sym_U_SQUOTE] = ACTIONS(2438), + [anon_sym_u8_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_L_DQUOTE] = ACTIONS(2438), + [anon_sym_u_DQUOTE] = ACTIONS(2438), + [anon_sym_U_DQUOTE] = ACTIONS(2438), + [anon_sym_u8_DQUOTE] = ACTIONS(2438), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_nullptr] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [anon_sym_ATimport] = ACTIONS(2438), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_POUND] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATprotocol] = ACTIONS(2438), + [anon_sym_ATinterface] = ACTIONS(2438), + [anon_sym_ATimplementation] = ACTIONS(2438), + [anon_sym_ATcompatibility_alias] = ACTIONS(2438), + [anon_sym_ATtry] = ACTIONS(2438), + [anon_sym___try] = ACTIONS(2436), + [anon_sym_ATthrow] = ACTIONS(2438), + [anon_sym_ATselector] = ACTIONS(2438), + [anon_sym_ATavailable] = ACTIONS(2438), + [anon_sym___builtin_available] = ACTIONS(2436), + [anon_sym_va_arg] = ACTIONS(2436), + [anon_sym_ATencode] = ACTIONS(2438), + [anon_sym_ATsynchronized] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [723] = { + [ts_builtin_sym_end] = ACTIONS(2438), + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_include_token1] = ACTIONS(2436), + [aux_sym_preproc_include_token2] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_ATautoreleasepool] = ACTIONS(2438), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_case] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_goto] = ACTIONS(2436), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_sizeof] = ACTIONS(2436), + [anon_sym___alignof__] = ACTIONS(2436), + [anon_sym___alignof] = ACTIONS(2436), + [anon_sym__alignof] = ACTIONS(2436), + [anon_sym_alignof] = ACTIONS(2436), + [anon_sym__Alignof] = ACTIONS(2436), + [anon_sym_offsetof] = ACTIONS(2436), + [anon_sym__Generic] = ACTIONS(2436), + [anon_sym_asm] = ACTIONS(2436), + [anon_sym___asm__] = ACTIONS(2436), + [anon_sym___asm] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_L_SQUOTE] = ACTIONS(2438), + [anon_sym_u_SQUOTE] = ACTIONS(2438), + [anon_sym_U_SQUOTE] = ACTIONS(2438), + [anon_sym_u8_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_L_DQUOTE] = ACTIONS(2438), + [anon_sym_u_DQUOTE] = ACTIONS(2438), + [anon_sym_U_DQUOTE] = ACTIONS(2438), + [anon_sym_u8_DQUOTE] = ACTIONS(2438), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_nullptr] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [anon_sym_ATimport] = ACTIONS(2438), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_POUND] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATprotocol] = ACTIONS(2438), + [anon_sym_ATinterface] = ACTIONS(2438), + [anon_sym_ATimplementation] = ACTIONS(2438), + [anon_sym_ATcompatibility_alias] = ACTIONS(2438), + [anon_sym_ATtry] = ACTIONS(2438), + [anon_sym___try] = ACTIONS(2436), + [anon_sym_ATthrow] = ACTIONS(2438), + [anon_sym_ATselector] = ACTIONS(2438), + [anon_sym_ATavailable] = ACTIONS(2438), + [anon_sym___builtin_available] = ACTIONS(2436), + [anon_sym_va_arg] = ACTIONS(2436), + [anon_sym_ATencode] = ACTIONS(2438), + [anon_sym_ATsynchronized] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [724] = { + [ts_builtin_sym_end] = ACTIONS(2438), + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_include_token1] = ACTIONS(2436), + [aux_sym_preproc_include_token2] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_ATautoreleasepool] = ACTIONS(2438), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_case] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_goto] = ACTIONS(2436), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_sizeof] = ACTIONS(2436), + [anon_sym___alignof__] = ACTIONS(2436), + [anon_sym___alignof] = ACTIONS(2436), + [anon_sym__alignof] = ACTIONS(2436), + [anon_sym_alignof] = ACTIONS(2436), + [anon_sym__Alignof] = ACTIONS(2436), + [anon_sym_offsetof] = ACTIONS(2436), + [anon_sym__Generic] = ACTIONS(2436), + [anon_sym_asm] = ACTIONS(2436), + [anon_sym___asm__] = ACTIONS(2436), + [anon_sym___asm] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_L_SQUOTE] = ACTIONS(2438), + [anon_sym_u_SQUOTE] = ACTIONS(2438), + [anon_sym_U_SQUOTE] = ACTIONS(2438), + [anon_sym_u8_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_L_DQUOTE] = ACTIONS(2438), + [anon_sym_u_DQUOTE] = ACTIONS(2438), + [anon_sym_U_DQUOTE] = ACTIONS(2438), + [anon_sym_u8_DQUOTE] = ACTIONS(2438), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_nullptr] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [anon_sym_ATimport] = ACTIONS(2438), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_POUND] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATprotocol] = ACTIONS(2438), + [anon_sym_ATinterface] = ACTIONS(2438), + [anon_sym_ATimplementation] = ACTIONS(2438), + [anon_sym_ATcompatibility_alias] = ACTIONS(2438), + [anon_sym_ATtry] = ACTIONS(2438), + [anon_sym___try] = ACTIONS(2436), + [anon_sym_ATthrow] = ACTIONS(2438), + [anon_sym_ATselector] = ACTIONS(2438), + [anon_sym_ATavailable] = ACTIONS(2438), + [anon_sym___builtin_available] = ACTIONS(2436), + [anon_sym_va_arg] = ACTIONS(2436), + [anon_sym_ATencode] = ACTIONS(2438), + [anon_sym_ATsynchronized] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [725] = { + [ts_builtin_sym_end] = ACTIONS(2550), + [sym_identifier] = ACTIONS(2548), + [aux_sym_preproc_include_token1] = ACTIONS(2548), + [aux_sym_preproc_include_token2] = ACTIONS(2548), + [aux_sym_preproc_def_token1] = ACTIONS(2548), + [aux_sym_preproc_if_token1] = ACTIONS(2548), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2548), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2548), + [sym_preproc_directive] = ACTIONS(2548), + [anon_sym_LPAREN2] = ACTIONS(2550), + [anon_sym_BANG] = ACTIONS(2550), + [anon_sym_TILDE] = ACTIONS(2550), + [anon_sym_DASH] = ACTIONS(2548), + [anon_sym_PLUS] = ACTIONS(2548), + [anon_sym_STAR] = ACTIONS(2550), + [anon_sym_CARET] = ACTIONS(2550), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_SEMI] = ACTIONS(2550), + [anon_sym___extension__] = ACTIONS(2548), + [anon_sym_typedef] = ACTIONS(2548), + [anon_sym_extern] = ACTIONS(2548), + [anon_sym___attribute__] = ACTIONS(2548), + [anon_sym___attribute] = ACTIONS(2548), + [anon_sym_noreturn] = ACTIONS(2548), + [anon_sym_LBRACK] = ACTIONS(2550), + [anon_sym___declspec] = ACTIONS(2548), + [anon_sym___cdecl] = ACTIONS(2548), + [anon_sym___clrcall] = ACTIONS(2548), + [anon_sym___stdcall] = ACTIONS(2548), + [anon_sym___fastcall] = ACTIONS(2548), + [anon_sym___thiscall] = ACTIONS(2548), + [anon_sym___vectorcall] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2550), + [anon_sym_signed] = ACTIONS(2548), + [anon_sym_unsigned] = ACTIONS(2548), + [anon_sym_long] = ACTIONS(2548), + [anon_sym_short] = ACTIONS(2548), + [anon_sym_static] = ACTIONS(2548), + [anon_sym_ATautoreleasepool] = ACTIONS(2550), + [anon_sym_auto] = ACTIONS(2548), + [anon_sym_register] = ACTIONS(2548), + [anon_sym_inline] = ACTIONS(2548), + [anon_sym___inline] = ACTIONS(2548), + [anon_sym___inline__] = ACTIONS(2548), + [anon_sym___forceinline] = ACTIONS(2548), + [anon_sym_thread_local] = ACTIONS(2548), + [anon_sym___thread] = ACTIONS(2548), + [anon_sym_CG_EXTERN] = ACTIONS(2548), + [anon_sym_CG_INLINE] = ACTIONS(2548), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2548), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2548), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2548), + [anon_sym_IBOutlet] = ACTIONS(2548), + [anon_sym_IBInspectable] = ACTIONS(2548), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2548), + [anon_sym_NS_INLINE] = ACTIONS(2548), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2548), + [anon_sym_OBJC_EXPORT] = ACTIONS(2548), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2548), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2548), + [anon_sym_const] = ACTIONS(2548), + [anon_sym_constexpr] = ACTIONS(2548), + [anon_sym_volatile] = ACTIONS(2548), + [anon_sym_restrict] = ACTIONS(2548), + [anon_sym___restrict__] = ACTIONS(2548), + [anon_sym__Atomic] = ACTIONS(2548), + [anon_sym__Noreturn] = ACTIONS(2548), + [anon_sym__Nonnull] = ACTIONS(2548), + [anon_sym_nullable] = ACTIONS(2548), + [anon_sym__Complex] = ACTIONS(2548), + [anon_sym__Nullable] = ACTIONS(2548), + [anon_sym__Nullable_result] = ACTIONS(2548), + [anon_sym__Null_unspecified] = ACTIONS(2548), + [anon_sym___autoreleasing] = ACTIONS(2548), + [anon_sym___block] = ACTIONS(2548), + [anon_sym___bridge] = ACTIONS(2548), + [anon_sym___bridge_retained] = ACTIONS(2548), + [anon_sym___bridge_transfer] = ACTIONS(2548), + [anon_sym___complex] = ACTIONS(2548), + [anon_sym___const] = ACTIONS(2548), + [anon_sym___imag] = ACTIONS(2548), + [anon_sym___kindof] = ACTIONS(2548), + [anon_sym___nonnull] = ACTIONS(2548), + [anon_sym___nullable] = ACTIONS(2548), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2548), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2548), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2548), + [anon_sym___real] = ACTIONS(2548), + [anon_sym___strong] = ACTIONS(2548), + [anon_sym___unsafe_unretained] = ACTIONS(2548), + [anon_sym___unused] = ACTIONS(2548), + [anon_sym___weak] = ACTIONS(2548), + [anon_sym_alignas] = ACTIONS(2548), + [anon_sym__Alignas] = ACTIONS(2548), + [sym_primitive_type] = ACTIONS(2548), + [anon_sym_enum] = ACTIONS(2548), + [anon_sym_struct] = ACTIONS(2548), + [anon_sym_union] = ACTIONS(2548), + [anon_sym_if] = ACTIONS(2548), + [anon_sym_else] = ACTIONS(2548), + [anon_sym_switch] = ACTIONS(2548), + [anon_sym_case] = ACTIONS(2548), + [anon_sym_default] = ACTIONS(2548), + [anon_sym_while] = ACTIONS(2548), + [anon_sym_do] = ACTIONS(2548), + [anon_sym_for] = ACTIONS(2548), + [anon_sym_in] = ACTIONS(2548), + [anon_sym_return] = ACTIONS(2548), + [anon_sym_break] = ACTIONS(2548), + [anon_sym_continue] = ACTIONS(2548), + [anon_sym_goto] = ACTIONS(2548), + [anon_sym_DASH_DASH] = ACTIONS(2550), + [anon_sym_PLUS_PLUS] = ACTIONS(2550), + [anon_sym_sizeof] = ACTIONS(2548), + [anon_sym___alignof__] = ACTIONS(2548), + [anon_sym___alignof] = ACTIONS(2548), + [anon_sym__alignof] = ACTIONS(2548), + [anon_sym_alignof] = ACTIONS(2548), + [anon_sym__Alignof] = ACTIONS(2548), + [anon_sym_offsetof] = ACTIONS(2548), + [anon_sym__Generic] = ACTIONS(2548), + [anon_sym_asm] = ACTIONS(2548), + [anon_sym___asm__] = ACTIONS(2548), + [anon_sym___asm] = ACTIONS(2548), + [sym_number_literal] = ACTIONS(2550), + [anon_sym_L_SQUOTE] = ACTIONS(2550), + [anon_sym_u_SQUOTE] = ACTIONS(2550), + [anon_sym_U_SQUOTE] = ACTIONS(2550), + [anon_sym_u8_SQUOTE] = ACTIONS(2550), + [anon_sym_SQUOTE] = ACTIONS(2550), + [anon_sym_AT] = ACTIONS(2548), + [anon_sym_DQUOTE] = ACTIONS(2550), + [anon_sym_L_DQUOTE] = ACTIONS(2550), + [anon_sym_u_DQUOTE] = ACTIONS(2550), + [anon_sym_U_DQUOTE] = ACTIONS(2550), + [anon_sym_u8_DQUOTE] = ACTIONS(2550), + [sym_true] = ACTIONS(2548), + [sym_false] = ACTIONS(2548), + [anon_sym_NULL] = ACTIONS(2548), + [anon_sym_nullptr] = ACTIONS(2548), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2548), + [anon_sym___typeof] = ACTIONS(2548), + [anon_sym_typeof] = ACTIONS(2548), + [anon_sym_ATimport] = ACTIONS(2550), + [aux_sym_preproc_undef_token1] = ACTIONS(2548), + [anon_sym_POUND] = ACTIONS(2548), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2548), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2548), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2548), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2548), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2548), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2548), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2548), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2548), + [anon_sym_NS_AVAILABLE] = ACTIONS(2548), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2548), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_API_AVAILABLE] = ACTIONS(2548), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_API_DEPRECATED] = ACTIONS(2548), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2548), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2548), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2548), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2548), + [anon_sym___deprecated_msg] = ACTIONS(2548), + [anon_sym___deprecated_enum_msg] = ACTIONS(2548), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2548), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2548), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2548), + [anon_sym_ATprotocol] = ACTIONS(2550), + [anon_sym_ATinterface] = ACTIONS(2550), + [anon_sym_ATimplementation] = ACTIONS(2550), + [anon_sym_ATcompatibility_alias] = ACTIONS(2550), + [anon_sym_ATtry] = ACTIONS(2550), + [anon_sym___try] = ACTIONS(2548), + [anon_sym_ATthrow] = ACTIONS(2550), + [anon_sym_ATselector] = ACTIONS(2550), + [anon_sym_ATavailable] = ACTIONS(2550), + [anon_sym___builtin_available] = ACTIONS(2548), + [anon_sym_va_arg] = ACTIONS(2548), + [anon_sym_ATencode] = ACTIONS(2550), + [anon_sym_ATsynchronized] = ACTIONS(2550), + [anon_sym_BOOL] = ACTIONS(2548), + [anon_sym_IMP] = ACTIONS(2548), + [anon_sym_SEL] = ACTIONS(2548), + [anon_sym_Class] = ACTIONS(2548), + [anon_sym_id] = ACTIONS(2548), + }, + [726] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_include_token1] = ACTIONS(2436), + [aux_sym_preproc_include_token2] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_ATautoreleasepool] = ACTIONS(2438), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_case] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_goto] = ACTIONS(2436), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_sizeof] = ACTIONS(2436), + [anon_sym___alignof__] = ACTIONS(2436), + [anon_sym___alignof] = ACTIONS(2436), + [anon_sym__alignof] = ACTIONS(2436), + [anon_sym_alignof] = ACTIONS(2436), + [anon_sym__Alignof] = ACTIONS(2436), + [anon_sym_offsetof] = ACTIONS(2436), + [anon_sym__Generic] = ACTIONS(2436), + [anon_sym_asm] = ACTIONS(2436), + [anon_sym___asm__] = ACTIONS(2436), + [anon_sym___asm] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_L_SQUOTE] = ACTIONS(2438), + [anon_sym_u_SQUOTE] = ACTIONS(2438), + [anon_sym_U_SQUOTE] = ACTIONS(2438), + [anon_sym_u8_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_L_DQUOTE] = ACTIONS(2438), + [anon_sym_u_DQUOTE] = ACTIONS(2438), + [anon_sym_U_DQUOTE] = ACTIONS(2438), + [anon_sym_u8_DQUOTE] = ACTIONS(2438), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_nullptr] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [anon_sym_ATimport] = ACTIONS(2438), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_POUND] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATprotocol] = ACTIONS(2438), + [anon_sym_ATinterface] = ACTIONS(2438), + [anon_sym_ATimplementation] = ACTIONS(2438), + [anon_sym_ATcompatibility_alias] = ACTIONS(2438), + [anon_sym_ATtry] = ACTIONS(2438), + [anon_sym___try] = ACTIONS(2436), + [anon_sym_ATthrow] = ACTIONS(2438), + [anon_sym_ATselector] = ACTIONS(2438), + [anon_sym_ATavailable] = ACTIONS(2438), + [anon_sym___builtin_available] = ACTIONS(2436), + [anon_sym_va_arg] = ACTIONS(2436), + [anon_sym_ATencode] = ACTIONS(2438), + [anon_sym_ATsynchronized] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [727] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_include_token1] = ACTIONS(2436), + [aux_sym_preproc_include_token2] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_ATautoreleasepool] = ACTIONS(2438), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_case] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_goto] = ACTIONS(2436), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_sizeof] = ACTIONS(2436), + [anon_sym___alignof__] = ACTIONS(2436), + [anon_sym___alignof] = ACTIONS(2436), + [anon_sym__alignof] = ACTIONS(2436), + [anon_sym_alignof] = ACTIONS(2436), + [anon_sym__Alignof] = ACTIONS(2436), + [anon_sym_offsetof] = ACTIONS(2436), + [anon_sym__Generic] = ACTIONS(2436), + [anon_sym_asm] = ACTIONS(2436), + [anon_sym___asm__] = ACTIONS(2436), + [anon_sym___asm] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_L_SQUOTE] = ACTIONS(2438), + [anon_sym_u_SQUOTE] = ACTIONS(2438), + [anon_sym_U_SQUOTE] = ACTIONS(2438), + [anon_sym_u8_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_L_DQUOTE] = ACTIONS(2438), + [anon_sym_u_DQUOTE] = ACTIONS(2438), + [anon_sym_U_DQUOTE] = ACTIONS(2438), + [anon_sym_u8_DQUOTE] = ACTIONS(2438), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_nullptr] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [anon_sym_ATimport] = ACTIONS(2438), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_POUND] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATprotocol] = ACTIONS(2438), + [anon_sym_ATinterface] = ACTIONS(2438), + [anon_sym_ATimplementation] = ACTIONS(2438), + [anon_sym_ATcompatibility_alias] = ACTIONS(2438), + [anon_sym_ATtry] = ACTIONS(2438), + [anon_sym___try] = ACTIONS(2436), + [anon_sym_ATthrow] = ACTIONS(2438), + [anon_sym_ATselector] = ACTIONS(2438), + [anon_sym_ATavailable] = ACTIONS(2438), + [anon_sym___builtin_available] = ACTIONS(2436), + [anon_sym_va_arg] = ACTIONS(2436), + [anon_sym_ATencode] = ACTIONS(2438), + [anon_sym_ATsynchronized] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [728] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_include_token1] = ACTIONS(2436), + [aux_sym_preproc_include_token2] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_ATautoreleasepool] = ACTIONS(2438), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_case] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_goto] = ACTIONS(2436), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_sizeof] = ACTIONS(2436), + [anon_sym___alignof__] = ACTIONS(2436), + [anon_sym___alignof] = ACTIONS(2436), + [anon_sym__alignof] = ACTIONS(2436), + [anon_sym_alignof] = ACTIONS(2436), + [anon_sym__Alignof] = ACTIONS(2436), + [anon_sym_offsetof] = ACTIONS(2436), + [anon_sym__Generic] = ACTIONS(2436), + [anon_sym_asm] = ACTIONS(2436), + [anon_sym___asm__] = ACTIONS(2436), + [anon_sym___asm] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_L_SQUOTE] = ACTIONS(2438), + [anon_sym_u_SQUOTE] = ACTIONS(2438), + [anon_sym_U_SQUOTE] = ACTIONS(2438), + [anon_sym_u8_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_L_DQUOTE] = ACTIONS(2438), + [anon_sym_u_DQUOTE] = ACTIONS(2438), + [anon_sym_U_DQUOTE] = ACTIONS(2438), + [anon_sym_u8_DQUOTE] = ACTIONS(2438), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_nullptr] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [anon_sym_ATimport] = ACTIONS(2438), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_POUND] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATprotocol] = ACTIONS(2438), + [anon_sym_ATinterface] = ACTIONS(2438), + [anon_sym_ATimplementation] = ACTIONS(2438), + [anon_sym_ATcompatibility_alias] = ACTIONS(2438), + [anon_sym_ATtry] = ACTIONS(2438), + [anon_sym___try] = ACTIONS(2436), + [anon_sym_ATthrow] = ACTIONS(2438), + [anon_sym_ATselector] = ACTIONS(2438), + [anon_sym_ATavailable] = ACTIONS(2438), + [anon_sym___builtin_available] = ACTIONS(2436), + [anon_sym_va_arg] = ACTIONS(2436), + [anon_sym_ATencode] = ACTIONS(2438), + [anon_sym_ATsynchronized] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [729] = { + [ts_builtin_sym_end] = ACTIONS(2356), + [sym_identifier] = ACTIONS(2354), + [aux_sym_preproc_include_token1] = ACTIONS(2354), + [aux_sym_preproc_include_token2] = ACTIONS(2354), + [aux_sym_preproc_def_token1] = ACTIONS(2354), + [aux_sym_preproc_if_token1] = ACTIONS(2354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2354), + [sym_preproc_directive] = ACTIONS(2354), + [anon_sym_LPAREN2] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2354), + [anon_sym_PLUS] = ACTIONS(2354), + [anon_sym_STAR] = ACTIONS(2356), + [anon_sym_CARET] = ACTIONS(2356), + [anon_sym_AMP] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym___extension__] = ACTIONS(2354), + [anon_sym_typedef] = ACTIONS(2354), + [anon_sym_extern] = ACTIONS(2354), + [anon_sym___attribute__] = ACTIONS(2354), + [anon_sym___attribute] = ACTIONS(2354), + [anon_sym_noreturn] = ACTIONS(2354), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym___declspec] = ACTIONS(2354), + [anon_sym___cdecl] = ACTIONS(2354), + [anon_sym___clrcall] = ACTIONS(2354), + [anon_sym___stdcall] = ACTIONS(2354), + [anon_sym___fastcall] = ACTIONS(2354), + [anon_sym___thiscall] = ACTIONS(2354), + [anon_sym___vectorcall] = ACTIONS(2354), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_signed] = ACTIONS(2354), + [anon_sym_unsigned] = ACTIONS(2354), + [anon_sym_long] = ACTIONS(2354), + [anon_sym_short] = ACTIONS(2354), + [anon_sym_static] = ACTIONS(2354), + [anon_sym_ATautoreleasepool] = ACTIONS(2356), + [anon_sym_auto] = ACTIONS(2354), + [anon_sym_register] = ACTIONS(2354), + [anon_sym_inline] = ACTIONS(2354), + [anon_sym___inline] = ACTIONS(2354), + [anon_sym___inline__] = ACTIONS(2354), + [anon_sym___forceinline] = ACTIONS(2354), + [anon_sym_thread_local] = ACTIONS(2354), + [anon_sym___thread] = ACTIONS(2354), + [anon_sym_CG_EXTERN] = ACTIONS(2354), + [anon_sym_CG_INLINE] = ACTIONS(2354), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2354), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2354), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2354), + [anon_sym_IBOutlet] = ACTIONS(2354), + [anon_sym_IBInspectable] = ACTIONS(2354), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2354), + [anon_sym_NS_INLINE] = ACTIONS(2354), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2354), + [anon_sym_OBJC_EXPORT] = ACTIONS(2354), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2354), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2354), + [anon_sym_const] = ACTIONS(2354), + [anon_sym_constexpr] = ACTIONS(2354), + [anon_sym_volatile] = ACTIONS(2354), + [anon_sym_restrict] = ACTIONS(2354), + [anon_sym___restrict__] = ACTIONS(2354), + [anon_sym__Atomic] = ACTIONS(2354), + [anon_sym__Noreturn] = ACTIONS(2354), + [anon_sym__Nonnull] = ACTIONS(2354), + [anon_sym_nullable] = ACTIONS(2354), + [anon_sym__Complex] = ACTIONS(2354), + [anon_sym__Nullable] = ACTIONS(2354), + [anon_sym__Nullable_result] = ACTIONS(2354), + [anon_sym__Null_unspecified] = ACTIONS(2354), + [anon_sym___autoreleasing] = ACTIONS(2354), + [anon_sym___block] = ACTIONS(2354), + [anon_sym___bridge] = ACTIONS(2354), + [anon_sym___bridge_retained] = ACTIONS(2354), + [anon_sym___bridge_transfer] = ACTIONS(2354), + [anon_sym___complex] = ACTIONS(2354), + [anon_sym___const] = ACTIONS(2354), + [anon_sym___imag] = ACTIONS(2354), + [anon_sym___kindof] = ACTIONS(2354), + [anon_sym___nonnull] = ACTIONS(2354), + [anon_sym___nullable] = ACTIONS(2354), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2354), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2354), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2354), + [anon_sym___real] = ACTIONS(2354), + [anon_sym___strong] = ACTIONS(2354), + [anon_sym___unsafe_unretained] = ACTIONS(2354), + [anon_sym___unused] = ACTIONS(2354), + [anon_sym___weak] = ACTIONS(2354), + [anon_sym_alignas] = ACTIONS(2354), + [anon_sym__Alignas] = ACTIONS(2354), + [sym_primitive_type] = ACTIONS(2354), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(2354), + [anon_sym_union] = ACTIONS(2354), + [anon_sym_if] = ACTIONS(2354), + [anon_sym_else] = ACTIONS(2354), + [anon_sym_switch] = ACTIONS(2354), + [anon_sym_case] = ACTIONS(2354), + [anon_sym_default] = ACTIONS(2354), + [anon_sym_while] = ACTIONS(2354), + [anon_sym_do] = ACTIONS(2354), + [anon_sym_for] = ACTIONS(2354), + [anon_sym_in] = ACTIONS(2354), + [anon_sym_return] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_goto] = ACTIONS(2354), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_sizeof] = ACTIONS(2354), + [anon_sym___alignof__] = ACTIONS(2354), + [anon_sym___alignof] = ACTIONS(2354), + [anon_sym__alignof] = ACTIONS(2354), + [anon_sym_alignof] = ACTIONS(2354), + [anon_sym__Alignof] = ACTIONS(2354), + [anon_sym_offsetof] = ACTIONS(2354), + [anon_sym__Generic] = ACTIONS(2354), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2356), + [anon_sym_u_SQUOTE] = ACTIONS(2356), + [anon_sym_U_SQUOTE] = ACTIONS(2356), + [anon_sym_u8_SQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2354), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_L_DQUOTE] = ACTIONS(2356), + [anon_sym_u_DQUOTE] = ACTIONS(2356), + [anon_sym_U_DQUOTE] = ACTIONS(2356), + [anon_sym_u8_DQUOTE] = ACTIONS(2356), + [sym_true] = ACTIONS(2354), + [sym_false] = ACTIONS(2354), + [anon_sym_NULL] = ACTIONS(2354), + [anon_sym_nullptr] = ACTIONS(2354), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2354), + [anon_sym___typeof] = ACTIONS(2354), + [anon_sym_typeof] = ACTIONS(2354), + [anon_sym_ATimport] = ACTIONS(2356), + [aux_sym_preproc_undef_token1] = ACTIONS(2354), + [anon_sym_POUND] = ACTIONS(2354), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2354), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2354), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2354), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2354), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2354), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2354), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2354), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2354), + [anon_sym_NS_AVAILABLE] = ACTIONS(2354), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2354), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_API_AVAILABLE] = ACTIONS(2354), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_API_DEPRECATED] = ACTIONS(2354), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2354), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2354), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2354), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2354), + [anon_sym___deprecated_msg] = ACTIONS(2354), + [anon_sym___deprecated_enum_msg] = ACTIONS(2354), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2354), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2354), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2354), + [anon_sym_ATprotocol] = ACTIONS(2356), + [anon_sym_ATinterface] = ACTIONS(2356), + [anon_sym_ATimplementation] = ACTIONS(2356), + [anon_sym_ATcompatibility_alias] = ACTIONS(2356), + [anon_sym_ATcatch] = ACTIONS(2356), + [anon_sym___catch] = ACTIONS(2354), + [anon_sym_ATfinally] = ACTIONS(2356), + [anon_sym___finally] = ACTIONS(2354), + [anon_sym_ATselector] = ACTIONS(2356), + [anon_sym_ATavailable] = ACTIONS(2356), + [anon_sym___builtin_available] = ACTIONS(2354), + [anon_sym_va_arg] = ACTIONS(2354), + [anon_sym_ATencode] = ACTIONS(2356), + [anon_sym_BOOL] = ACTIONS(2354), + [anon_sym_IMP] = ACTIONS(2354), + [anon_sym_SEL] = ACTIONS(2354), + [anon_sym_Class] = ACTIONS(2354), + [anon_sym_id] = ACTIONS(2354), + }, + [730] = { + [ts_builtin_sym_end] = ACTIONS(2448), + [sym_identifier] = ACTIONS(2446), + [aux_sym_preproc_include_token1] = ACTIONS(2446), + [aux_sym_preproc_include_token2] = ACTIONS(2446), + [aux_sym_preproc_def_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token1] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2446), + [sym_preproc_directive] = ACTIONS(2446), + [anon_sym_LPAREN2] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_TILDE] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_STAR] = ACTIONS(2448), + [anon_sym_CARET] = ACTIONS(2448), + [anon_sym_AMP] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym___extension__] = ACTIONS(2446), + [anon_sym_typedef] = ACTIONS(2446), + [anon_sym_extern] = ACTIONS(2446), + [anon_sym___attribute__] = ACTIONS(2446), + [anon_sym___attribute] = ACTIONS(2446), + [anon_sym_noreturn] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym___declspec] = ACTIONS(2446), + [anon_sym___cdecl] = ACTIONS(2446), + [anon_sym___clrcall] = ACTIONS(2446), + [anon_sym___stdcall] = ACTIONS(2446), + [anon_sym___fastcall] = ACTIONS(2446), + [anon_sym___thiscall] = ACTIONS(2446), + [anon_sym___vectorcall] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_signed] = ACTIONS(2446), + [anon_sym_unsigned] = ACTIONS(2446), + [anon_sym_long] = ACTIONS(2446), + [anon_sym_short] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_ATautoreleasepool] = ACTIONS(2448), + [anon_sym_auto] = ACTIONS(2446), + [anon_sym_register] = ACTIONS(2446), + [anon_sym_inline] = ACTIONS(2446), + [anon_sym___inline] = ACTIONS(2446), + [anon_sym___inline__] = ACTIONS(2446), + [anon_sym___forceinline] = ACTIONS(2446), + [anon_sym_thread_local] = ACTIONS(2446), + [anon_sym___thread] = ACTIONS(2446), + [anon_sym_CG_EXTERN] = ACTIONS(2446), + [anon_sym_CG_INLINE] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2446), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2446), + [anon_sym_IBOutlet] = ACTIONS(2446), + [anon_sym_IBInspectable] = ACTIONS(2446), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2446), + [anon_sym_NS_INLINE] = ACTIONS(2446), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2446), + [anon_sym_OBJC_EXPORT] = ACTIONS(2446), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [anon_sym_constexpr] = ACTIONS(2446), + [anon_sym_volatile] = ACTIONS(2446), + [anon_sym_restrict] = ACTIONS(2446), + [anon_sym___restrict__] = ACTIONS(2446), + [anon_sym__Atomic] = ACTIONS(2446), + [anon_sym__Noreturn] = ACTIONS(2446), + [anon_sym__Nonnull] = ACTIONS(2446), + [anon_sym_nullable] = ACTIONS(2446), + [anon_sym__Complex] = ACTIONS(2446), + [anon_sym__Nullable] = ACTIONS(2446), + [anon_sym__Nullable_result] = ACTIONS(2446), + [anon_sym__Null_unspecified] = ACTIONS(2446), + [anon_sym___autoreleasing] = ACTIONS(2446), + [anon_sym___block] = ACTIONS(2446), + [anon_sym___bridge] = ACTIONS(2446), + [anon_sym___bridge_retained] = ACTIONS(2446), + [anon_sym___bridge_transfer] = ACTIONS(2446), + [anon_sym___complex] = ACTIONS(2446), + [anon_sym___const] = ACTIONS(2446), + [anon_sym___imag] = ACTIONS(2446), + [anon_sym___kindof] = ACTIONS(2446), + [anon_sym___nonnull] = ACTIONS(2446), + [anon_sym___nullable] = ACTIONS(2446), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2446), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2446), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2446), + [anon_sym___real] = ACTIONS(2446), + [anon_sym___strong] = ACTIONS(2446), + [anon_sym___unsafe_unretained] = ACTIONS(2446), + [anon_sym___unused] = ACTIONS(2446), + [anon_sym___weak] = ACTIONS(2446), + [anon_sym_alignas] = ACTIONS(2446), + [anon_sym__Alignas] = ACTIONS(2446), + [sym_primitive_type] = ACTIONS(2446), + [anon_sym_enum] = ACTIONS(2446), + [anon_sym_struct] = ACTIONS(2446), + [anon_sym_union] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2446), + [anon_sym_else] = ACTIONS(2446), + [anon_sym_switch] = ACTIONS(2446), + [anon_sym_case] = ACTIONS(2446), + [anon_sym_default] = ACTIONS(2446), + [anon_sym_while] = ACTIONS(2446), + [anon_sym_do] = ACTIONS(2446), + [anon_sym_for] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_return] = ACTIONS(2446), + [anon_sym_break] = ACTIONS(2446), + [anon_sym_continue] = ACTIONS(2446), + [anon_sym_goto] = ACTIONS(2446), + [anon_sym_DASH_DASH] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2448), + [anon_sym_sizeof] = ACTIONS(2446), + [anon_sym___alignof__] = ACTIONS(2446), + [anon_sym___alignof] = ACTIONS(2446), + [anon_sym__alignof] = ACTIONS(2446), + [anon_sym_alignof] = ACTIONS(2446), + [anon_sym__Alignof] = ACTIONS(2446), + [anon_sym_offsetof] = ACTIONS(2446), + [anon_sym__Generic] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(2446), + [anon_sym___asm__] = ACTIONS(2446), + [anon_sym___asm] = ACTIONS(2446), + [sym_number_literal] = ACTIONS(2448), + [anon_sym_L_SQUOTE] = ACTIONS(2448), + [anon_sym_u_SQUOTE] = ACTIONS(2448), + [anon_sym_U_SQUOTE] = ACTIONS(2448), + [anon_sym_u8_SQUOTE] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_L_DQUOTE] = ACTIONS(2448), + [anon_sym_u_DQUOTE] = ACTIONS(2448), + [anon_sym_U_DQUOTE] = ACTIONS(2448), + [anon_sym_u8_DQUOTE] = ACTIONS(2448), + [sym_true] = ACTIONS(2446), + [sym_false] = ACTIONS(2446), + [anon_sym_NULL] = ACTIONS(2446), + [anon_sym_nullptr] = ACTIONS(2446), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2446), + [anon_sym___typeof] = ACTIONS(2446), + [anon_sym_typeof] = ACTIONS(2446), + [anon_sym_ATimport] = ACTIONS(2448), + [aux_sym_preproc_undef_token1] = ACTIONS(2446), + [anon_sym_POUND] = ACTIONS(2446), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2446), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2446), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2446), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2446), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE] = ACTIONS(2446), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_API_AVAILABLE] = ACTIONS(2446), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_API_DEPRECATED] = ACTIONS(2446), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2446), + [anon_sym___deprecated_msg] = ACTIONS(2446), + [anon_sym___deprecated_enum_msg] = ACTIONS(2446), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2446), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2446), + [anon_sym_ATprotocol] = ACTIONS(2448), + [anon_sym_ATinterface] = ACTIONS(2448), + [anon_sym_ATimplementation] = ACTIONS(2448), + [anon_sym_ATcompatibility_alias] = ACTIONS(2448), + [anon_sym_ATtry] = ACTIONS(2448), + [anon_sym___try] = ACTIONS(2446), + [anon_sym_ATthrow] = ACTIONS(2448), + [anon_sym_ATselector] = ACTIONS(2448), + [anon_sym_ATavailable] = ACTIONS(2448), + [anon_sym___builtin_available] = ACTIONS(2446), + [anon_sym_va_arg] = ACTIONS(2446), + [anon_sym_ATencode] = ACTIONS(2448), + [anon_sym_ATsynchronized] = ACTIONS(2448), + [anon_sym_BOOL] = ACTIONS(2446), + [anon_sym_IMP] = ACTIONS(2446), + [anon_sym_SEL] = ACTIONS(2446), + [anon_sym_Class] = ACTIONS(2446), + [anon_sym_id] = ACTIONS(2446), + }, + [731] = { + [ts_builtin_sym_end] = ACTIONS(2452), + [sym_identifier] = ACTIONS(2450), + [aux_sym_preproc_include_token1] = ACTIONS(2450), + [aux_sym_preproc_include_token2] = ACTIONS(2450), + [aux_sym_preproc_def_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2450), + [anon_sym_LPAREN2] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_CARET] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym___cdecl] = ACTIONS(2450), + [anon_sym___clrcall] = ACTIONS(2450), + [anon_sym___stdcall] = ACTIONS(2450), + [anon_sym___fastcall] = ACTIONS(2450), + [anon_sym___thiscall] = ACTIONS(2450), + [anon_sym___vectorcall] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2452), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_ATautoreleasepool] = ACTIONS(2452), + [anon_sym_auto] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_CG_EXTERN] = ACTIONS(2450), + [anon_sym_CG_INLINE] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2450), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2450), + [anon_sym_IBOutlet] = ACTIONS(2450), + [anon_sym_IBInspectable] = ACTIONS(2450), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2450), + [anon_sym_NS_INLINE] = ACTIONS(2450), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2450), + [anon_sym_OBJC_EXPORT] = ACTIONS(2450), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_nullable] = ACTIONS(2450), + [anon_sym__Complex] = ACTIONS(2450), + [anon_sym__Nullable] = ACTIONS(2450), + [anon_sym__Nullable_result] = ACTIONS(2450), + [anon_sym__Null_unspecified] = ACTIONS(2450), + [anon_sym___autoreleasing] = ACTIONS(2450), + [anon_sym___block] = ACTIONS(2450), + [anon_sym___bridge] = ACTIONS(2450), + [anon_sym___bridge_retained] = ACTIONS(2450), + [anon_sym___bridge_transfer] = ACTIONS(2450), + [anon_sym___complex] = ACTIONS(2450), + [anon_sym___const] = ACTIONS(2450), + [anon_sym___imag] = ACTIONS(2450), + [anon_sym___kindof] = ACTIONS(2450), + [anon_sym___nonnull] = ACTIONS(2450), + [anon_sym___nullable] = ACTIONS(2450), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2450), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2450), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2450), + [anon_sym___real] = ACTIONS(2450), + [anon_sym___strong] = ACTIONS(2450), + [anon_sym___unsafe_unretained] = ACTIONS(2450), + [anon_sym___unused] = ACTIONS(2450), + [anon_sym___weak] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_else] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2450), + [anon_sym_case] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2450), + [anon_sym_while] = ACTIONS(2450), + [anon_sym_do] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_break] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_goto] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2452), + [anon_sym_sizeof] = ACTIONS(2450), + [anon_sym___alignof__] = ACTIONS(2450), + [anon_sym___alignof] = ACTIONS(2450), + [anon_sym__alignof] = ACTIONS(2450), + [anon_sym_alignof] = ACTIONS(2450), + [anon_sym__Alignof] = ACTIONS(2450), + [anon_sym_offsetof] = ACTIONS(2450), + [anon_sym__Generic] = ACTIONS(2450), + [anon_sym_asm] = ACTIONS(2450), + [anon_sym___asm__] = ACTIONS(2450), + [anon_sym___asm] = ACTIONS(2450), + [sym_number_literal] = ACTIONS(2452), + [anon_sym_L_SQUOTE] = ACTIONS(2452), + [anon_sym_u_SQUOTE] = ACTIONS(2452), + [anon_sym_U_SQUOTE] = ACTIONS(2452), + [anon_sym_u8_SQUOTE] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(2452), + [anon_sym_AT] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2452), + [anon_sym_L_DQUOTE] = ACTIONS(2452), + [anon_sym_u_DQUOTE] = ACTIONS(2452), + [anon_sym_U_DQUOTE] = ACTIONS(2452), + [anon_sym_u8_DQUOTE] = ACTIONS(2452), + [sym_true] = ACTIONS(2450), + [sym_false] = ACTIONS(2450), + [anon_sym_NULL] = ACTIONS(2450), + [anon_sym_nullptr] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2450), + [anon_sym___typeof] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [anon_sym_ATimport] = ACTIONS(2452), + [aux_sym_preproc_undef_token1] = ACTIONS(2450), + [anon_sym_POUND] = ACTIONS(2450), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2450), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2450), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2450), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2450), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE] = ACTIONS(2450), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_API_AVAILABLE] = ACTIONS(2450), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_API_DEPRECATED] = ACTIONS(2450), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2450), + [anon_sym___deprecated_msg] = ACTIONS(2450), + [anon_sym___deprecated_enum_msg] = ACTIONS(2450), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2450), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2450), + [anon_sym_ATprotocol] = ACTIONS(2452), + [anon_sym_ATinterface] = ACTIONS(2452), + [anon_sym_ATimplementation] = ACTIONS(2452), + [anon_sym_ATcompatibility_alias] = ACTIONS(2452), + [anon_sym_ATtry] = ACTIONS(2452), + [anon_sym___try] = ACTIONS(2450), + [anon_sym_ATthrow] = ACTIONS(2452), + [anon_sym_ATselector] = ACTIONS(2452), + [anon_sym_ATavailable] = ACTIONS(2452), + [anon_sym___builtin_available] = ACTIONS(2450), + [anon_sym_va_arg] = ACTIONS(2450), + [anon_sym_ATencode] = ACTIONS(2452), + [anon_sym_ATsynchronized] = ACTIONS(2452), + [anon_sym_BOOL] = ACTIONS(2450), + [anon_sym_IMP] = ACTIONS(2450), + [anon_sym_SEL] = ACTIONS(2450), + [anon_sym_Class] = ACTIONS(2450), + [anon_sym_id] = ACTIONS(2450), + }, + [732] = { + [ts_builtin_sym_end] = ACTIONS(2456), + [sym_identifier] = ACTIONS(2454), + [aux_sym_preproc_include_token1] = ACTIONS(2454), + [aux_sym_preproc_include_token2] = ACTIONS(2454), + [aux_sym_preproc_def_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2454), + [sym_preproc_directive] = ACTIONS(2454), + [anon_sym_LPAREN2] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_CARET] = ACTIONS(2456), + [anon_sym_AMP] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym___extension__] = ACTIONS(2454), + [anon_sym_typedef] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym___attribute__] = ACTIONS(2454), + [anon_sym___attribute] = ACTIONS(2454), + [anon_sym_noreturn] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym___declspec] = ACTIONS(2454), + [anon_sym___cdecl] = ACTIONS(2454), + [anon_sym___clrcall] = ACTIONS(2454), + [anon_sym___stdcall] = ACTIONS(2454), + [anon_sym___fastcall] = ACTIONS(2454), + [anon_sym___thiscall] = ACTIONS(2454), + [anon_sym___vectorcall] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_signed] = ACTIONS(2454), + [anon_sym_unsigned] = ACTIONS(2454), + [anon_sym_long] = ACTIONS(2454), + [anon_sym_short] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_ATautoreleasepool] = ACTIONS(2456), + [anon_sym_auto] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_inline] = ACTIONS(2454), + [anon_sym___inline] = ACTIONS(2454), + [anon_sym___inline__] = ACTIONS(2454), + [anon_sym___forceinline] = ACTIONS(2454), + [anon_sym_thread_local] = ACTIONS(2454), + [anon_sym___thread] = ACTIONS(2454), + [anon_sym_CG_EXTERN] = ACTIONS(2454), + [anon_sym_CG_INLINE] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2454), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2454), + [anon_sym_IBOutlet] = ACTIONS(2454), + [anon_sym_IBInspectable] = ACTIONS(2454), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2454), + [anon_sym_NS_INLINE] = ACTIONS(2454), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2454), + [anon_sym_OBJC_EXPORT] = ACTIONS(2454), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_constexpr] = ACTIONS(2454), + [anon_sym_volatile] = ACTIONS(2454), + [anon_sym_restrict] = ACTIONS(2454), + [anon_sym___restrict__] = ACTIONS(2454), + [anon_sym__Atomic] = ACTIONS(2454), + [anon_sym__Noreturn] = ACTIONS(2454), + [anon_sym__Nonnull] = ACTIONS(2454), + [anon_sym_nullable] = ACTIONS(2454), + [anon_sym__Complex] = ACTIONS(2454), + [anon_sym__Nullable] = ACTIONS(2454), + [anon_sym__Nullable_result] = ACTIONS(2454), + [anon_sym__Null_unspecified] = ACTIONS(2454), + [anon_sym___autoreleasing] = ACTIONS(2454), + [anon_sym___block] = ACTIONS(2454), + [anon_sym___bridge] = ACTIONS(2454), + [anon_sym___bridge_retained] = ACTIONS(2454), + [anon_sym___bridge_transfer] = ACTIONS(2454), + [anon_sym___complex] = ACTIONS(2454), + [anon_sym___const] = ACTIONS(2454), + [anon_sym___imag] = ACTIONS(2454), + [anon_sym___kindof] = ACTIONS(2454), + [anon_sym___nonnull] = ACTIONS(2454), + [anon_sym___nullable] = ACTIONS(2454), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2454), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2454), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2454), + [anon_sym___real] = ACTIONS(2454), + [anon_sym___strong] = ACTIONS(2454), + [anon_sym___unsafe_unretained] = ACTIONS(2454), + [anon_sym___unused] = ACTIONS(2454), + [anon_sym___weak] = ACTIONS(2454), + [anon_sym_alignas] = ACTIONS(2454), + [anon_sym__Alignas] = ACTIONS(2454), + [sym_primitive_type] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2454), + [anon_sym_else] = ACTIONS(2454), + [anon_sym_switch] = ACTIONS(2454), + [anon_sym_case] = ACTIONS(2454), + [anon_sym_default] = ACTIONS(2454), + [anon_sym_while] = ACTIONS(2454), + [anon_sym_do] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_in] = ACTIONS(2454), + [anon_sym_return] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_goto] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_sizeof] = ACTIONS(2454), + [anon_sym___alignof__] = ACTIONS(2454), + [anon_sym___alignof] = ACTIONS(2454), + [anon_sym__alignof] = ACTIONS(2454), + [anon_sym_alignof] = ACTIONS(2454), + [anon_sym__Alignof] = ACTIONS(2454), + [anon_sym_offsetof] = ACTIONS(2454), + [anon_sym__Generic] = ACTIONS(2454), + [anon_sym_asm] = ACTIONS(2454), + [anon_sym___asm__] = ACTIONS(2454), + [anon_sym___asm] = ACTIONS(2454), + [sym_number_literal] = ACTIONS(2456), + [anon_sym_L_SQUOTE] = ACTIONS(2456), + [anon_sym_u_SQUOTE] = ACTIONS(2456), + [anon_sym_U_SQUOTE] = ACTIONS(2456), + [anon_sym_u8_SQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_L_DQUOTE] = ACTIONS(2456), + [anon_sym_u_DQUOTE] = ACTIONS(2456), + [anon_sym_U_DQUOTE] = ACTIONS(2456), + [anon_sym_u8_DQUOTE] = ACTIONS(2456), + [sym_true] = ACTIONS(2454), + [sym_false] = ACTIONS(2454), + [anon_sym_NULL] = ACTIONS(2454), + [anon_sym_nullptr] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2454), + [anon_sym___typeof] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(2454), + [anon_sym_ATimport] = ACTIONS(2456), + [aux_sym_preproc_undef_token1] = ACTIONS(2454), + [anon_sym_POUND] = ACTIONS(2454), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2454), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2454), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2454), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2454), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE] = ACTIONS(2454), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_API_AVAILABLE] = ACTIONS(2454), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_API_DEPRECATED] = ACTIONS(2454), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2454), + [anon_sym___deprecated_msg] = ACTIONS(2454), + [anon_sym___deprecated_enum_msg] = ACTIONS(2454), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2454), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2454), + [anon_sym_ATprotocol] = ACTIONS(2456), + [anon_sym_ATinterface] = ACTIONS(2456), + [anon_sym_ATimplementation] = ACTIONS(2456), + [anon_sym_ATcompatibility_alias] = ACTIONS(2456), + [anon_sym_ATtry] = ACTIONS(2456), + [anon_sym___try] = ACTIONS(2454), + [anon_sym_ATthrow] = ACTIONS(2456), + [anon_sym_ATselector] = ACTIONS(2456), + [anon_sym_ATavailable] = ACTIONS(2456), + [anon_sym___builtin_available] = ACTIONS(2454), + [anon_sym_va_arg] = ACTIONS(2454), + [anon_sym_ATencode] = ACTIONS(2456), + [anon_sym_ATsynchronized] = ACTIONS(2456), + [anon_sym_BOOL] = ACTIONS(2454), + [anon_sym_IMP] = ACTIONS(2454), + [anon_sym_SEL] = ACTIONS(2454), + [anon_sym_Class] = ACTIONS(2454), + [anon_sym_id] = ACTIONS(2454), + }, + [733] = { + [ts_builtin_sym_end] = ACTIONS(2456), + [sym_identifier] = ACTIONS(2454), + [aux_sym_preproc_include_token1] = ACTIONS(2454), + [aux_sym_preproc_include_token2] = ACTIONS(2454), + [aux_sym_preproc_def_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2454), + [sym_preproc_directive] = ACTIONS(2454), + [anon_sym_LPAREN2] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_CARET] = ACTIONS(2456), + [anon_sym_AMP] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym___extension__] = ACTIONS(2454), + [anon_sym_typedef] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym___attribute__] = ACTIONS(2454), + [anon_sym___attribute] = ACTIONS(2454), + [anon_sym_noreturn] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym___declspec] = ACTIONS(2454), + [anon_sym___cdecl] = ACTIONS(2454), + [anon_sym___clrcall] = ACTIONS(2454), + [anon_sym___stdcall] = ACTIONS(2454), + [anon_sym___fastcall] = ACTIONS(2454), + [anon_sym___thiscall] = ACTIONS(2454), + [anon_sym___vectorcall] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_signed] = ACTIONS(2454), + [anon_sym_unsigned] = ACTIONS(2454), + [anon_sym_long] = ACTIONS(2454), + [anon_sym_short] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_ATautoreleasepool] = ACTIONS(2456), + [anon_sym_auto] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_inline] = ACTIONS(2454), + [anon_sym___inline] = ACTIONS(2454), + [anon_sym___inline__] = ACTIONS(2454), + [anon_sym___forceinline] = ACTIONS(2454), + [anon_sym_thread_local] = ACTIONS(2454), + [anon_sym___thread] = ACTIONS(2454), + [anon_sym_CG_EXTERN] = ACTIONS(2454), + [anon_sym_CG_INLINE] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2454), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2454), + [anon_sym_IBOutlet] = ACTIONS(2454), + [anon_sym_IBInspectable] = ACTIONS(2454), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2454), + [anon_sym_NS_INLINE] = ACTIONS(2454), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2454), + [anon_sym_OBJC_EXPORT] = ACTIONS(2454), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_constexpr] = ACTIONS(2454), + [anon_sym_volatile] = ACTIONS(2454), + [anon_sym_restrict] = ACTIONS(2454), + [anon_sym___restrict__] = ACTIONS(2454), + [anon_sym__Atomic] = ACTIONS(2454), + [anon_sym__Noreturn] = ACTIONS(2454), + [anon_sym__Nonnull] = ACTIONS(2454), + [anon_sym_nullable] = ACTIONS(2454), + [anon_sym__Complex] = ACTIONS(2454), + [anon_sym__Nullable] = ACTIONS(2454), + [anon_sym__Nullable_result] = ACTIONS(2454), + [anon_sym__Null_unspecified] = ACTIONS(2454), + [anon_sym___autoreleasing] = ACTIONS(2454), + [anon_sym___block] = ACTIONS(2454), + [anon_sym___bridge] = ACTIONS(2454), + [anon_sym___bridge_retained] = ACTIONS(2454), + [anon_sym___bridge_transfer] = ACTIONS(2454), + [anon_sym___complex] = ACTIONS(2454), + [anon_sym___const] = ACTIONS(2454), + [anon_sym___imag] = ACTIONS(2454), + [anon_sym___kindof] = ACTIONS(2454), + [anon_sym___nonnull] = ACTIONS(2454), + [anon_sym___nullable] = ACTIONS(2454), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2454), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2454), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2454), + [anon_sym___real] = ACTIONS(2454), + [anon_sym___strong] = ACTIONS(2454), + [anon_sym___unsafe_unretained] = ACTIONS(2454), + [anon_sym___unused] = ACTIONS(2454), + [anon_sym___weak] = ACTIONS(2454), + [anon_sym_alignas] = ACTIONS(2454), + [anon_sym__Alignas] = ACTIONS(2454), + [sym_primitive_type] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2454), + [anon_sym_else] = ACTIONS(2454), + [anon_sym_switch] = ACTIONS(2454), + [anon_sym_case] = ACTIONS(2454), + [anon_sym_default] = ACTIONS(2454), + [anon_sym_while] = ACTIONS(2454), + [anon_sym_do] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_in] = ACTIONS(2454), + [anon_sym_return] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_goto] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_sizeof] = ACTIONS(2454), + [anon_sym___alignof__] = ACTIONS(2454), + [anon_sym___alignof] = ACTIONS(2454), + [anon_sym__alignof] = ACTIONS(2454), + [anon_sym_alignof] = ACTIONS(2454), + [anon_sym__Alignof] = ACTIONS(2454), + [anon_sym_offsetof] = ACTIONS(2454), + [anon_sym__Generic] = ACTIONS(2454), + [anon_sym_asm] = ACTIONS(2454), + [anon_sym___asm__] = ACTIONS(2454), + [anon_sym___asm] = ACTIONS(2454), + [sym_number_literal] = ACTIONS(2456), + [anon_sym_L_SQUOTE] = ACTIONS(2456), + [anon_sym_u_SQUOTE] = ACTIONS(2456), + [anon_sym_U_SQUOTE] = ACTIONS(2456), + [anon_sym_u8_SQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_L_DQUOTE] = ACTIONS(2456), + [anon_sym_u_DQUOTE] = ACTIONS(2456), + [anon_sym_U_DQUOTE] = ACTIONS(2456), + [anon_sym_u8_DQUOTE] = ACTIONS(2456), + [sym_true] = ACTIONS(2454), + [sym_false] = ACTIONS(2454), + [anon_sym_NULL] = ACTIONS(2454), + [anon_sym_nullptr] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2454), + [anon_sym___typeof] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(2454), + [anon_sym_ATimport] = ACTIONS(2456), + [aux_sym_preproc_undef_token1] = ACTIONS(2454), + [anon_sym_POUND] = ACTIONS(2454), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2454), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2454), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2454), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2454), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE] = ACTIONS(2454), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_API_AVAILABLE] = ACTIONS(2454), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_API_DEPRECATED] = ACTIONS(2454), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2454), + [anon_sym___deprecated_msg] = ACTIONS(2454), + [anon_sym___deprecated_enum_msg] = ACTIONS(2454), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2454), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2454), + [anon_sym_ATprotocol] = ACTIONS(2456), + [anon_sym_ATinterface] = ACTIONS(2456), + [anon_sym_ATimplementation] = ACTIONS(2456), + [anon_sym_ATcompatibility_alias] = ACTIONS(2456), + [anon_sym_ATtry] = ACTIONS(2456), + [anon_sym___try] = ACTIONS(2454), + [anon_sym_ATthrow] = ACTIONS(2456), + [anon_sym_ATselector] = ACTIONS(2456), + [anon_sym_ATavailable] = ACTIONS(2456), + [anon_sym___builtin_available] = ACTIONS(2454), + [anon_sym_va_arg] = ACTIONS(2454), + [anon_sym_ATencode] = ACTIONS(2456), + [anon_sym_ATsynchronized] = ACTIONS(2456), + [anon_sym_BOOL] = ACTIONS(2454), + [anon_sym_IMP] = ACTIONS(2454), + [anon_sym_SEL] = ACTIONS(2454), + [anon_sym_Class] = ACTIONS(2454), + [anon_sym_id] = ACTIONS(2454), + }, + [734] = { + [ts_builtin_sym_end] = ACTIONS(2448), + [sym_identifier] = ACTIONS(2446), + [aux_sym_preproc_include_token1] = ACTIONS(2446), + [aux_sym_preproc_include_token2] = ACTIONS(2446), + [aux_sym_preproc_def_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token1] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2446), + [sym_preproc_directive] = ACTIONS(2446), + [anon_sym_LPAREN2] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_TILDE] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_STAR] = ACTIONS(2448), + [anon_sym_CARET] = ACTIONS(2448), + [anon_sym_AMP] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym___extension__] = ACTIONS(2446), + [anon_sym_typedef] = ACTIONS(2446), + [anon_sym_extern] = ACTIONS(2446), + [anon_sym___attribute__] = ACTIONS(2446), + [anon_sym___attribute] = ACTIONS(2446), + [anon_sym_noreturn] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym___declspec] = ACTIONS(2446), + [anon_sym___cdecl] = ACTIONS(2446), + [anon_sym___clrcall] = ACTIONS(2446), + [anon_sym___stdcall] = ACTIONS(2446), + [anon_sym___fastcall] = ACTIONS(2446), + [anon_sym___thiscall] = ACTIONS(2446), + [anon_sym___vectorcall] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_signed] = ACTIONS(2446), + [anon_sym_unsigned] = ACTIONS(2446), + [anon_sym_long] = ACTIONS(2446), + [anon_sym_short] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_ATautoreleasepool] = ACTIONS(2448), + [anon_sym_auto] = ACTIONS(2446), + [anon_sym_register] = ACTIONS(2446), + [anon_sym_inline] = ACTIONS(2446), + [anon_sym___inline] = ACTIONS(2446), + [anon_sym___inline__] = ACTIONS(2446), + [anon_sym___forceinline] = ACTIONS(2446), + [anon_sym_thread_local] = ACTIONS(2446), + [anon_sym___thread] = ACTIONS(2446), + [anon_sym_CG_EXTERN] = ACTIONS(2446), + [anon_sym_CG_INLINE] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2446), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2446), + [anon_sym_IBOutlet] = ACTIONS(2446), + [anon_sym_IBInspectable] = ACTIONS(2446), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2446), + [anon_sym_NS_INLINE] = ACTIONS(2446), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2446), + [anon_sym_OBJC_EXPORT] = ACTIONS(2446), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [anon_sym_constexpr] = ACTIONS(2446), + [anon_sym_volatile] = ACTIONS(2446), + [anon_sym_restrict] = ACTIONS(2446), + [anon_sym___restrict__] = ACTIONS(2446), + [anon_sym__Atomic] = ACTIONS(2446), + [anon_sym__Noreturn] = ACTIONS(2446), + [anon_sym__Nonnull] = ACTIONS(2446), + [anon_sym_nullable] = ACTIONS(2446), + [anon_sym__Complex] = ACTIONS(2446), + [anon_sym__Nullable] = ACTIONS(2446), + [anon_sym__Nullable_result] = ACTIONS(2446), + [anon_sym__Null_unspecified] = ACTIONS(2446), + [anon_sym___autoreleasing] = ACTIONS(2446), + [anon_sym___block] = ACTIONS(2446), + [anon_sym___bridge] = ACTIONS(2446), + [anon_sym___bridge_retained] = ACTIONS(2446), + [anon_sym___bridge_transfer] = ACTIONS(2446), + [anon_sym___complex] = ACTIONS(2446), + [anon_sym___const] = ACTIONS(2446), + [anon_sym___imag] = ACTIONS(2446), + [anon_sym___kindof] = ACTIONS(2446), + [anon_sym___nonnull] = ACTIONS(2446), + [anon_sym___nullable] = ACTIONS(2446), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2446), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2446), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2446), + [anon_sym___real] = ACTIONS(2446), + [anon_sym___strong] = ACTIONS(2446), + [anon_sym___unsafe_unretained] = ACTIONS(2446), + [anon_sym___unused] = ACTIONS(2446), + [anon_sym___weak] = ACTIONS(2446), + [anon_sym_alignas] = ACTIONS(2446), + [anon_sym__Alignas] = ACTIONS(2446), + [sym_primitive_type] = ACTIONS(2446), + [anon_sym_enum] = ACTIONS(2446), + [anon_sym_struct] = ACTIONS(2446), + [anon_sym_union] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2446), + [anon_sym_else] = ACTIONS(2446), + [anon_sym_switch] = ACTIONS(2446), + [anon_sym_case] = ACTIONS(2446), + [anon_sym_default] = ACTIONS(2446), + [anon_sym_while] = ACTIONS(2446), + [anon_sym_do] = ACTIONS(2446), + [anon_sym_for] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_return] = ACTIONS(2446), + [anon_sym_break] = ACTIONS(2446), + [anon_sym_continue] = ACTIONS(2446), + [anon_sym_goto] = ACTIONS(2446), + [anon_sym_DASH_DASH] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2448), + [anon_sym_sizeof] = ACTIONS(2446), + [anon_sym___alignof__] = ACTIONS(2446), + [anon_sym___alignof] = ACTIONS(2446), + [anon_sym__alignof] = ACTIONS(2446), + [anon_sym_alignof] = ACTIONS(2446), + [anon_sym__Alignof] = ACTIONS(2446), + [anon_sym_offsetof] = ACTIONS(2446), + [anon_sym__Generic] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(2446), + [anon_sym___asm__] = ACTIONS(2446), + [anon_sym___asm] = ACTIONS(2446), + [sym_number_literal] = ACTIONS(2448), + [anon_sym_L_SQUOTE] = ACTIONS(2448), + [anon_sym_u_SQUOTE] = ACTIONS(2448), + [anon_sym_U_SQUOTE] = ACTIONS(2448), + [anon_sym_u8_SQUOTE] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_L_DQUOTE] = ACTIONS(2448), + [anon_sym_u_DQUOTE] = ACTIONS(2448), + [anon_sym_U_DQUOTE] = ACTIONS(2448), + [anon_sym_u8_DQUOTE] = ACTIONS(2448), + [sym_true] = ACTIONS(2446), + [sym_false] = ACTIONS(2446), + [anon_sym_NULL] = ACTIONS(2446), + [anon_sym_nullptr] = ACTIONS(2446), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2446), + [anon_sym___typeof] = ACTIONS(2446), + [anon_sym_typeof] = ACTIONS(2446), + [anon_sym_ATimport] = ACTIONS(2448), + [aux_sym_preproc_undef_token1] = ACTIONS(2446), + [anon_sym_POUND] = ACTIONS(2446), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2446), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2446), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2446), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2446), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE] = ACTIONS(2446), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_API_AVAILABLE] = ACTIONS(2446), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_API_DEPRECATED] = ACTIONS(2446), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2446), + [anon_sym___deprecated_msg] = ACTIONS(2446), + [anon_sym___deprecated_enum_msg] = ACTIONS(2446), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2446), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2446), + [anon_sym_ATprotocol] = ACTIONS(2448), + [anon_sym_ATinterface] = ACTIONS(2448), + [anon_sym_ATimplementation] = ACTIONS(2448), + [anon_sym_ATcompatibility_alias] = ACTIONS(2448), + [anon_sym_ATtry] = ACTIONS(2448), + [anon_sym___try] = ACTIONS(2446), + [anon_sym_ATthrow] = ACTIONS(2448), + [anon_sym_ATselector] = ACTIONS(2448), + [anon_sym_ATavailable] = ACTIONS(2448), + [anon_sym___builtin_available] = ACTIONS(2446), + [anon_sym_va_arg] = ACTIONS(2446), + [anon_sym_ATencode] = ACTIONS(2448), + [anon_sym_ATsynchronized] = ACTIONS(2448), + [anon_sym_BOOL] = ACTIONS(2446), + [anon_sym_IMP] = ACTIONS(2446), + [anon_sym_SEL] = ACTIONS(2446), + [anon_sym_Class] = ACTIONS(2446), + [anon_sym_id] = ACTIONS(2446), + }, + [735] = { + [ts_builtin_sym_end] = ACTIONS(2452), + [sym_identifier] = ACTIONS(2450), + [aux_sym_preproc_include_token1] = ACTIONS(2450), + [aux_sym_preproc_include_token2] = ACTIONS(2450), + [aux_sym_preproc_def_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2450), + [anon_sym_LPAREN2] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_CARET] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym___cdecl] = ACTIONS(2450), + [anon_sym___clrcall] = ACTIONS(2450), + [anon_sym___stdcall] = ACTIONS(2450), + [anon_sym___fastcall] = ACTIONS(2450), + [anon_sym___thiscall] = ACTIONS(2450), + [anon_sym___vectorcall] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2452), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_ATautoreleasepool] = ACTIONS(2452), + [anon_sym_auto] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_CG_EXTERN] = ACTIONS(2450), + [anon_sym_CG_INLINE] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2450), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2450), + [anon_sym_IBOutlet] = ACTIONS(2450), + [anon_sym_IBInspectable] = ACTIONS(2450), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2450), + [anon_sym_NS_INLINE] = ACTIONS(2450), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2450), + [anon_sym_OBJC_EXPORT] = ACTIONS(2450), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_nullable] = ACTIONS(2450), + [anon_sym__Complex] = ACTIONS(2450), + [anon_sym__Nullable] = ACTIONS(2450), + [anon_sym__Nullable_result] = ACTIONS(2450), + [anon_sym__Null_unspecified] = ACTIONS(2450), + [anon_sym___autoreleasing] = ACTIONS(2450), + [anon_sym___block] = ACTIONS(2450), + [anon_sym___bridge] = ACTIONS(2450), + [anon_sym___bridge_retained] = ACTIONS(2450), + [anon_sym___bridge_transfer] = ACTIONS(2450), + [anon_sym___complex] = ACTIONS(2450), + [anon_sym___const] = ACTIONS(2450), + [anon_sym___imag] = ACTIONS(2450), + [anon_sym___kindof] = ACTIONS(2450), + [anon_sym___nonnull] = ACTIONS(2450), + [anon_sym___nullable] = ACTIONS(2450), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2450), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2450), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2450), + [anon_sym___real] = ACTIONS(2450), + [anon_sym___strong] = ACTIONS(2450), + [anon_sym___unsafe_unretained] = ACTIONS(2450), + [anon_sym___unused] = ACTIONS(2450), + [anon_sym___weak] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_else] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2450), + [anon_sym_case] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2450), + [anon_sym_while] = ACTIONS(2450), + [anon_sym_do] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_break] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_goto] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2452), + [anon_sym_sizeof] = ACTIONS(2450), + [anon_sym___alignof__] = ACTIONS(2450), + [anon_sym___alignof] = ACTIONS(2450), + [anon_sym__alignof] = ACTIONS(2450), + [anon_sym_alignof] = ACTIONS(2450), + [anon_sym__Alignof] = ACTIONS(2450), + [anon_sym_offsetof] = ACTIONS(2450), + [anon_sym__Generic] = ACTIONS(2450), + [anon_sym_asm] = ACTIONS(2450), + [anon_sym___asm__] = ACTIONS(2450), + [anon_sym___asm] = ACTIONS(2450), + [sym_number_literal] = ACTIONS(2452), + [anon_sym_L_SQUOTE] = ACTIONS(2452), + [anon_sym_u_SQUOTE] = ACTIONS(2452), + [anon_sym_U_SQUOTE] = ACTIONS(2452), + [anon_sym_u8_SQUOTE] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(2452), + [anon_sym_AT] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2452), + [anon_sym_L_DQUOTE] = ACTIONS(2452), + [anon_sym_u_DQUOTE] = ACTIONS(2452), + [anon_sym_U_DQUOTE] = ACTIONS(2452), + [anon_sym_u8_DQUOTE] = ACTIONS(2452), + [sym_true] = ACTIONS(2450), + [sym_false] = ACTIONS(2450), + [anon_sym_NULL] = ACTIONS(2450), + [anon_sym_nullptr] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2450), + [anon_sym___typeof] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [anon_sym_ATimport] = ACTIONS(2452), + [aux_sym_preproc_undef_token1] = ACTIONS(2450), + [anon_sym_POUND] = ACTIONS(2450), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2450), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2450), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2450), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2450), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE] = ACTIONS(2450), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_API_AVAILABLE] = ACTIONS(2450), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_API_DEPRECATED] = ACTIONS(2450), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2450), + [anon_sym___deprecated_msg] = ACTIONS(2450), + [anon_sym___deprecated_enum_msg] = ACTIONS(2450), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2450), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2450), + [anon_sym_ATprotocol] = ACTIONS(2452), + [anon_sym_ATinterface] = ACTIONS(2452), + [anon_sym_ATimplementation] = ACTIONS(2452), + [anon_sym_ATcompatibility_alias] = ACTIONS(2452), + [anon_sym_ATtry] = ACTIONS(2452), + [anon_sym___try] = ACTIONS(2450), + [anon_sym_ATthrow] = ACTIONS(2452), + [anon_sym_ATselector] = ACTIONS(2452), + [anon_sym_ATavailable] = ACTIONS(2452), + [anon_sym___builtin_available] = ACTIONS(2450), + [anon_sym_va_arg] = ACTIONS(2450), + [anon_sym_ATencode] = ACTIONS(2452), + [anon_sym_ATsynchronized] = ACTIONS(2452), + [anon_sym_BOOL] = ACTIONS(2450), + [anon_sym_IMP] = ACTIONS(2450), + [anon_sym_SEL] = ACTIONS(2450), + [anon_sym_Class] = ACTIONS(2450), + [anon_sym_id] = ACTIONS(2450), + }, + [736] = { + [sym_identifier] = ACTIONS(2512), + [aux_sym_preproc_include_token1] = ACTIONS(2512), + [aux_sym_preproc_include_token2] = ACTIONS(2512), + [aux_sym_preproc_def_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token1] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2512), + [sym_preproc_directive] = ACTIONS(2512), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_TILDE] = ACTIONS(2514), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_STAR] = ACTIONS(2514), + [anon_sym_CARET] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym___extension__] = ACTIONS(2512), + [anon_sym_typedef] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym___attribute__] = ACTIONS(2512), + [anon_sym___attribute] = ACTIONS(2512), + [anon_sym_noreturn] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym___declspec] = ACTIONS(2512), + [anon_sym___cdecl] = ACTIONS(2512), + [anon_sym___clrcall] = ACTIONS(2512), + [anon_sym___stdcall] = ACTIONS(2512), + [anon_sym___fastcall] = ACTIONS(2512), + [anon_sym___thiscall] = ACTIONS(2512), + [anon_sym___vectorcall] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_RBRACE] = ACTIONS(2514), + [anon_sym_signed] = ACTIONS(2512), + [anon_sym_unsigned] = ACTIONS(2512), + [anon_sym_long] = ACTIONS(2512), + [anon_sym_short] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_ATautoreleasepool] = ACTIONS(2514), + [anon_sym_auto] = ACTIONS(2512), + [anon_sym_register] = ACTIONS(2512), + [anon_sym_inline] = ACTIONS(2512), + [anon_sym___inline] = ACTIONS(2512), + [anon_sym___inline__] = ACTIONS(2512), + [anon_sym___forceinline] = ACTIONS(2512), + [anon_sym_thread_local] = ACTIONS(2512), + [anon_sym___thread] = ACTIONS(2512), + [anon_sym_CG_EXTERN] = ACTIONS(2512), + [anon_sym_CG_INLINE] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2512), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2512), + [anon_sym_IBOutlet] = ACTIONS(2512), + [anon_sym_IBInspectable] = ACTIONS(2512), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2512), + [anon_sym_NS_INLINE] = ACTIONS(2512), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2512), + [anon_sym_OBJC_EXPORT] = ACTIONS(2512), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_constexpr] = ACTIONS(2512), + [anon_sym_volatile] = ACTIONS(2512), + [anon_sym_restrict] = ACTIONS(2512), + [anon_sym___restrict__] = ACTIONS(2512), + [anon_sym__Atomic] = ACTIONS(2512), + [anon_sym__Noreturn] = ACTIONS(2512), + [anon_sym__Nonnull] = ACTIONS(2512), + [anon_sym_nullable] = ACTIONS(2512), + [anon_sym__Complex] = ACTIONS(2512), + [anon_sym__Nullable] = ACTIONS(2512), + [anon_sym__Nullable_result] = ACTIONS(2512), + [anon_sym__Null_unspecified] = ACTIONS(2512), + [anon_sym___autoreleasing] = ACTIONS(2512), + [anon_sym___block] = ACTIONS(2512), + [anon_sym___bridge] = ACTIONS(2512), + [anon_sym___bridge_retained] = ACTIONS(2512), + [anon_sym___bridge_transfer] = ACTIONS(2512), + [anon_sym___complex] = ACTIONS(2512), + [anon_sym___const] = ACTIONS(2512), + [anon_sym___imag] = ACTIONS(2512), + [anon_sym___kindof] = ACTIONS(2512), + [anon_sym___nonnull] = ACTIONS(2512), + [anon_sym___nullable] = ACTIONS(2512), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2512), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2512), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2512), + [anon_sym___real] = ACTIONS(2512), + [anon_sym___strong] = ACTIONS(2512), + [anon_sym___unsafe_unretained] = ACTIONS(2512), + [anon_sym___unused] = ACTIONS(2512), + [anon_sym___weak] = ACTIONS(2512), + [anon_sym_alignas] = ACTIONS(2512), + [anon_sym__Alignas] = ACTIONS(2512), + [sym_primitive_type] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [anon_sym_struct] = ACTIONS(2512), + [anon_sym_union] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_else] = ACTIONS(2512), + [anon_sym_switch] = ACTIONS(2512), + [anon_sym_case] = ACTIONS(2512), + [anon_sym_default] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_do] = ACTIONS(2512), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_in] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_goto] = ACTIONS(2512), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_sizeof] = ACTIONS(2512), + [anon_sym___alignof__] = ACTIONS(2512), + [anon_sym___alignof] = ACTIONS(2512), + [anon_sym__alignof] = ACTIONS(2512), + [anon_sym_alignof] = ACTIONS(2512), + [anon_sym__Alignof] = ACTIONS(2512), + [anon_sym_offsetof] = ACTIONS(2512), + [anon_sym__Generic] = ACTIONS(2512), + [anon_sym_asm] = ACTIONS(2512), + [anon_sym___asm__] = ACTIONS(2512), + [anon_sym___asm] = ACTIONS(2512), + [sym_number_literal] = ACTIONS(2514), + [anon_sym_L_SQUOTE] = ACTIONS(2514), + [anon_sym_u_SQUOTE] = ACTIONS(2514), + [anon_sym_U_SQUOTE] = ACTIONS(2514), + [anon_sym_u8_SQUOTE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_AT] = ACTIONS(2512), + [anon_sym_DQUOTE] = ACTIONS(2514), + [anon_sym_L_DQUOTE] = ACTIONS(2514), + [anon_sym_u_DQUOTE] = ACTIONS(2514), + [anon_sym_U_DQUOTE] = ACTIONS(2514), + [anon_sym_u8_DQUOTE] = ACTIONS(2514), + [sym_true] = ACTIONS(2512), + [sym_false] = ACTIONS(2512), + [anon_sym_NULL] = ACTIONS(2512), + [anon_sym_nullptr] = ACTIONS(2512), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2512), + [anon_sym___typeof] = ACTIONS(2512), + [anon_sym_typeof] = ACTIONS(2512), + [anon_sym_ATimport] = ACTIONS(2514), + [aux_sym_preproc_undef_token1] = ACTIONS(2512), + [anon_sym_POUND] = ACTIONS(2512), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2512), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2512), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2512), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2512), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE] = ACTIONS(2512), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_API_AVAILABLE] = ACTIONS(2512), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_API_DEPRECATED] = ACTIONS(2512), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2512), + [anon_sym___deprecated_msg] = ACTIONS(2512), + [anon_sym___deprecated_enum_msg] = ACTIONS(2512), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2512), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2512), + [anon_sym_ATprotocol] = ACTIONS(2514), + [anon_sym_ATinterface] = ACTIONS(2514), + [anon_sym_ATimplementation] = ACTIONS(2514), + [anon_sym_ATcompatibility_alias] = ACTIONS(2514), + [anon_sym_ATtry] = ACTIONS(2514), + [anon_sym___try] = ACTIONS(2512), + [anon_sym_ATthrow] = ACTIONS(2514), + [anon_sym_ATselector] = ACTIONS(2514), + [anon_sym_ATavailable] = ACTIONS(2514), + [anon_sym___builtin_available] = ACTIONS(2512), + [anon_sym_va_arg] = ACTIONS(2512), + [anon_sym_ATencode] = ACTIONS(2514), + [anon_sym_ATsynchronized] = ACTIONS(2514), + [anon_sym_BOOL] = ACTIONS(2512), + [anon_sym_IMP] = ACTIONS(2512), + [anon_sym_SEL] = ACTIONS(2512), + [anon_sym_Class] = ACTIONS(2512), + [anon_sym_id] = ACTIONS(2512), + }, + [737] = { + [sym_identifier] = ACTIONS(2512), + [aux_sym_preproc_include_token1] = ACTIONS(2512), + [aux_sym_preproc_include_token2] = ACTIONS(2512), + [aux_sym_preproc_def_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token1] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2512), + [sym_preproc_directive] = ACTIONS(2512), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_TILDE] = ACTIONS(2514), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_STAR] = ACTIONS(2514), + [anon_sym_CARET] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym___extension__] = ACTIONS(2512), + [anon_sym_typedef] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym___attribute__] = ACTIONS(2512), + [anon_sym___attribute] = ACTIONS(2512), + [anon_sym_noreturn] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym___declspec] = ACTIONS(2512), + [anon_sym___cdecl] = ACTIONS(2512), + [anon_sym___clrcall] = ACTIONS(2512), + [anon_sym___stdcall] = ACTIONS(2512), + [anon_sym___fastcall] = ACTIONS(2512), + [anon_sym___thiscall] = ACTIONS(2512), + [anon_sym___vectorcall] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_RBRACE] = ACTIONS(2514), + [anon_sym_signed] = ACTIONS(2512), + [anon_sym_unsigned] = ACTIONS(2512), + [anon_sym_long] = ACTIONS(2512), + [anon_sym_short] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_ATautoreleasepool] = ACTIONS(2514), + [anon_sym_auto] = ACTIONS(2512), + [anon_sym_register] = ACTIONS(2512), + [anon_sym_inline] = ACTIONS(2512), + [anon_sym___inline] = ACTIONS(2512), + [anon_sym___inline__] = ACTIONS(2512), + [anon_sym___forceinline] = ACTIONS(2512), + [anon_sym_thread_local] = ACTIONS(2512), + [anon_sym___thread] = ACTIONS(2512), + [anon_sym_CG_EXTERN] = ACTIONS(2512), + [anon_sym_CG_INLINE] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2512), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2512), + [anon_sym_IBOutlet] = ACTIONS(2512), + [anon_sym_IBInspectable] = ACTIONS(2512), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2512), + [anon_sym_NS_INLINE] = ACTIONS(2512), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2512), + [anon_sym_OBJC_EXPORT] = ACTIONS(2512), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_constexpr] = ACTIONS(2512), + [anon_sym_volatile] = ACTIONS(2512), + [anon_sym_restrict] = ACTIONS(2512), + [anon_sym___restrict__] = ACTIONS(2512), + [anon_sym__Atomic] = ACTIONS(2512), + [anon_sym__Noreturn] = ACTIONS(2512), + [anon_sym__Nonnull] = ACTIONS(2512), + [anon_sym_nullable] = ACTIONS(2512), + [anon_sym__Complex] = ACTIONS(2512), + [anon_sym__Nullable] = ACTIONS(2512), + [anon_sym__Nullable_result] = ACTIONS(2512), + [anon_sym__Null_unspecified] = ACTIONS(2512), + [anon_sym___autoreleasing] = ACTIONS(2512), + [anon_sym___block] = ACTIONS(2512), + [anon_sym___bridge] = ACTIONS(2512), + [anon_sym___bridge_retained] = ACTIONS(2512), + [anon_sym___bridge_transfer] = ACTIONS(2512), + [anon_sym___complex] = ACTIONS(2512), + [anon_sym___const] = ACTIONS(2512), + [anon_sym___imag] = ACTIONS(2512), + [anon_sym___kindof] = ACTIONS(2512), + [anon_sym___nonnull] = ACTIONS(2512), + [anon_sym___nullable] = ACTIONS(2512), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2512), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2512), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2512), + [anon_sym___real] = ACTIONS(2512), + [anon_sym___strong] = ACTIONS(2512), + [anon_sym___unsafe_unretained] = ACTIONS(2512), + [anon_sym___unused] = ACTIONS(2512), + [anon_sym___weak] = ACTIONS(2512), + [anon_sym_alignas] = ACTIONS(2512), + [anon_sym__Alignas] = ACTIONS(2512), + [sym_primitive_type] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [anon_sym_struct] = ACTIONS(2512), + [anon_sym_union] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_else] = ACTIONS(2512), + [anon_sym_switch] = ACTIONS(2512), + [anon_sym_case] = ACTIONS(2512), + [anon_sym_default] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_do] = ACTIONS(2512), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_in] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_goto] = ACTIONS(2512), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_sizeof] = ACTIONS(2512), + [anon_sym___alignof__] = ACTIONS(2512), + [anon_sym___alignof] = ACTIONS(2512), + [anon_sym__alignof] = ACTIONS(2512), + [anon_sym_alignof] = ACTIONS(2512), + [anon_sym__Alignof] = ACTIONS(2512), + [anon_sym_offsetof] = ACTIONS(2512), + [anon_sym__Generic] = ACTIONS(2512), + [anon_sym_asm] = ACTIONS(2512), + [anon_sym___asm__] = ACTIONS(2512), + [anon_sym___asm] = ACTIONS(2512), + [sym_number_literal] = ACTIONS(2514), + [anon_sym_L_SQUOTE] = ACTIONS(2514), + [anon_sym_u_SQUOTE] = ACTIONS(2514), + [anon_sym_U_SQUOTE] = ACTIONS(2514), + [anon_sym_u8_SQUOTE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_AT] = ACTIONS(2512), + [anon_sym_DQUOTE] = ACTIONS(2514), + [anon_sym_L_DQUOTE] = ACTIONS(2514), + [anon_sym_u_DQUOTE] = ACTIONS(2514), + [anon_sym_U_DQUOTE] = ACTIONS(2514), + [anon_sym_u8_DQUOTE] = ACTIONS(2514), + [sym_true] = ACTIONS(2512), + [sym_false] = ACTIONS(2512), + [anon_sym_NULL] = ACTIONS(2512), + [anon_sym_nullptr] = ACTIONS(2512), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2512), + [anon_sym___typeof] = ACTIONS(2512), + [anon_sym_typeof] = ACTIONS(2512), + [anon_sym_ATimport] = ACTIONS(2514), + [aux_sym_preproc_undef_token1] = ACTIONS(2512), + [anon_sym_POUND] = ACTIONS(2512), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2512), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2512), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2512), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2512), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE] = ACTIONS(2512), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_API_AVAILABLE] = ACTIONS(2512), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_API_DEPRECATED] = ACTIONS(2512), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2512), + [anon_sym___deprecated_msg] = ACTIONS(2512), + [anon_sym___deprecated_enum_msg] = ACTIONS(2512), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2512), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2512), + [anon_sym_ATprotocol] = ACTIONS(2514), + [anon_sym_ATinterface] = ACTIONS(2514), + [anon_sym_ATimplementation] = ACTIONS(2514), + [anon_sym_ATcompatibility_alias] = ACTIONS(2514), + [anon_sym_ATtry] = ACTIONS(2514), + [anon_sym___try] = ACTIONS(2512), + [anon_sym_ATthrow] = ACTIONS(2514), + [anon_sym_ATselector] = ACTIONS(2514), + [anon_sym_ATavailable] = ACTIONS(2514), + [anon_sym___builtin_available] = ACTIONS(2512), + [anon_sym_va_arg] = ACTIONS(2512), + [anon_sym_ATencode] = ACTIONS(2514), + [anon_sym_ATsynchronized] = ACTIONS(2514), + [anon_sym_BOOL] = ACTIONS(2512), + [anon_sym_IMP] = ACTIONS(2512), + [anon_sym_SEL] = ACTIONS(2512), + [anon_sym_Class] = ACTIONS(2512), + [anon_sym_id] = ACTIONS(2512), + }, + [738] = { + [ts_builtin_sym_end] = ACTIONS(2554), + [sym_identifier] = ACTIONS(2552), + [aux_sym_preproc_include_token1] = ACTIONS(2552), + [aux_sym_preproc_include_token2] = ACTIONS(2552), + [aux_sym_preproc_def_token1] = ACTIONS(2552), + [aux_sym_preproc_if_token1] = ACTIONS(2552), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2552), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2552), + [sym_preproc_directive] = ACTIONS(2552), + [anon_sym_LPAREN2] = ACTIONS(2554), + [anon_sym_BANG] = ACTIONS(2554), + [anon_sym_TILDE] = ACTIONS(2554), + [anon_sym_DASH] = ACTIONS(2552), + [anon_sym_PLUS] = ACTIONS(2552), + [anon_sym_STAR] = ACTIONS(2554), + [anon_sym_CARET] = ACTIONS(2554), + [anon_sym_AMP] = ACTIONS(2554), + [anon_sym_SEMI] = ACTIONS(2554), + [anon_sym___extension__] = ACTIONS(2552), + [anon_sym_typedef] = ACTIONS(2552), + [anon_sym_extern] = ACTIONS(2552), + [anon_sym___attribute__] = ACTIONS(2552), + [anon_sym___attribute] = ACTIONS(2552), + [anon_sym_noreturn] = ACTIONS(2552), + [anon_sym_LBRACK] = ACTIONS(2554), + [anon_sym___declspec] = ACTIONS(2552), + [anon_sym___cdecl] = ACTIONS(2552), + [anon_sym___clrcall] = ACTIONS(2552), + [anon_sym___stdcall] = ACTIONS(2552), + [anon_sym___fastcall] = ACTIONS(2552), + [anon_sym___thiscall] = ACTIONS(2552), + [anon_sym___vectorcall] = ACTIONS(2552), + [anon_sym_LBRACE] = ACTIONS(2554), + [anon_sym_signed] = ACTIONS(2552), + [anon_sym_unsigned] = ACTIONS(2552), + [anon_sym_long] = ACTIONS(2552), + [anon_sym_short] = ACTIONS(2552), + [anon_sym_static] = ACTIONS(2552), + [anon_sym_ATautoreleasepool] = ACTIONS(2554), + [anon_sym_auto] = ACTIONS(2552), + [anon_sym_register] = ACTIONS(2552), + [anon_sym_inline] = ACTIONS(2552), + [anon_sym___inline] = ACTIONS(2552), + [anon_sym___inline__] = ACTIONS(2552), + [anon_sym___forceinline] = ACTIONS(2552), + [anon_sym_thread_local] = ACTIONS(2552), + [anon_sym___thread] = ACTIONS(2552), + [anon_sym_CG_EXTERN] = ACTIONS(2552), + [anon_sym_CG_INLINE] = ACTIONS(2552), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2552), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2552), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2552), + [anon_sym_IBOutlet] = ACTIONS(2552), + [anon_sym_IBInspectable] = ACTIONS(2552), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2552), + [anon_sym_NS_INLINE] = ACTIONS(2552), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2552), + [anon_sym_OBJC_EXPORT] = ACTIONS(2552), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2552), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2552), + [anon_sym_const] = ACTIONS(2552), + [anon_sym_constexpr] = ACTIONS(2552), + [anon_sym_volatile] = ACTIONS(2552), + [anon_sym_restrict] = ACTIONS(2552), + [anon_sym___restrict__] = ACTIONS(2552), + [anon_sym__Atomic] = ACTIONS(2552), + [anon_sym__Noreturn] = ACTIONS(2552), + [anon_sym__Nonnull] = ACTIONS(2552), + [anon_sym_nullable] = ACTIONS(2552), + [anon_sym__Complex] = ACTIONS(2552), + [anon_sym__Nullable] = ACTIONS(2552), + [anon_sym__Nullable_result] = ACTIONS(2552), + [anon_sym__Null_unspecified] = ACTIONS(2552), + [anon_sym___autoreleasing] = ACTIONS(2552), + [anon_sym___block] = ACTIONS(2552), + [anon_sym___bridge] = ACTIONS(2552), + [anon_sym___bridge_retained] = ACTIONS(2552), + [anon_sym___bridge_transfer] = ACTIONS(2552), + [anon_sym___complex] = ACTIONS(2552), + [anon_sym___const] = ACTIONS(2552), + [anon_sym___imag] = ACTIONS(2552), + [anon_sym___kindof] = ACTIONS(2552), + [anon_sym___nonnull] = ACTIONS(2552), + [anon_sym___nullable] = ACTIONS(2552), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2552), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2552), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2552), + [anon_sym___real] = ACTIONS(2552), + [anon_sym___strong] = ACTIONS(2552), + [anon_sym___unsafe_unretained] = ACTIONS(2552), + [anon_sym___unused] = ACTIONS(2552), + [anon_sym___weak] = ACTIONS(2552), + [anon_sym_alignas] = ACTIONS(2552), + [anon_sym__Alignas] = ACTIONS(2552), + [sym_primitive_type] = ACTIONS(2552), + [anon_sym_enum] = ACTIONS(2552), + [anon_sym_struct] = ACTIONS(2552), + [anon_sym_union] = ACTIONS(2552), + [anon_sym_if] = ACTIONS(2552), + [anon_sym_else] = ACTIONS(2552), + [anon_sym_switch] = ACTIONS(2552), + [anon_sym_case] = ACTIONS(2552), + [anon_sym_default] = ACTIONS(2552), + [anon_sym_while] = ACTIONS(2552), + [anon_sym_do] = ACTIONS(2552), + [anon_sym_for] = ACTIONS(2552), + [anon_sym_in] = ACTIONS(2552), + [anon_sym_return] = ACTIONS(2552), + [anon_sym_break] = ACTIONS(2552), + [anon_sym_continue] = ACTIONS(2552), + [anon_sym_goto] = ACTIONS(2552), + [anon_sym_DASH_DASH] = ACTIONS(2554), + [anon_sym_PLUS_PLUS] = ACTIONS(2554), + [anon_sym_sizeof] = ACTIONS(2552), + [anon_sym___alignof__] = ACTIONS(2552), + [anon_sym___alignof] = ACTIONS(2552), + [anon_sym__alignof] = ACTIONS(2552), + [anon_sym_alignof] = ACTIONS(2552), + [anon_sym__Alignof] = ACTIONS(2552), + [anon_sym_offsetof] = ACTIONS(2552), + [anon_sym__Generic] = ACTIONS(2552), + [anon_sym_asm] = ACTIONS(2552), + [anon_sym___asm__] = ACTIONS(2552), + [anon_sym___asm] = ACTIONS(2552), + [sym_number_literal] = ACTIONS(2554), + [anon_sym_L_SQUOTE] = ACTIONS(2554), + [anon_sym_u_SQUOTE] = ACTIONS(2554), + [anon_sym_U_SQUOTE] = ACTIONS(2554), + [anon_sym_u8_SQUOTE] = ACTIONS(2554), + [anon_sym_SQUOTE] = ACTIONS(2554), + [anon_sym_AT] = ACTIONS(2552), + [anon_sym_DQUOTE] = ACTIONS(2554), + [anon_sym_L_DQUOTE] = ACTIONS(2554), + [anon_sym_u_DQUOTE] = ACTIONS(2554), + [anon_sym_U_DQUOTE] = ACTIONS(2554), + [anon_sym_u8_DQUOTE] = ACTIONS(2554), + [sym_true] = ACTIONS(2552), + [sym_false] = ACTIONS(2552), + [anon_sym_NULL] = ACTIONS(2552), + [anon_sym_nullptr] = ACTIONS(2552), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2552), + [anon_sym___typeof] = ACTIONS(2552), + [anon_sym_typeof] = ACTIONS(2552), + [anon_sym_ATimport] = ACTIONS(2554), + [aux_sym_preproc_undef_token1] = ACTIONS(2552), + [anon_sym_POUND] = ACTIONS(2552), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2552), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2552), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2552), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2552), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2552), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2552), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2552), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2552), + [anon_sym_NS_AVAILABLE] = ACTIONS(2552), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2552), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_API_AVAILABLE] = ACTIONS(2552), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_API_DEPRECATED] = ACTIONS(2552), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2552), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2552), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2552), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2552), + [anon_sym___deprecated_msg] = ACTIONS(2552), + [anon_sym___deprecated_enum_msg] = ACTIONS(2552), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2552), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2552), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2552), + [anon_sym_ATprotocol] = ACTIONS(2554), + [anon_sym_ATinterface] = ACTIONS(2554), + [anon_sym_ATimplementation] = ACTIONS(2554), + [anon_sym_ATcompatibility_alias] = ACTIONS(2554), + [anon_sym_ATtry] = ACTIONS(2554), + [anon_sym___try] = ACTIONS(2552), + [anon_sym_ATthrow] = ACTIONS(2554), + [anon_sym_ATselector] = ACTIONS(2554), + [anon_sym_ATavailable] = ACTIONS(2554), + [anon_sym___builtin_available] = ACTIONS(2552), + [anon_sym_va_arg] = ACTIONS(2552), + [anon_sym_ATencode] = ACTIONS(2554), + [anon_sym_ATsynchronized] = ACTIONS(2554), + [anon_sym_BOOL] = ACTIONS(2552), + [anon_sym_IMP] = ACTIONS(2552), + [anon_sym_SEL] = ACTIONS(2552), + [anon_sym_Class] = ACTIONS(2552), + [anon_sym_id] = ACTIONS(2552), + }, + [739] = { + [ts_builtin_sym_end] = ACTIONS(2460), + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_include_token1] = ACTIONS(2458), + [aux_sym_preproc_include_token2] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2460), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2460), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_ATautoreleasepool] = ACTIONS(2460), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_goto] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2460), + [anon_sym_sizeof] = ACTIONS(2458), + [anon_sym___alignof__] = ACTIONS(2458), + [anon_sym___alignof] = ACTIONS(2458), + [anon_sym__alignof] = ACTIONS(2458), + [anon_sym_alignof] = ACTIONS(2458), + [anon_sym__Alignof] = ACTIONS(2458), + [anon_sym_offsetof] = ACTIONS(2458), + [anon_sym__Generic] = ACTIONS(2458), + [anon_sym_asm] = ACTIONS(2458), + [anon_sym___asm__] = ACTIONS(2458), + [anon_sym___asm] = ACTIONS(2458), + [sym_number_literal] = ACTIONS(2460), + [anon_sym_L_SQUOTE] = ACTIONS(2460), + [anon_sym_u_SQUOTE] = ACTIONS(2460), + [anon_sym_U_SQUOTE] = ACTIONS(2460), + [anon_sym_u8_SQUOTE] = ACTIONS(2460), + [anon_sym_SQUOTE] = ACTIONS(2460), + [anon_sym_AT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_L_DQUOTE] = ACTIONS(2460), + [anon_sym_u_DQUOTE] = ACTIONS(2460), + [anon_sym_U_DQUOTE] = ACTIONS(2460), + [anon_sym_u8_DQUOTE] = ACTIONS(2460), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [anon_sym_NULL] = ACTIONS(2458), + [anon_sym_nullptr] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_ATimport] = ACTIONS(2460), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_POUND] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATprotocol] = ACTIONS(2460), + [anon_sym_ATinterface] = ACTIONS(2460), + [anon_sym_ATimplementation] = ACTIONS(2460), + [anon_sym_ATcompatibility_alias] = ACTIONS(2460), + [anon_sym_ATtry] = ACTIONS(2460), + [anon_sym___try] = ACTIONS(2458), + [anon_sym_ATthrow] = ACTIONS(2460), + [anon_sym_ATselector] = ACTIONS(2460), + [anon_sym_ATavailable] = ACTIONS(2460), + [anon_sym___builtin_available] = ACTIONS(2458), + [anon_sym_va_arg] = ACTIONS(2458), + [anon_sym_ATencode] = ACTIONS(2460), + [anon_sym_ATsynchronized] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [740] = { + [ts_builtin_sym_end] = ACTIONS(2460), + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_include_token1] = ACTIONS(2458), + [aux_sym_preproc_include_token2] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2460), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2460), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_ATautoreleasepool] = ACTIONS(2460), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_goto] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2460), + [anon_sym_sizeof] = ACTIONS(2458), + [anon_sym___alignof__] = ACTIONS(2458), + [anon_sym___alignof] = ACTIONS(2458), + [anon_sym__alignof] = ACTIONS(2458), + [anon_sym_alignof] = ACTIONS(2458), + [anon_sym__Alignof] = ACTIONS(2458), + [anon_sym_offsetof] = ACTIONS(2458), + [anon_sym__Generic] = ACTIONS(2458), + [anon_sym_asm] = ACTIONS(2458), + [anon_sym___asm__] = ACTIONS(2458), + [anon_sym___asm] = ACTIONS(2458), + [sym_number_literal] = ACTIONS(2460), + [anon_sym_L_SQUOTE] = ACTIONS(2460), + [anon_sym_u_SQUOTE] = ACTIONS(2460), + [anon_sym_U_SQUOTE] = ACTIONS(2460), + [anon_sym_u8_SQUOTE] = ACTIONS(2460), + [anon_sym_SQUOTE] = ACTIONS(2460), + [anon_sym_AT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_L_DQUOTE] = ACTIONS(2460), + [anon_sym_u_DQUOTE] = ACTIONS(2460), + [anon_sym_U_DQUOTE] = ACTIONS(2460), + [anon_sym_u8_DQUOTE] = ACTIONS(2460), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [anon_sym_NULL] = ACTIONS(2458), + [anon_sym_nullptr] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_ATimport] = ACTIONS(2460), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_POUND] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATprotocol] = ACTIONS(2460), + [anon_sym_ATinterface] = ACTIONS(2460), + [anon_sym_ATimplementation] = ACTIONS(2460), + [anon_sym_ATcompatibility_alias] = ACTIONS(2460), + [anon_sym_ATtry] = ACTIONS(2460), + [anon_sym___try] = ACTIONS(2458), + [anon_sym_ATthrow] = ACTIONS(2460), + [anon_sym_ATselector] = ACTIONS(2460), + [anon_sym_ATavailable] = ACTIONS(2460), + [anon_sym___builtin_available] = ACTIONS(2458), + [anon_sym_va_arg] = ACTIONS(2458), + [anon_sym_ATencode] = ACTIONS(2460), + [anon_sym_ATsynchronized] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [741] = { + [ts_builtin_sym_end] = ACTIONS(2460), + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_include_token1] = ACTIONS(2458), + [aux_sym_preproc_include_token2] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2460), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2460), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_ATautoreleasepool] = ACTIONS(2460), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_goto] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2460), + [anon_sym_sizeof] = ACTIONS(2458), + [anon_sym___alignof__] = ACTIONS(2458), + [anon_sym___alignof] = ACTIONS(2458), + [anon_sym__alignof] = ACTIONS(2458), + [anon_sym_alignof] = ACTIONS(2458), + [anon_sym__Alignof] = ACTIONS(2458), + [anon_sym_offsetof] = ACTIONS(2458), + [anon_sym__Generic] = ACTIONS(2458), + [anon_sym_asm] = ACTIONS(2458), + [anon_sym___asm__] = ACTIONS(2458), + [anon_sym___asm] = ACTIONS(2458), + [sym_number_literal] = ACTIONS(2460), + [anon_sym_L_SQUOTE] = ACTIONS(2460), + [anon_sym_u_SQUOTE] = ACTIONS(2460), + [anon_sym_U_SQUOTE] = ACTIONS(2460), + [anon_sym_u8_SQUOTE] = ACTIONS(2460), + [anon_sym_SQUOTE] = ACTIONS(2460), + [anon_sym_AT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_L_DQUOTE] = ACTIONS(2460), + [anon_sym_u_DQUOTE] = ACTIONS(2460), + [anon_sym_U_DQUOTE] = ACTIONS(2460), + [anon_sym_u8_DQUOTE] = ACTIONS(2460), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [anon_sym_NULL] = ACTIONS(2458), + [anon_sym_nullptr] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_ATimport] = ACTIONS(2460), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_POUND] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATprotocol] = ACTIONS(2460), + [anon_sym_ATinterface] = ACTIONS(2460), + [anon_sym_ATimplementation] = ACTIONS(2460), + [anon_sym_ATcompatibility_alias] = ACTIONS(2460), + [anon_sym_ATtry] = ACTIONS(2460), + [anon_sym___try] = ACTIONS(2458), + [anon_sym_ATthrow] = ACTIONS(2460), + [anon_sym_ATselector] = ACTIONS(2460), + [anon_sym_ATavailable] = ACTIONS(2460), + [anon_sym___builtin_available] = ACTIONS(2458), + [anon_sym_va_arg] = ACTIONS(2458), + [anon_sym_ATencode] = ACTIONS(2460), + [anon_sym_ATsynchronized] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [742] = { + [ts_builtin_sym_end] = ACTIONS(2558), + [sym_identifier] = ACTIONS(2556), + [aux_sym_preproc_include_token1] = ACTIONS(2556), + [aux_sym_preproc_include_token2] = ACTIONS(2556), + [aux_sym_preproc_def_token1] = ACTIONS(2556), + [aux_sym_preproc_if_token1] = ACTIONS(2556), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2556), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2556), + [sym_preproc_directive] = ACTIONS(2556), + [anon_sym_LPAREN2] = ACTIONS(2558), + [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_TILDE] = ACTIONS(2558), + [anon_sym_DASH] = ACTIONS(2556), + [anon_sym_PLUS] = ACTIONS(2556), + [anon_sym_STAR] = ACTIONS(2558), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym_AMP] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym___extension__] = ACTIONS(2556), + [anon_sym_typedef] = ACTIONS(2556), + [anon_sym_extern] = ACTIONS(2556), + [anon_sym___attribute__] = ACTIONS(2556), + [anon_sym___attribute] = ACTIONS(2556), + [anon_sym_noreturn] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym___declspec] = ACTIONS(2556), + [anon_sym___cdecl] = ACTIONS(2556), + [anon_sym___clrcall] = ACTIONS(2556), + [anon_sym___stdcall] = ACTIONS(2556), + [anon_sym___fastcall] = ACTIONS(2556), + [anon_sym___thiscall] = ACTIONS(2556), + [anon_sym___vectorcall] = ACTIONS(2556), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_signed] = ACTIONS(2556), + [anon_sym_unsigned] = ACTIONS(2556), + [anon_sym_long] = ACTIONS(2556), + [anon_sym_short] = ACTIONS(2556), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_ATautoreleasepool] = ACTIONS(2558), + [anon_sym_auto] = ACTIONS(2556), + [anon_sym_register] = ACTIONS(2556), + [anon_sym_inline] = ACTIONS(2556), + [anon_sym___inline] = ACTIONS(2556), + [anon_sym___inline__] = ACTIONS(2556), + [anon_sym___forceinline] = ACTIONS(2556), + [anon_sym_thread_local] = ACTIONS(2556), + [anon_sym___thread] = ACTIONS(2556), + [anon_sym_CG_EXTERN] = ACTIONS(2556), + [anon_sym_CG_INLINE] = ACTIONS(2556), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2556), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2556), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2556), + [anon_sym_IBOutlet] = ACTIONS(2556), + [anon_sym_IBInspectable] = ACTIONS(2556), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2556), + [anon_sym_NS_INLINE] = ACTIONS(2556), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2556), + [anon_sym_OBJC_EXPORT] = ACTIONS(2556), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2556), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2556), + [anon_sym_const] = ACTIONS(2556), + [anon_sym_constexpr] = ACTIONS(2556), + [anon_sym_volatile] = ACTIONS(2556), + [anon_sym_restrict] = ACTIONS(2556), + [anon_sym___restrict__] = ACTIONS(2556), + [anon_sym__Atomic] = ACTIONS(2556), + [anon_sym__Noreturn] = ACTIONS(2556), + [anon_sym__Nonnull] = ACTIONS(2556), + [anon_sym_nullable] = ACTIONS(2556), + [anon_sym__Complex] = ACTIONS(2556), + [anon_sym__Nullable] = ACTIONS(2556), + [anon_sym__Nullable_result] = ACTIONS(2556), + [anon_sym__Null_unspecified] = ACTIONS(2556), + [anon_sym___autoreleasing] = ACTIONS(2556), + [anon_sym___block] = ACTIONS(2556), + [anon_sym___bridge] = ACTIONS(2556), + [anon_sym___bridge_retained] = ACTIONS(2556), + [anon_sym___bridge_transfer] = ACTIONS(2556), + [anon_sym___complex] = ACTIONS(2556), + [anon_sym___const] = ACTIONS(2556), + [anon_sym___imag] = ACTIONS(2556), + [anon_sym___kindof] = ACTIONS(2556), + [anon_sym___nonnull] = ACTIONS(2556), + [anon_sym___nullable] = ACTIONS(2556), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2556), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2556), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2556), + [anon_sym___real] = ACTIONS(2556), + [anon_sym___strong] = ACTIONS(2556), + [anon_sym___unsafe_unretained] = ACTIONS(2556), + [anon_sym___unused] = ACTIONS(2556), + [anon_sym___weak] = ACTIONS(2556), + [anon_sym_alignas] = ACTIONS(2556), + [anon_sym__Alignas] = ACTIONS(2556), + [sym_primitive_type] = ACTIONS(2556), + [anon_sym_enum] = ACTIONS(2556), + [anon_sym_struct] = ACTIONS(2556), + [anon_sym_union] = ACTIONS(2556), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_else] = ACTIONS(2556), + [anon_sym_switch] = ACTIONS(2556), + [anon_sym_case] = ACTIONS(2556), + [anon_sym_default] = ACTIONS(2556), + [anon_sym_while] = ACTIONS(2556), + [anon_sym_do] = ACTIONS(2556), + [anon_sym_for] = ACTIONS(2556), + [anon_sym_in] = ACTIONS(2556), + [anon_sym_return] = ACTIONS(2556), + [anon_sym_break] = ACTIONS(2556), + [anon_sym_continue] = ACTIONS(2556), + [anon_sym_goto] = ACTIONS(2556), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_sizeof] = ACTIONS(2556), + [anon_sym___alignof__] = ACTIONS(2556), + [anon_sym___alignof] = ACTIONS(2556), + [anon_sym__alignof] = ACTIONS(2556), + [anon_sym_alignof] = ACTIONS(2556), + [anon_sym__Alignof] = ACTIONS(2556), + [anon_sym_offsetof] = ACTIONS(2556), + [anon_sym__Generic] = ACTIONS(2556), + [anon_sym_asm] = ACTIONS(2556), + [anon_sym___asm__] = ACTIONS(2556), + [anon_sym___asm] = ACTIONS(2556), + [sym_number_literal] = ACTIONS(2558), + [anon_sym_L_SQUOTE] = ACTIONS(2558), + [anon_sym_u_SQUOTE] = ACTIONS(2558), + [anon_sym_U_SQUOTE] = ACTIONS(2558), + [anon_sym_u8_SQUOTE] = ACTIONS(2558), + [anon_sym_SQUOTE] = ACTIONS(2558), + [anon_sym_AT] = ACTIONS(2556), + [anon_sym_DQUOTE] = ACTIONS(2558), + [anon_sym_L_DQUOTE] = ACTIONS(2558), + [anon_sym_u_DQUOTE] = ACTIONS(2558), + [anon_sym_U_DQUOTE] = ACTIONS(2558), + [anon_sym_u8_DQUOTE] = ACTIONS(2558), + [sym_true] = ACTIONS(2556), + [sym_false] = ACTIONS(2556), + [anon_sym_NULL] = ACTIONS(2556), + [anon_sym_nullptr] = ACTIONS(2556), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2556), + [anon_sym___typeof] = ACTIONS(2556), + [anon_sym_typeof] = ACTIONS(2556), + [anon_sym_ATimport] = ACTIONS(2558), + [aux_sym_preproc_undef_token1] = ACTIONS(2556), + [anon_sym_POUND] = ACTIONS(2556), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2556), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2556), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2556), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2556), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2556), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2556), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2556), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2556), + [anon_sym_NS_AVAILABLE] = ACTIONS(2556), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2556), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_API_AVAILABLE] = ACTIONS(2556), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_API_DEPRECATED] = ACTIONS(2556), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2556), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2556), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2556), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2556), + [anon_sym___deprecated_msg] = ACTIONS(2556), + [anon_sym___deprecated_enum_msg] = ACTIONS(2556), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2556), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2556), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2556), + [anon_sym_ATprotocol] = ACTIONS(2558), + [anon_sym_ATinterface] = ACTIONS(2558), + [anon_sym_ATimplementation] = ACTIONS(2558), + [anon_sym_ATcompatibility_alias] = ACTIONS(2558), + [anon_sym_ATtry] = ACTIONS(2558), + [anon_sym___try] = ACTIONS(2556), + [anon_sym_ATthrow] = ACTIONS(2558), + [anon_sym_ATselector] = ACTIONS(2558), + [anon_sym_ATavailable] = ACTIONS(2558), + [anon_sym___builtin_available] = ACTIONS(2556), + [anon_sym_va_arg] = ACTIONS(2556), + [anon_sym_ATencode] = ACTIONS(2558), + [anon_sym_ATsynchronized] = ACTIONS(2558), + [anon_sym_BOOL] = ACTIONS(2556), + [anon_sym_IMP] = ACTIONS(2556), + [anon_sym_SEL] = ACTIONS(2556), + [anon_sym_Class] = ACTIONS(2556), + [anon_sym_id] = ACTIONS(2556), + }, + [743] = { + [ts_builtin_sym_end] = ACTIONS(2464), + [sym_identifier] = ACTIONS(2462), + [aux_sym_preproc_include_token1] = ACTIONS(2462), + [aux_sym_preproc_include_token2] = ACTIONS(2462), + [aux_sym_preproc_def_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2462), + [sym_preproc_directive] = ACTIONS(2462), + [anon_sym_LPAREN2] = ACTIONS(2464), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_CARET] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym___extension__] = ACTIONS(2462), + [anon_sym_typedef] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym___attribute__] = ACTIONS(2462), + [anon_sym___attribute] = ACTIONS(2462), + [anon_sym_noreturn] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2464), + [anon_sym___declspec] = ACTIONS(2462), + [anon_sym___cdecl] = ACTIONS(2462), + [anon_sym___clrcall] = ACTIONS(2462), + [anon_sym___stdcall] = ACTIONS(2462), + [anon_sym___fastcall] = ACTIONS(2462), + [anon_sym___thiscall] = ACTIONS(2462), + [anon_sym___vectorcall] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_signed] = ACTIONS(2462), + [anon_sym_unsigned] = ACTIONS(2462), + [anon_sym_long] = ACTIONS(2462), + [anon_sym_short] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_ATautoreleasepool] = ACTIONS(2464), + [anon_sym_auto] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_inline] = ACTIONS(2462), + [anon_sym___inline] = ACTIONS(2462), + [anon_sym___inline__] = ACTIONS(2462), + [anon_sym___forceinline] = ACTIONS(2462), + [anon_sym_thread_local] = ACTIONS(2462), + [anon_sym___thread] = ACTIONS(2462), + [anon_sym_CG_EXTERN] = ACTIONS(2462), + [anon_sym_CG_INLINE] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2462), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2462), + [anon_sym_IBOutlet] = ACTIONS(2462), + [anon_sym_IBInspectable] = ACTIONS(2462), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2462), + [anon_sym_NS_INLINE] = ACTIONS(2462), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2462), + [anon_sym_OBJC_EXPORT] = ACTIONS(2462), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_constexpr] = ACTIONS(2462), + [anon_sym_volatile] = ACTIONS(2462), + [anon_sym_restrict] = ACTIONS(2462), + [anon_sym___restrict__] = ACTIONS(2462), + [anon_sym__Atomic] = ACTIONS(2462), + [anon_sym__Noreturn] = ACTIONS(2462), + [anon_sym__Nonnull] = ACTIONS(2462), + [anon_sym_nullable] = ACTIONS(2462), + [anon_sym__Complex] = ACTIONS(2462), + [anon_sym__Nullable] = ACTIONS(2462), + [anon_sym__Nullable_result] = ACTIONS(2462), + [anon_sym__Null_unspecified] = ACTIONS(2462), + [anon_sym___autoreleasing] = ACTIONS(2462), + [anon_sym___block] = ACTIONS(2462), + [anon_sym___bridge] = ACTIONS(2462), + [anon_sym___bridge_retained] = ACTIONS(2462), + [anon_sym___bridge_transfer] = ACTIONS(2462), + [anon_sym___complex] = ACTIONS(2462), + [anon_sym___const] = ACTIONS(2462), + [anon_sym___imag] = ACTIONS(2462), + [anon_sym___kindof] = ACTIONS(2462), + [anon_sym___nonnull] = ACTIONS(2462), + [anon_sym___nullable] = ACTIONS(2462), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2462), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2462), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2462), + [anon_sym___real] = ACTIONS(2462), + [anon_sym___strong] = ACTIONS(2462), + [anon_sym___unsafe_unretained] = ACTIONS(2462), + [anon_sym___unused] = ACTIONS(2462), + [anon_sym___weak] = ACTIONS(2462), + [anon_sym_alignas] = ACTIONS(2462), + [anon_sym__Alignas] = ACTIONS(2462), + [sym_primitive_type] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_case] = ACTIONS(2462), + [anon_sym_default] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_in] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_goto] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(2464), + [anon_sym_sizeof] = ACTIONS(2462), + [anon_sym___alignof__] = ACTIONS(2462), + [anon_sym___alignof] = ACTIONS(2462), + [anon_sym__alignof] = ACTIONS(2462), + [anon_sym_alignof] = ACTIONS(2462), + [anon_sym__Alignof] = ACTIONS(2462), + [anon_sym_offsetof] = ACTIONS(2462), + [anon_sym__Generic] = ACTIONS(2462), + [anon_sym_asm] = ACTIONS(2462), + [anon_sym___asm__] = ACTIONS(2462), + [anon_sym___asm] = ACTIONS(2462), + [sym_number_literal] = ACTIONS(2464), + [anon_sym_L_SQUOTE] = ACTIONS(2464), + [anon_sym_u_SQUOTE] = ACTIONS(2464), + [anon_sym_U_SQUOTE] = ACTIONS(2464), + [anon_sym_u8_SQUOTE] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2464), + [anon_sym_AT] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2464), + [anon_sym_L_DQUOTE] = ACTIONS(2464), + [anon_sym_u_DQUOTE] = ACTIONS(2464), + [anon_sym_U_DQUOTE] = ACTIONS(2464), + [anon_sym_u8_DQUOTE] = ACTIONS(2464), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [anon_sym_NULL] = ACTIONS(2462), + [anon_sym_nullptr] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2462), + [anon_sym___typeof] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [anon_sym_ATimport] = ACTIONS(2464), + [aux_sym_preproc_undef_token1] = ACTIONS(2462), + [anon_sym_POUND] = ACTIONS(2462), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2462), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2462), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2462), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2462), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE] = ACTIONS(2462), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_API_AVAILABLE] = ACTIONS(2462), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_API_DEPRECATED] = ACTIONS(2462), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2462), + [anon_sym___deprecated_msg] = ACTIONS(2462), + [anon_sym___deprecated_enum_msg] = ACTIONS(2462), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2462), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2462), + [anon_sym_ATprotocol] = ACTIONS(2464), + [anon_sym_ATinterface] = ACTIONS(2464), + [anon_sym_ATimplementation] = ACTIONS(2464), + [anon_sym_ATcompatibility_alias] = ACTIONS(2464), + [anon_sym_ATtry] = ACTIONS(2464), + [anon_sym___try] = ACTIONS(2462), + [anon_sym_ATthrow] = ACTIONS(2464), + [anon_sym_ATselector] = ACTIONS(2464), + [anon_sym_ATavailable] = ACTIONS(2464), + [anon_sym___builtin_available] = ACTIONS(2462), + [anon_sym_va_arg] = ACTIONS(2462), + [anon_sym_ATencode] = ACTIONS(2464), + [anon_sym_ATsynchronized] = ACTIONS(2464), + [anon_sym_BOOL] = ACTIONS(2462), + [anon_sym_IMP] = ACTIONS(2462), + [anon_sym_SEL] = ACTIONS(2462), + [anon_sym_Class] = ACTIONS(2462), + [anon_sym_id] = ACTIONS(2462), + }, + [744] = { + [ts_builtin_sym_end] = ACTIONS(2464), + [sym_identifier] = ACTIONS(2462), + [aux_sym_preproc_include_token1] = ACTIONS(2462), + [aux_sym_preproc_include_token2] = ACTIONS(2462), + [aux_sym_preproc_def_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2462), + [sym_preproc_directive] = ACTIONS(2462), + [anon_sym_LPAREN2] = ACTIONS(2464), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_CARET] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym___extension__] = ACTIONS(2462), + [anon_sym_typedef] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym___attribute__] = ACTIONS(2462), + [anon_sym___attribute] = ACTIONS(2462), + [anon_sym_noreturn] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2464), + [anon_sym___declspec] = ACTIONS(2462), + [anon_sym___cdecl] = ACTIONS(2462), + [anon_sym___clrcall] = ACTIONS(2462), + [anon_sym___stdcall] = ACTIONS(2462), + [anon_sym___fastcall] = ACTIONS(2462), + [anon_sym___thiscall] = ACTIONS(2462), + [anon_sym___vectorcall] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_signed] = ACTIONS(2462), + [anon_sym_unsigned] = ACTIONS(2462), + [anon_sym_long] = ACTIONS(2462), + [anon_sym_short] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_ATautoreleasepool] = ACTIONS(2464), + [anon_sym_auto] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_inline] = ACTIONS(2462), + [anon_sym___inline] = ACTIONS(2462), + [anon_sym___inline__] = ACTIONS(2462), + [anon_sym___forceinline] = ACTIONS(2462), + [anon_sym_thread_local] = ACTIONS(2462), + [anon_sym___thread] = ACTIONS(2462), + [anon_sym_CG_EXTERN] = ACTIONS(2462), + [anon_sym_CG_INLINE] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2462), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2462), + [anon_sym_IBOutlet] = ACTIONS(2462), + [anon_sym_IBInspectable] = ACTIONS(2462), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2462), + [anon_sym_NS_INLINE] = ACTIONS(2462), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2462), + [anon_sym_OBJC_EXPORT] = ACTIONS(2462), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_constexpr] = ACTIONS(2462), + [anon_sym_volatile] = ACTIONS(2462), + [anon_sym_restrict] = ACTIONS(2462), + [anon_sym___restrict__] = ACTIONS(2462), + [anon_sym__Atomic] = ACTIONS(2462), + [anon_sym__Noreturn] = ACTIONS(2462), + [anon_sym__Nonnull] = ACTIONS(2462), + [anon_sym_nullable] = ACTIONS(2462), + [anon_sym__Complex] = ACTIONS(2462), + [anon_sym__Nullable] = ACTIONS(2462), + [anon_sym__Nullable_result] = ACTIONS(2462), + [anon_sym__Null_unspecified] = ACTIONS(2462), + [anon_sym___autoreleasing] = ACTIONS(2462), + [anon_sym___block] = ACTIONS(2462), + [anon_sym___bridge] = ACTIONS(2462), + [anon_sym___bridge_retained] = ACTIONS(2462), + [anon_sym___bridge_transfer] = ACTIONS(2462), + [anon_sym___complex] = ACTIONS(2462), + [anon_sym___const] = ACTIONS(2462), + [anon_sym___imag] = ACTIONS(2462), + [anon_sym___kindof] = ACTIONS(2462), + [anon_sym___nonnull] = ACTIONS(2462), + [anon_sym___nullable] = ACTIONS(2462), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2462), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2462), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2462), + [anon_sym___real] = ACTIONS(2462), + [anon_sym___strong] = ACTIONS(2462), + [anon_sym___unsafe_unretained] = ACTIONS(2462), + [anon_sym___unused] = ACTIONS(2462), + [anon_sym___weak] = ACTIONS(2462), + [anon_sym_alignas] = ACTIONS(2462), + [anon_sym__Alignas] = ACTIONS(2462), + [sym_primitive_type] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_case] = ACTIONS(2462), + [anon_sym_default] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_in] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_goto] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(2464), + [anon_sym_sizeof] = ACTIONS(2462), + [anon_sym___alignof__] = ACTIONS(2462), + [anon_sym___alignof] = ACTIONS(2462), + [anon_sym__alignof] = ACTIONS(2462), + [anon_sym_alignof] = ACTIONS(2462), + [anon_sym__Alignof] = ACTIONS(2462), + [anon_sym_offsetof] = ACTIONS(2462), + [anon_sym__Generic] = ACTIONS(2462), + [anon_sym_asm] = ACTIONS(2462), + [anon_sym___asm__] = ACTIONS(2462), + [anon_sym___asm] = ACTIONS(2462), + [sym_number_literal] = ACTIONS(2464), + [anon_sym_L_SQUOTE] = ACTIONS(2464), + [anon_sym_u_SQUOTE] = ACTIONS(2464), + [anon_sym_U_SQUOTE] = ACTIONS(2464), + [anon_sym_u8_SQUOTE] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2464), + [anon_sym_AT] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2464), + [anon_sym_L_DQUOTE] = ACTIONS(2464), + [anon_sym_u_DQUOTE] = ACTIONS(2464), + [anon_sym_U_DQUOTE] = ACTIONS(2464), + [anon_sym_u8_DQUOTE] = ACTIONS(2464), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [anon_sym_NULL] = ACTIONS(2462), + [anon_sym_nullptr] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2462), + [anon_sym___typeof] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [anon_sym_ATimport] = ACTIONS(2464), + [aux_sym_preproc_undef_token1] = ACTIONS(2462), + [anon_sym_POUND] = ACTIONS(2462), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2462), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2462), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2462), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2462), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE] = ACTIONS(2462), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_API_AVAILABLE] = ACTIONS(2462), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_API_DEPRECATED] = ACTIONS(2462), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2462), + [anon_sym___deprecated_msg] = ACTIONS(2462), + [anon_sym___deprecated_enum_msg] = ACTIONS(2462), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2462), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2462), + [anon_sym_ATprotocol] = ACTIONS(2464), + [anon_sym_ATinterface] = ACTIONS(2464), + [anon_sym_ATimplementation] = ACTIONS(2464), + [anon_sym_ATcompatibility_alias] = ACTIONS(2464), + [anon_sym_ATtry] = ACTIONS(2464), + [anon_sym___try] = ACTIONS(2462), + [anon_sym_ATthrow] = ACTIONS(2464), + [anon_sym_ATselector] = ACTIONS(2464), + [anon_sym_ATavailable] = ACTIONS(2464), + [anon_sym___builtin_available] = ACTIONS(2462), + [anon_sym_va_arg] = ACTIONS(2462), + [anon_sym_ATencode] = ACTIONS(2464), + [anon_sym_ATsynchronized] = ACTIONS(2464), + [anon_sym_BOOL] = ACTIONS(2462), + [anon_sym_IMP] = ACTIONS(2462), + [anon_sym_SEL] = ACTIONS(2462), + [anon_sym_Class] = ACTIONS(2462), + [anon_sym_id] = ACTIONS(2462), + }, + [745] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [746] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [747] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [748] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [749] = { + [ts_builtin_sym_end] = ACTIONS(2468), + [sym_identifier] = ACTIONS(2466), + [aux_sym_preproc_include_token1] = ACTIONS(2466), + [aux_sym_preproc_include_token2] = ACTIONS(2466), + [aux_sym_preproc_def_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token1] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2466), + [sym_preproc_directive] = ACTIONS(2466), + [anon_sym_LPAREN2] = ACTIONS(2468), + [anon_sym_BANG] = ACTIONS(2468), + [anon_sym_TILDE] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_PLUS] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2468), + [anon_sym_CARET] = ACTIONS(2468), + [anon_sym_AMP] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym___extension__] = ACTIONS(2466), + [anon_sym_typedef] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym___attribute__] = ACTIONS(2466), + [anon_sym___attribute] = ACTIONS(2466), + [anon_sym_noreturn] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2468), + [anon_sym___declspec] = ACTIONS(2466), + [anon_sym___cdecl] = ACTIONS(2466), + [anon_sym___clrcall] = ACTIONS(2466), + [anon_sym___stdcall] = ACTIONS(2466), + [anon_sym___fastcall] = ACTIONS(2466), + [anon_sym___thiscall] = ACTIONS(2466), + [anon_sym___vectorcall] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_signed] = ACTIONS(2466), + [anon_sym_unsigned] = ACTIONS(2466), + [anon_sym_long] = ACTIONS(2466), + [anon_sym_short] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_ATautoreleasepool] = ACTIONS(2468), + [anon_sym_auto] = ACTIONS(2466), + [anon_sym_register] = ACTIONS(2466), + [anon_sym_inline] = ACTIONS(2466), + [anon_sym___inline] = ACTIONS(2466), + [anon_sym___inline__] = ACTIONS(2466), + [anon_sym___forceinline] = ACTIONS(2466), + [anon_sym_thread_local] = ACTIONS(2466), + [anon_sym___thread] = ACTIONS(2466), + [anon_sym_CG_EXTERN] = ACTIONS(2466), + [anon_sym_CG_INLINE] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2466), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2466), + [anon_sym_IBOutlet] = ACTIONS(2466), + [anon_sym_IBInspectable] = ACTIONS(2466), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2466), + [anon_sym_NS_INLINE] = ACTIONS(2466), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2466), + [anon_sym_OBJC_EXPORT] = ACTIONS(2466), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_constexpr] = ACTIONS(2466), + [anon_sym_volatile] = ACTIONS(2466), + [anon_sym_restrict] = ACTIONS(2466), + [anon_sym___restrict__] = ACTIONS(2466), + [anon_sym__Atomic] = ACTIONS(2466), + [anon_sym__Noreturn] = ACTIONS(2466), + [anon_sym__Nonnull] = ACTIONS(2466), + [anon_sym_nullable] = ACTIONS(2466), + [anon_sym__Complex] = ACTIONS(2466), + [anon_sym__Nullable] = ACTIONS(2466), + [anon_sym__Nullable_result] = ACTIONS(2466), + [anon_sym__Null_unspecified] = ACTIONS(2466), + [anon_sym___autoreleasing] = ACTIONS(2466), + [anon_sym___block] = ACTIONS(2466), + [anon_sym___bridge] = ACTIONS(2466), + [anon_sym___bridge_retained] = ACTIONS(2466), + [anon_sym___bridge_transfer] = ACTIONS(2466), + [anon_sym___complex] = ACTIONS(2466), + [anon_sym___const] = ACTIONS(2466), + [anon_sym___imag] = ACTIONS(2466), + [anon_sym___kindof] = ACTIONS(2466), + [anon_sym___nonnull] = ACTIONS(2466), + [anon_sym___nullable] = ACTIONS(2466), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2466), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2466), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2466), + [anon_sym___real] = ACTIONS(2466), + [anon_sym___strong] = ACTIONS(2466), + [anon_sym___unsafe_unretained] = ACTIONS(2466), + [anon_sym___unused] = ACTIONS(2466), + [anon_sym___weak] = ACTIONS(2466), + [anon_sym_alignas] = ACTIONS(2466), + [anon_sym__Alignas] = ACTIONS(2466), + [sym_primitive_type] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), + [anon_sym_struct] = ACTIONS(2466), + [anon_sym_union] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_else] = ACTIONS(2466), + [anon_sym_switch] = ACTIONS(2466), + [anon_sym_case] = ACTIONS(2466), + [anon_sym_default] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_do] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_in] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_goto] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2468), + [anon_sym_PLUS_PLUS] = ACTIONS(2468), + [anon_sym_sizeof] = ACTIONS(2466), + [anon_sym___alignof__] = ACTIONS(2466), + [anon_sym___alignof] = ACTIONS(2466), + [anon_sym__alignof] = ACTIONS(2466), + [anon_sym_alignof] = ACTIONS(2466), + [anon_sym__Alignof] = ACTIONS(2466), + [anon_sym_offsetof] = ACTIONS(2466), + [anon_sym__Generic] = ACTIONS(2466), + [anon_sym_asm] = ACTIONS(2466), + [anon_sym___asm__] = ACTIONS(2466), + [anon_sym___asm] = ACTIONS(2466), + [sym_number_literal] = ACTIONS(2468), + [anon_sym_L_SQUOTE] = ACTIONS(2468), + [anon_sym_u_SQUOTE] = ACTIONS(2468), + [anon_sym_U_SQUOTE] = ACTIONS(2468), + [anon_sym_u8_SQUOTE] = ACTIONS(2468), + [anon_sym_SQUOTE] = ACTIONS(2468), + [anon_sym_AT] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2468), + [anon_sym_L_DQUOTE] = ACTIONS(2468), + [anon_sym_u_DQUOTE] = ACTIONS(2468), + [anon_sym_U_DQUOTE] = ACTIONS(2468), + [anon_sym_u8_DQUOTE] = ACTIONS(2468), + [sym_true] = ACTIONS(2466), + [sym_false] = ACTIONS(2466), + [anon_sym_NULL] = ACTIONS(2466), + [anon_sym_nullptr] = ACTIONS(2466), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2466), + [anon_sym___typeof] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2466), + [anon_sym_ATimport] = ACTIONS(2468), + [aux_sym_preproc_undef_token1] = ACTIONS(2466), + [anon_sym_POUND] = ACTIONS(2466), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2466), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2466), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2466), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2466), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE] = ACTIONS(2466), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_API_AVAILABLE] = ACTIONS(2466), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_API_DEPRECATED] = ACTIONS(2466), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2466), + [anon_sym___deprecated_msg] = ACTIONS(2466), + [anon_sym___deprecated_enum_msg] = ACTIONS(2466), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2466), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2466), + [anon_sym_ATprotocol] = ACTIONS(2468), + [anon_sym_ATinterface] = ACTIONS(2468), + [anon_sym_ATimplementation] = ACTIONS(2468), + [anon_sym_ATcompatibility_alias] = ACTIONS(2468), + [anon_sym_ATtry] = ACTIONS(2468), + [anon_sym___try] = ACTIONS(2466), + [anon_sym_ATthrow] = ACTIONS(2468), + [anon_sym_ATselector] = ACTIONS(2468), + [anon_sym_ATavailable] = ACTIONS(2468), + [anon_sym___builtin_available] = ACTIONS(2466), + [anon_sym_va_arg] = ACTIONS(2466), + [anon_sym_ATencode] = ACTIONS(2468), + [anon_sym_ATsynchronized] = ACTIONS(2468), + [anon_sym_BOOL] = ACTIONS(2466), + [anon_sym_IMP] = ACTIONS(2466), + [anon_sym_SEL] = ACTIONS(2466), + [anon_sym_Class] = ACTIONS(2466), + [anon_sym_id] = ACTIONS(2466), + }, + [750] = { + [ts_builtin_sym_end] = ACTIONS(2468), + [sym_identifier] = ACTIONS(2466), + [aux_sym_preproc_include_token1] = ACTIONS(2466), + [aux_sym_preproc_include_token2] = ACTIONS(2466), + [aux_sym_preproc_def_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token1] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2466), + [sym_preproc_directive] = ACTIONS(2466), + [anon_sym_LPAREN2] = ACTIONS(2468), + [anon_sym_BANG] = ACTIONS(2468), + [anon_sym_TILDE] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_PLUS] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2468), + [anon_sym_CARET] = ACTIONS(2468), + [anon_sym_AMP] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym___extension__] = ACTIONS(2466), + [anon_sym_typedef] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym___attribute__] = ACTIONS(2466), + [anon_sym___attribute] = ACTIONS(2466), + [anon_sym_noreturn] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2468), + [anon_sym___declspec] = ACTIONS(2466), + [anon_sym___cdecl] = ACTIONS(2466), + [anon_sym___clrcall] = ACTIONS(2466), + [anon_sym___stdcall] = ACTIONS(2466), + [anon_sym___fastcall] = ACTIONS(2466), + [anon_sym___thiscall] = ACTIONS(2466), + [anon_sym___vectorcall] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_signed] = ACTIONS(2466), + [anon_sym_unsigned] = ACTIONS(2466), + [anon_sym_long] = ACTIONS(2466), + [anon_sym_short] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_ATautoreleasepool] = ACTIONS(2468), + [anon_sym_auto] = ACTIONS(2466), + [anon_sym_register] = ACTIONS(2466), + [anon_sym_inline] = ACTIONS(2466), + [anon_sym___inline] = ACTIONS(2466), + [anon_sym___inline__] = ACTIONS(2466), + [anon_sym___forceinline] = ACTIONS(2466), + [anon_sym_thread_local] = ACTIONS(2466), + [anon_sym___thread] = ACTIONS(2466), + [anon_sym_CG_EXTERN] = ACTIONS(2466), + [anon_sym_CG_INLINE] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2466), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2466), + [anon_sym_IBOutlet] = ACTIONS(2466), + [anon_sym_IBInspectable] = ACTIONS(2466), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2466), + [anon_sym_NS_INLINE] = ACTIONS(2466), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2466), + [anon_sym_OBJC_EXPORT] = ACTIONS(2466), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_constexpr] = ACTIONS(2466), + [anon_sym_volatile] = ACTIONS(2466), + [anon_sym_restrict] = ACTIONS(2466), + [anon_sym___restrict__] = ACTIONS(2466), + [anon_sym__Atomic] = ACTIONS(2466), + [anon_sym__Noreturn] = ACTIONS(2466), + [anon_sym__Nonnull] = ACTIONS(2466), + [anon_sym_nullable] = ACTIONS(2466), + [anon_sym__Complex] = ACTIONS(2466), + [anon_sym__Nullable] = ACTIONS(2466), + [anon_sym__Nullable_result] = ACTIONS(2466), + [anon_sym__Null_unspecified] = ACTIONS(2466), + [anon_sym___autoreleasing] = ACTIONS(2466), + [anon_sym___block] = ACTIONS(2466), + [anon_sym___bridge] = ACTIONS(2466), + [anon_sym___bridge_retained] = ACTIONS(2466), + [anon_sym___bridge_transfer] = ACTIONS(2466), + [anon_sym___complex] = ACTIONS(2466), + [anon_sym___const] = ACTIONS(2466), + [anon_sym___imag] = ACTIONS(2466), + [anon_sym___kindof] = ACTIONS(2466), + [anon_sym___nonnull] = ACTIONS(2466), + [anon_sym___nullable] = ACTIONS(2466), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2466), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2466), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2466), + [anon_sym___real] = ACTIONS(2466), + [anon_sym___strong] = ACTIONS(2466), + [anon_sym___unsafe_unretained] = ACTIONS(2466), + [anon_sym___unused] = ACTIONS(2466), + [anon_sym___weak] = ACTIONS(2466), + [anon_sym_alignas] = ACTIONS(2466), + [anon_sym__Alignas] = ACTIONS(2466), + [sym_primitive_type] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), + [anon_sym_struct] = ACTIONS(2466), + [anon_sym_union] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_else] = ACTIONS(2466), + [anon_sym_switch] = ACTIONS(2466), + [anon_sym_case] = ACTIONS(2466), + [anon_sym_default] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_do] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_in] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_goto] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2468), + [anon_sym_PLUS_PLUS] = ACTIONS(2468), + [anon_sym_sizeof] = ACTIONS(2466), + [anon_sym___alignof__] = ACTIONS(2466), + [anon_sym___alignof] = ACTIONS(2466), + [anon_sym__alignof] = ACTIONS(2466), + [anon_sym_alignof] = ACTIONS(2466), + [anon_sym__Alignof] = ACTIONS(2466), + [anon_sym_offsetof] = ACTIONS(2466), + [anon_sym__Generic] = ACTIONS(2466), + [anon_sym_asm] = ACTIONS(2466), + [anon_sym___asm__] = ACTIONS(2466), + [anon_sym___asm] = ACTIONS(2466), + [sym_number_literal] = ACTIONS(2468), + [anon_sym_L_SQUOTE] = ACTIONS(2468), + [anon_sym_u_SQUOTE] = ACTIONS(2468), + [anon_sym_U_SQUOTE] = ACTIONS(2468), + [anon_sym_u8_SQUOTE] = ACTIONS(2468), + [anon_sym_SQUOTE] = ACTIONS(2468), + [anon_sym_AT] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2468), + [anon_sym_L_DQUOTE] = ACTIONS(2468), + [anon_sym_u_DQUOTE] = ACTIONS(2468), + [anon_sym_U_DQUOTE] = ACTIONS(2468), + [anon_sym_u8_DQUOTE] = ACTIONS(2468), + [sym_true] = ACTIONS(2466), + [sym_false] = ACTIONS(2466), + [anon_sym_NULL] = ACTIONS(2466), + [anon_sym_nullptr] = ACTIONS(2466), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2466), + [anon_sym___typeof] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2466), + [anon_sym_ATimport] = ACTIONS(2468), + [aux_sym_preproc_undef_token1] = ACTIONS(2466), + [anon_sym_POUND] = ACTIONS(2466), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2466), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2466), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2466), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2466), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE] = ACTIONS(2466), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_API_AVAILABLE] = ACTIONS(2466), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_API_DEPRECATED] = ACTIONS(2466), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2466), + [anon_sym___deprecated_msg] = ACTIONS(2466), + [anon_sym___deprecated_enum_msg] = ACTIONS(2466), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2466), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2466), + [anon_sym_ATprotocol] = ACTIONS(2468), + [anon_sym_ATinterface] = ACTIONS(2468), + [anon_sym_ATimplementation] = ACTIONS(2468), + [anon_sym_ATcompatibility_alias] = ACTIONS(2468), + [anon_sym_ATtry] = ACTIONS(2468), + [anon_sym___try] = ACTIONS(2466), + [anon_sym_ATthrow] = ACTIONS(2468), + [anon_sym_ATselector] = ACTIONS(2468), + [anon_sym_ATavailable] = ACTIONS(2468), + [anon_sym___builtin_available] = ACTIONS(2466), + [anon_sym_va_arg] = ACTIONS(2466), + [anon_sym_ATencode] = ACTIONS(2468), + [anon_sym_ATsynchronized] = ACTIONS(2468), + [anon_sym_BOOL] = ACTIONS(2466), + [anon_sym_IMP] = ACTIONS(2466), + [anon_sym_SEL] = ACTIONS(2466), + [anon_sym_Class] = ACTIONS(2466), + [anon_sym_id] = ACTIONS(2466), + }, + [751] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [752] = { + [sym_identifier] = ACTIONS(2560), + [aux_sym_preproc_include_token1] = ACTIONS(2560), + [aux_sym_preproc_include_token2] = ACTIONS(2560), + [aux_sym_preproc_def_token1] = ACTIONS(2560), + [aux_sym_preproc_if_token1] = ACTIONS(2560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2560), + [sym_preproc_directive] = ACTIONS(2560), + [anon_sym_LPAREN2] = ACTIONS(2562), + [anon_sym_BANG] = ACTIONS(2562), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_DASH] = ACTIONS(2560), + [anon_sym_PLUS] = ACTIONS(2560), + [anon_sym_STAR] = ACTIONS(2562), + [anon_sym_CARET] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2562), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym___extension__] = ACTIONS(2560), + [anon_sym_typedef] = ACTIONS(2560), + [anon_sym_extern] = ACTIONS(2560), + [anon_sym___attribute__] = ACTIONS(2560), + [anon_sym___attribute] = ACTIONS(2560), + [anon_sym_noreturn] = ACTIONS(2560), + [anon_sym_LBRACK] = ACTIONS(2562), + [anon_sym___declspec] = ACTIONS(2560), + [anon_sym___cdecl] = ACTIONS(2560), + [anon_sym___clrcall] = ACTIONS(2560), + [anon_sym___stdcall] = ACTIONS(2560), + [anon_sym___fastcall] = ACTIONS(2560), + [anon_sym___thiscall] = ACTIONS(2560), + [anon_sym___vectorcall] = ACTIONS(2560), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_RBRACE] = ACTIONS(2562), + [anon_sym_signed] = ACTIONS(2560), + [anon_sym_unsigned] = ACTIONS(2560), + [anon_sym_long] = ACTIONS(2560), + [anon_sym_short] = ACTIONS(2560), + [anon_sym_static] = ACTIONS(2560), + [anon_sym_ATautoreleasepool] = ACTIONS(2562), + [anon_sym_auto] = ACTIONS(2560), + [anon_sym_register] = ACTIONS(2560), + [anon_sym_inline] = ACTIONS(2560), + [anon_sym___inline] = ACTIONS(2560), + [anon_sym___inline__] = ACTIONS(2560), + [anon_sym___forceinline] = ACTIONS(2560), + [anon_sym_thread_local] = ACTIONS(2560), + [anon_sym___thread] = ACTIONS(2560), + [anon_sym_CG_EXTERN] = ACTIONS(2560), + [anon_sym_CG_INLINE] = ACTIONS(2560), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2560), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2560), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2560), + [anon_sym_IBOutlet] = ACTIONS(2560), + [anon_sym_IBInspectable] = ACTIONS(2560), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2560), + [anon_sym_NS_INLINE] = ACTIONS(2560), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2560), + [anon_sym_OBJC_EXPORT] = ACTIONS(2560), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2560), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2560), + [anon_sym_const] = ACTIONS(2560), + [anon_sym_constexpr] = ACTIONS(2560), + [anon_sym_volatile] = ACTIONS(2560), + [anon_sym_restrict] = ACTIONS(2560), + [anon_sym___restrict__] = ACTIONS(2560), + [anon_sym__Atomic] = ACTIONS(2560), + [anon_sym__Noreturn] = ACTIONS(2560), + [anon_sym__Nonnull] = ACTIONS(2560), + [anon_sym_nullable] = ACTIONS(2560), + [anon_sym__Complex] = ACTIONS(2560), + [anon_sym__Nullable] = ACTIONS(2560), + [anon_sym__Nullable_result] = ACTIONS(2560), + [anon_sym__Null_unspecified] = ACTIONS(2560), + [anon_sym___autoreleasing] = ACTIONS(2560), + [anon_sym___block] = ACTIONS(2560), + [anon_sym___bridge] = ACTIONS(2560), + [anon_sym___bridge_retained] = ACTIONS(2560), + [anon_sym___bridge_transfer] = ACTIONS(2560), + [anon_sym___complex] = ACTIONS(2560), + [anon_sym___const] = ACTIONS(2560), + [anon_sym___imag] = ACTIONS(2560), + [anon_sym___kindof] = ACTIONS(2560), + [anon_sym___nonnull] = ACTIONS(2560), + [anon_sym___nullable] = ACTIONS(2560), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2560), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2560), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2560), + [anon_sym___real] = ACTIONS(2560), + [anon_sym___strong] = ACTIONS(2560), + [anon_sym___unsafe_unretained] = ACTIONS(2560), + [anon_sym___unused] = ACTIONS(2560), + [anon_sym___weak] = ACTIONS(2560), + [anon_sym_alignas] = ACTIONS(2560), + [anon_sym__Alignas] = ACTIONS(2560), + [sym_primitive_type] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2560), + [anon_sym_struct] = ACTIONS(2560), + [anon_sym_union] = ACTIONS(2560), + [anon_sym_if] = ACTIONS(2560), + [anon_sym_else] = ACTIONS(2560), + [anon_sym_switch] = ACTIONS(2560), + [anon_sym_case] = ACTIONS(2560), + [anon_sym_default] = ACTIONS(2560), + [anon_sym_while] = ACTIONS(2560), + [anon_sym_do] = ACTIONS(2560), + [anon_sym_for] = ACTIONS(2560), + [anon_sym_in] = ACTIONS(2560), + [anon_sym_return] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_goto] = ACTIONS(2560), + [anon_sym_DASH_DASH] = ACTIONS(2562), + [anon_sym_PLUS_PLUS] = ACTIONS(2562), + [anon_sym_sizeof] = ACTIONS(2560), + [anon_sym___alignof__] = ACTIONS(2560), + [anon_sym___alignof] = ACTIONS(2560), + [anon_sym__alignof] = ACTIONS(2560), + [anon_sym_alignof] = ACTIONS(2560), + [anon_sym__Alignof] = ACTIONS(2560), + [anon_sym_offsetof] = ACTIONS(2560), + [anon_sym__Generic] = ACTIONS(2560), + [anon_sym_asm] = ACTIONS(2560), + [anon_sym___asm__] = ACTIONS(2560), + [anon_sym___asm] = ACTIONS(2560), + [sym_number_literal] = ACTIONS(2562), + [anon_sym_L_SQUOTE] = ACTIONS(2562), + [anon_sym_u_SQUOTE] = ACTIONS(2562), + [anon_sym_U_SQUOTE] = ACTIONS(2562), + [anon_sym_u8_SQUOTE] = ACTIONS(2562), + [anon_sym_SQUOTE] = ACTIONS(2562), + [anon_sym_AT] = ACTIONS(2560), + [anon_sym_DQUOTE] = ACTIONS(2562), + [anon_sym_L_DQUOTE] = ACTIONS(2562), + [anon_sym_u_DQUOTE] = ACTIONS(2562), + [anon_sym_U_DQUOTE] = ACTIONS(2562), + [anon_sym_u8_DQUOTE] = ACTIONS(2562), + [sym_true] = ACTIONS(2560), + [sym_false] = ACTIONS(2560), + [anon_sym_NULL] = ACTIONS(2560), + [anon_sym_nullptr] = ACTIONS(2560), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2560), + [anon_sym___typeof] = ACTIONS(2560), + [anon_sym_typeof] = ACTIONS(2560), + [anon_sym_ATimport] = ACTIONS(2562), + [aux_sym_preproc_undef_token1] = ACTIONS(2560), + [anon_sym_POUND] = ACTIONS(2560), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2560), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2560), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2560), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2560), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2560), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2560), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2560), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2560), + [anon_sym_NS_AVAILABLE] = ACTIONS(2560), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2560), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_API_AVAILABLE] = ACTIONS(2560), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_API_DEPRECATED] = ACTIONS(2560), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2560), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2560), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2560), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2560), + [anon_sym___deprecated_msg] = ACTIONS(2560), + [anon_sym___deprecated_enum_msg] = ACTIONS(2560), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2560), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2560), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2560), + [anon_sym_ATprotocol] = ACTIONS(2562), + [anon_sym_ATinterface] = ACTIONS(2562), + [anon_sym_ATimplementation] = ACTIONS(2562), + [anon_sym_ATcompatibility_alias] = ACTIONS(2562), + [anon_sym_ATtry] = ACTIONS(2562), + [anon_sym___try] = ACTIONS(2560), + [anon_sym_ATthrow] = ACTIONS(2562), + [anon_sym_ATselector] = ACTIONS(2562), + [anon_sym_ATavailable] = ACTIONS(2562), + [anon_sym___builtin_available] = ACTIONS(2560), + [anon_sym_va_arg] = ACTIONS(2560), + [anon_sym_ATencode] = ACTIONS(2562), + [anon_sym_ATsynchronized] = ACTIONS(2562), + [anon_sym_BOOL] = ACTIONS(2560), + [anon_sym_IMP] = ACTIONS(2560), + [anon_sym_SEL] = ACTIONS(2560), + [anon_sym_Class] = ACTIONS(2560), + [anon_sym_id] = ACTIONS(2560), + }, + [753] = { + [sym_identifier] = ACTIONS(2536), + [aux_sym_preproc_include_token1] = ACTIONS(2536), + [aux_sym_preproc_include_token2] = ACTIONS(2536), + [aux_sym_preproc_def_token1] = ACTIONS(2536), + [aux_sym_preproc_if_token1] = ACTIONS(2536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2536), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2536), + [sym_preproc_directive] = ACTIONS(2536), + [anon_sym_LPAREN2] = ACTIONS(2538), + [anon_sym_BANG] = ACTIONS(2538), + [anon_sym_TILDE] = ACTIONS(2538), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_STAR] = ACTIONS(2538), + [anon_sym_CARET] = ACTIONS(2538), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_SEMI] = ACTIONS(2538), + [anon_sym___extension__] = ACTIONS(2536), + [anon_sym_typedef] = ACTIONS(2536), + [anon_sym_extern] = ACTIONS(2536), + [anon_sym___attribute__] = ACTIONS(2536), + [anon_sym___attribute] = ACTIONS(2536), + [anon_sym_noreturn] = ACTIONS(2536), + [anon_sym_LBRACK] = ACTIONS(2538), + [anon_sym___declspec] = ACTIONS(2536), + [anon_sym___cdecl] = ACTIONS(2536), + [anon_sym___clrcall] = ACTIONS(2536), + [anon_sym___stdcall] = ACTIONS(2536), + [anon_sym___fastcall] = ACTIONS(2536), + [anon_sym___thiscall] = ACTIONS(2536), + [anon_sym___vectorcall] = ACTIONS(2536), + [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_RBRACE] = ACTIONS(2538), + [anon_sym_signed] = ACTIONS(2536), + [anon_sym_unsigned] = ACTIONS(2536), + [anon_sym_long] = ACTIONS(2536), + [anon_sym_short] = ACTIONS(2536), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_ATautoreleasepool] = ACTIONS(2538), + [anon_sym_auto] = ACTIONS(2536), + [anon_sym_register] = ACTIONS(2536), + [anon_sym_inline] = ACTIONS(2536), + [anon_sym___inline] = ACTIONS(2536), + [anon_sym___inline__] = ACTIONS(2536), + [anon_sym___forceinline] = ACTIONS(2536), + [anon_sym_thread_local] = ACTIONS(2536), + [anon_sym___thread] = ACTIONS(2536), + [anon_sym_CG_EXTERN] = ACTIONS(2536), + [anon_sym_CG_INLINE] = ACTIONS(2536), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2536), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2536), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2536), + [anon_sym_IBOutlet] = ACTIONS(2536), + [anon_sym_IBInspectable] = ACTIONS(2536), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2536), + [anon_sym_NS_INLINE] = ACTIONS(2536), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2536), + [anon_sym_OBJC_EXPORT] = ACTIONS(2536), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2536), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2536), + [anon_sym_const] = ACTIONS(2536), + [anon_sym_constexpr] = ACTIONS(2536), + [anon_sym_volatile] = ACTIONS(2536), + [anon_sym_restrict] = ACTIONS(2536), + [anon_sym___restrict__] = ACTIONS(2536), + [anon_sym__Atomic] = ACTIONS(2536), + [anon_sym__Noreturn] = ACTIONS(2536), + [anon_sym__Nonnull] = ACTIONS(2536), + [anon_sym_nullable] = ACTIONS(2536), + [anon_sym__Complex] = ACTIONS(2536), + [anon_sym__Nullable] = ACTIONS(2536), + [anon_sym__Nullable_result] = ACTIONS(2536), + [anon_sym__Null_unspecified] = ACTIONS(2536), + [anon_sym___autoreleasing] = ACTIONS(2536), + [anon_sym___block] = ACTIONS(2536), + [anon_sym___bridge] = ACTIONS(2536), + [anon_sym___bridge_retained] = ACTIONS(2536), + [anon_sym___bridge_transfer] = ACTIONS(2536), + [anon_sym___complex] = ACTIONS(2536), + [anon_sym___const] = ACTIONS(2536), + [anon_sym___imag] = ACTIONS(2536), + [anon_sym___kindof] = ACTIONS(2536), + [anon_sym___nonnull] = ACTIONS(2536), + [anon_sym___nullable] = ACTIONS(2536), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2536), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2536), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2536), + [anon_sym___real] = ACTIONS(2536), + [anon_sym___strong] = ACTIONS(2536), + [anon_sym___unsafe_unretained] = ACTIONS(2536), + [anon_sym___unused] = ACTIONS(2536), + [anon_sym___weak] = ACTIONS(2536), + [anon_sym_alignas] = ACTIONS(2536), + [anon_sym__Alignas] = ACTIONS(2536), + [sym_primitive_type] = ACTIONS(2536), + [anon_sym_enum] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2536), + [anon_sym_union] = ACTIONS(2536), + [anon_sym_if] = ACTIONS(2536), + [anon_sym_else] = ACTIONS(2536), + [anon_sym_switch] = ACTIONS(2536), + [anon_sym_case] = ACTIONS(2536), + [anon_sym_default] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2536), + [anon_sym_do] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2536), + [anon_sym_in] = ACTIONS(2536), + [anon_sym_return] = ACTIONS(2536), + [anon_sym_break] = ACTIONS(2536), + [anon_sym_continue] = ACTIONS(2536), + [anon_sym_goto] = ACTIONS(2536), + [anon_sym_DASH_DASH] = ACTIONS(2538), + [anon_sym_PLUS_PLUS] = ACTIONS(2538), + [anon_sym_sizeof] = ACTIONS(2536), + [anon_sym___alignof__] = ACTIONS(2536), + [anon_sym___alignof] = ACTIONS(2536), + [anon_sym__alignof] = ACTIONS(2536), + [anon_sym_alignof] = ACTIONS(2536), + [anon_sym__Alignof] = ACTIONS(2536), + [anon_sym_offsetof] = ACTIONS(2536), + [anon_sym__Generic] = ACTIONS(2536), + [anon_sym_asm] = ACTIONS(2536), + [anon_sym___asm__] = ACTIONS(2536), + [anon_sym___asm] = ACTIONS(2536), + [sym_number_literal] = ACTIONS(2538), + [anon_sym_L_SQUOTE] = ACTIONS(2538), + [anon_sym_u_SQUOTE] = ACTIONS(2538), + [anon_sym_U_SQUOTE] = ACTIONS(2538), + [anon_sym_u8_SQUOTE] = ACTIONS(2538), + [anon_sym_SQUOTE] = ACTIONS(2538), + [anon_sym_AT] = ACTIONS(2536), + [anon_sym_DQUOTE] = ACTIONS(2538), + [anon_sym_L_DQUOTE] = ACTIONS(2538), + [anon_sym_u_DQUOTE] = ACTIONS(2538), + [anon_sym_U_DQUOTE] = ACTIONS(2538), + [anon_sym_u8_DQUOTE] = ACTIONS(2538), + [sym_true] = ACTIONS(2536), + [sym_false] = ACTIONS(2536), + [anon_sym_NULL] = ACTIONS(2536), + [anon_sym_nullptr] = ACTIONS(2536), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2536), + [anon_sym___typeof] = ACTIONS(2536), + [anon_sym_typeof] = ACTIONS(2536), + [anon_sym_ATimport] = ACTIONS(2538), + [aux_sym_preproc_undef_token1] = ACTIONS(2536), + [anon_sym_POUND] = ACTIONS(2536), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2536), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2536), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2536), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2536), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2536), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2536), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2536), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2536), + [anon_sym_NS_AVAILABLE] = ACTIONS(2536), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2536), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_API_AVAILABLE] = ACTIONS(2536), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_API_DEPRECATED] = ACTIONS(2536), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2536), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2536), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2536), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2536), + [anon_sym___deprecated_msg] = ACTIONS(2536), + [anon_sym___deprecated_enum_msg] = ACTIONS(2536), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2536), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2536), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2536), + [anon_sym_ATprotocol] = ACTIONS(2538), + [anon_sym_ATinterface] = ACTIONS(2538), + [anon_sym_ATimplementation] = ACTIONS(2538), + [anon_sym_ATcompatibility_alias] = ACTIONS(2538), + [anon_sym_ATtry] = ACTIONS(2538), + [anon_sym___try] = ACTIONS(2536), + [anon_sym_ATthrow] = ACTIONS(2538), + [anon_sym_ATselector] = ACTIONS(2538), + [anon_sym_ATavailable] = ACTIONS(2538), + [anon_sym___builtin_available] = ACTIONS(2536), + [anon_sym_va_arg] = ACTIONS(2536), + [anon_sym_ATencode] = ACTIONS(2538), + [anon_sym_ATsynchronized] = ACTIONS(2538), + [anon_sym_BOOL] = ACTIONS(2536), + [anon_sym_IMP] = ACTIONS(2536), + [anon_sym_SEL] = ACTIONS(2536), + [anon_sym_Class] = ACTIONS(2536), + [anon_sym_id] = ACTIONS(2536), + }, + [754] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [755] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [756] = { + [sym_identifier] = ACTIONS(2540), + [aux_sym_preproc_include_token1] = ACTIONS(2540), + [aux_sym_preproc_include_token2] = ACTIONS(2540), + [aux_sym_preproc_def_token1] = ACTIONS(2540), + [aux_sym_preproc_if_token1] = ACTIONS(2540), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2540), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2540), + [sym_preproc_directive] = ACTIONS(2540), + [anon_sym_LPAREN2] = ACTIONS(2542), + [anon_sym_BANG] = ACTIONS(2542), + [anon_sym_TILDE] = ACTIONS(2542), + [anon_sym_DASH] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2540), + [anon_sym_STAR] = ACTIONS(2542), + [anon_sym_CARET] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2542), + [anon_sym___extension__] = ACTIONS(2540), + [anon_sym_typedef] = ACTIONS(2540), + [anon_sym_extern] = ACTIONS(2540), + [anon_sym___attribute__] = ACTIONS(2540), + [anon_sym___attribute] = ACTIONS(2540), + [anon_sym_noreturn] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym___declspec] = ACTIONS(2540), + [anon_sym___cdecl] = ACTIONS(2540), + [anon_sym___clrcall] = ACTIONS(2540), + [anon_sym___stdcall] = ACTIONS(2540), + [anon_sym___fastcall] = ACTIONS(2540), + [anon_sym___thiscall] = ACTIONS(2540), + [anon_sym___vectorcall] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2542), + [anon_sym_RBRACE] = ACTIONS(2542), + [anon_sym_signed] = ACTIONS(2540), + [anon_sym_unsigned] = ACTIONS(2540), + [anon_sym_long] = ACTIONS(2540), + [anon_sym_short] = ACTIONS(2540), + [anon_sym_static] = ACTIONS(2540), + [anon_sym_ATautoreleasepool] = ACTIONS(2542), + [anon_sym_auto] = ACTIONS(2540), + [anon_sym_register] = ACTIONS(2540), + [anon_sym_inline] = ACTIONS(2540), + [anon_sym___inline] = ACTIONS(2540), + [anon_sym___inline__] = ACTIONS(2540), + [anon_sym___forceinline] = ACTIONS(2540), + [anon_sym_thread_local] = ACTIONS(2540), + [anon_sym___thread] = ACTIONS(2540), + [anon_sym_CG_EXTERN] = ACTIONS(2540), + [anon_sym_CG_INLINE] = ACTIONS(2540), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2540), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2540), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2540), + [anon_sym_IBOutlet] = ACTIONS(2540), + [anon_sym_IBInspectable] = ACTIONS(2540), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2540), + [anon_sym_NS_INLINE] = ACTIONS(2540), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2540), + [anon_sym_OBJC_EXPORT] = ACTIONS(2540), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2540), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2540), + [anon_sym_const] = ACTIONS(2540), + [anon_sym_constexpr] = ACTIONS(2540), + [anon_sym_volatile] = ACTIONS(2540), + [anon_sym_restrict] = ACTIONS(2540), + [anon_sym___restrict__] = ACTIONS(2540), + [anon_sym__Atomic] = ACTIONS(2540), + [anon_sym__Noreturn] = ACTIONS(2540), + [anon_sym__Nonnull] = ACTIONS(2540), + [anon_sym_nullable] = ACTIONS(2540), + [anon_sym__Complex] = ACTIONS(2540), + [anon_sym__Nullable] = ACTIONS(2540), + [anon_sym__Nullable_result] = ACTIONS(2540), + [anon_sym__Null_unspecified] = ACTIONS(2540), + [anon_sym___autoreleasing] = ACTIONS(2540), + [anon_sym___block] = ACTIONS(2540), + [anon_sym___bridge] = ACTIONS(2540), + [anon_sym___bridge_retained] = ACTIONS(2540), + [anon_sym___bridge_transfer] = ACTIONS(2540), + [anon_sym___complex] = ACTIONS(2540), + [anon_sym___const] = ACTIONS(2540), + [anon_sym___imag] = ACTIONS(2540), + [anon_sym___kindof] = ACTIONS(2540), + [anon_sym___nonnull] = ACTIONS(2540), + [anon_sym___nullable] = ACTIONS(2540), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2540), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2540), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2540), + [anon_sym___real] = ACTIONS(2540), + [anon_sym___strong] = ACTIONS(2540), + [anon_sym___unsafe_unretained] = ACTIONS(2540), + [anon_sym___unused] = ACTIONS(2540), + [anon_sym___weak] = ACTIONS(2540), + [anon_sym_alignas] = ACTIONS(2540), + [anon_sym__Alignas] = ACTIONS(2540), + [sym_primitive_type] = ACTIONS(2540), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_struct] = ACTIONS(2540), + [anon_sym_union] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_else] = ACTIONS(2540), + [anon_sym_switch] = ACTIONS(2540), + [anon_sym_case] = ACTIONS(2540), + [anon_sym_default] = ACTIONS(2540), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_do] = ACTIONS(2540), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_in] = ACTIONS(2540), + [anon_sym_return] = ACTIONS(2540), + [anon_sym_break] = ACTIONS(2540), + [anon_sym_continue] = ACTIONS(2540), + [anon_sym_goto] = ACTIONS(2540), + [anon_sym_DASH_DASH] = ACTIONS(2542), + [anon_sym_PLUS_PLUS] = ACTIONS(2542), + [anon_sym_sizeof] = ACTIONS(2540), + [anon_sym___alignof__] = ACTIONS(2540), + [anon_sym___alignof] = ACTIONS(2540), + [anon_sym__alignof] = ACTIONS(2540), + [anon_sym_alignof] = ACTIONS(2540), + [anon_sym__Alignof] = ACTIONS(2540), + [anon_sym_offsetof] = ACTIONS(2540), + [anon_sym__Generic] = ACTIONS(2540), + [anon_sym_asm] = ACTIONS(2540), + [anon_sym___asm__] = ACTIONS(2540), + [anon_sym___asm] = ACTIONS(2540), + [sym_number_literal] = ACTIONS(2542), + [anon_sym_L_SQUOTE] = ACTIONS(2542), + [anon_sym_u_SQUOTE] = ACTIONS(2542), + [anon_sym_U_SQUOTE] = ACTIONS(2542), + [anon_sym_u8_SQUOTE] = ACTIONS(2542), + [anon_sym_SQUOTE] = ACTIONS(2542), + [anon_sym_AT] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2542), + [anon_sym_L_DQUOTE] = ACTIONS(2542), + [anon_sym_u_DQUOTE] = ACTIONS(2542), + [anon_sym_U_DQUOTE] = ACTIONS(2542), + [anon_sym_u8_DQUOTE] = ACTIONS(2542), + [sym_true] = ACTIONS(2540), + [sym_false] = ACTIONS(2540), + [anon_sym_NULL] = ACTIONS(2540), + [anon_sym_nullptr] = ACTIONS(2540), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2540), + [anon_sym___typeof] = ACTIONS(2540), + [anon_sym_typeof] = ACTIONS(2540), + [anon_sym_ATimport] = ACTIONS(2542), + [aux_sym_preproc_undef_token1] = ACTIONS(2540), + [anon_sym_POUND] = ACTIONS(2540), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2540), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2540), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2540), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2540), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2540), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2540), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2540), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2540), + [anon_sym_NS_AVAILABLE] = ACTIONS(2540), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2540), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_API_AVAILABLE] = ACTIONS(2540), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_API_DEPRECATED] = ACTIONS(2540), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2540), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2540), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2540), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2540), + [anon_sym___deprecated_msg] = ACTIONS(2540), + [anon_sym___deprecated_enum_msg] = ACTIONS(2540), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2540), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2540), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2540), + [anon_sym_ATprotocol] = ACTIONS(2542), + [anon_sym_ATinterface] = ACTIONS(2542), + [anon_sym_ATimplementation] = ACTIONS(2542), + [anon_sym_ATcompatibility_alias] = ACTIONS(2542), + [anon_sym_ATtry] = ACTIONS(2542), + [anon_sym___try] = ACTIONS(2540), + [anon_sym_ATthrow] = ACTIONS(2542), + [anon_sym_ATselector] = ACTIONS(2542), + [anon_sym_ATavailable] = ACTIONS(2542), + [anon_sym___builtin_available] = ACTIONS(2540), + [anon_sym_va_arg] = ACTIONS(2540), + [anon_sym_ATencode] = ACTIONS(2542), + [anon_sym_ATsynchronized] = ACTIONS(2542), + [anon_sym_BOOL] = ACTIONS(2540), + [anon_sym_IMP] = ACTIONS(2540), + [anon_sym_SEL] = ACTIONS(2540), + [anon_sym_Class] = ACTIONS(2540), + [anon_sym_id] = ACTIONS(2540), + }, + [757] = { + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_include_token1] = ACTIONS(2544), + [aux_sym_preproc_include_token2] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(2544), + [aux_sym_preproc_if_token1] = ACTIONS(2544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2544), + [sym_preproc_directive] = ACTIONS(2544), + [anon_sym_LPAREN2] = ACTIONS(2546), + [anon_sym_BANG] = ACTIONS(2546), + [anon_sym_TILDE] = ACTIONS(2546), + [anon_sym_DASH] = ACTIONS(2544), + [anon_sym_PLUS] = ACTIONS(2544), + [anon_sym_STAR] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2546), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym___extension__] = ACTIONS(2544), + [anon_sym_typedef] = ACTIONS(2544), + [anon_sym_extern] = ACTIONS(2544), + [anon_sym___attribute__] = ACTIONS(2544), + [anon_sym___attribute] = ACTIONS(2544), + [anon_sym_noreturn] = ACTIONS(2544), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym___declspec] = ACTIONS(2544), + [anon_sym___cdecl] = ACTIONS(2544), + [anon_sym___clrcall] = ACTIONS(2544), + [anon_sym___stdcall] = ACTIONS(2544), + [anon_sym___fastcall] = ACTIONS(2544), + [anon_sym___thiscall] = ACTIONS(2544), + [anon_sym___vectorcall] = ACTIONS(2544), + [anon_sym_LBRACE] = ACTIONS(2546), + [anon_sym_RBRACE] = ACTIONS(2546), + [anon_sym_signed] = ACTIONS(2544), + [anon_sym_unsigned] = ACTIONS(2544), + [anon_sym_long] = ACTIONS(2544), + [anon_sym_short] = ACTIONS(2544), + [anon_sym_static] = ACTIONS(2544), + [anon_sym_ATautoreleasepool] = ACTIONS(2546), + [anon_sym_auto] = ACTIONS(2544), + [anon_sym_register] = ACTIONS(2544), + [anon_sym_inline] = ACTIONS(2544), + [anon_sym___inline] = ACTIONS(2544), + [anon_sym___inline__] = ACTIONS(2544), + [anon_sym___forceinline] = ACTIONS(2544), + [anon_sym_thread_local] = ACTIONS(2544), + [anon_sym___thread] = ACTIONS(2544), + [anon_sym_CG_EXTERN] = ACTIONS(2544), + [anon_sym_CG_INLINE] = ACTIONS(2544), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2544), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2544), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2544), + [anon_sym_IBOutlet] = ACTIONS(2544), + [anon_sym_IBInspectable] = ACTIONS(2544), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2544), + [anon_sym_NS_INLINE] = ACTIONS(2544), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2544), + [anon_sym_OBJC_EXPORT] = ACTIONS(2544), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2544), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2544), + [anon_sym_const] = ACTIONS(2544), + [anon_sym_constexpr] = ACTIONS(2544), + [anon_sym_volatile] = ACTIONS(2544), + [anon_sym_restrict] = ACTIONS(2544), + [anon_sym___restrict__] = ACTIONS(2544), + [anon_sym__Atomic] = ACTIONS(2544), + [anon_sym__Noreturn] = ACTIONS(2544), + [anon_sym__Nonnull] = ACTIONS(2544), + [anon_sym_nullable] = ACTIONS(2544), + [anon_sym__Complex] = ACTIONS(2544), + [anon_sym__Nullable] = ACTIONS(2544), + [anon_sym__Nullable_result] = ACTIONS(2544), + [anon_sym__Null_unspecified] = ACTIONS(2544), + [anon_sym___autoreleasing] = ACTIONS(2544), + [anon_sym___block] = ACTIONS(2544), + [anon_sym___bridge] = ACTIONS(2544), + [anon_sym___bridge_retained] = ACTIONS(2544), + [anon_sym___bridge_transfer] = ACTIONS(2544), + [anon_sym___complex] = ACTIONS(2544), + [anon_sym___const] = ACTIONS(2544), + [anon_sym___imag] = ACTIONS(2544), + [anon_sym___kindof] = ACTIONS(2544), + [anon_sym___nonnull] = ACTIONS(2544), + [anon_sym___nullable] = ACTIONS(2544), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2544), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2544), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2544), + [anon_sym___real] = ACTIONS(2544), + [anon_sym___strong] = ACTIONS(2544), + [anon_sym___unsafe_unretained] = ACTIONS(2544), + [anon_sym___unused] = ACTIONS(2544), + [anon_sym___weak] = ACTIONS(2544), + [anon_sym_alignas] = ACTIONS(2544), + [anon_sym__Alignas] = ACTIONS(2544), + [sym_primitive_type] = ACTIONS(2544), + [anon_sym_enum] = ACTIONS(2544), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2544), + [anon_sym_if] = ACTIONS(2544), + [anon_sym_else] = ACTIONS(2544), + [anon_sym_switch] = ACTIONS(2544), + [anon_sym_case] = ACTIONS(2544), + [anon_sym_default] = ACTIONS(2544), + [anon_sym_while] = ACTIONS(2544), + [anon_sym_do] = ACTIONS(2544), + [anon_sym_for] = ACTIONS(2544), + [anon_sym_in] = ACTIONS(2544), + [anon_sym_return] = ACTIONS(2544), + [anon_sym_break] = ACTIONS(2544), + [anon_sym_continue] = ACTIONS(2544), + [anon_sym_goto] = ACTIONS(2544), + [anon_sym_DASH_DASH] = ACTIONS(2546), + [anon_sym_PLUS_PLUS] = ACTIONS(2546), + [anon_sym_sizeof] = ACTIONS(2544), + [anon_sym___alignof__] = ACTIONS(2544), + [anon_sym___alignof] = ACTIONS(2544), + [anon_sym__alignof] = ACTIONS(2544), + [anon_sym_alignof] = ACTIONS(2544), + [anon_sym__Alignof] = ACTIONS(2544), + [anon_sym_offsetof] = ACTIONS(2544), + [anon_sym__Generic] = ACTIONS(2544), + [anon_sym_asm] = ACTIONS(2544), + [anon_sym___asm__] = ACTIONS(2544), + [anon_sym___asm] = ACTIONS(2544), + [sym_number_literal] = ACTIONS(2546), + [anon_sym_L_SQUOTE] = ACTIONS(2546), + [anon_sym_u_SQUOTE] = ACTIONS(2546), + [anon_sym_U_SQUOTE] = ACTIONS(2546), + [anon_sym_u8_SQUOTE] = ACTIONS(2546), + [anon_sym_SQUOTE] = ACTIONS(2546), + [anon_sym_AT] = ACTIONS(2544), + [anon_sym_DQUOTE] = ACTIONS(2546), + [anon_sym_L_DQUOTE] = ACTIONS(2546), + [anon_sym_u_DQUOTE] = ACTIONS(2546), + [anon_sym_U_DQUOTE] = ACTIONS(2546), + [anon_sym_u8_DQUOTE] = ACTIONS(2546), + [sym_true] = ACTIONS(2544), + [sym_false] = ACTIONS(2544), + [anon_sym_NULL] = ACTIONS(2544), + [anon_sym_nullptr] = ACTIONS(2544), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2544), + [anon_sym___typeof] = ACTIONS(2544), + [anon_sym_typeof] = ACTIONS(2544), + [anon_sym_ATimport] = ACTIONS(2546), + [aux_sym_preproc_undef_token1] = ACTIONS(2544), + [anon_sym_POUND] = ACTIONS(2544), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2544), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2544), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2544), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2544), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2544), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2544), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2544), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2544), + [anon_sym_NS_AVAILABLE] = ACTIONS(2544), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2544), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_API_AVAILABLE] = ACTIONS(2544), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_API_DEPRECATED] = ACTIONS(2544), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2544), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2544), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2544), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2544), + [anon_sym___deprecated_msg] = ACTIONS(2544), + [anon_sym___deprecated_enum_msg] = ACTIONS(2544), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2544), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2544), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2544), + [anon_sym_ATprotocol] = ACTIONS(2546), + [anon_sym_ATinterface] = ACTIONS(2546), + [anon_sym_ATimplementation] = ACTIONS(2546), + [anon_sym_ATcompatibility_alias] = ACTIONS(2546), + [anon_sym_ATtry] = ACTIONS(2546), + [anon_sym___try] = ACTIONS(2544), + [anon_sym_ATthrow] = ACTIONS(2546), + [anon_sym_ATselector] = ACTIONS(2546), + [anon_sym_ATavailable] = ACTIONS(2546), + [anon_sym___builtin_available] = ACTIONS(2544), + [anon_sym_va_arg] = ACTIONS(2544), + [anon_sym_ATencode] = ACTIONS(2546), + [anon_sym_ATsynchronized] = ACTIONS(2546), + [anon_sym_BOOL] = ACTIONS(2544), + [anon_sym_IMP] = ACTIONS(2544), + [anon_sym_SEL] = ACTIONS(2544), + [anon_sym_Class] = ACTIONS(2544), + [anon_sym_id] = ACTIONS(2544), + }, + [758] = { + [sym_identifier] = ACTIONS(2446), + [aux_sym_preproc_include_token1] = ACTIONS(2446), + [aux_sym_preproc_include_token2] = ACTIONS(2446), + [aux_sym_preproc_def_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token1] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2446), + [sym_preproc_directive] = ACTIONS(2446), + [anon_sym_LPAREN2] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_TILDE] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_STAR] = ACTIONS(2448), + [anon_sym_CARET] = ACTIONS(2448), + [anon_sym_AMP] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym___extension__] = ACTIONS(2446), + [anon_sym_typedef] = ACTIONS(2446), + [anon_sym_extern] = ACTIONS(2446), + [anon_sym___attribute__] = ACTIONS(2446), + [anon_sym___attribute] = ACTIONS(2446), + [anon_sym_noreturn] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym___declspec] = ACTIONS(2446), + [anon_sym___cdecl] = ACTIONS(2446), + [anon_sym___clrcall] = ACTIONS(2446), + [anon_sym___stdcall] = ACTIONS(2446), + [anon_sym___fastcall] = ACTIONS(2446), + [anon_sym___thiscall] = ACTIONS(2446), + [anon_sym___vectorcall] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_RBRACE] = ACTIONS(2448), + [anon_sym_signed] = ACTIONS(2446), + [anon_sym_unsigned] = ACTIONS(2446), + [anon_sym_long] = ACTIONS(2446), + [anon_sym_short] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_ATautoreleasepool] = ACTIONS(2448), + [anon_sym_auto] = ACTIONS(2446), + [anon_sym_register] = ACTIONS(2446), + [anon_sym_inline] = ACTIONS(2446), + [anon_sym___inline] = ACTIONS(2446), + [anon_sym___inline__] = ACTIONS(2446), + [anon_sym___forceinline] = ACTIONS(2446), + [anon_sym_thread_local] = ACTIONS(2446), + [anon_sym___thread] = ACTIONS(2446), + [anon_sym_CG_EXTERN] = ACTIONS(2446), + [anon_sym_CG_INLINE] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2446), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2446), + [anon_sym_IBOutlet] = ACTIONS(2446), + [anon_sym_IBInspectable] = ACTIONS(2446), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2446), + [anon_sym_NS_INLINE] = ACTIONS(2446), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2446), + [anon_sym_OBJC_EXPORT] = ACTIONS(2446), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [anon_sym_constexpr] = ACTIONS(2446), + [anon_sym_volatile] = ACTIONS(2446), + [anon_sym_restrict] = ACTIONS(2446), + [anon_sym___restrict__] = ACTIONS(2446), + [anon_sym__Atomic] = ACTIONS(2446), + [anon_sym__Noreturn] = ACTIONS(2446), + [anon_sym__Nonnull] = ACTIONS(2446), + [anon_sym_nullable] = ACTIONS(2446), + [anon_sym__Complex] = ACTIONS(2446), + [anon_sym__Nullable] = ACTIONS(2446), + [anon_sym__Nullable_result] = ACTIONS(2446), + [anon_sym__Null_unspecified] = ACTIONS(2446), + [anon_sym___autoreleasing] = ACTIONS(2446), + [anon_sym___block] = ACTIONS(2446), + [anon_sym___bridge] = ACTIONS(2446), + [anon_sym___bridge_retained] = ACTIONS(2446), + [anon_sym___bridge_transfer] = ACTIONS(2446), + [anon_sym___complex] = ACTIONS(2446), + [anon_sym___const] = ACTIONS(2446), + [anon_sym___imag] = ACTIONS(2446), + [anon_sym___kindof] = ACTIONS(2446), + [anon_sym___nonnull] = ACTIONS(2446), + [anon_sym___nullable] = ACTIONS(2446), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2446), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2446), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2446), + [anon_sym___real] = ACTIONS(2446), + [anon_sym___strong] = ACTIONS(2446), + [anon_sym___unsafe_unretained] = ACTIONS(2446), + [anon_sym___unused] = ACTIONS(2446), + [anon_sym___weak] = ACTIONS(2446), + [anon_sym_alignas] = ACTIONS(2446), + [anon_sym__Alignas] = ACTIONS(2446), + [sym_primitive_type] = ACTIONS(2446), + [anon_sym_enum] = ACTIONS(2446), + [anon_sym_struct] = ACTIONS(2446), + [anon_sym_union] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2446), + [anon_sym_else] = ACTIONS(2446), + [anon_sym_switch] = ACTIONS(2446), + [anon_sym_case] = ACTIONS(2446), + [anon_sym_default] = ACTIONS(2446), + [anon_sym_while] = ACTIONS(2446), + [anon_sym_do] = ACTIONS(2446), + [anon_sym_for] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_return] = ACTIONS(2446), + [anon_sym_break] = ACTIONS(2446), + [anon_sym_continue] = ACTIONS(2446), + [anon_sym_goto] = ACTIONS(2446), + [anon_sym_DASH_DASH] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2448), + [anon_sym_sizeof] = ACTIONS(2446), + [anon_sym___alignof__] = ACTIONS(2446), + [anon_sym___alignof] = ACTIONS(2446), + [anon_sym__alignof] = ACTIONS(2446), + [anon_sym_alignof] = ACTIONS(2446), + [anon_sym__Alignof] = ACTIONS(2446), + [anon_sym_offsetof] = ACTIONS(2446), + [anon_sym__Generic] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(2446), + [anon_sym___asm__] = ACTIONS(2446), + [anon_sym___asm] = ACTIONS(2446), + [sym_number_literal] = ACTIONS(2448), + [anon_sym_L_SQUOTE] = ACTIONS(2448), + [anon_sym_u_SQUOTE] = ACTIONS(2448), + [anon_sym_U_SQUOTE] = ACTIONS(2448), + [anon_sym_u8_SQUOTE] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_L_DQUOTE] = ACTIONS(2448), + [anon_sym_u_DQUOTE] = ACTIONS(2448), + [anon_sym_U_DQUOTE] = ACTIONS(2448), + [anon_sym_u8_DQUOTE] = ACTIONS(2448), + [sym_true] = ACTIONS(2446), + [sym_false] = ACTIONS(2446), + [anon_sym_NULL] = ACTIONS(2446), + [anon_sym_nullptr] = ACTIONS(2446), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2446), + [anon_sym___typeof] = ACTIONS(2446), + [anon_sym_typeof] = ACTIONS(2446), + [anon_sym_ATimport] = ACTIONS(2448), + [aux_sym_preproc_undef_token1] = ACTIONS(2446), + [anon_sym_POUND] = ACTIONS(2446), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2446), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2446), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2446), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2446), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE] = ACTIONS(2446), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_API_AVAILABLE] = ACTIONS(2446), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_API_DEPRECATED] = ACTIONS(2446), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2446), + [anon_sym___deprecated_msg] = ACTIONS(2446), + [anon_sym___deprecated_enum_msg] = ACTIONS(2446), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2446), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2446), + [anon_sym_ATprotocol] = ACTIONS(2448), + [anon_sym_ATinterface] = ACTIONS(2448), + [anon_sym_ATimplementation] = ACTIONS(2448), + [anon_sym_ATcompatibility_alias] = ACTIONS(2448), + [anon_sym_ATtry] = ACTIONS(2448), + [anon_sym___try] = ACTIONS(2446), + [anon_sym_ATthrow] = ACTIONS(2448), + [anon_sym_ATselector] = ACTIONS(2448), + [anon_sym_ATavailable] = ACTIONS(2448), + [anon_sym___builtin_available] = ACTIONS(2446), + [anon_sym_va_arg] = ACTIONS(2446), + [anon_sym_ATencode] = ACTIONS(2448), + [anon_sym_ATsynchronized] = ACTIONS(2448), + [anon_sym_BOOL] = ACTIONS(2446), + [anon_sym_IMP] = ACTIONS(2446), + [anon_sym_SEL] = ACTIONS(2446), + [anon_sym_Class] = ACTIONS(2446), + [anon_sym_id] = ACTIONS(2446), + }, + [759] = { + [sym_identifier] = ACTIONS(2450), + [aux_sym_preproc_include_token1] = ACTIONS(2450), + [aux_sym_preproc_include_token2] = ACTIONS(2450), + [aux_sym_preproc_def_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2450), + [anon_sym_LPAREN2] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_CARET] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym___cdecl] = ACTIONS(2450), + [anon_sym___clrcall] = ACTIONS(2450), + [anon_sym___stdcall] = ACTIONS(2450), + [anon_sym___fastcall] = ACTIONS(2450), + [anon_sym___thiscall] = ACTIONS(2450), + [anon_sym___vectorcall] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2452), + [anon_sym_RBRACE] = ACTIONS(2452), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_ATautoreleasepool] = ACTIONS(2452), + [anon_sym_auto] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_CG_EXTERN] = ACTIONS(2450), + [anon_sym_CG_INLINE] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2450), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2450), + [anon_sym_IBOutlet] = ACTIONS(2450), + [anon_sym_IBInspectable] = ACTIONS(2450), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2450), + [anon_sym_NS_INLINE] = ACTIONS(2450), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2450), + [anon_sym_OBJC_EXPORT] = ACTIONS(2450), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_nullable] = ACTIONS(2450), + [anon_sym__Complex] = ACTIONS(2450), + [anon_sym__Nullable] = ACTIONS(2450), + [anon_sym__Nullable_result] = ACTIONS(2450), + [anon_sym__Null_unspecified] = ACTIONS(2450), + [anon_sym___autoreleasing] = ACTIONS(2450), + [anon_sym___block] = ACTIONS(2450), + [anon_sym___bridge] = ACTIONS(2450), + [anon_sym___bridge_retained] = ACTIONS(2450), + [anon_sym___bridge_transfer] = ACTIONS(2450), + [anon_sym___complex] = ACTIONS(2450), + [anon_sym___const] = ACTIONS(2450), + [anon_sym___imag] = ACTIONS(2450), + [anon_sym___kindof] = ACTIONS(2450), + [anon_sym___nonnull] = ACTIONS(2450), + [anon_sym___nullable] = ACTIONS(2450), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2450), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2450), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2450), + [anon_sym___real] = ACTIONS(2450), + [anon_sym___strong] = ACTIONS(2450), + [anon_sym___unsafe_unretained] = ACTIONS(2450), + [anon_sym___unused] = ACTIONS(2450), + [anon_sym___weak] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_else] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2450), + [anon_sym_case] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2450), + [anon_sym_while] = ACTIONS(2450), + [anon_sym_do] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_break] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_goto] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2452), + [anon_sym_sizeof] = ACTIONS(2450), + [anon_sym___alignof__] = ACTIONS(2450), + [anon_sym___alignof] = ACTIONS(2450), + [anon_sym__alignof] = ACTIONS(2450), + [anon_sym_alignof] = ACTIONS(2450), + [anon_sym__Alignof] = ACTIONS(2450), + [anon_sym_offsetof] = ACTIONS(2450), + [anon_sym__Generic] = ACTIONS(2450), + [anon_sym_asm] = ACTIONS(2450), + [anon_sym___asm__] = ACTIONS(2450), + [anon_sym___asm] = ACTIONS(2450), + [sym_number_literal] = ACTIONS(2452), + [anon_sym_L_SQUOTE] = ACTIONS(2452), + [anon_sym_u_SQUOTE] = ACTIONS(2452), + [anon_sym_U_SQUOTE] = ACTIONS(2452), + [anon_sym_u8_SQUOTE] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(2452), + [anon_sym_AT] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2452), + [anon_sym_L_DQUOTE] = ACTIONS(2452), + [anon_sym_u_DQUOTE] = ACTIONS(2452), + [anon_sym_U_DQUOTE] = ACTIONS(2452), + [anon_sym_u8_DQUOTE] = ACTIONS(2452), + [sym_true] = ACTIONS(2450), + [sym_false] = ACTIONS(2450), + [anon_sym_NULL] = ACTIONS(2450), + [anon_sym_nullptr] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2450), + [anon_sym___typeof] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [anon_sym_ATimport] = ACTIONS(2452), + [aux_sym_preproc_undef_token1] = ACTIONS(2450), + [anon_sym_POUND] = ACTIONS(2450), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2450), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2450), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2450), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2450), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE] = ACTIONS(2450), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_API_AVAILABLE] = ACTIONS(2450), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_API_DEPRECATED] = ACTIONS(2450), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2450), + [anon_sym___deprecated_msg] = ACTIONS(2450), + [anon_sym___deprecated_enum_msg] = ACTIONS(2450), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2450), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2450), + [anon_sym_ATprotocol] = ACTIONS(2452), + [anon_sym_ATinterface] = ACTIONS(2452), + [anon_sym_ATimplementation] = ACTIONS(2452), + [anon_sym_ATcompatibility_alias] = ACTIONS(2452), + [anon_sym_ATtry] = ACTIONS(2452), + [anon_sym___try] = ACTIONS(2450), + [anon_sym_ATthrow] = ACTIONS(2452), + [anon_sym_ATselector] = ACTIONS(2452), + [anon_sym_ATavailable] = ACTIONS(2452), + [anon_sym___builtin_available] = ACTIONS(2450), + [anon_sym_va_arg] = ACTIONS(2450), + [anon_sym_ATencode] = ACTIONS(2452), + [anon_sym_ATsynchronized] = ACTIONS(2452), + [anon_sym_BOOL] = ACTIONS(2450), + [anon_sym_IMP] = ACTIONS(2450), + [anon_sym_SEL] = ACTIONS(2450), + [anon_sym_Class] = ACTIONS(2450), + [anon_sym_id] = ACTIONS(2450), + }, + [760] = { + [sym_identifier] = ACTIONS(2454), + [aux_sym_preproc_include_token1] = ACTIONS(2454), + [aux_sym_preproc_include_token2] = ACTIONS(2454), + [aux_sym_preproc_def_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2454), + [sym_preproc_directive] = ACTIONS(2454), + [anon_sym_LPAREN2] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_CARET] = ACTIONS(2456), + [anon_sym_AMP] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym___extension__] = ACTIONS(2454), + [anon_sym_typedef] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym___attribute__] = ACTIONS(2454), + [anon_sym___attribute] = ACTIONS(2454), + [anon_sym_noreturn] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym___declspec] = ACTIONS(2454), + [anon_sym___cdecl] = ACTIONS(2454), + [anon_sym___clrcall] = ACTIONS(2454), + [anon_sym___stdcall] = ACTIONS(2454), + [anon_sym___fastcall] = ACTIONS(2454), + [anon_sym___thiscall] = ACTIONS(2454), + [anon_sym___vectorcall] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_signed] = ACTIONS(2454), + [anon_sym_unsigned] = ACTIONS(2454), + [anon_sym_long] = ACTIONS(2454), + [anon_sym_short] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_ATautoreleasepool] = ACTIONS(2456), + [anon_sym_auto] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_inline] = ACTIONS(2454), + [anon_sym___inline] = ACTIONS(2454), + [anon_sym___inline__] = ACTIONS(2454), + [anon_sym___forceinline] = ACTIONS(2454), + [anon_sym_thread_local] = ACTIONS(2454), + [anon_sym___thread] = ACTIONS(2454), + [anon_sym_CG_EXTERN] = ACTIONS(2454), + [anon_sym_CG_INLINE] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2454), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2454), + [anon_sym_IBOutlet] = ACTIONS(2454), + [anon_sym_IBInspectable] = ACTIONS(2454), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2454), + [anon_sym_NS_INLINE] = ACTIONS(2454), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2454), + [anon_sym_OBJC_EXPORT] = ACTIONS(2454), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_constexpr] = ACTIONS(2454), + [anon_sym_volatile] = ACTIONS(2454), + [anon_sym_restrict] = ACTIONS(2454), + [anon_sym___restrict__] = ACTIONS(2454), + [anon_sym__Atomic] = ACTIONS(2454), + [anon_sym__Noreturn] = ACTIONS(2454), + [anon_sym__Nonnull] = ACTIONS(2454), + [anon_sym_nullable] = ACTIONS(2454), + [anon_sym__Complex] = ACTIONS(2454), + [anon_sym__Nullable] = ACTIONS(2454), + [anon_sym__Nullable_result] = ACTIONS(2454), + [anon_sym__Null_unspecified] = ACTIONS(2454), + [anon_sym___autoreleasing] = ACTIONS(2454), + [anon_sym___block] = ACTIONS(2454), + [anon_sym___bridge] = ACTIONS(2454), + [anon_sym___bridge_retained] = ACTIONS(2454), + [anon_sym___bridge_transfer] = ACTIONS(2454), + [anon_sym___complex] = ACTIONS(2454), + [anon_sym___const] = ACTIONS(2454), + [anon_sym___imag] = ACTIONS(2454), + [anon_sym___kindof] = ACTIONS(2454), + [anon_sym___nonnull] = ACTIONS(2454), + [anon_sym___nullable] = ACTIONS(2454), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2454), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2454), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2454), + [anon_sym___real] = ACTIONS(2454), + [anon_sym___strong] = ACTIONS(2454), + [anon_sym___unsafe_unretained] = ACTIONS(2454), + [anon_sym___unused] = ACTIONS(2454), + [anon_sym___weak] = ACTIONS(2454), + [anon_sym_alignas] = ACTIONS(2454), + [anon_sym__Alignas] = ACTIONS(2454), + [sym_primitive_type] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2454), + [anon_sym_else] = ACTIONS(2454), + [anon_sym_switch] = ACTIONS(2454), + [anon_sym_case] = ACTIONS(2454), + [anon_sym_default] = ACTIONS(2454), + [anon_sym_while] = ACTIONS(2454), + [anon_sym_do] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_in] = ACTIONS(2454), + [anon_sym_return] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_goto] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_sizeof] = ACTIONS(2454), + [anon_sym___alignof__] = ACTIONS(2454), + [anon_sym___alignof] = ACTIONS(2454), + [anon_sym__alignof] = ACTIONS(2454), + [anon_sym_alignof] = ACTIONS(2454), + [anon_sym__Alignof] = ACTIONS(2454), + [anon_sym_offsetof] = ACTIONS(2454), + [anon_sym__Generic] = ACTIONS(2454), + [anon_sym_asm] = ACTIONS(2454), + [anon_sym___asm__] = ACTIONS(2454), + [anon_sym___asm] = ACTIONS(2454), + [sym_number_literal] = ACTIONS(2456), + [anon_sym_L_SQUOTE] = ACTIONS(2456), + [anon_sym_u_SQUOTE] = ACTIONS(2456), + [anon_sym_U_SQUOTE] = ACTIONS(2456), + [anon_sym_u8_SQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_L_DQUOTE] = ACTIONS(2456), + [anon_sym_u_DQUOTE] = ACTIONS(2456), + [anon_sym_U_DQUOTE] = ACTIONS(2456), + [anon_sym_u8_DQUOTE] = ACTIONS(2456), + [sym_true] = ACTIONS(2454), + [sym_false] = ACTIONS(2454), + [anon_sym_NULL] = ACTIONS(2454), + [anon_sym_nullptr] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2454), + [anon_sym___typeof] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(2454), + [anon_sym_ATimport] = ACTIONS(2456), + [aux_sym_preproc_undef_token1] = ACTIONS(2454), + [anon_sym_POUND] = ACTIONS(2454), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2454), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2454), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2454), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2454), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE] = ACTIONS(2454), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_API_AVAILABLE] = ACTIONS(2454), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_API_DEPRECATED] = ACTIONS(2454), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2454), + [anon_sym___deprecated_msg] = ACTIONS(2454), + [anon_sym___deprecated_enum_msg] = ACTIONS(2454), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2454), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2454), + [anon_sym_ATprotocol] = ACTIONS(2456), + [anon_sym_ATinterface] = ACTIONS(2456), + [anon_sym_ATimplementation] = ACTIONS(2456), + [anon_sym_ATcompatibility_alias] = ACTIONS(2456), + [anon_sym_ATtry] = ACTIONS(2456), + [anon_sym___try] = ACTIONS(2454), + [anon_sym_ATthrow] = ACTIONS(2456), + [anon_sym_ATselector] = ACTIONS(2456), + [anon_sym_ATavailable] = ACTIONS(2456), + [anon_sym___builtin_available] = ACTIONS(2454), + [anon_sym_va_arg] = ACTIONS(2454), + [anon_sym_ATencode] = ACTIONS(2456), + [anon_sym_ATsynchronized] = ACTIONS(2456), + [anon_sym_BOOL] = ACTIONS(2454), + [anon_sym_IMP] = ACTIONS(2454), + [anon_sym_SEL] = ACTIONS(2454), + [anon_sym_Class] = ACTIONS(2454), + [anon_sym_id] = ACTIONS(2454), + }, + [761] = { + [sym_identifier] = ACTIONS(2454), + [aux_sym_preproc_include_token1] = ACTIONS(2454), + [aux_sym_preproc_include_token2] = ACTIONS(2454), + [aux_sym_preproc_def_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2454), + [sym_preproc_directive] = ACTIONS(2454), + [anon_sym_LPAREN2] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_CARET] = ACTIONS(2456), + [anon_sym_AMP] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym___extension__] = ACTIONS(2454), + [anon_sym_typedef] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym___attribute__] = ACTIONS(2454), + [anon_sym___attribute] = ACTIONS(2454), + [anon_sym_noreturn] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym___declspec] = ACTIONS(2454), + [anon_sym___cdecl] = ACTIONS(2454), + [anon_sym___clrcall] = ACTIONS(2454), + [anon_sym___stdcall] = ACTIONS(2454), + [anon_sym___fastcall] = ACTIONS(2454), + [anon_sym___thiscall] = ACTIONS(2454), + [anon_sym___vectorcall] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_signed] = ACTIONS(2454), + [anon_sym_unsigned] = ACTIONS(2454), + [anon_sym_long] = ACTIONS(2454), + [anon_sym_short] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_ATautoreleasepool] = ACTIONS(2456), + [anon_sym_auto] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_inline] = ACTIONS(2454), + [anon_sym___inline] = ACTIONS(2454), + [anon_sym___inline__] = ACTIONS(2454), + [anon_sym___forceinline] = ACTIONS(2454), + [anon_sym_thread_local] = ACTIONS(2454), + [anon_sym___thread] = ACTIONS(2454), + [anon_sym_CG_EXTERN] = ACTIONS(2454), + [anon_sym_CG_INLINE] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2454), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2454), + [anon_sym_IBOutlet] = ACTIONS(2454), + [anon_sym_IBInspectable] = ACTIONS(2454), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2454), + [anon_sym_NS_INLINE] = ACTIONS(2454), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2454), + [anon_sym_OBJC_EXPORT] = ACTIONS(2454), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_constexpr] = ACTIONS(2454), + [anon_sym_volatile] = ACTIONS(2454), + [anon_sym_restrict] = ACTIONS(2454), + [anon_sym___restrict__] = ACTIONS(2454), + [anon_sym__Atomic] = ACTIONS(2454), + [anon_sym__Noreturn] = ACTIONS(2454), + [anon_sym__Nonnull] = ACTIONS(2454), + [anon_sym_nullable] = ACTIONS(2454), + [anon_sym__Complex] = ACTIONS(2454), + [anon_sym__Nullable] = ACTIONS(2454), + [anon_sym__Nullable_result] = ACTIONS(2454), + [anon_sym__Null_unspecified] = ACTIONS(2454), + [anon_sym___autoreleasing] = ACTIONS(2454), + [anon_sym___block] = ACTIONS(2454), + [anon_sym___bridge] = ACTIONS(2454), + [anon_sym___bridge_retained] = ACTIONS(2454), + [anon_sym___bridge_transfer] = ACTIONS(2454), + [anon_sym___complex] = ACTIONS(2454), + [anon_sym___const] = ACTIONS(2454), + [anon_sym___imag] = ACTIONS(2454), + [anon_sym___kindof] = ACTIONS(2454), + [anon_sym___nonnull] = ACTIONS(2454), + [anon_sym___nullable] = ACTIONS(2454), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2454), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2454), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2454), + [anon_sym___real] = ACTIONS(2454), + [anon_sym___strong] = ACTIONS(2454), + [anon_sym___unsafe_unretained] = ACTIONS(2454), + [anon_sym___unused] = ACTIONS(2454), + [anon_sym___weak] = ACTIONS(2454), + [anon_sym_alignas] = ACTIONS(2454), + [anon_sym__Alignas] = ACTIONS(2454), + [sym_primitive_type] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2454), + [anon_sym_else] = ACTIONS(2454), + [anon_sym_switch] = ACTIONS(2454), + [anon_sym_case] = ACTIONS(2454), + [anon_sym_default] = ACTIONS(2454), + [anon_sym_while] = ACTIONS(2454), + [anon_sym_do] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_in] = ACTIONS(2454), + [anon_sym_return] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_goto] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_sizeof] = ACTIONS(2454), + [anon_sym___alignof__] = ACTIONS(2454), + [anon_sym___alignof] = ACTIONS(2454), + [anon_sym__alignof] = ACTIONS(2454), + [anon_sym_alignof] = ACTIONS(2454), + [anon_sym__Alignof] = ACTIONS(2454), + [anon_sym_offsetof] = ACTIONS(2454), + [anon_sym__Generic] = ACTIONS(2454), + [anon_sym_asm] = ACTIONS(2454), + [anon_sym___asm__] = ACTIONS(2454), + [anon_sym___asm] = ACTIONS(2454), + [sym_number_literal] = ACTIONS(2456), + [anon_sym_L_SQUOTE] = ACTIONS(2456), + [anon_sym_u_SQUOTE] = ACTIONS(2456), + [anon_sym_U_SQUOTE] = ACTIONS(2456), + [anon_sym_u8_SQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_L_DQUOTE] = ACTIONS(2456), + [anon_sym_u_DQUOTE] = ACTIONS(2456), + [anon_sym_U_DQUOTE] = ACTIONS(2456), + [anon_sym_u8_DQUOTE] = ACTIONS(2456), + [sym_true] = ACTIONS(2454), + [sym_false] = ACTIONS(2454), + [anon_sym_NULL] = ACTIONS(2454), + [anon_sym_nullptr] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2454), + [anon_sym___typeof] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(2454), + [anon_sym_ATimport] = ACTIONS(2456), + [aux_sym_preproc_undef_token1] = ACTIONS(2454), + [anon_sym_POUND] = ACTIONS(2454), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2454), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2454), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2454), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2454), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE] = ACTIONS(2454), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_API_AVAILABLE] = ACTIONS(2454), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_API_DEPRECATED] = ACTIONS(2454), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2454), + [anon_sym___deprecated_msg] = ACTIONS(2454), + [anon_sym___deprecated_enum_msg] = ACTIONS(2454), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2454), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2454), + [anon_sym_ATprotocol] = ACTIONS(2456), + [anon_sym_ATinterface] = ACTIONS(2456), + [anon_sym_ATimplementation] = ACTIONS(2456), + [anon_sym_ATcompatibility_alias] = ACTIONS(2456), + [anon_sym_ATtry] = ACTIONS(2456), + [anon_sym___try] = ACTIONS(2454), + [anon_sym_ATthrow] = ACTIONS(2456), + [anon_sym_ATselector] = ACTIONS(2456), + [anon_sym_ATavailable] = ACTIONS(2456), + [anon_sym___builtin_available] = ACTIONS(2454), + [anon_sym_va_arg] = ACTIONS(2454), + [anon_sym_ATencode] = ACTIONS(2456), + [anon_sym_ATsynchronized] = ACTIONS(2456), + [anon_sym_BOOL] = ACTIONS(2454), + [anon_sym_IMP] = ACTIONS(2454), + [anon_sym_SEL] = ACTIONS(2454), + [anon_sym_Class] = ACTIONS(2454), + [anon_sym_id] = ACTIONS(2454), + }, + [762] = { + [sym_identifier] = ACTIONS(2446), + [aux_sym_preproc_include_token1] = ACTIONS(2446), + [aux_sym_preproc_include_token2] = ACTIONS(2446), + [aux_sym_preproc_def_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token1] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2446), + [sym_preproc_directive] = ACTIONS(2446), + [anon_sym_LPAREN2] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_TILDE] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_STAR] = ACTIONS(2448), + [anon_sym_CARET] = ACTIONS(2448), + [anon_sym_AMP] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym___extension__] = ACTIONS(2446), + [anon_sym_typedef] = ACTIONS(2446), + [anon_sym_extern] = ACTIONS(2446), + [anon_sym___attribute__] = ACTIONS(2446), + [anon_sym___attribute] = ACTIONS(2446), + [anon_sym_noreturn] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym___declspec] = ACTIONS(2446), + [anon_sym___cdecl] = ACTIONS(2446), + [anon_sym___clrcall] = ACTIONS(2446), + [anon_sym___stdcall] = ACTIONS(2446), + [anon_sym___fastcall] = ACTIONS(2446), + [anon_sym___thiscall] = ACTIONS(2446), + [anon_sym___vectorcall] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_RBRACE] = ACTIONS(2448), + [anon_sym_signed] = ACTIONS(2446), + [anon_sym_unsigned] = ACTIONS(2446), + [anon_sym_long] = ACTIONS(2446), + [anon_sym_short] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_ATautoreleasepool] = ACTIONS(2448), + [anon_sym_auto] = ACTIONS(2446), + [anon_sym_register] = ACTIONS(2446), + [anon_sym_inline] = ACTIONS(2446), + [anon_sym___inline] = ACTIONS(2446), + [anon_sym___inline__] = ACTIONS(2446), + [anon_sym___forceinline] = ACTIONS(2446), + [anon_sym_thread_local] = ACTIONS(2446), + [anon_sym___thread] = ACTIONS(2446), + [anon_sym_CG_EXTERN] = ACTIONS(2446), + [anon_sym_CG_INLINE] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2446), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2446), + [anon_sym_IBOutlet] = ACTIONS(2446), + [anon_sym_IBInspectable] = ACTIONS(2446), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2446), + [anon_sym_NS_INLINE] = ACTIONS(2446), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2446), + [anon_sym_OBJC_EXPORT] = ACTIONS(2446), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [anon_sym_constexpr] = ACTIONS(2446), + [anon_sym_volatile] = ACTIONS(2446), + [anon_sym_restrict] = ACTIONS(2446), + [anon_sym___restrict__] = ACTIONS(2446), + [anon_sym__Atomic] = ACTIONS(2446), + [anon_sym__Noreturn] = ACTIONS(2446), + [anon_sym__Nonnull] = ACTIONS(2446), + [anon_sym_nullable] = ACTIONS(2446), + [anon_sym__Complex] = ACTIONS(2446), + [anon_sym__Nullable] = ACTIONS(2446), + [anon_sym__Nullable_result] = ACTIONS(2446), + [anon_sym__Null_unspecified] = ACTIONS(2446), + [anon_sym___autoreleasing] = ACTIONS(2446), + [anon_sym___block] = ACTIONS(2446), + [anon_sym___bridge] = ACTIONS(2446), + [anon_sym___bridge_retained] = ACTIONS(2446), + [anon_sym___bridge_transfer] = ACTIONS(2446), + [anon_sym___complex] = ACTIONS(2446), + [anon_sym___const] = ACTIONS(2446), + [anon_sym___imag] = ACTIONS(2446), + [anon_sym___kindof] = ACTIONS(2446), + [anon_sym___nonnull] = ACTIONS(2446), + [anon_sym___nullable] = ACTIONS(2446), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2446), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2446), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2446), + [anon_sym___real] = ACTIONS(2446), + [anon_sym___strong] = ACTIONS(2446), + [anon_sym___unsafe_unretained] = ACTIONS(2446), + [anon_sym___unused] = ACTIONS(2446), + [anon_sym___weak] = ACTIONS(2446), + [anon_sym_alignas] = ACTIONS(2446), + [anon_sym__Alignas] = ACTIONS(2446), + [sym_primitive_type] = ACTIONS(2446), + [anon_sym_enum] = ACTIONS(2446), + [anon_sym_struct] = ACTIONS(2446), + [anon_sym_union] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2446), + [anon_sym_else] = ACTIONS(2446), + [anon_sym_switch] = ACTIONS(2446), + [anon_sym_case] = ACTIONS(2446), + [anon_sym_default] = ACTIONS(2446), + [anon_sym_while] = ACTIONS(2446), + [anon_sym_do] = ACTIONS(2446), + [anon_sym_for] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_return] = ACTIONS(2446), + [anon_sym_break] = ACTIONS(2446), + [anon_sym_continue] = ACTIONS(2446), + [anon_sym_goto] = ACTIONS(2446), + [anon_sym_DASH_DASH] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2448), + [anon_sym_sizeof] = ACTIONS(2446), + [anon_sym___alignof__] = ACTIONS(2446), + [anon_sym___alignof] = ACTIONS(2446), + [anon_sym__alignof] = ACTIONS(2446), + [anon_sym_alignof] = ACTIONS(2446), + [anon_sym__Alignof] = ACTIONS(2446), + [anon_sym_offsetof] = ACTIONS(2446), + [anon_sym__Generic] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(2446), + [anon_sym___asm__] = ACTIONS(2446), + [anon_sym___asm] = ACTIONS(2446), + [sym_number_literal] = ACTIONS(2448), + [anon_sym_L_SQUOTE] = ACTIONS(2448), + [anon_sym_u_SQUOTE] = ACTIONS(2448), + [anon_sym_U_SQUOTE] = ACTIONS(2448), + [anon_sym_u8_SQUOTE] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_L_DQUOTE] = ACTIONS(2448), + [anon_sym_u_DQUOTE] = ACTIONS(2448), + [anon_sym_U_DQUOTE] = ACTIONS(2448), + [anon_sym_u8_DQUOTE] = ACTIONS(2448), + [sym_true] = ACTIONS(2446), + [sym_false] = ACTIONS(2446), + [anon_sym_NULL] = ACTIONS(2446), + [anon_sym_nullptr] = ACTIONS(2446), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2446), + [anon_sym___typeof] = ACTIONS(2446), + [anon_sym_typeof] = ACTIONS(2446), + [anon_sym_ATimport] = ACTIONS(2448), + [aux_sym_preproc_undef_token1] = ACTIONS(2446), + [anon_sym_POUND] = ACTIONS(2446), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2446), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2446), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2446), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2446), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE] = ACTIONS(2446), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_API_AVAILABLE] = ACTIONS(2446), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_API_DEPRECATED] = ACTIONS(2446), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2446), + [anon_sym___deprecated_msg] = ACTIONS(2446), + [anon_sym___deprecated_enum_msg] = ACTIONS(2446), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2446), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2446), + [anon_sym_ATprotocol] = ACTIONS(2448), + [anon_sym_ATinterface] = ACTIONS(2448), + [anon_sym_ATimplementation] = ACTIONS(2448), + [anon_sym_ATcompatibility_alias] = ACTIONS(2448), + [anon_sym_ATtry] = ACTIONS(2448), + [anon_sym___try] = ACTIONS(2446), + [anon_sym_ATthrow] = ACTIONS(2448), + [anon_sym_ATselector] = ACTIONS(2448), + [anon_sym_ATavailable] = ACTIONS(2448), + [anon_sym___builtin_available] = ACTIONS(2446), + [anon_sym_va_arg] = ACTIONS(2446), + [anon_sym_ATencode] = ACTIONS(2448), + [anon_sym_ATsynchronized] = ACTIONS(2448), + [anon_sym_BOOL] = ACTIONS(2446), + [anon_sym_IMP] = ACTIONS(2446), + [anon_sym_SEL] = ACTIONS(2446), + [anon_sym_Class] = ACTIONS(2446), + [anon_sym_id] = ACTIONS(2446), + }, + [763] = { + [sym_identifier] = ACTIONS(2450), + [aux_sym_preproc_include_token1] = ACTIONS(2450), + [aux_sym_preproc_include_token2] = ACTIONS(2450), + [aux_sym_preproc_def_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2450), + [anon_sym_LPAREN2] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_CARET] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym___cdecl] = ACTIONS(2450), + [anon_sym___clrcall] = ACTIONS(2450), + [anon_sym___stdcall] = ACTIONS(2450), + [anon_sym___fastcall] = ACTIONS(2450), + [anon_sym___thiscall] = ACTIONS(2450), + [anon_sym___vectorcall] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2452), + [anon_sym_RBRACE] = ACTIONS(2452), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_ATautoreleasepool] = ACTIONS(2452), + [anon_sym_auto] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_CG_EXTERN] = ACTIONS(2450), + [anon_sym_CG_INLINE] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2450), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2450), + [anon_sym_IBOutlet] = ACTIONS(2450), + [anon_sym_IBInspectable] = ACTIONS(2450), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2450), + [anon_sym_NS_INLINE] = ACTIONS(2450), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2450), + [anon_sym_OBJC_EXPORT] = ACTIONS(2450), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_nullable] = ACTIONS(2450), + [anon_sym__Complex] = ACTIONS(2450), + [anon_sym__Nullable] = ACTIONS(2450), + [anon_sym__Nullable_result] = ACTIONS(2450), + [anon_sym__Null_unspecified] = ACTIONS(2450), + [anon_sym___autoreleasing] = ACTIONS(2450), + [anon_sym___block] = ACTIONS(2450), + [anon_sym___bridge] = ACTIONS(2450), + [anon_sym___bridge_retained] = ACTIONS(2450), + [anon_sym___bridge_transfer] = ACTIONS(2450), + [anon_sym___complex] = ACTIONS(2450), + [anon_sym___const] = ACTIONS(2450), + [anon_sym___imag] = ACTIONS(2450), + [anon_sym___kindof] = ACTIONS(2450), + [anon_sym___nonnull] = ACTIONS(2450), + [anon_sym___nullable] = ACTIONS(2450), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2450), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2450), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2450), + [anon_sym___real] = ACTIONS(2450), + [anon_sym___strong] = ACTIONS(2450), + [anon_sym___unsafe_unretained] = ACTIONS(2450), + [anon_sym___unused] = ACTIONS(2450), + [anon_sym___weak] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_else] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2450), + [anon_sym_case] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2450), + [anon_sym_while] = ACTIONS(2450), + [anon_sym_do] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_break] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_goto] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2452), + [anon_sym_sizeof] = ACTIONS(2450), + [anon_sym___alignof__] = ACTIONS(2450), + [anon_sym___alignof] = ACTIONS(2450), + [anon_sym__alignof] = ACTIONS(2450), + [anon_sym_alignof] = ACTIONS(2450), + [anon_sym__Alignof] = ACTIONS(2450), + [anon_sym_offsetof] = ACTIONS(2450), + [anon_sym__Generic] = ACTIONS(2450), + [anon_sym_asm] = ACTIONS(2450), + [anon_sym___asm__] = ACTIONS(2450), + [anon_sym___asm] = ACTIONS(2450), + [sym_number_literal] = ACTIONS(2452), + [anon_sym_L_SQUOTE] = ACTIONS(2452), + [anon_sym_u_SQUOTE] = ACTIONS(2452), + [anon_sym_U_SQUOTE] = ACTIONS(2452), + [anon_sym_u8_SQUOTE] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(2452), + [anon_sym_AT] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2452), + [anon_sym_L_DQUOTE] = ACTIONS(2452), + [anon_sym_u_DQUOTE] = ACTIONS(2452), + [anon_sym_U_DQUOTE] = ACTIONS(2452), + [anon_sym_u8_DQUOTE] = ACTIONS(2452), + [sym_true] = ACTIONS(2450), + [sym_false] = ACTIONS(2450), + [anon_sym_NULL] = ACTIONS(2450), + [anon_sym_nullptr] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2450), + [anon_sym___typeof] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [anon_sym_ATimport] = ACTIONS(2452), + [aux_sym_preproc_undef_token1] = ACTIONS(2450), + [anon_sym_POUND] = ACTIONS(2450), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2450), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2450), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2450), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2450), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE] = ACTIONS(2450), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_API_AVAILABLE] = ACTIONS(2450), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_API_DEPRECATED] = ACTIONS(2450), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2450), + [anon_sym___deprecated_msg] = ACTIONS(2450), + [anon_sym___deprecated_enum_msg] = ACTIONS(2450), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2450), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2450), + [anon_sym_ATprotocol] = ACTIONS(2452), + [anon_sym_ATinterface] = ACTIONS(2452), + [anon_sym_ATimplementation] = ACTIONS(2452), + [anon_sym_ATcompatibility_alias] = ACTIONS(2452), + [anon_sym_ATtry] = ACTIONS(2452), + [anon_sym___try] = ACTIONS(2450), + [anon_sym_ATthrow] = ACTIONS(2452), + [anon_sym_ATselector] = ACTIONS(2452), + [anon_sym_ATavailable] = ACTIONS(2452), + [anon_sym___builtin_available] = ACTIONS(2450), + [anon_sym_va_arg] = ACTIONS(2450), + [anon_sym_ATencode] = ACTIONS(2452), + [anon_sym_ATsynchronized] = ACTIONS(2452), + [anon_sym_BOOL] = ACTIONS(2450), + [anon_sym_IMP] = ACTIONS(2450), + [anon_sym_SEL] = ACTIONS(2450), + [anon_sym_Class] = ACTIONS(2450), + [anon_sym_id] = ACTIONS(2450), + }, + [764] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [765] = { + [ts_builtin_sym_end] = ACTIONS(2348), + [sym_identifier] = ACTIONS(2346), + [aux_sym_preproc_include_token1] = ACTIONS(2346), + [aux_sym_preproc_include_token2] = ACTIONS(2346), + [aux_sym_preproc_def_token1] = ACTIONS(2346), + [aux_sym_preproc_if_token1] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2346), + [sym_preproc_directive] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2346), + [anon_sym_PLUS] = ACTIONS(2346), + [anon_sym_STAR] = ACTIONS(2348), + [anon_sym_CARET] = ACTIONS(2348), + [anon_sym_AMP] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym___extension__] = ACTIONS(2346), + [anon_sym_typedef] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym___attribute__] = ACTIONS(2346), + [anon_sym___attribute] = ACTIONS(2346), + [anon_sym_noreturn] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym___declspec] = ACTIONS(2346), + [anon_sym___cdecl] = ACTIONS(2346), + [anon_sym___clrcall] = ACTIONS(2346), + [anon_sym___stdcall] = ACTIONS(2346), + [anon_sym___fastcall] = ACTIONS(2346), + [anon_sym___thiscall] = ACTIONS(2346), + [anon_sym___vectorcall] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_signed] = ACTIONS(2346), + [anon_sym_unsigned] = ACTIONS(2346), + [anon_sym_long] = ACTIONS(2346), + [anon_sym_short] = ACTIONS(2346), + [anon_sym_static] = ACTIONS(2346), + [anon_sym_ATautoreleasepool] = ACTIONS(2348), + [anon_sym_auto] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2346), + [anon_sym_inline] = ACTIONS(2346), + [anon_sym___inline] = ACTIONS(2346), + [anon_sym___inline__] = ACTIONS(2346), + [anon_sym___forceinline] = ACTIONS(2346), + [anon_sym_thread_local] = ACTIONS(2346), + [anon_sym___thread] = ACTIONS(2346), + [anon_sym_CG_EXTERN] = ACTIONS(2346), + [anon_sym_CG_INLINE] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2346), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2346), + [anon_sym_IBOutlet] = ACTIONS(2346), + [anon_sym_IBInspectable] = ACTIONS(2346), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2346), + [anon_sym_NS_INLINE] = ACTIONS(2346), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2346), + [anon_sym_OBJC_EXPORT] = ACTIONS(2346), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_constexpr] = ACTIONS(2346), + [anon_sym_volatile] = ACTIONS(2346), + [anon_sym_restrict] = ACTIONS(2346), + [anon_sym___restrict__] = ACTIONS(2346), + [anon_sym__Atomic] = ACTIONS(2346), + [anon_sym__Noreturn] = ACTIONS(2346), + [anon_sym__Nonnull] = ACTIONS(2346), + [anon_sym_nullable] = ACTIONS(2346), + [anon_sym__Complex] = ACTIONS(2346), + [anon_sym__Nullable] = ACTIONS(2346), + [anon_sym__Nullable_result] = ACTIONS(2346), + [anon_sym__Null_unspecified] = ACTIONS(2346), + [anon_sym___autoreleasing] = ACTIONS(2346), + [anon_sym___block] = ACTIONS(2346), + [anon_sym___bridge] = ACTIONS(2346), + [anon_sym___bridge_retained] = ACTIONS(2346), + [anon_sym___bridge_transfer] = ACTIONS(2346), + [anon_sym___complex] = ACTIONS(2346), + [anon_sym___const] = ACTIONS(2346), + [anon_sym___imag] = ACTIONS(2346), + [anon_sym___kindof] = ACTIONS(2346), + [anon_sym___nonnull] = ACTIONS(2346), + [anon_sym___nullable] = ACTIONS(2346), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2346), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2346), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2346), + [anon_sym___real] = ACTIONS(2346), + [anon_sym___strong] = ACTIONS(2346), + [anon_sym___unsafe_unretained] = ACTIONS(2346), + [anon_sym___unused] = ACTIONS(2346), + [anon_sym___weak] = ACTIONS(2346), + [anon_sym_alignas] = ACTIONS(2346), + [anon_sym__Alignas] = ACTIONS(2346), + [sym_primitive_type] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_switch] = ACTIONS(2346), + [anon_sym_case] = ACTIONS(2346), + [anon_sym_default] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_do] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_goto] = ACTIONS(2346), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2346), + [anon_sym__Generic] = ACTIONS(2346), + [anon_sym_asm] = ACTIONS(2346), + [anon_sym___asm__] = ACTIONS(2346), + [anon_sym___asm] = ACTIONS(2346), + [sym_number_literal] = ACTIONS(2348), + [anon_sym_L_SQUOTE] = ACTIONS(2348), + [anon_sym_u_SQUOTE] = ACTIONS(2348), + [anon_sym_U_SQUOTE] = ACTIONS(2348), + [anon_sym_u8_SQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_L_DQUOTE] = ACTIONS(2348), + [anon_sym_u_DQUOTE] = ACTIONS(2348), + [anon_sym_U_DQUOTE] = ACTIONS(2348), + [anon_sym_u8_DQUOTE] = ACTIONS(2348), + [sym_true] = ACTIONS(2346), + [sym_false] = ACTIONS(2346), + [anon_sym_NULL] = ACTIONS(2346), + [anon_sym_nullptr] = ACTIONS(2346), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2346), + [anon_sym___typeof] = ACTIONS(2346), + [anon_sym_typeof] = ACTIONS(2346), + [anon_sym_ATimport] = ACTIONS(2348), + [aux_sym_preproc_undef_token1] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(2346), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2346), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2346), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2346), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2346), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE] = ACTIONS(2346), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_API_AVAILABLE] = ACTIONS(2346), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_API_DEPRECATED] = ACTIONS(2346), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2346), + [anon_sym___deprecated_msg] = ACTIONS(2346), + [anon_sym___deprecated_enum_msg] = ACTIONS(2346), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2346), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2346), + [anon_sym_ATprotocol] = ACTIONS(2348), + [anon_sym_ATinterface] = ACTIONS(2348), + [anon_sym_ATimplementation] = ACTIONS(2348), + [anon_sym_ATcompatibility_alias] = ACTIONS(2348), + [anon_sym_ATtry] = ACTIONS(2348), + [anon_sym___try] = ACTIONS(2346), + [anon_sym_ATthrow] = ACTIONS(2348), + [anon_sym_ATselector] = ACTIONS(2348), + [anon_sym_ATavailable] = ACTIONS(2348), + [anon_sym___builtin_available] = ACTIONS(2346), + [anon_sym_va_arg] = ACTIONS(2346), + [anon_sym_ATencode] = ACTIONS(2348), + [anon_sym_ATsynchronized] = ACTIONS(2348), + [anon_sym_BOOL] = ACTIONS(2346), + [anon_sym_IMP] = ACTIONS(2346), + [anon_sym_SEL] = ACTIONS(2346), + [anon_sym_Class] = ACTIONS(2346), + [anon_sym_id] = ACTIONS(2346), + }, + [766] = { + [ts_builtin_sym_end] = ACTIONS(2570), + [sym_identifier] = ACTIONS(2568), + [aux_sym_preproc_include_token1] = ACTIONS(2568), + [aux_sym_preproc_include_token2] = ACTIONS(2568), + [aux_sym_preproc_def_token1] = ACTIONS(2568), + [aux_sym_preproc_if_token1] = ACTIONS(2568), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2568), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2568), + [sym_preproc_directive] = ACTIONS(2568), + [anon_sym_LPAREN2] = ACTIONS(2570), + [anon_sym_BANG] = ACTIONS(2570), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_CARET] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym___extension__] = ACTIONS(2568), + [anon_sym_typedef] = ACTIONS(2568), + [anon_sym_extern] = ACTIONS(2568), + [anon_sym___attribute__] = ACTIONS(2568), + [anon_sym___attribute] = ACTIONS(2568), + [anon_sym_noreturn] = ACTIONS(2568), + [anon_sym_LBRACK] = ACTIONS(2570), + [anon_sym___declspec] = ACTIONS(2568), + [anon_sym___cdecl] = ACTIONS(2568), + [anon_sym___clrcall] = ACTIONS(2568), + [anon_sym___stdcall] = ACTIONS(2568), + [anon_sym___fastcall] = ACTIONS(2568), + [anon_sym___thiscall] = ACTIONS(2568), + [anon_sym___vectorcall] = ACTIONS(2568), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_signed] = ACTIONS(2568), + [anon_sym_unsigned] = ACTIONS(2568), + [anon_sym_long] = ACTIONS(2568), + [anon_sym_short] = ACTIONS(2568), + [anon_sym_static] = ACTIONS(2568), + [anon_sym_ATautoreleasepool] = ACTIONS(2570), + [anon_sym_auto] = ACTIONS(2568), + [anon_sym_register] = ACTIONS(2568), + [anon_sym_inline] = ACTIONS(2568), + [anon_sym___inline] = ACTIONS(2568), + [anon_sym___inline__] = ACTIONS(2568), + [anon_sym___forceinline] = ACTIONS(2568), + [anon_sym_thread_local] = ACTIONS(2568), + [anon_sym___thread] = ACTIONS(2568), + [anon_sym_CG_EXTERN] = ACTIONS(2568), + [anon_sym_CG_INLINE] = ACTIONS(2568), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2568), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2568), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2568), + [anon_sym_IBOutlet] = ACTIONS(2568), + [anon_sym_IBInspectable] = ACTIONS(2568), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2568), + [anon_sym_NS_INLINE] = ACTIONS(2568), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2568), + [anon_sym_OBJC_EXPORT] = ACTIONS(2568), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2568), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2568), + [anon_sym_const] = ACTIONS(2568), + [anon_sym_constexpr] = ACTIONS(2568), + [anon_sym_volatile] = ACTIONS(2568), + [anon_sym_restrict] = ACTIONS(2568), + [anon_sym___restrict__] = ACTIONS(2568), + [anon_sym__Atomic] = ACTIONS(2568), + [anon_sym__Noreturn] = ACTIONS(2568), + [anon_sym__Nonnull] = ACTIONS(2568), + [anon_sym_nullable] = ACTIONS(2568), + [anon_sym__Complex] = ACTIONS(2568), + [anon_sym__Nullable] = ACTIONS(2568), + [anon_sym__Nullable_result] = ACTIONS(2568), + [anon_sym__Null_unspecified] = ACTIONS(2568), + [anon_sym___autoreleasing] = ACTIONS(2568), + [anon_sym___block] = ACTIONS(2568), + [anon_sym___bridge] = ACTIONS(2568), + [anon_sym___bridge_retained] = ACTIONS(2568), + [anon_sym___bridge_transfer] = ACTIONS(2568), + [anon_sym___complex] = ACTIONS(2568), + [anon_sym___const] = ACTIONS(2568), + [anon_sym___imag] = ACTIONS(2568), + [anon_sym___kindof] = ACTIONS(2568), + [anon_sym___nonnull] = ACTIONS(2568), + [anon_sym___nullable] = ACTIONS(2568), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2568), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2568), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2568), + [anon_sym___real] = ACTIONS(2568), + [anon_sym___strong] = ACTIONS(2568), + [anon_sym___unsafe_unretained] = ACTIONS(2568), + [anon_sym___unused] = ACTIONS(2568), + [anon_sym___weak] = ACTIONS(2568), + [anon_sym_alignas] = ACTIONS(2568), + [anon_sym__Alignas] = ACTIONS(2568), + [sym_primitive_type] = ACTIONS(2568), + [anon_sym_enum] = ACTIONS(2568), + [anon_sym_struct] = ACTIONS(2568), + [anon_sym_union] = ACTIONS(2568), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_else] = ACTIONS(2568), + [anon_sym_switch] = ACTIONS(2568), + [anon_sym_case] = ACTIONS(2568), + [anon_sym_default] = ACTIONS(2568), + [anon_sym_while] = ACTIONS(2568), + [anon_sym_do] = ACTIONS(2568), + [anon_sym_for] = ACTIONS(2568), + [anon_sym_in] = ACTIONS(2568), + [anon_sym_return] = ACTIONS(2568), + [anon_sym_break] = ACTIONS(2568), + [anon_sym_continue] = ACTIONS(2568), + [anon_sym_goto] = ACTIONS(2568), + [anon_sym_DASH_DASH] = ACTIONS(2570), + [anon_sym_PLUS_PLUS] = ACTIONS(2570), + [anon_sym_sizeof] = ACTIONS(2568), + [anon_sym___alignof__] = ACTIONS(2568), + [anon_sym___alignof] = ACTIONS(2568), + [anon_sym__alignof] = ACTIONS(2568), + [anon_sym_alignof] = ACTIONS(2568), + [anon_sym__Alignof] = ACTIONS(2568), + [anon_sym_offsetof] = ACTIONS(2568), + [anon_sym__Generic] = ACTIONS(2568), + [anon_sym_asm] = ACTIONS(2568), + [anon_sym___asm__] = ACTIONS(2568), + [anon_sym___asm] = ACTIONS(2568), + [sym_number_literal] = ACTIONS(2570), + [anon_sym_L_SQUOTE] = ACTIONS(2570), + [anon_sym_u_SQUOTE] = ACTIONS(2570), + [anon_sym_U_SQUOTE] = ACTIONS(2570), + [anon_sym_u8_SQUOTE] = ACTIONS(2570), + [anon_sym_SQUOTE] = ACTIONS(2570), + [anon_sym_AT] = ACTIONS(2568), + [anon_sym_DQUOTE] = ACTIONS(2570), + [anon_sym_L_DQUOTE] = ACTIONS(2570), + [anon_sym_u_DQUOTE] = ACTIONS(2570), + [anon_sym_U_DQUOTE] = ACTIONS(2570), + [anon_sym_u8_DQUOTE] = ACTIONS(2570), + [sym_true] = ACTIONS(2568), + [sym_false] = ACTIONS(2568), + [anon_sym_NULL] = ACTIONS(2568), + [anon_sym_nullptr] = ACTIONS(2568), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2568), + [anon_sym___typeof] = ACTIONS(2568), + [anon_sym_typeof] = ACTIONS(2568), + [anon_sym_ATimport] = ACTIONS(2570), + [aux_sym_preproc_undef_token1] = ACTIONS(2568), + [anon_sym_POUND] = ACTIONS(2568), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2568), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2568), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2568), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2568), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2568), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2568), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2568), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2568), + [anon_sym_NS_AVAILABLE] = ACTIONS(2568), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2568), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_API_AVAILABLE] = ACTIONS(2568), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_API_DEPRECATED] = ACTIONS(2568), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2568), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2568), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2568), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2568), + [anon_sym___deprecated_msg] = ACTIONS(2568), + [anon_sym___deprecated_enum_msg] = ACTIONS(2568), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2568), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2568), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2568), + [anon_sym_ATprotocol] = ACTIONS(2570), + [anon_sym_ATinterface] = ACTIONS(2570), + [anon_sym_ATimplementation] = ACTIONS(2570), + [anon_sym_ATcompatibility_alias] = ACTIONS(2570), + [anon_sym_ATtry] = ACTIONS(2570), + [anon_sym___try] = ACTIONS(2568), + [anon_sym_ATthrow] = ACTIONS(2570), + [anon_sym_ATselector] = ACTIONS(2570), + [anon_sym_ATavailable] = ACTIONS(2570), + [anon_sym___builtin_available] = ACTIONS(2568), + [anon_sym_va_arg] = ACTIONS(2568), + [anon_sym_ATencode] = ACTIONS(2570), + [anon_sym_ATsynchronized] = ACTIONS(2570), + [anon_sym_BOOL] = ACTIONS(2568), + [anon_sym_IMP] = ACTIONS(2568), + [anon_sym_SEL] = ACTIONS(2568), + [anon_sym_Class] = ACTIONS(2568), + [anon_sym_id] = ACTIONS(2568), + }, + [767] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [768] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [769] = { + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_include_token1] = ACTIONS(2458), + [aux_sym_preproc_include_token2] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2460), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2460), + [anon_sym_RBRACE] = ACTIONS(2460), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_ATautoreleasepool] = ACTIONS(2460), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_goto] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2460), + [anon_sym_sizeof] = ACTIONS(2458), + [anon_sym___alignof__] = ACTIONS(2458), + [anon_sym___alignof] = ACTIONS(2458), + [anon_sym__alignof] = ACTIONS(2458), + [anon_sym_alignof] = ACTIONS(2458), + [anon_sym__Alignof] = ACTIONS(2458), + [anon_sym_offsetof] = ACTIONS(2458), + [anon_sym__Generic] = ACTIONS(2458), + [anon_sym_asm] = ACTIONS(2458), + [anon_sym___asm__] = ACTIONS(2458), + [anon_sym___asm] = ACTIONS(2458), + [sym_number_literal] = ACTIONS(2460), + [anon_sym_L_SQUOTE] = ACTIONS(2460), + [anon_sym_u_SQUOTE] = ACTIONS(2460), + [anon_sym_U_SQUOTE] = ACTIONS(2460), + [anon_sym_u8_SQUOTE] = ACTIONS(2460), + [anon_sym_SQUOTE] = ACTIONS(2460), + [anon_sym_AT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_L_DQUOTE] = ACTIONS(2460), + [anon_sym_u_DQUOTE] = ACTIONS(2460), + [anon_sym_U_DQUOTE] = ACTIONS(2460), + [anon_sym_u8_DQUOTE] = ACTIONS(2460), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [anon_sym_NULL] = ACTIONS(2458), + [anon_sym_nullptr] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_ATimport] = ACTIONS(2460), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_POUND] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATprotocol] = ACTIONS(2460), + [anon_sym_ATinterface] = ACTIONS(2460), + [anon_sym_ATimplementation] = ACTIONS(2460), + [anon_sym_ATcompatibility_alias] = ACTIONS(2460), + [anon_sym_ATtry] = ACTIONS(2460), + [anon_sym___try] = ACTIONS(2458), + [anon_sym_ATthrow] = ACTIONS(2460), + [anon_sym_ATselector] = ACTIONS(2460), + [anon_sym_ATavailable] = ACTIONS(2460), + [anon_sym___builtin_available] = ACTIONS(2458), + [anon_sym_va_arg] = ACTIONS(2458), + [anon_sym_ATencode] = ACTIONS(2460), + [anon_sym_ATsynchronized] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [770] = { + [ts_builtin_sym_end] = ACTIONS(2366), + [sym_identifier] = ACTIONS(2364), + [aux_sym_preproc_include_token1] = ACTIONS(2364), + [aux_sym_preproc_include_token2] = ACTIONS(2364), + [aux_sym_preproc_def_token1] = ACTIONS(2364), + [aux_sym_preproc_if_token1] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2364), + [sym_preproc_directive] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_PLUS] = ACTIONS(2364), + [anon_sym_STAR] = ACTIONS(2366), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_AMP] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_typedef] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym___attribute__] = ACTIONS(2364), + [anon_sym___attribute] = ACTIONS(2364), + [anon_sym_noreturn] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym___declspec] = ACTIONS(2364), + [anon_sym___cdecl] = ACTIONS(2364), + [anon_sym___clrcall] = ACTIONS(2364), + [anon_sym___stdcall] = ACTIONS(2364), + [anon_sym___fastcall] = ACTIONS(2364), + [anon_sym___thiscall] = ACTIONS(2364), + [anon_sym___vectorcall] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_signed] = ACTIONS(2364), + [anon_sym_unsigned] = ACTIONS(2364), + [anon_sym_long] = ACTIONS(2364), + [anon_sym_short] = ACTIONS(2364), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_ATautoreleasepool] = ACTIONS(2366), + [anon_sym_auto] = ACTIONS(2364), + [anon_sym_register] = ACTIONS(2364), + [anon_sym_inline] = ACTIONS(2364), + [anon_sym___inline] = ACTIONS(2364), + [anon_sym___inline__] = ACTIONS(2364), + [anon_sym___forceinline] = ACTIONS(2364), + [anon_sym_thread_local] = ACTIONS(2364), + [anon_sym___thread] = ACTIONS(2364), + [anon_sym_CG_EXTERN] = ACTIONS(2364), + [anon_sym_CG_INLINE] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2364), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2364), + [anon_sym_IBOutlet] = ACTIONS(2364), + [anon_sym_IBInspectable] = ACTIONS(2364), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2364), + [anon_sym_NS_INLINE] = ACTIONS(2364), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2364), + [anon_sym_OBJC_EXPORT] = ACTIONS(2364), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [anon_sym_constexpr] = ACTIONS(2364), + [anon_sym_volatile] = ACTIONS(2364), + [anon_sym_restrict] = ACTIONS(2364), + [anon_sym___restrict__] = ACTIONS(2364), + [anon_sym__Atomic] = ACTIONS(2364), + [anon_sym__Noreturn] = ACTIONS(2364), + [anon_sym__Nonnull] = ACTIONS(2364), + [anon_sym_nullable] = ACTIONS(2364), + [anon_sym__Complex] = ACTIONS(2364), + [anon_sym__Nullable] = ACTIONS(2364), + [anon_sym__Nullable_result] = ACTIONS(2364), + [anon_sym__Null_unspecified] = ACTIONS(2364), + [anon_sym___autoreleasing] = ACTIONS(2364), + [anon_sym___block] = ACTIONS(2364), + [anon_sym___bridge] = ACTIONS(2364), + [anon_sym___bridge_retained] = ACTIONS(2364), + [anon_sym___bridge_transfer] = ACTIONS(2364), + [anon_sym___complex] = ACTIONS(2364), + [anon_sym___const] = ACTIONS(2364), + [anon_sym___imag] = ACTIONS(2364), + [anon_sym___kindof] = ACTIONS(2364), + [anon_sym___nonnull] = ACTIONS(2364), + [anon_sym___nullable] = ACTIONS(2364), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2364), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2364), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2364), + [anon_sym___real] = ACTIONS(2364), + [anon_sym___strong] = ACTIONS(2364), + [anon_sym___unsafe_unretained] = ACTIONS(2364), + [anon_sym___unused] = ACTIONS(2364), + [anon_sym___weak] = ACTIONS(2364), + [anon_sym_alignas] = ACTIONS(2364), + [anon_sym__Alignas] = ACTIONS(2364), + [sym_primitive_type] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(2364), + [anon_sym_union] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_switch] = ACTIONS(2364), + [anon_sym_case] = ACTIONS(2364), + [anon_sym_default] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_do] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_in] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_goto] = ACTIONS(2364), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_sizeof] = ACTIONS(2364), + [anon_sym___alignof__] = ACTIONS(2364), + [anon_sym___alignof] = ACTIONS(2364), + [anon_sym__alignof] = ACTIONS(2364), + [anon_sym_alignof] = ACTIONS(2364), + [anon_sym__Alignof] = ACTIONS(2364), + [anon_sym_offsetof] = ACTIONS(2364), + [anon_sym__Generic] = ACTIONS(2364), + [anon_sym_asm] = ACTIONS(2364), + [anon_sym___asm__] = ACTIONS(2364), + [anon_sym___asm] = ACTIONS(2364), + [sym_number_literal] = ACTIONS(2366), + [anon_sym_L_SQUOTE] = ACTIONS(2366), + [anon_sym_u_SQUOTE] = ACTIONS(2366), + [anon_sym_U_SQUOTE] = ACTIONS(2366), + [anon_sym_u8_SQUOTE] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2366), + [anon_sym_AT] = ACTIONS(2364), + [anon_sym_DQUOTE] = ACTIONS(2366), + [anon_sym_L_DQUOTE] = ACTIONS(2366), + [anon_sym_u_DQUOTE] = ACTIONS(2366), + [anon_sym_U_DQUOTE] = ACTIONS(2366), + [anon_sym_u8_DQUOTE] = ACTIONS(2366), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2364), + [anon_sym___typeof] = ACTIONS(2364), + [anon_sym_typeof] = ACTIONS(2364), + [anon_sym_ATimport] = ACTIONS(2366), + [aux_sym_preproc_undef_token1] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(2364), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2364), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2364), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2364), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2364), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE] = ACTIONS(2364), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_API_AVAILABLE] = ACTIONS(2364), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_API_DEPRECATED] = ACTIONS(2364), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2364), + [anon_sym___deprecated_msg] = ACTIONS(2364), + [anon_sym___deprecated_enum_msg] = ACTIONS(2364), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2364), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2364), + [anon_sym_ATprotocol] = ACTIONS(2366), + [anon_sym_ATinterface] = ACTIONS(2366), + [anon_sym_ATimplementation] = ACTIONS(2366), + [anon_sym_ATcompatibility_alias] = ACTIONS(2366), + [anon_sym_ATtry] = ACTIONS(2366), + [anon_sym___try] = ACTIONS(2364), + [anon_sym_ATthrow] = ACTIONS(2366), + [anon_sym_ATselector] = ACTIONS(2366), + [anon_sym_ATavailable] = ACTIONS(2366), + [anon_sym___builtin_available] = ACTIONS(2364), + [anon_sym_va_arg] = ACTIONS(2364), + [anon_sym_ATencode] = ACTIONS(2366), + [anon_sym_ATsynchronized] = ACTIONS(2366), + [anon_sym_BOOL] = ACTIONS(2364), + [anon_sym_IMP] = ACTIONS(2364), + [anon_sym_SEL] = ACTIONS(2364), + [anon_sym_Class] = ACTIONS(2364), + [anon_sym_id] = ACTIONS(2364), + }, + [771] = { + [sym_identifier] = ACTIONS(2552), + [aux_sym_preproc_include_token1] = ACTIONS(2552), + [aux_sym_preproc_include_token2] = ACTIONS(2552), + [aux_sym_preproc_def_token1] = ACTIONS(2552), + [aux_sym_preproc_if_token1] = ACTIONS(2552), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2552), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2552), + [sym_preproc_directive] = ACTIONS(2552), + [anon_sym_LPAREN2] = ACTIONS(2554), + [anon_sym_BANG] = ACTIONS(2554), + [anon_sym_TILDE] = ACTIONS(2554), + [anon_sym_DASH] = ACTIONS(2552), + [anon_sym_PLUS] = ACTIONS(2552), + [anon_sym_STAR] = ACTIONS(2554), + [anon_sym_CARET] = ACTIONS(2554), + [anon_sym_AMP] = ACTIONS(2554), + [anon_sym_SEMI] = ACTIONS(2554), + [anon_sym___extension__] = ACTIONS(2552), + [anon_sym_typedef] = ACTIONS(2552), + [anon_sym_extern] = ACTIONS(2552), + [anon_sym___attribute__] = ACTIONS(2552), + [anon_sym___attribute] = ACTIONS(2552), + [anon_sym_noreturn] = ACTIONS(2552), + [anon_sym_LBRACK] = ACTIONS(2554), + [anon_sym___declspec] = ACTIONS(2552), + [anon_sym___cdecl] = ACTIONS(2552), + [anon_sym___clrcall] = ACTIONS(2552), + [anon_sym___stdcall] = ACTIONS(2552), + [anon_sym___fastcall] = ACTIONS(2552), + [anon_sym___thiscall] = ACTIONS(2552), + [anon_sym___vectorcall] = ACTIONS(2552), + [anon_sym_LBRACE] = ACTIONS(2554), + [anon_sym_RBRACE] = ACTIONS(2554), + [anon_sym_signed] = ACTIONS(2552), + [anon_sym_unsigned] = ACTIONS(2552), + [anon_sym_long] = ACTIONS(2552), + [anon_sym_short] = ACTIONS(2552), + [anon_sym_static] = ACTIONS(2552), + [anon_sym_ATautoreleasepool] = ACTIONS(2554), + [anon_sym_auto] = ACTIONS(2552), + [anon_sym_register] = ACTIONS(2552), + [anon_sym_inline] = ACTIONS(2552), + [anon_sym___inline] = ACTIONS(2552), + [anon_sym___inline__] = ACTIONS(2552), + [anon_sym___forceinline] = ACTIONS(2552), + [anon_sym_thread_local] = ACTIONS(2552), + [anon_sym___thread] = ACTIONS(2552), + [anon_sym_CG_EXTERN] = ACTIONS(2552), + [anon_sym_CG_INLINE] = ACTIONS(2552), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2552), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2552), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2552), + [anon_sym_IBOutlet] = ACTIONS(2552), + [anon_sym_IBInspectable] = ACTIONS(2552), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2552), + [anon_sym_NS_INLINE] = ACTIONS(2552), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2552), + [anon_sym_OBJC_EXPORT] = ACTIONS(2552), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2552), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2552), + [anon_sym_const] = ACTIONS(2552), + [anon_sym_constexpr] = ACTIONS(2552), + [anon_sym_volatile] = ACTIONS(2552), + [anon_sym_restrict] = ACTIONS(2552), + [anon_sym___restrict__] = ACTIONS(2552), + [anon_sym__Atomic] = ACTIONS(2552), + [anon_sym__Noreturn] = ACTIONS(2552), + [anon_sym__Nonnull] = ACTIONS(2552), + [anon_sym_nullable] = ACTIONS(2552), + [anon_sym__Complex] = ACTIONS(2552), + [anon_sym__Nullable] = ACTIONS(2552), + [anon_sym__Nullable_result] = ACTIONS(2552), + [anon_sym__Null_unspecified] = ACTIONS(2552), + [anon_sym___autoreleasing] = ACTIONS(2552), + [anon_sym___block] = ACTIONS(2552), + [anon_sym___bridge] = ACTIONS(2552), + [anon_sym___bridge_retained] = ACTIONS(2552), + [anon_sym___bridge_transfer] = ACTIONS(2552), + [anon_sym___complex] = ACTIONS(2552), + [anon_sym___const] = ACTIONS(2552), + [anon_sym___imag] = ACTIONS(2552), + [anon_sym___kindof] = ACTIONS(2552), + [anon_sym___nonnull] = ACTIONS(2552), + [anon_sym___nullable] = ACTIONS(2552), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2552), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2552), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2552), + [anon_sym___real] = ACTIONS(2552), + [anon_sym___strong] = ACTIONS(2552), + [anon_sym___unsafe_unretained] = ACTIONS(2552), + [anon_sym___unused] = ACTIONS(2552), + [anon_sym___weak] = ACTIONS(2552), + [anon_sym_alignas] = ACTIONS(2552), + [anon_sym__Alignas] = ACTIONS(2552), + [sym_primitive_type] = ACTIONS(2552), + [anon_sym_enum] = ACTIONS(2552), + [anon_sym_struct] = ACTIONS(2552), + [anon_sym_union] = ACTIONS(2552), + [anon_sym_if] = ACTIONS(2552), + [anon_sym_else] = ACTIONS(2552), + [anon_sym_switch] = ACTIONS(2552), + [anon_sym_case] = ACTIONS(2552), + [anon_sym_default] = ACTIONS(2552), + [anon_sym_while] = ACTIONS(2552), + [anon_sym_do] = ACTIONS(2552), + [anon_sym_for] = ACTIONS(2552), + [anon_sym_in] = ACTIONS(2552), + [anon_sym_return] = ACTIONS(2552), + [anon_sym_break] = ACTIONS(2552), + [anon_sym_continue] = ACTIONS(2552), + [anon_sym_goto] = ACTIONS(2552), + [anon_sym_DASH_DASH] = ACTIONS(2554), + [anon_sym_PLUS_PLUS] = ACTIONS(2554), + [anon_sym_sizeof] = ACTIONS(2552), + [anon_sym___alignof__] = ACTIONS(2552), + [anon_sym___alignof] = ACTIONS(2552), + [anon_sym__alignof] = ACTIONS(2552), + [anon_sym_alignof] = ACTIONS(2552), + [anon_sym__Alignof] = ACTIONS(2552), + [anon_sym_offsetof] = ACTIONS(2552), + [anon_sym__Generic] = ACTIONS(2552), + [anon_sym_asm] = ACTIONS(2552), + [anon_sym___asm__] = ACTIONS(2552), + [anon_sym___asm] = ACTIONS(2552), + [sym_number_literal] = ACTIONS(2554), + [anon_sym_L_SQUOTE] = ACTIONS(2554), + [anon_sym_u_SQUOTE] = ACTIONS(2554), + [anon_sym_U_SQUOTE] = ACTIONS(2554), + [anon_sym_u8_SQUOTE] = ACTIONS(2554), + [anon_sym_SQUOTE] = ACTIONS(2554), + [anon_sym_AT] = ACTIONS(2552), + [anon_sym_DQUOTE] = ACTIONS(2554), + [anon_sym_L_DQUOTE] = ACTIONS(2554), + [anon_sym_u_DQUOTE] = ACTIONS(2554), + [anon_sym_U_DQUOTE] = ACTIONS(2554), + [anon_sym_u8_DQUOTE] = ACTIONS(2554), + [sym_true] = ACTIONS(2552), + [sym_false] = ACTIONS(2552), + [anon_sym_NULL] = ACTIONS(2552), + [anon_sym_nullptr] = ACTIONS(2552), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2552), + [anon_sym___typeof] = ACTIONS(2552), + [anon_sym_typeof] = ACTIONS(2552), + [anon_sym_ATimport] = ACTIONS(2554), + [aux_sym_preproc_undef_token1] = ACTIONS(2552), + [anon_sym_POUND] = ACTIONS(2552), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2552), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2552), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2552), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2552), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2552), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2552), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2552), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2552), + [anon_sym_NS_AVAILABLE] = ACTIONS(2552), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2552), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_API_AVAILABLE] = ACTIONS(2552), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_API_DEPRECATED] = ACTIONS(2552), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2552), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2552), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2552), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2552), + [anon_sym___deprecated_msg] = ACTIONS(2552), + [anon_sym___deprecated_enum_msg] = ACTIONS(2552), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2552), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2552), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2552), + [anon_sym_ATprotocol] = ACTIONS(2554), + [anon_sym_ATinterface] = ACTIONS(2554), + [anon_sym_ATimplementation] = ACTIONS(2554), + [anon_sym_ATcompatibility_alias] = ACTIONS(2554), + [anon_sym_ATtry] = ACTIONS(2554), + [anon_sym___try] = ACTIONS(2552), + [anon_sym_ATthrow] = ACTIONS(2554), + [anon_sym_ATselector] = ACTIONS(2554), + [anon_sym_ATavailable] = ACTIONS(2554), + [anon_sym___builtin_available] = ACTIONS(2552), + [anon_sym_va_arg] = ACTIONS(2552), + [anon_sym_ATencode] = ACTIONS(2554), + [anon_sym_ATsynchronized] = ACTIONS(2554), + [anon_sym_BOOL] = ACTIONS(2552), + [anon_sym_IMP] = ACTIONS(2552), + [anon_sym_SEL] = ACTIONS(2552), + [anon_sym_Class] = ACTIONS(2552), + [anon_sym_id] = ACTIONS(2552), + }, + [772] = { + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_include_token1] = ACTIONS(2458), + [aux_sym_preproc_include_token2] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2460), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2460), + [anon_sym_RBRACE] = ACTIONS(2460), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_ATautoreleasepool] = ACTIONS(2460), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_goto] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2460), + [anon_sym_sizeof] = ACTIONS(2458), + [anon_sym___alignof__] = ACTIONS(2458), + [anon_sym___alignof] = ACTIONS(2458), + [anon_sym__alignof] = ACTIONS(2458), + [anon_sym_alignof] = ACTIONS(2458), + [anon_sym__Alignof] = ACTIONS(2458), + [anon_sym_offsetof] = ACTIONS(2458), + [anon_sym__Generic] = ACTIONS(2458), + [anon_sym_asm] = ACTIONS(2458), + [anon_sym___asm__] = ACTIONS(2458), + [anon_sym___asm] = ACTIONS(2458), + [sym_number_literal] = ACTIONS(2460), + [anon_sym_L_SQUOTE] = ACTIONS(2460), + [anon_sym_u_SQUOTE] = ACTIONS(2460), + [anon_sym_U_SQUOTE] = ACTIONS(2460), + [anon_sym_u8_SQUOTE] = ACTIONS(2460), + [anon_sym_SQUOTE] = ACTIONS(2460), + [anon_sym_AT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_L_DQUOTE] = ACTIONS(2460), + [anon_sym_u_DQUOTE] = ACTIONS(2460), + [anon_sym_U_DQUOTE] = ACTIONS(2460), + [anon_sym_u8_DQUOTE] = ACTIONS(2460), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [anon_sym_NULL] = ACTIONS(2458), + [anon_sym_nullptr] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_ATimport] = ACTIONS(2460), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_POUND] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATprotocol] = ACTIONS(2460), + [anon_sym_ATinterface] = ACTIONS(2460), + [anon_sym_ATimplementation] = ACTIONS(2460), + [anon_sym_ATcompatibility_alias] = ACTIONS(2460), + [anon_sym_ATtry] = ACTIONS(2460), + [anon_sym___try] = ACTIONS(2458), + [anon_sym_ATthrow] = ACTIONS(2460), + [anon_sym_ATselector] = ACTIONS(2460), + [anon_sym_ATavailable] = ACTIONS(2460), + [anon_sym___builtin_available] = ACTIONS(2458), + [anon_sym_va_arg] = ACTIONS(2458), + [anon_sym_ATencode] = ACTIONS(2460), + [anon_sym_ATsynchronized] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [773] = { + [sym_identifier] = ACTIONS(2462), + [aux_sym_preproc_include_token1] = ACTIONS(2462), + [aux_sym_preproc_include_token2] = ACTIONS(2462), + [aux_sym_preproc_def_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2462), + [sym_preproc_directive] = ACTIONS(2462), + [anon_sym_LPAREN2] = ACTIONS(2464), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_CARET] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym___extension__] = ACTIONS(2462), + [anon_sym_typedef] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym___attribute__] = ACTIONS(2462), + [anon_sym___attribute] = ACTIONS(2462), + [anon_sym_noreturn] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2464), + [anon_sym___declspec] = ACTIONS(2462), + [anon_sym___cdecl] = ACTIONS(2462), + [anon_sym___clrcall] = ACTIONS(2462), + [anon_sym___stdcall] = ACTIONS(2462), + [anon_sym___fastcall] = ACTIONS(2462), + [anon_sym___thiscall] = ACTIONS(2462), + [anon_sym___vectorcall] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_RBRACE] = ACTIONS(2464), + [anon_sym_signed] = ACTIONS(2462), + [anon_sym_unsigned] = ACTIONS(2462), + [anon_sym_long] = ACTIONS(2462), + [anon_sym_short] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_ATautoreleasepool] = ACTIONS(2464), + [anon_sym_auto] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_inline] = ACTIONS(2462), + [anon_sym___inline] = ACTIONS(2462), + [anon_sym___inline__] = ACTIONS(2462), + [anon_sym___forceinline] = ACTIONS(2462), + [anon_sym_thread_local] = ACTIONS(2462), + [anon_sym___thread] = ACTIONS(2462), + [anon_sym_CG_EXTERN] = ACTIONS(2462), + [anon_sym_CG_INLINE] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2462), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2462), + [anon_sym_IBOutlet] = ACTIONS(2462), + [anon_sym_IBInspectable] = ACTIONS(2462), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2462), + [anon_sym_NS_INLINE] = ACTIONS(2462), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2462), + [anon_sym_OBJC_EXPORT] = ACTIONS(2462), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_constexpr] = ACTIONS(2462), + [anon_sym_volatile] = ACTIONS(2462), + [anon_sym_restrict] = ACTIONS(2462), + [anon_sym___restrict__] = ACTIONS(2462), + [anon_sym__Atomic] = ACTIONS(2462), + [anon_sym__Noreturn] = ACTIONS(2462), + [anon_sym__Nonnull] = ACTIONS(2462), + [anon_sym_nullable] = ACTIONS(2462), + [anon_sym__Complex] = ACTIONS(2462), + [anon_sym__Nullable] = ACTIONS(2462), + [anon_sym__Nullable_result] = ACTIONS(2462), + [anon_sym__Null_unspecified] = ACTIONS(2462), + [anon_sym___autoreleasing] = ACTIONS(2462), + [anon_sym___block] = ACTIONS(2462), + [anon_sym___bridge] = ACTIONS(2462), + [anon_sym___bridge_retained] = ACTIONS(2462), + [anon_sym___bridge_transfer] = ACTIONS(2462), + [anon_sym___complex] = ACTIONS(2462), + [anon_sym___const] = ACTIONS(2462), + [anon_sym___imag] = ACTIONS(2462), + [anon_sym___kindof] = ACTIONS(2462), + [anon_sym___nonnull] = ACTIONS(2462), + [anon_sym___nullable] = ACTIONS(2462), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2462), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2462), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2462), + [anon_sym___real] = ACTIONS(2462), + [anon_sym___strong] = ACTIONS(2462), + [anon_sym___unsafe_unretained] = ACTIONS(2462), + [anon_sym___unused] = ACTIONS(2462), + [anon_sym___weak] = ACTIONS(2462), + [anon_sym_alignas] = ACTIONS(2462), + [anon_sym__Alignas] = ACTIONS(2462), + [sym_primitive_type] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_case] = ACTIONS(2462), + [anon_sym_default] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_in] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_goto] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(2464), + [anon_sym_sizeof] = ACTIONS(2462), + [anon_sym___alignof__] = ACTIONS(2462), + [anon_sym___alignof] = ACTIONS(2462), + [anon_sym__alignof] = ACTIONS(2462), + [anon_sym_alignof] = ACTIONS(2462), + [anon_sym__Alignof] = ACTIONS(2462), + [anon_sym_offsetof] = ACTIONS(2462), + [anon_sym__Generic] = ACTIONS(2462), + [anon_sym_asm] = ACTIONS(2462), + [anon_sym___asm__] = ACTIONS(2462), + [anon_sym___asm] = ACTIONS(2462), + [sym_number_literal] = ACTIONS(2464), + [anon_sym_L_SQUOTE] = ACTIONS(2464), + [anon_sym_u_SQUOTE] = ACTIONS(2464), + [anon_sym_U_SQUOTE] = ACTIONS(2464), + [anon_sym_u8_SQUOTE] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2464), + [anon_sym_AT] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2464), + [anon_sym_L_DQUOTE] = ACTIONS(2464), + [anon_sym_u_DQUOTE] = ACTIONS(2464), + [anon_sym_U_DQUOTE] = ACTIONS(2464), + [anon_sym_u8_DQUOTE] = ACTIONS(2464), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [anon_sym_NULL] = ACTIONS(2462), + [anon_sym_nullptr] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2462), + [anon_sym___typeof] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [anon_sym_ATimport] = ACTIONS(2464), + [aux_sym_preproc_undef_token1] = ACTIONS(2462), + [anon_sym_POUND] = ACTIONS(2462), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2462), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2462), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2462), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2462), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE] = ACTIONS(2462), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_API_AVAILABLE] = ACTIONS(2462), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_API_DEPRECATED] = ACTIONS(2462), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2462), + [anon_sym___deprecated_msg] = ACTIONS(2462), + [anon_sym___deprecated_enum_msg] = ACTIONS(2462), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2462), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2462), + [anon_sym_ATprotocol] = ACTIONS(2464), + [anon_sym_ATinterface] = ACTIONS(2464), + [anon_sym_ATimplementation] = ACTIONS(2464), + [anon_sym_ATcompatibility_alias] = ACTIONS(2464), + [anon_sym_ATtry] = ACTIONS(2464), + [anon_sym___try] = ACTIONS(2462), + [anon_sym_ATthrow] = ACTIONS(2464), + [anon_sym_ATselector] = ACTIONS(2464), + [anon_sym_ATavailable] = ACTIONS(2464), + [anon_sym___builtin_available] = ACTIONS(2462), + [anon_sym_va_arg] = ACTIONS(2462), + [anon_sym_ATencode] = ACTIONS(2464), + [anon_sym_ATsynchronized] = ACTIONS(2464), + [anon_sym_BOOL] = ACTIONS(2462), + [anon_sym_IMP] = ACTIONS(2462), + [anon_sym_SEL] = ACTIONS(2462), + [anon_sym_Class] = ACTIONS(2462), + [anon_sym_id] = ACTIONS(2462), + }, + [774] = { + [sym_identifier] = ACTIONS(2462), + [aux_sym_preproc_include_token1] = ACTIONS(2462), + [aux_sym_preproc_include_token2] = ACTIONS(2462), + [aux_sym_preproc_def_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2462), + [sym_preproc_directive] = ACTIONS(2462), + [anon_sym_LPAREN2] = ACTIONS(2464), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_CARET] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym___extension__] = ACTIONS(2462), + [anon_sym_typedef] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym___attribute__] = ACTIONS(2462), + [anon_sym___attribute] = ACTIONS(2462), + [anon_sym_noreturn] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2464), + [anon_sym___declspec] = ACTIONS(2462), + [anon_sym___cdecl] = ACTIONS(2462), + [anon_sym___clrcall] = ACTIONS(2462), + [anon_sym___stdcall] = ACTIONS(2462), + [anon_sym___fastcall] = ACTIONS(2462), + [anon_sym___thiscall] = ACTIONS(2462), + [anon_sym___vectorcall] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_RBRACE] = ACTIONS(2464), + [anon_sym_signed] = ACTIONS(2462), + [anon_sym_unsigned] = ACTIONS(2462), + [anon_sym_long] = ACTIONS(2462), + [anon_sym_short] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_ATautoreleasepool] = ACTIONS(2464), + [anon_sym_auto] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_inline] = ACTIONS(2462), + [anon_sym___inline] = ACTIONS(2462), + [anon_sym___inline__] = ACTIONS(2462), + [anon_sym___forceinline] = ACTIONS(2462), + [anon_sym_thread_local] = ACTIONS(2462), + [anon_sym___thread] = ACTIONS(2462), + [anon_sym_CG_EXTERN] = ACTIONS(2462), + [anon_sym_CG_INLINE] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2462), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2462), + [anon_sym_IBOutlet] = ACTIONS(2462), + [anon_sym_IBInspectable] = ACTIONS(2462), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2462), + [anon_sym_NS_INLINE] = ACTIONS(2462), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2462), + [anon_sym_OBJC_EXPORT] = ACTIONS(2462), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_constexpr] = ACTIONS(2462), + [anon_sym_volatile] = ACTIONS(2462), + [anon_sym_restrict] = ACTIONS(2462), + [anon_sym___restrict__] = ACTIONS(2462), + [anon_sym__Atomic] = ACTIONS(2462), + [anon_sym__Noreturn] = ACTIONS(2462), + [anon_sym__Nonnull] = ACTIONS(2462), + [anon_sym_nullable] = ACTIONS(2462), + [anon_sym__Complex] = ACTIONS(2462), + [anon_sym__Nullable] = ACTIONS(2462), + [anon_sym__Nullable_result] = ACTIONS(2462), + [anon_sym__Null_unspecified] = ACTIONS(2462), + [anon_sym___autoreleasing] = ACTIONS(2462), + [anon_sym___block] = ACTIONS(2462), + [anon_sym___bridge] = ACTIONS(2462), + [anon_sym___bridge_retained] = ACTIONS(2462), + [anon_sym___bridge_transfer] = ACTIONS(2462), + [anon_sym___complex] = ACTIONS(2462), + [anon_sym___const] = ACTIONS(2462), + [anon_sym___imag] = ACTIONS(2462), + [anon_sym___kindof] = ACTIONS(2462), + [anon_sym___nonnull] = ACTIONS(2462), + [anon_sym___nullable] = ACTIONS(2462), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2462), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2462), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2462), + [anon_sym___real] = ACTIONS(2462), + [anon_sym___strong] = ACTIONS(2462), + [anon_sym___unsafe_unretained] = ACTIONS(2462), + [anon_sym___unused] = ACTIONS(2462), + [anon_sym___weak] = ACTIONS(2462), + [anon_sym_alignas] = ACTIONS(2462), + [anon_sym__Alignas] = ACTIONS(2462), + [sym_primitive_type] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_case] = ACTIONS(2462), + [anon_sym_default] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_in] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_goto] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(2464), + [anon_sym_sizeof] = ACTIONS(2462), + [anon_sym___alignof__] = ACTIONS(2462), + [anon_sym___alignof] = ACTIONS(2462), + [anon_sym__alignof] = ACTIONS(2462), + [anon_sym_alignof] = ACTIONS(2462), + [anon_sym__Alignof] = ACTIONS(2462), + [anon_sym_offsetof] = ACTIONS(2462), + [anon_sym__Generic] = ACTIONS(2462), + [anon_sym_asm] = ACTIONS(2462), + [anon_sym___asm__] = ACTIONS(2462), + [anon_sym___asm] = ACTIONS(2462), + [sym_number_literal] = ACTIONS(2464), + [anon_sym_L_SQUOTE] = ACTIONS(2464), + [anon_sym_u_SQUOTE] = ACTIONS(2464), + [anon_sym_U_SQUOTE] = ACTIONS(2464), + [anon_sym_u8_SQUOTE] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2464), + [anon_sym_AT] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2464), + [anon_sym_L_DQUOTE] = ACTIONS(2464), + [anon_sym_u_DQUOTE] = ACTIONS(2464), + [anon_sym_U_DQUOTE] = ACTIONS(2464), + [anon_sym_u8_DQUOTE] = ACTIONS(2464), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [anon_sym_NULL] = ACTIONS(2462), + [anon_sym_nullptr] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2462), + [anon_sym___typeof] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [anon_sym_ATimport] = ACTIONS(2464), + [aux_sym_preproc_undef_token1] = ACTIONS(2462), + [anon_sym_POUND] = ACTIONS(2462), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2462), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2462), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2462), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2462), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE] = ACTIONS(2462), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_API_AVAILABLE] = ACTIONS(2462), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_API_DEPRECATED] = ACTIONS(2462), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2462), + [anon_sym___deprecated_msg] = ACTIONS(2462), + [anon_sym___deprecated_enum_msg] = ACTIONS(2462), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2462), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2462), + [anon_sym_ATprotocol] = ACTIONS(2464), + [anon_sym_ATinterface] = ACTIONS(2464), + [anon_sym_ATimplementation] = ACTIONS(2464), + [anon_sym_ATcompatibility_alias] = ACTIONS(2464), + [anon_sym_ATtry] = ACTIONS(2464), + [anon_sym___try] = ACTIONS(2462), + [anon_sym_ATthrow] = ACTIONS(2464), + [anon_sym_ATselector] = ACTIONS(2464), + [anon_sym_ATavailable] = ACTIONS(2464), + [anon_sym___builtin_available] = ACTIONS(2462), + [anon_sym_va_arg] = ACTIONS(2462), + [anon_sym_ATencode] = ACTIONS(2464), + [anon_sym_ATsynchronized] = ACTIONS(2464), + [anon_sym_BOOL] = ACTIONS(2462), + [anon_sym_IMP] = ACTIONS(2462), + [anon_sym_SEL] = ACTIONS(2462), + [anon_sym_Class] = ACTIONS(2462), + [anon_sym_id] = ACTIONS(2462), + }, + [775] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [776] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [777] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [778] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [779] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [780] = { + [ts_builtin_sym_end] = ACTIONS(2352), + [sym_identifier] = ACTIONS(2350), + [aux_sym_preproc_include_token1] = ACTIONS(2350), + [aux_sym_preproc_include_token2] = ACTIONS(2350), + [aux_sym_preproc_def_token1] = ACTIONS(2350), + [aux_sym_preproc_if_token1] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2350), + [sym_preproc_directive] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(2352), + [anon_sym_BANG] = ACTIONS(2352), + [anon_sym_TILDE] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2350), + [anon_sym_STAR] = ACTIONS(2352), + [anon_sym_CARET] = ACTIONS(2352), + [anon_sym_AMP] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2352), + [anon_sym___extension__] = ACTIONS(2350), + [anon_sym_typedef] = ACTIONS(2350), + [anon_sym_extern] = ACTIONS(2350), + [anon_sym___attribute__] = ACTIONS(2350), + [anon_sym___attribute] = ACTIONS(2350), + [anon_sym_noreturn] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2352), + [anon_sym___declspec] = ACTIONS(2350), + [anon_sym___cdecl] = ACTIONS(2350), + [anon_sym___clrcall] = ACTIONS(2350), + [anon_sym___stdcall] = ACTIONS(2350), + [anon_sym___fastcall] = ACTIONS(2350), + [anon_sym___thiscall] = ACTIONS(2350), + [anon_sym___vectorcall] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2352), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(2350), + [anon_sym_ATautoreleasepool] = ACTIONS(2352), + [anon_sym_auto] = ACTIONS(2350), + [anon_sym_register] = ACTIONS(2350), + [anon_sym_inline] = ACTIONS(2350), + [anon_sym___inline] = ACTIONS(2350), + [anon_sym___inline__] = ACTIONS(2350), + [anon_sym___forceinline] = ACTIONS(2350), + [anon_sym_thread_local] = ACTIONS(2350), + [anon_sym___thread] = ACTIONS(2350), + [anon_sym_CG_EXTERN] = ACTIONS(2350), + [anon_sym_CG_INLINE] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2350), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2350), + [anon_sym_IBOutlet] = ACTIONS(2350), + [anon_sym_IBInspectable] = ACTIONS(2350), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2350), + [anon_sym_NS_INLINE] = ACTIONS(2350), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2350), + [anon_sym_OBJC_EXPORT] = ACTIONS(2350), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2350), + [anon_sym_const] = ACTIONS(2350), + [anon_sym_constexpr] = ACTIONS(2350), + [anon_sym_volatile] = ACTIONS(2350), + [anon_sym_restrict] = ACTIONS(2350), + [anon_sym___restrict__] = ACTIONS(2350), + [anon_sym__Atomic] = ACTIONS(2350), + [anon_sym__Noreturn] = ACTIONS(2350), + [anon_sym__Nonnull] = ACTIONS(2350), + [anon_sym_nullable] = ACTIONS(2350), + [anon_sym__Complex] = ACTIONS(2350), + [anon_sym__Nullable] = ACTIONS(2350), + [anon_sym__Nullable_result] = ACTIONS(2350), + [anon_sym__Null_unspecified] = ACTIONS(2350), + [anon_sym___autoreleasing] = ACTIONS(2350), + [anon_sym___block] = ACTIONS(2350), + [anon_sym___bridge] = ACTIONS(2350), + [anon_sym___bridge_retained] = ACTIONS(2350), + [anon_sym___bridge_transfer] = ACTIONS(2350), + [anon_sym___complex] = ACTIONS(2350), + [anon_sym___const] = ACTIONS(2350), + [anon_sym___imag] = ACTIONS(2350), + [anon_sym___kindof] = ACTIONS(2350), + [anon_sym___nonnull] = ACTIONS(2350), + [anon_sym___nullable] = ACTIONS(2350), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2350), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2350), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2350), + [anon_sym___real] = ACTIONS(2350), + [anon_sym___strong] = ACTIONS(2350), + [anon_sym___unsafe_unretained] = ACTIONS(2350), + [anon_sym___unused] = ACTIONS(2350), + [anon_sym___weak] = ACTIONS(2350), + [anon_sym_alignas] = ACTIONS(2350), + [anon_sym__Alignas] = ACTIONS(2350), + [sym_primitive_type] = ACTIONS(2350), + [anon_sym_enum] = ACTIONS(2350), + [anon_sym_struct] = ACTIONS(2350), + [anon_sym_union] = ACTIONS(2350), + [anon_sym_if] = ACTIONS(2350), + [anon_sym_else] = ACTIONS(2350), + [anon_sym_switch] = ACTIONS(2350), + [anon_sym_case] = ACTIONS(2350), + [anon_sym_default] = ACTIONS(2350), + [anon_sym_while] = ACTIONS(2350), + [anon_sym_do] = ACTIONS(2350), + [anon_sym_for] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_return] = ACTIONS(2350), + [anon_sym_break] = ACTIONS(2350), + [anon_sym_continue] = ACTIONS(2350), + [anon_sym_goto] = ACTIONS(2350), + [anon_sym_DASH_DASH] = ACTIONS(2352), + [anon_sym_PLUS_PLUS] = ACTIONS(2352), + [anon_sym_sizeof] = ACTIONS(2350), + [anon_sym___alignof__] = ACTIONS(2350), + [anon_sym___alignof] = ACTIONS(2350), + [anon_sym__alignof] = ACTIONS(2350), + [anon_sym_alignof] = ACTIONS(2350), + [anon_sym__Alignof] = ACTIONS(2350), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_asm] = ACTIONS(2350), + [anon_sym___asm__] = ACTIONS(2350), + [anon_sym___asm] = ACTIONS(2350), + [sym_number_literal] = ACTIONS(2352), + [anon_sym_L_SQUOTE] = ACTIONS(2352), + [anon_sym_u_SQUOTE] = ACTIONS(2352), + [anon_sym_U_SQUOTE] = ACTIONS(2352), + [anon_sym_u8_SQUOTE] = ACTIONS(2352), + [anon_sym_SQUOTE] = ACTIONS(2352), + [anon_sym_AT] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2352), + [anon_sym_L_DQUOTE] = ACTIONS(2352), + [anon_sym_u_DQUOTE] = ACTIONS(2352), + [anon_sym_U_DQUOTE] = ACTIONS(2352), + [anon_sym_u8_DQUOTE] = ACTIONS(2352), + [sym_true] = ACTIONS(2350), + [sym_false] = ACTIONS(2350), + [anon_sym_NULL] = ACTIONS(2350), + [anon_sym_nullptr] = ACTIONS(2350), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2350), + [anon_sym___typeof] = ACTIONS(2350), + [anon_sym_typeof] = ACTIONS(2350), + [anon_sym_ATimport] = ACTIONS(2352), + [aux_sym_preproc_undef_token1] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(2350), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2350), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2350), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2350), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2350), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE] = ACTIONS(2350), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_API_AVAILABLE] = ACTIONS(2350), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_API_DEPRECATED] = ACTIONS(2350), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2350), + [anon_sym___deprecated_msg] = ACTIONS(2350), + [anon_sym___deprecated_enum_msg] = ACTIONS(2350), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2350), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2350), + [anon_sym_ATprotocol] = ACTIONS(2352), + [anon_sym_ATinterface] = ACTIONS(2352), + [anon_sym_ATimplementation] = ACTIONS(2352), + [anon_sym_ATcompatibility_alias] = ACTIONS(2352), + [anon_sym_ATtry] = ACTIONS(2352), + [anon_sym___try] = ACTIONS(2350), + [anon_sym_ATthrow] = ACTIONS(2352), + [anon_sym_ATselector] = ACTIONS(2352), + [anon_sym_ATavailable] = ACTIONS(2352), + [anon_sym___builtin_available] = ACTIONS(2350), + [anon_sym_va_arg] = ACTIONS(2350), + [anon_sym_ATencode] = ACTIONS(2352), + [anon_sym_ATsynchronized] = ACTIONS(2352), + [anon_sym_BOOL] = ACTIONS(2350), + [anon_sym_IMP] = ACTIONS(2350), + [anon_sym_SEL] = ACTIONS(2350), + [anon_sym_Class] = ACTIONS(2350), + [anon_sym_id] = ACTIONS(2350), + }, + [781] = { + [sym_identifier] = ACTIONS(2466), + [aux_sym_preproc_include_token1] = ACTIONS(2466), + [aux_sym_preproc_include_token2] = ACTIONS(2466), + [aux_sym_preproc_def_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token1] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2466), + [sym_preproc_directive] = ACTIONS(2466), + [anon_sym_LPAREN2] = ACTIONS(2468), + [anon_sym_BANG] = ACTIONS(2468), + [anon_sym_TILDE] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_PLUS] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2468), + [anon_sym_CARET] = ACTIONS(2468), + [anon_sym_AMP] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym___extension__] = ACTIONS(2466), + [anon_sym_typedef] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym___attribute__] = ACTIONS(2466), + [anon_sym___attribute] = ACTIONS(2466), + [anon_sym_noreturn] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2468), + [anon_sym___declspec] = ACTIONS(2466), + [anon_sym___cdecl] = ACTIONS(2466), + [anon_sym___clrcall] = ACTIONS(2466), + [anon_sym___stdcall] = ACTIONS(2466), + [anon_sym___fastcall] = ACTIONS(2466), + [anon_sym___thiscall] = ACTIONS(2466), + [anon_sym___vectorcall] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_RBRACE] = ACTIONS(2468), + [anon_sym_signed] = ACTIONS(2466), + [anon_sym_unsigned] = ACTIONS(2466), + [anon_sym_long] = ACTIONS(2466), + [anon_sym_short] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_ATautoreleasepool] = ACTIONS(2468), + [anon_sym_auto] = ACTIONS(2466), + [anon_sym_register] = ACTIONS(2466), + [anon_sym_inline] = ACTIONS(2466), + [anon_sym___inline] = ACTIONS(2466), + [anon_sym___inline__] = ACTIONS(2466), + [anon_sym___forceinline] = ACTIONS(2466), + [anon_sym_thread_local] = ACTIONS(2466), + [anon_sym___thread] = ACTIONS(2466), + [anon_sym_CG_EXTERN] = ACTIONS(2466), + [anon_sym_CG_INLINE] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2466), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2466), + [anon_sym_IBOutlet] = ACTIONS(2466), + [anon_sym_IBInspectable] = ACTIONS(2466), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2466), + [anon_sym_NS_INLINE] = ACTIONS(2466), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2466), + [anon_sym_OBJC_EXPORT] = ACTIONS(2466), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_constexpr] = ACTIONS(2466), + [anon_sym_volatile] = ACTIONS(2466), + [anon_sym_restrict] = ACTIONS(2466), + [anon_sym___restrict__] = ACTIONS(2466), + [anon_sym__Atomic] = ACTIONS(2466), + [anon_sym__Noreturn] = ACTIONS(2466), + [anon_sym__Nonnull] = ACTIONS(2466), + [anon_sym_nullable] = ACTIONS(2466), + [anon_sym__Complex] = ACTIONS(2466), + [anon_sym__Nullable] = ACTIONS(2466), + [anon_sym__Nullable_result] = ACTIONS(2466), + [anon_sym__Null_unspecified] = ACTIONS(2466), + [anon_sym___autoreleasing] = ACTIONS(2466), + [anon_sym___block] = ACTIONS(2466), + [anon_sym___bridge] = ACTIONS(2466), + [anon_sym___bridge_retained] = ACTIONS(2466), + [anon_sym___bridge_transfer] = ACTIONS(2466), + [anon_sym___complex] = ACTIONS(2466), + [anon_sym___const] = ACTIONS(2466), + [anon_sym___imag] = ACTIONS(2466), + [anon_sym___kindof] = ACTIONS(2466), + [anon_sym___nonnull] = ACTIONS(2466), + [anon_sym___nullable] = ACTIONS(2466), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2466), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2466), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2466), + [anon_sym___real] = ACTIONS(2466), + [anon_sym___strong] = ACTIONS(2466), + [anon_sym___unsafe_unretained] = ACTIONS(2466), + [anon_sym___unused] = ACTIONS(2466), + [anon_sym___weak] = ACTIONS(2466), + [anon_sym_alignas] = ACTIONS(2466), + [anon_sym__Alignas] = ACTIONS(2466), + [sym_primitive_type] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), + [anon_sym_struct] = ACTIONS(2466), + [anon_sym_union] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_else] = ACTIONS(2466), + [anon_sym_switch] = ACTIONS(2466), + [anon_sym_case] = ACTIONS(2466), + [anon_sym_default] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_do] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_in] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_goto] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2468), + [anon_sym_PLUS_PLUS] = ACTIONS(2468), + [anon_sym_sizeof] = ACTIONS(2466), + [anon_sym___alignof__] = ACTIONS(2466), + [anon_sym___alignof] = ACTIONS(2466), + [anon_sym__alignof] = ACTIONS(2466), + [anon_sym_alignof] = ACTIONS(2466), + [anon_sym__Alignof] = ACTIONS(2466), + [anon_sym_offsetof] = ACTIONS(2466), + [anon_sym__Generic] = ACTIONS(2466), + [anon_sym_asm] = ACTIONS(2466), + [anon_sym___asm__] = ACTIONS(2466), + [anon_sym___asm] = ACTIONS(2466), + [sym_number_literal] = ACTIONS(2468), + [anon_sym_L_SQUOTE] = ACTIONS(2468), + [anon_sym_u_SQUOTE] = ACTIONS(2468), + [anon_sym_U_SQUOTE] = ACTIONS(2468), + [anon_sym_u8_SQUOTE] = ACTIONS(2468), + [anon_sym_SQUOTE] = ACTIONS(2468), + [anon_sym_AT] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2468), + [anon_sym_L_DQUOTE] = ACTIONS(2468), + [anon_sym_u_DQUOTE] = ACTIONS(2468), + [anon_sym_U_DQUOTE] = ACTIONS(2468), + [anon_sym_u8_DQUOTE] = ACTIONS(2468), + [sym_true] = ACTIONS(2466), + [sym_false] = ACTIONS(2466), + [anon_sym_NULL] = ACTIONS(2466), + [anon_sym_nullptr] = ACTIONS(2466), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2466), + [anon_sym___typeof] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2466), + [anon_sym_ATimport] = ACTIONS(2468), + [aux_sym_preproc_undef_token1] = ACTIONS(2466), + [anon_sym_POUND] = ACTIONS(2466), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2466), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2466), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2466), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2466), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE] = ACTIONS(2466), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_API_AVAILABLE] = ACTIONS(2466), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_API_DEPRECATED] = ACTIONS(2466), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2466), + [anon_sym___deprecated_msg] = ACTIONS(2466), + [anon_sym___deprecated_enum_msg] = ACTIONS(2466), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2466), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2466), + [anon_sym_ATprotocol] = ACTIONS(2468), + [anon_sym_ATinterface] = ACTIONS(2468), + [anon_sym_ATimplementation] = ACTIONS(2468), + [anon_sym_ATcompatibility_alias] = ACTIONS(2468), + [anon_sym_ATtry] = ACTIONS(2468), + [anon_sym___try] = ACTIONS(2466), + [anon_sym_ATthrow] = ACTIONS(2468), + [anon_sym_ATselector] = ACTIONS(2468), + [anon_sym_ATavailable] = ACTIONS(2468), + [anon_sym___builtin_available] = ACTIONS(2466), + [anon_sym_va_arg] = ACTIONS(2466), + [anon_sym_ATencode] = ACTIONS(2468), + [anon_sym_ATsynchronized] = ACTIONS(2468), + [anon_sym_BOOL] = ACTIONS(2466), + [anon_sym_IMP] = ACTIONS(2466), + [anon_sym_SEL] = ACTIONS(2466), + [anon_sym_Class] = ACTIONS(2466), + [anon_sym_id] = ACTIONS(2466), + }, + [782] = { + [sym_identifier] = ACTIONS(2466), + [aux_sym_preproc_include_token1] = ACTIONS(2466), + [aux_sym_preproc_include_token2] = ACTIONS(2466), + [aux_sym_preproc_def_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token1] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2466), + [sym_preproc_directive] = ACTIONS(2466), + [anon_sym_LPAREN2] = ACTIONS(2468), + [anon_sym_BANG] = ACTIONS(2468), + [anon_sym_TILDE] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_PLUS] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2468), + [anon_sym_CARET] = ACTIONS(2468), + [anon_sym_AMP] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym___extension__] = ACTIONS(2466), + [anon_sym_typedef] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym___attribute__] = ACTIONS(2466), + [anon_sym___attribute] = ACTIONS(2466), + [anon_sym_noreturn] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2468), + [anon_sym___declspec] = ACTIONS(2466), + [anon_sym___cdecl] = ACTIONS(2466), + [anon_sym___clrcall] = ACTIONS(2466), + [anon_sym___stdcall] = ACTIONS(2466), + [anon_sym___fastcall] = ACTIONS(2466), + [anon_sym___thiscall] = ACTIONS(2466), + [anon_sym___vectorcall] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_RBRACE] = ACTIONS(2468), + [anon_sym_signed] = ACTIONS(2466), + [anon_sym_unsigned] = ACTIONS(2466), + [anon_sym_long] = ACTIONS(2466), + [anon_sym_short] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_ATautoreleasepool] = ACTIONS(2468), + [anon_sym_auto] = ACTIONS(2466), + [anon_sym_register] = ACTIONS(2466), + [anon_sym_inline] = ACTIONS(2466), + [anon_sym___inline] = ACTIONS(2466), + [anon_sym___inline__] = ACTIONS(2466), + [anon_sym___forceinline] = ACTIONS(2466), + [anon_sym_thread_local] = ACTIONS(2466), + [anon_sym___thread] = ACTIONS(2466), + [anon_sym_CG_EXTERN] = ACTIONS(2466), + [anon_sym_CG_INLINE] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2466), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2466), + [anon_sym_IBOutlet] = ACTIONS(2466), + [anon_sym_IBInspectable] = ACTIONS(2466), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2466), + [anon_sym_NS_INLINE] = ACTIONS(2466), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2466), + [anon_sym_OBJC_EXPORT] = ACTIONS(2466), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_constexpr] = ACTIONS(2466), + [anon_sym_volatile] = ACTIONS(2466), + [anon_sym_restrict] = ACTIONS(2466), + [anon_sym___restrict__] = ACTIONS(2466), + [anon_sym__Atomic] = ACTIONS(2466), + [anon_sym__Noreturn] = ACTIONS(2466), + [anon_sym__Nonnull] = ACTIONS(2466), + [anon_sym_nullable] = ACTIONS(2466), + [anon_sym__Complex] = ACTIONS(2466), + [anon_sym__Nullable] = ACTIONS(2466), + [anon_sym__Nullable_result] = ACTIONS(2466), + [anon_sym__Null_unspecified] = ACTIONS(2466), + [anon_sym___autoreleasing] = ACTIONS(2466), + [anon_sym___block] = ACTIONS(2466), + [anon_sym___bridge] = ACTIONS(2466), + [anon_sym___bridge_retained] = ACTIONS(2466), + [anon_sym___bridge_transfer] = ACTIONS(2466), + [anon_sym___complex] = ACTIONS(2466), + [anon_sym___const] = ACTIONS(2466), + [anon_sym___imag] = ACTIONS(2466), + [anon_sym___kindof] = ACTIONS(2466), + [anon_sym___nonnull] = ACTIONS(2466), + [anon_sym___nullable] = ACTIONS(2466), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2466), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2466), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2466), + [anon_sym___real] = ACTIONS(2466), + [anon_sym___strong] = ACTIONS(2466), + [anon_sym___unsafe_unretained] = ACTIONS(2466), + [anon_sym___unused] = ACTIONS(2466), + [anon_sym___weak] = ACTIONS(2466), + [anon_sym_alignas] = ACTIONS(2466), + [anon_sym__Alignas] = ACTIONS(2466), + [sym_primitive_type] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), + [anon_sym_struct] = ACTIONS(2466), + [anon_sym_union] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_else] = ACTIONS(2466), + [anon_sym_switch] = ACTIONS(2466), + [anon_sym_case] = ACTIONS(2466), + [anon_sym_default] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_do] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_in] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_goto] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2468), + [anon_sym_PLUS_PLUS] = ACTIONS(2468), + [anon_sym_sizeof] = ACTIONS(2466), + [anon_sym___alignof__] = ACTIONS(2466), + [anon_sym___alignof] = ACTIONS(2466), + [anon_sym__alignof] = ACTIONS(2466), + [anon_sym_alignof] = ACTIONS(2466), + [anon_sym__Alignof] = ACTIONS(2466), + [anon_sym_offsetof] = ACTIONS(2466), + [anon_sym__Generic] = ACTIONS(2466), + [anon_sym_asm] = ACTIONS(2466), + [anon_sym___asm__] = ACTIONS(2466), + [anon_sym___asm] = ACTIONS(2466), + [sym_number_literal] = ACTIONS(2468), + [anon_sym_L_SQUOTE] = ACTIONS(2468), + [anon_sym_u_SQUOTE] = ACTIONS(2468), + [anon_sym_U_SQUOTE] = ACTIONS(2468), + [anon_sym_u8_SQUOTE] = ACTIONS(2468), + [anon_sym_SQUOTE] = ACTIONS(2468), + [anon_sym_AT] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2468), + [anon_sym_L_DQUOTE] = ACTIONS(2468), + [anon_sym_u_DQUOTE] = ACTIONS(2468), + [anon_sym_U_DQUOTE] = ACTIONS(2468), + [anon_sym_u8_DQUOTE] = ACTIONS(2468), + [sym_true] = ACTIONS(2466), + [sym_false] = ACTIONS(2466), + [anon_sym_NULL] = ACTIONS(2466), + [anon_sym_nullptr] = ACTIONS(2466), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2466), + [anon_sym___typeof] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2466), + [anon_sym_ATimport] = ACTIONS(2468), + [aux_sym_preproc_undef_token1] = ACTIONS(2466), + [anon_sym_POUND] = ACTIONS(2466), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2466), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2466), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2466), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2466), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE] = ACTIONS(2466), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_API_AVAILABLE] = ACTIONS(2466), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_API_DEPRECATED] = ACTIONS(2466), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2466), + [anon_sym___deprecated_msg] = ACTIONS(2466), + [anon_sym___deprecated_enum_msg] = ACTIONS(2466), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2466), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2466), + [anon_sym_ATprotocol] = ACTIONS(2468), + [anon_sym_ATinterface] = ACTIONS(2468), + [anon_sym_ATimplementation] = ACTIONS(2468), + [anon_sym_ATcompatibility_alias] = ACTIONS(2468), + [anon_sym_ATtry] = ACTIONS(2468), + [anon_sym___try] = ACTIONS(2466), + [anon_sym_ATthrow] = ACTIONS(2468), + [anon_sym_ATselector] = ACTIONS(2468), + [anon_sym_ATavailable] = ACTIONS(2468), + [anon_sym___builtin_available] = ACTIONS(2466), + [anon_sym_va_arg] = ACTIONS(2466), + [anon_sym_ATencode] = ACTIONS(2468), + [anon_sym_ATsynchronized] = ACTIONS(2468), + [anon_sym_BOOL] = ACTIONS(2466), + [anon_sym_IMP] = ACTIONS(2466), + [anon_sym_SEL] = ACTIONS(2466), + [anon_sym_Class] = ACTIONS(2466), + [anon_sym_id] = ACTIONS(2466), + }, + [783] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [784] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [785] = { + [sym_identifier] = ACTIONS(2412), + [aux_sym_preproc_include_token1] = ACTIONS(2412), + [aux_sym_preproc_include_token2] = ACTIONS(2412), + [aux_sym_preproc_def_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2412), + [sym_preproc_directive] = ACTIONS(2412), + [anon_sym_LPAREN2] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2414), + [anon_sym_TILDE] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_STAR] = ACTIONS(2414), + [anon_sym_CARET] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym___extension__] = ACTIONS(2412), + [anon_sym_typedef] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym___attribute__] = ACTIONS(2412), + [anon_sym___attribute] = ACTIONS(2412), + [anon_sym_noreturn] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym___declspec] = ACTIONS(2412), + [anon_sym___cdecl] = ACTIONS(2412), + [anon_sym___clrcall] = ACTIONS(2412), + [anon_sym___stdcall] = ACTIONS(2412), + [anon_sym___fastcall] = ACTIONS(2412), + [anon_sym___thiscall] = ACTIONS(2412), + [anon_sym___vectorcall] = ACTIONS(2412), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_signed] = ACTIONS(2412), + [anon_sym_unsigned] = ACTIONS(2412), + [anon_sym_long] = ACTIONS(2412), + [anon_sym_short] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_ATautoreleasepool] = ACTIONS(2414), + [anon_sym_auto] = ACTIONS(2412), + [anon_sym_register] = ACTIONS(2412), + [anon_sym_inline] = ACTIONS(2412), + [anon_sym___inline] = ACTIONS(2412), + [anon_sym___inline__] = ACTIONS(2412), + [anon_sym___forceinline] = ACTIONS(2412), + [anon_sym_thread_local] = ACTIONS(2412), + [anon_sym___thread] = ACTIONS(2412), + [anon_sym_CG_EXTERN] = ACTIONS(2412), + [anon_sym_CG_INLINE] = ACTIONS(2412), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2412), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2412), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2412), + [anon_sym_IBOutlet] = ACTIONS(2412), + [anon_sym_IBInspectable] = ACTIONS(2412), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2412), + [anon_sym_NS_INLINE] = ACTIONS(2412), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2412), + [anon_sym_OBJC_EXPORT] = ACTIONS(2412), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2412), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_constexpr] = ACTIONS(2412), + [anon_sym_volatile] = ACTIONS(2412), + [anon_sym_restrict] = ACTIONS(2412), + [anon_sym___restrict__] = ACTIONS(2412), + [anon_sym__Atomic] = ACTIONS(2412), + [anon_sym__Noreturn] = ACTIONS(2412), + [anon_sym__Nonnull] = ACTIONS(2412), + [anon_sym_nullable] = ACTIONS(2412), + [anon_sym__Complex] = ACTIONS(2412), + [anon_sym__Nullable] = ACTIONS(2412), + [anon_sym__Nullable_result] = ACTIONS(2412), + [anon_sym__Null_unspecified] = ACTIONS(2412), + [anon_sym___autoreleasing] = ACTIONS(2412), + [anon_sym___block] = ACTIONS(2412), + [anon_sym___bridge] = ACTIONS(2412), + [anon_sym___bridge_retained] = ACTIONS(2412), + [anon_sym___bridge_transfer] = ACTIONS(2412), + [anon_sym___complex] = ACTIONS(2412), + [anon_sym___const] = ACTIONS(2412), + [anon_sym___imag] = ACTIONS(2412), + [anon_sym___kindof] = ACTIONS(2412), + [anon_sym___nonnull] = ACTIONS(2412), + [anon_sym___nullable] = ACTIONS(2412), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2412), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2412), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2412), + [anon_sym___real] = ACTIONS(2412), + [anon_sym___strong] = ACTIONS(2412), + [anon_sym___unsafe_unretained] = ACTIONS(2412), + [anon_sym___unused] = ACTIONS(2412), + [anon_sym___weak] = ACTIONS(2412), + [anon_sym_alignas] = ACTIONS(2412), + [anon_sym__Alignas] = ACTIONS(2412), + [sym_primitive_type] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [anon_sym_struct] = ACTIONS(2412), + [anon_sym_union] = ACTIONS(2412), + [anon_sym_if] = ACTIONS(2412), + [anon_sym_else] = ACTIONS(2412), + [anon_sym_switch] = ACTIONS(2412), + [anon_sym_case] = ACTIONS(2412), + [anon_sym_default] = ACTIONS(2412), + [anon_sym_while] = ACTIONS(2412), + [anon_sym_do] = ACTIONS(2412), + [anon_sym_for] = ACTIONS(2412), + [anon_sym_in] = ACTIONS(2412), + [anon_sym_return] = ACTIONS(2412), + [anon_sym_break] = ACTIONS(2412), + [anon_sym_continue] = ACTIONS(2412), + [anon_sym_goto] = ACTIONS(2412), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_sizeof] = ACTIONS(2412), + [anon_sym___alignof__] = ACTIONS(2412), + [anon_sym___alignof] = ACTIONS(2412), + [anon_sym__alignof] = ACTIONS(2412), + [anon_sym_alignof] = ACTIONS(2412), + [anon_sym__Alignof] = ACTIONS(2412), + [anon_sym_offsetof] = ACTIONS(2412), + [anon_sym__Generic] = ACTIONS(2412), + [anon_sym_asm] = ACTIONS(2412), + [anon_sym___asm__] = ACTIONS(2412), + [anon_sym___asm] = ACTIONS(2412), + [sym_number_literal] = ACTIONS(2414), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_AT] = ACTIONS(2412), + [anon_sym_DQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2412), + [sym_false] = ACTIONS(2412), + [anon_sym_NULL] = ACTIONS(2412), + [anon_sym_nullptr] = ACTIONS(2412), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2412), + [anon_sym___typeof] = ACTIONS(2412), + [anon_sym_typeof] = ACTIONS(2412), + [anon_sym_ATimport] = ACTIONS(2414), + [aux_sym_preproc_undef_token1] = ACTIONS(2412), + [anon_sym_POUND] = ACTIONS(2412), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2412), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2412), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2412), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2412), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2412), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2412), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2412), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2412), + [anon_sym_NS_AVAILABLE] = ACTIONS(2412), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2412), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_API_AVAILABLE] = ACTIONS(2412), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_API_DEPRECATED] = ACTIONS(2412), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2412), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2412), + [anon_sym___deprecated_msg] = ACTIONS(2412), + [anon_sym___deprecated_enum_msg] = ACTIONS(2412), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2412), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2412), + [anon_sym_ATprotocol] = ACTIONS(2414), + [anon_sym_ATinterface] = ACTIONS(2414), + [anon_sym_ATimplementation] = ACTIONS(2414), + [anon_sym_ATcompatibility_alias] = ACTIONS(2414), + [anon_sym_ATtry] = ACTIONS(2414), + [anon_sym___try] = ACTIONS(2412), + [anon_sym_ATthrow] = ACTIONS(2414), + [anon_sym_ATselector] = ACTIONS(2414), + [anon_sym_ATavailable] = ACTIONS(2414), + [anon_sym___builtin_available] = ACTIONS(2412), + [anon_sym_va_arg] = ACTIONS(2412), + [anon_sym_ATencode] = ACTIONS(2414), + [anon_sym_ATsynchronized] = ACTIONS(2414), + [anon_sym_BOOL] = ACTIONS(2412), + [anon_sym_IMP] = ACTIONS(2412), + [anon_sym_SEL] = ACTIONS(2412), + [anon_sym_Class] = ACTIONS(2412), + [anon_sym_id] = ACTIONS(2412), + }, + [786] = { + [sym_identifier] = ACTIONS(2556), + [aux_sym_preproc_include_token1] = ACTIONS(2556), + [aux_sym_preproc_include_token2] = ACTIONS(2556), + [aux_sym_preproc_def_token1] = ACTIONS(2556), + [aux_sym_preproc_if_token1] = ACTIONS(2556), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2556), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2556), + [sym_preproc_directive] = ACTIONS(2556), + [anon_sym_LPAREN2] = ACTIONS(2558), + [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_TILDE] = ACTIONS(2558), + [anon_sym_DASH] = ACTIONS(2556), + [anon_sym_PLUS] = ACTIONS(2556), + [anon_sym_STAR] = ACTIONS(2558), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym_AMP] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym___extension__] = ACTIONS(2556), + [anon_sym_typedef] = ACTIONS(2556), + [anon_sym_extern] = ACTIONS(2556), + [anon_sym___attribute__] = ACTIONS(2556), + [anon_sym___attribute] = ACTIONS(2556), + [anon_sym_noreturn] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym___declspec] = ACTIONS(2556), + [anon_sym___cdecl] = ACTIONS(2556), + [anon_sym___clrcall] = ACTIONS(2556), + [anon_sym___stdcall] = ACTIONS(2556), + [anon_sym___fastcall] = ACTIONS(2556), + [anon_sym___thiscall] = ACTIONS(2556), + [anon_sym___vectorcall] = ACTIONS(2556), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_RBRACE] = ACTIONS(2558), + [anon_sym_signed] = ACTIONS(2556), + [anon_sym_unsigned] = ACTIONS(2556), + [anon_sym_long] = ACTIONS(2556), + [anon_sym_short] = ACTIONS(2556), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_ATautoreleasepool] = ACTIONS(2558), + [anon_sym_auto] = ACTIONS(2556), + [anon_sym_register] = ACTIONS(2556), + [anon_sym_inline] = ACTIONS(2556), + [anon_sym___inline] = ACTIONS(2556), + [anon_sym___inline__] = ACTIONS(2556), + [anon_sym___forceinline] = ACTIONS(2556), + [anon_sym_thread_local] = ACTIONS(2556), + [anon_sym___thread] = ACTIONS(2556), + [anon_sym_CG_EXTERN] = ACTIONS(2556), + [anon_sym_CG_INLINE] = ACTIONS(2556), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2556), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2556), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2556), + [anon_sym_IBOutlet] = ACTIONS(2556), + [anon_sym_IBInspectable] = ACTIONS(2556), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2556), + [anon_sym_NS_INLINE] = ACTIONS(2556), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2556), + [anon_sym_OBJC_EXPORT] = ACTIONS(2556), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2556), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2556), + [anon_sym_const] = ACTIONS(2556), + [anon_sym_constexpr] = ACTIONS(2556), + [anon_sym_volatile] = ACTIONS(2556), + [anon_sym_restrict] = ACTIONS(2556), + [anon_sym___restrict__] = ACTIONS(2556), + [anon_sym__Atomic] = ACTIONS(2556), + [anon_sym__Noreturn] = ACTIONS(2556), + [anon_sym__Nonnull] = ACTIONS(2556), + [anon_sym_nullable] = ACTIONS(2556), + [anon_sym__Complex] = ACTIONS(2556), + [anon_sym__Nullable] = ACTIONS(2556), + [anon_sym__Nullable_result] = ACTIONS(2556), + [anon_sym__Null_unspecified] = ACTIONS(2556), + [anon_sym___autoreleasing] = ACTIONS(2556), + [anon_sym___block] = ACTIONS(2556), + [anon_sym___bridge] = ACTIONS(2556), + [anon_sym___bridge_retained] = ACTIONS(2556), + [anon_sym___bridge_transfer] = ACTIONS(2556), + [anon_sym___complex] = ACTIONS(2556), + [anon_sym___const] = ACTIONS(2556), + [anon_sym___imag] = ACTIONS(2556), + [anon_sym___kindof] = ACTIONS(2556), + [anon_sym___nonnull] = ACTIONS(2556), + [anon_sym___nullable] = ACTIONS(2556), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2556), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2556), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2556), + [anon_sym___real] = ACTIONS(2556), + [anon_sym___strong] = ACTIONS(2556), + [anon_sym___unsafe_unretained] = ACTIONS(2556), + [anon_sym___unused] = ACTIONS(2556), + [anon_sym___weak] = ACTIONS(2556), + [anon_sym_alignas] = ACTIONS(2556), + [anon_sym__Alignas] = ACTIONS(2556), + [sym_primitive_type] = ACTIONS(2556), + [anon_sym_enum] = ACTIONS(2556), + [anon_sym_struct] = ACTIONS(2556), + [anon_sym_union] = ACTIONS(2556), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_else] = ACTIONS(2556), + [anon_sym_switch] = ACTIONS(2556), + [anon_sym_case] = ACTIONS(2556), + [anon_sym_default] = ACTIONS(2556), + [anon_sym_while] = ACTIONS(2556), + [anon_sym_do] = ACTIONS(2556), + [anon_sym_for] = ACTIONS(2556), + [anon_sym_in] = ACTIONS(2556), + [anon_sym_return] = ACTIONS(2556), + [anon_sym_break] = ACTIONS(2556), + [anon_sym_continue] = ACTIONS(2556), + [anon_sym_goto] = ACTIONS(2556), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_sizeof] = ACTIONS(2556), + [anon_sym___alignof__] = ACTIONS(2556), + [anon_sym___alignof] = ACTIONS(2556), + [anon_sym__alignof] = ACTIONS(2556), + [anon_sym_alignof] = ACTIONS(2556), + [anon_sym__Alignof] = ACTIONS(2556), + [anon_sym_offsetof] = ACTIONS(2556), + [anon_sym__Generic] = ACTIONS(2556), + [anon_sym_asm] = ACTIONS(2556), + [anon_sym___asm__] = ACTIONS(2556), + [anon_sym___asm] = ACTIONS(2556), + [sym_number_literal] = ACTIONS(2558), + [anon_sym_L_SQUOTE] = ACTIONS(2558), + [anon_sym_u_SQUOTE] = ACTIONS(2558), + [anon_sym_U_SQUOTE] = ACTIONS(2558), + [anon_sym_u8_SQUOTE] = ACTIONS(2558), + [anon_sym_SQUOTE] = ACTIONS(2558), + [anon_sym_AT] = ACTIONS(2556), + [anon_sym_DQUOTE] = ACTIONS(2558), + [anon_sym_L_DQUOTE] = ACTIONS(2558), + [anon_sym_u_DQUOTE] = ACTIONS(2558), + [anon_sym_U_DQUOTE] = ACTIONS(2558), + [anon_sym_u8_DQUOTE] = ACTIONS(2558), + [sym_true] = ACTIONS(2556), + [sym_false] = ACTIONS(2556), + [anon_sym_NULL] = ACTIONS(2556), + [anon_sym_nullptr] = ACTIONS(2556), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2556), + [anon_sym___typeof] = ACTIONS(2556), + [anon_sym_typeof] = ACTIONS(2556), + [anon_sym_ATimport] = ACTIONS(2558), + [aux_sym_preproc_undef_token1] = ACTIONS(2556), + [anon_sym_POUND] = ACTIONS(2556), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2556), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2556), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2556), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2556), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2556), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2556), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2556), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2556), + [anon_sym_NS_AVAILABLE] = ACTIONS(2556), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2556), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_API_AVAILABLE] = ACTIONS(2556), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_API_DEPRECATED] = ACTIONS(2556), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2556), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2556), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2556), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2556), + [anon_sym___deprecated_msg] = ACTIONS(2556), + [anon_sym___deprecated_enum_msg] = ACTIONS(2556), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2556), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2556), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2556), + [anon_sym_ATprotocol] = ACTIONS(2558), + [anon_sym_ATinterface] = ACTIONS(2558), + [anon_sym_ATimplementation] = ACTIONS(2558), + [anon_sym_ATcompatibility_alias] = ACTIONS(2558), + [anon_sym_ATtry] = ACTIONS(2558), + [anon_sym___try] = ACTIONS(2556), + [anon_sym_ATthrow] = ACTIONS(2558), + [anon_sym_ATselector] = ACTIONS(2558), + [anon_sym_ATavailable] = ACTIONS(2558), + [anon_sym___builtin_available] = ACTIONS(2556), + [anon_sym_va_arg] = ACTIONS(2556), + [anon_sym_ATencode] = ACTIONS(2558), + [anon_sym_ATsynchronized] = ACTIONS(2558), + [anon_sym_BOOL] = ACTIONS(2556), + [anon_sym_IMP] = ACTIONS(2556), + [anon_sym_SEL] = ACTIONS(2556), + [anon_sym_Class] = ACTIONS(2556), + [anon_sym_id] = ACTIONS(2556), + }, + [787] = { + [sym_identifier] = ACTIONS(2470), + [aux_sym_preproc_include_token1] = ACTIONS(2470), + [aux_sym_preproc_include_token2] = ACTIONS(2470), + [aux_sym_preproc_def_token1] = ACTIONS(2470), + [aux_sym_preproc_if_token1] = ACTIONS(2470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2470), + [sym_preproc_directive] = ACTIONS(2470), + [anon_sym_LPAREN2] = ACTIONS(2472), + [anon_sym_BANG] = ACTIONS(2472), + [anon_sym_TILDE] = ACTIONS(2472), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_CARET] = ACTIONS(2472), + [anon_sym_AMP] = ACTIONS(2472), + [anon_sym_SEMI] = ACTIONS(2472), + [anon_sym___extension__] = ACTIONS(2470), + [anon_sym_typedef] = ACTIONS(2470), + [anon_sym_extern] = ACTIONS(2470), + [anon_sym___attribute__] = ACTIONS(2470), + [anon_sym___attribute] = ACTIONS(2470), + [anon_sym_noreturn] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2472), + [anon_sym___declspec] = ACTIONS(2470), + [anon_sym___cdecl] = ACTIONS(2470), + [anon_sym___clrcall] = ACTIONS(2470), + [anon_sym___stdcall] = ACTIONS(2470), + [anon_sym___fastcall] = ACTIONS(2470), + [anon_sym___thiscall] = ACTIONS(2470), + [anon_sym___vectorcall] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2472), + [anon_sym_RBRACE] = ACTIONS(2472), + [anon_sym_signed] = ACTIONS(2470), + [anon_sym_unsigned] = ACTIONS(2470), + [anon_sym_long] = ACTIONS(2470), + [anon_sym_short] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_ATautoreleasepool] = ACTIONS(2472), + [anon_sym_auto] = ACTIONS(2470), + [anon_sym_register] = ACTIONS(2470), + [anon_sym_inline] = ACTIONS(2470), + [anon_sym___inline] = ACTIONS(2470), + [anon_sym___inline__] = ACTIONS(2470), + [anon_sym___forceinline] = ACTIONS(2470), + [anon_sym_thread_local] = ACTIONS(2470), + [anon_sym___thread] = ACTIONS(2470), + [anon_sym_CG_EXTERN] = ACTIONS(2470), + [anon_sym_CG_INLINE] = ACTIONS(2470), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2470), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2470), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2470), + [anon_sym_IBOutlet] = ACTIONS(2470), + [anon_sym_IBInspectable] = ACTIONS(2470), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2470), + [anon_sym_NS_INLINE] = ACTIONS(2470), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2470), + [anon_sym_OBJC_EXPORT] = ACTIONS(2470), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2470), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_constexpr] = ACTIONS(2470), + [anon_sym_volatile] = ACTIONS(2470), + [anon_sym_restrict] = ACTIONS(2470), + [anon_sym___restrict__] = ACTIONS(2470), + [anon_sym__Atomic] = ACTIONS(2470), + [anon_sym__Noreturn] = ACTIONS(2470), + [anon_sym__Nonnull] = ACTIONS(2470), + [anon_sym_nullable] = ACTIONS(2470), + [anon_sym__Complex] = ACTIONS(2470), + [anon_sym__Nullable] = ACTIONS(2470), + [anon_sym__Nullable_result] = ACTIONS(2470), + [anon_sym__Null_unspecified] = ACTIONS(2470), + [anon_sym___autoreleasing] = ACTIONS(2470), + [anon_sym___block] = ACTIONS(2470), + [anon_sym___bridge] = ACTIONS(2470), + [anon_sym___bridge_retained] = ACTIONS(2470), + [anon_sym___bridge_transfer] = ACTIONS(2470), + [anon_sym___complex] = ACTIONS(2470), + [anon_sym___const] = ACTIONS(2470), + [anon_sym___imag] = ACTIONS(2470), + [anon_sym___kindof] = ACTIONS(2470), + [anon_sym___nonnull] = ACTIONS(2470), + [anon_sym___nullable] = ACTIONS(2470), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2470), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2470), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2470), + [anon_sym___real] = ACTIONS(2470), + [anon_sym___strong] = ACTIONS(2470), + [anon_sym___unsafe_unretained] = ACTIONS(2470), + [anon_sym___unused] = ACTIONS(2470), + [anon_sym___weak] = ACTIONS(2470), + [anon_sym_alignas] = ACTIONS(2470), + [anon_sym__Alignas] = ACTIONS(2470), + [sym_primitive_type] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [anon_sym_struct] = ACTIONS(2470), + [anon_sym_union] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_else] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_case] = ACTIONS(2470), + [anon_sym_default] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_in] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_goto] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2472), + [anon_sym_PLUS_PLUS] = ACTIONS(2472), + [anon_sym_sizeof] = ACTIONS(2470), + [anon_sym___alignof__] = ACTIONS(2470), + [anon_sym___alignof] = ACTIONS(2470), + [anon_sym__alignof] = ACTIONS(2470), + [anon_sym_alignof] = ACTIONS(2470), + [anon_sym__Alignof] = ACTIONS(2470), + [anon_sym_offsetof] = ACTIONS(2470), + [anon_sym__Generic] = ACTIONS(2470), + [anon_sym_asm] = ACTIONS(2470), + [anon_sym___asm__] = ACTIONS(2470), + [anon_sym___asm] = ACTIONS(2470), + [sym_number_literal] = ACTIONS(2472), + [anon_sym_L_SQUOTE] = ACTIONS(2472), + [anon_sym_u_SQUOTE] = ACTIONS(2472), + [anon_sym_U_SQUOTE] = ACTIONS(2472), + [anon_sym_u8_SQUOTE] = ACTIONS(2472), + [anon_sym_SQUOTE] = ACTIONS(2472), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2472), + [anon_sym_L_DQUOTE] = ACTIONS(2472), + [anon_sym_u_DQUOTE] = ACTIONS(2472), + [anon_sym_U_DQUOTE] = ACTIONS(2472), + [anon_sym_u8_DQUOTE] = ACTIONS(2472), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [anon_sym_NULL] = ACTIONS(2470), + [anon_sym_nullptr] = ACTIONS(2470), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2470), + [anon_sym___typeof] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_ATimport] = ACTIONS(2472), + [aux_sym_preproc_undef_token1] = ACTIONS(2470), + [anon_sym_POUND] = ACTIONS(2470), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2470), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2470), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2470), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2470), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2470), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2470), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2470), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2470), + [anon_sym_NS_AVAILABLE] = ACTIONS(2470), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2470), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_API_AVAILABLE] = ACTIONS(2470), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_API_DEPRECATED] = ACTIONS(2470), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2470), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2470), + [anon_sym___deprecated_msg] = ACTIONS(2470), + [anon_sym___deprecated_enum_msg] = ACTIONS(2470), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2470), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2470), + [anon_sym_ATprotocol] = ACTIONS(2472), + [anon_sym_ATinterface] = ACTIONS(2472), + [anon_sym_ATimplementation] = ACTIONS(2472), + [anon_sym_ATcompatibility_alias] = ACTIONS(2472), + [anon_sym_ATtry] = ACTIONS(2472), + [anon_sym___try] = ACTIONS(2470), + [anon_sym_ATthrow] = ACTIONS(2472), + [anon_sym_ATselector] = ACTIONS(2472), + [anon_sym_ATavailable] = ACTIONS(2472), + [anon_sym___builtin_available] = ACTIONS(2470), + [anon_sym_va_arg] = ACTIONS(2470), + [anon_sym_ATencode] = ACTIONS(2472), + [anon_sym_ATsynchronized] = ACTIONS(2472), + [anon_sym_BOOL] = ACTIONS(2470), + [anon_sym_IMP] = ACTIONS(2470), + [anon_sym_SEL] = ACTIONS(2470), + [anon_sym_Class] = ACTIONS(2470), + [anon_sym_id] = ACTIONS(2470), + }, + [788] = { + [ts_builtin_sym_end] = ACTIONS(2370), + [sym_identifier] = ACTIONS(2368), + [aux_sym_preproc_include_token1] = ACTIONS(2368), + [aux_sym_preproc_include_token2] = ACTIONS(2368), + [aux_sym_preproc_def_token1] = ACTIONS(2368), + [aux_sym_preproc_if_token1] = ACTIONS(2368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2368), + [sym_preproc_directive] = ACTIONS(2368), + [anon_sym_LPAREN2] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym___extension__] = ACTIONS(2368), + [anon_sym_typedef] = ACTIONS(2368), + [anon_sym_extern] = ACTIONS(2368), + [anon_sym___attribute__] = ACTIONS(2368), + [anon_sym___attribute] = ACTIONS(2368), + [anon_sym_noreturn] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym___declspec] = ACTIONS(2368), + [anon_sym___cdecl] = ACTIONS(2368), + [anon_sym___clrcall] = ACTIONS(2368), + [anon_sym___stdcall] = ACTIONS(2368), + [anon_sym___fastcall] = ACTIONS(2368), + [anon_sym___thiscall] = ACTIONS(2368), + [anon_sym___vectorcall] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_signed] = ACTIONS(2368), + [anon_sym_unsigned] = ACTIONS(2368), + [anon_sym_long] = ACTIONS(2368), + [anon_sym_short] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_ATautoreleasepool] = ACTIONS(2370), + [anon_sym_auto] = ACTIONS(2368), + [anon_sym_register] = ACTIONS(2368), + [anon_sym_inline] = ACTIONS(2368), + [anon_sym___inline] = ACTIONS(2368), + [anon_sym___inline__] = ACTIONS(2368), + [anon_sym___forceinline] = ACTIONS(2368), + [anon_sym_thread_local] = ACTIONS(2368), + [anon_sym___thread] = ACTIONS(2368), + [anon_sym_CG_EXTERN] = ACTIONS(2368), + [anon_sym_CG_INLINE] = ACTIONS(2368), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2368), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2368), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2368), + [anon_sym_IBOutlet] = ACTIONS(2368), + [anon_sym_IBInspectable] = ACTIONS(2368), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2368), + [anon_sym_NS_INLINE] = ACTIONS(2368), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2368), + [anon_sym_OBJC_EXPORT] = ACTIONS(2368), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2368), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_constexpr] = ACTIONS(2368), + [anon_sym_volatile] = ACTIONS(2368), + [anon_sym_restrict] = ACTIONS(2368), + [anon_sym___restrict__] = ACTIONS(2368), + [anon_sym__Atomic] = ACTIONS(2368), + [anon_sym__Noreturn] = ACTIONS(2368), + [anon_sym__Nonnull] = ACTIONS(2368), + [anon_sym_nullable] = ACTIONS(2368), + [anon_sym__Complex] = ACTIONS(2368), + [anon_sym__Nullable] = ACTIONS(2368), + [anon_sym__Nullable_result] = ACTIONS(2368), + [anon_sym__Null_unspecified] = ACTIONS(2368), + [anon_sym___autoreleasing] = ACTIONS(2368), + [anon_sym___block] = ACTIONS(2368), + [anon_sym___bridge] = ACTIONS(2368), + [anon_sym___bridge_retained] = ACTIONS(2368), + [anon_sym___bridge_transfer] = ACTIONS(2368), + [anon_sym___complex] = ACTIONS(2368), + [anon_sym___const] = ACTIONS(2368), + [anon_sym___imag] = ACTIONS(2368), + [anon_sym___kindof] = ACTIONS(2368), + [anon_sym___nonnull] = ACTIONS(2368), + [anon_sym___nullable] = ACTIONS(2368), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2368), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2368), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2368), + [anon_sym___real] = ACTIONS(2368), + [anon_sym___strong] = ACTIONS(2368), + [anon_sym___unsafe_unretained] = ACTIONS(2368), + [anon_sym___unused] = ACTIONS(2368), + [anon_sym___weak] = ACTIONS(2368), + [anon_sym_alignas] = ACTIONS(2368), + [anon_sym__Alignas] = ACTIONS(2368), + [sym_primitive_type] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [anon_sym_struct] = ACTIONS(2368), + [anon_sym_union] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_in] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_goto] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_sizeof] = ACTIONS(2368), + [anon_sym___alignof__] = ACTIONS(2368), + [anon_sym___alignof] = ACTIONS(2368), + [anon_sym__alignof] = ACTIONS(2368), + [anon_sym_alignof] = ACTIONS(2368), + [anon_sym__Alignof] = ACTIONS(2368), + [anon_sym_offsetof] = ACTIONS(2368), + [anon_sym__Generic] = ACTIONS(2368), + [anon_sym_asm] = ACTIONS(2368), + [anon_sym___asm__] = ACTIONS(2368), + [anon_sym___asm] = ACTIONS(2368), + [sym_number_literal] = ACTIONS(2370), + [anon_sym_L_SQUOTE] = ACTIONS(2370), + [anon_sym_u_SQUOTE] = ACTIONS(2370), + [anon_sym_U_SQUOTE] = ACTIONS(2370), + [anon_sym_u8_SQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_L_DQUOTE] = ACTIONS(2370), + [anon_sym_u_DQUOTE] = ACTIONS(2370), + [anon_sym_U_DQUOTE] = ACTIONS(2370), + [anon_sym_u8_DQUOTE] = ACTIONS(2370), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [anon_sym_NULL] = ACTIONS(2368), + [anon_sym_nullptr] = ACTIONS(2368), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2368), + [anon_sym___typeof] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_ATimport] = ACTIONS(2370), + [aux_sym_preproc_undef_token1] = ACTIONS(2368), + [anon_sym_POUND] = ACTIONS(2368), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2368), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2368), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2368), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2368), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2368), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2368), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2368), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2368), + [anon_sym_NS_AVAILABLE] = ACTIONS(2368), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2368), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_API_AVAILABLE] = ACTIONS(2368), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_API_DEPRECATED] = ACTIONS(2368), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2368), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2368), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2368), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2368), + [anon_sym___deprecated_msg] = ACTIONS(2368), + [anon_sym___deprecated_enum_msg] = ACTIONS(2368), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2368), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2368), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2368), + [anon_sym_ATprotocol] = ACTIONS(2370), + [anon_sym_ATinterface] = ACTIONS(2370), + [anon_sym_ATimplementation] = ACTIONS(2370), + [anon_sym_ATcompatibility_alias] = ACTIONS(2370), + [anon_sym_ATcatch] = ACTIONS(2370), + [anon_sym___catch] = ACTIONS(2368), + [anon_sym_ATfinally] = ACTIONS(2370), + [anon_sym___finally] = ACTIONS(2368), + [anon_sym_ATselector] = ACTIONS(2370), + [anon_sym_ATavailable] = ACTIONS(2370), + [anon_sym___builtin_available] = ACTIONS(2368), + [anon_sym_va_arg] = ACTIONS(2368), + [anon_sym_ATencode] = ACTIONS(2370), + [anon_sym_BOOL] = ACTIONS(2368), + [anon_sym_IMP] = ACTIONS(2368), + [anon_sym_SEL] = ACTIONS(2368), + [anon_sym_Class] = ACTIONS(2368), + [anon_sym_id] = ACTIONS(2368), + }, + [789] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [790] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [791] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [792] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [793] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [794] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [795] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [796] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [797] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [798] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [799] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [800] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [801] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [802] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [803] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [804] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [805] = { + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [806] = { + [sym_identifier] = ACTIONS(2346), + [aux_sym_preproc_include_token1] = ACTIONS(2346), + [aux_sym_preproc_include_token2] = ACTIONS(2346), + [aux_sym_preproc_def_token1] = ACTIONS(2346), + [aux_sym_preproc_if_token1] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2346), + [sym_preproc_directive] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2346), + [anon_sym_PLUS] = ACTIONS(2346), + [anon_sym_STAR] = ACTIONS(2348), + [anon_sym_CARET] = ACTIONS(2348), + [anon_sym_AMP] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym___extension__] = ACTIONS(2346), + [anon_sym_typedef] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym___attribute__] = ACTIONS(2346), + [anon_sym___attribute] = ACTIONS(2346), + [anon_sym_noreturn] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym___declspec] = ACTIONS(2346), + [anon_sym___cdecl] = ACTIONS(2346), + [anon_sym___clrcall] = ACTIONS(2346), + [anon_sym___stdcall] = ACTIONS(2346), + [anon_sym___fastcall] = ACTIONS(2346), + [anon_sym___thiscall] = ACTIONS(2346), + [anon_sym___vectorcall] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_signed] = ACTIONS(2346), + [anon_sym_unsigned] = ACTIONS(2346), + [anon_sym_long] = ACTIONS(2346), + [anon_sym_short] = ACTIONS(2346), + [anon_sym_static] = ACTIONS(2346), + [anon_sym_ATautoreleasepool] = ACTIONS(2348), + [anon_sym_auto] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2346), + [anon_sym_inline] = ACTIONS(2346), + [anon_sym___inline] = ACTIONS(2346), + [anon_sym___inline__] = ACTIONS(2346), + [anon_sym___forceinline] = ACTIONS(2346), + [anon_sym_thread_local] = ACTIONS(2346), + [anon_sym___thread] = ACTIONS(2346), + [anon_sym_CG_EXTERN] = ACTIONS(2346), + [anon_sym_CG_INLINE] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2346), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2346), + [anon_sym_IBOutlet] = ACTIONS(2346), + [anon_sym_IBInspectable] = ACTIONS(2346), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2346), + [anon_sym_NS_INLINE] = ACTIONS(2346), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2346), + [anon_sym_OBJC_EXPORT] = ACTIONS(2346), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_constexpr] = ACTIONS(2346), + [anon_sym_volatile] = ACTIONS(2346), + [anon_sym_restrict] = ACTIONS(2346), + [anon_sym___restrict__] = ACTIONS(2346), + [anon_sym__Atomic] = ACTIONS(2346), + [anon_sym__Noreturn] = ACTIONS(2346), + [anon_sym__Nonnull] = ACTIONS(2346), + [anon_sym_nullable] = ACTIONS(2346), + [anon_sym__Complex] = ACTIONS(2346), + [anon_sym__Nullable] = ACTIONS(2346), + [anon_sym__Nullable_result] = ACTIONS(2346), + [anon_sym__Null_unspecified] = ACTIONS(2346), + [anon_sym___autoreleasing] = ACTIONS(2346), + [anon_sym___block] = ACTIONS(2346), + [anon_sym___bridge] = ACTIONS(2346), + [anon_sym___bridge_retained] = ACTIONS(2346), + [anon_sym___bridge_transfer] = ACTIONS(2346), + [anon_sym___complex] = ACTIONS(2346), + [anon_sym___const] = ACTIONS(2346), + [anon_sym___imag] = ACTIONS(2346), + [anon_sym___kindof] = ACTIONS(2346), + [anon_sym___nonnull] = ACTIONS(2346), + [anon_sym___nullable] = ACTIONS(2346), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2346), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2346), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2346), + [anon_sym___real] = ACTIONS(2346), + [anon_sym___strong] = ACTIONS(2346), + [anon_sym___unsafe_unretained] = ACTIONS(2346), + [anon_sym___unused] = ACTIONS(2346), + [anon_sym___weak] = ACTIONS(2346), + [anon_sym_alignas] = ACTIONS(2346), + [anon_sym__Alignas] = ACTIONS(2346), + [sym_primitive_type] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_switch] = ACTIONS(2346), + [anon_sym_case] = ACTIONS(2346), + [anon_sym_default] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_do] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_goto] = ACTIONS(2346), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2346), + [anon_sym__Generic] = ACTIONS(2346), + [anon_sym_asm] = ACTIONS(2346), + [anon_sym___asm__] = ACTIONS(2346), + [anon_sym___asm] = ACTIONS(2346), + [sym_number_literal] = ACTIONS(2348), + [anon_sym_L_SQUOTE] = ACTIONS(2348), + [anon_sym_u_SQUOTE] = ACTIONS(2348), + [anon_sym_U_SQUOTE] = ACTIONS(2348), + [anon_sym_u8_SQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_L_DQUOTE] = ACTIONS(2348), + [anon_sym_u_DQUOTE] = ACTIONS(2348), + [anon_sym_U_DQUOTE] = ACTIONS(2348), + [anon_sym_u8_DQUOTE] = ACTIONS(2348), + [sym_true] = ACTIONS(2346), + [sym_false] = ACTIONS(2346), + [anon_sym_NULL] = ACTIONS(2346), + [anon_sym_nullptr] = ACTIONS(2346), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2346), + [anon_sym___typeof] = ACTIONS(2346), + [anon_sym_typeof] = ACTIONS(2346), + [anon_sym_ATimport] = ACTIONS(2348), + [aux_sym_preproc_undef_token1] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(2346), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2346), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2346), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2346), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2346), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE] = ACTIONS(2346), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_API_AVAILABLE] = ACTIONS(2346), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_API_DEPRECATED] = ACTIONS(2346), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2346), + [anon_sym___deprecated_msg] = ACTIONS(2346), + [anon_sym___deprecated_enum_msg] = ACTIONS(2346), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2346), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2346), + [anon_sym_ATprotocol] = ACTIONS(2348), + [anon_sym_ATinterface] = ACTIONS(2348), + [anon_sym_ATimplementation] = ACTIONS(2348), + [anon_sym_ATcompatibility_alias] = ACTIONS(2348), + [anon_sym_ATtry] = ACTIONS(2348), + [anon_sym___try] = ACTIONS(2346), + [anon_sym_ATthrow] = ACTIONS(2348), + [anon_sym_ATselector] = ACTIONS(2348), + [anon_sym_ATavailable] = ACTIONS(2348), + [anon_sym___builtin_available] = ACTIONS(2346), + [anon_sym_va_arg] = ACTIONS(2346), + [anon_sym_ATencode] = ACTIONS(2348), + [anon_sym_ATsynchronized] = ACTIONS(2348), + [anon_sym_BOOL] = ACTIONS(2346), + [anon_sym_IMP] = ACTIONS(2346), + [anon_sym_SEL] = ACTIONS(2346), + [anon_sym_Class] = ACTIONS(2346), + [anon_sym_id] = ACTIONS(2346), + }, + [807] = { + [sym_identifier] = ACTIONS(2482), + [aux_sym_preproc_include_token1] = ACTIONS(2482), + [aux_sym_preproc_include_token2] = ACTIONS(2482), + [aux_sym_preproc_def_token1] = ACTIONS(2482), + [aux_sym_preproc_if_token1] = ACTIONS(2482), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2482), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2482), + [sym_preproc_directive] = ACTIONS(2482), + [anon_sym_LPAREN2] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2484), + [anon_sym_TILDE] = ACTIONS(2484), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_STAR] = ACTIONS(2484), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym___extension__] = ACTIONS(2482), + [anon_sym_typedef] = ACTIONS(2482), + [anon_sym_extern] = ACTIONS(2482), + [anon_sym___attribute__] = ACTIONS(2482), + [anon_sym___attribute] = ACTIONS(2482), + [anon_sym_noreturn] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2484), + [anon_sym___declspec] = ACTIONS(2482), + [anon_sym___cdecl] = ACTIONS(2482), + [anon_sym___clrcall] = ACTIONS(2482), + [anon_sym___stdcall] = ACTIONS(2482), + [anon_sym___fastcall] = ACTIONS(2482), + [anon_sym___thiscall] = ACTIONS(2482), + [anon_sym___vectorcall] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_signed] = ACTIONS(2482), + [anon_sym_unsigned] = ACTIONS(2482), + [anon_sym_long] = ACTIONS(2482), + [anon_sym_short] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_ATautoreleasepool] = ACTIONS(2484), + [anon_sym_auto] = ACTIONS(2482), + [anon_sym_register] = ACTIONS(2482), + [anon_sym_inline] = ACTIONS(2482), + [anon_sym___inline] = ACTIONS(2482), + [anon_sym___inline__] = ACTIONS(2482), + [anon_sym___forceinline] = ACTIONS(2482), + [anon_sym_thread_local] = ACTIONS(2482), + [anon_sym___thread] = ACTIONS(2482), + [anon_sym_CG_EXTERN] = ACTIONS(2482), + [anon_sym_CG_INLINE] = ACTIONS(2482), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2482), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2482), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2482), + [anon_sym_IBOutlet] = ACTIONS(2482), + [anon_sym_IBInspectable] = ACTIONS(2482), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2482), + [anon_sym_NS_INLINE] = ACTIONS(2482), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2482), + [anon_sym_OBJC_EXPORT] = ACTIONS(2482), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2482), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2482), + [anon_sym_const] = ACTIONS(2482), + [anon_sym_constexpr] = ACTIONS(2482), + [anon_sym_volatile] = ACTIONS(2482), + [anon_sym_restrict] = ACTIONS(2482), + [anon_sym___restrict__] = ACTIONS(2482), + [anon_sym__Atomic] = ACTIONS(2482), + [anon_sym__Noreturn] = ACTIONS(2482), + [anon_sym__Nonnull] = ACTIONS(2482), + [anon_sym_nullable] = ACTIONS(2482), + [anon_sym__Complex] = ACTIONS(2482), + [anon_sym__Nullable] = ACTIONS(2482), + [anon_sym__Nullable_result] = ACTIONS(2482), + [anon_sym__Null_unspecified] = ACTIONS(2482), + [anon_sym___autoreleasing] = ACTIONS(2482), + [anon_sym___block] = ACTIONS(2482), + [anon_sym___bridge] = ACTIONS(2482), + [anon_sym___bridge_retained] = ACTIONS(2482), + [anon_sym___bridge_transfer] = ACTIONS(2482), + [anon_sym___complex] = ACTIONS(2482), + [anon_sym___const] = ACTIONS(2482), + [anon_sym___imag] = ACTIONS(2482), + [anon_sym___kindof] = ACTIONS(2482), + [anon_sym___nonnull] = ACTIONS(2482), + [anon_sym___nullable] = ACTIONS(2482), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2482), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2482), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2482), + [anon_sym___real] = ACTIONS(2482), + [anon_sym___strong] = ACTIONS(2482), + [anon_sym___unsafe_unretained] = ACTIONS(2482), + [anon_sym___unused] = ACTIONS(2482), + [anon_sym___weak] = ACTIONS(2482), + [anon_sym_alignas] = ACTIONS(2482), + [anon_sym__Alignas] = ACTIONS(2482), + [sym_primitive_type] = ACTIONS(2482), + [anon_sym_enum] = ACTIONS(2482), + [anon_sym_struct] = ACTIONS(2482), + [anon_sym_union] = ACTIONS(2482), + [anon_sym_if] = ACTIONS(2482), + [anon_sym_else] = ACTIONS(2482), + [anon_sym_switch] = ACTIONS(2482), + [anon_sym_case] = ACTIONS(2482), + [anon_sym_default] = ACTIONS(2482), + [anon_sym_while] = ACTIONS(2482), + [anon_sym_do] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2482), + [anon_sym_continue] = ACTIONS(2482), + [anon_sym_goto] = ACTIONS(2482), + [anon_sym_DASH_DASH] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(2484), + [anon_sym_sizeof] = ACTIONS(2482), + [anon_sym___alignof__] = ACTIONS(2482), + [anon_sym___alignof] = ACTIONS(2482), + [anon_sym__alignof] = ACTIONS(2482), + [anon_sym_alignof] = ACTIONS(2482), + [anon_sym__Alignof] = ACTIONS(2482), + [anon_sym_offsetof] = ACTIONS(2482), + [anon_sym__Generic] = ACTIONS(2482), + [anon_sym_asm] = ACTIONS(2482), + [anon_sym___asm__] = ACTIONS(2482), + [anon_sym___asm] = ACTIONS(2482), + [sym_number_literal] = ACTIONS(2484), + [anon_sym_L_SQUOTE] = ACTIONS(2484), + [anon_sym_u_SQUOTE] = ACTIONS(2484), + [anon_sym_U_SQUOTE] = ACTIONS(2484), + [anon_sym_u8_SQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [anon_sym_AT] = ACTIONS(2482), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_L_DQUOTE] = ACTIONS(2484), + [anon_sym_u_DQUOTE] = ACTIONS(2484), + [anon_sym_U_DQUOTE] = ACTIONS(2484), + [anon_sym_u8_DQUOTE] = ACTIONS(2484), + [sym_true] = ACTIONS(2482), + [sym_false] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_nullptr] = ACTIONS(2482), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2482), + [anon_sym___typeof] = ACTIONS(2482), + [anon_sym_typeof] = ACTIONS(2482), + [anon_sym_ATimport] = ACTIONS(2484), + [aux_sym_preproc_undef_token1] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2482), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2482), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2482), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2482), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2482), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2482), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2482), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2482), + [anon_sym_NS_AVAILABLE] = ACTIONS(2482), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2482), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_API_AVAILABLE] = ACTIONS(2482), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_API_DEPRECATED] = ACTIONS(2482), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2482), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2482), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2482), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2482), + [anon_sym___deprecated_msg] = ACTIONS(2482), + [anon_sym___deprecated_enum_msg] = ACTIONS(2482), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2482), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2482), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2482), + [anon_sym_ATprotocol] = ACTIONS(2484), + [anon_sym_ATinterface] = ACTIONS(2484), + [anon_sym_ATimplementation] = ACTIONS(2484), + [anon_sym_ATcompatibility_alias] = ACTIONS(2484), + [anon_sym_ATtry] = ACTIONS(2484), + [anon_sym___try] = ACTIONS(2482), + [anon_sym_ATthrow] = ACTIONS(2484), + [anon_sym_ATselector] = ACTIONS(2484), + [anon_sym_ATavailable] = ACTIONS(2484), + [anon_sym___builtin_available] = ACTIONS(2482), + [anon_sym_va_arg] = ACTIONS(2482), + [anon_sym_ATencode] = ACTIONS(2484), + [anon_sym_ATsynchronized] = ACTIONS(2484), + [anon_sym_BOOL] = ACTIONS(2482), + [anon_sym_IMP] = ACTIONS(2482), + [anon_sym_SEL] = ACTIONS(2482), + [anon_sym_Class] = ACTIONS(2482), + [anon_sym_id] = ACTIONS(2482), + }, + [808] = { + [sym_identifier] = ACTIONS(2486), + [aux_sym_preproc_include_token1] = ACTIONS(2486), + [aux_sym_preproc_include_token2] = ACTIONS(2486), + [aux_sym_preproc_def_token1] = ACTIONS(2486), + [aux_sym_preproc_if_token1] = ACTIONS(2486), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2486), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2486), + [sym_preproc_directive] = ACTIONS(2486), + [anon_sym_LPAREN2] = ACTIONS(2488), + [anon_sym_BANG] = ACTIONS(2488), + [anon_sym_TILDE] = ACTIONS(2488), + [anon_sym_DASH] = ACTIONS(2486), + [anon_sym_PLUS] = ACTIONS(2486), + [anon_sym_STAR] = ACTIONS(2488), + [anon_sym_CARET] = ACTIONS(2488), + [anon_sym_AMP] = ACTIONS(2488), + [anon_sym_SEMI] = ACTIONS(2488), + [anon_sym___extension__] = ACTIONS(2486), + [anon_sym_typedef] = ACTIONS(2486), + [anon_sym_extern] = ACTIONS(2486), + [anon_sym___attribute__] = ACTIONS(2486), + [anon_sym___attribute] = ACTIONS(2486), + [anon_sym_noreturn] = ACTIONS(2486), + [anon_sym_LBRACK] = ACTIONS(2488), + [anon_sym___declspec] = ACTIONS(2486), + [anon_sym___cdecl] = ACTIONS(2486), + [anon_sym___clrcall] = ACTIONS(2486), + [anon_sym___stdcall] = ACTIONS(2486), + [anon_sym___fastcall] = ACTIONS(2486), + [anon_sym___thiscall] = ACTIONS(2486), + [anon_sym___vectorcall] = ACTIONS(2486), + [anon_sym_LBRACE] = ACTIONS(2488), + [anon_sym_RBRACE] = ACTIONS(2488), + [anon_sym_signed] = ACTIONS(2486), + [anon_sym_unsigned] = ACTIONS(2486), + [anon_sym_long] = ACTIONS(2486), + [anon_sym_short] = ACTIONS(2486), + [anon_sym_static] = ACTIONS(2486), + [anon_sym_ATautoreleasepool] = ACTIONS(2488), + [anon_sym_auto] = ACTIONS(2486), + [anon_sym_register] = ACTIONS(2486), + [anon_sym_inline] = ACTIONS(2486), + [anon_sym___inline] = ACTIONS(2486), + [anon_sym___inline__] = ACTIONS(2486), + [anon_sym___forceinline] = ACTIONS(2486), + [anon_sym_thread_local] = ACTIONS(2486), + [anon_sym___thread] = ACTIONS(2486), + [anon_sym_CG_EXTERN] = ACTIONS(2486), + [anon_sym_CG_INLINE] = ACTIONS(2486), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2486), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2486), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2486), + [anon_sym_IBOutlet] = ACTIONS(2486), + [anon_sym_IBInspectable] = ACTIONS(2486), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2486), + [anon_sym_NS_INLINE] = ACTIONS(2486), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2486), + [anon_sym_OBJC_EXPORT] = ACTIONS(2486), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2486), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2486), + [anon_sym_const] = ACTIONS(2486), + [anon_sym_constexpr] = ACTIONS(2486), + [anon_sym_volatile] = ACTIONS(2486), + [anon_sym_restrict] = ACTIONS(2486), + [anon_sym___restrict__] = ACTIONS(2486), + [anon_sym__Atomic] = ACTIONS(2486), + [anon_sym__Noreturn] = ACTIONS(2486), + [anon_sym__Nonnull] = ACTIONS(2486), + [anon_sym_nullable] = ACTIONS(2486), + [anon_sym__Complex] = ACTIONS(2486), + [anon_sym__Nullable] = ACTIONS(2486), + [anon_sym__Nullable_result] = ACTIONS(2486), + [anon_sym__Null_unspecified] = ACTIONS(2486), + [anon_sym___autoreleasing] = ACTIONS(2486), + [anon_sym___block] = ACTIONS(2486), + [anon_sym___bridge] = ACTIONS(2486), + [anon_sym___bridge_retained] = ACTIONS(2486), + [anon_sym___bridge_transfer] = ACTIONS(2486), + [anon_sym___complex] = ACTIONS(2486), + [anon_sym___const] = ACTIONS(2486), + [anon_sym___imag] = ACTIONS(2486), + [anon_sym___kindof] = ACTIONS(2486), + [anon_sym___nonnull] = ACTIONS(2486), + [anon_sym___nullable] = ACTIONS(2486), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2486), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2486), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2486), + [anon_sym___real] = ACTIONS(2486), + [anon_sym___strong] = ACTIONS(2486), + [anon_sym___unsafe_unretained] = ACTIONS(2486), + [anon_sym___unused] = ACTIONS(2486), + [anon_sym___weak] = ACTIONS(2486), + [anon_sym_alignas] = ACTIONS(2486), + [anon_sym__Alignas] = ACTIONS(2486), + [sym_primitive_type] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2486), + [anon_sym_struct] = ACTIONS(2486), + [anon_sym_union] = ACTIONS(2486), + [anon_sym_if] = ACTIONS(2486), + [anon_sym_else] = ACTIONS(2486), + [anon_sym_switch] = ACTIONS(2486), + [anon_sym_case] = ACTIONS(2486), + [anon_sym_default] = ACTIONS(2486), + [anon_sym_while] = ACTIONS(2486), + [anon_sym_do] = ACTIONS(2486), + [anon_sym_for] = ACTIONS(2486), + [anon_sym_in] = ACTIONS(2486), + [anon_sym_return] = ACTIONS(2486), + [anon_sym_break] = ACTIONS(2486), + [anon_sym_continue] = ACTIONS(2486), + [anon_sym_goto] = ACTIONS(2486), + [anon_sym_DASH_DASH] = ACTIONS(2488), + [anon_sym_PLUS_PLUS] = ACTIONS(2488), + [anon_sym_sizeof] = ACTIONS(2486), + [anon_sym___alignof__] = ACTIONS(2486), + [anon_sym___alignof] = ACTIONS(2486), + [anon_sym__alignof] = ACTIONS(2486), + [anon_sym_alignof] = ACTIONS(2486), + [anon_sym__Alignof] = ACTIONS(2486), + [anon_sym_offsetof] = ACTIONS(2486), + [anon_sym__Generic] = ACTIONS(2486), + [anon_sym_asm] = ACTIONS(2486), + [anon_sym___asm__] = ACTIONS(2486), + [anon_sym___asm] = ACTIONS(2486), + [sym_number_literal] = ACTIONS(2488), + [anon_sym_L_SQUOTE] = ACTIONS(2488), + [anon_sym_u_SQUOTE] = ACTIONS(2488), + [anon_sym_U_SQUOTE] = ACTIONS(2488), + [anon_sym_u8_SQUOTE] = ACTIONS(2488), + [anon_sym_SQUOTE] = ACTIONS(2488), + [anon_sym_AT] = ACTIONS(2486), + [anon_sym_DQUOTE] = ACTIONS(2488), + [anon_sym_L_DQUOTE] = ACTIONS(2488), + [anon_sym_u_DQUOTE] = ACTIONS(2488), + [anon_sym_U_DQUOTE] = ACTIONS(2488), + [anon_sym_u8_DQUOTE] = ACTIONS(2488), + [sym_true] = ACTIONS(2486), + [sym_false] = ACTIONS(2486), + [anon_sym_NULL] = ACTIONS(2486), + [anon_sym_nullptr] = ACTIONS(2486), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2486), + [anon_sym___typeof] = ACTIONS(2486), + [anon_sym_typeof] = ACTIONS(2486), + [anon_sym_ATimport] = ACTIONS(2488), + [aux_sym_preproc_undef_token1] = ACTIONS(2486), + [anon_sym_POUND] = ACTIONS(2486), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2486), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2486), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2486), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2486), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2486), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2486), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2486), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2486), + [anon_sym_NS_AVAILABLE] = ACTIONS(2486), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2486), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_API_AVAILABLE] = ACTIONS(2486), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_API_DEPRECATED] = ACTIONS(2486), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2486), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2486), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2486), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2486), + [anon_sym___deprecated_msg] = ACTIONS(2486), + [anon_sym___deprecated_enum_msg] = ACTIONS(2486), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2486), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2486), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2486), + [anon_sym_ATprotocol] = ACTIONS(2488), + [anon_sym_ATinterface] = ACTIONS(2488), + [anon_sym_ATimplementation] = ACTIONS(2488), + [anon_sym_ATcompatibility_alias] = ACTIONS(2488), + [anon_sym_ATtry] = ACTIONS(2488), + [anon_sym___try] = ACTIONS(2486), + [anon_sym_ATthrow] = ACTIONS(2488), + [anon_sym_ATselector] = ACTIONS(2488), + [anon_sym_ATavailable] = ACTIONS(2488), + [anon_sym___builtin_available] = ACTIONS(2486), + [anon_sym_va_arg] = ACTIONS(2486), + [anon_sym_ATencode] = ACTIONS(2488), + [anon_sym_ATsynchronized] = ACTIONS(2488), + [anon_sym_BOOL] = ACTIONS(2486), + [anon_sym_IMP] = ACTIONS(2486), + [anon_sym_SEL] = ACTIONS(2486), + [anon_sym_Class] = ACTIONS(2486), + [anon_sym_id] = ACTIONS(2486), + }, + [809] = { + [sym_identifier] = ACTIONS(2568), + [aux_sym_preproc_include_token1] = ACTIONS(2568), + [aux_sym_preproc_include_token2] = ACTIONS(2568), + [aux_sym_preproc_def_token1] = ACTIONS(2568), + [aux_sym_preproc_if_token1] = ACTIONS(2568), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2568), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2568), + [sym_preproc_directive] = ACTIONS(2568), + [anon_sym_LPAREN2] = ACTIONS(2570), + [anon_sym_BANG] = ACTIONS(2570), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_CARET] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym___extension__] = ACTIONS(2568), + [anon_sym_typedef] = ACTIONS(2568), + [anon_sym_extern] = ACTIONS(2568), + [anon_sym___attribute__] = ACTIONS(2568), + [anon_sym___attribute] = ACTIONS(2568), + [anon_sym_noreturn] = ACTIONS(2568), + [anon_sym_LBRACK] = ACTIONS(2570), + [anon_sym___declspec] = ACTIONS(2568), + [anon_sym___cdecl] = ACTIONS(2568), + [anon_sym___clrcall] = ACTIONS(2568), + [anon_sym___stdcall] = ACTIONS(2568), + [anon_sym___fastcall] = ACTIONS(2568), + [anon_sym___thiscall] = ACTIONS(2568), + [anon_sym___vectorcall] = ACTIONS(2568), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_RBRACE] = ACTIONS(2570), + [anon_sym_signed] = ACTIONS(2568), + [anon_sym_unsigned] = ACTIONS(2568), + [anon_sym_long] = ACTIONS(2568), + [anon_sym_short] = ACTIONS(2568), + [anon_sym_static] = ACTIONS(2568), + [anon_sym_ATautoreleasepool] = ACTIONS(2570), + [anon_sym_auto] = ACTIONS(2568), + [anon_sym_register] = ACTIONS(2568), + [anon_sym_inline] = ACTIONS(2568), + [anon_sym___inline] = ACTIONS(2568), + [anon_sym___inline__] = ACTIONS(2568), + [anon_sym___forceinline] = ACTIONS(2568), + [anon_sym_thread_local] = ACTIONS(2568), + [anon_sym___thread] = ACTIONS(2568), + [anon_sym_CG_EXTERN] = ACTIONS(2568), + [anon_sym_CG_INLINE] = ACTIONS(2568), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2568), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2568), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2568), + [anon_sym_IBOutlet] = ACTIONS(2568), + [anon_sym_IBInspectable] = ACTIONS(2568), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2568), + [anon_sym_NS_INLINE] = ACTIONS(2568), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2568), + [anon_sym_OBJC_EXPORT] = ACTIONS(2568), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2568), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2568), + [anon_sym_const] = ACTIONS(2568), + [anon_sym_constexpr] = ACTIONS(2568), + [anon_sym_volatile] = ACTIONS(2568), + [anon_sym_restrict] = ACTIONS(2568), + [anon_sym___restrict__] = ACTIONS(2568), + [anon_sym__Atomic] = ACTIONS(2568), + [anon_sym__Noreturn] = ACTIONS(2568), + [anon_sym__Nonnull] = ACTIONS(2568), + [anon_sym_nullable] = ACTIONS(2568), + [anon_sym__Complex] = ACTIONS(2568), + [anon_sym__Nullable] = ACTIONS(2568), + [anon_sym__Nullable_result] = ACTIONS(2568), + [anon_sym__Null_unspecified] = ACTIONS(2568), + [anon_sym___autoreleasing] = ACTIONS(2568), + [anon_sym___block] = ACTIONS(2568), + [anon_sym___bridge] = ACTIONS(2568), + [anon_sym___bridge_retained] = ACTIONS(2568), + [anon_sym___bridge_transfer] = ACTIONS(2568), + [anon_sym___complex] = ACTIONS(2568), + [anon_sym___const] = ACTIONS(2568), + [anon_sym___imag] = ACTIONS(2568), + [anon_sym___kindof] = ACTIONS(2568), + [anon_sym___nonnull] = ACTIONS(2568), + [anon_sym___nullable] = ACTIONS(2568), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2568), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2568), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2568), + [anon_sym___real] = ACTIONS(2568), + [anon_sym___strong] = ACTIONS(2568), + [anon_sym___unsafe_unretained] = ACTIONS(2568), + [anon_sym___unused] = ACTIONS(2568), + [anon_sym___weak] = ACTIONS(2568), + [anon_sym_alignas] = ACTIONS(2568), + [anon_sym__Alignas] = ACTIONS(2568), + [sym_primitive_type] = ACTIONS(2568), + [anon_sym_enum] = ACTIONS(2568), + [anon_sym_struct] = ACTIONS(2568), + [anon_sym_union] = ACTIONS(2568), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_else] = ACTIONS(2568), + [anon_sym_switch] = ACTIONS(2568), + [anon_sym_case] = ACTIONS(2568), + [anon_sym_default] = ACTIONS(2568), + [anon_sym_while] = ACTIONS(2568), + [anon_sym_do] = ACTIONS(2568), + [anon_sym_for] = ACTIONS(2568), + [anon_sym_in] = ACTIONS(2568), + [anon_sym_return] = ACTIONS(2568), + [anon_sym_break] = ACTIONS(2568), + [anon_sym_continue] = ACTIONS(2568), + [anon_sym_goto] = ACTIONS(2568), + [anon_sym_DASH_DASH] = ACTIONS(2570), + [anon_sym_PLUS_PLUS] = ACTIONS(2570), + [anon_sym_sizeof] = ACTIONS(2568), + [anon_sym___alignof__] = ACTIONS(2568), + [anon_sym___alignof] = ACTIONS(2568), + [anon_sym__alignof] = ACTIONS(2568), + [anon_sym_alignof] = ACTIONS(2568), + [anon_sym__Alignof] = ACTIONS(2568), + [anon_sym_offsetof] = ACTIONS(2568), + [anon_sym__Generic] = ACTIONS(2568), + [anon_sym_asm] = ACTIONS(2568), + [anon_sym___asm__] = ACTIONS(2568), + [anon_sym___asm] = ACTIONS(2568), + [sym_number_literal] = ACTIONS(2570), + [anon_sym_L_SQUOTE] = ACTIONS(2570), + [anon_sym_u_SQUOTE] = ACTIONS(2570), + [anon_sym_U_SQUOTE] = ACTIONS(2570), + [anon_sym_u8_SQUOTE] = ACTIONS(2570), + [anon_sym_SQUOTE] = ACTIONS(2570), + [anon_sym_AT] = ACTIONS(2568), + [anon_sym_DQUOTE] = ACTIONS(2570), + [anon_sym_L_DQUOTE] = ACTIONS(2570), + [anon_sym_u_DQUOTE] = ACTIONS(2570), + [anon_sym_U_DQUOTE] = ACTIONS(2570), + [anon_sym_u8_DQUOTE] = ACTIONS(2570), + [sym_true] = ACTIONS(2568), + [sym_false] = ACTIONS(2568), + [anon_sym_NULL] = ACTIONS(2568), + [anon_sym_nullptr] = ACTIONS(2568), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2568), + [anon_sym___typeof] = ACTIONS(2568), + [anon_sym_typeof] = ACTIONS(2568), + [anon_sym_ATimport] = ACTIONS(2570), + [aux_sym_preproc_undef_token1] = ACTIONS(2568), + [anon_sym_POUND] = ACTIONS(2568), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2568), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2568), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2568), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2568), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2568), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2568), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2568), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2568), + [anon_sym_NS_AVAILABLE] = ACTIONS(2568), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2568), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_API_AVAILABLE] = ACTIONS(2568), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_API_DEPRECATED] = ACTIONS(2568), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2568), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2568), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2568), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2568), + [anon_sym___deprecated_msg] = ACTIONS(2568), + [anon_sym___deprecated_enum_msg] = ACTIONS(2568), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2568), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2568), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2568), + [anon_sym_ATprotocol] = ACTIONS(2570), + [anon_sym_ATinterface] = ACTIONS(2570), + [anon_sym_ATimplementation] = ACTIONS(2570), + [anon_sym_ATcompatibility_alias] = ACTIONS(2570), + [anon_sym_ATtry] = ACTIONS(2570), + [anon_sym___try] = ACTIONS(2568), + [anon_sym_ATthrow] = ACTIONS(2570), + [anon_sym_ATselector] = ACTIONS(2570), + [anon_sym_ATavailable] = ACTIONS(2570), + [anon_sym___builtin_available] = ACTIONS(2568), + [anon_sym_va_arg] = ACTIONS(2568), + [anon_sym_ATencode] = ACTIONS(2570), + [anon_sym_ATsynchronized] = ACTIONS(2570), + [anon_sym_BOOL] = ACTIONS(2568), + [anon_sym_IMP] = ACTIONS(2568), + [anon_sym_SEL] = ACTIONS(2568), + [anon_sym_Class] = ACTIONS(2568), + [anon_sym_id] = ACTIONS(2568), + }, + [810] = { + [sym_identifier] = ACTIONS(2364), + [aux_sym_preproc_include_token1] = ACTIONS(2364), + [aux_sym_preproc_include_token2] = ACTIONS(2364), + [aux_sym_preproc_def_token1] = ACTIONS(2364), + [aux_sym_preproc_if_token1] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2364), + [sym_preproc_directive] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_PLUS] = ACTIONS(2364), + [anon_sym_STAR] = ACTIONS(2366), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_AMP] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_typedef] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym___attribute__] = ACTIONS(2364), + [anon_sym___attribute] = ACTIONS(2364), + [anon_sym_noreturn] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym___declspec] = ACTIONS(2364), + [anon_sym___cdecl] = ACTIONS(2364), + [anon_sym___clrcall] = ACTIONS(2364), + [anon_sym___stdcall] = ACTIONS(2364), + [anon_sym___fastcall] = ACTIONS(2364), + [anon_sym___thiscall] = ACTIONS(2364), + [anon_sym___vectorcall] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_signed] = ACTIONS(2364), + [anon_sym_unsigned] = ACTIONS(2364), + [anon_sym_long] = ACTIONS(2364), + [anon_sym_short] = ACTIONS(2364), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_ATautoreleasepool] = ACTIONS(2366), + [anon_sym_auto] = ACTIONS(2364), + [anon_sym_register] = ACTIONS(2364), + [anon_sym_inline] = ACTIONS(2364), + [anon_sym___inline] = ACTIONS(2364), + [anon_sym___inline__] = ACTIONS(2364), + [anon_sym___forceinline] = ACTIONS(2364), + [anon_sym_thread_local] = ACTIONS(2364), + [anon_sym___thread] = ACTIONS(2364), + [anon_sym_CG_EXTERN] = ACTIONS(2364), + [anon_sym_CG_INLINE] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2364), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2364), + [anon_sym_IBOutlet] = ACTIONS(2364), + [anon_sym_IBInspectable] = ACTIONS(2364), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2364), + [anon_sym_NS_INLINE] = ACTIONS(2364), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2364), + [anon_sym_OBJC_EXPORT] = ACTIONS(2364), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [anon_sym_constexpr] = ACTIONS(2364), + [anon_sym_volatile] = ACTIONS(2364), + [anon_sym_restrict] = ACTIONS(2364), + [anon_sym___restrict__] = ACTIONS(2364), + [anon_sym__Atomic] = ACTIONS(2364), + [anon_sym__Noreturn] = ACTIONS(2364), + [anon_sym__Nonnull] = ACTIONS(2364), + [anon_sym_nullable] = ACTIONS(2364), + [anon_sym__Complex] = ACTIONS(2364), + [anon_sym__Nullable] = ACTIONS(2364), + [anon_sym__Nullable_result] = ACTIONS(2364), + [anon_sym__Null_unspecified] = ACTIONS(2364), + [anon_sym___autoreleasing] = ACTIONS(2364), + [anon_sym___block] = ACTIONS(2364), + [anon_sym___bridge] = ACTIONS(2364), + [anon_sym___bridge_retained] = ACTIONS(2364), + [anon_sym___bridge_transfer] = ACTIONS(2364), + [anon_sym___complex] = ACTIONS(2364), + [anon_sym___const] = ACTIONS(2364), + [anon_sym___imag] = ACTIONS(2364), + [anon_sym___kindof] = ACTIONS(2364), + [anon_sym___nonnull] = ACTIONS(2364), + [anon_sym___nullable] = ACTIONS(2364), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2364), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2364), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2364), + [anon_sym___real] = ACTIONS(2364), + [anon_sym___strong] = ACTIONS(2364), + [anon_sym___unsafe_unretained] = ACTIONS(2364), + [anon_sym___unused] = ACTIONS(2364), + [anon_sym___weak] = ACTIONS(2364), + [anon_sym_alignas] = ACTIONS(2364), + [anon_sym__Alignas] = ACTIONS(2364), + [sym_primitive_type] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(2364), + [anon_sym_union] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_switch] = ACTIONS(2364), + [anon_sym_case] = ACTIONS(2364), + [anon_sym_default] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_do] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_in] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_goto] = ACTIONS(2364), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_sizeof] = ACTIONS(2364), + [anon_sym___alignof__] = ACTIONS(2364), + [anon_sym___alignof] = ACTIONS(2364), + [anon_sym__alignof] = ACTIONS(2364), + [anon_sym_alignof] = ACTIONS(2364), + [anon_sym__Alignof] = ACTIONS(2364), + [anon_sym_offsetof] = ACTIONS(2364), + [anon_sym__Generic] = ACTIONS(2364), + [anon_sym_asm] = ACTIONS(2364), + [anon_sym___asm__] = ACTIONS(2364), + [anon_sym___asm] = ACTIONS(2364), + [sym_number_literal] = ACTIONS(2366), + [anon_sym_L_SQUOTE] = ACTIONS(2366), + [anon_sym_u_SQUOTE] = ACTIONS(2366), + [anon_sym_U_SQUOTE] = ACTIONS(2366), + [anon_sym_u8_SQUOTE] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2366), + [anon_sym_AT] = ACTIONS(2364), + [anon_sym_DQUOTE] = ACTIONS(2366), + [anon_sym_L_DQUOTE] = ACTIONS(2366), + [anon_sym_u_DQUOTE] = ACTIONS(2366), + [anon_sym_U_DQUOTE] = ACTIONS(2366), + [anon_sym_u8_DQUOTE] = ACTIONS(2366), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2364), + [anon_sym___typeof] = ACTIONS(2364), + [anon_sym_typeof] = ACTIONS(2364), + [anon_sym_ATimport] = ACTIONS(2366), + [aux_sym_preproc_undef_token1] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(2364), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2364), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2364), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2364), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2364), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE] = ACTIONS(2364), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_API_AVAILABLE] = ACTIONS(2364), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_API_DEPRECATED] = ACTIONS(2364), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2364), + [anon_sym___deprecated_msg] = ACTIONS(2364), + [anon_sym___deprecated_enum_msg] = ACTIONS(2364), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2364), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2364), + [anon_sym_ATprotocol] = ACTIONS(2366), + [anon_sym_ATinterface] = ACTIONS(2366), + [anon_sym_ATimplementation] = ACTIONS(2366), + [anon_sym_ATcompatibility_alias] = ACTIONS(2366), + [anon_sym_ATtry] = ACTIONS(2366), + [anon_sym___try] = ACTIONS(2364), + [anon_sym_ATthrow] = ACTIONS(2366), + [anon_sym_ATselector] = ACTIONS(2366), + [anon_sym_ATavailable] = ACTIONS(2366), + [anon_sym___builtin_available] = ACTIONS(2364), + [anon_sym_va_arg] = ACTIONS(2364), + [anon_sym_ATencode] = ACTIONS(2366), + [anon_sym_ATsynchronized] = ACTIONS(2366), + [anon_sym_BOOL] = ACTIONS(2364), + [anon_sym_IMP] = ACTIONS(2364), + [anon_sym_SEL] = ACTIONS(2364), + [anon_sym_Class] = ACTIONS(2364), + [anon_sym_id] = ACTIONS(2364), + }, + [811] = { + [sym_identifier] = ACTIONS(2520), + [aux_sym_preproc_include_token1] = ACTIONS(2520), + [aux_sym_preproc_include_token2] = ACTIONS(2520), + [aux_sym_preproc_def_token1] = ACTIONS(2520), + [aux_sym_preproc_if_token1] = ACTIONS(2520), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2520), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2520), + [sym_preproc_directive] = ACTIONS(2520), + [anon_sym_LPAREN2] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2522), + [anon_sym_TILDE] = ACTIONS(2522), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_PLUS] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_CARET] = ACTIONS(2522), + [anon_sym_AMP] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym___extension__] = ACTIONS(2520), + [anon_sym_typedef] = ACTIONS(2520), + [anon_sym_extern] = ACTIONS(2520), + [anon_sym___attribute__] = ACTIONS(2520), + [anon_sym___attribute] = ACTIONS(2520), + [anon_sym_noreturn] = ACTIONS(2520), + [anon_sym_LBRACK] = ACTIONS(2522), + [anon_sym___declspec] = ACTIONS(2520), + [anon_sym___cdecl] = ACTIONS(2520), + [anon_sym___clrcall] = ACTIONS(2520), + [anon_sym___stdcall] = ACTIONS(2520), + [anon_sym___fastcall] = ACTIONS(2520), + [anon_sym___thiscall] = ACTIONS(2520), + [anon_sym___vectorcall] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_RBRACE] = ACTIONS(2522), + [anon_sym_signed] = ACTIONS(2520), + [anon_sym_unsigned] = ACTIONS(2520), + [anon_sym_long] = ACTIONS(2520), + [anon_sym_short] = ACTIONS(2520), + [anon_sym_static] = ACTIONS(2520), + [anon_sym_ATautoreleasepool] = ACTIONS(2522), + [anon_sym_auto] = ACTIONS(2520), + [anon_sym_register] = ACTIONS(2520), + [anon_sym_inline] = ACTIONS(2520), + [anon_sym___inline] = ACTIONS(2520), + [anon_sym___inline__] = ACTIONS(2520), + [anon_sym___forceinline] = ACTIONS(2520), + [anon_sym_thread_local] = ACTIONS(2520), + [anon_sym___thread] = ACTIONS(2520), + [anon_sym_CG_EXTERN] = ACTIONS(2520), + [anon_sym_CG_INLINE] = ACTIONS(2520), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2520), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2520), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2520), + [anon_sym_IBOutlet] = ACTIONS(2520), + [anon_sym_IBInspectable] = ACTIONS(2520), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2520), + [anon_sym_NS_INLINE] = ACTIONS(2520), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2520), + [anon_sym_OBJC_EXPORT] = ACTIONS(2520), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2520), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2520), + [anon_sym_const] = ACTIONS(2520), + [anon_sym_constexpr] = ACTIONS(2520), + [anon_sym_volatile] = ACTIONS(2520), + [anon_sym_restrict] = ACTIONS(2520), + [anon_sym___restrict__] = ACTIONS(2520), + [anon_sym__Atomic] = ACTIONS(2520), + [anon_sym__Noreturn] = ACTIONS(2520), + [anon_sym__Nonnull] = ACTIONS(2520), + [anon_sym_nullable] = ACTIONS(2520), + [anon_sym__Complex] = ACTIONS(2520), + [anon_sym__Nullable] = ACTIONS(2520), + [anon_sym__Nullable_result] = ACTIONS(2520), + [anon_sym__Null_unspecified] = ACTIONS(2520), + [anon_sym___autoreleasing] = ACTIONS(2520), + [anon_sym___block] = ACTIONS(2520), + [anon_sym___bridge] = ACTIONS(2520), + [anon_sym___bridge_retained] = ACTIONS(2520), + [anon_sym___bridge_transfer] = ACTIONS(2520), + [anon_sym___complex] = ACTIONS(2520), + [anon_sym___const] = ACTIONS(2520), + [anon_sym___imag] = ACTIONS(2520), + [anon_sym___kindof] = ACTIONS(2520), + [anon_sym___nonnull] = ACTIONS(2520), + [anon_sym___nullable] = ACTIONS(2520), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2520), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2520), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2520), + [anon_sym___real] = ACTIONS(2520), + [anon_sym___strong] = ACTIONS(2520), + [anon_sym___unsafe_unretained] = ACTIONS(2520), + [anon_sym___unused] = ACTIONS(2520), + [anon_sym___weak] = ACTIONS(2520), + [anon_sym_alignas] = ACTIONS(2520), + [anon_sym__Alignas] = ACTIONS(2520), + [sym_primitive_type] = ACTIONS(2520), + [anon_sym_enum] = ACTIONS(2520), + [anon_sym_struct] = ACTIONS(2520), + [anon_sym_union] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2520), + [anon_sym_else] = ACTIONS(2520), + [anon_sym_switch] = ACTIONS(2520), + [anon_sym_case] = ACTIONS(2520), + [anon_sym_default] = ACTIONS(2520), + [anon_sym_while] = ACTIONS(2520), + [anon_sym_do] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2520), + [anon_sym_in] = ACTIONS(2520), + [anon_sym_return] = ACTIONS(2520), + [anon_sym_break] = ACTIONS(2520), + [anon_sym_continue] = ACTIONS(2520), + [anon_sym_goto] = ACTIONS(2520), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_sizeof] = ACTIONS(2520), + [anon_sym___alignof__] = ACTIONS(2520), + [anon_sym___alignof] = ACTIONS(2520), + [anon_sym__alignof] = ACTIONS(2520), + [anon_sym_alignof] = ACTIONS(2520), + [anon_sym__Alignof] = ACTIONS(2520), + [anon_sym_offsetof] = ACTIONS(2520), + [anon_sym__Generic] = ACTIONS(2520), + [anon_sym_asm] = ACTIONS(2520), + [anon_sym___asm__] = ACTIONS(2520), + [anon_sym___asm] = ACTIONS(2520), + [sym_number_literal] = ACTIONS(2522), + [anon_sym_L_SQUOTE] = ACTIONS(2522), + [anon_sym_u_SQUOTE] = ACTIONS(2522), + [anon_sym_U_SQUOTE] = ACTIONS(2522), + [anon_sym_u8_SQUOTE] = ACTIONS(2522), + [anon_sym_SQUOTE] = ACTIONS(2522), + [anon_sym_AT] = ACTIONS(2520), + [anon_sym_DQUOTE] = ACTIONS(2522), + [anon_sym_L_DQUOTE] = ACTIONS(2522), + [anon_sym_u_DQUOTE] = ACTIONS(2522), + [anon_sym_U_DQUOTE] = ACTIONS(2522), + [anon_sym_u8_DQUOTE] = ACTIONS(2522), + [sym_true] = ACTIONS(2520), + [sym_false] = ACTIONS(2520), + [anon_sym_NULL] = ACTIONS(2520), + [anon_sym_nullptr] = ACTIONS(2520), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2520), + [anon_sym___typeof] = ACTIONS(2520), + [anon_sym_typeof] = ACTIONS(2520), + [anon_sym_ATimport] = ACTIONS(2522), + [aux_sym_preproc_undef_token1] = ACTIONS(2520), + [anon_sym_POUND] = ACTIONS(2520), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2520), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2520), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2520), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2520), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2520), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2520), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2520), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2520), + [anon_sym_NS_AVAILABLE] = ACTIONS(2520), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2520), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_API_AVAILABLE] = ACTIONS(2520), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_API_DEPRECATED] = ACTIONS(2520), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2520), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2520), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2520), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2520), + [anon_sym___deprecated_msg] = ACTIONS(2520), + [anon_sym___deprecated_enum_msg] = ACTIONS(2520), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2520), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2520), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2520), + [anon_sym_ATprotocol] = ACTIONS(2522), + [anon_sym_ATinterface] = ACTIONS(2522), + [anon_sym_ATimplementation] = ACTIONS(2522), + [anon_sym_ATcompatibility_alias] = ACTIONS(2522), + [anon_sym_ATtry] = ACTIONS(2522), + [anon_sym___try] = ACTIONS(2520), + [anon_sym_ATthrow] = ACTIONS(2522), + [anon_sym_ATselector] = ACTIONS(2522), + [anon_sym_ATavailable] = ACTIONS(2522), + [anon_sym___builtin_available] = ACTIONS(2520), + [anon_sym_va_arg] = ACTIONS(2520), + [anon_sym_ATencode] = ACTIONS(2522), + [anon_sym_ATsynchronized] = ACTIONS(2522), + [anon_sym_BOOL] = ACTIONS(2520), + [anon_sym_IMP] = ACTIONS(2520), + [anon_sym_SEL] = ACTIONS(2520), + [anon_sym_Class] = ACTIONS(2520), + [anon_sym_id] = ACTIONS(2520), + }, + [812] = { + [sym_identifier] = ACTIONS(2350), + [aux_sym_preproc_include_token1] = ACTIONS(2350), + [aux_sym_preproc_include_token2] = ACTIONS(2350), + [aux_sym_preproc_def_token1] = ACTIONS(2350), + [aux_sym_preproc_if_token1] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2350), + [sym_preproc_directive] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(2352), + [anon_sym_BANG] = ACTIONS(2352), + [anon_sym_TILDE] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2350), + [anon_sym_STAR] = ACTIONS(2352), + [anon_sym_CARET] = ACTIONS(2352), + [anon_sym_AMP] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2352), + [anon_sym___extension__] = ACTIONS(2350), + [anon_sym_typedef] = ACTIONS(2350), + [anon_sym_extern] = ACTIONS(2350), + [anon_sym___attribute__] = ACTIONS(2350), + [anon_sym___attribute] = ACTIONS(2350), + [anon_sym_noreturn] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2352), + [anon_sym___declspec] = ACTIONS(2350), + [anon_sym___cdecl] = ACTIONS(2350), + [anon_sym___clrcall] = ACTIONS(2350), + [anon_sym___stdcall] = ACTIONS(2350), + [anon_sym___fastcall] = ACTIONS(2350), + [anon_sym___thiscall] = ACTIONS(2350), + [anon_sym___vectorcall] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2352), + [anon_sym_RBRACE] = ACTIONS(2352), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(2350), + [anon_sym_ATautoreleasepool] = ACTIONS(2352), + [anon_sym_auto] = ACTIONS(2350), + [anon_sym_register] = ACTIONS(2350), + [anon_sym_inline] = ACTIONS(2350), + [anon_sym___inline] = ACTIONS(2350), + [anon_sym___inline__] = ACTIONS(2350), + [anon_sym___forceinline] = ACTIONS(2350), + [anon_sym_thread_local] = ACTIONS(2350), + [anon_sym___thread] = ACTIONS(2350), + [anon_sym_CG_EXTERN] = ACTIONS(2350), + [anon_sym_CG_INLINE] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2350), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2350), + [anon_sym_IBOutlet] = ACTIONS(2350), + [anon_sym_IBInspectable] = ACTIONS(2350), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2350), + [anon_sym_NS_INLINE] = ACTIONS(2350), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2350), + [anon_sym_OBJC_EXPORT] = ACTIONS(2350), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2350), + [anon_sym_const] = ACTIONS(2350), + [anon_sym_constexpr] = ACTIONS(2350), + [anon_sym_volatile] = ACTIONS(2350), + [anon_sym_restrict] = ACTIONS(2350), + [anon_sym___restrict__] = ACTIONS(2350), + [anon_sym__Atomic] = ACTIONS(2350), + [anon_sym__Noreturn] = ACTIONS(2350), + [anon_sym__Nonnull] = ACTIONS(2350), + [anon_sym_nullable] = ACTIONS(2350), + [anon_sym__Complex] = ACTIONS(2350), + [anon_sym__Nullable] = ACTIONS(2350), + [anon_sym__Nullable_result] = ACTIONS(2350), + [anon_sym__Null_unspecified] = ACTIONS(2350), + [anon_sym___autoreleasing] = ACTIONS(2350), + [anon_sym___block] = ACTIONS(2350), + [anon_sym___bridge] = ACTIONS(2350), + [anon_sym___bridge_retained] = ACTIONS(2350), + [anon_sym___bridge_transfer] = ACTIONS(2350), + [anon_sym___complex] = ACTIONS(2350), + [anon_sym___const] = ACTIONS(2350), + [anon_sym___imag] = ACTIONS(2350), + [anon_sym___kindof] = ACTIONS(2350), + [anon_sym___nonnull] = ACTIONS(2350), + [anon_sym___nullable] = ACTIONS(2350), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2350), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2350), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2350), + [anon_sym___real] = ACTIONS(2350), + [anon_sym___strong] = ACTIONS(2350), + [anon_sym___unsafe_unretained] = ACTIONS(2350), + [anon_sym___unused] = ACTIONS(2350), + [anon_sym___weak] = ACTIONS(2350), + [anon_sym_alignas] = ACTIONS(2350), + [anon_sym__Alignas] = ACTIONS(2350), + [sym_primitive_type] = ACTIONS(2350), + [anon_sym_enum] = ACTIONS(2350), + [anon_sym_struct] = ACTIONS(2350), + [anon_sym_union] = ACTIONS(2350), + [anon_sym_if] = ACTIONS(2350), + [anon_sym_else] = ACTIONS(2350), + [anon_sym_switch] = ACTIONS(2350), + [anon_sym_case] = ACTIONS(2350), + [anon_sym_default] = ACTIONS(2350), + [anon_sym_while] = ACTIONS(2350), + [anon_sym_do] = ACTIONS(2350), + [anon_sym_for] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_return] = ACTIONS(2350), + [anon_sym_break] = ACTIONS(2350), + [anon_sym_continue] = ACTIONS(2350), + [anon_sym_goto] = ACTIONS(2350), + [anon_sym_DASH_DASH] = ACTIONS(2352), + [anon_sym_PLUS_PLUS] = ACTIONS(2352), + [anon_sym_sizeof] = ACTIONS(2350), + [anon_sym___alignof__] = ACTIONS(2350), + [anon_sym___alignof] = ACTIONS(2350), + [anon_sym__alignof] = ACTIONS(2350), + [anon_sym_alignof] = ACTIONS(2350), + [anon_sym__Alignof] = ACTIONS(2350), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_asm] = ACTIONS(2350), + [anon_sym___asm__] = ACTIONS(2350), + [anon_sym___asm] = ACTIONS(2350), + [sym_number_literal] = ACTIONS(2352), + [anon_sym_L_SQUOTE] = ACTIONS(2352), + [anon_sym_u_SQUOTE] = ACTIONS(2352), + [anon_sym_U_SQUOTE] = ACTIONS(2352), + [anon_sym_u8_SQUOTE] = ACTIONS(2352), + [anon_sym_SQUOTE] = ACTIONS(2352), + [anon_sym_AT] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2352), + [anon_sym_L_DQUOTE] = ACTIONS(2352), + [anon_sym_u_DQUOTE] = ACTIONS(2352), + [anon_sym_U_DQUOTE] = ACTIONS(2352), + [anon_sym_u8_DQUOTE] = ACTIONS(2352), + [sym_true] = ACTIONS(2350), + [sym_false] = ACTIONS(2350), + [anon_sym_NULL] = ACTIONS(2350), + [anon_sym_nullptr] = ACTIONS(2350), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2350), + [anon_sym___typeof] = ACTIONS(2350), + [anon_sym_typeof] = ACTIONS(2350), + [anon_sym_ATimport] = ACTIONS(2352), + [aux_sym_preproc_undef_token1] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(2350), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2350), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2350), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2350), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2350), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE] = ACTIONS(2350), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_API_AVAILABLE] = ACTIONS(2350), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_API_DEPRECATED] = ACTIONS(2350), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2350), + [anon_sym___deprecated_msg] = ACTIONS(2350), + [anon_sym___deprecated_enum_msg] = ACTIONS(2350), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2350), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2350), + [anon_sym_ATprotocol] = ACTIONS(2352), + [anon_sym_ATinterface] = ACTIONS(2352), + [anon_sym_ATimplementation] = ACTIONS(2352), + [anon_sym_ATcompatibility_alias] = ACTIONS(2352), + [anon_sym_ATtry] = ACTIONS(2352), + [anon_sym___try] = ACTIONS(2350), + [anon_sym_ATthrow] = ACTIONS(2352), + [anon_sym_ATselector] = ACTIONS(2352), + [anon_sym_ATavailable] = ACTIONS(2352), + [anon_sym___builtin_available] = ACTIONS(2350), + [anon_sym_va_arg] = ACTIONS(2350), + [anon_sym_ATencode] = ACTIONS(2352), + [anon_sym_ATsynchronized] = ACTIONS(2352), + [anon_sym_BOOL] = ACTIONS(2350), + [anon_sym_IMP] = ACTIONS(2350), + [anon_sym_SEL] = ACTIONS(2350), + [anon_sym_Class] = ACTIONS(2350), + [anon_sym_id] = ACTIONS(2350), + }, + [813] = { + [sym_identifier] = ACTIONS(2294), + [aux_sym_preproc_include_token1] = ACTIONS(2294), + [aux_sym_preproc_include_token2] = ACTIONS(2294), + [aux_sym_preproc_def_token1] = ACTIONS(2294), + [aux_sym_preproc_if_token1] = ACTIONS(2294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2294), + [sym_preproc_directive] = ACTIONS(2294), + [anon_sym_LPAREN2] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_STAR] = ACTIONS(2296), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym___extension__] = ACTIONS(2294), + [anon_sym_typedef] = ACTIONS(2294), + [anon_sym_extern] = ACTIONS(2294), + [anon_sym___attribute__] = ACTIONS(2294), + [anon_sym___attribute] = ACTIONS(2294), + [anon_sym_noreturn] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym___declspec] = ACTIONS(2294), + [anon_sym___cdecl] = ACTIONS(2294), + [anon_sym___clrcall] = ACTIONS(2294), + [anon_sym___stdcall] = ACTIONS(2294), + [anon_sym___fastcall] = ACTIONS(2294), + [anon_sym___thiscall] = ACTIONS(2294), + [anon_sym___vectorcall] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_signed] = ACTIONS(2294), + [anon_sym_unsigned] = ACTIONS(2294), + [anon_sym_long] = ACTIONS(2294), + [anon_sym_short] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_ATautoreleasepool] = ACTIONS(2296), + [anon_sym_auto] = ACTIONS(2294), + [anon_sym_register] = ACTIONS(2294), + [anon_sym_inline] = ACTIONS(2294), + [anon_sym___inline] = ACTIONS(2294), + [anon_sym___inline__] = ACTIONS(2294), + [anon_sym___forceinline] = ACTIONS(2294), + [anon_sym_thread_local] = ACTIONS(2294), + [anon_sym___thread] = ACTIONS(2294), + [anon_sym_CG_EXTERN] = ACTIONS(2294), + [anon_sym_CG_INLINE] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2294), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2294), + [anon_sym_IBOutlet] = ACTIONS(2294), + [anon_sym_IBInspectable] = ACTIONS(2294), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2294), + [anon_sym_NS_INLINE] = ACTIONS(2294), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2294), + [anon_sym_OBJC_EXPORT] = ACTIONS(2294), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [anon_sym_constexpr] = ACTIONS(2294), + [anon_sym_volatile] = ACTIONS(2294), + [anon_sym_restrict] = ACTIONS(2294), + [anon_sym___restrict__] = ACTIONS(2294), + [anon_sym__Atomic] = ACTIONS(2294), + [anon_sym__Noreturn] = ACTIONS(2294), + [anon_sym__Nonnull] = ACTIONS(2294), + [anon_sym_nullable] = ACTIONS(2294), + [anon_sym__Complex] = ACTIONS(2294), + [anon_sym__Nullable] = ACTIONS(2294), + [anon_sym__Nullable_result] = ACTIONS(2294), + [anon_sym__Null_unspecified] = ACTIONS(2294), + [anon_sym___autoreleasing] = ACTIONS(2294), + [anon_sym___block] = ACTIONS(2294), + [anon_sym___bridge] = ACTIONS(2294), + [anon_sym___bridge_retained] = ACTIONS(2294), + [anon_sym___bridge_transfer] = ACTIONS(2294), + [anon_sym___complex] = ACTIONS(2294), + [anon_sym___const] = ACTIONS(2294), + [anon_sym___imag] = ACTIONS(2294), + [anon_sym___kindof] = ACTIONS(2294), + [anon_sym___nonnull] = ACTIONS(2294), + [anon_sym___nullable] = ACTIONS(2294), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2294), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2294), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2294), + [anon_sym___real] = ACTIONS(2294), + [anon_sym___strong] = ACTIONS(2294), + [anon_sym___unsafe_unretained] = ACTIONS(2294), + [anon_sym___unused] = ACTIONS(2294), + [anon_sym___weak] = ACTIONS(2294), + [anon_sym_alignas] = ACTIONS(2294), + [anon_sym__Alignas] = ACTIONS(2294), + [sym_primitive_type] = ACTIONS(2294), + [anon_sym_enum] = ACTIONS(2294), + [anon_sym_struct] = ACTIONS(2294), + [anon_sym_union] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_switch] = ACTIONS(2294), + [anon_sym_case] = ACTIONS(2294), + [anon_sym_default] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_goto] = ACTIONS(2294), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_sizeof] = ACTIONS(2294), + [anon_sym___alignof__] = ACTIONS(2294), + [anon_sym___alignof] = ACTIONS(2294), + [anon_sym__alignof] = ACTIONS(2294), + [anon_sym_alignof] = ACTIONS(2294), + [anon_sym__Alignof] = ACTIONS(2294), + [anon_sym_offsetof] = ACTIONS(2294), + [anon_sym__Generic] = ACTIONS(2294), + [anon_sym_asm] = ACTIONS(2294), + [anon_sym___asm__] = ACTIONS(2294), + [anon_sym___asm] = ACTIONS(2294), + [sym_number_literal] = ACTIONS(2296), + [anon_sym_L_SQUOTE] = ACTIONS(2296), + [anon_sym_u_SQUOTE] = ACTIONS(2296), + [anon_sym_U_SQUOTE] = ACTIONS(2296), + [anon_sym_u8_SQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_L_DQUOTE] = ACTIONS(2296), + [anon_sym_u_DQUOTE] = ACTIONS(2296), + [anon_sym_U_DQUOTE] = ACTIONS(2296), + [anon_sym_u8_DQUOTE] = ACTIONS(2296), + [sym_true] = ACTIONS(2294), + [sym_false] = ACTIONS(2294), + [anon_sym_NULL] = ACTIONS(2294), + [anon_sym_nullptr] = ACTIONS(2294), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2294), + [anon_sym___typeof] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(2294), + [anon_sym_ATimport] = ACTIONS(2296), + [aux_sym_preproc_undef_token1] = ACTIONS(2294), + [anon_sym_POUND] = ACTIONS(2294), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2294), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2294), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2294), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2294), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE] = ACTIONS(2294), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_API_AVAILABLE] = ACTIONS(2294), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_API_DEPRECATED] = ACTIONS(2294), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2294), + [anon_sym___deprecated_msg] = ACTIONS(2294), + [anon_sym___deprecated_enum_msg] = ACTIONS(2294), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2294), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2294), + [anon_sym_ATprotocol] = ACTIONS(2296), + [anon_sym_ATinterface] = ACTIONS(2296), + [anon_sym_ATimplementation] = ACTIONS(2296), + [anon_sym_ATcompatibility_alias] = ACTIONS(2296), + [anon_sym_ATtry] = ACTIONS(2296), + [anon_sym___try] = ACTIONS(2294), + [anon_sym_ATthrow] = ACTIONS(2296), + [anon_sym_ATselector] = ACTIONS(2296), + [anon_sym_ATavailable] = ACTIONS(2296), + [anon_sym___builtin_available] = ACTIONS(2294), + [anon_sym_va_arg] = ACTIONS(2294), + [anon_sym_ATencode] = ACTIONS(2296), + [anon_sym_ATsynchronized] = ACTIONS(2296), + [anon_sym_BOOL] = ACTIONS(2294), + [anon_sym_IMP] = ACTIONS(2294), + [anon_sym_SEL] = ACTIONS(2294), + [anon_sym_Class] = ACTIONS(2294), + [anon_sym_id] = ACTIONS(2294), + }, + [814] = { + [sym_identifier] = ACTIONS(2516), + [aux_sym_preproc_include_token1] = ACTIONS(2516), + [aux_sym_preproc_include_token2] = ACTIONS(2516), + [aux_sym_preproc_def_token1] = ACTIONS(2516), + [aux_sym_preproc_if_token1] = ACTIONS(2516), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2516), + [sym_preproc_directive] = ACTIONS(2516), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_BANG] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_PLUS] = ACTIONS(2516), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_CARET] = ACTIONS(2518), + [anon_sym_AMP] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym___extension__] = ACTIONS(2516), + [anon_sym_typedef] = ACTIONS(2516), + [anon_sym_extern] = ACTIONS(2516), + [anon_sym___attribute__] = ACTIONS(2516), + [anon_sym___attribute] = ACTIONS(2516), + [anon_sym_noreturn] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2518), + [anon_sym___declspec] = ACTIONS(2516), + [anon_sym___cdecl] = ACTIONS(2516), + [anon_sym___clrcall] = ACTIONS(2516), + [anon_sym___stdcall] = ACTIONS(2516), + [anon_sym___fastcall] = ACTIONS(2516), + [anon_sym___thiscall] = ACTIONS(2516), + [anon_sym___vectorcall] = ACTIONS(2516), + [anon_sym_LBRACE] = ACTIONS(2518), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_signed] = ACTIONS(2516), + [anon_sym_unsigned] = ACTIONS(2516), + [anon_sym_long] = ACTIONS(2516), + [anon_sym_short] = ACTIONS(2516), + [anon_sym_static] = ACTIONS(2516), + [anon_sym_ATautoreleasepool] = ACTIONS(2518), + [anon_sym_auto] = ACTIONS(2516), + [anon_sym_register] = ACTIONS(2516), + [anon_sym_inline] = ACTIONS(2516), + [anon_sym___inline] = ACTIONS(2516), + [anon_sym___inline__] = ACTIONS(2516), + [anon_sym___forceinline] = ACTIONS(2516), + [anon_sym_thread_local] = ACTIONS(2516), + [anon_sym___thread] = ACTIONS(2516), + [anon_sym_CG_EXTERN] = ACTIONS(2516), + [anon_sym_CG_INLINE] = ACTIONS(2516), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2516), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2516), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2516), + [anon_sym_IBOutlet] = ACTIONS(2516), + [anon_sym_IBInspectable] = ACTIONS(2516), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2516), + [anon_sym_NS_INLINE] = ACTIONS(2516), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2516), + [anon_sym_OBJC_EXPORT] = ACTIONS(2516), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2516), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2516), + [anon_sym_const] = ACTIONS(2516), + [anon_sym_constexpr] = ACTIONS(2516), + [anon_sym_volatile] = ACTIONS(2516), + [anon_sym_restrict] = ACTIONS(2516), + [anon_sym___restrict__] = ACTIONS(2516), + [anon_sym__Atomic] = ACTIONS(2516), + [anon_sym__Noreturn] = ACTIONS(2516), + [anon_sym__Nonnull] = ACTIONS(2516), + [anon_sym_nullable] = ACTIONS(2516), + [anon_sym__Complex] = ACTIONS(2516), + [anon_sym__Nullable] = ACTIONS(2516), + [anon_sym__Nullable_result] = ACTIONS(2516), + [anon_sym__Null_unspecified] = ACTIONS(2516), + [anon_sym___autoreleasing] = ACTIONS(2516), + [anon_sym___block] = ACTIONS(2516), + [anon_sym___bridge] = ACTIONS(2516), + [anon_sym___bridge_retained] = ACTIONS(2516), + [anon_sym___bridge_transfer] = ACTIONS(2516), + [anon_sym___complex] = ACTIONS(2516), + [anon_sym___const] = ACTIONS(2516), + [anon_sym___imag] = ACTIONS(2516), + [anon_sym___kindof] = ACTIONS(2516), + [anon_sym___nonnull] = ACTIONS(2516), + [anon_sym___nullable] = ACTIONS(2516), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2516), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2516), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2516), + [anon_sym___real] = ACTIONS(2516), + [anon_sym___strong] = ACTIONS(2516), + [anon_sym___unsafe_unretained] = ACTIONS(2516), + [anon_sym___unused] = ACTIONS(2516), + [anon_sym___weak] = ACTIONS(2516), + [anon_sym_alignas] = ACTIONS(2516), + [anon_sym__Alignas] = ACTIONS(2516), + [sym_primitive_type] = ACTIONS(2516), + [anon_sym_enum] = ACTIONS(2516), + [anon_sym_struct] = ACTIONS(2516), + [anon_sym_union] = ACTIONS(2516), + [anon_sym_if] = ACTIONS(2516), + [anon_sym_else] = ACTIONS(2516), + [anon_sym_switch] = ACTIONS(2516), + [anon_sym_case] = ACTIONS(2516), + [anon_sym_default] = ACTIONS(2516), + [anon_sym_while] = ACTIONS(2516), + [anon_sym_do] = ACTIONS(2516), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_in] = ACTIONS(2516), + [anon_sym_return] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_goto] = ACTIONS(2516), + [anon_sym_DASH_DASH] = ACTIONS(2518), + [anon_sym_PLUS_PLUS] = ACTIONS(2518), + [anon_sym_sizeof] = ACTIONS(2516), + [anon_sym___alignof__] = ACTIONS(2516), + [anon_sym___alignof] = ACTIONS(2516), + [anon_sym__alignof] = ACTIONS(2516), + [anon_sym_alignof] = ACTIONS(2516), + [anon_sym__Alignof] = ACTIONS(2516), + [anon_sym_offsetof] = ACTIONS(2516), + [anon_sym__Generic] = ACTIONS(2516), + [anon_sym_asm] = ACTIONS(2516), + [anon_sym___asm__] = ACTIONS(2516), + [anon_sym___asm] = ACTIONS(2516), + [sym_number_literal] = ACTIONS(2518), + [anon_sym_L_SQUOTE] = ACTIONS(2518), + [anon_sym_u_SQUOTE] = ACTIONS(2518), + [anon_sym_U_SQUOTE] = ACTIONS(2518), + [anon_sym_u8_SQUOTE] = ACTIONS(2518), + [anon_sym_SQUOTE] = ACTIONS(2518), + [anon_sym_AT] = ACTIONS(2516), + [anon_sym_DQUOTE] = ACTIONS(2518), + [anon_sym_L_DQUOTE] = ACTIONS(2518), + [anon_sym_u_DQUOTE] = ACTIONS(2518), + [anon_sym_U_DQUOTE] = ACTIONS(2518), + [anon_sym_u8_DQUOTE] = ACTIONS(2518), + [sym_true] = ACTIONS(2516), + [sym_false] = ACTIONS(2516), + [anon_sym_NULL] = ACTIONS(2516), + [anon_sym_nullptr] = ACTIONS(2516), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2516), + [anon_sym___typeof] = ACTIONS(2516), + [anon_sym_typeof] = ACTIONS(2516), + [anon_sym_ATimport] = ACTIONS(2518), + [aux_sym_preproc_undef_token1] = ACTIONS(2516), + [anon_sym_POUND] = ACTIONS(2516), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2516), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2516), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2516), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2516), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2516), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2516), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2516), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2516), + [anon_sym_NS_AVAILABLE] = ACTIONS(2516), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2516), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_API_AVAILABLE] = ACTIONS(2516), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_API_DEPRECATED] = ACTIONS(2516), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2516), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2516), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2516), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2516), + [anon_sym___deprecated_msg] = ACTIONS(2516), + [anon_sym___deprecated_enum_msg] = ACTIONS(2516), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2516), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2516), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2516), + [anon_sym_ATprotocol] = ACTIONS(2518), + [anon_sym_ATinterface] = ACTIONS(2518), + [anon_sym_ATimplementation] = ACTIONS(2518), + [anon_sym_ATcompatibility_alias] = ACTIONS(2518), + [anon_sym_ATtry] = ACTIONS(2518), + [anon_sym___try] = ACTIONS(2516), + [anon_sym_ATthrow] = ACTIONS(2518), + [anon_sym_ATselector] = ACTIONS(2518), + [anon_sym_ATavailable] = ACTIONS(2518), + [anon_sym___builtin_available] = ACTIONS(2516), + [anon_sym_va_arg] = ACTIONS(2516), + [anon_sym_ATencode] = ACTIONS(2518), + [anon_sym_ATsynchronized] = ACTIONS(2518), + [anon_sym_BOOL] = ACTIONS(2516), + [anon_sym_IMP] = ACTIONS(2516), + [anon_sym_SEL] = ACTIONS(2516), + [anon_sym_Class] = ACTIONS(2516), + [anon_sym_id] = ACTIONS(2516), + }, + [815] = { + [ts_builtin_sym_end] = ACTIONS(2348), + [sym_identifier] = ACTIONS(2346), + [aux_sym_preproc_include_token1] = ACTIONS(2346), + [aux_sym_preproc_include_token2] = ACTIONS(2346), + [aux_sym_preproc_def_token1] = ACTIONS(2346), + [aux_sym_preproc_if_token1] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2346), + [sym_preproc_directive] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2346), + [anon_sym_PLUS] = ACTIONS(2346), + [anon_sym_STAR] = ACTIONS(2348), + [anon_sym_CARET] = ACTIONS(2348), + [anon_sym_AMP] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym___extension__] = ACTIONS(2346), + [anon_sym_typedef] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym___attribute__] = ACTIONS(2346), + [anon_sym___attribute] = ACTIONS(2346), + [anon_sym_noreturn] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym___declspec] = ACTIONS(2346), + [anon_sym___cdecl] = ACTIONS(2346), + [anon_sym___clrcall] = ACTIONS(2346), + [anon_sym___stdcall] = ACTIONS(2346), + [anon_sym___fastcall] = ACTIONS(2346), + [anon_sym___thiscall] = ACTIONS(2346), + [anon_sym___vectorcall] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_signed] = ACTIONS(2346), + [anon_sym_unsigned] = ACTIONS(2346), + [anon_sym_long] = ACTIONS(2346), + [anon_sym_short] = ACTIONS(2346), + [anon_sym_static] = ACTIONS(2346), + [anon_sym_ATautoreleasepool] = ACTIONS(2348), + [anon_sym_auto] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2346), + [anon_sym_inline] = ACTIONS(2346), + [anon_sym___inline] = ACTIONS(2346), + [anon_sym___inline__] = ACTIONS(2346), + [anon_sym___forceinline] = ACTIONS(2346), + [anon_sym_thread_local] = ACTIONS(2346), + [anon_sym___thread] = ACTIONS(2346), + [anon_sym_CG_EXTERN] = ACTIONS(2346), + [anon_sym_CG_INLINE] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2346), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2346), + [anon_sym_IBOutlet] = ACTIONS(2346), + [anon_sym_IBInspectable] = ACTIONS(2346), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2346), + [anon_sym_NS_INLINE] = ACTIONS(2346), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2346), + [anon_sym_OBJC_EXPORT] = ACTIONS(2346), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_constexpr] = ACTIONS(2346), + [anon_sym_volatile] = ACTIONS(2346), + [anon_sym_restrict] = ACTIONS(2346), + [anon_sym___restrict__] = ACTIONS(2346), + [anon_sym__Atomic] = ACTIONS(2346), + [anon_sym__Noreturn] = ACTIONS(2346), + [anon_sym__Nonnull] = ACTIONS(2346), + [anon_sym_nullable] = ACTIONS(2346), + [anon_sym__Complex] = ACTIONS(2346), + [anon_sym__Nullable] = ACTIONS(2346), + [anon_sym__Nullable_result] = ACTIONS(2346), + [anon_sym__Null_unspecified] = ACTIONS(2346), + [anon_sym___autoreleasing] = ACTIONS(2346), + [anon_sym___block] = ACTIONS(2346), + [anon_sym___bridge] = ACTIONS(2346), + [anon_sym___bridge_retained] = ACTIONS(2346), + [anon_sym___bridge_transfer] = ACTIONS(2346), + [anon_sym___complex] = ACTIONS(2346), + [anon_sym___const] = ACTIONS(2346), + [anon_sym___imag] = ACTIONS(2346), + [anon_sym___kindof] = ACTIONS(2346), + [anon_sym___nonnull] = ACTIONS(2346), + [anon_sym___nullable] = ACTIONS(2346), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2346), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2346), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2346), + [anon_sym___real] = ACTIONS(2346), + [anon_sym___strong] = ACTIONS(2346), + [anon_sym___unsafe_unretained] = ACTIONS(2346), + [anon_sym___unused] = ACTIONS(2346), + [anon_sym___weak] = ACTIONS(2346), + [anon_sym_alignas] = ACTIONS(2346), + [anon_sym__Alignas] = ACTIONS(2346), + [sym_primitive_type] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_switch] = ACTIONS(2346), + [anon_sym_case] = ACTIONS(2346), + [anon_sym_default] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_do] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_goto] = ACTIONS(2346), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2346), + [anon_sym__Generic] = ACTIONS(2346), + [anon_sym_asm] = ACTIONS(2346), + [anon_sym___asm__] = ACTIONS(2346), + [anon_sym___asm] = ACTIONS(2346), + [sym_number_literal] = ACTIONS(2348), + [anon_sym_L_SQUOTE] = ACTIONS(2348), + [anon_sym_u_SQUOTE] = ACTIONS(2348), + [anon_sym_U_SQUOTE] = ACTIONS(2348), + [anon_sym_u8_SQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_L_DQUOTE] = ACTIONS(2348), + [anon_sym_u_DQUOTE] = ACTIONS(2348), + [anon_sym_U_DQUOTE] = ACTIONS(2348), + [anon_sym_u8_DQUOTE] = ACTIONS(2348), + [sym_true] = ACTIONS(2346), + [sym_false] = ACTIONS(2346), + [anon_sym_NULL] = ACTIONS(2346), + [anon_sym_nullptr] = ACTIONS(2346), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2346), + [anon_sym___typeof] = ACTIONS(2346), + [anon_sym_typeof] = ACTIONS(2346), + [anon_sym_ATimport] = ACTIONS(2348), + [aux_sym_preproc_undef_token1] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(2346), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2346), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2346), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2346), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2346), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE] = ACTIONS(2346), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_API_AVAILABLE] = ACTIONS(2346), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_API_DEPRECATED] = ACTIONS(2346), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2346), + [anon_sym___deprecated_msg] = ACTIONS(2346), + [anon_sym___deprecated_enum_msg] = ACTIONS(2346), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2346), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2346), + [anon_sym_ATprotocol] = ACTIONS(2348), + [anon_sym_ATinterface] = ACTIONS(2348), + [anon_sym_ATimplementation] = ACTIONS(2348), + [anon_sym_ATcompatibility_alias] = ACTIONS(2348), + [anon_sym_ATcatch] = ACTIONS(2348), + [anon_sym___catch] = ACTIONS(2346), + [anon_sym_ATfinally] = ACTIONS(2348), + [anon_sym___finally] = ACTIONS(2346), + [anon_sym_ATselector] = ACTIONS(2348), + [anon_sym_ATavailable] = ACTIONS(2348), + [anon_sym___builtin_available] = ACTIONS(2346), + [anon_sym_va_arg] = ACTIONS(2346), + [anon_sym_ATencode] = ACTIONS(2348), + [anon_sym_BOOL] = ACTIONS(2346), + [anon_sym_IMP] = ACTIONS(2346), + [anon_sym_SEL] = ACTIONS(2346), + [anon_sym_Class] = ACTIONS(2346), + [anon_sym_id] = ACTIONS(2346), + }, + [816] = { + [ts_builtin_sym_end] = ACTIONS(2366), + [sym_identifier] = ACTIONS(2364), + [aux_sym_preproc_include_token1] = ACTIONS(2364), + [aux_sym_preproc_include_token2] = ACTIONS(2364), + [aux_sym_preproc_def_token1] = ACTIONS(2364), + [aux_sym_preproc_if_token1] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2364), + [sym_preproc_directive] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_PLUS] = ACTIONS(2364), + [anon_sym_STAR] = ACTIONS(2366), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_AMP] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_typedef] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym___attribute__] = ACTIONS(2364), + [anon_sym___attribute] = ACTIONS(2364), + [anon_sym_noreturn] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym___declspec] = ACTIONS(2364), + [anon_sym___cdecl] = ACTIONS(2364), + [anon_sym___clrcall] = ACTIONS(2364), + [anon_sym___stdcall] = ACTIONS(2364), + [anon_sym___fastcall] = ACTIONS(2364), + [anon_sym___thiscall] = ACTIONS(2364), + [anon_sym___vectorcall] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_signed] = ACTIONS(2364), + [anon_sym_unsigned] = ACTIONS(2364), + [anon_sym_long] = ACTIONS(2364), + [anon_sym_short] = ACTIONS(2364), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_ATautoreleasepool] = ACTIONS(2366), + [anon_sym_auto] = ACTIONS(2364), + [anon_sym_register] = ACTIONS(2364), + [anon_sym_inline] = ACTIONS(2364), + [anon_sym___inline] = ACTIONS(2364), + [anon_sym___inline__] = ACTIONS(2364), + [anon_sym___forceinline] = ACTIONS(2364), + [anon_sym_thread_local] = ACTIONS(2364), + [anon_sym___thread] = ACTIONS(2364), + [anon_sym_CG_EXTERN] = ACTIONS(2364), + [anon_sym_CG_INLINE] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2364), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2364), + [anon_sym_IBOutlet] = ACTIONS(2364), + [anon_sym_IBInspectable] = ACTIONS(2364), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2364), + [anon_sym_NS_INLINE] = ACTIONS(2364), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2364), + [anon_sym_OBJC_EXPORT] = ACTIONS(2364), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [anon_sym_constexpr] = ACTIONS(2364), + [anon_sym_volatile] = ACTIONS(2364), + [anon_sym_restrict] = ACTIONS(2364), + [anon_sym___restrict__] = ACTIONS(2364), + [anon_sym__Atomic] = ACTIONS(2364), + [anon_sym__Noreturn] = ACTIONS(2364), + [anon_sym__Nonnull] = ACTIONS(2364), + [anon_sym_nullable] = ACTIONS(2364), + [anon_sym__Complex] = ACTIONS(2364), + [anon_sym__Nullable] = ACTIONS(2364), + [anon_sym__Nullable_result] = ACTIONS(2364), + [anon_sym__Null_unspecified] = ACTIONS(2364), + [anon_sym___autoreleasing] = ACTIONS(2364), + [anon_sym___block] = ACTIONS(2364), + [anon_sym___bridge] = ACTIONS(2364), + [anon_sym___bridge_retained] = ACTIONS(2364), + [anon_sym___bridge_transfer] = ACTIONS(2364), + [anon_sym___complex] = ACTIONS(2364), + [anon_sym___const] = ACTIONS(2364), + [anon_sym___imag] = ACTIONS(2364), + [anon_sym___kindof] = ACTIONS(2364), + [anon_sym___nonnull] = ACTIONS(2364), + [anon_sym___nullable] = ACTIONS(2364), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2364), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2364), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2364), + [anon_sym___real] = ACTIONS(2364), + [anon_sym___strong] = ACTIONS(2364), + [anon_sym___unsafe_unretained] = ACTIONS(2364), + [anon_sym___unused] = ACTIONS(2364), + [anon_sym___weak] = ACTIONS(2364), + [anon_sym_alignas] = ACTIONS(2364), + [anon_sym__Alignas] = ACTIONS(2364), + [sym_primitive_type] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(2364), + [anon_sym_union] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_switch] = ACTIONS(2364), + [anon_sym_case] = ACTIONS(2364), + [anon_sym_default] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_do] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_in] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_goto] = ACTIONS(2364), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_sizeof] = ACTIONS(2364), + [anon_sym___alignof__] = ACTIONS(2364), + [anon_sym___alignof] = ACTIONS(2364), + [anon_sym__alignof] = ACTIONS(2364), + [anon_sym_alignof] = ACTIONS(2364), + [anon_sym__Alignof] = ACTIONS(2364), + [anon_sym_offsetof] = ACTIONS(2364), + [anon_sym__Generic] = ACTIONS(2364), + [anon_sym_asm] = ACTIONS(2364), + [anon_sym___asm__] = ACTIONS(2364), + [anon_sym___asm] = ACTIONS(2364), + [sym_number_literal] = ACTIONS(2366), + [anon_sym_L_SQUOTE] = ACTIONS(2366), + [anon_sym_u_SQUOTE] = ACTIONS(2366), + [anon_sym_U_SQUOTE] = ACTIONS(2366), + [anon_sym_u8_SQUOTE] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2366), + [anon_sym_AT] = ACTIONS(2364), + [anon_sym_DQUOTE] = ACTIONS(2366), + [anon_sym_L_DQUOTE] = ACTIONS(2366), + [anon_sym_u_DQUOTE] = ACTIONS(2366), + [anon_sym_U_DQUOTE] = ACTIONS(2366), + [anon_sym_u8_DQUOTE] = ACTIONS(2366), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2364), + [anon_sym___typeof] = ACTIONS(2364), + [anon_sym_typeof] = ACTIONS(2364), + [anon_sym_ATimport] = ACTIONS(2366), + [aux_sym_preproc_undef_token1] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(2364), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2364), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2364), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2364), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2364), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE] = ACTIONS(2364), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_API_AVAILABLE] = ACTIONS(2364), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_API_DEPRECATED] = ACTIONS(2364), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2364), + [anon_sym___deprecated_msg] = ACTIONS(2364), + [anon_sym___deprecated_enum_msg] = ACTIONS(2364), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2364), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2364), + [anon_sym_ATprotocol] = ACTIONS(2366), + [anon_sym_ATinterface] = ACTIONS(2366), + [anon_sym_ATimplementation] = ACTIONS(2366), + [anon_sym_ATcompatibility_alias] = ACTIONS(2366), + [anon_sym_ATcatch] = ACTIONS(2366), + [anon_sym___catch] = ACTIONS(2364), + [anon_sym_ATfinally] = ACTIONS(2366), + [anon_sym___finally] = ACTIONS(2364), + [anon_sym_ATselector] = ACTIONS(2366), + [anon_sym_ATavailable] = ACTIONS(2366), + [anon_sym___builtin_available] = ACTIONS(2364), + [anon_sym_va_arg] = ACTIONS(2364), + [anon_sym_ATencode] = ACTIONS(2366), + [anon_sym_BOOL] = ACTIONS(2364), + [anon_sym_IMP] = ACTIONS(2364), + [anon_sym_SEL] = ACTIONS(2364), + [anon_sym_Class] = ACTIONS(2364), + [anon_sym_id] = ACTIONS(2364), + }, + [817] = { + [ts_builtin_sym_end] = ACTIONS(2352), + [sym_identifier] = ACTIONS(2350), + [aux_sym_preproc_include_token1] = ACTIONS(2350), + [aux_sym_preproc_include_token2] = ACTIONS(2350), + [aux_sym_preproc_def_token1] = ACTIONS(2350), + [aux_sym_preproc_if_token1] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2350), + [sym_preproc_directive] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(2352), + [anon_sym_BANG] = ACTIONS(2352), + [anon_sym_TILDE] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2350), + [anon_sym_STAR] = ACTIONS(2352), + [anon_sym_CARET] = ACTIONS(2352), + [anon_sym_AMP] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2352), + [anon_sym___extension__] = ACTIONS(2350), + [anon_sym_typedef] = ACTIONS(2350), + [anon_sym_extern] = ACTIONS(2350), + [anon_sym___attribute__] = ACTIONS(2350), + [anon_sym___attribute] = ACTIONS(2350), + [anon_sym_noreturn] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2352), + [anon_sym___declspec] = ACTIONS(2350), + [anon_sym___cdecl] = ACTIONS(2350), + [anon_sym___clrcall] = ACTIONS(2350), + [anon_sym___stdcall] = ACTIONS(2350), + [anon_sym___fastcall] = ACTIONS(2350), + [anon_sym___thiscall] = ACTIONS(2350), + [anon_sym___vectorcall] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2352), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(2350), + [anon_sym_ATautoreleasepool] = ACTIONS(2352), + [anon_sym_auto] = ACTIONS(2350), + [anon_sym_register] = ACTIONS(2350), + [anon_sym_inline] = ACTIONS(2350), + [anon_sym___inline] = ACTIONS(2350), + [anon_sym___inline__] = ACTIONS(2350), + [anon_sym___forceinline] = ACTIONS(2350), + [anon_sym_thread_local] = ACTIONS(2350), + [anon_sym___thread] = ACTIONS(2350), + [anon_sym_CG_EXTERN] = ACTIONS(2350), + [anon_sym_CG_INLINE] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2350), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2350), + [anon_sym_IBOutlet] = ACTIONS(2350), + [anon_sym_IBInspectable] = ACTIONS(2350), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2350), + [anon_sym_NS_INLINE] = ACTIONS(2350), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2350), + [anon_sym_OBJC_EXPORT] = ACTIONS(2350), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2350), + [anon_sym_const] = ACTIONS(2350), + [anon_sym_constexpr] = ACTIONS(2350), + [anon_sym_volatile] = ACTIONS(2350), + [anon_sym_restrict] = ACTIONS(2350), + [anon_sym___restrict__] = ACTIONS(2350), + [anon_sym__Atomic] = ACTIONS(2350), + [anon_sym__Noreturn] = ACTIONS(2350), + [anon_sym__Nonnull] = ACTIONS(2350), + [anon_sym_nullable] = ACTIONS(2350), + [anon_sym__Complex] = ACTIONS(2350), + [anon_sym__Nullable] = ACTIONS(2350), + [anon_sym__Nullable_result] = ACTIONS(2350), + [anon_sym__Null_unspecified] = ACTIONS(2350), + [anon_sym___autoreleasing] = ACTIONS(2350), + [anon_sym___block] = ACTIONS(2350), + [anon_sym___bridge] = ACTIONS(2350), + [anon_sym___bridge_retained] = ACTIONS(2350), + [anon_sym___bridge_transfer] = ACTIONS(2350), + [anon_sym___complex] = ACTIONS(2350), + [anon_sym___const] = ACTIONS(2350), + [anon_sym___imag] = ACTIONS(2350), + [anon_sym___kindof] = ACTIONS(2350), + [anon_sym___nonnull] = ACTIONS(2350), + [anon_sym___nullable] = ACTIONS(2350), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2350), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2350), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2350), + [anon_sym___real] = ACTIONS(2350), + [anon_sym___strong] = ACTIONS(2350), + [anon_sym___unsafe_unretained] = ACTIONS(2350), + [anon_sym___unused] = ACTIONS(2350), + [anon_sym___weak] = ACTIONS(2350), + [anon_sym_alignas] = ACTIONS(2350), + [anon_sym__Alignas] = ACTIONS(2350), + [sym_primitive_type] = ACTIONS(2350), + [anon_sym_enum] = ACTIONS(2350), + [anon_sym_struct] = ACTIONS(2350), + [anon_sym_union] = ACTIONS(2350), + [anon_sym_if] = ACTIONS(2350), + [anon_sym_else] = ACTIONS(2350), + [anon_sym_switch] = ACTIONS(2350), + [anon_sym_case] = ACTIONS(2350), + [anon_sym_default] = ACTIONS(2350), + [anon_sym_while] = ACTIONS(2350), + [anon_sym_do] = ACTIONS(2350), + [anon_sym_for] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_return] = ACTIONS(2350), + [anon_sym_break] = ACTIONS(2350), + [anon_sym_continue] = ACTIONS(2350), + [anon_sym_goto] = ACTIONS(2350), + [anon_sym_DASH_DASH] = ACTIONS(2352), + [anon_sym_PLUS_PLUS] = ACTIONS(2352), + [anon_sym_sizeof] = ACTIONS(2350), + [anon_sym___alignof__] = ACTIONS(2350), + [anon_sym___alignof] = ACTIONS(2350), + [anon_sym__alignof] = ACTIONS(2350), + [anon_sym_alignof] = ACTIONS(2350), + [anon_sym__Alignof] = ACTIONS(2350), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_asm] = ACTIONS(2350), + [anon_sym___asm__] = ACTIONS(2350), + [anon_sym___asm] = ACTIONS(2350), + [sym_number_literal] = ACTIONS(2352), + [anon_sym_L_SQUOTE] = ACTIONS(2352), + [anon_sym_u_SQUOTE] = ACTIONS(2352), + [anon_sym_U_SQUOTE] = ACTIONS(2352), + [anon_sym_u8_SQUOTE] = ACTIONS(2352), + [anon_sym_SQUOTE] = ACTIONS(2352), + [anon_sym_AT] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2352), + [anon_sym_L_DQUOTE] = ACTIONS(2352), + [anon_sym_u_DQUOTE] = ACTIONS(2352), + [anon_sym_U_DQUOTE] = ACTIONS(2352), + [anon_sym_u8_DQUOTE] = ACTIONS(2352), + [sym_true] = ACTIONS(2350), + [sym_false] = ACTIONS(2350), + [anon_sym_NULL] = ACTIONS(2350), + [anon_sym_nullptr] = ACTIONS(2350), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2350), + [anon_sym___typeof] = ACTIONS(2350), + [anon_sym_typeof] = ACTIONS(2350), + [anon_sym_ATimport] = ACTIONS(2352), + [aux_sym_preproc_undef_token1] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(2350), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2350), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2350), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2350), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2350), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE] = ACTIONS(2350), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_API_AVAILABLE] = ACTIONS(2350), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_API_DEPRECATED] = ACTIONS(2350), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2350), + [anon_sym___deprecated_msg] = ACTIONS(2350), + [anon_sym___deprecated_enum_msg] = ACTIONS(2350), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2350), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2350), + [anon_sym_ATprotocol] = ACTIONS(2352), + [anon_sym_ATinterface] = ACTIONS(2352), + [anon_sym_ATimplementation] = ACTIONS(2352), + [anon_sym_ATcompatibility_alias] = ACTIONS(2352), + [anon_sym_ATcatch] = ACTIONS(2352), + [anon_sym___catch] = ACTIONS(2350), + [anon_sym_ATfinally] = ACTIONS(2352), + [anon_sym___finally] = ACTIONS(2350), + [anon_sym_ATselector] = ACTIONS(2352), + [anon_sym_ATavailable] = ACTIONS(2352), + [anon_sym___builtin_available] = ACTIONS(2350), + [anon_sym_va_arg] = ACTIONS(2350), + [anon_sym_ATencode] = ACTIONS(2352), + [anon_sym_BOOL] = ACTIONS(2350), + [anon_sym_IMP] = ACTIONS(2350), + [anon_sym_SEL] = ACTIONS(2350), + [anon_sym_Class] = ACTIONS(2350), + [anon_sym_id] = ACTIONS(2350), + }, + [818] = { + [sym_identifier] = ACTIONS(2524), + [aux_sym_preproc_include_token1] = ACTIONS(2524), + [aux_sym_preproc_include_token2] = ACTIONS(2524), + [aux_sym_preproc_def_token1] = ACTIONS(2524), + [aux_sym_preproc_if_token1] = ACTIONS(2524), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2524), + [sym_preproc_directive] = ACTIONS(2524), + [anon_sym_LPAREN2] = ACTIONS(2526), + [anon_sym_BANG] = ACTIONS(2526), + [anon_sym_TILDE] = ACTIONS(2526), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_STAR] = ACTIONS(2526), + [anon_sym_CARET] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2526), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym___extension__] = ACTIONS(2524), + [anon_sym_typedef] = ACTIONS(2524), + [anon_sym_extern] = ACTIONS(2524), + [anon_sym___attribute__] = ACTIONS(2524), + [anon_sym___attribute] = ACTIONS(2524), + [anon_sym_noreturn] = ACTIONS(2524), + [anon_sym_LBRACK] = ACTIONS(2526), + [anon_sym___declspec] = ACTIONS(2524), + [anon_sym___cdecl] = ACTIONS(2524), + [anon_sym___clrcall] = ACTIONS(2524), + [anon_sym___stdcall] = ACTIONS(2524), + [anon_sym___fastcall] = ACTIONS(2524), + [anon_sym___thiscall] = ACTIONS(2524), + [anon_sym___vectorcall] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2526), + [anon_sym_RBRACE] = ACTIONS(2526), + [anon_sym_signed] = ACTIONS(2524), + [anon_sym_unsigned] = ACTIONS(2524), + [anon_sym_long] = ACTIONS(2524), + [anon_sym_short] = ACTIONS(2524), + [anon_sym_static] = ACTIONS(2524), + [anon_sym_ATautoreleasepool] = ACTIONS(2526), + [anon_sym_auto] = ACTIONS(2524), + [anon_sym_register] = ACTIONS(2524), + [anon_sym_inline] = ACTIONS(2524), + [anon_sym___inline] = ACTIONS(2524), + [anon_sym___inline__] = ACTIONS(2524), + [anon_sym___forceinline] = ACTIONS(2524), + [anon_sym_thread_local] = ACTIONS(2524), + [anon_sym___thread] = ACTIONS(2524), + [anon_sym_CG_EXTERN] = ACTIONS(2524), + [anon_sym_CG_INLINE] = ACTIONS(2524), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2524), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2524), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2524), + [anon_sym_IBOutlet] = ACTIONS(2524), + [anon_sym_IBInspectable] = ACTIONS(2524), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2524), + [anon_sym_NS_INLINE] = ACTIONS(2524), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2524), + [anon_sym_OBJC_EXPORT] = ACTIONS(2524), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2524), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2524), + [anon_sym_const] = ACTIONS(2524), + [anon_sym_constexpr] = ACTIONS(2524), + [anon_sym_volatile] = ACTIONS(2524), + [anon_sym_restrict] = ACTIONS(2524), + [anon_sym___restrict__] = ACTIONS(2524), + [anon_sym__Atomic] = ACTIONS(2524), + [anon_sym__Noreturn] = ACTIONS(2524), + [anon_sym__Nonnull] = ACTIONS(2524), + [anon_sym_nullable] = ACTIONS(2524), + [anon_sym__Complex] = ACTIONS(2524), + [anon_sym__Nullable] = ACTIONS(2524), + [anon_sym__Nullable_result] = ACTIONS(2524), + [anon_sym__Null_unspecified] = ACTIONS(2524), + [anon_sym___autoreleasing] = ACTIONS(2524), + [anon_sym___block] = ACTIONS(2524), + [anon_sym___bridge] = ACTIONS(2524), + [anon_sym___bridge_retained] = ACTIONS(2524), + [anon_sym___bridge_transfer] = ACTIONS(2524), + [anon_sym___complex] = ACTIONS(2524), + [anon_sym___const] = ACTIONS(2524), + [anon_sym___imag] = ACTIONS(2524), + [anon_sym___kindof] = ACTIONS(2524), + [anon_sym___nonnull] = ACTIONS(2524), + [anon_sym___nullable] = ACTIONS(2524), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2524), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2524), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2524), + [anon_sym___real] = ACTIONS(2524), + [anon_sym___strong] = ACTIONS(2524), + [anon_sym___unsafe_unretained] = ACTIONS(2524), + [anon_sym___unused] = ACTIONS(2524), + [anon_sym___weak] = ACTIONS(2524), + [anon_sym_alignas] = ACTIONS(2524), + [anon_sym__Alignas] = ACTIONS(2524), + [sym_primitive_type] = ACTIONS(2524), + [anon_sym_enum] = ACTIONS(2524), + [anon_sym_struct] = ACTIONS(2524), + [anon_sym_union] = ACTIONS(2524), + [anon_sym_if] = ACTIONS(2524), + [anon_sym_else] = ACTIONS(2524), + [anon_sym_switch] = ACTIONS(2524), + [anon_sym_case] = ACTIONS(2524), + [anon_sym_default] = ACTIONS(2524), + [anon_sym_while] = ACTIONS(2524), + [anon_sym_do] = ACTIONS(2524), + [anon_sym_for] = ACTIONS(2524), + [anon_sym_in] = ACTIONS(2524), + [anon_sym_return] = ACTIONS(2524), + [anon_sym_break] = ACTIONS(2524), + [anon_sym_continue] = ACTIONS(2524), + [anon_sym_goto] = ACTIONS(2524), + [anon_sym_DASH_DASH] = ACTIONS(2526), + [anon_sym_PLUS_PLUS] = ACTIONS(2526), + [anon_sym_sizeof] = ACTIONS(2524), + [anon_sym___alignof__] = ACTIONS(2524), + [anon_sym___alignof] = ACTIONS(2524), + [anon_sym__alignof] = ACTIONS(2524), + [anon_sym_alignof] = ACTIONS(2524), + [anon_sym__Alignof] = ACTIONS(2524), + [anon_sym_offsetof] = ACTIONS(2524), + [anon_sym__Generic] = ACTIONS(2524), + [anon_sym_asm] = ACTIONS(2524), + [anon_sym___asm__] = ACTIONS(2524), + [anon_sym___asm] = ACTIONS(2524), + [sym_number_literal] = ACTIONS(2526), + [anon_sym_L_SQUOTE] = ACTIONS(2526), + [anon_sym_u_SQUOTE] = ACTIONS(2526), + [anon_sym_U_SQUOTE] = ACTIONS(2526), + [anon_sym_u8_SQUOTE] = ACTIONS(2526), + [anon_sym_SQUOTE] = ACTIONS(2526), + [anon_sym_AT] = ACTIONS(2524), + [anon_sym_DQUOTE] = ACTIONS(2526), + [anon_sym_L_DQUOTE] = ACTIONS(2526), + [anon_sym_u_DQUOTE] = ACTIONS(2526), + [anon_sym_U_DQUOTE] = ACTIONS(2526), + [anon_sym_u8_DQUOTE] = ACTIONS(2526), + [sym_true] = ACTIONS(2524), + [sym_false] = ACTIONS(2524), + [anon_sym_NULL] = ACTIONS(2524), + [anon_sym_nullptr] = ACTIONS(2524), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2524), + [anon_sym___typeof] = ACTIONS(2524), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_ATimport] = ACTIONS(2526), + [aux_sym_preproc_undef_token1] = ACTIONS(2524), + [anon_sym_POUND] = ACTIONS(2524), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2524), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2524), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2524), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2524), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2524), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2524), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2524), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2524), + [anon_sym_NS_AVAILABLE] = ACTIONS(2524), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2524), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_API_AVAILABLE] = ACTIONS(2524), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_API_DEPRECATED] = ACTIONS(2524), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2524), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2524), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2524), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2524), + [anon_sym___deprecated_msg] = ACTIONS(2524), + [anon_sym___deprecated_enum_msg] = ACTIONS(2524), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2524), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2524), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2524), + [anon_sym_ATprotocol] = ACTIONS(2526), + [anon_sym_ATinterface] = ACTIONS(2526), + [anon_sym_ATimplementation] = ACTIONS(2526), + [anon_sym_ATcompatibility_alias] = ACTIONS(2526), + [anon_sym_ATtry] = ACTIONS(2526), + [anon_sym___try] = ACTIONS(2524), + [anon_sym_ATthrow] = ACTIONS(2526), + [anon_sym_ATselector] = ACTIONS(2526), + [anon_sym_ATavailable] = ACTIONS(2526), + [anon_sym___builtin_available] = ACTIONS(2524), + [anon_sym_va_arg] = ACTIONS(2524), + [anon_sym_ATencode] = ACTIONS(2526), + [anon_sym_ATsynchronized] = ACTIONS(2526), + [anon_sym_BOOL] = ACTIONS(2524), + [anon_sym_IMP] = ACTIONS(2524), + [anon_sym_SEL] = ACTIONS(2524), + [anon_sym_Class] = ACTIONS(2524), + [anon_sym_id] = ACTIONS(2524), + }, + [819] = { + [sym_identifier] = ACTIONS(2528), + [aux_sym_preproc_include_token1] = ACTIONS(2528), + [aux_sym_preproc_include_token2] = ACTIONS(2528), + [aux_sym_preproc_def_token1] = ACTIONS(2528), + [aux_sym_preproc_if_token1] = ACTIONS(2528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2528), + [sym_preproc_directive] = ACTIONS(2528), + [anon_sym_LPAREN2] = ACTIONS(2530), + [anon_sym_BANG] = ACTIONS(2530), + [anon_sym_TILDE] = ACTIONS(2530), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_CARET] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2530), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym___extension__] = ACTIONS(2528), + [anon_sym_typedef] = ACTIONS(2528), + [anon_sym_extern] = ACTIONS(2528), + [anon_sym___attribute__] = ACTIONS(2528), + [anon_sym___attribute] = ACTIONS(2528), + [anon_sym_noreturn] = ACTIONS(2528), + [anon_sym_LBRACK] = ACTIONS(2530), + [anon_sym___declspec] = ACTIONS(2528), + [anon_sym___cdecl] = ACTIONS(2528), + [anon_sym___clrcall] = ACTIONS(2528), + [anon_sym___stdcall] = ACTIONS(2528), + [anon_sym___fastcall] = ACTIONS(2528), + [anon_sym___thiscall] = ACTIONS(2528), + [anon_sym___vectorcall] = ACTIONS(2528), + [anon_sym_LBRACE] = ACTIONS(2530), + [anon_sym_RBRACE] = ACTIONS(2530), + [anon_sym_signed] = ACTIONS(2528), + [anon_sym_unsigned] = ACTIONS(2528), + [anon_sym_long] = ACTIONS(2528), + [anon_sym_short] = ACTIONS(2528), + [anon_sym_static] = ACTIONS(2528), + [anon_sym_ATautoreleasepool] = ACTIONS(2530), + [anon_sym_auto] = ACTIONS(2528), + [anon_sym_register] = ACTIONS(2528), + [anon_sym_inline] = ACTIONS(2528), + [anon_sym___inline] = ACTIONS(2528), + [anon_sym___inline__] = ACTIONS(2528), + [anon_sym___forceinline] = ACTIONS(2528), + [anon_sym_thread_local] = ACTIONS(2528), + [anon_sym___thread] = ACTIONS(2528), + [anon_sym_CG_EXTERN] = ACTIONS(2528), + [anon_sym_CG_INLINE] = ACTIONS(2528), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2528), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2528), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2528), + [anon_sym_IBOutlet] = ACTIONS(2528), + [anon_sym_IBInspectable] = ACTIONS(2528), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2528), + [anon_sym_NS_INLINE] = ACTIONS(2528), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2528), + [anon_sym_OBJC_EXPORT] = ACTIONS(2528), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2528), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2528), + [anon_sym_const] = ACTIONS(2528), + [anon_sym_constexpr] = ACTIONS(2528), + [anon_sym_volatile] = ACTIONS(2528), + [anon_sym_restrict] = ACTIONS(2528), + [anon_sym___restrict__] = ACTIONS(2528), + [anon_sym__Atomic] = ACTIONS(2528), + [anon_sym__Noreturn] = ACTIONS(2528), + [anon_sym__Nonnull] = ACTIONS(2528), + [anon_sym_nullable] = ACTIONS(2528), + [anon_sym__Complex] = ACTIONS(2528), + [anon_sym__Nullable] = ACTIONS(2528), + [anon_sym__Nullable_result] = ACTIONS(2528), + [anon_sym__Null_unspecified] = ACTIONS(2528), + [anon_sym___autoreleasing] = ACTIONS(2528), + [anon_sym___block] = ACTIONS(2528), + [anon_sym___bridge] = ACTIONS(2528), + [anon_sym___bridge_retained] = ACTIONS(2528), + [anon_sym___bridge_transfer] = ACTIONS(2528), + [anon_sym___complex] = ACTIONS(2528), + [anon_sym___const] = ACTIONS(2528), + [anon_sym___imag] = ACTIONS(2528), + [anon_sym___kindof] = ACTIONS(2528), + [anon_sym___nonnull] = ACTIONS(2528), + [anon_sym___nullable] = ACTIONS(2528), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2528), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2528), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2528), + [anon_sym___real] = ACTIONS(2528), + [anon_sym___strong] = ACTIONS(2528), + [anon_sym___unsafe_unretained] = ACTIONS(2528), + [anon_sym___unused] = ACTIONS(2528), + [anon_sym___weak] = ACTIONS(2528), + [anon_sym_alignas] = ACTIONS(2528), + [anon_sym__Alignas] = ACTIONS(2528), + [sym_primitive_type] = ACTIONS(2528), + [anon_sym_enum] = ACTIONS(2528), + [anon_sym_struct] = ACTIONS(2528), + [anon_sym_union] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_else] = ACTIONS(2528), + [anon_sym_switch] = ACTIONS(2528), + [anon_sym_case] = ACTIONS(2528), + [anon_sym_default] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_in] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_break] = ACTIONS(2528), + [anon_sym_continue] = ACTIONS(2528), + [anon_sym_goto] = ACTIONS(2528), + [anon_sym_DASH_DASH] = ACTIONS(2530), + [anon_sym_PLUS_PLUS] = ACTIONS(2530), + [anon_sym_sizeof] = ACTIONS(2528), + [anon_sym___alignof__] = ACTIONS(2528), + [anon_sym___alignof] = ACTIONS(2528), + [anon_sym__alignof] = ACTIONS(2528), + [anon_sym_alignof] = ACTIONS(2528), + [anon_sym__Alignof] = ACTIONS(2528), + [anon_sym_offsetof] = ACTIONS(2528), + [anon_sym__Generic] = ACTIONS(2528), + [anon_sym_asm] = ACTIONS(2528), + [anon_sym___asm__] = ACTIONS(2528), + [anon_sym___asm] = ACTIONS(2528), + [sym_number_literal] = ACTIONS(2530), + [anon_sym_L_SQUOTE] = ACTIONS(2530), + [anon_sym_u_SQUOTE] = ACTIONS(2530), + [anon_sym_U_SQUOTE] = ACTIONS(2530), + [anon_sym_u8_SQUOTE] = ACTIONS(2530), + [anon_sym_SQUOTE] = ACTIONS(2530), + [anon_sym_AT] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2530), + [anon_sym_L_DQUOTE] = ACTIONS(2530), + [anon_sym_u_DQUOTE] = ACTIONS(2530), + [anon_sym_U_DQUOTE] = ACTIONS(2530), + [anon_sym_u8_DQUOTE] = ACTIONS(2530), + [sym_true] = ACTIONS(2528), + [sym_false] = ACTIONS(2528), + [anon_sym_NULL] = ACTIONS(2528), + [anon_sym_nullptr] = ACTIONS(2528), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2528), + [anon_sym___typeof] = ACTIONS(2528), + [anon_sym_typeof] = ACTIONS(2528), + [anon_sym_ATimport] = ACTIONS(2530), + [aux_sym_preproc_undef_token1] = ACTIONS(2528), + [anon_sym_POUND] = ACTIONS(2528), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2528), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2528), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2528), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2528), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2528), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2528), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2528), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2528), + [anon_sym_NS_AVAILABLE] = ACTIONS(2528), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2528), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_API_AVAILABLE] = ACTIONS(2528), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_API_DEPRECATED] = ACTIONS(2528), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2528), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2528), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2528), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2528), + [anon_sym___deprecated_msg] = ACTIONS(2528), + [anon_sym___deprecated_enum_msg] = ACTIONS(2528), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2528), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2528), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2528), + [anon_sym_ATprotocol] = ACTIONS(2530), + [anon_sym_ATinterface] = ACTIONS(2530), + [anon_sym_ATimplementation] = ACTIONS(2530), + [anon_sym_ATcompatibility_alias] = ACTIONS(2530), + [anon_sym_ATtry] = ACTIONS(2530), + [anon_sym___try] = ACTIONS(2528), + [anon_sym_ATthrow] = ACTIONS(2530), + [anon_sym_ATselector] = ACTIONS(2530), + [anon_sym_ATavailable] = ACTIONS(2530), + [anon_sym___builtin_available] = ACTIONS(2528), + [anon_sym_va_arg] = ACTIONS(2528), + [anon_sym_ATencode] = ACTIONS(2530), + [anon_sym_ATsynchronized] = ACTIONS(2530), + [anon_sym_BOOL] = ACTIONS(2528), + [anon_sym_IMP] = ACTIONS(2528), + [anon_sym_SEL] = ACTIONS(2528), + [anon_sym_Class] = ACTIONS(2528), + [anon_sym_id] = ACTIONS(2528), + }, + [820] = { + [sym_identifier] = ACTIONS(2532), + [aux_sym_preproc_include_token1] = ACTIONS(2532), + [aux_sym_preproc_include_token2] = ACTIONS(2532), + [aux_sym_preproc_def_token1] = ACTIONS(2532), + [aux_sym_preproc_if_token1] = ACTIONS(2532), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2532), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2532), + [sym_preproc_directive] = ACTIONS(2532), + [anon_sym_LPAREN2] = ACTIONS(2534), + [anon_sym_BANG] = ACTIONS(2534), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2532), + [anon_sym_STAR] = ACTIONS(2534), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2534), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym___extension__] = ACTIONS(2532), + [anon_sym_typedef] = ACTIONS(2532), + [anon_sym_extern] = ACTIONS(2532), + [anon_sym___attribute__] = ACTIONS(2532), + [anon_sym___attribute] = ACTIONS(2532), + [anon_sym_noreturn] = ACTIONS(2532), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym___declspec] = ACTIONS(2532), + [anon_sym___cdecl] = ACTIONS(2532), + [anon_sym___clrcall] = ACTIONS(2532), + [anon_sym___stdcall] = ACTIONS(2532), + [anon_sym___fastcall] = ACTIONS(2532), + [anon_sym___thiscall] = ACTIONS(2532), + [anon_sym___vectorcall] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_RBRACE] = ACTIONS(2534), + [anon_sym_signed] = ACTIONS(2532), + [anon_sym_unsigned] = ACTIONS(2532), + [anon_sym_long] = ACTIONS(2532), + [anon_sym_short] = ACTIONS(2532), + [anon_sym_static] = ACTIONS(2532), + [anon_sym_ATautoreleasepool] = ACTIONS(2534), + [anon_sym_auto] = ACTIONS(2532), + [anon_sym_register] = ACTIONS(2532), + [anon_sym_inline] = ACTIONS(2532), + [anon_sym___inline] = ACTIONS(2532), + [anon_sym___inline__] = ACTIONS(2532), + [anon_sym___forceinline] = ACTIONS(2532), + [anon_sym_thread_local] = ACTIONS(2532), + [anon_sym___thread] = ACTIONS(2532), + [anon_sym_CG_EXTERN] = ACTIONS(2532), + [anon_sym_CG_INLINE] = ACTIONS(2532), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2532), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2532), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2532), + [anon_sym_IBOutlet] = ACTIONS(2532), + [anon_sym_IBInspectable] = ACTIONS(2532), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2532), + [anon_sym_NS_INLINE] = ACTIONS(2532), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2532), + [anon_sym_OBJC_EXPORT] = ACTIONS(2532), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2532), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2532), + [anon_sym_const] = ACTIONS(2532), + [anon_sym_constexpr] = ACTIONS(2532), + [anon_sym_volatile] = ACTIONS(2532), + [anon_sym_restrict] = ACTIONS(2532), + [anon_sym___restrict__] = ACTIONS(2532), + [anon_sym__Atomic] = ACTIONS(2532), + [anon_sym__Noreturn] = ACTIONS(2532), + [anon_sym__Nonnull] = ACTIONS(2532), + [anon_sym_nullable] = ACTIONS(2532), + [anon_sym__Complex] = ACTIONS(2532), + [anon_sym__Nullable] = ACTIONS(2532), + [anon_sym__Nullable_result] = ACTIONS(2532), + [anon_sym__Null_unspecified] = ACTIONS(2532), + [anon_sym___autoreleasing] = ACTIONS(2532), + [anon_sym___block] = ACTIONS(2532), + [anon_sym___bridge] = ACTIONS(2532), + [anon_sym___bridge_retained] = ACTIONS(2532), + [anon_sym___bridge_transfer] = ACTIONS(2532), + [anon_sym___complex] = ACTIONS(2532), + [anon_sym___const] = ACTIONS(2532), + [anon_sym___imag] = ACTIONS(2532), + [anon_sym___kindof] = ACTIONS(2532), + [anon_sym___nonnull] = ACTIONS(2532), + [anon_sym___nullable] = ACTIONS(2532), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2532), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2532), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2532), + [anon_sym___real] = ACTIONS(2532), + [anon_sym___strong] = ACTIONS(2532), + [anon_sym___unsafe_unretained] = ACTIONS(2532), + [anon_sym___unused] = ACTIONS(2532), + [anon_sym___weak] = ACTIONS(2532), + [anon_sym_alignas] = ACTIONS(2532), + [anon_sym__Alignas] = ACTIONS(2532), + [sym_primitive_type] = ACTIONS(2532), + [anon_sym_enum] = ACTIONS(2532), + [anon_sym_struct] = ACTIONS(2532), + [anon_sym_union] = ACTIONS(2532), + [anon_sym_if] = ACTIONS(2532), + [anon_sym_else] = ACTIONS(2532), + [anon_sym_switch] = ACTIONS(2532), + [anon_sym_case] = ACTIONS(2532), + [anon_sym_default] = ACTIONS(2532), + [anon_sym_while] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_for] = ACTIONS(2532), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_return] = ACTIONS(2532), + [anon_sym_break] = ACTIONS(2532), + [anon_sym_continue] = ACTIONS(2532), + [anon_sym_goto] = ACTIONS(2532), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), + [anon_sym_sizeof] = ACTIONS(2532), + [anon_sym___alignof__] = ACTIONS(2532), + [anon_sym___alignof] = ACTIONS(2532), + [anon_sym__alignof] = ACTIONS(2532), + [anon_sym_alignof] = ACTIONS(2532), + [anon_sym__Alignof] = ACTIONS(2532), + [anon_sym_offsetof] = ACTIONS(2532), + [anon_sym__Generic] = ACTIONS(2532), + [anon_sym_asm] = ACTIONS(2532), + [anon_sym___asm__] = ACTIONS(2532), + [anon_sym___asm] = ACTIONS(2532), + [sym_number_literal] = ACTIONS(2534), + [anon_sym_L_SQUOTE] = ACTIONS(2534), + [anon_sym_u_SQUOTE] = ACTIONS(2534), + [anon_sym_U_SQUOTE] = ACTIONS(2534), + [anon_sym_u8_SQUOTE] = ACTIONS(2534), + [anon_sym_SQUOTE] = ACTIONS(2534), + [anon_sym_AT] = ACTIONS(2532), + [anon_sym_DQUOTE] = ACTIONS(2534), + [anon_sym_L_DQUOTE] = ACTIONS(2534), + [anon_sym_u_DQUOTE] = ACTIONS(2534), + [anon_sym_U_DQUOTE] = ACTIONS(2534), + [anon_sym_u8_DQUOTE] = ACTIONS(2534), + [sym_true] = ACTIONS(2532), + [sym_false] = ACTIONS(2532), + [anon_sym_NULL] = ACTIONS(2532), + [anon_sym_nullptr] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2532), + [anon_sym___typeof] = ACTIONS(2532), + [anon_sym_typeof] = ACTIONS(2532), + [anon_sym_ATimport] = ACTIONS(2534), + [aux_sym_preproc_undef_token1] = ACTIONS(2532), + [anon_sym_POUND] = ACTIONS(2532), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2532), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2532), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2532), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2532), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2532), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2532), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2532), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2532), + [anon_sym_NS_AVAILABLE] = ACTIONS(2532), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2532), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_API_AVAILABLE] = ACTIONS(2532), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_API_DEPRECATED] = ACTIONS(2532), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2532), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2532), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2532), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2532), + [anon_sym___deprecated_msg] = ACTIONS(2532), + [anon_sym___deprecated_enum_msg] = ACTIONS(2532), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2532), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2532), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2532), + [anon_sym_ATprotocol] = ACTIONS(2534), + [anon_sym_ATinterface] = ACTIONS(2534), + [anon_sym_ATimplementation] = ACTIONS(2534), + [anon_sym_ATcompatibility_alias] = ACTIONS(2534), + [anon_sym_ATtry] = ACTIONS(2534), + [anon_sym___try] = ACTIONS(2532), + [anon_sym_ATthrow] = ACTIONS(2534), + [anon_sym_ATselector] = ACTIONS(2534), + [anon_sym_ATavailable] = ACTIONS(2534), + [anon_sym___builtin_available] = ACTIONS(2532), + [anon_sym_va_arg] = ACTIONS(2532), + [anon_sym_ATencode] = ACTIONS(2534), + [anon_sym_ATsynchronized] = ACTIONS(2534), + [anon_sym_BOOL] = ACTIONS(2532), + [anon_sym_IMP] = ACTIONS(2532), + [anon_sym_SEL] = ACTIONS(2532), + [anon_sym_Class] = ACTIONS(2532), + [anon_sym_id] = ACTIONS(2532), + }, + [821] = { + [ts_builtin_sym_end] = ACTIONS(2562), + [sym_identifier] = ACTIONS(2560), + [aux_sym_preproc_include_token1] = ACTIONS(2560), + [aux_sym_preproc_include_token2] = ACTIONS(2560), + [aux_sym_preproc_def_token1] = ACTIONS(2560), + [aux_sym_preproc_if_token1] = ACTIONS(2560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2560), + [sym_preproc_directive] = ACTIONS(2560), + [anon_sym_LPAREN2] = ACTIONS(2562), + [anon_sym_BANG] = ACTIONS(2562), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_DASH] = ACTIONS(2560), + [anon_sym_PLUS] = ACTIONS(2560), + [anon_sym_STAR] = ACTIONS(2562), + [anon_sym_CARET] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2562), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym___extension__] = ACTIONS(2560), + [anon_sym_typedef] = ACTIONS(2560), + [anon_sym_extern] = ACTIONS(2560), + [anon_sym___attribute__] = ACTIONS(2560), + [anon_sym___attribute] = ACTIONS(2560), + [anon_sym_noreturn] = ACTIONS(2560), + [anon_sym_LBRACK] = ACTIONS(2562), + [anon_sym___declspec] = ACTIONS(2560), + [anon_sym___cdecl] = ACTIONS(2560), + [anon_sym___clrcall] = ACTIONS(2560), + [anon_sym___stdcall] = ACTIONS(2560), + [anon_sym___fastcall] = ACTIONS(2560), + [anon_sym___thiscall] = ACTIONS(2560), + [anon_sym___vectorcall] = ACTIONS(2560), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_signed] = ACTIONS(2560), + [anon_sym_unsigned] = ACTIONS(2560), + [anon_sym_long] = ACTIONS(2560), + [anon_sym_short] = ACTIONS(2560), + [anon_sym_static] = ACTIONS(2560), + [anon_sym_ATautoreleasepool] = ACTIONS(2562), + [anon_sym_auto] = ACTIONS(2560), + [anon_sym_register] = ACTIONS(2560), + [anon_sym_inline] = ACTIONS(2560), + [anon_sym___inline] = ACTIONS(2560), + [anon_sym___inline__] = ACTIONS(2560), + [anon_sym___forceinline] = ACTIONS(2560), + [anon_sym_thread_local] = ACTIONS(2560), + [anon_sym___thread] = ACTIONS(2560), + [anon_sym_CG_EXTERN] = ACTIONS(2560), + [anon_sym_CG_INLINE] = ACTIONS(2560), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2560), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2560), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2560), + [anon_sym_IBOutlet] = ACTIONS(2560), + [anon_sym_IBInspectable] = ACTIONS(2560), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2560), + [anon_sym_NS_INLINE] = ACTIONS(2560), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2560), + [anon_sym_OBJC_EXPORT] = ACTIONS(2560), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2560), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2560), + [anon_sym_const] = ACTIONS(2560), + [anon_sym_constexpr] = ACTIONS(2560), + [anon_sym_volatile] = ACTIONS(2560), + [anon_sym_restrict] = ACTIONS(2560), + [anon_sym___restrict__] = ACTIONS(2560), + [anon_sym__Atomic] = ACTIONS(2560), + [anon_sym__Noreturn] = ACTIONS(2560), + [anon_sym__Nonnull] = ACTIONS(2560), + [anon_sym_nullable] = ACTIONS(2560), + [anon_sym__Complex] = ACTIONS(2560), + [anon_sym__Nullable] = ACTIONS(2560), + [anon_sym__Nullable_result] = ACTIONS(2560), + [anon_sym__Null_unspecified] = ACTIONS(2560), + [anon_sym___autoreleasing] = ACTIONS(2560), + [anon_sym___block] = ACTIONS(2560), + [anon_sym___bridge] = ACTIONS(2560), + [anon_sym___bridge_retained] = ACTIONS(2560), + [anon_sym___bridge_transfer] = ACTIONS(2560), + [anon_sym___complex] = ACTIONS(2560), + [anon_sym___const] = ACTIONS(2560), + [anon_sym___imag] = ACTIONS(2560), + [anon_sym___kindof] = ACTIONS(2560), + [anon_sym___nonnull] = ACTIONS(2560), + [anon_sym___nullable] = ACTIONS(2560), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2560), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2560), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2560), + [anon_sym___real] = ACTIONS(2560), + [anon_sym___strong] = ACTIONS(2560), + [anon_sym___unsafe_unretained] = ACTIONS(2560), + [anon_sym___unused] = ACTIONS(2560), + [anon_sym___weak] = ACTIONS(2560), + [anon_sym_alignas] = ACTIONS(2560), + [anon_sym__Alignas] = ACTIONS(2560), + [sym_primitive_type] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2560), + [anon_sym_struct] = ACTIONS(2560), + [anon_sym_union] = ACTIONS(2560), + [anon_sym_if] = ACTIONS(2560), + [anon_sym_else] = ACTIONS(2560), + [anon_sym_switch] = ACTIONS(2560), + [anon_sym_case] = ACTIONS(2560), + [anon_sym_default] = ACTIONS(2560), + [anon_sym_while] = ACTIONS(2560), + [anon_sym_do] = ACTIONS(2560), + [anon_sym_for] = ACTIONS(2560), + [anon_sym_in] = ACTIONS(2560), + [anon_sym_return] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_goto] = ACTIONS(2560), + [anon_sym_DASH_DASH] = ACTIONS(2562), + [anon_sym_PLUS_PLUS] = ACTIONS(2562), + [anon_sym_sizeof] = ACTIONS(2560), + [anon_sym___alignof__] = ACTIONS(2560), + [anon_sym___alignof] = ACTIONS(2560), + [anon_sym__alignof] = ACTIONS(2560), + [anon_sym_alignof] = ACTIONS(2560), + [anon_sym__Alignof] = ACTIONS(2560), + [anon_sym_offsetof] = ACTIONS(2560), + [anon_sym__Generic] = ACTIONS(2560), + [anon_sym_asm] = ACTIONS(2560), + [anon_sym___asm__] = ACTIONS(2560), + [anon_sym___asm] = ACTIONS(2560), + [sym_number_literal] = ACTIONS(2562), + [anon_sym_L_SQUOTE] = ACTIONS(2562), + [anon_sym_u_SQUOTE] = ACTIONS(2562), + [anon_sym_U_SQUOTE] = ACTIONS(2562), + [anon_sym_u8_SQUOTE] = ACTIONS(2562), + [anon_sym_SQUOTE] = ACTIONS(2562), + [anon_sym_AT] = ACTIONS(2560), + [anon_sym_DQUOTE] = ACTIONS(2562), + [anon_sym_L_DQUOTE] = ACTIONS(2562), + [anon_sym_u_DQUOTE] = ACTIONS(2562), + [anon_sym_U_DQUOTE] = ACTIONS(2562), + [anon_sym_u8_DQUOTE] = ACTIONS(2562), + [sym_true] = ACTIONS(2560), + [sym_false] = ACTIONS(2560), + [anon_sym_NULL] = ACTIONS(2560), + [anon_sym_nullptr] = ACTIONS(2560), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2560), + [anon_sym___typeof] = ACTIONS(2560), + [anon_sym_typeof] = ACTIONS(2560), + [anon_sym_ATimport] = ACTIONS(2562), + [aux_sym_preproc_undef_token1] = ACTIONS(2560), + [anon_sym_POUND] = ACTIONS(2560), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2560), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2560), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2560), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2560), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2560), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2560), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2560), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2560), + [anon_sym_NS_AVAILABLE] = ACTIONS(2560), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2560), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_API_AVAILABLE] = ACTIONS(2560), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_API_DEPRECATED] = ACTIONS(2560), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2560), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2560), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2560), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2560), + [anon_sym___deprecated_msg] = ACTIONS(2560), + [anon_sym___deprecated_enum_msg] = ACTIONS(2560), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2560), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2560), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2560), + [anon_sym_ATprotocol] = ACTIONS(2562), + [anon_sym_ATinterface] = ACTIONS(2562), + [anon_sym_ATimplementation] = ACTIONS(2562), + [anon_sym_ATcompatibility_alias] = ACTIONS(2562), + [anon_sym_ATtry] = ACTIONS(2562), + [anon_sym___try] = ACTIONS(2560), + [anon_sym_ATthrow] = ACTIONS(2562), + [anon_sym_ATselector] = ACTIONS(2562), + [anon_sym_ATavailable] = ACTIONS(2562), + [anon_sym___builtin_available] = ACTIONS(2560), + [anon_sym_va_arg] = ACTIONS(2560), + [anon_sym_ATencode] = ACTIONS(2562), + [anon_sym_ATsynchronized] = ACTIONS(2562), + [anon_sym_BOOL] = ACTIONS(2560), + [anon_sym_IMP] = ACTIONS(2560), + [anon_sym_SEL] = ACTIONS(2560), + [anon_sym_Class] = ACTIONS(2560), + [anon_sym_id] = ACTIONS(2560), + }, + [822] = { + [ts_builtin_sym_end] = ACTIONS(2526), + [sym_identifier] = ACTIONS(2524), + [aux_sym_preproc_include_token1] = ACTIONS(2524), + [aux_sym_preproc_include_token2] = ACTIONS(2524), + [aux_sym_preproc_def_token1] = ACTIONS(2524), + [aux_sym_preproc_if_token1] = ACTIONS(2524), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2524), + [sym_preproc_directive] = ACTIONS(2524), + [anon_sym_LPAREN2] = ACTIONS(2526), + [anon_sym_BANG] = ACTIONS(2526), + [anon_sym_TILDE] = ACTIONS(2526), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_STAR] = ACTIONS(2526), + [anon_sym_CARET] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2526), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym___extension__] = ACTIONS(2524), + [anon_sym_typedef] = ACTIONS(2524), + [anon_sym_extern] = ACTIONS(2524), + [anon_sym___attribute__] = ACTIONS(2524), + [anon_sym___attribute] = ACTIONS(2524), + [anon_sym_noreturn] = ACTIONS(2524), + [anon_sym_LBRACK] = ACTIONS(2526), + [anon_sym___declspec] = ACTIONS(2524), + [anon_sym___cdecl] = ACTIONS(2524), + [anon_sym___clrcall] = ACTIONS(2524), + [anon_sym___stdcall] = ACTIONS(2524), + [anon_sym___fastcall] = ACTIONS(2524), + [anon_sym___thiscall] = ACTIONS(2524), + [anon_sym___vectorcall] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2526), + [anon_sym_signed] = ACTIONS(2524), + [anon_sym_unsigned] = ACTIONS(2524), + [anon_sym_long] = ACTIONS(2524), + [anon_sym_short] = ACTIONS(2524), + [anon_sym_static] = ACTIONS(2524), + [anon_sym_ATautoreleasepool] = ACTIONS(2526), + [anon_sym_auto] = ACTIONS(2524), + [anon_sym_register] = ACTIONS(2524), + [anon_sym_inline] = ACTIONS(2524), + [anon_sym___inline] = ACTIONS(2524), + [anon_sym___inline__] = ACTIONS(2524), + [anon_sym___forceinline] = ACTIONS(2524), + [anon_sym_thread_local] = ACTIONS(2524), + [anon_sym___thread] = ACTIONS(2524), + [anon_sym_CG_EXTERN] = ACTIONS(2524), + [anon_sym_CG_INLINE] = ACTIONS(2524), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2524), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2524), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2524), + [anon_sym_IBOutlet] = ACTIONS(2524), + [anon_sym_IBInspectable] = ACTIONS(2524), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2524), + [anon_sym_NS_INLINE] = ACTIONS(2524), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2524), + [anon_sym_OBJC_EXPORT] = ACTIONS(2524), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2524), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2524), + [anon_sym_const] = ACTIONS(2524), + [anon_sym_constexpr] = ACTIONS(2524), + [anon_sym_volatile] = ACTIONS(2524), + [anon_sym_restrict] = ACTIONS(2524), + [anon_sym___restrict__] = ACTIONS(2524), + [anon_sym__Atomic] = ACTIONS(2524), + [anon_sym__Noreturn] = ACTIONS(2524), + [anon_sym__Nonnull] = ACTIONS(2524), + [anon_sym_nullable] = ACTIONS(2524), + [anon_sym__Complex] = ACTIONS(2524), + [anon_sym__Nullable] = ACTIONS(2524), + [anon_sym__Nullable_result] = ACTIONS(2524), + [anon_sym__Null_unspecified] = ACTIONS(2524), + [anon_sym___autoreleasing] = ACTIONS(2524), + [anon_sym___block] = ACTIONS(2524), + [anon_sym___bridge] = ACTIONS(2524), + [anon_sym___bridge_retained] = ACTIONS(2524), + [anon_sym___bridge_transfer] = ACTIONS(2524), + [anon_sym___complex] = ACTIONS(2524), + [anon_sym___const] = ACTIONS(2524), + [anon_sym___imag] = ACTIONS(2524), + [anon_sym___kindof] = ACTIONS(2524), + [anon_sym___nonnull] = ACTIONS(2524), + [anon_sym___nullable] = ACTIONS(2524), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2524), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2524), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2524), + [anon_sym___real] = ACTIONS(2524), + [anon_sym___strong] = ACTIONS(2524), + [anon_sym___unsafe_unretained] = ACTIONS(2524), + [anon_sym___unused] = ACTIONS(2524), + [anon_sym___weak] = ACTIONS(2524), + [anon_sym_alignas] = ACTIONS(2524), + [anon_sym__Alignas] = ACTIONS(2524), + [sym_primitive_type] = ACTIONS(2524), + [anon_sym_enum] = ACTIONS(2524), + [anon_sym_struct] = ACTIONS(2524), + [anon_sym_union] = ACTIONS(2524), + [anon_sym_if] = ACTIONS(2524), + [anon_sym_else] = ACTIONS(2524), + [anon_sym_switch] = ACTIONS(2524), + [anon_sym_case] = ACTIONS(2524), + [anon_sym_default] = ACTIONS(2524), + [anon_sym_while] = ACTIONS(2524), + [anon_sym_do] = ACTIONS(2524), + [anon_sym_for] = ACTIONS(2524), + [anon_sym_in] = ACTIONS(2524), + [anon_sym_return] = ACTIONS(2524), + [anon_sym_break] = ACTIONS(2524), + [anon_sym_continue] = ACTIONS(2524), + [anon_sym_goto] = ACTIONS(2524), + [anon_sym_DASH_DASH] = ACTIONS(2526), + [anon_sym_PLUS_PLUS] = ACTIONS(2526), + [anon_sym_sizeof] = ACTIONS(2524), + [anon_sym___alignof__] = ACTIONS(2524), + [anon_sym___alignof] = ACTIONS(2524), + [anon_sym__alignof] = ACTIONS(2524), + [anon_sym_alignof] = ACTIONS(2524), + [anon_sym__Alignof] = ACTIONS(2524), + [anon_sym_offsetof] = ACTIONS(2524), + [anon_sym__Generic] = ACTIONS(2524), + [anon_sym_asm] = ACTIONS(2524), + [anon_sym___asm__] = ACTIONS(2524), + [anon_sym___asm] = ACTIONS(2524), + [sym_number_literal] = ACTIONS(2526), + [anon_sym_L_SQUOTE] = ACTIONS(2526), + [anon_sym_u_SQUOTE] = ACTIONS(2526), + [anon_sym_U_SQUOTE] = ACTIONS(2526), + [anon_sym_u8_SQUOTE] = ACTIONS(2526), + [anon_sym_SQUOTE] = ACTIONS(2526), + [anon_sym_AT] = ACTIONS(2524), + [anon_sym_DQUOTE] = ACTIONS(2526), + [anon_sym_L_DQUOTE] = ACTIONS(2526), + [anon_sym_u_DQUOTE] = ACTIONS(2526), + [anon_sym_U_DQUOTE] = ACTIONS(2526), + [anon_sym_u8_DQUOTE] = ACTIONS(2526), + [sym_true] = ACTIONS(2524), + [sym_false] = ACTIONS(2524), + [anon_sym_NULL] = ACTIONS(2524), + [anon_sym_nullptr] = ACTIONS(2524), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2524), + [anon_sym___typeof] = ACTIONS(2524), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_ATimport] = ACTIONS(2526), + [aux_sym_preproc_undef_token1] = ACTIONS(2524), + [anon_sym_POUND] = ACTIONS(2524), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2524), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2524), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2524), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2524), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2524), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2524), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2524), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2524), + [anon_sym_NS_AVAILABLE] = ACTIONS(2524), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2524), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_API_AVAILABLE] = ACTIONS(2524), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_API_DEPRECATED] = ACTIONS(2524), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2524), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2524), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2524), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2524), + [anon_sym___deprecated_msg] = ACTIONS(2524), + [anon_sym___deprecated_enum_msg] = ACTIONS(2524), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2524), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2524), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2524), + [anon_sym_ATprotocol] = ACTIONS(2526), + [anon_sym_ATinterface] = ACTIONS(2526), + [anon_sym_ATimplementation] = ACTIONS(2526), + [anon_sym_ATcompatibility_alias] = ACTIONS(2526), + [anon_sym_ATtry] = ACTIONS(2526), + [anon_sym___try] = ACTIONS(2524), + [anon_sym_ATthrow] = ACTIONS(2526), + [anon_sym_ATselector] = ACTIONS(2526), + [anon_sym_ATavailable] = ACTIONS(2526), + [anon_sym___builtin_available] = ACTIONS(2524), + [anon_sym_va_arg] = ACTIONS(2524), + [anon_sym_ATencode] = ACTIONS(2526), + [anon_sym_ATsynchronized] = ACTIONS(2526), + [anon_sym_BOOL] = ACTIONS(2524), + [anon_sym_IMP] = ACTIONS(2524), + [anon_sym_SEL] = ACTIONS(2524), + [anon_sym_Class] = ACTIONS(2524), + [anon_sym_id] = ACTIONS(2524), + }, + [823] = { + [ts_builtin_sym_end] = ACTIONS(2418), + [sym_identifier] = ACTIONS(2416), + [aux_sym_preproc_include_token1] = ACTIONS(2416), + [aux_sym_preproc_include_token2] = ACTIONS(2416), + [aux_sym_preproc_def_token1] = ACTIONS(2416), + [aux_sym_preproc_if_token1] = ACTIONS(2416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2416), + [sym_preproc_directive] = ACTIONS(2416), + [anon_sym_LPAREN2] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym___extension__] = ACTIONS(2416), + [anon_sym_typedef] = ACTIONS(2416), + [anon_sym_extern] = ACTIONS(2416), + [anon_sym___attribute__] = ACTIONS(2416), + [anon_sym___attribute] = ACTIONS(2416), + [anon_sym_noreturn] = ACTIONS(2416), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym___declspec] = ACTIONS(2416), + [anon_sym___cdecl] = ACTIONS(2416), + [anon_sym___clrcall] = ACTIONS(2416), + [anon_sym___stdcall] = ACTIONS(2416), + [anon_sym___fastcall] = ACTIONS(2416), + [anon_sym___thiscall] = ACTIONS(2416), + [anon_sym___vectorcall] = ACTIONS(2416), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_signed] = ACTIONS(2416), + [anon_sym_unsigned] = ACTIONS(2416), + [anon_sym_long] = ACTIONS(2416), + [anon_sym_short] = ACTIONS(2416), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_ATautoreleasepool] = ACTIONS(2418), + [anon_sym_auto] = ACTIONS(2416), + [anon_sym_register] = ACTIONS(2416), + [anon_sym_inline] = ACTIONS(2416), + [anon_sym___inline] = ACTIONS(2416), + [anon_sym___inline__] = ACTIONS(2416), + [anon_sym___forceinline] = ACTIONS(2416), + [anon_sym_thread_local] = ACTIONS(2416), + [anon_sym___thread] = ACTIONS(2416), + [anon_sym_CG_EXTERN] = ACTIONS(2416), + [anon_sym_CG_INLINE] = ACTIONS(2416), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2416), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2416), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2416), + [anon_sym_IBOutlet] = ACTIONS(2416), + [anon_sym_IBInspectable] = ACTIONS(2416), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2416), + [anon_sym_NS_INLINE] = ACTIONS(2416), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2416), + [anon_sym_OBJC_EXPORT] = ACTIONS(2416), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2416), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2416), + [anon_sym_const] = ACTIONS(2416), + [anon_sym_constexpr] = ACTIONS(2416), + [anon_sym_volatile] = ACTIONS(2416), + [anon_sym_restrict] = ACTIONS(2416), + [anon_sym___restrict__] = ACTIONS(2416), + [anon_sym__Atomic] = ACTIONS(2416), + [anon_sym__Noreturn] = ACTIONS(2416), + [anon_sym__Nonnull] = ACTIONS(2416), + [anon_sym_nullable] = ACTIONS(2416), + [anon_sym__Complex] = ACTIONS(2416), + [anon_sym__Nullable] = ACTIONS(2416), + [anon_sym__Nullable_result] = ACTIONS(2416), + [anon_sym__Null_unspecified] = ACTIONS(2416), + [anon_sym___autoreleasing] = ACTIONS(2416), + [anon_sym___block] = ACTIONS(2416), + [anon_sym___bridge] = ACTIONS(2416), + [anon_sym___bridge_retained] = ACTIONS(2416), + [anon_sym___bridge_transfer] = ACTIONS(2416), + [anon_sym___complex] = ACTIONS(2416), + [anon_sym___const] = ACTIONS(2416), + [anon_sym___imag] = ACTIONS(2416), + [anon_sym___kindof] = ACTIONS(2416), + [anon_sym___nonnull] = ACTIONS(2416), + [anon_sym___nullable] = ACTIONS(2416), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2416), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2416), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2416), + [anon_sym___real] = ACTIONS(2416), + [anon_sym___strong] = ACTIONS(2416), + [anon_sym___unsafe_unretained] = ACTIONS(2416), + [anon_sym___unused] = ACTIONS(2416), + [anon_sym___weak] = ACTIONS(2416), + [anon_sym_alignas] = ACTIONS(2416), + [anon_sym__Alignas] = ACTIONS(2416), + [sym_primitive_type] = ACTIONS(2416), + [anon_sym_enum] = ACTIONS(2416), + [anon_sym_struct] = ACTIONS(2416), + [anon_sym_union] = ACTIONS(2416), + [anon_sym_if] = ACTIONS(2416), + [anon_sym_else] = ACTIONS(2416), + [anon_sym_switch] = ACTIONS(2416), + [anon_sym_case] = ACTIONS(2416), + [anon_sym_default] = ACTIONS(2416), + [anon_sym_while] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2416), + [anon_sym_for] = ACTIONS(2416), + [anon_sym_in] = ACTIONS(2416), + [anon_sym_return] = ACTIONS(2416), + [anon_sym_break] = ACTIONS(2416), + [anon_sym_continue] = ACTIONS(2416), + [anon_sym_goto] = ACTIONS(2416), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_sizeof] = ACTIONS(2416), + [anon_sym___alignof__] = ACTIONS(2416), + [anon_sym___alignof] = ACTIONS(2416), + [anon_sym__alignof] = ACTIONS(2416), + [anon_sym_alignof] = ACTIONS(2416), + [anon_sym__Alignof] = ACTIONS(2416), + [anon_sym_offsetof] = ACTIONS(2416), + [anon_sym__Generic] = ACTIONS(2416), + [anon_sym_asm] = ACTIONS(2416), + [anon_sym___asm__] = ACTIONS(2416), + [anon_sym___asm] = ACTIONS(2416), + [sym_number_literal] = ACTIONS(2418), + [anon_sym_L_SQUOTE] = ACTIONS(2418), + [anon_sym_u_SQUOTE] = ACTIONS(2418), + [anon_sym_U_SQUOTE] = ACTIONS(2418), + [anon_sym_u8_SQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_L_DQUOTE] = ACTIONS(2418), + [anon_sym_u_DQUOTE] = ACTIONS(2418), + [anon_sym_U_DQUOTE] = ACTIONS(2418), + [anon_sym_u8_DQUOTE] = ACTIONS(2418), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2416), + [anon_sym_nullptr] = ACTIONS(2416), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2416), + [anon_sym___typeof] = ACTIONS(2416), + [anon_sym_typeof] = ACTIONS(2416), + [anon_sym_ATimport] = ACTIONS(2418), + [aux_sym_preproc_undef_token1] = ACTIONS(2416), + [anon_sym_POUND] = ACTIONS(2416), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2416), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2416), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2416), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2416), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2416), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2416), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2416), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2416), + [anon_sym_NS_AVAILABLE] = ACTIONS(2416), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2416), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_API_AVAILABLE] = ACTIONS(2416), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_API_DEPRECATED] = ACTIONS(2416), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2416), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2416), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2416), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2416), + [anon_sym___deprecated_msg] = ACTIONS(2416), + [anon_sym___deprecated_enum_msg] = ACTIONS(2416), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2416), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2416), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2416), + [anon_sym_ATprotocol] = ACTIONS(2418), + [anon_sym_ATinterface] = ACTIONS(2418), + [anon_sym_ATimplementation] = ACTIONS(2418), + [anon_sym_ATcompatibility_alias] = ACTIONS(2418), + [anon_sym_ATtry] = ACTIONS(2418), + [anon_sym___try] = ACTIONS(2416), + [anon_sym_ATthrow] = ACTIONS(2418), + [anon_sym_ATselector] = ACTIONS(2418), + [anon_sym_ATavailable] = ACTIONS(2418), + [anon_sym___builtin_available] = ACTIONS(2416), + [anon_sym_va_arg] = ACTIONS(2416), + [anon_sym_ATencode] = ACTIONS(2418), + [anon_sym_ATsynchronized] = ACTIONS(2418), + [anon_sym_BOOL] = ACTIONS(2416), + [anon_sym_IMP] = ACTIONS(2416), + [anon_sym_SEL] = ACTIONS(2416), + [anon_sym_Class] = ACTIONS(2416), + [anon_sym_id] = ACTIONS(2416), + }, + [824] = { + [ts_builtin_sym_end] = ACTIONS(2422), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_include_token1] = ACTIONS(2420), + [aux_sym_preproc_include_token2] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2420), + [aux_sym_preproc_if_token1] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2420), + [sym_preproc_directive] = ACTIONS(2420), + [anon_sym_LPAREN2] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(2422), + [anon_sym_CARET] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym___extension__] = ACTIONS(2420), + [anon_sym_typedef] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym___attribute__] = ACTIONS(2420), + [anon_sym___attribute] = ACTIONS(2420), + [anon_sym_noreturn] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2422), + [anon_sym___declspec] = ACTIONS(2420), + [anon_sym___cdecl] = ACTIONS(2420), + [anon_sym___clrcall] = ACTIONS(2420), + [anon_sym___stdcall] = ACTIONS(2420), + [anon_sym___fastcall] = ACTIONS(2420), + [anon_sym___thiscall] = ACTIONS(2420), + [anon_sym___vectorcall] = ACTIONS(2420), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_signed] = ACTIONS(2420), + [anon_sym_unsigned] = ACTIONS(2420), + [anon_sym_long] = ACTIONS(2420), + [anon_sym_short] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_ATautoreleasepool] = ACTIONS(2422), + [anon_sym_auto] = ACTIONS(2420), + [anon_sym_register] = ACTIONS(2420), + [anon_sym_inline] = ACTIONS(2420), + [anon_sym___inline] = ACTIONS(2420), + [anon_sym___inline__] = ACTIONS(2420), + [anon_sym___forceinline] = ACTIONS(2420), + [anon_sym_thread_local] = ACTIONS(2420), + [anon_sym___thread] = ACTIONS(2420), + [anon_sym_CG_EXTERN] = ACTIONS(2420), + [anon_sym_CG_INLINE] = ACTIONS(2420), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2420), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2420), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2420), + [anon_sym_IBOutlet] = ACTIONS(2420), + [anon_sym_IBInspectable] = ACTIONS(2420), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2420), + [anon_sym_NS_INLINE] = ACTIONS(2420), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2420), + [anon_sym_OBJC_EXPORT] = ACTIONS(2420), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2420), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [anon_sym_constexpr] = ACTIONS(2420), + [anon_sym_volatile] = ACTIONS(2420), + [anon_sym_restrict] = ACTIONS(2420), + [anon_sym___restrict__] = ACTIONS(2420), + [anon_sym__Atomic] = ACTIONS(2420), + [anon_sym__Noreturn] = ACTIONS(2420), + [anon_sym__Nonnull] = ACTIONS(2420), + [anon_sym_nullable] = ACTIONS(2420), + [anon_sym__Complex] = ACTIONS(2420), + [anon_sym__Nullable] = ACTIONS(2420), + [anon_sym__Nullable_result] = ACTIONS(2420), + [anon_sym__Null_unspecified] = ACTIONS(2420), + [anon_sym___autoreleasing] = ACTIONS(2420), + [anon_sym___block] = ACTIONS(2420), + [anon_sym___bridge] = ACTIONS(2420), + [anon_sym___bridge_retained] = ACTIONS(2420), + [anon_sym___bridge_transfer] = ACTIONS(2420), + [anon_sym___complex] = ACTIONS(2420), + [anon_sym___const] = ACTIONS(2420), + [anon_sym___imag] = ACTIONS(2420), + [anon_sym___kindof] = ACTIONS(2420), + [anon_sym___nonnull] = ACTIONS(2420), + [anon_sym___nullable] = ACTIONS(2420), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2420), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2420), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2420), + [anon_sym___real] = ACTIONS(2420), + [anon_sym___strong] = ACTIONS(2420), + [anon_sym___unsafe_unretained] = ACTIONS(2420), + [anon_sym___unused] = ACTIONS(2420), + [anon_sym___weak] = ACTIONS(2420), + [anon_sym_alignas] = ACTIONS(2420), + [anon_sym__Alignas] = ACTIONS(2420), + [sym_primitive_type] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), + [anon_sym_struct] = ACTIONS(2420), + [anon_sym_union] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_else] = ACTIONS(2420), + [anon_sym_switch] = ACTIONS(2420), + [anon_sym_case] = ACTIONS(2420), + [anon_sym_default] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_do] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_in] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_goto] = ACTIONS(2420), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_sizeof] = ACTIONS(2420), + [anon_sym___alignof__] = ACTIONS(2420), + [anon_sym___alignof] = ACTIONS(2420), + [anon_sym__alignof] = ACTIONS(2420), + [anon_sym_alignof] = ACTIONS(2420), + [anon_sym__Alignof] = ACTIONS(2420), + [anon_sym_offsetof] = ACTIONS(2420), + [anon_sym__Generic] = ACTIONS(2420), + [anon_sym_asm] = ACTIONS(2420), + [anon_sym___asm__] = ACTIONS(2420), + [anon_sym___asm] = ACTIONS(2420), + [sym_number_literal] = ACTIONS(2422), + [anon_sym_L_SQUOTE] = ACTIONS(2422), + [anon_sym_u_SQUOTE] = ACTIONS(2422), + [anon_sym_U_SQUOTE] = ACTIONS(2422), + [anon_sym_u8_SQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [anon_sym_AT] = ACTIONS(2420), + [anon_sym_DQUOTE] = ACTIONS(2422), + [anon_sym_L_DQUOTE] = ACTIONS(2422), + [anon_sym_u_DQUOTE] = ACTIONS(2422), + [anon_sym_U_DQUOTE] = ACTIONS(2422), + [anon_sym_u8_DQUOTE] = ACTIONS(2422), + [sym_true] = ACTIONS(2420), + [sym_false] = ACTIONS(2420), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2420), + [anon_sym___typeof] = ACTIONS(2420), + [anon_sym_typeof] = ACTIONS(2420), + [anon_sym_ATimport] = ACTIONS(2422), + [aux_sym_preproc_undef_token1] = ACTIONS(2420), + [anon_sym_POUND] = ACTIONS(2420), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2420), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2420), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2420), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2420), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2420), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2420), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2420), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2420), + [anon_sym_NS_AVAILABLE] = ACTIONS(2420), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2420), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_API_AVAILABLE] = ACTIONS(2420), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_API_DEPRECATED] = ACTIONS(2420), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2420), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2420), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2420), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2420), + [anon_sym___deprecated_msg] = ACTIONS(2420), + [anon_sym___deprecated_enum_msg] = ACTIONS(2420), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2420), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2420), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2420), + [anon_sym_ATprotocol] = ACTIONS(2422), + [anon_sym_ATinterface] = ACTIONS(2422), + [anon_sym_ATimplementation] = ACTIONS(2422), + [anon_sym_ATcompatibility_alias] = ACTIONS(2422), + [anon_sym_ATtry] = ACTIONS(2422), + [anon_sym___try] = ACTIONS(2420), + [anon_sym_ATthrow] = ACTIONS(2422), + [anon_sym_ATselector] = ACTIONS(2422), + [anon_sym_ATavailable] = ACTIONS(2422), + [anon_sym___builtin_available] = ACTIONS(2420), + [anon_sym_va_arg] = ACTIONS(2420), + [anon_sym_ATencode] = ACTIONS(2422), + [anon_sym_ATsynchronized] = ACTIONS(2422), + [anon_sym_BOOL] = ACTIONS(2420), + [anon_sym_IMP] = ACTIONS(2420), + [anon_sym_SEL] = ACTIONS(2420), + [anon_sym_Class] = ACTIONS(2420), + [anon_sym_id] = ACTIONS(2420), + }, + [825] = { + [ts_builtin_sym_end] = ACTIONS(2476), + [sym_identifier] = ACTIONS(2474), + [aux_sym_preproc_include_token1] = ACTIONS(2474), + [aux_sym_preproc_include_token2] = ACTIONS(2474), + [aux_sym_preproc_def_token1] = ACTIONS(2474), + [aux_sym_preproc_if_token1] = ACTIONS(2474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2474), + [sym_preproc_directive] = ACTIONS(2474), + [anon_sym_LPAREN2] = ACTIONS(2476), + [anon_sym_BANG] = ACTIONS(2476), + [anon_sym_TILDE] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2474), + [anon_sym_PLUS] = ACTIONS(2474), + [anon_sym_STAR] = ACTIONS(2476), + [anon_sym_CARET] = ACTIONS(2476), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2476), + [anon_sym___extension__] = ACTIONS(2474), + [anon_sym_typedef] = ACTIONS(2474), + [anon_sym_extern] = ACTIONS(2474), + [anon_sym___attribute__] = ACTIONS(2474), + [anon_sym___attribute] = ACTIONS(2474), + [anon_sym_noreturn] = ACTIONS(2474), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym___declspec] = ACTIONS(2474), + [anon_sym___cdecl] = ACTIONS(2474), + [anon_sym___clrcall] = ACTIONS(2474), + [anon_sym___stdcall] = ACTIONS(2474), + [anon_sym___fastcall] = ACTIONS(2474), + [anon_sym___thiscall] = ACTIONS(2474), + [anon_sym___vectorcall] = ACTIONS(2474), + [anon_sym_LBRACE] = ACTIONS(2476), + [anon_sym_signed] = ACTIONS(2474), + [anon_sym_unsigned] = ACTIONS(2474), + [anon_sym_long] = ACTIONS(2474), + [anon_sym_short] = ACTIONS(2474), + [anon_sym_static] = ACTIONS(2474), + [anon_sym_ATautoreleasepool] = ACTIONS(2476), + [anon_sym_auto] = ACTIONS(2474), + [anon_sym_register] = ACTIONS(2474), + [anon_sym_inline] = ACTIONS(2474), + [anon_sym___inline] = ACTIONS(2474), + [anon_sym___inline__] = ACTIONS(2474), + [anon_sym___forceinline] = ACTIONS(2474), + [anon_sym_thread_local] = ACTIONS(2474), + [anon_sym___thread] = ACTIONS(2474), + [anon_sym_CG_EXTERN] = ACTIONS(2474), + [anon_sym_CG_INLINE] = ACTIONS(2474), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2474), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2474), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2474), + [anon_sym_IBOutlet] = ACTIONS(2474), + [anon_sym_IBInspectable] = ACTIONS(2474), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2474), + [anon_sym_NS_INLINE] = ACTIONS(2474), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2474), + [anon_sym_OBJC_EXPORT] = ACTIONS(2474), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2474), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2474), + [anon_sym_const] = ACTIONS(2474), + [anon_sym_constexpr] = ACTIONS(2474), + [anon_sym_volatile] = ACTIONS(2474), + [anon_sym_restrict] = ACTIONS(2474), + [anon_sym___restrict__] = ACTIONS(2474), + [anon_sym__Atomic] = ACTIONS(2474), + [anon_sym__Noreturn] = ACTIONS(2474), + [anon_sym__Nonnull] = ACTIONS(2474), + [anon_sym_nullable] = ACTIONS(2474), + [anon_sym__Complex] = ACTIONS(2474), + [anon_sym__Nullable] = ACTIONS(2474), + [anon_sym__Nullable_result] = ACTIONS(2474), + [anon_sym__Null_unspecified] = ACTIONS(2474), + [anon_sym___autoreleasing] = ACTIONS(2474), + [anon_sym___block] = ACTIONS(2474), + [anon_sym___bridge] = ACTIONS(2474), + [anon_sym___bridge_retained] = ACTIONS(2474), + [anon_sym___bridge_transfer] = ACTIONS(2474), + [anon_sym___complex] = ACTIONS(2474), + [anon_sym___const] = ACTIONS(2474), + [anon_sym___imag] = ACTIONS(2474), + [anon_sym___kindof] = ACTIONS(2474), + [anon_sym___nonnull] = ACTIONS(2474), + [anon_sym___nullable] = ACTIONS(2474), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2474), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2474), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2474), + [anon_sym___real] = ACTIONS(2474), + [anon_sym___strong] = ACTIONS(2474), + [anon_sym___unsafe_unretained] = ACTIONS(2474), + [anon_sym___unused] = ACTIONS(2474), + [anon_sym___weak] = ACTIONS(2474), + [anon_sym_alignas] = ACTIONS(2474), + [anon_sym__Alignas] = ACTIONS(2474), + [sym_primitive_type] = ACTIONS(2474), + [anon_sym_enum] = ACTIONS(2474), + [anon_sym_struct] = ACTIONS(2474), + [anon_sym_union] = ACTIONS(2474), + [anon_sym_if] = ACTIONS(2474), + [anon_sym_else] = ACTIONS(2474), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_case] = ACTIONS(2474), + [anon_sym_default] = ACTIONS(2474), + [anon_sym_while] = ACTIONS(2474), + [anon_sym_do] = ACTIONS(2474), + [anon_sym_for] = ACTIONS(2474), + [anon_sym_in] = ACTIONS(2474), + [anon_sym_return] = ACTIONS(2474), + [anon_sym_break] = ACTIONS(2474), + [anon_sym_continue] = ACTIONS(2474), + [anon_sym_goto] = ACTIONS(2474), + [anon_sym_DASH_DASH] = ACTIONS(2476), + [anon_sym_PLUS_PLUS] = ACTIONS(2476), + [anon_sym_sizeof] = ACTIONS(2474), + [anon_sym___alignof__] = ACTIONS(2474), + [anon_sym___alignof] = ACTIONS(2474), + [anon_sym__alignof] = ACTIONS(2474), + [anon_sym_alignof] = ACTIONS(2474), + [anon_sym__Alignof] = ACTIONS(2474), + [anon_sym_offsetof] = ACTIONS(2474), + [anon_sym__Generic] = ACTIONS(2474), + [anon_sym_asm] = ACTIONS(2474), + [anon_sym___asm__] = ACTIONS(2474), + [anon_sym___asm] = ACTIONS(2474), + [sym_number_literal] = ACTIONS(2476), + [anon_sym_L_SQUOTE] = ACTIONS(2476), + [anon_sym_u_SQUOTE] = ACTIONS(2476), + [anon_sym_U_SQUOTE] = ACTIONS(2476), + [anon_sym_u8_SQUOTE] = ACTIONS(2476), + [anon_sym_SQUOTE] = ACTIONS(2476), + [anon_sym_AT] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_L_DQUOTE] = ACTIONS(2476), + [anon_sym_u_DQUOTE] = ACTIONS(2476), + [anon_sym_U_DQUOTE] = ACTIONS(2476), + [anon_sym_u8_DQUOTE] = ACTIONS(2476), + [sym_true] = ACTIONS(2474), + [sym_false] = ACTIONS(2474), + [anon_sym_NULL] = ACTIONS(2474), + [anon_sym_nullptr] = ACTIONS(2474), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2474), + [anon_sym___typeof] = ACTIONS(2474), + [anon_sym_typeof] = ACTIONS(2474), + [anon_sym_ATimport] = ACTIONS(2476), + [aux_sym_preproc_undef_token1] = ACTIONS(2474), + [anon_sym_POUND] = ACTIONS(2474), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2474), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2474), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2474), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2474), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2474), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2474), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2474), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2474), + [anon_sym_NS_AVAILABLE] = ACTIONS(2474), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2474), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_API_AVAILABLE] = ACTIONS(2474), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_API_DEPRECATED] = ACTIONS(2474), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2474), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2474), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2474), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2474), + [anon_sym___deprecated_msg] = ACTIONS(2474), + [anon_sym___deprecated_enum_msg] = ACTIONS(2474), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2474), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2474), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2474), + [anon_sym_ATprotocol] = ACTIONS(2476), + [anon_sym_ATinterface] = ACTIONS(2476), + [anon_sym_ATimplementation] = ACTIONS(2476), + [anon_sym_ATcompatibility_alias] = ACTIONS(2476), + [anon_sym_ATtry] = ACTIONS(2476), + [anon_sym___try] = ACTIONS(2474), + [anon_sym_ATthrow] = ACTIONS(2476), + [anon_sym_ATselector] = ACTIONS(2476), + [anon_sym_ATavailable] = ACTIONS(2476), + [anon_sym___builtin_available] = ACTIONS(2474), + [anon_sym_va_arg] = ACTIONS(2474), + [anon_sym_ATencode] = ACTIONS(2476), + [anon_sym_ATsynchronized] = ACTIONS(2476), + [anon_sym_BOOL] = ACTIONS(2474), + [anon_sym_IMP] = ACTIONS(2474), + [anon_sym_SEL] = ACTIONS(2474), + [anon_sym_Class] = ACTIONS(2474), + [anon_sym_id] = ACTIONS(2474), + }, + [826] = { + [ts_builtin_sym_end] = ACTIONS(2480), + [sym_identifier] = ACTIONS(2478), + [aux_sym_preproc_include_token1] = ACTIONS(2478), + [aux_sym_preproc_include_token2] = ACTIONS(2478), + [aux_sym_preproc_def_token1] = ACTIONS(2478), + [aux_sym_preproc_if_token1] = ACTIONS(2478), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2478), + [sym_preproc_directive] = ACTIONS(2478), + [anon_sym_LPAREN2] = ACTIONS(2480), + [anon_sym_BANG] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2478), + [anon_sym_PLUS] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2480), + [anon_sym_CARET] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2480), + [anon_sym_SEMI] = ACTIONS(2480), + [anon_sym___extension__] = ACTIONS(2478), + [anon_sym_typedef] = ACTIONS(2478), + [anon_sym_extern] = ACTIONS(2478), + [anon_sym___attribute__] = ACTIONS(2478), + [anon_sym___attribute] = ACTIONS(2478), + [anon_sym_noreturn] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2480), + [anon_sym___declspec] = ACTIONS(2478), + [anon_sym___cdecl] = ACTIONS(2478), + [anon_sym___clrcall] = ACTIONS(2478), + [anon_sym___stdcall] = ACTIONS(2478), + [anon_sym___fastcall] = ACTIONS(2478), + [anon_sym___thiscall] = ACTIONS(2478), + [anon_sym___vectorcall] = ACTIONS(2478), + [anon_sym_LBRACE] = ACTIONS(2480), + [anon_sym_signed] = ACTIONS(2478), + [anon_sym_unsigned] = ACTIONS(2478), + [anon_sym_long] = ACTIONS(2478), + [anon_sym_short] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_ATautoreleasepool] = ACTIONS(2480), + [anon_sym_auto] = ACTIONS(2478), + [anon_sym_register] = ACTIONS(2478), + [anon_sym_inline] = ACTIONS(2478), + [anon_sym___inline] = ACTIONS(2478), + [anon_sym___inline__] = ACTIONS(2478), + [anon_sym___forceinline] = ACTIONS(2478), + [anon_sym_thread_local] = ACTIONS(2478), + [anon_sym___thread] = ACTIONS(2478), + [anon_sym_CG_EXTERN] = ACTIONS(2478), + [anon_sym_CG_INLINE] = ACTIONS(2478), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2478), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2478), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2478), + [anon_sym_IBOutlet] = ACTIONS(2478), + [anon_sym_IBInspectable] = ACTIONS(2478), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2478), + [anon_sym_NS_INLINE] = ACTIONS(2478), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2478), + [anon_sym_OBJC_EXPORT] = ACTIONS(2478), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2478), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [anon_sym_constexpr] = ACTIONS(2478), + [anon_sym_volatile] = ACTIONS(2478), + [anon_sym_restrict] = ACTIONS(2478), + [anon_sym___restrict__] = ACTIONS(2478), + [anon_sym__Atomic] = ACTIONS(2478), + [anon_sym__Noreturn] = ACTIONS(2478), + [anon_sym__Nonnull] = ACTIONS(2478), + [anon_sym_nullable] = ACTIONS(2478), + [anon_sym__Complex] = ACTIONS(2478), + [anon_sym__Nullable] = ACTIONS(2478), + [anon_sym__Nullable_result] = ACTIONS(2478), + [anon_sym__Null_unspecified] = ACTIONS(2478), + [anon_sym___autoreleasing] = ACTIONS(2478), + [anon_sym___block] = ACTIONS(2478), + [anon_sym___bridge] = ACTIONS(2478), + [anon_sym___bridge_retained] = ACTIONS(2478), + [anon_sym___bridge_transfer] = ACTIONS(2478), + [anon_sym___complex] = ACTIONS(2478), + [anon_sym___const] = ACTIONS(2478), + [anon_sym___imag] = ACTIONS(2478), + [anon_sym___kindof] = ACTIONS(2478), + [anon_sym___nonnull] = ACTIONS(2478), + [anon_sym___nullable] = ACTIONS(2478), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2478), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2478), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2478), + [anon_sym___real] = ACTIONS(2478), + [anon_sym___strong] = ACTIONS(2478), + [anon_sym___unsafe_unretained] = ACTIONS(2478), + [anon_sym___unused] = ACTIONS(2478), + [anon_sym___weak] = ACTIONS(2478), + [anon_sym_alignas] = ACTIONS(2478), + [anon_sym__Alignas] = ACTIONS(2478), + [sym_primitive_type] = ACTIONS(2478), + [anon_sym_enum] = ACTIONS(2478), + [anon_sym_struct] = ACTIONS(2478), + [anon_sym_union] = ACTIONS(2478), + [anon_sym_if] = ACTIONS(2478), + [anon_sym_else] = ACTIONS(2478), + [anon_sym_switch] = ACTIONS(2478), + [anon_sym_case] = ACTIONS(2478), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2478), + [anon_sym_do] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_in] = ACTIONS(2478), + [anon_sym_return] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_goto] = ACTIONS(2478), + [anon_sym_DASH_DASH] = ACTIONS(2480), + [anon_sym_PLUS_PLUS] = ACTIONS(2480), + [anon_sym_sizeof] = ACTIONS(2478), + [anon_sym___alignof__] = ACTIONS(2478), + [anon_sym___alignof] = ACTIONS(2478), + [anon_sym__alignof] = ACTIONS(2478), + [anon_sym_alignof] = ACTIONS(2478), + [anon_sym__Alignof] = ACTIONS(2478), + [anon_sym_offsetof] = ACTIONS(2478), + [anon_sym__Generic] = ACTIONS(2478), + [anon_sym_asm] = ACTIONS(2478), + [anon_sym___asm__] = ACTIONS(2478), + [anon_sym___asm] = ACTIONS(2478), + [sym_number_literal] = ACTIONS(2480), + [anon_sym_L_SQUOTE] = ACTIONS(2480), + [anon_sym_u_SQUOTE] = ACTIONS(2480), + [anon_sym_U_SQUOTE] = ACTIONS(2480), + [anon_sym_u8_SQUOTE] = ACTIONS(2480), + [anon_sym_SQUOTE] = ACTIONS(2480), + [anon_sym_AT] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2480), + [anon_sym_L_DQUOTE] = ACTIONS(2480), + [anon_sym_u_DQUOTE] = ACTIONS(2480), + [anon_sym_U_DQUOTE] = ACTIONS(2480), + [anon_sym_u8_DQUOTE] = ACTIONS(2480), + [sym_true] = ACTIONS(2478), + [sym_false] = ACTIONS(2478), + [anon_sym_NULL] = ACTIONS(2478), + [anon_sym_nullptr] = ACTIONS(2478), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2478), + [anon_sym___typeof] = ACTIONS(2478), + [anon_sym_typeof] = ACTIONS(2478), + [anon_sym_ATimport] = ACTIONS(2480), + [aux_sym_preproc_undef_token1] = ACTIONS(2478), + [anon_sym_POUND] = ACTIONS(2478), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2478), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2478), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2478), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2478), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2478), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2478), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2478), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2478), + [anon_sym_NS_AVAILABLE] = ACTIONS(2478), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2478), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_API_AVAILABLE] = ACTIONS(2478), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_API_DEPRECATED] = ACTIONS(2478), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2478), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2478), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2478), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2478), + [anon_sym___deprecated_msg] = ACTIONS(2478), + [anon_sym___deprecated_enum_msg] = ACTIONS(2478), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2478), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2478), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2478), + [anon_sym_ATprotocol] = ACTIONS(2480), + [anon_sym_ATinterface] = ACTIONS(2480), + [anon_sym_ATimplementation] = ACTIONS(2480), + [anon_sym_ATcompatibility_alias] = ACTIONS(2480), + [anon_sym_ATtry] = ACTIONS(2480), + [anon_sym___try] = ACTIONS(2478), + [anon_sym_ATthrow] = ACTIONS(2480), + [anon_sym_ATselector] = ACTIONS(2480), + [anon_sym_ATavailable] = ACTIONS(2480), + [anon_sym___builtin_available] = ACTIONS(2478), + [anon_sym_va_arg] = ACTIONS(2478), + [anon_sym_ATencode] = ACTIONS(2480), + [anon_sym_ATsynchronized] = ACTIONS(2480), + [anon_sym_BOOL] = ACTIONS(2478), + [anon_sym_IMP] = ACTIONS(2478), + [anon_sym_SEL] = ACTIONS(2478), + [anon_sym_Class] = ACTIONS(2478), + [anon_sym_id] = ACTIONS(2478), + }, + [827] = { + [ts_builtin_sym_end] = ACTIONS(2484), + [sym_identifier] = ACTIONS(2482), + [aux_sym_preproc_include_token1] = ACTIONS(2482), + [aux_sym_preproc_include_token2] = ACTIONS(2482), + [aux_sym_preproc_def_token1] = ACTIONS(2482), + [aux_sym_preproc_if_token1] = ACTIONS(2482), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2482), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2482), + [sym_preproc_directive] = ACTIONS(2482), + [anon_sym_LPAREN2] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2484), + [anon_sym_TILDE] = ACTIONS(2484), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_STAR] = ACTIONS(2484), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym___extension__] = ACTIONS(2482), + [anon_sym_typedef] = ACTIONS(2482), + [anon_sym_extern] = ACTIONS(2482), + [anon_sym___attribute__] = ACTIONS(2482), + [anon_sym___attribute] = ACTIONS(2482), + [anon_sym_noreturn] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2484), + [anon_sym___declspec] = ACTIONS(2482), + [anon_sym___cdecl] = ACTIONS(2482), + [anon_sym___clrcall] = ACTIONS(2482), + [anon_sym___stdcall] = ACTIONS(2482), + [anon_sym___fastcall] = ACTIONS(2482), + [anon_sym___thiscall] = ACTIONS(2482), + [anon_sym___vectorcall] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_signed] = ACTIONS(2482), + [anon_sym_unsigned] = ACTIONS(2482), + [anon_sym_long] = ACTIONS(2482), + [anon_sym_short] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_ATautoreleasepool] = ACTIONS(2484), + [anon_sym_auto] = ACTIONS(2482), + [anon_sym_register] = ACTIONS(2482), + [anon_sym_inline] = ACTIONS(2482), + [anon_sym___inline] = ACTIONS(2482), + [anon_sym___inline__] = ACTIONS(2482), + [anon_sym___forceinline] = ACTIONS(2482), + [anon_sym_thread_local] = ACTIONS(2482), + [anon_sym___thread] = ACTIONS(2482), + [anon_sym_CG_EXTERN] = ACTIONS(2482), + [anon_sym_CG_INLINE] = ACTIONS(2482), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2482), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2482), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2482), + [anon_sym_IBOutlet] = ACTIONS(2482), + [anon_sym_IBInspectable] = ACTIONS(2482), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2482), + [anon_sym_NS_INLINE] = ACTIONS(2482), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2482), + [anon_sym_OBJC_EXPORT] = ACTIONS(2482), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2482), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2482), + [anon_sym_const] = ACTIONS(2482), + [anon_sym_constexpr] = ACTIONS(2482), + [anon_sym_volatile] = ACTIONS(2482), + [anon_sym_restrict] = ACTIONS(2482), + [anon_sym___restrict__] = ACTIONS(2482), + [anon_sym__Atomic] = ACTIONS(2482), + [anon_sym__Noreturn] = ACTIONS(2482), + [anon_sym__Nonnull] = ACTIONS(2482), + [anon_sym_nullable] = ACTIONS(2482), + [anon_sym__Complex] = ACTIONS(2482), + [anon_sym__Nullable] = ACTIONS(2482), + [anon_sym__Nullable_result] = ACTIONS(2482), + [anon_sym__Null_unspecified] = ACTIONS(2482), + [anon_sym___autoreleasing] = ACTIONS(2482), + [anon_sym___block] = ACTIONS(2482), + [anon_sym___bridge] = ACTIONS(2482), + [anon_sym___bridge_retained] = ACTIONS(2482), + [anon_sym___bridge_transfer] = ACTIONS(2482), + [anon_sym___complex] = ACTIONS(2482), + [anon_sym___const] = ACTIONS(2482), + [anon_sym___imag] = ACTIONS(2482), + [anon_sym___kindof] = ACTIONS(2482), + [anon_sym___nonnull] = ACTIONS(2482), + [anon_sym___nullable] = ACTIONS(2482), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2482), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2482), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2482), + [anon_sym___real] = ACTIONS(2482), + [anon_sym___strong] = ACTIONS(2482), + [anon_sym___unsafe_unretained] = ACTIONS(2482), + [anon_sym___unused] = ACTIONS(2482), + [anon_sym___weak] = ACTIONS(2482), + [anon_sym_alignas] = ACTIONS(2482), + [anon_sym__Alignas] = ACTIONS(2482), + [sym_primitive_type] = ACTIONS(2482), + [anon_sym_enum] = ACTIONS(2482), + [anon_sym_struct] = ACTIONS(2482), + [anon_sym_union] = ACTIONS(2482), + [anon_sym_if] = ACTIONS(2482), + [anon_sym_else] = ACTIONS(2482), + [anon_sym_switch] = ACTIONS(2482), + [anon_sym_case] = ACTIONS(2482), + [anon_sym_default] = ACTIONS(2482), + [anon_sym_while] = ACTIONS(2482), + [anon_sym_do] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2482), + [anon_sym_continue] = ACTIONS(2482), + [anon_sym_goto] = ACTIONS(2482), + [anon_sym_DASH_DASH] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(2484), + [anon_sym_sizeof] = ACTIONS(2482), + [anon_sym___alignof__] = ACTIONS(2482), + [anon_sym___alignof] = ACTIONS(2482), + [anon_sym__alignof] = ACTIONS(2482), + [anon_sym_alignof] = ACTIONS(2482), + [anon_sym__Alignof] = ACTIONS(2482), + [anon_sym_offsetof] = ACTIONS(2482), + [anon_sym__Generic] = ACTIONS(2482), + [anon_sym_asm] = ACTIONS(2482), + [anon_sym___asm__] = ACTIONS(2482), + [anon_sym___asm] = ACTIONS(2482), + [sym_number_literal] = ACTIONS(2484), + [anon_sym_L_SQUOTE] = ACTIONS(2484), + [anon_sym_u_SQUOTE] = ACTIONS(2484), + [anon_sym_U_SQUOTE] = ACTIONS(2484), + [anon_sym_u8_SQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [anon_sym_AT] = ACTIONS(2482), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_L_DQUOTE] = ACTIONS(2484), + [anon_sym_u_DQUOTE] = ACTIONS(2484), + [anon_sym_U_DQUOTE] = ACTIONS(2484), + [anon_sym_u8_DQUOTE] = ACTIONS(2484), + [sym_true] = ACTIONS(2482), + [sym_false] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_nullptr] = ACTIONS(2482), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2482), + [anon_sym___typeof] = ACTIONS(2482), + [anon_sym_typeof] = ACTIONS(2482), + [anon_sym_ATimport] = ACTIONS(2484), + [aux_sym_preproc_undef_token1] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2482), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2482), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2482), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2482), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2482), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2482), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2482), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2482), + [anon_sym_NS_AVAILABLE] = ACTIONS(2482), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2482), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_API_AVAILABLE] = ACTIONS(2482), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_API_DEPRECATED] = ACTIONS(2482), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2482), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2482), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2482), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2482), + [anon_sym___deprecated_msg] = ACTIONS(2482), + [anon_sym___deprecated_enum_msg] = ACTIONS(2482), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2482), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2482), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2482), + [anon_sym_ATprotocol] = ACTIONS(2484), + [anon_sym_ATinterface] = ACTIONS(2484), + [anon_sym_ATimplementation] = ACTIONS(2484), + [anon_sym_ATcompatibility_alias] = ACTIONS(2484), + [anon_sym_ATtry] = ACTIONS(2484), + [anon_sym___try] = ACTIONS(2482), + [anon_sym_ATthrow] = ACTIONS(2484), + [anon_sym_ATselector] = ACTIONS(2484), + [anon_sym_ATavailable] = ACTIONS(2484), + [anon_sym___builtin_available] = ACTIONS(2482), + [anon_sym_va_arg] = ACTIONS(2482), + [anon_sym_ATencode] = ACTIONS(2484), + [anon_sym_ATsynchronized] = ACTIONS(2484), + [anon_sym_BOOL] = ACTIONS(2482), + [anon_sym_IMP] = ACTIONS(2482), + [anon_sym_SEL] = ACTIONS(2482), + [anon_sym_Class] = ACTIONS(2482), + [anon_sym_id] = ACTIONS(2482), + }, + [828] = { + [ts_builtin_sym_end] = ACTIONS(2488), + [sym_identifier] = ACTIONS(2486), + [aux_sym_preproc_include_token1] = ACTIONS(2486), + [aux_sym_preproc_include_token2] = ACTIONS(2486), + [aux_sym_preproc_def_token1] = ACTIONS(2486), + [aux_sym_preproc_if_token1] = ACTIONS(2486), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2486), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2486), + [sym_preproc_directive] = ACTIONS(2486), + [anon_sym_LPAREN2] = ACTIONS(2488), + [anon_sym_BANG] = ACTIONS(2488), + [anon_sym_TILDE] = ACTIONS(2488), + [anon_sym_DASH] = ACTIONS(2486), + [anon_sym_PLUS] = ACTIONS(2486), + [anon_sym_STAR] = ACTIONS(2488), + [anon_sym_CARET] = ACTIONS(2488), + [anon_sym_AMP] = ACTIONS(2488), + [anon_sym_SEMI] = ACTIONS(2488), + [anon_sym___extension__] = ACTIONS(2486), + [anon_sym_typedef] = ACTIONS(2486), + [anon_sym_extern] = ACTIONS(2486), + [anon_sym___attribute__] = ACTIONS(2486), + [anon_sym___attribute] = ACTIONS(2486), + [anon_sym_noreturn] = ACTIONS(2486), + [anon_sym_LBRACK] = ACTIONS(2488), + [anon_sym___declspec] = ACTIONS(2486), + [anon_sym___cdecl] = ACTIONS(2486), + [anon_sym___clrcall] = ACTIONS(2486), + [anon_sym___stdcall] = ACTIONS(2486), + [anon_sym___fastcall] = ACTIONS(2486), + [anon_sym___thiscall] = ACTIONS(2486), + [anon_sym___vectorcall] = ACTIONS(2486), + [anon_sym_LBRACE] = ACTIONS(2488), + [anon_sym_signed] = ACTIONS(2486), + [anon_sym_unsigned] = ACTIONS(2486), + [anon_sym_long] = ACTIONS(2486), + [anon_sym_short] = ACTIONS(2486), + [anon_sym_static] = ACTIONS(2486), + [anon_sym_ATautoreleasepool] = ACTIONS(2488), + [anon_sym_auto] = ACTIONS(2486), + [anon_sym_register] = ACTIONS(2486), + [anon_sym_inline] = ACTIONS(2486), + [anon_sym___inline] = ACTIONS(2486), + [anon_sym___inline__] = ACTIONS(2486), + [anon_sym___forceinline] = ACTIONS(2486), + [anon_sym_thread_local] = ACTIONS(2486), + [anon_sym___thread] = ACTIONS(2486), + [anon_sym_CG_EXTERN] = ACTIONS(2486), + [anon_sym_CG_INLINE] = ACTIONS(2486), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2486), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2486), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2486), + [anon_sym_IBOutlet] = ACTIONS(2486), + [anon_sym_IBInspectable] = ACTIONS(2486), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2486), + [anon_sym_NS_INLINE] = ACTIONS(2486), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2486), + [anon_sym_OBJC_EXPORT] = ACTIONS(2486), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2486), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2486), + [anon_sym_const] = ACTIONS(2486), + [anon_sym_constexpr] = ACTIONS(2486), + [anon_sym_volatile] = ACTIONS(2486), + [anon_sym_restrict] = ACTIONS(2486), + [anon_sym___restrict__] = ACTIONS(2486), + [anon_sym__Atomic] = ACTIONS(2486), + [anon_sym__Noreturn] = ACTIONS(2486), + [anon_sym__Nonnull] = ACTIONS(2486), + [anon_sym_nullable] = ACTIONS(2486), + [anon_sym__Complex] = ACTIONS(2486), + [anon_sym__Nullable] = ACTIONS(2486), + [anon_sym__Nullable_result] = ACTIONS(2486), + [anon_sym__Null_unspecified] = ACTIONS(2486), + [anon_sym___autoreleasing] = ACTIONS(2486), + [anon_sym___block] = ACTIONS(2486), + [anon_sym___bridge] = ACTIONS(2486), + [anon_sym___bridge_retained] = ACTIONS(2486), + [anon_sym___bridge_transfer] = ACTIONS(2486), + [anon_sym___complex] = ACTIONS(2486), + [anon_sym___const] = ACTIONS(2486), + [anon_sym___imag] = ACTIONS(2486), + [anon_sym___kindof] = ACTIONS(2486), + [anon_sym___nonnull] = ACTIONS(2486), + [anon_sym___nullable] = ACTIONS(2486), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2486), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2486), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2486), + [anon_sym___real] = ACTIONS(2486), + [anon_sym___strong] = ACTIONS(2486), + [anon_sym___unsafe_unretained] = ACTIONS(2486), + [anon_sym___unused] = ACTIONS(2486), + [anon_sym___weak] = ACTIONS(2486), + [anon_sym_alignas] = ACTIONS(2486), + [anon_sym__Alignas] = ACTIONS(2486), + [sym_primitive_type] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2486), + [anon_sym_struct] = ACTIONS(2486), + [anon_sym_union] = ACTIONS(2486), + [anon_sym_if] = ACTIONS(2486), + [anon_sym_else] = ACTIONS(2486), + [anon_sym_switch] = ACTIONS(2486), + [anon_sym_case] = ACTIONS(2486), + [anon_sym_default] = ACTIONS(2486), + [anon_sym_while] = ACTIONS(2486), + [anon_sym_do] = ACTIONS(2486), + [anon_sym_for] = ACTIONS(2486), + [anon_sym_in] = ACTIONS(2486), + [anon_sym_return] = ACTIONS(2486), + [anon_sym_break] = ACTIONS(2486), + [anon_sym_continue] = ACTIONS(2486), + [anon_sym_goto] = ACTIONS(2486), + [anon_sym_DASH_DASH] = ACTIONS(2488), + [anon_sym_PLUS_PLUS] = ACTIONS(2488), + [anon_sym_sizeof] = ACTIONS(2486), + [anon_sym___alignof__] = ACTIONS(2486), + [anon_sym___alignof] = ACTIONS(2486), + [anon_sym__alignof] = ACTIONS(2486), + [anon_sym_alignof] = ACTIONS(2486), + [anon_sym__Alignof] = ACTIONS(2486), + [anon_sym_offsetof] = ACTIONS(2486), + [anon_sym__Generic] = ACTIONS(2486), + [anon_sym_asm] = ACTIONS(2486), + [anon_sym___asm__] = ACTIONS(2486), + [anon_sym___asm] = ACTIONS(2486), + [sym_number_literal] = ACTIONS(2488), + [anon_sym_L_SQUOTE] = ACTIONS(2488), + [anon_sym_u_SQUOTE] = ACTIONS(2488), + [anon_sym_U_SQUOTE] = ACTIONS(2488), + [anon_sym_u8_SQUOTE] = ACTIONS(2488), + [anon_sym_SQUOTE] = ACTIONS(2488), + [anon_sym_AT] = ACTIONS(2486), + [anon_sym_DQUOTE] = ACTIONS(2488), + [anon_sym_L_DQUOTE] = ACTIONS(2488), + [anon_sym_u_DQUOTE] = ACTIONS(2488), + [anon_sym_U_DQUOTE] = ACTIONS(2488), + [anon_sym_u8_DQUOTE] = ACTIONS(2488), + [sym_true] = ACTIONS(2486), + [sym_false] = ACTIONS(2486), + [anon_sym_NULL] = ACTIONS(2486), + [anon_sym_nullptr] = ACTIONS(2486), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2486), + [anon_sym___typeof] = ACTIONS(2486), + [anon_sym_typeof] = ACTIONS(2486), + [anon_sym_ATimport] = ACTIONS(2488), + [aux_sym_preproc_undef_token1] = ACTIONS(2486), + [anon_sym_POUND] = ACTIONS(2486), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2486), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2486), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2486), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2486), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2486), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2486), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2486), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2486), + [anon_sym_NS_AVAILABLE] = ACTIONS(2486), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2486), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_API_AVAILABLE] = ACTIONS(2486), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_API_DEPRECATED] = ACTIONS(2486), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2486), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2486), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2486), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2486), + [anon_sym___deprecated_msg] = ACTIONS(2486), + [anon_sym___deprecated_enum_msg] = ACTIONS(2486), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2486), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2486), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2486), + [anon_sym_ATprotocol] = ACTIONS(2488), + [anon_sym_ATinterface] = ACTIONS(2488), + [anon_sym_ATimplementation] = ACTIONS(2488), + [anon_sym_ATcompatibility_alias] = ACTIONS(2488), + [anon_sym_ATtry] = ACTIONS(2488), + [anon_sym___try] = ACTIONS(2486), + [anon_sym_ATthrow] = ACTIONS(2488), + [anon_sym_ATselector] = ACTIONS(2488), + [anon_sym_ATavailable] = ACTIONS(2488), + [anon_sym___builtin_available] = ACTIONS(2486), + [anon_sym_va_arg] = ACTIONS(2486), + [anon_sym_ATencode] = ACTIONS(2488), + [anon_sym_ATsynchronized] = ACTIONS(2488), + [anon_sym_BOOL] = ACTIONS(2486), + [anon_sym_IMP] = ACTIONS(2486), + [anon_sym_SEL] = ACTIONS(2486), + [anon_sym_Class] = ACTIONS(2486), + [anon_sym_id] = ACTIONS(2486), + }, + [829] = { + [ts_builtin_sym_end] = ACTIONS(2492), + [sym_identifier] = ACTIONS(2490), + [aux_sym_preproc_include_token1] = ACTIONS(2490), + [aux_sym_preproc_include_token2] = ACTIONS(2490), + [aux_sym_preproc_def_token1] = ACTIONS(2490), + [aux_sym_preproc_if_token1] = ACTIONS(2490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2490), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2490), + [sym_preproc_directive] = ACTIONS(2490), + [anon_sym_LPAREN2] = ACTIONS(2492), + [anon_sym_BANG] = ACTIONS(2492), + [anon_sym_TILDE] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2490), + [anon_sym_PLUS] = ACTIONS(2490), + [anon_sym_STAR] = ACTIONS(2492), + [anon_sym_CARET] = ACTIONS(2492), + [anon_sym_AMP] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym___extension__] = ACTIONS(2490), + [anon_sym_typedef] = ACTIONS(2490), + [anon_sym_extern] = ACTIONS(2490), + [anon_sym___attribute__] = ACTIONS(2490), + [anon_sym___attribute] = ACTIONS(2490), + [anon_sym_noreturn] = ACTIONS(2490), + [anon_sym_LBRACK] = ACTIONS(2492), + [anon_sym___declspec] = ACTIONS(2490), + [anon_sym___cdecl] = ACTIONS(2490), + [anon_sym___clrcall] = ACTIONS(2490), + [anon_sym___stdcall] = ACTIONS(2490), + [anon_sym___fastcall] = ACTIONS(2490), + [anon_sym___thiscall] = ACTIONS(2490), + [anon_sym___vectorcall] = ACTIONS(2490), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_signed] = ACTIONS(2490), + [anon_sym_unsigned] = ACTIONS(2490), + [anon_sym_long] = ACTIONS(2490), + [anon_sym_short] = ACTIONS(2490), + [anon_sym_static] = ACTIONS(2490), + [anon_sym_ATautoreleasepool] = ACTIONS(2492), + [anon_sym_auto] = ACTIONS(2490), + [anon_sym_register] = ACTIONS(2490), + [anon_sym_inline] = ACTIONS(2490), + [anon_sym___inline] = ACTIONS(2490), + [anon_sym___inline__] = ACTIONS(2490), + [anon_sym___forceinline] = ACTIONS(2490), + [anon_sym_thread_local] = ACTIONS(2490), + [anon_sym___thread] = ACTIONS(2490), + [anon_sym_CG_EXTERN] = ACTIONS(2490), + [anon_sym_CG_INLINE] = ACTIONS(2490), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2490), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2490), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2490), + [anon_sym_IBOutlet] = ACTIONS(2490), + [anon_sym_IBInspectable] = ACTIONS(2490), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2490), + [anon_sym_NS_INLINE] = ACTIONS(2490), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2490), + [anon_sym_OBJC_EXPORT] = ACTIONS(2490), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2490), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(2490), + [anon_sym_constexpr] = ACTIONS(2490), + [anon_sym_volatile] = ACTIONS(2490), + [anon_sym_restrict] = ACTIONS(2490), + [anon_sym___restrict__] = ACTIONS(2490), + [anon_sym__Atomic] = ACTIONS(2490), + [anon_sym__Noreturn] = ACTIONS(2490), + [anon_sym__Nonnull] = ACTIONS(2490), + [anon_sym_nullable] = ACTIONS(2490), + [anon_sym__Complex] = ACTIONS(2490), + [anon_sym__Nullable] = ACTIONS(2490), + [anon_sym__Nullable_result] = ACTIONS(2490), + [anon_sym__Null_unspecified] = ACTIONS(2490), + [anon_sym___autoreleasing] = ACTIONS(2490), + [anon_sym___block] = ACTIONS(2490), + [anon_sym___bridge] = ACTIONS(2490), + [anon_sym___bridge_retained] = ACTIONS(2490), + [anon_sym___bridge_transfer] = ACTIONS(2490), + [anon_sym___complex] = ACTIONS(2490), + [anon_sym___const] = ACTIONS(2490), + [anon_sym___imag] = ACTIONS(2490), + [anon_sym___kindof] = ACTIONS(2490), + [anon_sym___nonnull] = ACTIONS(2490), + [anon_sym___nullable] = ACTIONS(2490), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2490), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2490), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2490), + [anon_sym___real] = ACTIONS(2490), + [anon_sym___strong] = ACTIONS(2490), + [anon_sym___unsafe_unretained] = ACTIONS(2490), + [anon_sym___unused] = ACTIONS(2490), + [anon_sym___weak] = ACTIONS(2490), + [anon_sym_alignas] = ACTIONS(2490), + [anon_sym__Alignas] = ACTIONS(2490), + [sym_primitive_type] = ACTIONS(2490), + [anon_sym_enum] = ACTIONS(2490), + [anon_sym_struct] = ACTIONS(2490), + [anon_sym_union] = ACTIONS(2490), + [anon_sym_if] = ACTIONS(2490), + [anon_sym_else] = ACTIONS(2490), + [anon_sym_switch] = ACTIONS(2490), + [anon_sym_case] = ACTIONS(2490), + [anon_sym_default] = ACTIONS(2490), + [anon_sym_while] = ACTIONS(2490), + [anon_sym_do] = ACTIONS(2490), + [anon_sym_for] = ACTIONS(2490), + [anon_sym_in] = ACTIONS(2490), + [anon_sym_return] = ACTIONS(2490), + [anon_sym_break] = ACTIONS(2490), + [anon_sym_continue] = ACTIONS(2490), + [anon_sym_goto] = ACTIONS(2490), + [anon_sym_DASH_DASH] = ACTIONS(2492), + [anon_sym_PLUS_PLUS] = ACTIONS(2492), + [anon_sym_sizeof] = ACTIONS(2490), + [anon_sym___alignof__] = ACTIONS(2490), + [anon_sym___alignof] = ACTIONS(2490), + [anon_sym__alignof] = ACTIONS(2490), + [anon_sym_alignof] = ACTIONS(2490), + [anon_sym__Alignof] = ACTIONS(2490), + [anon_sym_offsetof] = ACTIONS(2490), + [anon_sym__Generic] = ACTIONS(2490), + [anon_sym_asm] = ACTIONS(2490), + [anon_sym___asm__] = ACTIONS(2490), + [anon_sym___asm] = ACTIONS(2490), + [sym_number_literal] = ACTIONS(2492), + [anon_sym_L_SQUOTE] = ACTIONS(2492), + [anon_sym_u_SQUOTE] = ACTIONS(2492), + [anon_sym_U_SQUOTE] = ACTIONS(2492), + [anon_sym_u8_SQUOTE] = ACTIONS(2492), + [anon_sym_SQUOTE] = ACTIONS(2492), + [anon_sym_AT] = ACTIONS(2490), + [anon_sym_DQUOTE] = ACTIONS(2492), + [anon_sym_L_DQUOTE] = ACTIONS(2492), + [anon_sym_u_DQUOTE] = ACTIONS(2492), + [anon_sym_U_DQUOTE] = ACTIONS(2492), + [anon_sym_u8_DQUOTE] = ACTIONS(2492), + [sym_true] = ACTIONS(2490), + [sym_false] = ACTIONS(2490), + [anon_sym_NULL] = ACTIONS(2490), + [anon_sym_nullptr] = ACTIONS(2490), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2490), + [anon_sym___typeof] = ACTIONS(2490), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_ATimport] = ACTIONS(2492), + [aux_sym_preproc_undef_token1] = ACTIONS(2490), + [anon_sym_POUND] = ACTIONS(2490), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2490), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2490), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2490), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2490), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2490), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2490), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2490), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2490), + [anon_sym_NS_AVAILABLE] = ACTIONS(2490), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2490), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_API_AVAILABLE] = ACTIONS(2490), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_API_DEPRECATED] = ACTIONS(2490), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2490), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2490), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2490), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2490), + [anon_sym___deprecated_msg] = ACTIONS(2490), + [anon_sym___deprecated_enum_msg] = ACTIONS(2490), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2490), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2490), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2490), + [anon_sym_ATprotocol] = ACTIONS(2492), + [anon_sym_ATinterface] = ACTIONS(2492), + [anon_sym_ATimplementation] = ACTIONS(2492), + [anon_sym_ATcompatibility_alias] = ACTIONS(2492), + [anon_sym_ATtry] = ACTIONS(2492), + [anon_sym___try] = ACTIONS(2490), + [anon_sym_ATthrow] = ACTIONS(2492), + [anon_sym_ATselector] = ACTIONS(2492), + [anon_sym_ATavailable] = ACTIONS(2492), + [anon_sym___builtin_available] = ACTIONS(2490), + [anon_sym_va_arg] = ACTIONS(2490), + [anon_sym_ATencode] = ACTIONS(2492), + [anon_sym_ATsynchronized] = ACTIONS(2492), + [anon_sym_BOOL] = ACTIONS(2490), + [anon_sym_IMP] = ACTIONS(2490), + [anon_sym_SEL] = ACTIONS(2490), + [anon_sym_Class] = ACTIONS(2490), + [anon_sym_id] = ACTIONS(2490), + }, + [830] = { + [ts_builtin_sym_end] = ACTIONS(2496), + [sym_identifier] = ACTIONS(2494), + [aux_sym_preproc_include_token1] = ACTIONS(2494), + [aux_sym_preproc_include_token2] = ACTIONS(2494), + [aux_sym_preproc_def_token1] = ACTIONS(2494), + [aux_sym_preproc_if_token1] = ACTIONS(2494), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2494), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2494), + [sym_preproc_directive] = ACTIONS(2494), + [anon_sym_LPAREN2] = ACTIONS(2496), + [anon_sym_BANG] = ACTIONS(2496), + [anon_sym_TILDE] = ACTIONS(2496), + [anon_sym_DASH] = ACTIONS(2494), + [anon_sym_PLUS] = ACTIONS(2494), + [anon_sym_STAR] = ACTIONS(2496), + [anon_sym_CARET] = ACTIONS(2496), + [anon_sym_AMP] = ACTIONS(2496), + [anon_sym_SEMI] = ACTIONS(2496), + [anon_sym___extension__] = ACTIONS(2494), + [anon_sym_typedef] = ACTIONS(2494), + [anon_sym_extern] = ACTIONS(2494), + [anon_sym___attribute__] = ACTIONS(2494), + [anon_sym___attribute] = ACTIONS(2494), + [anon_sym_noreturn] = ACTIONS(2494), + [anon_sym_LBRACK] = ACTIONS(2496), + [anon_sym___declspec] = ACTIONS(2494), + [anon_sym___cdecl] = ACTIONS(2494), + [anon_sym___clrcall] = ACTIONS(2494), + [anon_sym___stdcall] = ACTIONS(2494), + [anon_sym___fastcall] = ACTIONS(2494), + [anon_sym___thiscall] = ACTIONS(2494), + [anon_sym___vectorcall] = ACTIONS(2494), + [anon_sym_LBRACE] = ACTIONS(2496), + [anon_sym_signed] = ACTIONS(2494), + [anon_sym_unsigned] = ACTIONS(2494), + [anon_sym_long] = ACTIONS(2494), + [anon_sym_short] = ACTIONS(2494), + [anon_sym_static] = ACTIONS(2494), + [anon_sym_ATautoreleasepool] = ACTIONS(2496), + [anon_sym_auto] = ACTIONS(2494), + [anon_sym_register] = ACTIONS(2494), + [anon_sym_inline] = ACTIONS(2494), + [anon_sym___inline] = ACTIONS(2494), + [anon_sym___inline__] = ACTIONS(2494), + [anon_sym___forceinline] = ACTIONS(2494), + [anon_sym_thread_local] = ACTIONS(2494), + [anon_sym___thread] = ACTIONS(2494), + [anon_sym_CG_EXTERN] = ACTIONS(2494), + [anon_sym_CG_INLINE] = ACTIONS(2494), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2494), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2494), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2494), + [anon_sym_IBOutlet] = ACTIONS(2494), + [anon_sym_IBInspectable] = ACTIONS(2494), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2494), + [anon_sym_NS_INLINE] = ACTIONS(2494), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2494), + [anon_sym_OBJC_EXPORT] = ACTIONS(2494), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2494), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2494), + [anon_sym_const] = ACTIONS(2494), + [anon_sym_constexpr] = ACTIONS(2494), + [anon_sym_volatile] = ACTIONS(2494), + [anon_sym_restrict] = ACTIONS(2494), + [anon_sym___restrict__] = ACTIONS(2494), + [anon_sym__Atomic] = ACTIONS(2494), + [anon_sym__Noreturn] = ACTIONS(2494), + [anon_sym__Nonnull] = ACTIONS(2494), + [anon_sym_nullable] = ACTIONS(2494), + [anon_sym__Complex] = ACTIONS(2494), + [anon_sym__Nullable] = ACTIONS(2494), + [anon_sym__Nullable_result] = ACTIONS(2494), + [anon_sym__Null_unspecified] = ACTIONS(2494), + [anon_sym___autoreleasing] = ACTIONS(2494), + [anon_sym___block] = ACTIONS(2494), + [anon_sym___bridge] = ACTIONS(2494), + [anon_sym___bridge_retained] = ACTIONS(2494), + [anon_sym___bridge_transfer] = ACTIONS(2494), + [anon_sym___complex] = ACTIONS(2494), + [anon_sym___const] = ACTIONS(2494), + [anon_sym___imag] = ACTIONS(2494), + [anon_sym___kindof] = ACTIONS(2494), + [anon_sym___nonnull] = ACTIONS(2494), + [anon_sym___nullable] = ACTIONS(2494), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2494), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2494), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2494), + [anon_sym___real] = ACTIONS(2494), + [anon_sym___strong] = ACTIONS(2494), + [anon_sym___unsafe_unretained] = ACTIONS(2494), + [anon_sym___unused] = ACTIONS(2494), + [anon_sym___weak] = ACTIONS(2494), + [anon_sym_alignas] = ACTIONS(2494), + [anon_sym__Alignas] = ACTIONS(2494), + [sym_primitive_type] = ACTIONS(2494), + [anon_sym_enum] = ACTIONS(2494), + [anon_sym_struct] = ACTIONS(2494), + [anon_sym_union] = ACTIONS(2494), + [anon_sym_if] = ACTIONS(2494), + [anon_sym_else] = ACTIONS(2494), + [anon_sym_switch] = ACTIONS(2494), + [anon_sym_case] = ACTIONS(2494), + [anon_sym_default] = ACTIONS(2494), + [anon_sym_while] = ACTIONS(2494), + [anon_sym_do] = ACTIONS(2494), + [anon_sym_for] = ACTIONS(2494), + [anon_sym_in] = ACTIONS(2494), + [anon_sym_return] = ACTIONS(2494), + [anon_sym_break] = ACTIONS(2494), + [anon_sym_continue] = ACTIONS(2494), + [anon_sym_goto] = ACTIONS(2494), + [anon_sym_DASH_DASH] = ACTIONS(2496), + [anon_sym_PLUS_PLUS] = ACTIONS(2496), + [anon_sym_sizeof] = ACTIONS(2494), + [anon_sym___alignof__] = ACTIONS(2494), + [anon_sym___alignof] = ACTIONS(2494), + [anon_sym__alignof] = ACTIONS(2494), + [anon_sym_alignof] = ACTIONS(2494), + [anon_sym__Alignof] = ACTIONS(2494), + [anon_sym_offsetof] = ACTIONS(2494), + [anon_sym__Generic] = ACTIONS(2494), + [anon_sym_asm] = ACTIONS(2494), + [anon_sym___asm__] = ACTIONS(2494), + [anon_sym___asm] = ACTIONS(2494), + [sym_number_literal] = ACTIONS(2496), + [anon_sym_L_SQUOTE] = ACTIONS(2496), + [anon_sym_u_SQUOTE] = ACTIONS(2496), + [anon_sym_U_SQUOTE] = ACTIONS(2496), + [anon_sym_u8_SQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2496), + [anon_sym_AT] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_L_DQUOTE] = ACTIONS(2496), + [anon_sym_u_DQUOTE] = ACTIONS(2496), + [anon_sym_U_DQUOTE] = ACTIONS(2496), + [anon_sym_u8_DQUOTE] = ACTIONS(2496), + [sym_true] = ACTIONS(2494), + [sym_false] = ACTIONS(2494), + [anon_sym_NULL] = ACTIONS(2494), + [anon_sym_nullptr] = ACTIONS(2494), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2494), + [anon_sym___typeof] = ACTIONS(2494), + [anon_sym_typeof] = ACTIONS(2494), + [anon_sym_ATimport] = ACTIONS(2496), + [aux_sym_preproc_undef_token1] = ACTIONS(2494), + [anon_sym_POUND] = ACTIONS(2494), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2494), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2494), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2494), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2494), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2494), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2494), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2494), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2494), + [anon_sym_NS_AVAILABLE] = ACTIONS(2494), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2494), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_API_AVAILABLE] = ACTIONS(2494), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_API_DEPRECATED] = ACTIONS(2494), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2494), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2494), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2494), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2494), + [anon_sym___deprecated_msg] = ACTIONS(2494), + [anon_sym___deprecated_enum_msg] = ACTIONS(2494), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2494), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2494), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2494), + [anon_sym_ATprotocol] = ACTIONS(2496), + [anon_sym_ATinterface] = ACTIONS(2496), + [anon_sym_ATimplementation] = ACTIONS(2496), + [anon_sym_ATcompatibility_alias] = ACTIONS(2496), + [anon_sym_ATtry] = ACTIONS(2496), + [anon_sym___try] = ACTIONS(2494), + [anon_sym_ATthrow] = ACTIONS(2496), + [anon_sym_ATselector] = ACTIONS(2496), + [anon_sym_ATavailable] = ACTIONS(2496), + [anon_sym___builtin_available] = ACTIONS(2494), + [anon_sym_va_arg] = ACTIONS(2494), + [anon_sym_ATencode] = ACTIONS(2496), + [anon_sym_ATsynchronized] = ACTIONS(2496), + [anon_sym_BOOL] = ACTIONS(2494), + [anon_sym_IMP] = ACTIONS(2494), + [anon_sym_SEL] = ACTIONS(2494), + [anon_sym_Class] = ACTIONS(2494), + [anon_sym_id] = ACTIONS(2494), + }, + [831] = { + [ts_builtin_sym_end] = ACTIONS(2500), + [sym_identifier] = ACTIONS(2498), + [aux_sym_preproc_include_token1] = ACTIONS(2498), + [aux_sym_preproc_include_token2] = ACTIONS(2498), + [aux_sym_preproc_def_token1] = ACTIONS(2498), + [aux_sym_preproc_if_token1] = ACTIONS(2498), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2498), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2498), + [sym_preproc_directive] = ACTIONS(2498), + [anon_sym_LPAREN2] = ACTIONS(2500), + [anon_sym_BANG] = ACTIONS(2500), + [anon_sym_TILDE] = ACTIONS(2500), + [anon_sym_DASH] = ACTIONS(2498), + [anon_sym_PLUS] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(2500), + [anon_sym_CARET] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(2500), + [anon_sym_SEMI] = ACTIONS(2500), + [anon_sym___extension__] = ACTIONS(2498), + [anon_sym_typedef] = ACTIONS(2498), + [anon_sym_extern] = ACTIONS(2498), + [anon_sym___attribute__] = ACTIONS(2498), + [anon_sym___attribute] = ACTIONS(2498), + [anon_sym_noreturn] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2500), + [anon_sym___declspec] = ACTIONS(2498), + [anon_sym___cdecl] = ACTIONS(2498), + [anon_sym___clrcall] = ACTIONS(2498), + [anon_sym___stdcall] = ACTIONS(2498), + [anon_sym___fastcall] = ACTIONS(2498), + [anon_sym___thiscall] = ACTIONS(2498), + [anon_sym___vectorcall] = ACTIONS(2498), + [anon_sym_LBRACE] = ACTIONS(2500), + [anon_sym_signed] = ACTIONS(2498), + [anon_sym_unsigned] = ACTIONS(2498), + [anon_sym_long] = ACTIONS(2498), + [anon_sym_short] = ACTIONS(2498), + [anon_sym_static] = ACTIONS(2498), + [anon_sym_ATautoreleasepool] = ACTIONS(2500), + [anon_sym_auto] = ACTIONS(2498), + [anon_sym_register] = ACTIONS(2498), + [anon_sym_inline] = ACTIONS(2498), + [anon_sym___inline] = ACTIONS(2498), + [anon_sym___inline__] = ACTIONS(2498), + [anon_sym___forceinline] = ACTIONS(2498), + [anon_sym_thread_local] = ACTIONS(2498), + [anon_sym___thread] = ACTIONS(2498), + [anon_sym_CG_EXTERN] = ACTIONS(2498), + [anon_sym_CG_INLINE] = ACTIONS(2498), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2498), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2498), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2498), + [anon_sym_IBOutlet] = ACTIONS(2498), + [anon_sym_IBInspectable] = ACTIONS(2498), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2498), + [anon_sym_NS_INLINE] = ACTIONS(2498), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2498), + [anon_sym_OBJC_EXPORT] = ACTIONS(2498), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2498), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2498), + [anon_sym_const] = ACTIONS(2498), + [anon_sym_constexpr] = ACTIONS(2498), + [anon_sym_volatile] = ACTIONS(2498), + [anon_sym_restrict] = ACTIONS(2498), + [anon_sym___restrict__] = ACTIONS(2498), + [anon_sym__Atomic] = ACTIONS(2498), + [anon_sym__Noreturn] = ACTIONS(2498), + [anon_sym__Nonnull] = ACTIONS(2498), + [anon_sym_nullable] = ACTIONS(2498), + [anon_sym__Complex] = ACTIONS(2498), + [anon_sym__Nullable] = ACTIONS(2498), + [anon_sym__Nullable_result] = ACTIONS(2498), + [anon_sym__Null_unspecified] = ACTIONS(2498), + [anon_sym___autoreleasing] = ACTIONS(2498), + [anon_sym___block] = ACTIONS(2498), + [anon_sym___bridge] = ACTIONS(2498), + [anon_sym___bridge_retained] = ACTIONS(2498), + [anon_sym___bridge_transfer] = ACTIONS(2498), + [anon_sym___complex] = ACTIONS(2498), + [anon_sym___const] = ACTIONS(2498), + [anon_sym___imag] = ACTIONS(2498), + [anon_sym___kindof] = ACTIONS(2498), + [anon_sym___nonnull] = ACTIONS(2498), + [anon_sym___nullable] = ACTIONS(2498), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2498), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2498), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2498), + [anon_sym___real] = ACTIONS(2498), + [anon_sym___strong] = ACTIONS(2498), + [anon_sym___unsafe_unretained] = ACTIONS(2498), + [anon_sym___unused] = ACTIONS(2498), + [anon_sym___weak] = ACTIONS(2498), + [anon_sym_alignas] = ACTIONS(2498), + [anon_sym__Alignas] = ACTIONS(2498), + [sym_primitive_type] = ACTIONS(2498), + [anon_sym_enum] = ACTIONS(2498), + [anon_sym_struct] = ACTIONS(2498), + [anon_sym_union] = ACTIONS(2498), + [anon_sym_if] = ACTIONS(2498), + [anon_sym_else] = ACTIONS(2498), + [anon_sym_switch] = ACTIONS(2498), + [anon_sym_case] = ACTIONS(2498), + [anon_sym_default] = ACTIONS(2498), + [anon_sym_while] = ACTIONS(2498), + [anon_sym_do] = ACTIONS(2498), + [anon_sym_for] = ACTIONS(2498), + [anon_sym_in] = ACTIONS(2498), + [anon_sym_return] = ACTIONS(2498), + [anon_sym_break] = ACTIONS(2498), + [anon_sym_continue] = ACTIONS(2498), + [anon_sym_goto] = ACTIONS(2498), + [anon_sym_DASH_DASH] = ACTIONS(2500), + [anon_sym_PLUS_PLUS] = ACTIONS(2500), + [anon_sym_sizeof] = ACTIONS(2498), + [anon_sym___alignof__] = ACTIONS(2498), + [anon_sym___alignof] = ACTIONS(2498), + [anon_sym__alignof] = ACTIONS(2498), + [anon_sym_alignof] = ACTIONS(2498), + [anon_sym__Alignof] = ACTIONS(2498), + [anon_sym_offsetof] = ACTIONS(2498), + [anon_sym__Generic] = ACTIONS(2498), + [anon_sym_asm] = ACTIONS(2498), + [anon_sym___asm__] = ACTIONS(2498), + [anon_sym___asm] = ACTIONS(2498), + [sym_number_literal] = ACTIONS(2500), + [anon_sym_L_SQUOTE] = ACTIONS(2500), + [anon_sym_u_SQUOTE] = ACTIONS(2500), + [anon_sym_U_SQUOTE] = ACTIONS(2500), + [anon_sym_u8_SQUOTE] = ACTIONS(2500), + [anon_sym_SQUOTE] = ACTIONS(2500), + [anon_sym_AT] = ACTIONS(2498), + [anon_sym_DQUOTE] = ACTIONS(2500), + [anon_sym_L_DQUOTE] = ACTIONS(2500), + [anon_sym_u_DQUOTE] = ACTIONS(2500), + [anon_sym_U_DQUOTE] = ACTIONS(2500), + [anon_sym_u8_DQUOTE] = ACTIONS(2500), + [sym_true] = ACTIONS(2498), + [sym_false] = ACTIONS(2498), + [anon_sym_NULL] = ACTIONS(2498), + [anon_sym_nullptr] = ACTIONS(2498), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2498), + [anon_sym___typeof] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(2498), + [anon_sym_ATimport] = ACTIONS(2500), + [aux_sym_preproc_undef_token1] = ACTIONS(2498), + [anon_sym_POUND] = ACTIONS(2498), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2498), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2498), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2498), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2498), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2498), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2498), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2498), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2498), + [anon_sym_NS_AVAILABLE] = ACTIONS(2498), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2498), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_API_AVAILABLE] = ACTIONS(2498), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_API_DEPRECATED] = ACTIONS(2498), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2498), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2498), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2498), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2498), + [anon_sym___deprecated_msg] = ACTIONS(2498), + [anon_sym___deprecated_enum_msg] = ACTIONS(2498), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2498), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2498), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2498), + [anon_sym_ATprotocol] = ACTIONS(2500), + [anon_sym_ATinterface] = ACTIONS(2500), + [anon_sym_ATimplementation] = ACTIONS(2500), + [anon_sym_ATcompatibility_alias] = ACTIONS(2500), + [anon_sym_ATtry] = ACTIONS(2500), + [anon_sym___try] = ACTIONS(2498), + [anon_sym_ATthrow] = ACTIONS(2500), + [anon_sym_ATselector] = ACTIONS(2500), + [anon_sym_ATavailable] = ACTIONS(2500), + [anon_sym___builtin_available] = ACTIONS(2498), + [anon_sym_va_arg] = ACTIONS(2498), + [anon_sym_ATencode] = ACTIONS(2500), + [anon_sym_ATsynchronized] = ACTIONS(2500), + [anon_sym_BOOL] = ACTIONS(2498), + [anon_sym_IMP] = ACTIONS(2498), + [anon_sym_SEL] = ACTIONS(2498), + [anon_sym_Class] = ACTIONS(2498), + [anon_sym_id] = ACTIONS(2498), + }, + [832] = { + [ts_builtin_sym_end] = ACTIONS(2410), + [sym_identifier] = ACTIONS(2408), + [aux_sym_preproc_include_token1] = ACTIONS(2408), + [aux_sym_preproc_include_token2] = ACTIONS(2408), + [aux_sym_preproc_def_token1] = ACTIONS(2408), + [aux_sym_preproc_if_token1] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2408), + [sym_preproc_directive] = ACTIONS(2408), + [anon_sym_LPAREN2] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2408), + [anon_sym_PLUS] = ACTIONS(2408), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_CARET] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym___extension__] = ACTIONS(2408), + [anon_sym_typedef] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym___attribute__] = ACTIONS(2408), + [anon_sym___attribute] = ACTIONS(2408), + [anon_sym_noreturn] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym___declspec] = ACTIONS(2408), + [anon_sym___cdecl] = ACTIONS(2408), + [anon_sym___clrcall] = ACTIONS(2408), + [anon_sym___stdcall] = ACTIONS(2408), + [anon_sym___fastcall] = ACTIONS(2408), + [anon_sym___thiscall] = ACTIONS(2408), + [anon_sym___vectorcall] = ACTIONS(2408), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_signed] = ACTIONS(2408), + [anon_sym_unsigned] = ACTIONS(2408), + [anon_sym_long] = ACTIONS(2408), + [anon_sym_short] = ACTIONS(2408), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_ATautoreleasepool] = ACTIONS(2410), + [anon_sym_auto] = ACTIONS(2408), + [anon_sym_register] = ACTIONS(2408), + [anon_sym_inline] = ACTIONS(2408), + [anon_sym___inline] = ACTIONS(2408), + [anon_sym___inline__] = ACTIONS(2408), + [anon_sym___forceinline] = ACTIONS(2408), + [anon_sym_thread_local] = ACTIONS(2408), + [anon_sym___thread] = ACTIONS(2408), + [anon_sym_CG_EXTERN] = ACTIONS(2408), + [anon_sym_CG_INLINE] = ACTIONS(2408), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2408), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2408), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2408), + [anon_sym_IBOutlet] = ACTIONS(2408), + [anon_sym_IBInspectable] = ACTIONS(2408), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2408), + [anon_sym_NS_INLINE] = ACTIONS(2408), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2408), + [anon_sym_OBJC_EXPORT] = ACTIONS(2408), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2408), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_constexpr] = ACTIONS(2408), + [anon_sym_volatile] = ACTIONS(2408), + [anon_sym_restrict] = ACTIONS(2408), + [anon_sym___restrict__] = ACTIONS(2408), + [anon_sym__Atomic] = ACTIONS(2408), + [anon_sym__Noreturn] = ACTIONS(2408), + [anon_sym__Nonnull] = ACTIONS(2408), + [anon_sym_nullable] = ACTIONS(2408), + [anon_sym__Complex] = ACTIONS(2408), + [anon_sym__Nullable] = ACTIONS(2408), + [anon_sym__Nullable_result] = ACTIONS(2408), + [anon_sym__Null_unspecified] = ACTIONS(2408), + [anon_sym___autoreleasing] = ACTIONS(2408), + [anon_sym___block] = ACTIONS(2408), + [anon_sym___bridge] = ACTIONS(2408), + [anon_sym___bridge_retained] = ACTIONS(2408), + [anon_sym___bridge_transfer] = ACTIONS(2408), + [anon_sym___complex] = ACTIONS(2408), + [anon_sym___const] = ACTIONS(2408), + [anon_sym___imag] = ACTIONS(2408), + [anon_sym___kindof] = ACTIONS(2408), + [anon_sym___nonnull] = ACTIONS(2408), + [anon_sym___nullable] = ACTIONS(2408), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2408), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2408), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2408), + [anon_sym___real] = ACTIONS(2408), + [anon_sym___strong] = ACTIONS(2408), + [anon_sym___unsafe_unretained] = ACTIONS(2408), + [anon_sym___unused] = ACTIONS(2408), + [anon_sym___weak] = ACTIONS(2408), + [anon_sym_alignas] = ACTIONS(2408), + [anon_sym__Alignas] = ACTIONS(2408), + [sym_primitive_type] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_struct] = ACTIONS(2408), + [anon_sym_union] = ACTIONS(2408), + [anon_sym_if] = ACTIONS(2408), + [anon_sym_else] = ACTIONS(2408), + [anon_sym_switch] = ACTIONS(2408), + [anon_sym_case] = ACTIONS(2408), + [anon_sym_default] = ACTIONS(2408), + [anon_sym_while] = ACTIONS(2408), + [anon_sym_do] = ACTIONS(2408), + [anon_sym_for] = ACTIONS(2408), + [anon_sym_in] = ACTIONS(2408), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_break] = ACTIONS(2408), + [anon_sym_continue] = ACTIONS(2408), + [anon_sym_goto] = ACTIONS(2408), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_sizeof] = ACTIONS(2408), + [anon_sym___alignof__] = ACTIONS(2408), + [anon_sym___alignof] = ACTIONS(2408), + [anon_sym__alignof] = ACTIONS(2408), + [anon_sym_alignof] = ACTIONS(2408), + [anon_sym__Alignof] = ACTIONS(2408), + [anon_sym_offsetof] = ACTIONS(2408), + [anon_sym__Generic] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2410), + [anon_sym_u_SQUOTE] = ACTIONS(2410), + [anon_sym_U_SQUOTE] = ACTIONS(2410), + [anon_sym_u8_SQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(2408), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_L_DQUOTE] = ACTIONS(2410), + [anon_sym_u_DQUOTE] = ACTIONS(2410), + [anon_sym_U_DQUOTE] = ACTIONS(2410), + [anon_sym_u8_DQUOTE] = ACTIONS(2410), + [sym_true] = ACTIONS(2408), + [sym_false] = ACTIONS(2408), + [anon_sym_NULL] = ACTIONS(2408), + [anon_sym_nullptr] = ACTIONS(2408), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2408), + [anon_sym___typeof] = ACTIONS(2408), + [anon_sym_typeof] = ACTIONS(2408), + [anon_sym_ATimport] = ACTIONS(2410), + [aux_sym_preproc_undef_token1] = ACTIONS(2408), + [anon_sym_POUND] = ACTIONS(2408), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2408), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2408), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2408), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2408), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2408), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2408), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2408), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2408), + [anon_sym_NS_AVAILABLE] = ACTIONS(2408), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2408), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_API_AVAILABLE] = ACTIONS(2408), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_API_DEPRECATED] = ACTIONS(2408), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2408), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2408), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2408), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2408), + [anon_sym___deprecated_msg] = ACTIONS(2408), + [anon_sym___deprecated_enum_msg] = ACTIONS(2408), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2408), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2408), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2408), + [anon_sym_ATprotocol] = ACTIONS(2410), + [anon_sym_ATinterface] = ACTIONS(2410), + [anon_sym_ATimplementation] = ACTIONS(2410), + [anon_sym_ATcompatibility_alias] = ACTIONS(2410), + [anon_sym_ATtry] = ACTIONS(2410), + [anon_sym___try] = ACTIONS(2408), + [anon_sym_ATthrow] = ACTIONS(2410), + [anon_sym_ATselector] = ACTIONS(2410), + [anon_sym_ATavailable] = ACTIONS(2410), + [anon_sym___builtin_available] = ACTIONS(2408), + [anon_sym_va_arg] = ACTIONS(2408), + [anon_sym_ATencode] = ACTIONS(2410), + [anon_sym_ATsynchronized] = ACTIONS(2410), + [anon_sym_BOOL] = ACTIONS(2408), + [anon_sym_IMP] = ACTIONS(2408), + [anon_sym_SEL] = ACTIONS(2408), + [anon_sym_Class] = ACTIONS(2408), + [anon_sym_id] = ACTIONS(2408), + }, + [833] = { + [ts_builtin_sym_end] = ACTIONS(2510), + [sym_identifier] = ACTIONS(2508), + [aux_sym_preproc_include_token1] = ACTIONS(2508), + [aux_sym_preproc_include_token2] = ACTIONS(2508), + [aux_sym_preproc_def_token1] = ACTIONS(2508), + [aux_sym_preproc_if_token1] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2508), + [sym_preproc_directive] = ACTIONS(2508), + [anon_sym_LPAREN2] = ACTIONS(2510), + [anon_sym_BANG] = ACTIONS(2510), + [anon_sym_TILDE] = ACTIONS(2510), + [anon_sym_DASH] = ACTIONS(2508), + [anon_sym_PLUS] = ACTIONS(2508), + [anon_sym_STAR] = ACTIONS(2510), + [anon_sym_CARET] = ACTIONS(2510), + [anon_sym_AMP] = ACTIONS(2510), + [anon_sym_SEMI] = ACTIONS(2510), + [anon_sym___extension__] = ACTIONS(2508), + [anon_sym_typedef] = ACTIONS(2508), + [anon_sym_extern] = ACTIONS(2508), + [anon_sym___attribute__] = ACTIONS(2508), + [anon_sym___attribute] = ACTIONS(2508), + [anon_sym_noreturn] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym___declspec] = ACTIONS(2508), + [anon_sym___cdecl] = ACTIONS(2508), + [anon_sym___clrcall] = ACTIONS(2508), + [anon_sym___stdcall] = ACTIONS(2508), + [anon_sym___fastcall] = ACTIONS(2508), + [anon_sym___thiscall] = ACTIONS(2508), + [anon_sym___vectorcall] = ACTIONS(2508), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_signed] = ACTIONS(2508), + [anon_sym_unsigned] = ACTIONS(2508), + [anon_sym_long] = ACTIONS(2508), + [anon_sym_short] = ACTIONS(2508), + [anon_sym_static] = ACTIONS(2508), + [anon_sym_ATautoreleasepool] = ACTIONS(2510), + [anon_sym_auto] = ACTIONS(2508), + [anon_sym_register] = ACTIONS(2508), + [anon_sym_inline] = ACTIONS(2508), + [anon_sym___inline] = ACTIONS(2508), + [anon_sym___inline__] = ACTIONS(2508), + [anon_sym___forceinline] = ACTIONS(2508), + [anon_sym_thread_local] = ACTIONS(2508), + [anon_sym___thread] = ACTIONS(2508), + [anon_sym_CG_EXTERN] = ACTIONS(2508), + [anon_sym_CG_INLINE] = ACTIONS(2508), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2508), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2508), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2508), + [anon_sym_IBOutlet] = ACTIONS(2508), + [anon_sym_IBInspectable] = ACTIONS(2508), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2508), + [anon_sym_NS_INLINE] = ACTIONS(2508), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2508), + [anon_sym_OBJC_EXPORT] = ACTIONS(2508), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2508), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2508), + [anon_sym_const] = ACTIONS(2508), + [anon_sym_constexpr] = ACTIONS(2508), + [anon_sym_volatile] = ACTIONS(2508), + [anon_sym_restrict] = ACTIONS(2508), + [anon_sym___restrict__] = ACTIONS(2508), + [anon_sym__Atomic] = ACTIONS(2508), + [anon_sym__Noreturn] = ACTIONS(2508), + [anon_sym__Nonnull] = ACTIONS(2508), + [anon_sym_nullable] = ACTIONS(2508), + [anon_sym__Complex] = ACTIONS(2508), + [anon_sym__Nullable] = ACTIONS(2508), + [anon_sym__Nullable_result] = ACTIONS(2508), + [anon_sym__Null_unspecified] = ACTIONS(2508), + [anon_sym___autoreleasing] = ACTIONS(2508), + [anon_sym___block] = ACTIONS(2508), + [anon_sym___bridge] = ACTIONS(2508), + [anon_sym___bridge_retained] = ACTIONS(2508), + [anon_sym___bridge_transfer] = ACTIONS(2508), + [anon_sym___complex] = ACTIONS(2508), + [anon_sym___const] = ACTIONS(2508), + [anon_sym___imag] = ACTIONS(2508), + [anon_sym___kindof] = ACTIONS(2508), + [anon_sym___nonnull] = ACTIONS(2508), + [anon_sym___nullable] = ACTIONS(2508), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2508), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2508), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2508), + [anon_sym___real] = ACTIONS(2508), + [anon_sym___strong] = ACTIONS(2508), + [anon_sym___unsafe_unretained] = ACTIONS(2508), + [anon_sym___unused] = ACTIONS(2508), + [anon_sym___weak] = ACTIONS(2508), + [anon_sym_alignas] = ACTIONS(2508), + [anon_sym__Alignas] = ACTIONS(2508), + [sym_primitive_type] = ACTIONS(2508), + [anon_sym_enum] = ACTIONS(2508), + [anon_sym_struct] = ACTIONS(2508), + [anon_sym_union] = ACTIONS(2508), + [anon_sym_if] = ACTIONS(2508), + [anon_sym_else] = ACTIONS(2508), + [anon_sym_switch] = ACTIONS(2508), + [anon_sym_case] = ACTIONS(2508), + [anon_sym_default] = ACTIONS(2508), + [anon_sym_while] = ACTIONS(2508), + [anon_sym_do] = ACTIONS(2508), + [anon_sym_for] = ACTIONS(2508), + [anon_sym_in] = ACTIONS(2508), + [anon_sym_return] = ACTIONS(2508), + [anon_sym_break] = ACTIONS(2508), + [anon_sym_continue] = ACTIONS(2508), + [anon_sym_goto] = ACTIONS(2508), + [anon_sym_DASH_DASH] = ACTIONS(2510), + [anon_sym_PLUS_PLUS] = ACTIONS(2510), + [anon_sym_sizeof] = ACTIONS(2508), + [anon_sym___alignof__] = ACTIONS(2508), + [anon_sym___alignof] = ACTIONS(2508), + [anon_sym__alignof] = ACTIONS(2508), + [anon_sym_alignof] = ACTIONS(2508), + [anon_sym__Alignof] = ACTIONS(2508), + [anon_sym_offsetof] = ACTIONS(2508), + [anon_sym__Generic] = ACTIONS(2508), + [anon_sym_asm] = ACTIONS(2508), + [anon_sym___asm__] = ACTIONS(2508), + [anon_sym___asm] = ACTIONS(2508), + [sym_number_literal] = ACTIONS(2510), + [anon_sym_L_SQUOTE] = ACTIONS(2510), + [anon_sym_u_SQUOTE] = ACTIONS(2510), + [anon_sym_U_SQUOTE] = ACTIONS(2510), + [anon_sym_u8_SQUOTE] = ACTIONS(2510), + [anon_sym_SQUOTE] = ACTIONS(2510), + [anon_sym_AT] = ACTIONS(2508), + [anon_sym_DQUOTE] = ACTIONS(2510), + [anon_sym_L_DQUOTE] = ACTIONS(2510), + [anon_sym_u_DQUOTE] = ACTIONS(2510), + [anon_sym_U_DQUOTE] = ACTIONS(2510), + [anon_sym_u8_DQUOTE] = ACTIONS(2510), + [sym_true] = ACTIONS(2508), + [sym_false] = ACTIONS(2508), + [anon_sym_NULL] = ACTIONS(2508), + [anon_sym_nullptr] = ACTIONS(2508), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2508), + [anon_sym___typeof] = ACTIONS(2508), + [anon_sym_typeof] = ACTIONS(2508), + [anon_sym_ATimport] = ACTIONS(2510), + [aux_sym_preproc_undef_token1] = ACTIONS(2508), + [anon_sym_POUND] = ACTIONS(2508), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2508), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2508), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2508), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2508), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2508), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2508), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2508), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2508), + [anon_sym_NS_AVAILABLE] = ACTIONS(2508), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2508), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_API_AVAILABLE] = ACTIONS(2508), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_API_DEPRECATED] = ACTIONS(2508), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2508), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2508), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2508), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2508), + [anon_sym___deprecated_msg] = ACTIONS(2508), + [anon_sym___deprecated_enum_msg] = ACTIONS(2508), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2508), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2508), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2508), + [anon_sym_ATprotocol] = ACTIONS(2510), + [anon_sym_ATinterface] = ACTIONS(2510), + [anon_sym_ATimplementation] = ACTIONS(2510), + [anon_sym_ATcompatibility_alias] = ACTIONS(2510), + [anon_sym_ATtry] = ACTIONS(2510), + [anon_sym___try] = ACTIONS(2508), + [anon_sym_ATthrow] = ACTIONS(2510), + [anon_sym_ATselector] = ACTIONS(2510), + [anon_sym_ATavailable] = ACTIONS(2510), + [anon_sym___builtin_available] = ACTIONS(2508), + [anon_sym_va_arg] = ACTIONS(2508), + [anon_sym_ATencode] = ACTIONS(2510), + [anon_sym_ATsynchronized] = ACTIONS(2510), + [anon_sym_BOOL] = ACTIONS(2508), + [anon_sym_IMP] = ACTIONS(2508), + [anon_sym_SEL] = ACTIONS(2508), + [anon_sym_Class] = ACTIONS(2508), + [anon_sym_id] = ACTIONS(2508), + }, + [834] = { + [sym_identifier] = ACTIONS(2548), + [aux_sym_preproc_include_token1] = ACTIONS(2548), + [aux_sym_preproc_include_token2] = ACTIONS(2548), + [aux_sym_preproc_def_token1] = ACTIONS(2548), + [aux_sym_preproc_if_token1] = ACTIONS(2548), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2548), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2548), + [sym_preproc_directive] = ACTIONS(2548), + [anon_sym_LPAREN2] = ACTIONS(2550), + [anon_sym_BANG] = ACTIONS(2550), + [anon_sym_TILDE] = ACTIONS(2550), + [anon_sym_DASH] = ACTIONS(2548), + [anon_sym_PLUS] = ACTIONS(2548), + [anon_sym_STAR] = ACTIONS(2550), + [anon_sym_CARET] = ACTIONS(2550), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_SEMI] = ACTIONS(2550), + [anon_sym___extension__] = ACTIONS(2548), + [anon_sym_typedef] = ACTIONS(2548), + [anon_sym_extern] = ACTIONS(2548), + [anon_sym___attribute__] = ACTIONS(2548), + [anon_sym___attribute] = ACTIONS(2548), + [anon_sym_noreturn] = ACTIONS(2548), + [anon_sym_LBRACK] = ACTIONS(2550), + [anon_sym___declspec] = ACTIONS(2548), + [anon_sym___cdecl] = ACTIONS(2548), + [anon_sym___clrcall] = ACTIONS(2548), + [anon_sym___stdcall] = ACTIONS(2548), + [anon_sym___fastcall] = ACTIONS(2548), + [anon_sym___thiscall] = ACTIONS(2548), + [anon_sym___vectorcall] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2550), + [anon_sym_RBRACE] = ACTIONS(2550), + [anon_sym_signed] = ACTIONS(2548), + [anon_sym_unsigned] = ACTIONS(2548), + [anon_sym_long] = ACTIONS(2548), + [anon_sym_short] = ACTIONS(2548), + [anon_sym_static] = ACTIONS(2548), + [anon_sym_ATautoreleasepool] = ACTIONS(2550), + [anon_sym_auto] = ACTIONS(2548), + [anon_sym_register] = ACTIONS(2548), + [anon_sym_inline] = ACTIONS(2548), + [anon_sym___inline] = ACTIONS(2548), + [anon_sym___inline__] = ACTIONS(2548), + [anon_sym___forceinline] = ACTIONS(2548), + [anon_sym_thread_local] = ACTIONS(2548), + [anon_sym___thread] = ACTIONS(2548), + [anon_sym_CG_EXTERN] = ACTIONS(2548), + [anon_sym_CG_INLINE] = ACTIONS(2548), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2548), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2548), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2548), + [anon_sym_IBOutlet] = ACTIONS(2548), + [anon_sym_IBInspectable] = ACTIONS(2548), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2548), + [anon_sym_NS_INLINE] = ACTIONS(2548), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2548), + [anon_sym_OBJC_EXPORT] = ACTIONS(2548), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2548), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2548), + [anon_sym_const] = ACTIONS(2548), + [anon_sym_constexpr] = ACTIONS(2548), + [anon_sym_volatile] = ACTIONS(2548), + [anon_sym_restrict] = ACTIONS(2548), + [anon_sym___restrict__] = ACTIONS(2548), + [anon_sym__Atomic] = ACTIONS(2548), + [anon_sym__Noreturn] = ACTIONS(2548), + [anon_sym__Nonnull] = ACTIONS(2548), + [anon_sym_nullable] = ACTIONS(2548), + [anon_sym__Complex] = ACTIONS(2548), + [anon_sym__Nullable] = ACTIONS(2548), + [anon_sym__Nullable_result] = ACTIONS(2548), + [anon_sym__Null_unspecified] = ACTIONS(2548), + [anon_sym___autoreleasing] = ACTIONS(2548), + [anon_sym___block] = ACTIONS(2548), + [anon_sym___bridge] = ACTIONS(2548), + [anon_sym___bridge_retained] = ACTIONS(2548), + [anon_sym___bridge_transfer] = ACTIONS(2548), + [anon_sym___complex] = ACTIONS(2548), + [anon_sym___const] = ACTIONS(2548), + [anon_sym___imag] = ACTIONS(2548), + [anon_sym___kindof] = ACTIONS(2548), + [anon_sym___nonnull] = ACTIONS(2548), + [anon_sym___nullable] = ACTIONS(2548), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2548), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2548), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2548), + [anon_sym___real] = ACTIONS(2548), + [anon_sym___strong] = ACTIONS(2548), + [anon_sym___unsafe_unretained] = ACTIONS(2548), + [anon_sym___unused] = ACTIONS(2548), + [anon_sym___weak] = ACTIONS(2548), + [anon_sym_alignas] = ACTIONS(2548), + [anon_sym__Alignas] = ACTIONS(2548), + [sym_primitive_type] = ACTIONS(2548), + [anon_sym_enum] = ACTIONS(2548), + [anon_sym_struct] = ACTIONS(2548), + [anon_sym_union] = ACTIONS(2548), + [anon_sym_if] = ACTIONS(2548), + [anon_sym_else] = ACTIONS(2548), + [anon_sym_switch] = ACTIONS(2548), + [anon_sym_case] = ACTIONS(2548), + [anon_sym_default] = ACTIONS(2548), + [anon_sym_while] = ACTIONS(2548), + [anon_sym_do] = ACTIONS(2548), + [anon_sym_for] = ACTIONS(2548), + [anon_sym_in] = ACTIONS(2548), + [anon_sym_return] = ACTIONS(2548), + [anon_sym_break] = ACTIONS(2548), + [anon_sym_continue] = ACTIONS(2548), + [anon_sym_goto] = ACTIONS(2548), + [anon_sym_DASH_DASH] = ACTIONS(2550), + [anon_sym_PLUS_PLUS] = ACTIONS(2550), + [anon_sym_sizeof] = ACTIONS(2548), + [anon_sym___alignof__] = ACTIONS(2548), + [anon_sym___alignof] = ACTIONS(2548), + [anon_sym__alignof] = ACTIONS(2548), + [anon_sym_alignof] = ACTIONS(2548), + [anon_sym__Alignof] = ACTIONS(2548), + [anon_sym_offsetof] = ACTIONS(2548), + [anon_sym__Generic] = ACTIONS(2548), + [anon_sym_asm] = ACTIONS(2548), + [anon_sym___asm__] = ACTIONS(2548), + [anon_sym___asm] = ACTIONS(2548), + [sym_number_literal] = ACTIONS(2550), + [anon_sym_L_SQUOTE] = ACTIONS(2550), + [anon_sym_u_SQUOTE] = ACTIONS(2550), + [anon_sym_U_SQUOTE] = ACTIONS(2550), + [anon_sym_u8_SQUOTE] = ACTIONS(2550), + [anon_sym_SQUOTE] = ACTIONS(2550), + [anon_sym_AT] = ACTIONS(2548), + [anon_sym_DQUOTE] = ACTIONS(2550), + [anon_sym_L_DQUOTE] = ACTIONS(2550), + [anon_sym_u_DQUOTE] = ACTIONS(2550), + [anon_sym_U_DQUOTE] = ACTIONS(2550), + [anon_sym_u8_DQUOTE] = ACTIONS(2550), + [sym_true] = ACTIONS(2548), + [sym_false] = ACTIONS(2548), + [anon_sym_NULL] = ACTIONS(2548), + [anon_sym_nullptr] = ACTIONS(2548), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2548), + [anon_sym___typeof] = ACTIONS(2548), + [anon_sym_typeof] = ACTIONS(2548), + [anon_sym_ATimport] = ACTIONS(2550), + [aux_sym_preproc_undef_token1] = ACTIONS(2548), + [anon_sym_POUND] = ACTIONS(2548), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2548), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2548), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2548), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2548), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2548), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2548), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2548), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2548), + [anon_sym_NS_AVAILABLE] = ACTIONS(2548), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2548), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_API_AVAILABLE] = ACTIONS(2548), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_API_DEPRECATED] = ACTIONS(2548), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2548), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2548), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2548), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2548), + [anon_sym___deprecated_msg] = ACTIONS(2548), + [anon_sym___deprecated_enum_msg] = ACTIONS(2548), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2548), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2548), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2548), + [anon_sym_ATprotocol] = ACTIONS(2550), + [anon_sym_ATinterface] = ACTIONS(2550), + [anon_sym_ATimplementation] = ACTIONS(2550), + [anon_sym_ATcompatibility_alias] = ACTIONS(2550), + [anon_sym_ATtry] = ACTIONS(2550), + [anon_sym___try] = ACTIONS(2548), + [anon_sym_ATthrow] = ACTIONS(2550), + [anon_sym_ATselector] = ACTIONS(2550), + [anon_sym_ATavailable] = ACTIONS(2550), + [anon_sym___builtin_available] = ACTIONS(2548), + [anon_sym_va_arg] = ACTIONS(2548), + [anon_sym_ATencode] = ACTIONS(2550), + [anon_sym_ATsynchronized] = ACTIONS(2550), + [anon_sym_BOOL] = ACTIONS(2548), + [anon_sym_IMP] = ACTIONS(2548), + [anon_sym_SEL] = ACTIONS(2548), + [anon_sym_Class] = ACTIONS(2548), + [anon_sym_id] = ACTIONS(2548), + }, + [835] = { + [ts_builtin_sym_end] = ACTIONS(2296), + [sym_identifier] = ACTIONS(2294), + [aux_sym_preproc_include_token1] = ACTIONS(2294), + [aux_sym_preproc_include_token2] = ACTIONS(2294), + [aux_sym_preproc_def_token1] = ACTIONS(2294), + [aux_sym_preproc_if_token1] = ACTIONS(2294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2294), + [sym_preproc_directive] = ACTIONS(2294), + [anon_sym_LPAREN2] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_STAR] = ACTIONS(2296), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym___extension__] = ACTIONS(2294), + [anon_sym_typedef] = ACTIONS(2294), + [anon_sym_extern] = ACTIONS(2294), + [anon_sym___attribute__] = ACTIONS(2294), + [anon_sym___attribute] = ACTIONS(2294), + [anon_sym_noreturn] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym___declspec] = ACTIONS(2294), + [anon_sym___cdecl] = ACTIONS(2294), + [anon_sym___clrcall] = ACTIONS(2294), + [anon_sym___stdcall] = ACTIONS(2294), + [anon_sym___fastcall] = ACTIONS(2294), + [anon_sym___thiscall] = ACTIONS(2294), + [anon_sym___vectorcall] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_signed] = ACTIONS(2294), + [anon_sym_unsigned] = ACTIONS(2294), + [anon_sym_long] = ACTIONS(2294), + [anon_sym_short] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_ATautoreleasepool] = ACTIONS(2296), + [anon_sym_auto] = ACTIONS(2294), + [anon_sym_register] = ACTIONS(2294), + [anon_sym_inline] = ACTIONS(2294), + [anon_sym___inline] = ACTIONS(2294), + [anon_sym___inline__] = ACTIONS(2294), + [anon_sym___forceinline] = ACTIONS(2294), + [anon_sym_thread_local] = ACTIONS(2294), + [anon_sym___thread] = ACTIONS(2294), + [anon_sym_CG_EXTERN] = ACTIONS(2294), + [anon_sym_CG_INLINE] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2294), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2294), + [anon_sym_IBOutlet] = ACTIONS(2294), + [anon_sym_IBInspectable] = ACTIONS(2294), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2294), + [anon_sym_NS_INLINE] = ACTIONS(2294), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2294), + [anon_sym_OBJC_EXPORT] = ACTIONS(2294), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [anon_sym_constexpr] = ACTIONS(2294), + [anon_sym_volatile] = ACTIONS(2294), + [anon_sym_restrict] = ACTIONS(2294), + [anon_sym___restrict__] = ACTIONS(2294), + [anon_sym__Atomic] = ACTIONS(2294), + [anon_sym__Noreturn] = ACTIONS(2294), + [anon_sym__Nonnull] = ACTIONS(2294), + [anon_sym_nullable] = ACTIONS(2294), + [anon_sym__Complex] = ACTIONS(2294), + [anon_sym__Nullable] = ACTIONS(2294), + [anon_sym__Nullable_result] = ACTIONS(2294), + [anon_sym__Null_unspecified] = ACTIONS(2294), + [anon_sym___autoreleasing] = ACTIONS(2294), + [anon_sym___block] = ACTIONS(2294), + [anon_sym___bridge] = ACTIONS(2294), + [anon_sym___bridge_retained] = ACTIONS(2294), + [anon_sym___bridge_transfer] = ACTIONS(2294), + [anon_sym___complex] = ACTIONS(2294), + [anon_sym___const] = ACTIONS(2294), + [anon_sym___imag] = ACTIONS(2294), + [anon_sym___kindof] = ACTIONS(2294), + [anon_sym___nonnull] = ACTIONS(2294), + [anon_sym___nullable] = ACTIONS(2294), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2294), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2294), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2294), + [anon_sym___real] = ACTIONS(2294), + [anon_sym___strong] = ACTIONS(2294), + [anon_sym___unsafe_unretained] = ACTIONS(2294), + [anon_sym___unused] = ACTIONS(2294), + [anon_sym___weak] = ACTIONS(2294), + [anon_sym_alignas] = ACTIONS(2294), + [anon_sym__Alignas] = ACTIONS(2294), + [sym_primitive_type] = ACTIONS(2294), + [anon_sym_enum] = ACTIONS(2294), + [anon_sym_struct] = ACTIONS(2294), + [anon_sym_union] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_switch] = ACTIONS(2294), + [anon_sym_case] = ACTIONS(2294), + [anon_sym_default] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_goto] = ACTIONS(2294), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_sizeof] = ACTIONS(2294), + [anon_sym___alignof__] = ACTIONS(2294), + [anon_sym___alignof] = ACTIONS(2294), + [anon_sym__alignof] = ACTIONS(2294), + [anon_sym_alignof] = ACTIONS(2294), + [anon_sym__Alignof] = ACTIONS(2294), + [anon_sym_offsetof] = ACTIONS(2294), + [anon_sym__Generic] = ACTIONS(2294), + [anon_sym_asm] = ACTIONS(2294), + [anon_sym___asm__] = ACTIONS(2294), + [anon_sym___asm] = ACTIONS(2294), + [sym_number_literal] = ACTIONS(2296), + [anon_sym_L_SQUOTE] = ACTIONS(2296), + [anon_sym_u_SQUOTE] = ACTIONS(2296), + [anon_sym_U_SQUOTE] = ACTIONS(2296), + [anon_sym_u8_SQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_L_DQUOTE] = ACTIONS(2296), + [anon_sym_u_DQUOTE] = ACTIONS(2296), + [anon_sym_U_DQUOTE] = ACTIONS(2296), + [anon_sym_u8_DQUOTE] = ACTIONS(2296), + [sym_true] = ACTIONS(2294), + [sym_false] = ACTIONS(2294), + [anon_sym_NULL] = ACTIONS(2294), + [anon_sym_nullptr] = ACTIONS(2294), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2294), + [anon_sym___typeof] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(2294), + [anon_sym_ATimport] = ACTIONS(2296), + [aux_sym_preproc_undef_token1] = ACTIONS(2294), + [anon_sym_POUND] = ACTIONS(2294), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2294), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2294), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2294), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2294), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE] = ACTIONS(2294), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_API_AVAILABLE] = ACTIONS(2294), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_API_DEPRECATED] = ACTIONS(2294), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2294), + [anon_sym___deprecated_msg] = ACTIONS(2294), + [anon_sym___deprecated_enum_msg] = ACTIONS(2294), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2294), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2294), + [anon_sym_ATprotocol] = ACTIONS(2296), + [anon_sym_ATinterface] = ACTIONS(2296), + [anon_sym_ATimplementation] = ACTIONS(2296), + [anon_sym_ATcompatibility_alias] = ACTIONS(2296), + [anon_sym_ATtry] = ACTIONS(2296), + [anon_sym___try] = ACTIONS(2294), + [anon_sym_ATthrow] = ACTIONS(2296), + [anon_sym_ATselector] = ACTIONS(2296), + [anon_sym_ATavailable] = ACTIONS(2296), + [anon_sym___builtin_available] = ACTIONS(2294), + [anon_sym_va_arg] = ACTIONS(2294), + [anon_sym_ATencode] = ACTIONS(2296), + [anon_sym_ATsynchronized] = ACTIONS(2296), + [anon_sym_BOOL] = ACTIONS(2294), + [anon_sym_IMP] = ACTIONS(2294), + [anon_sym_SEL] = ACTIONS(2294), + [anon_sym_Class] = ACTIONS(2294), + [anon_sym_id] = ACTIONS(2294), + }, + [836] = { + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2516), + [aux_sym_preproc_include_token1] = ACTIONS(2516), + [aux_sym_preproc_include_token2] = ACTIONS(2516), + [aux_sym_preproc_def_token1] = ACTIONS(2516), + [aux_sym_preproc_if_token1] = ACTIONS(2516), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2516), + [sym_preproc_directive] = ACTIONS(2516), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_BANG] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_PLUS] = ACTIONS(2516), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_CARET] = ACTIONS(2518), + [anon_sym_AMP] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym___extension__] = ACTIONS(2516), + [anon_sym_typedef] = ACTIONS(2516), + [anon_sym_extern] = ACTIONS(2516), + [anon_sym___attribute__] = ACTIONS(2516), + [anon_sym___attribute] = ACTIONS(2516), + [anon_sym_noreturn] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2518), + [anon_sym___declspec] = ACTIONS(2516), + [anon_sym___cdecl] = ACTIONS(2516), + [anon_sym___clrcall] = ACTIONS(2516), + [anon_sym___stdcall] = ACTIONS(2516), + [anon_sym___fastcall] = ACTIONS(2516), + [anon_sym___thiscall] = ACTIONS(2516), + [anon_sym___vectorcall] = ACTIONS(2516), + [anon_sym_LBRACE] = ACTIONS(2518), + [anon_sym_signed] = ACTIONS(2516), + [anon_sym_unsigned] = ACTIONS(2516), + [anon_sym_long] = ACTIONS(2516), + [anon_sym_short] = ACTIONS(2516), + [anon_sym_static] = ACTIONS(2516), + [anon_sym_ATautoreleasepool] = ACTIONS(2518), + [anon_sym_auto] = ACTIONS(2516), + [anon_sym_register] = ACTIONS(2516), + [anon_sym_inline] = ACTIONS(2516), + [anon_sym___inline] = ACTIONS(2516), + [anon_sym___inline__] = ACTIONS(2516), + [anon_sym___forceinline] = ACTIONS(2516), + [anon_sym_thread_local] = ACTIONS(2516), + [anon_sym___thread] = ACTIONS(2516), + [anon_sym_CG_EXTERN] = ACTIONS(2516), + [anon_sym_CG_INLINE] = ACTIONS(2516), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2516), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2516), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2516), + [anon_sym_IBOutlet] = ACTIONS(2516), + [anon_sym_IBInspectable] = ACTIONS(2516), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2516), + [anon_sym_NS_INLINE] = ACTIONS(2516), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2516), + [anon_sym_OBJC_EXPORT] = ACTIONS(2516), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2516), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2516), + [anon_sym_const] = ACTIONS(2516), + [anon_sym_constexpr] = ACTIONS(2516), + [anon_sym_volatile] = ACTIONS(2516), + [anon_sym_restrict] = ACTIONS(2516), + [anon_sym___restrict__] = ACTIONS(2516), + [anon_sym__Atomic] = ACTIONS(2516), + [anon_sym__Noreturn] = ACTIONS(2516), + [anon_sym__Nonnull] = ACTIONS(2516), + [anon_sym_nullable] = ACTIONS(2516), + [anon_sym__Complex] = ACTIONS(2516), + [anon_sym__Nullable] = ACTIONS(2516), + [anon_sym__Nullable_result] = ACTIONS(2516), + [anon_sym__Null_unspecified] = ACTIONS(2516), + [anon_sym___autoreleasing] = ACTIONS(2516), + [anon_sym___block] = ACTIONS(2516), + [anon_sym___bridge] = ACTIONS(2516), + [anon_sym___bridge_retained] = ACTIONS(2516), + [anon_sym___bridge_transfer] = ACTIONS(2516), + [anon_sym___complex] = ACTIONS(2516), + [anon_sym___const] = ACTIONS(2516), + [anon_sym___imag] = ACTIONS(2516), + [anon_sym___kindof] = ACTIONS(2516), + [anon_sym___nonnull] = ACTIONS(2516), + [anon_sym___nullable] = ACTIONS(2516), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2516), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2516), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2516), + [anon_sym___real] = ACTIONS(2516), + [anon_sym___strong] = ACTIONS(2516), + [anon_sym___unsafe_unretained] = ACTIONS(2516), + [anon_sym___unused] = ACTIONS(2516), + [anon_sym___weak] = ACTIONS(2516), + [anon_sym_alignas] = ACTIONS(2516), + [anon_sym__Alignas] = ACTIONS(2516), + [sym_primitive_type] = ACTIONS(2516), + [anon_sym_enum] = ACTIONS(2516), + [anon_sym_struct] = ACTIONS(2516), + [anon_sym_union] = ACTIONS(2516), + [anon_sym_if] = ACTIONS(2516), + [anon_sym_else] = ACTIONS(2516), + [anon_sym_switch] = ACTIONS(2516), + [anon_sym_case] = ACTIONS(2516), + [anon_sym_default] = ACTIONS(2516), + [anon_sym_while] = ACTIONS(2516), + [anon_sym_do] = ACTIONS(2516), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_in] = ACTIONS(2516), + [anon_sym_return] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_goto] = ACTIONS(2516), + [anon_sym_DASH_DASH] = ACTIONS(2518), + [anon_sym_PLUS_PLUS] = ACTIONS(2518), + [anon_sym_sizeof] = ACTIONS(2516), + [anon_sym___alignof__] = ACTIONS(2516), + [anon_sym___alignof] = ACTIONS(2516), + [anon_sym__alignof] = ACTIONS(2516), + [anon_sym_alignof] = ACTIONS(2516), + [anon_sym__Alignof] = ACTIONS(2516), + [anon_sym_offsetof] = ACTIONS(2516), + [anon_sym__Generic] = ACTIONS(2516), + [anon_sym_asm] = ACTIONS(2516), + [anon_sym___asm__] = ACTIONS(2516), + [anon_sym___asm] = ACTIONS(2516), + [sym_number_literal] = ACTIONS(2518), + [anon_sym_L_SQUOTE] = ACTIONS(2518), + [anon_sym_u_SQUOTE] = ACTIONS(2518), + [anon_sym_U_SQUOTE] = ACTIONS(2518), + [anon_sym_u8_SQUOTE] = ACTIONS(2518), + [anon_sym_SQUOTE] = ACTIONS(2518), + [anon_sym_AT] = ACTIONS(2516), + [anon_sym_DQUOTE] = ACTIONS(2518), + [anon_sym_L_DQUOTE] = ACTIONS(2518), + [anon_sym_u_DQUOTE] = ACTIONS(2518), + [anon_sym_U_DQUOTE] = ACTIONS(2518), + [anon_sym_u8_DQUOTE] = ACTIONS(2518), + [sym_true] = ACTIONS(2516), + [sym_false] = ACTIONS(2516), + [anon_sym_NULL] = ACTIONS(2516), + [anon_sym_nullptr] = ACTIONS(2516), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2516), + [anon_sym___typeof] = ACTIONS(2516), + [anon_sym_typeof] = ACTIONS(2516), + [anon_sym_ATimport] = ACTIONS(2518), + [aux_sym_preproc_undef_token1] = ACTIONS(2516), + [anon_sym_POUND] = ACTIONS(2516), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2516), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2516), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2516), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2516), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2516), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2516), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2516), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2516), + [anon_sym_NS_AVAILABLE] = ACTIONS(2516), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2516), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_API_AVAILABLE] = ACTIONS(2516), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_API_DEPRECATED] = ACTIONS(2516), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2516), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2516), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2516), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2516), + [anon_sym___deprecated_msg] = ACTIONS(2516), + [anon_sym___deprecated_enum_msg] = ACTIONS(2516), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2516), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2516), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2516), + [anon_sym_ATprotocol] = ACTIONS(2518), + [anon_sym_ATinterface] = ACTIONS(2518), + [anon_sym_ATimplementation] = ACTIONS(2518), + [anon_sym_ATcompatibility_alias] = ACTIONS(2518), + [anon_sym_ATtry] = ACTIONS(2518), + [anon_sym___try] = ACTIONS(2516), + [anon_sym_ATthrow] = ACTIONS(2518), + [anon_sym_ATselector] = ACTIONS(2518), + [anon_sym_ATavailable] = ACTIONS(2518), + [anon_sym___builtin_available] = ACTIONS(2516), + [anon_sym_va_arg] = ACTIONS(2516), + [anon_sym_ATencode] = ACTIONS(2518), + [anon_sym_ATsynchronized] = ACTIONS(2518), + [anon_sym_BOOL] = ACTIONS(2516), + [anon_sym_IMP] = ACTIONS(2516), + [anon_sym_SEL] = ACTIONS(2516), + [anon_sym_Class] = ACTIONS(2516), + [anon_sym_id] = ACTIONS(2516), + }, + [837] = { + [ts_builtin_sym_end] = ACTIONS(2522), + [sym_identifier] = ACTIONS(2520), + [aux_sym_preproc_include_token1] = ACTIONS(2520), + [aux_sym_preproc_include_token2] = ACTIONS(2520), + [aux_sym_preproc_def_token1] = ACTIONS(2520), + [aux_sym_preproc_if_token1] = ACTIONS(2520), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2520), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2520), + [sym_preproc_directive] = ACTIONS(2520), + [anon_sym_LPAREN2] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2522), + [anon_sym_TILDE] = ACTIONS(2522), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_PLUS] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_CARET] = ACTIONS(2522), + [anon_sym_AMP] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym___extension__] = ACTIONS(2520), + [anon_sym_typedef] = ACTIONS(2520), + [anon_sym_extern] = ACTIONS(2520), + [anon_sym___attribute__] = ACTIONS(2520), + [anon_sym___attribute] = ACTIONS(2520), + [anon_sym_noreturn] = ACTIONS(2520), + [anon_sym_LBRACK] = ACTIONS(2522), + [anon_sym___declspec] = ACTIONS(2520), + [anon_sym___cdecl] = ACTIONS(2520), + [anon_sym___clrcall] = ACTIONS(2520), + [anon_sym___stdcall] = ACTIONS(2520), + [anon_sym___fastcall] = ACTIONS(2520), + [anon_sym___thiscall] = ACTIONS(2520), + [anon_sym___vectorcall] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_signed] = ACTIONS(2520), + [anon_sym_unsigned] = ACTIONS(2520), + [anon_sym_long] = ACTIONS(2520), + [anon_sym_short] = ACTIONS(2520), + [anon_sym_static] = ACTIONS(2520), + [anon_sym_ATautoreleasepool] = ACTIONS(2522), + [anon_sym_auto] = ACTIONS(2520), + [anon_sym_register] = ACTIONS(2520), + [anon_sym_inline] = ACTIONS(2520), + [anon_sym___inline] = ACTIONS(2520), + [anon_sym___inline__] = ACTIONS(2520), + [anon_sym___forceinline] = ACTIONS(2520), + [anon_sym_thread_local] = ACTIONS(2520), + [anon_sym___thread] = ACTIONS(2520), + [anon_sym_CG_EXTERN] = ACTIONS(2520), + [anon_sym_CG_INLINE] = ACTIONS(2520), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2520), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2520), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2520), + [anon_sym_IBOutlet] = ACTIONS(2520), + [anon_sym_IBInspectable] = ACTIONS(2520), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2520), + [anon_sym_NS_INLINE] = ACTIONS(2520), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2520), + [anon_sym_OBJC_EXPORT] = ACTIONS(2520), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2520), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2520), + [anon_sym_const] = ACTIONS(2520), + [anon_sym_constexpr] = ACTIONS(2520), + [anon_sym_volatile] = ACTIONS(2520), + [anon_sym_restrict] = ACTIONS(2520), + [anon_sym___restrict__] = ACTIONS(2520), + [anon_sym__Atomic] = ACTIONS(2520), + [anon_sym__Noreturn] = ACTIONS(2520), + [anon_sym__Nonnull] = ACTIONS(2520), + [anon_sym_nullable] = ACTIONS(2520), + [anon_sym__Complex] = ACTIONS(2520), + [anon_sym__Nullable] = ACTIONS(2520), + [anon_sym__Nullable_result] = ACTIONS(2520), + [anon_sym__Null_unspecified] = ACTIONS(2520), + [anon_sym___autoreleasing] = ACTIONS(2520), + [anon_sym___block] = ACTIONS(2520), + [anon_sym___bridge] = ACTIONS(2520), + [anon_sym___bridge_retained] = ACTIONS(2520), + [anon_sym___bridge_transfer] = ACTIONS(2520), + [anon_sym___complex] = ACTIONS(2520), + [anon_sym___const] = ACTIONS(2520), + [anon_sym___imag] = ACTIONS(2520), + [anon_sym___kindof] = ACTIONS(2520), + [anon_sym___nonnull] = ACTIONS(2520), + [anon_sym___nullable] = ACTIONS(2520), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2520), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2520), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2520), + [anon_sym___real] = ACTIONS(2520), + [anon_sym___strong] = ACTIONS(2520), + [anon_sym___unsafe_unretained] = ACTIONS(2520), + [anon_sym___unused] = ACTIONS(2520), + [anon_sym___weak] = ACTIONS(2520), + [anon_sym_alignas] = ACTIONS(2520), + [anon_sym__Alignas] = ACTIONS(2520), + [sym_primitive_type] = ACTIONS(2520), + [anon_sym_enum] = ACTIONS(2520), + [anon_sym_struct] = ACTIONS(2520), + [anon_sym_union] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2520), + [anon_sym_else] = ACTIONS(2520), + [anon_sym_switch] = ACTIONS(2520), + [anon_sym_case] = ACTIONS(2520), + [anon_sym_default] = ACTIONS(2520), + [anon_sym_while] = ACTIONS(2520), + [anon_sym_do] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2520), + [anon_sym_in] = ACTIONS(2520), + [anon_sym_return] = ACTIONS(2520), + [anon_sym_break] = ACTIONS(2520), + [anon_sym_continue] = ACTIONS(2520), + [anon_sym_goto] = ACTIONS(2520), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_sizeof] = ACTIONS(2520), + [anon_sym___alignof__] = ACTIONS(2520), + [anon_sym___alignof] = ACTIONS(2520), + [anon_sym__alignof] = ACTIONS(2520), + [anon_sym_alignof] = ACTIONS(2520), + [anon_sym__Alignof] = ACTIONS(2520), + [anon_sym_offsetof] = ACTIONS(2520), + [anon_sym__Generic] = ACTIONS(2520), + [anon_sym_asm] = ACTIONS(2520), + [anon_sym___asm__] = ACTIONS(2520), + [anon_sym___asm] = ACTIONS(2520), + [sym_number_literal] = ACTIONS(2522), + [anon_sym_L_SQUOTE] = ACTIONS(2522), + [anon_sym_u_SQUOTE] = ACTIONS(2522), + [anon_sym_U_SQUOTE] = ACTIONS(2522), + [anon_sym_u8_SQUOTE] = ACTIONS(2522), + [anon_sym_SQUOTE] = ACTIONS(2522), + [anon_sym_AT] = ACTIONS(2520), + [anon_sym_DQUOTE] = ACTIONS(2522), + [anon_sym_L_DQUOTE] = ACTIONS(2522), + [anon_sym_u_DQUOTE] = ACTIONS(2522), + [anon_sym_U_DQUOTE] = ACTIONS(2522), + [anon_sym_u8_DQUOTE] = ACTIONS(2522), + [sym_true] = ACTIONS(2520), + [sym_false] = ACTIONS(2520), + [anon_sym_NULL] = ACTIONS(2520), + [anon_sym_nullptr] = ACTIONS(2520), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2520), + [anon_sym___typeof] = ACTIONS(2520), + [anon_sym_typeof] = ACTIONS(2520), + [anon_sym_ATimport] = ACTIONS(2522), + [aux_sym_preproc_undef_token1] = ACTIONS(2520), + [anon_sym_POUND] = ACTIONS(2520), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2520), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2520), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2520), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2520), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2520), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2520), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2520), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2520), + [anon_sym_NS_AVAILABLE] = ACTIONS(2520), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2520), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_API_AVAILABLE] = ACTIONS(2520), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_API_DEPRECATED] = ACTIONS(2520), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2520), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2520), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2520), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2520), + [anon_sym___deprecated_msg] = ACTIONS(2520), + [anon_sym___deprecated_enum_msg] = ACTIONS(2520), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2520), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2520), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2520), + [anon_sym_ATprotocol] = ACTIONS(2522), + [anon_sym_ATinterface] = ACTIONS(2522), + [anon_sym_ATimplementation] = ACTIONS(2522), + [anon_sym_ATcompatibility_alias] = ACTIONS(2522), + [anon_sym_ATtry] = ACTIONS(2522), + [anon_sym___try] = ACTIONS(2520), + [anon_sym_ATthrow] = ACTIONS(2522), + [anon_sym_ATselector] = ACTIONS(2522), + [anon_sym_ATavailable] = ACTIONS(2522), + [anon_sym___builtin_available] = ACTIONS(2520), + [anon_sym_va_arg] = ACTIONS(2520), + [anon_sym_ATencode] = ACTIONS(2522), + [anon_sym_ATsynchronized] = ACTIONS(2522), + [anon_sym_BOOL] = ACTIONS(2520), + [anon_sym_IMP] = ACTIONS(2520), + [anon_sym_SEL] = ACTIONS(2520), + [anon_sym_Class] = ACTIONS(2520), + [anon_sym_id] = ACTIONS(2520), + }, + [838] = { + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_include_token1] = ACTIONS(2458), + [aux_sym_preproc_include_token2] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2460), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2460), + [anon_sym_RBRACE] = ACTIONS(2460), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_ATautoreleasepool] = ACTIONS(2460), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_goto] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2460), + [anon_sym_sizeof] = ACTIONS(2458), + [anon_sym___alignof__] = ACTIONS(2458), + [anon_sym___alignof] = ACTIONS(2458), + [anon_sym__alignof] = ACTIONS(2458), + [anon_sym_alignof] = ACTIONS(2458), + [anon_sym__Alignof] = ACTIONS(2458), + [anon_sym_offsetof] = ACTIONS(2458), + [anon_sym__Generic] = ACTIONS(2458), + [anon_sym_asm] = ACTIONS(2458), + [anon_sym___asm__] = ACTIONS(2458), + [anon_sym___asm] = ACTIONS(2458), + [sym_number_literal] = ACTIONS(2460), + [anon_sym_L_SQUOTE] = ACTIONS(2460), + [anon_sym_u_SQUOTE] = ACTIONS(2460), + [anon_sym_U_SQUOTE] = ACTIONS(2460), + [anon_sym_u8_SQUOTE] = ACTIONS(2460), + [anon_sym_SQUOTE] = ACTIONS(2460), + [anon_sym_AT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_L_DQUOTE] = ACTIONS(2460), + [anon_sym_u_DQUOTE] = ACTIONS(2460), + [anon_sym_U_DQUOTE] = ACTIONS(2460), + [anon_sym_u8_DQUOTE] = ACTIONS(2460), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [anon_sym_NULL] = ACTIONS(2458), + [anon_sym_nullptr] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_ATimport] = ACTIONS(2460), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_POUND] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATprotocol] = ACTIONS(2460), + [anon_sym_ATinterface] = ACTIONS(2460), + [anon_sym_ATimplementation] = ACTIONS(2460), + [anon_sym_ATcompatibility_alias] = ACTIONS(2460), + [anon_sym_ATtry] = ACTIONS(2460), + [anon_sym___try] = ACTIONS(2458), + [anon_sym_ATthrow] = ACTIONS(2460), + [anon_sym_ATselector] = ACTIONS(2460), + [anon_sym_ATavailable] = ACTIONS(2460), + [anon_sym___builtin_available] = ACTIONS(2458), + [anon_sym_va_arg] = ACTIONS(2458), + [anon_sym_ATencode] = ACTIONS(2460), + [anon_sym_ATsynchronized] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [839] = { + [sym_identifier] = ACTIONS(2816), + [aux_sym_preproc_include_token1] = ACTIONS(2816), + [aux_sym_preproc_include_token2] = ACTIONS(2816), + [aux_sym_preproc_def_token1] = ACTIONS(2816), + [aux_sym_preproc_if_token1] = ACTIONS(2816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2816), + [sym_preproc_directive] = ACTIONS(2816), + [anon_sym_LPAREN2] = ACTIONS(2818), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_TILDE] = ACTIONS(2818), + [anon_sym_DASH] = ACTIONS(2816), + [anon_sym_PLUS] = ACTIONS(2816), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_CARET] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym___extension__] = ACTIONS(2816), + [anon_sym_typedef] = ACTIONS(2816), + [anon_sym_extern] = ACTIONS(2816), + [anon_sym___attribute__] = ACTIONS(2816), + [anon_sym___attribute] = ACTIONS(2816), + [anon_sym_noreturn] = ACTIONS(2816), + [anon_sym_LBRACK] = ACTIONS(2818), + [anon_sym___declspec] = ACTIONS(2816), + [anon_sym___cdecl] = ACTIONS(2816), + [anon_sym___clrcall] = ACTIONS(2816), + [anon_sym___stdcall] = ACTIONS(2816), + [anon_sym___fastcall] = ACTIONS(2816), + [anon_sym___thiscall] = ACTIONS(2816), + [anon_sym___vectorcall] = ACTIONS(2816), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_RBRACE] = ACTIONS(2818), + [anon_sym_signed] = ACTIONS(2816), + [anon_sym_unsigned] = ACTIONS(2816), + [anon_sym_long] = ACTIONS(2816), + [anon_sym_short] = ACTIONS(2816), + [anon_sym_static] = ACTIONS(2816), + [anon_sym_ATautoreleasepool] = ACTIONS(2818), + [anon_sym_auto] = ACTIONS(2816), + [anon_sym_register] = ACTIONS(2816), + [anon_sym_inline] = ACTIONS(2816), + [anon_sym___inline] = ACTIONS(2816), + [anon_sym___inline__] = ACTIONS(2816), + [anon_sym___forceinline] = ACTIONS(2816), + [anon_sym_thread_local] = ACTIONS(2816), + [anon_sym___thread] = ACTIONS(2816), + [anon_sym_CG_EXTERN] = ACTIONS(2816), + [anon_sym_CG_INLINE] = ACTIONS(2816), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2816), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2816), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2816), + [anon_sym_IBOutlet] = ACTIONS(2816), + [anon_sym_IBInspectable] = ACTIONS(2816), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2816), + [anon_sym_NS_INLINE] = ACTIONS(2816), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2816), + [anon_sym_OBJC_EXPORT] = ACTIONS(2816), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2816), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2816), + [anon_sym_const] = ACTIONS(2816), + [anon_sym_constexpr] = ACTIONS(2816), + [anon_sym_volatile] = ACTIONS(2816), + [anon_sym_restrict] = ACTIONS(2816), + [anon_sym___restrict__] = ACTIONS(2816), + [anon_sym__Atomic] = ACTIONS(2816), + [anon_sym__Noreturn] = ACTIONS(2816), + [anon_sym__Nonnull] = ACTIONS(2816), + [anon_sym_nullable] = ACTIONS(2816), + [anon_sym__Complex] = ACTIONS(2816), + [anon_sym__Nullable] = ACTIONS(2816), + [anon_sym__Nullable_result] = ACTIONS(2816), + [anon_sym__Null_unspecified] = ACTIONS(2816), + [anon_sym___autoreleasing] = ACTIONS(2816), + [anon_sym___block] = ACTIONS(2816), + [anon_sym___bridge] = ACTIONS(2816), + [anon_sym___bridge_retained] = ACTIONS(2816), + [anon_sym___bridge_transfer] = ACTIONS(2816), + [anon_sym___complex] = ACTIONS(2816), + [anon_sym___const] = ACTIONS(2816), + [anon_sym___imag] = ACTIONS(2816), + [anon_sym___kindof] = ACTIONS(2816), + [anon_sym___nonnull] = ACTIONS(2816), + [anon_sym___nullable] = ACTIONS(2816), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2816), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2816), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2816), + [anon_sym___real] = ACTIONS(2816), + [anon_sym___strong] = ACTIONS(2816), + [anon_sym___unsafe_unretained] = ACTIONS(2816), + [anon_sym___unused] = ACTIONS(2816), + [anon_sym___weak] = ACTIONS(2816), + [anon_sym_alignas] = ACTIONS(2816), + [anon_sym__Alignas] = ACTIONS(2816), + [sym_primitive_type] = ACTIONS(2816), + [anon_sym_enum] = ACTIONS(2816), + [anon_sym_struct] = ACTIONS(2816), + [anon_sym_union] = ACTIONS(2816), + [anon_sym_if] = ACTIONS(2816), + [anon_sym_switch] = ACTIONS(2816), + [anon_sym_case] = ACTIONS(2816), + [anon_sym_default] = ACTIONS(2816), + [anon_sym_while] = ACTIONS(2816), + [anon_sym_do] = ACTIONS(2816), + [anon_sym_for] = ACTIONS(2816), + [anon_sym_in] = ACTIONS(2816), + [anon_sym_return] = ACTIONS(2816), + [anon_sym_break] = ACTIONS(2816), + [anon_sym_continue] = ACTIONS(2816), + [anon_sym_goto] = ACTIONS(2816), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_sizeof] = ACTIONS(2816), + [anon_sym___alignof__] = ACTIONS(2816), + [anon_sym___alignof] = ACTIONS(2816), + [anon_sym__alignof] = ACTIONS(2816), + [anon_sym_alignof] = ACTIONS(2816), + [anon_sym__Alignof] = ACTIONS(2816), + [anon_sym_offsetof] = ACTIONS(2816), + [anon_sym__Generic] = ACTIONS(2816), + [anon_sym_asm] = ACTIONS(2816), + [anon_sym___asm__] = ACTIONS(2816), + [anon_sym___asm] = ACTIONS(2816), + [sym_number_literal] = ACTIONS(2818), + [anon_sym_L_SQUOTE] = ACTIONS(2818), + [anon_sym_u_SQUOTE] = ACTIONS(2818), + [anon_sym_U_SQUOTE] = ACTIONS(2818), + [anon_sym_u8_SQUOTE] = ACTIONS(2818), + [anon_sym_SQUOTE] = ACTIONS(2818), + [anon_sym_AT] = ACTIONS(2816), + [anon_sym_DQUOTE] = ACTIONS(2818), + [anon_sym_L_DQUOTE] = ACTIONS(2818), + [anon_sym_u_DQUOTE] = ACTIONS(2818), + [anon_sym_U_DQUOTE] = ACTIONS(2818), + [anon_sym_u8_DQUOTE] = ACTIONS(2818), + [sym_true] = ACTIONS(2816), + [sym_false] = ACTIONS(2816), + [anon_sym_NULL] = ACTIONS(2816), + [anon_sym_nullptr] = ACTIONS(2816), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2816), + [anon_sym___typeof] = ACTIONS(2816), + [anon_sym_typeof] = ACTIONS(2816), + [anon_sym_ATimport] = ACTIONS(2818), + [aux_sym_preproc_undef_token1] = ACTIONS(2816), + [anon_sym_POUND] = ACTIONS(2816), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2816), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2816), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2816), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2816), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2816), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2816), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2816), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2816), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2816), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2816), + [anon_sym_NS_AVAILABLE] = ACTIONS(2816), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2816), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2816), + [anon_sym_API_AVAILABLE] = ACTIONS(2816), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2816), + [anon_sym_API_DEPRECATED] = ACTIONS(2816), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2816), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2816), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2816), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2816), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2816), + [anon_sym___deprecated_msg] = ACTIONS(2816), + [anon_sym___deprecated_enum_msg] = ACTIONS(2816), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2816), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2816), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2816), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2816), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2816), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2816), + [anon_sym_ATprotocol] = ACTIONS(2818), + [anon_sym_ATinterface] = ACTIONS(2818), + [anon_sym_ATimplementation] = ACTIONS(2818), + [anon_sym_ATcompatibility_alias] = ACTIONS(2818), + [anon_sym_ATtry] = ACTIONS(2818), + [anon_sym___try] = ACTIONS(2816), + [anon_sym_ATthrow] = ACTIONS(2818), + [anon_sym_ATselector] = ACTIONS(2818), + [anon_sym_ATavailable] = ACTIONS(2818), + [anon_sym___builtin_available] = ACTIONS(2816), + [anon_sym_va_arg] = ACTIONS(2816), + [anon_sym_ATencode] = ACTIONS(2818), + [anon_sym_ATsynchronized] = ACTIONS(2818), + [anon_sym_BOOL] = ACTIONS(2816), + [anon_sym_IMP] = ACTIONS(2816), + [anon_sym_SEL] = ACTIONS(2816), + [anon_sym_Class] = ACTIONS(2816), + [anon_sym_id] = ACTIONS(2816), + }, + [840] = { + [sym_identifier] = ACTIONS(2796), + [aux_sym_preproc_include_token1] = ACTIONS(2796), + [aux_sym_preproc_include_token2] = ACTIONS(2796), + [aux_sym_preproc_def_token1] = ACTIONS(2796), + [aux_sym_preproc_if_token1] = ACTIONS(2796), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2796), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2796), + [sym_preproc_directive] = ACTIONS(2796), + [anon_sym_LPAREN2] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_TILDE] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2796), + [anon_sym_PLUS] = ACTIONS(2796), + [anon_sym_STAR] = ACTIONS(2798), + [anon_sym_CARET] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2798), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym___extension__] = ACTIONS(2796), + [anon_sym_typedef] = ACTIONS(2796), + [anon_sym_extern] = ACTIONS(2796), + [anon_sym___attribute__] = ACTIONS(2796), + [anon_sym___attribute] = ACTIONS(2796), + [anon_sym_noreturn] = ACTIONS(2796), + [anon_sym_LBRACK] = ACTIONS(2798), + [anon_sym___declspec] = ACTIONS(2796), + [anon_sym___cdecl] = ACTIONS(2796), + [anon_sym___clrcall] = ACTIONS(2796), + [anon_sym___stdcall] = ACTIONS(2796), + [anon_sym___fastcall] = ACTIONS(2796), + [anon_sym___thiscall] = ACTIONS(2796), + [anon_sym___vectorcall] = ACTIONS(2796), + [anon_sym_LBRACE] = ACTIONS(2798), + [anon_sym_RBRACE] = ACTIONS(2798), + [anon_sym_signed] = ACTIONS(2796), + [anon_sym_unsigned] = ACTIONS(2796), + [anon_sym_long] = ACTIONS(2796), + [anon_sym_short] = ACTIONS(2796), + [anon_sym_static] = ACTIONS(2796), + [anon_sym_ATautoreleasepool] = ACTIONS(2798), + [anon_sym_auto] = ACTIONS(2796), + [anon_sym_register] = ACTIONS(2796), + [anon_sym_inline] = ACTIONS(2796), + [anon_sym___inline] = ACTIONS(2796), + [anon_sym___inline__] = ACTIONS(2796), + [anon_sym___forceinline] = ACTIONS(2796), + [anon_sym_thread_local] = ACTIONS(2796), + [anon_sym___thread] = ACTIONS(2796), + [anon_sym_CG_EXTERN] = ACTIONS(2796), + [anon_sym_CG_INLINE] = ACTIONS(2796), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2796), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2796), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2796), + [anon_sym_IBOutlet] = ACTIONS(2796), + [anon_sym_IBInspectable] = ACTIONS(2796), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2796), + [anon_sym_NS_INLINE] = ACTIONS(2796), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2796), + [anon_sym_OBJC_EXPORT] = ACTIONS(2796), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2796), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2796), + [anon_sym_const] = ACTIONS(2796), + [anon_sym_constexpr] = ACTIONS(2796), + [anon_sym_volatile] = ACTIONS(2796), + [anon_sym_restrict] = ACTIONS(2796), + [anon_sym___restrict__] = ACTIONS(2796), + [anon_sym__Atomic] = ACTIONS(2796), + [anon_sym__Noreturn] = ACTIONS(2796), + [anon_sym__Nonnull] = ACTIONS(2796), + [anon_sym_nullable] = ACTIONS(2796), + [anon_sym__Complex] = ACTIONS(2796), + [anon_sym__Nullable] = ACTIONS(2796), + [anon_sym__Nullable_result] = ACTIONS(2796), + [anon_sym__Null_unspecified] = ACTIONS(2796), + [anon_sym___autoreleasing] = ACTIONS(2796), + [anon_sym___block] = ACTIONS(2796), + [anon_sym___bridge] = ACTIONS(2796), + [anon_sym___bridge_retained] = ACTIONS(2796), + [anon_sym___bridge_transfer] = ACTIONS(2796), + [anon_sym___complex] = ACTIONS(2796), + [anon_sym___const] = ACTIONS(2796), + [anon_sym___imag] = ACTIONS(2796), + [anon_sym___kindof] = ACTIONS(2796), + [anon_sym___nonnull] = ACTIONS(2796), + [anon_sym___nullable] = ACTIONS(2796), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2796), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2796), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2796), + [anon_sym___real] = ACTIONS(2796), + [anon_sym___strong] = ACTIONS(2796), + [anon_sym___unsafe_unretained] = ACTIONS(2796), + [anon_sym___unused] = ACTIONS(2796), + [anon_sym___weak] = ACTIONS(2796), + [anon_sym_alignas] = ACTIONS(2796), + [anon_sym__Alignas] = ACTIONS(2796), + [sym_primitive_type] = ACTIONS(2796), + [anon_sym_enum] = ACTIONS(2796), + [anon_sym_struct] = ACTIONS(2796), + [anon_sym_union] = ACTIONS(2796), + [anon_sym_if] = ACTIONS(2796), + [anon_sym_switch] = ACTIONS(2796), + [anon_sym_case] = ACTIONS(2796), + [anon_sym_default] = ACTIONS(2796), + [anon_sym_while] = ACTIONS(2796), + [anon_sym_do] = ACTIONS(2796), + [anon_sym_for] = ACTIONS(2796), + [anon_sym_in] = ACTIONS(2796), + [anon_sym_return] = ACTIONS(2796), + [anon_sym_break] = ACTIONS(2796), + [anon_sym_continue] = ACTIONS(2796), + [anon_sym_goto] = ACTIONS(2796), + [anon_sym_DASH_DASH] = ACTIONS(2798), + [anon_sym_PLUS_PLUS] = ACTIONS(2798), + [anon_sym_sizeof] = ACTIONS(2796), + [anon_sym___alignof__] = ACTIONS(2796), + [anon_sym___alignof] = ACTIONS(2796), + [anon_sym__alignof] = ACTIONS(2796), + [anon_sym_alignof] = ACTIONS(2796), + [anon_sym__Alignof] = ACTIONS(2796), + [anon_sym_offsetof] = ACTIONS(2796), + [anon_sym__Generic] = ACTIONS(2796), + [anon_sym_asm] = ACTIONS(2796), + [anon_sym___asm__] = ACTIONS(2796), + [anon_sym___asm] = ACTIONS(2796), + [sym_number_literal] = ACTIONS(2798), + [anon_sym_L_SQUOTE] = ACTIONS(2798), + [anon_sym_u_SQUOTE] = ACTIONS(2798), + [anon_sym_U_SQUOTE] = ACTIONS(2798), + [anon_sym_u8_SQUOTE] = ACTIONS(2798), + [anon_sym_SQUOTE] = ACTIONS(2798), + [anon_sym_AT] = ACTIONS(2796), + [anon_sym_DQUOTE] = ACTIONS(2798), + [anon_sym_L_DQUOTE] = ACTIONS(2798), + [anon_sym_u_DQUOTE] = ACTIONS(2798), + [anon_sym_U_DQUOTE] = ACTIONS(2798), + [anon_sym_u8_DQUOTE] = ACTIONS(2798), + [sym_true] = ACTIONS(2796), + [sym_false] = ACTIONS(2796), + [anon_sym_NULL] = ACTIONS(2796), + [anon_sym_nullptr] = ACTIONS(2796), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2796), + [anon_sym___typeof] = ACTIONS(2796), + [anon_sym_typeof] = ACTIONS(2796), + [anon_sym_ATimport] = ACTIONS(2798), + [aux_sym_preproc_undef_token1] = ACTIONS(2796), + [anon_sym_POUND] = ACTIONS(2796), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2796), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2796), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2796), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2796), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2796), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2796), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2796), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2796), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2796), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2796), + [anon_sym_NS_AVAILABLE] = ACTIONS(2796), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2796), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2796), + [anon_sym_API_AVAILABLE] = ACTIONS(2796), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2796), + [anon_sym_API_DEPRECATED] = ACTIONS(2796), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2796), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2796), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2796), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2796), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2796), + [anon_sym___deprecated_msg] = ACTIONS(2796), + [anon_sym___deprecated_enum_msg] = ACTIONS(2796), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2796), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2796), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2796), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2796), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2796), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2796), + [anon_sym_ATprotocol] = ACTIONS(2798), + [anon_sym_ATinterface] = ACTIONS(2798), + [anon_sym_ATimplementation] = ACTIONS(2798), + [anon_sym_ATcompatibility_alias] = ACTIONS(2798), + [anon_sym_ATtry] = ACTIONS(2798), + [anon_sym___try] = ACTIONS(2796), + [anon_sym_ATthrow] = ACTIONS(2798), + [anon_sym_ATselector] = ACTIONS(2798), + [anon_sym_ATavailable] = ACTIONS(2798), + [anon_sym___builtin_available] = ACTIONS(2796), + [anon_sym_va_arg] = ACTIONS(2796), + [anon_sym_ATencode] = ACTIONS(2798), + [anon_sym_ATsynchronized] = ACTIONS(2798), + [anon_sym_BOOL] = ACTIONS(2796), + [anon_sym_IMP] = ACTIONS(2796), + [anon_sym_SEL] = ACTIONS(2796), + [anon_sym_Class] = ACTIONS(2796), + [anon_sym_id] = ACTIONS(2796), + }, + [841] = { + [sym_identifier] = ACTIONS(2856), + [aux_sym_preproc_include_token1] = ACTIONS(2856), + [aux_sym_preproc_include_token2] = ACTIONS(2856), + [aux_sym_preproc_def_token1] = ACTIONS(2856), + [aux_sym_preproc_if_token1] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2856), + [sym_preproc_directive] = ACTIONS(2856), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_CARET] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2858), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym___extension__] = ACTIONS(2856), + [anon_sym_typedef] = ACTIONS(2856), + [anon_sym_extern] = ACTIONS(2856), + [anon_sym___attribute__] = ACTIONS(2856), + [anon_sym___attribute] = ACTIONS(2856), + [anon_sym_noreturn] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2858), + [anon_sym___declspec] = ACTIONS(2856), + [anon_sym___cdecl] = ACTIONS(2856), + [anon_sym___clrcall] = ACTIONS(2856), + [anon_sym___stdcall] = ACTIONS(2856), + [anon_sym___fastcall] = ACTIONS(2856), + [anon_sym___thiscall] = ACTIONS(2856), + [anon_sym___vectorcall] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_RBRACE] = ACTIONS(2858), + [anon_sym_signed] = ACTIONS(2856), + [anon_sym_unsigned] = ACTIONS(2856), + [anon_sym_long] = ACTIONS(2856), + [anon_sym_short] = ACTIONS(2856), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_ATautoreleasepool] = ACTIONS(2858), + [anon_sym_auto] = ACTIONS(2856), + [anon_sym_register] = ACTIONS(2856), + [anon_sym_inline] = ACTIONS(2856), + [anon_sym___inline] = ACTIONS(2856), + [anon_sym___inline__] = ACTIONS(2856), + [anon_sym___forceinline] = ACTIONS(2856), + [anon_sym_thread_local] = ACTIONS(2856), + [anon_sym___thread] = ACTIONS(2856), + [anon_sym_CG_EXTERN] = ACTIONS(2856), + [anon_sym_CG_INLINE] = ACTIONS(2856), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2856), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2856), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2856), + [anon_sym_IBOutlet] = ACTIONS(2856), + [anon_sym_IBInspectable] = ACTIONS(2856), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2856), + [anon_sym_NS_INLINE] = ACTIONS(2856), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2856), + [anon_sym_OBJC_EXPORT] = ACTIONS(2856), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2856), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2856), + [anon_sym_constexpr] = ACTIONS(2856), + [anon_sym_volatile] = ACTIONS(2856), + [anon_sym_restrict] = ACTIONS(2856), + [anon_sym___restrict__] = ACTIONS(2856), + [anon_sym__Atomic] = ACTIONS(2856), + [anon_sym__Noreturn] = ACTIONS(2856), + [anon_sym__Nonnull] = ACTIONS(2856), + [anon_sym_nullable] = ACTIONS(2856), + [anon_sym__Complex] = ACTIONS(2856), + [anon_sym__Nullable] = ACTIONS(2856), + [anon_sym__Nullable_result] = ACTIONS(2856), + [anon_sym__Null_unspecified] = ACTIONS(2856), + [anon_sym___autoreleasing] = ACTIONS(2856), + [anon_sym___block] = ACTIONS(2856), + [anon_sym___bridge] = ACTIONS(2856), + [anon_sym___bridge_retained] = ACTIONS(2856), + [anon_sym___bridge_transfer] = ACTIONS(2856), + [anon_sym___complex] = ACTIONS(2856), + [anon_sym___const] = ACTIONS(2856), + [anon_sym___imag] = ACTIONS(2856), + [anon_sym___kindof] = ACTIONS(2856), + [anon_sym___nonnull] = ACTIONS(2856), + [anon_sym___nullable] = ACTIONS(2856), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2856), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2856), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2856), + [anon_sym___real] = ACTIONS(2856), + [anon_sym___strong] = ACTIONS(2856), + [anon_sym___unsafe_unretained] = ACTIONS(2856), + [anon_sym___unused] = ACTIONS(2856), + [anon_sym___weak] = ACTIONS(2856), + [anon_sym_alignas] = ACTIONS(2856), + [anon_sym__Alignas] = ACTIONS(2856), + [sym_primitive_type] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2856), + [anon_sym_union] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_switch] = ACTIONS(2856), + [anon_sym_case] = ACTIONS(2856), + [anon_sym_default] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_in] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(2856), + [anon_sym_continue] = ACTIONS(2856), + [anon_sym_goto] = ACTIONS(2856), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_sizeof] = ACTIONS(2856), + [anon_sym___alignof__] = ACTIONS(2856), + [anon_sym___alignof] = ACTIONS(2856), + [anon_sym__alignof] = ACTIONS(2856), + [anon_sym_alignof] = ACTIONS(2856), + [anon_sym__Alignof] = ACTIONS(2856), + [anon_sym_offsetof] = ACTIONS(2856), + [anon_sym__Generic] = ACTIONS(2856), + [anon_sym_asm] = ACTIONS(2856), + [anon_sym___asm__] = ACTIONS(2856), + [anon_sym___asm] = ACTIONS(2856), + [sym_number_literal] = ACTIONS(2858), + [anon_sym_L_SQUOTE] = ACTIONS(2858), + [anon_sym_u_SQUOTE] = ACTIONS(2858), + [anon_sym_U_SQUOTE] = ACTIONS(2858), + [anon_sym_u8_SQUOTE] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_AT] = ACTIONS(2856), + [anon_sym_DQUOTE] = ACTIONS(2858), + [anon_sym_L_DQUOTE] = ACTIONS(2858), + [anon_sym_u_DQUOTE] = ACTIONS(2858), + [anon_sym_U_DQUOTE] = ACTIONS(2858), + [anon_sym_u8_DQUOTE] = ACTIONS(2858), + [sym_true] = ACTIONS(2856), + [sym_false] = ACTIONS(2856), + [anon_sym_NULL] = ACTIONS(2856), + [anon_sym_nullptr] = ACTIONS(2856), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2856), + [anon_sym___typeof] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2856), + [anon_sym_ATimport] = ACTIONS(2858), + [aux_sym_preproc_undef_token1] = ACTIONS(2856), + [anon_sym_POUND] = ACTIONS(2856), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2856), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2856), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2856), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2856), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2856), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2856), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2856), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2856), + [anon_sym_NS_AVAILABLE] = ACTIONS(2856), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2856), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_API_AVAILABLE] = ACTIONS(2856), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_API_DEPRECATED] = ACTIONS(2856), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2856), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2856), + [anon_sym___deprecated_msg] = ACTIONS(2856), + [anon_sym___deprecated_enum_msg] = ACTIONS(2856), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2856), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2856), + [anon_sym_ATprotocol] = ACTIONS(2858), + [anon_sym_ATinterface] = ACTIONS(2858), + [anon_sym_ATimplementation] = ACTIONS(2858), + [anon_sym_ATcompatibility_alias] = ACTIONS(2858), + [anon_sym_ATtry] = ACTIONS(2858), + [anon_sym___try] = ACTIONS(2856), + [anon_sym_ATthrow] = ACTIONS(2858), + [anon_sym_ATselector] = ACTIONS(2858), + [anon_sym_ATavailable] = ACTIONS(2858), + [anon_sym___builtin_available] = ACTIONS(2856), + [anon_sym_va_arg] = ACTIONS(2856), + [anon_sym_ATencode] = ACTIONS(2858), + [anon_sym_ATsynchronized] = ACTIONS(2858), + [anon_sym_BOOL] = ACTIONS(2856), + [anon_sym_IMP] = ACTIONS(2856), + [anon_sym_SEL] = ACTIONS(2856), + [anon_sym_Class] = ACTIONS(2856), + [anon_sym_id] = ACTIONS(2856), + }, + [842] = { + [sym_identifier] = ACTIONS(2800), + [aux_sym_preproc_include_token1] = ACTIONS(2800), + [aux_sym_preproc_include_token2] = ACTIONS(2800), + [aux_sym_preproc_def_token1] = ACTIONS(2800), + [aux_sym_preproc_if_token1] = ACTIONS(2800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2800), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2800), + [sym_preproc_directive] = ACTIONS(2800), + [anon_sym_LPAREN2] = ACTIONS(2802), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_TILDE] = ACTIONS(2802), + [anon_sym_DASH] = ACTIONS(2800), + [anon_sym_PLUS] = ACTIONS(2800), + [anon_sym_STAR] = ACTIONS(2802), + [anon_sym_CARET] = ACTIONS(2802), + [anon_sym_AMP] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym___extension__] = ACTIONS(2800), + [anon_sym_typedef] = ACTIONS(2800), + [anon_sym_extern] = ACTIONS(2800), + [anon_sym___attribute__] = ACTIONS(2800), + [anon_sym___attribute] = ACTIONS(2800), + [anon_sym_noreturn] = ACTIONS(2800), + [anon_sym_LBRACK] = ACTIONS(2802), + [anon_sym___declspec] = ACTIONS(2800), + [anon_sym___cdecl] = ACTIONS(2800), + [anon_sym___clrcall] = ACTIONS(2800), + [anon_sym___stdcall] = ACTIONS(2800), + [anon_sym___fastcall] = ACTIONS(2800), + [anon_sym___thiscall] = ACTIONS(2800), + [anon_sym___vectorcall] = ACTIONS(2800), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_RBRACE] = ACTIONS(2802), + [anon_sym_signed] = ACTIONS(2800), + [anon_sym_unsigned] = ACTIONS(2800), + [anon_sym_long] = ACTIONS(2800), + [anon_sym_short] = ACTIONS(2800), + [anon_sym_static] = ACTIONS(2800), + [anon_sym_ATautoreleasepool] = ACTIONS(2802), + [anon_sym_auto] = ACTIONS(2800), + [anon_sym_register] = ACTIONS(2800), + [anon_sym_inline] = ACTIONS(2800), + [anon_sym___inline] = ACTIONS(2800), + [anon_sym___inline__] = ACTIONS(2800), + [anon_sym___forceinline] = ACTIONS(2800), + [anon_sym_thread_local] = ACTIONS(2800), + [anon_sym___thread] = ACTIONS(2800), + [anon_sym_CG_EXTERN] = ACTIONS(2800), + [anon_sym_CG_INLINE] = ACTIONS(2800), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2800), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2800), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2800), + [anon_sym_IBOutlet] = ACTIONS(2800), + [anon_sym_IBInspectable] = ACTIONS(2800), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2800), + [anon_sym_NS_INLINE] = ACTIONS(2800), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2800), + [anon_sym_OBJC_EXPORT] = ACTIONS(2800), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2800), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2800), + [anon_sym_const] = ACTIONS(2800), + [anon_sym_constexpr] = ACTIONS(2800), + [anon_sym_volatile] = ACTIONS(2800), + [anon_sym_restrict] = ACTIONS(2800), + [anon_sym___restrict__] = ACTIONS(2800), + [anon_sym__Atomic] = ACTIONS(2800), + [anon_sym__Noreturn] = ACTIONS(2800), + [anon_sym__Nonnull] = ACTIONS(2800), + [anon_sym_nullable] = ACTIONS(2800), + [anon_sym__Complex] = ACTIONS(2800), + [anon_sym__Nullable] = ACTIONS(2800), + [anon_sym__Nullable_result] = ACTIONS(2800), + [anon_sym__Null_unspecified] = ACTIONS(2800), + [anon_sym___autoreleasing] = ACTIONS(2800), + [anon_sym___block] = ACTIONS(2800), + [anon_sym___bridge] = ACTIONS(2800), + [anon_sym___bridge_retained] = ACTIONS(2800), + [anon_sym___bridge_transfer] = ACTIONS(2800), + [anon_sym___complex] = ACTIONS(2800), + [anon_sym___const] = ACTIONS(2800), + [anon_sym___imag] = ACTIONS(2800), + [anon_sym___kindof] = ACTIONS(2800), + [anon_sym___nonnull] = ACTIONS(2800), + [anon_sym___nullable] = ACTIONS(2800), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2800), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2800), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2800), + [anon_sym___real] = ACTIONS(2800), + [anon_sym___strong] = ACTIONS(2800), + [anon_sym___unsafe_unretained] = ACTIONS(2800), + [anon_sym___unused] = ACTIONS(2800), + [anon_sym___weak] = ACTIONS(2800), + [anon_sym_alignas] = ACTIONS(2800), + [anon_sym__Alignas] = ACTIONS(2800), + [sym_primitive_type] = ACTIONS(2800), + [anon_sym_enum] = ACTIONS(2800), + [anon_sym_struct] = ACTIONS(2800), + [anon_sym_union] = ACTIONS(2800), + [anon_sym_if] = ACTIONS(2800), + [anon_sym_switch] = ACTIONS(2800), + [anon_sym_case] = ACTIONS(2800), + [anon_sym_default] = ACTIONS(2800), + [anon_sym_while] = ACTIONS(2800), + [anon_sym_do] = ACTIONS(2800), + [anon_sym_for] = ACTIONS(2800), + [anon_sym_in] = ACTIONS(2800), + [anon_sym_return] = ACTIONS(2800), + [anon_sym_break] = ACTIONS(2800), + [anon_sym_continue] = ACTIONS(2800), + [anon_sym_goto] = ACTIONS(2800), + [anon_sym_DASH_DASH] = ACTIONS(2802), + [anon_sym_PLUS_PLUS] = ACTIONS(2802), + [anon_sym_sizeof] = ACTIONS(2800), + [anon_sym___alignof__] = ACTIONS(2800), + [anon_sym___alignof] = ACTIONS(2800), + [anon_sym__alignof] = ACTIONS(2800), + [anon_sym_alignof] = ACTIONS(2800), + [anon_sym__Alignof] = ACTIONS(2800), + [anon_sym_offsetof] = ACTIONS(2800), + [anon_sym__Generic] = ACTIONS(2800), + [anon_sym_asm] = ACTIONS(2800), + [anon_sym___asm__] = ACTIONS(2800), + [anon_sym___asm] = ACTIONS(2800), + [sym_number_literal] = ACTIONS(2802), + [anon_sym_L_SQUOTE] = ACTIONS(2802), + [anon_sym_u_SQUOTE] = ACTIONS(2802), + [anon_sym_U_SQUOTE] = ACTIONS(2802), + [anon_sym_u8_SQUOTE] = ACTIONS(2802), + [anon_sym_SQUOTE] = ACTIONS(2802), + [anon_sym_AT] = ACTIONS(2800), + [anon_sym_DQUOTE] = ACTIONS(2802), + [anon_sym_L_DQUOTE] = ACTIONS(2802), + [anon_sym_u_DQUOTE] = ACTIONS(2802), + [anon_sym_U_DQUOTE] = ACTIONS(2802), + [anon_sym_u8_DQUOTE] = ACTIONS(2802), + [sym_true] = ACTIONS(2800), + [sym_false] = ACTIONS(2800), + [anon_sym_NULL] = ACTIONS(2800), + [anon_sym_nullptr] = ACTIONS(2800), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2800), + [anon_sym___typeof] = ACTIONS(2800), + [anon_sym_typeof] = ACTIONS(2800), + [anon_sym_ATimport] = ACTIONS(2802), + [aux_sym_preproc_undef_token1] = ACTIONS(2800), + [anon_sym_POUND] = ACTIONS(2800), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2800), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2800), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2800), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2800), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2800), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2800), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2800), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2800), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2800), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2800), + [anon_sym_NS_AVAILABLE] = ACTIONS(2800), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2800), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2800), + [anon_sym_API_AVAILABLE] = ACTIONS(2800), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2800), + [anon_sym_API_DEPRECATED] = ACTIONS(2800), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2800), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2800), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2800), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2800), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2800), + [anon_sym___deprecated_msg] = ACTIONS(2800), + [anon_sym___deprecated_enum_msg] = ACTIONS(2800), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2800), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2800), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2800), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2800), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2800), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2800), + [anon_sym_ATprotocol] = ACTIONS(2802), + [anon_sym_ATinterface] = ACTIONS(2802), + [anon_sym_ATimplementation] = ACTIONS(2802), + [anon_sym_ATcompatibility_alias] = ACTIONS(2802), + [anon_sym_ATtry] = ACTIONS(2802), + [anon_sym___try] = ACTIONS(2800), + [anon_sym_ATthrow] = ACTIONS(2802), + [anon_sym_ATselector] = ACTIONS(2802), + [anon_sym_ATavailable] = ACTIONS(2802), + [anon_sym___builtin_available] = ACTIONS(2800), + [anon_sym_va_arg] = ACTIONS(2800), + [anon_sym_ATencode] = ACTIONS(2802), + [anon_sym_ATsynchronized] = ACTIONS(2802), + [anon_sym_BOOL] = ACTIONS(2800), + [anon_sym_IMP] = ACTIONS(2800), + [anon_sym_SEL] = ACTIONS(2800), + [anon_sym_Class] = ACTIONS(2800), + [anon_sym_id] = ACTIONS(2800), + }, + [843] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_include_token2] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_CARET] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym___attribute] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_ATautoreleasepool] = ACTIONS(2862), + [anon_sym_auto] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_CG_EXTERN] = ACTIONS(2860), + [anon_sym_CG_INLINE] = ACTIONS(2860), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2860), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2860), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2860), + [anon_sym_IBOutlet] = ACTIONS(2860), + [anon_sym_IBInspectable] = ACTIONS(2860), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2860), + [anon_sym_NS_INLINE] = ACTIONS(2860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2860), + [anon_sym_OBJC_EXPORT] = ACTIONS(2860), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2860), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym__Nonnull] = ACTIONS(2860), + [anon_sym_nullable] = ACTIONS(2860), + [anon_sym__Complex] = ACTIONS(2860), + [anon_sym__Nullable] = ACTIONS(2860), + [anon_sym__Nullable_result] = ACTIONS(2860), + [anon_sym__Null_unspecified] = ACTIONS(2860), + [anon_sym___autoreleasing] = ACTIONS(2860), + [anon_sym___block] = ACTIONS(2860), + [anon_sym___bridge] = ACTIONS(2860), + [anon_sym___bridge_retained] = ACTIONS(2860), + [anon_sym___bridge_transfer] = ACTIONS(2860), + [anon_sym___complex] = ACTIONS(2860), + [anon_sym___const] = ACTIONS(2860), + [anon_sym___imag] = ACTIONS(2860), + [anon_sym___kindof] = ACTIONS(2860), + [anon_sym___nonnull] = ACTIONS(2860), + [anon_sym___nullable] = ACTIONS(2860), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2860), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2860), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2860), + [anon_sym___real] = ACTIONS(2860), + [anon_sym___strong] = ACTIONS(2860), + [anon_sym___unsafe_unretained] = ACTIONS(2860), + [anon_sym___unused] = ACTIONS(2860), + [anon_sym___weak] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym__Alignas] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_in] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [anon_sym___asm] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_AT] = ACTIONS(2860), + [anon_sym_DQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2860), + [anon_sym___typeof] = ACTIONS(2860), + [anon_sym_typeof] = ACTIONS(2860), + [anon_sym_ATimport] = ACTIONS(2862), + [aux_sym_preproc_undef_token1] = ACTIONS(2860), + [anon_sym_POUND] = ACTIONS(2860), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2860), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2860), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2860), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2860), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2860), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2860), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2860), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2860), + [anon_sym_NS_AVAILABLE] = ACTIONS(2860), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2860), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_API_AVAILABLE] = ACTIONS(2860), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_API_DEPRECATED] = ACTIONS(2860), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2860), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2860), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2860), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2860), + [anon_sym___deprecated_msg] = ACTIONS(2860), + [anon_sym___deprecated_enum_msg] = ACTIONS(2860), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2860), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2860), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2860), + [anon_sym_ATprotocol] = ACTIONS(2862), + [anon_sym_ATinterface] = ACTIONS(2862), + [anon_sym_ATimplementation] = ACTIONS(2862), + [anon_sym_ATcompatibility_alias] = ACTIONS(2862), + [anon_sym_ATtry] = ACTIONS(2862), + [anon_sym___try] = ACTIONS(2860), + [anon_sym_ATthrow] = ACTIONS(2862), + [anon_sym_ATselector] = ACTIONS(2862), + [anon_sym_ATavailable] = ACTIONS(2862), + [anon_sym___builtin_available] = ACTIONS(2860), + [anon_sym_va_arg] = ACTIONS(2860), + [anon_sym_ATencode] = ACTIONS(2862), + [anon_sym_ATsynchronized] = ACTIONS(2862), + [anon_sym_BOOL] = ACTIONS(2860), + [anon_sym_IMP] = ACTIONS(2860), + [anon_sym_SEL] = ACTIONS(2860), + [anon_sym_Class] = ACTIONS(2860), + [anon_sym_id] = ACTIONS(2860), + }, + [844] = { + [sym_identifier] = ACTIONS(2864), + [aux_sym_preproc_include_token1] = ACTIONS(2864), + [aux_sym_preproc_include_token2] = ACTIONS(2864), + [aux_sym_preproc_def_token1] = ACTIONS(2864), + [aux_sym_preproc_if_token1] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2864), + [sym_preproc_directive] = ACTIONS(2864), + [anon_sym_LPAREN2] = ACTIONS(2866), + [anon_sym_BANG] = ACTIONS(2866), + [anon_sym_TILDE] = ACTIONS(2866), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_CARET] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_SEMI] = ACTIONS(2866), + [anon_sym___extension__] = ACTIONS(2864), + [anon_sym_typedef] = ACTIONS(2864), + [anon_sym_extern] = ACTIONS(2864), + [anon_sym___attribute__] = ACTIONS(2864), + [anon_sym___attribute] = ACTIONS(2864), + [anon_sym_noreturn] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2866), + [anon_sym___declspec] = ACTIONS(2864), + [anon_sym___cdecl] = ACTIONS(2864), + [anon_sym___clrcall] = ACTIONS(2864), + [anon_sym___stdcall] = ACTIONS(2864), + [anon_sym___fastcall] = ACTIONS(2864), + [anon_sym___thiscall] = ACTIONS(2864), + [anon_sym___vectorcall] = ACTIONS(2864), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_RBRACE] = ACTIONS(2866), + [anon_sym_signed] = ACTIONS(2864), + [anon_sym_unsigned] = ACTIONS(2864), + [anon_sym_long] = ACTIONS(2864), + [anon_sym_short] = ACTIONS(2864), + [anon_sym_static] = ACTIONS(2864), + [anon_sym_ATautoreleasepool] = ACTIONS(2866), + [anon_sym_auto] = ACTIONS(2864), + [anon_sym_register] = ACTIONS(2864), + [anon_sym_inline] = ACTIONS(2864), + [anon_sym___inline] = ACTIONS(2864), + [anon_sym___inline__] = ACTIONS(2864), + [anon_sym___forceinline] = ACTIONS(2864), + [anon_sym_thread_local] = ACTIONS(2864), + [anon_sym___thread] = ACTIONS(2864), + [anon_sym_CG_EXTERN] = ACTIONS(2864), + [anon_sym_CG_INLINE] = ACTIONS(2864), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2864), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2864), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2864), + [anon_sym_IBOutlet] = ACTIONS(2864), + [anon_sym_IBInspectable] = ACTIONS(2864), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2864), + [anon_sym_NS_INLINE] = ACTIONS(2864), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2864), + [anon_sym_OBJC_EXPORT] = ACTIONS(2864), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2864), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2864), + [anon_sym_const] = ACTIONS(2864), + [anon_sym_constexpr] = ACTIONS(2864), + [anon_sym_volatile] = ACTIONS(2864), + [anon_sym_restrict] = ACTIONS(2864), + [anon_sym___restrict__] = ACTIONS(2864), + [anon_sym__Atomic] = ACTIONS(2864), + [anon_sym__Noreturn] = ACTIONS(2864), + [anon_sym__Nonnull] = ACTIONS(2864), + [anon_sym_nullable] = ACTIONS(2864), + [anon_sym__Complex] = ACTIONS(2864), + [anon_sym__Nullable] = ACTIONS(2864), + [anon_sym__Nullable_result] = ACTIONS(2864), + [anon_sym__Null_unspecified] = ACTIONS(2864), + [anon_sym___autoreleasing] = ACTIONS(2864), + [anon_sym___block] = ACTIONS(2864), + [anon_sym___bridge] = ACTIONS(2864), + [anon_sym___bridge_retained] = ACTIONS(2864), + [anon_sym___bridge_transfer] = ACTIONS(2864), + [anon_sym___complex] = ACTIONS(2864), + [anon_sym___const] = ACTIONS(2864), + [anon_sym___imag] = ACTIONS(2864), + [anon_sym___kindof] = ACTIONS(2864), + [anon_sym___nonnull] = ACTIONS(2864), + [anon_sym___nullable] = ACTIONS(2864), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2864), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2864), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2864), + [anon_sym___real] = ACTIONS(2864), + [anon_sym___strong] = ACTIONS(2864), + [anon_sym___unsafe_unretained] = ACTIONS(2864), + [anon_sym___unused] = ACTIONS(2864), + [anon_sym___weak] = ACTIONS(2864), + [anon_sym_alignas] = ACTIONS(2864), + [anon_sym__Alignas] = ACTIONS(2864), + [sym_primitive_type] = ACTIONS(2864), + [anon_sym_enum] = ACTIONS(2864), + [anon_sym_struct] = ACTIONS(2864), + [anon_sym_union] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_switch] = ACTIONS(2864), + [anon_sym_case] = ACTIONS(2864), + [anon_sym_default] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_in] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_break] = ACTIONS(2864), + [anon_sym_continue] = ACTIONS(2864), + [anon_sym_goto] = ACTIONS(2864), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [anon_sym_PLUS_PLUS] = ACTIONS(2866), + [anon_sym_sizeof] = ACTIONS(2864), + [anon_sym___alignof__] = ACTIONS(2864), + [anon_sym___alignof] = ACTIONS(2864), + [anon_sym__alignof] = ACTIONS(2864), + [anon_sym_alignof] = ACTIONS(2864), + [anon_sym__Alignof] = ACTIONS(2864), + [anon_sym_offsetof] = ACTIONS(2864), + [anon_sym__Generic] = ACTIONS(2864), + [anon_sym_asm] = ACTIONS(2864), + [anon_sym___asm__] = ACTIONS(2864), + [anon_sym___asm] = ACTIONS(2864), + [sym_number_literal] = ACTIONS(2866), + [anon_sym_L_SQUOTE] = ACTIONS(2866), + [anon_sym_u_SQUOTE] = ACTIONS(2866), + [anon_sym_U_SQUOTE] = ACTIONS(2866), + [anon_sym_u8_SQUOTE] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_AT] = ACTIONS(2864), + [anon_sym_DQUOTE] = ACTIONS(2866), + [anon_sym_L_DQUOTE] = ACTIONS(2866), + [anon_sym_u_DQUOTE] = ACTIONS(2866), + [anon_sym_U_DQUOTE] = ACTIONS(2866), + [anon_sym_u8_DQUOTE] = ACTIONS(2866), + [sym_true] = ACTIONS(2864), + [sym_false] = ACTIONS(2864), + [anon_sym_NULL] = ACTIONS(2864), + [anon_sym_nullptr] = ACTIONS(2864), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2864), + [anon_sym___typeof] = ACTIONS(2864), + [anon_sym_typeof] = ACTIONS(2864), + [anon_sym_ATimport] = ACTIONS(2866), + [aux_sym_preproc_undef_token1] = ACTIONS(2864), + [anon_sym_POUND] = ACTIONS(2864), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2864), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2864), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2864), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2864), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2864), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2864), + [anon_sym_NS_AVAILABLE] = ACTIONS(2864), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2864), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_API_AVAILABLE] = ACTIONS(2864), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_API_DEPRECATED] = ACTIONS(2864), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2864), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2864), + [anon_sym___deprecated_msg] = ACTIONS(2864), + [anon_sym___deprecated_enum_msg] = ACTIONS(2864), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2864), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2864), + [anon_sym_ATprotocol] = ACTIONS(2866), + [anon_sym_ATinterface] = ACTIONS(2866), + [anon_sym_ATimplementation] = ACTIONS(2866), + [anon_sym_ATcompatibility_alias] = ACTIONS(2866), + [anon_sym_ATtry] = ACTIONS(2866), + [anon_sym___try] = ACTIONS(2864), + [anon_sym_ATthrow] = ACTIONS(2866), + [anon_sym_ATselector] = ACTIONS(2866), + [anon_sym_ATavailable] = ACTIONS(2866), + [anon_sym___builtin_available] = ACTIONS(2864), + [anon_sym_va_arg] = ACTIONS(2864), + [anon_sym_ATencode] = ACTIONS(2866), + [anon_sym_ATsynchronized] = ACTIONS(2866), + [anon_sym_BOOL] = ACTIONS(2864), + [anon_sym_IMP] = ACTIONS(2864), + [anon_sym_SEL] = ACTIONS(2864), + [anon_sym_Class] = ACTIONS(2864), + [anon_sym_id] = ACTIONS(2864), + }, + [845] = { + [sym_identifier] = ACTIONS(2696), + [aux_sym_preproc_include_token1] = ACTIONS(2696), + [aux_sym_preproc_include_token2] = ACTIONS(2696), + [aux_sym_preproc_def_token1] = ACTIONS(2696), + [aux_sym_preproc_if_token1] = ACTIONS(2696), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2696), + [sym_preproc_directive] = ACTIONS(2696), + [anon_sym_LPAREN2] = ACTIONS(2698), + [anon_sym_BANG] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2698), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_CARET] = ACTIONS(2698), + [anon_sym_AMP] = ACTIONS(2698), + [anon_sym_SEMI] = ACTIONS(2698), + [anon_sym___extension__] = ACTIONS(2696), + [anon_sym_typedef] = ACTIONS(2696), + [anon_sym_extern] = ACTIONS(2696), + [anon_sym___attribute__] = ACTIONS(2696), + [anon_sym___attribute] = ACTIONS(2696), + [anon_sym_noreturn] = ACTIONS(2696), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym___declspec] = ACTIONS(2696), + [anon_sym___cdecl] = ACTIONS(2696), + [anon_sym___clrcall] = ACTIONS(2696), + [anon_sym___stdcall] = ACTIONS(2696), + [anon_sym___fastcall] = ACTIONS(2696), + [anon_sym___thiscall] = ACTIONS(2696), + [anon_sym___vectorcall] = ACTIONS(2696), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_RBRACE] = ACTIONS(2698), + [anon_sym_signed] = ACTIONS(2696), + [anon_sym_unsigned] = ACTIONS(2696), + [anon_sym_long] = ACTIONS(2696), + [anon_sym_short] = ACTIONS(2696), + [anon_sym_static] = ACTIONS(2696), + [anon_sym_ATautoreleasepool] = ACTIONS(2698), + [anon_sym_auto] = ACTIONS(2696), + [anon_sym_register] = ACTIONS(2696), + [anon_sym_inline] = ACTIONS(2696), + [anon_sym___inline] = ACTIONS(2696), + [anon_sym___inline__] = ACTIONS(2696), + [anon_sym___forceinline] = ACTIONS(2696), + [anon_sym_thread_local] = ACTIONS(2696), + [anon_sym___thread] = ACTIONS(2696), + [anon_sym_CG_EXTERN] = ACTIONS(2696), + [anon_sym_CG_INLINE] = ACTIONS(2696), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2696), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2696), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2696), + [anon_sym_IBOutlet] = ACTIONS(2696), + [anon_sym_IBInspectable] = ACTIONS(2696), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2696), + [anon_sym_NS_INLINE] = ACTIONS(2696), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2696), + [anon_sym_OBJC_EXPORT] = ACTIONS(2696), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2696), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2696), + [anon_sym_const] = ACTIONS(2696), + [anon_sym_constexpr] = ACTIONS(2696), + [anon_sym_volatile] = ACTIONS(2696), + [anon_sym_restrict] = ACTIONS(2696), + [anon_sym___restrict__] = ACTIONS(2696), + [anon_sym__Atomic] = ACTIONS(2696), + [anon_sym__Noreturn] = ACTIONS(2696), + [anon_sym__Nonnull] = ACTIONS(2696), + [anon_sym_nullable] = ACTIONS(2696), + [anon_sym__Complex] = ACTIONS(2696), + [anon_sym__Nullable] = ACTIONS(2696), + [anon_sym__Nullable_result] = ACTIONS(2696), + [anon_sym__Null_unspecified] = ACTIONS(2696), + [anon_sym___autoreleasing] = ACTIONS(2696), + [anon_sym___block] = ACTIONS(2696), + [anon_sym___bridge] = ACTIONS(2696), + [anon_sym___bridge_retained] = ACTIONS(2696), + [anon_sym___bridge_transfer] = ACTIONS(2696), + [anon_sym___complex] = ACTIONS(2696), + [anon_sym___const] = ACTIONS(2696), + [anon_sym___imag] = ACTIONS(2696), + [anon_sym___kindof] = ACTIONS(2696), + [anon_sym___nonnull] = ACTIONS(2696), + [anon_sym___nullable] = ACTIONS(2696), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2696), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2696), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2696), + [anon_sym___real] = ACTIONS(2696), + [anon_sym___strong] = ACTIONS(2696), + [anon_sym___unsafe_unretained] = ACTIONS(2696), + [anon_sym___unused] = ACTIONS(2696), + [anon_sym___weak] = ACTIONS(2696), + [anon_sym_alignas] = ACTIONS(2696), + [anon_sym__Alignas] = ACTIONS(2696), + [sym_primitive_type] = ACTIONS(2696), + [anon_sym_enum] = ACTIONS(2696), + [anon_sym_struct] = ACTIONS(2696), + [anon_sym_union] = ACTIONS(2696), + [anon_sym_if] = ACTIONS(2696), + [anon_sym_switch] = ACTIONS(2696), + [anon_sym_case] = ACTIONS(2696), + [anon_sym_default] = ACTIONS(2696), + [anon_sym_while] = ACTIONS(2696), + [anon_sym_do] = ACTIONS(2696), + [anon_sym_for] = ACTIONS(2696), + [anon_sym_in] = ACTIONS(2696), + [anon_sym_return] = ACTIONS(2696), + [anon_sym_break] = ACTIONS(2696), + [anon_sym_continue] = ACTIONS(2696), + [anon_sym_goto] = ACTIONS(2696), + [anon_sym_DASH_DASH] = ACTIONS(2698), + [anon_sym_PLUS_PLUS] = ACTIONS(2698), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2696), + [anon_sym___alignof] = ACTIONS(2696), + [anon_sym__alignof] = ACTIONS(2696), + [anon_sym_alignof] = ACTIONS(2696), + [anon_sym__Alignof] = ACTIONS(2696), + [anon_sym_offsetof] = ACTIONS(2696), + [anon_sym__Generic] = ACTIONS(2696), + [anon_sym_asm] = ACTIONS(2696), + [anon_sym___asm__] = ACTIONS(2696), + [anon_sym___asm] = ACTIONS(2696), + [sym_number_literal] = ACTIONS(2698), + [anon_sym_L_SQUOTE] = ACTIONS(2698), + [anon_sym_u_SQUOTE] = ACTIONS(2698), + [anon_sym_U_SQUOTE] = ACTIONS(2698), + [anon_sym_u8_SQUOTE] = ACTIONS(2698), + [anon_sym_SQUOTE] = ACTIONS(2698), + [anon_sym_AT] = ACTIONS(2696), + [anon_sym_DQUOTE] = ACTIONS(2698), + [anon_sym_L_DQUOTE] = ACTIONS(2698), + [anon_sym_u_DQUOTE] = ACTIONS(2698), + [anon_sym_U_DQUOTE] = ACTIONS(2698), + [anon_sym_u8_DQUOTE] = ACTIONS(2698), + [sym_true] = ACTIONS(2696), + [sym_false] = ACTIONS(2696), + [anon_sym_NULL] = ACTIONS(2696), + [anon_sym_nullptr] = ACTIONS(2696), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2696), + [anon_sym___typeof] = ACTIONS(2696), + [anon_sym_typeof] = ACTIONS(2696), + [anon_sym_ATimport] = ACTIONS(2698), + [aux_sym_preproc_undef_token1] = ACTIONS(2696), + [anon_sym_POUND] = ACTIONS(2696), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2696), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2696), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2696), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2696), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2696), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2696), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2696), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2696), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2696), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2696), + [anon_sym_NS_AVAILABLE] = ACTIONS(2696), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2696), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2696), + [anon_sym_API_AVAILABLE] = ACTIONS(2696), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2696), + [anon_sym_API_DEPRECATED] = ACTIONS(2696), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2696), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2696), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2696), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2696), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2696), + [anon_sym___deprecated_msg] = ACTIONS(2696), + [anon_sym___deprecated_enum_msg] = ACTIONS(2696), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2696), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2696), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2696), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2696), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2696), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2696), + [anon_sym_ATprotocol] = ACTIONS(2698), + [anon_sym_ATinterface] = ACTIONS(2698), + [anon_sym_ATimplementation] = ACTIONS(2698), + [anon_sym_ATcompatibility_alias] = ACTIONS(2698), + [anon_sym_ATtry] = ACTIONS(2698), + [anon_sym___try] = ACTIONS(2696), + [anon_sym_ATthrow] = ACTIONS(2698), + [anon_sym_ATselector] = ACTIONS(2698), + [anon_sym_ATavailable] = ACTIONS(2698), + [anon_sym___builtin_available] = ACTIONS(2696), + [anon_sym_va_arg] = ACTIONS(2696), + [anon_sym_ATencode] = ACTIONS(2698), + [anon_sym_ATsynchronized] = ACTIONS(2698), + [anon_sym_BOOL] = ACTIONS(2696), + [anon_sym_IMP] = ACTIONS(2696), + [anon_sym_SEL] = ACTIONS(2696), + [anon_sym_Class] = ACTIONS(2696), + [anon_sym_id] = ACTIONS(2696), + }, + [846] = { + [sym_identifier] = ACTIONS(2808), + [aux_sym_preproc_include_token1] = ACTIONS(2808), + [aux_sym_preproc_include_token2] = ACTIONS(2808), + [aux_sym_preproc_def_token1] = ACTIONS(2808), + [aux_sym_preproc_if_token1] = ACTIONS(2808), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2808), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2808), + [sym_preproc_directive] = ACTIONS(2808), + [anon_sym_LPAREN2] = ACTIONS(2810), + [anon_sym_BANG] = ACTIONS(2810), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2808), + [anon_sym_STAR] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym___extension__] = ACTIONS(2808), + [anon_sym_typedef] = ACTIONS(2808), + [anon_sym_extern] = ACTIONS(2808), + [anon_sym___attribute__] = ACTIONS(2808), + [anon_sym___attribute] = ACTIONS(2808), + [anon_sym_noreturn] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2810), + [anon_sym___declspec] = ACTIONS(2808), + [anon_sym___cdecl] = ACTIONS(2808), + [anon_sym___clrcall] = ACTIONS(2808), + [anon_sym___stdcall] = ACTIONS(2808), + [anon_sym___fastcall] = ACTIONS(2808), + [anon_sym___thiscall] = ACTIONS(2808), + [anon_sym___vectorcall] = ACTIONS(2808), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_RBRACE] = ACTIONS(2810), + [anon_sym_signed] = ACTIONS(2808), + [anon_sym_unsigned] = ACTIONS(2808), + [anon_sym_long] = ACTIONS(2808), + [anon_sym_short] = ACTIONS(2808), + [anon_sym_static] = ACTIONS(2808), + [anon_sym_ATautoreleasepool] = ACTIONS(2810), + [anon_sym_auto] = ACTIONS(2808), + [anon_sym_register] = ACTIONS(2808), + [anon_sym_inline] = ACTIONS(2808), + [anon_sym___inline] = ACTIONS(2808), + [anon_sym___inline__] = ACTIONS(2808), + [anon_sym___forceinline] = ACTIONS(2808), + [anon_sym_thread_local] = ACTIONS(2808), + [anon_sym___thread] = ACTIONS(2808), + [anon_sym_CG_EXTERN] = ACTIONS(2808), + [anon_sym_CG_INLINE] = ACTIONS(2808), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2808), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2808), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2808), + [anon_sym_IBOutlet] = ACTIONS(2808), + [anon_sym_IBInspectable] = ACTIONS(2808), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2808), + [anon_sym_NS_INLINE] = ACTIONS(2808), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2808), + [anon_sym_OBJC_EXPORT] = ACTIONS(2808), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2808), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2808), + [anon_sym_const] = ACTIONS(2808), + [anon_sym_constexpr] = ACTIONS(2808), + [anon_sym_volatile] = ACTIONS(2808), + [anon_sym_restrict] = ACTIONS(2808), + [anon_sym___restrict__] = ACTIONS(2808), + [anon_sym__Atomic] = ACTIONS(2808), + [anon_sym__Noreturn] = ACTIONS(2808), + [anon_sym__Nonnull] = ACTIONS(2808), + [anon_sym_nullable] = ACTIONS(2808), + [anon_sym__Complex] = ACTIONS(2808), + [anon_sym__Nullable] = ACTIONS(2808), + [anon_sym__Nullable_result] = ACTIONS(2808), + [anon_sym__Null_unspecified] = ACTIONS(2808), + [anon_sym___autoreleasing] = ACTIONS(2808), + [anon_sym___block] = ACTIONS(2808), + [anon_sym___bridge] = ACTIONS(2808), + [anon_sym___bridge_retained] = ACTIONS(2808), + [anon_sym___bridge_transfer] = ACTIONS(2808), + [anon_sym___complex] = ACTIONS(2808), + [anon_sym___const] = ACTIONS(2808), + [anon_sym___imag] = ACTIONS(2808), + [anon_sym___kindof] = ACTIONS(2808), + [anon_sym___nonnull] = ACTIONS(2808), + [anon_sym___nullable] = ACTIONS(2808), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2808), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2808), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2808), + [anon_sym___real] = ACTIONS(2808), + [anon_sym___strong] = ACTIONS(2808), + [anon_sym___unsafe_unretained] = ACTIONS(2808), + [anon_sym___unused] = ACTIONS(2808), + [anon_sym___weak] = ACTIONS(2808), + [anon_sym_alignas] = ACTIONS(2808), + [anon_sym__Alignas] = ACTIONS(2808), + [sym_primitive_type] = ACTIONS(2808), + [anon_sym_enum] = ACTIONS(2808), + [anon_sym_struct] = ACTIONS(2808), + [anon_sym_union] = ACTIONS(2808), + [anon_sym_if] = ACTIONS(2808), + [anon_sym_switch] = ACTIONS(2808), + [anon_sym_case] = ACTIONS(2808), + [anon_sym_default] = ACTIONS(2808), + [anon_sym_while] = ACTIONS(2808), + [anon_sym_do] = ACTIONS(2808), + [anon_sym_for] = ACTIONS(2808), + [anon_sym_in] = ACTIONS(2808), + [anon_sym_return] = ACTIONS(2808), + [anon_sym_break] = ACTIONS(2808), + [anon_sym_continue] = ACTIONS(2808), + [anon_sym_goto] = ACTIONS(2808), + [anon_sym_DASH_DASH] = ACTIONS(2810), + [anon_sym_PLUS_PLUS] = ACTIONS(2810), + [anon_sym_sizeof] = ACTIONS(2808), + [anon_sym___alignof__] = ACTIONS(2808), + [anon_sym___alignof] = ACTIONS(2808), + [anon_sym__alignof] = ACTIONS(2808), + [anon_sym_alignof] = ACTIONS(2808), + [anon_sym__Alignof] = ACTIONS(2808), + [anon_sym_offsetof] = ACTIONS(2808), + [anon_sym__Generic] = ACTIONS(2808), + [anon_sym_asm] = ACTIONS(2808), + [anon_sym___asm__] = ACTIONS(2808), + [anon_sym___asm] = ACTIONS(2808), + [sym_number_literal] = ACTIONS(2810), + [anon_sym_L_SQUOTE] = ACTIONS(2810), + [anon_sym_u_SQUOTE] = ACTIONS(2810), + [anon_sym_U_SQUOTE] = ACTIONS(2810), + [anon_sym_u8_SQUOTE] = ACTIONS(2810), + [anon_sym_SQUOTE] = ACTIONS(2810), + [anon_sym_AT] = ACTIONS(2808), + [anon_sym_DQUOTE] = ACTIONS(2810), + [anon_sym_L_DQUOTE] = ACTIONS(2810), + [anon_sym_u_DQUOTE] = ACTIONS(2810), + [anon_sym_U_DQUOTE] = ACTIONS(2810), + [anon_sym_u8_DQUOTE] = ACTIONS(2810), + [sym_true] = ACTIONS(2808), + [sym_false] = ACTIONS(2808), + [anon_sym_NULL] = ACTIONS(2808), + [anon_sym_nullptr] = ACTIONS(2808), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2808), + [anon_sym___typeof] = ACTIONS(2808), + [anon_sym_typeof] = ACTIONS(2808), + [anon_sym_ATimport] = ACTIONS(2810), + [aux_sym_preproc_undef_token1] = ACTIONS(2808), + [anon_sym_POUND] = ACTIONS(2808), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2808), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2808), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2808), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2808), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2808), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2808), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2808), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2808), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2808), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2808), + [anon_sym_NS_AVAILABLE] = ACTIONS(2808), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2808), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2808), + [anon_sym_API_AVAILABLE] = ACTIONS(2808), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2808), + [anon_sym_API_DEPRECATED] = ACTIONS(2808), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2808), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2808), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2808), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2808), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2808), + [anon_sym___deprecated_msg] = ACTIONS(2808), + [anon_sym___deprecated_enum_msg] = ACTIONS(2808), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2808), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2808), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2808), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2808), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2808), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2808), + [anon_sym_ATprotocol] = ACTIONS(2810), + [anon_sym_ATinterface] = ACTIONS(2810), + [anon_sym_ATimplementation] = ACTIONS(2810), + [anon_sym_ATcompatibility_alias] = ACTIONS(2810), + [anon_sym_ATtry] = ACTIONS(2810), + [anon_sym___try] = ACTIONS(2808), + [anon_sym_ATthrow] = ACTIONS(2810), + [anon_sym_ATselector] = ACTIONS(2810), + [anon_sym_ATavailable] = ACTIONS(2810), + [anon_sym___builtin_available] = ACTIONS(2808), + [anon_sym_va_arg] = ACTIONS(2808), + [anon_sym_ATencode] = ACTIONS(2810), + [anon_sym_ATsynchronized] = ACTIONS(2810), + [anon_sym_BOOL] = ACTIONS(2808), + [anon_sym_IMP] = ACTIONS(2808), + [anon_sym_SEL] = ACTIONS(2808), + [anon_sym_Class] = ACTIONS(2808), + [anon_sym_id] = ACTIONS(2808), + }, + [847] = { + [sym_identifier] = ACTIONS(2812), + [aux_sym_preproc_include_token1] = ACTIONS(2812), + [aux_sym_preproc_include_token2] = ACTIONS(2812), + [aux_sym_preproc_def_token1] = ACTIONS(2812), + [aux_sym_preproc_if_token1] = ACTIONS(2812), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2812), + [sym_preproc_directive] = ACTIONS(2812), + [anon_sym_LPAREN2] = ACTIONS(2814), + [anon_sym_BANG] = ACTIONS(2814), + [anon_sym_TILDE] = ACTIONS(2814), + [anon_sym_DASH] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_CARET] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2814), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym___extension__] = ACTIONS(2812), + [anon_sym_typedef] = ACTIONS(2812), + [anon_sym_extern] = ACTIONS(2812), + [anon_sym___attribute__] = ACTIONS(2812), + [anon_sym___attribute] = ACTIONS(2812), + [anon_sym_noreturn] = ACTIONS(2812), + [anon_sym_LBRACK] = ACTIONS(2814), + [anon_sym___declspec] = ACTIONS(2812), + [anon_sym___cdecl] = ACTIONS(2812), + [anon_sym___clrcall] = ACTIONS(2812), + [anon_sym___stdcall] = ACTIONS(2812), + [anon_sym___fastcall] = ACTIONS(2812), + [anon_sym___thiscall] = ACTIONS(2812), + [anon_sym___vectorcall] = ACTIONS(2812), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_RBRACE] = ACTIONS(2814), + [anon_sym_signed] = ACTIONS(2812), + [anon_sym_unsigned] = ACTIONS(2812), + [anon_sym_long] = ACTIONS(2812), + [anon_sym_short] = ACTIONS(2812), + [anon_sym_static] = ACTIONS(2812), + [anon_sym_ATautoreleasepool] = ACTIONS(2814), + [anon_sym_auto] = ACTIONS(2812), + [anon_sym_register] = ACTIONS(2812), + [anon_sym_inline] = ACTIONS(2812), + [anon_sym___inline] = ACTIONS(2812), + [anon_sym___inline__] = ACTIONS(2812), + [anon_sym___forceinline] = ACTIONS(2812), + [anon_sym_thread_local] = ACTIONS(2812), + [anon_sym___thread] = ACTIONS(2812), + [anon_sym_CG_EXTERN] = ACTIONS(2812), + [anon_sym_CG_INLINE] = ACTIONS(2812), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2812), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2812), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2812), + [anon_sym_IBOutlet] = ACTIONS(2812), + [anon_sym_IBInspectable] = ACTIONS(2812), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2812), + [anon_sym_NS_INLINE] = ACTIONS(2812), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2812), + [anon_sym_OBJC_EXPORT] = ACTIONS(2812), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2812), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2812), + [anon_sym_const] = ACTIONS(2812), + [anon_sym_constexpr] = ACTIONS(2812), + [anon_sym_volatile] = ACTIONS(2812), + [anon_sym_restrict] = ACTIONS(2812), + [anon_sym___restrict__] = ACTIONS(2812), + [anon_sym__Atomic] = ACTIONS(2812), + [anon_sym__Noreturn] = ACTIONS(2812), + [anon_sym__Nonnull] = ACTIONS(2812), + [anon_sym_nullable] = ACTIONS(2812), + [anon_sym__Complex] = ACTIONS(2812), + [anon_sym__Nullable] = ACTIONS(2812), + [anon_sym__Nullable_result] = ACTIONS(2812), + [anon_sym__Null_unspecified] = ACTIONS(2812), + [anon_sym___autoreleasing] = ACTIONS(2812), + [anon_sym___block] = ACTIONS(2812), + [anon_sym___bridge] = ACTIONS(2812), + [anon_sym___bridge_retained] = ACTIONS(2812), + [anon_sym___bridge_transfer] = ACTIONS(2812), + [anon_sym___complex] = ACTIONS(2812), + [anon_sym___const] = ACTIONS(2812), + [anon_sym___imag] = ACTIONS(2812), + [anon_sym___kindof] = ACTIONS(2812), + [anon_sym___nonnull] = ACTIONS(2812), + [anon_sym___nullable] = ACTIONS(2812), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2812), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2812), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2812), + [anon_sym___real] = ACTIONS(2812), + [anon_sym___strong] = ACTIONS(2812), + [anon_sym___unsafe_unretained] = ACTIONS(2812), + [anon_sym___unused] = ACTIONS(2812), + [anon_sym___weak] = ACTIONS(2812), + [anon_sym_alignas] = ACTIONS(2812), + [anon_sym__Alignas] = ACTIONS(2812), + [sym_primitive_type] = ACTIONS(2812), + [anon_sym_enum] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2812), + [anon_sym_union] = ACTIONS(2812), + [anon_sym_if] = ACTIONS(2812), + [anon_sym_switch] = ACTIONS(2812), + [anon_sym_case] = ACTIONS(2812), + [anon_sym_default] = ACTIONS(2812), + [anon_sym_while] = ACTIONS(2812), + [anon_sym_do] = ACTIONS(2812), + [anon_sym_for] = ACTIONS(2812), + [anon_sym_in] = ACTIONS(2812), + [anon_sym_return] = ACTIONS(2812), + [anon_sym_break] = ACTIONS(2812), + [anon_sym_continue] = ACTIONS(2812), + [anon_sym_goto] = ACTIONS(2812), + [anon_sym_DASH_DASH] = ACTIONS(2814), + [anon_sym_PLUS_PLUS] = ACTIONS(2814), + [anon_sym_sizeof] = ACTIONS(2812), + [anon_sym___alignof__] = ACTIONS(2812), + [anon_sym___alignof] = ACTIONS(2812), + [anon_sym__alignof] = ACTIONS(2812), + [anon_sym_alignof] = ACTIONS(2812), + [anon_sym__Alignof] = ACTIONS(2812), + [anon_sym_offsetof] = ACTIONS(2812), + [anon_sym__Generic] = ACTIONS(2812), + [anon_sym_asm] = ACTIONS(2812), + [anon_sym___asm__] = ACTIONS(2812), + [anon_sym___asm] = ACTIONS(2812), + [sym_number_literal] = ACTIONS(2814), + [anon_sym_L_SQUOTE] = ACTIONS(2814), + [anon_sym_u_SQUOTE] = ACTIONS(2814), + [anon_sym_U_SQUOTE] = ACTIONS(2814), + [anon_sym_u8_SQUOTE] = ACTIONS(2814), + [anon_sym_SQUOTE] = ACTIONS(2814), + [anon_sym_AT] = ACTIONS(2812), + [anon_sym_DQUOTE] = ACTIONS(2814), + [anon_sym_L_DQUOTE] = ACTIONS(2814), + [anon_sym_u_DQUOTE] = ACTIONS(2814), + [anon_sym_U_DQUOTE] = ACTIONS(2814), + [anon_sym_u8_DQUOTE] = ACTIONS(2814), + [sym_true] = ACTIONS(2812), + [sym_false] = ACTIONS(2812), + [anon_sym_NULL] = ACTIONS(2812), + [anon_sym_nullptr] = ACTIONS(2812), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2812), + [anon_sym___typeof] = ACTIONS(2812), + [anon_sym_typeof] = ACTIONS(2812), + [anon_sym_ATimport] = ACTIONS(2814), + [aux_sym_preproc_undef_token1] = ACTIONS(2812), + [anon_sym_POUND] = ACTIONS(2812), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2812), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2812), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2812), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2812), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2812), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2812), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2812), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2812), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2812), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2812), + [anon_sym_NS_AVAILABLE] = ACTIONS(2812), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2812), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2812), + [anon_sym_API_AVAILABLE] = ACTIONS(2812), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2812), + [anon_sym_API_DEPRECATED] = ACTIONS(2812), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2812), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2812), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2812), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2812), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2812), + [anon_sym___deprecated_msg] = ACTIONS(2812), + [anon_sym___deprecated_enum_msg] = ACTIONS(2812), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2812), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2812), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2812), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2812), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2812), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2812), + [anon_sym_ATprotocol] = ACTIONS(2814), + [anon_sym_ATinterface] = ACTIONS(2814), + [anon_sym_ATimplementation] = ACTIONS(2814), + [anon_sym_ATcompatibility_alias] = ACTIONS(2814), + [anon_sym_ATtry] = ACTIONS(2814), + [anon_sym___try] = ACTIONS(2812), + [anon_sym_ATthrow] = ACTIONS(2814), + [anon_sym_ATselector] = ACTIONS(2814), + [anon_sym_ATavailable] = ACTIONS(2814), + [anon_sym___builtin_available] = ACTIONS(2812), + [anon_sym_va_arg] = ACTIONS(2812), + [anon_sym_ATencode] = ACTIONS(2814), + [anon_sym_ATsynchronized] = ACTIONS(2814), + [anon_sym_BOOL] = ACTIONS(2812), + [anon_sym_IMP] = ACTIONS(2812), + [anon_sym_SEL] = ACTIONS(2812), + [anon_sym_Class] = ACTIONS(2812), + [anon_sym_id] = ACTIONS(2812), + }, + [848] = { + [sym_identifier] = ACTIONS(2692), + [aux_sym_preproc_include_token1] = ACTIONS(2692), + [aux_sym_preproc_include_token2] = ACTIONS(2692), + [aux_sym_preproc_def_token1] = ACTIONS(2692), + [aux_sym_preproc_if_token1] = ACTIONS(2692), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2692), + [sym_preproc_directive] = ACTIONS(2692), + [anon_sym_LPAREN2] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2694), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2692), + [anon_sym_PLUS] = ACTIONS(2692), + [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_CARET] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_SEMI] = ACTIONS(2694), + [anon_sym___extension__] = ACTIONS(2692), + [anon_sym_typedef] = ACTIONS(2692), + [anon_sym_extern] = ACTIONS(2692), + [anon_sym___attribute__] = ACTIONS(2692), + [anon_sym___attribute] = ACTIONS(2692), + [anon_sym_noreturn] = ACTIONS(2692), + [anon_sym_LBRACK] = ACTIONS(2694), + [anon_sym___declspec] = ACTIONS(2692), + [anon_sym___cdecl] = ACTIONS(2692), + [anon_sym___clrcall] = ACTIONS(2692), + [anon_sym___stdcall] = ACTIONS(2692), + [anon_sym___fastcall] = ACTIONS(2692), + [anon_sym___thiscall] = ACTIONS(2692), + [anon_sym___vectorcall] = ACTIONS(2692), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_RBRACE] = ACTIONS(2694), + [anon_sym_signed] = ACTIONS(2692), + [anon_sym_unsigned] = ACTIONS(2692), + [anon_sym_long] = ACTIONS(2692), + [anon_sym_short] = ACTIONS(2692), + [anon_sym_static] = ACTIONS(2692), + [anon_sym_ATautoreleasepool] = ACTIONS(2694), + [anon_sym_auto] = ACTIONS(2692), + [anon_sym_register] = ACTIONS(2692), + [anon_sym_inline] = ACTIONS(2692), + [anon_sym___inline] = ACTIONS(2692), + [anon_sym___inline__] = ACTIONS(2692), + [anon_sym___forceinline] = ACTIONS(2692), + [anon_sym_thread_local] = ACTIONS(2692), + [anon_sym___thread] = ACTIONS(2692), + [anon_sym_CG_EXTERN] = ACTIONS(2692), + [anon_sym_CG_INLINE] = ACTIONS(2692), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2692), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2692), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2692), + [anon_sym_IBOutlet] = ACTIONS(2692), + [anon_sym_IBInspectable] = ACTIONS(2692), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2692), + [anon_sym_NS_INLINE] = ACTIONS(2692), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2692), + [anon_sym_OBJC_EXPORT] = ACTIONS(2692), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2692), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2692), + [anon_sym_const] = ACTIONS(2692), + [anon_sym_constexpr] = ACTIONS(2692), + [anon_sym_volatile] = ACTIONS(2692), + [anon_sym_restrict] = ACTIONS(2692), + [anon_sym___restrict__] = ACTIONS(2692), + [anon_sym__Atomic] = ACTIONS(2692), + [anon_sym__Noreturn] = ACTIONS(2692), + [anon_sym__Nonnull] = ACTIONS(2692), + [anon_sym_nullable] = ACTIONS(2692), + [anon_sym__Complex] = ACTIONS(2692), + [anon_sym__Nullable] = ACTIONS(2692), + [anon_sym__Nullable_result] = ACTIONS(2692), + [anon_sym__Null_unspecified] = ACTIONS(2692), + [anon_sym___autoreleasing] = ACTIONS(2692), + [anon_sym___block] = ACTIONS(2692), + [anon_sym___bridge] = ACTIONS(2692), + [anon_sym___bridge_retained] = ACTIONS(2692), + [anon_sym___bridge_transfer] = ACTIONS(2692), + [anon_sym___complex] = ACTIONS(2692), + [anon_sym___const] = ACTIONS(2692), + [anon_sym___imag] = ACTIONS(2692), + [anon_sym___kindof] = ACTIONS(2692), + [anon_sym___nonnull] = ACTIONS(2692), + [anon_sym___nullable] = ACTIONS(2692), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2692), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2692), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2692), + [anon_sym___real] = ACTIONS(2692), + [anon_sym___strong] = ACTIONS(2692), + [anon_sym___unsafe_unretained] = ACTIONS(2692), + [anon_sym___unused] = ACTIONS(2692), + [anon_sym___weak] = ACTIONS(2692), + [anon_sym_alignas] = ACTIONS(2692), + [anon_sym__Alignas] = ACTIONS(2692), + [sym_primitive_type] = ACTIONS(2692), + [anon_sym_enum] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_union] = ACTIONS(2692), + [anon_sym_if] = ACTIONS(2692), + [anon_sym_switch] = ACTIONS(2692), + [anon_sym_case] = ACTIONS(2692), + [anon_sym_default] = ACTIONS(2692), + [anon_sym_while] = ACTIONS(2692), + [anon_sym_do] = ACTIONS(2692), + [anon_sym_for] = ACTIONS(2692), + [anon_sym_in] = ACTIONS(2692), + [anon_sym_return] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_goto] = ACTIONS(2692), + [anon_sym_DASH_DASH] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2694), + [anon_sym_sizeof] = ACTIONS(2692), + [anon_sym___alignof__] = ACTIONS(2692), + [anon_sym___alignof] = ACTIONS(2692), + [anon_sym__alignof] = ACTIONS(2692), + [anon_sym_alignof] = ACTIONS(2692), + [anon_sym__Alignof] = ACTIONS(2692), + [anon_sym_offsetof] = ACTIONS(2692), + [anon_sym__Generic] = ACTIONS(2692), + [anon_sym_asm] = ACTIONS(2692), + [anon_sym___asm__] = ACTIONS(2692), + [anon_sym___asm] = ACTIONS(2692), + [sym_number_literal] = ACTIONS(2694), + [anon_sym_L_SQUOTE] = ACTIONS(2694), + [anon_sym_u_SQUOTE] = ACTIONS(2694), + [anon_sym_U_SQUOTE] = ACTIONS(2694), + [anon_sym_u8_SQUOTE] = ACTIONS(2694), + [anon_sym_SQUOTE] = ACTIONS(2694), + [anon_sym_AT] = ACTIONS(2692), + [anon_sym_DQUOTE] = ACTIONS(2694), + [anon_sym_L_DQUOTE] = ACTIONS(2694), + [anon_sym_u_DQUOTE] = ACTIONS(2694), + [anon_sym_U_DQUOTE] = ACTIONS(2694), + [anon_sym_u8_DQUOTE] = ACTIONS(2694), + [sym_true] = ACTIONS(2692), + [sym_false] = ACTIONS(2692), + [anon_sym_NULL] = ACTIONS(2692), + [anon_sym_nullptr] = ACTIONS(2692), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2692), + [anon_sym___typeof] = ACTIONS(2692), + [anon_sym_typeof] = ACTIONS(2692), + [anon_sym_ATimport] = ACTIONS(2694), + [aux_sym_preproc_undef_token1] = ACTIONS(2692), + [anon_sym_POUND] = ACTIONS(2692), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2692), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2692), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2692), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2692), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2692), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2692), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2692), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2692), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2692), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2692), + [anon_sym_NS_AVAILABLE] = ACTIONS(2692), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2692), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2692), + [anon_sym_API_AVAILABLE] = ACTIONS(2692), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2692), + [anon_sym_API_DEPRECATED] = ACTIONS(2692), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2692), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2692), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2692), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2692), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2692), + [anon_sym___deprecated_msg] = ACTIONS(2692), + [anon_sym___deprecated_enum_msg] = ACTIONS(2692), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2692), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2692), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2692), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2692), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2692), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2692), + [anon_sym_ATprotocol] = ACTIONS(2694), + [anon_sym_ATinterface] = ACTIONS(2694), + [anon_sym_ATimplementation] = ACTIONS(2694), + [anon_sym_ATcompatibility_alias] = ACTIONS(2694), + [anon_sym_ATtry] = ACTIONS(2694), + [anon_sym___try] = ACTIONS(2692), + [anon_sym_ATthrow] = ACTIONS(2694), + [anon_sym_ATselector] = ACTIONS(2694), + [anon_sym_ATavailable] = ACTIONS(2694), + [anon_sym___builtin_available] = ACTIONS(2692), + [anon_sym_va_arg] = ACTIONS(2692), + [anon_sym_ATencode] = ACTIONS(2694), + [anon_sym_ATsynchronized] = ACTIONS(2694), + [anon_sym_BOOL] = ACTIONS(2692), + [anon_sym_IMP] = ACTIONS(2692), + [anon_sym_SEL] = ACTIONS(2692), + [anon_sym_Class] = ACTIONS(2692), + [anon_sym_id] = ACTIONS(2692), + }, + [849] = { + [sym_identifier] = ACTIONS(2628), + [aux_sym_preproc_include_token1] = ACTIONS(2628), + [aux_sym_preproc_include_token2] = ACTIONS(2628), + [aux_sym_preproc_def_token1] = ACTIONS(2628), + [aux_sym_preproc_if_token1] = ACTIONS(2628), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2628), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2628), + [sym_preproc_directive] = ACTIONS(2628), + [anon_sym_LPAREN2] = ACTIONS(2630), + [anon_sym_BANG] = ACTIONS(2630), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2628), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_CARET] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2630), + [anon_sym_SEMI] = ACTIONS(2630), + [anon_sym___extension__] = ACTIONS(2628), + [anon_sym_typedef] = ACTIONS(2628), + [anon_sym_extern] = ACTIONS(2628), + [anon_sym___attribute__] = ACTIONS(2628), + [anon_sym___attribute] = ACTIONS(2628), + [anon_sym_noreturn] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2630), + [anon_sym___declspec] = ACTIONS(2628), + [anon_sym___cdecl] = ACTIONS(2628), + [anon_sym___clrcall] = ACTIONS(2628), + [anon_sym___stdcall] = ACTIONS(2628), + [anon_sym___fastcall] = ACTIONS(2628), + [anon_sym___thiscall] = ACTIONS(2628), + [anon_sym___vectorcall] = ACTIONS(2628), + [anon_sym_LBRACE] = ACTIONS(2630), + [anon_sym_RBRACE] = ACTIONS(2630), + [anon_sym_signed] = ACTIONS(2628), + [anon_sym_unsigned] = ACTIONS(2628), + [anon_sym_long] = ACTIONS(2628), + [anon_sym_short] = ACTIONS(2628), + [anon_sym_static] = ACTIONS(2628), + [anon_sym_ATautoreleasepool] = ACTIONS(2630), + [anon_sym_auto] = ACTIONS(2628), + [anon_sym_register] = ACTIONS(2628), + [anon_sym_inline] = ACTIONS(2628), + [anon_sym___inline] = ACTIONS(2628), + [anon_sym___inline__] = ACTIONS(2628), + [anon_sym___forceinline] = ACTIONS(2628), + [anon_sym_thread_local] = ACTIONS(2628), + [anon_sym___thread] = ACTIONS(2628), + [anon_sym_CG_EXTERN] = ACTIONS(2628), + [anon_sym_CG_INLINE] = ACTIONS(2628), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2628), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2628), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2628), + [anon_sym_IBOutlet] = ACTIONS(2628), + [anon_sym_IBInspectable] = ACTIONS(2628), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2628), + [anon_sym_NS_INLINE] = ACTIONS(2628), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2628), + [anon_sym_OBJC_EXPORT] = ACTIONS(2628), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2628), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2628), + [anon_sym_const] = ACTIONS(2628), + [anon_sym_constexpr] = ACTIONS(2628), + [anon_sym_volatile] = ACTIONS(2628), + [anon_sym_restrict] = ACTIONS(2628), + [anon_sym___restrict__] = ACTIONS(2628), + [anon_sym__Atomic] = ACTIONS(2628), + [anon_sym__Noreturn] = ACTIONS(2628), + [anon_sym__Nonnull] = ACTIONS(2628), + [anon_sym_nullable] = ACTIONS(2628), + [anon_sym__Complex] = ACTIONS(2628), + [anon_sym__Nullable] = ACTIONS(2628), + [anon_sym__Nullable_result] = ACTIONS(2628), + [anon_sym__Null_unspecified] = ACTIONS(2628), + [anon_sym___autoreleasing] = ACTIONS(2628), + [anon_sym___block] = ACTIONS(2628), + [anon_sym___bridge] = ACTIONS(2628), + [anon_sym___bridge_retained] = ACTIONS(2628), + [anon_sym___bridge_transfer] = ACTIONS(2628), + [anon_sym___complex] = ACTIONS(2628), + [anon_sym___const] = ACTIONS(2628), + [anon_sym___imag] = ACTIONS(2628), + [anon_sym___kindof] = ACTIONS(2628), + [anon_sym___nonnull] = ACTIONS(2628), + [anon_sym___nullable] = ACTIONS(2628), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2628), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2628), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2628), + [anon_sym___real] = ACTIONS(2628), + [anon_sym___strong] = ACTIONS(2628), + [anon_sym___unsafe_unretained] = ACTIONS(2628), + [anon_sym___unused] = ACTIONS(2628), + [anon_sym___weak] = ACTIONS(2628), + [anon_sym_alignas] = ACTIONS(2628), + [anon_sym__Alignas] = ACTIONS(2628), + [sym_primitive_type] = ACTIONS(2628), + [anon_sym_enum] = ACTIONS(2628), + [anon_sym_struct] = ACTIONS(2628), + [anon_sym_union] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_switch] = ACTIONS(2628), + [anon_sym_case] = ACTIONS(2628), + [anon_sym_default] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [anon_sym_do] = ACTIONS(2628), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_in] = ACTIONS(2628), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_break] = ACTIONS(2628), + [anon_sym_continue] = ACTIONS(2628), + [anon_sym_goto] = ACTIONS(2628), + [anon_sym_DASH_DASH] = ACTIONS(2630), + [anon_sym_PLUS_PLUS] = ACTIONS(2630), + [anon_sym_sizeof] = ACTIONS(2628), + [anon_sym___alignof__] = ACTIONS(2628), + [anon_sym___alignof] = ACTIONS(2628), + [anon_sym__alignof] = ACTIONS(2628), + [anon_sym_alignof] = ACTIONS(2628), + [anon_sym__Alignof] = ACTIONS(2628), + [anon_sym_offsetof] = ACTIONS(2628), + [anon_sym__Generic] = ACTIONS(2628), + [anon_sym_asm] = ACTIONS(2628), + [anon_sym___asm__] = ACTIONS(2628), + [anon_sym___asm] = ACTIONS(2628), + [sym_number_literal] = ACTIONS(2630), + [anon_sym_L_SQUOTE] = ACTIONS(2630), + [anon_sym_u_SQUOTE] = ACTIONS(2630), + [anon_sym_U_SQUOTE] = ACTIONS(2630), + [anon_sym_u8_SQUOTE] = ACTIONS(2630), + [anon_sym_SQUOTE] = ACTIONS(2630), + [anon_sym_AT] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2630), + [anon_sym_L_DQUOTE] = ACTIONS(2630), + [anon_sym_u_DQUOTE] = ACTIONS(2630), + [anon_sym_U_DQUOTE] = ACTIONS(2630), + [anon_sym_u8_DQUOTE] = ACTIONS(2630), + [sym_true] = ACTIONS(2628), + [sym_false] = ACTIONS(2628), + [anon_sym_NULL] = ACTIONS(2628), + [anon_sym_nullptr] = ACTIONS(2628), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2628), + [anon_sym___typeof] = ACTIONS(2628), + [anon_sym_typeof] = ACTIONS(2628), + [anon_sym_ATimport] = ACTIONS(2630), + [aux_sym_preproc_undef_token1] = ACTIONS(2628), + [anon_sym_POUND] = ACTIONS(2628), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2628), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2628), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2628), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2628), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2628), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2628), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2628), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2628), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2628), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2628), + [anon_sym_NS_AVAILABLE] = ACTIONS(2628), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2628), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2628), + [anon_sym_API_AVAILABLE] = ACTIONS(2628), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2628), + [anon_sym_API_DEPRECATED] = ACTIONS(2628), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2628), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2628), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2628), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2628), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2628), + [anon_sym___deprecated_msg] = ACTIONS(2628), + [anon_sym___deprecated_enum_msg] = ACTIONS(2628), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2628), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2628), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2628), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2628), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2628), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2628), + [anon_sym_ATprotocol] = ACTIONS(2630), + [anon_sym_ATinterface] = ACTIONS(2630), + [anon_sym_ATimplementation] = ACTIONS(2630), + [anon_sym_ATcompatibility_alias] = ACTIONS(2630), + [anon_sym_ATtry] = ACTIONS(2630), + [anon_sym___try] = ACTIONS(2628), + [anon_sym_ATthrow] = ACTIONS(2630), + [anon_sym_ATselector] = ACTIONS(2630), + [anon_sym_ATavailable] = ACTIONS(2630), + [anon_sym___builtin_available] = ACTIONS(2628), + [anon_sym_va_arg] = ACTIONS(2628), + [anon_sym_ATencode] = ACTIONS(2630), + [anon_sym_ATsynchronized] = ACTIONS(2630), + [anon_sym_BOOL] = ACTIONS(2628), + [anon_sym_IMP] = ACTIONS(2628), + [anon_sym_SEL] = ACTIONS(2628), + [anon_sym_Class] = ACTIONS(2628), + [anon_sym_id] = ACTIONS(2628), + }, + [850] = { + [sym_identifier] = ACTIONS(2598), + [aux_sym_preproc_include_token1] = ACTIONS(2598), + [aux_sym_preproc_include_token2] = ACTIONS(2598), + [aux_sym_preproc_def_token1] = ACTIONS(2598), + [aux_sym_preproc_if_token1] = ACTIONS(2598), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2598), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2598), + [sym_preproc_directive] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(2600), + [anon_sym_BANG] = ACTIONS(2600), + [anon_sym_TILDE] = ACTIONS(2600), + [anon_sym_DASH] = ACTIONS(2598), + [anon_sym_PLUS] = ACTIONS(2598), + [anon_sym_STAR] = ACTIONS(2600), + [anon_sym_CARET] = ACTIONS(2600), + [anon_sym_AMP] = ACTIONS(2600), + [anon_sym_SEMI] = ACTIONS(2600), + [anon_sym___extension__] = ACTIONS(2598), + [anon_sym_typedef] = ACTIONS(2598), + [anon_sym_extern] = ACTIONS(2598), + [anon_sym___attribute__] = ACTIONS(2598), + [anon_sym___attribute] = ACTIONS(2598), + [anon_sym_noreturn] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(2600), + [anon_sym___declspec] = ACTIONS(2598), + [anon_sym___cdecl] = ACTIONS(2598), + [anon_sym___clrcall] = ACTIONS(2598), + [anon_sym___stdcall] = ACTIONS(2598), + [anon_sym___fastcall] = ACTIONS(2598), + [anon_sym___thiscall] = ACTIONS(2598), + [anon_sym___vectorcall] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_RBRACE] = ACTIONS(2600), + [anon_sym_signed] = ACTIONS(2598), + [anon_sym_unsigned] = ACTIONS(2598), + [anon_sym_long] = ACTIONS(2598), + [anon_sym_short] = ACTIONS(2598), + [anon_sym_static] = ACTIONS(2598), + [anon_sym_ATautoreleasepool] = ACTIONS(2600), + [anon_sym_auto] = ACTIONS(2598), + [anon_sym_register] = ACTIONS(2598), + [anon_sym_inline] = ACTIONS(2598), + [anon_sym___inline] = ACTIONS(2598), + [anon_sym___inline__] = ACTIONS(2598), + [anon_sym___forceinline] = ACTIONS(2598), + [anon_sym_thread_local] = ACTIONS(2598), + [anon_sym___thread] = ACTIONS(2598), + [anon_sym_CG_EXTERN] = ACTIONS(2598), + [anon_sym_CG_INLINE] = ACTIONS(2598), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2598), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2598), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2598), + [anon_sym_IBOutlet] = ACTIONS(2598), + [anon_sym_IBInspectable] = ACTIONS(2598), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2598), + [anon_sym_NS_INLINE] = ACTIONS(2598), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2598), + [anon_sym_OBJC_EXPORT] = ACTIONS(2598), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2598), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2598), + [anon_sym_const] = ACTIONS(2598), + [anon_sym_constexpr] = ACTIONS(2598), + [anon_sym_volatile] = ACTIONS(2598), + [anon_sym_restrict] = ACTIONS(2598), + [anon_sym___restrict__] = ACTIONS(2598), + [anon_sym__Atomic] = ACTIONS(2598), + [anon_sym__Noreturn] = ACTIONS(2598), + [anon_sym__Nonnull] = ACTIONS(2598), + [anon_sym_nullable] = ACTIONS(2598), + [anon_sym__Complex] = ACTIONS(2598), + [anon_sym__Nullable] = ACTIONS(2598), + [anon_sym__Nullable_result] = ACTIONS(2598), + [anon_sym__Null_unspecified] = ACTIONS(2598), + [anon_sym___autoreleasing] = ACTIONS(2598), + [anon_sym___block] = ACTIONS(2598), + [anon_sym___bridge] = ACTIONS(2598), + [anon_sym___bridge_retained] = ACTIONS(2598), + [anon_sym___bridge_transfer] = ACTIONS(2598), + [anon_sym___complex] = ACTIONS(2598), + [anon_sym___const] = ACTIONS(2598), + [anon_sym___imag] = ACTIONS(2598), + [anon_sym___kindof] = ACTIONS(2598), + [anon_sym___nonnull] = ACTIONS(2598), + [anon_sym___nullable] = ACTIONS(2598), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2598), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2598), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2598), + [anon_sym___real] = ACTIONS(2598), + [anon_sym___strong] = ACTIONS(2598), + [anon_sym___unsafe_unretained] = ACTIONS(2598), + [anon_sym___unused] = ACTIONS(2598), + [anon_sym___weak] = ACTIONS(2598), + [anon_sym_alignas] = ACTIONS(2598), + [anon_sym__Alignas] = ACTIONS(2598), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_enum] = ACTIONS(2598), + [anon_sym_struct] = ACTIONS(2598), + [anon_sym_union] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2598), + [anon_sym_switch] = ACTIONS(2598), + [anon_sym_case] = ACTIONS(2598), + [anon_sym_default] = ACTIONS(2598), + [anon_sym_while] = ACTIONS(2598), + [anon_sym_do] = ACTIONS(2598), + [anon_sym_for] = ACTIONS(2598), + [anon_sym_in] = ACTIONS(2598), + [anon_sym_return] = ACTIONS(2598), + [anon_sym_break] = ACTIONS(2598), + [anon_sym_continue] = ACTIONS(2598), + [anon_sym_goto] = ACTIONS(2598), + [anon_sym_DASH_DASH] = ACTIONS(2600), + [anon_sym_PLUS_PLUS] = ACTIONS(2600), + [anon_sym_sizeof] = ACTIONS(2598), + [anon_sym___alignof__] = ACTIONS(2598), + [anon_sym___alignof] = ACTIONS(2598), + [anon_sym__alignof] = ACTIONS(2598), + [anon_sym_alignof] = ACTIONS(2598), + [anon_sym__Alignof] = ACTIONS(2598), + [anon_sym_offsetof] = ACTIONS(2598), + [anon_sym__Generic] = ACTIONS(2598), + [anon_sym_asm] = ACTIONS(2598), + [anon_sym___asm__] = ACTIONS(2598), + [anon_sym___asm] = ACTIONS(2598), + [sym_number_literal] = ACTIONS(2600), + [anon_sym_L_SQUOTE] = ACTIONS(2600), + [anon_sym_u_SQUOTE] = ACTIONS(2600), + [anon_sym_U_SQUOTE] = ACTIONS(2600), + [anon_sym_u8_SQUOTE] = ACTIONS(2600), + [anon_sym_SQUOTE] = ACTIONS(2600), + [anon_sym_AT] = ACTIONS(2598), + [anon_sym_DQUOTE] = ACTIONS(2600), + [anon_sym_L_DQUOTE] = ACTIONS(2600), + [anon_sym_u_DQUOTE] = ACTIONS(2600), + [anon_sym_U_DQUOTE] = ACTIONS(2600), + [anon_sym_u8_DQUOTE] = ACTIONS(2600), + [sym_true] = ACTIONS(2598), + [sym_false] = ACTIONS(2598), + [anon_sym_NULL] = ACTIONS(2598), + [anon_sym_nullptr] = ACTIONS(2598), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2598), + [anon_sym___typeof] = ACTIONS(2598), + [anon_sym_typeof] = ACTIONS(2598), + [anon_sym_ATimport] = ACTIONS(2600), + [aux_sym_preproc_undef_token1] = ACTIONS(2598), + [anon_sym_POUND] = ACTIONS(2598), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2598), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2598), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2598), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2598), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2598), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2598), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2598), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2598), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2598), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2598), + [anon_sym_NS_AVAILABLE] = ACTIONS(2598), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2598), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2598), + [anon_sym_API_AVAILABLE] = ACTIONS(2598), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2598), + [anon_sym_API_DEPRECATED] = ACTIONS(2598), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2598), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2598), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2598), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2598), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2598), + [anon_sym___deprecated_msg] = ACTIONS(2598), + [anon_sym___deprecated_enum_msg] = ACTIONS(2598), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2598), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2598), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2598), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2598), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2598), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2598), + [anon_sym_ATprotocol] = ACTIONS(2600), + [anon_sym_ATinterface] = ACTIONS(2600), + [anon_sym_ATimplementation] = ACTIONS(2600), + [anon_sym_ATcompatibility_alias] = ACTIONS(2600), + [anon_sym_ATtry] = ACTIONS(2600), + [anon_sym___try] = ACTIONS(2598), + [anon_sym_ATthrow] = ACTIONS(2600), + [anon_sym_ATselector] = ACTIONS(2600), + [anon_sym_ATavailable] = ACTIONS(2600), + [anon_sym___builtin_available] = ACTIONS(2598), + [anon_sym_va_arg] = ACTIONS(2598), + [anon_sym_ATencode] = ACTIONS(2600), + [anon_sym_ATsynchronized] = ACTIONS(2600), + [anon_sym_BOOL] = ACTIONS(2598), + [anon_sym_IMP] = ACTIONS(2598), + [anon_sym_SEL] = ACTIONS(2598), + [anon_sym_Class] = ACTIONS(2598), + [anon_sym_id] = ACTIONS(2598), + }, + [851] = { + [sym_identifier] = ACTIONS(2576), + [aux_sym_preproc_include_token1] = ACTIONS(2576), + [aux_sym_preproc_include_token2] = ACTIONS(2576), + [aux_sym_preproc_def_token1] = ACTIONS(2576), + [aux_sym_preproc_if_token1] = ACTIONS(2576), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2576), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2576), + [sym_preproc_directive] = ACTIONS(2576), + [anon_sym_LPAREN2] = ACTIONS(2578), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_CARET] = ACTIONS(2578), + [anon_sym_AMP] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym___extension__] = ACTIONS(2576), + [anon_sym_typedef] = ACTIONS(2576), + [anon_sym_extern] = ACTIONS(2576), + [anon_sym___attribute__] = ACTIONS(2576), + [anon_sym___attribute] = ACTIONS(2576), + [anon_sym_noreturn] = ACTIONS(2576), + [anon_sym_LBRACK] = ACTIONS(2578), + [anon_sym___declspec] = ACTIONS(2576), + [anon_sym___cdecl] = ACTIONS(2576), + [anon_sym___clrcall] = ACTIONS(2576), + [anon_sym___stdcall] = ACTIONS(2576), + [anon_sym___fastcall] = ACTIONS(2576), + [anon_sym___thiscall] = ACTIONS(2576), + [anon_sym___vectorcall] = ACTIONS(2576), + [anon_sym_LBRACE] = ACTIONS(2578), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_signed] = ACTIONS(2576), + [anon_sym_unsigned] = ACTIONS(2576), + [anon_sym_long] = ACTIONS(2576), + [anon_sym_short] = ACTIONS(2576), + [anon_sym_static] = ACTIONS(2576), + [anon_sym_ATautoreleasepool] = ACTIONS(2578), + [anon_sym_auto] = ACTIONS(2576), + [anon_sym_register] = ACTIONS(2576), + [anon_sym_inline] = ACTIONS(2576), + [anon_sym___inline] = ACTIONS(2576), + [anon_sym___inline__] = ACTIONS(2576), + [anon_sym___forceinline] = ACTIONS(2576), + [anon_sym_thread_local] = ACTIONS(2576), + [anon_sym___thread] = ACTIONS(2576), + [anon_sym_CG_EXTERN] = ACTIONS(2576), + [anon_sym_CG_INLINE] = ACTIONS(2576), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2576), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2576), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2576), + [anon_sym_IBOutlet] = ACTIONS(2576), + [anon_sym_IBInspectable] = ACTIONS(2576), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2576), + [anon_sym_NS_INLINE] = ACTIONS(2576), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2576), + [anon_sym_OBJC_EXPORT] = ACTIONS(2576), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2576), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2576), + [anon_sym_const] = ACTIONS(2576), + [anon_sym_constexpr] = ACTIONS(2576), + [anon_sym_volatile] = ACTIONS(2576), + [anon_sym_restrict] = ACTIONS(2576), + [anon_sym___restrict__] = ACTIONS(2576), + [anon_sym__Atomic] = ACTIONS(2576), + [anon_sym__Noreturn] = ACTIONS(2576), + [anon_sym__Nonnull] = ACTIONS(2576), + [anon_sym_nullable] = ACTIONS(2576), + [anon_sym__Complex] = ACTIONS(2576), + [anon_sym__Nullable] = ACTIONS(2576), + [anon_sym__Nullable_result] = ACTIONS(2576), + [anon_sym__Null_unspecified] = ACTIONS(2576), + [anon_sym___autoreleasing] = ACTIONS(2576), + [anon_sym___block] = ACTIONS(2576), + [anon_sym___bridge] = ACTIONS(2576), + [anon_sym___bridge_retained] = ACTIONS(2576), + [anon_sym___bridge_transfer] = ACTIONS(2576), + [anon_sym___complex] = ACTIONS(2576), + [anon_sym___const] = ACTIONS(2576), + [anon_sym___imag] = ACTIONS(2576), + [anon_sym___kindof] = ACTIONS(2576), + [anon_sym___nonnull] = ACTIONS(2576), + [anon_sym___nullable] = ACTIONS(2576), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2576), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2576), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2576), + [anon_sym___real] = ACTIONS(2576), + [anon_sym___strong] = ACTIONS(2576), + [anon_sym___unsafe_unretained] = ACTIONS(2576), + [anon_sym___unused] = ACTIONS(2576), + [anon_sym___weak] = ACTIONS(2576), + [anon_sym_alignas] = ACTIONS(2576), + [anon_sym__Alignas] = ACTIONS(2576), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2576), + [anon_sym_struct] = ACTIONS(2576), + [anon_sym_union] = ACTIONS(2576), + [anon_sym_if] = ACTIONS(2576), + [anon_sym_switch] = ACTIONS(2576), + [anon_sym_case] = ACTIONS(2576), + [anon_sym_default] = ACTIONS(2576), + [anon_sym_while] = ACTIONS(2576), + [anon_sym_do] = ACTIONS(2576), + [anon_sym_for] = ACTIONS(2576), + [anon_sym_in] = ACTIONS(2576), + [anon_sym_return] = ACTIONS(2576), + [anon_sym_break] = ACTIONS(2576), + [anon_sym_continue] = ACTIONS(2576), + [anon_sym_goto] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(2578), + [anon_sym_PLUS_PLUS] = ACTIONS(2578), + [anon_sym_sizeof] = ACTIONS(2576), + [anon_sym___alignof__] = ACTIONS(2576), + [anon_sym___alignof] = ACTIONS(2576), + [anon_sym__alignof] = ACTIONS(2576), + [anon_sym_alignof] = ACTIONS(2576), + [anon_sym__Alignof] = ACTIONS(2576), + [anon_sym_offsetof] = ACTIONS(2576), + [anon_sym__Generic] = ACTIONS(2576), + [anon_sym_asm] = ACTIONS(2576), + [anon_sym___asm__] = ACTIONS(2576), + [anon_sym___asm] = ACTIONS(2576), + [sym_number_literal] = ACTIONS(2578), + [anon_sym_L_SQUOTE] = ACTIONS(2578), + [anon_sym_u_SQUOTE] = ACTIONS(2578), + [anon_sym_U_SQUOTE] = ACTIONS(2578), + [anon_sym_u8_SQUOTE] = ACTIONS(2578), + [anon_sym_SQUOTE] = ACTIONS(2578), + [anon_sym_AT] = ACTIONS(2576), + [anon_sym_DQUOTE] = ACTIONS(2578), + [anon_sym_L_DQUOTE] = ACTIONS(2578), + [anon_sym_u_DQUOTE] = ACTIONS(2578), + [anon_sym_U_DQUOTE] = ACTIONS(2578), + [anon_sym_u8_DQUOTE] = ACTIONS(2578), + [sym_true] = ACTIONS(2576), + [sym_false] = ACTIONS(2576), + [anon_sym_NULL] = ACTIONS(2576), + [anon_sym_nullptr] = ACTIONS(2576), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2576), + [anon_sym___typeof] = ACTIONS(2576), + [anon_sym_typeof] = ACTIONS(2576), + [anon_sym_ATimport] = ACTIONS(2578), + [aux_sym_preproc_undef_token1] = ACTIONS(2576), + [anon_sym_POUND] = ACTIONS(2576), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2576), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2576), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2576), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2576), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2576), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2576), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2576), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2576), + [anon_sym_NS_AVAILABLE] = ACTIONS(2576), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2576), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_API_AVAILABLE] = ACTIONS(2576), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_API_DEPRECATED] = ACTIONS(2576), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2576), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2576), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2576), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2576), + [anon_sym___deprecated_msg] = ACTIONS(2576), + [anon_sym___deprecated_enum_msg] = ACTIONS(2576), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2576), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2576), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2576), + [anon_sym_ATprotocol] = ACTIONS(2578), + [anon_sym_ATinterface] = ACTIONS(2578), + [anon_sym_ATimplementation] = ACTIONS(2578), + [anon_sym_ATcompatibility_alias] = ACTIONS(2578), + [anon_sym_ATtry] = ACTIONS(2578), + [anon_sym___try] = ACTIONS(2576), + [anon_sym_ATthrow] = ACTIONS(2578), + [anon_sym_ATselector] = ACTIONS(2578), + [anon_sym_ATavailable] = ACTIONS(2578), + [anon_sym___builtin_available] = ACTIONS(2576), + [anon_sym_va_arg] = ACTIONS(2576), + [anon_sym_ATencode] = ACTIONS(2578), + [anon_sym_ATsynchronized] = ACTIONS(2578), + [anon_sym_BOOL] = ACTIONS(2576), + [anon_sym_IMP] = ACTIONS(2576), + [anon_sym_SEL] = ACTIONS(2576), + [anon_sym_Class] = ACTIONS(2576), + [anon_sym_id] = ACTIONS(2576), + }, + [852] = { + [sym_identifier] = ACTIONS(2632), + [aux_sym_preproc_include_token1] = ACTIONS(2632), + [aux_sym_preproc_include_token2] = ACTIONS(2632), + [aux_sym_preproc_def_token1] = ACTIONS(2632), + [aux_sym_preproc_if_token1] = ACTIONS(2632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2632), + [sym_preproc_directive] = ACTIONS(2632), + [anon_sym_LPAREN2] = ACTIONS(2634), + [anon_sym_BANG] = ACTIONS(2634), + [anon_sym_TILDE] = ACTIONS(2634), + [anon_sym_DASH] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(2632), + [anon_sym_STAR] = ACTIONS(2634), + [anon_sym_CARET] = ACTIONS(2634), + [anon_sym_AMP] = ACTIONS(2634), + [anon_sym_SEMI] = ACTIONS(2634), + [anon_sym___extension__] = ACTIONS(2632), + [anon_sym_typedef] = ACTIONS(2632), + [anon_sym_extern] = ACTIONS(2632), + [anon_sym___attribute__] = ACTIONS(2632), + [anon_sym___attribute] = ACTIONS(2632), + [anon_sym_noreturn] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2634), + [anon_sym___declspec] = ACTIONS(2632), + [anon_sym___cdecl] = ACTIONS(2632), + [anon_sym___clrcall] = ACTIONS(2632), + [anon_sym___stdcall] = ACTIONS(2632), + [anon_sym___fastcall] = ACTIONS(2632), + [anon_sym___thiscall] = ACTIONS(2632), + [anon_sym___vectorcall] = ACTIONS(2632), + [anon_sym_LBRACE] = ACTIONS(2634), + [anon_sym_RBRACE] = ACTIONS(2634), + [anon_sym_signed] = ACTIONS(2632), + [anon_sym_unsigned] = ACTIONS(2632), + [anon_sym_long] = ACTIONS(2632), + [anon_sym_short] = ACTIONS(2632), + [anon_sym_static] = ACTIONS(2632), + [anon_sym_ATautoreleasepool] = ACTIONS(2634), + [anon_sym_auto] = ACTIONS(2632), + [anon_sym_register] = ACTIONS(2632), + [anon_sym_inline] = ACTIONS(2632), + [anon_sym___inline] = ACTIONS(2632), + [anon_sym___inline__] = ACTIONS(2632), + [anon_sym___forceinline] = ACTIONS(2632), + [anon_sym_thread_local] = ACTIONS(2632), + [anon_sym___thread] = ACTIONS(2632), + [anon_sym_CG_EXTERN] = ACTIONS(2632), + [anon_sym_CG_INLINE] = ACTIONS(2632), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2632), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2632), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2632), + [anon_sym_IBOutlet] = ACTIONS(2632), + [anon_sym_IBInspectable] = ACTIONS(2632), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2632), + [anon_sym_NS_INLINE] = ACTIONS(2632), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2632), + [anon_sym_OBJC_EXPORT] = ACTIONS(2632), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2632), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2632), + [anon_sym_const] = ACTIONS(2632), + [anon_sym_constexpr] = ACTIONS(2632), + [anon_sym_volatile] = ACTIONS(2632), + [anon_sym_restrict] = ACTIONS(2632), + [anon_sym___restrict__] = ACTIONS(2632), + [anon_sym__Atomic] = ACTIONS(2632), + [anon_sym__Noreturn] = ACTIONS(2632), + [anon_sym__Nonnull] = ACTIONS(2632), + [anon_sym_nullable] = ACTIONS(2632), + [anon_sym__Complex] = ACTIONS(2632), + [anon_sym__Nullable] = ACTIONS(2632), + [anon_sym__Nullable_result] = ACTIONS(2632), + [anon_sym__Null_unspecified] = ACTIONS(2632), + [anon_sym___autoreleasing] = ACTIONS(2632), + [anon_sym___block] = ACTIONS(2632), + [anon_sym___bridge] = ACTIONS(2632), + [anon_sym___bridge_retained] = ACTIONS(2632), + [anon_sym___bridge_transfer] = ACTIONS(2632), + [anon_sym___complex] = ACTIONS(2632), + [anon_sym___const] = ACTIONS(2632), + [anon_sym___imag] = ACTIONS(2632), + [anon_sym___kindof] = ACTIONS(2632), + [anon_sym___nonnull] = ACTIONS(2632), + [anon_sym___nullable] = ACTIONS(2632), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2632), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2632), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2632), + [anon_sym___real] = ACTIONS(2632), + [anon_sym___strong] = ACTIONS(2632), + [anon_sym___unsafe_unretained] = ACTIONS(2632), + [anon_sym___unused] = ACTIONS(2632), + [anon_sym___weak] = ACTIONS(2632), + [anon_sym_alignas] = ACTIONS(2632), + [anon_sym__Alignas] = ACTIONS(2632), + [sym_primitive_type] = ACTIONS(2632), + [anon_sym_enum] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2632), + [anon_sym_union] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_switch] = ACTIONS(2632), + [anon_sym_case] = ACTIONS(2632), + [anon_sym_default] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_do] = ACTIONS(2632), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_in] = ACTIONS(2632), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_break] = ACTIONS(2632), + [anon_sym_continue] = ACTIONS(2632), + [anon_sym_goto] = ACTIONS(2632), + [anon_sym_DASH_DASH] = ACTIONS(2634), + [anon_sym_PLUS_PLUS] = ACTIONS(2634), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2632), + [anon_sym___alignof] = ACTIONS(2632), + [anon_sym__alignof] = ACTIONS(2632), + [anon_sym_alignof] = ACTIONS(2632), + [anon_sym__Alignof] = ACTIONS(2632), + [anon_sym_offsetof] = ACTIONS(2632), + [anon_sym__Generic] = ACTIONS(2632), + [anon_sym_asm] = ACTIONS(2632), + [anon_sym___asm__] = ACTIONS(2632), + [anon_sym___asm] = ACTIONS(2632), + [sym_number_literal] = ACTIONS(2634), + [anon_sym_L_SQUOTE] = ACTIONS(2634), + [anon_sym_u_SQUOTE] = ACTIONS(2634), + [anon_sym_U_SQUOTE] = ACTIONS(2634), + [anon_sym_u8_SQUOTE] = ACTIONS(2634), + [anon_sym_SQUOTE] = ACTIONS(2634), + [anon_sym_AT] = ACTIONS(2632), + [anon_sym_DQUOTE] = ACTIONS(2634), + [anon_sym_L_DQUOTE] = ACTIONS(2634), + [anon_sym_u_DQUOTE] = ACTIONS(2634), + [anon_sym_U_DQUOTE] = ACTIONS(2634), + [anon_sym_u8_DQUOTE] = ACTIONS(2634), + [sym_true] = ACTIONS(2632), + [sym_false] = ACTIONS(2632), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2632), + [anon_sym___typeof] = ACTIONS(2632), + [anon_sym_typeof] = ACTIONS(2632), + [anon_sym_ATimport] = ACTIONS(2634), + [aux_sym_preproc_undef_token1] = ACTIONS(2632), + [anon_sym_POUND] = ACTIONS(2632), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2632), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2632), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2632), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2632), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2632), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2632), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2632), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2632), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2632), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2632), + [anon_sym_NS_AVAILABLE] = ACTIONS(2632), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2632), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2632), + [anon_sym_API_AVAILABLE] = ACTIONS(2632), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2632), + [anon_sym_API_DEPRECATED] = ACTIONS(2632), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2632), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2632), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2632), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2632), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2632), + [anon_sym___deprecated_msg] = ACTIONS(2632), + [anon_sym___deprecated_enum_msg] = ACTIONS(2632), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2632), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2632), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2632), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2632), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2632), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2632), + [anon_sym_ATprotocol] = ACTIONS(2634), + [anon_sym_ATinterface] = ACTIONS(2634), + [anon_sym_ATimplementation] = ACTIONS(2634), + [anon_sym_ATcompatibility_alias] = ACTIONS(2634), + [anon_sym_ATtry] = ACTIONS(2634), + [anon_sym___try] = ACTIONS(2632), + [anon_sym_ATthrow] = ACTIONS(2634), + [anon_sym_ATselector] = ACTIONS(2634), + [anon_sym_ATavailable] = ACTIONS(2634), + [anon_sym___builtin_available] = ACTIONS(2632), + [anon_sym_va_arg] = ACTIONS(2632), + [anon_sym_ATencode] = ACTIONS(2634), + [anon_sym_ATsynchronized] = ACTIONS(2634), + [anon_sym_BOOL] = ACTIONS(2632), + [anon_sym_IMP] = ACTIONS(2632), + [anon_sym_SEL] = ACTIONS(2632), + [anon_sym_Class] = ACTIONS(2632), + [anon_sym_id] = ACTIONS(2632), + }, + [853] = { + [sym_identifier] = ACTIONS(2680), + [aux_sym_preproc_include_token1] = ACTIONS(2680), + [aux_sym_preproc_include_token2] = ACTIONS(2680), + [aux_sym_preproc_def_token1] = ACTIONS(2680), + [aux_sym_preproc_if_token1] = ACTIONS(2680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2680), + [sym_preproc_directive] = ACTIONS(2680), + [anon_sym_LPAREN2] = ACTIONS(2682), + [anon_sym_BANG] = ACTIONS(2682), + [anon_sym_TILDE] = ACTIONS(2682), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_CARET] = ACTIONS(2682), + [anon_sym_AMP] = ACTIONS(2682), + [anon_sym_SEMI] = ACTIONS(2682), + [anon_sym___extension__] = ACTIONS(2680), + [anon_sym_typedef] = ACTIONS(2680), + [anon_sym_extern] = ACTIONS(2680), + [anon_sym___attribute__] = ACTIONS(2680), + [anon_sym___attribute] = ACTIONS(2680), + [anon_sym_noreturn] = ACTIONS(2680), + [anon_sym_LBRACK] = ACTIONS(2682), + [anon_sym___declspec] = ACTIONS(2680), + [anon_sym___cdecl] = ACTIONS(2680), + [anon_sym___clrcall] = ACTIONS(2680), + [anon_sym___stdcall] = ACTIONS(2680), + [anon_sym___fastcall] = ACTIONS(2680), + [anon_sym___thiscall] = ACTIONS(2680), + [anon_sym___vectorcall] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2682), + [anon_sym_RBRACE] = ACTIONS(2682), + [anon_sym_signed] = ACTIONS(2680), + [anon_sym_unsigned] = ACTIONS(2680), + [anon_sym_long] = ACTIONS(2680), + [anon_sym_short] = ACTIONS(2680), + [anon_sym_static] = ACTIONS(2680), + [anon_sym_ATautoreleasepool] = ACTIONS(2682), + [anon_sym_auto] = ACTIONS(2680), + [anon_sym_register] = ACTIONS(2680), + [anon_sym_inline] = ACTIONS(2680), + [anon_sym___inline] = ACTIONS(2680), + [anon_sym___inline__] = ACTIONS(2680), + [anon_sym___forceinline] = ACTIONS(2680), + [anon_sym_thread_local] = ACTIONS(2680), + [anon_sym___thread] = ACTIONS(2680), + [anon_sym_CG_EXTERN] = ACTIONS(2680), + [anon_sym_CG_INLINE] = ACTIONS(2680), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2680), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2680), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2680), + [anon_sym_IBOutlet] = ACTIONS(2680), + [anon_sym_IBInspectable] = ACTIONS(2680), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2680), + [anon_sym_NS_INLINE] = ACTIONS(2680), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2680), + [anon_sym_OBJC_EXPORT] = ACTIONS(2680), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2680), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2680), + [anon_sym_const] = ACTIONS(2680), + [anon_sym_constexpr] = ACTIONS(2680), + [anon_sym_volatile] = ACTIONS(2680), + [anon_sym_restrict] = ACTIONS(2680), + [anon_sym___restrict__] = ACTIONS(2680), + [anon_sym__Atomic] = ACTIONS(2680), + [anon_sym__Noreturn] = ACTIONS(2680), + [anon_sym__Nonnull] = ACTIONS(2680), + [anon_sym_nullable] = ACTIONS(2680), + [anon_sym__Complex] = ACTIONS(2680), + [anon_sym__Nullable] = ACTIONS(2680), + [anon_sym__Nullable_result] = ACTIONS(2680), + [anon_sym__Null_unspecified] = ACTIONS(2680), + [anon_sym___autoreleasing] = ACTIONS(2680), + [anon_sym___block] = ACTIONS(2680), + [anon_sym___bridge] = ACTIONS(2680), + [anon_sym___bridge_retained] = ACTIONS(2680), + [anon_sym___bridge_transfer] = ACTIONS(2680), + [anon_sym___complex] = ACTIONS(2680), + [anon_sym___const] = ACTIONS(2680), + [anon_sym___imag] = ACTIONS(2680), + [anon_sym___kindof] = ACTIONS(2680), + [anon_sym___nonnull] = ACTIONS(2680), + [anon_sym___nullable] = ACTIONS(2680), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2680), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2680), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2680), + [anon_sym___real] = ACTIONS(2680), + [anon_sym___strong] = ACTIONS(2680), + [anon_sym___unsafe_unretained] = ACTIONS(2680), + [anon_sym___unused] = ACTIONS(2680), + [anon_sym___weak] = ACTIONS(2680), + [anon_sym_alignas] = ACTIONS(2680), + [anon_sym__Alignas] = ACTIONS(2680), + [sym_primitive_type] = ACTIONS(2680), + [anon_sym_enum] = ACTIONS(2680), + [anon_sym_struct] = ACTIONS(2680), + [anon_sym_union] = ACTIONS(2680), + [anon_sym_if] = ACTIONS(2680), + [anon_sym_switch] = ACTIONS(2680), + [anon_sym_case] = ACTIONS(2680), + [anon_sym_default] = ACTIONS(2680), + [anon_sym_while] = ACTIONS(2680), + [anon_sym_do] = ACTIONS(2680), + [anon_sym_for] = ACTIONS(2680), + [anon_sym_in] = ACTIONS(2680), + [anon_sym_return] = ACTIONS(2680), + [anon_sym_break] = ACTIONS(2680), + [anon_sym_continue] = ACTIONS(2680), + [anon_sym_goto] = ACTIONS(2680), + [anon_sym_DASH_DASH] = ACTIONS(2682), + [anon_sym_PLUS_PLUS] = ACTIONS(2682), + [anon_sym_sizeof] = ACTIONS(2680), + [anon_sym___alignof__] = ACTIONS(2680), + [anon_sym___alignof] = ACTIONS(2680), + [anon_sym__alignof] = ACTIONS(2680), + [anon_sym_alignof] = ACTIONS(2680), + [anon_sym__Alignof] = ACTIONS(2680), + [anon_sym_offsetof] = ACTIONS(2680), + [anon_sym__Generic] = ACTIONS(2680), + [anon_sym_asm] = ACTIONS(2680), + [anon_sym___asm__] = ACTIONS(2680), + [anon_sym___asm] = ACTIONS(2680), + [sym_number_literal] = ACTIONS(2682), + [anon_sym_L_SQUOTE] = ACTIONS(2682), + [anon_sym_u_SQUOTE] = ACTIONS(2682), + [anon_sym_U_SQUOTE] = ACTIONS(2682), + [anon_sym_u8_SQUOTE] = ACTIONS(2682), + [anon_sym_SQUOTE] = ACTIONS(2682), + [anon_sym_AT] = ACTIONS(2680), + [anon_sym_DQUOTE] = ACTIONS(2682), + [anon_sym_L_DQUOTE] = ACTIONS(2682), + [anon_sym_u_DQUOTE] = ACTIONS(2682), + [anon_sym_U_DQUOTE] = ACTIONS(2682), + [anon_sym_u8_DQUOTE] = ACTIONS(2682), + [sym_true] = ACTIONS(2680), + [sym_false] = ACTIONS(2680), + [anon_sym_NULL] = ACTIONS(2680), + [anon_sym_nullptr] = ACTIONS(2680), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2680), + [anon_sym___typeof] = ACTIONS(2680), + [anon_sym_typeof] = ACTIONS(2680), + [anon_sym_ATimport] = ACTIONS(2682), + [aux_sym_preproc_undef_token1] = ACTIONS(2680), + [anon_sym_POUND] = ACTIONS(2680), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2680), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2680), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2680), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2680), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2680), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2680), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2680), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2680), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2680), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2680), + [anon_sym_NS_AVAILABLE] = ACTIONS(2680), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2680), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2680), + [anon_sym_API_AVAILABLE] = ACTIONS(2680), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2680), + [anon_sym_API_DEPRECATED] = ACTIONS(2680), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2680), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2680), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2680), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2680), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2680), + [anon_sym___deprecated_msg] = ACTIONS(2680), + [anon_sym___deprecated_enum_msg] = ACTIONS(2680), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2680), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2680), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2680), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2680), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2680), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2680), + [anon_sym_ATprotocol] = ACTIONS(2682), + [anon_sym_ATinterface] = ACTIONS(2682), + [anon_sym_ATimplementation] = ACTIONS(2682), + [anon_sym_ATcompatibility_alias] = ACTIONS(2682), + [anon_sym_ATtry] = ACTIONS(2682), + [anon_sym___try] = ACTIONS(2680), + [anon_sym_ATthrow] = ACTIONS(2682), + [anon_sym_ATselector] = ACTIONS(2682), + [anon_sym_ATavailable] = ACTIONS(2682), + [anon_sym___builtin_available] = ACTIONS(2680), + [anon_sym_va_arg] = ACTIONS(2680), + [anon_sym_ATencode] = ACTIONS(2682), + [anon_sym_ATsynchronized] = ACTIONS(2682), + [anon_sym_BOOL] = ACTIONS(2680), + [anon_sym_IMP] = ACTIONS(2680), + [anon_sym_SEL] = ACTIONS(2680), + [anon_sym_Class] = ACTIONS(2680), + [anon_sym_id] = ACTIONS(2680), + }, + [854] = { + [sym_identifier] = ACTIONS(2636), + [aux_sym_preproc_include_token1] = ACTIONS(2636), + [aux_sym_preproc_include_token2] = ACTIONS(2636), + [aux_sym_preproc_def_token1] = ACTIONS(2636), + [aux_sym_preproc_if_token1] = ACTIONS(2636), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2636), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2636), + [sym_preproc_directive] = ACTIONS(2636), + [anon_sym_LPAREN2] = ACTIONS(2638), + [anon_sym_BANG] = ACTIONS(2638), + [anon_sym_TILDE] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_PLUS] = ACTIONS(2636), + [anon_sym_STAR] = ACTIONS(2638), + [anon_sym_CARET] = ACTIONS(2638), + [anon_sym_AMP] = ACTIONS(2638), + [anon_sym_SEMI] = ACTIONS(2638), + [anon_sym___extension__] = ACTIONS(2636), + [anon_sym_typedef] = ACTIONS(2636), + [anon_sym_extern] = ACTIONS(2636), + [anon_sym___attribute__] = ACTIONS(2636), + [anon_sym___attribute] = ACTIONS(2636), + [anon_sym_noreturn] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2638), + [anon_sym___declspec] = ACTIONS(2636), + [anon_sym___cdecl] = ACTIONS(2636), + [anon_sym___clrcall] = ACTIONS(2636), + [anon_sym___stdcall] = ACTIONS(2636), + [anon_sym___fastcall] = ACTIONS(2636), + [anon_sym___thiscall] = ACTIONS(2636), + [anon_sym___vectorcall] = ACTIONS(2636), + [anon_sym_LBRACE] = ACTIONS(2638), + [anon_sym_RBRACE] = ACTIONS(2638), + [anon_sym_signed] = ACTIONS(2636), + [anon_sym_unsigned] = ACTIONS(2636), + [anon_sym_long] = ACTIONS(2636), + [anon_sym_short] = ACTIONS(2636), + [anon_sym_static] = ACTIONS(2636), + [anon_sym_ATautoreleasepool] = ACTIONS(2638), + [anon_sym_auto] = ACTIONS(2636), + [anon_sym_register] = ACTIONS(2636), + [anon_sym_inline] = ACTIONS(2636), + [anon_sym___inline] = ACTIONS(2636), + [anon_sym___inline__] = ACTIONS(2636), + [anon_sym___forceinline] = ACTIONS(2636), + [anon_sym_thread_local] = ACTIONS(2636), + [anon_sym___thread] = ACTIONS(2636), + [anon_sym_CG_EXTERN] = ACTIONS(2636), + [anon_sym_CG_INLINE] = ACTIONS(2636), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2636), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2636), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2636), + [anon_sym_IBOutlet] = ACTIONS(2636), + [anon_sym_IBInspectable] = ACTIONS(2636), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2636), + [anon_sym_NS_INLINE] = ACTIONS(2636), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2636), + [anon_sym_OBJC_EXPORT] = ACTIONS(2636), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2636), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2636), + [anon_sym_const] = ACTIONS(2636), + [anon_sym_constexpr] = ACTIONS(2636), + [anon_sym_volatile] = ACTIONS(2636), + [anon_sym_restrict] = ACTIONS(2636), + [anon_sym___restrict__] = ACTIONS(2636), + [anon_sym__Atomic] = ACTIONS(2636), + [anon_sym__Noreturn] = ACTIONS(2636), + [anon_sym__Nonnull] = ACTIONS(2636), + [anon_sym_nullable] = ACTIONS(2636), + [anon_sym__Complex] = ACTIONS(2636), + [anon_sym__Nullable] = ACTIONS(2636), + [anon_sym__Nullable_result] = ACTIONS(2636), + [anon_sym__Null_unspecified] = ACTIONS(2636), + [anon_sym___autoreleasing] = ACTIONS(2636), + [anon_sym___block] = ACTIONS(2636), + [anon_sym___bridge] = ACTIONS(2636), + [anon_sym___bridge_retained] = ACTIONS(2636), + [anon_sym___bridge_transfer] = ACTIONS(2636), + [anon_sym___complex] = ACTIONS(2636), + [anon_sym___const] = ACTIONS(2636), + [anon_sym___imag] = ACTIONS(2636), + [anon_sym___kindof] = ACTIONS(2636), + [anon_sym___nonnull] = ACTIONS(2636), + [anon_sym___nullable] = ACTIONS(2636), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2636), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2636), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2636), + [anon_sym___real] = ACTIONS(2636), + [anon_sym___strong] = ACTIONS(2636), + [anon_sym___unsafe_unretained] = ACTIONS(2636), + [anon_sym___unused] = ACTIONS(2636), + [anon_sym___weak] = ACTIONS(2636), + [anon_sym_alignas] = ACTIONS(2636), + [anon_sym__Alignas] = ACTIONS(2636), + [sym_primitive_type] = ACTIONS(2636), + [anon_sym_enum] = ACTIONS(2636), + [anon_sym_struct] = ACTIONS(2636), + [anon_sym_union] = ACTIONS(2636), + [anon_sym_if] = ACTIONS(2636), + [anon_sym_switch] = ACTIONS(2636), + [anon_sym_case] = ACTIONS(2636), + [anon_sym_default] = ACTIONS(2636), + [anon_sym_while] = ACTIONS(2636), + [anon_sym_do] = ACTIONS(2636), + [anon_sym_for] = ACTIONS(2636), + [anon_sym_in] = ACTIONS(2636), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_break] = ACTIONS(2636), + [anon_sym_continue] = ACTIONS(2636), + [anon_sym_goto] = ACTIONS(2636), + [anon_sym_DASH_DASH] = ACTIONS(2638), + [anon_sym_PLUS_PLUS] = ACTIONS(2638), + [anon_sym_sizeof] = ACTIONS(2636), + [anon_sym___alignof__] = ACTIONS(2636), + [anon_sym___alignof] = ACTIONS(2636), + [anon_sym__alignof] = ACTIONS(2636), + [anon_sym_alignof] = ACTIONS(2636), + [anon_sym__Alignof] = ACTIONS(2636), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2636), + [anon_sym_asm] = ACTIONS(2636), + [anon_sym___asm__] = ACTIONS(2636), + [anon_sym___asm] = ACTIONS(2636), + [sym_number_literal] = ACTIONS(2638), + [anon_sym_L_SQUOTE] = ACTIONS(2638), + [anon_sym_u_SQUOTE] = ACTIONS(2638), + [anon_sym_U_SQUOTE] = ACTIONS(2638), + [anon_sym_u8_SQUOTE] = ACTIONS(2638), + [anon_sym_SQUOTE] = ACTIONS(2638), + [anon_sym_AT] = ACTIONS(2636), + [anon_sym_DQUOTE] = ACTIONS(2638), + [anon_sym_L_DQUOTE] = ACTIONS(2638), + [anon_sym_u_DQUOTE] = ACTIONS(2638), + [anon_sym_U_DQUOTE] = ACTIONS(2638), + [anon_sym_u8_DQUOTE] = ACTIONS(2638), + [sym_true] = ACTIONS(2636), + [sym_false] = ACTIONS(2636), + [anon_sym_NULL] = ACTIONS(2636), + [anon_sym_nullptr] = ACTIONS(2636), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2636), + [anon_sym___typeof] = ACTIONS(2636), + [anon_sym_typeof] = ACTIONS(2636), + [anon_sym_ATimport] = ACTIONS(2638), + [aux_sym_preproc_undef_token1] = ACTIONS(2636), + [anon_sym_POUND] = ACTIONS(2636), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2636), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2636), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2636), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2636), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2636), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2636), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2636), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2636), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2636), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2636), + [anon_sym_NS_AVAILABLE] = ACTIONS(2636), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2636), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2636), + [anon_sym_API_AVAILABLE] = ACTIONS(2636), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2636), + [anon_sym_API_DEPRECATED] = ACTIONS(2636), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2636), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2636), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2636), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2636), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2636), + [anon_sym___deprecated_msg] = ACTIONS(2636), + [anon_sym___deprecated_enum_msg] = ACTIONS(2636), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2636), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2636), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2636), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2636), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2636), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2636), + [anon_sym_ATprotocol] = ACTIONS(2638), + [anon_sym_ATinterface] = ACTIONS(2638), + [anon_sym_ATimplementation] = ACTIONS(2638), + [anon_sym_ATcompatibility_alias] = ACTIONS(2638), + [anon_sym_ATtry] = ACTIONS(2638), + [anon_sym___try] = ACTIONS(2636), + [anon_sym_ATthrow] = ACTIONS(2638), + [anon_sym_ATselector] = ACTIONS(2638), + [anon_sym_ATavailable] = ACTIONS(2638), + [anon_sym___builtin_available] = ACTIONS(2636), + [anon_sym_va_arg] = ACTIONS(2636), + [anon_sym_ATencode] = ACTIONS(2638), + [anon_sym_ATsynchronized] = ACTIONS(2638), + [anon_sym_BOOL] = ACTIONS(2636), + [anon_sym_IMP] = ACTIONS(2636), + [anon_sym_SEL] = ACTIONS(2636), + [anon_sym_Class] = ACTIONS(2636), + [anon_sym_id] = ACTIONS(2636), + }, + [855] = { + [sym_identifier] = ACTIONS(2820), + [aux_sym_preproc_include_token1] = ACTIONS(2820), + [aux_sym_preproc_include_token2] = ACTIONS(2820), + [aux_sym_preproc_def_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), + [sym_preproc_directive] = ACTIONS(2820), + [anon_sym_LPAREN2] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_CARET] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym___extension__] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym___attribute__] = ACTIONS(2820), + [anon_sym___attribute] = ACTIONS(2820), + [anon_sym_noreturn] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym___declspec] = ACTIONS(2820), + [anon_sym___cdecl] = ACTIONS(2820), + [anon_sym___clrcall] = ACTIONS(2820), + [anon_sym___stdcall] = ACTIONS(2820), + [anon_sym___fastcall] = ACTIONS(2820), + [anon_sym___thiscall] = ACTIONS(2820), + [anon_sym___vectorcall] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_RBRACE] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2820), + [anon_sym_unsigned] = ACTIONS(2820), + [anon_sym_long] = ACTIONS(2820), + [anon_sym_short] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_ATautoreleasepool] = ACTIONS(2822), + [anon_sym_auto] = ACTIONS(2820), + [anon_sym_register] = ACTIONS(2820), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym___inline] = ACTIONS(2820), + [anon_sym___inline__] = ACTIONS(2820), + [anon_sym___forceinline] = ACTIONS(2820), + [anon_sym_thread_local] = ACTIONS(2820), + [anon_sym___thread] = ACTIONS(2820), + [anon_sym_CG_EXTERN] = ACTIONS(2820), + [anon_sym_CG_INLINE] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2820), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2820), + [anon_sym_IBOutlet] = ACTIONS(2820), + [anon_sym_IBInspectable] = ACTIONS(2820), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2820), + [anon_sym_NS_INLINE] = ACTIONS(2820), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2820), + [anon_sym_OBJC_EXPORT] = ACTIONS(2820), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_constexpr] = ACTIONS(2820), + [anon_sym_volatile] = ACTIONS(2820), + [anon_sym_restrict] = ACTIONS(2820), + [anon_sym___restrict__] = ACTIONS(2820), + [anon_sym__Atomic] = ACTIONS(2820), + [anon_sym__Noreturn] = ACTIONS(2820), + [anon_sym__Nonnull] = ACTIONS(2820), + [anon_sym_nullable] = ACTIONS(2820), + [anon_sym__Complex] = ACTIONS(2820), + [anon_sym__Nullable] = ACTIONS(2820), + [anon_sym__Nullable_result] = ACTIONS(2820), + [anon_sym__Null_unspecified] = ACTIONS(2820), + [anon_sym___autoreleasing] = ACTIONS(2820), + [anon_sym___block] = ACTIONS(2820), + [anon_sym___bridge] = ACTIONS(2820), + [anon_sym___bridge_retained] = ACTIONS(2820), + [anon_sym___bridge_transfer] = ACTIONS(2820), + [anon_sym___complex] = ACTIONS(2820), + [anon_sym___const] = ACTIONS(2820), + [anon_sym___imag] = ACTIONS(2820), + [anon_sym___kindof] = ACTIONS(2820), + [anon_sym___nonnull] = ACTIONS(2820), + [anon_sym___nullable] = ACTIONS(2820), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2820), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2820), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2820), + [anon_sym___real] = ACTIONS(2820), + [anon_sym___strong] = ACTIONS(2820), + [anon_sym___unsafe_unretained] = ACTIONS(2820), + [anon_sym___unused] = ACTIONS(2820), + [anon_sym___weak] = ACTIONS(2820), + [anon_sym_alignas] = ACTIONS(2820), + [anon_sym__Alignas] = ACTIONS(2820), + [sym_primitive_type] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2820), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_case] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_in] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_goto] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_sizeof] = ACTIONS(2820), + [anon_sym___alignof__] = ACTIONS(2820), + [anon_sym___alignof] = ACTIONS(2820), + [anon_sym__alignof] = ACTIONS(2820), + [anon_sym_alignof] = ACTIONS(2820), + [anon_sym__Alignof] = ACTIONS(2820), + [anon_sym_offsetof] = ACTIONS(2820), + [anon_sym__Generic] = ACTIONS(2820), + [anon_sym_asm] = ACTIONS(2820), + [anon_sym___asm__] = ACTIONS(2820), + [anon_sym___asm] = ACTIONS(2820), + [sym_number_literal] = ACTIONS(2822), + [anon_sym_L_SQUOTE] = ACTIONS(2822), + [anon_sym_u_SQUOTE] = ACTIONS(2822), + [anon_sym_U_SQUOTE] = ACTIONS(2822), + [anon_sym_u8_SQUOTE] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2822), + [anon_sym_AT] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2822), + [anon_sym_L_DQUOTE] = ACTIONS(2822), + [anon_sym_u_DQUOTE] = ACTIONS(2822), + [anon_sym_U_DQUOTE] = ACTIONS(2822), + [anon_sym_u8_DQUOTE] = ACTIONS(2822), + [sym_true] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [anon_sym_NULL] = ACTIONS(2820), + [anon_sym_nullptr] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2820), + [anon_sym___typeof] = ACTIONS(2820), + [anon_sym_typeof] = ACTIONS(2820), + [anon_sym_ATimport] = ACTIONS(2822), + [aux_sym_preproc_undef_token1] = ACTIONS(2820), + [anon_sym_POUND] = ACTIONS(2820), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2820), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2820), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2820), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2820), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE] = ACTIONS(2820), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_API_AVAILABLE] = ACTIONS(2820), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_API_DEPRECATED] = ACTIONS(2820), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2820), + [anon_sym___deprecated_msg] = ACTIONS(2820), + [anon_sym___deprecated_enum_msg] = ACTIONS(2820), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2820), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2820), + [anon_sym_ATprotocol] = ACTIONS(2822), + [anon_sym_ATinterface] = ACTIONS(2822), + [anon_sym_ATimplementation] = ACTIONS(2822), + [anon_sym_ATcompatibility_alias] = ACTIONS(2822), + [anon_sym_ATtry] = ACTIONS(2822), + [anon_sym___try] = ACTIONS(2820), + [anon_sym_ATthrow] = ACTIONS(2822), + [anon_sym_ATselector] = ACTIONS(2822), + [anon_sym_ATavailable] = ACTIONS(2822), + [anon_sym___builtin_available] = ACTIONS(2820), + [anon_sym_va_arg] = ACTIONS(2820), + [anon_sym_ATencode] = ACTIONS(2822), + [anon_sym_ATsynchronized] = ACTIONS(2822), + [anon_sym_BOOL] = ACTIONS(2820), + [anon_sym_IMP] = ACTIONS(2820), + [anon_sym_SEL] = ACTIONS(2820), + [anon_sym_Class] = ACTIONS(2820), + [anon_sym_id] = ACTIONS(2820), + }, + [856] = { + [sym_identifier] = ACTIONS(2820), + [aux_sym_preproc_include_token1] = ACTIONS(2820), + [aux_sym_preproc_include_token2] = ACTIONS(2820), + [aux_sym_preproc_def_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), + [sym_preproc_directive] = ACTIONS(2820), + [anon_sym_LPAREN2] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_CARET] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym___extension__] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym___attribute__] = ACTIONS(2820), + [anon_sym___attribute] = ACTIONS(2820), + [anon_sym_noreturn] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym___declspec] = ACTIONS(2820), + [anon_sym___cdecl] = ACTIONS(2820), + [anon_sym___clrcall] = ACTIONS(2820), + [anon_sym___stdcall] = ACTIONS(2820), + [anon_sym___fastcall] = ACTIONS(2820), + [anon_sym___thiscall] = ACTIONS(2820), + [anon_sym___vectorcall] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_RBRACE] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2820), + [anon_sym_unsigned] = ACTIONS(2820), + [anon_sym_long] = ACTIONS(2820), + [anon_sym_short] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_ATautoreleasepool] = ACTIONS(2822), + [anon_sym_auto] = ACTIONS(2820), + [anon_sym_register] = ACTIONS(2820), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym___inline] = ACTIONS(2820), + [anon_sym___inline__] = ACTIONS(2820), + [anon_sym___forceinline] = ACTIONS(2820), + [anon_sym_thread_local] = ACTIONS(2820), + [anon_sym___thread] = ACTIONS(2820), + [anon_sym_CG_EXTERN] = ACTIONS(2820), + [anon_sym_CG_INLINE] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2820), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2820), + [anon_sym_IBOutlet] = ACTIONS(2820), + [anon_sym_IBInspectable] = ACTIONS(2820), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2820), + [anon_sym_NS_INLINE] = ACTIONS(2820), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2820), + [anon_sym_OBJC_EXPORT] = ACTIONS(2820), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_constexpr] = ACTIONS(2820), + [anon_sym_volatile] = ACTIONS(2820), + [anon_sym_restrict] = ACTIONS(2820), + [anon_sym___restrict__] = ACTIONS(2820), + [anon_sym__Atomic] = ACTIONS(2820), + [anon_sym__Noreturn] = ACTIONS(2820), + [anon_sym__Nonnull] = ACTIONS(2820), + [anon_sym_nullable] = ACTIONS(2820), + [anon_sym__Complex] = ACTIONS(2820), + [anon_sym__Nullable] = ACTIONS(2820), + [anon_sym__Nullable_result] = ACTIONS(2820), + [anon_sym__Null_unspecified] = ACTIONS(2820), + [anon_sym___autoreleasing] = ACTIONS(2820), + [anon_sym___block] = ACTIONS(2820), + [anon_sym___bridge] = ACTIONS(2820), + [anon_sym___bridge_retained] = ACTIONS(2820), + [anon_sym___bridge_transfer] = ACTIONS(2820), + [anon_sym___complex] = ACTIONS(2820), + [anon_sym___const] = ACTIONS(2820), + [anon_sym___imag] = ACTIONS(2820), + [anon_sym___kindof] = ACTIONS(2820), + [anon_sym___nonnull] = ACTIONS(2820), + [anon_sym___nullable] = ACTIONS(2820), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2820), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2820), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2820), + [anon_sym___real] = ACTIONS(2820), + [anon_sym___strong] = ACTIONS(2820), + [anon_sym___unsafe_unretained] = ACTIONS(2820), + [anon_sym___unused] = ACTIONS(2820), + [anon_sym___weak] = ACTIONS(2820), + [anon_sym_alignas] = ACTIONS(2820), + [anon_sym__Alignas] = ACTIONS(2820), + [sym_primitive_type] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2820), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_case] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_in] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_goto] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_sizeof] = ACTIONS(2820), + [anon_sym___alignof__] = ACTIONS(2820), + [anon_sym___alignof] = ACTIONS(2820), + [anon_sym__alignof] = ACTIONS(2820), + [anon_sym_alignof] = ACTIONS(2820), + [anon_sym__Alignof] = ACTIONS(2820), + [anon_sym_offsetof] = ACTIONS(2820), + [anon_sym__Generic] = ACTIONS(2820), + [anon_sym_asm] = ACTIONS(2820), + [anon_sym___asm__] = ACTIONS(2820), + [anon_sym___asm] = ACTIONS(2820), + [sym_number_literal] = ACTIONS(2822), + [anon_sym_L_SQUOTE] = ACTIONS(2822), + [anon_sym_u_SQUOTE] = ACTIONS(2822), + [anon_sym_U_SQUOTE] = ACTIONS(2822), + [anon_sym_u8_SQUOTE] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2822), + [anon_sym_AT] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2822), + [anon_sym_L_DQUOTE] = ACTIONS(2822), + [anon_sym_u_DQUOTE] = ACTIONS(2822), + [anon_sym_U_DQUOTE] = ACTIONS(2822), + [anon_sym_u8_DQUOTE] = ACTIONS(2822), + [sym_true] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [anon_sym_NULL] = ACTIONS(2820), + [anon_sym_nullptr] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2820), + [anon_sym___typeof] = ACTIONS(2820), + [anon_sym_typeof] = ACTIONS(2820), + [anon_sym_ATimport] = ACTIONS(2822), + [aux_sym_preproc_undef_token1] = ACTIONS(2820), + [anon_sym_POUND] = ACTIONS(2820), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2820), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2820), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2820), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2820), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE] = ACTIONS(2820), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_API_AVAILABLE] = ACTIONS(2820), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_API_DEPRECATED] = ACTIONS(2820), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2820), + [anon_sym___deprecated_msg] = ACTIONS(2820), + [anon_sym___deprecated_enum_msg] = ACTIONS(2820), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2820), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2820), + [anon_sym_ATprotocol] = ACTIONS(2822), + [anon_sym_ATinterface] = ACTIONS(2822), + [anon_sym_ATimplementation] = ACTIONS(2822), + [anon_sym_ATcompatibility_alias] = ACTIONS(2822), + [anon_sym_ATtry] = ACTIONS(2822), + [anon_sym___try] = ACTIONS(2820), + [anon_sym_ATthrow] = ACTIONS(2822), + [anon_sym_ATselector] = ACTIONS(2822), + [anon_sym_ATavailable] = ACTIONS(2822), + [anon_sym___builtin_available] = ACTIONS(2820), + [anon_sym_va_arg] = ACTIONS(2820), + [anon_sym_ATencode] = ACTIONS(2822), + [anon_sym_ATsynchronized] = ACTIONS(2822), + [anon_sym_BOOL] = ACTIONS(2820), + [anon_sym_IMP] = ACTIONS(2820), + [anon_sym_SEL] = ACTIONS(2820), + [anon_sym_Class] = ACTIONS(2820), + [anon_sym_id] = ACTIONS(2820), + }, + [857] = { + [sym_identifier] = ACTIONS(2820), + [aux_sym_preproc_include_token1] = ACTIONS(2820), + [aux_sym_preproc_include_token2] = ACTIONS(2820), + [aux_sym_preproc_def_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), + [sym_preproc_directive] = ACTIONS(2820), + [anon_sym_LPAREN2] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_CARET] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym___extension__] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym___attribute__] = ACTIONS(2820), + [anon_sym___attribute] = ACTIONS(2820), + [anon_sym_noreturn] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym___declspec] = ACTIONS(2820), + [anon_sym___cdecl] = ACTIONS(2820), + [anon_sym___clrcall] = ACTIONS(2820), + [anon_sym___stdcall] = ACTIONS(2820), + [anon_sym___fastcall] = ACTIONS(2820), + [anon_sym___thiscall] = ACTIONS(2820), + [anon_sym___vectorcall] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_RBRACE] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2820), + [anon_sym_unsigned] = ACTIONS(2820), + [anon_sym_long] = ACTIONS(2820), + [anon_sym_short] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_ATautoreleasepool] = ACTIONS(2822), + [anon_sym_auto] = ACTIONS(2820), + [anon_sym_register] = ACTIONS(2820), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym___inline] = ACTIONS(2820), + [anon_sym___inline__] = ACTIONS(2820), + [anon_sym___forceinline] = ACTIONS(2820), + [anon_sym_thread_local] = ACTIONS(2820), + [anon_sym___thread] = ACTIONS(2820), + [anon_sym_CG_EXTERN] = ACTIONS(2820), + [anon_sym_CG_INLINE] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2820), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2820), + [anon_sym_IBOutlet] = ACTIONS(2820), + [anon_sym_IBInspectable] = ACTIONS(2820), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2820), + [anon_sym_NS_INLINE] = ACTIONS(2820), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2820), + [anon_sym_OBJC_EXPORT] = ACTIONS(2820), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_constexpr] = ACTIONS(2820), + [anon_sym_volatile] = ACTIONS(2820), + [anon_sym_restrict] = ACTIONS(2820), + [anon_sym___restrict__] = ACTIONS(2820), + [anon_sym__Atomic] = ACTIONS(2820), + [anon_sym__Noreturn] = ACTIONS(2820), + [anon_sym__Nonnull] = ACTIONS(2820), + [anon_sym_nullable] = ACTIONS(2820), + [anon_sym__Complex] = ACTIONS(2820), + [anon_sym__Nullable] = ACTIONS(2820), + [anon_sym__Nullable_result] = ACTIONS(2820), + [anon_sym__Null_unspecified] = ACTIONS(2820), + [anon_sym___autoreleasing] = ACTIONS(2820), + [anon_sym___block] = ACTIONS(2820), + [anon_sym___bridge] = ACTIONS(2820), + [anon_sym___bridge_retained] = ACTIONS(2820), + [anon_sym___bridge_transfer] = ACTIONS(2820), + [anon_sym___complex] = ACTIONS(2820), + [anon_sym___const] = ACTIONS(2820), + [anon_sym___imag] = ACTIONS(2820), + [anon_sym___kindof] = ACTIONS(2820), + [anon_sym___nonnull] = ACTIONS(2820), + [anon_sym___nullable] = ACTIONS(2820), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2820), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2820), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2820), + [anon_sym___real] = ACTIONS(2820), + [anon_sym___strong] = ACTIONS(2820), + [anon_sym___unsafe_unretained] = ACTIONS(2820), + [anon_sym___unused] = ACTIONS(2820), + [anon_sym___weak] = ACTIONS(2820), + [anon_sym_alignas] = ACTIONS(2820), + [anon_sym__Alignas] = ACTIONS(2820), + [sym_primitive_type] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2820), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_case] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_in] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_goto] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_sizeof] = ACTIONS(2820), + [anon_sym___alignof__] = ACTIONS(2820), + [anon_sym___alignof] = ACTIONS(2820), + [anon_sym__alignof] = ACTIONS(2820), + [anon_sym_alignof] = ACTIONS(2820), + [anon_sym__Alignof] = ACTIONS(2820), + [anon_sym_offsetof] = ACTIONS(2820), + [anon_sym__Generic] = ACTIONS(2820), + [anon_sym_asm] = ACTIONS(2820), + [anon_sym___asm__] = ACTIONS(2820), + [anon_sym___asm] = ACTIONS(2820), + [sym_number_literal] = ACTIONS(2822), + [anon_sym_L_SQUOTE] = ACTIONS(2822), + [anon_sym_u_SQUOTE] = ACTIONS(2822), + [anon_sym_U_SQUOTE] = ACTIONS(2822), + [anon_sym_u8_SQUOTE] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2822), + [anon_sym_AT] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2822), + [anon_sym_L_DQUOTE] = ACTIONS(2822), + [anon_sym_u_DQUOTE] = ACTIONS(2822), + [anon_sym_U_DQUOTE] = ACTIONS(2822), + [anon_sym_u8_DQUOTE] = ACTIONS(2822), + [sym_true] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [anon_sym_NULL] = ACTIONS(2820), + [anon_sym_nullptr] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2820), + [anon_sym___typeof] = ACTIONS(2820), + [anon_sym_typeof] = ACTIONS(2820), + [anon_sym_ATimport] = ACTIONS(2822), + [aux_sym_preproc_undef_token1] = ACTIONS(2820), + [anon_sym_POUND] = ACTIONS(2820), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2820), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2820), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2820), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2820), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE] = ACTIONS(2820), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_API_AVAILABLE] = ACTIONS(2820), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_API_DEPRECATED] = ACTIONS(2820), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2820), + [anon_sym___deprecated_msg] = ACTIONS(2820), + [anon_sym___deprecated_enum_msg] = ACTIONS(2820), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2820), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2820), + [anon_sym_ATprotocol] = ACTIONS(2822), + [anon_sym_ATinterface] = ACTIONS(2822), + [anon_sym_ATimplementation] = ACTIONS(2822), + [anon_sym_ATcompatibility_alias] = ACTIONS(2822), + [anon_sym_ATtry] = ACTIONS(2822), + [anon_sym___try] = ACTIONS(2820), + [anon_sym_ATthrow] = ACTIONS(2822), + [anon_sym_ATselector] = ACTIONS(2822), + [anon_sym_ATavailable] = ACTIONS(2822), + [anon_sym___builtin_available] = ACTIONS(2820), + [anon_sym_va_arg] = ACTIONS(2820), + [anon_sym_ATencode] = ACTIONS(2822), + [anon_sym_ATsynchronized] = ACTIONS(2822), + [anon_sym_BOOL] = ACTIONS(2820), + [anon_sym_IMP] = ACTIONS(2820), + [anon_sym_SEL] = ACTIONS(2820), + [anon_sym_Class] = ACTIONS(2820), + [anon_sym_id] = ACTIONS(2820), + }, + [858] = { + [sym_identifier] = ACTIONS(2824), + [aux_sym_preproc_include_token1] = ACTIONS(2824), + [aux_sym_preproc_include_token2] = ACTIONS(2824), + [aux_sym_preproc_def_token1] = ACTIONS(2824), + [aux_sym_preproc_if_token1] = ACTIONS(2824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2824), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2824), + [sym_preproc_directive] = ACTIONS(2824), + [anon_sym_LPAREN2] = ACTIONS(2826), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_DASH] = ACTIONS(2824), + [anon_sym_PLUS] = ACTIONS(2824), + [anon_sym_STAR] = ACTIONS(2826), + [anon_sym_CARET] = ACTIONS(2826), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym___extension__] = ACTIONS(2824), + [anon_sym_typedef] = ACTIONS(2824), + [anon_sym_extern] = ACTIONS(2824), + [anon_sym___attribute__] = ACTIONS(2824), + [anon_sym___attribute] = ACTIONS(2824), + [anon_sym_noreturn] = ACTIONS(2824), + [anon_sym_LBRACK] = ACTIONS(2826), + [anon_sym___declspec] = ACTIONS(2824), + [anon_sym___cdecl] = ACTIONS(2824), + [anon_sym___clrcall] = ACTIONS(2824), + [anon_sym___stdcall] = ACTIONS(2824), + [anon_sym___fastcall] = ACTIONS(2824), + [anon_sym___thiscall] = ACTIONS(2824), + [anon_sym___vectorcall] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_RBRACE] = ACTIONS(2826), + [anon_sym_signed] = ACTIONS(2824), + [anon_sym_unsigned] = ACTIONS(2824), + [anon_sym_long] = ACTIONS(2824), + [anon_sym_short] = ACTIONS(2824), + [anon_sym_static] = ACTIONS(2824), + [anon_sym_ATautoreleasepool] = ACTIONS(2826), + [anon_sym_auto] = ACTIONS(2824), + [anon_sym_register] = ACTIONS(2824), + [anon_sym_inline] = ACTIONS(2824), + [anon_sym___inline] = ACTIONS(2824), + [anon_sym___inline__] = ACTIONS(2824), + [anon_sym___forceinline] = ACTIONS(2824), + [anon_sym_thread_local] = ACTIONS(2824), + [anon_sym___thread] = ACTIONS(2824), + [anon_sym_CG_EXTERN] = ACTIONS(2824), + [anon_sym_CG_INLINE] = ACTIONS(2824), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2824), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2824), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2824), + [anon_sym_IBOutlet] = ACTIONS(2824), + [anon_sym_IBInspectable] = ACTIONS(2824), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2824), + [anon_sym_NS_INLINE] = ACTIONS(2824), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2824), + [anon_sym_OBJC_EXPORT] = ACTIONS(2824), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2824), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2824), + [anon_sym_const] = ACTIONS(2824), + [anon_sym_constexpr] = ACTIONS(2824), + [anon_sym_volatile] = ACTIONS(2824), + [anon_sym_restrict] = ACTIONS(2824), + [anon_sym___restrict__] = ACTIONS(2824), + [anon_sym__Atomic] = ACTIONS(2824), + [anon_sym__Noreturn] = ACTIONS(2824), + [anon_sym__Nonnull] = ACTIONS(2824), + [anon_sym_nullable] = ACTIONS(2824), + [anon_sym__Complex] = ACTIONS(2824), + [anon_sym__Nullable] = ACTIONS(2824), + [anon_sym__Nullable_result] = ACTIONS(2824), + [anon_sym__Null_unspecified] = ACTIONS(2824), + [anon_sym___autoreleasing] = ACTIONS(2824), + [anon_sym___block] = ACTIONS(2824), + [anon_sym___bridge] = ACTIONS(2824), + [anon_sym___bridge_retained] = ACTIONS(2824), + [anon_sym___bridge_transfer] = ACTIONS(2824), + [anon_sym___complex] = ACTIONS(2824), + [anon_sym___const] = ACTIONS(2824), + [anon_sym___imag] = ACTIONS(2824), + [anon_sym___kindof] = ACTIONS(2824), + [anon_sym___nonnull] = ACTIONS(2824), + [anon_sym___nullable] = ACTIONS(2824), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2824), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2824), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2824), + [anon_sym___real] = ACTIONS(2824), + [anon_sym___strong] = ACTIONS(2824), + [anon_sym___unsafe_unretained] = ACTIONS(2824), + [anon_sym___unused] = ACTIONS(2824), + [anon_sym___weak] = ACTIONS(2824), + [anon_sym_alignas] = ACTIONS(2824), + [anon_sym__Alignas] = ACTIONS(2824), + [sym_primitive_type] = ACTIONS(2824), + [anon_sym_enum] = ACTIONS(2824), + [anon_sym_struct] = ACTIONS(2824), + [anon_sym_union] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2824), + [anon_sym_switch] = ACTIONS(2824), + [anon_sym_case] = ACTIONS(2824), + [anon_sym_default] = ACTIONS(2824), + [anon_sym_while] = ACTIONS(2824), + [anon_sym_do] = ACTIONS(2824), + [anon_sym_for] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2824), + [anon_sym_return] = ACTIONS(2824), + [anon_sym_break] = ACTIONS(2824), + [anon_sym_continue] = ACTIONS(2824), + [anon_sym_goto] = ACTIONS(2824), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_sizeof] = ACTIONS(2824), + [anon_sym___alignof__] = ACTIONS(2824), + [anon_sym___alignof] = ACTIONS(2824), + [anon_sym__alignof] = ACTIONS(2824), + [anon_sym_alignof] = ACTIONS(2824), + [anon_sym__Alignof] = ACTIONS(2824), + [anon_sym_offsetof] = ACTIONS(2824), + [anon_sym__Generic] = ACTIONS(2824), + [anon_sym_asm] = ACTIONS(2824), + [anon_sym___asm__] = ACTIONS(2824), + [anon_sym___asm] = ACTIONS(2824), + [sym_number_literal] = ACTIONS(2826), + [anon_sym_L_SQUOTE] = ACTIONS(2826), + [anon_sym_u_SQUOTE] = ACTIONS(2826), + [anon_sym_U_SQUOTE] = ACTIONS(2826), + [anon_sym_u8_SQUOTE] = ACTIONS(2826), + [anon_sym_SQUOTE] = ACTIONS(2826), + [anon_sym_AT] = ACTIONS(2824), + [anon_sym_DQUOTE] = ACTIONS(2826), + [anon_sym_L_DQUOTE] = ACTIONS(2826), + [anon_sym_u_DQUOTE] = ACTIONS(2826), + [anon_sym_U_DQUOTE] = ACTIONS(2826), + [anon_sym_u8_DQUOTE] = ACTIONS(2826), + [sym_true] = ACTIONS(2824), + [sym_false] = ACTIONS(2824), + [anon_sym_NULL] = ACTIONS(2824), + [anon_sym_nullptr] = ACTIONS(2824), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2824), + [anon_sym___typeof] = ACTIONS(2824), + [anon_sym_typeof] = ACTIONS(2824), + [anon_sym_ATimport] = ACTIONS(2826), + [aux_sym_preproc_undef_token1] = ACTIONS(2824), + [anon_sym_POUND] = ACTIONS(2824), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2824), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2824), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2824), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2824), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2824), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2824), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2824), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2824), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2824), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2824), + [anon_sym_NS_AVAILABLE] = ACTIONS(2824), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2824), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2824), + [anon_sym_API_AVAILABLE] = ACTIONS(2824), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2824), + [anon_sym_API_DEPRECATED] = ACTIONS(2824), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2824), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2824), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2824), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2824), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2824), + [anon_sym___deprecated_msg] = ACTIONS(2824), + [anon_sym___deprecated_enum_msg] = ACTIONS(2824), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2824), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2824), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2824), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2824), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2824), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2824), + [anon_sym_ATprotocol] = ACTIONS(2826), + [anon_sym_ATinterface] = ACTIONS(2826), + [anon_sym_ATimplementation] = ACTIONS(2826), + [anon_sym_ATcompatibility_alias] = ACTIONS(2826), + [anon_sym_ATtry] = ACTIONS(2826), + [anon_sym___try] = ACTIONS(2824), + [anon_sym_ATthrow] = ACTIONS(2826), + [anon_sym_ATselector] = ACTIONS(2826), + [anon_sym_ATavailable] = ACTIONS(2826), + [anon_sym___builtin_available] = ACTIONS(2824), + [anon_sym_va_arg] = ACTIONS(2824), + [anon_sym_ATencode] = ACTIONS(2826), + [anon_sym_ATsynchronized] = ACTIONS(2826), + [anon_sym_BOOL] = ACTIONS(2824), + [anon_sym_IMP] = ACTIONS(2824), + [anon_sym_SEL] = ACTIONS(2824), + [anon_sym_Class] = ACTIONS(2824), + [anon_sym_id] = ACTIONS(2824), + }, + [859] = { + [sym_identifier] = ACTIONS(2572), + [aux_sym_preproc_include_token1] = ACTIONS(2572), + [aux_sym_preproc_include_token2] = ACTIONS(2572), + [aux_sym_preproc_def_token1] = ACTIONS(2572), + [aux_sym_preproc_if_token1] = ACTIONS(2572), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2572), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2572), + [sym_preproc_directive] = ACTIONS(2572), + [anon_sym_LPAREN2] = ACTIONS(2574), + [anon_sym_BANG] = ACTIONS(2574), + [anon_sym_TILDE] = ACTIONS(2574), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_STAR] = ACTIONS(2574), + [anon_sym_CARET] = ACTIONS(2574), + [anon_sym_AMP] = ACTIONS(2574), + [anon_sym_SEMI] = ACTIONS(2574), + [anon_sym___extension__] = ACTIONS(2572), + [anon_sym_typedef] = ACTIONS(2572), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym___attribute__] = ACTIONS(2572), + [anon_sym___attribute] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym___declspec] = ACTIONS(2572), + [anon_sym___cdecl] = ACTIONS(2572), + [anon_sym___clrcall] = ACTIONS(2572), + [anon_sym___stdcall] = ACTIONS(2572), + [anon_sym___fastcall] = ACTIONS(2572), + [anon_sym___thiscall] = ACTIONS(2572), + [anon_sym___vectorcall] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2574), + [anon_sym_RBRACE] = ACTIONS(2574), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_ATautoreleasepool] = ACTIONS(2574), + [anon_sym_auto] = ACTIONS(2572), + [anon_sym_register] = ACTIONS(2572), + [anon_sym_inline] = ACTIONS(2572), + [anon_sym___inline] = ACTIONS(2572), + [anon_sym___inline__] = ACTIONS(2572), + [anon_sym___forceinline] = ACTIONS(2572), + [anon_sym_thread_local] = ACTIONS(2572), + [anon_sym___thread] = ACTIONS(2572), + [anon_sym_CG_EXTERN] = ACTIONS(2572), + [anon_sym_CG_INLINE] = ACTIONS(2572), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2572), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2572), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2572), + [anon_sym_IBOutlet] = ACTIONS(2572), + [anon_sym_IBInspectable] = ACTIONS(2572), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2572), + [anon_sym_NS_INLINE] = ACTIONS(2572), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2572), + [anon_sym_OBJC_EXPORT] = ACTIONS(2572), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2572), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_nullable] = ACTIONS(2572), + [anon_sym__Complex] = ACTIONS(2572), + [anon_sym__Nullable] = ACTIONS(2572), + [anon_sym__Nullable_result] = ACTIONS(2572), + [anon_sym__Null_unspecified] = ACTIONS(2572), + [anon_sym___autoreleasing] = ACTIONS(2572), + [anon_sym___block] = ACTIONS(2572), + [anon_sym___bridge] = ACTIONS(2572), + [anon_sym___bridge_retained] = ACTIONS(2572), + [anon_sym___bridge_transfer] = ACTIONS(2572), + [anon_sym___complex] = ACTIONS(2572), + [anon_sym___const] = ACTIONS(2572), + [anon_sym___imag] = ACTIONS(2572), + [anon_sym___kindof] = ACTIONS(2572), + [anon_sym___nonnull] = ACTIONS(2572), + [anon_sym___nullable] = ACTIONS(2572), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2572), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2572), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2572), + [anon_sym___real] = ACTIONS(2572), + [anon_sym___strong] = ACTIONS(2572), + [anon_sym___unsafe_unretained] = ACTIONS(2572), + [anon_sym___unused] = ACTIONS(2572), + [anon_sym___weak] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(2572), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_struct] = ACTIONS(2572), + [anon_sym_union] = ACTIONS(2572), + [anon_sym_if] = ACTIONS(2572), + [anon_sym_switch] = ACTIONS(2572), + [anon_sym_case] = ACTIONS(2572), + [anon_sym_default] = ACTIONS(2572), + [anon_sym_while] = ACTIONS(2572), + [anon_sym_do] = ACTIONS(2572), + [anon_sym_for] = ACTIONS(2572), + [anon_sym_in] = ACTIONS(2572), + [anon_sym_return] = ACTIONS(2572), + [anon_sym_break] = ACTIONS(2572), + [anon_sym_continue] = ACTIONS(2572), + [anon_sym_goto] = ACTIONS(2572), + [anon_sym_DASH_DASH] = ACTIONS(2574), + [anon_sym_PLUS_PLUS] = ACTIONS(2574), + [anon_sym_sizeof] = ACTIONS(2572), + [anon_sym___alignof__] = ACTIONS(2572), + [anon_sym___alignof] = ACTIONS(2572), + [anon_sym__alignof] = ACTIONS(2572), + [anon_sym_alignof] = ACTIONS(2572), + [anon_sym__Alignof] = ACTIONS(2572), + [anon_sym_offsetof] = ACTIONS(2572), + [anon_sym__Generic] = ACTIONS(2572), + [anon_sym_asm] = ACTIONS(2572), + [anon_sym___asm__] = ACTIONS(2572), + [anon_sym___asm] = ACTIONS(2572), + [sym_number_literal] = ACTIONS(2574), + [anon_sym_L_SQUOTE] = ACTIONS(2574), + [anon_sym_u_SQUOTE] = ACTIONS(2574), + [anon_sym_U_SQUOTE] = ACTIONS(2574), + [anon_sym_u8_SQUOTE] = ACTIONS(2574), + [anon_sym_SQUOTE] = ACTIONS(2574), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_DQUOTE] = ACTIONS(2574), + [anon_sym_L_DQUOTE] = ACTIONS(2574), + [anon_sym_u_DQUOTE] = ACTIONS(2574), + [anon_sym_U_DQUOTE] = ACTIONS(2574), + [anon_sym_u8_DQUOTE] = ACTIONS(2574), + [sym_true] = ACTIONS(2572), + [sym_false] = ACTIONS(2572), + [anon_sym_NULL] = ACTIONS(2572), + [anon_sym_nullptr] = ACTIONS(2572), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2572), + [anon_sym___typeof] = ACTIONS(2572), + [anon_sym_typeof] = ACTIONS(2572), + [anon_sym_ATimport] = ACTIONS(2574), + [aux_sym_preproc_undef_token1] = ACTIONS(2572), + [anon_sym_POUND] = ACTIONS(2572), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2572), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2572), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2572), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2572), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2572), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2572), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2572), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2572), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2572), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2572), + [anon_sym_NS_AVAILABLE] = ACTIONS(2572), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2572), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2572), + [anon_sym_API_AVAILABLE] = ACTIONS(2572), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2572), + [anon_sym_API_DEPRECATED] = ACTIONS(2572), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2572), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2572), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2572), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2572), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2572), + [anon_sym___deprecated_msg] = ACTIONS(2572), + [anon_sym___deprecated_enum_msg] = ACTIONS(2572), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2572), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2572), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2572), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2572), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2572), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2572), + [anon_sym_ATprotocol] = ACTIONS(2574), + [anon_sym_ATinterface] = ACTIONS(2574), + [anon_sym_ATimplementation] = ACTIONS(2574), + [anon_sym_ATcompatibility_alias] = ACTIONS(2574), + [anon_sym_ATtry] = ACTIONS(2574), + [anon_sym___try] = ACTIONS(2572), + [anon_sym_ATthrow] = ACTIONS(2574), + [anon_sym_ATselector] = ACTIONS(2574), + [anon_sym_ATavailable] = ACTIONS(2574), + [anon_sym___builtin_available] = ACTIONS(2572), + [anon_sym_va_arg] = ACTIONS(2572), + [anon_sym_ATencode] = ACTIONS(2574), + [anon_sym_ATsynchronized] = ACTIONS(2574), + [anon_sym_BOOL] = ACTIONS(2572), + [anon_sym_IMP] = ACTIONS(2572), + [anon_sym_SEL] = ACTIONS(2572), + [anon_sym_Class] = ACTIONS(2572), + [anon_sym_id] = ACTIONS(2572), + }, + [860] = { + [sym_identifier] = ACTIONS(2640), + [aux_sym_preproc_include_token1] = ACTIONS(2640), + [aux_sym_preproc_include_token2] = ACTIONS(2640), + [aux_sym_preproc_def_token1] = ACTIONS(2640), + [aux_sym_preproc_if_token1] = ACTIONS(2640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2640), + [sym_preproc_directive] = ACTIONS(2640), + [anon_sym_LPAREN2] = ACTIONS(2642), + [anon_sym_BANG] = ACTIONS(2642), + [anon_sym_TILDE] = ACTIONS(2642), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2642), + [anon_sym_CARET] = ACTIONS(2642), + [anon_sym_AMP] = ACTIONS(2642), + [anon_sym_SEMI] = ACTIONS(2642), + [anon_sym___extension__] = ACTIONS(2640), + [anon_sym_typedef] = ACTIONS(2640), + [anon_sym_extern] = ACTIONS(2640), + [anon_sym___attribute__] = ACTIONS(2640), + [anon_sym___attribute] = ACTIONS(2640), + [anon_sym_noreturn] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym___declspec] = ACTIONS(2640), + [anon_sym___cdecl] = ACTIONS(2640), + [anon_sym___clrcall] = ACTIONS(2640), + [anon_sym___stdcall] = ACTIONS(2640), + [anon_sym___fastcall] = ACTIONS(2640), + [anon_sym___thiscall] = ACTIONS(2640), + [anon_sym___vectorcall] = ACTIONS(2640), + [anon_sym_LBRACE] = ACTIONS(2642), + [anon_sym_RBRACE] = ACTIONS(2642), + [anon_sym_signed] = ACTIONS(2640), + [anon_sym_unsigned] = ACTIONS(2640), + [anon_sym_long] = ACTIONS(2640), + [anon_sym_short] = ACTIONS(2640), + [anon_sym_static] = ACTIONS(2640), + [anon_sym_ATautoreleasepool] = ACTIONS(2642), + [anon_sym_auto] = ACTIONS(2640), + [anon_sym_register] = ACTIONS(2640), + [anon_sym_inline] = ACTIONS(2640), + [anon_sym___inline] = ACTIONS(2640), + [anon_sym___inline__] = ACTIONS(2640), + [anon_sym___forceinline] = ACTIONS(2640), + [anon_sym_thread_local] = ACTIONS(2640), + [anon_sym___thread] = ACTIONS(2640), + [anon_sym_CG_EXTERN] = ACTIONS(2640), + [anon_sym_CG_INLINE] = ACTIONS(2640), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2640), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2640), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2640), + [anon_sym_IBOutlet] = ACTIONS(2640), + [anon_sym_IBInspectable] = ACTIONS(2640), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2640), + [anon_sym_NS_INLINE] = ACTIONS(2640), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2640), + [anon_sym_OBJC_EXPORT] = ACTIONS(2640), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2640), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2640), + [anon_sym_const] = ACTIONS(2640), + [anon_sym_constexpr] = ACTIONS(2640), + [anon_sym_volatile] = ACTIONS(2640), + [anon_sym_restrict] = ACTIONS(2640), + [anon_sym___restrict__] = ACTIONS(2640), + [anon_sym__Atomic] = ACTIONS(2640), + [anon_sym__Noreturn] = ACTIONS(2640), + [anon_sym__Nonnull] = ACTIONS(2640), + [anon_sym_nullable] = ACTIONS(2640), + [anon_sym__Complex] = ACTIONS(2640), + [anon_sym__Nullable] = ACTIONS(2640), + [anon_sym__Nullable_result] = ACTIONS(2640), + [anon_sym__Null_unspecified] = ACTIONS(2640), + [anon_sym___autoreleasing] = ACTIONS(2640), + [anon_sym___block] = ACTIONS(2640), + [anon_sym___bridge] = ACTIONS(2640), + [anon_sym___bridge_retained] = ACTIONS(2640), + [anon_sym___bridge_transfer] = ACTIONS(2640), + [anon_sym___complex] = ACTIONS(2640), + [anon_sym___const] = ACTIONS(2640), + [anon_sym___imag] = ACTIONS(2640), + [anon_sym___kindof] = ACTIONS(2640), + [anon_sym___nonnull] = ACTIONS(2640), + [anon_sym___nullable] = ACTIONS(2640), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2640), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2640), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2640), + [anon_sym___real] = ACTIONS(2640), + [anon_sym___strong] = ACTIONS(2640), + [anon_sym___unsafe_unretained] = ACTIONS(2640), + [anon_sym___unused] = ACTIONS(2640), + [anon_sym___weak] = ACTIONS(2640), + [anon_sym_alignas] = ACTIONS(2640), + [anon_sym__Alignas] = ACTIONS(2640), + [sym_primitive_type] = ACTIONS(2640), + [anon_sym_enum] = ACTIONS(2640), + [anon_sym_struct] = ACTIONS(2640), + [anon_sym_union] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_switch] = ACTIONS(2640), + [anon_sym_case] = ACTIONS(2640), + [anon_sym_default] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_in] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_break] = ACTIONS(2640), + [anon_sym_continue] = ACTIONS(2640), + [anon_sym_goto] = ACTIONS(2640), + [anon_sym_DASH_DASH] = ACTIONS(2642), + [anon_sym_PLUS_PLUS] = ACTIONS(2642), + [anon_sym_sizeof] = ACTIONS(2640), + [anon_sym___alignof__] = ACTIONS(2640), + [anon_sym___alignof] = ACTIONS(2640), + [anon_sym__alignof] = ACTIONS(2640), + [anon_sym_alignof] = ACTIONS(2640), + [anon_sym__Alignof] = ACTIONS(2640), + [anon_sym_offsetof] = ACTIONS(2640), + [anon_sym__Generic] = ACTIONS(2640), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [anon_sym___asm] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2642), + [anon_sym_u_SQUOTE] = ACTIONS(2642), + [anon_sym_U_SQUOTE] = ACTIONS(2642), + [anon_sym_u8_SQUOTE] = ACTIONS(2642), + [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_AT] = ACTIONS(2640), + [anon_sym_DQUOTE] = ACTIONS(2642), + [anon_sym_L_DQUOTE] = ACTIONS(2642), + [anon_sym_u_DQUOTE] = ACTIONS(2642), + [anon_sym_U_DQUOTE] = ACTIONS(2642), + [anon_sym_u8_DQUOTE] = ACTIONS(2642), + [sym_true] = ACTIONS(2640), + [sym_false] = ACTIONS(2640), + [anon_sym_NULL] = ACTIONS(2640), + [anon_sym_nullptr] = ACTIONS(2640), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2640), + [anon_sym___typeof] = ACTIONS(2640), + [anon_sym_typeof] = ACTIONS(2640), + [anon_sym_ATimport] = ACTIONS(2642), + [aux_sym_preproc_undef_token1] = ACTIONS(2640), + [anon_sym_POUND] = ACTIONS(2640), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2640), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2640), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2640), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2640), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2640), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2640), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2640), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2640), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2640), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2640), + [anon_sym_NS_AVAILABLE] = ACTIONS(2640), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2640), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2640), + [anon_sym_API_AVAILABLE] = ACTIONS(2640), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2640), + [anon_sym_API_DEPRECATED] = ACTIONS(2640), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2640), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2640), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2640), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2640), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2640), + [anon_sym___deprecated_msg] = ACTIONS(2640), + [anon_sym___deprecated_enum_msg] = ACTIONS(2640), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2640), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2640), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2640), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2640), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2640), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2640), + [anon_sym_ATprotocol] = ACTIONS(2642), + [anon_sym_ATinterface] = ACTIONS(2642), + [anon_sym_ATimplementation] = ACTIONS(2642), + [anon_sym_ATcompatibility_alias] = ACTIONS(2642), + [anon_sym_ATtry] = ACTIONS(2642), + [anon_sym___try] = ACTIONS(2640), + [anon_sym_ATthrow] = ACTIONS(2642), + [anon_sym_ATselector] = ACTIONS(2642), + [anon_sym_ATavailable] = ACTIONS(2642), + [anon_sym___builtin_available] = ACTIONS(2640), + [anon_sym_va_arg] = ACTIONS(2640), + [anon_sym_ATencode] = ACTIONS(2642), + [anon_sym_ATsynchronized] = ACTIONS(2642), + [anon_sym_BOOL] = ACTIONS(2640), + [anon_sym_IMP] = ACTIONS(2640), + [anon_sym_SEL] = ACTIONS(2640), + [anon_sym_Class] = ACTIONS(2640), + [anon_sym_id] = ACTIONS(2640), + }, + [861] = { + [sym_identifier] = ACTIONS(2832), + [aux_sym_preproc_include_token1] = ACTIONS(2832), + [aux_sym_preproc_include_token2] = ACTIONS(2832), + [aux_sym_preproc_def_token1] = ACTIONS(2832), + [aux_sym_preproc_if_token1] = ACTIONS(2832), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2832), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2832), + [sym_preproc_directive] = ACTIONS(2832), + [anon_sym_LPAREN2] = ACTIONS(2834), + [anon_sym_BANG] = ACTIONS(2834), + [anon_sym_TILDE] = ACTIONS(2834), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_PLUS] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2834), + [anon_sym_CARET] = ACTIONS(2834), + [anon_sym_AMP] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym___extension__] = ACTIONS(2832), + [anon_sym_typedef] = ACTIONS(2832), + [anon_sym_extern] = ACTIONS(2832), + [anon_sym___attribute__] = ACTIONS(2832), + [anon_sym___attribute] = ACTIONS(2832), + [anon_sym_noreturn] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2834), + [anon_sym___declspec] = ACTIONS(2832), + [anon_sym___cdecl] = ACTIONS(2832), + [anon_sym___clrcall] = ACTIONS(2832), + [anon_sym___stdcall] = ACTIONS(2832), + [anon_sym___fastcall] = ACTIONS(2832), + [anon_sym___thiscall] = ACTIONS(2832), + [anon_sym___vectorcall] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2834), + [anon_sym_RBRACE] = ACTIONS(2834), + [anon_sym_signed] = ACTIONS(2832), + [anon_sym_unsigned] = ACTIONS(2832), + [anon_sym_long] = ACTIONS(2832), + [anon_sym_short] = ACTIONS(2832), + [anon_sym_static] = ACTIONS(2832), + [anon_sym_ATautoreleasepool] = ACTIONS(2834), + [anon_sym_auto] = ACTIONS(2832), + [anon_sym_register] = ACTIONS(2832), + [anon_sym_inline] = ACTIONS(2832), + [anon_sym___inline] = ACTIONS(2832), + [anon_sym___inline__] = ACTIONS(2832), + [anon_sym___forceinline] = ACTIONS(2832), + [anon_sym_thread_local] = ACTIONS(2832), + [anon_sym___thread] = ACTIONS(2832), + [anon_sym_CG_EXTERN] = ACTIONS(2832), + [anon_sym_CG_INLINE] = ACTIONS(2832), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2832), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2832), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2832), + [anon_sym_IBOutlet] = ACTIONS(2832), + [anon_sym_IBInspectable] = ACTIONS(2832), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2832), + [anon_sym_NS_INLINE] = ACTIONS(2832), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2832), + [anon_sym_OBJC_EXPORT] = ACTIONS(2832), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2832), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2832), + [anon_sym_const] = ACTIONS(2832), + [anon_sym_constexpr] = ACTIONS(2832), + [anon_sym_volatile] = ACTIONS(2832), + [anon_sym_restrict] = ACTIONS(2832), + [anon_sym___restrict__] = ACTIONS(2832), + [anon_sym__Atomic] = ACTIONS(2832), + [anon_sym__Noreturn] = ACTIONS(2832), + [anon_sym__Nonnull] = ACTIONS(2832), + [anon_sym_nullable] = ACTIONS(2832), + [anon_sym__Complex] = ACTIONS(2832), + [anon_sym__Nullable] = ACTIONS(2832), + [anon_sym__Nullable_result] = ACTIONS(2832), + [anon_sym__Null_unspecified] = ACTIONS(2832), + [anon_sym___autoreleasing] = ACTIONS(2832), + [anon_sym___block] = ACTIONS(2832), + [anon_sym___bridge] = ACTIONS(2832), + [anon_sym___bridge_retained] = ACTIONS(2832), + [anon_sym___bridge_transfer] = ACTIONS(2832), + [anon_sym___complex] = ACTIONS(2832), + [anon_sym___const] = ACTIONS(2832), + [anon_sym___imag] = ACTIONS(2832), + [anon_sym___kindof] = ACTIONS(2832), + [anon_sym___nonnull] = ACTIONS(2832), + [anon_sym___nullable] = ACTIONS(2832), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2832), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2832), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2832), + [anon_sym___real] = ACTIONS(2832), + [anon_sym___strong] = ACTIONS(2832), + [anon_sym___unsafe_unretained] = ACTIONS(2832), + [anon_sym___unused] = ACTIONS(2832), + [anon_sym___weak] = ACTIONS(2832), + [anon_sym_alignas] = ACTIONS(2832), + [anon_sym__Alignas] = ACTIONS(2832), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_enum] = ACTIONS(2832), + [anon_sym_struct] = ACTIONS(2832), + [anon_sym_union] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_switch] = ACTIONS(2832), + [anon_sym_case] = ACTIONS(2832), + [anon_sym_default] = ACTIONS(2832), + [anon_sym_while] = ACTIONS(2832), + [anon_sym_do] = ACTIONS(2832), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_in] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_goto] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2834), + [anon_sym_PLUS_PLUS] = ACTIONS(2834), + [anon_sym_sizeof] = ACTIONS(2832), + [anon_sym___alignof__] = ACTIONS(2832), + [anon_sym___alignof] = ACTIONS(2832), + [anon_sym__alignof] = ACTIONS(2832), + [anon_sym_alignof] = ACTIONS(2832), + [anon_sym__Alignof] = ACTIONS(2832), + [anon_sym_offsetof] = ACTIONS(2832), + [anon_sym__Generic] = ACTIONS(2832), + [anon_sym_asm] = ACTIONS(2832), + [anon_sym___asm__] = ACTIONS(2832), + [anon_sym___asm] = ACTIONS(2832), + [sym_number_literal] = ACTIONS(2834), + [anon_sym_L_SQUOTE] = ACTIONS(2834), + [anon_sym_u_SQUOTE] = ACTIONS(2834), + [anon_sym_U_SQUOTE] = ACTIONS(2834), + [anon_sym_u8_SQUOTE] = ACTIONS(2834), + [anon_sym_SQUOTE] = ACTIONS(2834), + [anon_sym_AT] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2834), + [anon_sym_L_DQUOTE] = ACTIONS(2834), + [anon_sym_u_DQUOTE] = ACTIONS(2834), + [anon_sym_U_DQUOTE] = ACTIONS(2834), + [anon_sym_u8_DQUOTE] = ACTIONS(2834), + [sym_true] = ACTIONS(2832), + [sym_false] = ACTIONS(2832), + [anon_sym_NULL] = ACTIONS(2832), + [anon_sym_nullptr] = ACTIONS(2832), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2832), + [anon_sym___typeof] = ACTIONS(2832), + [anon_sym_typeof] = ACTIONS(2832), + [anon_sym_ATimport] = ACTIONS(2834), + [aux_sym_preproc_undef_token1] = ACTIONS(2832), + [anon_sym_POUND] = ACTIONS(2832), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2832), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2832), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2832), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2832), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2832), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2832), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2832), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2832), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2832), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2832), + [anon_sym_NS_AVAILABLE] = ACTIONS(2832), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2832), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2832), + [anon_sym_API_AVAILABLE] = ACTIONS(2832), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2832), + [anon_sym_API_DEPRECATED] = ACTIONS(2832), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2832), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2832), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2832), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2832), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2832), + [anon_sym___deprecated_msg] = ACTIONS(2832), + [anon_sym___deprecated_enum_msg] = ACTIONS(2832), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2832), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2832), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2832), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2832), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2832), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2832), + [anon_sym_ATprotocol] = ACTIONS(2834), + [anon_sym_ATinterface] = ACTIONS(2834), + [anon_sym_ATimplementation] = ACTIONS(2834), + [anon_sym_ATcompatibility_alias] = ACTIONS(2834), + [anon_sym_ATtry] = ACTIONS(2834), + [anon_sym___try] = ACTIONS(2832), + [anon_sym_ATthrow] = ACTIONS(2834), + [anon_sym_ATselector] = ACTIONS(2834), + [anon_sym_ATavailable] = ACTIONS(2834), + [anon_sym___builtin_available] = ACTIONS(2832), + [anon_sym_va_arg] = ACTIONS(2832), + [anon_sym_ATencode] = ACTIONS(2834), + [anon_sym_ATsynchronized] = ACTIONS(2834), + [anon_sym_BOOL] = ACTIONS(2832), + [anon_sym_IMP] = ACTIONS(2832), + [anon_sym_SEL] = ACTIONS(2832), + [anon_sym_Class] = ACTIONS(2832), + [anon_sym_id] = ACTIONS(2832), + }, + [862] = { + [sym_identifier] = ACTIONS(2644), + [aux_sym_preproc_include_token1] = ACTIONS(2644), + [aux_sym_preproc_include_token2] = ACTIONS(2644), + [aux_sym_preproc_def_token1] = ACTIONS(2644), + [aux_sym_preproc_if_token1] = ACTIONS(2644), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2644), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2644), + [sym_preproc_directive] = ACTIONS(2644), + [anon_sym_LPAREN2] = ACTIONS(2646), + [anon_sym_BANG] = ACTIONS(2646), + [anon_sym_TILDE] = ACTIONS(2646), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_PLUS] = ACTIONS(2644), + [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_CARET] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2646), + [anon_sym_SEMI] = ACTIONS(2646), + [anon_sym___extension__] = ACTIONS(2644), + [anon_sym_typedef] = ACTIONS(2644), + [anon_sym_extern] = ACTIONS(2644), + [anon_sym___attribute__] = ACTIONS(2644), + [anon_sym___attribute] = ACTIONS(2644), + [anon_sym_noreturn] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2646), + [anon_sym___declspec] = ACTIONS(2644), + [anon_sym___cdecl] = ACTIONS(2644), + [anon_sym___clrcall] = ACTIONS(2644), + [anon_sym___stdcall] = ACTIONS(2644), + [anon_sym___fastcall] = ACTIONS(2644), + [anon_sym___thiscall] = ACTIONS(2644), + [anon_sym___vectorcall] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2646), + [anon_sym_RBRACE] = ACTIONS(2646), + [anon_sym_signed] = ACTIONS(2644), + [anon_sym_unsigned] = ACTIONS(2644), + [anon_sym_long] = ACTIONS(2644), + [anon_sym_short] = ACTIONS(2644), + [anon_sym_static] = ACTIONS(2644), + [anon_sym_ATautoreleasepool] = ACTIONS(2646), + [anon_sym_auto] = ACTIONS(2644), + [anon_sym_register] = ACTIONS(2644), + [anon_sym_inline] = ACTIONS(2644), + [anon_sym___inline] = ACTIONS(2644), + [anon_sym___inline__] = ACTIONS(2644), + [anon_sym___forceinline] = ACTIONS(2644), + [anon_sym_thread_local] = ACTIONS(2644), + [anon_sym___thread] = ACTIONS(2644), + [anon_sym_CG_EXTERN] = ACTIONS(2644), + [anon_sym_CG_INLINE] = ACTIONS(2644), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2644), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2644), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2644), + [anon_sym_IBOutlet] = ACTIONS(2644), + [anon_sym_IBInspectable] = ACTIONS(2644), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2644), + [anon_sym_NS_INLINE] = ACTIONS(2644), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2644), + [anon_sym_OBJC_EXPORT] = ACTIONS(2644), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2644), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2644), + [anon_sym_const] = ACTIONS(2644), + [anon_sym_constexpr] = ACTIONS(2644), + [anon_sym_volatile] = ACTIONS(2644), + [anon_sym_restrict] = ACTIONS(2644), + [anon_sym___restrict__] = ACTIONS(2644), + [anon_sym__Atomic] = ACTIONS(2644), + [anon_sym__Noreturn] = ACTIONS(2644), + [anon_sym__Nonnull] = ACTIONS(2644), + [anon_sym_nullable] = ACTIONS(2644), + [anon_sym__Complex] = ACTIONS(2644), + [anon_sym__Nullable] = ACTIONS(2644), + [anon_sym__Nullable_result] = ACTIONS(2644), + [anon_sym__Null_unspecified] = ACTIONS(2644), + [anon_sym___autoreleasing] = ACTIONS(2644), + [anon_sym___block] = ACTIONS(2644), + [anon_sym___bridge] = ACTIONS(2644), + [anon_sym___bridge_retained] = ACTIONS(2644), + [anon_sym___bridge_transfer] = ACTIONS(2644), + [anon_sym___complex] = ACTIONS(2644), + [anon_sym___const] = ACTIONS(2644), + [anon_sym___imag] = ACTIONS(2644), + [anon_sym___kindof] = ACTIONS(2644), + [anon_sym___nonnull] = ACTIONS(2644), + [anon_sym___nullable] = ACTIONS(2644), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2644), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2644), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2644), + [anon_sym___real] = ACTIONS(2644), + [anon_sym___strong] = ACTIONS(2644), + [anon_sym___unsafe_unretained] = ACTIONS(2644), + [anon_sym___unused] = ACTIONS(2644), + [anon_sym___weak] = ACTIONS(2644), + [anon_sym_alignas] = ACTIONS(2644), + [anon_sym__Alignas] = ACTIONS(2644), + [sym_primitive_type] = ACTIONS(2644), + [anon_sym_enum] = ACTIONS(2644), + [anon_sym_struct] = ACTIONS(2644), + [anon_sym_union] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_switch] = ACTIONS(2644), + [anon_sym_case] = ACTIONS(2644), + [anon_sym_default] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_do] = ACTIONS(2644), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_in] = ACTIONS(2644), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_break] = ACTIONS(2644), + [anon_sym_continue] = ACTIONS(2644), + [anon_sym_goto] = ACTIONS(2644), + [anon_sym_DASH_DASH] = ACTIONS(2646), + [anon_sym_PLUS_PLUS] = ACTIONS(2646), + [anon_sym_sizeof] = ACTIONS(2644), + [anon_sym___alignof__] = ACTIONS(2644), + [anon_sym___alignof] = ACTIONS(2644), + [anon_sym__alignof] = ACTIONS(2644), + [anon_sym_alignof] = ACTIONS(2644), + [anon_sym__Alignof] = ACTIONS(2644), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2644), + [anon_sym_asm] = ACTIONS(2644), + [anon_sym___asm__] = ACTIONS(2644), + [anon_sym___asm] = ACTIONS(2644), + [sym_number_literal] = ACTIONS(2646), + [anon_sym_L_SQUOTE] = ACTIONS(2646), + [anon_sym_u_SQUOTE] = ACTIONS(2646), + [anon_sym_U_SQUOTE] = ACTIONS(2646), + [anon_sym_u8_SQUOTE] = ACTIONS(2646), + [anon_sym_SQUOTE] = ACTIONS(2646), + [anon_sym_AT] = ACTIONS(2644), + [anon_sym_DQUOTE] = ACTIONS(2646), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2644), + [sym_false] = ACTIONS(2644), + [anon_sym_NULL] = ACTIONS(2644), + [anon_sym_nullptr] = ACTIONS(2644), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2644), + [anon_sym___typeof] = ACTIONS(2644), + [anon_sym_typeof] = ACTIONS(2644), + [anon_sym_ATimport] = ACTIONS(2646), + [aux_sym_preproc_undef_token1] = ACTIONS(2644), + [anon_sym_POUND] = ACTIONS(2644), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2644), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2644), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2644), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2644), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2644), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2644), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2644), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2644), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2644), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2644), + [anon_sym_NS_AVAILABLE] = ACTIONS(2644), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2644), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2644), + [anon_sym_API_AVAILABLE] = ACTIONS(2644), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2644), + [anon_sym_API_DEPRECATED] = ACTIONS(2644), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2644), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2644), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2644), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2644), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2644), + [anon_sym___deprecated_msg] = ACTIONS(2644), + [anon_sym___deprecated_enum_msg] = ACTIONS(2644), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2644), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2644), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2644), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2644), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2644), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2644), + [anon_sym_ATprotocol] = ACTIONS(2646), + [anon_sym_ATinterface] = ACTIONS(2646), + [anon_sym_ATimplementation] = ACTIONS(2646), + [anon_sym_ATcompatibility_alias] = ACTIONS(2646), + [anon_sym_ATtry] = ACTIONS(2646), + [anon_sym___try] = ACTIONS(2644), + [anon_sym_ATthrow] = ACTIONS(2646), + [anon_sym_ATselector] = ACTIONS(2646), + [anon_sym_ATavailable] = ACTIONS(2646), + [anon_sym___builtin_available] = ACTIONS(2644), + [anon_sym_va_arg] = ACTIONS(2644), + [anon_sym_ATencode] = ACTIONS(2646), + [anon_sym_ATsynchronized] = ACTIONS(2646), + [anon_sym_BOOL] = ACTIONS(2644), + [anon_sym_IMP] = ACTIONS(2644), + [anon_sym_SEL] = ACTIONS(2644), + [anon_sym_Class] = ACTIONS(2644), + [anon_sym_id] = ACTIONS(2644), + }, + [863] = { + [sym_identifier] = ACTIONS(2648), + [aux_sym_preproc_include_token1] = ACTIONS(2648), + [aux_sym_preproc_include_token2] = ACTIONS(2648), + [aux_sym_preproc_def_token1] = ACTIONS(2648), + [aux_sym_preproc_if_token1] = ACTIONS(2648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2648), + [sym_preproc_directive] = ACTIONS(2648), + [anon_sym_LPAREN2] = ACTIONS(2650), + [anon_sym_BANG] = ACTIONS(2650), + [anon_sym_TILDE] = ACTIONS(2650), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_PLUS] = ACTIONS(2648), + [anon_sym_STAR] = ACTIONS(2650), + [anon_sym_CARET] = ACTIONS(2650), + [anon_sym_AMP] = ACTIONS(2650), + [anon_sym_SEMI] = ACTIONS(2650), + [anon_sym___extension__] = ACTIONS(2648), + [anon_sym_typedef] = ACTIONS(2648), + [anon_sym_extern] = ACTIONS(2648), + [anon_sym___attribute__] = ACTIONS(2648), + [anon_sym___attribute] = ACTIONS(2648), + [anon_sym_noreturn] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(2650), + [anon_sym___declspec] = ACTIONS(2648), + [anon_sym___cdecl] = ACTIONS(2648), + [anon_sym___clrcall] = ACTIONS(2648), + [anon_sym___stdcall] = ACTIONS(2648), + [anon_sym___fastcall] = ACTIONS(2648), + [anon_sym___thiscall] = ACTIONS(2648), + [anon_sym___vectorcall] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2650), + [anon_sym_RBRACE] = ACTIONS(2650), + [anon_sym_signed] = ACTIONS(2648), + [anon_sym_unsigned] = ACTIONS(2648), + [anon_sym_long] = ACTIONS(2648), + [anon_sym_short] = ACTIONS(2648), + [anon_sym_static] = ACTIONS(2648), + [anon_sym_ATautoreleasepool] = ACTIONS(2650), + [anon_sym_auto] = ACTIONS(2648), + [anon_sym_register] = ACTIONS(2648), + [anon_sym_inline] = ACTIONS(2648), + [anon_sym___inline] = ACTIONS(2648), + [anon_sym___inline__] = ACTIONS(2648), + [anon_sym___forceinline] = ACTIONS(2648), + [anon_sym_thread_local] = ACTIONS(2648), + [anon_sym___thread] = ACTIONS(2648), + [anon_sym_CG_EXTERN] = ACTIONS(2648), + [anon_sym_CG_INLINE] = ACTIONS(2648), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2648), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2648), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2648), + [anon_sym_IBOutlet] = ACTIONS(2648), + [anon_sym_IBInspectable] = ACTIONS(2648), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2648), + [anon_sym_NS_INLINE] = ACTIONS(2648), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2648), + [anon_sym_OBJC_EXPORT] = ACTIONS(2648), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2648), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2648), + [anon_sym_const] = ACTIONS(2648), + [anon_sym_constexpr] = ACTIONS(2648), + [anon_sym_volatile] = ACTIONS(2648), + [anon_sym_restrict] = ACTIONS(2648), + [anon_sym___restrict__] = ACTIONS(2648), + [anon_sym__Atomic] = ACTIONS(2648), + [anon_sym__Noreturn] = ACTIONS(2648), + [anon_sym__Nonnull] = ACTIONS(2648), + [anon_sym_nullable] = ACTIONS(2648), + [anon_sym__Complex] = ACTIONS(2648), + [anon_sym__Nullable] = ACTIONS(2648), + [anon_sym__Nullable_result] = ACTIONS(2648), + [anon_sym__Null_unspecified] = ACTIONS(2648), + [anon_sym___autoreleasing] = ACTIONS(2648), + [anon_sym___block] = ACTIONS(2648), + [anon_sym___bridge] = ACTIONS(2648), + [anon_sym___bridge_retained] = ACTIONS(2648), + [anon_sym___bridge_transfer] = ACTIONS(2648), + [anon_sym___complex] = ACTIONS(2648), + [anon_sym___const] = ACTIONS(2648), + [anon_sym___imag] = ACTIONS(2648), + [anon_sym___kindof] = ACTIONS(2648), + [anon_sym___nonnull] = ACTIONS(2648), + [anon_sym___nullable] = ACTIONS(2648), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2648), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2648), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2648), + [anon_sym___real] = ACTIONS(2648), + [anon_sym___strong] = ACTIONS(2648), + [anon_sym___unsafe_unretained] = ACTIONS(2648), + [anon_sym___unused] = ACTIONS(2648), + [anon_sym___weak] = ACTIONS(2648), + [anon_sym_alignas] = ACTIONS(2648), + [anon_sym__Alignas] = ACTIONS(2648), + [sym_primitive_type] = ACTIONS(2648), + [anon_sym_enum] = ACTIONS(2648), + [anon_sym_struct] = ACTIONS(2648), + [anon_sym_union] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2648), + [anon_sym_switch] = ACTIONS(2648), + [anon_sym_case] = ACTIONS(2648), + [anon_sym_default] = ACTIONS(2648), + [anon_sym_while] = ACTIONS(2648), + [anon_sym_do] = ACTIONS(2648), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_in] = ACTIONS(2648), + [anon_sym_return] = ACTIONS(2648), + [anon_sym_break] = ACTIONS(2648), + [anon_sym_continue] = ACTIONS(2648), + [anon_sym_goto] = ACTIONS(2648), + [anon_sym_DASH_DASH] = ACTIONS(2650), + [anon_sym_PLUS_PLUS] = ACTIONS(2650), + [anon_sym_sizeof] = ACTIONS(2648), + [anon_sym___alignof__] = ACTIONS(2648), + [anon_sym___alignof] = ACTIONS(2648), + [anon_sym__alignof] = ACTIONS(2648), + [anon_sym_alignof] = ACTIONS(2648), + [anon_sym__Alignof] = ACTIONS(2648), + [anon_sym_offsetof] = ACTIONS(2648), + [anon_sym__Generic] = ACTIONS(2648), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [anon_sym___asm] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2650), + [anon_sym_u_SQUOTE] = ACTIONS(2650), + [anon_sym_U_SQUOTE] = ACTIONS(2650), + [anon_sym_u8_SQUOTE] = ACTIONS(2650), + [anon_sym_SQUOTE] = ACTIONS(2650), + [anon_sym_AT] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(2650), + [anon_sym_L_DQUOTE] = ACTIONS(2650), + [anon_sym_u_DQUOTE] = ACTIONS(2650), + [anon_sym_U_DQUOTE] = ACTIONS(2650), + [anon_sym_u8_DQUOTE] = ACTIONS(2650), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2648), + [anon_sym_nullptr] = ACTIONS(2648), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2648), + [anon_sym___typeof] = ACTIONS(2648), + [anon_sym_typeof] = ACTIONS(2648), + [anon_sym_ATimport] = ACTIONS(2650), + [aux_sym_preproc_undef_token1] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(2648), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2648), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2648), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2648), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2648), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2648), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2648), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2648), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2648), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2648), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2648), + [anon_sym_NS_AVAILABLE] = ACTIONS(2648), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2648), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2648), + [anon_sym_API_AVAILABLE] = ACTIONS(2648), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2648), + [anon_sym_API_DEPRECATED] = ACTIONS(2648), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2648), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2648), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2648), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2648), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2648), + [anon_sym___deprecated_msg] = ACTIONS(2648), + [anon_sym___deprecated_enum_msg] = ACTIONS(2648), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2648), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2648), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2648), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2648), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2648), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2648), + [anon_sym_ATprotocol] = ACTIONS(2650), + [anon_sym_ATinterface] = ACTIONS(2650), + [anon_sym_ATimplementation] = ACTIONS(2650), + [anon_sym_ATcompatibility_alias] = ACTIONS(2650), + [anon_sym_ATtry] = ACTIONS(2650), + [anon_sym___try] = ACTIONS(2648), + [anon_sym_ATthrow] = ACTIONS(2650), + [anon_sym_ATselector] = ACTIONS(2650), + [anon_sym_ATavailable] = ACTIONS(2650), + [anon_sym___builtin_available] = ACTIONS(2648), + [anon_sym_va_arg] = ACTIONS(2648), + [anon_sym_ATencode] = ACTIONS(2650), + [anon_sym_ATsynchronized] = ACTIONS(2650), + [anon_sym_BOOL] = ACTIONS(2648), + [anon_sym_IMP] = ACTIONS(2648), + [anon_sym_SEL] = ACTIONS(2648), + [anon_sym_Class] = ACTIONS(2648), + [anon_sym_id] = ACTIONS(2648), + }, + [864] = { + [sym_identifier] = ACTIONS(2828), + [aux_sym_preproc_include_token1] = ACTIONS(2828), + [aux_sym_preproc_include_token2] = ACTIONS(2828), + [aux_sym_preproc_def_token1] = ACTIONS(2828), + [aux_sym_preproc_if_token1] = ACTIONS(2828), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2828), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2828), + [sym_preproc_directive] = ACTIONS(2828), + [anon_sym_LPAREN2] = ACTIONS(2830), + [anon_sym_BANG] = ACTIONS(2830), + [anon_sym_TILDE] = ACTIONS(2830), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_PLUS] = ACTIONS(2828), + [anon_sym_STAR] = ACTIONS(2830), + [anon_sym_CARET] = ACTIONS(2830), + [anon_sym_AMP] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym___extension__] = ACTIONS(2828), + [anon_sym_typedef] = ACTIONS(2828), + [anon_sym_extern] = ACTIONS(2828), + [anon_sym___attribute__] = ACTIONS(2828), + [anon_sym___attribute] = ACTIONS(2828), + [anon_sym_noreturn] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym___declspec] = ACTIONS(2828), + [anon_sym___cdecl] = ACTIONS(2828), + [anon_sym___clrcall] = ACTIONS(2828), + [anon_sym___stdcall] = ACTIONS(2828), + [anon_sym___fastcall] = ACTIONS(2828), + [anon_sym___thiscall] = ACTIONS(2828), + [anon_sym___vectorcall] = ACTIONS(2828), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_RBRACE] = ACTIONS(2830), + [anon_sym_signed] = ACTIONS(2828), + [anon_sym_unsigned] = ACTIONS(2828), + [anon_sym_long] = ACTIONS(2828), + [anon_sym_short] = ACTIONS(2828), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_ATautoreleasepool] = ACTIONS(2830), + [anon_sym_auto] = ACTIONS(2828), + [anon_sym_register] = ACTIONS(2828), + [anon_sym_inline] = ACTIONS(2828), + [anon_sym___inline] = ACTIONS(2828), + [anon_sym___inline__] = ACTIONS(2828), + [anon_sym___forceinline] = ACTIONS(2828), + [anon_sym_thread_local] = ACTIONS(2828), + [anon_sym___thread] = ACTIONS(2828), + [anon_sym_CG_EXTERN] = ACTIONS(2828), + [anon_sym_CG_INLINE] = ACTIONS(2828), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2828), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2828), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2828), + [anon_sym_IBOutlet] = ACTIONS(2828), + [anon_sym_IBInspectable] = ACTIONS(2828), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2828), + [anon_sym_NS_INLINE] = ACTIONS(2828), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2828), + [anon_sym_OBJC_EXPORT] = ACTIONS(2828), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2828), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2828), + [anon_sym_const] = ACTIONS(2828), + [anon_sym_constexpr] = ACTIONS(2828), + [anon_sym_volatile] = ACTIONS(2828), + [anon_sym_restrict] = ACTIONS(2828), + [anon_sym___restrict__] = ACTIONS(2828), + [anon_sym__Atomic] = ACTIONS(2828), + [anon_sym__Noreturn] = ACTIONS(2828), + [anon_sym__Nonnull] = ACTIONS(2828), + [anon_sym_nullable] = ACTIONS(2828), + [anon_sym__Complex] = ACTIONS(2828), + [anon_sym__Nullable] = ACTIONS(2828), + [anon_sym__Nullable_result] = ACTIONS(2828), + [anon_sym__Null_unspecified] = ACTIONS(2828), + [anon_sym___autoreleasing] = ACTIONS(2828), + [anon_sym___block] = ACTIONS(2828), + [anon_sym___bridge] = ACTIONS(2828), + [anon_sym___bridge_retained] = ACTIONS(2828), + [anon_sym___bridge_transfer] = ACTIONS(2828), + [anon_sym___complex] = ACTIONS(2828), + [anon_sym___const] = ACTIONS(2828), + [anon_sym___imag] = ACTIONS(2828), + [anon_sym___kindof] = ACTIONS(2828), + [anon_sym___nonnull] = ACTIONS(2828), + [anon_sym___nullable] = ACTIONS(2828), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2828), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2828), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2828), + [anon_sym___real] = ACTIONS(2828), + [anon_sym___strong] = ACTIONS(2828), + [anon_sym___unsafe_unretained] = ACTIONS(2828), + [anon_sym___unused] = ACTIONS(2828), + [anon_sym___weak] = ACTIONS(2828), + [anon_sym_alignas] = ACTIONS(2828), + [anon_sym__Alignas] = ACTIONS(2828), + [sym_primitive_type] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [anon_sym_struct] = ACTIONS(2828), + [anon_sym_union] = ACTIONS(2828), + [anon_sym_if] = ACTIONS(2828), + [anon_sym_switch] = ACTIONS(2828), + [anon_sym_case] = ACTIONS(2828), + [anon_sym_default] = ACTIONS(2828), + [anon_sym_while] = ACTIONS(2828), + [anon_sym_do] = ACTIONS(2828), + [anon_sym_for] = ACTIONS(2828), + [anon_sym_in] = ACTIONS(2828), + [anon_sym_return] = ACTIONS(2828), + [anon_sym_break] = ACTIONS(2828), + [anon_sym_continue] = ACTIONS(2828), + [anon_sym_goto] = ACTIONS(2828), + [anon_sym_DASH_DASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2830), + [anon_sym_sizeof] = ACTIONS(2828), + [anon_sym___alignof__] = ACTIONS(2828), + [anon_sym___alignof] = ACTIONS(2828), + [anon_sym__alignof] = ACTIONS(2828), + [anon_sym_alignof] = ACTIONS(2828), + [anon_sym__Alignof] = ACTIONS(2828), + [anon_sym_offsetof] = ACTIONS(2828), + [anon_sym__Generic] = ACTIONS(2828), + [anon_sym_asm] = ACTIONS(2828), + [anon_sym___asm__] = ACTIONS(2828), + [anon_sym___asm] = ACTIONS(2828), + [sym_number_literal] = ACTIONS(2830), + [anon_sym_L_SQUOTE] = ACTIONS(2830), + [anon_sym_u_SQUOTE] = ACTIONS(2830), + [anon_sym_U_SQUOTE] = ACTIONS(2830), + [anon_sym_u8_SQUOTE] = ACTIONS(2830), + [anon_sym_SQUOTE] = ACTIONS(2830), + [anon_sym_AT] = ACTIONS(2828), + [anon_sym_DQUOTE] = ACTIONS(2830), + [anon_sym_L_DQUOTE] = ACTIONS(2830), + [anon_sym_u_DQUOTE] = ACTIONS(2830), + [anon_sym_U_DQUOTE] = ACTIONS(2830), + [anon_sym_u8_DQUOTE] = ACTIONS(2830), + [sym_true] = ACTIONS(2828), + [sym_false] = ACTIONS(2828), + [anon_sym_NULL] = ACTIONS(2828), + [anon_sym_nullptr] = ACTIONS(2828), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2828), + [anon_sym___typeof] = ACTIONS(2828), + [anon_sym_typeof] = ACTIONS(2828), + [anon_sym_ATimport] = ACTIONS(2830), + [aux_sym_preproc_undef_token1] = ACTIONS(2828), + [anon_sym_POUND] = ACTIONS(2828), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2828), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2828), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2828), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2828), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2828), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2828), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2828), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2828), + [anon_sym_NS_AVAILABLE] = ACTIONS(2828), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2828), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_API_AVAILABLE] = ACTIONS(2828), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_API_DEPRECATED] = ACTIONS(2828), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2828), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2828), + [anon_sym___deprecated_msg] = ACTIONS(2828), + [anon_sym___deprecated_enum_msg] = ACTIONS(2828), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2828), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2828), + [anon_sym_ATprotocol] = ACTIONS(2830), + [anon_sym_ATinterface] = ACTIONS(2830), + [anon_sym_ATimplementation] = ACTIONS(2830), + [anon_sym_ATcompatibility_alias] = ACTIONS(2830), + [anon_sym_ATtry] = ACTIONS(2830), + [anon_sym___try] = ACTIONS(2828), + [anon_sym_ATthrow] = ACTIONS(2830), + [anon_sym_ATselector] = ACTIONS(2830), + [anon_sym_ATavailable] = ACTIONS(2830), + [anon_sym___builtin_available] = ACTIONS(2828), + [anon_sym_va_arg] = ACTIONS(2828), + [anon_sym_ATencode] = ACTIONS(2830), + [anon_sym_ATsynchronized] = ACTIONS(2830), + [anon_sym_BOOL] = ACTIONS(2828), + [anon_sym_IMP] = ACTIONS(2828), + [anon_sym_SEL] = ACTIONS(2828), + [anon_sym_Class] = ACTIONS(2828), + [anon_sym_id] = ACTIONS(2828), + }, + [865] = { + [sym_identifier] = ACTIONS(2872), + [aux_sym_preproc_include_token1] = ACTIONS(2872), + [aux_sym_preproc_include_token2] = ACTIONS(2872), + [aux_sym_preproc_def_token1] = ACTIONS(2872), + [aux_sym_preproc_if_token1] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2872), + [sym_preproc_directive] = ACTIONS(2872), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_CARET] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2874), + [anon_sym___extension__] = ACTIONS(2872), + [anon_sym_typedef] = ACTIONS(2872), + [anon_sym_extern] = ACTIONS(2872), + [anon_sym___attribute__] = ACTIONS(2872), + [anon_sym___attribute] = ACTIONS(2872), + [anon_sym_noreturn] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2874), + [anon_sym___declspec] = ACTIONS(2872), + [anon_sym___cdecl] = ACTIONS(2872), + [anon_sym___clrcall] = ACTIONS(2872), + [anon_sym___stdcall] = ACTIONS(2872), + [anon_sym___fastcall] = ACTIONS(2872), + [anon_sym___thiscall] = ACTIONS(2872), + [anon_sym___vectorcall] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_RBRACE] = ACTIONS(2874), + [anon_sym_signed] = ACTIONS(2872), + [anon_sym_unsigned] = ACTIONS(2872), + [anon_sym_long] = ACTIONS(2872), + [anon_sym_short] = ACTIONS(2872), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_ATautoreleasepool] = ACTIONS(2874), + [anon_sym_auto] = ACTIONS(2872), + [anon_sym_register] = ACTIONS(2872), + [anon_sym_inline] = ACTIONS(2872), + [anon_sym___inline] = ACTIONS(2872), + [anon_sym___inline__] = ACTIONS(2872), + [anon_sym___forceinline] = ACTIONS(2872), + [anon_sym_thread_local] = ACTIONS(2872), + [anon_sym___thread] = ACTIONS(2872), + [anon_sym_CG_EXTERN] = ACTIONS(2872), + [anon_sym_CG_INLINE] = ACTIONS(2872), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2872), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2872), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2872), + [anon_sym_IBOutlet] = ACTIONS(2872), + [anon_sym_IBInspectable] = ACTIONS(2872), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2872), + [anon_sym_NS_INLINE] = ACTIONS(2872), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2872), + [anon_sym_OBJC_EXPORT] = ACTIONS(2872), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2872), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2872), + [anon_sym_const] = ACTIONS(2872), + [anon_sym_constexpr] = ACTIONS(2872), + [anon_sym_volatile] = ACTIONS(2872), + [anon_sym_restrict] = ACTIONS(2872), + [anon_sym___restrict__] = ACTIONS(2872), + [anon_sym__Atomic] = ACTIONS(2872), + [anon_sym__Noreturn] = ACTIONS(2872), + [anon_sym__Nonnull] = ACTIONS(2872), + [anon_sym_nullable] = ACTIONS(2872), + [anon_sym__Complex] = ACTIONS(2872), + [anon_sym__Nullable] = ACTIONS(2872), + [anon_sym__Nullable_result] = ACTIONS(2872), + [anon_sym__Null_unspecified] = ACTIONS(2872), + [anon_sym___autoreleasing] = ACTIONS(2872), + [anon_sym___block] = ACTIONS(2872), + [anon_sym___bridge] = ACTIONS(2872), + [anon_sym___bridge_retained] = ACTIONS(2872), + [anon_sym___bridge_transfer] = ACTIONS(2872), + [anon_sym___complex] = ACTIONS(2872), + [anon_sym___const] = ACTIONS(2872), + [anon_sym___imag] = ACTIONS(2872), + [anon_sym___kindof] = ACTIONS(2872), + [anon_sym___nonnull] = ACTIONS(2872), + [anon_sym___nullable] = ACTIONS(2872), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2872), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2872), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2872), + [anon_sym___real] = ACTIONS(2872), + [anon_sym___strong] = ACTIONS(2872), + [anon_sym___unsafe_unretained] = ACTIONS(2872), + [anon_sym___unused] = ACTIONS(2872), + [anon_sym___weak] = ACTIONS(2872), + [anon_sym_alignas] = ACTIONS(2872), + [anon_sym__Alignas] = ACTIONS(2872), + [sym_primitive_type] = ACTIONS(2872), + [anon_sym_enum] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2872), + [anon_sym_union] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_switch] = ACTIONS(2872), + [anon_sym_case] = ACTIONS(2872), + [anon_sym_default] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_in] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_break] = ACTIONS(2872), + [anon_sym_continue] = ACTIONS(2872), + [anon_sym_goto] = ACTIONS(2872), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_sizeof] = ACTIONS(2872), + [anon_sym___alignof__] = ACTIONS(2872), + [anon_sym___alignof] = ACTIONS(2872), + [anon_sym__alignof] = ACTIONS(2872), + [anon_sym_alignof] = ACTIONS(2872), + [anon_sym__Alignof] = ACTIONS(2872), + [anon_sym_offsetof] = ACTIONS(2872), + [anon_sym__Generic] = ACTIONS(2872), + [anon_sym_asm] = ACTIONS(2872), + [anon_sym___asm__] = ACTIONS(2872), + [anon_sym___asm] = ACTIONS(2872), + [sym_number_literal] = ACTIONS(2874), + [anon_sym_L_SQUOTE] = ACTIONS(2874), + [anon_sym_u_SQUOTE] = ACTIONS(2874), + [anon_sym_U_SQUOTE] = ACTIONS(2874), + [anon_sym_u8_SQUOTE] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_AT] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(2874), + [anon_sym_L_DQUOTE] = ACTIONS(2874), + [anon_sym_u_DQUOTE] = ACTIONS(2874), + [anon_sym_U_DQUOTE] = ACTIONS(2874), + [anon_sym_u8_DQUOTE] = ACTIONS(2874), + [sym_true] = ACTIONS(2872), + [sym_false] = ACTIONS(2872), + [anon_sym_NULL] = ACTIONS(2872), + [anon_sym_nullptr] = ACTIONS(2872), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2872), + [anon_sym___typeof] = ACTIONS(2872), + [anon_sym_typeof] = ACTIONS(2872), + [anon_sym_ATimport] = ACTIONS(2874), + [aux_sym_preproc_undef_token1] = ACTIONS(2872), + [anon_sym_POUND] = ACTIONS(2872), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2872), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2872), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2872), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2872), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2872), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2872), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2872), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2872), + [anon_sym_NS_AVAILABLE] = ACTIONS(2872), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2872), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_API_AVAILABLE] = ACTIONS(2872), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_API_DEPRECATED] = ACTIONS(2872), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2872), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2872), + [anon_sym___deprecated_msg] = ACTIONS(2872), + [anon_sym___deprecated_enum_msg] = ACTIONS(2872), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2872), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2872), + [anon_sym_ATprotocol] = ACTIONS(2874), + [anon_sym_ATinterface] = ACTIONS(2874), + [anon_sym_ATimplementation] = ACTIONS(2874), + [anon_sym_ATcompatibility_alias] = ACTIONS(2874), + [anon_sym_ATtry] = ACTIONS(2874), + [anon_sym___try] = ACTIONS(2872), + [anon_sym_ATthrow] = ACTIONS(2874), + [anon_sym_ATselector] = ACTIONS(2874), + [anon_sym_ATavailable] = ACTIONS(2874), + [anon_sym___builtin_available] = ACTIONS(2872), + [anon_sym_va_arg] = ACTIONS(2872), + [anon_sym_ATencode] = ACTIONS(2874), + [anon_sym_ATsynchronized] = ACTIONS(2874), + [anon_sym_BOOL] = ACTIONS(2872), + [anon_sym_IMP] = ACTIONS(2872), + [anon_sym_SEL] = ACTIONS(2872), + [anon_sym_Class] = ACTIONS(2872), + [anon_sym_id] = ACTIONS(2872), + }, + [866] = { + [sym_identifier] = ACTIONS(2656), + [aux_sym_preproc_include_token1] = ACTIONS(2656), + [aux_sym_preproc_include_token2] = ACTIONS(2656), + [aux_sym_preproc_def_token1] = ACTIONS(2656), + [aux_sym_preproc_if_token1] = ACTIONS(2656), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2656), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2656), + [sym_preproc_directive] = ACTIONS(2656), + [anon_sym_LPAREN2] = ACTIONS(2658), + [anon_sym_BANG] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2656), + [anon_sym_PLUS] = ACTIONS(2656), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_CARET] = ACTIONS(2658), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym___extension__] = ACTIONS(2656), + [anon_sym_typedef] = ACTIONS(2656), + [anon_sym_extern] = ACTIONS(2656), + [anon_sym___attribute__] = ACTIONS(2656), + [anon_sym___attribute] = ACTIONS(2656), + [anon_sym_noreturn] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym___declspec] = ACTIONS(2656), + [anon_sym___cdecl] = ACTIONS(2656), + [anon_sym___clrcall] = ACTIONS(2656), + [anon_sym___stdcall] = ACTIONS(2656), + [anon_sym___fastcall] = ACTIONS(2656), + [anon_sym___thiscall] = ACTIONS(2656), + [anon_sym___vectorcall] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_RBRACE] = ACTIONS(2658), + [anon_sym_signed] = ACTIONS(2656), + [anon_sym_unsigned] = ACTIONS(2656), + [anon_sym_long] = ACTIONS(2656), + [anon_sym_short] = ACTIONS(2656), + [anon_sym_static] = ACTIONS(2656), + [anon_sym_ATautoreleasepool] = ACTIONS(2658), + [anon_sym_auto] = ACTIONS(2656), + [anon_sym_register] = ACTIONS(2656), + [anon_sym_inline] = ACTIONS(2656), + [anon_sym___inline] = ACTIONS(2656), + [anon_sym___inline__] = ACTIONS(2656), + [anon_sym___forceinline] = ACTIONS(2656), + [anon_sym_thread_local] = ACTIONS(2656), + [anon_sym___thread] = ACTIONS(2656), + [anon_sym_CG_EXTERN] = ACTIONS(2656), + [anon_sym_CG_INLINE] = ACTIONS(2656), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2656), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2656), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2656), + [anon_sym_IBOutlet] = ACTIONS(2656), + [anon_sym_IBInspectable] = ACTIONS(2656), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2656), + [anon_sym_NS_INLINE] = ACTIONS(2656), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2656), + [anon_sym_OBJC_EXPORT] = ACTIONS(2656), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2656), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2656), + [anon_sym_const] = ACTIONS(2656), + [anon_sym_constexpr] = ACTIONS(2656), + [anon_sym_volatile] = ACTIONS(2656), + [anon_sym_restrict] = ACTIONS(2656), + [anon_sym___restrict__] = ACTIONS(2656), + [anon_sym__Atomic] = ACTIONS(2656), + [anon_sym__Noreturn] = ACTIONS(2656), + [anon_sym__Nonnull] = ACTIONS(2656), + [anon_sym_nullable] = ACTIONS(2656), + [anon_sym__Complex] = ACTIONS(2656), + [anon_sym__Nullable] = ACTIONS(2656), + [anon_sym__Nullable_result] = ACTIONS(2656), + [anon_sym__Null_unspecified] = ACTIONS(2656), + [anon_sym___autoreleasing] = ACTIONS(2656), + [anon_sym___block] = ACTIONS(2656), + [anon_sym___bridge] = ACTIONS(2656), + [anon_sym___bridge_retained] = ACTIONS(2656), + [anon_sym___bridge_transfer] = ACTIONS(2656), + [anon_sym___complex] = ACTIONS(2656), + [anon_sym___const] = ACTIONS(2656), + [anon_sym___imag] = ACTIONS(2656), + [anon_sym___kindof] = ACTIONS(2656), + [anon_sym___nonnull] = ACTIONS(2656), + [anon_sym___nullable] = ACTIONS(2656), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2656), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2656), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2656), + [anon_sym___real] = ACTIONS(2656), + [anon_sym___strong] = ACTIONS(2656), + [anon_sym___unsafe_unretained] = ACTIONS(2656), + [anon_sym___unused] = ACTIONS(2656), + [anon_sym___weak] = ACTIONS(2656), + [anon_sym_alignas] = ACTIONS(2656), + [anon_sym__Alignas] = ACTIONS(2656), + [sym_primitive_type] = ACTIONS(2656), + [anon_sym_enum] = ACTIONS(2656), + [anon_sym_struct] = ACTIONS(2656), + [anon_sym_union] = ACTIONS(2656), + [anon_sym_if] = ACTIONS(2656), + [anon_sym_switch] = ACTIONS(2656), + [anon_sym_case] = ACTIONS(2656), + [anon_sym_default] = ACTIONS(2656), + [anon_sym_while] = ACTIONS(2656), + [anon_sym_do] = ACTIONS(2656), + [anon_sym_for] = ACTIONS(2656), + [anon_sym_in] = ACTIONS(2656), + [anon_sym_return] = ACTIONS(2656), + [anon_sym_break] = ACTIONS(2656), + [anon_sym_continue] = ACTIONS(2656), + [anon_sym_goto] = ACTIONS(2656), + [anon_sym_DASH_DASH] = ACTIONS(2658), + [anon_sym_PLUS_PLUS] = ACTIONS(2658), + [anon_sym_sizeof] = ACTIONS(2656), + [anon_sym___alignof__] = ACTIONS(2656), + [anon_sym___alignof] = ACTIONS(2656), + [anon_sym__alignof] = ACTIONS(2656), + [anon_sym_alignof] = ACTIONS(2656), + [anon_sym__Alignof] = ACTIONS(2656), + [anon_sym_offsetof] = ACTIONS(2656), + [anon_sym__Generic] = ACTIONS(2656), + [anon_sym_asm] = ACTIONS(2656), + [anon_sym___asm__] = ACTIONS(2656), + [anon_sym___asm] = ACTIONS(2656), + [sym_number_literal] = ACTIONS(2658), + [anon_sym_L_SQUOTE] = ACTIONS(2658), + [anon_sym_u_SQUOTE] = ACTIONS(2658), + [anon_sym_U_SQUOTE] = ACTIONS(2658), + [anon_sym_u8_SQUOTE] = ACTIONS(2658), + [anon_sym_SQUOTE] = ACTIONS(2658), + [anon_sym_AT] = ACTIONS(2656), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_L_DQUOTE] = ACTIONS(2658), + [anon_sym_u_DQUOTE] = ACTIONS(2658), + [anon_sym_U_DQUOTE] = ACTIONS(2658), + [anon_sym_u8_DQUOTE] = ACTIONS(2658), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2656), + [anon_sym_nullptr] = ACTIONS(2656), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2656), + [anon_sym___typeof] = ACTIONS(2656), + [anon_sym_typeof] = ACTIONS(2656), + [anon_sym_ATimport] = ACTIONS(2658), + [aux_sym_preproc_undef_token1] = ACTIONS(2656), + [anon_sym_POUND] = ACTIONS(2656), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2656), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2656), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2656), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2656), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2656), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2656), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2656), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2656), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2656), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2656), + [anon_sym_NS_AVAILABLE] = ACTIONS(2656), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2656), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2656), + [anon_sym_API_AVAILABLE] = ACTIONS(2656), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2656), + [anon_sym_API_DEPRECATED] = ACTIONS(2656), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2656), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2656), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2656), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2656), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2656), + [anon_sym___deprecated_msg] = ACTIONS(2656), + [anon_sym___deprecated_enum_msg] = ACTIONS(2656), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2656), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2656), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2656), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2656), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2656), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2656), + [anon_sym_ATprotocol] = ACTIONS(2658), + [anon_sym_ATinterface] = ACTIONS(2658), + [anon_sym_ATimplementation] = ACTIONS(2658), + [anon_sym_ATcompatibility_alias] = ACTIONS(2658), + [anon_sym_ATtry] = ACTIONS(2658), + [anon_sym___try] = ACTIONS(2656), + [anon_sym_ATthrow] = ACTIONS(2658), + [anon_sym_ATselector] = ACTIONS(2658), + [anon_sym_ATavailable] = ACTIONS(2658), + [anon_sym___builtin_available] = ACTIONS(2656), + [anon_sym_va_arg] = ACTIONS(2656), + [anon_sym_ATencode] = ACTIONS(2658), + [anon_sym_ATsynchronized] = ACTIONS(2658), + [anon_sym_BOOL] = ACTIONS(2656), + [anon_sym_IMP] = ACTIONS(2656), + [anon_sym_SEL] = ACTIONS(2656), + [anon_sym_Class] = ACTIONS(2656), + [anon_sym_id] = ACTIONS(2656), + }, + [867] = { + [sym_identifier] = ACTIONS(2700), + [aux_sym_preproc_include_token1] = ACTIONS(2700), + [aux_sym_preproc_include_token2] = ACTIONS(2700), + [aux_sym_preproc_def_token1] = ACTIONS(2700), + [aux_sym_preproc_if_token1] = ACTIONS(2700), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2700), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2700), + [sym_preproc_directive] = ACTIONS(2700), + [anon_sym_LPAREN2] = ACTIONS(2702), + [anon_sym_BANG] = ACTIONS(2702), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_STAR] = ACTIONS(2702), + [anon_sym_CARET] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2702), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym___extension__] = ACTIONS(2700), + [anon_sym_typedef] = ACTIONS(2700), + [anon_sym_extern] = ACTIONS(2700), + [anon_sym___attribute__] = ACTIONS(2700), + [anon_sym___attribute] = ACTIONS(2700), + [anon_sym_noreturn] = ACTIONS(2700), + [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym___declspec] = ACTIONS(2700), + [anon_sym___cdecl] = ACTIONS(2700), + [anon_sym___clrcall] = ACTIONS(2700), + [anon_sym___stdcall] = ACTIONS(2700), + [anon_sym___fastcall] = ACTIONS(2700), + [anon_sym___thiscall] = ACTIONS(2700), + [anon_sym___vectorcall] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_signed] = ACTIONS(2700), + [anon_sym_unsigned] = ACTIONS(2700), + [anon_sym_long] = ACTIONS(2700), + [anon_sym_short] = ACTIONS(2700), + [anon_sym_static] = ACTIONS(2700), + [anon_sym_ATautoreleasepool] = ACTIONS(2702), + [anon_sym_auto] = ACTIONS(2700), + [anon_sym_register] = ACTIONS(2700), + [anon_sym_inline] = ACTIONS(2700), + [anon_sym___inline] = ACTIONS(2700), + [anon_sym___inline__] = ACTIONS(2700), + [anon_sym___forceinline] = ACTIONS(2700), + [anon_sym_thread_local] = ACTIONS(2700), + [anon_sym___thread] = ACTIONS(2700), + [anon_sym_CG_EXTERN] = ACTIONS(2700), + [anon_sym_CG_INLINE] = ACTIONS(2700), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2700), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2700), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2700), + [anon_sym_IBOutlet] = ACTIONS(2700), + [anon_sym_IBInspectable] = ACTIONS(2700), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2700), + [anon_sym_NS_INLINE] = ACTIONS(2700), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2700), + [anon_sym_OBJC_EXPORT] = ACTIONS(2700), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2700), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2700), + [anon_sym_const] = ACTIONS(2700), + [anon_sym_constexpr] = ACTIONS(2700), + [anon_sym_volatile] = ACTIONS(2700), + [anon_sym_restrict] = ACTIONS(2700), + [anon_sym___restrict__] = ACTIONS(2700), + [anon_sym__Atomic] = ACTIONS(2700), + [anon_sym__Noreturn] = ACTIONS(2700), + [anon_sym__Nonnull] = ACTIONS(2700), + [anon_sym_nullable] = ACTIONS(2700), + [anon_sym__Complex] = ACTIONS(2700), + [anon_sym__Nullable] = ACTIONS(2700), + [anon_sym__Nullable_result] = ACTIONS(2700), + [anon_sym__Null_unspecified] = ACTIONS(2700), + [anon_sym___autoreleasing] = ACTIONS(2700), + [anon_sym___block] = ACTIONS(2700), + [anon_sym___bridge] = ACTIONS(2700), + [anon_sym___bridge_retained] = ACTIONS(2700), + [anon_sym___bridge_transfer] = ACTIONS(2700), + [anon_sym___complex] = ACTIONS(2700), + [anon_sym___const] = ACTIONS(2700), + [anon_sym___imag] = ACTIONS(2700), + [anon_sym___kindof] = ACTIONS(2700), + [anon_sym___nonnull] = ACTIONS(2700), + [anon_sym___nullable] = ACTIONS(2700), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2700), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2700), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2700), + [anon_sym___real] = ACTIONS(2700), + [anon_sym___strong] = ACTIONS(2700), + [anon_sym___unsafe_unretained] = ACTIONS(2700), + [anon_sym___unused] = ACTIONS(2700), + [anon_sym___weak] = ACTIONS(2700), + [anon_sym_alignas] = ACTIONS(2700), + [anon_sym__Alignas] = ACTIONS(2700), + [sym_primitive_type] = ACTIONS(2700), + [anon_sym_enum] = ACTIONS(2700), + [anon_sym_struct] = ACTIONS(2700), + [anon_sym_union] = ACTIONS(2700), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_switch] = ACTIONS(2700), + [anon_sym_case] = ACTIONS(2700), + [anon_sym_default] = ACTIONS(2700), + [anon_sym_while] = ACTIONS(2700), + [anon_sym_do] = ACTIONS(2700), + [anon_sym_for] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(2700), + [anon_sym_return] = ACTIONS(2700), + [anon_sym_break] = ACTIONS(2700), + [anon_sym_continue] = ACTIONS(2700), + [anon_sym_goto] = ACTIONS(2700), + [anon_sym_DASH_DASH] = ACTIONS(2702), + [anon_sym_PLUS_PLUS] = ACTIONS(2702), + [anon_sym_sizeof] = ACTIONS(2700), + [anon_sym___alignof__] = ACTIONS(2700), + [anon_sym___alignof] = ACTIONS(2700), + [anon_sym__alignof] = ACTIONS(2700), + [anon_sym_alignof] = ACTIONS(2700), + [anon_sym__Alignof] = ACTIONS(2700), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2700), + [anon_sym_asm] = ACTIONS(2700), + [anon_sym___asm__] = ACTIONS(2700), + [anon_sym___asm] = ACTIONS(2700), + [sym_number_literal] = ACTIONS(2702), + [anon_sym_L_SQUOTE] = ACTIONS(2702), + [anon_sym_u_SQUOTE] = ACTIONS(2702), + [anon_sym_U_SQUOTE] = ACTIONS(2702), + [anon_sym_u8_SQUOTE] = ACTIONS(2702), + [anon_sym_SQUOTE] = ACTIONS(2702), + [anon_sym_AT] = ACTIONS(2700), + [anon_sym_DQUOTE] = ACTIONS(2702), + [anon_sym_L_DQUOTE] = ACTIONS(2702), + [anon_sym_u_DQUOTE] = ACTIONS(2702), + [anon_sym_U_DQUOTE] = ACTIONS(2702), + [anon_sym_u8_DQUOTE] = ACTIONS(2702), + [sym_true] = ACTIONS(2700), + [sym_false] = ACTIONS(2700), + [anon_sym_NULL] = ACTIONS(2700), + [anon_sym_nullptr] = ACTIONS(2700), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2700), + [anon_sym___typeof] = ACTIONS(2700), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_ATimport] = ACTIONS(2702), + [aux_sym_preproc_undef_token1] = ACTIONS(2700), + [anon_sym_POUND] = ACTIONS(2700), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2700), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2700), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2700), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2700), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2700), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2700), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2700), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2700), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2700), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2700), + [anon_sym_NS_AVAILABLE] = ACTIONS(2700), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2700), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2700), + [anon_sym_API_AVAILABLE] = ACTIONS(2700), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2700), + [anon_sym_API_DEPRECATED] = ACTIONS(2700), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2700), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2700), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2700), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2700), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2700), + [anon_sym___deprecated_msg] = ACTIONS(2700), + [anon_sym___deprecated_enum_msg] = ACTIONS(2700), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2700), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2700), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2700), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2700), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2700), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2700), + [anon_sym_ATprotocol] = ACTIONS(2702), + [anon_sym_ATinterface] = ACTIONS(2702), + [anon_sym_ATimplementation] = ACTIONS(2702), + [anon_sym_ATcompatibility_alias] = ACTIONS(2702), + [anon_sym_ATtry] = ACTIONS(2702), + [anon_sym___try] = ACTIONS(2700), + [anon_sym_ATthrow] = ACTIONS(2702), + [anon_sym_ATselector] = ACTIONS(2702), + [anon_sym_ATavailable] = ACTIONS(2702), + [anon_sym___builtin_available] = ACTIONS(2700), + [anon_sym_va_arg] = ACTIONS(2700), + [anon_sym_ATencode] = ACTIONS(2702), + [anon_sym_ATsynchronized] = ACTIONS(2702), + [anon_sym_BOOL] = ACTIONS(2700), + [anon_sym_IMP] = ACTIONS(2700), + [anon_sym_SEL] = ACTIONS(2700), + [anon_sym_Class] = ACTIONS(2700), + [anon_sym_id] = ACTIONS(2700), + }, + [868] = { + [sym_identifier] = ACTIONS(2840), + [aux_sym_preproc_include_token1] = ACTIONS(2840), + [aux_sym_preproc_include_token2] = ACTIONS(2840), + [aux_sym_preproc_def_token1] = ACTIONS(2840), + [aux_sym_preproc_if_token1] = ACTIONS(2840), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2840), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2840), + [sym_preproc_directive] = ACTIONS(2840), + [anon_sym_LPAREN2] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(2842), + [anon_sym_TILDE] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2840), + [anon_sym_PLUS] = ACTIONS(2840), + [anon_sym_STAR] = ACTIONS(2842), + [anon_sym_CARET] = ACTIONS(2842), + [anon_sym_AMP] = ACTIONS(2842), + [anon_sym_SEMI] = ACTIONS(2842), + [anon_sym___extension__] = ACTIONS(2840), + [anon_sym_typedef] = ACTIONS(2840), + [anon_sym_extern] = ACTIONS(2840), + [anon_sym___attribute__] = ACTIONS(2840), + [anon_sym___attribute] = ACTIONS(2840), + [anon_sym_noreturn] = ACTIONS(2840), + [anon_sym_LBRACK] = ACTIONS(2842), + [anon_sym___declspec] = ACTIONS(2840), + [anon_sym___cdecl] = ACTIONS(2840), + [anon_sym___clrcall] = ACTIONS(2840), + [anon_sym___stdcall] = ACTIONS(2840), + [anon_sym___fastcall] = ACTIONS(2840), + [anon_sym___thiscall] = ACTIONS(2840), + [anon_sym___vectorcall] = ACTIONS(2840), + [anon_sym_LBRACE] = ACTIONS(2842), + [anon_sym_RBRACE] = ACTIONS(2842), + [anon_sym_signed] = ACTIONS(2840), + [anon_sym_unsigned] = ACTIONS(2840), + [anon_sym_long] = ACTIONS(2840), + [anon_sym_short] = ACTIONS(2840), + [anon_sym_static] = ACTIONS(2840), + [anon_sym_ATautoreleasepool] = ACTIONS(2842), + [anon_sym_auto] = ACTIONS(2840), + [anon_sym_register] = ACTIONS(2840), + [anon_sym_inline] = ACTIONS(2840), + [anon_sym___inline] = ACTIONS(2840), + [anon_sym___inline__] = ACTIONS(2840), + [anon_sym___forceinline] = ACTIONS(2840), + [anon_sym_thread_local] = ACTIONS(2840), + [anon_sym___thread] = ACTIONS(2840), + [anon_sym_CG_EXTERN] = ACTIONS(2840), + [anon_sym_CG_INLINE] = ACTIONS(2840), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2840), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2840), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2840), + [anon_sym_IBOutlet] = ACTIONS(2840), + [anon_sym_IBInspectable] = ACTIONS(2840), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2840), + [anon_sym_NS_INLINE] = ACTIONS(2840), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2840), + [anon_sym_OBJC_EXPORT] = ACTIONS(2840), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2840), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2840), + [anon_sym_const] = ACTIONS(2840), + [anon_sym_constexpr] = ACTIONS(2840), + [anon_sym_volatile] = ACTIONS(2840), + [anon_sym_restrict] = ACTIONS(2840), + [anon_sym___restrict__] = ACTIONS(2840), + [anon_sym__Atomic] = ACTIONS(2840), + [anon_sym__Noreturn] = ACTIONS(2840), + [anon_sym__Nonnull] = ACTIONS(2840), + [anon_sym_nullable] = ACTIONS(2840), + [anon_sym__Complex] = ACTIONS(2840), + [anon_sym__Nullable] = ACTIONS(2840), + [anon_sym__Nullable_result] = ACTIONS(2840), + [anon_sym__Null_unspecified] = ACTIONS(2840), + [anon_sym___autoreleasing] = ACTIONS(2840), + [anon_sym___block] = ACTIONS(2840), + [anon_sym___bridge] = ACTIONS(2840), + [anon_sym___bridge_retained] = ACTIONS(2840), + [anon_sym___bridge_transfer] = ACTIONS(2840), + [anon_sym___complex] = ACTIONS(2840), + [anon_sym___const] = ACTIONS(2840), + [anon_sym___imag] = ACTIONS(2840), + [anon_sym___kindof] = ACTIONS(2840), + [anon_sym___nonnull] = ACTIONS(2840), + [anon_sym___nullable] = ACTIONS(2840), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2840), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2840), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2840), + [anon_sym___real] = ACTIONS(2840), + [anon_sym___strong] = ACTIONS(2840), + [anon_sym___unsafe_unretained] = ACTIONS(2840), + [anon_sym___unused] = ACTIONS(2840), + [anon_sym___weak] = ACTIONS(2840), + [anon_sym_alignas] = ACTIONS(2840), + [anon_sym__Alignas] = ACTIONS(2840), + [sym_primitive_type] = ACTIONS(2840), + [anon_sym_enum] = ACTIONS(2840), + [anon_sym_struct] = ACTIONS(2840), + [anon_sym_union] = ACTIONS(2840), + [anon_sym_if] = ACTIONS(2840), + [anon_sym_switch] = ACTIONS(2840), + [anon_sym_case] = ACTIONS(2840), + [anon_sym_default] = ACTIONS(2840), + [anon_sym_while] = ACTIONS(2840), + [anon_sym_do] = ACTIONS(2840), + [anon_sym_for] = ACTIONS(2840), + [anon_sym_in] = ACTIONS(2840), + [anon_sym_return] = ACTIONS(2840), + [anon_sym_break] = ACTIONS(2840), + [anon_sym_continue] = ACTIONS(2840), + [anon_sym_goto] = ACTIONS(2840), + [anon_sym_DASH_DASH] = ACTIONS(2842), + [anon_sym_PLUS_PLUS] = ACTIONS(2842), + [anon_sym_sizeof] = ACTIONS(2840), + [anon_sym___alignof__] = ACTIONS(2840), + [anon_sym___alignof] = ACTIONS(2840), + [anon_sym__alignof] = ACTIONS(2840), + [anon_sym_alignof] = ACTIONS(2840), + [anon_sym__Alignof] = ACTIONS(2840), + [anon_sym_offsetof] = ACTIONS(2840), + [anon_sym__Generic] = ACTIONS(2840), + [anon_sym_asm] = ACTIONS(2840), + [anon_sym___asm__] = ACTIONS(2840), + [anon_sym___asm] = ACTIONS(2840), + [sym_number_literal] = ACTIONS(2842), + [anon_sym_L_SQUOTE] = ACTIONS(2842), + [anon_sym_u_SQUOTE] = ACTIONS(2842), + [anon_sym_U_SQUOTE] = ACTIONS(2842), + [anon_sym_u8_SQUOTE] = ACTIONS(2842), + [anon_sym_SQUOTE] = ACTIONS(2842), + [anon_sym_AT] = ACTIONS(2840), + [anon_sym_DQUOTE] = ACTIONS(2842), + [anon_sym_L_DQUOTE] = ACTIONS(2842), + [anon_sym_u_DQUOTE] = ACTIONS(2842), + [anon_sym_U_DQUOTE] = ACTIONS(2842), + [anon_sym_u8_DQUOTE] = ACTIONS(2842), + [sym_true] = ACTIONS(2840), + [sym_false] = ACTIONS(2840), + [anon_sym_NULL] = ACTIONS(2840), + [anon_sym_nullptr] = ACTIONS(2840), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2840), + [anon_sym___typeof] = ACTIONS(2840), + [anon_sym_typeof] = ACTIONS(2840), + [anon_sym_ATimport] = ACTIONS(2842), + [aux_sym_preproc_undef_token1] = ACTIONS(2840), + [anon_sym_POUND] = ACTIONS(2840), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2840), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2840), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2840), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2840), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2840), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2840), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2840), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2840), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2840), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2840), + [anon_sym_NS_AVAILABLE] = ACTIONS(2840), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2840), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2840), + [anon_sym_API_AVAILABLE] = ACTIONS(2840), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2840), + [anon_sym_API_DEPRECATED] = ACTIONS(2840), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2840), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2840), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2840), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2840), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2840), + [anon_sym___deprecated_msg] = ACTIONS(2840), + [anon_sym___deprecated_enum_msg] = ACTIONS(2840), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2840), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2840), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2840), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2840), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2840), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2840), + [anon_sym_ATprotocol] = ACTIONS(2842), + [anon_sym_ATinterface] = ACTIONS(2842), + [anon_sym_ATimplementation] = ACTIONS(2842), + [anon_sym_ATcompatibility_alias] = ACTIONS(2842), + [anon_sym_ATtry] = ACTIONS(2842), + [anon_sym___try] = ACTIONS(2840), + [anon_sym_ATthrow] = ACTIONS(2842), + [anon_sym_ATselector] = ACTIONS(2842), + [anon_sym_ATavailable] = ACTIONS(2842), + [anon_sym___builtin_available] = ACTIONS(2840), + [anon_sym_va_arg] = ACTIONS(2840), + [anon_sym_ATencode] = ACTIONS(2842), + [anon_sym_ATsynchronized] = ACTIONS(2842), + [anon_sym_BOOL] = ACTIONS(2840), + [anon_sym_IMP] = ACTIONS(2840), + [anon_sym_SEL] = ACTIONS(2840), + [anon_sym_Class] = ACTIONS(2840), + [anon_sym_id] = ACTIONS(2840), + }, + [869] = { + [sym_identifier] = ACTIONS(2602), + [aux_sym_preproc_include_token1] = ACTIONS(2602), + [aux_sym_preproc_include_token2] = ACTIONS(2602), + [aux_sym_preproc_def_token1] = ACTIONS(2602), + [aux_sym_preproc_if_token1] = ACTIONS(2602), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2602), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2602), + [sym_preproc_directive] = ACTIONS(2602), + [anon_sym_LPAREN2] = ACTIONS(2604), + [anon_sym_BANG] = ACTIONS(2604), + [anon_sym_TILDE] = ACTIONS(2604), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_CARET] = ACTIONS(2604), + [anon_sym_AMP] = ACTIONS(2604), + [anon_sym_SEMI] = ACTIONS(2604), + [anon_sym___extension__] = ACTIONS(2602), + [anon_sym_typedef] = ACTIONS(2602), + [anon_sym_extern] = ACTIONS(2602), + [anon_sym___attribute__] = ACTIONS(2602), + [anon_sym___attribute] = ACTIONS(2602), + [anon_sym_noreturn] = ACTIONS(2602), + [anon_sym_LBRACK] = ACTIONS(2604), + [anon_sym___declspec] = ACTIONS(2602), + [anon_sym___cdecl] = ACTIONS(2602), + [anon_sym___clrcall] = ACTIONS(2602), + [anon_sym___stdcall] = ACTIONS(2602), + [anon_sym___fastcall] = ACTIONS(2602), + [anon_sym___thiscall] = ACTIONS(2602), + [anon_sym___vectorcall] = ACTIONS(2602), + [anon_sym_LBRACE] = ACTIONS(2604), + [anon_sym_RBRACE] = ACTIONS(2604), + [anon_sym_signed] = ACTIONS(2602), + [anon_sym_unsigned] = ACTIONS(2602), + [anon_sym_long] = ACTIONS(2602), + [anon_sym_short] = ACTIONS(2602), + [anon_sym_static] = ACTIONS(2602), + [anon_sym_ATautoreleasepool] = ACTIONS(2604), + [anon_sym_auto] = ACTIONS(2602), + [anon_sym_register] = ACTIONS(2602), + [anon_sym_inline] = ACTIONS(2602), + [anon_sym___inline] = ACTIONS(2602), + [anon_sym___inline__] = ACTIONS(2602), + [anon_sym___forceinline] = ACTIONS(2602), + [anon_sym_thread_local] = ACTIONS(2602), + [anon_sym___thread] = ACTIONS(2602), + [anon_sym_CG_EXTERN] = ACTIONS(2602), + [anon_sym_CG_INLINE] = ACTIONS(2602), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2602), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2602), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2602), + [anon_sym_IBOutlet] = ACTIONS(2602), + [anon_sym_IBInspectable] = ACTIONS(2602), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2602), + [anon_sym_NS_INLINE] = ACTIONS(2602), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2602), + [anon_sym_OBJC_EXPORT] = ACTIONS(2602), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2602), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2602), + [anon_sym_const] = ACTIONS(2602), + [anon_sym_constexpr] = ACTIONS(2602), + [anon_sym_volatile] = ACTIONS(2602), + [anon_sym_restrict] = ACTIONS(2602), + [anon_sym___restrict__] = ACTIONS(2602), + [anon_sym__Atomic] = ACTIONS(2602), + [anon_sym__Noreturn] = ACTIONS(2602), + [anon_sym__Nonnull] = ACTIONS(2602), + [anon_sym_nullable] = ACTIONS(2602), + [anon_sym__Complex] = ACTIONS(2602), + [anon_sym__Nullable] = ACTIONS(2602), + [anon_sym__Nullable_result] = ACTIONS(2602), + [anon_sym__Null_unspecified] = ACTIONS(2602), + [anon_sym___autoreleasing] = ACTIONS(2602), + [anon_sym___block] = ACTIONS(2602), + [anon_sym___bridge] = ACTIONS(2602), + [anon_sym___bridge_retained] = ACTIONS(2602), + [anon_sym___bridge_transfer] = ACTIONS(2602), + [anon_sym___complex] = ACTIONS(2602), + [anon_sym___const] = ACTIONS(2602), + [anon_sym___imag] = ACTIONS(2602), + [anon_sym___kindof] = ACTIONS(2602), + [anon_sym___nonnull] = ACTIONS(2602), + [anon_sym___nullable] = ACTIONS(2602), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2602), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2602), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2602), + [anon_sym___real] = ACTIONS(2602), + [anon_sym___strong] = ACTIONS(2602), + [anon_sym___unsafe_unretained] = ACTIONS(2602), + [anon_sym___unused] = ACTIONS(2602), + [anon_sym___weak] = ACTIONS(2602), + [anon_sym_alignas] = ACTIONS(2602), + [anon_sym__Alignas] = ACTIONS(2602), + [sym_primitive_type] = ACTIONS(2602), + [anon_sym_enum] = ACTIONS(2602), + [anon_sym_struct] = ACTIONS(2602), + [anon_sym_union] = ACTIONS(2602), + [anon_sym_if] = ACTIONS(2602), + [anon_sym_switch] = ACTIONS(2602), + [anon_sym_case] = ACTIONS(2602), + [anon_sym_default] = ACTIONS(2602), + [anon_sym_while] = ACTIONS(2602), + [anon_sym_do] = ACTIONS(2602), + [anon_sym_for] = ACTIONS(2602), + [anon_sym_in] = ACTIONS(2602), + [anon_sym_return] = ACTIONS(2602), + [anon_sym_break] = ACTIONS(2602), + [anon_sym_continue] = ACTIONS(2602), + [anon_sym_goto] = ACTIONS(2602), + [anon_sym_DASH_DASH] = ACTIONS(2604), + [anon_sym_PLUS_PLUS] = ACTIONS(2604), + [anon_sym_sizeof] = ACTIONS(2602), + [anon_sym___alignof__] = ACTIONS(2602), + [anon_sym___alignof] = ACTIONS(2602), + [anon_sym__alignof] = ACTIONS(2602), + [anon_sym_alignof] = ACTIONS(2602), + [anon_sym__Alignof] = ACTIONS(2602), + [anon_sym_offsetof] = ACTIONS(2602), + [anon_sym__Generic] = ACTIONS(2602), + [anon_sym_asm] = ACTIONS(2602), + [anon_sym___asm__] = ACTIONS(2602), + [anon_sym___asm] = ACTIONS(2602), + [sym_number_literal] = ACTIONS(2604), + [anon_sym_L_SQUOTE] = ACTIONS(2604), + [anon_sym_u_SQUOTE] = ACTIONS(2604), + [anon_sym_U_SQUOTE] = ACTIONS(2604), + [anon_sym_u8_SQUOTE] = ACTIONS(2604), + [anon_sym_SQUOTE] = ACTIONS(2604), + [anon_sym_AT] = ACTIONS(2602), + [anon_sym_DQUOTE] = ACTIONS(2604), + [anon_sym_L_DQUOTE] = ACTIONS(2604), + [anon_sym_u_DQUOTE] = ACTIONS(2604), + [anon_sym_U_DQUOTE] = ACTIONS(2604), + [anon_sym_u8_DQUOTE] = ACTIONS(2604), + [sym_true] = ACTIONS(2602), + [sym_false] = ACTIONS(2602), + [anon_sym_NULL] = ACTIONS(2602), + [anon_sym_nullptr] = ACTIONS(2602), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2602), + [anon_sym___typeof] = ACTIONS(2602), + [anon_sym_typeof] = ACTIONS(2602), + [anon_sym_ATimport] = ACTIONS(2604), + [aux_sym_preproc_undef_token1] = ACTIONS(2602), + [anon_sym_POUND] = ACTIONS(2602), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2602), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2602), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2602), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2602), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2602), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2602), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2602), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2602), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2602), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2602), + [anon_sym_NS_AVAILABLE] = ACTIONS(2602), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2602), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2602), + [anon_sym_API_AVAILABLE] = ACTIONS(2602), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2602), + [anon_sym_API_DEPRECATED] = ACTIONS(2602), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2602), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2602), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2602), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2602), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2602), + [anon_sym___deprecated_msg] = ACTIONS(2602), + [anon_sym___deprecated_enum_msg] = ACTIONS(2602), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2602), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2602), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2602), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2602), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2602), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2602), + [anon_sym_ATprotocol] = ACTIONS(2604), + [anon_sym_ATinterface] = ACTIONS(2604), + [anon_sym_ATimplementation] = ACTIONS(2604), + [anon_sym_ATcompatibility_alias] = ACTIONS(2604), + [anon_sym_ATtry] = ACTIONS(2604), + [anon_sym___try] = ACTIONS(2602), + [anon_sym_ATthrow] = ACTIONS(2604), + [anon_sym_ATselector] = ACTIONS(2604), + [anon_sym_ATavailable] = ACTIONS(2604), + [anon_sym___builtin_available] = ACTIONS(2602), + [anon_sym_va_arg] = ACTIONS(2602), + [anon_sym_ATencode] = ACTIONS(2604), + [anon_sym_ATsynchronized] = ACTIONS(2604), + [anon_sym_BOOL] = ACTIONS(2602), + [anon_sym_IMP] = ACTIONS(2602), + [anon_sym_SEL] = ACTIONS(2602), + [anon_sym_Class] = ACTIONS(2602), + [anon_sym_id] = ACTIONS(2602), + }, + [870] = { + [sym_identifier] = ACTIONS(2844), + [aux_sym_preproc_include_token1] = ACTIONS(2844), + [aux_sym_preproc_include_token2] = ACTIONS(2844), + [aux_sym_preproc_def_token1] = ACTIONS(2844), + [aux_sym_preproc_if_token1] = ACTIONS(2844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2844), + [sym_preproc_directive] = ACTIONS(2844), + [anon_sym_LPAREN2] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2844), + [anon_sym_PLUS] = ACTIONS(2844), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_CARET] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2846), + [anon_sym_SEMI] = ACTIONS(2846), + [anon_sym___extension__] = ACTIONS(2844), + [anon_sym_typedef] = ACTIONS(2844), + [anon_sym_extern] = ACTIONS(2844), + [anon_sym___attribute__] = ACTIONS(2844), + [anon_sym___attribute] = ACTIONS(2844), + [anon_sym_noreturn] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym___declspec] = ACTIONS(2844), + [anon_sym___cdecl] = ACTIONS(2844), + [anon_sym___clrcall] = ACTIONS(2844), + [anon_sym___stdcall] = ACTIONS(2844), + [anon_sym___fastcall] = ACTIONS(2844), + [anon_sym___thiscall] = ACTIONS(2844), + [anon_sym___vectorcall] = ACTIONS(2844), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_RBRACE] = ACTIONS(2846), + [anon_sym_signed] = ACTIONS(2844), + [anon_sym_unsigned] = ACTIONS(2844), + [anon_sym_long] = ACTIONS(2844), + [anon_sym_short] = ACTIONS(2844), + [anon_sym_static] = ACTIONS(2844), + [anon_sym_ATautoreleasepool] = ACTIONS(2846), + [anon_sym_auto] = ACTIONS(2844), + [anon_sym_register] = ACTIONS(2844), + [anon_sym_inline] = ACTIONS(2844), + [anon_sym___inline] = ACTIONS(2844), + [anon_sym___inline__] = ACTIONS(2844), + [anon_sym___forceinline] = ACTIONS(2844), + [anon_sym_thread_local] = ACTIONS(2844), + [anon_sym___thread] = ACTIONS(2844), + [anon_sym_CG_EXTERN] = ACTIONS(2844), + [anon_sym_CG_INLINE] = ACTIONS(2844), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2844), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2844), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2844), + [anon_sym_IBOutlet] = ACTIONS(2844), + [anon_sym_IBInspectable] = ACTIONS(2844), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2844), + [anon_sym_NS_INLINE] = ACTIONS(2844), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2844), + [anon_sym_OBJC_EXPORT] = ACTIONS(2844), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2844), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2844), + [anon_sym_const] = ACTIONS(2844), + [anon_sym_constexpr] = ACTIONS(2844), + [anon_sym_volatile] = ACTIONS(2844), + [anon_sym_restrict] = ACTIONS(2844), + [anon_sym___restrict__] = ACTIONS(2844), + [anon_sym__Atomic] = ACTIONS(2844), + [anon_sym__Noreturn] = ACTIONS(2844), + [anon_sym__Nonnull] = ACTIONS(2844), + [anon_sym_nullable] = ACTIONS(2844), + [anon_sym__Complex] = ACTIONS(2844), + [anon_sym__Nullable] = ACTIONS(2844), + [anon_sym__Nullable_result] = ACTIONS(2844), + [anon_sym__Null_unspecified] = ACTIONS(2844), + [anon_sym___autoreleasing] = ACTIONS(2844), + [anon_sym___block] = ACTIONS(2844), + [anon_sym___bridge] = ACTIONS(2844), + [anon_sym___bridge_retained] = ACTIONS(2844), + [anon_sym___bridge_transfer] = ACTIONS(2844), + [anon_sym___complex] = ACTIONS(2844), + [anon_sym___const] = ACTIONS(2844), + [anon_sym___imag] = ACTIONS(2844), + [anon_sym___kindof] = ACTIONS(2844), + [anon_sym___nonnull] = ACTIONS(2844), + [anon_sym___nullable] = ACTIONS(2844), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2844), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2844), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2844), + [anon_sym___real] = ACTIONS(2844), + [anon_sym___strong] = ACTIONS(2844), + [anon_sym___unsafe_unretained] = ACTIONS(2844), + [anon_sym___unused] = ACTIONS(2844), + [anon_sym___weak] = ACTIONS(2844), + [anon_sym_alignas] = ACTIONS(2844), + [anon_sym__Alignas] = ACTIONS(2844), + [sym_primitive_type] = ACTIONS(2844), + [anon_sym_enum] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2844), + [anon_sym_union] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2844), + [anon_sym_switch] = ACTIONS(2844), + [anon_sym_case] = ACTIONS(2844), + [anon_sym_default] = ACTIONS(2844), + [anon_sym_while] = ACTIONS(2844), + [anon_sym_do] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(2844), + [anon_sym_in] = ACTIONS(2844), + [anon_sym_return] = ACTIONS(2844), + [anon_sym_break] = ACTIONS(2844), + [anon_sym_continue] = ACTIONS(2844), + [anon_sym_goto] = ACTIONS(2844), + [anon_sym_DASH_DASH] = ACTIONS(2846), + [anon_sym_PLUS_PLUS] = ACTIONS(2846), + [anon_sym_sizeof] = ACTIONS(2844), + [anon_sym___alignof__] = ACTIONS(2844), + [anon_sym___alignof] = ACTIONS(2844), + [anon_sym__alignof] = ACTIONS(2844), + [anon_sym_alignof] = ACTIONS(2844), + [anon_sym__Alignof] = ACTIONS(2844), + [anon_sym_offsetof] = ACTIONS(2844), + [anon_sym__Generic] = ACTIONS(2844), + [anon_sym_asm] = ACTIONS(2844), + [anon_sym___asm__] = ACTIONS(2844), + [anon_sym___asm] = ACTIONS(2844), + [sym_number_literal] = ACTIONS(2846), + [anon_sym_L_SQUOTE] = ACTIONS(2846), + [anon_sym_u_SQUOTE] = ACTIONS(2846), + [anon_sym_U_SQUOTE] = ACTIONS(2846), + [anon_sym_u8_SQUOTE] = ACTIONS(2846), + [anon_sym_SQUOTE] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2844), + [anon_sym_DQUOTE] = ACTIONS(2846), + [anon_sym_L_DQUOTE] = ACTIONS(2846), + [anon_sym_u_DQUOTE] = ACTIONS(2846), + [anon_sym_U_DQUOTE] = ACTIONS(2846), + [anon_sym_u8_DQUOTE] = ACTIONS(2846), + [sym_true] = ACTIONS(2844), + [sym_false] = ACTIONS(2844), + [anon_sym_NULL] = ACTIONS(2844), + [anon_sym_nullptr] = ACTIONS(2844), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2844), + [anon_sym___typeof] = ACTIONS(2844), + [anon_sym_typeof] = ACTIONS(2844), + [anon_sym_ATimport] = ACTIONS(2846), + [aux_sym_preproc_undef_token1] = ACTIONS(2844), + [anon_sym_POUND] = ACTIONS(2844), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2844), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2844), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2844), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2844), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2844), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2844), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2844), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2844), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2844), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2844), + [anon_sym_NS_AVAILABLE] = ACTIONS(2844), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2844), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2844), + [anon_sym_API_AVAILABLE] = ACTIONS(2844), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2844), + [anon_sym_API_DEPRECATED] = ACTIONS(2844), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2844), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2844), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2844), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2844), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2844), + [anon_sym___deprecated_msg] = ACTIONS(2844), + [anon_sym___deprecated_enum_msg] = ACTIONS(2844), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2844), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2844), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2844), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2844), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2844), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2844), + [anon_sym_ATprotocol] = ACTIONS(2846), + [anon_sym_ATinterface] = ACTIONS(2846), + [anon_sym_ATimplementation] = ACTIONS(2846), + [anon_sym_ATcompatibility_alias] = ACTIONS(2846), + [anon_sym_ATtry] = ACTIONS(2846), + [anon_sym___try] = ACTIONS(2844), + [anon_sym_ATthrow] = ACTIONS(2846), + [anon_sym_ATselector] = ACTIONS(2846), + [anon_sym_ATavailable] = ACTIONS(2846), + [anon_sym___builtin_available] = ACTIONS(2844), + [anon_sym_va_arg] = ACTIONS(2844), + [anon_sym_ATencode] = ACTIONS(2846), + [anon_sym_ATsynchronized] = ACTIONS(2846), + [anon_sym_BOOL] = ACTIONS(2844), + [anon_sym_IMP] = ACTIONS(2844), + [anon_sym_SEL] = ACTIONS(2844), + [anon_sym_Class] = ACTIONS(2844), + [anon_sym_id] = ACTIONS(2844), + }, + [871] = { + [sym_identifier] = ACTIONS(2704), + [aux_sym_preproc_include_token1] = ACTIONS(2704), + [aux_sym_preproc_include_token2] = ACTIONS(2704), + [aux_sym_preproc_def_token1] = ACTIONS(2704), + [aux_sym_preproc_if_token1] = ACTIONS(2704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2704), + [sym_preproc_directive] = ACTIONS(2704), + [anon_sym_LPAREN2] = ACTIONS(2706), + [anon_sym_BANG] = ACTIONS(2706), + [anon_sym_TILDE] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_STAR] = ACTIONS(2706), + [anon_sym_CARET] = ACTIONS(2706), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym___extension__] = ACTIONS(2704), + [anon_sym_typedef] = ACTIONS(2704), + [anon_sym_extern] = ACTIONS(2704), + [anon_sym___attribute__] = ACTIONS(2704), + [anon_sym___attribute] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_LBRACK] = ACTIONS(2706), + [anon_sym___declspec] = ACTIONS(2704), + [anon_sym___cdecl] = ACTIONS(2704), + [anon_sym___clrcall] = ACTIONS(2704), + [anon_sym___stdcall] = ACTIONS(2704), + [anon_sym___fastcall] = ACTIONS(2704), + [anon_sym___thiscall] = ACTIONS(2704), + [anon_sym___vectorcall] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_RBRACE] = ACTIONS(2706), + [anon_sym_signed] = ACTIONS(2704), + [anon_sym_unsigned] = ACTIONS(2704), + [anon_sym_long] = ACTIONS(2704), + [anon_sym_short] = ACTIONS(2704), + [anon_sym_static] = ACTIONS(2704), + [anon_sym_ATautoreleasepool] = ACTIONS(2706), + [anon_sym_auto] = ACTIONS(2704), + [anon_sym_register] = ACTIONS(2704), + [anon_sym_inline] = ACTIONS(2704), + [anon_sym___inline] = ACTIONS(2704), + [anon_sym___inline__] = ACTIONS(2704), + [anon_sym___forceinline] = ACTIONS(2704), + [anon_sym_thread_local] = ACTIONS(2704), + [anon_sym___thread] = ACTIONS(2704), + [anon_sym_CG_EXTERN] = ACTIONS(2704), + [anon_sym_CG_INLINE] = ACTIONS(2704), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2704), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2704), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2704), + [anon_sym_IBOutlet] = ACTIONS(2704), + [anon_sym_IBInspectable] = ACTIONS(2704), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2704), + [anon_sym_NS_INLINE] = ACTIONS(2704), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2704), + [anon_sym_OBJC_EXPORT] = ACTIONS(2704), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2704), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2704), + [anon_sym_const] = ACTIONS(2704), + [anon_sym_constexpr] = ACTIONS(2704), + [anon_sym_volatile] = ACTIONS(2704), + [anon_sym_restrict] = ACTIONS(2704), + [anon_sym___restrict__] = ACTIONS(2704), + [anon_sym__Atomic] = ACTIONS(2704), + [anon_sym__Noreturn] = ACTIONS(2704), + [anon_sym__Nonnull] = ACTIONS(2704), + [anon_sym_nullable] = ACTIONS(2704), + [anon_sym__Complex] = ACTIONS(2704), + [anon_sym__Nullable] = ACTIONS(2704), + [anon_sym__Nullable_result] = ACTIONS(2704), + [anon_sym__Null_unspecified] = ACTIONS(2704), + [anon_sym___autoreleasing] = ACTIONS(2704), + [anon_sym___block] = ACTIONS(2704), + [anon_sym___bridge] = ACTIONS(2704), + [anon_sym___bridge_retained] = ACTIONS(2704), + [anon_sym___bridge_transfer] = ACTIONS(2704), + [anon_sym___complex] = ACTIONS(2704), + [anon_sym___const] = ACTIONS(2704), + [anon_sym___imag] = ACTIONS(2704), + [anon_sym___kindof] = ACTIONS(2704), + [anon_sym___nonnull] = ACTIONS(2704), + [anon_sym___nullable] = ACTIONS(2704), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2704), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2704), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2704), + [anon_sym___real] = ACTIONS(2704), + [anon_sym___strong] = ACTIONS(2704), + [anon_sym___unsafe_unretained] = ACTIONS(2704), + [anon_sym___unused] = ACTIONS(2704), + [anon_sym___weak] = ACTIONS(2704), + [anon_sym_alignas] = ACTIONS(2704), + [anon_sym__Alignas] = ACTIONS(2704), + [sym_primitive_type] = ACTIONS(2704), + [anon_sym_enum] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_union] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_switch] = ACTIONS(2704), + [anon_sym_case] = ACTIONS(2704), + [anon_sym_default] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_do] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_in] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_goto] = ACTIONS(2704), + [anon_sym_DASH_DASH] = ACTIONS(2706), + [anon_sym_PLUS_PLUS] = ACTIONS(2706), + [anon_sym_sizeof] = ACTIONS(2704), + [anon_sym___alignof__] = ACTIONS(2704), + [anon_sym___alignof] = ACTIONS(2704), + [anon_sym__alignof] = ACTIONS(2704), + [anon_sym_alignof] = ACTIONS(2704), + [anon_sym__Alignof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2704), + [anon_sym__Generic] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2704), + [anon_sym___asm__] = ACTIONS(2704), + [anon_sym___asm] = ACTIONS(2704), + [sym_number_literal] = ACTIONS(2706), + [anon_sym_L_SQUOTE] = ACTIONS(2706), + [anon_sym_u_SQUOTE] = ACTIONS(2706), + [anon_sym_U_SQUOTE] = ACTIONS(2706), + [anon_sym_u8_SQUOTE] = ACTIONS(2706), + [anon_sym_SQUOTE] = ACTIONS(2706), + [anon_sym_AT] = ACTIONS(2704), + [anon_sym_DQUOTE] = ACTIONS(2706), + [anon_sym_L_DQUOTE] = ACTIONS(2706), + [anon_sym_u_DQUOTE] = ACTIONS(2706), + [anon_sym_U_DQUOTE] = ACTIONS(2706), + [anon_sym_u8_DQUOTE] = ACTIONS(2706), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [anon_sym_NULL] = ACTIONS(2704), + [anon_sym_nullptr] = ACTIONS(2704), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2704), + [anon_sym___typeof] = ACTIONS(2704), + [anon_sym_typeof] = ACTIONS(2704), + [anon_sym_ATimport] = ACTIONS(2706), + [aux_sym_preproc_undef_token1] = ACTIONS(2704), + [anon_sym_POUND] = ACTIONS(2704), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2704), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2704), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2704), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2704), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2704), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2704), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2704), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2704), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2704), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2704), + [anon_sym_NS_AVAILABLE] = ACTIONS(2704), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2704), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2704), + [anon_sym_API_AVAILABLE] = ACTIONS(2704), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2704), + [anon_sym_API_DEPRECATED] = ACTIONS(2704), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2704), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2704), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2704), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2704), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2704), + [anon_sym___deprecated_msg] = ACTIONS(2704), + [anon_sym___deprecated_enum_msg] = ACTIONS(2704), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2704), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2704), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2704), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2704), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2704), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2704), + [anon_sym_ATprotocol] = ACTIONS(2706), + [anon_sym_ATinterface] = ACTIONS(2706), + [anon_sym_ATimplementation] = ACTIONS(2706), + [anon_sym_ATcompatibility_alias] = ACTIONS(2706), + [anon_sym_ATtry] = ACTIONS(2706), + [anon_sym___try] = ACTIONS(2704), + [anon_sym_ATthrow] = ACTIONS(2706), + [anon_sym_ATselector] = ACTIONS(2706), + [anon_sym_ATavailable] = ACTIONS(2706), + [anon_sym___builtin_available] = ACTIONS(2704), + [anon_sym_va_arg] = ACTIONS(2704), + [anon_sym_ATencode] = ACTIONS(2706), + [anon_sym_ATsynchronized] = ACTIONS(2706), + [anon_sym_BOOL] = ACTIONS(2704), + [anon_sym_IMP] = ACTIONS(2704), + [anon_sym_SEL] = ACTIONS(2704), + [anon_sym_Class] = ACTIONS(2704), + [anon_sym_id] = ACTIONS(2704), + }, + [872] = { + [sym_identifier] = ACTIONS(2724), + [aux_sym_preproc_include_token1] = ACTIONS(2724), + [aux_sym_preproc_include_token2] = ACTIONS(2724), + [aux_sym_preproc_def_token1] = ACTIONS(2724), + [aux_sym_preproc_if_token1] = ACTIONS(2724), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2724), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2724), + [sym_preproc_directive] = ACTIONS(2724), + [anon_sym_LPAREN2] = ACTIONS(2726), + [anon_sym_BANG] = ACTIONS(2726), + [anon_sym_TILDE] = ACTIONS(2726), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2726), + [anon_sym_CARET] = ACTIONS(2726), + [anon_sym_AMP] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym___extension__] = ACTIONS(2724), + [anon_sym_typedef] = ACTIONS(2724), + [anon_sym_extern] = ACTIONS(2724), + [anon_sym___attribute__] = ACTIONS(2724), + [anon_sym___attribute] = ACTIONS(2724), + [anon_sym_noreturn] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2726), + [anon_sym___declspec] = ACTIONS(2724), + [anon_sym___cdecl] = ACTIONS(2724), + [anon_sym___clrcall] = ACTIONS(2724), + [anon_sym___stdcall] = ACTIONS(2724), + [anon_sym___fastcall] = ACTIONS(2724), + [anon_sym___thiscall] = ACTIONS(2724), + [anon_sym___vectorcall] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2726), + [anon_sym_RBRACE] = ACTIONS(2726), + [anon_sym_signed] = ACTIONS(2724), + [anon_sym_unsigned] = ACTIONS(2724), + [anon_sym_long] = ACTIONS(2724), + [anon_sym_short] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2724), + [anon_sym_ATautoreleasepool] = ACTIONS(2726), + [anon_sym_auto] = ACTIONS(2724), + [anon_sym_register] = ACTIONS(2724), + [anon_sym_inline] = ACTIONS(2724), + [anon_sym___inline] = ACTIONS(2724), + [anon_sym___inline__] = ACTIONS(2724), + [anon_sym___forceinline] = ACTIONS(2724), + [anon_sym_thread_local] = ACTIONS(2724), + [anon_sym___thread] = ACTIONS(2724), + [anon_sym_CG_EXTERN] = ACTIONS(2724), + [anon_sym_CG_INLINE] = ACTIONS(2724), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2724), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2724), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2724), + [anon_sym_IBOutlet] = ACTIONS(2724), + [anon_sym_IBInspectable] = ACTIONS(2724), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2724), + [anon_sym_NS_INLINE] = ACTIONS(2724), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2724), + [anon_sym_OBJC_EXPORT] = ACTIONS(2724), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2724), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2724), + [anon_sym_const] = ACTIONS(2724), + [anon_sym_constexpr] = ACTIONS(2724), + [anon_sym_volatile] = ACTIONS(2724), + [anon_sym_restrict] = ACTIONS(2724), + [anon_sym___restrict__] = ACTIONS(2724), + [anon_sym__Atomic] = ACTIONS(2724), + [anon_sym__Noreturn] = ACTIONS(2724), + [anon_sym__Nonnull] = ACTIONS(2724), + [anon_sym_nullable] = ACTIONS(2724), + [anon_sym__Complex] = ACTIONS(2724), + [anon_sym__Nullable] = ACTIONS(2724), + [anon_sym__Nullable_result] = ACTIONS(2724), + [anon_sym__Null_unspecified] = ACTIONS(2724), + [anon_sym___autoreleasing] = ACTIONS(2724), + [anon_sym___block] = ACTIONS(2724), + [anon_sym___bridge] = ACTIONS(2724), + [anon_sym___bridge_retained] = ACTIONS(2724), + [anon_sym___bridge_transfer] = ACTIONS(2724), + [anon_sym___complex] = ACTIONS(2724), + [anon_sym___const] = ACTIONS(2724), + [anon_sym___imag] = ACTIONS(2724), + [anon_sym___kindof] = ACTIONS(2724), + [anon_sym___nonnull] = ACTIONS(2724), + [anon_sym___nullable] = ACTIONS(2724), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2724), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2724), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2724), + [anon_sym___real] = ACTIONS(2724), + [anon_sym___strong] = ACTIONS(2724), + [anon_sym___unsafe_unretained] = ACTIONS(2724), + [anon_sym___unused] = ACTIONS(2724), + [anon_sym___weak] = ACTIONS(2724), + [anon_sym_alignas] = ACTIONS(2724), + [anon_sym__Alignas] = ACTIONS(2724), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), + [anon_sym_struct] = ACTIONS(2724), + [anon_sym_union] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2724), + [anon_sym_default] = ACTIONS(2724), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_do] = ACTIONS(2724), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_goto] = ACTIONS(2724), + [anon_sym_DASH_DASH] = ACTIONS(2726), + [anon_sym_PLUS_PLUS] = ACTIONS(2726), + [anon_sym_sizeof] = ACTIONS(2724), + [anon_sym___alignof__] = ACTIONS(2724), + [anon_sym___alignof] = ACTIONS(2724), + [anon_sym__alignof] = ACTIONS(2724), + [anon_sym_alignof] = ACTIONS(2724), + [anon_sym__Alignof] = ACTIONS(2724), + [anon_sym_offsetof] = ACTIONS(2724), + [anon_sym__Generic] = ACTIONS(2724), + [anon_sym_asm] = ACTIONS(2724), + [anon_sym___asm__] = ACTIONS(2724), + [anon_sym___asm] = ACTIONS(2724), + [sym_number_literal] = ACTIONS(2726), + [anon_sym_L_SQUOTE] = ACTIONS(2726), + [anon_sym_u_SQUOTE] = ACTIONS(2726), + [anon_sym_U_SQUOTE] = ACTIONS(2726), + [anon_sym_u8_SQUOTE] = ACTIONS(2726), + [anon_sym_SQUOTE] = ACTIONS(2726), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_DQUOTE] = ACTIONS(2726), + [anon_sym_L_DQUOTE] = ACTIONS(2726), + [anon_sym_u_DQUOTE] = ACTIONS(2726), + [anon_sym_U_DQUOTE] = ACTIONS(2726), + [anon_sym_u8_DQUOTE] = ACTIONS(2726), + [sym_true] = ACTIONS(2724), + [sym_false] = ACTIONS(2724), + [anon_sym_NULL] = ACTIONS(2724), + [anon_sym_nullptr] = ACTIONS(2724), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2724), + [anon_sym___typeof] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(2724), + [anon_sym_ATimport] = ACTIONS(2726), + [aux_sym_preproc_undef_token1] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(2724), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2724), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2724), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2724), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2724), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2724), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2724), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2724), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2724), + [anon_sym_NS_AVAILABLE] = ACTIONS(2724), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2724), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_API_AVAILABLE] = ACTIONS(2724), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_API_DEPRECATED] = ACTIONS(2724), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2724), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2724), + [anon_sym___deprecated_msg] = ACTIONS(2724), + [anon_sym___deprecated_enum_msg] = ACTIONS(2724), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2724), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2724), + [anon_sym_ATprotocol] = ACTIONS(2726), + [anon_sym_ATinterface] = ACTIONS(2726), + [anon_sym_ATimplementation] = ACTIONS(2726), + [anon_sym_ATcompatibility_alias] = ACTIONS(2726), + [anon_sym_ATtry] = ACTIONS(2726), + [anon_sym___try] = ACTIONS(2724), + [anon_sym_ATthrow] = ACTIONS(2726), + [anon_sym_ATselector] = ACTIONS(2726), + [anon_sym_ATavailable] = ACTIONS(2726), + [anon_sym___builtin_available] = ACTIONS(2724), + [anon_sym_va_arg] = ACTIONS(2724), + [anon_sym_ATencode] = ACTIONS(2726), + [anon_sym_ATsynchronized] = ACTIONS(2726), + [anon_sym_BOOL] = ACTIONS(2724), + [anon_sym_IMP] = ACTIONS(2724), + [anon_sym_SEL] = ACTIONS(2724), + [anon_sym_Class] = ACTIONS(2724), + [anon_sym_id] = ACTIONS(2724), + }, + [873] = { + [sym_identifier] = ACTIONS(2652), + [aux_sym_preproc_include_token1] = ACTIONS(2652), + [aux_sym_preproc_include_token2] = ACTIONS(2652), + [aux_sym_preproc_def_token1] = ACTIONS(2652), + [aux_sym_preproc_if_token1] = ACTIONS(2652), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2652), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2652), + [sym_preproc_directive] = ACTIONS(2652), + [anon_sym_LPAREN2] = ACTIONS(2654), + [anon_sym_BANG] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2654), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_STAR] = ACTIONS(2654), + [anon_sym_CARET] = ACTIONS(2654), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_SEMI] = ACTIONS(2654), + [anon_sym___extension__] = ACTIONS(2652), + [anon_sym_typedef] = ACTIONS(2652), + [anon_sym_extern] = ACTIONS(2652), + [anon_sym___attribute__] = ACTIONS(2652), + [anon_sym___attribute] = ACTIONS(2652), + [anon_sym_noreturn] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2654), + [anon_sym___declspec] = ACTIONS(2652), + [anon_sym___cdecl] = ACTIONS(2652), + [anon_sym___clrcall] = ACTIONS(2652), + [anon_sym___stdcall] = ACTIONS(2652), + [anon_sym___fastcall] = ACTIONS(2652), + [anon_sym___thiscall] = ACTIONS(2652), + [anon_sym___vectorcall] = ACTIONS(2652), + [anon_sym_LBRACE] = ACTIONS(2654), + [anon_sym_RBRACE] = ACTIONS(2654), + [anon_sym_signed] = ACTIONS(2652), + [anon_sym_unsigned] = ACTIONS(2652), + [anon_sym_long] = ACTIONS(2652), + [anon_sym_short] = ACTIONS(2652), + [anon_sym_static] = ACTIONS(2652), + [anon_sym_ATautoreleasepool] = ACTIONS(2654), + [anon_sym_auto] = ACTIONS(2652), + [anon_sym_register] = ACTIONS(2652), + [anon_sym_inline] = ACTIONS(2652), + [anon_sym___inline] = ACTIONS(2652), + [anon_sym___inline__] = ACTIONS(2652), + [anon_sym___forceinline] = ACTIONS(2652), + [anon_sym_thread_local] = ACTIONS(2652), + [anon_sym___thread] = ACTIONS(2652), + [anon_sym_CG_EXTERN] = ACTIONS(2652), + [anon_sym_CG_INLINE] = ACTIONS(2652), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2652), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2652), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2652), + [anon_sym_IBOutlet] = ACTIONS(2652), + [anon_sym_IBInspectable] = ACTIONS(2652), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2652), + [anon_sym_NS_INLINE] = ACTIONS(2652), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2652), + [anon_sym_OBJC_EXPORT] = ACTIONS(2652), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2652), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2652), + [anon_sym_const] = ACTIONS(2652), + [anon_sym_constexpr] = ACTIONS(2652), + [anon_sym_volatile] = ACTIONS(2652), + [anon_sym_restrict] = ACTIONS(2652), + [anon_sym___restrict__] = ACTIONS(2652), + [anon_sym__Atomic] = ACTIONS(2652), + [anon_sym__Noreturn] = ACTIONS(2652), + [anon_sym__Nonnull] = ACTIONS(2652), + [anon_sym_nullable] = ACTIONS(2652), + [anon_sym__Complex] = ACTIONS(2652), + [anon_sym__Nullable] = ACTIONS(2652), + [anon_sym__Nullable_result] = ACTIONS(2652), + [anon_sym__Null_unspecified] = ACTIONS(2652), + [anon_sym___autoreleasing] = ACTIONS(2652), + [anon_sym___block] = ACTIONS(2652), + [anon_sym___bridge] = ACTIONS(2652), + [anon_sym___bridge_retained] = ACTIONS(2652), + [anon_sym___bridge_transfer] = ACTIONS(2652), + [anon_sym___complex] = ACTIONS(2652), + [anon_sym___const] = ACTIONS(2652), + [anon_sym___imag] = ACTIONS(2652), + [anon_sym___kindof] = ACTIONS(2652), + [anon_sym___nonnull] = ACTIONS(2652), + [anon_sym___nullable] = ACTIONS(2652), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2652), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2652), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2652), + [anon_sym___real] = ACTIONS(2652), + [anon_sym___strong] = ACTIONS(2652), + [anon_sym___unsafe_unretained] = ACTIONS(2652), + [anon_sym___unused] = ACTIONS(2652), + [anon_sym___weak] = ACTIONS(2652), + [anon_sym_alignas] = ACTIONS(2652), + [anon_sym__Alignas] = ACTIONS(2652), + [sym_primitive_type] = ACTIONS(2652), + [anon_sym_enum] = ACTIONS(2652), + [anon_sym_struct] = ACTIONS(2652), + [anon_sym_union] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_switch] = ACTIONS(2652), + [anon_sym_case] = ACTIONS(2652), + [anon_sym_default] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_do] = ACTIONS(2652), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_in] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_break] = ACTIONS(2652), + [anon_sym_continue] = ACTIONS(2652), + [anon_sym_goto] = ACTIONS(2652), + [anon_sym_DASH_DASH] = ACTIONS(2654), + [anon_sym_PLUS_PLUS] = ACTIONS(2654), + [anon_sym_sizeof] = ACTIONS(2652), + [anon_sym___alignof__] = ACTIONS(2652), + [anon_sym___alignof] = ACTIONS(2652), + [anon_sym__alignof] = ACTIONS(2652), + [anon_sym_alignof] = ACTIONS(2652), + [anon_sym__Alignof] = ACTIONS(2652), + [anon_sym_offsetof] = ACTIONS(2652), + [anon_sym__Generic] = ACTIONS(2652), + [anon_sym_asm] = ACTIONS(2652), + [anon_sym___asm__] = ACTIONS(2652), + [anon_sym___asm] = ACTIONS(2652), + [sym_number_literal] = ACTIONS(2654), + [anon_sym_L_SQUOTE] = ACTIONS(2654), + [anon_sym_u_SQUOTE] = ACTIONS(2654), + [anon_sym_U_SQUOTE] = ACTIONS(2654), + [anon_sym_u8_SQUOTE] = ACTIONS(2654), + [anon_sym_SQUOTE] = ACTIONS(2654), + [anon_sym_AT] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2654), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2652), + [sym_false] = ACTIONS(2652), + [anon_sym_NULL] = ACTIONS(2652), + [anon_sym_nullptr] = ACTIONS(2652), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2652), + [anon_sym___typeof] = ACTIONS(2652), + [anon_sym_typeof] = ACTIONS(2652), + [anon_sym_ATimport] = ACTIONS(2654), + [aux_sym_preproc_undef_token1] = ACTIONS(2652), + [anon_sym_POUND] = ACTIONS(2652), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2652), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2652), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2652), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2652), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2652), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2652), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2652), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2652), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2652), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2652), + [anon_sym_NS_AVAILABLE] = ACTIONS(2652), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2652), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2652), + [anon_sym_API_AVAILABLE] = ACTIONS(2652), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2652), + [anon_sym_API_DEPRECATED] = ACTIONS(2652), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2652), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2652), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2652), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2652), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2652), + [anon_sym___deprecated_msg] = ACTIONS(2652), + [anon_sym___deprecated_enum_msg] = ACTIONS(2652), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2652), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2652), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2652), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2652), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2652), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2652), + [anon_sym_ATprotocol] = ACTIONS(2654), + [anon_sym_ATinterface] = ACTIONS(2654), + [anon_sym_ATimplementation] = ACTIONS(2654), + [anon_sym_ATcompatibility_alias] = ACTIONS(2654), + [anon_sym_ATtry] = ACTIONS(2654), + [anon_sym___try] = ACTIONS(2652), + [anon_sym_ATthrow] = ACTIONS(2654), + [anon_sym_ATselector] = ACTIONS(2654), + [anon_sym_ATavailable] = ACTIONS(2654), + [anon_sym___builtin_available] = ACTIONS(2652), + [anon_sym_va_arg] = ACTIONS(2652), + [anon_sym_ATencode] = ACTIONS(2654), + [anon_sym_ATsynchronized] = ACTIONS(2654), + [anon_sym_BOOL] = ACTIONS(2652), + [anon_sym_IMP] = ACTIONS(2652), + [anon_sym_SEL] = ACTIONS(2652), + [anon_sym_Class] = ACTIONS(2652), + [anon_sym_id] = ACTIONS(2652), + }, + [874] = { + [sym_identifier] = ACTIONS(2752), + [aux_sym_preproc_include_token1] = ACTIONS(2752), + [aux_sym_preproc_include_token2] = ACTIONS(2752), + [aux_sym_preproc_def_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token1] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2752), + [sym_preproc_directive] = ACTIONS(2752), + [anon_sym_LPAREN2] = ACTIONS(2754), + [anon_sym_BANG] = ACTIONS(2754), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_STAR] = ACTIONS(2754), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2754), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym___extension__] = ACTIONS(2752), + [anon_sym_typedef] = ACTIONS(2752), + [anon_sym_extern] = ACTIONS(2752), + [anon_sym___attribute__] = ACTIONS(2752), + [anon_sym___attribute] = ACTIONS(2752), + [anon_sym_noreturn] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym___declspec] = ACTIONS(2752), + [anon_sym___cdecl] = ACTIONS(2752), + [anon_sym___clrcall] = ACTIONS(2752), + [anon_sym___stdcall] = ACTIONS(2752), + [anon_sym___fastcall] = ACTIONS(2752), + [anon_sym___thiscall] = ACTIONS(2752), + [anon_sym___vectorcall] = ACTIONS(2752), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_RBRACE] = ACTIONS(2754), + [anon_sym_signed] = ACTIONS(2752), + [anon_sym_unsigned] = ACTIONS(2752), + [anon_sym_long] = ACTIONS(2752), + [anon_sym_short] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_ATautoreleasepool] = ACTIONS(2754), + [anon_sym_auto] = ACTIONS(2752), + [anon_sym_register] = ACTIONS(2752), + [anon_sym_inline] = ACTIONS(2752), + [anon_sym___inline] = ACTIONS(2752), + [anon_sym___inline__] = ACTIONS(2752), + [anon_sym___forceinline] = ACTIONS(2752), + [anon_sym_thread_local] = ACTIONS(2752), + [anon_sym___thread] = ACTIONS(2752), + [anon_sym_CG_EXTERN] = ACTIONS(2752), + [anon_sym_CG_INLINE] = ACTIONS(2752), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2752), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2752), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2752), + [anon_sym_IBOutlet] = ACTIONS(2752), + [anon_sym_IBInspectable] = ACTIONS(2752), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2752), + [anon_sym_NS_INLINE] = ACTIONS(2752), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2752), + [anon_sym_OBJC_EXPORT] = ACTIONS(2752), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2752), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2752), + [anon_sym_const] = ACTIONS(2752), + [anon_sym_constexpr] = ACTIONS(2752), + [anon_sym_volatile] = ACTIONS(2752), + [anon_sym_restrict] = ACTIONS(2752), + [anon_sym___restrict__] = ACTIONS(2752), + [anon_sym__Atomic] = ACTIONS(2752), + [anon_sym__Noreturn] = ACTIONS(2752), + [anon_sym__Nonnull] = ACTIONS(2752), + [anon_sym_nullable] = ACTIONS(2752), + [anon_sym__Complex] = ACTIONS(2752), + [anon_sym__Nullable] = ACTIONS(2752), + [anon_sym__Nullable_result] = ACTIONS(2752), + [anon_sym__Null_unspecified] = ACTIONS(2752), + [anon_sym___autoreleasing] = ACTIONS(2752), + [anon_sym___block] = ACTIONS(2752), + [anon_sym___bridge] = ACTIONS(2752), + [anon_sym___bridge_retained] = ACTIONS(2752), + [anon_sym___bridge_transfer] = ACTIONS(2752), + [anon_sym___complex] = ACTIONS(2752), + [anon_sym___const] = ACTIONS(2752), + [anon_sym___imag] = ACTIONS(2752), + [anon_sym___kindof] = ACTIONS(2752), + [anon_sym___nonnull] = ACTIONS(2752), + [anon_sym___nullable] = ACTIONS(2752), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2752), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2752), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2752), + [anon_sym___real] = ACTIONS(2752), + [anon_sym___strong] = ACTIONS(2752), + [anon_sym___unsafe_unretained] = ACTIONS(2752), + [anon_sym___unused] = ACTIONS(2752), + [anon_sym___weak] = ACTIONS(2752), + [anon_sym_alignas] = ACTIONS(2752), + [anon_sym__Alignas] = ACTIONS(2752), + [sym_primitive_type] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2752), + [anon_sym_union] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2752), + [anon_sym_case] = ACTIONS(2752), + [anon_sym_default] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_in] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_break] = ACTIONS(2752), + [anon_sym_continue] = ACTIONS(2752), + [anon_sym_goto] = ACTIONS(2752), + [anon_sym_DASH_DASH] = ACTIONS(2754), + [anon_sym_PLUS_PLUS] = ACTIONS(2754), + [anon_sym_sizeof] = ACTIONS(2752), + [anon_sym___alignof__] = ACTIONS(2752), + [anon_sym___alignof] = ACTIONS(2752), + [anon_sym__alignof] = ACTIONS(2752), + [anon_sym_alignof] = ACTIONS(2752), + [anon_sym__Alignof] = ACTIONS(2752), + [anon_sym_offsetof] = ACTIONS(2752), + [anon_sym__Generic] = ACTIONS(2752), + [anon_sym_asm] = ACTIONS(2752), + [anon_sym___asm__] = ACTIONS(2752), + [anon_sym___asm] = ACTIONS(2752), + [sym_number_literal] = ACTIONS(2754), + [anon_sym_L_SQUOTE] = ACTIONS(2754), + [anon_sym_u_SQUOTE] = ACTIONS(2754), + [anon_sym_U_SQUOTE] = ACTIONS(2754), + [anon_sym_u8_SQUOTE] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2754), + [anon_sym_AT] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2754), + [anon_sym_L_DQUOTE] = ACTIONS(2754), + [anon_sym_u_DQUOTE] = ACTIONS(2754), + [anon_sym_U_DQUOTE] = ACTIONS(2754), + [anon_sym_u8_DQUOTE] = ACTIONS(2754), + [sym_true] = ACTIONS(2752), + [sym_false] = ACTIONS(2752), + [anon_sym_NULL] = ACTIONS(2752), + [anon_sym_nullptr] = ACTIONS(2752), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2752), + [anon_sym___typeof] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(2752), + [anon_sym_ATimport] = ACTIONS(2754), + [aux_sym_preproc_undef_token1] = ACTIONS(2752), + [anon_sym_POUND] = ACTIONS(2752), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2752), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2752), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2752), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2752), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2752), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2752), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2752), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2752), + [anon_sym_NS_AVAILABLE] = ACTIONS(2752), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2752), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_API_AVAILABLE] = ACTIONS(2752), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_API_DEPRECATED] = ACTIONS(2752), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2752), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2752), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2752), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2752), + [anon_sym___deprecated_msg] = ACTIONS(2752), + [anon_sym___deprecated_enum_msg] = ACTIONS(2752), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2752), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2752), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2752), + [anon_sym_ATprotocol] = ACTIONS(2754), + [anon_sym_ATinterface] = ACTIONS(2754), + [anon_sym_ATimplementation] = ACTIONS(2754), + [anon_sym_ATcompatibility_alias] = ACTIONS(2754), + [anon_sym_ATtry] = ACTIONS(2754), + [anon_sym___try] = ACTIONS(2752), + [anon_sym_ATthrow] = ACTIONS(2754), + [anon_sym_ATselector] = ACTIONS(2754), + [anon_sym_ATavailable] = ACTIONS(2754), + [anon_sym___builtin_available] = ACTIONS(2752), + [anon_sym_va_arg] = ACTIONS(2752), + [anon_sym_ATencode] = ACTIONS(2754), + [anon_sym_ATsynchronized] = ACTIONS(2754), + [anon_sym_BOOL] = ACTIONS(2752), + [anon_sym_IMP] = ACTIONS(2752), + [anon_sym_SEL] = ACTIONS(2752), + [anon_sym_Class] = ACTIONS(2752), + [anon_sym_id] = ACTIONS(2752), + }, + [875] = { + [sym_identifier] = ACTIONS(2744), + [aux_sym_preproc_include_token1] = ACTIONS(2744), + [aux_sym_preproc_include_token2] = ACTIONS(2744), + [aux_sym_preproc_def_token1] = ACTIONS(2744), + [aux_sym_preproc_if_token1] = ACTIONS(2744), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2744), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2744), + [sym_preproc_directive] = ACTIONS(2744), + [anon_sym_LPAREN2] = ACTIONS(2746), + [anon_sym_BANG] = ACTIONS(2746), + [anon_sym_TILDE] = ACTIONS(2746), + [anon_sym_DASH] = ACTIONS(2744), + [anon_sym_PLUS] = ACTIONS(2744), + [anon_sym_STAR] = ACTIONS(2746), + [anon_sym_CARET] = ACTIONS(2746), + [anon_sym_AMP] = ACTIONS(2746), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym___extension__] = ACTIONS(2744), + [anon_sym_typedef] = ACTIONS(2744), + [anon_sym_extern] = ACTIONS(2744), + [anon_sym___attribute__] = ACTIONS(2744), + [anon_sym___attribute] = ACTIONS(2744), + [anon_sym_noreturn] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym___declspec] = ACTIONS(2744), + [anon_sym___cdecl] = ACTIONS(2744), + [anon_sym___clrcall] = ACTIONS(2744), + [anon_sym___stdcall] = ACTIONS(2744), + [anon_sym___fastcall] = ACTIONS(2744), + [anon_sym___thiscall] = ACTIONS(2744), + [anon_sym___vectorcall] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_RBRACE] = ACTIONS(2746), + [anon_sym_signed] = ACTIONS(2744), + [anon_sym_unsigned] = ACTIONS(2744), + [anon_sym_long] = ACTIONS(2744), + [anon_sym_short] = ACTIONS(2744), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_ATautoreleasepool] = ACTIONS(2746), + [anon_sym_auto] = ACTIONS(2744), + [anon_sym_register] = ACTIONS(2744), + [anon_sym_inline] = ACTIONS(2744), + [anon_sym___inline] = ACTIONS(2744), + [anon_sym___inline__] = ACTIONS(2744), + [anon_sym___forceinline] = ACTIONS(2744), + [anon_sym_thread_local] = ACTIONS(2744), + [anon_sym___thread] = ACTIONS(2744), + [anon_sym_CG_EXTERN] = ACTIONS(2744), + [anon_sym_CG_INLINE] = ACTIONS(2744), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2744), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2744), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2744), + [anon_sym_IBOutlet] = ACTIONS(2744), + [anon_sym_IBInspectable] = ACTIONS(2744), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2744), + [anon_sym_NS_INLINE] = ACTIONS(2744), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2744), + [anon_sym_OBJC_EXPORT] = ACTIONS(2744), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2744), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2744), + [anon_sym_const] = ACTIONS(2744), + [anon_sym_constexpr] = ACTIONS(2744), + [anon_sym_volatile] = ACTIONS(2744), + [anon_sym_restrict] = ACTIONS(2744), + [anon_sym___restrict__] = ACTIONS(2744), + [anon_sym__Atomic] = ACTIONS(2744), + [anon_sym__Noreturn] = ACTIONS(2744), + [anon_sym__Nonnull] = ACTIONS(2744), + [anon_sym_nullable] = ACTIONS(2744), + [anon_sym__Complex] = ACTIONS(2744), + [anon_sym__Nullable] = ACTIONS(2744), + [anon_sym__Nullable_result] = ACTIONS(2744), + [anon_sym__Null_unspecified] = ACTIONS(2744), + [anon_sym___autoreleasing] = ACTIONS(2744), + [anon_sym___block] = ACTIONS(2744), + [anon_sym___bridge] = ACTIONS(2744), + [anon_sym___bridge_retained] = ACTIONS(2744), + [anon_sym___bridge_transfer] = ACTIONS(2744), + [anon_sym___complex] = ACTIONS(2744), + [anon_sym___const] = ACTIONS(2744), + [anon_sym___imag] = ACTIONS(2744), + [anon_sym___kindof] = ACTIONS(2744), + [anon_sym___nonnull] = ACTIONS(2744), + [anon_sym___nullable] = ACTIONS(2744), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2744), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2744), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2744), + [anon_sym___real] = ACTIONS(2744), + [anon_sym___strong] = ACTIONS(2744), + [anon_sym___unsafe_unretained] = ACTIONS(2744), + [anon_sym___unused] = ACTIONS(2744), + [anon_sym___weak] = ACTIONS(2744), + [anon_sym_alignas] = ACTIONS(2744), + [anon_sym__Alignas] = ACTIONS(2744), + [sym_primitive_type] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), + [anon_sym_struct] = ACTIONS(2744), + [anon_sym_union] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_switch] = ACTIONS(2744), + [anon_sym_case] = ACTIONS(2744), + [anon_sym_default] = ACTIONS(2744), + [anon_sym_while] = ACTIONS(2744), + [anon_sym_do] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2744), + [anon_sym_return] = ACTIONS(2744), + [anon_sym_break] = ACTIONS(2744), + [anon_sym_continue] = ACTIONS(2744), + [anon_sym_goto] = ACTIONS(2744), + [anon_sym_DASH_DASH] = ACTIONS(2746), + [anon_sym_PLUS_PLUS] = ACTIONS(2746), + [anon_sym_sizeof] = ACTIONS(2744), + [anon_sym___alignof__] = ACTIONS(2744), + [anon_sym___alignof] = ACTIONS(2744), + [anon_sym__alignof] = ACTIONS(2744), + [anon_sym_alignof] = ACTIONS(2744), + [anon_sym__Alignof] = ACTIONS(2744), + [anon_sym_offsetof] = ACTIONS(2744), + [anon_sym__Generic] = ACTIONS(2744), + [anon_sym_asm] = ACTIONS(2744), + [anon_sym___asm__] = ACTIONS(2744), + [anon_sym___asm] = ACTIONS(2744), + [sym_number_literal] = ACTIONS(2746), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_AT] = ACTIONS(2744), + [anon_sym_DQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2746), + [anon_sym_u_DQUOTE] = ACTIONS(2746), + [anon_sym_U_DQUOTE] = ACTIONS(2746), + [anon_sym_u8_DQUOTE] = ACTIONS(2746), + [sym_true] = ACTIONS(2744), + [sym_false] = ACTIONS(2744), + [anon_sym_NULL] = ACTIONS(2744), + [anon_sym_nullptr] = ACTIONS(2744), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2744), + [anon_sym___typeof] = ACTIONS(2744), + [anon_sym_typeof] = ACTIONS(2744), + [anon_sym_ATimport] = ACTIONS(2746), + [aux_sym_preproc_undef_token1] = ACTIONS(2744), + [anon_sym_POUND] = ACTIONS(2744), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2744), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2744), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2744), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2744), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2744), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2744), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2744), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2744), + [anon_sym_NS_AVAILABLE] = ACTIONS(2744), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2744), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_API_AVAILABLE] = ACTIONS(2744), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_API_DEPRECATED] = ACTIONS(2744), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2744), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2744), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2744), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2744), + [anon_sym___deprecated_msg] = ACTIONS(2744), + [anon_sym___deprecated_enum_msg] = ACTIONS(2744), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2744), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2744), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2744), + [anon_sym_ATprotocol] = ACTIONS(2746), + [anon_sym_ATinterface] = ACTIONS(2746), + [anon_sym_ATimplementation] = ACTIONS(2746), + [anon_sym_ATcompatibility_alias] = ACTIONS(2746), + [anon_sym_ATtry] = ACTIONS(2746), + [anon_sym___try] = ACTIONS(2744), + [anon_sym_ATthrow] = ACTIONS(2746), + [anon_sym_ATselector] = ACTIONS(2746), + [anon_sym_ATavailable] = ACTIONS(2746), + [anon_sym___builtin_available] = ACTIONS(2744), + [anon_sym_va_arg] = ACTIONS(2744), + [anon_sym_ATencode] = ACTIONS(2746), + [anon_sym_ATsynchronized] = ACTIONS(2746), + [anon_sym_BOOL] = ACTIONS(2744), + [anon_sym_IMP] = ACTIONS(2744), + [anon_sym_SEL] = ACTIONS(2744), + [anon_sym_Class] = ACTIONS(2744), + [anon_sym_id] = ACTIONS(2744), + }, + [876] = { + [sym_identifier] = ACTIONS(2708), + [aux_sym_preproc_include_token1] = ACTIONS(2708), + [aux_sym_preproc_include_token2] = ACTIONS(2708), + [aux_sym_preproc_def_token1] = ACTIONS(2708), + [aux_sym_preproc_if_token1] = ACTIONS(2708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2708), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2708), + [sym_preproc_directive] = ACTIONS(2708), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_BANG] = ACTIONS(2710), + [anon_sym_TILDE] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_STAR] = ACTIONS(2710), + [anon_sym_CARET] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym___extension__] = ACTIONS(2708), + [anon_sym_typedef] = ACTIONS(2708), + [anon_sym_extern] = ACTIONS(2708), + [anon_sym___attribute__] = ACTIONS(2708), + [anon_sym___attribute] = ACTIONS(2708), + [anon_sym_noreturn] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2710), + [anon_sym___declspec] = ACTIONS(2708), + [anon_sym___cdecl] = ACTIONS(2708), + [anon_sym___clrcall] = ACTIONS(2708), + [anon_sym___stdcall] = ACTIONS(2708), + [anon_sym___fastcall] = ACTIONS(2708), + [anon_sym___thiscall] = ACTIONS(2708), + [anon_sym___vectorcall] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_signed] = ACTIONS(2708), + [anon_sym_unsigned] = ACTIONS(2708), + [anon_sym_long] = ACTIONS(2708), + [anon_sym_short] = ACTIONS(2708), + [anon_sym_static] = ACTIONS(2708), + [anon_sym_ATautoreleasepool] = ACTIONS(2710), + [anon_sym_auto] = ACTIONS(2708), + [anon_sym_register] = ACTIONS(2708), + [anon_sym_inline] = ACTIONS(2708), + [anon_sym___inline] = ACTIONS(2708), + [anon_sym___inline__] = ACTIONS(2708), + [anon_sym___forceinline] = ACTIONS(2708), + [anon_sym_thread_local] = ACTIONS(2708), + [anon_sym___thread] = ACTIONS(2708), + [anon_sym_CG_EXTERN] = ACTIONS(2708), + [anon_sym_CG_INLINE] = ACTIONS(2708), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2708), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2708), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2708), + [anon_sym_IBOutlet] = ACTIONS(2708), + [anon_sym_IBInspectable] = ACTIONS(2708), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2708), + [anon_sym_NS_INLINE] = ACTIONS(2708), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2708), + [anon_sym_OBJC_EXPORT] = ACTIONS(2708), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2708), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2708), + [anon_sym_const] = ACTIONS(2708), + [anon_sym_constexpr] = ACTIONS(2708), + [anon_sym_volatile] = ACTIONS(2708), + [anon_sym_restrict] = ACTIONS(2708), + [anon_sym___restrict__] = ACTIONS(2708), + [anon_sym__Atomic] = ACTIONS(2708), + [anon_sym__Noreturn] = ACTIONS(2708), + [anon_sym__Nonnull] = ACTIONS(2708), + [anon_sym_nullable] = ACTIONS(2708), + [anon_sym__Complex] = ACTIONS(2708), + [anon_sym__Nullable] = ACTIONS(2708), + [anon_sym__Nullable_result] = ACTIONS(2708), + [anon_sym__Null_unspecified] = ACTIONS(2708), + [anon_sym___autoreleasing] = ACTIONS(2708), + [anon_sym___block] = ACTIONS(2708), + [anon_sym___bridge] = ACTIONS(2708), + [anon_sym___bridge_retained] = ACTIONS(2708), + [anon_sym___bridge_transfer] = ACTIONS(2708), + [anon_sym___complex] = ACTIONS(2708), + [anon_sym___const] = ACTIONS(2708), + [anon_sym___imag] = ACTIONS(2708), + [anon_sym___kindof] = ACTIONS(2708), + [anon_sym___nonnull] = ACTIONS(2708), + [anon_sym___nullable] = ACTIONS(2708), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2708), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2708), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2708), + [anon_sym___real] = ACTIONS(2708), + [anon_sym___strong] = ACTIONS(2708), + [anon_sym___unsafe_unretained] = ACTIONS(2708), + [anon_sym___unused] = ACTIONS(2708), + [anon_sym___weak] = ACTIONS(2708), + [anon_sym_alignas] = ACTIONS(2708), + [anon_sym__Alignas] = ACTIONS(2708), + [sym_primitive_type] = ACTIONS(2708), + [anon_sym_enum] = ACTIONS(2708), + [anon_sym_struct] = ACTIONS(2708), + [anon_sym_union] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_switch] = ACTIONS(2708), + [anon_sym_case] = ACTIONS(2708), + [anon_sym_default] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_in] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_break] = ACTIONS(2708), + [anon_sym_continue] = ACTIONS(2708), + [anon_sym_goto] = ACTIONS(2708), + [anon_sym_DASH_DASH] = ACTIONS(2710), + [anon_sym_PLUS_PLUS] = ACTIONS(2710), + [anon_sym_sizeof] = ACTIONS(2708), + [anon_sym___alignof__] = ACTIONS(2708), + [anon_sym___alignof] = ACTIONS(2708), + [anon_sym__alignof] = ACTIONS(2708), + [anon_sym_alignof] = ACTIONS(2708), + [anon_sym__Alignof] = ACTIONS(2708), + [anon_sym_offsetof] = ACTIONS(2708), + [anon_sym__Generic] = ACTIONS(2708), + [anon_sym_asm] = ACTIONS(2708), + [anon_sym___asm__] = ACTIONS(2708), + [anon_sym___asm] = ACTIONS(2708), + [sym_number_literal] = ACTIONS(2710), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_AT] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2710), + [anon_sym_u_DQUOTE] = ACTIONS(2710), + [anon_sym_U_DQUOTE] = ACTIONS(2710), + [anon_sym_u8_DQUOTE] = ACTIONS(2710), + [sym_true] = ACTIONS(2708), + [sym_false] = ACTIONS(2708), + [anon_sym_NULL] = ACTIONS(2708), + [anon_sym_nullptr] = ACTIONS(2708), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2708), + [anon_sym___typeof] = ACTIONS(2708), + [anon_sym_typeof] = ACTIONS(2708), + [anon_sym_ATimport] = ACTIONS(2710), + [aux_sym_preproc_undef_token1] = ACTIONS(2708), + [anon_sym_POUND] = ACTIONS(2708), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2708), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2708), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2708), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2708), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2708), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2708), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2708), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2708), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2708), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2708), + [anon_sym_NS_AVAILABLE] = ACTIONS(2708), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2708), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2708), + [anon_sym_API_AVAILABLE] = ACTIONS(2708), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2708), + [anon_sym_API_DEPRECATED] = ACTIONS(2708), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2708), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2708), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2708), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2708), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2708), + [anon_sym___deprecated_msg] = ACTIONS(2708), + [anon_sym___deprecated_enum_msg] = ACTIONS(2708), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2708), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2708), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2708), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2708), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2708), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2708), + [anon_sym_ATprotocol] = ACTIONS(2710), + [anon_sym_ATinterface] = ACTIONS(2710), + [anon_sym_ATimplementation] = ACTIONS(2710), + [anon_sym_ATcompatibility_alias] = ACTIONS(2710), + [anon_sym_ATtry] = ACTIONS(2710), + [anon_sym___try] = ACTIONS(2708), + [anon_sym_ATthrow] = ACTIONS(2710), + [anon_sym_ATselector] = ACTIONS(2710), + [anon_sym_ATavailable] = ACTIONS(2710), + [anon_sym___builtin_available] = ACTIONS(2708), + [anon_sym_va_arg] = ACTIONS(2708), + [anon_sym_ATencode] = ACTIONS(2710), + [anon_sym_ATsynchronized] = ACTIONS(2710), + [anon_sym_BOOL] = ACTIONS(2708), + [anon_sym_IMP] = ACTIONS(2708), + [anon_sym_SEL] = ACTIONS(2708), + [anon_sym_Class] = ACTIONS(2708), + [anon_sym_id] = ACTIONS(2708), + }, + [877] = { + [sym_identifier] = ACTIONS(2848), + [aux_sym_preproc_include_token1] = ACTIONS(2848), + [aux_sym_preproc_include_token2] = ACTIONS(2848), + [aux_sym_preproc_def_token1] = ACTIONS(2848), + [aux_sym_preproc_if_token1] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2848), + [sym_preproc_directive] = ACTIONS(2848), + [anon_sym_LPAREN2] = ACTIONS(2850), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_TILDE] = ACTIONS(2850), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_STAR] = ACTIONS(2850), + [anon_sym_CARET] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2850), + [anon_sym___extension__] = ACTIONS(2848), + [anon_sym_typedef] = ACTIONS(2848), + [anon_sym_extern] = ACTIONS(2848), + [anon_sym___attribute__] = ACTIONS(2848), + [anon_sym___attribute] = ACTIONS(2848), + [anon_sym_noreturn] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2850), + [anon_sym___declspec] = ACTIONS(2848), + [anon_sym___cdecl] = ACTIONS(2848), + [anon_sym___clrcall] = ACTIONS(2848), + [anon_sym___stdcall] = ACTIONS(2848), + [anon_sym___fastcall] = ACTIONS(2848), + [anon_sym___thiscall] = ACTIONS(2848), + [anon_sym___vectorcall] = ACTIONS(2848), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_RBRACE] = ACTIONS(2850), + [anon_sym_signed] = ACTIONS(2848), + [anon_sym_unsigned] = ACTIONS(2848), + [anon_sym_long] = ACTIONS(2848), + [anon_sym_short] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_ATautoreleasepool] = ACTIONS(2850), + [anon_sym_auto] = ACTIONS(2848), + [anon_sym_register] = ACTIONS(2848), + [anon_sym_inline] = ACTIONS(2848), + [anon_sym___inline] = ACTIONS(2848), + [anon_sym___inline__] = ACTIONS(2848), + [anon_sym___forceinline] = ACTIONS(2848), + [anon_sym_thread_local] = ACTIONS(2848), + [anon_sym___thread] = ACTIONS(2848), + [anon_sym_CG_EXTERN] = ACTIONS(2848), + [anon_sym_CG_INLINE] = ACTIONS(2848), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2848), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2848), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2848), + [anon_sym_IBOutlet] = ACTIONS(2848), + [anon_sym_IBInspectable] = ACTIONS(2848), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2848), + [anon_sym_NS_INLINE] = ACTIONS(2848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2848), + [anon_sym_OBJC_EXPORT] = ACTIONS(2848), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2848), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2848), + [anon_sym_const] = ACTIONS(2848), + [anon_sym_constexpr] = ACTIONS(2848), + [anon_sym_volatile] = ACTIONS(2848), + [anon_sym_restrict] = ACTIONS(2848), + [anon_sym___restrict__] = ACTIONS(2848), + [anon_sym__Atomic] = ACTIONS(2848), + [anon_sym__Noreturn] = ACTIONS(2848), + [anon_sym__Nonnull] = ACTIONS(2848), + [anon_sym_nullable] = ACTIONS(2848), + [anon_sym__Complex] = ACTIONS(2848), + [anon_sym__Nullable] = ACTIONS(2848), + [anon_sym__Nullable_result] = ACTIONS(2848), + [anon_sym__Null_unspecified] = ACTIONS(2848), + [anon_sym___autoreleasing] = ACTIONS(2848), + [anon_sym___block] = ACTIONS(2848), + [anon_sym___bridge] = ACTIONS(2848), + [anon_sym___bridge_retained] = ACTIONS(2848), + [anon_sym___bridge_transfer] = ACTIONS(2848), + [anon_sym___complex] = ACTIONS(2848), + [anon_sym___const] = ACTIONS(2848), + [anon_sym___imag] = ACTIONS(2848), + [anon_sym___kindof] = ACTIONS(2848), + [anon_sym___nonnull] = ACTIONS(2848), + [anon_sym___nullable] = ACTIONS(2848), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2848), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2848), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2848), + [anon_sym___real] = ACTIONS(2848), + [anon_sym___strong] = ACTIONS(2848), + [anon_sym___unsafe_unretained] = ACTIONS(2848), + [anon_sym___unused] = ACTIONS(2848), + [anon_sym___weak] = ACTIONS(2848), + [anon_sym_alignas] = ACTIONS(2848), + [anon_sym__Alignas] = ACTIONS(2848), + [sym_primitive_type] = ACTIONS(2848), + [anon_sym_enum] = ACTIONS(2848), + [anon_sym_struct] = ACTIONS(2848), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_switch] = ACTIONS(2848), + [anon_sym_case] = ACTIONS(2848), + [anon_sym_default] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_in] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_break] = ACTIONS(2848), + [anon_sym_continue] = ACTIONS(2848), + [anon_sym_goto] = ACTIONS(2848), + [anon_sym_DASH_DASH] = ACTIONS(2850), + [anon_sym_PLUS_PLUS] = ACTIONS(2850), + [anon_sym_sizeof] = ACTIONS(2848), + [anon_sym___alignof__] = ACTIONS(2848), + [anon_sym___alignof] = ACTIONS(2848), + [anon_sym__alignof] = ACTIONS(2848), + [anon_sym_alignof] = ACTIONS(2848), + [anon_sym__Alignof] = ACTIONS(2848), + [anon_sym_offsetof] = ACTIONS(2848), + [anon_sym__Generic] = ACTIONS(2848), + [anon_sym_asm] = ACTIONS(2848), + [anon_sym___asm__] = ACTIONS(2848), + [anon_sym___asm] = ACTIONS(2848), + [sym_number_literal] = ACTIONS(2850), + [anon_sym_L_SQUOTE] = ACTIONS(2850), + [anon_sym_u_SQUOTE] = ACTIONS(2850), + [anon_sym_U_SQUOTE] = ACTIONS(2850), + [anon_sym_u8_SQUOTE] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_AT] = ACTIONS(2848), + [anon_sym_DQUOTE] = ACTIONS(2850), + [anon_sym_L_DQUOTE] = ACTIONS(2850), + [anon_sym_u_DQUOTE] = ACTIONS(2850), + [anon_sym_U_DQUOTE] = ACTIONS(2850), + [anon_sym_u8_DQUOTE] = ACTIONS(2850), + [sym_true] = ACTIONS(2848), + [sym_false] = ACTIONS(2848), + [anon_sym_NULL] = ACTIONS(2848), + [anon_sym_nullptr] = ACTIONS(2848), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2848), + [anon_sym___typeof] = ACTIONS(2848), + [anon_sym_typeof] = ACTIONS(2848), + [anon_sym_ATimport] = ACTIONS(2850), + [aux_sym_preproc_undef_token1] = ACTIONS(2848), + [anon_sym_POUND] = ACTIONS(2848), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2848), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2848), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2848), + [anon_sym_NS_AVAILABLE] = ACTIONS(2848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_API_AVAILABLE] = ACTIONS(2848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_API_DEPRECATED] = ACTIONS(2848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2848), + [anon_sym___deprecated_msg] = ACTIONS(2848), + [anon_sym___deprecated_enum_msg] = ACTIONS(2848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2848), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2848), + [anon_sym_ATprotocol] = ACTIONS(2850), + [anon_sym_ATinterface] = ACTIONS(2850), + [anon_sym_ATimplementation] = ACTIONS(2850), + [anon_sym_ATcompatibility_alias] = ACTIONS(2850), + [anon_sym_ATtry] = ACTIONS(2850), + [anon_sym___try] = ACTIONS(2848), + [anon_sym_ATthrow] = ACTIONS(2850), + [anon_sym_ATselector] = ACTIONS(2850), + [anon_sym_ATavailable] = ACTIONS(2850), + [anon_sym___builtin_available] = ACTIONS(2848), + [anon_sym_va_arg] = ACTIONS(2848), + [anon_sym_ATencode] = ACTIONS(2850), + [anon_sym_ATsynchronized] = ACTIONS(2850), + [anon_sym_BOOL] = ACTIONS(2848), + [anon_sym_IMP] = ACTIONS(2848), + [anon_sym_SEL] = ACTIONS(2848), + [anon_sym_Class] = ACTIONS(2848), + [anon_sym_id] = ACTIONS(2848), + }, + [878] = { + [sym_identifier] = ACTIONS(2582), + [aux_sym_preproc_include_token1] = ACTIONS(2582), + [aux_sym_preproc_include_token2] = ACTIONS(2582), + [aux_sym_preproc_def_token1] = ACTIONS(2582), + [aux_sym_preproc_if_token1] = ACTIONS(2582), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2582), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2582), + [sym_preproc_directive] = ACTIONS(2582), + [anon_sym_LPAREN2] = ACTIONS(2584), + [anon_sym_BANG] = ACTIONS(2584), + [anon_sym_TILDE] = ACTIONS(2584), + [anon_sym_DASH] = ACTIONS(2582), + [anon_sym_PLUS] = ACTIONS(2582), + [anon_sym_STAR] = ACTIONS(2584), + [anon_sym_CARET] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym___extension__] = ACTIONS(2582), + [anon_sym_typedef] = ACTIONS(2582), + [anon_sym_extern] = ACTIONS(2582), + [anon_sym___attribute__] = ACTIONS(2582), + [anon_sym___attribute] = ACTIONS(2582), + [anon_sym_noreturn] = ACTIONS(2582), + [anon_sym_LBRACK] = ACTIONS(2584), + [anon_sym___declspec] = ACTIONS(2582), + [anon_sym___cdecl] = ACTIONS(2582), + [anon_sym___clrcall] = ACTIONS(2582), + [anon_sym___stdcall] = ACTIONS(2582), + [anon_sym___fastcall] = ACTIONS(2582), + [anon_sym___thiscall] = ACTIONS(2582), + [anon_sym___vectorcall] = ACTIONS(2582), + [anon_sym_LBRACE] = ACTIONS(2584), + [anon_sym_RBRACE] = ACTIONS(2584), + [anon_sym_signed] = ACTIONS(2582), + [anon_sym_unsigned] = ACTIONS(2582), + [anon_sym_long] = ACTIONS(2582), + [anon_sym_short] = ACTIONS(2582), + [anon_sym_static] = ACTIONS(2582), + [anon_sym_ATautoreleasepool] = ACTIONS(2584), + [anon_sym_auto] = ACTIONS(2582), + [anon_sym_register] = ACTIONS(2582), + [anon_sym_inline] = ACTIONS(2582), + [anon_sym___inline] = ACTIONS(2582), + [anon_sym___inline__] = ACTIONS(2582), + [anon_sym___forceinline] = ACTIONS(2582), + [anon_sym_thread_local] = ACTIONS(2582), + [anon_sym___thread] = ACTIONS(2582), + [anon_sym_CG_EXTERN] = ACTIONS(2582), + [anon_sym_CG_INLINE] = ACTIONS(2582), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2582), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2582), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2582), + [anon_sym_IBOutlet] = ACTIONS(2582), + [anon_sym_IBInspectable] = ACTIONS(2582), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2582), + [anon_sym_NS_INLINE] = ACTIONS(2582), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2582), + [anon_sym_OBJC_EXPORT] = ACTIONS(2582), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2582), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2582), + [anon_sym_const] = ACTIONS(2582), + [anon_sym_constexpr] = ACTIONS(2582), + [anon_sym_volatile] = ACTIONS(2582), + [anon_sym_restrict] = ACTIONS(2582), + [anon_sym___restrict__] = ACTIONS(2582), + [anon_sym__Atomic] = ACTIONS(2582), + [anon_sym__Noreturn] = ACTIONS(2582), + [anon_sym__Nonnull] = ACTIONS(2582), + [anon_sym_nullable] = ACTIONS(2582), + [anon_sym__Complex] = ACTIONS(2582), + [anon_sym__Nullable] = ACTIONS(2582), + [anon_sym__Nullable_result] = ACTIONS(2582), + [anon_sym__Null_unspecified] = ACTIONS(2582), + [anon_sym___autoreleasing] = ACTIONS(2582), + [anon_sym___block] = ACTIONS(2582), + [anon_sym___bridge] = ACTIONS(2582), + [anon_sym___bridge_retained] = ACTIONS(2582), + [anon_sym___bridge_transfer] = ACTIONS(2582), + [anon_sym___complex] = ACTIONS(2582), + [anon_sym___const] = ACTIONS(2582), + [anon_sym___imag] = ACTIONS(2582), + [anon_sym___kindof] = ACTIONS(2582), + [anon_sym___nonnull] = ACTIONS(2582), + [anon_sym___nullable] = ACTIONS(2582), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2582), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2582), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2582), + [anon_sym___real] = ACTIONS(2582), + [anon_sym___strong] = ACTIONS(2582), + [anon_sym___unsafe_unretained] = ACTIONS(2582), + [anon_sym___unused] = ACTIONS(2582), + [anon_sym___weak] = ACTIONS(2582), + [anon_sym_alignas] = ACTIONS(2582), + [anon_sym__Alignas] = ACTIONS(2582), + [sym_primitive_type] = ACTIONS(2582), + [anon_sym_enum] = ACTIONS(2582), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2582), + [anon_sym_if] = ACTIONS(2582), + [anon_sym_switch] = ACTIONS(2582), + [anon_sym_case] = ACTIONS(2582), + [anon_sym_default] = ACTIONS(2582), + [anon_sym_while] = ACTIONS(2582), + [anon_sym_do] = ACTIONS(2582), + [anon_sym_for] = ACTIONS(2582), + [anon_sym_in] = ACTIONS(2582), + [anon_sym_return] = ACTIONS(2582), + [anon_sym_break] = ACTIONS(2582), + [anon_sym_continue] = ACTIONS(2582), + [anon_sym_goto] = ACTIONS(2582), + [anon_sym_DASH_DASH] = ACTIONS(2584), + [anon_sym_PLUS_PLUS] = ACTIONS(2584), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2582), + [anon_sym___alignof] = ACTIONS(2582), + [anon_sym__alignof] = ACTIONS(2582), + [anon_sym_alignof] = ACTIONS(2582), + [anon_sym__Alignof] = ACTIONS(2582), + [anon_sym_offsetof] = ACTIONS(2582), + [anon_sym__Generic] = ACTIONS(2582), + [anon_sym_asm] = ACTIONS(2582), + [anon_sym___asm__] = ACTIONS(2582), + [anon_sym___asm] = ACTIONS(2582), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2584), + [anon_sym_u_SQUOTE] = ACTIONS(2584), + [anon_sym_U_SQUOTE] = ACTIONS(2584), + [anon_sym_u8_SQUOTE] = ACTIONS(2584), + [anon_sym_SQUOTE] = ACTIONS(2584), + [anon_sym_AT] = ACTIONS(2582), + [anon_sym_DQUOTE] = ACTIONS(2584), + [anon_sym_L_DQUOTE] = ACTIONS(2584), + [anon_sym_u_DQUOTE] = ACTIONS(2584), + [anon_sym_U_DQUOTE] = ACTIONS(2584), + [anon_sym_u8_DQUOTE] = ACTIONS(2584), + [sym_true] = ACTIONS(2582), + [sym_false] = ACTIONS(2582), + [anon_sym_NULL] = ACTIONS(2582), + [anon_sym_nullptr] = ACTIONS(2582), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2582), + [anon_sym___typeof] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(2582), + [anon_sym_ATimport] = ACTIONS(2584), + [aux_sym_preproc_undef_token1] = ACTIONS(2582), + [anon_sym_POUND] = ACTIONS(2582), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2582), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2582), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2582), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2582), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2582), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2582), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2582), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2582), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2582), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2582), + [anon_sym_NS_AVAILABLE] = ACTIONS(2582), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2582), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2582), + [anon_sym_API_AVAILABLE] = ACTIONS(2582), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2582), + [anon_sym_API_DEPRECATED] = ACTIONS(2582), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2582), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2582), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2582), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2582), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2582), + [anon_sym___deprecated_msg] = ACTIONS(2582), + [anon_sym___deprecated_enum_msg] = ACTIONS(2582), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2582), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2582), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2582), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2582), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2582), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2582), + [anon_sym_ATprotocol] = ACTIONS(2584), + [anon_sym_ATinterface] = ACTIONS(2584), + [anon_sym_ATimplementation] = ACTIONS(2584), + [anon_sym_ATcompatibility_alias] = ACTIONS(2584), + [anon_sym_ATtry] = ACTIONS(2584), + [anon_sym___try] = ACTIONS(2582), + [anon_sym_ATthrow] = ACTIONS(2584), + [anon_sym_ATselector] = ACTIONS(2584), + [anon_sym_ATavailable] = ACTIONS(2584), + [anon_sym___builtin_available] = ACTIONS(2582), + [anon_sym_va_arg] = ACTIONS(2582), + [anon_sym_ATencode] = ACTIONS(2584), + [anon_sym_ATsynchronized] = ACTIONS(2584), + [anon_sym_BOOL] = ACTIONS(2582), + [anon_sym_IMP] = ACTIONS(2582), + [anon_sym_SEL] = ACTIONS(2582), + [anon_sym_Class] = ACTIONS(2582), + [anon_sym_id] = ACTIONS(2582), + }, + [879] = { + [sym_identifier] = ACTIONS(2624), + [aux_sym_preproc_include_token1] = ACTIONS(2624), + [aux_sym_preproc_include_token2] = ACTIONS(2624), + [aux_sym_preproc_def_token1] = ACTIONS(2624), + [aux_sym_preproc_if_token1] = ACTIONS(2624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2624), + [sym_preproc_directive] = ACTIONS(2624), + [anon_sym_LPAREN2] = ACTIONS(2626), + [anon_sym_BANG] = ACTIONS(2626), + [anon_sym_TILDE] = ACTIONS(2626), + [anon_sym_DASH] = ACTIONS(2624), + [anon_sym_PLUS] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2626), + [anon_sym_CARET] = ACTIONS(2626), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_SEMI] = ACTIONS(2626), + [anon_sym___extension__] = ACTIONS(2624), + [anon_sym_typedef] = ACTIONS(2624), + [anon_sym_extern] = ACTIONS(2624), + [anon_sym___attribute__] = ACTIONS(2624), + [anon_sym___attribute] = ACTIONS(2624), + [anon_sym_noreturn] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2626), + [anon_sym___declspec] = ACTIONS(2624), + [anon_sym___cdecl] = ACTIONS(2624), + [anon_sym___clrcall] = ACTIONS(2624), + [anon_sym___stdcall] = ACTIONS(2624), + [anon_sym___fastcall] = ACTIONS(2624), + [anon_sym___thiscall] = ACTIONS(2624), + [anon_sym___vectorcall] = ACTIONS(2624), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_RBRACE] = ACTIONS(2626), + [anon_sym_signed] = ACTIONS(2624), + [anon_sym_unsigned] = ACTIONS(2624), + [anon_sym_long] = ACTIONS(2624), + [anon_sym_short] = ACTIONS(2624), + [anon_sym_static] = ACTIONS(2624), + [anon_sym_ATautoreleasepool] = ACTIONS(2626), + [anon_sym_auto] = ACTIONS(2624), + [anon_sym_register] = ACTIONS(2624), + [anon_sym_inline] = ACTIONS(2624), + [anon_sym___inline] = ACTIONS(2624), + [anon_sym___inline__] = ACTIONS(2624), + [anon_sym___forceinline] = ACTIONS(2624), + [anon_sym_thread_local] = ACTIONS(2624), + [anon_sym___thread] = ACTIONS(2624), + [anon_sym_CG_EXTERN] = ACTIONS(2624), + [anon_sym_CG_INLINE] = ACTIONS(2624), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2624), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2624), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2624), + [anon_sym_IBOutlet] = ACTIONS(2624), + [anon_sym_IBInspectable] = ACTIONS(2624), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2624), + [anon_sym_NS_INLINE] = ACTIONS(2624), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2624), + [anon_sym_OBJC_EXPORT] = ACTIONS(2624), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2624), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2624), + [anon_sym_const] = ACTIONS(2624), + [anon_sym_constexpr] = ACTIONS(2624), + [anon_sym_volatile] = ACTIONS(2624), + [anon_sym_restrict] = ACTIONS(2624), + [anon_sym___restrict__] = ACTIONS(2624), + [anon_sym__Atomic] = ACTIONS(2624), + [anon_sym__Noreturn] = ACTIONS(2624), + [anon_sym__Nonnull] = ACTIONS(2624), + [anon_sym_nullable] = ACTIONS(2624), + [anon_sym__Complex] = ACTIONS(2624), + [anon_sym__Nullable] = ACTIONS(2624), + [anon_sym__Nullable_result] = ACTIONS(2624), + [anon_sym__Null_unspecified] = ACTIONS(2624), + [anon_sym___autoreleasing] = ACTIONS(2624), + [anon_sym___block] = ACTIONS(2624), + [anon_sym___bridge] = ACTIONS(2624), + [anon_sym___bridge_retained] = ACTIONS(2624), + [anon_sym___bridge_transfer] = ACTIONS(2624), + [anon_sym___complex] = ACTIONS(2624), + [anon_sym___const] = ACTIONS(2624), + [anon_sym___imag] = ACTIONS(2624), + [anon_sym___kindof] = ACTIONS(2624), + [anon_sym___nonnull] = ACTIONS(2624), + [anon_sym___nullable] = ACTIONS(2624), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2624), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2624), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2624), + [anon_sym___real] = ACTIONS(2624), + [anon_sym___strong] = ACTIONS(2624), + [anon_sym___unsafe_unretained] = ACTIONS(2624), + [anon_sym___unused] = ACTIONS(2624), + [anon_sym___weak] = ACTIONS(2624), + [anon_sym_alignas] = ACTIONS(2624), + [anon_sym__Alignas] = ACTIONS(2624), + [sym_primitive_type] = ACTIONS(2624), + [anon_sym_enum] = ACTIONS(2624), + [anon_sym_struct] = ACTIONS(2624), + [anon_sym_union] = ACTIONS(2624), + [anon_sym_if] = ACTIONS(2624), + [anon_sym_switch] = ACTIONS(2624), + [anon_sym_case] = ACTIONS(2624), + [anon_sym_default] = ACTIONS(2624), + [anon_sym_while] = ACTIONS(2624), + [anon_sym_do] = ACTIONS(2624), + [anon_sym_for] = ACTIONS(2624), + [anon_sym_in] = ACTIONS(2624), + [anon_sym_return] = ACTIONS(2624), + [anon_sym_break] = ACTIONS(2624), + [anon_sym_continue] = ACTIONS(2624), + [anon_sym_goto] = ACTIONS(2624), + [anon_sym_DASH_DASH] = ACTIONS(2626), + [anon_sym_PLUS_PLUS] = ACTIONS(2626), + [anon_sym_sizeof] = ACTIONS(2624), + [anon_sym___alignof__] = ACTIONS(2624), + [anon_sym___alignof] = ACTIONS(2624), + [anon_sym__alignof] = ACTIONS(2624), + [anon_sym_alignof] = ACTIONS(2624), + [anon_sym__Alignof] = ACTIONS(2624), + [anon_sym_offsetof] = ACTIONS(2624), + [anon_sym__Generic] = ACTIONS(2624), + [anon_sym_asm] = ACTIONS(2624), + [anon_sym___asm__] = ACTIONS(2624), + [anon_sym___asm] = ACTIONS(2624), + [sym_number_literal] = ACTIONS(2626), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_AT] = ACTIONS(2624), + [anon_sym_DQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2626), + [anon_sym_u_DQUOTE] = ACTIONS(2626), + [anon_sym_U_DQUOTE] = ACTIONS(2626), + [anon_sym_u8_DQUOTE] = ACTIONS(2626), + [sym_true] = ACTIONS(2624), + [sym_false] = ACTIONS(2624), + [anon_sym_NULL] = ACTIONS(2624), + [anon_sym_nullptr] = ACTIONS(2624), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2624), + [anon_sym___typeof] = ACTIONS(2624), + [anon_sym_typeof] = ACTIONS(2624), + [anon_sym_ATimport] = ACTIONS(2626), + [aux_sym_preproc_undef_token1] = ACTIONS(2624), + [anon_sym_POUND] = ACTIONS(2624), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2624), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2624), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2624), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2624), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2624), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2624), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2624), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2624), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2624), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2624), + [anon_sym_NS_AVAILABLE] = ACTIONS(2624), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2624), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2624), + [anon_sym_API_AVAILABLE] = ACTIONS(2624), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2624), + [anon_sym_API_DEPRECATED] = ACTIONS(2624), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2624), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2624), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2624), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2624), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2624), + [anon_sym___deprecated_msg] = ACTIONS(2624), + [anon_sym___deprecated_enum_msg] = ACTIONS(2624), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2624), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2624), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2624), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2624), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2624), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2624), + [anon_sym_ATprotocol] = ACTIONS(2626), + [anon_sym_ATinterface] = ACTIONS(2626), + [anon_sym_ATimplementation] = ACTIONS(2626), + [anon_sym_ATcompatibility_alias] = ACTIONS(2626), + [anon_sym_ATtry] = ACTIONS(2626), + [anon_sym___try] = ACTIONS(2624), + [anon_sym_ATthrow] = ACTIONS(2626), + [anon_sym_ATselector] = ACTIONS(2626), + [anon_sym_ATavailable] = ACTIONS(2626), + [anon_sym___builtin_available] = ACTIONS(2624), + [anon_sym_va_arg] = ACTIONS(2624), + [anon_sym_ATencode] = ACTIONS(2626), + [anon_sym_ATsynchronized] = ACTIONS(2626), + [anon_sym_BOOL] = ACTIONS(2624), + [anon_sym_IMP] = ACTIONS(2624), + [anon_sym_SEL] = ACTIONS(2624), + [anon_sym_Class] = ACTIONS(2624), + [anon_sym_id] = ACTIONS(2624), + }, + [880] = { + [sym_identifier] = ACTIONS(2712), + [aux_sym_preproc_include_token1] = ACTIONS(2712), + [aux_sym_preproc_include_token2] = ACTIONS(2712), + [aux_sym_preproc_def_token1] = ACTIONS(2712), + [aux_sym_preproc_if_token1] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2712), + [sym_preproc_directive] = ACTIONS(2712), + [anon_sym_LPAREN2] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_PLUS] = ACTIONS(2712), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_CARET] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym___extension__] = ACTIONS(2712), + [anon_sym_typedef] = ACTIONS(2712), + [anon_sym_extern] = ACTIONS(2712), + [anon_sym___attribute__] = ACTIONS(2712), + [anon_sym___attribute] = ACTIONS(2712), + [anon_sym_noreturn] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym___declspec] = ACTIONS(2712), + [anon_sym___cdecl] = ACTIONS(2712), + [anon_sym___clrcall] = ACTIONS(2712), + [anon_sym___stdcall] = ACTIONS(2712), + [anon_sym___fastcall] = ACTIONS(2712), + [anon_sym___thiscall] = ACTIONS(2712), + [anon_sym___vectorcall] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(2714), + [anon_sym_signed] = ACTIONS(2712), + [anon_sym_unsigned] = ACTIONS(2712), + [anon_sym_long] = ACTIONS(2712), + [anon_sym_short] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2712), + [anon_sym_ATautoreleasepool] = ACTIONS(2714), + [anon_sym_auto] = ACTIONS(2712), + [anon_sym_register] = ACTIONS(2712), + [anon_sym_inline] = ACTIONS(2712), + [anon_sym___inline] = ACTIONS(2712), + [anon_sym___inline__] = ACTIONS(2712), + [anon_sym___forceinline] = ACTIONS(2712), + [anon_sym_thread_local] = ACTIONS(2712), + [anon_sym___thread] = ACTIONS(2712), + [anon_sym_CG_EXTERN] = ACTIONS(2712), + [anon_sym_CG_INLINE] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2712), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2712), + [anon_sym_IBOutlet] = ACTIONS(2712), + [anon_sym_IBInspectable] = ACTIONS(2712), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2712), + [anon_sym_NS_INLINE] = ACTIONS(2712), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2712), + [anon_sym_OBJC_EXPORT] = ACTIONS(2712), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2712), + [anon_sym_const] = ACTIONS(2712), + [anon_sym_constexpr] = ACTIONS(2712), + [anon_sym_volatile] = ACTIONS(2712), + [anon_sym_restrict] = ACTIONS(2712), + [anon_sym___restrict__] = ACTIONS(2712), + [anon_sym__Atomic] = ACTIONS(2712), + [anon_sym__Noreturn] = ACTIONS(2712), + [anon_sym__Nonnull] = ACTIONS(2712), + [anon_sym_nullable] = ACTIONS(2712), + [anon_sym__Complex] = ACTIONS(2712), + [anon_sym__Nullable] = ACTIONS(2712), + [anon_sym__Nullable_result] = ACTIONS(2712), + [anon_sym__Null_unspecified] = ACTIONS(2712), + [anon_sym___autoreleasing] = ACTIONS(2712), + [anon_sym___block] = ACTIONS(2712), + [anon_sym___bridge] = ACTIONS(2712), + [anon_sym___bridge_retained] = ACTIONS(2712), + [anon_sym___bridge_transfer] = ACTIONS(2712), + [anon_sym___complex] = ACTIONS(2712), + [anon_sym___const] = ACTIONS(2712), + [anon_sym___imag] = ACTIONS(2712), + [anon_sym___kindof] = ACTIONS(2712), + [anon_sym___nonnull] = ACTIONS(2712), + [anon_sym___nullable] = ACTIONS(2712), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2712), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2712), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2712), + [anon_sym___real] = ACTIONS(2712), + [anon_sym___strong] = ACTIONS(2712), + [anon_sym___unsafe_unretained] = ACTIONS(2712), + [anon_sym___unused] = ACTIONS(2712), + [anon_sym___weak] = ACTIONS(2712), + [anon_sym_alignas] = ACTIONS(2712), + [anon_sym__Alignas] = ACTIONS(2712), + [sym_primitive_type] = ACTIONS(2712), + [anon_sym_enum] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_union] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_switch] = ACTIONS(2712), + [anon_sym_case] = ACTIONS(2712), + [anon_sym_default] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_do] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_goto] = ACTIONS(2712), + [anon_sym_DASH_DASH] = ACTIONS(2714), + [anon_sym_PLUS_PLUS] = ACTIONS(2714), + [anon_sym_sizeof] = ACTIONS(2712), + [anon_sym___alignof__] = ACTIONS(2712), + [anon_sym___alignof] = ACTIONS(2712), + [anon_sym__alignof] = ACTIONS(2712), + [anon_sym_alignof] = ACTIONS(2712), + [anon_sym__Alignof] = ACTIONS(2712), + [anon_sym_offsetof] = ACTIONS(2712), + [anon_sym__Generic] = ACTIONS(2712), + [anon_sym_asm] = ACTIONS(2712), + [anon_sym___asm__] = ACTIONS(2712), + [anon_sym___asm] = ACTIONS(2712), + [sym_number_literal] = ACTIONS(2714), + [anon_sym_L_SQUOTE] = ACTIONS(2714), + [anon_sym_u_SQUOTE] = ACTIONS(2714), + [anon_sym_U_SQUOTE] = ACTIONS(2714), + [anon_sym_u8_SQUOTE] = ACTIONS(2714), + [anon_sym_SQUOTE] = ACTIONS(2714), + [anon_sym_AT] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2714), + [anon_sym_L_DQUOTE] = ACTIONS(2714), + [anon_sym_u_DQUOTE] = ACTIONS(2714), + [anon_sym_U_DQUOTE] = ACTIONS(2714), + [anon_sym_u8_DQUOTE] = ACTIONS(2714), + [sym_true] = ACTIONS(2712), + [sym_false] = ACTIONS(2712), + [anon_sym_NULL] = ACTIONS(2712), + [anon_sym_nullptr] = ACTIONS(2712), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2712), + [anon_sym___typeof] = ACTIONS(2712), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_ATimport] = ACTIONS(2714), + [aux_sym_preproc_undef_token1] = ACTIONS(2712), + [anon_sym_POUND] = ACTIONS(2712), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2712), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2712), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2712), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2712), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE] = ACTIONS(2712), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_API_AVAILABLE] = ACTIONS(2712), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_API_DEPRECATED] = ACTIONS(2712), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2712), + [anon_sym___deprecated_msg] = ACTIONS(2712), + [anon_sym___deprecated_enum_msg] = ACTIONS(2712), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2712), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2712), + [anon_sym_ATprotocol] = ACTIONS(2714), + [anon_sym_ATinterface] = ACTIONS(2714), + [anon_sym_ATimplementation] = ACTIONS(2714), + [anon_sym_ATcompatibility_alias] = ACTIONS(2714), + [anon_sym_ATtry] = ACTIONS(2714), + [anon_sym___try] = ACTIONS(2712), + [anon_sym_ATthrow] = ACTIONS(2714), + [anon_sym_ATselector] = ACTIONS(2714), + [anon_sym_ATavailable] = ACTIONS(2714), + [anon_sym___builtin_available] = ACTIONS(2712), + [anon_sym_va_arg] = ACTIONS(2712), + [anon_sym_ATencode] = ACTIONS(2714), + [anon_sym_ATsynchronized] = ACTIONS(2714), + [anon_sym_BOOL] = ACTIONS(2712), + [anon_sym_IMP] = ACTIONS(2712), + [anon_sym_SEL] = ACTIONS(2712), + [anon_sym_Class] = ACTIONS(2712), + [anon_sym_id] = ACTIONS(2712), + }, + [881] = { + [sym_identifier] = ACTIONS(2724), + [aux_sym_preproc_include_token1] = ACTIONS(2724), + [aux_sym_preproc_include_token2] = ACTIONS(2724), + [aux_sym_preproc_def_token1] = ACTIONS(2724), + [aux_sym_preproc_if_token1] = ACTIONS(2724), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2724), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2724), + [sym_preproc_directive] = ACTIONS(2724), + [anon_sym_LPAREN2] = ACTIONS(2726), + [anon_sym_BANG] = ACTIONS(2726), + [anon_sym_TILDE] = ACTIONS(2726), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2726), + [anon_sym_CARET] = ACTIONS(2726), + [anon_sym_AMP] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym___extension__] = ACTIONS(2724), + [anon_sym_typedef] = ACTIONS(2724), + [anon_sym_extern] = ACTIONS(2724), + [anon_sym___attribute__] = ACTIONS(2724), + [anon_sym___attribute] = ACTIONS(2724), + [anon_sym_noreturn] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2726), + [anon_sym___declspec] = ACTIONS(2724), + [anon_sym___cdecl] = ACTIONS(2724), + [anon_sym___clrcall] = ACTIONS(2724), + [anon_sym___stdcall] = ACTIONS(2724), + [anon_sym___fastcall] = ACTIONS(2724), + [anon_sym___thiscall] = ACTIONS(2724), + [anon_sym___vectorcall] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2726), + [anon_sym_RBRACE] = ACTIONS(2726), + [anon_sym_signed] = ACTIONS(2724), + [anon_sym_unsigned] = ACTIONS(2724), + [anon_sym_long] = ACTIONS(2724), + [anon_sym_short] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2724), + [anon_sym_ATautoreleasepool] = ACTIONS(2726), + [anon_sym_auto] = ACTIONS(2724), + [anon_sym_register] = ACTIONS(2724), + [anon_sym_inline] = ACTIONS(2724), + [anon_sym___inline] = ACTIONS(2724), + [anon_sym___inline__] = ACTIONS(2724), + [anon_sym___forceinline] = ACTIONS(2724), + [anon_sym_thread_local] = ACTIONS(2724), + [anon_sym___thread] = ACTIONS(2724), + [anon_sym_CG_EXTERN] = ACTIONS(2724), + [anon_sym_CG_INLINE] = ACTIONS(2724), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2724), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2724), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2724), + [anon_sym_IBOutlet] = ACTIONS(2724), + [anon_sym_IBInspectable] = ACTIONS(2724), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2724), + [anon_sym_NS_INLINE] = ACTIONS(2724), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2724), + [anon_sym_OBJC_EXPORT] = ACTIONS(2724), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2724), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2724), + [anon_sym_const] = ACTIONS(2724), + [anon_sym_constexpr] = ACTIONS(2724), + [anon_sym_volatile] = ACTIONS(2724), + [anon_sym_restrict] = ACTIONS(2724), + [anon_sym___restrict__] = ACTIONS(2724), + [anon_sym__Atomic] = ACTIONS(2724), + [anon_sym__Noreturn] = ACTIONS(2724), + [anon_sym__Nonnull] = ACTIONS(2724), + [anon_sym_nullable] = ACTIONS(2724), + [anon_sym__Complex] = ACTIONS(2724), + [anon_sym__Nullable] = ACTIONS(2724), + [anon_sym__Nullable_result] = ACTIONS(2724), + [anon_sym__Null_unspecified] = ACTIONS(2724), + [anon_sym___autoreleasing] = ACTIONS(2724), + [anon_sym___block] = ACTIONS(2724), + [anon_sym___bridge] = ACTIONS(2724), + [anon_sym___bridge_retained] = ACTIONS(2724), + [anon_sym___bridge_transfer] = ACTIONS(2724), + [anon_sym___complex] = ACTIONS(2724), + [anon_sym___const] = ACTIONS(2724), + [anon_sym___imag] = ACTIONS(2724), + [anon_sym___kindof] = ACTIONS(2724), + [anon_sym___nonnull] = ACTIONS(2724), + [anon_sym___nullable] = ACTIONS(2724), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2724), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2724), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2724), + [anon_sym___real] = ACTIONS(2724), + [anon_sym___strong] = ACTIONS(2724), + [anon_sym___unsafe_unretained] = ACTIONS(2724), + [anon_sym___unused] = ACTIONS(2724), + [anon_sym___weak] = ACTIONS(2724), + [anon_sym_alignas] = ACTIONS(2724), + [anon_sym__Alignas] = ACTIONS(2724), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), + [anon_sym_struct] = ACTIONS(2724), + [anon_sym_union] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2724), + [anon_sym_default] = ACTIONS(2724), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_do] = ACTIONS(2724), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_goto] = ACTIONS(2724), + [anon_sym_DASH_DASH] = ACTIONS(2726), + [anon_sym_PLUS_PLUS] = ACTIONS(2726), + [anon_sym_sizeof] = ACTIONS(2724), + [anon_sym___alignof__] = ACTIONS(2724), + [anon_sym___alignof] = ACTIONS(2724), + [anon_sym__alignof] = ACTIONS(2724), + [anon_sym_alignof] = ACTIONS(2724), + [anon_sym__Alignof] = ACTIONS(2724), + [anon_sym_offsetof] = ACTIONS(2724), + [anon_sym__Generic] = ACTIONS(2724), + [anon_sym_asm] = ACTIONS(2724), + [anon_sym___asm__] = ACTIONS(2724), + [anon_sym___asm] = ACTIONS(2724), + [sym_number_literal] = ACTIONS(2726), + [anon_sym_L_SQUOTE] = ACTIONS(2726), + [anon_sym_u_SQUOTE] = ACTIONS(2726), + [anon_sym_U_SQUOTE] = ACTIONS(2726), + [anon_sym_u8_SQUOTE] = ACTIONS(2726), + [anon_sym_SQUOTE] = ACTIONS(2726), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_DQUOTE] = ACTIONS(2726), + [anon_sym_L_DQUOTE] = ACTIONS(2726), + [anon_sym_u_DQUOTE] = ACTIONS(2726), + [anon_sym_U_DQUOTE] = ACTIONS(2726), + [anon_sym_u8_DQUOTE] = ACTIONS(2726), + [sym_true] = ACTIONS(2724), + [sym_false] = ACTIONS(2724), + [anon_sym_NULL] = ACTIONS(2724), + [anon_sym_nullptr] = ACTIONS(2724), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2724), + [anon_sym___typeof] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(2724), + [anon_sym_ATimport] = ACTIONS(2726), + [aux_sym_preproc_undef_token1] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(2724), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2724), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2724), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2724), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2724), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2724), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2724), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2724), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2724), + [anon_sym_NS_AVAILABLE] = ACTIONS(2724), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2724), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_API_AVAILABLE] = ACTIONS(2724), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_API_DEPRECATED] = ACTIONS(2724), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2724), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2724), + [anon_sym___deprecated_msg] = ACTIONS(2724), + [anon_sym___deprecated_enum_msg] = ACTIONS(2724), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2724), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2724), + [anon_sym_ATprotocol] = ACTIONS(2726), + [anon_sym_ATinterface] = ACTIONS(2726), + [anon_sym_ATimplementation] = ACTIONS(2726), + [anon_sym_ATcompatibility_alias] = ACTIONS(2726), + [anon_sym_ATtry] = ACTIONS(2726), + [anon_sym___try] = ACTIONS(2724), + [anon_sym_ATthrow] = ACTIONS(2726), + [anon_sym_ATselector] = ACTIONS(2726), + [anon_sym_ATavailable] = ACTIONS(2726), + [anon_sym___builtin_available] = ACTIONS(2724), + [anon_sym_va_arg] = ACTIONS(2724), + [anon_sym_ATencode] = ACTIONS(2726), + [anon_sym_ATsynchronized] = ACTIONS(2726), + [anon_sym_BOOL] = ACTIONS(2724), + [anon_sym_IMP] = ACTIONS(2724), + [anon_sym_SEL] = ACTIONS(2724), + [anon_sym_Class] = ACTIONS(2724), + [anon_sym_id] = ACTIONS(2724), + }, + [882] = { + [sym_identifier] = ACTIONS(2612), + [aux_sym_preproc_include_token1] = ACTIONS(2612), + [aux_sym_preproc_include_token2] = ACTIONS(2612), + [aux_sym_preproc_def_token1] = ACTIONS(2612), + [aux_sym_preproc_if_token1] = ACTIONS(2612), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2612), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2612), + [sym_preproc_directive] = ACTIONS(2612), + [anon_sym_LPAREN2] = ACTIONS(2614), + [anon_sym_BANG] = ACTIONS(2614), + [anon_sym_TILDE] = ACTIONS(2614), + [anon_sym_DASH] = ACTIONS(2612), + [anon_sym_PLUS] = ACTIONS(2612), + [anon_sym_STAR] = ACTIONS(2614), + [anon_sym_CARET] = ACTIONS(2614), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_SEMI] = ACTIONS(2614), + [anon_sym___extension__] = ACTIONS(2612), + [anon_sym_typedef] = ACTIONS(2612), + [anon_sym_extern] = ACTIONS(2612), + [anon_sym___attribute__] = ACTIONS(2612), + [anon_sym___attribute] = ACTIONS(2612), + [anon_sym_noreturn] = ACTIONS(2612), + [anon_sym_LBRACK] = ACTIONS(2614), + [anon_sym___declspec] = ACTIONS(2612), + [anon_sym___cdecl] = ACTIONS(2612), + [anon_sym___clrcall] = ACTIONS(2612), + [anon_sym___stdcall] = ACTIONS(2612), + [anon_sym___fastcall] = ACTIONS(2612), + [anon_sym___thiscall] = ACTIONS(2612), + [anon_sym___vectorcall] = ACTIONS(2612), + [anon_sym_LBRACE] = ACTIONS(2614), + [anon_sym_RBRACE] = ACTIONS(2614), + [anon_sym_signed] = ACTIONS(2612), + [anon_sym_unsigned] = ACTIONS(2612), + [anon_sym_long] = ACTIONS(2612), + [anon_sym_short] = ACTIONS(2612), + [anon_sym_static] = ACTIONS(2612), + [anon_sym_ATautoreleasepool] = ACTIONS(2614), + [anon_sym_auto] = ACTIONS(2612), + [anon_sym_register] = ACTIONS(2612), + [anon_sym_inline] = ACTIONS(2612), + [anon_sym___inline] = ACTIONS(2612), + [anon_sym___inline__] = ACTIONS(2612), + [anon_sym___forceinline] = ACTIONS(2612), + [anon_sym_thread_local] = ACTIONS(2612), + [anon_sym___thread] = ACTIONS(2612), + [anon_sym_CG_EXTERN] = ACTIONS(2612), + [anon_sym_CG_INLINE] = ACTIONS(2612), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2612), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2612), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2612), + [anon_sym_IBOutlet] = ACTIONS(2612), + [anon_sym_IBInspectable] = ACTIONS(2612), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2612), + [anon_sym_NS_INLINE] = ACTIONS(2612), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2612), + [anon_sym_OBJC_EXPORT] = ACTIONS(2612), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2612), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2612), + [anon_sym_const] = ACTIONS(2612), + [anon_sym_constexpr] = ACTIONS(2612), + [anon_sym_volatile] = ACTIONS(2612), + [anon_sym_restrict] = ACTIONS(2612), + [anon_sym___restrict__] = ACTIONS(2612), + [anon_sym__Atomic] = ACTIONS(2612), + [anon_sym__Noreturn] = ACTIONS(2612), + [anon_sym__Nonnull] = ACTIONS(2612), + [anon_sym_nullable] = ACTIONS(2612), + [anon_sym__Complex] = ACTIONS(2612), + [anon_sym__Nullable] = ACTIONS(2612), + [anon_sym__Nullable_result] = ACTIONS(2612), + [anon_sym__Null_unspecified] = ACTIONS(2612), + [anon_sym___autoreleasing] = ACTIONS(2612), + [anon_sym___block] = ACTIONS(2612), + [anon_sym___bridge] = ACTIONS(2612), + [anon_sym___bridge_retained] = ACTIONS(2612), + [anon_sym___bridge_transfer] = ACTIONS(2612), + [anon_sym___complex] = ACTIONS(2612), + [anon_sym___const] = ACTIONS(2612), + [anon_sym___imag] = ACTIONS(2612), + [anon_sym___kindof] = ACTIONS(2612), + [anon_sym___nonnull] = ACTIONS(2612), + [anon_sym___nullable] = ACTIONS(2612), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2612), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2612), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2612), + [anon_sym___real] = ACTIONS(2612), + [anon_sym___strong] = ACTIONS(2612), + [anon_sym___unsafe_unretained] = ACTIONS(2612), + [anon_sym___unused] = ACTIONS(2612), + [anon_sym___weak] = ACTIONS(2612), + [anon_sym_alignas] = ACTIONS(2612), + [anon_sym__Alignas] = ACTIONS(2612), + [sym_primitive_type] = ACTIONS(2612), + [anon_sym_enum] = ACTIONS(2612), + [anon_sym_struct] = ACTIONS(2612), + [anon_sym_union] = ACTIONS(2612), + [anon_sym_if] = ACTIONS(2612), + [anon_sym_switch] = ACTIONS(2612), + [anon_sym_case] = ACTIONS(2612), + [anon_sym_default] = ACTIONS(2612), + [anon_sym_while] = ACTIONS(2612), + [anon_sym_do] = ACTIONS(2612), + [anon_sym_for] = ACTIONS(2612), + [anon_sym_in] = ACTIONS(2612), + [anon_sym_return] = ACTIONS(2612), + [anon_sym_break] = ACTIONS(2612), + [anon_sym_continue] = ACTIONS(2612), + [anon_sym_goto] = ACTIONS(2612), + [anon_sym_DASH_DASH] = ACTIONS(2614), + [anon_sym_PLUS_PLUS] = ACTIONS(2614), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2612), + [anon_sym___alignof] = ACTIONS(2612), + [anon_sym__alignof] = ACTIONS(2612), + [anon_sym_alignof] = ACTIONS(2612), + [anon_sym__Alignof] = ACTIONS(2612), + [anon_sym_offsetof] = ACTIONS(2612), + [anon_sym__Generic] = ACTIONS(2612), + [anon_sym_asm] = ACTIONS(2612), + [anon_sym___asm__] = ACTIONS(2612), + [anon_sym___asm] = ACTIONS(2612), + [sym_number_literal] = ACTIONS(2614), + [anon_sym_L_SQUOTE] = ACTIONS(2614), + [anon_sym_u_SQUOTE] = ACTIONS(2614), + [anon_sym_U_SQUOTE] = ACTIONS(2614), + [anon_sym_u8_SQUOTE] = ACTIONS(2614), + [anon_sym_SQUOTE] = ACTIONS(2614), + [anon_sym_AT] = ACTIONS(2612), + [anon_sym_DQUOTE] = ACTIONS(2614), + [anon_sym_L_DQUOTE] = ACTIONS(2614), + [anon_sym_u_DQUOTE] = ACTIONS(2614), + [anon_sym_U_DQUOTE] = ACTIONS(2614), + [anon_sym_u8_DQUOTE] = ACTIONS(2614), + [sym_true] = ACTIONS(2612), + [sym_false] = ACTIONS(2612), + [anon_sym_NULL] = ACTIONS(2612), + [anon_sym_nullptr] = ACTIONS(2612), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2612), + [anon_sym___typeof] = ACTIONS(2612), + [anon_sym_typeof] = ACTIONS(2612), + [anon_sym_ATimport] = ACTIONS(2614), + [aux_sym_preproc_undef_token1] = ACTIONS(2612), + [anon_sym_POUND] = ACTIONS(2612), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2612), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2612), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2612), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2612), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2612), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2612), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2612), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2612), + [anon_sym_NS_AVAILABLE] = ACTIONS(2612), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2612), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_API_AVAILABLE] = ACTIONS(2612), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_API_DEPRECATED] = ACTIONS(2612), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2612), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2612), + [anon_sym___deprecated_msg] = ACTIONS(2612), + [anon_sym___deprecated_enum_msg] = ACTIONS(2612), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2612), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2612), + [anon_sym_ATprotocol] = ACTIONS(2614), + [anon_sym_ATinterface] = ACTIONS(2614), + [anon_sym_ATimplementation] = ACTIONS(2614), + [anon_sym_ATcompatibility_alias] = ACTIONS(2614), + [anon_sym_ATtry] = ACTIONS(2614), + [anon_sym___try] = ACTIONS(2612), + [anon_sym_ATthrow] = ACTIONS(2614), + [anon_sym_ATselector] = ACTIONS(2614), + [anon_sym_ATavailable] = ACTIONS(2614), + [anon_sym___builtin_available] = ACTIONS(2612), + [anon_sym_va_arg] = ACTIONS(2612), + [anon_sym_ATencode] = ACTIONS(2614), + [anon_sym_ATsynchronized] = ACTIONS(2614), + [anon_sym_BOOL] = ACTIONS(2612), + [anon_sym_IMP] = ACTIONS(2612), + [anon_sym_SEL] = ACTIONS(2612), + [anon_sym_Class] = ACTIONS(2612), + [anon_sym_id] = ACTIONS(2612), + }, + [883] = { + [sym_identifier] = ACTIONS(2728), + [aux_sym_preproc_include_token1] = ACTIONS(2728), + [aux_sym_preproc_include_token2] = ACTIONS(2728), + [aux_sym_preproc_def_token1] = ACTIONS(2728), + [aux_sym_preproc_if_token1] = ACTIONS(2728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2728), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2728), + [sym_preproc_directive] = ACTIONS(2728), + [anon_sym_LPAREN2] = ACTIONS(2730), + [anon_sym_BANG] = ACTIONS(2730), + [anon_sym_TILDE] = ACTIONS(2730), + [anon_sym_DASH] = ACTIONS(2728), + [anon_sym_PLUS] = ACTIONS(2728), + [anon_sym_STAR] = ACTIONS(2730), + [anon_sym_CARET] = ACTIONS(2730), + [anon_sym_AMP] = ACTIONS(2730), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym___extension__] = ACTIONS(2728), + [anon_sym_typedef] = ACTIONS(2728), + [anon_sym_extern] = ACTIONS(2728), + [anon_sym___attribute__] = ACTIONS(2728), + [anon_sym___attribute] = ACTIONS(2728), + [anon_sym_noreturn] = ACTIONS(2728), + [anon_sym_LBRACK] = ACTIONS(2730), + [anon_sym___declspec] = ACTIONS(2728), + [anon_sym___cdecl] = ACTIONS(2728), + [anon_sym___clrcall] = ACTIONS(2728), + [anon_sym___stdcall] = ACTIONS(2728), + [anon_sym___fastcall] = ACTIONS(2728), + [anon_sym___thiscall] = ACTIONS(2728), + [anon_sym___vectorcall] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_RBRACE] = ACTIONS(2730), + [anon_sym_signed] = ACTIONS(2728), + [anon_sym_unsigned] = ACTIONS(2728), + [anon_sym_long] = ACTIONS(2728), + [anon_sym_short] = ACTIONS(2728), + [anon_sym_static] = ACTIONS(2728), + [anon_sym_ATautoreleasepool] = ACTIONS(2730), + [anon_sym_auto] = ACTIONS(2728), + [anon_sym_register] = ACTIONS(2728), + [anon_sym_inline] = ACTIONS(2728), + [anon_sym___inline] = ACTIONS(2728), + [anon_sym___inline__] = ACTIONS(2728), + [anon_sym___forceinline] = ACTIONS(2728), + [anon_sym_thread_local] = ACTIONS(2728), + [anon_sym___thread] = ACTIONS(2728), + [anon_sym_CG_EXTERN] = ACTIONS(2728), + [anon_sym_CG_INLINE] = ACTIONS(2728), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2728), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2728), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2728), + [anon_sym_IBOutlet] = ACTIONS(2728), + [anon_sym_IBInspectable] = ACTIONS(2728), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2728), + [anon_sym_NS_INLINE] = ACTIONS(2728), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2728), + [anon_sym_OBJC_EXPORT] = ACTIONS(2728), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2728), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2728), + [anon_sym_const] = ACTIONS(2728), + [anon_sym_constexpr] = ACTIONS(2728), + [anon_sym_volatile] = ACTIONS(2728), + [anon_sym_restrict] = ACTIONS(2728), + [anon_sym___restrict__] = ACTIONS(2728), + [anon_sym__Atomic] = ACTIONS(2728), + [anon_sym__Noreturn] = ACTIONS(2728), + [anon_sym__Nonnull] = ACTIONS(2728), + [anon_sym_nullable] = ACTIONS(2728), + [anon_sym__Complex] = ACTIONS(2728), + [anon_sym__Nullable] = ACTIONS(2728), + [anon_sym__Nullable_result] = ACTIONS(2728), + [anon_sym__Null_unspecified] = ACTIONS(2728), + [anon_sym___autoreleasing] = ACTIONS(2728), + [anon_sym___block] = ACTIONS(2728), + [anon_sym___bridge] = ACTIONS(2728), + [anon_sym___bridge_retained] = ACTIONS(2728), + [anon_sym___bridge_transfer] = ACTIONS(2728), + [anon_sym___complex] = ACTIONS(2728), + [anon_sym___const] = ACTIONS(2728), + [anon_sym___imag] = ACTIONS(2728), + [anon_sym___kindof] = ACTIONS(2728), + [anon_sym___nonnull] = ACTIONS(2728), + [anon_sym___nullable] = ACTIONS(2728), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2728), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2728), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2728), + [anon_sym___real] = ACTIONS(2728), + [anon_sym___strong] = ACTIONS(2728), + [anon_sym___unsafe_unretained] = ACTIONS(2728), + [anon_sym___unused] = ACTIONS(2728), + [anon_sym___weak] = ACTIONS(2728), + [anon_sym_alignas] = ACTIONS(2728), + [anon_sym__Alignas] = ACTIONS(2728), + [sym_primitive_type] = ACTIONS(2728), + [anon_sym_enum] = ACTIONS(2728), + [anon_sym_struct] = ACTIONS(2728), + [anon_sym_union] = ACTIONS(2728), + [anon_sym_if] = ACTIONS(2728), + [anon_sym_switch] = ACTIONS(2728), + [anon_sym_case] = ACTIONS(2728), + [anon_sym_default] = ACTIONS(2728), + [anon_sym_while] = ACTIONS(2728), + [anon_sym_do] = ACTIONS(2728), + [anon_sym_for] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2728), + [anon_sym_return] = ACTIONS(2728), + [anon_sym_break] = ACTIONS(2728), + [anon_sym_continue] = ACTIONS(2728), + [anon_sym_goto] = ACTIONS(2728), + [anon_sym_DASH_DASH] = ACTIONS(2730), + [anon_sym_PLUS_PLUS] = ACTIONS(2730), + [anon_sym_sizeof] = ACTIONS(2728), + [anon_sym___alignof__] = ACTIONS(2728), + [anon_sym___alignof] = ACTIONS(2728), + [anon_sym__alignof] = ACTIONS(2728), + [anon_sym_alignof] = ACTIONS(2728), + [anon_sym__Alignof] = ACTIONS(2728), + [anon_sym_offsetof] = ACTIONS(2728), + [anon_sym__Generic] = ACTIONS(2728), + [anon_sym_asm] = ACTIONS(2728), + [anon_sym___asm__] = ACTIONS(2728), + [anon_sym___asm] = ACTIONS(2728), + [sym_number_literal] = ACTIONS(2730), + [anon_sym_L_SQUOTE] = ACTIONS(2730), + [anon_sym_u_SQUOTE] = ACTIONS(2730), + [anon_sym_U_SQUOTE] = ACTIONS(2730), + [anon_sym_u8_SQUOTE] = ACTIONS(2730), + [anon_sym_SQUOTE] = ACTIONS(2730), + [anon_sym_AT] = ACTIONS(2728), + [anon_sym_DQUOTE] = ACTIONS(2730), + [anon_sym_L_DQUOTE] = ACTIONS(2730), + [anon_sym_u_DQUOTE] = ACTIONS(2730), + [anon_sym_U_DQUOTE] = ACTIONS(2730), + [anon_sym_u8_DQUOTE] = ACTIONS(2730), + [sym_true] = ACTIONS(2728), + [sym_false] = ACTIONS(2728), + [anon_sym_NULL] = ACTIONS(2728), + [anon_sym_nullptr] = ACTIONS(2728), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2728), + [anon_sym___typeof] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(2728), + [anon_sym_ATimport] = ACTIONS(2730), + [aux_sym_preproc_undef_token1] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(2728), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2728), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2728), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2728), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2728), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2728), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2728), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2728), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2728), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2728), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2728), + [anon_sym_NS_AVAILABLE] = ACTIONS(2728), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2728), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2728), + [anon_sym_API_AVAILABLE] = ACTIONS(2728), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2728), + [anon_sym_API_DEPRECATED] = ACTIONS(2728), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2728), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2728), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2728), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2728), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2728), + [anon_sym___deprecated_msg] = ACTIONS(2728), + [anon_sym___deprecated_enum_msg] = ACTIONS(2728), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2728), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2728), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2728), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2728), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2728), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2728), + [anon_sym_ATprotocol] = ACTIONS(2730), + [anon_sym_ATinterface] = ACTIONS(2730), + [anon_sym_ATimplementation] = ACTIONS(2730), + [anon_sym_ATcompatibility_alias] = ACTIONS(2730), + [anon_sym_ATtry] = ACTIONS(2730), + [anon_sym___try] = ACTIONS(2728), + [anon_sym_ATthrow] = ACTIONS(2730), + [anon_sym_ATselector] = ACTIONS(2730), + [anon_sym_ATavailable] = ACTIONS(2730), + [anon_sym___builtin_available] = ACTIONS(2728), + [anon_sym_va_arg] = ACTIONS(2728), + [anon_sym_ATencode] = ACTIONS(2730), + [anon_sym_ATsynchronized] = ACTIONS(2730), + [anon_sym_BOOL] = ACTIONS(2728), + [anon_sym_IMP] = ACTIONS(2728), + [anon_sym_SEL] = ACTIONS(2728), + [anon_sym_Class] = ACTIONS(2728), + [anon_sym_id] = ACTIONS(2728), + }, + [884] = { + [sym_identifier] = ACTIONS(2712), + [aux_sym_preproc_include_token1] = ACTIONS(2712), + [aux_sym_preproc_include_token2] = ACTIONS(2712), + [aux_sym_preproc_def_token1] = ACTIONS(2712), + [aux_sym_preproc_if_token1] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2712), + [sym_preproc_directive] = ACTIONS(2712), + [anon_sym_LPAREN2] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_PLUS] = ACTIONS(2712), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_CARET] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym___extension__] = ACTIONS(2712), + [anon_sym_typedef] = ACTIONS(2712), + [anon_sym_extern] = ACTIONS(2712), + [anon_sym___attribute__] = ACTIONS(2712), + [anon_sym___attribute] = ACTIONS(2712), + [anon_sym_noreturn] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym___declspec] = ACTIONS(2712), + [anon_sym___cdecl] = ACTIONS(2712), + [anon_sym___clrcall] = ACTIONS(2712), + [anon_sym___stdcall] = ACTIONS(2712), + [anon_sym___fastcall] = ACTIONS(2712), + [anon_sym___thiscall] = ACTIONS(2712), + [anon_sym___vectorcall] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(2714), + [anon_sym_signed] = ACTIONS(2712), + [anon_sym_unsigned] = ACTIONS(2712), + [anon_sym_long] = ACTIONS(2712), + [anon_sym_short] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2712), + [anon_sym_ATautoreleasepool] = ACTIONS(2714), + [anon_sym_auto] = ACTIONS(2712), + [anon_sym_register] = ACTIONS(2712), + [anon_sym_inline] = ACTIONS(2712), + [anon_sym___inline] = ACTIONS(2712), + [anon_sym___inline__] = ACTIONS(2712), + [anon_sym___forceinline] = ACTIONS(2712), + [anon_sym_thread_local] = ACTIONS(2712), + [anon_sym___thread] = ACTIONS(2712), + [anon_sym_CG_EXTERN] = ACTIONS(2712), + [anon_sym_CG_INLINE] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2712), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2712), + [anon_sym_IBOutlet] = ACTIONS(2712), + [anon_sym_IBInspectable] = ACTIONS(2712), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2712), + [anon_sym_NS_INLINE] = ACTIONS(2712), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2712), + [anon_sym_OBJC_EXPORT] = ACTIONS(2712), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2712), + [anon_sym_const] = ACTIONS(2712), + [anon_sym_constexpr] = ACTIONS(2712), + [anon_sym_volatile] = ACTIONS(2712), + [anon_sym_restrict] = ACTIONS(2712), + [anon_sym___restrict__] = ACTIONS(2712), + [anon_sym__Atomic] = ACTIONS(2712), + [anon_sym__Noreturn] = ACTIONS(2712), + [anon_sym__Nonnull] = ACTIONS(2712), + [anon_sym_nullable] = ACTIONS(2712), + [anon_sym__Complex] = ACTIONS(2712), + [anon_sym__Nullable] = ACTIONS(2712), + [anon_sym__Nullable_result] = ACTIONS(2712), + [anon_sym__Null_unspecified] = ACTIONS(2712), + [anon_sym___autoreleasing] = ACTIONS(2712), + [anon_sym___block] = ACTIONS(2712), + [anon_sym___bridge] = ACTIONS(2712), + [anon_sym___bridge_retained] = ACTIONS(2712), + [anon_sym___bridge_transfer] = ACTIONS(2712), + [anon_sym___complex] = ACTIONS(2712), + [anon_sym___const] = ACTIONS(2712), + [anon_sym___imag] = ACTIONS(2712), + [anon_sym___kindof] = ACTIONS(2712), + [anon_sym___nonnull] = ACTIONS(2712), + [anon_sym___nullable] = ACTIONS(2712), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2712), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2712), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2712), + [anon_sym___real] = ACTIONS(2712), + [anon_sym___strong] = ACTIONS(2712), + [anon_sym___unsafe_unretained] = ACTIONS(2712), + [anon_sym___unused] = ACTIONS(2712), + [anon_sym___weak] = ACTIONS(2712), + [anon_sym_alignas] = ACTIONS(2712), + [anon_sym__Alignas] = ACTIONS(2712), + [sym_primitive_type] = ACTIONS(2712), + [anon_sym_enum] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_union] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_switch] = ACTIONS(2712), + [anon_sym_case] = ACTIONS(2712), + [anon_sym_default] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_do] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_goto] = ACTIONS(2712), + [anon_sym_DASH_DASH] = ACTIONS(2714), + [anon_sym_PLUS_PLUS] = ACTIONS(2714), + [anon_sym_sizeof] = ACTIONS(2712), + [anon_sym___alignof__] = ACTIONS(2712), + [anon_sym___alignof] = ACTIONS(2712), + [anon_sym__alignof] = ACTIONS(2712), + [anon_sym_alignof] = ACTIONS(2712), + [anon_sym__Alignof] = ACTIONS(2712), + [anon_sym_offsetof] = ACTIONS(2712), + [anon_sym__Generic] = ACTIONS(2712), + [anon_sym_asm] = ACTIONS(2712), + [anon_sym___asm__] = ACTIONS(2712), + [anon_sym___asm] = ACTIONS(2712), + [sym_number_literal] = ACTIONS(2714), + [anon_sym_L_SQUOTE] = ACTIONS(2714), + [anon_sym_u_SQUOTE] = ACTIONS(2714), + [anon_sym_U_SQUOTE] = ACTIONS(2714), + [anon_sym_u8_SQUOTE] = ACTIONS(2714), + [anon_sym_SQUOTE] = ACTIONS(2714), + [anon_sym_AT] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2714), + [anon_sym_L_DQUOTE] = ACTIONS(2714), + [anon_sym_u_DQUOTE] = ACTIONS(2714), + [anon_sym_U_DQUOTE] = ACTIONS(2714), + [anon_sym_u8_DQUOTE] = ACTIONS(2714), + [sym_true] = ACTIONS(2712), + [sym_false] = ACTIONS(2712), + [anon_sym_NULL] = ACTIONS(2712), + [anon_sym_nullptr] = ACTIONS(2712), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2712), + [anon_sym___typeof] = ACTIONS(2712), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_ATimport] = ACTIONS(2714), + [aux_sym_preproc_undef_token1] = ACTIONS(2712), + [anon_sym_POUND] = ACTIONS(2712), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2712), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2712), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2712), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2712), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE] = ACTIONS(2712), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_API_AVAILABLE] = ACTIONS(2712), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_API_DEPRECATED] = ACTIONS(2712), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2712), + [anon_sym___deprecated_msg] = ACTIONS(2712), + [anon_sym___deprecated_enum_msg] = ACTIONS(2712), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2712), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2712), + [anon_sym_ATprotocol] = ACTIONS(2714), + [anon_sym_ATinterface] = ACTIONS(2714), + [anon_sym_ATimplementation] = ACTIONS(2714), + [anon_sym_ATcompatibility_alias] = ACTIONS(2714), + [anon_sym_ATtry] = ACTIONS(2714), + [anon_sym___try] = ACTIONS(2712), + [anon_sym_ATthrow] = ACTIONS(2714), + [anon_sym_ATselector] = ACTIONS(2714), + [anon_sym_ATavailable] = ACTIONS(2714), + [anon_sym___builtin_available] = ACTIONS(2712), + [anon_sym_va_arg] = ACTIONS(2712), + [anon_sym_ATencode] = ACTIONS(2714), + [anon_sym_ATsynchronized] = ACTIONS(2714), + [anon_sym_BOOL] = ACTIONS(2712), + [anon_sym_IMP] = ACTIONS(2712), + [anon_sym_SEL] = ACTIONS(2712), + [anon_sym_Class] = ACTIONS(2712), + [anon_sym_id] = ACTIONS(2712), + }, + [885] = { + [sym_identifier] = ACTIONS(2712), + [aux_sym_preproc_include_token1] = ACTIONS(2712), + [aux_sym_preproc_include_token2] = ACTIONS(2712), + [aux_sym_preproc_def_token1] = ACTIONS(2712), + [aux_sym_preproc_if_token1] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2712), + [sym_preproc_directive] = ACTIONS(2712), + [anon_sym_LPAREN2] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_PLUS] = ACTIONS(2712), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_CARET] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym___extension__] = ACTIONS(2712), + [anon_sym_typedef] = ACTIONS(2712), + [anon_sym_extern] = ACTIONS(2712), + [anon_sym___attribute__] = ACTIONS(2712), + [anon_sym___attribute] = ACTIONS(2712), + [anon_sym_noreturn] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym___declspec] = ACTIONS(2712), + [anon_sym___cdecl] = ACTIONS(2712), + [anon_sym___clrcall] = ACTIONS(2712), + [anon_sym___stdcall] = ACTIONS(2712), + [anon_sym___fastcall] = ACTIONS(2712), + [anon_sym___thiscall] = ACTIONS(2712), + [anon_sym___vectorcall] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(2714), + [anon_sym_signed] = ACTIONS(2712), + [anon_sym_unsigned] = ACTIONS(2712), + [anon_sym_long] = ACTIONS(2712), + [anon_sym_short] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2712), + [anon_sym_ATautoreleasepool] = ACTIONS(2714), + [anon_sym_auto] = ACTIONS(2712), + [anon_sym_register] = ACTIONS(2712), + [anon_sym_inline] = ACTIONS(2712), + [anon_sym___inline] = ACTIONS(2712), + [anon_sym___inline__] = ACTIONS(2712), + [anon_sym___forceinline] = ACTIONS(2712), + [anon_sym_thread_local] = ACTIONS(2712), + [anon_sym___thread] = ACTIONS(2712), + [anon_sym_CG_EXTERN] = ACTIONS(2712), + [anon_sym_CG_INLINE] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2712), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2712), + [anon_sym_IBOutlet] = ACTIONS(2712), + [anon_sym_IBInspectable] = ACTIONS(2712), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2712), + [anon_sym_NS_INLINE] = ACTIONS(2712), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2712), + [anon_sym_OBJC_EXPORT] = ACTIONS(2712), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2712), + [anon_sym_const] = ACTIONS(2712), + [anon_sym_constexpr] = ACTIONS(2712), + [anon_sym_volatile] = ACTIONS(2712), + [anon_sym_restrict] = ACTIONS(2712), + [anon_sym___restrict__] = ACTIONS(2712), + [anon_sym__Atomic] = ACTIONS(2712), + [anon_sym__Noreturn] = ACTIONS(2712), + [anon_sym__Nonnull] = ACTIONS(2712), + [anon_sym_nullable] = ACTIONS(2712), + [anon_sym__Complex] = ACTIONS(2712), + [anon_sym__Nullable] = ACTIONS(2712), + [anon_sym__Nullable_result] = ACTIONS(2712), + [anon_sym__Null_unspecified] = ACTIONS(2712), + [anon_sym___autoreleasing] = ACTIONS(2712), + [anon_sym___block] = ACTIONS(2712), + [anon_sym___bridge] = ACTIONS(2712), + [anon_sym___bridge_retained] = ACTIONS(2712), + [anon_sym___bridge_transfer] = ACTIONS(2712), + [anon_sym___complex] = ACTIONS(2712), + [anon_sym___const] = ACTIONS(2712), + [anon_sym___imag] = ACTIONS(2712), + [anon_sym___kindof] = ACTIONS(2712), + [anon_sym___nonnull] = ACTIONS(2712), + [anon_sym___nullable] = ACTIONS(2712), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2712), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2712), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2712), + [anon_sym___real] = ACTIONS(2712), + [anon_sym___strong] = ACTIONS(2712), + [anon_sym___unsafe_unretained] = ACTIONS(2712), + [anon_sym___unused] = ACTIONS(2712), + [anon_sym___weak] = ACTIONS(2712), + [anon_sym_alignas] = ACTIONS(2712), + [anon_sym__Alignas] = ACTIONS(2712), + [sym_primitive_type] = ACTIONS(2712), + [anon_sym_enum] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_union] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_switch] = ACTIONS(2712), + [anon_sym_case] = ACTIONS(2712), + [anon_sym_default] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_do] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_goto] = ACTIONS(2712), + [anon_sym_DASH_DASH] = ACTIONS(2714), + [anon_sym_PLUS_PLUS] = ACTIONS(2714), + [anon_sym_sizeof] = ACTIONS(2712), + [anon_sym___alignof__] = ACTIONS(2712), + [anon_sym___alignof] = ACTIONS(2712), + [anon_sym__alignof] = ACTIONS(2712), + [anon_sym_alignof] = ACTIONS(2712), + [anon_sym__Alignof] = ACTIONS(2712), + [anon_sym_offsetof] = ACTIONS(2712), + [anon_sym__Generic] = ACTIONS(2712), + [anon_sym_asm] = ACTIONS(2712), + [anon_sym___asm__] = ACTIONS(2712), + [anon_sym___asm] = ACTIONS(2712), + [sym_number_literal] = ACTIONS(2714), + [anon_sym_L_SQUOTE] = ACTIONS(2714), + [anon_sym_u_SQUOTE] = ACTIONS(2714), + [anon_sym_U_SQUOTE] = ACTIONS(2714), + [anon_sym_u8_SQUOTE] = ACTIONS(2714), + [anon_sym_SQUOTE] = ACTIONS(2714), + [anon_sym_AT] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2714), + [anon_sym_L_DQUOTE] = ACTIONS(2714), + [anon_sym_u_DQUOTE] = ACTIONS(2714), + [anon_sym_U_DQUOTE] = ACTIONS(2714), + [anon_sym_u8_DQUOTE] = ACTIONS(2714), + [sym_true] = ACTIONS(2712), + [sym_false] = ACTIONS(2712), + [anon_sym_NULL] = ACTIONS(2712), + [anon_sym_nullptr] = ACTIONS(2712), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2712), + [anon_sym___typeof] = ACTIONS(2712), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_ATimport] = ACTIONS(2714), + [aux_sym_preproc_undef_token1] = ACTIONS(2712), + [anon_sym_POUND] = ACTIONS(2712), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2712), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2712), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2712), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2712), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE] = ACTIONS(2712), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_API_AVAILABLE] = ACTIONS(2712), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_API_DEPRECATED] = ACTIONS(2712), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2712), + [anon_sym___deprecated_msg] = ACTIONS(2712), + [anon_sym___deprecated_enum_msg] = ACTIONS(2712), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2712), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2712), + [anon_sym_ATprotocol] = ACTIONS(2714), + [anon_sym_ATinterface] = ACTIONS(2714), + [anon_sym_ATimplementation] = ACTIONS(2714), + [anon_sym_ATcompatibility_alias] = ACTIONS(2714), + [anon_sym_ATtry] = ACTIONS(2714), + [anon_sym___try] = ACTIONS(2712), + [anon_sym_ATthrow] = ACTIONS(2714), + [anon_sym_ATselector] = ACTIONS(2714), + [anon_sym_ATavailable] = ACTIONS(2714), + [anon_sym___builtin_available] = ACTIONS(2712), + [anon_sym_va_arg] = ACTIONS(2712), + [anon_sym_ATencode] = ACTIONS(2714), + [anon_sym_ATsynchronized] = ACTIONS(2714), + [anon_sym_BOOL] = ACTIONS(2712), + [anon_sym_IMP] = ACTIONS(2712), + [anon_sym_SEL] = ACTIONS(2712), + [anon_sym_Class] = ACTIONS(2712), + [anon_sym_id] = ACTIONS(2712), + }, + [886] = { + [sym_identifier] = ACTIONS(2606), + [aux_sym_preproc_include_token1] = ACTIONS(2606), + [aux_sym_preproc_include_token2] = ACTIONS(2606), + [aux_sym_preproc_def_token1] = ACTIONS(2606), + [aux_sym_preproc_if_token1] = ACTIONS(2606), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2606), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2606), + [sym_preproc_directive] = ACTIONS(2606), + [anon_sym_LPAREN2] = ACTIONS(2609), + [anon_sym_BANG] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2606), + [anon_sym_PLUS] = ACTIONS(2606), + [anon_sym_STAR] = ACTIONS(2609), + [anon_sym_CARET] = ACTIONS(2609), + [anon_sym_AMP] = ACTIONS(2609), + [anon_sym_SEMI] = ACTIONS(2609), + [anon_sym___extension__] = ACTIONS(2606), + [anon_sym_typedef] = ACTIONS(2606), + [anon_sym_extern] = ACTIONS(2606), + [anon_sym___attribute__] = ACTIONS(2606), + [anon_sym___attribute] = ACTIONS(2606), + [anon_sym_noreturn] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(2609), + [anon_sym___declspec] = ACTIONS(2606), + [anon_sym___cdecl] = ACTIONS(2606), + [anon_sym___clrcall] = ACTIONS(2606), + [anon_sym___stdcall] = ACTIONS(2606), + [anon_sym___fastcall] = ACTIONS(2606), + [anon_sym___thiscall] = ACTIONS(2606), + [anon_sym___vectorcall] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2609), + [anon_sym_RBRACE] = ACTIONS(2609), + [anon_sym_signed] = ACTIONS(2606), + [anon_sym_unsigned] = ACTIONS(2606), + [anon_sym_long] = ACTIONS(2606), + [anon_sym_short] = ACTIONS(2606), + [anon_sym_static] = ACTIONS(2606), + [anon_sym_ATautoreleasepool] = ACTIONS(2609), + [anon_sym_auto] = ACTIONS(2606), + [anon_sym_register] = ACTIONS(2606), + [anon_sym_inline] = ACTIONS(2606), + [anon_sym___inline] = ACTIONS(2606), + [anon_sym___inline__] = ACTIONS(2606), + [anon_sym___forceinline] = ACTIONS(2606), + [anon_sym_thread_local] = ACTIONS(2606), + [anon_sym___thread] = ACTIONS(2606), + [anon_sym_CG_EXTERN] = ACTIONS(2606), + [anon_sym_CG_INLINE] = ACTIONS(2606), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2606), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2606), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2606), + [anon_sym_IBOutlet] = ACTIONS(2606), + [anon_sym_IBInspectable] = ACTIONS(2606), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2606), + [anon_sym_NS_INLINE] = ACTIONS(2606), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2606), + [anon_sym_OBJC_EXPORT] = ACTIONS(2606), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2606), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2606), + [anon_sym_const] = ACTIONS(2606), + [anon_sym_constexpr] = ACTIONS(2606), + [anon_sym_volatile] = ACTIONS(2606), + [anon_sym_restrict] = ACTIONS(2606), + [anon_sym___restrict__] = ACTIONS(2606), + [anon_sym__Atomic] = ACTIONS(2606), + [anon_sym__Noreturn] = ACTIONS(2606), + [anon_sym__Nonnull] = ACTIONS(2606), + [anon_sym_nullable] = ACTIONS(2606), + [anon_sym__Complex] = ACTIONS(2606), + [anon_sym__Nullable] = ACTIONS(2606), + [anon_sym__Nullable_result] = ACTIONS(2606), + [anon_sym__Null_unspecified] = ACTIONS(2606), + [anon_sym___autoreleasing] = ACTIONS(2606), + [anon_sym___block] = ACTIONS(2606), + [anon_sym___bridge] = ACTIONS(2606), + [anon_sym___bridge_retained] = ACTIONS(2606), + [anon_sym___bridge_transfer] = ACTIONS(2606), + [anon_sym___complex] = ACTIONS(2606), + [anon_sym___const] = ACTIONS(2606), + [anon_sym___imag] = ACTIONS(2606), + [anon_sym___kindof] = ACTIONS(2606), + [anon_sym___nonnull] = ACTIONS(2606), + [anon_sym___nullable] = ACTIONS(2606), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2606), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2606), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2606), + [anon_sym___real] = ACTIONS(2606), + [anon_sym___strong] = ACTIONS(2606), + [anon_sym___unsafe_unretained] = ACTIONS(2606), + [anon_sym___unused] = ACTIONS(2606), + [anon_sym___weak] = ACTIONS(2606), + [anon_sym_alignas] = ACTIONS(2606), + [anon_sym__Alignas] = ACTIONS(2606), + [sym_primitive_type] = ACTIONS(2606), + [anon_sym_enum] = ACTIONS(2606), + [anon_sym_struct] = ACTIONS(2606), + [anon_sym_union] = ACTIONS(2606), + [anon_sym_if] = ACTIONS(2606), + [anon_sym_switch] = ACTIONS(2606), + [anon_sym_case] = ACTIONS(2606), + [anon_sym_default] = ACTIONS(2606), + [anon_sym_while] = ACTIONS(2606), + [anon_sym_do] = ACTIONS(2606), + [anon_sym_for] = ACTIONS(2606), + [anon_sym_in] = ACTIONS(2606), + [anon_sym_return] = ACTIONS(2606), + [anon_sym_break] = ACTIONS(2606), + [anon_sym_continue] = ACTIONS(2606), + [anon_sym_goto] = ACTIONS(2606), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2606), + [anon_sym___alignof__] = ACTIONS(2606), + [anon_sym___alignof] = ACTIONS(2606), + [anon_sym__alignof] = ACTIONS(2606), + [anon_sym_alignof] = ACTIONS(2606), + [anon_sym__Alignof] = ACTIONS(2606), + [anon_sym_offsetof] = ACTIONS(2606), + [anon_sym__Generic] = ACTIONS(2606), + [anon_sym_asm] = ACTIONS(2606), + [anon_sym___asm__] = ACTIONS(2606), + [anon_sym___asm] = ACTIONS(2606), + [sym_number_literal] = ACTIONS(2609), + [anon_sym_L_SQUOTE] = ACTIONS(2609), + [anon_sym_u_SQUOTE] = ACTIONS(2609), + [anon_sym_U_SQUOTE] = ACTIONS(2609), + [anon_sym_u8_SQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE] = ACTIONS(2609), + [anon_sym_AT] = ACTIONS(2606), + [anon_sym_DQUOTE] = ACTIONS(2609), + [anon_sym_L_DQUOTE] = ACTIONS(2609), + [anon_sym_u_DQUOTE] = ACTIONS(2609), + [anon_sym_U_DQUOTE] = ACTIONS(2609), + [anon_sym_u8_DQUOTE] = ACTIONS(2609), + [sym_true] = ACTIONS(2606), + [sym_false] = ACTIONS(2606), + [anon_sym_NULL] = ACTIONS(2606), + [anon_sym_nullptr] = ACTIONS(2606), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2606), + [anon_sym___typeof] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(2606), + [anon_sym_ATimport] = ACTIONS(2609), + [aux_sym_preproc_undef_token1] = ACTIONS(2606), + [anon_sym_POUND] = ACTIONS(2606), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2606), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2606), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2606), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2606), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2606), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2606), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2606), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2606), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2606), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2606), + [anon_sym_NS_AVAILABLE] = ACTIONS(2606), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2606), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2606), + [anon_sym_API_AVAILABLE] = ACTIONS(2606), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2606), + [anon_sym_API_DEPRECATED] = ACTIONS(2606), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2606), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2606), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2606), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2606), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2606), + [anon_sym___deprecated_msg] = ACTIONS(2606), + [anon_sym___deprecated_enum_msg] = ACTIONS(2606), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2606), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2606), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2606), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2606), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2606), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2606), + [anon_sym_ATprotocol] = ACTIONS(2609), + [anon_sym_ATinterface] = ACTIONS(2609), + [anon_sym_ATimplementation] = ACTIONS(2609), + [anon_sym_ATcompatibility_alias] = ACTIONS(2609), + [anon_sym_ATtry] = ACTIONS(2609), + [anon_sym___try] = ACTIONS(2606), + [anon_sym_ATthrow] = ACTIONS(2609), + [anon_sym_ATselector] = ACTIONS(2609), + [anon_sym_ATavailable] = ACTIONS(2609), + [anon_sym___builtin_available] = ACTIONS(2606), + [anon_sym_va_arg] = ACTIONS(2606), + [anon_sym_ATencode] = ACTIONS(2609), + [anon_sym_ATsynchronized] = ACTIONS(2609), + [anon_sym_BOOL] = ACTIONS(2606), + [anon_sym_IMP] = ACTIONS(2606), + [anon_sym_SEL] = ACTIONS(2606), + [anon_sym_Class] = ACTIONS(2606), + [anon_sym_id] = ACTIONS(2606), + }, + [887] = { + [sym_identifier] = ACTIONS(2716), + [aux_sym_preproc_include_token1] = ACTIONS(2716), + [aux_sym_preproc_include_token2] = ACTIONS(2716), + [aux_sym_preproc_def_token1] = ACTIONS(2716), + [aux_sym_preproc_if_token1] = ACTIONS(2716), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2716), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2716), + [sym_preproc_directive] = ACTIONS(2716), + [anon_sym_LPAREN2] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2718), + [anon_sym_TILDE] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2716), + [anon_sym_PLUS] = ACTIONS(2716), + [anon_sym_STAR] = ACTIONS(2718), + [anon_sym_CARET] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2718), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym___extension__] = ACTIONS(2716), + [anon_sym_typedef] = ACTIONS(2716), + [anon_sym_extern] = ACTIONS(2716), + [anon_sym___attribute__] = ACTIONS(2716), + [anon_sym___attribute] = ACTIONS(2716), + [anon_sym_noreturn] = ACTIONS(2716), + [anon_sym_LBRACK] = ACTIONS(2718), + [anon_sym___declspec] = ACTIONS(2716), + [anon_sym___cdecl] = ACTIONS(2716), + [anon_sym___clrcall] = ACTIONS(2716), + [anon_sym___stdcall] = ACTIONS(2716), + [anon_sym___fastcall] = ACTIONS(2716), + [anon_sym___thiscall] = ACTIONS(2716), + [anon_sym___vectorcall] = ACTIONS(2716), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_RBRACE] = ACTIONS(2718), + [anon_sym_signed] = ACTIONS(2716), + [anon_sym_unsigned] = ACTIONS(2716), + [anon_sym_long] = ACTIONS(2716), + [anon_sym_short] = ACTIONS(2716), + [anon_sym_static] = ACTIONS(2716), + [anon_sym_ATautoreleasepool] = ACTIONS(2718), + [anon_sym_auto] = ACTIONS(2716), + [anon_sym_register] = ACTIONS(2716), + [anon_sym_inline] = ACTIONS(2716), + [anon_sym___inline] = ACTIONS(2716), + [anon_sym___inline__] = ACTIONS(2716), + [anon_sym___forceinline] = ACTIONS(2716), + [anon_sym_thread_local] = ACTIONS(2716), + [anon_sym___thread] = ACTIONS(2716), + [anon_sym_CG_EXTERN] = ACTIONS(2716), + [anon_sym_CG_INLINE] = ACTIONS(2716), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2716), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2716), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2716), + [anon_sym_IBOutlet] = ACTIONS(2716), + [anon_sym_IBInspectable] = ACTIONS(2716), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2716), + [anon_sym_NS_INLINE] = ACTIONS(2716), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2716), + [anon_sym_OBJC_EXPORT] = ACTIONS(2716), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2716), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2716), + [anon_sym_const] = ACTIONS(2716), + [anon_sym_constexpr] = ACTIONS(2716), + [anon_sym_volatile] = ACTIONS(2716), + [anon_sym_restrict] = ACTIONS(2716), + [anon_sym___restrict__] = ACTIONS(2716), + [anon_sym__Atomic] = ACTIONS(2716), + [anon_sym__Noreturn] = ACTIONS(2716), + [anon_sym__Nonnull] = ACTIONS(2716), + [anon_sym_nullable] = ACTIONS(2716), + [anon_sym__Complex] = ACTIONS(2716), + [anon_sym__Nullable] = ACTIONS(2716), + [anon_sym__Nullable_result] = ACTIONS(2716), + [anon_sym__Null_unspecified] = ACTIONS(2716), + [anon_sym___autoreleasing] = ACTIONS(2716), + [anon_sym___block] = ACTIONS(2716), + [anon_sym___bridge] = ACTIONS(2716), + [anon_sym___bridge_retained] = ACTIONS(2716), + [anon_sym___bridge_transfer] = ACTIONS(2716), + [anon_sym___complex] = ACTIONS(2716), + [anon_sym___const] = ACTIONS(2716), + [anon_sym___imag] = ACTIONS(2716), + [anon_sym___kindof] = ACTIONS(2716), + [anon_sym___nonnull] = ACTIONS(2716), + [anon_sym___nullable] = ACTIONS(2716), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2716), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2716), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2716), + [anon_sym___real] = ACTIONS(2716), + [anon_sym___strong] = ACTIONS(2716), + [anon_sym___unsafe_unretained] = ACTIONS(2716), + [anon_sym___unused] = ACTIONS(2716), + [anon_sym___weak] = ACTIONS(2716), + [anon_sym_alignas] = ACTIONS(2716), + [anon_sym__Alignas] = ACTIONS(2716), + [sym_primitive_type] = ACTIONS(2716), + [anon_sym_enum] = ACTIONS(2716), + [anon_sym_struct] = ACTIONS(2716), + [anon_sym_union] = ACTIONS(2716), + [anon_sym_if] = ACTIONS(2716), + [anon_sym_switch] = ACTIONS(2716), + [anon_sym_case] = ACTIONS(2716), + [anon_sym_default] = ACTIONS(2716), + [anon_sym_while] = ACTIONS(2716), + [anon_sym_do] = ACTIONS(2716), + [anon_sym_for] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2716), + [anon_sym_return] = ACTIONS(2716), + [anon_sym_break] = ACTIONS(2716), + [anon_sym_continue] = ACTIONS(2716), + [anon_sym_goto] = ACTIONS(2716), + [anon_sym_DASH_DASH] = ACTIONS(2718), + [anon_sym_PLUS_PLUS] = ACTIONS(2718), + [anon_sym_sizeof] = ACTIONS(2716), + [anon_sym___alignof__] = ACTIONS(2716), + [anon_sym___alignof] = ACTIONS(2716), + [anon_sym__alignof] = ACTIONS(2716), + [anon_sym_alignof] = ACTIONS(2716), + [anon_sym__Alignof] = ACTIONS(2716), + [anon_sym_offsetof] = ACTIONS(2716), + [anon_sym__Generic] = ACTIONS(2716), + [anon_sym_asm] = ACTIONS(2716), + [anon_sym___asm__] = ACTIONS(2716), + [anon_sym___asm] = ACTIONS(2716), + [sym_number_literal] = ACTIONS(2718), + [anon_sym_L_SQUOTE] = ACTIONS(2718), + [anon_sym_u_SQUOTE] = ACTIONS(2718), + [anon_sym_U_SQUOTE] = ACTIONS(2718), + [anon_sym_u8_SQUOTE] = ACTIONS(2718), + [anon_sym_SQUOTE] = ACTIONS(2718), + [anon_sym_AT] = ACTIONS(2716), + [anon_sym_DQUOTE] = ACTIONS(2718), + [anon_sym_L_DQUOTE] = ACTIONS(2718), + [anon_sym_u_DQUOTE] = ACTIONS(2718), + [anon_sym_U_DQUOTE] = ACTIONS(2718), + [anon_sym_u8_DQUOTE] = ACTIONS(2718), + [sym_true] = ACTIONS(2716), + [sym_false] = ACTIONS(2716), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2716), + [anon_sym___typeof] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(2716), + [anon_sym_ATimport] = ACTIONS(2718), + [aux_sym_preproc_undef_token1] = ACTIONS(2716), + [anon_sym_POUND] = ACTIONS(2716), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2716), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2716), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2716), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2716), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2716), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2716), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2716), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2716), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2716), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2716), + [anon_sym_NS_AVAILABLE] = ACTIONS(2716), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2716), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2716), + [anon_sym_API_AVAILABLE] = ACTIONS(2716), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2716), + [anon_sym_API_DEPRECATED] = ACTIONS(2716), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2716), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2716), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2716), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2716), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2716), + [anon_sym___deprecated_msg] = ACTIONS(2716), + [anon_sym___deprecated_enum_msg] = ACTIONS(2716), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2716), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2716), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2716), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2716), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2716), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2716), + [anon_sym_ATprotocol] = ACTIONS(2718), + [anon_sym_ATinterface] = ACTIONS(2718), + [anon_sym_ATimplementation] = ACTIONS(2718), + [anon_sym_ATcompatibility_alias] = ACTIONS(2718), + [anon_sym_ATtry] = ACTIONS(2718), + [anon_sym___try] = ACTIONS(2716), + [anon_sym_ATthrow] = ACTIONS(2718), + [anon_sym_ATselector] = ACTIONS(2718), + [anon_sym_ATavailable] = ACTIONS(2718), + [anon_sym___builtin_available] = ACTIONS(2716), + [anon_sym_va_arg] = ACTIONS(2716), + [anon_sym_ATencode] = ACTIONS(2718), + [anon_sym_ATsynchronized] = ACTIONS(2718), + [anon_sym_BOOL] = ACTIONS(2716), + [anon_sym_IMP] = ACTIONS(2716), + [anon_sym_SEL] = ACTIONS(2716), + [anon_sym_Class] = ACTIONS(2716), + [anon_sym_id] = ACTIONS(2716), + }, + [888] = { + [sym_identifier] = ACTIONS(2852), + [aux_sym_preproc_include_token1] = ACTIONS(2852), + [aux_sym_preproc_include_token2] = ACTIONS(2852), + [aux_sym_preproc_def_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token1] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2852), + [sym_preproc_directive] = ACTIONS(2852), + [anon_sym_LPAREN2] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_CARET] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym___extension__] = ACTIONS(2852), + [anon_sym_typedef] = ACTIONS(2852), + [anon_sym_extern] = ACTIONS(2852), + [anon_sym___attribute__] = ACTIONS(2852), + [anon_sym___attribute] = ACTIONS(2852), + [anon_sym_noreturn] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2854), + [anon_sym___declspec] = ACTIONS(2852), + [anon_sym___cdecl] = ACTIONS(2852), + [anon_sym___clrcall] = ACTIONS(2852), + [anon_sym___stdcall] = ACTIONS(2852), + [anon_sym___fastcall] = ACTIONS(2852), + [anon_sym___thiscall] = ACTIONS(2852), + [anon_sym___vectorcall] = ACTIONS(2852), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_RBRACE] = ACTIONS(2854), + [anon_sym_signed] = ACTIONS(2852), + [anon_sym_unsigned] = ACTIONS(2852), + [anon_sym_long] = ACTIONS(2852), + [anon_sym_short] = ACTIONS(2852), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_ATautoreleasepool] = ACTIONS(2854), + [anon_sym_auto] = ACTIONS(2852), + [anon_sym_register] = ACTIONS(2852), + [anon_sym_inline] = ACTIONS(2852), + [anon_sym___inline] = ACTIONS(2852), + [anon_sym___inline__] = ACTIONS(2852), + [anon_sym___forceinline] = ACTIONS(2852), + [anon_sym_thread_local] = ACTIONS(2852), + [anon_sym___thread] = ACTIONS(2852), + [anon_sym_CG_EXTERN] = ACTIONS(2852), + [anon_sym_CG_INLINE] = ACTIONS(2852), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2852), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2852), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2852), + [anon_sym_IBOutlet] = ACTIONS(2852), + [anon_sym_IBInspectable] = ACTIONS(2852), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2852), + [anon_sym_NS_INLINE] = ACTIONS(2852), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2852), + [anon_sym_OBJC_EXPORT] = ACTIONS(2852), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2852), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2852), + [anon_sym_const] = ACTIONS(2852), + [anon_sym_constexpr] = ACTIONS(2852), + [anon_sym_volatile] = ACTIONS(2852), + [anon_sym_restrict] = ACTIONS(2852), + [anon_sym___restrict__] = ACTIONS(2852), + [anon_sym__Atomic] = ACTIONS(2852), + [anon_sym__Noreturn] = ACTIONS(2852), + [anon_sym__Nonnull] = ACTIONS(2852), + [anon_sym_nullable] = ACTIONS(2852), + [anon_sym__Complex] = ACTIONS(2852), + [anon_sym__Nullable] = ACTIONS(2852), + [anon_sym__Nullable_result] = ACTIONS(2852), + [anon_sym__Null_unspecified] = ACTIONS(2852), + [anon_sym___autoreleasing] = ACTIONS(2852), + [anon_sym___block] = ACTIONS(2852), + [anon_sym___bridge] = ACTIONS(2852), + [anon_sym___bridge_retained] = ACTIONS(2852), + [anon_sym___bridge_transfer] = ACTIONS(2852), + [anon_sym___complex] = ACTIONS(2852), + [anon_sym___const] = ACTIONS(2852), + [anon_sym___imag] = ACTIONS(2852), + [anon_sym___kindof] = ACTIONS(2852), + [anon_sym___nonnull] = ACTIONS(2852), + [anon_sym___nullable] = ACTIONS(2852), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2852), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2852), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2852), + [anon_sym___real] = ACTIONS(2852), + [anon_sym___strong] = ACTIONS(2852), + [anon_sym___unsafe_unretained] = ACTIONS(2852), + [anon_sym___unused] = ACTIONS(2852), + [anon_sym___weak] = ACTIONS(2852), + [anon_sym_alignas] = ACTIONS(2852), + [anon_sym__Alignas] = ACTIONS(2852), + [sym_primitive_type] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2852), + [anon_sym_union] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_switch] = ACTIONS(2852), + [anon_sym_case] = ACTIONS(2852), + [anon_sym_default] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_in] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_break] = ACTIONS(2852), + [anon_sym_continue] = ACTIONS(2852), + [anon_sym_goto] = ACTIONS(2852), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_sizeof] = ACTIONS(2852), + [anon_sym___alignof__] = ACTIONS(2852), + [anon_sym___alignof] = ACTIONS(2852), + [anon_sym__alignof] = ACTIONS(2852), + [anon_sym_alignof] = ACTIONS(2852), + [anon_sym__Alignof] = ACTIONS(2852), + [anon_sym_offsetof] = ACTIONS(2852), + [anon_sym__Generic] = ACTIONS(2852), + [anon_sym_asm] = ACTIONS(2852), + [anon_sym___asm__] = ACTIONS(2852), + [anon_sym___asm] = ACTIONS(2852), + [sym_number_literal] = ACTIONS(2854), + [anon_sym_L_SQUOTE] = ACTIONS(2854), + [anon_sym_u_SQUOTE] = ACTIONS(2854), + [anon_sym_U_SQUOTE] = ACTIONS(2854), + [anon_sym_u8_SQUOTE] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_AT] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2854), + [anon_sym_L_DQUOTE] = ACTIONS(2854), + [anon_sym_u_DQUOTE] = ACTIONS(2854), + [anon_sym_U_DQUOTE] = ACTIONS(2854), + [anon_sym_u8_DQUOTE] = ACTIONS(2854), + [sym_true] = ACTIONS(2852), + [sym_false] = ACTIONS(2852), + [anon_sym_NULL] = ACTIONS(2852), + [anon_sym_nullptr] = ACTIONS(2852), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2852), + [anon_sym___typeof] = ACTIONS(2852), + [anon_sym_typeof] = ACTIONS(2852), + [anon_sym_ATimport] = ACTIONS(2854), + [aux_sym_preproc_undef_token1] = ACTIONS(2852), + [anon_sym_POUND] = ACTIONS(2852), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2852), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2852), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2852), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2852), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2852), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2852), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2852), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2852), + [anon_sym_NS_AVAILABLE] = ACTIONS(2852), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2852), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_API_AVAILABLE] = ACTIONS(2852), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_API_DEPRECATED] = ACTIONS(2852), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2852), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2852), + [anon_sym___deprecated_msg] = ACTIONS(2852), + [anon_sym___deprecated_enum_msg] = ACTIONS(2852), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2852), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2852), + [anon_sym_ATprotocol] = ACTIONS(2854), + [anon_sym_ATinterface] = ACTIONS(2854), + [anon_sym_ATimplementation] = ACTIONS(2854), + [anon_sym_ATcompatibility_alias] = ACTIONS(2854), + [anon_sym_ATtry] = ACTIONS(2854), + [anon_sym___try] = ACTIONS(2852), + [anon_sym_ATthrow] = ACTIONS(2854), + [anon_sym_ATselector] = ACTIONS(2854), + [anon_sym_ATavailable] = ACTIONS(2854), + [anon_sym___builtin_available] = ACTIONS(2852), + [anon_sym_va_arg] = ACTIONS(2852), + [anon_sym_ATencode] = ACTIONS(2854), + [anon_sym_ATsynchronized] = ACTIONS(2854), + [anon_sym_BOOL] = ACTIONS(2852), + [anon_sym_IMP] = ACTIONS(2852), + [anon_sym_SEL] = ACTIONS(2852), + [anon_sym_Class] = ACTIONS(2852), + [anon_sym_id] = ACTIONS(2852), + }, + [889] = { + [sym_identifier] = ACTIONS(2720), + [aux_sym_preproc_include_token1] = ACTIONS(2720), + [aux_sym_preproc_include_token2] = ACTIONS(2720), + [aux_sym_preproc_def_token1] = ACTIONS(2720), + [aux_sym_preproc_if_token1] = ACTIONS(2720), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2720), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2720), + [sym_preproc_directive] = ACTIONS(2720), + [anon_sym_LPAREN2] = ACTIONS(2722), + [anon_sym_BANG] = ACTIONS(2722), + [anon_sym_TILDE] = ACTIONS(2722), + [anon_sym_DASH] = ACTIONS(2720), + [anon_sym_PLUS] = ACTIONS(2720), + [anon_sym_STAR] = ACTIONS(2722), + [anon_sym_CARET] = ACTIONS(2722), + [anon_sym_AMP] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_typedef] = ACTIONS(2720), + [anon_sym_extern] = ACTIONS(2720), + [anon_sym___attribute__] = ACTIONS(2720), + [anon_sym___attribute] = ACTIONS(2720), + [anon_sym_noreturn] = ACTIONS(2720), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym___declspec] = ACTIONS(2720), + [anon_sym___cdecl] = ACTIONS(2720), + [anon_sym___clrcall] = ACTIONS(2720), + [anon_sym___stdcall] = ACTIONS(2720), + [anon_sym___fastcall] = ACTIONS(2720), + [anon_sym___thiscall] = ACTIONS(2720), + [anon_sym___vectorcall] = ACTIONS(2720), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_RBRACE] = ACTIONS(2722), + [anon_sym_signed] = ACTIONS(2720), + [anon_sym_unsigned] = ACTIONS(2720), + [anon_sym_long] = ACTIONS(2720), + [anon_sym_short] = ACTIONS(2720), + [anon_sym_static] = ACTIONS(2720), + [anon_sym_ATautoreleasepool] = ACTIONS(2722), + [anon_sym_auto] = ACTIONS(2720), + [anon_sym_register] = ACTIONS(2720), + [anon_sym_inline] = ACTIONS(2720), + [anon_sym___inline] = ACTIONS(2720), + [anon_sym___inline__] = ACTIONS(2720), + [anon_sym___forceinline] = ACTIONS(2720), + [anon_sym_thread_local] = ACTIONS(2720), + [anon_sym___thread] = ACTIONS(2720), + [anon_sym_CG_EXTERN] = ACTIONS(2720), + [anon_sym_CG_INLINE] = ACTIONS(2720), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2720), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2720), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2720), + [anon_sym_IBOutlet] = ACTIONS(2720), + [anon_sym_IBInspectable] = ACTIONS(2720), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2720), + [anon_sym_NS_INLINE] = ACTIONS(2720), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2720), + [anon_sym_OBJC_EXPORT] = ACTIONS(2720), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2720), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2720), + [anon_sym_const] = ACTIONS(2720), + [anon_sym_constexpr] = ACTIONS(2720), + [anon_sym_volatile] = ACTIONS(2720), + [anon_sym_restrict] = ACTIONS(2720), + [anon_sym___restrict__] = ACTIONS(2720), + [anon_sym__Atomic] = ACTIONS(2720), + [anon_sym__Noreturn] = ACTIONS(2720), + [anon_sym__Nonnull] = ACTIONS(2720), + [anon_sym_nullable] = ACTIONS(2720), + [anon_sym__Complex] = ACTIONS(2720), + [anon_sym__Nullable] = ACTIONS(2720), + [anon_sym__Nullable_result] = ACTIONS(2720), + [anon_sym__Null_unspecified] = ACTIONS(2720), + [anon_sym___autoreleasing] = ACTIONS(2720), + [anon_sym___block] = ACTIONS(2720), + [anon_sym___bridge] = ACTIONS(2720), + [anon_sym___bridge_retained] = ACTIONS(2720), + [anon_sym___bridge_transfer] = ACTIONS(2720), + [anon_sym___complex] = ACTIONS(2720), + [anon_sym___const] = ACTIONS(2720), + [anon_sym___imag] = ACTIONS(2720), + [anon_sym___kindof] = ACTIONS(2720), + [anon_sym___nonnull] = ACTIONS(2720), + [anon_sym___nullable] = ACTIONS(2720), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2720), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2720), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2720), + [anon_sym___real] = ACTIONS(2720), + [anon_sym___strong] = ACTIONS(2720), + [anon_sym___unsafe_unretained] = ACTIONS(2720), + [anon_sym___unused] = ACTIONS(2720), + [anon_sym___weak] = ACTIONS(2720), + [anon_sym_alignas] = ACTIONS(2720), + [anon_sym__Alignas] = ACTIONS(2720), + [sym_primitive_type] = ACTIONS(2720), + [anon_sym_enum] = ACTIONS(2720), + [anon_sym_struct] = ACTIONS(2720), + [anon_sym_union] = ACTIONS(2720), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_switch] = ACTIONS(2720), + [anon_sym_case] = ACTIONS(2720), + [anon_sym_default] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2720), + [anon_sym_do] = ACTIONS(2720), + [anon_sym_for] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2720), + [anon_sym_return] = ACTIONS(2720), + [anon_sym_break] = ACTIONS(2720), + [anon_sym_continue] = ACTIONS(2720), + [anon_sym_goto] = ACTIONS(2720), + [anon_sym_DASH_DASH] = ACTIONS(2722), + [anon_sym_PLUS_PLUS] = ACTIONS(2722), + [anon_sym_sizeof] = ACTIONS(2720), + [anon_sym___alignof__] = ACTIONS(2720), + [anon_sym___alignof] = ACTIONS(2720), + [anon_sym__alignof] = ACTIONS(2720), + [anon_sym_alignof] = ACTIONS(2720), + [anon_sym__Alignof] = ACTIONS(2720), + [anon_sym_offsetof] = ACTIONS(2720), + [anon_sym__Generic] = ACTIONS(2720), + [anon_sym_asm] = ACTIONS(2720), + [anon_sym___asm__] = ACTIONS(2720), + [anon_sym___asm] = ACTIONS(2720), + [sym_number_literal] = ACTIONS(2722), + [anon_sym_L_SQUOTE] = ACTIONS(2722), + [anon_sym_u_SQUOTE] = ACTIONS(2722), + [anon_sym_U_SQUOTE] = ACTIONS(2722), + [anon_sym_u8_SQUOTE] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2722), + [anon_sym_AT] = ACTIONS(2720), + [anon_sym_DQUOTE] = ACTIONS(2722), + [anon_sym_L_DQUOTE] = ACTIONS(2722), + [anon_sym_u_DQUOTE] = ACTIONS(2722), + [anon_sym_U_DQUOTE] = ACTIONS(2722), + [anon_sym_u8_DQUOTE] = ACTIONS(2722), + [sym_true] = ACTIONS(2720), + [sym_false] = ACTIONS(2720), + [anon_sym_NULL] = ACTIONS(2720), + [anon_sym_nullptr] = ACTIONS(2720), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2720), + [anon_sym___typeof] = ACTIONS(2720), + [anon_sym_typeof] = ACTIONS(2720), + [anon_sym_ATimport] = ACTIONS(2722), + [aux_sym_preproc_undef_token1] = ACTIONS(2720), + [anon_sym_POUND] = ACTIONS(2720), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2720), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2720), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2720), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2720), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2720), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2720), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2720), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2720), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2720), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2720), + [anon_sym_NS_AVAILABLE] = ACTIONS(2720), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2720), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2720), + [anon_sym_API_AVAILABLE] = ACTIONS(2720), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2720), + [anon_sym_API_DEPRECATED] = ACTIONS(2720), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2720), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2720), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2720), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2720), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2720), + [anon_sym___deprecated_msg] = ACTIONS(2720), + [anon_sym___deprecated_enum_msg] = ACTIONS(2720), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2720), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2720), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2720), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2720), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2720), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2720), + [anon_sym_ATprotocol] = ACTIONS(2722), + [anon_sym_ATinterface] = ACTIONS(2722), + [anon_sym_ATimplementation] = ACTIONS(2722), + [anon_sym_ATcompatibility_alias] = ACTIONS(2722), + [anon_sym_ATtry] = ACTIONS(2722), + [anon_sym___try] = ACTIONS(2720), + [anon_sym_ATthrow] = ACTIONS(2722), + [anon_sym_ATselector] = ACTIONS(2722), + [anon_sym_ATavailable] = ACTIONS(2722), + [anon_sym___builtin_available] = ACTIONS(2720), + [anon_sym_va_arg] = ACTIONS(2720), + [anon_sym_ATencode] = ACTIONS(2722), + [anon_sym_ATsynchronized] = ACTIONS(2722), + [anon_sym_BOOL] = ACTIONS(2720), + [anon_sym_IMP] = ACTIONS(2720), + [anon_sym_SEL] = ACTIONS(2720), + [anon_sym_Class] = ACTIONS(2720), + [anon_sym_id] = ACTIONS(2720), + }, + [890] = { + [sym_identifier] = ACTIONS(2732), + [aux_sym_preproc_include_token1] = ACTIONS(2732), + [aux_sym_preproc_include_token2] = ACTIONS(2732), + [aux_sym_preproc_def_token1] = ACTIONS(2732), + [aux_sym_preproc_if_token1] = ACTIONS(2732), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2732), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2732), + [sym_preproc_directive] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_BANG] = ACTIONS(2734), + [anon_sym_TILDE] = ACTIONS(2734), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_STAR] = ACTIONS(2734), + [anon_sym_CARET] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2734), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym___extension__] = ACTIONS(2732), + [anon_sym_typedef] = ACTIONS(2732), + [anon_sym_extern] = ACTIONS(2732), + [anon_sym___attribute__] = ACTIONS(2732), + [anon_sym___attribute] = ACTIONS(2732), + [anon_sym_noreturn] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym___declspec] = ACTIONS(2732), + [anon_sym___cdecl] = ACTIONS(2732), + [anon_sym___clrcall] = ACTIONS(2732), + [anon_sym___stdcall] = ACTIONS(2732), + [anon_sym___fastcall] = ACTIONS(2732), + [anon_sym___thiscall] = ACTIONS(2732), + [anon_sym___vectorcall] = ACTIONS(2732), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_RBRACE] = ACTIONS(2734), + [anon_sym_signed] = ACTIONS(2732), + [anon_sym_unsigned] = ACTIONS(2732), + [anon_sym_long] = ACTIONS(2732), + [anon_sym_short] = ACTIONS(2732), + [anon_sym_static] = ACTIONS(2732), + [anon_sym_ATautoreleasepool] = ACTIONS(2734), + [anon_sym_auto] = ACTIONS(2732), + [anon_sym_register] = ACTIONS(2732), + [anon_sym_inline] = ACTIONS(2732), + [anon_sym___inline] = ACTIONS(2732), + [anon_sym___inline__] = ACTIONS(2732), + [anon_sym___forceinline] = ACTIONS(2732), + [anon_sym_thread_local] = ACTIONS(2732), + [anon_sym___thread] = ACTIONS(2732), + [anon_sym_CG_EXTERN] = ACTIONS(2732), + [anon_sym_CG_INLINE] = ACTIONS(2732), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2732), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2732), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2732), + [anon_sym_IBOutlet] = ACTIONS(2732), + [anon_sym_IBInspectable] = ACTIONS(2732), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2732), + [anon_sym_NS_INLINE] = ACTIONS(2732), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2732), + [anon_sym_OBJC_EXPORT] = ACTIONS(2732), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2732), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2732), + [anon_sym_const] = ACTIONS(2732), + [anon_sym_constexpr] = ACTIONS(2732), + [anon_sym_volatile] = ACTIONS(2732), + [anon_sym_restrict] = ACTIONS(2732), + [anon_sym___restrict__] = ACTIONS(2732), + [anon_sym__Atomic] = ACTIONS(2732), + [anon_sym__Noreturn] = ACTIONS(2732), + [anon_sym__Nonnull] = ACTIONS(2732), + [anon_sym_nullable] = ACTIONS(2732), + [anon_sym__Complex] = ACTIONS(2732), + [anon_sym__Nullable] = ACTIONS(2732), + [anon_sym__Nullable_result] = ACTIONS(2732), + [anon_sym__Null_unspecified] = ACTIONS(2732), + [anon_sym___autoreleasing] = ACTIONS(2732), + [anon_sym___block] = ACTIONS(2732), + [anon_sym___bridge] = ACTIONS(2732), + [anon_sym___bridge_retained] = ACTIONS(2732), + [anon_sym___bridge_transfer] = ACTIONS(2732), + [anon_sym___complex] = ACTIONS(2732), + [anon_sym___const] = ACTIONS(2732), + [anon_sym___imag] = ACTIONS(2732), + [anon_sym___kindof] = ACTIONS(2732), + [anon_sym___nonnull] = ACTIONS(2732), + [anon_sym___nullable] = ACTIONS(2732), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2732), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2732), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2732), + [anon_sym___real] = ACTIONS(2732), + [anon_sym___strong] = ACTIONS(2732), + [anon_sym___unsafe_unretained] = ACTIONS(2732), + [anon_sym___unused] = ACTIONS(2732), + [anon_sym___weak] = ACTIONS(2732), + [anon_sym_alignas] = ACTIONS(2732), + [anon_sym__Alignas] = ACTIONS(2732), + [sym_primitive_type] = ACTIONS(2732), + [anon_sym_enum] = ACTIONS(2732), + [anon_sym_struct] = ACTIONS(2732), + [anon_sym_union] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_switch] = ACTIONS(2732), + [anon_sym_case] = ACTIONS(2732), + [anon_sym_default] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_break] = ACTIONS(2732), + [anon_sym_continue] = ACTIONS(2732), + [anon_sym_goto] = ACTIONS(2732), + [anon_sym_DASH_DASH] = ACTIONS(2734), + [anon_sym_PLUS_PLUS] = ACTIONS(2734), + [anon_sym_sizeof] = ACTIONS(2732), + [anon_sym___alignof__] = ACTIONS(2732), + [anon_sym___alignof] = ACTIONS(2732), + [anon_sym__alignof] = ACTIONS(2732), + [anon_sym_alignof] = ACTIONS(2732), + [anon_sym__Alignof] = ACTIONS(2732), + [anon_sym_offsetof] = ACTIONS(2732), + [anon_sym__Generic] = ACTIONS(2732), + [anon_sym_asm] = ACTIONS(2732), + [anon_sym___asm__] = ACTIONS(2732), + [anon_sym___asm] = ACTIONS(2732), + [sym_number_literal] = ACTIONS(2734), + [anon_sym_L_SQUOTE] = ACTIONS(2734), + [anon_sym_u_SQUOTE] = ACTIONS(2734), + [anon_sym_U_SQUOTE] = ACTIONS(2734), + [anon_sym_u8_SQUOTE] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_AT] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2734), + [anon_sym_L_DQUOTE] = ACTIONS(2734), + [anon_sym_u_DQUOTE] = ACTIONS(2734), + [anon_sym_U_DQUOTE] = ACTIONS(2734), + [anon_sym_u8_DQUOTE] = ACTIONS(2734), + [sym_true] = ACTIONS(2732), + [sym_false] = ACTIONS(2732), + [anon_sym_NULL] = ACTIONS(2732), + [anon_sym_nullptr] = ACTIONS(2732), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2732), + [anon_sym___typeof] = ACTIONS(2732), + [anon_sym_typeof] = ACTIONS(2732), + [anon_sym_ATimport] = ACTIONS(2734), + [aux_sym_preproc_undef_token1] = ACTIONS(2732), + [anon_sym_POUND] = ACTIONS(2732), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2732), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2732), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2732), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2732), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2732), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2732), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2732), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2732), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2732), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2732), + [anon_sym_NS_AVAILABLE] = ACTIONS(2732), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2732), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2732), + [anon_sym_API_AVAILABLE] = ACTIONS(2732), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2732), + [anon_sym_API_DEPRECATED] = ACTIONS(2732), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2732), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2732), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2732), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2732), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2732), + [anon_sym___deprecated_msg] = ACTIONS(2732), + [anon_sym___deprecated_enum_msg] = ACTIONS(2732), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2732), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2732), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2732), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2732), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2732), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2732), + [anon_sym_ATprotocol] = ACTIONS(2734), + [anon_sym_ATinterface] = ACTIONS(2734), + [anon_sym_ATimplementation] = ACTIONS(2734), + [anon_sym_ATcompatibility_alias] = ACTIONS(2734), + [anon_sym_ATtry] = ACTIONS(2734), + [anon_sym___try] = ACTIONS(2732), + [anon_sym_ATthrow] = ACTIONS(2734), + [anon_sym_ATselector] = ACTIONS(2734), + [anon_sym_ATavailable] = ACTIONS(2734), + [anon_sym___builtin_available] = ACTIONS(2732), + [anon_sym_va_arg] = ACTIONS(2732), + [anon_sym_ATencode] = ACTIONS(2734), + [anon_sym_ATsynchronized] = ACTIONS(2734), + [anon_sym_BOOL] = ACTIONS(2732), + [anon_sym_IMP] = ACTIONS(2732), + [anon_sym_SEL] = ACTIONS(2732), + [anon_sym_Class] = ACTIONS(2732), + [anon_sym_id] = ACTIONS(2732), + }, + [891] = { + [sym_identifier] = ACTIONS(2756), + [aux_sym_preproc_include_token1] = ACTIONS(2756), + [aux_sym_preproc_include_token2] = ACTIONS(2756), + [aux_sym_preproc_def_token1] = ACTIONS(2756), + [aux_sym_preproc_if_token1] = ACTIONS(2756), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2756), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2756), + [sym_preproc_directive] = ACTIONS(2756), + [anon_sym_LPAREN2] = ACTIONS(2758), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_TILDE] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_STAR] = ACTIONS(2758), + [anon_sym_CARET] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym___extension__] = ACTIONS(2756), + [anon_sym_typedef] = ACTIONS(2756), + [anon_sym_extern] = ACTIONS(2756), + [anon_sym___attribute__] = ACTIONS(2756), + [anon_sym___attribute] = ACTIONS(2756), + [anon_sym_noreturn] = ACTIONS(2756), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym___declspec] = ACTIONS(2756), + [anon_sym___cdecl] = ACTIONS(2756), + [anon_sym___clrcall] = ACTIONS(2756), + [anon_sym___stdcall] = ACTIONS(2756), + [anon_sym___fastcall] = ACTIONS(2756), + [anon_sym___thiscall] = ACTIONS(2756), + [anon_sym___vectorcall] = ACTIONS(2756), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_RBRACE] = ACTIONS(2758), + [anon_sym_signed] = ACTIONS(2756), + [anon_sym_unsigned] = ACTIONS(2756), + [anon_sym_long] = ACTIONS(2756), + [anon_sym_short] = ACTIONS(2756), + [anon_sym_static] = ACTIONS(2756), + [anon_sym_ATautoreleasepool] = ACTIONS(2758), + [anon_sym_auto] = ACTIONS(2756), + [anon_sym_register] = ACTIONS(2756), + [anon_sym_inline] = ACTIONS(2756), + [anon_sym___inline] = ACTIONS(2756), + [anon_sym___inline__] = ACTIONS(2756), + [anon_sym___forceinline] = ACTIONS(2756), + [anon_sym_thread_local] = ACTIONS(2756), + [anon_sym___thread] = ACTIONS(2756), + [anon_sym_CG_EXTERN] = ACTIONS(2756), + [anon_sym_CG_INLINE] = ACTIONS(2756), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2756), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2756), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2756), + [anon_sym_IBOutlet] = ACTIONS(2756), + [anon_sym_IBInspectable] = ACTIONS(2756), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2756), + [anon_sym_NS_INLINE] = ACTIONS(2756), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2756), + [anon_sym_OBJC_EXPORT] = ACTIONS(2756), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2756), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2756), + [anon_sym_const] = ACTIONS(2756), + [anon_sym_constexpr] = ACTIONS(2756), + [anon_sym_volatile] = ACTIONS(2756), + [anon_sym_restrict] = ACTIONS(2756), + [anon_sym___restrict__] = ACTIONS(2756), + [anon_sym__Atomic] = ACTIONS(2756), + [anon_sym__Noreturn] = ACTIONS(2756), + [anon_sym__Nonnull] = ACTIONS(2756), + [anon_sym_nullable] = ACTIONS(2756), + [anon_sym__Complex] = ACTIONS(2756), + [anon_sym__Nullable] = ACTIONS(2756), + [anon_sym__Nullable_result] = ACTIONS(2756), + [anon_sym__Null_unspecified] = ACTIONS(2756), + [anon_sym___autoreleasing] = ACTIONS(2756), + [anon_sym___block] = ACTIONS(2756), + [anon_sym___bridge] = ACTIONS(2756), + [anon_sym___bridge_retained] = ACTIONS(2756), + [anon_sym___bridge_transfer] = ACTIONS(2756), + [anon_sym___complex] = ACTIONS(2756), + [anon_sym___const] = ACTIONS(2756), + [anon_sym___imag] = ACTIONS(2756), + [anon_sym___kindof] = ACTIONS(2756), + [anon_sym___nonnull] = ACTIONS(2756), + [anon_sym___nullable] = ACTIONS(2756), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2756), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2756), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2756), + [anon_sym___real] = ACTIONS(2756), + [anon_sym___strong] = ACTIONS(2756), + [anon_sym___unsafe_unretained] = ACTIONS(2756), + [anon_sym___unused] = ACTIONS(2756), + [anon_sym___weak] = ACTIONS(2756), + [anon_sym_alignas] = ACTIONS(2756), + [anon_sym__Alignas] = ACTIONS(2756), + [sym_primitive_type] = ACTIONS(2756), + [anon_sym_enum] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(2756), + [anon_sym_union] = ACTIONS(2756), + [anon_sym_if] = ACTIONS(2756), + [anon_sym_switch] = ACTIONS(2756), + [anon_sym_case] = ACTIONS(2756), + [anon_sym_default] = ACTIONS(2756), + [anon_sym_while] = ACTIONS(2756), + [anon_sym_do] = ACTIONS(2756), + [anon_sym_for] = ACTIONS(2756), + [anon_sym_in] = ACTIONS(2756), + [anon_sym_return] = ACTIONS(2756), + [anon_sym_break] = ACTIONS(2756), + [anon_sym_continue] = ACTIONS(2756), + [anon_sym_goto] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_sizeof] = ACTIONS(2756), + [anon_sym___alignof__] = ACTIONS(2756), + [anon_sym___alignof] = ACTIONS(2756), + [anon_sym__alignof] = ACTIONS(2756), + [anon_sym_alignof] = ACTIONS(2756), + [anon_sym__Alignof] = ACTIONS(2756), + [anon_sym_offsetof] = ACTIONS(2756), + [anon_sym__Generic] = ACTIONS(2756), + [anon_sym_asm] = ACTIONS(2756), + [anon_sym___asm__] = ACTIONS(2756), + [anon_sym___asm] = ACTIONS(2756), + [sym_number_literal] = ACTIONS(2758), + [anon_sym_L_SQUOTE] = ACTIONS(2758), + [anon_sym_u_SQUOTE] = ACTIONS(2758), + [anon_sym_U_SQUOTE] = ACTIONS(2758), + [anon_sym_u8_SQUOTE] = ACTIONS(2758), + [anon_sym_SQUOTE] = ACTIONS(2758), + [anon_sym_AT] = ACTIONS(2756), + [anon_sym_DQUOTE] = ACTIONS(2758), + [anon_sym_L_DQUOTE] = ACTIONS(2758), + [anon_sym_u_DQUOTE] = ACTIONS(2758), + [anon_sym_U_DQUOTE] = ACTIONS(2758), + [anon_sym_u8_DQUOTE] = ACTIONS(2758), + [sym_true] = ACTIONS(2756), + [sym_false] = ACTIONS(2756), + [anon_sym_NULL] = ACTIONS(2756), + [anon_sym_nullptr] = ACTIONS(2756), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2756), + [anon_sym___typeof] = ACTIONS(2756), + [anon_sym_typeof] = ACTIONS(2756), + [anon_sym_ATimport] = ACTIONS(2758), + [aux_sym_preproc_undef_token1] = ACTIONS(2756), + [anon_sym_POUND] = ACTIONS(2756), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2756), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2756), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2756), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2756), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2756), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2756), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2756), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2756), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2756), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2756), + [anon_sym_NS_AVAILABLE] = ACTIONS(2756), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2756), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2756), + [anon_sym_API_AVAILABLE] = ACTIONS(2756), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2756), + [anon_sym_API_DEPRECATED] = ACTIONS(2756), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2756), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2756), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2756), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2756), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2756), + [anon_sym___deprecated_msg] = ACTIONS(2756), + [anon_sym___deprecated_enum_msg] = ACTIONS(2756), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2756), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2756), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2756), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2756), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2756), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2756), + [anon_sym_ATprotocol] = ACTIONS(2758), + [anon_sym_ATinterface] = ACTIONS(2758), + [anon_sym_ATimplementation] = ACTIONS(2758), + [anon_sym_ATcompatibility_alias] = ACTIONS(2758), + [anon_sym_ATtry] = ACTIONS(2758), + [anon_sym___try] = ACTIONS(2756), + [anon_sym_ATthrow] = ACTIONS(2758), + [anon_sym_ATselector] = ACTIONS(2758), + [anon_sym_ATavailable] = ACTIONS(2758), + [anon_sym___builtin_available] = ACTIONS(2756), + [anon_sym_va_arg] = ACTIONS(2756), + [anon_sym_ATencode] = ACTIONS(2758), + [anon_sym_ATsynchronized] = ACTIONS(2758), + [anon_sym_BOOL] = ACTIONS(2756), + [anon_sym_IMP] = ACTIONS(2756), + [anon_sym_SEL] = ACTIONS(2756), + [anon_sym_Class] = ACTIONS(2756), + [anon_sym_id] = ACTIONS(2756), + }, + [892] = { + [sym_identifier] = ACTIONS(2760), + [aux_sym_preproc_include_token1] = ACTIONS(2760), + [aux_sym_preproc_include_token2] = ACTIONS(2760), + [aux_sym_preproc_def_token1] = ACTIONS(2760), + [aux_sym_preproc_if_token1] = ACTIONS(2760), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2760), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2760), + [sym_preproc_directive] = ACTIONS(2760), + [anon_sym_LPAREN2] = ACTIONS(2762), + [anon_sym_BANG] = ACTIONS(2762), + [anon_sym_TILDE] = ACTIONS(2762), + [anon_sym_DASH] = ACTIONS(2760), + [anon_sym_PLUS] = ACTIONS(2760), + [anon_sym_STAR] = ACTIONS(2762), + [anon_sym_CARET] = ACTIONS(2762), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym___extension__] = ACTIONS(2760), + [anon_sym_typedef] = ACTIONS(2760), + [anon_sym_extern] = ACTIONS(2760), + [anon_sym___attribute__] = ACTIONS(2760), + [anon_sym___attribute] = ACTIONS(2760), + [anon_sym_noreturn] = ACTIONS(2760), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym___declspec] = ACTIONS(2760), + [anon_sym___cdecl] = ACTIONS(2760), + [anon_sym___clrcall] = ACTIONS(2760), + [anon_sym___stdcall] = ACTIONS(2760), + [anon_sym___fastcall] = ACTIONS(2760), + [anon_sym___thiscall] = ACTIONS(2760), + [anon_sym___vectorcall] = ACTIONS(2760), + [anon_sym_LBRACE] = ACTIONS(2762), + [anon_sym_RBRACE] = ACTIONS(2762), + [anon_sym_signed] = ACTIONS(2760), + [anon_sym_unsigned] = ACTIONS(2760), + [anon_sym_long] = ACTIONS(2760), + [anon_sym_short] = ACTIONS(2760), + [anon_sym_static] = ACTIONS(2760), + [anon_sym_ATautoreleasepool] = ACTIONS(2762), + [anon_sym_auto] = ACTIONS(2760), + [anon_sym_register] = ACTIONS(2760), + [anon_sym_inline] = ACTIONS(2760), + [anon_sym___inline] = ACTIONS(2760), + [anon_sym___inline__] = ACTIONS(2760), + [anon_sym___forceinline] = ACTIONS(2760), + [anon_sym_thread_local] = ACTIONS(2760), + [anon_sym___thread] = ACTIONS(2760), + [anon_sym_CG_EXTERN] = ACTIONS(2760), + [anon_sym_CG_INLINE] = ACTIONS(2760), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2760), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2760), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2760), + [anon_sym_IBOutlet] = ACTIONS(2760), + [anon_sym_IBInspectable] = ACTIONS(2760), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2760), + [anon_sym_NS_INLINE] = ACTIONS(2760), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2760), + [anon_sym_OBJC_EXPORT] = ACTIONS(2760), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2760), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2760), + [anon_sym_const] = ACTIONS(2760), + [anon_sym_constexpr] = ACTIONS(2760), + [anon_sym_volatile] = ACTIONS(2760), + [anon_sym_restrict] = ACTIONS(2760), + [anon_sym___restrict__] = ACTIONS(2760), + [anon_sym__Atomic] = ACTIONS(2760), + [anon_sym__Noreturn] = ACTIONS(2760), + [anon_sym__Nonnull] = ACTIONS(2760), + [anon_sym_nullable] = ACTIONS(2760), + [anon_sym__Complex] = ACTIONS(2760), + [anon_sym__Nullable] = ACTIONS(2760), + [anon_sym__Nullable_result] = ACTIONS(2760), + [anon_sym__Null_unspecified] = ACTIONS(2760), + [anon_sym___autoreleasing] = ACTIONS(2760), + [anon_sym___block] = ACTIONS(2760), + [anon_sym___bridge] = ACTIONS(2760), + [anon_sym___bridge_retained] = ACTIONS(2760), + [anon_sym___bridge_transfer] = ACTIONS(2760), + [anon_sym___complex] = ACTIONS(2760), + [anon_sym___const] = ACTIONS(2760), + [anon_sym___imag] = ACTIONS(2760), + [anon_sym___kindof] = ACTIONS(2760), + [anon_sym___nonnull] = ACTIONS(2760), + [anon_sym___nullable] = ACTIONS(2760), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2760), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2760), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2760), + [anon_sym___real] = ACTIONS(2760), + [anon_sym___strong] = ACTIONS(2760), + [anon_sym___unsafe_unretained] = ACTIONS(2760), + [anon_sym___unused] = ACTIONS(2760), + [anon_sym___weak] = ACTIONS(2760), + [anon_sym_alignas] = ACTIONS(2760), + [anon_sym__Alignas] = ACTIONS(2760), + [sym_primitive_type] = ACTIONS(2760), + [anon_sym_enum] = ACTIONS(2760), + [anon_sym_struct] = ACTIONS(2760), + [anon_sym_union] = ACTIONS(2760), + [anon_sym_if] = ACTIONS(2760), + [anon_sym_switch] = ACTIONS(2760), + [anon_sym_case] = ACTIONS(2760), + [anon_sym_default] = ACTIONS(2760), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_do] = ACTIONS(2760), + [anon_sym_for] = ACTIONS(2760), + [anon_sym_in] = ACTIONS(2760), + [anon_sym_return] = ACTIONS(2760), + [anon_sym_break] = ACTIONS(2760), + [anon_sym_continue] = ACTIONS(2760), + [anon_sym_goto] = ACTIONS(2760), + [anon_sym_DASH_DASH] = ACTIONS(2762), + [anon_sym_PLUS_PLUS] = ACTIONS(2762), + [anon_sym_sizeof] = ACTIONS(2760), + [anon_sym___alignof__] = ACTIONS(2760), + [anon_sym___alignof] = ACTIONS(2760), + [anon_sym__alignof] = ACTIONS(2760), + [anon_sym_alignof] = ACTIONS(2760), + [anon_sym__Alignof] = ACTIONS(2760), + [anon_sym_offsetof] = ACTIONS(2760), + [anon_sym__Generic] = ACTIONS(2760), + [anon_sym_asm] = ACTIONS(2760), + [anon_sym___asm__] = ACTIONS(2760), + [anon_sym___asm] = ACTIONS(2760), + [sym_number_literal] = ACTIONS(2762), + [anon_sym_L_SQUOTE] = ACTIONS(2762), + [anon_sym_u_SQUOTE] = ACTIONS(2762), + [anon_sym_U_SQUOTE] = ACTIONS(2762), + [anon_sym_u8_SQUOTE] = ACTIONS(2762), + [anon_sym_SQUOTE] = ACTIONS(2762), + [anon_sym_AT] = ACTIONS(2760), + [anon_sym_DQUOTE] = ACTIONS(2762), + [anon_sym_L_DQUOTE] = ACTIONS(2762), + [anon_sym_u_DQUOTE] = ACTIONS(2762), + [anon_sym_U_DQUOTE] = ACTIONS(2762), + [anon_sym_u8_DQUOTE] = ACTIONS(2762), + [sym_true] = ACTIONS(2760), + [sym_false] = ACTIONS(2760), + [anon_sym_NULL] = ACTIONS(2760), + [anon_sym_nullptr] = ACTIONS(2760), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2760), + [anon_sym___typeof] = ACTIONS(2760), + [anon_sym_typeof] = ACTIONS(2760), + [anon_sym_ATimport] = ACTIONS(2762), + [aux_sym_preproc_undef_token1] = ACTIONS(2760), + [anon_sym_POUND] = ACTIONS(2760), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2760), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2760), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2760), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2760), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2760), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2760), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2760), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2760), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2760), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2760), + [anon_sym_NS_AVAILABLE] = ACTIONS(2760), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2760), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2760), + [anon_sym_API_AVAILABLE] = ACTIONS(2760), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2760), + [anon_sym_API_DEPRECATED] = ACTIONS(2760), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2760), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2760), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2760), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2760), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2760), + [anon_sym___deprecated_msg] = ACTIONS(2760), + [anon_sym___deprecated_enum_msg] = ACTIONS(2760), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2760), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2760), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2760), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2760), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2760), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2760), + [anon_sym_ATprotocol] = ACTIONS(2762), + [anon_sym_ATinterface] = ACTIONS(2762), + [anon_sym_ATimplementation] = ACTIONS(2762), + [anon_sym_ATcompatibility_alias] = ACTIONS(2762), + [anon_sym_ATtry] = ACTIONS(2762), + [anon_sym___try] = ACTIONS(2760), + [anon_sym_ATthrow] = ACTIONS(2762), + [anon_sym_ATselector] = ACTIONS(2762), + [anon_sym_ATavailable] = ACTIONS(2762), + [anon_sym___builtin_available] = ACTIONS(2760), + [anon_sym_va_arg] = ACTIONS(2760), + [anon_sym_ATencode] = ACTIONS(2762), + [anon_sym_ATsynchronized] = ACTIONS(2762), + [anon_sym_BOOL] = ACTIONS(2760), + [anon_sym_IMP] = ACTIONS(2760), + [anon_sym_SEL] = ACTIONS(2760), + [anon_sym_Class] = ACTIONS(2760), + [anon_sym_id] = ACTIONS(2760), + }, + [893] = { + [sym_identifier] = ACTIONS(2764), + [aux_sym_preproc_include_token1] = ACTIONS(2764), + [aux_sym_preproc_include_token2] = ACTIONS(2764), + [aux_sym_preproc_def_token1] = ACTIONS(2764), + [aux_sym_preproc_if_token1] = ACTIONS(2764), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2764), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2764), + [sym_preproc_directive] = ACTIONS(2764), + [anon_sym_LPAREN2] = ACTIONS(2766), + [anon_sym_BANG] = ACTIONS(2766), + [anon_sym_TILDE] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2764), + [anon_sym_PLUS] = ACTIONS(2764), + [anon_sym_STAR] = ACTIONS(2766), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2766), + [anon_sym_SEMI] = ACTIONS(2766), + [anon_sym___extension__] = ACTIONS(2764), + [anon_sym_typedef] = ACTIONS(2764), + [anon_sym_extern] = ACTIONS(2764), + [anon_sym___attribute__] = ACTIONS(2764), + [anon_sym___attribute] = ACTIONS(2764), + [anon_sym_noreturn] = ACTIONS(2764), + [anon_sym_LBRACK] = ACTIONS(2766), + [anon_sym___declspec] = ACTIONS(2764), + [anon_sym___cdecl] = ACTIONS(2764), + [anon_sym___clrcall] = ACTIONS(2764), + [anon_sym___stdcall] = ACTIONS(2764), + [anon_sym___fastcall] = ACTIONS(2764), + [anon_sym___thiscall] = ACTIONS(2764), + [anon_sym___vectorcall] = ACTIONS(2764), + [anon_sym_LBRACE] = ACTIONS(2766), + [anon_sym_RBRACE] = ACTIONS(2766), + [anon_sym_signed] = ACTIONS(2764), + [anon_sym_unsigned] = ACTIONS(2764), + [anon_sym_long] = ACTIONS(2764), + [anon_sym_short] = ACTIONS(2764), + [anon_sym_static] = ACTIONS(2764), + [anon_sym_ATautoreleasepool] = ACTIONS(2766), + [anon_sym_auto] = ACTIONS(2764), + [anon_sym_register] = ACTIONS(2764), + [anon_sym_inline] = ACTIONS(2764), + [anon_sym___inline] = ACTIONS(2764), + [anon_sym___inline__] = ACTIONS(2764), + [anon_sym___forceinline] = ACTIONS(2764), + [anon_sym_thread_local] = ACTIONS(2764), + [anon_sym___thread] = ACTIONS(2764), + [anon_sym_CG_EXTERN] = ACTIONS(2764), + [anon_sym_CG_INLINE] = ACTIONS(2764), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2764), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2764), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2764), + [anon_sym_IBOutlet] = ACTIONS(2764), + [anon_sym_IBInspectable] = ACTIONS(2764), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2764), + [anon_sym_NS_INLINE] = ACTIONS(2764), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2764), + [anon_sym_OBJC_EXPORT] = ACTIONS(2764), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2764), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2764), + [anon_sym_const] = ACTIONS(2764), + [anon_sym_constexpr] = ACTIONS(2764), + [anon_sym_volatile] = ACTIONS(2764), + [anon_sym_restrict] = ACTIONS(2764), + [anon_sym___restrict__] = ACTIONS(2764), + [anon_sym__Atomic] = ACTIONS(2764), + [anon_sym__Noreturn] = ACTIONS(2764), + [anon_sym__Nonnull] = ACTIONS(2764), + [anon_sym_nullable] = ACTIONS(2764), + [anon_sym__Complex] = ACTIONS(2764), + [anon_sym__Nullable] = ACTIONS(2764), + [anon_sym__Nullable_result] = ACTIONS(2764), + [anon_sym__Null_unspecified] = ACTIONS(2764), + [anon_sym___autoreleasing] = ACTIONS(2764), + [anon_sym___block] = ACTIONS(2764), + [anon_sym___bridge] = ACTIONS(2764), + [anon_sym___bridge_retained] = ACTIONS(2764), + [anon_sym___bridge_transfer] = ACTIONS(2764), + [anon_sym___complex] = ACTIONS(2764), + [anon_sym___const] = ACTIONS(2764), + [anon_sym___imag] = ACTIONS(2764), + [anon_sym___kindof] = ACTIONS(2764), + [anon_sym___nonnull] = ACTIONS(2764), + [anon_sym___nullable] = ACTIONS(2764), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2764), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2764), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2764), + [anon_sym___real] = ACTIONS(2764), + [anon_sym___strong] = ACTIONS(2764), + [anon_sym___unsafe_unretained] = ACTIONS(2764), + [anon_sym___unused] = ACTIONS(2764), + [anon_sym___weak] = ACTIONS(2764), + [anon_sym_alignas] = ACTIONS(2764), + [anon_sym__Alignas] = ACTIONS(2764), + [sym_primitive_type] = ACTIONS(2764), + [anon_sym_enum] = ACTIONS(2764), + [anon_sym_struct] = ACTIONS(2764), + [anon_sym_union] = ACTIONS(2764), + [anon_sym_if] = ACTIONS(2764), + [anon_sym_switch] = ACTIONS(2764), + [anon_sym_case] = ACTIONS(2764), + [anon_sym_default] = ACTIONS(2764), + [anon_sym_while] = ACTIONS(2764), + [anon_sym_do] = ACTIONS(2764), + [anon_sym_for] = ACTIONS(2764), + [anon_sym_in] = ACTIONS(2764), + [anon_sym_return] = ACTIONS(2764), + [anon_sym_break] = ACTIONS(2764), + [anon_sym_continue] = ACTIONS(2764), + [anon_sym_goto] = ACTIONS(2764), + [anon_sym_DASH_DASH] = ACTIONS(2766), + [anon_sym_PLUS_PLUS] = ACTIONS(2766), + [anon_sym_sizeof] = ACTIONS(2764), + [anon_sym___alignof__] = ACTIONS(2764), + [anon_sym___alignof] = ACTIONS(2764), + [anon_sym__alignof] = ACTIONS(2764), + [anon_sym_alignof] = ACTIONS(2764), + [anon_sym__Alignof] = ACTIONS(2764), + [anon_sym_offsetof] = ACTIONS(2764), + [anon_sym__Generic] = ACTIONS(2764), + [anon_sym_asm] = ACTIONS(2764), + [anon_sym___asm__] = ACTIONS(2764), + [anon_sym___asm] = ACTIONS(2764), + [sym_number_literal] = ACTIONS(2766), + [anon_sym_L_SQUOTE] = ACTIONS(2766), + [anon_sym_u_SQUOTE] = ACTIONS(2766), + [anon_sym_U_SQUOTE] = ACTIONS(2766), + [anon_sym_u8_SQUOTE] = ACTIONS(2766), + [anon_sym_SQUOTE] = ACTIONS(2766), + [anon_sym_AT] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2766), + [anon_sym_L_DQUOTE] = ACTIONS(2766), + [anon_sym_u_DQUOTE] = ACTIONS(2766), + [anon_sym_U_DQUOTE] = ACTIONS(2766), + [anon_sym_u8_DQUOTE] = ACTIONS(2766), + [sym_true] = ACTIONS(2764), + [sym_false] = ACTIONS(2764), + [anon_sym_NULL] = ACTIONS(2764), + [anon_sym_nullptr] = ACTIONS(2764), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2764), + [anon_sym___typeof] = ACTIONS(2764), + [anon_sym_typeof] = ACTIONS(2764), + [anon_sym_ATimport] = ACTIONS(2766), + [aux_sym_preproc_undef_token1] = ACTIONS(2764), + [anon_sym_POUND] = ACTIONS(2764), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2764), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2764), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2764), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2764), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2764), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2764), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2764), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2764), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2764), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2764), + [anon_sym_NS_AVAILABLE] = ACTIONS(2764), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2764), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2764), + [anon_sym_API_AVAILABLE] = ACTIONS(2764), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2764), + [anon_sym_API_DEPRECATED] = ACTIONS(2764), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2764), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2764), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2764), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2764), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2764), + [anon_sym___deprecated_msg] = ACTIONS(2764), + [anon_sym___deprecated_enum_msg] = ACTIONS(2764), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2764), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2764), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2764), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2764), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2764), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2764), + [anon_sym_ATprotocol] = ACTIONS(2766), + [anon_sym_ATinterface] = ACTIONS(2766), + [anon_sym_ATimplementation] = ACTIONS(2766), + [anon_sym_ATcompatibility_alias] = ACTIONS(2766), + [anon_sym_ATtry] = ACTIONS(2766), + [anon_sym___try] = ACTIONS(2764), + [anon_sym_ATthrow] = ACTIONS(2766), + [anon_sym_ATselector] = ACTIONS(2766), + [anon_sym_ATavailable] = ACTIONS(2766), + [anon_sym___builtin_available] = ACTIONS(2764), + [anon_sym_va_arg] = ACTIONS(2764), + [anon_sym_ATencode] = ACTIONS(2766), + [anon_sym_ATsynchronized] = ACTIONS(2766), + [anon_sym_BOOL] = ACTIONS(2764), + [anon_sym_IMP] = ACTIONS(2764), + [anon_sym_SEL] = ACTIONS(2764), + [anon_sym_Class] = ACTIONS(2764), + [anon_sym_id] = ACTIONS(2764), + }, + [894] = { + [sym_identifier] = ACTIONS(2616), + [aux_sym_preproc_include_token1] = ACTIONS(2616), + [aux_sym_preproc_include_token2] = ACTIONS(2616), + [aux_sym_preproc_def_token1] = ACTIONS(2616), + [aux_sym_preproc_if_token1] = ACTIONS(2616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2616), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2616), + [sym_preproc_directive] = ACTIONS(2616), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2618), + [anon_sym_TILDE] = ACTIONS(2618), + [anon_sym_DASH] = ACTIONS(2616), + [anon_sym_PLUS] = ACTIONS(2616), + [anon_sym_STAR] = ACTIONS(2618), + [anon_sym_CARET] = ACTIONS(2618), + [anon_sym_AMP] = ACTIONS(2618), + [anon_sym_SEMI] = ACTIONS(2618), + [anon_sym___extension__] = ACTIONS(2616), + [anon_sym_typedef] = ACTIONS(2616), + [anon_sym_extern] = ACTIONS(2616), + [anon_sym___attribute__] = ACTIONS(2616), + [anon_sym___attribute] = ACTIONS(2616), + [anon_sym_noreturn] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(2618), + [anon_sym___declspec] = ACTIONS(2616), + [anon_sym___cdecl] = ACTIONS(2616), + [anon_sym___clrcall] = ACTIONS(2616), + [anon_sym___stdcall] = ACTIONS(2616), + [anon_sym___fastcall] = ACTIONS(2616), + [anon_sym___thiscall] = ACTIONS(2616), + [anon_sym___vectorcall] = ACTIONS(2616), + [anon_sym_LBRACE] = ACTIONS(2618), + [anon_sym_RBRACE] = ACTIONS(2618), + [anon_sym_signed] = ACTIONS(2616), + [anon_sym_unsigned] = ACTIONS(2616), + [anon_sym_long] = ACTIONS(2616), + [anon_sym_short] = ACTIONS(2616), + [anon_sym_static] = ACTIONS(2616), + [anon_sym_ATautoreleasepool] = ACTIONS(2618), + [anon_sym_auto] = ACTIONS(2616), + [anon_sym_register] = ACTIONS(2616), + [anon_sym_inline] = ACTIONS(2616), + [anon_sym___inline] = ACTIONS(2616), + [anon_sym___inline__] = ACTIONS(2616), + [anon_sym___forceinline] = ACTIONS(2616), + [anon_sym_thread_local] = ACTIONS(2616), + [anon_sym___thread] = ACTIONS(2616), + [anon_sym_CG_EXTERN] = ACTIONS(2616), + [anon_sym_CG_INLINE] = ACTIONS(2616), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2616), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2616), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2616), + [anon_sym_IBOutlet] = ACTIONS(2616), + [anon_sym_IBInspectable] = ACTIONS(2616), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2616), + [anon_sym_NS_INLINE] = ACTIONS(2616), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2616), + [anon_sym_OBJC_EXPORT] = ACTIONS(2616), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2616), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2616), + [anon_sym_const] = ACTIONS(2616), + [anon_sym_constexpr] = ACTIONS(2616), + [anon_sym_volatile] = ACTIONS(2616), + [anon_sym_restrict] = ACTIONS(2616), + [anon_sym___restrict__] = ACTIONS(2616), + [anon_sym__Atomic] = ACTIONS(2616), + [anon_sym__Noreturn] = ACTIONS(2616), + [anon_sym__Nonnull] = ACTIONS(2616), + [anon_sym_nullable] = ACTIONS(2616), + [anon_sym__Complex] = ACTIONS(2616), + [anon_sym__Nullable] = ACTIONS(2616), + [anon_sym__Nullable_result] = ACTIONS(2616), + [anon_sym__Null_unspecified] = ACTIONS(2616), + [anon_sym___autoreleasing] = ACTIONS(2616), + [anon_sym___block] = ACTIONS(2616), + [anon_sym___bridge] = ACTIONS(2616), + [anon_sym___bridge_retained] = ACTIONS(2616), + [anon_sym___bridge_transfer] = ACTIONS(2616), + [anon_sym___complex] = ACTIONS(2616), + [anon_sym___const] = ACTIONS(2616), + [anon_sym___imag] = ACTIONS(2616), + [anon_sym___kindof] = ACTIONS(2616), + [anon_sym___nonnull] = ACTIONS(2616), + [anon_sym___nullable] = ACTIONS(2616), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2616), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2616), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2616), + [anon_sym___real] = ACTIONS(2616), + [anon_sym___strong] = ACTIONS(2616), + [anon_sym___unsafe_unretained] = ACTIONS(2616), + [anon_sym___unused] = ACTIONS(2616), + [anon_sym___weak] = ACTIONS(2616), + [anon_sym_alignas] = ACTIONS(2616), + [anon_sym__Alignas] = ACTIONS(2616), + [sym_primitive_type] = ACTIONS(2616), + [anon_sym_enum] = ACTIONS(2616), + [anon_sym_struct] = ACTIONS(2616), + [anon_sym_union] = ACTIONS(2616), + [anon_sym_if] = ACTIONS(2616), + [anon_sym_switch] = ACTIONS(2616), + [anon_sym_case] = ACTIONS(2616), + [anon_sym_default] = ACTIONS(2616), + [anon_sym_while] = ACTIONS(2616), + [anon_sym_do] = ACTIONS(2616), + [anon_sym_for] = ACTIONS(2616), + [anon_sym_in] = ACTIONS(2616), + [anon_sym_return] = ACTIONS(2616), + [anon_sym_break] = ACTIONS(2616), + [anon_sym_continue] = ACTIONS(2616), + [anon_sym_goto] = ACTIONS(2616), + [anon_sym_DASH_DASH] = ACTIONS(2618), + [anon_sym_PLUS_PLUS] = ACTIONS(2618), + [anon_sym_sizeof] = ACTIONS(2616), + [anon_sym___alignof__] = ACTIONS(2616), + [anon_sym___alignof] = ACTIONS(2616), + [anon_sym__alignof] = ACTIONS(2616), + [anon_sym_alignof] = ACTIONS(2616), + [anon_sym__Alignof] = ACTIONS(2616), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2616), + [anon_sym_asm] = ACTIONS(2616), + [anon_sym___asm__] = ACTIONS(2616), + [anon_sym___asm] = ACTIONS(2616), + [sym_number_literal] = ACTIONS(2618), + [anon_sym_L_SQUOTE] = ACTIONS(2618), + [anon_sym_u_SQUOTE] = ACTIONS(2618), + [anon_sym_U_SQUOTE] = ACTIONS(2618), + [anon_sym_u8_SQUOTE] = ACTIONS(2618), + [anon_sym_SQUOTE] = ACTIONS(2618), + [anon_sym_AT] = ACTIONS(2616), + [anon_sym_DQUOTE] = ACTIONS(2618), + [anon_sym_L_DQUOTE] = ACTIONS(2618), + [anon_sym_u_DQUOTE] = ACTIONS(2618), + [anon_sym_U_DQUOTE] = ACTIONS(2618), + [anon_sym_u8_DQUOTE] = ACTIONS(2618), + [sym_true] = ACTIONS(2616), + [sym_false] = ACTIONS(2616), + [anon_sym_NULL] = ACTIONS(2616), + [anon_sym_nullptr] = ACTIONS(2616), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2616), + [anon_sym___typeof] = ACTIONS(2616), + [anon_sym_typeof] = ACTIONS(2616), + [anon_sym_ATimport] = ACTIONS(2618), + [aux_sym_preproc_undef_token1] = ACTIONS(2616), + [anon_sym_POUND] = ACTIONS(2616), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2616), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2616), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2616), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2616), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2616), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2616), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2616), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2616), + [anon_sym_NS_AVAILABLE] = ACTIONS(2616), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2616), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_API_AVAILABLE] = ACTIONS(2616), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_API_DEPRECATED] = ACTIONS(2616), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2616), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2616), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2616), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2616), + [anon_sym___deprecated_msg] = ACTIONS(2616), + [anon_sym___deprecated_enum_msg] = ACTIONS(2616), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2616), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2616), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2616), + [anon_sym_ATprotocol] = ACTIONS(2618), + [anon_sym_ATinterface] = ACTIONS(2618), + [anon_sym_ATimplementation] = ACTIONS(2618), + [anon_sym_ATcompatibility_alias] = ACTIONS(2618), + [anon_sym_ATtry] = ACTIONS(2618), + [anon_sym___try] = ACTIONS(2616), + [anon_sym_ATthrow] = ACTIONS(2618), + [anon_sym_ATselector] = ACTIONS(2618), + [anon_sym_ATavailable] = ACTIONS(2618), + [anon_sym___builtin_available] = ACTIONS(2616), + [anon_sym_va_arg] = ACTIONS(2616), + [anon_sym_ATencode] = ACTIONS(2618), + [anon_sym_ATsynchronized] = ACTIONS(2618), + [anon_sym_BOOL] = ACTIONS(2616), + [anon_sym_IMP] = ACTIONS(2616), + [anon_sym_SEL] = ACTIONS(2616), + [anon_sym_Class] = ACTIONS(2616), + [anon_sym_id] = ACTIONS(2616), + }, + [895] = { + [sym_identifier] = ACTIONS(2684), + [aux_sym_preproc_include_token1] = ACTIONS(2684), + [aux_sym_preproc_include_token2] = ACTIONS(2684), + [aux_sym_preproc_def_token1] = ACTIONS(2684), + [aux_sym_preproc_if_token1] = ACTIONS(2684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2684), + [sym_preproc_directive] = ACTIONS(2684), + [anon_sym_LPAREN2] = ACTIONS(2686), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_CARET] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_SEMI] = ACTIONS(2686), + [anon_sym___extension__] = ACTIONS(2684), + [anon_sym_typedef] = ACTIONS(2684), + [anon_sym_extern] = ACTIONS(2684), + [anon_sym___attribute__] = ACTIONS(2684), + [anon_sym___attribute] = ACTIONS(2684), + [anon_sym_noreturn] = ACTIONS(2684), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym___declspec] = ACTIONS(2684), + [anon_sym___cdecl] = ACTIONS(2684), + [anon_sym___clrcall] = ACTIONS(2684), + [anon_sym___stdcall] = ACTIONS(2684), + [anon_sym___fastcall] = ACTIONS(2684), + [anon_sym___thiscall] = ACTIONS(2684), + [anon_sym___vectorcall] = ACTIONS(2684), + [anon_sym_LBRACE] = ACTIONS(2686), + [anon_sym_RBRACE] = ACTIONS(2686), + [anon_sym_signed] = ACTIONS(2684), + [anon_sym_unsigned] = ACTIONS(2684), + [anon_sym_long] = ACTIONS(2684), + [anon_sym_short] = ACTIONS(2684), + [anon_sym_static] = ACTIONS(2684), + [anon_sym_ATautoreleasepool] = ACTIONS(2686), + [anon_sym_auto] = ACTIONS(2684), + [anon_sym_register] = ACTIONS(2684), + [anon_sym_inline] = ACTIONS(2684), + [anon_sym___inline] = ACTIONS(2684), + [anon_sym___inline__] = ACTIONS(2684), + [anon_sym___forceinline] = ACTIONS(2684), + [anon_sym_thread_local] = ACTIONS(2684), + [anon_sym___thread] = ACTIONS(2684), + [anon_sym_CG_EXTERN] = ACTIONS(2684), + [anon_sym_CG_INLINE] = ACTIONS(2684), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2684), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2684), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2684), + [anon_sym_IBOutlet] = ACTIONS(2684), + [anon_sym_IBInspectable] = ACTIONS(2684), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2684), + [anon_sym_NS_INLINE] = ACTIONS(2684), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2684), + [anon_sym_OBJC_EXPORT] = ACTIONS(2684), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2684), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2684), + [anon_sym_const] = ACTIONS(2684), + [anon_sym_constexpr] = ACTIONS(2684), + [anon_sym_volatile] = ACTIONS(2684), + [anon_sym_restrict] = ACTIONS(2684), + [anon_sym___restrict__] = ACTIONS(2684), + [anon_sym__Atomic] = ACTIONS(2684), + [anon_sym__Noreturn] = ACTIONS(2684), + [anon_sym__Nonnull] = ACTIONS(2684), + [anon_sym_nullable] = ACTIONS(2684), + [anon_sym__Complex] = ACTIONS(2684), + [anon_sym__Nullable] = ACTIONS(2684), + [anon_sym__Nullable_result] = ACTIONS(2684), + [anon_sym__Null_unspecified] = ACTIONS(2684), + [anon_sym___autoreleasing] = ACTIONS(2684), + [anon_sym___block] = ACTIONS(2684), + [anon_sym___bridge] = ACTIONS(2684), + [anon_sym___bridge_retained] = ACTIONS(2684), + [anon_sym___bridge_transfer] = ACTIONS(2684), + [anon_sym___complex] = ACTIONS(2684), + [anon_sym___const] = ACTIONS(2684), + [anon_sym___imag] = ACTIONS(2684), + [anon_sym___kindof] = ACTIONS(2684), + [anon_sym___nonnull] = ACTIONS(2684), + [anon_sym___nullable] = ACTIONS(2684), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2684), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2684), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2684), + [anon_sym___real] = ACTIONS(2684), + [anon_sym___strong] = ACTIONS(2684), + [anon_sym___unsafe_unretained] = ACTIONS(2684), + [anon_sym___unused] = ACTIONS(2684), + [anon_sym___weak] = ACTIONS(2684), + [anon_sym_alignas] = ACTIONS(2684), + [anon_sym__Alignas] = ACTIONS(2684), + [sym_primitive_type] = ACTIONS(2684), + [anon_sym_enum] = ACTIONS(2684), + [anon_sym_struct] = ACTIONS(2684), + [anon_sym_union] = ACTIONS(2684), + [anon_sym_if] = ACTIONS(2684), + [anon_sym_switch] = ACTIONS(2684), + [anon_sym_case] = ACTIONS(2684), + [anon_sym_default] = ACTIONS(2684), + [anon_sym_while] = ACTIONS(2684), + [anon_sym_do] = ACTIONS(2684), + [anon_sym_for] = ACTIONS(2684), + [anon_sym_in] = ACTIONS(2684), + [anon_sym_return] = ACTIONS(2684), + [anon_sym_break] = ACTIONS(2684), + [anon_sym_continue] = ACTIONS(2684), + [anon_sym_goto] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(2686), + [anon_sym_PLUS_PLUS] = ACTIONS(2686), + [anon_sym_sizeof] = ACTIONS(2684), + [anon_sym___alignof__] = ACTIONS(2684), + [anon_sym___alignof] = ACTIONS(2684), + [anon_sym__alignof] = ACTIONS(2684), + [anon_sym_alignof] = ACTIONS(2684), + [anon_sym__Alignof] = ACTIONS(2684), + [anon_sym_offsetof] = ACTIONS(2684), + [anon_sym__Generic] = ACTIONS(2684), + [anon_sym_asm] = ACTIONS(2684), + [anon_sym___asm__] = ACTIONS(2684), + [anon_sym___asm] = ACTIONS(2684), + [sym_number_literal] = ACTIONS(2686), + [anon_sym_L_SQUOTE] = ACTIONS(2686), + [anon_sym_u_SQUOTE] = ACTIONS(2686), + [anon_sym_U_SQUOTE] = ACTIONS(2686), + [anon_sym_u8_SQUOTE] = ACTIONS(2686), + [anon_sym_SQUOTE] = ACTIONS(2686), + [anon_sym_AT] = ACTIONS(2684), + [anon_sym_DQUOTE] = ACTIONS(2686), + [anon_sym_L_DQUOTE] = ACTIONS(2686), + [anon_sym_u_DQUOTE] = ACTIONS(2686), + [anon_sym_U_DQUOTE] = ACTIONS(2686), + [anon_sym_u8_DQUOTE] = ACTIONS(2686), + [sym_true] = ACTIONS(2684), + [sym_false] = ACTIONS(2684), + [anon_sym_NULL] = ACTIONS(2684), + [anon_sym_nullptr] = ACTIONS(2684), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2684), + [anon_sym___typeof] = ACTIONS(2684), + [anon_sym_typeof] = ACTIONS(2684), + [anon_sym_ATimport] = ACTIONS(2686), + [aux_sym_preproc_undef_token1] = ACTIONS(2684), + [anon_sym_POUND] = ACTIONS(2684), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2684), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2684), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2684), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2684), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2684), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2684), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2684), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2684), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2684), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2684), + [anon_sym_NS_AVAILABLE] = ACTIONS(2684), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2684), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2684), + [anon_sym_API_AVAILABLE] = ACTIONS(2684), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2684), + [anon_sym_API_DEPRECATED] = ACTIONS(2684), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2684), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2684), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2684), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2684), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2684), + [anon_sym___deprecated_msg] = ACTIONS(2684), + [anon_sym___deprecated_enum_msg] = ACTIONS(2684), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2684), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2684), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2684), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2684), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2684), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2684), + [anon_sym_ATprotocol] = ACTIONS(2686), + [anon_sym_ATinterface] = ACTIONS(2686), + [anon_sym_ATimplementation] = ACTIONS(2686), + [anon_sym_ATcompatibility_alias] = ACTIONS(2686), + [anon_sym_ATtry] = ACTIONS(2686), + [anon_sym___try] = ACTIONS(2684), + [anon_sym_ATthrow] = ACTIONS(2686), + [anon_sym_ATselector] = ACTIONS(2686), + [anon_sym_ATavailable] = ACTIONS(2686), + [anon_sym___builtin_available] = ACTIONS(2684), + [anon_sym_va_arg] = ACTIONS(2684), + [anon_sym_ATencode] = ACTIONS(2686), + [anon_sym_ATsynchronized] = ACTIONS(2686), + [anon_sym_BOOL] = ACTIONS(2684), + [anon_sym_IMP] = ACTIONS(2684), + [anon_sym_SEL] = ACTIONS(2684), + [anon_sym_Class] = ACTIONS(2684), + [anon_sym_id] = ACTIONS(2684), + }, + [896] = { + [sym_identifier] = ACTIONS(2590), + [aux_sym_preproc_include_token1] = ACTIONS(2590), + [aux_sym_preproc_include_token2] = ACTIONS(2590), + [aux_sym_preproc_def_token1] = ACTIONS(2590), + [aux_sym_preproc_if_token1] = ACTIONS(2590), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2590), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2590), + [sym_preproc_directive] = ACTIONS(2590), + [anon_sym_LPAREN2] = ACTIONS(2592), + [anon_sym_BANG] = ACTIONS(2592), + [anon_sym_TILDE] = ACTIONS(2592), + [anon_sym_DASH] = ACTIONS(2590), + [anon_sym_PLUS] = ACTIONS(2590), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_CARET] = ACTIONS(2592), + [anon_sym_AMP] = ACTIONS(2592), + [anon_sym_SEMI] = ACTIONS(2592), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_typedef] = ACTIONS(2590), + [anon_sym_extern] = ACTIONS(2590), + [anon_sym___attribute__] = ACTIONS(2590), + [anon_sym___attribute] = ACTIONS(2590), + [anon_sym_noreturn] = ACTIONS(2590), + [anon_sym_LBRACK] = ACTIONS(2592), + [anon_sym___declspec] = ACTIONS(2590), + [anon_sym___cdecl] = ACTIONS(2590), + [anon_sym___clrcall] = ACTIONS(2590), + [anon_sym___stdcall] = ACTIONS(2590), + [anon_sym___fastcall] = ACTIONS(2590), + [anon_sym___thiscall] = ACTIONS(2590), + [anon_sym___vectorcall] = ACTIONS(2590), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_signed] = ACTIONS(2590), + [anon_sym_unsigned] = ACTIONS(2590), + [anon_sym_long] = ACTIONS(2590), + [anon_sym_short] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(2590), + [anon_sym_ATautoreleasepool] = ACTIONS(2592), + [anon_sym_auto] = ACTIONS(2590), + [anon_sym_register] = ACTIONS(2590), + [anon_sym_inline] = ACTIONS(2590), + [anon_sym___inline] = ACTIONS(2590), + [anon_sym___inline__] = ACTIONS(2590), + [anon_sym___forceinline] = ACTIONS(2590), + [anon_sym_thread_local] = ACTIONS(2590), + [anon_sym___thread] = ACTIONS(2590), + [anon_sym_CG_EXTERN] = ACTIONS(2590), + [anon_sym_CG_INLINE] = ACTIONS(2590), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2590), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2590), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2590), + [anon_sym_IBOutlet] = ACTIONS(2590), + [anon_sym_IBInspectable] = ACTIONS(2590), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2590), + [anon_sym_NS_INLINE] = ACTIONS(2590), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2590), + [anon_sym_OBJC_EXPORT] = ACTIONS(2590), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2590), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2590), + [anon_sym_const] = ACTIONS(2590), + [anon_sym_constexpr] = ACTIONS(2590), + [anon_sym_volatile] = ACTIONS(2590), + [anon_sym_restrict] = ACTIONS(2590), + [anon_sym___restrict__] = ACTIONS(2590), + [anon_sym__Atomic] = ACTIONS(2590), + [anon_sym__Noreturn] = ACTIONS(2590), + [anon_sym__Nonnull] = ACTIONS(2590), + [anon_sym_nullable] = ACTIONS(2590), + [anon_sym__Complex] = ACTIONS(2590), + [anon_sym__Nullable] = ACTIONS(2590), + [anon_sym__Nullable_result] = ACTIONS(2590), + [anon_sym__Null_unspecified] = ACTIONS(2590), + [anon_sym___autoreleasing] = ACTIONS(2590), + [anon_sym___block] = ACTIONS(2590), + [anon_sym___bridge] = ACTIONS(2590), + [anon_sym___bridge_retained] = ACTIONS(2590), + [anon_sym___bridge_transfer] = ACTIONS(2590), + [anon_sym___complex] = ACTIONS(2590), + [anon_sym___const] = ACTIONS(2590), + [anon_sym___imag] = ACTIONS(2590), + [anon_sym___kindof] = ACTIONS(2590), + [anon_sym___nonnull] = ACTIONS(2590), + [anon_sym___nullable] = ACTIONS(2590), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2590), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2590), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2590), + [anon_sym___real] = ACTIONS(2590), + [anon_sym___strong] = ACTIONS(2590), + [anon_sym___unsafe_unretained] = ACTIONS(2590), + [anon_sym___unused] = ACTIONS(2590), + [anon_sym___weak] = ACTIONS(2590), + [anon_sym_alignas] = ACTIONS(2590), + [anon_sym__Alignas] = ACTIONS(2590), + [sym_primitive_type] = ACTIONS(2590), + [anon_sym_enum] = ACTIONS(2590), + [anon_sym_struct] = ACTIONS(2590), + [anon_sym_union] = ACTIONS(2590), + [anon_sym_if] = ACTIONS(2590), + [anon_sym_switch] = ACTIONS(2590), + [anon_sym_case] = ACTIONS(2590), + [anon_sym_default] = ACTIONS(2590), + [anon_sym_while] = ACTIONS(2590), + [anon_sym_do] = ACTIONS(2590), + [anon_sym_for] = ACTIONS(2590), + [anon_sym_in] = ACTIONS(2590), + [anon_sym_return] = ACTIONS(2590), + [anon_sym_break] = ACTIONS(2590), + [anon_sym_continue] = ACTIONS(2590), + [anon_sym_goto] = ACTIONS(2590), + [anon_sym_DASH_DASH] = ACTIONS(2592), + [anon_sym_PLUS_PLUS] = ACTIONS(2592), + [anon_sym_sizeof] = ACTIONS(2590), + [anon_sym___alignof__] = ACTIONS(2590), + [anon_sym___alignof] = ACTIONS(2590), + [anon_sym__alignof] = ACTIONS(2590), + [anon_sym_alignof] = ACTIONS(2590), + [anon_sym__Alignof] = ACTIONS(2590), + [anon_sym_offsetof] = ACTIONS(2590), + [anon_sym__Generic] = ACTIONS(2590), + [anon_sym_asm] = ACTIONS(2590), + [anon_sym___asm__] = ACTIONS(2590), + [anon_sym___asm] = ACTIONS(2590), + [sym_number_literal] = ACTIONS(2592), + [anon_sym_L_SQUOTE] = ACTIONS(2592), + [anon_sym_u_SQUOTE] = ACTIONS(2592), + [anon_sym_U_SQUOTE] = ACTIONS(2592), + [anon_sym_u8_SQUOTE] = ACTIONS(2592), + [anon_sym_SQUOTE] = ACTIONS(2592), + [anon_sym_AT] = ACTIONS(2590), + [anon_sym_DQUOTE] = ACTIONS(2592), + [anon_sym_L_DQUOTE] = ACTIONS(2592), + [anon_sym_u_DQUOTE] = ACTIONS(2592), + [anon_sym_U_DQUOTE] = ACTIONS(2592), + [anon_sym_u8_DQUOTE] = ACTIONS(2592), + [sym_true] = ACTIONS(2590), + [sym_false] = ACTIONS(2590), + [anon_sym_NULL] = ACTIONS(2590), + [anon_sym_nullptr] = ACTIONS(2590), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2590), + [anon_sym___typeof] = ACTIONS(2590), + [anon_sym_typeof] = ACTIONS(2590), + [anon_sym_ATimport] = ACTIONS(2592), + [aux_sym_preproc_undef_token1] = ACTIONS(2590), + [anon_sym_POUND] = ACTIONS(2590), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2590), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2590), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2590), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2590), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2590), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2590), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2590), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2590), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2590), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2590), + [anon_sym_NS_AVAILABLE] = ACTIONS(2590), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2590), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2590), + [anon_sym_API_AVAILABLE] = ACTIONS(2590), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2590), + [anon_sym_API_DEPRECATED] = ACTIONS(2590), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2590), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2590), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2590), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2590), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2590), + [anon_sym___deprecated_msg] = ACTIONS(2590), + [anon_sym___deprecated_enum_msg] = ACTIONS(2590), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2590), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2590), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2590), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2590), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2590), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2590), + [anon_sym_ATprotocol] = ACTIONS(2592), + [anon_sym_ATinterface] = ACTIONS(2592), + [anon_sym_ATimplementation] = ACTIONS(2592), + [anon_sym_ATcompatibility_alias] = ACTIONS(2592), + [anon_sym_ATtry] = ACTIONS(2592), + [anon_sym___try] = ACTIONS(2590), + [anon_sym_ATthrow] = ACTIONS(2592), + [anon_sym_ATselector] = ACTIONS(2592), + [anon_sym_ATavailable] = ACTIONS(2592), + [anon_sym___builtin_available] = ACTIONS(2590), + [anon_sym_va_arg] = ACTIONS(2590), + [anon_sym_ATencode] = ACTIONS(2592), + [anon_sym_ATsynchronized] = ACTIONS(2592), + [anon_sym_BOOL] = ACTIONS(2590), + [anon_sym_IMP] = ACTIONS(2590), + [anon_sym_SEL] = ACTIONS(2590), + [anon_sym_Class] = ACTIONS(2590), + [anon_sym_id] = ACTIONS(2590), + }, + [897] = { + [sym_identifier] = ACTIONS(2688), + [aux_sym_preproc_include_token1] = ACTIONS(2688), + [aux_sym_preproc_include_token2] = ACTIONS(2688), + [aux_sym_preproc_def_token1] = ACTIONS(2688), + [aux_sym_preproc_if_token1] = ACTIONS(2688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2688), + [sym_preproc_directive] = ACTIONS(2688), + [anon_sym_LPAREN2] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_TILDE] = ACTIONS(2690), + [anon_sym_DASH] = ACTIONS(2688), + [anon_sym_PLUS] = ACTIONS(2688), + [anon_sym_STAR] = ACTIONS(2690), + [anon_sym_CARET] = ACTIONS(2690), + [anon_sym_AMP] = ACTIONS(2690), + [anon_sym_SEMI] = ACTIONS(2690), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_typedef] = ACTIONS(2688), + [anon_sym_extern] = ACTIONS(2688), + [anon_sym___attribute__] = ACTIONS(2688), + [anon_sym___attribute] = ACTIONS(2688), + [anon_sym_noreturn] = ACTIONS(2688), + [anon_sym_LBRACK] = ACTIONS(2690), + [anon_sym___declspec] = ACTIONS(2688), + [anon_sym___cdecl] = ACTIONS(2688), + [anon_sym___clrcall] = ACTIONS(2688), + [anon_sym___stdcall] = ACTIONS(2688), + [anon_sym___fastcall] = ACTIONS(2688), + [anon_sym___thiscall] = ACTIONS(2688), + [anon_sym___vectorcall] = ACTIONS(2688), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_RBRACE] = ACTIONS(2690), + [anon_sym_signed] = ACTIONS(2688), + [anon_sym_unsigned] = ACTIONS(2688), + [anon_sym_long] = ACTIONS(2688), + [anon_sym_short] = ACTIONS(2688), + [anon_sym_static] = ACTIONS(2688), + [anon_sym_ATautoreleasepool] = ACTIONS(2690), + [anon_sym_auto] = ACTIONS(2688), + [anon_sym_register] = ACTIONS(2688), + [anon_sym_inline] = ACTIONS(2688), + [anon_sym___inline] = ACTIONS(2688), + [anon_sym___inline__] = ACTIONS(2688), + [anon_sym___forceinline] = ACTIONS(2688), + [anon_sym_thread_local] = ACTIONS(2688), + [anon_sym___thread] = ACTIONS(2688), + [anon_sym_CG_EXTERN] = ACTIONS(2688), + [anon_sym_CG_INLINE] = ACTIONS(2688), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2688), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2688), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2688), + [anon_sym_IBOutlet] = ACTIONS(2688), + [anon_sym_IBInspectable] = ACTIONS(2688), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2688), + [anon_sym_NS_INLINE] = ACTIONS(2688), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2688), + [anon_sym_OBJC_EXPORT] = ACTIONS(2688), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2688), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2688), + [anon_sym_const] = ACTIONS(2688), + [anon_sym_constexpr] = ACTIONS(2688), + [anon_sym_volatile] = ACTIONS(2688), + [anon_sym_restrict] = ACTIONS(2688), + [anon_sym___restrict__] = ACTIONS(2688), + [anon_sym__Atomic] = ACTIONS(2688), + [anon_sym__Noreturn] = ACTIONS(2688), + [anon_sym__Nonnull] = ACTIONS(2688), + [anon_sym_nullable] = ACTIONS(2688), + [anon_sym__Complex] = ACTIONS(2688), + [anon_sym__Nullable] = ACTIONS(2688), + [anon_sym__Nullable_result] = ACTIONS(2688), + [anon_sym__Null_unspecified] = ACTIONS(2688), + [anon_sym___autoreleasing] = ACTIONS(2688), + [anon_sym___block] = ACTIONS(2688), + [anon_sym___bridge] = ACTIONS(2688), + [anon_sym___bridge_retained] = ACTIONS(2688), + [anon_sym___bridge_transfer] = ACTIONS(2688), + [anon_sym___complex] = ACTIONS(2688), + [anon_sym___const] = ACTIONS(2688), + [anon_sym___imag] = ACTIONS(2688), + [anon_sym___kindof] = ACTIONS(2688), + [anon_sym___nonnull] = ACTIONS(2688), + [anon_sym___nullable] = ACTIONS(2688), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2688), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2688), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2688), + [anon_sym___real] = ACTIONS(2688), + [anon_sym___strong] = ACTIONS(2688), + [anon_sym___unsafe_unretained] = ACTIONS(2688), + [anon_sym___unused] = ACTIONS(2688), + [anon_sym___weak] = ACTIONS(2688), + [anon_sym_alignas] = ACTIONS(2688), + [anon_sym__Alignas] = ACTIONS(2688), + [sym_primitive_type] = ACTIONS(2688), + [anon_sym_enum] = ACTIONS(2688), + [anon_sym_struct] = ACTIONS(2688), + [anon_sym_union] = ACTIONS(2688), + [anon_sym_if] = ACTIONS(2688), + [anon_sym_switch] = ACTIONS(2688), + [anon_sym_case] = ACTIONS(2688), + [anon_sym_default] = ACTIONS(2688), + [anon_sym_while] = ACTIONS(2688), + [anon_sym_do] = ACTIONS(2688), + [anon_sym_for] = ACTIONS(2688), + [anon_sym_in] = ACTIONS(2688), + [anon_sym_return] = ACTIONS(2688), + [anon_sym_break] = ACTIONS(2688), + [anon_sym_continue] = ACTIONS(2688), + [anon_sym_goto] = ACTIONS(2688), + [anon_sym_DASH_DASH] = ACTIONS(2690), + [anon_sym_PLUS_PLUS] = ACTIONS(2690), + [anon_sym_sizeof] = ACTIONS(2688), + [anon_sym___alignof__] = ACTIONS(2688), + [anon_sym___alignof] = ACTIONS(2688), + [anon_sym__alignof] = ACTIONS(2688), + [anon_sym_alignof] = ACTIONS(2688), + [anon_sym__Alignof] = ACTIONS(2688), + [anon_sym_offsetof] = ACTIONS(2688), + [anon_sym__Generic] = ACTIONS(2688), + [anon_sym_asm] = ACTIONS(2688), + [anon_sym___asm__] = ACTIONS(2688), + [anon_sym___asm] = ACTIONS(2688), + [sym_number_literal] = ACTIONS(2690), + [anon_sym_L_SQUOTE] = ACTIONS(2690), + [anon_sym_u_SQUOTE] = ACTIONS(2690), + [anon_sym_U_SQUOTE] = ACTIONS(2690), + [anon_sym_u8_SQUOTE] = ACTIONS(2690), + [anon_sym_SQUOTE] = ACTIONS(2690), + [anon_sym_AT] = ACTIONS(2688), + [anon_sym_DQUOTE] = ACTIONS(2690), + [anon_sym_L_DQUOTE] = ACTIONS(2690), + [anon_sym_u_DQUOTE] = ACTIONS(2690), + [anon_sym_U_DQUOTE] = ACTIONS(2690), + [anon_sym_u8_DQUOTE] = ACTIONS(2690), + [sym_true] = ACTIONS(2688), + [sym_false] = ACTIONS(2688), + [anon_sym_NULL] = ACTIONS(2688), + [anon_sym_nullptr] = ACTIONS(2688), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2688), + [anon_sym___typeof] = ACTIONS(2688), + [anon_sym_typeof] = ACTIONS(2688), + [anon_sym_ATimport] = ACTIONS(2690), + [aux_sym_preproc_undef_token1] = ACTIONS(2688), + [anon_sym_POUND] = ACTIONS(2688), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2688), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2688), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2688), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2688), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2688), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2688), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2688), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2688), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2688), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2688), + [anon_sym_NS_AVAILABLE] = ACTIONS(2688), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2688), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2688), + [anon_sym_API_AVAILABLE] = ACTIONS(2688), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2688), + [anon_sym_API_DEPRECATED] = ACTIONS(2688), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2688), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2688), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2688), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2688), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2688), + [anon_sym___deprecated_msg] = ACTIONS(2688), + [anon_sym___deprecated_enum_msg] = ACTIONS(2688), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2688), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2688), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2688), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2688), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2688), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2688), + [anon_sym_ATprotocol] = ACTIONS(2690), + [anon_sym_ATinterface] = ACTIONS(2690), + [anon_sym_ATimplementation] = ACTIONS(2690), + [anon_sym_ATcompatibility_alias] = ACTIONS(2690), + [anon_sym_ATtry] = ACTIONS(2690), + [anon_sym___try] = ACTIONS(2688), + [anon_sym_ATthrow] = ACTIONS(2690), + [anon_sym_ATselector] = ACTIONS(2690), + [anon_sym_ATavailable] = ACTIONS(2690), + [anon_sym___builtin_available] = ACTIONS(2688), + [anon_sym_va_arg] = ACTIONS(2688), + [anon_sym_ATencode] = ACTIONS(2690), + [anon_sym_ATsynchronized] = ACTIONS(2690), + [anon_sym_BOOL] = ACTIONS(2688), + [anon_sym_IMP] = ACTIONS(2688), + [anon_sym_SEL] = ACTIONS(2688), + [anon_sym_Class] = ACTIONS(2688), + [anon_sym_id] = ACTIONS(2688), + }, + [898] = { + [sym_identifier] = ACTIONS(2736), + [aux_sym_preproc_include_token1] = ACTIONS(2736), + [aux_sym_preproc_include_token2] = ACTIONS(2736), + [aux_sym_preproc_def_token1] = ACTIONS(2736), + [aux_sym_preproc_if_token1] = ACTIONS(2736), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2736), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2736), + [sym_preproc_directive] = ACTIONS(2736), + [anon_sym_LPAREN2] = ACTIONS(2738), + [anon_sym_BANG] = ACTIONS(2738), + [anon_sym_TILDE] = ACTIONS(2738), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_CARET] = ACTIONS(2738), + [anon_sym_AMP] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_typedef] = ACTIONS(2736), + [anon_sym_extern] = ACTIONS(2736), + [anon_sym___attribute__] = ACTIONS(2736), + [anon_sym___attribute] = ACTIONS(2736), + [anon_sym_noreturn] = ACTIONS(2736), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym___declspec] = ACTIONS(2736), + [anon_sym___cdecl] = ACTIONS(2736), + [anon_sym___clrcall] = ACTIONS(2736), + [anon_sym___stdcall] = ACTIONS(2736), + [anon_sym___fastcall] = ACTIONS(2736), + [anon_sym___thiscall] = ACTIONS(2736), + [anon_sym___vectorcall] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_RBRACE] = ACTIONS(2738), + [anon_sym_signed] = ACTIONS(2736), + [anon_sym_unsigned] = ACTIONS(2736), + [anon_sym_long] = ACTIONS(2736), + [anon_sym_short] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2736), + [anon_sym_ATautoreleasepool] = ACTIONS(2738), + [anon_sym_auto] = ACTIONS(2736), + [anon_sym_register] = ACTIONS(2736), + [anon_sym_inline] = ACTIONS(2736), + [anon_sym___inline] = ACTIONS(2736), + [anon_sym___inline__] = ACTIONS(2736), + [anon_sym___forceinline] = ACTIONS(2736), + [anon_sym_thread_local] = ACTIONS(2736), + [anon_sym___thread] = ACTIONS(2736), + [anon_sym_CG_EXTERN] = ACTIONS(2736), + [anon_sym_CG_INLINE] = ACTIONS(2736), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2736), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2736), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2736), + [anon_sym_IBOutlet] = ACTIONS(2736), + [anon_sym_IBInspectable] = ACTIONS(2736), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2736), + [anon_sym_NS_INLINE] = ACTIONS(2736), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2736), + [anon_sym_OBJC_EXPORT] = ACTIONS(2736), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2736), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2736), + [anon_sym_const] = ACTIONS(2736), + [anon_sym_constexpr] = ACTIONS(2736), + [anon_sym_volatile] = ACTIONS(2736), + [anon_sym_restrict] = ACTIONS(2736), + [anon_sym___restrict__] = ACTIONS(2736), + [anon_sym__Atomic] = ACTIONS(2736), + [anon_sym__Noreturn] = ACTIONS(2736), + [anon_sym__Nonnull] = ACTIONS(2736), + [anon_sym_nullable] = ACTIONS(2736), + [anon_sym__Complex] = ACTIONS(2736), + [anon_sym__Nullable] = ACTIONS(2736), + [anon_sym__Nullable_result] = ACTIONS(2736), + [anon_sym__Null_unspecified] = ACTIONS(2736), + [anon_sym___autoreleasing] = ACTIONS(2736), + [anon_sym___block] = ACTIONS(2736), + [anon_sym___bridge] = ACTIONS(2736), + [anon_sym___bridge_retained] = ACTIONS(2736), + [anon_sym___bridge_transfer] = ACTIONS(2736), + [anon_sym___complex] = ACTIONS(2736), + [anon_sym___const] = ACTIONS(2736), + [anon_sym___imag] = ACTIONS(2736), + [anon_sym___kindof] = ACTIONS(2736), + [anon_sym___nonnull] = ACTIONS(2736), + [anon_sym___nullable] = ACTIONS(2736), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2736), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2736), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2736), + [anon_sym___real] = ACTIONS(2736), + [anon_sym___strong] = ACTIONS(2736), + [anon_sym___unsafe_unretained] = ACTIONS(2736), + [anon_sym___unused] = ACTIONS(2736), + [anon_sym___weak] = ACTIONS(2736), + [anon_sym_alignas] = ACTIONS(2736), + [anon_sym__Alignas] = ACTIONS(2736), + [sym_primitive_type] = ACTIONS(2736), + [anon_sym_enum] = ACTIONS(2736), + [anon_sym_struct] = ACTIONS(2736), + [anon_sym_union] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_switch] = ACTIONS(2736), + [anon_sym_case] = ACTIONS(2736), + [anon_sym_default] = ACTIONS(2736), + [anon_sym_while] = ACTIONS(2736), + [anon_sym_do] = ACTIONS(2736), + [anon_sym_for] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2736), + [anon_sym_return] = ACTIONS(2736), + [anon_sym_break] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2736), + [anon_sym_goto] = ACTIONS(2736), + [anon_sym_DASH_DASH] = ACTIONS(2738), + [anon_sym_PLUS_PLUS] = ACTIONS(2738), + [anon_sym_sizeof] = ACTIONS(2736), + [anon_sym___alignof__] = ACTIONS(2736), + [anon_sym___alignof] = ACTIONS(2736), + [anon_sym__alignof] = ACTIONS(2736), + [anon_sym_alignof] = ACTIONS(2736), + [anon_sym__Alignof] = ACTIONS(2736), + [anon_sym_offsetof] = ACTIONS(2736), + [anon_sym__Generic] = ACTIONS(2736), + [anon_sym_asm] = ACTIONS(2736), + [anon_sym___asm__] = ACTIONS(2736), + [anon_sym___asm] = ACTIONS(2736), + [sym_number_literal] = ACTIONS(2738), + [anon_sym_L_SQUOTE] = ACTIONS(2738), + [anon_sym_u_SQUOTE] = ACTIONS(2738), + [anon_sym_U_SQUOTE] = ACTIONS(2738), + [anon_sym_u8_SQUOTE] = ACTIONS(2738), + [anon_sym_SQUOTE] = ACTIONS(2738), + [anon_sym_AT] = ACTIONS(2736), + [anon_sym_DQUOTE] = ACTIONS(2738), + [anon_sym_L_DQUOTE] = ACTIONS(2738), + [anon_sym_u_DQUOTE] = ACTIONS(2738), + [anon_sym_U_DQUOTE] = ACTIONS(2738), + [anon_sym_u8_DQUOTE] = ACTIONS(2738), + [sym_true] = ACTIONS(2736), + [sym_false] = ACTIONS(2736), + [anon_sym_NULL] = ACTIONS(2736), + [anon_sym_nullptr] = ACTIONS(2736), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2736), + [anon_sym___typeof] = ACTIONS(2736), + [anon_sym_typeof] = ACTIONS(2736), + [anon_sym_ATimport] = ACTIONS(2738), + [aux_sym_preproc_undef_token1] = ACTIONS(2736), + [anon_sym_POUND] = ACTIONS(2736), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2736), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2736), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2736), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2736), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2736), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2736), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2736), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2736), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2736), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2736), + [anon_sym_NS_AVAILABLE] = ACTIONS(2736), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2736), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2736), + [anon_sym_API_AVAILABLE] = ACTIONS(2736), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2736), + [anon_sym_API_DEPRECATED] = ACTIONS(2736), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2736), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2736), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2736), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2736), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2736), + [anon_sym___deprecated_msg] = ACTIONS(2736), + [anon_sym___deprecated_enum_msg] = ACTIONS(2736), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2736), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2736), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2736), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2736), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2736), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2736), + [anon_sym_ATprotocol] = ACTIONS(2738), + [anon_sym_ATinterface] = ACTIONS(2738), + [anon_sym_ATimplementation] = ACTIONS(2738), + [anon_sym_ATcompatibility_alias] = ACTIONS(2738), + [anon_sym_ATtry] = ACTIONS(2738), + [anon_sym___try] = ACTIONS(2736), + [anon_sym_ATthrow] = ACTIONS(2738), + [anon_sym_ATselector] = ACTIONS(2738), + [anon_sym_ATavailable] = ACTIONS(2738), + [anon_sym___builtin_available] = ACTIONS(2736), + [anon_sym_va_arg] = ACTIONS(2736), + [anon_sym_ATencode] = ACTIONS(2738), + [anon_sym_ATsynchronized] = ACTIONS(2738), + [anon_sym_BOOL] = ACTIONS(2736), + [anon_sym_IMP] = ACTIONS(2736), + [anon_sym_SEL] = ACTIONS(2736), + [anon_sym_Class] = ACTIONS(2736), + [anon_sym_id] = ACTIONS(2736), + }, + [899] = { + [sym_identifier] = ACTIONS(2768), + [aux_sym_preproc_include_token1] = ACTIONS(2768), + [aux_sym_preproc_include_token2] = ACTIONS(2768), + [aux_sym_preproc_def_token1] = ACTIONS(2768), + [aux_sym_preproc_if_token1] = ACTIONS(2768), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2768), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2768), + [sym_preproc_directive] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_TILDE] = ACTIONS(2770), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(2770), + [anon_sym_CARET] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2770), + [anon_sym_SEMI] = ACTIONS(2770), + [anon_sym___extension__] = ACTIONS(2768), + [anon_sym_typedef] = ACTIONS(2768), + [anon_sym_extern] = ACTIONS(2768), + [anon_sym___attribute__] = ACTIONS(2768), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2770), + [anon_sym___declspec] = ACTIONS(2768), + [anon_sym___cdecl] = ACTIONS(2768), + [anon_sym___clrcall] = ACTIONS(2768), + [anon_sym___stdcall] = ACTIONS(2768), + [anon_sym___fastcall] = ACTIONS(2768), + [anon_sym___thiscall] = ACTIONS(2768), + [anon_sym___vectorcall] = ACTIONS(2768), + [anon_sym_LBRACE] = ACTIONS(2770), + [anon_sym_RBRACE] = ACTIONS(2770), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_ATautoreleasepool] = ACTIONS(2770), + [anon_sym_auto] = ACTIONS(2768), + [anon_sym_register] = ACTIONS(2768), + [anon_sym_inline] = ACTIONS(2768), + [anon_sym___inline] = ACTIONS(2768), + [anon_sym___inline__] = ACTIONS(2768), + [anon_sym___forceinline] = ACTIONS(2768), + [anon_sym_thread_local] = ACTIONS(2768), + [anon_sym___thread] = ACTIONS(2768), + [anon_sym_CG_EXTERN] = ACTIONS(2768), + [anon_sym_CG_INLINE] = ACTIONS(2768), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2768), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2768), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2768), + [anon_sym_IBOutlet] = ACTIONS(2768), + [anon_sym_IBInspectable] = ACTIONS(2768), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2768), + [anon_sym_NS_INLINE] = ACTIONS(2768), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2768), + [anon_sym_OBJC_EXPORT] = ACTIONS(2768), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2768), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_nullable] = ACTIONS(2768), + [anon_sym__Complex] = ACTIONS(2768), + [anon_sym__Nullable] = ACTIONS(2768), + [anon_sym__Nullable_result] = ACTIONS(2768), + [anon_sym__Null_unspecified] = ACTIONS(2768), + [anon_sym___autoreleasing] = ACTIONS(2768), + [anon_sym___block] = ACTIONS(2768), + [anon_sym___bridge] = ACTIONS(2768), + [anon_sym___bridge_retained] = ACTIONS(2768), + [anon_sym___bridge_transfer] = ACTIONS(2768), + [anon_sym___complex] = ACTIONS(2768), + [anon_sym___const] = ACTIONS(2768), + [anon_sym___imag] = ACTIONS(2768), + [anon_sym___kindof] = ACTIONS(2768), + [anon_sym___nonnull] = ACTIONS(2768), + [anon_sym___nullable] = ACTIONS(2768), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2768), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2768), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2768), + [anon_sym___real] = ACTIONS(2768), + [anon_sym___strong] = ACTIONS(2768), + [anon_sym___unsafe_unretained] = ACTIONS(2768), + [anon_sym___unused] = ACTIONS(2768), + [anon_sym___weak] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2768), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_switch] = ACTIONS(2768), + [anon_sym_case] = ACTIONS(2768), + [anon_sym_default] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_in] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_break] = ACTIONS(2768), + [anon_sym_continue] = ACTIONS(2768), + [anon_sym_goto] = ACTIONS(2768), + [anon_sym_DASH_DASH] = ACTIONS(2770), + [anon_sym_PLUS_PLUS] = ACTIONS(2770), + [anon_sym_sizeof] = ACTIONS(2768), + [anon_sym___alignof__] = ACTIONS(2768), + [anon_sym___alignof] = ACTIONS(2768), + [anon_sym__alignof] = ACTIONS(2768), + [anon_sym_alignof] = ACTIONS(2768), + [anon_sym__Alignof] = ACTIONS(2768), + [anon_sym_offsetof] = ACTIONS(2768), + [anon_sym__Generic] = ACTIONS(2768), + [anon_sym_asm] = ACTIONS(2768), + [anon_sym___asm__] = ACTIONS(2768), + [anon_sym___asm] = ACTIONS(2768), + [sym_number_literal] = ACTIONS(2770), + [anon_sym_L_SQUOTE] = ACTIONS(2770), + [anon_sym_u_SQUOTE] = ACTIONS(2770), + [anon_sym_U_SQUOTE] = ACTIONS(2770), + [anon_sym_u8_SQUOTE] = ACTIONS(2770), + [anon_sym_SQUOTE] = ACTIONS(2770), + [anon_sym_AT] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2770), + [anon_sym_L_DQUOTE] = ACTIONS(2770), + [anon_sym_u_DQUOTE] = ACTIONS(2770), + [anon_sym_U_DQUOTE] = ACTIONS(2770), + [anon_sym_u8_DQUOTE] = ACTIONS(2770), + [sym_true] = ACTIONS(2768), + [sym_false] = ACTIONS(2768), + [anon_sym_NULL] = ACTIONS(2768), + [anon_sym_nullptr] = ACTIONS(2768), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2768), + [anon_sym___typeof] = ACTIONS(2768), + [anon_sym_typeof] = ACTIONS(2768), + [anon_sym_ATimport] = ACTIONS(2770), + [aux_sym_preproc_undef_token1] = ACTIONS(2768), + [anon_sym_POUND] = ACTIONS(2768), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2768), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2768), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2768), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2768), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2768), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2768), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2768), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2768), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2768), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2768), + [anon_sym_NS_AVAILABLE] = ACTIONS(2768), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2768), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2768), + [anon_sym_API_AVAILABLE] = ACTIONS(2768), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2768), + [anon_sym_API_DEPRECATED] = ACTIONS(2768), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2768), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2768), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2768), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2768), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2768), + [anon_sym___deprecated_msg] = ACTIONS(2768), + [anon_sym___deprecated_enum_msg] = ACTIONS(2768), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2768), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2768), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2768), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2768), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2768), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2768), + [anon_sym_ATprotocol] = ACTIONS(2770), + [anon_sym_ATinterface] = ACTIONS(2770), + [anon_sym_ATimplementation] = ACTIONS(2770), + [anon_sym_ATcompatibility_alias] = ACTIONS(2770), + [anon_sym_ATtry] = ACTIONS(2770), + [anon_sym___try] = ACTIONS(2768), + [anon_sym_ATthrow] = ACTIONS(2770), + [anon_sym_ATselector] = ACTIONS(2770), + [anon_sym_ATavailable] = ACTIONS(2770), + [anon_sym___builtin_available] = ACTIONS(2768), + [anon_sym_va_arg] = ACTIONS(2768), + [anon_sym_ATencode] = ACTIONS(2770), + [anon_sym_ATsynchronized] = ACTIONS(2770), + [anon_sym_BOOL] = ACTIONS(2768), + [anon_sym_IMP] = ACTIONS(2768), + [anon_sym_SEL] = ACTIONS(2768), + [anon_sym_Class] = ACTIONS(2768), + [anon_sym_id] = ACTIONS(2768), + }, + [900] = { + [sym_identifier] = ACTIONS(2772), + [aux_sym_preproc_include_token1] = ACTIONS(2772), + [aux_sym_preproc_include_token2] = ACTIONS(2772), + [aux_sym_preproc_def_token1] = ACTIONS(2772), + [aux_sym_preproc_if_token1] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2772), + [sym_preproc_directive] = ACTIONS(2772), + [anon_sym_LPAREN2] = ACTIONS(2774), + [anon_sym_BANG] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_CARET] = ACTIONS(2774), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym___extension__] = ACTIONS(2772), + [anon_sym_typedef] = ACTIONS(2772), + [anon_sym_extern] = ACTIONS(2772), + [anon_sym___attribute__] = ACTIONS(2772), + [anon_sym___attribute] = ACTIONS(2772), + [anon_sym_noreturn] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym___declspec] = ACTIONS(2772), + [anon_sym___cdecl] = ACTIONS(2772), + [anon_sym___clrcall] = ACTIONS(2772), + [anon_sym___stdcall] = ACTIONS(2772), + [anon_sym___fastcall] = ACTIONS(2772), + [anon_sym___thiscall] = ACTIONS(2772), + [anon_sym___vectorcall] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(2774), + [anon_sym_signed] = ACTIONS(2772), + [anon_sym_unsigned] = ACTIONS(2772), + [anon_sym_long] = ACTIONS(2772), + [anon_sym_short] = ACTIONS(2772), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_ATautoreleasepool] = ACTIONS(2774), + [anon_sym_auto] = ACTIONS(2772), + [anon_sym_register] = ACTIONS(2772), + [anon_sym_inline] = ACTIONS(2772), + [anon_sym___inline] = ACTIONS(2772), + [anon_sym___inline__] = ACTIONS(2772), + [anon_sym___forceinline] = ACTIONS(2772), + [anon_sym_thread_local] = ACTIONS(2772), + [anon_sym___thread] = ACTIONS(2772), + [anon_sym_CG_EXTERN] = ACTIONS(2772), + [anon_sym_CG_INLINE] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2772), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2772), + [anon_sym_IBOutlet] = ACTIONS(2772), + [anon_sym_IBInspectable] = ACTIONS(2772), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2772), + [anon_sym_NS_INLINE] = ACTIONS(2772), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2772), + [anon_sym_OBJC_EXPORT] = ACTIONS(2772), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2772), + [anon_sym_const] = ACTIONS(2772), + [anon_sym_constexpr] = ACTIONS(2772), + [anon_sym_volatile] = ACTIONS(2772), + [anon_sym_restrict] = ACTIONS(2772), + [anon_sym___restrict__] = ACTIONS(2772), + [anon_sym__Atomic] = ACTIONS(2772), + [anon_sym__Noreturn] = ACTIONS(2772), + [anon_sym__Nonnull] = ACTIONS(2772), + [anon_sym_nullable] = ACTIONS(2772), + [anon_sym__Complex] = ACTIONS(2772), + [anon_sym__Nullable] = ACTIONS(2772), + [anon_sym__Nullable_result] = ACTIONS(2772), + [anon_sym__Null_unspecified] = ACTIONS(2772), + [anon_sym___autoreleasing] = ACTIONS(2772), + [anon_sym___block] = ACTIONS(2772), + [anon_sym___bridge] = ACTIONS(2772), + [anon_sym___bridge_retained] = ACTIONS(2772), + [anon_sym___bridge_transfer] = ACTIONS(2772), + [anon_sym___complex] = ACTIONS(2772), + [anon_sym___const] = ACTIONS(2772), + [anon_sym___imag] = ACTIONS(2772), + [anon_sym___kindof] = ACTIONS(2772), + [anon_sym___nonnull] = ACTIONS(2772), + [anon_sym___nullable] = ACTIONS(2772), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2772), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2772), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2772), + [anon_sym___real] = ACTIONS(2772), + [anon_sym___strong] = ACTIONS(2772), + [anon_sym___unsafe_unretained] = ACTIONS(2772), + [anon_sym___unused] = ACTIONS(2772), + [anon_sym___weak] = ACTIONS(2772), + [anon_sym_alignas] = ACTIONS(2772), + [anon_sym__Alignas] = ACTIONS(2772), + [sym_primitive_type] = ACTIONS(2772), + [anon_sym_enum] = ACTIONS(2772), + [anon_sym_struct] = ACTIONS(2772), + [anon_sym_union] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_switch] = ACTIONS(2772), + [anon_sym_case] = ACTIONS(2772), + [anon_sym_default] = ACTIONS(2772), + [anon_sym_while] = ACTIONS(2772), + [anon_sym_do] = ACTIONS(2772), + [anon_sym_for] = ACTIONS(2772), + [anon_sym_in] = ACTIONS(2772), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_break] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2772), + [anon_sym_goto] = ACTIONS(2772), + [anon_sym_DASH_DASH] = ACTIONS(2774), + [anon_sym_PLUS_PLUS] = ACTIONS(2774), + [anon_sym_sizeof] = ACTIONS(2772), + [anon_sym___alignof__] = ACTIONS(2772), + [anon_sym___alignof] = ACTIONS(2772), + [anon_sym__alignof] = ACTIONS(2772), + [anon_sym_alignof] = ACTIONS(2772), + [anon_sym__Alignof] = ACTIONS(2772), + [anon_sym_offsetof] = ACTIONS(2772), + [anon_sym__Generic] = ACTIONS(2772), + [anon_sym_asm] = ACTIONS(2772), + [anon_sym___asm__] = ACTIONS(2772), + [anon_sym___asm] = ACTIONS(2772), + [sym_number_literal] = ACTIONS(2774), + [anon_sym_L_SQUOTE] = ACTIONS(2774), + [anon_sym_u_SQUOTE] = ACTIONS(2774), + [anon_sym_U_SQUOTE] = ACTIONS(2774), + [anon_sym_u8_SQUOTE] = ACTIONS(2774), + [anon_sym_SQUOTE] = ACTIONS(2774), + [anon_sym_AT] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_L_DQUOTE] = ACTIONS(2774), + [anon_sym_u_DQUOTE] = ACTIONS(2774), + [anon_sym_U_DQUOTE] = ACTIONS(2774), + [anon_sym_u8_DQUOTE] = ACTIONS(2774), + [sym_true] = ACTIONS(2772), + [sym_false] = ACTIONS(2772), + [anon_sym_NULL] = ACTIONS(2772), + [anon_sym_nullptr] = ACTIONS(2772), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2772), + [anon_sym___typeof] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2772), + [anon_sym_ATimport] = ACTIONS(2774), + [aux_sym_preproc_undef_token1] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(2772), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2772), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2772), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2772), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2772), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE] = ACTIONS(2772), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_API_AVAILABLE] = ACTIONS(2772), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_API_DEPRECATED] = ACTIONS(2772), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2772), + [anon_sym___deprecated_msg] = ACTIONS(2772), + [anon_sym___deprecated_enum_msg] = ACTIONS(2772), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2772), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2772), + [anon_sym_ATprotocol] = ACTIONS(2774), + [anon_sym_ATinterface] = ACTIONS(2774), + [anon_sym_ATimplementation] = ACTIONS(2774), + [anon_sym_ATcompatibility_alias] = ACTIONS(2774), + [anon_sym_ATtry] = ACTIONS(2774), + [anon_sym___try] = ACTIONS(2772), + [anon_sym_ATthrow] = ACTIONS(2774), + [anon_sym_ATselector] = ACTIONS(2774), + [anon_sym_ATavailable] = ACTIONS(2774), + [anon_sym___builtin_available] = ACTIONS(2772), + [anon_sym_va_arg] = ACTIONS(2772), + [anon_sym_ATencode] = ACTIONS(2774), + [anon_sym_ATsynchronized] = ACTIONS(2774), + [anon_sym_BOOL] = ACTIONS(2772), + [anon_sym_IMP] = ACTIONS(2772), + [anon_sym_SEL] = ACTIONS(2772), + [anon_sym_Class] = ACTIONS(2772), + [anon_sym_id] = ACTIONS(2772), + }, + [901] = { + [sym_identifier] = ACTIONS(2772), + [aux_sym_preproc_include_token1] = ACTIONS(2772), + [aux_sym_preproc_include_token2] = ACTIONS(2772), + [aux_sym_preproc_def_token1] = ACTIONS(2772), + [aux_sym_preproc_if_token1] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2772), + [sym_preproc_directive] = ACTIONS(2772), + [anon_sym_LPAREN2] = ACTIONS(2774), + [anon_sym_BANG] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_CARET] = ACTIONS(2774), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym___extension__] = ACTIONS(2772), + [anon_sym_typedef] = ACTIONS(2772), + [anon_sym_extern] = ACTIONS(2772), + [anon_sym___attribute__] = ACTIONS(2772), + [anon_sym___attribute] = ACTIONS(2772), + [anon_sym_noreturn] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym___declspec] = ACTIONS(2772), + [anon_sym___cdecl] = ACTIONS(2772), + [anon_sym___clrcall] = ACTIONS(2772), + [anon_sym___stdcall] = ACTIONS(2772), + [anon_sym___fastcall] = ACTIONS(2772), + [anon_sym___thiscall] = ACTIONS(2772), + [anon_sym___vectorcall] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(2774), + [anon_sym_signed] = ACTIONS(2772), + [anon_sym_unsigned] = ACTIONS(2772), + [anon_sym_long] = ACTIONS(2772), + [anon_sym_short] = ACTIONS(2772), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_ATautoreleasepool] = ACTIONS(2774), + [anon_sym_auto] = ACTIONS(2772), + [anon_sym_register] = ACTIONS(2772), + [anon_sym_inline] = ACTIONS(2772), + [anon_sym___inline] = ACTIONS(2772), + [anon_sym___inline__] = ACTIONS(2772), + [anon_sym___forceinline] = ACTIONS(2772), + [anon_sym_thread_local] = ACTIONS(2772), + [anon_sym___thread] = ACTIONS(2772), + [anon_sym_CG_EXTERN] = ACTIONS(2772), + [anon_sym_CG_INLINE] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2772), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2772), + [anon_sym_IBOutlet] = ACTIONS(2772), + [anon_sym_IBInspectable] = ACTIONS(2772), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2772), + [anon_sym_NS_INLINE] = ACTIONS(2772), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2772), + [anon_sym_OBJC_EXPORT] = ACTIONS(2772), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2772), + [anon_sym_const] = ACTIONS(2772), + [anon_sym_constexpr] = ACTIONS(2772), + [anon_sym_volatile] = ACTIONS(2772), + [anon_sym_restrict] = ACTIONS(2772), + [anon_sym___restrict__] = ACTIONS(2772), + [anon_sym__Atomic] = ACTIONS(2772), + [anon_sym__Noreturn] = ACTIONS(2772), + [anon_sym__Nonnull] = ACTIONS(2772), + [anon_sym_nullable] = ACTIONS(2772), + [anon_sym__Complex] = ACTIONS(2772), + [anon_sym__Nullable] = ACTIONS(2772), + [anon_sym__Nullable_result] = ACTIONS(2772), + [anon_sym__Null_unspecified] = ACTIONS(2772), + [anon_sym___autoreleasing] = ACTIONS(2772), + [anon_sym___block] = ACTIONS(2772), + [anon_sym___bridge] = ACTIONS(2772), + [anon_sym___bridge_retained] = ACTIONS(2772), + [anon_sym___bridge_transfer] = ACTIONS(2772), + [anon_sym___complex] = ACTIONS(2772), + [anon_sym___const] = ACTIONS(2772), + [anon_sym___imag] = ACTIONS(2772), + [anon_sym___kindof] = ACTIONS(2772), + [anon_sym___nonnull] = ACTIONS(2772), + [anon_sym___nullable] = ACTIONS(2772), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2772), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2772), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2772), + [anon_sym___real] = ACTIONS(2772), + [anon_sym___strong] = ACTIONS(2772), + [anon_sym___unsafe_unretained] = ACTIONS(2772), + [anon_sym___unused] = ACTIONS(2772), + [anon_sym___weak] = ACTIONS(2772), + [anon_sym_alignas] = ACTIONS(2772), + [anon_sym__Alignas] = ACTIONS(2772), + [sym_primitive_type] = ACTIONS(2772), + [anon_sym_enum] = ACTIONS(2772), + [anon_sym_struct] = ACTIONS(2772), + [anon_sym_union] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_switch] = ACTIONS(2772), + [anon_sym_case] = ACTIONS(2772), + [anon_sym_default] = ACTIONS(2772), + [anon_sym_while] = ACTIONS(2772), + [anon_sym_do] = ACTIONS(2772), + [anon_sym_for] = ACTIONS(2772), + [anon_sym_in] = ACTIONS(2772), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_break] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2772), + [anon_sym_goto] = ACTIONS(2772), + [anon_sym_DASH_DASH] = ACTIONS(2774), + [anon_sym_PLUS_PLUS] = ACTIONS(2774), + [anon_sym_sizeof] = ACTIONS(2772), + [anon_sym___alignof__] = ACTIONS(2772), + [anon_sym___alignof] = ACTIONS(2772), + [anon_sym__alignof] = ACTIONS(2772), + [anon_sym_alignof] = ACTIONS(2772), + [anon_sym__Alignof] = ACTIONS(2772), + [anon_sym_offsetof] = ACTIONS(2772), + [anon_sym__Generic] = ACTIONS(2772), + [anon_sym_asm] = ACTIONS(2772), + [anon_sym___asm__] = ACTIONS(2772), + [anon_sym___asm] = ACTIONS(2772), + [sym_number_literal] = ACTIONS(2774), + [anon_sym_L_SQUOTE] = ACTIONS(2774), + [anon_sym_u_SQUOTE] = ACTIONS(2774), + [anon_sym_U_SQUOTE] = ACTIONS(2774), + [anon_sym_u8_SQUOTE] = ACTIONS(2774), + [anon_sym_SQUOTE] = ACTIONS(2774), + [anon_sym_AT] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_L_DQUOTE] = ACTIONS(2774), + [anon_sym_u_DQUOTE] = ACTIONS(2774), + [anon_sym_U_DQUOTE] = ACTIONS(2774), + [anon_sym_u8_DQUOTE] = ACTIONS(2774), + [sym_true] = ACTIONS(2772), + [sym_false] = ACTIONS(2772), + [anon_sym_NULL] = ACTIONS(2772), + [anon_sym_nullptr] = ACTIONS(2772), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2772), + [anon_sym___typeof] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2772), + [anon_sym_ATimport] = ACTIONS(2774), + [aux_sym_preproc_undef_token1] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(2772), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2772), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2772), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2772), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2772), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE] = ACTIONS(2772), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_API_AVAILABLE] = ACTIONS(2772), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_API_DEPRECATED] = ACTIONS(2772), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2772), + [anon_sym___deprecated_msg] = ACTIONS(2772), + [anon_sym___deprecated_enum_msg] = ACTIONS(2772), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2772), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2772), + [anon_sym_ATprotocol] = ACTIONS(2774), + [anon_sym_ATinterface] = ACTIONS(2774), + [anon_sym_ATimplementation] = ACTIONS(2774), + [anon_sym_ATcompatibility_alias] = ACTIONS(2774), + [anon_sym_ATtry] = ACTIONS(2774), + [anon_sym___try] = ACTIONS(2772), + [anon_sym_ATthrow] = ACTIONS(2774), + [anon_sym_ATselector] = ACTIONS(2774), + [anon_sym_ATavailable] = ACTIONS(2774), + [anon_sym___builtin_available] = ACTIONS(2772), + [anon_sym_va_arg] = ACTIONS(2772), + [anon_sym_ATencode] = ACTIONS(2774), + [anon_sym_ATsynchronized] = ACTIONS(2774), + [anon_sym_BOOL] = ACTIONS(2772), + [anon_sym_IMP] = ACTIONS(2772), + [anon_sym_SEL] = ACTIONS(2772), + [anon_sym_Class] = ACTIONS(2772), + [anon_sym_id] = ACTIONS(2772), + }, + [902] = { + [sym_identifier] = ACTIONS(2772), + [aux_sym_preproc_include_token1] = ACTIONS(2772), + [aux_sym_preproc_include_token2] = ACTIONS(2772), + [aux_sym_preproc_def_token1] = ACTIONS(2772), + [aux_sym_preproc_if_token1] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2772), + [sym_preproc_directive] = ACTIONS(2772), + [anon_sym_LPAREN2] = ACTIONS(2774), + [anon_sym_BANG] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_CARET] = ACTIONS(2774), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym___extension__] = ACTIONS(2772), + [anon_sym_typedef] = ACTIONS(2772), + [anon_sym_extern] = ACTIONS(2772), + [anon_sym___attribute__] = ACTIONS(2772), + [anon_sym___attribute] = ACTIONS(2772), + [anon_sym_noreturn] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym___declspec] = ACTIONS(2772), + [anon_sym___cdecl] = ACTIONS(2772), + [anon_sym___clrcall] = ACTIONS(2772), + [anon_sym___stdcall] = ACTIONS(2772), + [anon_sym___fastcall] = ACTIONS(2772), + [anon_sym___thiscall] = ACTIONS(2772), + [anon_sym___vectorcall] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(2774), + [anon_sym_signed] = ACTIONS(2772), + [anon_sym_unsigned] = ACTIONS(2772), + [anon_sym_long] = ACTIONS(2772), + [anon_sym_short] = ACTIONS(2772), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_ATautoreleasepool] = ACTIONS(2774), + [anon_sym_auto] = ACTIONS(2772), + [anon_sym_register] = ACTIONS(2772), + [anon_sym_inline] = ACTIONS(2772), + [anon_sym___inline] = ACTIONS(2772), + [anon_sym___inline__] = ACTIONS(2772), + [anon_sym___forceinline] = ACTIONS(2772), + [anon_sym_thread_local] = ACTIONS(2772), + [anon_sym___thread] = ACTIONS(2772), + [anon_sym_CG_EXTERN] = ACTIONS(2772), + [anon_sym_CG_INLINE] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2772), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2772), + [anon_sym_IBOutlet] = ACTIONS(2772), + [anon_sym_IBInspectable] = ACTIONS(2772), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2772), + [anon_sym_NS_INLINE] = ACTIONS(2772), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2772), + [anon_sym_OBJC_EXPORT] = ACTIONS(2772), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2772), + [anon_sym_const] = ACTIONS(2772), + [anon_sym_constexpr] = ACTIONS(2772), + [anon_sym_volatile] = ACTIONS(2772), + [anon_sym_restrict] = ACTIONS(2772), + [anon_sym___restrict__] = ACTIONS(2772), + [anon_sym__Atomic] = ACTIONS(2772), + [anon_sym__Noreturn] = ACTIONS(2772), + [anon_sym__Nonnull] = ACTIONS(2772), + [anon_sym_nullable] = ACTIONS(2772), + [anon_sym__Complex] = ACTIONS(2772), + [anon_sym__Nullable] = ACTIONS(2772), + [anon_sym__Nullable_result] = ACTIONS(2772), + [anon_sym__Null_unspecified] = ACTIONS(2772), + [anon_sym___autoreleasing] = ACTIONS(2772), + [anon_sym___block] = ACTIONS(2772), + [anon_sym___bridge] = ACTIONS(2772), + [anon_sym___bridge_retained] = ACTIONS(2772), + [anon_sym___bridge_transfer] = ACTIONS(2772), + [anon_sym___complex] = ACTIONS(2772), + [anon_sym___const] = ACTIONS(2772), + [anon_sym___imag] = ACTIONS(2772), + [anon_sym___kindof] = ACTIONS(2772), + [anon_sym___nonnull] = ACTIONS(2772), + [anon_sym___nullable] = ACTIONS(2772), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2772), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2772), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2772), + [anon_sym___real] = ACTIONS(2772), + [anon_sym___strong] = ACTIONS(2772), + [anon_sym___unsafe_unretained] = ACTIONS(2772), + [anon_sym___unused] = ACTIONS(2772), + [anon_sym___weak] = ACTIONS(2772), + [anon_sym_alignas] = ACTIONS(2772), + [anon_sym__Alignas] = ACTIONS(2772), + [sym_primitive_type] = ACTIONS(2772), + [anon_sym_enum] = ACTIONS(2772), + [anon_sym_struct] = ACTIONS(2772), + [anon_sym_union] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_switch] = ACTIONS(2772), + [anon_sym_case] = ACTIONS(2772), + [anon_sym_default] = ACTIONS(2772), + [anon_sym_while] = ACTIONS(2772), + [anon_sym_do] = ACTIONS(2772), + [anon_sym_for] = ACTIONS(2772), + [anon_sym_in] = ACTIONS(2772), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_break] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2772), + [anon_sym_goto] = ACTIONS(2772), + [anon_sym_DASH_DASH] = ACTIONS(2774), + [anon_sym_PLUS_PLUS] = ACTIONS(2774), + [anon_sym_sizeof] = ACTIONS(2772), + [anon_sym___alignof__] = ACTIONS(2772), + [anon_sym___alignof] = ACTIONS(2772), + [anon_sym__alignof] = ACTIONS(2772), + [anon_sym_alignof] = ACTIONS(2772), + [anon_sym__Alignof] = ACTIONS(2772), + [anon_sym_offsetof] = ACTIONS(2772), + [anon_sym__Generic] = ACTIONS(2772), + [anon_sym_asm] = ACTIONS(2772), + [anon_sym___asm__] = ACTIONS(2772), + [anon_sym___asm] = ACTIONS(2772), + [sym_number_literal] = ACTIONS(2774), + [anon_sym_L_SQUOTE] = ACTIONS(2774), + [anon_sym_u_SQUOTE] = ACTIONS(2774), + [anon_sym_U_SQUOTE] = ACTIONS(2774), + [anon_sym_u8_SQUOTE] = ACTIONS(2774), + [anon_sym_SQUOTE] = ACTIONS(2774), + [anon_sym_AT] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_L_DQUOTE] = ACTIONS(2774), + [anon_sym_u_DQUOTE] = ACTIONS(2774), + [anon_sym_U_DQUOTE] = ACTIONS(2774), + [anon_sym_u8_DQUOTE] = ACTIONS(2774), + [sym_true] = ACTIONS(2772), + [sym_false] = ACTIONS(2772), + [anon_sym_NULL] = ACTIONS(2772), + [anon_sym_nullptr] = ACTIONS(2772), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2772), + [anon_sym___typeof] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2772), + [anon_sym_ATimport] = ACTIONS(2774), + [aux_sym_preproc_undef_token1] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(2772), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2772), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2772), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2772), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2772), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE] = ACTIONS(2772), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_API_AVAILABLE] = ACTIONS(2772), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_API_DEPRECATED] = ACTIONS(2772), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2772), + [anon_sym___deprecated_msg] = ACTIONS(2772), + [anon_sym___deprecated_enum_msg] = ACTIONS(2772), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2772), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2772), + [anon_sym_ATprotocol] = ACTIONS(2774), + [anon_sym_ATinterface] = ACTIONS(2774), + [anon_sym_ATimplementation] = ACTIONS(2774), + [anon_sym_ATcompatibility_alias] = ACTIONS(2774), + [anon_sym_ATtry] = ACTIONS(2774), + [anon_sym___try] = ACTIONS(2772), + [anon_sym_ATthrow] = ACTIONS(2774), + [anon_sym_ATselector] = ACTIONS(2774), + [anon_sym_ATavailable] = ACTIONS(2774), + [anon_sym___builtin_available] = ACTIONS(2772), + [anon_sym_va_arg] = ACTIONS(2772), + [anon_sym_ATencode] = ACTIONS(2774), + [anon_sym_ATsynchronized] = ACTIONS(2774), + [anon_sym_BOOL] = ACTIONS(2772), + [anon_sym_IMP] = ACTIONS(2772), + [anon_sym_SEL] = ACTIONS(2772), + [anon_sym_Class] = ACTIONS(2772), + [anon_sym_id] = ACTIONS(2772), + }, + [903] = { + [sym_identifier] = ACTIONS(2776), + [aux_sym_preproc_include_token1] = ACTIONS(2776), + [aux_sym_preproc_include_token2] = ACTIONS(2776), + [aux_sym_preproc_def_token1] = ACTIONS(2776), + [aux_sym_preproc_if_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2776), + [sym_preproc_directive] = ACTIONS(2776), + [anon_sym_LPAREN2] = ACTIONS(2778), + [anon_sym_BANG] = ACTIONS(2778), + [anon_sym_TILDE] = ACTIONS(2778), + [anon_sym_DASH] = ACTIONS(2776), + [anon_sym_PLUS] = ACTIONS(2776), + [anon_sym_STAR] = ACTIONS(2778), + [anon_sym_CARET] = ACTIONS(2778), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym___extension__] = ACTIONS(2776), + [anon_sym_typedef] = ACTIONS(2776), + [anon_sym_extern] = ACTIONS(2776), + [anon_sym___attribute__] = ACTIONS(2776), + [anon_sym___attribute] = ACTIONS(2776), + [anon_sym_noreturn] = ACTIONS(2776), + [anon_sym_LBRACK] = ACTIONS(2778), + [anon_sym___declspec] = ACTIONS(2776), + [anon_sym___cdecl] = ACTIONS(2776), + [anon_sym___clrcall] = ACTIONS(2776), + [anon_sym___stdcall] = ACTIONS(2776), + [anon_sym___fastcall] = ACTIONS(2776), + [anon_sym___thiscall] = ACTIONS(2776), + [anon_sym___vectorcall] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_RBRACE] = ACTIONS(2778), + [anon_sym_signed] = ACTIONS(2776), + [anon_sym_unsigned] = ACTIONS(2776), + [anon_sym_long] = ACTIONS(2776), + [anon_sym_short] = ACTIONS(2776), + [anon_sym_static] = ACTIONS(2776), + [anon_sym_ATautoreleasepool] = ACTIONS(2778), + [anon_sym_auto] = ACTIONS(2776), + [anon_sym_register] = ACTIONS(2776), + [anon_sym_inline] = ACTIONS(2776), + [anon_sym___inline] = ACTIONS(2776), + [anon_sym___inline__] = ACTIONS(2776), + [anon_sym___forceinline] = ACTIONS(2776), + [anon_sym_thread_local] = ACTIONS(2776), + [anon_sym___thread] = ACTIONS(2776), + [anon_sym_CG_EXTERN] = ACTIONS(2776), + [anon_sym_CG_INLINE] = ACTIONS(2776), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2776), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2776), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2776), + [anon_sym_IBOutlet] = ACTIONS(2776), + [anon_sym_IBInspectable] = ACTIONS(2776), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2776), + [anon_sym_NS_INLINE] = ACTIONS(2776), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2776), + [anon_sym_OBJC_EXPORT] = ACTIONS(2776), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2776), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2776), + [anon_sym_const] = ACTIONS(2776), + [anon_sym_constexpr] = ACTIONS(2776), + [anon_sym_volatile] = ACTIONS(2776), + [anon_sym_restrict] = ACTIONS(2776), + [anon_sym___restrict__] = ACTIONS(2776), + [anon_sym__Atomic] = ACTIONS(2776), + [anon_sym__Noreturn] = ACTIONS(2776), + [anon_sym__Nonnull] = ACTIONS(2776), + [anon_sym_nullable] = ACTIONS(2776), + [anon_sym__Complex] = ACTIONS(2776), + [anon_sym__Nullable] = ACTIONS(2776), + [anon_sym__Nullable_result] = ACTIONS(2776), + [anon_sym__Null_unspecified] = ACTIONS(2776), + [anon_sym___autoreleasing] = ACTIONS(2776), + [anon_sym___block] = ACTIONS(2776), + [anon_sym___bridge] = ACTIONS(2776), + [anon_sym___bridge_retained] = ACTIONS(2776), + [anon_sym___bridge_transfer] = ACTIONS(2776), + [anon_sym___complex] = ACTIONS(2776), + [anon_sym___const] = ACTIONS(2776), + [anon_sym___imag] = ACTIONS(2776), + [anon_sym___kindof] = ACTIONS(2776), + [anon_sym___nonnull] = ACTIONS(2776), + [anon_sym___nullable] = ACTIONS(2776), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2776), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2776), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2776), + [anon_sym___real] = ACTIONS(2776), + [anon_sym___strong] = ACTIONS(2776), + [anon_sym___unsafe_unretained] = ACTIONS(2776), + [anon_sym___unused] = ACTIONS(2776), + [anon_sym___weak] = ACTIONS(2776), + [anon_sym_alignas] = ACTIONS(2776), + [anon_sym__Alignas] = ACTIONS(2776), + [sym_primitive_type] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2776), + [anon_sym_struct] = ACTIONS(2776), + [anon_sym_union] = ACTIONS(2776), + [anon_sym_if] = ACTIONS(2776), + [anon_sym_switch] = ACTIONS(2776), + [anon_sym_case] = ACTIONS(2776), + [anon_sym_default] = ACTIONS(2776), + [anon_sym_while] = ACTIONS(2776), + [anon_sym_do] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2776), + [anon_sym_in] = ACTIONS(2776), + [anon_sym_return] = ACTIONS(2776), + [anon_sym_break] = ACTIONS(2776), + [anon_sym_continue] = ACTIONS(2776), + [anon_sym_goto] = ACTIONS(2776), + [anon_sym_DASH_DASH] = ACTIONS(2778), + [anon_sym_PLUS_PLUS] = ACTIONS(2778), + [anon_sym_sizeof] = ACTIONS(2776), + [anon_sym___alignof__] = ACTIONS(2776), + [anon_sym___alignof] = ACTIONS(2776), + [anon_sym__alignof] = ACTIONS(2776), + [anon_sym_alignof] = ACTIONS(2776), + [anon_sym__Alignof] = ACTIONS(2776), + [anon_sym_offsetof] = ACTIONS(2776), + [anon_sym__Generic] = ACTIONS(2776), + [anon_sym_asm] = ACTIONS(2776), + [anon_sym___asm__] = ACTIONS(2776), + [anon_sym___asm] = ACTIONS(2776), + [sym_number_literal] = ACTIONS(2778), + [anon_sym_L_SQUOTE] = ACTIONS(2778), + [anon_sym_u_SQUOTE] = ACTIONS(2778), + [anon_sym_U_SQUOTE] = ACTIONS(2778), + [anon_sym_u8_SQUOTE] = ACTIONS(2778), + [anon_sym_SQUOTE] = ACTIONS(2778), + [anon_sym_AT] = ACTIONS(2776), + [anon_sym_DQUOTE] = ACTIONS(2778), + [anon_sym_L_DQUOTE] = ACTIONS(2778), + [anon_sym_u_DQUOTE] = ACTIONS(2778), + [anon_sym_U_DQUOTE] = ACTIONS(2778), + [anon_sym_u8_DQUOTE] = ACTIONS(2778), + [sym_true] = ACTIONS(2776), + [sym_false] = ACTIONS(2776), + [anon_sym_NULL] = ACTIONS(2776), + [anon_sym_nullptr] = ACTIONS(2776), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2776), + [anon_sym___typeof] = ACTIONS(2776), + [anon_sym_typeof] = ACTIONS(2776), + [anon_sym_ATimport] = ACTIONS(2778), + [aux_sym_preproc_undef_token1] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(2776), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2776), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2776), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2776), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2776), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2776), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2776), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2776), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2776), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2776), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2776), + [anon_sym_NS_AVAILABLE] = ACTIONS(2776), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2776), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2776), + [anon_sym_API_AVAILABLE] = ACTIONS(2776), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2776), + [anon_sym_API_DEPRECATED] = ACTIONS(2776), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2776), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2776), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2776), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2776), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2776), + [anon_sym___deprecated_msg] = ACTIONS(2776), + [anon_sym___deprecated_enum_msg] = ACTIONS(2776), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2776), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2776), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2776), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2776), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2776), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2776), + [anon_sym_ATprotocol] = ACTIONS(2778), + [anon_sym_ATinterface] = ACTIONS(2778), + [anon_sym_ATimplementation] = ACTIONS(2778), + [anon_sym_ATcompatibility_alias] = ACTIONS(2778), + [anon_sym_ATtry] = ACTIONS(2778), + [anon_sym___try] = ACTIONS(2776), + [anon_sym_ATthrow] = ACTIONS(2778), + [anon_sym_ATselector] = ACTIONS(2778), + [anon_sym_ATavailable] = ACTIONS(2778), + [anon_sym___builtin_available] = ACTIONS(2776), + [anon_sym_va_arg] = ACTIONS(2776), + [anon_sym_ATencode] = ACTIONS(2778), + [anon_sym_ATsynchronized] = ACTIONS(2778), + [anon_sym_BOOL] = ACTIONS(2776), + [anon_sym_IMP] = ACTIONS(2776), + [anon_sym_SEL] = ACTIONS(2776), + [anon_sym_Class] = ACTIONS(2776), + [anon_sym_id] = ACTIONS(2776), + }, + [904] = { + [sym_identifier] = ACTIONS(2780), + [aux_sym_preproc_include_token1] = ACTIONS(2780), + [aux_sym_preproc_include_token2] = ACTIONS(2780), + [aux_sym_preproc_def_token1] = ACTIONS(2780), + [aux_sym_preproc_if_token1] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2780), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2782), + [anon_sym_BANG] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(2780), + [anon_sym_STAR] = ACTIONS(2782), + [anon_sym_CARET] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym___extension__] = ACTIONS(2780), + [anon_sym_typedef] = ACTIONS(2780), + [anon_sym_extern] = ACTIONS(2780), + [anon_sym___attribute__] = ACTIONS(2780), + [anon_sym___attribute] = ACTIONS(2780), + [anon_sym_noreturn] = ACTIONS(2780), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym___declspec] = ACTIONS(2780), + [anon_sym___cdecl] = ACTIONS(2780), + [anon_sym___clrcall] = ACTIONS(2780), + [anon_sym___stdcall] = ACTIONS(2780), + [anon_sym___fastcall] = ACTIONS(2780), + [anon_sym___thiscall] = ACTIONS(2780), + [anon_sym___vectorcall] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_RBRACE] = ACTIONS(2782), + [anon_sym_signed] = ACTIONS(2780), + [anon_sym_unsigned] = ACTIONS(2780), + [anon_sym_long] = ACTIONS(2780), + [anon_sym_short] = ACTIONS(2780), + [anon_sym_static] = ACTIONS(2780), + [anon_sym_ATautoreleasepool] = ACTIONS(2782), + [anon_sym_auto] = ACTIONS(2780), + [anon_sym_register] = ACTIONS(2780), + [anon_sym_inline] = ACTIONS(2780), + [anon_sym___inline] = ACTIONS(2780), + [anon_sym___inline__] = ACTIONS(2780), + [anon_sym___forceinline] = ACTIONS(2780), + [anon_sym_thread_local] = ACTIONS(2780), + [anon_sym___thread] = ACTIONS(2780), + [anon_sym_CG_EXTERN] = ACTIONS(2780), + [anon_sym_CG_INLINE] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2780), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2780), + [anon_sym_IBOutlet] = ACTIONS(2780), + [anon_sym_IBInspectable] = ACTIONS(2780), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2780), + [anon_sym_NS_INLINE] = ACTIONS(2780), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2780), + [anon_sym_OBJC_EXPORT] = ACTIONS(2780), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2780), + [anon_sym_const] = ACTIONS(2780), + [anon_sym_constexpr] = ACTIONS(2780), + [anon_sym_volatile] = ACTIONS(2780), + [anon_sym_restrict] = ACTIONS(2780), + [anon_sym___restrict__] = ACTIONS(2780), + [anon_sym__Atomic] = ACTIONS(2780), + [anon_sym__Noreturn] = ACTIONS(2780), + [anon_sym__Nonnull] = ACTIONS(2780), + [anon_sym_nullable] = ACTIONS(2780), + [anon_sym__Complex] = ACTIONS(2780), + [anon_sym__Nullable] = ACTIONS(2780), + [anon_sym__Nullable_result] = ACTIONS(2780), + [anon_sym__Null_unspecified] = ACTIONS(2780), + [anon_sym___autoreleasing] = ACTIONS(2780), + [anon_sym___block] = ACTIONS(2780), + [anon_sym___bridge] = ACTIONS(2780), + [anon_sym___bridge_retained] = ACTIONS(2780), + [anon_sym___bridge_transfer] = ACTIONS(2780), + [anon_sym___complex] = ACTIONS(2780), + [anon_sym___const] = ACTIONS(2780), + [anon_sym___imag] = ACTIONS(2780), + [anon_sym___kindof] = ACTIONS(2780), + [anon_sym___nonnull] = ACTIONS(2780), + [anon_sym___nullable] = ACTIONS(2780), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2780), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2780), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2780), + [anon_sym___real] = ACTIONS(2780), + [anon_sym___strong] = ACTIONS(2780), + [anon_sym___unsafe_unretained] = ACTIONS(2780), + [anon_sym___unused] = ACTIONS(2780), + [anon_sym___weak] = ACTIONS(2780), + [anon_sym_alignas] = ACTIONS(2780), + [anon_sym__Alignas] = ACTIONS(2780), + [sym_primitive_type] = ACTIONS(2780), + [anon_sym_enum] = ACTIONS(2780), + [anon_sym_struct] = ACTIONS(2780), + [anon_sym_union] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_switch] = ACTIONS(2780), + [anon_sym_case] = ACTIONS(2780), + [anon_sym_default] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_in] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_break] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2780), + [anon_sym_goto] = ACTIONS(2780), + [anon_sym_DASH_DASH] = ACTIONS(2782), + [anon_sym_PLUS_PLUS] = ACTIONS(2782), + [anon_sym_sizeof] = ACTIONS(2780), + [anon_sym___alignof__] = ACTIONS(2780), + [anon_sym___alignof] = ACTIONS(2780), + [anon_sym__alignof] = ACTIONS(2780), + [anon_sym_alignof] = ACTIONS(2780), + [anon_sym__Alignof] = ACTIONS(2780), + [anon_sym_offsetof] = ACTIONS(2780), + [anon_sym__Generic] = ACTIONS(2780), + [anon_sym_asm] = ACTIONS(2780), + [anon_sym___asm__] = ACTIONS(2780), + [anon_sym___asm] = ACTIONS(2780), + [sym_number_literal] = ACTIONS(2782), + [anon_sym_L_SQUOTE] = ACTIONS(2782), + [anon_sym_u_SQUOTE] = ACTIONS(2782), + [anon_sym_U_SQUOTE] = ACTIONS(2782), + [anon_sym_u8_SQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2782), + [anon_sym_AT] = ACTIONS(2780), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_L_DQUOTE] = ACTIONS(2782), + [anon_sym_u_DQUOTE] = ACTIONS(2782), + [anon_sym_U_DQUOTE] = ACTIONS(2782), + [anon_sym_u8_DQUOTE] = ACTIONS(2782), + [sym_true] = ACTIONS(2780), + [sym_false] = ACTIONS(2780), + [anon_sym_NULL] = ACTIONS(2780), + [anon_sym_nullptr] = ACTIONS(2780), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2780), + [anon_sym___typeof] = ACTIONS(2780), + [anon_sym_typeof] = ACTIONS(2780), + [anon_sym_ATimport] = ACTIONS(2782), + [aux_sym_preproc_undef_token1] = ACTIONS(2780), + [anon_sym_POUND] = ACTIONS(2780), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2780), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2780), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2780), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2780), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE] = ACTIONS(2780), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_API_AVAILABLE] = ACTIONS(2780), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_API_DEPRECATED] = ACTIONS(2780), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2780), + [anon_sym___deprecated_msg] = ACTIONS(2780), + [anon_sym___deprecated_enum_msg] = ACTIONS(2780), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2780), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2780), + [anon_sym_ATprotocol] = ACTIONS(2782), + [anon_sym_ATinterface] = ACTIONS(2782), + [anon_sym_ATimplementation] = ACTIONS(2782), + [anon_sym_ATcompatibility_alias] = ACTIONS(2782), + [anon_sym_ATtry] = ACTIONS(2782), + [anon_sym___try] = ACTIONS(2780), + [anon_sym_ATthrow] = ACTIONS(2782), + [anon_sym_ATselector] = ACTIONS(2782), + [anon_sym_ATavailable] = ACTIONS(2782), + [anon_sym___builtin_available] = ACTIONS(2780), + [anon_sym_va_arg] = ACTIONS(2780), + [anon_sym_ATencode] = ACTIONS(2782), + [anon_sym_ATsynchronized] = ACTIONS(2782), + [anon_sym_BOOL] = ACTIONS(2780), + [anon_sym_IMP] = ACTIONS(2780), + [anon_sym_SEL] = ACTIONS(2780), + [anon_sym_Class] = ACTIONS(2780), + [anon_sym_id] = ACTIONS(2780), + }, + [905] = { + [sym_identifier] = ACTIONS(2672), + [aux_sym_preproc_include_token1] = ACTIONS(2672), + [aux_sym_preproc_include_token2] = ACTIONS(2672), + [aux_sym_preproc_def_token1] = ACTIONS(2672), + [aux_sym_preproc_if_token1] = ACTIONS(2672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2672), + [sym_preproc_directive] = ACTIONS(2672), + [anon_sym_LPAREN2] = ACTIONS(2674), + [anon_sym_BANG] = ACTIONS(2674), + [anon_sym_TILDE] = ACTIONS(2674), + [anon_sym_DASH] = ACTIONS(2672), + [anon_sym_PLUS] = ACTIONS(2672), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_CARET] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2674), + [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym___extension__] = ACTIONS(2672), + [anon_sym_typedef] = ACTIONS(2672), + [anon_sym_extern] = ACTIONS(2672), + [anon_sym___attribute__] = ACTIONS(2672), + [anon_sym___attribute] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(2674), + [anon_sym___declspec] = ACTIONS(2672), + [anon_sym___cdecl] = ACTIONS(2672), + [anon_sym___clrcall] = ACTIONS(2672), + [anon_sym___stdcall] = ACTIONS(2672), + [anon_sym___fastcall] = ACTIONS(2672), + [anon_sym___thiscall] = ACTIONS(2672), + [anon_sym___vectorcall] = ACTIONS(2672), + [anon_sym_LBRACE] = ACTIONS(2674), + [anon_sym_RBRACE] = ACTIONS(2674), + [anon_sym_signed] = ACTIONS(2672), + [anon_sym_unsigned] = ACTIONS(2672), + [anon_sym_long] = ACTIONS(2672), + [anon_sym_short] = ACTIONS(2672), + [anon_sym_static] = ACTIONS(2672), + [anon_sym_ATautoreleasepool] = ACTIONS(2674), + [anon_sym_auto] = ACTIONS(2672), + [anon_sym_register] = ACTIONS(2672), + [anon_sym_inline] = ACTIONS(2672), + [anon_sym___inline] = ACTIONS(2672), + [anon_sym___inline__] = ACTIONS(2672), + [anon_sym___forceinline] = ACTIONS(2672), + [anon_sym_thread_local] = ACTIONS(2672), + [anon_sym___thread] = ACTIONS(2672), + [anon_sym_CG_EXTERN] = ACTIONS(2672), + [anon_sym_CG_INLINE] = ACTIONS(2672), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2672), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2672), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2672), + [anon_sym_IBOutlet] = ACTIONS(2672), + [anon_sym_IBInspectable] = ACTIONS(2672), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2672), + [anon_sym_NS_INLINE] = ACTIONS(2672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2672), + [anon_sym_OBJC_EXPORT] = ACTIONS(2672), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2672), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2672), + [anon_sym_const] = ACTIONS(2672), + [anon_sym_constexpr] = ACTIONS(2672), + [anon_sym_volatile] = ACTIONS(2672), + [anon_sym_restrict] = ACTIONS(2672), + [anon_sym___restrict__] = ACTIONS(2672), + [anon_sym__Atomic] = ACTIONS(2672), + [anon_sym__Noreturn] = ACTIONS(2672), + [anon_sym__Nonnull] = ACTIONS(2672), + [anon_sym_nullable] = ACTIONS(2672), + [anon_sym__Complex] = ACTIONS(2672), + [anon_sym__Nullable] = ACTIONS(2672), + [anon_sym__Nullable_result] = ACTIONS(2672), + [anon_sym__Null_unspecified] = ACTIONS(2672), + [anon_sym___autoreleasing] = ACTIONS(2672), + [anon_sym___block] = ACTIONS(2672), + [anon_sym___bridge] = ACTIONS(2672), + [anon_sym___bridge_retained] = ACTIONS(2672), + [anon_sym___bridge_transfer] = ACTIONS(2672), + [anon_sym___complex] = ACTIONS(2672), + [anon_sym___const] = ACTIONS(2672), + [anon_sym___imag] = ACTIONS(2672), + [anon_sym___kindof] = ACTIONS(2672), + [anon_sym___nonnull] = ACTIONS(2672), + [anon_sym___nullable] = ACTIONS(2672), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2672), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2672), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2672), + [anon_sym___real] = ACTIONS(2672), + [anon_sym___strong] = ACTIONS(2672), + [anon_sym___unsafe_unretained] = ACTIONS(2672), + [anon_sym___unused] = ACTIONS(2672), + [anon_sym___weak] = ACTIONS(2672), + [anon_sym_alignas] = ACTIONS(2672), + [anon_sym__Alignas] = ACTIONS(2672), + [sym_primitive_type] = ACTIONS(2672), + [anon_sym_enum] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_union] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_switch] = ACTIONS(2672), + [anon_sym_case] = ACTIONS(2672), + [anon_sym_default] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_do] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_in] = ACTIONS(2672), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_goto] = ACTIONS(2672), + [anon_sym_DASH_DASH] = ACTIONS(2674), + [anon_sym_PLUS_PLUS] = ACTIONS(2674), + [anon_sym_sizeof] = ACTIONS(2672), + [anon_sym___alignof__] = ACTIONS(2672), + [anon_sym___alignof] = ACTIONS(2672), + [anon_sym__alignof] = ACTIONS(2672), + [anon_sym_alignof] = ACTIONS(2672), + [anon_sym__Alignof] = ACTIONS(2672), + [anon_sym_offsetof] = ACTIONS(2672), + [anon_sym__Generic] = ACTIONS(2672), + [anon_sym_asm] = ACTIONS(2672), + [anon_sym___asm__] = ACTIONS(2672), + [anon_sym___asm] = ACTIONS(2672), + [sym_number_literal] = ACTIONS(2674), + [anon_sym_L_SQUOTE] = ACTIONS(2674), + [anon_sym_u_SQUOTE] = ACTIONS(2674), + [anon_sym_U_SQUOTE] = ACTIONS(2674), + [anon_sym_u8_SQUOTE] = ACTIONS(2674), + [anon_sym_SQUOTE] = ACTIONS(2674), + [anon_sym_AT] = ACTIONS(2672), + [anon_sym_DQUOTE] = ACTIONS(2674), + [anon_sym_L_DQUOTE] = ACTIONS(2674), + [anon_sym_u_DQUOTE] = ACTIONS(2674), + [anon_sym_U_DQUOTE] = ACTIONS(2674), + [anon_sym_u8_DQUOTE] = ACTIONS(2674), + [sym_true] = ACTIONS(2672), + [sym_false] = ACTIONS(2672), + [anon_sym_NULL] = ACTIONS(2672), + [anon_sym_nullptr] = ACTIONS(2672), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2672), + [anon_sym___typeof] = ACTIONS(2672), + [anon_sym_typeof] = ACTIONS(2672), + [anon_sym_ATimport] = ACTIONS(2674), + [aux_sym_preproc_undef_token1] = ACTIONS(2672), + [anon_sym_POUND] = ACTIONS(2672), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2672), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2672), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2672), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2672), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2672), + [anon_sym_NS_AVAILABLE] = ACTIONS(2672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2672), + [anon_sym_API_AVAILABLE] = ACTIONS(2672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2672), + [anon_sym_API_DEPRECATED] = ACTIONS(2672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2672), + [anon_sym___deprecated_msg] = ACTIONS(2672), + [anon_sym___deprecated_enum_msg] = ACTIONS(2672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2672), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2672), + [anon_sym_ATprotocol] = ACTIONS(2674), + [anon_sym_ATinterface] = ACTIONS(2674), + [anon_sym_ATimplementation] = ACTIONS(2674), + [anon_sym_ATcompatibility_alias] = ACTIONS(2674), + [anon_sym_ATtry] = ACTIONS(2674), + [anon_sym___try] = ACTIONS(2672), + [anon_sym_ATthrow] = ACTIONS(2674), + [anon_sym_ATselector] = ACTIONS(2674), + [anon_sym_ATavailable] = ACTIONS(2674), + [anon_sym___builtin_available] = ACTIONS(2672), + [anon_sym_va_arg] = ACTIONS(2672), + [anon_sym_ATencode] = ACTIONS(2674), + [anon_sym_ATsynchronized] = ACTIONS(2674), + [anon_sym_BOOL] = ACTIONS(2672), + [anon_sym_IMP] = ACTIONS(2672), + [anon_sym_SEL] = ACTIONS(2672), + [anon_sym_Class] = ACTIONS(2672), + [anon_sym_id] = ACTIONS(2672), + }, + [906] = { + [sym_identifier] = ACTIONS(2780), + [aux_sym_preproc_include_token1] = ACTIONS(2780), + [aux_sym_preproc_include_token2] = ACTIONS(2780), + [aux_sym_preproc_def_token1] = ACTIONS(2780), + [aux_sym_preproc_if_token1] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2780), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2782), + [anon_sym_BANG] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(2780), + [anon_sym_STAR] = ACTIONS(2782), + [anon_sym_CARET] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym___extension__] = ACTIONS(2780), + [anon_sym_typedef] = ACTIONS(2780), + [anon_sym_extern] = ACTIONS(2780), + [anon_sym___attribute__] = ACTIONS(2780), + [anon_sym___attribute] = ACTIONS(2780), + [anon_sym_noreturn] = ACTIONS(2780), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym___declspec] = ACTIONS(2780), + [anon_sym___cdecl] = ACTIONS(2780), + [anon_sym___clrcall] = ACTIONS(2780), + [anon_sym___stdcall] = ACTIONS(2780), + [anon_sym___fastcall] = ACTIONS(2780), + [anon_sym___thiscall] = ACTIONS(2780), + [anon_sym___vectorcall] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_RBRACE] = ACTIONS(2782), + [anon_sym_signed] = ACTIONS(2780), + [anon_sym_unsigned] = ACTIONS(2780), + [anon_sym_long] = ACTIONS(2780), + [anon_sym_short] = ACTIONS(2780), + [anon_sym_static] = ACTIONS(2780), + [anon_sym_ATautoreleasepool] = ACTIONS(2782), + [anon_sym_auto] = ACTIONS(2780), + [anon_sym_register] = ACTIONS(2780), + [anon_sym_inline] = ACTIONS(2780), + [anon_sym___inline] = ACTIONS(2780), + [anon_sym___inline__] = ACTIONS(2780), + [anon_sym___forceinline] = ACTIONS(2780), + [anon_sym_thread_local] = ACTIONS(2780), + [anon_sym___thread] = ACTIONS(2780), + [anon_sym_CG_EXTERN] = ACTIONS(2780), + [anon_sym_CG_INLINE] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2780), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2780), + [anon_sym_IBOutlet] = ACTIONS(2780), + [anon_sym_IBInspectable] = ACTIONS(2780), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2780), + [anon_sym_NS_INLINE] = ACTIONS(2780), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2780), + [anon_sym_OBJC_EXPORT] = ACTIONS(2780), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2780), + [anon_sym_const] = ACTIONS(2780), + [anon_sym_constexpr] = ACTIONS(2780), + [anon_sym_volatile] = ACTIONS(2780), + [anon_sym_restrict] = ACTIONS(2780), + [anon_sym___restrict__] = ACTIONS(2780), + [anon_sym__Atomic] = ACTIONS(2780), + [anon_sym__Noreturn] = ACTIONS(2780), + [anon_sym__Nonnull] = ACTIONS(2780), + [anon_sym_nullable] = ACTIONS(2780), + [anon_sym__Complex] = ACTIONS(2780), + [anon_sym__Nullable] = ACTIONS(2780), + [anon_sym__Nullable_result] = ACTIONS(2780), + [anon_sym__Null_unspecified] = ACTIONS(2780), + [anon_sym___autoreleasing] = ACTIONS(2780), + [anon_sym___block] = ACTIONS(2780), + [anon_sym___bridge] = ACTIONS(2780), + [anon_sym___bridge_retained] = ACTIONS(2780), + [anon_sym___bridge_transfer] = ACTIONS(2780), + [anon_sym___complex] = ACTIONS(2780), + [anon_sym___const] = ACTIONS(2780), + [anon_sym___imag] = ACTIONS(2780), + [anon_sym___kindof] = ACTIONS(2780), + [anon_sym___nonnull] = ACTIONS(2780), + [anon_sym___nullable] = ACTIONS(2780), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2780), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2780), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2780), + [anon_sym___real] = ACTIONS(2780), + [anon_sym___strong] = ACTIONS(2780), + [anon_sym___unsafe_unretained] = ACTIONS(2780), + [anon_sym___unused] = ACTIONS(2780), + [anon_sym___weak] = ACTIONS(2780), + [anon_sym_alignas] = ACTIONS(2780), + [anon_sym__Alignas] = ACTIONS(2780), + [sym_primitive_type] = ACTIONS(2780), + [anon_sym_enum] = ACTIONS(2780), + [anon_sym_struct] = ACTIONS(2780), + [anon_sym_union] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_switch] = ACTIONS(2780), + [anon_sym_case] = ACTIONS(2780), + [anon_sym_default] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_in] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_break] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2780), + [anon_sym_goto] = ACTIONS(2780), + [anon_sym_DASH_DASH] = ACTIONS(2782), + [anon_sym_PLUS_PLUS] = ACTIONS(2782), + [anon_sym_sizeof] = ACTIONS(2780), + [anon_sym___alignof__] = ACTIONS(2780), + [anon_sym___alignof] = ACTIONS(2780), + [anon_sym__alignof] = ACTIONS(2780), + [anon_sym_alignof] = ACTIONS(2780), + [anon_sym__Alignof] = ACTIONS(2780), + [anon_sym_offsetof] = ACTIONS(2780), + [anon_sym__Generic] = ACTIONS(2780), + [anon_sym_asm] = ACTIONS(2780), + [anon_sym___asm__] = ACTIONS(2780), + [anon_sym___asm] = ACTIONS(2780), + [sym_number_literal] = ACTIONS(2782), + [anon_sym_L_SQUOTE] = ACTIONS(2782), + [anon_sym_u_SQUOTE] = ACTIONS(2782), + [anon_sym_U_SQUOTE] = ACTIONS(2782), + [anon_sym_u8_SQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2782), + [anon_sym_AT] = ACTIONS(2780), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_L_DQUOTE] = ACTIONS(2782), + [anon_sym_u_DQUOTE] = ACTIONS(2782), + [anon_sym_U_DQUOTE] = ACTIONS(2782), + [anon_sym_u8_DQUOTE] = ACTIONS(2782), + [sym_true] = ACTIONS(2780), + [sym_false] = ACTIONS(2780), + [anon_sym_NULL] = ACTIONS(2780), + [anon_sym_nullptr] = ACTIONS(2780), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2780), + [anon_sym___typeof] = ACTIONS(2780), + [anon_sym_typeof] = ACTIONS(2780), + [anon_sym_ATimport] = ACTIONS(2782), + [aux_sym_preproc_undef_token1] = ACTIONS(2780), + [anon_sym_POUND] = ACTIONS(2780), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2780), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2780), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2780), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2780), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE] = ACTIONS(2780), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_API_AVAILABLE] = ACTIONS(2780), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_API_DEPRECATED] = ACTIONS(2780), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2780), + [anon_sym___deprecated_msg] = ACTIONS(2780), + [anon_sym___deprecated_enum_msg] = ACTIONS(2780), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2780), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2780), + [anon_sym_ATprotocol] = ACTIONS(2782), + [anon_sym_ATinterface] = ACTIONS(2782), + [anon_sym_ATimplementation] = ACTIONS(2782), + [anon_sym_ATcompatibility_alias] = ACTIONS(2782), + [anon_sym_ATtry] = ACTIONS(2782), + [anon_sym___try] = ACTIONS(2780), + [anon_sym_ATthrow] = ACTIONS(2782), + [anon_sym_ATselector] = ACTIONS(2782), + [anon_sym_ATavailable] = ACTIONS(2782), + [anon_sym___builtin_available] = ACTIONS(2780), + [anon_sym_va_arg] = ACTIONS(2780), + [anon_sym_ATencode] = ACTIONS(2782), + [anon_sym_ATsynchronized] = ACTIONS(2782), + [anon_sym_BOOL] = ACTIONS(2780), + [anon_sym_IMP] = ACTIONS(2780), + [anon_sym_SEL] = ACTIONS(2780), + [anon_sym_Class] = ACTIONS(2780), + [anon_sym_id] = ACTIONS(2780), + }, + [907] = { + [sym_identifier] = ACTIONS(2594), + [aux_sym_preproc_include_token1] = ACTIONS(2594), + [aux_sym_preproc_include_token2] = ACTIONS(2594), + [aux_sym_preproc_def_token1] = ACTIONS(2594), + [aux_sym_preproc_if_token1] = ACTIONS(2594), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2594), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2594), + [sym_preproc_directive] = ACTIONS(2594), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_BANG] = ACTIONS(2596), + [anon_sym_TILDE] = ACTIONS(2596), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_CARET] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2596), + [anon_sym_SEMI] = ACTIONS(2596), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_typedef] = ACTIONS(2594), + [anon_sym_extern] = ACTIONS(2594), + [anon_sym___attribute__] = ACTIONS(2594), + [anon_sym___attribute] = ACTIONS(2594), + [anon_sym_noreturn] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2596), + [anon_sym___declspec] = ACTIONS(2594), + [anon_sym___cdecl] = ACTIONS(2594), + [anon_sym___clrcall] = ACTIONS(2594), + [anon_sym___stdcall] = ACTIONS(2594), + [anon_sym___fastcall] = ACTIONS(2594), + [anon_sym___thiscall] = ACTIONS(2594), + [anon_sym___vectorcall] = ACTIONS(2594), + [anon_sym_LBRACE] = ACTIONS(2596), + [anon_sym_RBRACE] = ACTIONS(2596), + [anon_sym_signed] = ACTIONS(2594), + [anon_sym_unsigned] = ACTIONS(2594), + [anon_sym_long] = ACTIONS(2594), + [anon_sym_short] = ACTIONS(2594), + [anon_sym_static] = ACTIONS(2594), + [anon_sym_ATautoreleasepool] = ACTIONS(2596), + [anon_sym_auto] = ACTIONS(2594), + [anon_sym_register] = ACTIONS(2594), + [anon_sym_inline] = ACTIONS(2594), + [anon_sym___inline] = ACTIONS(2594), + [anon_sym___inline__] = ACTIONS(2594), + [anon_sym___forceinline] = ACTIONS(2594), + [anon_sym_thread_local] = ACTIONS(2594), + [anon_sym___thread] = ACTIONS(2594), + [anon_sym_CG_EXTERN] = ACTIONS(2594), + [anon_sym_CG_INLINE] = ACTIONS(2594), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2594), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2594), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2594), + [anon_sym_IBOutlet] = ACTIONS(2594), + [anon_sym_IBInspectable] = ACTIONS(2594), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2594), + [anon_sym_NS_INLINE] = ACTIONS(2594), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2594), + [anon_sym_OBJC_EXPORT] = ACTIONS(2594), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2594), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2594), + [anon_sym_const] = ACTIONS(2594), + [anon_sym_constexpr] = ACTIONS(2594), + [anon_sym_volatile] = ACTIONS(2594), + [anon_sym_restrict] = ACTIONS(2594), + [anon_sym___restrict__] = ACTIONS(2594), + [anon_sym__Atomic] = ACTIONS(2594), + [anon_sym__Noreturn] = ACTIONS(2594), + [anon_sym__Nonnull] = ACTIONS(2594), + [anon_sym_nullable] = ACTIONS(2594), + [anon_sym__Complex] = ACTIONS(2594), + [anon_sym__Nullable] = ACTIONS(2594), + [anon_sym__Nullable_result] = ACTIONS(2594), + [anon_sym__Null_unspecified] = ACTIONS(2594), + [anon_sym___autoreleasing] = ACTIONS(2594), + [anon_sym___block] = ACTIONS(2594), + [anon_sym___bridge] = ACTIONS(2594), + [anon_sym___bridge_retained] = ACTIONS(2594), + [anon_sym___bridge_transfer] = ACTIONS(2594), + [anon_sym___complex] = ACTIONS(2594), + [anon_sym___const] = ACTIONS(2594), + [anon_sym___imag] = ACTIONS(2594), + [anon_sym___kindof] = ACTIONS(2594), + [anon_sym___nonnull] = ACTIONS(2594), + [anon_sym___nullable] = ACTIONS(2594), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2594), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2594), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2594), + [anon_sym___real] = ACTIONS(2594), + [anon_sym___strong] = ACTIONS(2594), + [anon_sym___unsafe_unretained] = ACTIONS(2594), + [anon_sym___unused] = ACTIONS(2594), + [anon_sym___weak] = ACTIONS(2594), + [anon_sym_alignas] = ACTIONS(2594), + [anon_sym__Alignas] = ACTIONS(2594), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_enum] = ACTIONS(2594), + [anon_sym_struct] = ACTIONS(2594), + [anon_sym_union] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_switch] = ACTIONS(2594), + [anon_sym_case] = ACTIONS(2594), + [anon_sym_default] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_in] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_break] = ACTIONS(2594), + [anon_sym_continue] = ACTIONS(2594), + [anon_sym_goto] = ACTIONS(2594), + [anon_sym_DASH_DASH] = ACTIONS(2596), + [anon_sym_PLUS_PLUS] = ACTIONS(2596), + [anon_sym_sizeof] = ACTIONS(2594), + [anon_sym___alignof__] = ACTIONS(2594), + [anon_sym___alignof] = ACTIONS(2594), + [anon_sym__alignof] = ACTIONS(2594), + [anon_sym_alignof] = ACTIONS(2594), + [anon_sym__Alignof] = ACTIONS(2594), + [anon_sym_offsetof] = ACTIONS(2594), + [anon_sym__Generic] = ACTIONS(2594), + [anon_sym_asm] = ACTIONS(2594), + [anon_sym___asm__] = ACTIONS(2594), + [anon_sym___asm] = ACTIONS(2594), + [sym_number_literal] = ACTIONS(2596), + [anon_sym_L_SQUOTE] = ACTIONS(2596), + [anon_sym_u_SQUOTE] = ACTIONS(2596), + [anon_sym_U_SQUOTE] = ACTIONS(2596), + [anon_sym_u8_SQUOTE] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_AT] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2596), + [anon_sym_L_DQUOTE] = ACTIONS(2596), + [anon_sym_u_DQUOTE] = ACTIONS(2596), + [anon_sym_U_DQUOTE] = ACTIONS(2596), + [anon_sym_u8_DQUOTE] = ACTIONS(2596), + [sym_true] = ACTIONS(2594), + [sym_false] = ACTIONS(2594), + [anon_sym_NULL] = ACTIONS(2594), + [anon_sym_nullptr] = ACTIONS(2594), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2594), + [anon_sym___typeof] = ACTIONS(2594), + [anon_sym_typeof] = ACTIONS(2594), + [anon_sym_ATimport] = ACTIONS(2596), + [aux_sym_preproc_undef_token1] = ACTIONS(2594), + [anon_sym_POUND] = ACTIONS(2594), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2594), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2594), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2594), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2594), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2594), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2594), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2594), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2594), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2594), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2594), + [anon_sym_NS_AVAILABLE] = ACTIONS(2594), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2594), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2594), + [anon_sym_API_AVAILABLE] = ACTIONS(2594), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2594), + [anon_sym_API_DEPRECATED] = ACTIONS(2594), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2594), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2594), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2594), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2594), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2594), + [anon_sym___deprecated_msg] = ACTIONS(2594), + [anon_sym___deprecated_enum_msg] = ACTIONS(2594), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2594), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2594), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2594), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2594), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2594), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2594), + [anon_sym_ATprotocol] = ACTIONS(2596), + [anon_sym_ATinterface] = ACTIONS(2596), + [anon_sym_ATimplementation] = ACTIONS(2596), + [anon_sym_ATcompatibility_alias] = ACTIONS(2596), + [anon_sym_ATtry] = ACTIONS(2596), + [anon_sym___try] = ACTIONS(2594), + [anon_sym_ATthrow] = ACTIONS(2596), + [anon_sym_ATselector] = ACTIONS(2596), + [anon_sym_ATavailable] = ACTIONS(2596), + [anon_sym___builtin_available] = ACTIONS(2594), + [anon_sym_va_arg] = ACTIONS(2594), + [anon_sym_ATencode] = ACTIONS(2596), + [anon_sym_ATsynchronized] = ACTIONS(2596), + [anon_sym_BOOL] = ACTIONS(2594), + [anon_sym_IMP] = ACTIONS(2594), + [anon_sym_SEL] = ACTIONS(2594), + [anon_sym_Class] = ACTIONS(2594), + [anon_sym_id] = ACTIONS(2594), + }, + [908] = { + [sym_identifier] = ACTIONS(2780), + [aux_sym_preproc_include_token1] = ACTIONS(2780), + [aux_sym_preproc_include_token2] = ACTIONS(2780), + [aux_sym_preproc_def_token1] = ACTIONS(2780), + [aux_sym_preproc_if_token1] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2780), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2782), + [anon_sym_BANG] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(2780), + [anon_sym_STAR] = ACTIONS(2782), + [anon_sym_CARET] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym___extension__] = ACTIONS(2780), + [anon_sym_typedef] = ACTIONS(2780), + [anon_sym_extern] = ACTIONS(2780), + [anon_sym___attribute__] = ACTIONS(2780), + [anon_sym___attribute] = ACTIONS(2780), + [anon_sym_noreturn] = ACTIONS(2780), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym___declspec] = ACTIONS(2780), + [anon_sym___cdecl] = ACTIONS(2780), + [anon_sym___clrcall] = ACTIONS(2780), + [anon_sym___stdcall] = ACTIONS(2780), + [anon_sym___fastcall] = ACTIONS(2780), + [anon_sym___thiscall] = ACTIONS(2780), + [anon_sym___vectorcall] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_RBRACE] = ACTIONS(2782), + [anon_sym_signed] = ACTIONS(2780), + [anon_sym_unsigned] = ACTIONS(2780), + [anon_sym_long] = ACTIONS(2780), + [anon_sym_short] = ACTIONS(2780), + [anon_sym_static] = ACTIONS(2780), + [anon_sym_ATautoreleasepool] = ACTIONS(2782), + [anon_sym_auto] = ACTIONS(2780), + [anon_sym_register] = ACTIONS(2780), + [anon_sym_inline] = ACTIONS(2780), + [anon_sym___inline] = ACTIONS(2780), + [anon_sym___inline__] = ACTIONS(2780), + [anon_sym___forceinline] = ACTIONS(2780), + [anon_sym_thread_local] = ACTIONS(2780), + [anon_sym___thread] = ACTIONS(2780), + [anon_sym_CG_EXTERN] = ACTIONS(2780), + [anon_sym_CG_INLINE] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2780), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2780), + [anon_sym_IBOutlet] = ACTIONS(2780), + [anon_sym_IBInspectable] = ACTIONS(2780), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2780), + [anon_sym_NS_INLINE] = ACTIONS(2780), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2780), + [anon_sym_OBJC_EXPORT] = ACTIONS(2780), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2780), + [anon_sym_const] = ACTIONS(2780), + [anon_sym_constexpr] = ACTIONS(2780), + [anon_sym_volatile] = ACTIONS(2780), + [anon_sym_restrict] = ACTIONS(2780), + [anon_sym___restrict__] = ACTIONS(2780), + [anon_sym__Atomic] = ACTIONS(2780), + [anon_sym__Noreturn] = ACTIONS(2780), + [anon_sym__Nonnull] = ACTIONS(2780), + [anon_sym_nullable] = ACTIONS(2780), + [anon_sym__Complex] = ACTIONS(2780), + [anon_sym__Nullable] = ACTIONS(2780), + [anon_sym__Nullable_result] = ACTIONS(2780), + [anon_sym__Null_unspecified] = ACTIONS(2780), + [anon_sym___autoreleasing] = ACTIONS(2780), + [anon_sym___block] = ACTIONS(2780), + [anon_sym___bridge] = ACTIONS(2780), + [anon_sym___bridge_retained] = ACTIONS(2780), + [anon_sym___bridge_transfer] = ACTIONS(2780), + [anon_sym___complex] = ACTIONS(2780), + [anon_sym___const] = ACTIONS(2780), + [anon_sym___imag] = ACTIONS(2780), + [anon_sym___kindof] = ACTIONS(2780), + [anon_sym___nonnull] = ACTIONS(2780), + [anon_sym___nullable] = ACTIONS(2780), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2780), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2780), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2780), + [anon_sym___real] = ACTIONS(2780), + [anon_sym___strong] = ACTIONS(2780), + [anon_sym___unsafe_unretained] = ACTIONS(2780), + [anon_sym___unused] = ACTIONS(2780), + [anon_sym___weak] = ACTIONS(2780), + [anon_sym_alignas] = ACTIONS(2780), + [anon_sym__Alignas] = ACTIONS(2780), + [sym_primitive_type] = ACTIONS(2780), + [anon_sym_enum] = ACTIONS(2780), + [anon_sym_struct] = ACTIONS(2780), + [anon_sym_union] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_switch] = ACTIONS(2780), + [anon_sym_case] = ACTIONS(2780), + [anon_sym_default] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_in] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_break] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2780), + [anon_sym_goto] = ACTIONS(2780), + [anon_sym_DASH_DASH] = ACTIONS(2782), + [anon_sym_PLUS_PLUS] = ACTIONS(2782), + [anon_sym_sizeof] = ACTIONS(2780), + [anon_sym___alignof__] = ACTIONS(2780), + [anon_sym___alignof] = ACTIONS(2780), + [anon_sym__alignof] = ACTIONS(2780), + [anon_sym_alignof] = ACTIONS(2780), + [anon_sym__Alignof] = ACTIONS(2780), + [anon_sym_offsetof] = ACTIONS(2780), + [anon_sym__Generic] = ACTIONS(2780), + [anon_sym_asm] = ACTIONS(2780), + [anon_sym___asm__] = ACTIONS(2780), + [anon_sym___asm] = ACTIONS(2780), + [sym_number_literal] = ACTIONS(2782), + [anon_sym_L_SQUOTE] = ACTIONS(2782), + [anon_sym_u_SQUOTE] = ACTIONS(2782), + [anon_sym_U_SQUOTE] = ACTIONS(2782), + [anon_sym_u8_SQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2782), + [anon_sym_AT] = ACTIONS(2780), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_L_DQUOTE] = ACTIONS(2782), + [anon_sym_u_DQUOTE] = ACTIONS(2782), + [anon_sym_U_DQUOTE] = ACTIONS(2782), + [anon_sym_u8_DQUOTE] = ACTIONS(2782), + [sym_true] = ACTIONS(2780), + [sym_false] = ACTIONS(2780), + [anon_sym_NULL] = ACTIONS(2780), + [anon_sym_nullptr] = ACTIONS(2780), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2780), + [anon_sym___typeof] = ACTIONS(2780), + [anon_sym_typeof] = ACTIONS(2780), + [anon_sym_ATimport] = ACTIONS(2782), + [aux_sym_preproc_undef_token1] = ACTIONS(2780), + [anon_sym_POUND] = ACTIONS(2780), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2780), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2780), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2780), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2780), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE] = ACTIONS(2780), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_API_AVAILABLE] = ACTIONS(2780), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_API_DEPRECATED] = ACTIONS(2780), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2780), + [anon_sym___deprecated_msg] = ACTIONS(2780), + [anon_sym___deprecated_enum_msg] = ACTIONS(2780), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2780), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2780), + [anon_sym_ATprotocol] = ACTIONS(2782), + [anon_sym_ATinterface] = ACTIONS(2782), + [anon_sym_ATimplementation] = ACTIONS(2782), + [anon_sym_ATcompatibility_alias] = ACTIONS(2782), + [anon_sym_ATtry] = ACTIONS(2782), + [anon_sym___try] = ACTIONS(2780), + [anon_sym_ATthrow] = ACTIONS(2782), + [anon_sym_ATselector] = ACTIONS(2782), + [anon_sym_ATavailable] = ACTIONS(2782), + [anon_sym___builtin_available] = ACTIONS(2780), + [anon_sym_va_arg] = ACTIONS(2780), + [anon_sym_ATencode] = ACTIONS(2782), + [anon_sym_ATsynchronized] = ACTIONS(2782), + [anon_sym_BOOL] = ACTIONS(2780), + [anon_sym_IMP] = ACTIONS(2780), + [anon_sym_SEL] = ACTIONS(2780), + [anon_sym_Class] = ACTIONS(2780), + [anon_sym_id] = ACTIONS(2780), + }, + [909] = { + [sym_identifier] = ACTIONS(2620), + [aux_sym_preproc_include_token1] = ACTIONS(2620), + [aux_sym_preproc_include_token2] = ACTIONS(2620), + [aux_sym_preproc_def_token1] = ACTIONS(2620), + [aux_sym_preproc_if_token1] = ACTIONS(2620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2620), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2620), + [sym_preproc_directive] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(2622), + [anon_sym_BANG] = ACTIONS(2622), + [anon_sym_TILDE] = ACTIONS(2622), + [anon_sym_DASH] = ACTIONS(2620), + [anon_sym_PLUS] = ACTIONS(2620), + [anon_sym_STAR] = ACTIONS(2622), + [anon_sym_CARET] = ACTIONS(2622), + [anon_sym_AMP] = ACTIONS(2622), + [anon_sym_SEMI] = ACTIONS(2622), + [anon_sym___extension__] = ACTIONS(2620), + [anon_sym_typedef] = ACTIONS(2620), + [anon_sym_extern] = ACTIONS(2620), + [anon_sym___attribute__] = ACTIONS(2620), + [anon_sym___attribute] = ACTIONS(2620), + [anon_sym_noreturn] = ACTIONS(2620), + [anon_sym_LBRACK] = ACTIONS(2622), + [anon_sym___declspec] = ACTIONS(2620), + [anon_sym___cdecl] = ACTIONS(2620), + [anon_sym___clrcall] = ACTIONS(2620), + [anon_sym___stdcall] = ACTIONS(2620), + [anon_sym___fastcall] = ACTIONS(2620), + [anon_sym___thiscall] = ACTIONS(2620), + [anon_sym___vectorcall] = ACTIONS(2620), + [anon_sym_LBRACE] = ACTIONS(2622), + [anon_sym_RBRACE] = ACTIONS(2622), + [anon_sym_signed] = ACTIONS(2620), + [anon_sym_unsigned] = ACTIONS(2620), + [anon_sym_long] = ACTIONS(2620), + [anon_sym_short] = ACTIONS(2620), + [anon_sym_static] = ACTIONS(2620), + [anon_sym_ATautoreleasepool] = ACTIONS(2622), + [anon_sym_auto] = ACTIONS(2620), + [anon_sym_register] = ACTIONS(2620), + [anon_sym_inline] = ACTIONS(2620), + [anon_sym___inline] = ACTIONS(2620), + [anon_sym___inline__] = ACTIONS(2620), + [anon_sym___forceinline] = ACTIONS(2620), + [anon_sym_thread_local] = ACTIONS(2620), + [anon_sym___thread] = ACTIONS(2620), + [anon_sym_CG_EXTERN] = ACTIONS(2620), + [anon_sym_CG_INLINE] = ACTIONS(2620), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2620), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2620), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2620), + [anon_sym_IBOutlet] = ACTIONS(2620), + [anon_sym_IBInspectable] = ACTIONS(2620), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2620), + [anon_sym_NS_INLINE] = ACTIONS(2620), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2620), + [anon_sym_OBJC_EXPORT] = ACTIONS(2620), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2620), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2620), + [anon_sym_const] = ACTIONS(2620), + [anon_sym_constexpr] = ACTIONS(2620), + [anon_sym_volatile] = ACTIONS(2620), + [anon_sym_restrict] = ACTIONS(2620), + [anon_sym___restrict__] = ACTIONS(2620), + [anon_sym__Atomic] = ACTIONS(2620), + [anon_sym__Noreturn] = ACTIONS(2620), + [anon_sym__Nonnull] = ACTIONS(2620), + [anon_sym_nullable] = ACTIONS(2620), + [anon_sym__Complex] = ACTIONS(2620), + [anon_sym__Nullable] = ACTIONS(2620), + [anon_sym__Nullable_result] = ACTIONS(2620), + [anon_sym__Null_unspecified] = ACTIONS(2620), + [anon_sym___autoreleasing] = ACTIONS(2620), + [anon_sym___block] = ACTIONS(2620), + [anon_sym___bridge] = ACTIONS(2620), + [anon_sym___bridge_retained] = ACTIONS(2620), + [anon_sym___bridge_transfer] = ACTIONS(2620), + [anon_sym___complex] = ACTIONS(2620), + [anon_sym___const] = ACTIONS(2620), + [anon_sym___imag] = ACTIONS(2620), + [anon_sym___kindof] = ACTIONS(2620), + [anon_sym___nonnull] = ACTIONS(2620), + [anon_sym___nullable] = ACTIONS(2620), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2620), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2620), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2620), + [anon_sym___real] = ACTIONS(2620), + [anon_sym___strong] = ACTIONS(2620), + [anon_sym___unsafe_unretained] = ACTIONS(2620), + [anon_sym___unused] = ACTIONS(2620), + [anon_sym___weak] = ACTIONS(2620), + [anon_sym_alignas] = ACTIONS(2620), + [anon_sym__Alignas] = ACTIONS(2620), + [sym_primitive_type] = ACTIONS(2620), + [anon_sym_enum] = ACTIONS(2620), + [anon_sym_struct] = ACTIONS(2620), + [anon_sym_union] = ACTIONS(2620), + [anon_sym_if] = ACTIONS(2620), + [anon_sym_switch] = ACTIONS(2620), + [anon_sym_case] = ACTIONS(2620), + [anon_sym_default] = ACTIONS(2620), + [anon_sym_while] = ACTIONS(2620), + [anon_sym_do] = ACTIONS(2620), + [anon_sym_for] = ACTIONS(2620), + [anon_sym_in] = ACTIONS(2620), + [anon_sym_return] = ACTIONS(2620), + [anon_sym_break] = ACTIONS(2620), + [anon_sym_continue] = ACTIONS(2620), + [anon_sym_goto] = ACTIONS(2620), + [anon_sym_DASH_DASH] = ACTIONS(2622), + [anon_sym_PLUS_PLUS] = ACTIONS(2622), + [anon_sym_sizeof] = ACTIONS(2620), + [anon_sym___alignof__] = ACTIONS(2620), + [anon_sym___alignof] = ACTIONS(2620), + [anon_sym__alignof] = ACTIONS(2620), + [anon_sym_alignof] = ACTIONS(2620), + [anon_sym__Alignof] = ACTIONS(2620), + [anon_sym_offsetof] = ACTIONS(2620), + [anon_sym__Generic] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2620), + [anon_sym___asm__] = ACTIONS(2620), + [anon_sym___asm] = ACTIONS(2620), + [sym_number_literal] = ACTIONS(2622), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_AT] = ACTIONS(2620), + [anon_sym_DQUOTE] = ACTIONS(2622), + [anon_sym_L_DQUOTE] = ACTIONS(2622), + [anon_sym_u_DQUOTE] = ACTIONS(2622), + [anon_sym_U_DQUOTE] = ACTIONS(2622), + [anon_sym_u8_DQUOTE] = ACTIONS(2622), + [sym_true] = ACTIONS(2620), + [sym_false] = ACTIONS(2620), + [anon_sym_NULL] = ACTIONS(2620), + [anon_sym_nullptr] = ACTIONS(2620), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2620), + [anon_sym___typeof] = ACTIONS(2620), + [anon_sym_typeof] = ACTIONS(2620), + [anon_sym_ATimport] = ACTIONS(2622), + [aux_sym_preproc_undef_token1] = ACTIONS(2620), + [anon_sym_POUND] = ACTIONS(2620), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2620), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2620), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2620), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2620), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2620), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2620), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2620), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2620), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2620), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2620), + [anon_sym_NS_AVAILABLE] = ACTIONS(2620), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2620), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2620), + [anon_sym_API_AVAILABLE] = ACTIONS(2620), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2620), + [anon_sym_API_DEPRECATED] = ACTIONS(2620), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2620), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2620), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2620), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2620), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2620), + [anon_sym___deprecated_msg] = ACTIONS(2620), + [anon_sym___deprecated_enum_msg] = ACTIONS(2620), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2620), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2620), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2620), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2620), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2620), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2620), + [anon_sym_ATprotocol] = ACTIONS(2622), + [anon_sym_ATinterface] = ACTIONS(2622), + [anon_sym_ATimplementation] = ACTIONS(2622), + [anon_sym_ATcompatibility_alias] = ACTIONS(2622), + [anon_sym_ATtry] = ACTIONS(2622), + [anon_sym___try] = ACTIONS(2620), + [anon_sym_ATthrow] = ACTIONS(2622), + [anon_sym_ATselector] = ACTIONS(2622), + [anon_sym_ATavailable] = ACTIONS(2622), + [anon_sym___builtin_available] = ACTIONS(2620), + [anon_sym_va_arg] = ACTIONS(2620), + [anon_sym_ATencode] = ACTIONS(2622), + [anon_sym_ATsynchronized] = ACTIONS(2622), + [anon_sym_BOOL] = ACTIONS(2620), + [anon_sym_IMP] = ACTIONS(2620), + [anon_sym_SEL] = ACTIONS(2620), + [anon_sym_Class] = ACTIONS(2620), + [anon_sym_id] = ACTIONS(2620), + }, + [910] = { + [sym_identifier] = ACTIONS(2868), + [aux_sym_preproc_include_token1] = ACTIONS(2868), + [aux_sym_preproc_include_token2] = ACTIONS(2868), + [aux_sym_preproc_def_token1] = ACTIONS(2868), + [aux_sym_preproc_if_token1] = ACTIONS(2868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2868), + [sym_preproc_directive] = ACTIONS(2868), + [anon_sym_LPAREN2] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_CARET] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym___extension__] = ACTIONS(2868), + [anon_sym_typedef] = ACTIONS(2868), + [anon_sym_extern] = ACTIONS(2868), + [anon_sym___attribute__] = ACTIONS(2868), + [anon_sym___attribute] = ACTIONS(2868), + [anon_sym_noreturn] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2870), + [anon_sym___declspec] = ACTIONS(2868), + [anon_sym___cdecl] = ACTIONS(2868), + [anon_sym___clrcall] = ACTIONS(2868), + [anon_sym___stdcall] = ACTIONS(2868), + [anon_sym___fastcall] = ACTIONS(2868), + [anon_sym___thiscall] = ACTIONS(2868), + [anon_sym___vectorcall] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_RBRACE] = ACTIONS(2870), + [anon_sym_signed] = ACTIONS(2868), + [anon_sym_unsigned] = ACTIONS(2868), + [anon_sym_long] = ACTIONS(2868), + [anon_sym_short] = ACTIONS(2868), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_ATautoreleasepool] = ACTIONS(2870), + [anon_sym_auto] = ACTIONS(2868), + [anon_sym_register] = ACTIONS(2868), + [anon_sym_inline] = ACTIONS(2868), + [anon_sym___inline] = ACTIONS(2868), + [anon_sym___inline__] = ACTIONS(2868), + [anon_sym___forceinline] = ACTIONS(2868), + [anon_sym_thread_local] = ACTIONS(2868), + [anon_sym___thread] = ACTIONS(2868), + [anon_sym_CG_EXTERN] = ACTIONS(2868), + [anon_sym_CG_INLINE] = ACTIONS(2868), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2868), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2868), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2868), + [anon_sym_IBOutlet] = ACTIONS(2868), + [anon_sym_IBInspectable] = ACTIONS(2868), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2868), + [anon_sym_NS_INLINE] = ACTIONS(2868), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2868), + [anon_sym_OBJC_EXPORT] = ACTIONS(2868), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2868), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2868), + [anon_sym_const] = ACTIONS(2868), + [anon_sym_constexpr] = ACTIONS(2868), + [anon_sym_volatile] = ACTIONS(2868), + [anon_sym_restrict] = ACTIONS(2868), + [anon_sym___restrict__] = ACTIONS(2868), + [anon_sym__Atomic] = ACTIONS(2868), + [anon_sym__Noreturn] = ACTIONS(2868), + [anon_sym__Nonnull] = ACTIONS(2868), + [anon_sym_nullable] = ACTIONS(2868), + [anon_sym__Complex] = ACTIONS(2868), + [anon_sym__Nullable] = ACTIONS(2868), + [anon_sym__Nullable_result] = ACTIONS(2868), + [anon_sym__Null_unspecified] = ACTIONS(2868), + [anon_sym___autoreleasing] = ACTIONS(2868), + [anon_sym___block] = ACTIONS(2868), + [anon_sym___bridge] = ACTIONS(2868), + [anon_sym___bridge_retained] = ACTIONS(2868), + [anon_sym___bridge_transfer] = ACTIONS(2868), + [anon_sym___complex] = ACTIONS(2868), + [anon_sym___const] = ACTIONS(2868), + [anon_sym___imag] = ACTIONS(2868), + [anon_sym___kindof] = ACTIONS(2868), + [anon_sym___nonnull] = ACTIONS(2868), + [anon_sym___nullable] = ACTIONS(2868), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2868), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2868), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2868), + [anon_sym___real] = ACTIONS(2868), + [anon_sym___strong] = ACTIONS(2868), + [anon_sym___unsafe_unretained] = ACTIONS(2868), + [anon_sym___unused] = ACTIONS(2868), + [anon_sym___weak] = ACTIONS(2868), + [anon_sym_alignas] = ACTIONS(2868), + [anon_sym__Alignas] = ACTIONS(2868), + [sym_primitive_type] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2868), + [anon_sym_union] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_switch] = ACTIONS(2868), + [anon_sym_case] = ACTIONS(2868), + [anon_sym_default] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_in] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_goto] = ACTIONS(2868), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_sizeof] = ACTIONS(2868), + [anon_sym___alignof__] = ACTIONS(2868), + [anon_sym___alignof] = ACTIONS(2868), + [anon_sym__alignof] = ACTIONS(2868), + [anon_sym_alignof] = ACTIONS(2868), + [anon_sym__Alignof] = ACTIONS(2868), + [anon_sym_offsetof] = ACTIONS(2868), + [anon_sym__Generic] = ACTIONS(2868), + [anon_sym_asm] = ACTIONS(2868), + [anon_sym___asm__] = ACTIONS(2868), + [anon_sym___asm] = ACTIONS(2868), + [sym_number_literal] = ACTIONS(2870), + [anon_sym_L_SQUOTE] = ACTIONS(2870), + [anon_sym_u_SQUOTE] = ACTIONS(2870), + [anon_sym_U_SQUOTE] = ACTIONS(2870), + [anon_sym_u8_SQUOTE] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_AT] = ACTIONS(2868), + [anon_sym_DQUOTE] = ACTIONS(2870), + [anon_sym_L_DQUOTE] = ACTIONS(2870), + [anon_sym_u_DQUOTE] = ACTIONS(2870), + [anon_sym_U_DQUOTE] = ACTIONS(2870), + [anon_sym_u8_DQUOTE] = ACTIONS(2870), + [sym_true] = ACTIONS(2868), + [sym_false] = ACTIONS(2868), + [anon_sym_NULL] = ACTIONS(2868), + [anon_sym_nullptr] = ACTIONS(2868), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2868), + [anon_sym___typeof] = ACTIONS(2868), + [anon_sym_typeof] = ACTIONS(2868), + [anon_sym_ATimport] = ACTIONS(2870), + [aux_sym_preproc_undef_token1] = ACTIONS(2868), + [anon_sym_POUND] = ACTIONS(2868), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2868), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2868), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2868), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2868), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2868), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2868), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2868), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2868), + [anon_sym_NS_AVAILABLE] = ACTIONS(2868), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_API_AVAILABLE] = ACTIONS(2868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_API_DEPRECATED] = ACTIONS(2868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2868), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2868), + [anon_sym___deprecated_msg] = ACTIONS(2868), + [anon_sym___deprecated_enum_msg] = ACTIONS(2868), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2868), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2868), + [anon_sym_ATprotocol] = ACTIONS(2870), + [anon_sym_ATinterface] = ACTIONS(2870), + [anon_sym_ATimplementation] = ACTIONS(2870), + [anon_sym_ATcompatibility_alias] = ACTIONS(2870), + [anon_sym_ATtry] = ACTIONS(2870), + [anon_sym___try] = ACTIONS(2868), + [anon_sym_ATthrow] = ACTIONS(2870), + [anon_sym_ATselector] = ACTIONS(2870), + [anon_sym_ATavailable] = ACTIONS(2870), + [anon_sym___builtin_available] = ACTIONS(2868), + [anon_sym_va_arg] = ACTIONS(2868), + [anon_sym_ATencode] = ACTIONS(2870), + [anon_sym_ATsynchronized] = ACTIONS(2870), + [anon_sym_BOOL] = ACTIONS(2868), + [anon_sym_IMP] = ACTIONS(2868), + [anon_sym_SEL] = ACTIONS(2868), + [anon_sym_Class] = ACTIONS(2868), + [anon_sym_id] = ACTIONS(2868), + }, + [911] = { + [sym_identifier] = ACTIONS(2784), + [aux_sym_preproc_include_token1] = ACTIONS(2784), + [aux_sym_preproc_include_token2] = ACTIONS(2784), + [aux_sym_preproc_def_token1] = ACTIONS(2784), + [aux_sym_preproc_if_token1] = ACTIONS(2784), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2784), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2784), + [sym_preproc_directive] = ACTIONS(2784), + [anon_sym_LPAREN2] = ACTIONS(2786), + [anon_sym_BANG] = ACTIONS(2786), + [anon_sym_TILDE] = ACTIONS(2786), + [anon_sym_DASH] = ACTIONS(2784), + [anon_sym_PLUS] = ACTIONS(2784), + [anon_sym_STAR] = ACTIONS(2786), + [anon_sym_CARET] = ACTIONS(2786), + [anon_sym_AMP] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2784), + [anon_sym_extern] = ACTIONS(2784), + [anon_sym___attribute__] = ACTIONS(2784), + [anon_sym___attribute] = ACTIONS(2784), + [anon_sym_noreturn] = ACTIONS(2784), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym___declspec] = ACTIONS(2784), + [anon_sym___cdecl] = ACTIONS(2784), + [anon_sym___clrcall] = ACTIONS(2784), + [anon_sym___stdcall] = ACTIONS(2784), + [anon_sym___fastcall] = ACTIONS(2784), + [anon_sym___thiscall] = ACTIONS(2784), + [anon_sym___vectorcall] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_RBRACE] = ACTIONS(2786), + [anon_sym_signed] = ACTIONS(2784), + [anon_sym_unsigned] = ACTIONS(2784), + [anon_sym_long] = ACTIONS(2784), + [anon_sym_short] = ACTIONS(2784), + [anon_sym_static] = ACTIONS(2784), + [anon_sym_ATautoreleasepool] = ACTIONS(2786), + [anon_sym_auto] = ACTIONS(2784), + [anon_sym_register] = ACTIONS(2784), + [anon_sym_inline] = ACTIONS(2784), + [anon_sym___inline] = ACTIONS(2784), + [anon_sym___inline__] = ACTIONS(2784), + [anon_sym___forceinline] = ACTIONS(2784), + [anon_sym_thread_local] = ACTIONS(2784), + [anon_sym___thread] = ACTIONS(2784), + [anon_sym_CG_EXTERN] = ACTIONS(2784), + [anon_sym_CG_INLINE] = ACTIONS(2784), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2784), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2784), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2784), + [anon_sym_IBOutlet] = ACTIONS(2784), + [anon_sym_IBInspectable] = ACTIONS(2784), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2784), + [anon_sym_NS_INLINE] = ACTIONS(2784), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2784), + [anon_sym_OBJC_EXPORT] = ACTIONS(2784), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2784), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2784), + [anon_sym_const] = ACTIONS(2784), + [anon_sym_constexpr] = ACTIONS(2784), + [anon_sym_volatile] = ACTIONS(2784), + [anon_sym_restrict] = ACTIONS(2784), + [anon_sym___restrict__] = ACTIONS(2784), + [anon_sym__Atomic] = ACTIONS(2784), + [anon_sym__Noreturn] = ACTIONS(2784), + [anon_sym__Nonnull] = ACTIONS(2784), + [anon_sym_nullable] = ACTIONS(2784), + [anon_sym__Complex] = ACTIONS(2784), + [anon_sym__Nullable] = ACTIONS(2784), + [anon_sym__Nullable_result] = ACTIONS(2784), + [anon_sym__Null_unspecified] = ACTIONS(2784), + [anon_sym___autoreleasing] = ACTIONS(2784), + [anon_sym___block] = ACTIONS(2784), + [anon_sym___bridge] = ACTIONS(2784), + [anon_sym___bridge_retained] = ACTIONS(2784), + [anon_sym___bridge_transfer] = ACTIONS(2784), + [anon_sym___complex] = ACTIONS(2784), + [anon_sym___const] = ACTIONS(2784), + [anon_sym___imag] = ACTIONS(2784), + [anon_sym___kindof] = ACTIONS(2784), + [anon_sym___nonnull] = ACTIONS(2784), + [anon_sym___nullable] = ACTIONS(2784), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2784), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2784), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2784), + [anon_sym___real] = ACTIONS(2784), + [anon_sym___strong] = ACTIONS(2784), + [anon_sym___unsafe_unretained] = ACTIONS(2784), + [anon_sym___unused] = ACTIONS(2784), + [anon_sym___weak] = ACTIONS(2784), + [anon_sym_alignas] = ACTIONS(2784), + [anon_sym__Alignas] = ACTIONS(2784), + [sym_primitive_type] = ACTIONS(2784), + [anon_sym_enum] = ACTIONS(2784), + [anon_sym_struct] = ACTIONS(2784), + [anon_sym_union] = ACTIONS(2784), + [anon_sym_if] = ACTIONS(2784), + [anon_sym_switch] = ACTIONS(2784), + [anon_sym_case] = ACTIONS(2784), + [anon_sym_default] = ACTIONS(2784), + [anon_sym_while] = ACTIONS(2784), + [anon_sym_do] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2784), + [anon_sym_in] = ACTIONS(2784), + [anon_sym_return] = ACTIONS(2784), + [anon_sym_break] = ACTIONS(2784), + [anon_sym_continue] = ACTIONS(2784), + [anon_sym_goto] = ACTIONS(2784), + [anon_sym_DASH_DASH] = ACTIONS(2786), + [anon_sym_PLUS_PLUS] = ACTIONS(2786), + [anon_sym_sizeof] = ACTIONS(2784), + [anon_sym___alignof__] = ACTIONS(2784), + [anon_sym___alignof] = ACTIONS(2784), + [anon_sym__alignof] = ACTIONS(2784), + [anon_sym_alignof] = ACTIONS(2784), + [anon_sym__Alignof] = ACTIONS(2784), + [anon_sym_offsetof] = ACTIONS(2784), + [anon_sym__Generic] = ACTIONS(2784), + [anon_sym_asm] = ACTIONS(2784), + [anon_sym___asm__] = ACTIONS(2784), + [anon_sym___asm] = ACTIONS(2784), + [sym_number_literal] = ACTIONS(2786), + [anon_sym_L_SQUOTE] = ACTIONS(2786), + [anon_sym_u_SQUOTE] = ACTIONS(2786), + [anon_sym_U_SQUOTE] = ACTIONS(2786), + [anon_sym_u8_SQUOTE] = ACTIONS(2786), + [anon_sym_SQUOTE] = ACTIONS(2786), + [anon_sym_AT] = ACTIONS(2784), + [anon_sym_DQUOTE] = ACTIONS(2786), + [anon_sym_L_DQUOTE] = ACTIONS(2786), + [anon_sym_u_DQUOTE] = ACTIONS(2786), + [anon_sym_U_DQUOTE] = ACTIONS(2786), + [anon_sym_u8_DQUOTE] = ACTIONS(2786), + [sym_true] = ACTIONS(2784), + [sym_false] = ACTIONS(2784), + [anon_sym_NULL] = ACTIONS(2784), + [anon_sym_nullptr] = ACTIONS(2784), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2784), + [anon_sym___typeof] = ACTIONS(2784), + [anon_sym_typeof] = ACTIONS(2784), + [anon_sym_ATimport] = ACTIONS(2786), + [aux_sym_preproc_undef_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(2784), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2784), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2784), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2784), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2784), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2784), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2784), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2784), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2784), + [anon_sym_NS_AVAILABLE] = ACTIONS(2784), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2784), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_API_AVAILABLE] = ACTIONS(2784), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_API_DEPRECATED] = ACTIONS(2784), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2784), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2784), + [anon_sym___deprecated_msg] = ACTIONS(2784), + [anon_sym___deprecated_enum_msg] = ACTIONS(2784), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2784), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2784), + [anon_sym_ATprotocol] = ACTIONS(2786), + [anon_sym_ATinterface] = ACTIONS(2786), + [anon_sym_ATimplementation] = ACTIONS(2786), + [anon_sym_ATcompatibility_alias] = ACTIONS(2786), + [anon_sym_ATtry] = ACTIONS(2786), + [anon_sym___try] = ACTIONS(2784), + [anon_sym_ATthrow] = ACTIONS(2786), + [anon_sym_ATselector] = ACTIONS(2786), + [anon_sym_ATavailable] = ACTIONS(2786), + [anon_sym___builtin_available] = ACTIONS(2784), + [anon_sym_va_arg] = ACTIONS(2784), + [anon_sym_ATencode] = ACTIONS(2786), + [anon_sym_ATsynchronized] = ACTIONS(2786), + [anon_sym_BOOL] = ACTIONS(2784), + [anon_sym_IMP] = ACTIONS(2784), + [anon_sym_SEL] = ACTIONS(2784), + [anon_sym_Class] = ACTIONS(2784), + [anon_sym_id] = ACTIONS(2784), + }, + [912] = { + [sym_identifier] = ACTIONS(2784), + [aux_sym_preproc_include_token1] = ACTIONS(2784), + [aux_sym_preproc_include_token2] = ACTIONS(2784), + [aux_sym_preproc_def_token1] = ACTIONS(2784), + [aux_sym_preproc_if_token1] = ACTIONS(2784), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2784), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2784), + [sym_preproc_directive] = ACTIONS(2784), + [anon_sym_LPAREN2] = ACTIONS(2786), + [anon_sym_BANG] = ACTIONS(2786), + [anon_sym_TILDE] = ACTIONS(2786), + [anon_sym_DASH] = ACTIONS(2784), + [anon_sym_PLUS] = ACTIONS(2784), + [anon_sym_STAR] = ACTIONS(2786), + [anon_sym_CARET] = ACTIONS(2786), + [anon_sym_AMP] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2784), + [anon_sym_extern] = ACTIONS(2784), + [anon_sym___attribute__] = ACTIONS(2784), + [anon_sym___attribute] = ACTIONS(2784), + [anon_sym_noreturn] = ACTIONS(2784), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym___declspec] = ACTIONS(2784), + [anon_sym___cdecl] = ACTIONS(2784), + [anon_sym___clrcall] = ACTIONS(2784), + [anon_sym___stdcall] = ACTIONS(2784), + [anon_sym___fastcall] = ACTIONS(2784), + [anon_sym___thiscall] = ACTIONS(2784), + [anon_sym___vectorcall] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_RBRACE] = ACTIONS(2786), + [anon_sym_signed] = ACTIONS(2784), + [anon_sym_unsigned] = ACTIONS(2784), + [anon_sym_long] = ACTIONS(2784), + [anon_sym_short] = ACTIONS(2784), + [anon_sym_static] = ACTIONS(2784), + [anon_sym_ATautoreleasepool] = ACTIONS(2786), + [anon_sym_auto] = ACTIONS(2784), + [anon_sym_register] = ACTIONS(2784), + [anon_sym_inline] = ACTIONS(2784), + [anon_sym___inline] = ACTIONS(2784), + [anon_sym___inline__] = ACTIONS(2784), + [anon_sym___forceinline] = ACTIONS(2784), + [anon_sym_thread_local] = ACTIONS(2784), + [anon_sym___thread] = ACTIONS(2784), + [anon_sym_CG_EXTERN] = ACTIONS(2784), + [anon_sym_CG_INLINE] = ACTIONS(2784), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2784), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2784), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2784), + [anon_sym_IBOutlet] = ACTIONS(2784), + [anon_sym_IBInspectable] = ACTIONS(2784), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2784), + [anon_sym_NS_INLINE] = ACTIONS(2784), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2784), + [anon_sym_OBJC_EXPORT] = ACTIONS(2784), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2784), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2784), + [anon_sym_const] = ACTIONS(2784), + [anon_sym_constexpr] = ACTIONS(2784), + [anon_sym_volatile] = ACTIONS(2784), + [anon_sym_restrict] = ACTIONS(2784), + [anon_sym___restrict__] = ACTIONS(2784), + [anon_sym__Atomic] = ACTIONS(2784), + [anon_sym__Noreturn] = ACTIONS(2784), + [anon_sym__Nonnull] = ACTIONS(2784), + [anon_sym_nullable] = ACTIONS(2784), + [anon_sym__Complex] = ACTIONS(2784), + [anon_sym__Nullable] = ACTIONS(2784), + [anon_sym__Nullable_result] = ACTIONS(2784), + [anon_sym__Null_unspecified] = ACTIONS(2784), + [anon_sym___autoreleasing] = ACTIONS(2784), + [anon_sym___block] = ACTIONS(2784), + [anon_sym___bridge] = ACTIONS(2784), + [anon_sym___bridge_retained] = ACTIONS(2784), + [anon_sym___bridge_transfer] = ACTIONS(2784), + [anon_sym___complex] = ACTIONS(2784), + [anon_sym___const] = ACTIONS(2784), + [anon_sym___imag] = ACTIONS(2784), + [anon_sym___kindof] = ACTIONS(2784), + [anon_sym___nonnull] = ACTIONS(2784), + [anon_sym___nullable] = ACTIONS(2784), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2784), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2784), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2784), + [anon_sym___real] = ACTIONS(2784), + [anon_sym___strong] = ACTIONS(2784), + [anon_sym___unsafe_unretained] = ACTIONS(2784), + [anon_sym___unused] = ACTIONS(2784), + [anon_sym___weak] = ACTIONS(2784), + [anon_sym_alignas] = ACTIONS(2784), + [anon_sym__Alignas] = ACTIONS(2784), + [sym_primitive_type] = ACTIONS(2784), + [anon_sym_enum] = ACTIONS(2784), + [anon_sym_struct] = ACTIONS(2784), + [anon_sym_union] = ACTIONS(2784), + [anon_sym_if] = ACTIONS(2784), + [anon_sym_switch] = ACTIONS(2784), + [anon_sym_case] = ACTIONS(2784), + [anon_sym_default] = ACTIONS(2784), + [anon_sym_while] = ACTIONS(2784), + [anon_sym_do] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2784), + [anon_sym_in] = ACTIONS(2784), + [anon_sym_return] = ACTIONS(2784), + [anon_sym_break] = ACTIONS(2784), + [anon_sym_continue] = ACTIONS(2784), + [anon_sym_goto] = ACTIONS(2784), + [anon_sym_DASH_DASH] = ACTIONS(2786), + [anon_sym_PLUS_PLUS] = ACTIONS(2786), + [anon_sym_sizeof] = ACTIONS(2784), + [anon_sym___alignof__] = ACTIONS(2784), + [anon_sym___alignof] = ACTIONS(2784), + [anon_sym__alignof] = ACTIONS(2784), + [anon_sym_alignof] = ACTIONS(2784), + [anon_sym__Alignof] = ACTIONS(2784), + [anon_sym_offsetof] = ACTIONS(2784), + [anon_sym__Generic] = ACTIONS(2784), + [anon_sym_asm] = ACTIONS(2784), + [anon_sym___asm__] = ACTIONS(2784), + [anon_sym___asm] = ACTIONS(2784), + [sym_number_literal] = ACTIONS(2786), + [anon_sym_L_SQUOTE] = ACTIONS(2786), + [anon_sym_u_SQUOTE] = ACTIONS(2786), + [anon_sym_U_SQUOTE] = ACTIONS(2786), + [anon_sym_u8_SQUOTE] = ACTIONS(2786), + [anon_sym_SQUOTE] = ACTIONS(2786), + [anon_sym_AT] = ACTIONS(2784), + [anon_sym_DQUOTE] = ACTIONS(2786), + [anon_sym_L_DQUOTE] = ACTIONS(2786), + [anon_sym_u_DQUOTE] = ACTIONS(2786), + [anon_sym_U_DQUOTE] = ACTIONS(2786), + [anon_sym_u8_DQUOTE] = ACTIONS(2786), + [sym_true] = ACTIONS(2784), + [sym_false] = ACTIONS(2784), + [anon_sym_NULL] = ACTIONS(2784), + [anon_sym_nullptr] = ACTIONS(2784), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2784), + [anon_sym___typeof] = ACTIONS(2784), + [anon_sym_typeof] = ACTIONS(2784), + [anon_sym_ATimport] = ACTIONS(2786), + [aux_sym_preproc_undef_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(2784), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2784), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2784), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2784), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2784), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2784), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2784), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2784), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2784), + [anon_sym_NS_AVAILABLE] = ACTIONS(2784), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2784), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_API_AVAILABLE] = ACTIONS(2784), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_API_DEPRECATED] = ACTIONS(2784), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2784), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2784), + [anon_sym___deprecated_msg] = ACTIONS(2784), + [anon_sym___deprecated_enum_msg] = ACTIONS(2784), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2784), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2784), + [anon_sym_ATprotocol] = ACTIONS(2786), + [anon_sym_ATinterface] = ACTIONS(2786), + [anon_sym_ATimplementation] = ACTIONS(2786), + [anon_sym_ATcompatibility_alias] = ACTIONS(2786), + [anon_sym_ATtry] = ACTIONS(2786), + [anon_sym___try] = ACTIONS(2784), + [anon_sym_ATthrow] = ACTIONS(2786), + [anon_sym_ATselector] = ACTIONS(2786), + [anon_sym_ATavailable] = ACTIONS(2786), + [anon_sym___builtin_available] = ACTIONS(2784), + [anon_sym_va_arg] = ACTIONS(2784), + [anon_sym_ATencode] = ACTIONS(2786), + [anon_sym_ATsynchronized] = ACTIONS(2786), + [anon_sym_BOOL] = ACTIONS(2784), + [anon_sym_IMP] = ACTIONS(2784), + [anon_sym_SEL] = ACTIONS(2784), + [anon_sym_Class] = ACTIONS(2784), + [anon_sym_id] = ACTIONS(2784), + }, + [913] = { + [sym_identifier] = ACTIONS(2788), + [aux_sym_preproc_include_token1] = ACTIONS(2788), + [aux_sym_preproc_include_token2] = ACTIONS(2788), + [aux_sym_preproc_def_token1] = ACTIONS(2788), + [aux_sym_preproc_if_token1] = ACTIONS(2788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2788), + [sym_preproc_directive] = ACTIONS(2788), + [anon_sym_LPAREN2] = ACTIONS(2790), + [anon_sym_BANG] = ACTIONS(2790), + [anon_sym_TILDE] = ACTIONS(2790), + [anon_sym_DASH] = ACTIONS(2788), + [anon_sym_PLUS] = ACTIONS(2788), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_CARET] = ACTIONS(2790), + [anon_sym_AMP] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym___extension__] = ACTIONS(2788), + [anon_sym_typedef] = ACTIONS(2788), + [anon_sym_extern] = ACTIONS(2788), + [anon_sym___attribute__] = ACTIONS(2788), + [anon_sym___attribute] = ACTIONS(2788), + [anon_sym_noreturn] = ACTIONS(2788), + [anon_sym_LBRACK] = ACTIONS(2790), + [anon_sym___declspec] = ACTIONS(2788), + [anon_sym___cdecl] = ACTIONS(2788), + [anon_sym___clrcall] = ACTIONS(2788), + [anon_sym___stdcall] = ACTIONS(2788), + [anon_sym___fastcall] = ACTIONS(2788), + [anon_sym___thiscall] = ACTIONS(2788), + [anon_sym___vectorcall] = ACTIONS(2788), + [anon_sym_LBRACE] = ACTIONS(2790), + [anon_sym_RBRACE] = ACTIONS(2790), + [anon_sym_signed] = ACTIONS(2788), + [anon_sym_unsigned] = ACTIONS(2788), + [anon_sym_long] = ACTIONS(2788), + [anon_sym_short] = ACTIONS(2788), + [anon_sym_static] = ACTIONS(2788), + [anon_sym_ATautoreleasepool] = ACTIONS(2790), + [anon_sym_auto] = ACTIONS(2788), + [anon_sym_register] = ACTIONS(2788), + [anon_sym_inline] = ACTIONS(2788), + [anon_sym___inline] = ACTIONS(2788), + [anon_sym___inline__] = ACTIONS(2788), + [anon_sym___forceinline] = ACTIONS(2788), + [anon_sym_thread_local] = ACTIONS(2788), + [anon_sym___thread] = ACTIONS(2788), + [anon_sym_CG_EXTERN] = ACTIONS(2788), + [anon_sym_CG_INLINE] = ACTIONS(2788), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2788), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2788), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2788), + [anon_sym_IBOutlet] = ACTIONS(2788), + [anon_sym_IBInspectable] = ACTIONS(2788), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2788), + [anon_sym_NS_INLINE] = ACTIONS(2788), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2788), + [anon_sym_OBJC_EXPORT] = ACTIONS(2788), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2788), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2788), + [anon_sym_const] = ACTIONS(2788), + [anon_sym_constexpr] = ACTIONS(2788), + [anon_sym_volatile] = ACTIONS(2788), + [anon_sym_restrict] = ACTIONS(2788), + [anon_sym___restrict__] = ACTIONS(2788), + [anon_sym__Atomic] = ACTIONS(2788), + [anon_sym__Noreturn] = ACTIONS(2788), + [anon_sym__Nonnull] = ACTIONS(2788), + [anon_sym_nullable] = ACTIONS(2788), + [anon_sym__Complex] = ACTIONS(2788), + [anon_sym__Nullable] = ACTIONS(2788), + [anon_sym__Nullable_result] = ACTIONS(2788), + [anon_sym__Null_unspecified] = ACTIONS(2788), + [anon_sym___autoreleasing] = ACTIONS(2788), + [anon_sym___block] = ACTIONS(2788), + [anon_sym___bridge] = ACTIONS(2788), + [anon_sym___bridge_retained] = ACTIONS(2788), + [anon_sym___bridge_transfer] = ACTIONS(2788), + [anon_sym___complex] = ACTIONS(2788), + [anon_sym___const] = ACTIONS(2788), + [anon_sym___imag] = ACTIONS(2788), + [anon_sym___kindof] = ACTIONS(2788), + [anon_sym___nonnull] = ACTIONS(2788), + [anon_sym___nullable] = ACTIONS(2788), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2788), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2788), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2788), + [anon_sym___real] = ACTIONS(2788), + [anon_sym___strong] = ACTIONS(2788), + [anon_sym___unsafe_unretained] = ACTIONS(2788), + [anon_sym___unused] = ACTIONS(2788), + [anon_sym___weak] = ACTIONS(2788), + [anon_sym_alignas] = ACTIONS(2788), + [anon_sym__Alignas] = ACTIONS(2788), + [sym_primitive_type] = ACTIONS(2788), + [anon_sym_enum] = ACTIONS(2788), + [anon_sym_struct] = ACTIONS(2788), + [anon_sym_union] = ACTIONS(2788), + [anon_sym_if] = ACTIONS(2788), + [anon_sym_switch] = ACTIONS(2788), + [anon_sym_case] = ACTIONS(2788), + [anon_sym_default] = ACTIONS(2788), + [anon_sym_while] = ACTIONS(2788), + [anon_sym_do] = ACTIONS(2788), + [anon_sym_for] = ACTIONS(2788), + [anon_sym_in] = ACTIONS(2788), + [anon_sym_return] = ACTIONS(2788), + [anon_sym_break] = ACTIONS(2788), + [anon_sym_continue] = ACTIONS(2788), + [anon_sym_goto] = ACTIONS(2788), + [anon_sym_DASH_DASH] = ACTIONS(2790), + [anon_sym_PLUS_PLUS] = ACTIONS(2790), + [anon_sym_sizeof] = ACTIONS(2788), + [anon_sym___alignof__] = ACTIONS(2788), + [anon_sym___alignof] = ACTIONS(2788), + [anon_sym__alignof] = ACTIONS(2788), + [anon_sym_alignof] = ACTIONS(2788), + [anon_sym__Alignof] = ACTIONS(2788), + [anon_sym_offsetof] = ACTIONS(2788), + [anon_sym__Generic] = ACTIONS(2788), + [anon_sym_asm] = ACTIONS(2788), + [anon_sym___asm__] = ACTIONS(2788), + [anon_sym___asm] = ACTIONS(2788), + [sym_number_literal] = ACTIONS(2790), + [anon_sym_L_SQUOTE] = ACTIONS(2790), + [anon_sym_u_SQUOTE] = ACTIONS(2790), + [anon_sym_U_SQUOTE] = ACTIONS(2790), + [anon_sym_u8_SQUOTE] = ACTIONS(2790), + [anon_sym_SQUOTE] = ACTIONS(2790), + [anon_sym_AT] = ACTIONS(2788), + [anon_sym_DQUOTE] = ACTIONS(2790), + [anon_sym_L_DQUOTE] = ACTIONS(2790), + [anon_sym_u_DQUOTE] = ACTIONS(2790), + [anon_sym_U_DQUOTE] = ACTIONS(2790), + [anon_sym_u8_DQUOTE] = ACTIONS(2790), + [sym_true] = ACTIONS(2788), + [sym_false] = ACTIONS(2788), + [anon_sym_NULL] = ACTIONS(2788), + [anon_sym_nullptr] = ACTIONS(2788), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2788), + [anon_sym___typeof] = ACTIONS(2788), + [anon_sym_typeof] = ACTIONS(2788), + [anon_sym_ATimport] = ACTIONS(2790), + [aux_sym_preproc_undef_token1] = ACTIONS(2788), + [anon_sym_POUND] = ACTIONS(2788), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2788), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2788), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2788), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2788), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2788), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2788), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2788), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2788), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2788), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2788), + [anon_sym_NS_AVAILABLE] = ACTIONS(2788), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2788), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2788), + [anon_sym_API_AVAILABLE] = ACTIONS(2788), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2788), + [anon_sym_API_DEPRECATED] = ACTIONS(2788), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2788), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2788), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2788), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2788), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2788), + [anon_sym___deprecated_msg] = ACTIONS(2788), + [anon_sym___deprecated_enum_msg] = ACTIONS(2788), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2788), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2788), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2788), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2788), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2788), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2788), + [anon_sym_ATprotocol] = ACTIONS(2790), + [anon_sym_ATinterface] = ACTIONS(2790), + [anon_sym_ATimplementation] = ACTIONS(2790), + [anon_sym_ATcompatibility_alias] = ACTIONS(2790), + [anon_sym_ATtry] = ACTIONS(2790), + [anon_sym___try] = ACTIONS(2788), + [anon_sym_ATthrow] = ACTIONS(2790), + [anon_sym_ATselector] = ACTIONS(2790), + [anon_sym_ATavailable] = ACTIONS(2790), + [anon_sym___builtin_available] = ACTIONS(2788), + [anon_sym_va_arg] = ACTIONS(2788), + [anon_sym_ATencode] = ACTIONS(2790), + [anon_sym_ATsynchronized] = ACTIONS(2790), + [anon_sym_BOOL] = ACTIONS(2788), + [anon_sym_IMP] = ACTIONS(2788), + [anon_sym_SEL] = ACTIONS(2788), + [anon_sym_Class] = ACTIONS(2788), + [anon_sym_id] = ACTIONS(2788), + }, + [914] = { + [sym_identifier] = ACTIONS(2792), + [aux_sym_preproc_include_token1] = ACTIONS(2792), + [aux_sym_preproc_include_token2] = ACTIONS(2792), + [aux_sym_preproc_def_token1] = ACTIONS(2792), + [aux_sym_preproc_if_token1] = ACTIONS(2792), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2792), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2792), + [sym_preproc_directive] = ACTIONS(2792), + [anon_sym_LPAREN2] = ACTIONS(2794), + [anon_sym_BANG] = ACTIONS(2794), + [anon_sym_TILDE] = ACTIONS(2794), + [anon_sym_DASH] = ACTIONS(2792), + [anon_sym_PLUS] = ACTIONS(2792), + [anon_sym_STAR] = ACTIONS(2794), + [anon_sym_CARET] = ACTIONS(2794), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym___extension__] = ACTIONS(2792), + [anon_sym_typedef] = ACTIONS(2792), + [anon_sym_extern] = ACTIONS(2792), + [anon_sym___attribute__] = ACTIONS(2792), + [anon_sym___attribute] = ACTIONS(2792), + [anon_sym_noreturn] = ACTIONS(2792), + [anon_sym_LBRACK] = ACTIONS(2794), + [anon_sym___declspec] = ACTIONS(2792), + [anon_sym___cdecl] = ACTIONS(2792), + [anon_sym___clrcall] = ACTIONS(2792), + [anon_sym___stdcall] = ACTIONS(2792), + [anon_sym___fastcall] = ACTIONS(2792), + [anon_sym___thiscall] = ACTIONS(2792), + [anon_sym___vectorcall] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_RBRACE] = ACTIONS(2794), + [anon_sym_signed] = ACTIONS(2792), + [anon_sym_unsigned] = ACTIONS(2792), + [anon_sym_long] = ACTIONS(2792), + [anon_sym_short] = ACTIONS(2792), + [anon_sym_static] = ACTIONS(2792), + [anon_sym_ATautoreleasepool] = ACTIONS(2794), + [anon_sym_auto] = ACTIONS(2792), + [anon_sym_register] = ACTIONS(2792), + [anon_sym_inline] = ACTIONS(2792), + [anon_sym___inline] = ACTIONS(2792), + [anon_sym___inline__] = ACTIONS(2792), + [anon_sym___forceinline] = ACTIONS(2792), + [anon_sym_thread_local] = ACTIONS(2792), + [anon_sym___thread] = ACTIONS(2792), + [anon_sym_CG_EXTERN] = ACTIONS(2792), + [anon_sym_CG_INLINE] = ACTIONS(2792), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2792), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2792), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2792), + [anon_sym_IBOutlet] = ACTIONS(2792), + [anon_sym_IBInspectable] = ACTIONS(2792), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2792), + [anon_sym_NS_INLINE] = ACTIONS(2792), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2792), + [anon_sym_OBJC_EXPORT] = ACTIONS(2792), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2792), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2792), + [anon_sym_const] = ACTIONS(2792), + [anon_sym_constexpr] = ACTIONS(2792), + [anon_sym_volatile] = ACTIONS(2792), + [anon_sym_restrict] = ACTIONS(2792), + [anon_sym___restrict__] = ACTIONS(2792), + [anon_sym__Atomic] = ACTIONS(2792), + [anon_sym__Noreturn] = ACTIONS(2792), + [anon_sym__Nonnull] = ACTIONS(2792), + [anon_sym_nullable] = ACTIONS(2792), + [anon_sym__Complex] = ACTIONS(2792), + [anon_sym__Nullable] = ACTIONS(2792), + [anon_sym__Nullable_result] = ACTIONS(2792), + [anon_sym__Null_unspecified] = ACTIONS(2792), + [anon_sym___autoreleasing] = ACTIONS(2792), + [anon_sym___block] = ACTIONS(2792), + [anon_sym___bridge] = ACTIONS(2792), + [anon_sym___bridge_retained] = ACTIONS(2792), + [anon_sym___bridge_transfer] = ACTIONS(2792), + [anon_sym___complex] = ACTIONS(2792), + [anon_sym___const] = ACTIONS(2792), + [anon_sym___imag] = ACTIONS(2792), + [anon_sym___kindof] = ACTIONS(2792), + [anon_sym___nonnull] = ACTIONS(2792), + [anon_sym___nullable] = ACTIONS(2792), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2792), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2792), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2792), + [anon_sym___real] = ACTIONS(2792), + [anon_sym___strong] = ACTIONS(2792), + [anon_sym___unsafe_unretained] = ACTIONS(2792), + [anon_sym___unused] = ACTIONS(2792), + [anon_sym___weak] = ACTIONS(2792), + [anon_sym_alignas] = ACTIONS(2792), + [anon_sym__Alignas] = ACTIONS(2792), + [sym_primitive_type] = ACTIONS(2792), + [anon_sym_enum] = ACTIONS(2792), + [anon_sym_struct] = ACTIONS(2792), + [anon_sym_union] = ACTIONS(2792), + [anon_sym_if] = ACTIONS(2792), + [anon_sym_switch] = ACTIONS(2792), + [anon_sym_case] = ACTIONS(2792), + [anon_sym_default] = ACTIONS(2792), + [anon_sym_while] = ACTIONS(2792), + [anon_sym_do] = ACTIONS(2792), + [anon_sym_for] = ACTIONS(2792), + [anon_sym_in] = ACTIONS(2792), + [anon_sym_return] = ACTIONS(2792), + [anon_sym_break] = ACTIONS(2792), + [anon_sym_continue] = ACTIONS(2792), + [anon_sym_goto] = ACTIONS(2792), + [anon_sym_DASH_DASH] = ACTIONS(2794), + [anon_sym_PLUS_PLUS] = ACTIONS(2794), + [anon_sym_sizeof] = ACTIONS(2792), + [anon_sym___alignof__] = ACTIONS(2792), + [anon_sym___alignof] = ACTIONS(2792), + [anon_sym__alignof] = ACTIONS(2792), + [anon_sym_alignof] = ACTIONS(2792), + [anon_sym__Alignof] = ACTIONS(2792), + [anon_sym_offsetof] = ACTIONS(2792), + [anon_sym__Generic] = ACTIONS(2792), + [anon_sym_asm] = ACTIONS(2792), + [anon_sym___asm__] = ACTIONS(2792), + [anon_sym___asm] = ACTIONS(2792), + [sym_number_literal] = ACTIONS(2794), + [anon_sym_L_SQUOTE] = ACTIONS(2794), + [anon_sym_u_SQUOTE] = ACTIONS(2794), + [anon_sym_U_SQUOTE] = ACTIONS(2794), + [anon_sym_u8_SQUOTE] = ACTIONS(2794), + [anon_sym_SQUOTE] = ACTIONS(2794), + [anon_sym_AT] = ACTIONS(2792), + [anon_sym_DQUOTE] = ACTIONS(2794), + [anon_sym_L_DQUOTE] = ACTIONS(2794), + [anon_sym_u_DQUOTE] = ACTIONS(2794), + [anon_sym_U_DQUOTE] = ACTIONS(2794), + [anon_sym_u8_DQUOTE] = ACTIONS(2794), + [sym_true] = ACTIONS(2792), + [sym_false] = ACTIONS(2792), + [anon_sym_NULL] = ACTIONS(2792), + [anon_sym_nullptr] = ACTIONS(2792), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2792), + [anon_sym___typeof] = ACTIONS(2792), + [anon_sym_typeof] = ACTIONS(2792), + [anon_sym_ATimport] = ACTIONS(2794), + [aux_sym_preproc_undef_token1] = ACTIONS(2792), + [anon_sym_POUND] = ACTIONS(2792), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2792), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2792), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2792), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2792), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2792), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2792), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2792), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2792), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2792), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2792), + [anon_sym_NS_AVAILABLE] = ACTIONS(2792), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2792), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2792), + [anon_sym_API_AVAILABLE] = ACTIONS(2792), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2792), + [anon_sym_API_DEPRECATED] = ACTIONS(2792), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2792), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2792), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2792), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2792), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2792), + [anon_sym___deprecated_msg] = ACTIONS(2792), + [anon_sym___deprecated_enum_msg] = ACTIONS(2792), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2792), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2792), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2792), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2792), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2792), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2792), + [anon_sym_ATprotocol] = ACTIONS(2794), + [anon_sym_ATinterface] = ACTIONS(2794), + [anon_sym_ATimplementation] = ACTIONS(2794), + [anon_sym_ATcompatibility_alias] = ACTIONS(2794), + [anon_sym_ATtry] = ACTIONS(2794), + [anon_sym___try] = ACTIONS(2792), + [anon_sym_ATthrow] = ACTIONS(2794), + [anon_sym_ATselector] = ACTIONS(2794), + [anon_sym_ATavailable] = ACTIONS(2794), + [anon_sym___builtin_available] = ACTIONS(2792), + [anon_sym_va_arg] = ACTIONS(2792), + [anon_sym_ATencode] = ACTIONS(2794), + [anon_sym_ATsynchronized] = ACTIONS(2794), + [anon_sym_BOOL] = ACTIONS(2792), + [anon_sym_IMP] = ACTIONS(2792), + [anon_sym_SEL] = ACTIONS(2792), + [anon_sym_Class] = ACTIONS(2792), + [anon_sym_id] = ACTIONS(2792), + }, + [915] = { + [sym_identifier] = ACTIONS(2676), + [aux_sym_preproc_include_token1] = ACTIONS(2676), + [aux_sym_preproc_include_token2] = ACTIONS(2676), + [aux_sym_preproc_def_token1] = ACTIONS(2676), + [aux_sym_preproc_if_token1] = ACTIONS(2676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2676), + [sym_preproc_directive] = ACTIONS(2676), + [anon_sym_LPAREN2] = ACTIONS(2678), + [anon_sym_BANG] = ACTIONS(2678), + [anon_sym_TILDE] = ACTIONS(2678), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_STAR] = ACTIONS(2678), + [anon_sym_CARET] = ACTIONS(2678), + [anon_sym_AMP] = ACTIONS(2678), + [anon_sym_SEMI] = ACTIONS(2678), + [anon_sym___extension__] = ACTIONS(2676), + [anon_sym_typedef] = ACTIONS(2676), + [anon_sym_extern] = ACTIONS(2676), + [anon_sym___attribute__] = ACTIONS(2676), + [anon_sym___attribute] = ACTIONS(2676), + [anon_sym_noreturn] = ACTIONS(2676), + [anon_sym_LBRACK] = ACTIONS(2678), + [anon_sym___declspec] = ACTIONS(2676), + [anon_sym___cdecl] = ACTIONS(2676), + [anon_sym___clrcall] = ACTIONS(2676), + [anon_sym___stdcall] = ACTIONS(2676), + [anon_sym___fastcall] = ACTIONS(2676), + [anon_sym___thiscall] = ACTIONS(2676), + [anon_sym___vectorcall] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_RBRACE] = ACTIONS(2678), + [anon_sym_signed] = ACTIONS(2676), + [anon_sym_unsigned] = ACTIONS(2676), + [anon_sym_long] = ACTIONS(2676), + [anon_sym_short] = ACTIONS(2676), + [anon_sym_static] = ACTIONS(2676), + [anon_sym_ATautoreleasepool] = ACTIONS(2678), + [anon_sym_auto] = ACTIONS(2676), + [anon_sym_register] = ACTIONS(2676), + [anon_sym_inline] = ACTIONS(2676), + [anon_sym___inline] = ACTIONS(2676), + [anon_sym___inline__] = ACTIONS(2676), + [anon_sym___forceinline] = ACTIONS(2676), + [anon_sym_thread_local] = ACTIONS(2676), + [anon_sym___thread] = ACTIONS(2676), + [anon_sym_CG_EXTERN] = ACTIONS(2676), + [anon_sym_CG_INLINE] = ACTIONS(2676), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2676), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2676), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2676), + [anon_sym_IBOutlet] = ACTIONS(2676), + [anon_sym_IBInspectable] = ACTIONS(2676), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2676), + [anon_sym_NS_INLINE] = ACTIONS(2676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2676), + [anon_sym_OBJC_EXPORT] = ACTIONS(2676), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2676), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2676), + [anon_sym_const] = ACTIONS(2676), + [anon_sym_constexpr] = ACTIONS(2676), + [anon_sym_volatile] = ACTIONS(2676), + [anon_sym_restrict] = ACTIONS(2676), + [anon_sym___restrict__] = ACTIONS(2676), + [anon_sym__Atomic] = ACTIONS(2676), + [anon_sym__Noreturn] = ACTIONS(2676), + [anon_sym__Nonnull] = ACTIONS(2676), + [anon_sym_nullable] = ACTIONS(2676), + [anon_sym__Complex] = ACTIONS(2676), + [anon_sym__Nullable] = ACTIONS(2676), + [anon_sym__Nullable_result] = ACTIONS(2676), + [anon_sym__Null_unspecified] = ACTIONS(2676), + [anon_sym___autoreleasing] = ACTIONS(2676), + [anon_sym___block] = ACTIONS(2676), + [anon_sym___bridge] = ACTIONS(2676), + [anon_sym___bridge_retained] = ACTIONS(2676), + [anon_sym___bridge_transfer] = ACTIONS(2676), + [anon_sym___complex] = ACTIONS(2676), + [anon_sym___const] = ACTIONS(2676), + [anon_sym___imag] = ACTIONS(2676), + [anon_sym___kindof] = ACTIONS(2676), + [anon_sym___nonnull] = ACTIONS(2676), + [anon_sym___nullable] = ACTIONS(2676), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2676), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2676), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2676), + [anon_sym___real] = ACTIONS(2676), + [anon_sym___strong] = ACTIONS(2676), + [anon_sym___unsafe_unretained] = ACTIONS(2676), + [anon_sym___unused] = ACTIONS(2676), + [anon_sym___weak] = ACTIONS(2676), + [anon_sym_alignas] = ACTIONS(2676), + [anon_sym__Alignas] = ACTIONS(2676), + [sym_primitive_type] = ACTIONS(2676), + [anon_sym_enum] = ACTIONS(2676), + [anon_sym_struct] = ACTIONS(2676), + [anon_sym_union] = ACTIONS(2676), + [anon_sym_if] = ACTIONS(2676), + [anon_sym_switch] = ACTIONS(2676), + [anon_sym_case] = ACTIONS(2676), + [anon_sym_default] = ACTIONS(2676), + [anon_sym_while] = ACTIONS(2676), + [anon_sym_do] = ACTIONS(2676), + [anon_sym_for] = ACTIONS(2676), + [anon_sym_in] = ACTIONS(2676), + [anon_sym_return] = ACTIONS(2676), + [anon_sym_break] = ACTIONS(2676), + [anon_sym_continue] = ACTIONS(2676), + [anon_sym_goto] = ACTIONS(2676), + [anon_sym_DASH_DASH] = ACTIONS(2678), + [anon_sym_PLUS_PLUS] = ACTIONS(2678), + [anon_sym_sizeof] = ACTIONS(2676), + [anon_sym___alignof__] = ACTIONS(2676), + [anon_sym___alignof] = ACTIONS(2676), + [anon_sym__alignof] = ACTIONS(2676), + [anon_sym_alignof] = ACTIONS(2676), + [anon_sym__Alignof] = ACTIONS(2676), + [anon_sym_offsetof] = ACTIONS(2676), + [anon_sym__Generic] = ACTIONS(2676), + [anon_sym_asm] = ACTIONS(2676), + [anon_sym___asm__] = ACTIONS(2676), + [anon_sym___asm] = ACTIONS(2676), + [sym_number_literal] = ACTIONS(2678), + [anon_sym_L_SQUOTE] = ACTIONS(2678), + [anon_sym_u_SQUOTE] = ACTIONS(2678), + [anon_sym_U_SQUOTE] = ACTIONS(2678), + [anon_sym_u8_SQUOTE] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2678), + [anon_sym_AT] = ACTIONS(2676), + [anon_sym_DQUOTE] = ACTIONS(2678), + [anon_sym_L_DQUOTE] = ACTIONS(2678), + [anon_sym_u_DQUOTE] = ACTIONS(2678), + [anon_sym_U_DQUOTE] = ACTIONS(2678), + [anon_sym_u8_DQUOTE] = ACTIONS(2678), + [sym_true] = ACTIONS(2676), + [sym_false] = ACTIONS(2676), + [anon_sym_NULL] = ACTIONS(2676), + [anon_sym_nullptr] = ACTIONS(2676), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2676), + [anon_sym___typeof] = ACTIONS(2676), + [anon_sym_typeof] = ACTIONS(2676), + [anon_sym_ATimport] = ACTIONS(2678), + [aux_sym_preproc_undef_token1] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(2676), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2676), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2676), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2676), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2676), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2676), + [anon_sym_NS_AVAILABLE] = ACTIONS(2676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2676), + [anon_sym_API_AVAILABLE] = ACTIONS(2676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2676), + [anon_sym_API_DEPRECATED] = ACTIONS(2676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2676), + [anon_sym___deprecated_msg] = ACTIONS(2676), + [anon_sym___deprecated_enum_msg] = ACTIONS(2676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2676), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2676), + [anon_sym_ATprotocol] = ACTIONS(2678), + [anon_sym_ATinterface] = ACTIONS(2678), + [anon_sym_ATimplementation] = ACTIONS(2678), + [anon_sym_ATcompatibility_alias] = ACTIONS(2678), + [anon_sym_ATtry] = ACTIONS(2678), + [anon_sym___try] = ACTIONS(2676), + [anon_sym_ATthrow] = ACTIONS(2678), + [anon_sym_ATselector] = ACTIONS(2678), + [anon_sym_ATavailable] = ACTIONS(2678), + [anon_sym___builtin_available] = ACTIONS(2676), + [anon_sym_va_arg] = ACTIONS(2676), + [anon_sym_ATencode] = ACTIONS(2678), + [anon_sym_ATsynchronized] = ACTIONS(2678), + [anon_sym_BOOL] = ACTIONS(2676), + [anon_sym_IMP] = ACTIONS(2676), + [anon_sym_SEL] = ACTIONS(2676), + [anon_sym_Class] = ACTIONS(2676), + [anon_sym_id] = ACTIONS(2676), + }, + [916] = { + [sym_identifier] = ACTIONS(2586), + [aux_sym_preproc_include_token1] = ACTIONS(2586), + [aux_sym_preproc_include_token2] = ACTIONS(2586), + [aux_sym_preproc_def_token1] = ACTIONS(2586), + [aux_sym_preproc_if_token1] = ACTIONS(2586), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2586), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2586), + [sym_preproc_directive] = ACTIONS(2586), + [anon_sym_LPAREN2] = ACTIONS(2588), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2588), + [anon_sym_DASH] = ACTIONS(2586), + [anon_sym_PLUS] = ACTIONS(2586), + [anon_sym_STAR] = ACTIONS(2588), + [anon_sym_CARET] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2588), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym___extension__] = ACTIONS(2586), + [anon_sym_typedef] = ACTIONS(2586), + [anon_sym_extern] = ACTIONS(2586), + [anon_sym___attribute__] = ACTIONS(2586), + [anon_sym___attribute] = ACTIONS(2586), + [anon_sym_noreturn] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(2588), + [anon_sym___declspec] = ACTIONS(2586), + [anon_sym___cdecl] = ACTIONS(2586), + [anon_sym___clrcall] = ACTIONS(2586), + [anon_sym___stdcall] = ACTIONS(2586), + [anon_sym___fastcall] = ACTIONS(2586), + [anon_sym___thiscall] = ACTIONS(2586), + [anon_sym___vectorcall] = ACTIONS(2586), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_RBRACE] = ACTIONS(2588), + [anon_sym_signed] = ACTIONS(2586), + [anon_sym_unsigned] = ACTIONS(2586), + [anon_sym_long] = ACTIONS(2586), + [anon_sym_short] = ACTIONS(2586), + [anon_sym_static] = ACTIONS(2586), + [anon_sym_ATautoreleasepool] = ACTIONS(2588), + [anon_sym_auto] = ACTIONS(2586), + [anon_sym_register] = ACTIONS(2586), + [anon_sym_inline] = ACTIONS(2586), + [anon_sym___inline] = ACTIONS(2586), + [anon_sym___inline__] = ACTIONS(2586), + [anon_sym___forceinline] = ACTIONS(2586), + [anon_sym_thread_local] = ACTIONS(2586), + [anon_sym___thread] = ACTIONS(2586), + [anon_sym_CG_EXTERN] = ACTIONS(2586), + [anon_sym_CG_INLINE] = ACTIONS(2586), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2586), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2586), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2586), + [anon_sym_IBOutlet] = ACTIONS(2586), + [anon_sym_IBInspectable] = ACTIONS(2586), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2586), + [anon_sym_NS_INLINE] = ACTIONS(2586), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2586), + [anon_sym_OBJC_EXPORT] = ACTIONS(2586), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2586), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2586), + [anon_sym_const] = ACTIONS(2586), + [anon_sym_constexpr] = ACTIONS(2586), + [anon_sym_volatile] = ACTIONS(2586), + [anon_sym_restrict] = ACTIONS(2586), + [anon_sym___restrict__] = ACTIONS(2586), + [anon_sym__Atomic] = ACTIONS(2586), + [anon_sym__Noreturn] = ACTIONS(2586), + [anon_sym__Nonnull] = ACTIONS(2586), + [anon_sym_nullable] = ACTIONS(2586), + [anon_sym__Complex] = ACTIONS(2586), + [anon_sym__Nullable] = ACTIONS(2586), + [anon_sym__Nullable_result] = ACTIONS(2586), + [anon_sym__Null_unspecified] = ACTIONS(2586), + [anon_sym___autoreleasing] = ACTIONS(2586), + [anon_sym___block] = ACTIONS(2586), + [anon_sym___bridge] = ACTIONS(2586), + [anon_sym___bridge_retained] = ACTIONS(2586), + [anon_sym___bridge_transfer] = ACTIONS(2586), + [anon_sym___complex] = ACTIONS(2586), + [anon_sym___const] = ACTIONS(2586), + [anon_sym___imag] = ACTIONS(2586), + [anon_sym___kindof] = ACTIONS(2586), + [anon_sym___nonnull] = ACTIONS(2586), + [anon_sym___nullable] = ACTIONS(2586), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2586), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2586), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2586), + [anon_sym___real] = ACTIONS(2586), + [anon_sym___strong] = ACTIONS(2586), + [anon_sym___unsafe_unretained] = ACTIONS(2586), + [anon_sym___unused] = ACTIONS(2586), + [anon_sym___weak] = ACTIONS(2586), + [anon_sym_alignas] = ACTIONS(2586), + [anon_sym__Alignas] = ACTIONS(2586), + [sym_primitive_type] = ACTIONS(2586), + [anon_sym_enum] = ACTIONS(2586), + [anon_sym_struct] = ACTIONS(2586), + [anon_sym_union] = ACTIONS(2586), + [anon_sym_if] = ACTIONS(2586), + [anon_sym_switch] = ACTIONS(2586), + [anon_sym_case] = ACTIONS(2586), + [anon_sym_default] = ACTIONS(2586), + [anon_sym_while] = ACTIONS(2586), + [anon_sym_do] = ACTIONS(2586), + [anon_sym_for] = ACTIONS(2586), + [anon_sym_in] = ACTIONS(2586), + [anon_sym_return] = ACTIONS(2586), + [anon_sym_break] = ACTIONS(2586), + [anon_sym_continue] = ACTIONS(2586), + [anon_sym_goto] = ACTIONS(2586), + [anon_sym_DASH_DASH] = ACTIONS(2588), + [anon_sym_PLUS_PLUS] = ACTIONS(2588), + [anon_sym_sizeof] = ACTIONS(2586), + [anon_sym___alignof__] = ACTIONS(2586), + [anon_sym___alignof] = ACTIONS(2586), + [anon_sym__alignof] = ACTIONS(2586), + [anon_sym_alignof] = ACTIONS(2586), + [anon_sym__Alignof] = ACTIONS(2586), + [anon_sym_offsetof] = ACTIONS(2586), + [anon_sym__Generic] = ACTIONS(2586), + [anon_sym_asm] = ACTIONS(2586), + [anon_sym___asm__] = ACTIONS(2586), + [anon_sym___asm] = ACTIONS(2586), + [sym_number_literal] = ACTIONS(2588), + [anon_sym_L_SQUOTE] = ACTIONS(2588), + [anon_sym_u_SQUOTE] = ACTIONS(2588), + [anon_sym_U_SQUOTE] = ACTIONS(2588), + [anon_sym_u8_SQUOTE] = ACTIONS(2588), + [anon_sym_SQUOTE] = ACTIONS(2588), + [anon_sym_AT] = ACTIONS(2586), + [anon_sym_DQUOTE] = ACTIONS(2588), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2586), + [sym_false] = ACTIONS(2586), + [anon_sym_NULL] = ACTIONS(2586), + [anon_sym_nullptr] = ACTIONS(2586), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2586), + [anon_sym___typeof] = ACTIONS(2586), + [anon_sym_typeof] = ACTIONS(2586), + [anon_sym_ATimport] = ACTIONS(2588), + [aux_sym_preproc_undef_token1] = ACTIONS(2586), + [anon_sym_POUND] = ACTIONS(2586), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2586), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2586), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2586), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2586), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2586), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2586), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2586), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2586), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2586), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2586), + [anon_sym_NS_AVAILABLE] = ACTIONS(2586), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2586), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2586), + [anon_sym_API_AVAILABLE] = ACTIONS(2586), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2586), + [anon_sym_API_DEPRECATED] = ACTIONS(2586), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2586), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2586), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2586), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2586), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2586), + [anon_sym___deprecated_msg] = ACTIONS(2586), + [anon_sym___deprecated_enum_msg] = ACTIONS(2586), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2586), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2586), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2586), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2586), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2586), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2586), + [anon_sym_ATprotocol] = ACTIONS(2588), + [anon_sym_ATinterface] = ACTIONS(2588), + [anon_sym_ATimplementation] = ACTIONS(2588), + [anon_sym_ATcompatibility_alias] = ACTIONS(2588), + [anon_sym_ATtry] = ACTIONS(2588), + [anon_sym___try] = ACTIONS(2586), + [anon_sym_ATthrow] = ACTIONS(2588), + [anon_sym_ATselector] = ACTIONS(2588), + [anon_sym_ATavailable] = ACTIONS(2588), + [anon_sym___builtin_available] = ACTIONS(2586), + [anon_sym_va_arg] = ACTIONS(2586), + [anon_sym_ATencode] = ACTIONS(2588), + [anon_sym_ATsynchronized] = ACTIONS(2588), + [anon_sym_BOOL] = ACTIONS(2586), + [anon_sym_IMP] = ACTIONS(2586), + [anon_sym_SEL] = ACTIONS(2586), + [anon_sym_Class] = ACTIONS(2586), + [anon_sym_id] = ACTIONS(2586), + }, + [917] = { + [sym_ms_declspec_modifier] = STATE(6589), + [sym_expression] = STATE(4402), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_typedef] = ACTIONS(2920), + [anon_sym_extern] = ACTIONS(2922), + [anon_sym___attribute__] = ACTIONS(2922), + [anon_sym___attribute] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_auto] = ACTIONS(2922), + [anon_sym_register] = ACTIONS(2922), + [anon_sym_inline] = ACTIONS(2922), + [anon_sym___inline] = ACTIONS(2922), + [anon_sym___inline__] = ACTIONS(2922), + [anon_sym___forceinline] = ACTIONS(2922), + [anon_sym_thread_local] = ACTIONS(2922), + [anon_sym___thread] = ACTIONS(2922), + [anon_sym_CG_EXTERN] = ACTIONS(2922), + [anon_sym_CG_INLINE] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2922), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2922), + [anon_sym_IBOutlet] = ACTIONS(2922), + [anon_sym_IBInspectable] = ACTIONS(2922), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2922), + [anon_sym_NS_INLINE] = ACTIONS(2922), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2922), + [anon_sym_OBJC_EXPORT] = ACTIONS(2922), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(203), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2926), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2922), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2922), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2922), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2922), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE] = ACTIONS(2922), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_API_AVAILABLE] = ACTIONS(2922), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_API_DEPRECATED] = ACTIONS(2922), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2922), + [anon_sym___deprecated_msg] = ACTIONS(2922), + [anon_sym___deprecated_enum_msg] = ACTIONS(2922), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2922), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2922), + [anon_sym_ATprotocol] = ACTIONS(2928), + [anon_sym_ATinterface] = ACTIONS(2928), + [anon_sym_ATimplementation] = ACTIONS(2928), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(203), + }, + [918] = { + [sym_ms_declspec_modifier] = STATE(6764), + [sym_expression] = STATE(4402), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_typedef] = ACTIONS(2930), + [anon_sym_extern] = ACTIONS(2922), + [anon_sym___attribute__] = ACTIONS(2922), + [anon_sym___attribute] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_auto] = ACTIONS(2922), + [anon_sym_register] = ACTIONS(2922), + [anon_sym_inline] = ACTIONS(2922), + [anon_sym___inline] = ACTIONS(2922), + [anon_sym___inline__] = ACTIONS(2922), + [anon_sym___forceinline] = ACTIONS(2922), + [anon_sym_thread_local] = ACTIONS(2922), + [anon_sym___thread] = ACTIONS(2922), + [anon_sym_CG_EXTERN] = ACTIONS(2922), + [anon_sym_CG_INLINE] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2922), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2922), + [anon_sym_IBOutlet] = ACTIONS(2922), + [anon_sym_IBInspectable] = ACTIONS(2922), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2922), + [anon_sym_NS_INLINE] = ACTIONS(2922), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2922), + [anon_sym_OBJC_EXPORT] = ACTIONS(2922), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(203), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2926), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2922), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2922), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2922), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2922), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE] = ACTIONS(2922), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_API_AVAILABLE] = ACTIONS(2922), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_API_DEPRECATED] = ACTIONS(2922), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2922), + [anon_sym___deprecated_msg] = ACTIONS(2922), + [anon_sym___deprecated_enum_msg] = ACTIONS(2922), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2922), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2922), + [anon_sym_ATprotocol] = ACTIONS(2928), + [anon_sym_ATinterface] = ACTIONS(2928), + [anon_sym_ATimplementation] = ACTIONS(2928), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(203), + }, + [919] = { + [ts_builtin_sym_end] = ACTIONS(2352), + [sym_identifier] = ACTIONS(2350), + [aux_sym_preproc_include_token1] = ACTIONS(2350), + [aux_sym_preproc_include_token2] = ACTIONS(2350), + [aux_sym_preproc_def_token1] = ACTIONS(2350), + [anon_sym_COMMA] = ACTIONS(2352), + [anon_sym_RPAREN] = ACTIONS(2352), + [aux_sym_preproc_if_token1] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2350), + [sym_preproc_directive] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(2352), + [anon_sym_BANG] = ACTIONS(2352), + [anon_sym_TILDE] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2350), + [anon_sym_STAR] = ACTIONS(2352), + [anon_sym_CARET] = ACTIONS(2352), + [anon_sym_AMP] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2352), + [anon_sym___extension__] = ACTIONS(2350), + [anon_sym_typedef] = ACTIONS(2350), + [anon_sym_extern] = ACTIONS(2350), + [anon_sym___attribute__] = ACTIONS(2350), + [anon_sym___attribute] = ACTIONS(2350), + [anon_sym_noreturn] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2352), + [anon_sym___declspec] = ACTIONS(2350), + [anon_sym___cdecl] = ACTIONS(2350), + [anon_sym___clrcall] = ACTIONS(2350), + [anon_sym___stdcall] = ACTIONS(2350), + [anon_sym___fastcall] = ACTIONS(2350), + [anon_sym___thiscall] = ACTIONS(2350), + [anon_sym___vectorcall] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2352), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(2350), + [anon_sym_ATautoreleasepool] = ACTIONS(2352), + [anon_sym_auto] = ACTIONS(2350), + [anon_sym_register] = ACTIONS(2350), + [anon_sym_inline] = ACTIONS(2350), + [anon_sym___inline] = ACTIONS(2350), + [anon_sym___inline__] = ACTIONS(2350), + [anon_sym___forceinline] = ACTIONS(2350), + [anon_sym_thread_local] = ACTIONS(2350), + [anon_sym___thread] = ACTIONS(2350), + [anon_sym_CG_EXTERN] = ACTIONS(2350), + [anon_sym_CG_INLINE] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2350), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2350), + [anon_sym_IBOutlet] = ACTIONS(2350), + [anon_sym_IBInspectable] = ACTIONS(2350), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2350), + [anon_sym_NS_INLINE] = ACTIONS(2350), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2350), + [anon_sym_OBJC_EXPORT] = ACTIONS(2350), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2350), + [anon_sym_const] = ACTIONS(2350), + [anon_sym_constexpr] = ACTIONS(2350), + [anon_sym_volatile] = ACTIONS(2350), + [anon_sym_restrict] = ACTIONS(2350), + [anon_sym___restrict__] = ACTIONS(2350), + [anon_sym__Atomic] = ACTIONS(2350), + [anon_sym__Noreturn] = ACTIONS(2350), + [anon_sym__Nonnull] = ACTIONS(2350), + [anon_sym_nullable] = ACTIONS(2350), + [anon_sym__Complex] = ACTIONS(2350), + [anon_sym__Nullable] = ACTIONS(2350), + [anon_sym__Nullable_result] = ACTIONS(2350), + [anon_sym__Null_unspecified] = ACTIONS(2350), + [anon_sym___autoreleasing] = ACTIONS(2350), + [anon_sym___block] = ACTIONS(2350), + [anon_sym___bridge] = ACTIONS(2350), + [anon_sym___bridge_retained] = ACTIONS(2350), + [anon_sym___bridge_transfer] = ACTIONS(2350), + [anon_sym___complex] = ACTIONS(2350), + [anon_sym___const] = ACTIONS(2350), + [anon_sym___imag] = ACTIONS(2350), + [anon_sym___kindof] = ACTIONS(2350), + [anon_sym___nonnull] = ACTIONS(2350), + [anon_sym___nullable] = ACTIONS(2350), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2350), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2350), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2350), + [anon_sym___real] = ACTIONS(2350), + [anon_sym___strong] = ACTIONS(2350), + [anon_sym___unsafe_unretained] = ACTIONS(2350), + [anon_sym___unused] = ACTIONS(2350), + [anon_sym___weak] = ACTIONS(2350), + [anon_sym_alignas] = ACTIONS(2350), + [anon_sym__Alignas] = ACTIONS(2350), + [sym_primitive_type] = ACTIONS(2350), + [anon_sym_enum] = ACTIONS(2350), + [anon_sym_struct] = ACTIONS(2350), + [anon_sym_union] = ACTIONS(2350), + [anon_sym_if] = ACTIONS(2350), + [anon_sym_else] = ACTIONS(2350), + [anon_sym_switch] = ACTIONS(2350), + [anon_sym_case] = ACTIONS(2350), + [anon_sym_default] = ACTIONS(2350), + [anon_sym_while] = ACTIONS(2350), + [anon_sym_do] = ACTIONS(2350), + [anon_sym_for] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_return] = ACTIONS(2350), + [anon_sym_break] = ACTIONS(2350), + [anon_sym_continue] = ACTIONS(2350), + [anon_sym_goto] = ACTIONS(2350), + [anon_sym_DASH_DASH] = ACTIONS(2352), + [anon_sym_PLUS_PLUS] = ACTIONS(2352), + [anon_sym_sizeof] = ACTIONS(2350), + [anon_sym___alignof__] = ACTIONS(2350), + [anon_sym___alignof] = ACTIONS(2350), + [anon_sym__alignof] = ACTIONS(2350), + [anon_sym_alignof] = ACTIONS(2350), + [anon_sym__Alignof] = ACTIONS(2350), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_asm] = ACTIONS(2350), + [anon_sym___asm__] = ACTIONS(2350), + [anon_sym___asm] = ACTIONS(2350), + [sym_number_literal] = ACTIONS(2352), + [anon_sym_L_SQUOTE] = ACTIONS(2352), + [anon_sym_u_SQUOTE] = ACTIONS(2352), + [anon_sym_U_SQUOTE] = ACTIONS(2352), + [anon_sym_u8_SQUOTE] = ACTIONS(2352), + [anon_sym_SQUOTE] = ACTIONS(2352), + [anon_sym_AT] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2352), + [anon_sym_L_DQUOTE] = ACTIONS(2352), + [anon_sym_u_DQUOTE] = ACTIONS(2352), + [anon_sym_U_DQUOTE] = ACTIONS(2352), + [anon_sym_u8_DQUOTE] = ACTIONS(2352), + [sym_true] = ACTIONS(2350), + [sym_false] = ACTIONS(2350), + [anon_sym_NULL] = ACTIONS(2350), + [anon_sym_nullptr] = ACTIONS(2350), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2350), + [anon_sym___typeof] = ACTIONS(2350), + [anon_sym_typeof] = ACTIONS(2350), + [anon_sym_ATimport] = ACTIONS(2352), + [aux_sym_preproc_undef_token1] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(2350), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2350), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2350), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2350), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2350), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE] = ACTIONS(2350), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_API_AVAILABLE] = ACTIONS(2350), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_API_DEPRECATED] = ACTIONS(2350), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2350), + [anon_sym___deprecated_msg] = ACTIONS(2350), + [anon_sym___deprecated_enum_msg] = ACTIONS(2350), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2350), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2350), + [anon_sym_ATprotocol] = ACTIONS(2352), + [anon_sym_ATinterface] = ACTIONS(2352), + [anon_sym_ATimplementation] = ACTIONS(2352), + [anon_sym_ATcompatibility_alias] = ACTIONS(2352), + [anon_sym_ATselector] = ACTIONS(2352), + [anon_sym_ATavailable] = ACTIONS(2352), + [anon_sym___builtin_available] = ACTIONS(2350), + [anon_sym_va_arg] = ACTIONS(2350), + [anon_sym_ATencode] = ACTIONS(2352), + [anon_sym_BOOL] = ACTIONS(2350), + [anon_sym_IMP] = ACTIONS(2350), + [anon_sym_SEL] = ACTIONS(2350), + [anon_sym_Class] = ACTIONS(2350), + [anon_sym_id] = ACTIONS(2350), + }, + [920] = { + [ts_builtin_sym_end] = ACTIONS(2366), + [sym_identifier] = ACTIONS(2364), + [aux_sym_preproc_include_token1] = ACTIONS(2364), + [aux_sym_preproc_include_token2] = ACTIONS(2364), + [aux_sym_preproc_def_token1] = ACTIONS(2364), + [anon_sym_COMMA] = ACTIONS(2366), + [anon_sym_RPAREN] = ACTIONS(2366), + [aux_sym_preproc_if_token1] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2364), + [sym_preproc_directive] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_PLUS] = ACTIONS(2364), + [anon_sym_STAR] = ACTIONS(2366), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_AMP] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_typedef] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym___attribute__] = ACTIONS(2364), + [anon_sym___attribute] = ACTIONS(2364), + [anon_sym_noreturn] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym___declspec] = ACTIONS(2364), + [anon_sym___cdecl] = ACTIONS(2364), + [anon_sym___clrcall] = ACTIONS(2364), + [anon_sym___stdcall] = ACTIONS(2364), + [anon_sym___fastcall] = ACTIONS(2364), + [anon_sym___thiscall] = ACTIONS(2364), + [anon_sym___vectorcall] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_signed] = ACTIONS(2364), + [anon_sym_unsigned] = ACTIONS(2364), + [anon_sym_long] = ACTIONS(2364), + [anon_sym_short] = ACTIONS(2364), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_ATautoreleasepool] = ACTIONS(2366), + [anon_sym_auto] = ACTIONS(2364), + [anon_sym_register] = ACTIONS(2364), + [anon_sym_inline] = ACTIONS(2364), + [anon_sym___inline] = ACTIONS(2364), + [anon_sym___inline__] = ACTIONS(2364), + [anon_sym___forceinline] = ACTIONS(2364), + [anon_sym_thread_local] = ACTIONS(2364), + [anon_sym___thread] = ACTIONS(2364), + [anon_sym_CG_EXTERN] = ACTIONS(2364), + [anon_sym_CG_INLINE] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2364), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2364), + [anon_sym_IBOutlet] = ACTIONS(2364), + [anon_sym_IBInspectable] = ACTIONS(2364), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2364), + [anon_sym_NS_INLINE] = ACTIONS(2364), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2364), + [anon_sym_OBJC_EXPORT] = ACTIONS(2364), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [anon_sym_constexpr] = ACTIONS(2364), + [anon_sym_volatile] = ACTIONS(2364), + [anon_sym_restrict] = ACTIONS(2364), + [anon_sym___restrict__] = ACTIONS(2364), + [anon_sym__Atomic] = ACTIONS(2364), + [anon_sym__Noreturn] = ACTIONS(2364), + [anon_sym__Nonnull] = ACTIONS(2364), + [anon_sym_nullable] = ACTIONS(2364), + [anon_sym__Complex] = ACTIONS(2364), + [anon_sym__Nullable] = ACTIONS(2364), + [anon_sym__Nullable_result] = ACTIONS(2364), + [anon_sym__Null_unspecified] = ACTIONS(2364), + [anon_sym___autoreleasing] = ACTIONS(2364), + [anon_sym___block] = ACTIONS(2364), + [anon_sym___bridge] = ACTIONS(2364), + [anon_sym___bridge_retained] = ACTIONS(2364), + [anon_sym___bridge_transfer] = ACTIONS(2364), + [anon_sym___complex] = ACTIONS(2364), + [anon_sym___const] = ACTIONS(2364), + [anon_sym___imag] = ACTIONS(2364), + [anon_sym___kindof] = ACTIONS(2364), + [anon_sym___nonnull] = ACTIONS(2364), + [anon_sym___nullable] = ACTIONS(2364), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2364), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2364), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2364), + [anon_sym___real] = ACTIONS(2364), + [anon_sym___strong] = ACTIONS(2364), + [anon_sym___unsafe_unretained] = ACTIONS(2364), + [anon_sym___unused] = ACTIONS(2364), + [anon_sym___weak] = ACTIONS(2364), + [anon_sym_alignas] = ACTIONS(2364), + [anon_sym__Alignas] = ACTIONS(2364), + [sym_primitive_type] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(2364), + [anon_sym_union] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_switch] = ACTIONS(2364), + [anon_sym_case] = ACTIONS(2364), + [anon_sym_default] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_do] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_in] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_goto] = ACTIONS(2364), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_sizeof] = ACTIONS(2364), + [anon_sym___alignof__] = ACTIONS(2364), + [anon_sym___alignof] = ACTIONS(2364), + [anon_sym__alignof] = ACTIONS(2364), + [anon_sym_alignof] = ACTIONS(2364), + [anon_sym__Alignof] = ACTIONS(2364), + [anon_sym_offsetof] = ACTIONS(2364), + [anon_sym__Generic] = ACTIONS(2364), + [anon_sym_asm] = ACTIONS(2364), + [anon_sym___asm__] = ACTIONS(2364), + [anon_sym___asm] = ACTIONS(2364), + [sym_number_literal] = ACTIONS(2366), + [anon_sym_L_SQUOTE] = ACTIONS(2366), + [anon_sym_u_SQUOTE] = ACTIONS(2366), + [anon_sym_U_SQUOTE] = ACTIONS(2366), + [anon_sym_u8_SQUOTE] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2366), + [anon_sym_AT] = ACTIONS(2364), + [anon_sym_DQUOTE] = ACTIONS(2366), + [anon_sym_L_DQUOTE] = ACTIONS(2366), + [anon_sym_u_DQUOTE] = ACTIONS(2366), + [anon_sym_U_DQUOTE] = ACTIONS(2366), + [anon_sym_u8_DQUOTE] = ACTIONS(2366), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2364), + [anon_sym___typeof] = ACTIONS(2364), + [anon_sym_typeof] = ACTIONS(2364), + [anon_sym_ATimport] = ACTIONS(2366), + [aux_sym_preproc_undef_token1] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(2364), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2364), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2364), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2364), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2364), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE] = ACTIONS(2364), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_API_AVAILABLE] = ACTIONS(2364), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_API_DEPRECATED] = ACTIONS(2364), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2364), + [anon_sym___deprecated_msg] = ACTIONS(2364), + [anon_sym___deprecated_enum_msg] = ACTIONS(2364), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2364), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2364), + [anon_sym_ATprotocol] = ACTIONS(2366), + [anon_sym_ATinterface] = ACTIONS(2366), + [anon_sym_ATimplementation] = ACTIONS(2366), + [anon_sym_ATcompatibility_alias] = ACTIONS(2366), + [anon_sym_ATselector] = ACTIONS(2366), + [anon_sym_ATavailable] = ACTIONS(2366), + [anon_sym___builtin_available] = ACTIONS(2364), + [anon_sym_va_arg] = ACTIONS(2364), + [anon_sym_ATencode] = ACTIONS(2366), + [anon_sym_BOOL] = ACTIONS(2364), + [anon_sym_IMP] = ACTIONS(2364), + [anon_sym_SEL] = ACTIONS(2364), + [anon_sym_Class] = ACTIONS(2364), + [anon_sym_id] = ACTIONS(2364), + }, + [921] = { + [ts_builtin_sym_end] = ACTIONS(2348), + [sym_identifier] = ACTIONS(2346), + [aux_sym_preproc_include_token1] = ACTIONS(2346), + [aux_sym_preproc_include_token2] = ACTIONS(2346), + [aux_sym_preproc_def_token1] = ACTIONS(2346), + [anon_sym_COMMA] = ACTIONS(2348), + [anon_sym_RPAREN] = ACTIONS(2348), + [aux_sym_preproc_if_token1] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2346), + [sym_preproc_directive] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2346), + [anon_sym_PLUS] = ACTIONS(2346), + [anon_sym_STAR] = ACTIONS(2348), + [anon_sym_CARET] = ACTIONS(2348), + [anon_sym_AMP] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym___extension__] = ACTIONS(2346), + [anon_sym_typedef] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym___attribute__] = ACTIONS(2346), + [anon_sym___attribute] = ACTIONS(2346), + [anon_sym_noreturn] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym___declspec] = ACTIONS(2346), + [anon_sym___cdecl] = ACTIONS(2346), + [anon_sym___clrcall] = ACTIONS(2346), + [anon_sym___stdcall] = ACTIONS(2346), + [anon_sym___fastcall] = ACTIONS(2346), + [anon_sym___thiscall] = ACTIONS(2346), + [anon_sym___vectorcall] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_signed] = ACTIONS(2346), + [anon_sym_unsigned] = ACTIONS(2346), + [anon_sym_long] = ACTIONS(2346), + [anon_sym_short] = ACTIONS(2346), + [anon_sym_static] = ACTIONS(2346), + [anon_sym_ATautoreleasepool] = ACTIONS(2348), + [anon_sym_auto] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2346), + [anon_sym_inline] = ACTIONS(2346), + [anon_sym___inline] = ACTIONS(2346), + [anon_sym___inline__] = ACTIONS(2346), + [anon_sym___forceinline] = ACTIONS(2346), + [anon_sym_thread_local] = ACTIONS(2346), + [anon_sym___thread] = ACTIONS(2346), + [anon_sym_CG_EXTERN] = ACTIONS(2346), + [anon_sym_CG_INLINE] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2346), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2346), + [anon_sym_IBOutlet] = ACTIONS(2346), + [anon_sym_IBInspectable] = ACTIONS(2346), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2346), + [anon_sym_NS_INLINE] = ACTIONS(2346), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2346), + [anon_sym_OBJC_EXPORT] = ACTIONS(2346), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_constexpr] = ACTIONS(2346), + [anon_sym_volatile] = ACTIONS(2346), + [anon_sym_restrict] = ACTIONS(2346), + [anon_sym___restrict__] = ACTIONS(2346), + [anon_sym__Atomic] = ACTIONS(2346), + [anon_sym__Noreturn] = ACTIONS(2346), + [anon_sym__Nonnull] = ACTIONS(2346), + [anon_sym_nullable] = ACTIONS(2346), + [anon_sym__Complex] = ACTIONS(2346), + [anon_sym__Nullable] = ACTIONS(2346), + [anon_sym__Nullable_result] = ACTIONS(2346), + [anon_sym__Null_unspecified] = ACTIONS(2346), + [anon_sym___autoreleasing] = ACTIONS(2346), + [anon_sym___block] = ACTIONS(2346), + [anon_sym___bridge] = ACTIONS(2346), + [anon_sym___bridge_retained] = ACTIONS(2346), + [anon_sym___bridge_transfer] = ACTIONS(2346), + [anon_sym___complex] = ACTIONS(2346), + [anon_sym___const] = ACTIONS(2346), + [anon_sym___imag] = ACTIONS(2346), + [anon_sym___kindof] = ACTIONS(2346), + [anon_sym___nonnull] = ACTIONS(2346), + [anon_sym___nullable] = ACTIONS(2346), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2346), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2346), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2346), + [anon_sym___real] = ACTIONS(2346), + [anon_sym___strong] = ACTIONS(2346), + [anon_sym___unsafe_unretained] = ACTIONS(2346), + [anon_sym___unused] = ACTIONS(2346), + [anon_sym___weak] = ACTIONS(2346), + [anon_sym_alignas] = ACTIONS(2346), + [anon_sym__Alignas] = ACTIONS(2346), + [sym_primitive_type] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_switch] = ACTIONS(2346), + [anon_sym_case] = ACTIONS(2346), + [anon_sym_default] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_do] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_goto] = ACTIONS(2346), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2346), + [anon_sym__Generic] = ACTIONS(2346), + [anon_sym_asm] = ACTIONS(2346), + [anon_sym___asm__] = ACTIONS(2346), + [anon_sym___asm] = ACTIONS(2346), + [sym_number_literal] = ACTIONS(2348), + [anon_sym_L_SQUOTE] = ACTIONS(2348), + [anon_sym_u_SQUOTE] = ACTIONS(2348), + [anon_sym_U_SQUOTE] = ACTIONS(2348), + [anon_sym_u8_SQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_L_DQUOTE] = ACTIONS(2348), + [anon_sym_u_DQUOTE] = ACTIONS(2348), + [anon_sym_U_DQUOTE] = ACTIONS(2348), + [anon_sym_u8_DQUOTE] = ACTIONS(2348), + [sym_true] = ACTIONS(2346), + [sym_false] = ACTIONS(2346), + [anon_sym_NULL] = ACTIONS(2346), + [anon_sym_nullptr] = ACTIONS(2346), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2346), + [anon_sym___typeof] = ACTIONS(2346), + [anon_sym_typeof] = ACTIONS(2346), + [anon_sym_ATimport] = ACTIONS(2348), + [aux_sym_preproc_undef_token1] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(2346), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2346), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2346), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2346), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2346), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE] = ACTIONS(2346), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_API_AVAILABLE] = ACTIONS(2346), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_API_DEPRECATED] = ACTIONS(2346), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2346), + [anon_sym___deprecated_msg] = ACTIONS(2346), + [anon_sym___deprecated_enum_msg] = ACTIONS(2346), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2346), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2346), + [anon_sym_ATprotocol] = ACTIONS(2348), + [anon_sym_ATinterface] = ACTIONS(2348), + [anon_sym_ATimplementation] = ACTIONS(2348), + [anon_sym_ATcompatibility_alias] = ACTIONS(2348), + [anon_sym_ATselector] = ACTIONS(2348), + [anon_sym_ATavailable] = ACTIONS(2348), + [anon_sym___builtin_available] = ACTIONS(2346), + [anon_sym_va_arg] = ACTIONS(2346), + [anon_sym_ATencode] = ACTIONS(2348), + [anon_sym_BOOL] = ACTIONS(2346), + [anon_sym_IMP] = ACTIONS(2346), + [anon_sym_SEL] = ACTIONS(2346), + [anon_sym_Class] = ACTIONS(2346), + [anon_sym_id] = ACTIONS(2346), + }, + [922] = { + [sym_ms_declspec_modifier] = STATE(6597), + [sym_expression] = STATE(4402), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_typedef] = ACTIONS(2932), + [anon_sym_extern] = ACTIONS(2922), + [anon_sym___attribute__] = ACTIONS(2922), + [anon_sym___attribute] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_auto] = ACTIONS(2922), + [anon_sym_register] = ACTIONS(2922), + [anon_sym_inline] = ACTIONS(2922), + [anon_sym___inline] = ACTIONS(2922), + [anon_sym___inline__] = ACTIONS(2922), + [anon_sym___forceinline] = ACTIONS(2922), + [anon_sym_thread_local] = ACTIONS(2922), + [anon_sym___thread] = ACTIONS(2922), + [anon_sym_CG_EXTERN] = ACTIONS(2922), + [anon_sym_CG_INLINE] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2922), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2922), + [anon_sym_IBOutlet] = ACTIONS(2922), + [anon_sym_IBInspectable] = ACTIONS(2922), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2922), + [anon_sym_NS_INLINE] = ACTIONS(2922), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2922), + [anon_sym_OBJC_EXPORT] = ACTIONS(2922), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(203), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2926), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2922), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2922), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2922), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2922), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE] = ACTIONS(2922), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_API_AVAILABLE] = ACTIONS(2922), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_API_DEPRECATED] = ACTIONS(2922), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2922), + [anon_sym___deprecated_msg] = ACTIONS(2922), + [anon_sym___deprecated_enum_msg] = ACTIONS(2922), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2922), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2922), + [anon_sym_ATprotocol] = ACTIONS(2928), + [anon_sym_ATinterface] = ACTIONS(2928), + [anon_sym_ATimplementation] = ACTIONS(2928), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(203), + }, + [923] = { + [sym_ms_declspec_modifier] = STATE(6739), + [sym_expression] = STATE(4402), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_typedef] = ACTIONS(2934), + [anon_sym_extern] = ACTIONS(2922), + [anon_sym___attribute__] = ACTIONS(2922), + [anon_sym___attribute] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_auto] = ACTIONS(2922), + [anon_sym_register] = ACTIONS(2922), + [anon_sym_inline] = ACTIONS(2922), + [anon_sym___inline] = ACTIONS(2922), + [anon_sym___inline__] = ACTIONS(2922), + [anon_sym___forceinline] = ACTIONS(2922), + [anon_sym_thread_local] = ACTIONS(2922), + [anon_sym___thread] = ACTIONS(2922), + [anon_sym_CG_EXTERN] = ACTIONS(2922), + [anon_sym_CG_INLINE] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2922), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2922), + [anon_sym_IBOutlet] = ACTIONS(2922), + [anon_sym_IBInspectable] = ACTIONS(2922), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2922), + [anon_sym_NS_INLINE] = ACTIONS(2922), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2922), + [anon_sym_OBJC_EXPORT] = ACTIONS(2922), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(203), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2926), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2922), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2922), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2922), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2922), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE] = ACTIONS(2922), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_API_AVAILABLE] = ACTIONS(2922), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_API_DEPRECATED] = ACTIONS(2922), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2922), + [anon_sym___deprecated_msg] = ACTIONS(2922), + [anon_sym___deprecated_enum_msg] = ACTIONS(2922), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2922), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2922), + [anon_sym_ATprotocol] = ACTIONS(2928), + [anon_sym_ATinterface] = ACTIONS(2928), + [anon_sym_ATimplementation] = ACTIONS(2928), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(203), + }, + [924] = { + [sym_ms_declspec_modifier] = STATE(6757), + [sym_expression] = STATE(4402), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_typedef] = ACTIONS(2936), + [anon_sym_extern] = ACTIONS(2922), + [anon_sym___attribute__] = ACTIONS(2922), + [anon_sym___attribute] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_auto] = ACTIONS(2922), + [anon_sym_register] = ACTIONS(2922), + [anon_sym_inline] = ACTIONS(2922), + [anon_sym___inline] = ACTIONS(2922), + [anon_sym___inline__] = ACTIONS(2922), + [anon_sym___forceinline] = ACTIONS(2922), + [anon_sym_thread_local] = ACTIONS(2922), + [anon_sym___thread] = ACTIONS(2922), + [anon_sym_CG_EXTERN] = ACTIONS(2922), + [anon_sym_CG_INLINE] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2922), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2922), + [anon_sym_IBOutlet] = ACTIONS(2922), + [anon_sym_IBInspectable] = ACTIONS(2922), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2922), + [anon_sym_NS_INLINE] = ACTIONS(2922), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2922), + [anon_sym_OBJC_EXPORT] = ACTIONS(2922), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(203), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2926), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2922), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2922), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2922), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2922), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE] = ACTIONS(2922), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_API_AVAILABLE] = ACTIONS(2922), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_API_DEPRECATED] = ACTIONS(2922), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2922), + [anon_sym___deprecated_msg] = ACTIONS(2922), + [anon_sym___deprecated_enum_msg] = ACTIONS(2922), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2922), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2922), + [anon_sym_ATprotocol] = ACTIONS(2928), + [anon_sym_ATinterface] = ACTIONS(2928), + [anon_sym_ATimplementation] = ACTIONS(2928), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(203), + }, + [925] = { + [sym_else_clause] = STATE(980), + [ts_builtin_sym_end] = ACTIONS(2404), + [sym_identifier] = ACTIONS(2402), + [aux_sym_preproc_include_token1] = ACTIONS(2402), + [aux_sym_preproc_include_token2] = ACTIONS(2402), + [aux_sym_preproc_def_token1] = ACTIONS(2402), + [aux_sym_preproc_if_token1] = ACTIONS(2402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2402), + [sym_preproc_directive] = ACTIONS(2402), + [anon_sym_LPAREN2] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_TILDE] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_PLUS] = ACTIONS(2402), + [anon_sym_STAR] = ACTIONS(2404), + [anon_sym_CARET] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym___extension__] = ACTIONS(2402), + [anon_sym_typedef] = ACTIONS(2402), + [anon_sym_extern] = ACTIONS(2402), + [anon_sym___attribute__] = ACTIONS(2402), + [anon_sym___attribute] = ACTIONS(2402), + [anon_sym_noreturn] = ACTIONS(2402), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym___declspec] = ACTIONS(2402), + [anon_sym___cdecl] = ACTIONS(2402), + [anon_sym___clrcall] = ACTIONS(2402), + [anon_sym___stdcall] = ACTIONS(2402), + [anon_sym___fastcall] = ACTIONS(2402), + [anon_sym___thiscall] = ACTIONS(2402), + [anon_sym___vectorcall] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2404), + [anon_sym_signed] = ACTIONS(2402), + [anon_sym_unsigned] = ACTIONS(2402), + [anon_sym_long] = ACTIONS(2402), + [anon_sym_short] = ACTIONS(2402), + [anon_sym_static] = ACTIONS(2402), + [anon_sym_ATautoreleasepool] = ACTIONS(2404), + [anon_sym_auto] = ACTIONS(2402), + [anon_sym_register] = ACTIONS(2402), + [anon_sym_inline] = ACTIONS(2402), + [anon_sym___inline] = ACTIONS(2402), + [anon_sym___inline__] = ACTIONS(2402), + [anon_sym___forceinline] = ACTIONS(2402), + [anon_sym_thread_local] = ACTIONS(2402), + [anon_sym___thread] = ACTIONS(2402), + [anon_sym_CG_EXTERN] = ACTIONS(2402), + [anon_sym_CG_INLINE] = ACTIONS(2402), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2402), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2402), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2402), + [anon_sym_IBOutlet] = ACTIONS(2402), + [anon_sym_IBInspectable] = ACTIONS(2402), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2402), + [anon_sym_NS_INLINE] = ACTIONS(2402), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2402), + [anon_sym_OBJC_EXPORT] = ACTIONS(2402), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2402), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2402), + [anon_sym_const] = ACTIONS(2402), + [anon_sym_constexpr] = ACTIONS(2402), + [anon_sym_volatile] = ACTIONS(2402), + [anon_sym_restrict] = ACTIONS(2402), + [anon_sym___restrict__] = ACTIONS(2402), + [anon_sym__Atomic] = ACTIONS(2402), + [anon_sym__Noreturn] = ACTIONS(2402), + [anon_sym__Nonnull] = ACTIONS(2402), + [anon_sym_nullable] = ACTIONS(2402), + [anon_sym__Complex] = ACTIONS(2402), + [anon_sym__Nullable] = ACTIONS(2402), + [anon_sym__Nullable_result] = ACTIONS(2402), + [anon_sym__Null_unspecified] = ACTIONS(2402), + [anon_sym___autoreleasing] = ACTIONS(2402), + [anon_sym___block] = ACTIONS(2402), + [anon_sym___bridge] = ACTIONS(2402), + [anon_sym___bridge_retained] = ACTIONS(2402), + [anon_sym___bridge_transfer] = ACTIONS(2402), + [anon_sym___complex] = ACTIONS(2402), + [anon_sym___const] = ACTIONS(2402), + [anon_sym___imag] = ACTIONS(2402), + [anon_sym___kindof] = ACTIONS(2402), + [anon_sym___nonnull] = ACTIONS(2402), + [anon_sym___nullable] = ACTIONS(2402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2402), + [anon_sym___real] = ACTIONS(2402), + [anon_sym___strong] = ACTIONS(2402), + [anon_sym___unsafe_unretained] = ACTIONS(2402), + [anon_sym___unused] = ACTIONS(2402), + [anon_sym___weak] = ACTIONS(2402), + [anon_sym_alignas] = ACTIONS(2402), + [anon_sym__Alignas] = ACTIONS(2402), + [sym_primitive_type] = ACTIONS(2402), + [anon_sym_enum] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(2402), + [anon_sym_union] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_else] = ACTIONS(2938), + [anon_sym_switch] = ACTIONS(2402), + [anon_sym_case] = ACTIONS(2402), + [anon_sym_default] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_in] = ACTIONS(2402), + [anon_sym_return] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_goto] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2404), + [anon_sym_sizeof] = ACTIONS(2402), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2402), + [anon_sym_asm] = ACTIONS(2402), + [anon_sym___asm__] = ACTIONS(2402), + [anon_sym___asm] = ACTIONS(2402), + [sym_number_literal] = ACTIONS(2404), + [anon_sym_L_SQUOTE] = ACTIONS(2404), + [anon_sym_u_SQUOTE] = ACTIONS(2404), + [anon_sym_U_SQUOTE] = ACTIONS(2404), + [anon_sym_u8_SQUOTE] = ACTIONS(2404), + [anon_sym_SQUOTE] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_L_DQUOTE] = ACTIONS(2404), + [anon_sym_u_DQUOTE] = ACTIONS(2404), + [anon_sym_U_DQUOTE] = ACTIONS(2404), + [anon_sym_u8_DQUOTE] = ACTIONS(2404), + [sym_true] = ACTIONS(2402), + [sym_false] = ACTIONS(2402), + [anon_sym_NULL] = ACTIONS(2402), + [anon_sym_nullptr] = ACTIONS(2402), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2402), + [anon_sym___typeof] = ACTIONS(2402), + [anon_sym_typeof] = ACTIONS(2402), + [anon_sym_ATimport] = ACTIONS(2404), + [aux_sym_preproc_undef_token1] = ACTIONS(2402), + [anon_sym_POUND] = ACTIONS(2402), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2402), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2402), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2402), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2402), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2402), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2402), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2402), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2402), + [anon_sym_NS_AVAILABLE] = ACTIONS(2402), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2402), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_API_AVAILABLE] = ACTIONS(2402), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_API_DEPRECATED] = ACTIONS(2402), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2402), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2402), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2402), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2402), + [anon_sym___deprecated_msg] = ACTIONS(2402), + [anon_sym___deprecated_enum_msg] = ACTIONS(2402), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2402), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2402), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2402), + [anon_sym_ATprotocol] = ACTIONS(2404), + [anon_sym_ATinterface] = ACTIONS(2404), + [anon_sym_ATimplementation] = ACTIONS(2404), + [anon_sym_ATcompatibility_alias] = ACTIONS(2404), + [anon_sym_ATselector] = ACTIONS(2404), + [anon_sym_ATavailable] = ACTIONS(2404), + [anon_sym___builtin_available] = ACTIONS(2402), + [anon_sym_va_arg] = ACTIONS(2402), + [anon_sym_ATencode] = ACTIONS(2404), + [anon_sym_BOOL] = ACTIONS(2402), + [anon_sym_IMP] = ACTIONS(2402), + [anon_sym_SEL] = ACTIONS(2402), + [anon_sym_Class] = ACTIONS(2402), + [anon_sym_id] = ACTIONS(2402), + }, + [926] = { + [ts_builtin_sym_end] = ACTIONS(2410), + [sym_identifier] = ACTIONS(2408), + [aux_sym_preproc_include_token1] = ACTIONS(2408), + [aux_sym_preproc_include_token2] = ACTIONS(2408), + [aux_sym_preproc_def_token1] = ACTIONS(2408), + [aux_sym_preproc_if_token1] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2408), + [sym_preproc_directive] = ACTIONS(2408), + [anon_sym_LPAREN2] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2408), + [anon_sym_PLUS] = ACTIONS(2408), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_CARET] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym___extension__] = ACTIONS(2408), + [anon_sym_typedef] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym___attribute__] = ACTIONS(2408), + [anon_sym___attribute] = ACTIONS(2408), + [anon_sym_noreturn] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym___declspec] = ACTIONS(2408), + [anon_sym___cdecl] = ACTIONS(2408), + [anon_sym___clrcall] = ACTIONS(2408), + [anon_sym___stdcall] = ACTIONS(2408), + [anon_sym___fastcall] = ACTIONS(2408), + [anon_sym___thiscall] = ACTIONS(2408), + [anon_sym___vectorcall] = ACTIONS(2408), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_signed] = ACTIONS(2408), + [anon_sym_unsigned] = ACTIONS(2408), + [anon_sym_long] = ACTIONS(2408), + [anon_sym_short] = ACTIONS(2408), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_ATautoreleasepool] = ACTIONS(2410), + [anon_sym_auto] = ACTIONS(2408), + [anon_sym_register] = ACTIONS(2408), + [anon_sym_inline] = ACTIONS(2408), + [anon_sym___inline] = ACTIONS(2408), + [anon_sym___inline__] = ACTIONS(2408), + [anon_sym___forceinline] = ACTIONS(2408), + [anon_sym_thread_local] = ACTIONS(2408), + [anon_sym___thread] = ACTIONS(2408), + [anon_sym_CG_EXTERN] = ACTIONS(2408), + [anon_sym_CG_INLINE] = ACTIONS(2408), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2408), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2408), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2408), + [anon_sym_IBOutlet] = ACTIONS(2408), + [anon_sym_IBInspectable] = ACTIONS(2408), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2408), + [anon_sym_NS_INLINE] = ACTIONS(2408), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2408), + [anon_sym_OBJC_EXPORT] = ACTIONS(2408), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2408), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_constexpr] = ACTIONS(2408), + [anon_sym_volatile] = ACTIONS(2408), + [anon_sym_restrict] = ACTIONS(2408), + [anon_sym___restrict__] = ACTIONS(2408), + [anon_sym__Atomic] = ACTIONS(2408), + [anon_sym__Noreturn] = ACTIONS(2408), + [anon_sym__Nonnull] = ACTIONS(2408), + [anon_sym_nullable] = ACTIONS(2408), + [anon_sym__Complex] = ACTIONS(2408), + [anon_sym__Nullable] = ACTIONS(2408), + [anon_sym__Nullable_result] = ACTIONS(2408), + [anon_sym__Null_unspecified] = ACTIONS(2408), + [anon_sym___autoreleasing] = ACTIONS(2408), + [anon_sym___block] = ACTIONS(2408), + [anon_sym___bridge] = ACTIONS(2408), + [anon_sym___bridge_retained] = ACTIONS(2408), + [anon_sym___bridge_transfer] = ACTIONS(2408), + [anon_sym___complex] = ACTIONS(2408), + [anon_sym___const] = ACTIONS(2408), + [anon_sym___imag] = ACTIONS(2408), + [anon_sym___kindof] = ACTIONS(2408), + [anon_sym___nonnull] = ACTIONS(2408), + [anon_sym___nullable] = ACTIONS(2408), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2408), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2408), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2408), + [anon_sym___real] = ACTIONS(2408), + [anon_sym___strong] = ACTIONS(2408), + [anon_sym___unsafe_unretained] = ACTIONS(2408), + [anon_sym___unused] = ACTIONS(2408), + [anon_sym___weak] = ACTIONS(2408), + [anon_sym_alignas] = ACTIONS(2408), + [anon_sym__Alignas] = ACTIONS(2408), + [sym_primitive_type] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_struct] = ACTIONS(2408), + [anon_sym_union] = ACTIONS(2408), + [anon_sym_if] = ACTIONS(2408), + [anon_sym_else] = ACTIONS(2408), + [anon_sym_switch] = ACTIONS(2408), + [anon_sym_case] = ACTIONS(2408), + [anon_sym_default] = ACTIONS(2408), + [anon_sym_while] = ACTIONS(2408), + [anon_sym_do] = ACTIONS(2408), + [anon_sym_for] = ACTIONS(2408), + [anon_sym_in] = ACTIONS(2408), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_break] = ACTIONS(2408), + [anon_sym_continue] = ACTIONS(2408), + [anon_sym_goto] = ACTIONS(2408), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_sizeof] = ACTIONS(2408), + [anon_sym___alignof__] = ACTIONS(2408), + [anon_sym___alignof] = ACTIONS(2408), + [anon_sym__alignof] = ACTIONS(2408), + [anon_sym_alignof] = ACTIONS(2408), + [anon_sym__Alignof] = ACTIONS(2408), + [anon_sym_offsetof] = ACTIONS(2408), + [anon_sym__Generic] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2410), + [anon_sym_u_SQUOTE] = ACTIONS(2410), + [anon_sym_U_SQUOTE] = ACTIONS(2410), + [anon_sym_u8_SQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(2408), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_L_DQUOTE] = ACTIONS(2410), + [anon_sym_u_DQUOTE] = ACTIONS(2410), + [anon_sym_U_DQUOTE] = ACTIONS(2410), + [anon_sym_u8_DQUOTE] = ACTIONS(2410), + [sym_true] = ACTIONS(2408), + [sym_false] = ACTIONS(2408), + [anon_sym_NULL] = ACTIONS(2408), + [anon_sym_nullptr] = ACTIONS(2408), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2408), + [anon_sym___typeof] = ACTIONS(2408), + [anon_sym_typeof] = ACTIONS(2408), + [anon_sym_ATimport] = ACTIONS(2410), + [aux_sym_preproc_undef_token1] = ACTIONS(2408), + [anon_sym_POUND] = ACTIONS(2408), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2408), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2408), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2408), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2408), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2408), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2408), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2408), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2408), + [anon_sym_NS_AVAILABLE] = ACTIONS(2408), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2408), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_API_AVAILABLE] = ACTIONS(2408), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_API_DEPRECATED] = ACTIONS(2408), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2408), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2408), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2408), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2408), + [anon_sym___deprecated_msg] = ACTIONS(2408), + [anon_sym___deprecated_enum_msg] = ACTIONS(2408), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2408), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2408), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2408), + [anon_sym_ATprotocol] = ACTIONS(2410), + [anon_sym_ATinterface] = ACTIONS(2410), + [anon_sym_ATimplementation] = ACTIONS(2410), + [anon_sym_ATcompatibility_alias] = ACTIONS(2410), + [anon_sym_ATselector] = ACTIONS(2410), + [anon_sym_ATavailable] = ACTIONS(2410), + [anon_sym___builtin_available] = ACTIONS(2408), + [anon_sym_va_arg] = ACTIONS(2408), + [anon_sym_ATencode] = ACTIONS(2410), + [anon_sym_BOOL] = ACTIONS(2408), + [anon_sym_IMP] = ACTIONS(2408), + [anon_sym_SEL] = ACTIONS(2408), + [anon_sym_Class] = ACTIONS(2408), + [anon_sym_id] = ACTIONS(2408), + }, + [927] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [928] = { + [ts_builtin_sym_end] = ACTIONS(2426), + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_include_token1] = ACTIONS(2424), + [aux_sym_preproc_include_token2] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_CARET] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_ATautoreleasepool] = ACTIONS(2426), + [anon_sym_auto] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_CG_EXTERN] = ACTIONS(2424), + [anon_sym_CG_INLINE] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2424), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2424), + [anon_sym_IBOutlet] = ACTIONS(2424), + [anon_sym_IBInspectable] = ACTIONS(2424), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2424), + [anon_sym_NS_INLINE] = ACTIONS(2424), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2424), + [anon_sym_OBJC_EXPORT] = ACTIONS(2424), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_nullable] = ACTIONS(2424), + [anon_sym__Complex] = ACTIONS(2424), + [anon_sym__Nullable] = ACTIONS(2424), + [anon_sym__Nullable_result] = ACTIONS(2424), + [anon_sym__Null_unspecified] = ACTIONS(2424), + [anon_sym___autoreleasing] = ACTIONS(2424), + [anon_sym___block] = ACTIONS(2424), + [anon_sym___bridge] = ACTIONS(2424), + [anon_sym___bridge_retained] = ACTIONS(2424), + [anon_sym___bridge_transfer] = ACTIONS(2424), + [anon_sym___complex] = ACTIONS(2424), + [anon_sym___const] = ACTIONS(2424), + [anon_sym___imag] = ACTIONS(2424), + [anon_sym___kindof] = ACTIONS(2424), + [anon_sym___nonnull] = ACTIONS(2424), + [anon_sym___nullable] = ACTIONS(2424), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2424), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2424), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2424), + [anon_sym___real] = ACTIONS(2424), + [anon_sym___strong] = ACTIONS(2424), + [anon_sym___unsafe_unretained] = ACTIONS(2424), + [anon_sym___unused] = ACTIONS(2424), + [anon_sym___weak] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_else] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_in] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_goto] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_sizeof] = ACTIONS(2424), + [anon_sym___alignof__] = ACTIONS(2424), + [anon_sym___alignof] = ACTIONS(2424), + [anon_sym__alignof] = ACTIONS(2424), + [anon_sym_alignof] = ACTIONS(2424), + [anon_sym__Alignof] = ACTIONS(2424), + [anon_sym_offsetof] = ACTIONS(2424), + [anon_sym__Generic] = ACTIONS(2424), + [anon_sym_asm] = ACTIONS(2424), + [anon_sym___asm__] = ACTIONS(2424), + [anon_sym___asm] = ACTIONS(2424), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_L_SQUOTE] = ACTIONS(2426), + [anon_sym_u_SQUOTE] = ACTIONS(2426), + [anon_sym_U_SQUOTE] = ACTIONS(2426), + [anon_sym_u8_SQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_AT] = ACTIONS(2424), + [anon_sym_DQUOTE] = ACTIONS(2426), + [anon_sym_L_DQUOTE] = ACTIONS(2426), + [anon_sym_u_DQUOTE] = ACTIONS(2426), + [anon_sym_U_DQUOTE] = ACTIONS(2426), + [anon_sym_u8_DQUOTE] = ACTIONS(2426), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [anon_sym_NULL] = ACTIONS(2424), + [anon_sym_nullptr] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2424), + [anon_sym___typeof] = ACTIONS(2424), + [anon_sym_typeof] = ACTIONS(2424), + [anon_sym_ATimport] = ACTIONS(2426), + [aux_sym_preproc_undef_token1] = ACTIONS(2424), + [anon_sym_POUND] = ACTIONS(2424), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2424), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2424), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2424), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2424), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE] = ACTIONS(2424), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_API_AVAILABLE] = ACTIONS(2424), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_API_DEPRECATED] = ACTIONS(2424), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2424), + [anon_sym___deprecated_msg] = ACTIONS(2424), + [anon_sym___deprecated_enum_msg] = ACTIONS(2424), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2424), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2424), + [anon_sym_ATprotocol] = ACTIONS(2426), + [anon_sym_ATinterface] = ACTIONS(2426), + [anon_sym_ATimplementation] = ACTIONS(2426), + [anon_sym_ATcompatibility_alias] = ACTIONS(2426), + [anon_sym_ATselector] = ACTIONS(2426), + [anon_sym_ATavailable] = ACTIONS(2426), + [anon_sym___builtin_available] = ACTIONS(2424), + [anon_sym_va_arg] = ACTIONS(2424), + [anon_sym_ATencode] = ACTIONS(2426), + [anon_sym_BOOL] = ACTIONS(2424), + [anon_sym_IMP] = ACTIONS(2424), + [anon_sym_SEL] = ACTIONS(2424), + [anon_sym_Class] = ACTIONS(2424), + [anon_sym_id] = ACTIONS(2424), + }, + [929] = { + [ts_builtin_sym_end] = ACTIONS(2430), + [sym_identifier] = ACTIONS(2428), + [aux_sym_preproc_include_token1] = ACTIONS(2428), + [aux_sym_preproc_include_token2] = ACTIONS(2428), + [aux_sym_preproc_def_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2428), + [sym_preproc_directive] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_STAR] = ACTIONS(2430), + [anon_sym_CARET] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym___cdecl] = ACTIONS(2428), + [anon_sym___clrcall] = ACTIONS(2428), + [anon_sym___stdcall] = ACTIONS(2428), + [anon_sym___fastcall] = ACTIONS(2428), + [anon_sym___thiscall] = ACTIONS(2428), + [anon_sym___vectorcall] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_ATautoreleasepool] = ACTIONS(2430), + [anon_sym_auto] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_CG_EXTERN] = ACTIONS(2428), + [anon_sym_CG_INLINE] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2428), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2428), + [anon_sym_IBOutlet] = ACTIONS(2428), + [anon_sym_IBInspectable] = ACTIONS(2428), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2428), + [anon_sym_NS_INLINE] = ACTIONS(2428), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2428), + [anon_sym_OBJC_EXPORT] = ACTIONS(2428), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_nullable] = ACTIONS(2428), + [anon_sym__Complex] = ACTIONS(2428), + [anon_sym__Nullable] = ACTIONS(2428), + [anon_sym__Nullable_result] = ACTIONS(2428), + [anon_sym__Null_unspecified] = ACTIONS(2428), + [anon_sym___autoreleasing] = ACTIONS(2428), + [anon_sym___block] = ACTIONS(2428), + [anon_sym___bridge] = ACTIONS(2428), + [anon_sym___bridge_retained] = ACTIONS(2428), + [anon_sym___bridge_transfer] = ACTIONS(2428), + [anon_sym___complex] = ACTIONS(2428), + [anon_sym___const] = ACTIONS(2428), + [anon_sym___imag] = ACTIONS(2428), + [anon_sym___kindof] = ACTIONS(2428), + [anon_sym___nonnull] = ACTIONS(2428), + [anon_sym___nullable] = ACTIONS(2428), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2428), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2428), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2428), + [anon_sym___real] = ACTIONS(2428), + [anon_sym___strong] = ACTIONS(2428), + [anon_sym___unsafe_unretained] = ACTIONS(2428), + [anon_sym___unused] = ACTIONS(2428), + [anon_sym___weak] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_else] = ACTIONS(2428), + [anon_sym_switch] = ACTIONS(2428), + [anon_sym_case] = ACTIONS(2428), + [anon_sym_default] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_do] = ACTIONS(2428), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_in] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_goto] = ACTIONS(2428), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_sizeof] = ACTIONS(2428), + [anon_sym___alignof__] = ACTIONS(2428), + [anon_sym___alignof] = ACTIONS(2428), + [anon_sym__alignof] = ACTIONS(2428), + [anon_sym_alignof] = ACTIONS(2428), + [anon_sym__Alignof] = ACTIONS(2428), + [anon_sym_offsetof] = ACTIONS(2428), + [anon_sym__Generic] = ACTIONS(2428), + [anon_sym_asm] = ACTIONS(2428), + [anon_sym___asm__] = ACTIONS(2428), + [anon_sym___asm] = ACTIONS(2428), + [sym_number_literal] = ACTIONS(2430), + [anon_sym_L_SQUOTE] = ACTIONS(2430), + [anon_sym_u_SQUOTE] = ACTIONS(2430), + [anon_sym_U_SQUOTE] = ACTIONS(2430), + [anon_sym_u8_SQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_AT] = ACTIONS(2428), + [anon_sym_DQUOTE] = ACTIONS(2430), + [anon_sym_L_DQUOTE] = ACTIONS(2430), + [anon_sym_u_DQUOTE] = ACTIONS(2430), + [anon_sym_U_DQUOTE] = ACTIONS(2430), + [anon_sym_u8_DQUOTE] = ACTIONS(2430), + [sym_true] = ACTIONS(2428), + [sym_false] = ACTIONS(2428), + [anon_sym_NULL] = ACTIONS(2428), + [anon_sym_nullptr] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2428), + [anon_sym___typeof] = ACTIONS(2428), + [anon_sym_typeof] = ACTIONS(2428), + [anon_sym_ATimport] = ACTIONS(2430), + [aux_sym_preproc_undef_token1] = ACTIONS(2428), + [anon_sym_POUND] = ACTIONS(2428), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2428), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2428), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2428), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2428), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE] = ACTIONS(2428), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_API_AVAILABLE] = ACTIONS(2428), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_API_DEPRECATED] = ACTIONS(2428), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2428), + [anon_sym___deprecated_msg] = ACTIONS(2428), + [anon_sym___deprecated_enum_msg] = ACTIONS(2428), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2428), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2428), + [anon_sym_ATprotocol] = ACTIONS(2430), + [anon_sym_ATinterface] = ACTIONS(2430), + [anon_sym_ATimplementation] = ACTIONS(2430), + [anon_sym_ATcompatibility_alias] = ACTIONS(2430), + [anon_sym_ATselector] = ACTIONS(2430), + [anon_sym_ATavailable] = ACTIONS(2430), + [anon_sym___builtin_available] = ACTIONS(2428), + [anon_sym_va_arg] = ACTIONS(2428), + [anon_sym_ATencode] = ACTIONS(2430), + [anon_sym_BOOL] = ACTIONS(2428), + [anon_sym_IMP] = ACTIONS(2428), + [anon_sym_SEL] = ACTIONS(2428), + [anon_sym_Class] = ACTIONS(2428), + [anon_sym_id] = ACTIONS(2428), + }, + [930] = { + [ts_builtin_sym_end] = ACTIONS(2434), + [sym_identifier] = ACTIONS(2432), + [aux_sym_preproc_include_token1] = ACTIONS(2432), + [aux_sym_preproc_include_token2] = ACTIONS(2432), + [aux_sym_preproc_def_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2432), + [sym_preproc_directive] = ACTIONS(2432), + [anon_sym_LPAREN2] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym___extension__] = ACTIONS(2432), + [anon_sym_typedef] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym___attribute__] = ACTIONS(2432), + [anon_sym___attribute] = ACTIONS(2432), + [anon_sym_noreturn] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym___declspec] = ACTIONS(2432), + [anon_sym___cdecl] = ACTIONS(2432), + [anon_sym___clrcall] = ACTIONS(2432), + [anon_sym___stdcall] = ACTIONS(2432), + [anon_sym___fastcall] = ACTIONS(2432), + [anon_sym___thiscall] = ACTIONS(2432), + [anon_sym___vectorcall] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_signed] = ACTIONS(2432), + [anon_sym_unsigned] = ACTIONS(2432), + [anon_sym_long] = ACTIONS(2432), + [anon_sym_short] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_ATautoreleasepool] = ACTIONS(2434), + [anon_sym_auto] = ACTIONS(2432), + [anon_sym_register] = ACTIONS(2432), + [anon_sym_inline] = ACTIONS(2432), + [anon_sym___inline] = ACTIONS(2432), + [anon_sym___inline__] = ACTIONS(2432), + [anon_sym___forceinline] = ACTIONS(2432), + [anon_sym_thread_local] = ACTIONS(2432), + [anon_sym___thread] = ACTIONS(2432), + [anon_sym_CG_EXTERN] = ACTIONS(2432), + [anon_sym_CG_INLINE] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2432), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2432), + [anon_sym_IBOutlet] = ACTIONS(2432), + [anon_sym_IBInspectable] = ACTIONS(2432), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2432), + [anon_sym_NS_INLINE] = ACTIONS(2432), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2432), + [anon_sym_OBJC_EXPORT] = ACTIONS(2432), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_constexpr] = ACTIONS(2432), + [anon_sym_volatile] = ACTIONS(2432), + [anon_sym_restrict] = ACTIONS(2432), + [anon_sym___restrict__] = ACTIONS(2432), + [anon_sym__Atomic] = ACTIONS(2432), + [anon_sym__Noreturn] = ACTIONS(2432), + [anon_sym__Nonnull] = ACTIONS(2432), + [anon_sym_nullable] = ACTIONS(2432), + [anon_sym__Complex] = ACTIONS(2432), + [anon_sym__Nullable] = ACTIONS(2432), + [anon_sym__Nullable_result] = ACTIONS(2432), + [anon_sym__Null_unspecified] = ACTIONS(2432), + [anon_sym___autoreleasing] = ACTIONS(2432), + [anon_sym___block] = ACTIONS(2432), + [anon_sym___bridge] = ACTIONS(2432), + [anon_sym___bridge_retained] = ACTIONS(2432), + [anon_sym___bridge_transfer] = ACTIONS(2432), + [anon_sym___complex] = ACTIONS(2432), + [anon_sym___const] = ACTIONS(2432), + [anon_sym___imag] = ACTIONS(2432), + [anon_sym___kindof] = ACTIONS(2432), + [anon_sym___nonnull] = ACTIONS(2432), + [anon_sym___nullable] = ACTIONS(2432), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2432), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2432), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2432), + [anon_sym___real] = ACTIONS(2432), + [anon_sym___strong] = ACTIONS(2432), + [anon_sym___unsafe_unretained] = ACTIONS(2432), + [anon_sym___unused] = ACTIONS(2432), + [anon_sym___weak] = ACTIONS(2432), + [anon_sym_alignas] = ACTIONS(2432), + [anon_sym__Alignas] = ACTIONS(2432), + [sym_primitive_type] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_else] = ACTIONS(2432), + [anon_sym_switch] = ACTIONS(2432), + [anon_sym_case] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_in] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_goto] = ACTIONS(2432), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_sizeof] = ACTIONS(2432), + [anon_sym___alignof__] = ACTIONS(2432), + [anon_sym___alignof] = ACTIONS(2432), + [anon_sym__alignof] = ACTIONS(2432), + [anon_sym_alignof] = ACTIONS(2432), + [anon_sym__Alignof] = ACTIONS(2432), + [anon_sym_offsetof] = ACTIONS(2432), + [anon_sym__Generic] = ACTIONS(2432), + [anon_sym_asm] = ACTIONS(2432), + [anon_sym___asm__] = ACTIONS(2432), + [anon_sym___asm] = ACTIONS(2432), + [sym_number_literal] = ACTIONS(2434), + [anon_sym_L_SQUOTE] = ACTIONS(2434), + [anon_sym_u_SQUOTE] = ACTIONS(2434), + [anon_sym_U_SQUOTE] = ACTIONS(2434), + [anon_sym_u8_SQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_AT] = ACTIONS(2432), + [anon_sym_DQUOTE] = ACTIONS(2434), + [anon_sym_L_DQUOTE] = ACTIONS(2434), + [anon_sym_u_DQUOTE] = ACTIONS(2434), + [anon_sym_U_DQUOTE] = ACTIONS(2434), + [anon_sym_u8_DQUOTE] = ACTIONS(2434), + [sym_true] = ACTIONS(2432), + [sym_false] = ACTIONS(2432), + [anon_sym_NULL] = ACTIONS(2432), + [anon_sym_nullptr] = ACTIONS(2432), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2432), + [anon_sym___typeof] = ACTIONS(2432), + [anon_sym_typeof] = ACTIONS(2432), + [anon_sym_ATimport] = ACTIONS(2434), + [aux_sym_preproc_undef_token1] = ACTIONS(2432), + [anon_sym_POUND] = ACTIONS(2432), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2432), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2432), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2432), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2432), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE] = ACTIONS(2432), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_API_AVAILABLE] = ACTIONS(2432), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_API_DEPRECATED] = ACTIONS(2432), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2432), + [anon_sym___deprecated_msg] = ACTIONS(2432), + [anon_sym___deprecated_enum_msg] = ACTIONS(2432), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2432), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2432), + [anon_sym_ATprotocol] = ACTIONS(2434), + [anon_sym_ATinterface] = ACTIONS(2434), + [anon_sym_ATimplementation] = ACTIONS(2434), + [anon_sym_ATcompatibility_alias] = ACTIONS(2434), + [anon_sym_ATselector] = ACTIONS(2434), + [anon_sym_ATavailable] = ACTIONS(2434), + [anon_sym___builtin_available] = ACTIONS(2432), + [anon_sym_va_arg] = ACTIONS(2432), + [anon_sym_ATencode] = ACTIONS(2434), + [anon_sym_BOOL] = ACTIONS(2432), + [anon_sym_IMP] = ACTIONS(2432), + [anon_sym_SEL] = ACTIONS(2432), + [anon_sym_Class] = ACTIONS(2432), + [anon_sym_id] = ACTIONS(2432), + }, + [931] = { + [ts_builtin_sym_end] = ACTIONS(2426), + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_include_token1] = ACTIONS(2424), + [aux_sym_preproc_include_token2] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_CARET] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_ATautoreleasepool] = ACTIONS(2426), + [anon_sym_auto] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_CG_EXTERN] = ACTIONS(2424), + [anon_sym_CG_INLINE] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2424), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2424), + [anon_sym_IBOutlet] = ACTIONS(2424), + [anon_sym_IBInspectable] = ACTIONS(2424), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2424), + [anon_sym_NS_INLINE] = ACTIONS(2424), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2424), + [anon_sym_OBJC_EXPORT] = ACTIONS(2424), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_nullable] = ACTIONS(2424), + [anon_sym__Complex] = ACTIONS(2424), + [anon_sym__Nullable] = ACTIONS(2424), + [anon_sym__Nullable_result] = ACTIONS(2424), + [anon_sym__Null_unspecified] = ACTIONS(2424), + [anon_sym___autoreleasing] = ACTIONS(2424), + [anon_sym___block] = ACTIONS(2424), + [anon_sym___bridge] = ACTIONS(2424), + [anon_sym___bridge_retained] = ACTIONS(2424), + [anon_sym___bridge_transfer] = ACTIONS(2424), + [anon_sym___complex] = ACTIONS(2424), + [anon_sym___const] = ACTIONS(2424), + [anon_sym___imag] = ACTIONS(2424), + [anon_sym___kindof] = ACTIONS(2424), + [anon_sym___nonnull] = ACTIONS(2424), + [anon_sym___nullable] = ACTIONS(2424), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2424), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2424), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2424), + [anon_sym___real] = ACTIONS(2424), + [anon_sym___strong] = ACTIONS(2424), + [anon_sym___unsafe_unretained] = ACTIONS(2424), + [anon_sym___unused] = ACTIONS(2424), + [anon_sym___weak] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_else] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_in] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_goto] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_sizeof] = ACTIONS(2424), + [anon_sym___alignof__] = ACTIONS(2424), + [anon_sym___alignof] = ACTIONS(2424), + [anon_sym__alignof] = ACTIONS(2424), + [anon_sym_alignof] = ACTIONS(2424), + [anon_sym__Alignof] = ACTIONS(2424), + [anon_sym_offsetof] = ACTIONS(2424), + [anon_sym__Generic] = ACTIONS(2424), + [anon_sym_asm] = ACTIONS(2424), + [anon_sym___asm__] = ACTIONS(2424), + [anon_sym___asm] = ACTIONS(2424), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_L_SQUOTE] = ACTIONS(2426), + [anon_sym_u_SQUOTE] = ACTIONS(2426), + [anon_sym_U_SQUOTE] = ACTIONS(2426), + [anon_sym_u8_SQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_AT] = ACTIONS(2424), + [anon_sym_DQUOTE] = ACTIONS(2426), + [anon_sym_L_DQUOTE] = ACTIONS(2426), + [anon_sym_u_DQUOTE] = ACTIONS(2426), + [anon_sym_U_DQUOTE] = ACTIONS(2426), + [anon_sym_u8_DQUOTE] = ACTIONS(2426), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [anon_sym_NULL] = ACTIONS(2424), + [anon_sym_nullptr] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2424), + [anon_sym___typeof] = ACTIONS(2424), + [anon_sym_typeof] = ACTIONS(2424), + [anon_sym_ATimport] = ACTIONS(2426), + [aux_sym_preproc_undef_token1] = ACTIONS(2424), + [anon_sym_POUND] = ACTIONS(2424), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2424), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2424), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2424), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2424), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE] = ACTIONS(2424), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_API_AVAILABLE] = ACTIONS(2424), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_API_DEPRECATED] = ACTIONS(2424), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2424), + [anon_sym___deprecated_msg] = ACTIONS(2424), + [anon_sym___deprecated_enum_msg] = ACTIONS(2424), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2424), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2424), + [anon_sym_ATprotocol] = ACTIONS(2426), + [anon_sym_ATinterface] = ACTIONS(2426), + [anon_sym_ATimplementation] = ACTIONS(2426), + [anon_sym_ATcompatibility_alias] = ACTIONS(2426), + [anon_sym_ATselector] = ACTIONS(2426), + [anon_sym_ATavailable] = ACTIONS(2426), + [anon_sym___builtin_available] = ACTIONS(2424), + [anon_sym_va_arg] = ACTIONS(2424), + [anon_sym_ATencode] = ACTIONS(2426), + [anon_sym_BOOL] = ACTIONS(2424), + [anon_sym_IMP] = ACTIONS(2424), + [anon_sym_SEL] = ACTIONS(2424), + [anon_sym_Class] = ACTIONS(2424), + [anon_sym_id] = ACTIONS(2424), + }, + [932] = { + [ts_builtin_sym_end] = ACTIONS(2434), + [sym_identifier] = ACTIONS(2432), + [aux_sym_preproc_include_token1] = ACTIONS(2432), + [aux_sym_preproc_include_token2] = ACTIONS(2432), + [aux_sym_preproc_def_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2432), + [sym_preproc_directive] = ACTIONS(2432), + [anon_sym_LPAREN2] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym___extension__] = ACTIONS(2432), + [anon_sym_typedef] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym___attribute__] = ACTIONS(2432), + [anon_sym___attribute] = ACTIONS(2432), + [anon_sym_noreturn] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym___declspec] = ACTIONS(2432), + [anon_sym___cdecl] = ACTIONS(2432), + [anon_sym___clrcall] = ACTIONS(2432), + [anon_sym___stdcall] = ACTIONS(2432), + [anon_sym___fastcall] = ACTIONS(2432), + [anon_sym___thiscall] = ACTIONS(2432), + [anon_sym___vectorcall] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_signed] = ACTIONS(2432), + [anon_sym_unsigned] = ACTIONS(2432), + [anon_sym_long] = ACTIONS(2432), + [anon_sym_short] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_ATautoreleasepool] = ACTIONS(2434), + [anon_sym_auto] = ACTIONS(2432), + [anon_sym_register] = ACTIONS(2432), + [anon_sym_inline] = ACTIONS(2432), + [anon_sym___inline] = ACTIONS(2432), + [anon_sym___inline__] = ACTIONS(2432), + [anon_sym___forceinline] = ACTIONS(2432), + [anon_sym_thread_local] = ACTIONS(2432), + [anon_sym___thread] = ACTIONS(2432), + [anon_sym_CG_EXTERN] = ACTIONS(2432), + [anon_sym_CG_INLINE] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2432), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2432), + [anon_sym_IBOutlet] = ACTIONS(2432), + [anon_sym_IBInspectable] = ACTIONS(2432), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2432), + [anon_sym_NS_INLINE] = ACTIONS(2432), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2432), + [anon_sym_OBJC_EXPORT] = ACTIONS(2432), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_constexpr] = ACTIONS(2432), + [anon_sym_volatile] = ACTIONS(2432), + [anon_sym_restrict] = ACTIONS(2432), + [anon_sym___restrict__] = ACTIONS(2432), + [anon_sym__Atomic] = ACTIONS(2432), + [anon_sym__Noreturn] = ACTIONS(2432), + [anon_sym__Nonnull] = ACTIONS(2432), + [anon_sym_nullable] = ACTIONS(2432), + [anon_sym__Complex] = ACTIONS(2432), + [anon_sym__Nullable] = ACTIONS(2432), + [anon_sym__Nullable_result] = ACTIONS(2432), + [anon_sym__Null_unspecified] = ACTIONS(2432), + [anon_sym___autoreleasing] = ACTIONS(2432), + [anon_sym___block] = ACTIONS(2432), + [anon_sym___bridge] = ACTIONS(2432), + [anon_sym___bridge_retained] = ACTIONS(2432), + [anon_sym___bridge_transfer] = ACTIONS(2432), + [anon_sym___complex] = ACTIONS(2432), + [anon_sym___const] = ACTIONS(2432), + [anon_sym___imag] = ACTIONS(2432), + [anon_sym___kindof] = ACTIONS(2432), + [anon_sym___nonnull] = ACTIONS(2432), + [anon_sym___nullable] = ACTIONS(2432), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2432), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2432), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2432), + [anon_sym___real] = ACTIONS(2432), + [anon_sym___strong] = ACTIONS(2432), + [anon_sym___unsafe_unretained] = ACTIONS(2432), + [anon_sym___unused] = ACTIONS(2432), + [anon_sym___weak] = ACTIONS(2432), + [anon_sym_alignas] = ACTIONS(2432), + [anon_sym__Alignas] = ACTIONS(2432), + [sym_primitive_type] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_else] = ACTIONS(2432), + [anon_sym_switch] = ACTIONS(2432), + [anon_sym_case] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_in] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_goto] = ACTIONS(2432), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_sizeof] = ACTIONS(2432), + [anon_sym___alignof__] = ACTIONS(2432), + [anon_sym___alignof] = ACTIONS(2432), + [anon_sym__alignof] = ACTIONS(2432), + [anon_sym_alignof] = ACTIONS(2432), + [anon_sym__Alignof] = ACTIONS(2432), + [anon_sym_offsetof] = ACTIONS(2432), + [anon_sym__Generic] = ACTIONS(2432), + [anon_sym_asm] = ACTIONS(2432), + [anon_sym___asm__] = ACTIONS(2432), + [anon_sym___asm] = ACTIONS(2432), + [sym_number_literal] = ACTIONS(2434), + [anon_sym_L_SQUOTE] = ACTIONS(2434), + [anon_sym_u_SQUOTE] = ACTIONS(2434), + [anon_sym_U_SQUOTE] = ACTIONS(2434), + [anon_sym_u8_SQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_AT] = ACTIONS(2432), + [anon_sym_DQUOTE] = ACTIONS(2434), + [anon_sym_L_DQUOTE] = ACTIONS(2434), + [anon_sym_u_DQUOTE] = ACTIONS(2434), + [anon_sym_U_DQUOTE] = ACTIONS(2434), + [anon_sym_u8_DQUOTE] = ACTIONS(2434), + [sym_true] = ACTIONS(2432), + [sym_false] = ACTIONS(2432), + [anon_sym_NULL] = ACTIONS(2432), + [anon_sym_nullptr] = ACTIONS(2432), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2432), + [anon_sym___typeof] = ACTIONS(2432), + [anon_sym_typeof] = ACTIONS(2432), + [anon_sym_ATimport] = ACTIONS(2434), + [aux_sym_preproc_undef_token1] = ACTIONS(2432), + [anon_sym_POUND] = ACTIONS(2432), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2432), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2432), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2432), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2432), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE] = ACTIONS(2432), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_API_AVAILABLE] = ACTIONS(2432), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_API_DEPRECATED] = ACTIONS(2432), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2432), + [anon_sym___deprecated_msg] = ACTIONS(2432), + [anon_sym___deprecated_enum_msg] = ACTIONS(2432), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2432), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2432), + [anon_sym_ATprotocol] = ACTIONS(2434), + [anon_sym_ATinterface] = ACTIONS(2434), + [anon_sym_ATimplementation] = ACTIONS(2434), + [anon_sym_ATcompatibility_alias] = ACTIONS(2434), + [anon_sym_ATselector] = ACTIONS(2434), + [anon_sym_ATavailable] = ACTIONS(2434), + [anon_sym___builtin_available] = ACTIONS(2432), + [anon_sym_va_arg] = ACTIONS(2432), + [anon_sym_ATencode] = ACTIONS(2434), + [anon_sym_BOOL] = ACTIONS(2432), + [anon_sym_IMP] = ACTIONS(2432), + [anon_sym_SEL] = ACTIONS(2432), + [anon_sym_Class] = ACTIONS(2432), + [anon_sym_id] = ACTIONS(2432), + }, + [933] = { + [ts_builtin_sym_end] = ACTIONS(2430), + [sym_identifier] = ACTIONS(2428), + [aux_sym_preproc_include_token1] = ACTIONS(2428), + [aux_sym_preproc_include_token2] = ACTIONS(2428), + [aux_sym_preproc_def_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2428), + [sym_preproc_directive] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_STAR] = ACTIONS(2430), + [anon_sym_CARET] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym___cdecl] = ACTIONS(2428), + [anon_sym___clrcall] = ACTIONS(2428), + [anon_sym___stdcall] = ACTIONS(2428), + [anon_sym___fastcall] = ACTIONS(2428), + [anon_sym___thiscall] = ACTIONS(2428), + [anon_sym___vectorcall] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_ATautoreleasepool] = ACTIONS(2430), + [anon_sym_auto] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_CG_EXTERN] = ACTIONS(2428), + [anon_sym_CG_INLINE] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2428), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2428), + [anon_sym_IBOutlet] = ACTIONS(2428), + [anon_sym_IBInspectable] = ACTIONS(2428), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2428), + [anon_sym_NS_INLINE] = ACTIONS(2428), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2428), + [anon_sym_OBJC_EXPORT] = ACTIONS(2428), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_nullable] = ACTIONS(2428), + [anon_sym__Complex] = ACTIONS(2428), + [anon_sym__Nullable] = ACTIONS(2428), + [anon_sym__Nullable_result] = ACTIONS(2428), + [anon_sym__Null_unspecified] = ACTIONS(2428), + [anon_sym___autoreleasing] = ACTIONS(2428), + [anon_sym___block] = ACTIONS(2428), + [anon_sym___bridge] = ACTIONS(2428), + [anon_sym___bridge_retained] = ACTIONS(2428), + [anon_sym___bridge_transfer] = ACTIONS(2428), + [anon_sym___complex] = ACTIONS(2428), + [anon_sym___const] = ACTIONS(2428), + [anon_sym___imag] = ACTIONS(2428), + [anon_sym___kindof] = ACTIONS(2428), + [anon_sym___nonnull] = ACTIONS(2428), + [anon_sym___nullable] = ACTIONS(2428), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2428), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2428), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2428), + [anon_sym___real] = ACTIONS(2428), + [anon_sym___strong] = ACTIONS(2428), + [anon_sym___unsafe_unretained] = ACTIONS(2428), + [anon_sym___unused] = ACTIONS(2428), + [anon_sym___weak] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_else] = ACTIONS(2428), + [anon_sym_switch] = ACTIONS(2428), + [anon_sym_case] = ACTIONS(2428), + [anon_sym_default] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_do] = ACTIONS(2428), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_in] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_goto] = ACTIONS(2428), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_sizeof] = ACTIONS(2428), + [anon_sym___alignof__] = ACTIONS(2428), + [anon_sym___alignof] = ACTIONS(2428), + [anon_sym__alignof] = ACTIONS(2428), + [anon_sym_alignof] = ACTIONS(2428), + [anon_sym__Alignof] = ACTIONS(2428), + [anon_sym_offsetof] = ACTIONS(2428), + [anon_sym__Generic] = ACTIONS(2428), + [anon_sym_asm] = ACTIONS(2428), + [anon_sym___asm__] = ACTIONS(2428), + [anon_sym___asm] = ACTIONS(2428), + [sym_number_literal] = ACTIONS(2430), + [anon_sym_L_SQUOTE] = ACTIONS(2430), + [anon_sym_u_SQUOTE] = ACTIONS(2430), + [anon_sym_U_SQUOTE] = ACTIONS(2430), + [anon_sym_u8_SQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_AT] = ACTIONS(2428), + [anon_sym_DQUOTE] = ACTIONS(2430), + [anon_sym_L_DQUOTE] = ACTIONS(2430), + [anon_sym_u_DQUOTE] = ACTIONS(2430), + [anon_sym_U_DQUOTE] = ACTIONS(2430), + [anon_sym_u8_DQUOTE] = ACTIONS(2430), + [sym_true] = ACTIONS(2428), + [sym_false] = ACTIONS(2428), + [anon_sym_NULL] = ACTIONS(2428), + [anon_sym_nullptr] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2428), + [anon_sym___typeof] = ACTIONS(2428), + [anon_sym_typeof] = ACTIONS(2428), + [anon_sym_ATimport] = ACTIONS(2430), + [aux_sym_preproc_undef_token1] = ACTIONS(2428), + [anon_sym_POUND] = ACTIONS(2428), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2428), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2428), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2428), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2428), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE] = ACTIONS(2428), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_API_AVAILABLE] = ACTIONS(2428), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_API_DEPRECATED] = ACTIONS(2428), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2428), + [anon_sym___deprecated_msg] = ACTIONS(2428), + [anon_sym___deprecated_enum_msg] = ACTIONS(2428), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2428), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2428), + [anon_sym_ATprotocol] = ACTIONS(2430), + [anon_sym_ATinterface] = ACTIONS(2430), + [anon_sym_ATimplementation] = ACTIONS(2430), + [anon_sym_ATcompatibility_alias] = ACTIONS(2430), + [anon_sym_ATselector] = ACTIONS(2430), + [anon_sym_ATavailable] = ACTIONS(2430), + [anon_sym___builtin_available] = ACTIONS(2428), + [anon_sym_va_arg] = ACTIONS(2428), + [anon_sym_ATencode] = ACTIONS(2430), + [anon_sym_BOOL] = ACTIONS(2428), + [anon_sym_IMP] = ACTIONS(2428), + [anon_sym_SEL] = ACTIONS(2428), + [anon_sym_Class] = ACTIONS(2428), + [anon_sym_id] = ACTIONS(2428), + }, + [934] = { + [ts_builtin_sym_end] = ACTIONS(2534), + [sym_identifier] = ACTIONS(2532), + [aux_sym_preproc_include_token1] = ACTIONS(2532), + [aux_sym_preproc_include_token2] = ACTIONS(2532), + [aux_sym_preproc_def_token1] = ACTIONS(2532), + [aux_sym_preproc_if_token1] = ACTIONS(2532), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2532), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2532), + [sym_preproc_directive] = ACTIONS(2532), + [anon_sym_LPAREN2] = ACTIONS(2534), + [anon_sym_BANG] = ACTIONS(2534), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2532), + [anon_sym_STAR] = ACTIONS(2534), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2534), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym___extension__] = ACTIONS(2532), + [anon_sym_typedef] = ACTIONS(2532), + [anon_sym_extern] = ACTIONS(2532), + [anon_sym___attribute__] = ACTIONS(2532), + [anon_sym___attribute] = ACTIONS(2532), + [anon_sym_noreturn] = ACTIONS(2532), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym___declspec] = ACTIONS(2532), + [anon_sym___cdecl] = ACTIONS(2532), + [anon_sym___clrcall] = ACTIONS(2532), + [anon_sym___stdcall] = ACTIONS(2532), + [anon_sym___fastcall] = ACTIONS(2532), + [anon_sym___thiscall] = ACTIONS(2532), + [anon_sym___vectorcall] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_signed] = ACTIONS(2532), + [anon_sym_unsigned] = ACTIONS(2532), + [anon_sym_long] = ACTIONS(2532), + [anon_sym_short] = ACTIONS(2532), + [anon_sym_static] = ACTIONS(2532), + [anon_sym_ATautoreleasepool] = ACTIONS(2534), + [anon_sym_auto] = ACTIONS(2532), + [anon_sym_register] = ACTIONS(2532), + [anon_sym_inline] = ACTIONS(2532), + [anon_sym___inline] = ACTIONS(2532), + [anon_sym___inline__] = ACTIONS(2532), + [anon_sym___forceinline] = ACTIONS(2532), + [anon_sym_thread_local] = ACTIONS(2532), + [anon_sym___thread] = ACTIONS(2532), + [anon_sym_CG_EXTERN] = ACTIONS(2532), + [anon_sym_CG_INLINE] = ACTIONS(2532), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2532), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2532), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2532), + [anon_sym_IBOutlet] = ACTIONS(2532), + [anon_sym_IBInspectable] = ACTIONS(2532), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2532), + [anon_sym_NS_INLINE] = ACTIONS(2532), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2532), + [anon_sym_OBJC_EXPORT] = ACTIONS(2532), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2532), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2532), + [anon_sym_const] = ACTIONS(2532), + [anon_sym_constexpr] = ACTIONS(2532), + [anon_sym_volatile] = ACTIONS(2532), + [anon_sym_restrict] = ACTIONS(2532), + [anon_sym___restrict__] = ACTIONS(2532), + [anon_sym__Atomic] = ACTIONS(2532), + [anon_sym__Noreturn] = ACTIONS(2532), + [anon_sym__Nonnull] = ACTIONS(2532), + [anon_sym_nullable] = ACTIONS(2532), + [anon_sym__Complex] = ACTIONS(2532), + [anon_sym__Nullable] = ACTIONS(2532), + [anon_sym__Nullable_result] = ACTIONS(2532), + [anon_sym__Null_unspecified] = ACTIONS(2532), + [anon_sym___autoreleasing] = ACTIONS(2532), + [anon_sym___block] = ACTIONS(2532), + [anon_sym___bridge] = ACTIONS(2532), + [anon_sym___bridge_retained] = ACTIONS(2532), + [anon_sym___bridge_transfer] = ACTIONS(2532), + [anon_sym___complex] = ACTIONS(2532), + [anon_sym___const] = ACTIONS(2532), + [anon_sym___imag] = ACTIONS(2532), + [anon_sym___kindof] = ACTIONS(2532), + [anon_sym___nonnull] = ACTIONS(2532), + [anon_sym___nullable] = ACTIONS(2532), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2532), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2532), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2532), + [anon_sym___real] = ACTIONS(2532), + [anon_sym___strong] = ACTIONS(2532), + [anon_sym___unsafe_unretained] = ACTIONS(2532), + [anon_sym___unused] = ACTIONS(2532), + [anon_sym___weak] = ACTIONS(2532), + [anon_sym_alignas] = ACTIONS(2532), + [anon_sym__Alignas] = ACTIONS(2532), + [sym_primitive_type] = ACTIONS(2532), + [anon_sym_enum] = ACTIONS(2532), + [anon_sym_struct] = ACTIONS(2532), + [anon_sym_union] = ACTIONS(2532), + [anon_sym_if] = ACTIONS(2532), + [anon_sym_else] = ACTIONS(2532), + [anon_sym_switch] = ACTIONS(2532), + [anon_sym_case] = ACTIONS(2532), + [anon_sym_default] = ACTIONS(2532), + [anon_sym_while] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_for] = ACTIONS(2532), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_return] = ACTIONS(2532), + [anon_sym_break] = ACTIONS(2532), + [anon_sym_continue] = ACTIONS(2532), + [anon_sym_goto] = ACTIONS(2532), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), + [anon_sym_sizeof] = ACTIONS(2532), + [anon_sym___alignof__] = ACTIONS(2532), + [anon_sym___alignof] = ACTIONS(2532), + [anon_sym__alignof] = ACTIONS(2532), + [anon_sym_alignof] = ACTIONS(2532), + [anon_sym__Alignof] = ACTIONS(2532), + [anon_sym_offsetof] = ACTIONS(2532), + [anon_sym__Generic] = ACTIONS(2532), + [anon_sym_asm] = ACTIONS(2532), + [anon_sym___asm__] = ACTIONS(2532), + [anon_sym___asm] = ACTIONS(2532), + [sym_number_literal] = ACTIONS(2534), + [anon_sym_L_SQUOTE] = ACTIONS(2534), + [anon_sym_u_SQUOTE] = ACTIONS(2534), + [anon_sym_U_SQUOTE] = ACTIONS(2534), + [anon_sym_u8_SQUOTE] = ACTIONS(2534), + [anon_sym_SQUOTE] = ACTIONS(2534), + [anon_sym_AT] = ACTIONS(2532), + [anon_sym_DQUOTE] = ACTIONS(2534), + [anon_sym_L_DQUOTE] = ACTIONS(2534), + [anon_sym_u_DQUOTE] = ACTIONS(2534), + [anon_sym_U_DQUOTE] = ACTIONS(2534), + [anon_sym_u8_DQUOTE] = ACTIONS(2534), + [sym_true] = ACTIONS(2532), + [sym_false] = ACTIONS(2532), + [anon_sym_NULL] = ACTIONS(2532), + [anon_sym_nullptr] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2532), + [anon_sym___typeof] = ACTIONS(2532), + [anon_sym_typeof] = ACTIONS(2532), + [anon_sym_ATimport] = ACTIONS(2534), + [aux_sym_preproc_undef_token1] = ACTIONS(2532), + [anon_sym_POUND] = ACTIONS(2532), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2532), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2532), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2532), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2532), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2532), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2532), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2532), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2532), + [anon_sym_NS_AVAILABLE] = ACTIONS(2532), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2532), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_API_AVAILABLE] = ACTIONS(2532), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_API_DEPRECATED] = ACTIONS(2532), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2532), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2532), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2532), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2532), + [anon_sym___deprecated_msg] = ACTIONS(2532), + [anon_sym___deprecated_enum_msg] = ACTIONS(2532), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2532), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2532), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2532), + [anon_sym_ATprotocol] = ACTIONS(2534), + [anon_sym_ATinterface] = ACTIONS(2534), + [anon_sym_ATimplementation] = ACTIONS(2534), + [anon_sym_ATcompatibility_alias] = ACTIONS(2534), + [anon_sym_ATselector] = ACTIONS(2534), + [anon_sym_ATavailable] = ACTIONS(2534), + [anon_sym___builtin_available] = ACTIONS(2532), + [anon_sym_va_arg] = ACTIONS(2532), + [anon_sym_ATencode] = ACTIONS(2534), + [anon_sym_BOOL] = ACTIONS(2532), + [anon_sym_IMP] = ACTIONS(2532), + [anon_sym_SEL] = ACTIONS(2532), + [anon_sym_Class] = ACTIONS(2532), + [anon_sym_id] = ACTIONS(2532), + }, + [935] = { + [ts_builtin_sym_end] = ACTIONS(2550), + [sym_identifier] = ACTIONS(2548), + [aux_sym_preproc_include_token1] = ACTIONS(2548), + [aux_sym_preproc_include_token2] = ACTIONS(2548), + [aux_sym_preproc_def_token1] = ACTIONS(2548), + [aux_sym_preproc_if_token1] = ACTIONS(2548), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2548), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2548), + [sym_preproc_directive] = ACTIONS(2548), + [anon_sym_LPAREN2] = ACTIONS(2550), + [anon_sym_BANG] = ACTIONS(2550), + [anon_sym_TILDE] = ACTIONS(2550), + [anon_sym_DASH] = ACTIONS(2548), + [anon_sym_PLUS] = ACTIONS(2548), + [anon_sym_STAR] = ACTIONS(2550), + [anon_sym_CARET] = ACTIONS(2550), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_SEMI] = ACTIONS(2550), + [anon_sym___extension__] = ACTIONS(2548), + [anon_sym_typedef] = ACTIONS(2548), + [anon_sym_extern] = ACTIONS(2548), + [anon_sym___attribute__] = ACTIONS(2548), + [anon_sym___attribute] = ACTIONS(2548), + [anon_sym_noreturn] = ACTIONS(2548), + [anon_sym_LBRACK] = ACTIONS(2550), + [anon_sym___declspec] = ACTIONS(2548), + [anon_sym___cdecl] = ACTIONS(2548), + [anon_sym___clrcall] = ACTIONS(2548), + [anon_sym___stdcall] = ACTIONS(2548), + [anon_sym___fastcall] = ACTIONS(2548), + [anon_sym___thiscall] = ACTIONS(2548), + [anon_sym___vectorcall] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2550), + [anon_sym_signed] = ACTIONS(2548), + [anon_sym_unsigned] = ACTIONS(2548), + [anon_sym_long] = ACTIONS(2548), + [anon_sym_short] = ACTIONS(2548), + [anon_sym_static] = ACTIONS(2548), + [anon_sym_ATautoreleasepool] = ACTIONS(2550), + [anon_sym_auto] = ACTIONS(2548), + [anon_sym_register] = ACTIONS(2548), + [anon_sym_inline] = ACTIONS(2548), + [anon_sym___inline] = ACTIONS(2548), + [anon_sym___inline__] = ACTIONS(2548), + [anon_sym___forceinline] = ACTIONS(2548), + [anon_sym_thread_local] = ACTIONS(2548), + [anon_sym___thread] = ACTIONS(2548), + [anon_sym_CG_EXTERN] = ACTIONS(2548), + [anon_sym_CG_INLINE] = ACTIONS(2548), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2548), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2548), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2548), + [anon_sym_IBOutlet] = ACTIONS(2548), + [anon_sym_IBInspectable] = ACTIONS(2548), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2548), + [anon_sym_NS_INLINE] = ACTIONS(2548), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2548), + [anon_sym_OBJC_EXPORT] = ACTIONS(2548), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2548), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2548), + [anon_sym_const] = ACTIONS(2548), + [anon_sym_constexpr] = ACTIONS(2548), + [anon_sym_volatile] = ACTIONS(2548), + [anon_sym_restrict] = ACTIONS(2548), + [anon_sym___restrict__] = ACTIONS(2548), + [anon_sym__Atomic] = ACTIONS(2548), + [anon_sym__Noreturn] = ACTIONS(2548), + [anon_sym__Nonnull] = ACTIONS(2548), + [anon_sym_nullable] = ACTIONS(2548), + [anon_sym__Complex] = ACTIONS(2548), + [anon_sym__Nullable] = ACTIONS(2548), + [anon_sym__Nullable_result] = ACTIONS(2548), + [anon_sym__Null_unspecified] = ACTIONS(2548), + [anon_sym___autoreleasing] = ACTIONS(2548), + [anon_sym___block] = ACTIONS(2548), + [anon_sym___bridge] = ACTIONS(2548), + [anon_sym___bridge_retained] = ACTIONS(2548), + [anon_sym___bridge_transfer] = ACTIONS(2548), + [anon_sym___complex] = ACTIONS(2548), + [anon_sym___const] = ACTIONS(2548), + [anon_sym___imag] = ACTIONS(2548), + [anon_sym___kindof] = ACTIONS(2548), + [anon_sym___nonnull] = ACTIONS(2548), + [anon_sym___nullable] = ACTIONS(2548), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2548), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2548), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2548), + [anon_sym___real] = ACTIONS(2548), + [anon_sym___strong] = ACTIONS(2548), + [anon_sym___unsafe_unretained] = ACTIONS(2548), + [anon_sym___unused] = ACTIONS(2548), + [anon_sym___weak] = ACTIONS(2548), + [anon_sym_alignas] = ACTIONS(2548), + [anon_sym__Alignas] = ACTIONS(2548), + [sym_primitive_type] = ACTIONS(2548), + [anon_sym_enum] = ACTIONS(2548), + [anon_sym_struct] = ACTIONS(2548), + [anon_sym_union] = ACTIONS(2548), + [anon_sym_if] = ACTIONS(2548), + [anon_sym_else] = ACTIONS(2548), + [anon_sym_switch] = ACTIONS(2548), + [anon_sym_case] = ACTIONS(2548), + [anon_sym_default] = ACTIONS(2548), + [anon_sym_while] = ACTIONS(2548), + [anon_sym_do] = ACTIONS(2548), + [anon_sym_for] = ACTIONS(2548), + [anon_sym_in] = ACTIONS(2548), + [anon_sym_return] = ACTIONS(2548), + [anon_sym_break] = ACTIONS(2548), + [anon_sym_continue] = ACTIONS(2548), + [anon_sym_goto] = ACTIONS(2548), + [anon_sym_DASH_DASH] = ACTIONS(2550), + [anon_sym_PLUS_PLUS] = ACTIONS(2550), + [anon_sym_sizeof] = ACTIONS(2548), + [anon_sym___alignof__] = ACTIONS(2548), + [anon_sym___alignof] = ACTIONS(2548), + [anon_sym__alignof] = ACTIONS(2548), + [anon_sym_alignof] = ACTIONS(2548), + [anon_sym__Alignof] = ACTIONS(2548), + [anon_sym_offsetof] = ACTIONS(2548), + [anon_sym__Generic] = ACTIONS(2548), + [anon_sym_asm] = ACTIONS(2548), + [anon_sym___asm__] = ACTIONS(2548), + [anon_sym___asm] = ACTIONS(2548), + [sym_number_literal] = ACTIONS(2550), + [anon_sym_L_SQUOTE] = ACTIONS(2550), + [anon_sym_u_SQUOTE] = ACTIONS(2550), + [anon_sym_U_SQUOTE] = ACTIONS(2550), + [anon_sym_u8_SQUOTE] = ACTIONS(2550), + [anon_sym_SQUOTE] = ACTIONS(2550), + [anon_sym_AT] = ACTIONS(2548), + [anon_sym_DQUOTE] = ACTIONS(2550), + [anon_sym_L_DQUOTE] = ACTIONS(2550), + [anon_sym_u_DQUOTE] = ACTIONS(2550), + [anon_sym_U_DQUOTE] = ACTIONS(2550), + [anon_sym_u8_DQUOTE] = ACTIONS(2550), + [sym_true] = ACTIONS(2548), + [sym_false] = ACTIONS(2548), + [anon_sym_NULL] = ACTIONS(2548), + [anon_sym_nullptr] = ACTIONS(2548), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2548), + [anon_sym___typeof] = ACTIONS(2548), + [anon_sym_typeof] = ACTIONS(2548), + [anon_sym_ATimport] = ACTIONS(2550), + [aux_sym_preproc_undef_token1] = ACTIONS(2548), + [anon_sym_POUND] = ACTIONS(2548), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2548), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2548), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2548), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2548), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2548), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2548), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2548), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2548), + [anon_sym_NS_AVAILABLE] = ACTIONS(2548), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2548), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_API_AVAILABLE] = ACTIONS(2548), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_API_DEPRECATED] = ACTIONS(2548), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2548), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2548), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2548), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2548), + [anon_sym___deprecated_msg] = ACTIONS(2548), + [anon_sym___deprecated_enum_msg] = ACTIONS(2548), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2548), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2548), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2548), + [anon_sym_ATprotocol] = ACTIONS(2550), + [anon_sym_ATinterface] = ACTIONS(2550), + [anon_sym_ATimplementation] = ACTIONS(2550), + [anon_sym_ATcompatibility_alias] = ACTIONS(2550), + [anon_sym_ATselector] = ACTIONS(2550), + [anon_sym_ATavailable] = ACTIONS(2550), + [anon_sym___builtin_available] = ACTIONS(2548), + [anon_sym_va_arg] = ACTIONS(2548), + [anon_sym_ATencode] = ACTIONS(2550), + [anon_sym_BOOL] = ACTIONS(2548), + [anon_sym_IMP] = ACTIONS(2548), + [anon_sym_SEL] = ACTIONS(2548), + [anon_sym_Class] = ACTIONS(2548), + [anon_sym_id] = ACTIONS(2548), + }, + [936] = { + [ts_builtin_sym_end] = ACTIONS(2296), + [sym_identifier] = ACTIONS(2294), + [aux_sym_preproc_include_token1] = ACTIONS(2294), + [aux_sym_preproc_include_token2] = ACTIONS(2294), + [aux_sym_preproc_def_token1] = ACTIONS(2294), + [aux_sym_preproc_if_token1] = ACTIONS(2294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2294), + [sym_preproc_directive] = ACTIONS(2294), + [anon_sym_LPAREN2] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_STAR] = ACTIONS(2296), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym___extension__] = ACTIONS(2294), + [anon_sym_typedef] = ACTIONS(2294), + [anon_sym_extern] = ACTIONS(2294), + [anon_sym___attribute__] = ACTIONS(2294), + [anon_sym___attribute] = ACTIONS(2294), + [anon_sym_noreturn] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym___declspec] = ACTIONS(2294), + [anon_sym___cdecl] = ACTIONS(2294), + [anon_sym___clrcall] = ACTIONS(2294), + [anon_sym___stdcall] = ACTIONS(2294), + [anon_sym___fastcall] = ACTIONS(2294), + [anon_sym___thiscall] = ACTIONS(2294), + [anon_sym___vectorcall] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_signed] = ACTIONS(2294), + [anon_sym_unsigned] = ACTIONS(2294), + [anon_sym_long] = ACTIONS(2294), + [anon_sym_short] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_ATautoreleasepool] = ACTIONS(2296), + [anon_sym_auto] = ACTIONS(2294), + [anon_sym_register] = ACTIONS(2294), + [anon_sym_inline] = ACTIONS(2294), + [anon_sym___inline] = ACTIONS(2294), + [anon_sym___inline__] = ACTIONS(2294), + [anon_sym___forceinline] = ACTIONS(2294), + [anon_sym_thread_local] = ACTIONS(2294), + [anon_sym___thread] = ACTIONS(2294), + [anon_sym_CG_EXTERN] = ACTIONS(2294), + [anon_sym_CG_INLINE] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2294), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2294), + [anon_sym_IBOutlet] = ACTIONS(2294), + [anon_sym_IBInspectable] = ACTIONS(2294), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2294), + [anon_sym_NS_INLINE] = ACTIONS(2294), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2294), + [anon_sym_OBJC_EXPORT] = ACTIONS(2294), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [anon_sym_constexpr] = ACTIONS(2294), + [anon_sym_volatile] = ACTIONS(2294), + [anon_sym_restrict] = ACTIONS(2294), + [anon_sym___restrict__] = ACTIONS(2294), + [anon_sym__Atomic] = ACTIONS(2294), + [anon_sym__Noreturn] = ACTIONS(2294), + [anon_sym__Nonnull] = ACTIONS(2294), + [anon_sym_nullable] = ACTIONS(2294), + [anon_sym__Complex] = ACTIONS(2294), + [anon_sym__Nullable] = ACTIONS(2294), + [anon_sym__Nullable_result] = ACTIONS(2294), + [anon_sym__Null_unspecified] = ACTIONS(2294), + [anon_sym___autoreleasing] = ACTIONS(2294), + [anon_sym___block] = ACTIONS(2294), + [anon_sym___bridge] = ACTIONS(2294), + [anon_sym___bridge_retained] = ACTIONS(2294), + [anon_sym___bridge_transfer] = ACTIONS(2294), + [anon_sym___complex] = ACTIONS(2294), + [anon_sym___const] = ACTIONS(2294), + [anon_sym___imag] = ACTIONS(2294), + [anon_sym___kindof] = ACTIONS(2294), + [anon_sym___nonnull] = ACTIONS(2294), + [anon_sym___nullable] = ACTIONS(2294), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2294), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2294), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2294), + [anon_sym___real] = ACTIONS(2294), + [anon_sym___strong] = ACTIONS(2294), + [anon_sym___unsafe_unretained] = ACTIONS(2294), + [anon_sym___unused] = ACTIONS(2294), + [anon_sym___weak] = ACTIONS(2294), + [anon_sym_alignas] = ACTIONS(2294), + [anon_sym__Alignas] = ACTIONS(2294), + [sym_primitive_type] = ACTIONS(2294), + [anon_sym_enum] = ACTIONS(2294), + [anon_sym_struct] = ACTIONS(2294), + [anon_sym_union] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_switch] = ACTIONS(2294), + [anon_sym_case] = ACTIONS(2294), + [anon_sym_default] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_goto] = ACTIONS(2294), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_sizeof] = ACTIONS(2294), + [anon_sym___alignof__] = ACTIONS(2294), + [anon_sym___alignof] = ACTIONS(2294), + [anon_sym__alignof] = ACTIONS(2294), + [anon_sym_alignof] = ACTIONS(2294), + [anon_sym__Alignof] = ACTIONS(2294), + [anon_sym_offsetof] = ACTIONS(2294), + [anon_sym__Generic] = ACTIONS(2294), + [anon_sym_asm] = ACTIONS(2294), + [anon_sym___asm__] = ACTIONS(2294), + [anon_sym___asm] = ACTIONS(2294), + [sym_number_literal] = ACTIONS(2296), + [anon_sym_L_SQUOTE] = ACTIONS(2296), + [anon_sym_u_SQUOTE] = ACTIONS(2296), + [anon_sym_U_SQUOTE] = ACTIONS(2296), + [anon_sym_u8_SQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_L_DQUOTE] = ACTIONS(2296), + [anon_sym_u_DQUOTE] = ACTIONS(2296), + [anon_sym_U_DQUOTE] = ACTIONS(2296), + [anon_sym_u8_DQUOTE] = ACTIONS(2296), + [sym_true] = ACTIONS(2294), + [sym_false] = ACTIONS(2294), + [anon_sym_NULL] = ACTIONS(2294), + [anon_sym_nullptr] = ACTIONS(2294), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2294), + [anon_sym___typeof] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(2294), + [anon_sym_ATimport] = ACTIONS(2296), + [aux_sym_preproc_undef_token1] = ACTIONS(2294), + [anon_sym_POUND] = ACTIONS(2294), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2294), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2294), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2294), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2294), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE] = ACTIONS(2294), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_API_AVAILABLE] = ACTIONS(2294), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_API_DEPRECATED] = ACTIONS(2294), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2294), + [anon_sym___deprecated_msg] = ACTIONS(2294), + [anon_sym___deprecated_enum_msg] = ACTIONS(2294), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2294), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2294), + [anon_sym_ATprotocol] = ACTIONS(2296), + [anon_sym_ATinterface] = ACTIONS(2296), + [anon_sym_ATimplementation] = ACTIONS(2296), + [anon_sym_ATcompatibility_alias] = ACTIONS(2296), + [anon_sym_ATselector] = ACTIONS(2296), + [anon_sym_ATavailable] = ACTIONS(2296), + [anon_sym___builtin_available] = ACTIONS(2294), + [anon_sym_va_arg] = ACTIONS(2294), + [anon_sym_ATencode] = ACTIONS(2296), + [anon_sym_BOOL] = ACTIONS(2294), + [anon_sym_IMP] = ACTIONS(2294), + [anon_sym_SEL] = ACTIONS(2294), + [anon_sym_Class] = ACTIONS(2294), + [anon_sym_id] = ACTIONS(2294), + }, + [937] = { + [ts_builtin_sym_end] = ACTIONS(2538), + [sym_identifier] = ACTIONS(2536), + [aux_sym_preproc_include_token1] = ACTIONS(2536), + [aux_sym_preproc_include_token2] = ACTIONS(2536), + [aux_sym_preproc_def_token1] = ACTIONS(2536), + [aux_sym_preproc_if_token1] = ACTIONS(2536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2536), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2536), + [sym_preproc_directive] = ACTIONS(2536), + [anon_sym_LPAREN2] = ACTIONS(2538), + [anon_sym_BANG] = ACTIONS(2538), + [anon_sym_TILDE] = ACTIONS(2538), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_STAR] = ACTIONS(2538), + [anon_sym_CARET] = ACTIONS(2538), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_SEMI] = ACTIONS(2538), + [anon_sym___extension__] = ACTIONS(2536), + [anon_sym_typedef] = ACTIONS(2536), + [anon_sym_extern] = ACTIONS(2536), + [anon_sym___attribute__] = ACTIONS(2536), + [anon_sym___attribute] = ACTIONS(2536), + [anon_sym_noreturn] = ACTIONS(2536), + [anon_sym_LBRACK] = ACTIONS(2538), + [anon_sym___declspec] = ACTIONS(2536), + [anon_sym___cdecl] = ACTIONS(2536), + [anon_sym___clrcall] = ACTIONS(2536), + [anon_sym___stdcall] = ACTIONS(2536), + [anon_sym___fastcall] = ACTIONS(2536), + [anon_sym___thiscall] = ACTIONS(2536), + [anon_sym___vectorcall] = ACTIONS(2536), + [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_signed] = ACTIONS(2536), + [anon_sym_unsigned] = ACTIONS(2536), + [anon_sym_long] = ACTIONS(2536), + [anon_sym_short] = ACTIONS(2536), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_ATautoreleasepool] = ACTIONS(2538), + [anon_sym_auto] = ACTIONS(2536), + [anon_sym_register] = ACTIONS(2536), + [anon_sym_inline] = ACTIONS(2536), + [anon_sym___inline] = ACTIONS(2536), + [anon_sym___inline__] = ACTIONS(2536), + [anon_sym___forceinline] = ACTIONS(2536), + [anon_sym_thread_local] = ACTIONS(2536), + [anon_sym___thread] = ACTIONS(2536), + [anon_sym_CG_EXTERN] = ACTIONS(2536), + [anon_sym_CG_INLINE] = ACTIONS(2536), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2536), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2536), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2536), + [anon_sym_IBOutlet] = ACTIONS(2536), + [anon_sym_IBInspectable] = ACTIONS(2536), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2536), + [anon_sym_NS_INLINE] = ACTIONS(2536), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2536), + [anon_sym_OBJC_EXPORT] = ACTIONS(2536), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2536), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2536), + [anon_sym_const] = ACTIONS(2536), + [anon_sym_constexpr] = ACTIONS(2536), + [anon_sym_volatile] = ACTIONS(2536), + [anon_sym_restrict] = ACTIONS(2536), + [anon_sym___restrict__] = ACTIONS(2536), + [anon_sym__Atomic] = ACTIONS(2536), + [anon_sym__Noreturn] = ACTIONS(2536), + [anon_sym__Nonnull] = ACTIONS(2536), + [anon_sym_nullable] = ACTIONS(2536), + [anon_sym__Complex] = ACTIONS(2536), + [anon_sym__Nullable] = ACTIONS(2536), + [anon_sym__Nullable_result] = ACTIONS(2536), + [anon_sym__Null_unspecified] = ACTIONS(2536), + [anon_sym___autoreleasing] = ACTIONS(2536), + [anon_sym___block] = ACTIONS(2536), + [anon_sym___bridge] = ACTIONS(2536), + [anon_sym___bridge_retained] = ACTIONS(2536), + [anon_sym___bridge_transfer] = ACTIONS(2536), + [anon_sym___complex] = ACTIONS(2536), + [anon_sym___const] = ACTIONS(2536), + [anon_sym___imag] = ACTIONS(2536), + [anon_sym___kindof] = ACTIONS(2536), + [anon_sym___nonnull] = ACTIONS(2536), + [anon_sym___nullable] = ACTIONS(2536), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2536), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2536), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2536), + [anon_sym___real] = ACTIONS(2536), + [anon_sym___strong] = ACTIONS(2536), + [anon_sym___unsafe_unretained] = ACTIONS(2536), + [anon_sym___unused] = ACTIONS(2536), + [anon_sym___weak] = ACTIONS(2536), + [anon_sym_alignas] = ACTIONS(2536), + [anon_sym__Alignas] = ACTIONS(2536), + [sym_primitive_type] = ACTIONS(2536), + [anon_sym_enum] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2536), + [anon_sym_union] = ACTIONS(2536), + [anon_sym_if] = ACTIONS(2536), + [anon_sym_else] = ACTIONS(2536), + [anon_sym_switch] = ACTIONS(2536), + [anon_sym_case] = ACTIONS(2536), + [anon_sym_default] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2536), + [anon_sym_do] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2536), + [anon_sym_in] = ACTIONS(2536), + [anon_sym_return] = ACTIONS(2536), + [anon_sym_break] = ACTIONS(2536), + [anon_sym_continue] = ACTIONS(2536), + [anon_sym_goto] = ACTIONS(2536), + [anon_sym_DASH_DASH] = ACTIONS(2538), + [anon_sym_PLUS_PLUS] = ACTIONS(2538), + [anon_sym_sizeof] = ACTIONS(2536), + [anon_sym___alignof__] = ACTIONS(2536), + [anon_sym___alignof] = ACTIONS(2536), + [anon_sym__alignof] = ACTIONS(2536), + [anon_sym_alignof] = ACTIONS(2536), + [anon_sym__Alignof] = ACTIONS(2536), + [anon_sym_offsetof] = ACTIONS(2536), + [anon_sym__Generic] = ACTIONS(2536), + [anon_sym_asm] = ACTIONS(2536), + [anon_sym___asm__] = ACTIONS(2536), + [anon_sym___asm] = ACTIONS(2536), + [sym_number_literal] = ACTIONS(2538), + [anon_sym_L_SQUOTE] = ACTIONS(2538), + [anon_sym_u_SQUOTE] = ACTIONS(2538), + [anon_sym_U_SQUOTE] = ACTIONS(2538), + [anon_sym_u8_SQUOTE] = ACTIONS(2538), + [anon_sym_SQUOTE] = ACTIONS(2538), + [anon_sym_AT] = ACTIONS(2536), + [anon_sym_DQUOTE] = ACTIONS(2538), + [anon_sym_L_DQUOTE] = ACTIONS(2538), + [anon_sym_u_DQUOTE] = ACTIONS(2538), + [anon_sym_U_DQUOTE] = ACTIONS(2538), + [anon_sym_u8_DQUOTE] = ACTIONS(2538), + [sym_true] = ACTIONS(2536), + [sym_false] = ACTIONS(2536), + [anon_sym_NULL] = ACTIONS(2536), + [anon_sym_nullptr] = ACTIONS(2536), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2536), + [anon_sym___typeof] = ACTIONS(2536), + [anon_sym_typeof] = ACTIONS(2536), + [anon_sym_ATimport] = ACTIONS(2538), + [aux_sym_preproc_undef_token1] = ACTIONS(2536), + [anon_sym_POUND] = ACTIONS(2536), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2536), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2536), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2536), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2536), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2536), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2536), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2536), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2536), + [anon_sym_NS_AVAILABLE] = ACTIONS(2536), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2536), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_API_AVAILABLE] = ACTIONS(2536), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_API_DEPRECATED] = ACTIONS(2536), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2536), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2536), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2536), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2536), + [anon_sym___deprecated_msg] = ACTIONS(2536), + [anon_sym___deprecated_enum_msg] = ACTIONS(2536), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2536), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2536), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2536), + [anon_sym_ATprotocol] = ACTIONS(2538), + [anon_sym_ATinterface] = ACTIONS(2538), + [anon_sym_ATimplementation] = ACTIONS(2538), + [anon_sym_ATcompatibility_alias] = ACTIONS(2538), + [anon_sym_ATselector] = ACTIONS(2538), + [anon_sym_ATavailable] = ACTIONS(2538), + [anon_sym___builtin_available] = ACTIONS(2536), + [anon_sym_va_arg] = ACTIONS(2536), + [anon_sym_ATencode] = ACTIONS(2538), + [anon_sym_BOOL] = ACTIONS(2536), + [anon_sym_IMP] = ACTIONS(2536), + [anon_sym_SEL] = ACTIONS(2536), + [anon_sym_Class] = ACTIONS(2536), + [anon_sym_id] = ACTIONS(2536), + }, + [938] = { + [ts_builtin_sym_end] = ACTIONS(2542), + [sym_identifier] = ACTIONS(2540), + [aux_sym_preproc_include_token1] = ACTIONS(2540), + [aux_sym_preproc_include_token2] = ACTIONS(2540), + [aux_sym_preproc_def_token1] = ACTIONS(2540), + [aux_sym_preproc_if_token1] = ACTIONS(2540), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2540), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2540), + [sym_preproc_directive] = ACTIONS(2540), + [anon_sym_LPAREN2] = ACTIONS(2542), + [anon_sym_BANG] = ACTIONS(2542), + [anon_sym_TILDE] = ACTIONS(2542), + [anon_sym_DASH] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2540), + [anon_sym_STAR] = ACTIONS(2542), + [anon_sym_CARET] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2542), + [anon_sym___extension__] = ACTIONS(2540), + [anon_sym_typedef] = ACTIONS(2540), + [anon_sym_extern] = ACTIONS(2540), + [anon_sym___attribute__] = ACTIONS(2540), + [anon_sym___attribute] = ACTIONS(2540), + [anon_sym_noreturn] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym___declspec] = ACTIONS(2540), + [anon_sym___cdecl] = ACTIONS(2540), + [anon_sym___clrcall] = ACTIONS(2540), + [anon_sym___stdcall] = ACTIONS(2540), + [anon_sym___fastcall] = ACTIONS(2540), + [anon_sym___thiscall] = ACTIONS(2540), + [anon_sym___vectorcall] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2542), + [anon_sym_signed] = ACTIONS(2540), + [anon_sym_unsigned] = ACTIONS(2540), + [anon_sym_long] = ACTIONS(2540), + [anon_sym_short] = ACTIONS(2540), + [anon_sym_static] = ACTIONS(2540), + [anon_sym_ATautoreleasepool] = ACTIONS(2542), + [anon_sym_auto] = ACTIONS(2540), + [anon_sym_register] = ACTIONS(2540), + [anon_sym_inline] = ACTIONS(2540), + [anon_sym___inline] = ACTIONS(2540), + [anon_sym___inline__] = ACTIONS(2540), + [anon_sym___forceinline] = ACTIONS(2540), + [anon_sym_thread_local] = ACTIONS(2540), + [anon_sym___thread] = ACTIONS(2540), + [anon_sym_CG_EXTERN] = ACTIONS(2540), + [anon_sym_CG_INLINE] = ACTIONS(2540), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2540), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2540), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2540), + [anon_sym_IBOutlet] = ACTIONS(2540), + [anon_sym_IBInspectable] = ACTIONS(2540), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2540), + [anon_sym_NS_INLINE] = ACTIONS(2540), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2540), + [anon_sym_OBJC_EXPORT] = ACTIONS(2540), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2540), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2540), + [anon_sym_const] = ACTIONS(2540), + [anon_sym_constexpr] = ACTIONS(2540), + [anon_sym_volatile] = ACTIONS(2540), + [anon_sym_restrict] = ACTIONS(2540), + [anon_sym___restrict__] = ACTIONS(2540), + [anon_sym__Atomic] = ACTIONS(2540), + [anon_sym__Noreturn] = ACTIONS(2540), + [anon_sym__Nonnull] = ACTIONS(2540), + [anon_sym_nullable] = ACTIONS(2540), + [anon_sym__Complex] = ACTIONS(2540), + [anon_sym__Nullable] = ACTIONS(2540), + [anon_sym__Nullable_result] = ACTIONS(2540), + [anon_sym__Null_unspecified] = ACTIONS(2540), + [anon_sym___autoreleasing] = ACTIONS(2540), + [anon_sym___block] = ACTIONS(2540), + [anon_sym___bridge] = ACTIONS(2540), + [anon_sym___bridge_retained] = ACTIONS(2540), + [anon_sym___bridge_transfer] = ACTIONS(2540), + [anon_sym___complex] = ACTIONS(2540), + [anon_sym___const] = ACTIONS(2540), + [anon_sym___imag] = ACTIONS(2540), + [anon_sym___kindof] = ACTIONS(2540), + [anon_sym___nonnull] = ACTIONS(2540), + [anon_sym___nullable] = ACTIONS(2540), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2540), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2540), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2540), + [anon_sym___real] = ACTIONS(2540), + [anon_sym___strong] = ACTIONS(2540), + [anon_sym___unsafe_unretained] = ACTIONS(2540), + [anon_sym___unused] = ACTIONS(2540), + [anon_sym___weak] = ACTIONS(2540), + [anon_sym_alignas] = ACTIONS(2540), + [anon_sym__Alignas] = ACTIONS(2540), + [sym_primitive_type] = ACTIONS(2540), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_struct] = ACTIONS(2540), + [anon_sym_union] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_else] = ACTIONS(2540), + [anon_sym_switch] = ACTIONS(2540), + [anon_sym_case] = ACTIONS(2540), + [anon_sym_default] = ACTIONS(2540), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_do] = ACTIONS(2540), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_in] = ACTIONS(2540), + [anon_sym_return] = ACTIONS(2540), + [anon_sym_break] = ACTIONS(2540), + [anon_sym_continue] = ACTIONS(2540), + [anon_sym_goto] = ACTIONS(2540), + [anon_sym_DASH_DASH] = ACTIONS(2542), + [anon_sym_PLUS_PLUS] = ACTIONS(2542), + [anon_sym_sizeof] = ACTIONS(2540), + [anon_sym___alignof__] = ACTIONS(2540), + [anon_sym___alignof] = ACTIONS(2540), + [anon_sym__alignof] = ACTIONS(2540), + [anon_sym_alignof] = ACTIONS(2540), + [anon_sym__Alignof] = ACTIONS(2540), + [anon_sym_offsetof] = ACTIONS(2540), + [anon_sym__Generic] = ACTIONS(2540), + [anon_sym_asm] = ACTIONS(2540), + [anon_sym___asm__] = ACTIONS(2540), + [anon_sym___asm] = ACTIONS(2540), + [sym_number_literal] = ACTIONS(2542), + [anon_sym_L_SQUOTE] = ACTIONS(2542), + [anon_sym_u_SQUOTE] = ACTIONS(2542), + [anon_sym_U_SQUOTE] = ACTIONS(2542), + [anon_sym_u8_SQUOTE] = ACTIONS(2542), + [anon_sym_SQUOTE] = ACTIONS(2542), + [anon_sym_AT] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2542), + [anon_sym_L_DQUOTE] = ACTIONS(2542), + [anon_sym_u_DQUOTE] = ACTIONS(2542), + [anon_sym_U_DQUOTE] = ACTIONS(2542), + [anon_sym_u8_DQUOTE] = ACTIONS(2542), + [sym_true] = ACTIONS(2540), + [sym_false] = ACTIONS(2540), + [anon_sym_NULL] = ACTIONS(2540), + [anon_sym_nullptr] = ACTIONS(2540), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2540), + [anon_sym___typeof] = ACTIONS(2540), + [anon_sym_typeof] = ACTIONS(2540), + [anon_sym_ATimport] = ACTIONS(2542), + [aux_sym_preproc_undef_token1] = ACTIONS(2540), + [anon_sym_POUND] = ACTIONS(2540), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2540), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2540), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2540), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2540), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2540), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2540), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2540), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2540), + [anon_sym_NS_AVAILABLE] = ACTIONS(2540), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2540), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_API_AVAILABLE] = ACTIONS(2540), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_API_DEPRECATED] = ACTIONS(2540), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2540), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2540), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2540), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2540), + [anon_sym___deprecated_msg] = ACTIONS(2540), + [anon_sym___deprecated_enum_msg] = ACTIONS(2540), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2540), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2540), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2540), + [anon_sym_ATprotocol] = ACTIONS(2542), + [anon_sym_ATinterface] = ACTIONS(2542), + [anon_sym_ATimplementation] = ACTIONS(2542), + [anon_sym_ATcompatibility_alias] = ACTIONS(2542), + [anon_sym_ATselector] = ACTIONS(2542), + [anon_sym_ATavailable] = ACTIONS(2542), + [anon_sym___builtin_available] = ACTIONS(2540), + [anon_sym_va_arg] = ACTIONS(2540), + [anon_sym_ATencode] = ACTIONS(2542), + [anon_sym_BOOL] = ACTIONS(2540), + [anon_sym_IMP] = ACTIONS(2540), + [anon_sym_SEL] = ACTIONS(2540), + [anon_sym_Class] = ACTIONS(2540), + [anon_sym_id] = ACTIONS(2540), + }, + [939] = { + [ts_builtin_sym_end] = ACTIONS(2546), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_include_token1] = ACTIONS(2544), + [aux_sym_preproc_include_token2] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(2544), + [aux_sym_preproc_if_token1] = ACTIONS(2544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2544), + [sym_preproc_directive] = ACTIONS(2544), + [anon_sym_LPAREN2] = ACTIONS(2546), + [anon_sym_BANG] = ACTIONS(2546), + [anon_sym_TILDE] = ACTIONS(2546), + [anon_sym_DASH] = ACTIONS(2544), + [anon_sym_PLUS] = ACTIONS(2544), + [anon_sym_STAR] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2546), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym___extension__] = ACTIONS(2544), + [anon_sym_typedef] = ACTIONS(2544), + [anon_sym_extern] = ACTIONS(2544), + [anon_sym___attribute__] = ACTIONS(2544), + [anon_sym___attribute] = ACTIONS(2544), + [anon_sym_noreturn] = ACTIONS(2544), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym___declspec] = ACTIONS(2544), + [anon_sym___cdecl] = ACTIONS(2544), + [anon_sym___clrcall] = ACTIONS(2544), + [anon_sym___stdcall] = ACTIONS(2544), + [anon_sym___fastcall] = ACTIONS(2544), + [anon_sym___thiscall] = ACTIONS(2544), + [anon_sym___vectorcall] = ACTIONS(2544), + [anon_sym_LBRACE] = ACTIONS(2546), + [anon_sym_signed] = ACTIONS(2544), + [anon_sym_unsigned] = ACTIONS(2544), + [anon_sym_long] = ACTIONS(2544), + [anon_sym_short] = ACTIONS(2544), + [anon_sym_static] = ACTIONS(2544), + [anon_sym_ATautoreleasepool] = ACTIONS(2546), + [anon_sym_auto] = ACTIONS(2544), + [anon_sym_register] = ACTIONS(2544), + [anon_sym_inline] = ACTIONS(2544), + [anon_sym___inline] = ACTIONS(2544), + [anon_sym___inline__] = ACTIONS(2544), + [anon_sym___forceinline] = ACTIONS(2544), + [anon_sym_thread_local] = ACTIONS(2544), + [anon_sym___thread] = ACTIONS(2544), + [anon_sym_CG_EXTERN] = ACTIONS(2544), + [anon_sym_CG_INLINE] = ACTIONS(2544), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2544), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2544), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2544), + [anon_sym_IBOutlet] = ACTIONS(2544), + [anon_sym_IBInspectable] = ACTIONS(2544), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2544), + [anon_sym_NS_INLINE] = ACTIONS(2544), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2544), + [anon_sym_OBJC_EXPORT] = ACTIONS(2544), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2544), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2544), + [anon_sym_const] = ACTIONS(2544), + [anon_sym_constexpr] = ACTIONS(2544), + [anon_sym_volatile] = ACTIONS(2544), + [anon_sym_restrict] = ACTIONS(2544), + [anon_sym___restrict__] = ACTIONS(2544), + [anon_sym__Atomic] = ACTIONS(2544), + [anon_sym__Noreturn] = ACTIONS(2544), + [anon_sym__Nonnull] = ACTIONS(2544), + [anon_sym_nullable] = ACTIONS(2544), + [anon_sym__Complex] = ACTIONS(2544), + [anon_sym__Nullable] = ACTIONS(2544), + [anon_sym__Nullable_result] = ACTIONS(2544), + [anon_sym__Null_unspecified] = ACTIONS(2544), + [anon_sym___autoreleasing] = ACTIONS(2544), + [anon_sym___block] = ACTIONS(2544), + [anon_sym___bridge] = ACTIONS(2544), + [anon_sym___bridge_retained] = ACTIONS(2544), + [anon_sym___bridge_transfer] = ACTIONS(2544), + [anon_sym___complex] = ACTIONS(2544), + [anon_sym___const] = ACTIONS(2544), + [anon_sym___imag] = ACTIONS(2544), + [anon_sym___kindof] = ACTIONS(2544), + [anon_sym___nonnull] = ACTIONS(2544), + [anon_sym___nullable] = ACTIONS(2544), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2544), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2544), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2544), + [anon_sym___real] = ACTIONS(2544), + [anon_sym___strong] = ACTIONS(2544), + [anon_sym___unsafe_unretained] = ACTIONS(2544), + [anon_sym___unused] = ACTIONS(2544), + [anon_sym___weak] = ACTIONS(2544), + [anon_sym_alignas] = ACTIONS(2544), + [anon_sym__Alignas] = ACTIONS(2544), + [sym_primitive_type] = ACTIONS(2544), + [anon_sym_enum] = ACTIONS(2544), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2544), + [anon_sym_if] = ACTIONS(2544), + [anon_sym_else] = ACTIONS(2544), + [anon_sym_switch] = ACTIONS(2544), + [anon_sym_case] = ACTIONS(2544), + [anon_sym_default] = ACTIONS(2544), + [anon_sym_while] = ACTIONS(2544), + [anon_sym_do] = ACTIONS(2544), + [anon_sym_for] = ACTIONS(2544), + [anon_sym_in] = ACTIONS(2544), + [anon_sym_return] = ACTIONS(2544), + [anon_sym_break] = ACTIONS(2544), + [anon_sym_continue] = ACTIONS(2544), + [anon_sym_goto] = ACTIONS(2544), + [anon_sym_DASH_DASH] = ACTIONS(2546), + [anon_sym_PLUS_PLUS] = ACTIONS(2546), + [anon_sym_sizeof] = ACTIONS(2544), + [anon_sym___alignof__] = ACTIONS(2544), + [anon_sym___alignof] = ACTIONS(2544), + [anon_sym__alignof] = ACTIONS(2544), + [anon_sym_alignof] = ACTIONS(2544), + [anon_sym__Alignof] = ACTIONS(2544), + [anon_sym_offsetof] = ACTIONS(2544), + [anon_sym__Generic] = ACTIONS(2544), + [anon_sym_asm] = ACTIONS(2544), + [anon_sym___asm__] = ACTIONS(2544), + [anon_sym___asm] = ACTIONS(2544), + [sym_number_literal] = ACTIONS(2546), + [anon_sym_L_SQUOTE] = ACTIONS(2546), + [anon_sym_u_SQUOTE] = ACTIONS(2546), + [anon_sym_U_SQUOTE] = ACTIONS(2546), + [anon_sym_u8_SQUOTE] = ACTIONS(2546), + [anon_sym_SQUOTE] = ACTIONS(2546), + [anon_sym_AT] = ACTIONS(2544), + [anon_sym_DQUOTE] = ACTIONS(2546), + [anon_sym_L_DQUOTE] = ACTIONS(2546), + [anon_sym_u_DQUOTE] = ACTIONS(2546), + [anon_sym_U_DQUOTE] = ACTIONS(2546), + [anon_sym_u8_DQUOTE] = ACTIONS(2546), + [sym_true] = ACTIONS(2544), + [sym_false] = ACTIONS(2544), + [anon_sym_NULL] = ACTIONS(2544), + [anon_sym_nullptr] = ACTIONS(2544), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2544), + [anon_sym___typeof] = ACTIONS(2544), + [anon_sym_typeof] = ACTIONS(2544), + [anon_sym_ATimport] = ACTIONS(2546), + [aux_sym_preproc_undef_token1] = ACTIONS(2544), + [anon_sym_POUND] = ACTIONS(2544), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2544), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2544), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2544), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2544), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2544), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2544), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2544), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2544), + [anon_sym_NS_AVAILABLE] = ACTIONS(2544), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2544), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_API_AVAILABLE] = ACTIONS(2544), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_API_DEPRECATED] = ACTIONS(2544), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2544), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2544), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2544), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2544), + [anon_sym___deprecated_msg] = ACTIONS(2544), + [anon_sym___deprecated_enum_msg] = ACTIONS(2544), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2544), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2544), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2544), + [anon_sym_ATprotocol] = ACTIONS(2546), + [anon_sym_ATinterface] = ACTIONS(2546), + [anon_sym_ATimplementation] = ACTIONS(2546), + [anon_sym_ATcompatibility_alias] = ACTIONS(2546), + [anon_sym_ATselector] = ACTIONS(2546), + [anon_sym_ATavailable] = ACTIONS(2546), + [anon_sym___builtin_available] = ACTIONS(2544), + [anon_sym_va_arg] = ACTIONS(2544), + [anon_sym_ATencode] = ACTIONS(2546), + [anon_sym_BOOL] = ACTIONS(2544), + [anon_sym_IMP] = ACTIONS(2544), + [anon_sym_SEL] = ACTIONS(2544), + [anon_sym_Class] = ACTIONS(2544), + [anon_sym_id] = ACTIONS(2544), + }, + [940] = { + [ts_builtin_sym_end] = ACTIONS(2448), + [sym_identifier] = ACTIONS(2446), + [aux_sym_preproc_include_token1] = ACTIONS(2446), + [aux_sym_preproc_include_token2] = ACTIONS(2446), + [aux_sym_preproc_def_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token1] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2446), + [sym_preproc_directive] = ACTIONS(2446), + [anon_sym_LPAREN2] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_TILDE] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_STAR] = ACTIONS(2448), + [anon_sym_CARET] = ACTIONS(2448), + [anon_sym_AMP] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym___extension__] = ACTIONS(2446), + [anon_sym_typedef] = ACTIONS(2446), + [anon_sym_extern] = ACTIONS(2446), + [anon_sym___attribute__] = ACTIONS(2446), + [anon_sym___attribute] = ACTIONS(2446), + [anon_sym_noreturn] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym___declspec] = ACTIONS(2446), + [anon_sym___cdecl] = ACTIONS(2446), + [anon_sym___clrcall] = ACTIONS(2446), + [anon_sym___stdcall] = ACTIONS(2446), + [anon_sym___fastcall] = ACTIONS(2446), + [anon_sym___thiscall] = ACTIONS(2446), + [anon_sym___vectorcall] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_signed] = ACTIONS(2446), + [anon_sym_unsigned] = ACTIONS(2446), + [anon_sym_long] = ACTIONS(2446), + [anon_sym_short] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_ATautoreleasepool] = ACTIONS(2448), + [anon_sym_auto] = ACTIONS(2446), + [anon_sym_register] = ACTIONS(2446), + [anon_sym_inline] = ACTIONS(2446), + [anon_sym___inline] = ACTIONS(2446), + [anon_sym___inline__] = ACTIONS(2446), + [anon_sym___forceinline] = ACTIONS(2446), + [anon_sym_thread_local] = ACTIONS(2446), + [anon_sym___thread] = ACTIONS(2446), + [anon_sym_CG_EXTERN] = ACTIONS(2446), + [anon_sym_CG_INLINE] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2446), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2446), + [anon_sym_IBOutlet] = ACTIONS(2446), + [anon_sym_IBInspectable] = ACTIONS(2446), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2446), + [anon_sym_NS_INLINE] = ACTIONS(2446), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2446), + [anon_sym_OBJC_EXPORT] = ACTIONS(2446), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [anon_sym_constexpr] = ACTIONS(2446), + [anon_sym_volatile] = ACTIONS(2446), + [anon_sym_restrict] = ACTIONS(2446), + [anon_sym___restrict__] = ACTIONS(2446), + [anon_sym__Atomic] = ACTIONS(2446), + [anon_sym__Noreturn] = ACTIONS(2446), + [anon_sym__Nonnull] = ACTIONS(2446), + [anon_sym_nullable] = ACTIONS(2446), + [anon_sym__Complex] = ACTIONS(2446), + [anon_sym__Nullable] = ACTIONS(2446), + [anon_sym__Nullable_result] = ACTIONS(2446), + [anon_sym__Null_unspecified] = ACTIONS(2446), + [anon_sym___autoreleasing] = ACTIONS(2446), + [anon_sym___block] = ACTIONS(2446), + [anon_sym___bridge] = ACTIONS(2446), + [anon_sym___bridge_retained] = ACTIONS(2446), + [anon_sym___bridge_transfer] = ACTIONS(2446), + [anon_sym___complex] = ACTIONS(2446), + [anon_sym___const] = ACTIONS(2446), + [anon_sym___imag] = ACTIONS(2446), + [anon_sym___kindof] = ACTIONS(2446), + [anon_sym___nonnull] = ACTIONS(2446), + [anon_sym___nullable] = ACTIONS(2446), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2446), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2446), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2446), + [anon_sym___real] = ACTIONS(2446), + [anon_sym___strong] = ACTIONS(2446), + [anon_sym___unsafe_unretained] = ACTIONS(2446), + [anon_sym___unused] = ACTIONS(2446), + [anon_sym___weak] = ACTIONS(2446), + [anon_sym_alignas] = ACTIONS(2446), + [anon_sym__Alignas] = ACTIONS(2446), + [sym_primitive_type] = ACTIONS(2446), + [anon_sym_enum] = ACTIONS(2446), + [anon_sym_struct] = ACTIONS(2446), + [anon_sym_union] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2446), + [anon_sym_else] = ACTIONS(2446), + [anon_sym_switch] = ACTIONS(2446), + [anon_sym_case] = ACTIONS(2446), + [anon_sym_default] = ACTIONS(2446), + [anon_sym_while] = ACTIONS(2446), + [anon_sym_do] = ACTIONS(2446), + [anon_sym_for] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_return] = ACTIONS(2446), + [anon_sym_break] = ACTIONS(2446), + [anon_sym_continue] = ACTIONS(2446), + [anon_sym_goto] = ACTIONS(2446), + [anon_sym_DASH_DASH] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2448), + [anon_sym_sizeof] = ACTIONS(2446), + [anon_sym___alignof__] = ACTIONS(2446), + [anon_sym___alignof] = ACTIONS(2446), + [anon_sym__alignof] = ACTIONS(2446), + [anon_sym_alignof] = ACTIONS(2446), + [anon_sym__Alignof] = ACTIONS(2446), + [anon_sym_offsetof] = ACTIONS(2446), + [anon_sym__Generic] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(2446), + [anon_sym___asm__] = ACTIONS(2446), + [anon_sym___asm] = ACTIONS(2446), + [sym_number_literal] = ACTIONS(2448), + [anon_sym_L_SQUOTE] = ACTIONS(2448), + [anon_sym_u_SQUOTE] = ACTIONS(2448), + [anon_sym_U_SQUOTE] = ACTIONS(2448), + [anon_sym_u8_SQUOTE] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_L_DQUOTE] = ACTIONS(2448), + [anon_sym_u_DQUOTE] = ACTIONS(2448), + [anon_sym_U_DQUOTE] = ACTIONS(2448), + [anon_sym_u8_DQUOTE] = ACTIONS(2448), + [sym_true] = ACTIONS(2446), + [sym_false] = ACTIONS(2446), + [anon_sym_NULL] = ACTIONS(2446), + [anon_sym_nullptr] = ACTIONS(2446), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2446), + [anon_sym___typeof] = ACTIONS(2446), + [anon_sym_typeof] = ACTIONS(2446), + [anon_sym_ATimport] = ACTIONS(2448), + [aux_sym_preproc_undef_token1] = ACTIONS(2446), + [anon_sym_POUND] = ACTIONS(2446), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2446), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2446), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2446), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2446), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE] = ACTIONS(2446), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_API_AVAILABLE] = ACTIONS(2446), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_API_DEPRECATED] = ACTIONS(2446), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2446), + [anon_sym___deprecated_msg] = ACTIONS(2446), + [anon_sym___deprecated_enum_msg] = ACTIONS(2446), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2446), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2446), + [anon_sym_ATprotocol] = ACTIONS(2448), + [anon_sym_ATinterface] = ACTIONS(2448), + [anon_sym_ATimplementation] = ACTIONS(2448), + [anon_sym_ATcompatibility_alias] = ACTIONS(2448), + [anon_sym_ATselector] = ACTIONS(2448), + [anon_sym_ATavailable] = ACTIONS(2448), + [anon_sym___builtin_available] = ACTIONS(2446), + [anon_sym_va_arg] = ACTIONS(2446), + [anon_sym_ATencode] = ACTIONS(2448), + [anon_sym_BOOL] = ACTIONS(2446), + [anon_sym_IMP] = ACTIONS(2446), + [anon_sym_SEL] = ACTIONS(2446), + [anon_sym_Class] = ACTIONS(2446), + [anon_sym_id] = ACTIONS(2446), + }, + [941] = { + [ts_builtin_sym_end] = ACTIONS(2452), + [sym_identifier] = ACTIONS(2450), + [aux_sym_preproc_include_token1] = ACTIONS(2450), + [aux_sym_preproc_include_token2] = ACTIONS(2450), + [aux_sym_preproc_def_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2450), + [anon_sym_LPAREN2] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_CARET] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym___cdecl] = ACTIONS(2450), + [anon_sym___clrcall] = ACTIONS(2450), + [anon_sym___stdcall] = ACTIONS(2450), + [anon_sym___fastcall] = ACTIONS(2450), + [anon_sym___thiscall] = ACTIONS(2450), + [anon_sym___vectorcall] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2452), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_ATautoreleasepool] = ACTIONS(2452), + [anon_sym_auto] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_CG_EXTERN] = ACTIONS(2450), + [anon_sym_CG_INLINE] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2450), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2450), + [anon_sym_IBOutlet] = ACTIONS(2450), + [anon_sym_IBInspectable] = ACTIONS(2450), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2450), + [anon_sym_NS_INLINE] = ACTIONS(2450), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2450), + [anon_sym_OBJC_EXPORT] = ACTIONS(2450), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_nullable] = ACTIONS(2450), + [anon_sym__Complex] = ACTIONS(2450), + [anon_sym__Nullable] = ACTIONS(2450), + [anon_sym__Nullable_result] = ACTIONS(2450), + [anon_sym__Null_unspecified] = ACTIONS(2450), + [anon_sym___autoreleasing] = ACTIONS(2450), + [anon_sym___block] = ACTIONS(2450), + [anon_sym___bridge] = ACTIONS(2450), + [anon_sym___bridge_retained] = ACTIONS(2450), + [anon_sym___bridge_transfer] = ACTIONS(2450), + [anon_sym___complex] = ACTIONS(2450), + [anon_sym___const] = ACTIONS(2450), + [anon_sym___imag] = ACTIONS(2450), + [anon_sym___kindof] = ACTIONS(2450), + [anon_sym___nonnull] = ACTIONS(2450), + [anon_sym___nullable] = ACTIONS(2450), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2450), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2450), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2450), + [anon_sym___real] = ACTIONS(2450), + [anon_sym___strong] = ACTIONS(2450), + [anon_sym___unsafe_unretained] = ACTIONS(2450), + [anon_sym___unused] = ACTIONS(2450), + [anon_sym___weak] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_else] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2450), + [anon_sym_case] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2450), + [anon_sym_while] = ACTIONS(2450), + [anon_sym_do] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_break] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_goto] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2452), + [anon_sym_sizeof] = ACTIONS(2450), + [anon_sym___alignof__] = ACTIONS(2450), + [anon_sym___alignof] = ACTIONS(2450), + [anon_sym__alignof] = ACTIONS(2450), + [anon_sym_alignof] = ACTIONS(2450), + [anon_sym__Alignof] = ACTIONS(2450), + [anon_sym_offsetof] = ACTIONS(2450), + [anon_sym__Generic] = ACTIONS(2450), + [anon_sym_asm] = ACTIONS(2450), + [anon_sym___asm__] = ACTIONS(2450), + [anon_sym___asm] = ACTIONS(2450), + [sym_number_literal] = ACTIONS(2452), + [anon_sym_L_SQUOTE] = ACTIONS(2452), + [anon_sym_u_SQUOTE] = ACTIONS(2452), + [anon_sym_U_SQUOTE] = ACTIONS(2452), + [anon_sym_u8_SQUOTE] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(2452), + [anon_sym_AT] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2452), + [anon_sym_L_DQUOTE] = ACTIONS(2452), + [anon_sym_u_DQUOTE] = ACTIONS(2452), + [anon_sym_U_DQUOTE] = ACTIONS(2452), + [anon_sym_u8_DQUOTE] = ACTIONS(2452), + [sym_true] = ACTIONS(2450), + [sym_false] = ACTIONS(2450), + [anon_sym_NULL] = ACTIONS(2450), + [anon_sym_nullptr] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2450), + [anon_sym___typeof] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [anon_sym_ATimport] = ACTIONS(2452), + [aux_sym_preproc_undef_token1] = ACTIONS(2450), + [anon_sym_POUND] = ACTIONS(2450), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2450), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2450), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2450), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2450), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE] = ACTIONS(2450), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_API_AVAILABLE] = ACTIONS(2450), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_API_DEPRECATED] = ACTIONS(2450), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2450), + [anon_sym___deprecated_msg] = ACTIONS(2450), + [anon_sym___deprecated_enum_msg] = ACTIONS(2450), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2450), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2450), + [anon_sym_ATprotocol] = ACTIONS(2452), + [anon_sym_ATinterface] = ACTIONS(2452), + [anon_sym_ATimplementation] = ACTIONS(2452), + [anon_sym_ATcompatibility_alias] = ACTIONS(2452), + [anon_sym_ATselector] = ACTIONS(2452), + [anon_sym_ATavailable] = ACTIONS(2452), + [anon_sym___builtin_available] = ACTIONS(2450), + [anon_sym_va_arg] = ACTIONS(2450), + [anon_sym_ATencode] = ACTIONS(2452), + [anon_sym_BOOL] = ACTIONS(2450), + [anon_sym_IMP] = ACTIONS(2450), + [anon_sym_SEL] = ACTIONS(2450), + [anon_sym_Class] = ACTIONS(2450), + [anon_sym_id] = ACTIONS(2450), + }, + [942] = { + [ts_builtin_sym_end] = ACTIONS(2456), + [sym_identifier] = ACTIONS(2454), + [aux_sym_preproc_include_token1] = ACTIONS(2454), + [aux_sym_preproc_include_token2] = ACTIONS(2454), + [aux_sym_preproc_def_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2454), + [sym_preproc_directive] = ACTIONS(2454), + [anon_sym_LPAREN2] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_CARET] = ACTIONS(2456), + [anon_sym_AMP] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym___extension__] = ACTIONS(2454), + [anon_sym_typedef] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym___attribute__] = ACTIONS(2454), + [anon_sym___attribute] = ACTIONS(2454), + [anon_sym_noreturn] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym___declspec] = ACTIONS(2454), + [anon_sym___cdecl] = ACTIONS(2454), + [anon_sym___clrcall] = ACTIONS(2454), + [anon_sym___stdcall] = ACTIONS(2454), + [anon_sym___fastcall] = ACTIONS(2454), + [anon_sym___thiscall] = ACTIONS(2454), + [anon_sym___vectorcall] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_signed] = ACTIONS(2454), + [anon_sym_unsigned] = ACTIONS(2454), + [anon_sym_long] = ACTIONS(2454), + [anon_sym_short] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_ATautoreleasepool] = ACTIONS(2456), + [anon_sym_auto] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_inline] = ACTIONS(2454), + [anon_sym___inline] = ACTIONS(2454), + [anon_sym___inline__] = ACTIONS(2454), + [anon_sym___forceinline] = ACTIONS(2454), + [anon_sym_thread_local] = ACTIONS(2454), + [anon_sym___thread] = ACTIONS(2454), + [anon_sym_CG_EXTERN] = ACTIONS(2454), + [anon_sym_CG_INLINE] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2454), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2454), + [anon_sym_IBOutlet] = ACTIONS(2454), + [anon_sym_IBInspectable] = ACTIONS(2454), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2454), + [anon_sym_NS_INLINE] = ACTIONS(2454), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2454), + [anon_sym_OBJC_EXPORT] = ACTIONS(2454), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_constexpr] = ACTIONS(2454), + [anon_sym_volatile] = ACTIONS(2454), + [anon_sym_restrict] = ACTIONS(2454), + [anon_sym___restrict__] = ACTIONS(2454), + [anon_sym__Atomic] = ACTIONS(2454), + [anon_sym__Noreturn] = ACTIONS(2454), + [anon_sym__Nonnull] = ACTIONS(2454), + [anon_sym_nullable] = ACTIONS(2454), + [anon_sym__Complex] = ACTIONS(2454), + [anon_sym__Nullable] = ACTIONS(2454), + [anon_sym__Nullable_result] = ACTIONS(2454), + [anon_sym__Null_unspecified] = ACTIONS(2454), + [anon_sym___autoreleasing] = ACTIONS(2454), + [anon_sym___block] = ACTIONS(2454), + [anon_sym___bridge] = ACTIONS(2454), + [anon_sym___bridge_retained] = ACTIONS(2454), + [anon_sym___bridge_transfer] = ACTIONS(2454), + [anon_sym___complex] = ACTIONS(2454), + [anon_sym___const] = ACTIONS(2454), + [anon_sym___imag] = ACTIONS(2454), + [anon_sym___kindof] = ACTIONS(2454), + [anon_sym___nonnull] = ACTIONS(2454), + [anon_sym___nullable] = ACTIONS(2454), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2454), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2454), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2454), + [anon_sym___real] = ACTIONS(2454), + [anon_sym___strong] = ACTIONS(2454), + [anon_sym___unsafe_unretained] = ACTIONS(2454), + [anon_sym___unused] = ACTIONS(2454), + [anon_sym___weak] = ACTIONS(2454), + [anon_sym_alignas] = ACTIONS(2454), + [anon_sym__Alignas] = ACTIONS(2454), + [sym_primitive_type] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2454), + [anon_sym_else] = ACTIONS(2454), + [anon_sym_switch] = ACTIONS(2454), + [anon_sym_case] = ACTIONS(2454), + [anon_sym_default] = ACTIONS(2454), + [anon_sym_while] = ACTIONS(2454), + [anon_sym_do] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_in] = ACTIONS(2454), + [anon_sym_return] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_goto] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_sizeof] = ACTIONS(2454), + [anon_sym___alignof__] = ACTIONS(2454), + [anon_sym___alignof] = ACTIONS(2454), + [anon_sym__alignof] = ACTIONS(2454), + [anon_sym_alignof] = ACTIONS(2454), + [anon_sym__Alignof] = ACTIONS(2454), + [anon_sym_offsetof] = ACTIONS(2454), + [anon_sym__Generic] = ACTIONS(2454), + [anon_sym_asm] = ACTIONS(2454), + [anon_sym___asm__] = ACTIONS(2454), + [anon_sym___asm] = ACTIONS(2454), + [sym_number_literal] = ACTIONS(2456), + [anon_sym_L_SQUOTE] = ACTIONS(2456), + [anon_sym_u_SQUOTE] = ACTIONS(2456), + [anon_sym_U_SQUOTE] = ACTIONS(2456), + [anon_sym_u8_SQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_L_DQUOTE] = ACTIONS(2456), + [anon_sym_u_DQUOTE] = ACTIONS(2456), + [anon_sym_U_DQUOTE] = ACTIONS(2456), + [anon_sym_u8_DQUOTE] = ACTIONS(2456), + [sym_true] = ACTIONS(2454), + [sym_false] = ACTIONS(2454), + [anon_sym_NULL] = ACTIONS(2454), + [anon_sym_nullptr] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2454), + [anon_sym___typeof] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(2454), + [anon_sym_ATimport] = ACTIONS(2456), + [aux_sym_preproc_undef_token1] = ACTIONS(2454), + [anon_sym_POUND] = ACTIONS(2454), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2454), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2454), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2454), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2454), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE] = ACTIONS(2454), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_API_AVAILABLE] = ACTIONS(2454), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_API_DEPRECATED] = ACTIONS(2454), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2454), + [anon_sym___deprecated_msg] = ACTIONS(2454), + [anon_sym___deprecated_enum_msg] = ACTIONS(2454), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2454), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2454), + [anon_sym_ATprotocol] = ACTIONS(2456), + [anon_sym_ATinterface] = ACTIONS(2456), + [anon_sym_ATimplementation] = ACTIONS(2456), + [anon_sym_ATcompatibility_alias] = ACTIONS(2456), + [anon_sym_ATselector] = ACTIONS(2456), + [anon_sym_ATavailable] = ACTIONS(2456), + [anon_sym___builtin_available] = ACTIONS(2454), + [anon_sym_va_arg] = ACTIONS(2454), + [anon_sym_ATencode] = ACTIONS(2456), + [anon_sym_BOOL] = ACTIONS(2454), + [anon_sym_IMP] = ACTIONS(2454), + [anon_sym_SEL] = ACTIONS(2454), + [anon_sym_Class] = ACTIONS(2454), + [anon_sym_id] = ACTIONS(2454), + }, + [943] = { + [ts_builtin_sym_end] = ACTIONS(2456), + [sym_identifier] = ACTIONS(2454), + [aux_sym_preproc_include_token1] = ACTIONS(2454), + [aux_sym_preproc_include_token2] = ACTIONS(2454), + [aux_sym_preproc_def_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2454), + [sym_preproc_directive] = ACTIONS(2454), + [anon_sym_LPAREN2] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_CARET] = ACTIONS(2456), + [anon_sym_AMP] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym___extension__] = ACTIONS(2454), + [anon_sym_typedef] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym___attribute__] = ACTIONS(2454), + [anon_sym___attribute] = ACTIONS(2454), + [anon_sym_noreturn] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym___declspec] = ACTIONS(2454), + [anon_sym___cdecl] = ACTIONS(2454), + [anon_sym___clrcall] = ACTIONS(2454), + [anon_sym___stdcall] = ACTIONS(2454), + [anon_sym___fastcall] = ACTIONS(2454), + [anon_sym___thiscall] = ACTIONS(2454), + [anon_sym___vectorcall] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_signed] = ACTIONS(2454), + [anon_sym_unsigned] = ACTIONS(2454), + [anon_sym_long] = ACTIONS(2454), + [anon_sym_short] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_ATautoreleasepool] = ACTIONS(2456), + [anon_sym_auto] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_inline] = ACTIONS(2454), + [anon_sym___inline] = ACTIONS(2454), + [anon_sym___inline__] = ACTIONS(2454), + [anon_sym___forceinline] = ACTIONS(2454), + [anon_sym_thread_local] = ACTIONS(2454), + [anon_sym___thread] = ACTIONS(2454), + [anon_sym_CG_EXTERN] = ACTIONS(2454), + [anon_sym_CG_INLINE] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2454), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2454), + [anon_sym_IBOutlet] = ACTIONS(2454), + [anon_sym_IBInspectable] = ACTIONS(2454), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2454), + [anon_sym_NS_INLINE] = ACTIONS(2454), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2454), + [anon_sym_OBJC_EXPORT] = ACTIONS(2454), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_constexpr] = ACTIONS(2454), + [anon_sym_volatile] = ACTIONS(2454), + [anon_sym_restrict] = ACTIONS(2454), + [anon_sym___restrict__] = ACTIONS(2454), + [anon_sym__Atomic] = ACTIONS(2454), + [anon_sym__Noreturn] = ACTIONS(2454), + [anon_sym__Nonnull] = ACTIONS(2454), + [anon_sym_nullable] = ACTIONS(2454), + [anon_sym__Complex] = ACTIONS(2454), + [anon_sym__Nullable] = ACTIONS(2454), + [anon_sym__Nullable_result] = ACTIONS(2454), + [anon_sym__Null_unspecified] = ACTIONS(2454), + [anon_sym___autoreleasing] = ACTIONS(2454), + [anon_sym___block] = ACTIONS(2454), + [anon_sym___bridge] = ACTIONS(2454), + [anon_sym___bridge_retained] = ACTIONS(2454), + [anon_sym___bridge_transfer] = ACTIONS(2454), + [anon_sym___complex] = ACTIONS(2454), + [anon_sym___const] = ACTIONS(2454), + [anon_sym___imag] = ACTIONS(2454), + [anon_sym___kindof] = ACTIONS(2454), + [anon_sym___nonnull] = ACTIONS(2454), + [anon_sym___nullable] = ACTIONS(2454), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2454), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2454), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2454), + [anon_sym___real] = ACTIONS(2454), + [anon_sym___strong] = ACTIONS(2454), + [anon_sym___unsafe_unretained] = ACTIONS(2454), + [anon_sym___unused] = ACTIONS(2454), + [anon_sym___weak] = ACTIONS(2454), + [anon_sym_alignas] = ACTIONS(2454), + [anon_sym__Alignas] = ACTIONS(2454), + [sym_primitive_type] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2454), + [anon_sym_else] = ACTIONS(2454), + [anon_sym_switch] = ACTIONS(2454), + [anon_sym_case] = ACTIONS(2454), + [anon_sym_default] = ACTIONS(2454), + [anon_sym_while] = ACTIONS(2454), + [anon_sym_do] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_in] = ACTIONS(2454), + [anon_sym_return] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_goto] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_sizeof] = ACTIONS(2454), + [anon_sym___alignof__] = ACTIONS(2454), + [anon_sym___alignof] = ACTIONS(2454), + [anon_sym__alignof] = ACTIONS(2454), + [anon_sym_alignof] = ACTIONS(2454), + [anon_sym__Alignof] = ACTIONS(2454), + [anon_sym_offsetof] = ACTIONS(2454), + [anon_sym__Generic] = ACTIONS(2454), + [anon_sym_asm] = ACTIONS(2454), + [anon_sym___asm__] = ACTIONS(2454), + [anon_sym___asm] = ACTIONS(2454), + [sym_number_literal] = ACTIONS(2456), + [anon_sym_L_SQUOTE] = ACTIONS(2456), + [anon_sym_u_SQUOTE] = ACTIONS(2456), + [anon_sym_U_SQUOTE] = ACTIONS(2456), + [anon_sym_u8_SQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_L_DQUOTE] = ACTIONS(2456), + [anon_sym_u_DQUOTE] = ACTIONS(2456), + [anon_sym_U_DQUOTE] = ACTIONS(2456), + [anon_sym_u8_DQUOTE] = ACTIONS(2456), + [sym_true] = ACTIONS(2454), + [sym_false] = ACTIONS(2454), + [anon_sym_NULL] = ACTIONS(2454), + [anon_sym_nullptr] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2454), + [anon_sym___typeof] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(2454), + [anon_sym_ATimport] = ACTIONS(2456), + [aux_sym_preproc_undef_token1] = ACTIONS(2454), + [anon_sym_POUND] = ACTIONS(2454), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2454), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2454), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2454), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2454), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE] = ACTIONS(2454), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_API_AVAILABLE] = ACTIONS(2454), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_API_DEPRECATED] = ACTIONS(2454), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2454), + [anon_sym___deprecated_msg] = ACTIONS(2454), + [anon_sym___deprecated_enum_msg] = ACTIONS(2454), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2454), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2454), + [anon_sym_ATprotocol] = ACTIONS(2456), + [anon_sym_ATinterface] = ACTIONS(2456), + [anon_sym_ATimplementation] = ACTIONS(2456), + [anon_sym_ATcompatibility_alias] = ACTIONS(2456), + [anon_sym_ATselector] = ACTIONS(2456), + [anon_sym_ATavailable] = ACTIONS(2456), + [anon_sym___builtin_available] = ACTIONS(2454), + [anon_sym_va_arg] = ACTIONS(2454), + [anon_sym_ATencode] = ACTIONS(2456), + [anon_sym_BOOL] = ACTIONS(2454), + [anon_sym_IMP] = ACTIONS(2454), + [anon_sym_SEL] = ACTIONS(2454), + [anon_sym_Class] = ACTIONS(2454), + [anon_sym_id] = ACTIONS(2454), + }, + [944] = { + [ts_builtin_sym_end] = ACTIONS(2448), + [sym_identifier] = ACTIONS(2446), + [aux_sym_preproc_include_token1] = ACTIONS(2446), + [aux_sym_preproc_include_token2] = ACTIONS(2446), + [aux_sym_preproc_def_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token1] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2446), + [sym_preproc_directive] = ACTIONS(2446), + [anon_sym_LPAREN2] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_TILDE] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_STAR] = ACTIONS(2448), + [anon_sym_CARET] = ACTIONS(2448), + [anon_sym_AMP] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym___extension__] = ACTIONS(2446), + [anon_sym_typedef] = ACTIONS(2446), + [anon_sym_extern] = ACTIONS(2446), + [anon_sym___attribute__] = ACTIONS(2446), + [anon_sym___attribute] = ACTIONS(2446), + [anon_sym_noreturn] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym___declspec] = ACTIONS(2446), + [anon_sym___cdecl] = ACTIONS(2446), + [anon_sym___clrcall] = ACTIONS(2446), + [anon_sym___stdcall] = ACTIONS(2446), + [anon_sym___fastcall] = ACTIONS(2446), + [anon_sym___thiscall] = ACTIONS(2446), + [anon_sym___vectorcall] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_signed] = ACTIONS(2446), + [anon_sym_unsigned] = ACTIONS(2446), + [anon_sym_long] = ACTIONS(2446), + [anon_sym_short] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_ATautoreleasepool] = ACTIONS(2448), + [anon_sym_auto] = ACTIONS(2446), + [anon_sym_register] = ACTIONS(2446), + [anon_sym_inline] = ACTIONS(2446), + [anon_sym___inline] = ACTIONS(2446), + [anon_sym___inline__] = ACTIONS(2446), + [anon_sym___forceinline] = ACTIONS(2446), + [anon_sym_thread_local] = ACTIONS(2446), + [anon_sym___thread] = ACTIONS(2446), + [anon_sym_CG_EXTERN] = ACTIONS(2446), + [anon_sym_CG_INLINE] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2446), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2446), + [anon_sym_IBOutlet] = ACTIONS(2446), + [anon_sym_IBInspectable] = ACTIONS(2446), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2446), + [anon_sym_NS_INLINE] = ACTIONS(2446), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2446), + [anon_sym_OBJC_EXPORT] = ACTIONS(2446), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [anon_sym_constexpr] = ACTIONS(2446), + [anon_sym_volatile] = ACTIONS(2446), + [anon_sym_restrict] = ACTIONS(2446), + [anon_sym___restrict__] = ACTIONS(2446), + [anon_sym__Atomic] = ACTIONS(2446), + [anon_sym__Noreturn] = ACTIONS(2446), + [anon_sym__Nonnull] = ACTIONS(2446), + [anon_sym_nullable] = ACTIONS(2446), + [anon_sym__Complex] = ACTIONS(2446), + [anon_sym__Nullable] = ACTIONS(2446), + [anon_sym__Nullable_result] = ACTIONS(2446), + [anon_sym__Null_unspecified] = ACTIONS(2446), + [anon_sym___autoreleasing] = ACTIONS(2446), + [anon_sym___block] = ACTIONS(2446), + [anon_sym___bridge] = ACTIONS(2446), + [anon_sym___bridge_retained] = ACTIONS(2446), + [anon_sym___bridge_transfer] = ACTIONS(2446), + [anon_sym___complex] = ACTIONS(2446), + [anon_sym___const] = ACTIONS(2446), + [anon_sym___imag] = ACTIONS(2446), + [anon_sym___kindof] = ACTIONS(2446), + [anon_sym___nonnull] = ACTIONS(2446), + [anon_sym___nullable] = ACTIONS(2446), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2446), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2446), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2446), + [anon_sym___real] = ACTIONS(2446), + [anon_sym___strong] = ACTIONS(2446), + [anon_sym___unsafe_unretained] = ACTIONS(2446), + [anon_sym___unused] = ACTIONS(2446), + [anon_sym___weak] = ACTIONS(2446), + [anon_sym_alignas] = ACTIONS(2446), + [anon_sym__Alignas] = ACTIONS(2446), + [sym_primitive_type] = ACTIONS(2446), + [anon_sym_enum] = ACTIONS(2446), + [anon_sym_struct] = ACTIONS(2446), + [anon_sym_union] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2446), + [anon_sym_else] = ACTIONS(2446), + [anon_sym_switch] = ACTIONS(2446), + [anon_sym_case] = ACTIONS(2446), + [anon_sym_default] = ACTIONS(2446), + [anon_sym_while] = ACTIONS(2446), + [anon_sym_do] = ACTIONS(2446), + [anon_sym_for] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_return] = ACTIONS(2446), + [anon_sym_break] = ACTIONS(2446), + [anon_sym_continue] = ACTIONS(2446), + [anon_sym_goto] = ACTIONS(2446), + [anon_sym_DASH_DASH] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2448), + [anon_sym_sizeof] = ACTIONS(2446), + [anon_sym___alignof__] = ACTIONS(2446), + [anon_sym___alignof] = ACTIONS(2446), + [anon_sym__alignof] = ACTIONS(2446), + [anon_sym_alignof] = ACTIONS(2446), + [anon_sym__Alignof] = ACTIONS(2446), + [anon_sym_offsetof] = ACTIONS(2446), + [anon_sym__Generic] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(2446), + [anon_sym___asm__] = ACTIONS(2446), + [anon_sym___asm] = ACTIONS(2446), + [sym_number_literal] = ACTIONS(2448), + [anon_sym_L_SQUOTE] = ACTIONS(2448), + [anon_sym_u_SQUOTE] = ACTIONS(2448), + [anon_sym_U_SQUOTE] = ACTIONS(2448), + [anon_sym_u8_SQUOTE] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_L_DQUOTE] = ACTIONS(2448), + [anon_sym_u_DQUOTE] = ACTIONS(2448), + [anon_sym_U_DQUOTE] = ACTIONS(2448), + [anon_sym_u8_DQUOTE] = ACTIONS(2448), + [sym_true] = ACTIONS(2446), + [sym_false] = ACTIONS(2446), + [anon_sym_NULL] = ACTIONS(2446), + [anon_sym_nullptr] = ACTIONS(2446), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2446), + [anon_sym___typeof] = ACTIONS(2446), + [anon_sym_typeof] = ACTIONS(2446), + [anon_sym_ATimport] = ACTIONS(2448), + [aux_sym_preproc_undef_token1] = ACTIONS(2446), + [anon_sym_POUND] = ACTIONS(2446), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2446), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2446), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2446), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2446), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE] = ACTIONS(2446), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_API_AVAILABLE] = ACTIONS(2446), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_API_DEPRECATED] = ACTIONS(2446), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2446), + [anon_sym___deprecated_msg] = ACTIONS(2446), + [anon_sym___deprecated_enum_msg] = ACTIONS(2446), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2446), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2446), + [anon_sym_ATprotocol] = ACTIONS(2448), + [anon_sym_ATinterface] = ACTIONS(2448), + [anon_sym_ATimplementation] = ACTIONS(2448), + [anon_sym_ATcompatibility_alias] = ACTIONS(2448), + [anon_sym_ATselector] = ACTIONS(2448), + [anon_sym_ATavailable] = ACTIONS(2448), + [anon_sym___builtin_available] = ACTIONS(2446), + [anon_sym_va_arg] = ACTIONS(2446), + [anon_sym_ATencode] = ACTIONS(2448), + [anon_sym_BOOL] = ACTIONS(2446), + [anon_sym_IMP] = ACTIONS(2446), + [anon_sym_SEL] = ACTIONS(2446), + [anon_sym_Class] = ACTIONS(2446), + [anon_sym_id] = ACTIONS(2446), + }, + [945] = { + [ts_builtin_sym_end] = ACTIONS(2452), + [sym_identifier] = ACTIONS(2450), + [aux_sym_preproc_include_token1] = ACTIONS(2450), + [aux_sym_preproc_include_token2] = ACTIONS(2450), + [aux_sym_preproc_def_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2450), + [anon_sym_LPAREN2] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_CARET] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym___cdecl] = ACTIONS(2450), + [anon_sym___clrcall] = ACTIONS(2450), + [anon_sym___stdcall] = ACTIONS(2450), + [anon_sym___fastcall] = ACTIONS(2450), + [anon_sym___thiscall] = ACTIONS(2450), + [anon_sym___vectorcall] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2452), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_ATautoreleasepool] = ACTIONS(2452), + [anon_sym_auto] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_CG_EXTERN] = ACTIONS(2450), + [anon_sym_CG_INLINE] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2450), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2450), + [anon_sym_IBOutlet] = ACTIONS(2450), + [anon_sym_IBInspectable] = ACTIONS(2450), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2450), + [anon_sym_NS_INLINE] = ACTIONS(2450), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2450), + [anon_sym_OBJC_EXPORT] = ACTIONS(2450), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_nullable] = ACTIONS(2450), + [anon_sym__Complex] = ACTIONS(2450), + [anon_sym__Nullable] = ACTIONS(2450), + [anon_sym__Nullable_result] = ACTIONS(2450), + [anon_sym__Null_unspecified] = ACTIONS(2450), + [anon_sym___autoreleasing] = ACTIONS(2450), + [anon_sym___block] = ACTIONS(2450), + [anon_sym___bridge] = ACTIONS(2450), + [anon_sym___bridge_retained] = ACTIONS(2450), + [anon_sym___bridge_transfer] = ACTIONS(2450), + [anon_sym___complex] = ACTIONS(2450), + [anon_sym___const] = ACTIONS(2450), + [anon_sym___imag] = ACTIONS(2450), + [anon_sym___kindof] = ACTIONS(2450), + [anon_sym___nonnull] = ACTIONS(2450), + [anon_sym___nullable] = ACTIONS(2450), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2450), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2450), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2450), + [anon_sym___real] = ACTIONS(2450), + [anon_sym___strong] = ACTIONS(2450), + [anon_sym___unsafe_unretained] = ACTIONS(2450), + [anon_sym___unused] = ACTIONS(2450), + [anon_sym___weak] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_else] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2450), + [anon_sym_case] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2450), + [anon_sym_while] = ACTIONS(2450), + [anon_sym_do] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_break] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_goto] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2452), + [anon_sym_sizeof] = ACTIONS(2450), + [anon_sym___alignof__] = ACTIONS(2450), + [anon_sym___alignof] = ACTIONS(2450), + [anon_sym__alignof] = ACTIONS(2450), + [anon_sym_alignof] = ACTIONS(2450), + [anon_sym__Alignof] = ACTIONS(2450), + [anon_sym_offsetof] = ACTIONS(2450), + [anon_sym__Generic] = ACTIONS(2450), + [anon_sym_asm] = ACTIONS(2450), + [anon_sym___asm__] = ACTIONS(2450), + [anon_sym___asm] = ACTIONS(2450), + [sym_number_literal] = ACTIONS(2452), + [anon_sym_L_SQUOTE] = ACTIONS(2452), + [anon_sym_u_SQUOTE] = ACTIONS(2452), + [anon_sym_U_SQUOTE] = ACTIONS(2452), + [anon_sym_u8_SQUOTE] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(2452), + [anon_sym_AT] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2452), + [anon_sym_L_DQUOTE] = ACTIONS(2452), + [anon_sym_u_DQUOTE] = ACTIONS(2452), + [anon_sym_U_DQUOTE] = ACTIONS(2452), + [anon_sym_u8_DQUOTE] = ACTIONS(2452), + [sym_true] = ACTIONS(2450), + [sym_false] = ACTIONS(2450), + [anon_sym_NULL] = ACTIONS(2450), + [anon_sym_nullptr] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2450), + [anon_sym___typeof] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [anon_sym_ATimport] = ACTIONS(2452), + [aux_sym_preproc_undef_token1] = ACTIONS(2450), + [anon_sym_POUND] = ACTIONS(2450), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2450), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2450), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2450), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2450), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE] = ACTIONS(2450), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_API_AVAILABLE] = ACTIONS(2450), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_API_DEPRECATED] = ACTIONS(2450), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2450), + [anon_sym___deprecated_msg] = ACTIONS(2450), + [anon_sym___deprecated_enum_msg] = ACTIONS(2450), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2450), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2450), + [anon_sym_ATprotocol] = ACTIONS(2452), + [anon_sym_ATinterface] = ACTIONS(2452), + [anon_sym_ATimplementation] = ACTIONS(2452), + [anon_sym_ATcompatibility_alias] = ACTIONS(2452), + [anon_sym_ATselector] = ACTIONS(2452), + [anon_sym_ATavailable] = ACTIONS(2452), + [anon_sym___builtin_available] = ACTIONS(2450), + [anon_sym_va_arg] = ACTIONS(2450), + [anon_sym_ATencode] = ACTIONS(2452), + [anon_sym_BOOL] = ACTIONS(2450), + [anon_sym_IMP] = ACTIONS(2450), + [anon_sym_SEL] = ACTIONS(2450), + [anon_sym_Class] = ACTIONS(2450), + [anon_sym_id] = ACTIONS(2450), + }, + [946] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [947] = { + [ts_builtin_sym_end] = ACTIONS(2526), + [sym_identifier] = ACTIONS(2524), + [aux_sym_preproc_include_token1] = ACTIONS(2524), + [aux_sym_preproc_include_token2] = ACTIONS(2524), + [aux_sym_preproc_def_token1] = ACTIONS(2524), + [aux_sym_preproc_if_token1] = ACTIONS(2524), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2524), + [sym_preproc_directive] = ACTIONS(2524), + [anon_sym_LPAREN2] = ACTIONS(2526), + [anon_sym_BANG] = ACTIONS(2526), + [anon_sym_TILDE] = ACTIONS(2526), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_STAR] = ACTIONS(2526), + [anon_sym_CARET] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2526), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym___extension__] = ACTIONS(2524), + [anon_sym_typedef] = ACTIONS(2524), + [anon_sym_extern] = ACTIONS(2524), + [anon_sym___attribute__] = ACTIONS(2524), + [anon_sym___attribute] = ACTIONS(2524), + [anon_sym_noreturn] = ACTIONS(2524), + [anon_sym_LBRACK] = ACTIONS(2526), + [anon_sym___declspec] = ACTIONS(2524), + [anon_sym___cdecl] = ACTIONS(2524), + [anon_sym___clrcall] = ACTIONS(2524), + [anon_sym___stdcall] = ACTIONS(2524), + [anon_sym___fastcall] = ACTIONS(2524), + [anon_sym___thiscall] = ACTIONS(2524), + [anon_sym___vectorcall] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2526), + [anon_sym_signed] = ACTIONS(2524), + [anon_sym_unsigned] = ACTIONS(2524), + [anon_sym_long] = ACTIONS(2524), + [anon_sym_short] = ACTIONS(2524), + [anon_sym_static] = ACTIONS(2524), + [anon_sym_ATautoreleasepool] = ACTIONS(2526), + [anon_sym_auto] = ACTIONS(2524), + [anon_sym_register] = ACTIONS(2524), + [anon_sym_inline] = ACTIONS(2524), + [anon_sym___inline] = ACTIONS(2524), + [anon_sym___inline__] = ACTIONS(2524), + [anon_sym___forceinline] = ACTIONS(2524), + [anon_sym_thread_local] = ACTIONS(2524), + [anon_sym___thread] = ACTIONS(2524), + [anon_sym_CG_EXTERN] = ACTIONS(2524), + [anon_sym_CG_INLINE] = ACTIONS(2524), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2524), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2524), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2524), + [anon_sym_IBOutlet] = ACTIONS(2524), + [anon_sym_IBInspectable] = ACTIONS(2524), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2524), + [anon_sym_NS_INLINE] = ACTIONS(2524), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2524), + [anon_sym_OBJC_EXPORT] = ACTIONS(2524), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2524), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2524), + [anon_sym_const] = ACTIONS(2524), + [anon_sym_constexpr] = ACTIONS(2524), + [anon_sym_volatile] = ACTIONS(2524), + [anon_sym_restrict] = ACTIONS(2524), + [anon_sym___restrict__] = ACTIONS(2524), + [anon_sym__Atomic] = ACTIONS(2524), + [anon_sym__Noreturn] = ACTIONS(2524), + [anon_sym__Nonnull] = ACTIONS(2524), + [anon_sym_nullable] = ACTIONS(2524), + [anon_sym__Complex] = ACTIONS(2524), + [anon_sym__Nullable] = ACTIONS(2524), + [anon_sym__Nullable_result] = ACTIONS(2524), + [anon_sym__Null_unspecified] = ACTIONS(2524), + [anon_sym___autoreleasing] = ACTIONS(2524), + [anon_sym___block] = ACTIONS(2524), + [anon_sym___bridge] = ACTIONS(2524), + [anon_sym___bridge_retained] = ACTIONS(2524), + [anon_sym___bridge_transfer] = ACTIONS(2524), + [anon_sym___complex] = ACTIONS(2524), + [anon_sym___const] = ACTIONS(2524), + [anon_sym___imag] = ACTIONS(2524), + [anon_sym___kindof] = ACTIONS(2524), + [anon_sym___nonnull] = ACTIONS(2524), + [anon_sym___nullable] = ACTIONS(2524), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2524), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2524), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2524), + [anon_sym___real] = ACTIONS(2524), + [anon_sym___strong] = ACTIONS(2524), + [anon_sym___unsafe_unretained] = ACTIONS(2524), + [anon_sym___unused] = ACTIONS(2524), + [anon_sym___weak] = ACTIONS(2524), + [anon_sym_alignas] = ACTIONS(2524), + [anon_sym__Alignas] = ACTIONS(2524), + [sym_primitive_type] = ACTIONS(2524), + [anon_sym_enum] = ACTIONS(2524), + [anon_sym_struct] = ACTIONS(2524), + [anon_sym_union] = ACTIONS(2524), + [anon_sym_if] = ACTIONS(2524), + [anon_sym_else] = ACTIONS(2524), + [anon_sym_switch] = ACTIONS(2524), + [anon_sym_case] = ACTIONS(2524), + [anon_sym_default] = ACTIONS(2524), + [anon_sym_while] = ACTIONS(2524), + [anon_sym_do] = ACTIONS(2524), + [anon_sym_for] = ACTIONS(2524), + [anon_sym_in] = ACTIONS(2524), + [anon_sym_return] = ACTIONS(2524), + [anon_sym_break] = ACTIONS(2524), + [anon_sym_continue] = ACTIONS(2524), + [anon_sym_goto] = ACTIONS(2524), + [anon_sym_DASH_DASH] = ACTIONS(2526), + [anon_sym_PLUS_PLUS] = ACTIONS(2526), + [anon_sym_sizeof] = ACTIONS(2524), + [anon_sym___alignof__] = ACTIONS(2524), + [anon_sym___alignof] = ACTIONS(2524), + [anon_sym__alignof] = ACTIONS(2524), + [anon_sym_alignof] = ACTIONS(2524), + [anon_sym__Alignof] = ACTIONS(2524), + [anon_sym_offsetof] = ACTIONS(2524), + [anon_sym__Generic] = ACTIONS(2524), + [anon_sym_asm] = ACTIONS(2524), + [anon_sym___asm__] = ACTIONS(2524), + [anon_sym___asm] = ACTIONS(2524), + [sym_number_literal] = ACTIONS(2526), + [anon_sym_L_SQUOTE] = ACTIONS(2526), + [anon_sym_u_SQUOTE] = ACTIONS(2526), + [anon_sym_U_SQUOTE] = ACTIONS(2526), + [anon_sym_u8_SQUOTE] = ACTIONS(2526), + [anon_sym_SQUOTE] = ACTIONS(2526), + [anon_sym_AT] = ACTIONS(2524), + [anon_sym_DQUOTE] = ACTIONS(2526), + [anon_sym_L_DQUOTE] = ACTIONS(2526), + [anon_sym_u_DQUOTE] = ACTIONS(2526), + [anon_sym_U_DQUOTE] = ACTIONS(2526), + [anon_sym_u8_DQUOTE] = ACTIONS(2526), + [sym_true] = ACTIONS(2524), + [sym_false] = ACTIONS(2524), + [anon_sym_NULL] = ACTIONS(2524), + [anon_sym_nullptr] = ACTIONS(2524), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2524), + [anon_sym___typeof] = ACTIONS(2524), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_ATimport] = ACTIONS(2526), + [aux_sym_preproc_undef_token1] = ACTIONS(2524), + [anon_sym_POUND] = ACTIONS(2524), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2524), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2524), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2524), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2524), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2524), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2524), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2524), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2524), + [anon_sym_NS_AVAILABLE] = ACTIONS(2524), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2524), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_API_AVAILABLE] = ACTIONS(2524), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_API_DEPRECATED] = ACTIONS(2524), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2524), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2524), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2524), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2524), + [anon_sym___deprecated_msg] = ACTIONS(2524), + [anon_sym___deprecated_enum_msg] = ACTIONS(2524), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2524), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2524), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2524), + [anon_sym_ATprotocol] = ACTIONS(2526), + [anon_sym_ATinterface] = ACTIONS(2526), + [anon_sym_ATimplementation] = ACTIONS(2526), + [anon_sym_ATcompatibility_alias] = ACTIONS(2526), + [anon_sym_ATselector] = ACTIONS(2526), + [anon_sym_ATavailable] = ACTIONS(2526), + [anon_sym___builtin_available] = ACTIONS(2524), + [anon_sym_va_arg] = ACTIONS(2524), + [anon_sym_ATencode] = ACTIONS(2526), + [anon_sym_BOOL] = ACTIONS(2524), + [anon_sym_IMP] = ACTIONS(2524), + [anon_sym_SEL] = ACTIONS(2524), + [anon_sym_Class] = ACTIONS(2524), + [anon_sym_id] = ACTIONS(2524), + }, + [948] = { + [ts_builtin_sym_end] = ACTIONS(2562), + [sym_identifier] = ACTIONS(2560), + [aux_sym_preproc_include_token1] = ACTIONS(2560), + [aux_sym_preproc_include_token2] = ACTIONS(2560), + [aux_sym_preproc_def_token1] = ACTIONS(2560), + [aux_sym_preproc_if_token1] = ACTIONS(2560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2560), + [sym_preproc_directive] = ACTIONS(2560), + [anon_sym_LPAREN2] = ACTIONS(2562), + [anon_sym_BANG] = ACTIONS(2562), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_DASH] = ACTIONS(2560), + [anon_sym_PLUS] = ACTIONS(2560), + [anon_sym_STAR] = ACTIONS(2562), + [anon_sym_CARET] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2562), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym___extension__] = ACTIONS(2560), + [anon_sym_typedef] = ACTIONS(2560), + [anon_sym_extern] = ACTIONS(2560), + [anon_sym___attribute__] = ACTIONS(2560), + [anon_sym___attribute] = ACTIONS(2560), + [anon_sym_noreturn] = ACTIONS(2560), + [anon_sym_LBRACK] = ACTIONS(2562), + [anon_sym___declspec] = ACTIONS(2560), + [anon_sym___cdecl] = ACTIONS(2560), + [anon_sym___clrcall] = ACTIONS(2560), + [anon_sym___stdcall] = ACTIONS(2560), + [anon_sym___fastcall] = ACTIONS(2560), + [anon_sym___thiscall] = ACTIONS(2560), + [anon_sym___vectorcall] = ACTIONS(2560), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_signed] = ACTIONS(2560), + [anon_sym_unsigned] = ACTIONS(2560), + [anon_sym_long] = ACTIONS(2560), + [anon_sym_short] = ACTIONS(2560), + [anon_sym_static] = ACTIONS(2560), + [anon_sym_ATautoreleasepool] = ACTIONS(2562), + [anon_sym_auto] = ACTIONS(2560), + [anon_sym_register] = ACTIONS(2560), + [anon_sym_inline] = ACTIONS(2560), + [anon_sym___inline] = ACTIONS(2560), + [anon_sym___inline__] = ACTIONS(2560), + [anon_sym___forceinline] = ACTIONS(2560), + [anon_sym_thread_local] = ACTIONS(2560), + [anon_sym___thread] = ACTIONS(2560), + [anon_sym_CG_EXTERN] = ACTIONS(2560), + [anon_sym_CG_INLINE] = ACTIONS(2560), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2560), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2560), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2560), + [anon_sym_IBOutlet] = ACTIONS(2560), + [anon_sym_IBInspectable] = ACTIONS(2560), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2560), + [anon_sym_NS_INLINE] = ACTIONS(2560), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2560), + [anon_sym_OBJC_EXPORT] = ACTIONS(2560), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2560), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2560), + [anon_sym_const] = ACTIONS(2560), + [anon_sym_constexpr] = ACTIONS(2560), + [anon_sym_volatile] = ACTIONS(2560), + [anon_sym_restrict] = ACTIONS(2560), + [anon_sym___restrict__] = ACTIONS(2560), + [anon_sym__Atomic] = ACTIONS(2560), + [anon_sym__Noreturn] = ACTIONS(2560), + [anon_sym__Nonnull] = ACTIONS(2560), + [anon_sym_nullable] = ACTIONS(2560), + [anon_sym__Complex] = ACTIONS(2560), + [anon_sym__Nullable] = ACTIONS(2560), + [anon_sym__Nullable_result] = ACTIONS(2560), + [anon_sym__Null_unspecified] = ACTIONS(2560), + [anon_sym___autoreleasing] = ACTIONS(2560), + [anon_sym___block] = ACTIONS(2560), + [anon_sym___bridge] = ACTIONS(2560), + [anon_sym___bridge_retained] = ACTIONS(2560), + [anon_sym___bridge_transfer] = ACTIONS(2560), + [anon_sym___complex] = ACTIONS(2560), + [anon_sym___const] = ACTIONS(2560), + [anon_sym___imag] = ACTIONS(2560), + [anon_sym___kindof] = ACTIONS(2560), + [anon_sym___nonnull] = ACTIONS(2560), + [anon_sym___nullable] = ACTIONS(2560), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2560), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2560), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2560), + [anon_sym___real] = ACTIONS(2560), + [anon_sym___strong] = ACTIONS(2560), + [anon_sym___unsafe_unretained] = ACTIONS(2560), + [anon_sym___unused] = ACTIONS(2560), + [anon_sym___weak] = ACTIONS(2560), + [anon_sym_alignas] = ACTIONS(2560), + [anon_sym__Alignas] = ACTIONS(2560), + [sym_primitive_type] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2560), + [anon_sym_struct] = ACTIONS(2560), + [anon_sym_union] = ACTIONS(2560), + [anon_sym_if] = ACTIONS(2560), + [anon_sym_else] = ACTIONS(2560), + [anon_sym_switch] = ACTIONS(2560), + [anon_sym_case] = ACTIONS(2560), + [anon_sym_default] = ACTIONS(2560), + [anon_sym_while] = ACTIONS(2560), + [anon_sym_do] = ACTIONS(2560), + [anon_sym_for] = ACTIONS(2560), + [anon_sym_in] = ACTIONS(2560), + [anon_sym_return] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_goto] = ACTIONS(2560), + [anon_sym_DASH_DASH] = ACTIONS(2562), + [anon_sym_PLUS_PLUS] = ACTIONS(2562), + [anon_sym_sizeof] = ACTIONS(2560), + [anon_sym___alignof__] = ACTIONS(2560), + [anon_sym___alignof] = ACTIONS(2560), + [anon_sym__alignof] = ACTIONS(2560), + [anon_sym_alignof] = ACTIONS(2560), + [anon_sym__Alignof] = ACTIONS(2560), + [anon_sym_offsetof] = ACTIONS(2560), + [anon_sym__Generic] = ACTIONS(2560), + [anon_sym_asm] = ACTIONS(2560), + [anon_sym___asm__] = ACTIONS(2560), + [anon_sym___asm] = ACTIONS(2560), + [sym_number_literal] = ACTIONS(2562), + [anon_sym_L_SQUOTE] = ACTIONS(2562), + [anon_sym_u_SQUOTE] = ACTIONS(2562), + [anon_sym_U_SQUOTE] = ACTIONS(2562), + [anon_sym_u8_SQUOTE] = ACTIONS(2562), + [anon_sym_SQUOTE] = ACTIONS(2562), + [anon_sym_AT] = ACTIONS(2560), + [anon_sym_DQUOTE] = ACTIONS(2562), + [anon_sym_L_DQUOTE] = ACTIONS(2562), + [anon_sym_u_DQUOTE] = ACTIONS(2562), + [anon_sym_U_DQUOTE] = ACTIONS(2562), + [anon_sym_u8_DQUOTE] = ACTIONS(2562), + [sym_true] = ACTIONS(2560), + [sym_false] = ACTIONS(2560), + [anon_sym_NULL] = ACTIONS(2560), + [anon_sym_nullptr] = ACTIONS(2560), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2560), + [anon_sym___typeof] = ACTIONS(2560), + [anon_sym_typeof] = ACTIONS(2560), + [anon_sym_ATimport] = ACTIONS(2562), + [aux_sym_preproc_undef_token1] = ACTIONS(2560), + [anon_sym_POUND] = ACTIONS(2560), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2560), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2560), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2560), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2560), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2560), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2560), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2560), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2560), + [anon_sym_NS_AVAILABLE] = ACTIONS(2560), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2560), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_API_AVAILABLE] = ACTIONS(2560), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_API_DEPRECATED] = ACTIONS(2560), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2560), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2560), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2560), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2560), + [anon_sym___deprecated_msg] = ACTIONS(2560), + [anon_sym___deprecated_enum_msg] = ACTIONS(2560), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2560), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2560), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2560), + [anon_sym_ATprotocol] = ACTIONS(2562), + [anon_sym_ATinterface] = ACTIONS(2562), + [anon_sym_ATimplementation] = ACTIONS(2562), + [anon_sym_ATcompatibility_alias] = ACTIONS(2562), + [anon_sym_ATselector] = ACTIONS(2562), + [anon_sym_ATavailable] = ACTIONS(2562), + [anon_sym___builtin_available] = ACTIONS(2560), + [anon_sym_va_arg] = ACTIONS(2560), + [anon_sym_ATencode] = ACTIONS(2562), + [anon_sym_BOOL] = ACTIONS(2560), + [anon_sym_IMP] = ACTIONS(2560), + [anon_sym_SEL] = ACTIONS(2560), + [anon_sym_Class] = ACTIONS(2560), + [anon_sym_id] = ACTIONS(2560), + }, + [949] = { + [ts_builtin_sym_end] = ACTIONS(2530), + [sym_identifier] = ACTIONS(2528), + [aux_sym_preproc_include_token1] = ACTIONS(2528), + [aux_sym_preproc_include_token2] = ACTIONS(2528), + [aux_sym_preproc_def_token1] = ACTIONS(2528), + [aux_sym_preproc_if_token1] = ACTIONS(2528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2528), + [sym_preproc_directive] = ACTIONS(2528), + [anon_sym_LPAREN2] = ACTIONS(2530), + [anon_sym_BANG] = ACTIONS(2530), + [anon_sym_TILDE] = ACTIONS(2530), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_CARET] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2530), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym___extension__] = ACTIONS(2528), + [anon_sym_typedef] = ACTIONS(2528), + [anon_sym_extern] = ACTIONS(2528), + [anon_sym___attribute__] = ACTIONS(2528), + [anon_sym___attribute] = ACTIONS(2528), + [anon_sym_noreturn] = ACTIONS(2528), + [anon_sym_LBRACK] = ACTIONS(2530), + [anon_sym___declspec] = ACTIONS(2528), + [anon_sym___cdecl] = ACTIONS(2528), + [anon_sym___clrcall] = ACTIONS(2528), + [anon_sym___stdcall] = ACTIONS(2528), + [anon_sym___fastcall] = ACTIONS(2528), + [anon_sym___thiscall] = ACTIONS(2528), + [anon_sym___vectorcall] = ACTIONS(2528), + [anon_sym_LBRACE] = ACTIONS(2530), + [anon_sym_signed] = ACTIONS(2528), + [anon_sym_unsigned] = ACTIONS(2528), + [anon_sym_long] = ACTIONS(2528), + [anon_sym_short] = ACTIONS(2528), + [anon_sym_static] = ACTIONS(2528), + [anon_sym_ATautoreleasepool] = ACTIONS(2530), + [anon_sym_auto] = ACTIONS(2528), + [anon_sym_register] = ACTIONS(2528), + [anon_sym_inline] = ACTIONS(2528), + [anon_sym___inline] = ACTIONS(2528), + [anon_sym___inline__] = ACTIONS(2528), + [anon_sym___forceinline] = ACTIONS(2528), + [anon_sym_thread_local] = ACTIONS(2528), + [anon_sym___thread] = ACTIONS(2528), + [anon_sym_CG_EXTERN] = ACTIONS(2528), + [anon_sym_CG_INLINE] = ACTIONS(2528), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2528), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2528), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2528), + [anon_sym_IBOutlet] = ACTIONS(2528), + [anon_sym_IBInspectable] = ACTIONS(2528), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2528), + [anon_sym_NS_INLINE] = ACTIONS(2528), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2528), + [anon_sym_OBJC_EXPORT] = ACTIONS(2528), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2528), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2528), + [anon_sym_const] = ACTIONS(2528), + [anon_sym_constexpr] = ACTIONS(2528), + [anon_sym_volatile] = ACTIONS(2528), + [anon_sym_restrict] = ACTIONS(2528), + [anon_sym___restrict__] = ACTIONS(2528), + [anon_sym__Atomic] = ACTIONS(2528), + [anon_sym__Noreturn] = ACTIONS(2528), + [anon_sym__Nonnull] = ACTIONS(2528), + [anon_sym_nullable] = ACTIONS(2528), + [anon_sym__Complex] = ACTIONS(2528), + [anon_sym__Nullable] = ACTIONS(2528), + [anon_sym__Nullable_result] = ACTIONS(2528), + [anon_sym__Null_unspecified] = ACTIONS(2528), + [anon_sym___autoreleasing] = ACTIONS(2528), + [anon_sym___block] = ACTIONS(2528), + [anon_sym___bridge] = ACTIONS(2528), + [anon_sym___bridge_retained] = ACTIONS(2528), + [anon_sym___bridge_transfer] = ACTIONS(2528), + [anon_sym___complex] = ACTIONS(2528), + [anon_sym___const] = ACTIONS(2528), + [anon_sym___imag] = ACTIONS(2528), + [anon_sym___kindof] = ACTIONS(2528), + [anon_sym___nonnull] = ACTIONS(2528), + [anon_sym___nullable] = ACTIONS(2528), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2528), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2528), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2528), + [anon_sym___real] = ACTIONS(2528), + [anon_sym___strong] = ACTIONS(2528), + [anon_sym___unsafe_unretained] = ACTIONS(2528), + [anon_sym___unused] = ACTIONS(2528), + [anon_sym___weak] = ACTIONS(2528), + [anon_sym_alignas] = ACTIONS(2528), + [anon_sym__Alignas] = ACTIONS(2528), + [sym_primitive_type] = ACTIONS(2528), + [anon_sym_enum] = ACTIONS(2528), + [anon_sym_struct] = ACTIONS(2528), + [anon_sym_union] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_else] = ACTIONS(2528), + [anon_sym_switch] = ACTIONS(2528), + [anon_sym_case] = ACTIONS(2528), + [anon_sym_default] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_in] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_break] = ACTIONS(2528), + [anon_sym_continue] = ACTIONS(2528), + [anon_sym_goto] = ACTIONS(2528), + [anon_sym_DASH_DASH] = ACTIONS(2530), + [anon_sym_PLUS_PLUS] = ACTIONS(2530), + [anon_sym_sizeof] = ACTIONS(2528), + [anon_sym___alignof__] = ACTIONS(2528), + [anon_sym___alignof] = ACTIONS(2528), + [anon_sym__alignof] = ACTIONS(2528), + [anon_sym_alignof] = ACTIONS(2528), + [anon_sym__Alignof] = ACTIONS(2528), + [anon_sym_offsetof] = ACTIONS(2528), + [anon_sym__Generic] = ACTIONS(2528), + [anon_sym_asm] = ACTIONS(2528), + [anon_sym___asm__] = ACTIONS(2528), + [anon_sym___asm] = ACTIONS(2528), + [sym_number_literal] = ACTIONS(2530), + [anon_sym_L_SQUOTE] = ACTIONS(2530), + [anon_sym_u_SQUOTE] = ACTIONS(2530), + [anon_sym_U_SQUOTE] = ACTIONS(2530), + [anon_sym_u8_SQUOTE] = ACTIONS(2530), + [anon_sym_SQUOTE] = ACTIONS(2530), + [anon_sym_AT] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2530), + [anon_sym_L_DQUOTE] = ACTIONS(2530), + [anon_sym_u_DQUOTE] = ACTIONS(2530), + [anon_sym_U_DQUOTE] = ACTIONS(2530), + [anon_sym_u8_DQUOTE] = ACTIONS(2530), + [sym_true] = ACTIONS(2528), + [sym_false] = ACTIONS(2528), + [anon_sym_NULL] = ACTIONS(2528), + [anon_sym_nullptr] = ACTIONS(2528), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2528), + [anon_sym___typeof] = ACTIONS(2528), + [anon_sym_typeof] = ACTIONS(2528), + [anon_sym_ATimport] = ACTIONS(2530), + [aux_sym_preproc_undef_token1] = ACTIONS(2528), + [anon_sym_POUND] = ACTIONS(2528), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2528), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2528), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2528), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2528), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2528), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2528), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2528), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2528), + [anon_sym_NS_AVAILABLE] = ACTIONS(2528), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2528), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_API_AVAILABLE] = ACTIONS(2528), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_API_DEPRECATED] = ACTIONS(2528), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2528), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2528), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2528), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2528), + [anon_sym___deprecated_msg] = ACTIONS(2528), + [anon_sym___deprecated_enum_msg] = ACTIONS(2528), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2528), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2528), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2528), + [anon_sym_ATprotocol] = ACTIONS(2530), + [anon_sym_ATinterface] = ACTIONS(2530), + [anon_sym_ATimplementation] = ACTIONS(2530), + [anon_sym_ATcompatibility_alias] = ACTIONS(2530), + [anon_sym_ATselector] = ACTIONS(2530), + [anon_sym_ATavailable] = ACTIONS(2530), + [anon_sym___builtin_available] = ACTIONS(2528), + [anon_sym_va_arg] = ACTIONS(2528), + [anon_sym_ATencode] = ACTIONS(2530), + [anon_sym_BOOL] = ACTIONS(2528), + [anon_sym_IMP] = ACTIONS(2528), + [anon_sym_SEL] = ACTIONS(2528), + [anon_sym_Class] = ACTIONS(2528), + [anon_sym_id] = ACTIONS(2528), + }, + [950] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [951] = { + [ts_builtin_sym_end] = ACTIONS(2488), + [sym_identifier] = ACTIONS(2486), + [aux_sym_preproc_include_token1] = ACTIONS(2486), + [aux_sym_preproc_include_token2] = ACTIONS(2486), + [aux_sym_preproc_def_token1] = ACTIONS(2486), + [aux_sym_preproc_if_token1] = ACTIONS(2486), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2486), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2486), + [sym_preproc_directive] = ACTIONS(2486), + [anon_sym_LPAREN2] = ACTIONS(2488), + [anon_sym_BANG] = ACTIONS(2488), + [anon_sym_TILDE] = ACTIONS(2488), + [anon_sym_DASH] = ACTIONS(2486), + [anon_sym_PLUS] = ACTIONS(2486), + [anon_sym_STAR] = ACTIONS(2488), + [anon_sym_CARET] = ACTIONS(2488), + [anon_sym_AMP] = ACTIONS(2488), + [anon_sym_SEMI] = ACTIONS(2488), + [anon_sym___extension__] = ACTIONS(2486), + [anon_sym_typedef] = ACTIONS(2486), + [anon_sym_extern] = ACTIONS(2486), + [anon_sym___attribute__] = ACTIONS(2486), + [anon_sym___attribute] = ACTIONS(2486), + [anon_sym_noreturn] = ACTIONS(2486), + [anon_sym_LBRACK] = ACTIONS(2488), + [anon_sym___declspec] = ACTIONS(2486), + [anon_sym___cdecl] = ACTIONS(2486), + [anon_sym___clrcall] = ACTIONS(2486), + [anon_sym___stdcall] = ACTIONS(2486), + [anon_sym___fastcall] = ACTIONS(2486), + [anon_sym___thiscall] = ACTIONS(2486), + [anon_sym___vectorcall] = ACTIONS(2486), + [anon_sym_LBRACE] = ACTIONS(2488), + [anon_sym_signed] = ACTIONS(2486), + [anon_sym_unsigned] = ACTIONS(2486), + [anon_sym_long] = ACTIONS(2486), + [anon_sym_short] = ACTIONS(2486), + [anon_sym_static] = ACTIONS(2486), + [anon_sym_ATautoreleasepool] = ACTIONS(2488), + [anon_sym_auto] = ACTIONS(2486), + [anon_sym_register] = ACTIONS(2486), + [anon_sym_inline] = ACTIONS(2486), + [anon_sym___inline] = ACTIONS(2486), + [anon_sym___inline__] = ACTIONS(2486), + [anon_sym___forceinline] = ACTIONS(2486), + [anon_sym_thread_local] = ACTIONS(2486), + [anon_sym___thread] = ACTIONS(2486), + [anon_sym_CG_EXTERN] = ACTIONS(2486), + [anon_sym_CG_INLINE] = ACTIONS(2486), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2486), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2486), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2486), + [anon_sym_IBOutlet] = ACTIONS(2486), + [anon_sym_IBInspectable] = ACTIONS(2486), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2486), + [anon_sym_NS_INLINE] = ACTIONS(2486), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2486), + [anon_sym_OBJC_EXPORT] = ACTIONS(2486), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2486), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2486), + [anon_sym_const] = ACTIONS(2486), + [anon_sym_constexpr] = ACTIONS(2486), + [anon_sym_volatile] = ACTIONS(2486), + [anon_sym_restrict] = ACTIONS(2486), + [anon_sym___restrict__] = ACTIONS(2486), + [anon_sym__Atomic] = ACTIONS(2486), + [anon_sym__Noreturn] = ACTIONS(2486), + [anon_sym__Nonnull] = ACTIONS(2486), + [anon_sym_nullable] = ACTIONS(2486), + [anon_sym__Complex] = ACTIONS(2486), + [anon_sym__Nullable] = ACTIONS(2486), + [anon_sym__Nullable_result] = ACTIONS(2486), + [anon_sym__Null_unspecified] = ACTIONS(2486), + [anon_sym___autoreleasing] = ACTIONS(2486), + [anon_sym___block] = ACTIONS(2486), + [anon_sym___bridge] = ACTIONS(2486), + [anon_sym___bridge_retained] = ACTIONS(2486), + [anon_sym___bridge_transfer] = ACTIONS(2486), + [anon_sym___complex] = ACTIONS(2486), + [anon_sym___const] = ACTIONS(2486), + [anon_sym___imag] = ACTIONS(2486), + [anon_sym___kindof] = ACTIONS(2486), + [anon_sym___nonnull] = ACTIONS(2486), + [anon_sym___nullable] = ACTIONS(2486), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2486), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2486), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2486), + [anon_sym___real] = ACTIONS(2486), + [anon_sym___strong] = ACTIONS(2486), + [anon_sym___unsafe_unretained] = ACTIONS(2486), + [anon_sym___unused] = ACTIONS(2486), + [anon_sym___weak] = ACTIONS(2486), + [anon_sym_alignas] = ACTIONS(2486), + [anon_sym__Alignas] = ACTIONS(2486), + [sym_primitive_type] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2486), + [anon_sym_struct] = ACTIONS(2486), + [anon_sym_union] = ACTIONS(2486), + [anon_sym_if] = ACTIONS(2486), + [anon_sym_else] = ACTIONS(2486), + [anon_sym_switch] = ACTIONS(2486), + [anon_sym_case] = ACTIONS(2486), + [anon_sym_default] = ACTIONS(2486), + [anon_sym_while] = ACTIONS(2486), + [anon_sym_do] = ACTIONS(2486), + [anon_sym_for] = ACTIONS(2486), + [anon_sym_in] = ACTIONS(2486), + [anon_sym_return] = ACTIONS(2486), + [anon_sym_break] = ACTIONS(2486), + [anon_sym_continue] = ACTIONS(2486), + [anon_sym_goto] = ACTIONS(2486), + [anon_sym_DASH_DASH] = ACTIONS(2488), + [anon_sym_PLUS_PLUS] = ACTIONS(2488), + [anon_sym_sizeof] = ACTIONS(2486), + [anon_sym___alignof__] = ACTIONS(2486), + [anon_sym___alignof] = ACTIONS(2486), + [anon_sym__alignof] = ACTIONS(2486), + [anon_sym_alignof] = ACTIONS(2486), + [anon_sym__Alignof] = ACTIONS(2486), + [anon_sym_offsetof] = ACTIONS(2486), + [anon_sym__Generic] = ACTIONS(2486), + [anon_sym_asm] = ACTIONS(2486), + [anon_sym___asm__] = ACTIONS(2486), + [anon_sym___asm] = ACTIONS(2486), + [sym_number_literal] = ACTIONS(2488), + [anon_sym_L_SQUOTE] = ACTIONS(2488), + [anon_sym_u_SQUOTE] = ACTIONS(2488), + [anon_sym_U_SQUOTE] = ACTIONS(2488), + [anon_sym_u8_SQUOTE] = ACTIONS(2488), + [anon_sym_SQUOTE] = ACTIONS(2488), + [anon_sym_AT] = ACTIONS(2486), + [anon_sym_DQUOTE] = ACTIONS(2488), + [anon_sym_L_DQUOTE] = ACTIONS(2488), + [anon_sym_u_DQUOTE] = ACTIONS(2488), + [anon_sym_U_DQUOTE] = ACTIONS(2488), + [anon_sym_u8_DQUOTE] = ACTIONS(2488), + [sym_true] = ACTIONS(2486), + [sym_false] = ACTIONS(2486), + [anon_sym_NULL] = ACTIONS(2486), + [anon_sym_nullptr] = ACTIONS(2486), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2486), + [anon_sym___typeof] = ACTIONS(2486), + [anon_sym_typeof] = ACTIONS(2486), + [anon_sym_ATimport] = ACTIONS(2488), + [aux_sym_preproc_undef_token1] = ACTIONS(2486), + [anon_sym_POUND] = ACTIONS(2486), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2486), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2486), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2486), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2486), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2486), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2486), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2486), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2486), + [anon_sym_NS_AVAILABLE] = ACTIONS(2486), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2486), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_API_AVAILABLE] = ACTIONS(2486), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_API_DEPRECATED] = ACTIONS(2486), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2486), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2486), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2486), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2486), + [anon_sym___deprecated_msg] = ACTIONS(2486), + [anon_sym___deprecated_enum_msg] = ACTIONS(2486), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2486), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2486), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2486), + [anon_sym_ATprotocol] = ACTIONS(2488), + [anon_sym_ATinterface] = ACTIONS(2488), + [anon_sym_ATimplementation] = ACTIONS(2488), + [anon_sym_ATcompatibility_alias] = ACTIONS(2488), + [anon_sym_ATselector] = ACTIONS(2488), + [anon_sym_ATavailable] = ACTIONS(2488), + [anon_sym___builtin_available] = ACTIONS(2486), + [anon_sym_va_arg] = ACTIONS(2486), + [anon_sym_ATencode] = ACTIONS(2488), + [anon_sym_BOOL] = ACTIONS(2486), + [anon_sym_IMP] = ACTIONS(2486), + [anon_sym_SEL] = ACTIONS(2486), + [anon_sym_Class] = ACTIONS(2486), + [anon_sym_id] = ACTIONS(2486), + }, + [952] = { + [ts_builtin_sym_end] = ACTIONS(2476), + [sym_identifier] = ACTIONS(2474), + [aux_sym_preproc_include_token1] = ACTIONS(2474), + [aux_sym_preproc_include_token2] = ACTIONS(2474), + [aux_sym_preproc_def_token1] = ACTIONS(2474), + [aux_sym_preproc_if_token1] = ACTIONS(2474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2474), + [sym_preproc_directive] = ACTIONS(2474), + [anon_sym_LPAREN2] = ACTIONS(2476), + [anon_sym_BANG] = ACTIONS(2476), + [anon_sym_TILDE] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2474), + [anon_sym_PLUS] = ACTIONS(2474), + [anon_sym_STAR] = ACTIONS(2476), + [anon_sym_CARET] = ACTIONS(2476), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2476), + [anon_sym___extension__] = ACTIONS(2474), + [anon_sym_typedef] = ACTIONS(2474), + [anon_sym_extern] = ACTIONS(2474), + [anon_sym___attribute__] = ACTIONS(2474), + [anon_sym___attribute] = ACTIONS(2474), + [anon_sym_noreturn] = ACTIONS(2474), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym___declspec] = ACTIONS(2474), + [anon_sym___cdecl] = ACTIONS(2474), + [anon_sym___clrcall] = ACTIONS(2474), + [anon_sym___stdcall] = ACTIONS(2474), + [anon_sym___fastcall] = ACTIONS(2474), + [anon_sym___thiscall] = ACTIONS(2474), + [anon_sym___vectorcall] = ACTIONS(2474), + [anon_sym_LBRACE] = ACTIONS(2476), + [anon_sym_signed] = ACTIONS(2474), + [anon_sym_unsigned] = ACTIONS(2474), + [anon_sym_long] = ACTIONS(2474), + [anon_sym_short] = ACTIONS(2474), + [anon_sym_static] = ACTIONS(2474), + [anon_sym_ATautoreleasepool] = ACTIONS(2476), + [anon_sym_auto] = ACTIONS(2474), + [anon_sym_register] = ACTIONS(2474), + [anon_sym_inline] = ACTIONS(2474), + [anon_sym___inline] = ACTIONS(2474), + [anon_sym___inline__] = ACTIONS(2474), + [anon_sym___forceinline] = ACTIONS(2474), + [anon_sym_thread_local] = ACTIONS(2474), + [anon_sym___thread] = ACTIONS(2474), + [anon_sym_CG_EXTERN] = ACTIONS(2474), + [anon_sym_CG_INLINE] = ACTIONS(2474), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2474), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2474), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2474), + [anon_sym_IBOutlet] = ACTIONS(2474), + [anon_sym_IBInspectable] = ACTIONS(2474), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2474), + [anon_sym_NS_INLINE] = ACTIONS(2474), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2474), + [anon_sym_OBJC_EXPORT] = ACTIONS(2474), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2474), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2474), + [anon_sym_const] = ACTIONS(2474), + [anon_sym_constexpr] = ACTIONS(2474), + [anon_sym_volatile] = ACTIONS(2474), + [anon_sym_restrict] = ACTIONS(2474), + [anon_sym___restrict__] = ACTIONS(2474), + [anon_sym__Atomic] = ACTIONS(2474), + [anon_sym__Noreturn] = ACTIONS(2474), + [anon_sym__Nonnull] = ACTIONS(2474), + [anon_sym_nullable] = ACTIONS(2474), + [anon_sym__Complex] = ACTIONS(2474), + [anon_sym__Nullable] = ACTIONS(2474), + [anon_sym__Nullable_result] = ACTIONS(2474), + [anon_sym__Null_unspecified] = ACTIONS(2474), + [anon_sym___autoreleasing] = ACTIONS(2474), + [anon_sym___block] = ACTIONS(2474), + [anon_sym___bridge] = ACTIONS(2474), + [anon_sym___bridge_retained] = ACTIONS(2474), + [anon_sym___bridge_transfer] = ACTIONS(2474), + [anon_sym___complex] = ACTIONS(2474), + [anon_sym___const] = ACTIONS(2474), + [anon_sym___imag] = ACTIONS(2474), + [anon_sym___kindof] = ACTIONS(2474), + [anon_sym___nonnull] = ACTIONS(2474), + [anon_sym___nullable] = ACTIONS(2474), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2474), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2474), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2474), + [anon_sym___real] = ACTIONS(2474), + [anon_sym___strong] = ACTIONS(2474), + [anon_sym___unsafe_unretained] = ACTIONS(2474), + [anon_sym___unused] = ACTIONS(2474), + [anon_sym___weak] = ACTIONS(2474), + [anon_sym_alignas] = ACTIONS(2474), + [anon_sym__Alignas] = ACTIONS(2474), + [sym_primitive_type] = ACTIONS(2474), + [anon_sym_enum] = ACTIONS(2474), + [anon_sym_struct] = ACTIONS(2474), + [anon_sym_union] = ACTIONS(2474), + [anon_sym_if] = ACTIONS(2474), + [anon_sym_else] = ACTIONS(2474), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_case] = ACTIONS(2474), + [anon_sym_default] = ACTIONS(2474), + [anon_sym_while] = ACTIONS(2474), + [anon_sym_do] = ACTIONS(2474), + [anon_sym_for] = ACTIONS(2474), + [anon_sym_in] = ACTIONS(2474), + [anon_sym_return] = ACTIONS(2474), + [anon_sym_break] = ACTIONS(2474), + [anon_sym_continue] = ACTIONS(2474), + [anon_sym_goto] = ACTIONS(2474), + [anon_sym_DASH_DASH] = ACTIONS(2476), + [anon_sym_PLUS_PLUS] = ACTIONS(2476), + [anon_sym_sizeof] = ACTIONS(2474), + [anon_sym___alignof__] = ACTIONS(2474), + [anon_sym___alignof] = ACTIONS(2474), + [anon_sym__alignof] = ACTIONS(2474), + [anon_sym_alignof] = ACTIONS(2474), + [anon_sym__Alignof] = ACTIONS(2474), + [anon_sym_offsetof] = ACTIONS(2474), + [anon_sym__Generic] = ACTIONS(2474), + [anon_sym_asm] = ACTIONS(2474), + [anon_sym___asm__] = ACTIONS(2474), + [anon_sym___asm] = ACTIONS(2474), + [sym_number_literal] = ACTIONS(2476), + [anon_sym_L_SQUOTE] = ACTIONS(2476), + [anon_sym_u_SQUOTE] = ACTIONS(2476), + [anon_sym_U_SQUOTE] = ACTIONS(2476), + [anon_sym_u8_SQUOTE] = ACTIONS(2476), + [anon_sym_SQUOTE] = ACTIONS(2476), + [anon_sym_AT] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_L_DQUOTE] = ACTIONS(2476), + [anon_sym_u_DQUOTE] = ACTIONS(2476), + [anon_sym_U_DQUOTE] = ACTIONS(2476), + [anon_sym_u8_DQUOTE] = ACTIONS(2476), + [sym_true] = ACTIONS(2474), + [sym_false] = ACTIONS(2474), + [anon_sym_NULL] = ACTIONS(2474), + [anon_sym_nullptr] = ACTIONS(2474), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2474), + [anon_sym___typeof] = ACTIONS(2474), + [anon_sym_typeof] = ACTIONS(2474), + [anon_sym_ATimport] = ACTIONS(2476), + [aux_sym_preproc_undef_token1] = ACTIONS(2474), + [anon_sym_POUND] = ACTIONS(2474), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2474), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2474), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2474), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2474), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2474), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2474), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2474), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2474), + [anon_sym_NS_AVAILABLE] = ACTIONS(2474), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2474), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_API_AVAILABLE] = ACTIONS(2474), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_API_DEPRECATED] = ACTIONS(2474), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2474), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2474), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2474), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2474), + [anon_sym___deprecated_msg] = ACTIONS(2474), + [anon_sym___deprecated_enum_msg] = ACTIONS(2474), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2474), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2474), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2474), + [anon_sym_ATprotocol] = ACTIONS(2476), + [anon_sym_ATinterface] = ACTIONS(2476), + [anon_sym_ATimplementation] = ACTIONS(2476), + [anon_sym_ATcompatibility_alias] = ACTIONS(2476), + [anon_sym_ATselector] = ACTIONS(2476), + [anon_sym_ATavailable] = ACTIONS(2476), + [anon_sym___builtin_available] = ACTIONS(2474), + [anon_sym_va_arg] = ACTIONS(2474), + [anon_sym_ATencode] = ACTIONS(2476), + [anon_sym_BOOL] = ACTIONS(2474), + [anon_sym_IMP] = ACTIONS(2474), + [anon_sym_SEL] = ACTIONS(2474), + [anon_sym_Class] = ACTIONS(2474), + [anon_sym_id] = ACTIONS(2474), + }, + [953] = { + [ts_builtin_sym_end] = ACTIONS(2492), + [sym_identifier] = ACTIONS(2490), + [aux_sym_preproc_include_token1] = ACTIONS(2490), + [aux_sym_preproc_include_token2] = ACTIONS(2490), + [aux_sym_preproc_def_token1] = ACTIONS(2490), + [aux_sym_preproc_if_token1] = ACTIONS(2490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2490), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2490), + [sym_preproc_directive] = ACTIONS(2490), + [anon_sym_LPAREN2] = ACTIONS(2492), + [anon_sym_BANG] = ACTIONS(2492), + [anon_sym_TILDE] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2490), + [anon_sym_PLUS] = ACTIONS(2490), + [anon_sym_STAR] = ACTIONS(2492), + [anon_sym_CARET] = ACTIONS(2492), + [anon_sym_AMP] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym___extension__] = ACTIONS(2490), + [anon_sym_typedef] = ACTIONS(2490), + [anon_sym_extern] = ACTIONS(2490), + [anon_sym___attribute__] = ACTIONS(2490), + [anon_sym___attribute] = ACTIONS(2490), + [anon_sym_noreturn] = ACTIONS(2490), + [anon_sym_LBRACK] = ACTIONS(2492), + [anon_sym___declspec] = ACTIONS(2490), + [anon_sym___cdecl] = ACTIONS(2490), + [anon_sym___clrcall] = ACTIONS(2490), + [anon_sym___stdcall] = ACTIONS(2490), + [anon_sym___fastcall] = ACTIONS(2490), + [anon_sym___thiscall] = ACTIONS(2490), + [anon_sym___vectorcall] = ACTIONS(2490), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_signed] = ACTIONS(2490), + [anon_sym_unsigned] = ACTIONS(2490), + [anon_sym_long] = ACTIONS(2490), + [anon_sym_short] = ACTIONS(2490), + [anon_sym_static] = ACTIONS(2490), + [anon_sym_ATautoreleasepool] = ACTIONS(2492), + [anon_sym_auto] = ACTIONS(2490), + [anon_sym_register] = ACTIONS(2490), + [anon_sym_inline] = ACTIONS(2490), + [anon_sym___inline] = ACTIONS(2490), + [anon_sym___inline__] = ACTIONS(2490), + [anon_sym___forceinline] = ACTIONS(2490), + [anon_sym_thread_local] = ACTIONS(2490), + [anon_sym___thread] = ACTIONS(2490), + [anon_sym_CG_EXTERN] = ACTIONS(2490), + [anon_sym_CG_INLINE] = ACTIONS(2490), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2490), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2490), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2490), + [anon_sym_IBOutlet] = ACTIONS(2490), + [anon_sym_IBInspectable] = ACTIONS(2490), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2490), + [anon_sym_NS_INLINE] = ACTIONS(2490), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2490), + [anon_sym_OBJC_EXPORT] = ACTIONS(2490), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2490), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(2490), + [anon_sym_constexpr] = ACTIONS(2490), + [anon_sym_volatile] = ACTIONS(2490), + [anon_sym_restrict] = ACTIONS(2490), + [anon_sym___restrict__] = ACTIONS(2490), + [anon_sym__Atomic] = ACTIONS(2490), + [anon_sym__Noreturn] = ACTIONS(2490), + [anon_sym__Nonnull] = ACTIONS(2490), + [anon_sym_nullable] = ACTIONS(2490), + [anon_sym__Complex] = ACTIONS(2490), + [anon_sym__Nullable] = ACTIONS(2490), + [anon_sym__Nullable_result] = ACTIONS(2490), + [anon_sym__Null_unspecified] = ACTIONS(2490), + [anon_sym___autoreleasing] = ACTIONS(2490), + [anon_sym___block] = ACTIONS(2490), + [anon_sym___bridge] = ACTIONS(2490), + [anon_sym___bridge_retained] = ACTIONS(2490), + [anon_sym___bridge_transfer] = ACTIONS(2490), + [anon_sym___complex] = ACTIONS(2490), + [anon_sym___const] = ACTIONS(2490), + [anon_sym___imag] = ACTIONS(2490), + [anon_sym___kindof] = ACTIONS(2490), + [anon_sym___nonnull] = ACTIONS(2490), + [anon_sym___nullable] = ACTIONS(2490), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2490), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2490), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2490), + [anon_sym___real] = ACTIONS(2490), + [anon_sym___strong] = ACTIONS(2490), + [anon_sym___unsafe_unretained] = ACTIONS(2490), + [anon_sym___unused] = ACTIONS(2490), + [anon_sym___weak] = ACTIONS(2490), + [anon_sym_alignas] = ACTIONS(2490), + [anon_sym__Alignas] = ACTIONS(2490), + [sym_primitive_type] = ACTIONS(2490), + [anon_sym_enum] = ACTIONS(2490), + [anon_sym_struct] = ACTIONS(2490), + [anon_sym_union] = ACTIONS(2490), + [anon_sym_if] = ACTIONS(2490), + [anon_sym_else] = ACTIONS(2490), + [anon_sym_switch] = ACTIONS(2490), + [anon_sym_case] = ACTIONS(2490), + [anon_sym_default] = ACTIONS(2490), + [anon_sym_while] = ACTIONS(2490), + [anon_sym_do] = ACTIONS(2490), + [anon_sym_for] = ACTIONS(2490), + [anon_sym_in] = ACTIONS(2490), + [anon_sym_return] = ACTIONS(2490), + [anon_sym_break] = ACTIONS(2490), + [anon_sym_continue] = ACTIONS(2490), + [anon_sym_goto] = ACTIONS(2490), + [anon_sym_DASH_DASH] = ACTIONS(2492), + [anon_sym_PLUS_PLUS] = ACTIONS(2492), + [anon_sym_sizeof] = ACTIONS(2490), + [anon_sym___alignof__] = ACTIONS(2490), + [anon_sym___alignof] = ACTIONS(2490), + [anon_sym__alignof] = ACTIONS(2490), + [anon_sym_alignof] = ACTIONS(2490), + [anon_sym__Alignof] = ACTIONS(2490), + [anon_sym_offsetof] = ACTIONS(2490), + [anon_sym__Generic] = ACTIONS(2490), + [anon_sym_asm] = ACTIONS(2490), + [anon_sym___asm__] = ACTIONS(2490), + [anon_sym___asm] = ACTIONS(2490), + [sym_number_literal] = ACTIONS(2492), + [anon_sym_L_SQUOTE] = ACTIONS(2492), + [anon_sym_u_SQUOTE] = ACTIONS(2492), + [anon_sym_U_SQUOTE] = ACTIONS(2492), + [anon_sym_u8_SQUOTE] = ACTIONS(2492), + [anon_sym_SQUOTE] = ACTIONS(2492), + [anon_sym_AT] = ACTIONS(2490), + [anon_sym_DQUOTE] = ACTIONS(2492), + [anon_sym_L_DQUOTE] = ACTIONS(2492), + [anon_sym_u_DQUOTE] = ACTIONS(2492), + [anon_sym_U_DQUOTE] = ACTIONS(2492), + [anon_sym_u8_DQUOTE] = ACTIONS(2492), + [sym_true] = ACTIONS(2490), + [sym_false] = ACTIONS(2490), + [anon_sym_NULL] = ACTIONS(2490), + [anon_sym_nullptr] = ACTIONS(2490), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2490), + [anon_sym___typeof] = ACTIONS(2490), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_ATimport] = ACTIONS(2492), + [aux_sym_preproc_undef_token1] = ACTIONS(2490), + [anon_sym_POUND] = ACTIONS(2490), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2490), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2490), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2490), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2490), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2490), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2490), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2490), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2490), + [anon_sym_NS_AVAILABLE] = ACTIONS(2490), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2490), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_API_AVAILABLE] = ACTIONS(2490), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_API_DEPRECATED] = ACTIONS(2490), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2490), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2490), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2490), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2490), + [anon_sym___deprecated_msg] = ACTIONS(2490), + [anon_sym___deprecated_enum_msg] = ACTIONS(2490), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2490), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2490), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2490), + [anon_sym_ATprotocol] = ACTIONS(2492), + [anon_sym_ATinterface] = ACTIONS(2492), + [anon_sym_ATimplementation] = ACTIONS(2492), + [anon_sym_ATcompatibility_alias] = ACTIONS(2492), + [anon_sym_ATselector] = ACTIONS(2492), + [anon_sym_ATavailable] = ACTIONS(2492), + [anon_sym___builtin_available] = ACTIONS(2490), + [anon_sym_va_arg] = ACTIONS(2490), + [anon_sym_ATencode] = ACTIONS(2492), + [anon_sym_BOOL] = ACTIONS(2490), + [anon_sym_IMP] = ACTIONS(2490), + [anon_sym_SEL] = ACTIONS(2490), + [anon_sym_Class] = ACTIONS(2490), + [anon_sym_id] = ACTIONS(2490), + }, + [954] = { + [ts_builtin_sym_end] = ACTIONS(2418), + [sym_identifier] = ACTIONS(2416), + [aux_sym_preproc_include_token1] = ACTIONS(2416), + [aux_sym_preproc_include_token2] = ACTIONS(2416), + [aux_sym_preproc_def_token1] = ACTIONS(2416), + [aux_sym_preproc_if_token1] = ACTIONS(2416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2416), + [sym_preproc_directive] = ACTIONS(2416), + [anon_sym_LPAREN2] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym___extension__] = ACTIONS(2416), + [anon_sym_typedef] = ACTIONS(2416), + [anon_sym_extern] = ACTIONS(2416), + [anon_sym___attribute__] = ACTIONS(2416), + [anon_sym___attribute] = ACTIONS(2416), + [anon_sym_noreturn] = ACTIONS(2416), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym___declspec] = ACTIONS(2416), + [anon_sym___cdecl] = ACTIONS(2416), + [anon_sym___clrcall] = ACTIONS(2416), + [anon_sym___stdcall] = ACTIONS(2416), + [anon_sym___fastcall] = ACTIONS(2416), + [anon_sym___thiscall] = ACTIONS(2416), + [anon_sym___vectorcall] = ACTIONS(2416), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_signed] = ACTIONS(2416), + [anon_sym_unsigned] = ACTIONS(2416), + [anon_sym_long] = ACTIONS(2416), + [anon_sym_short] = ACTIONS(2416), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_ATautoreleasepool] = ACTIONS(2418), + [anon_sym_auto] = ACTIONS(2416), + [anon_sym_register] = ACTIONS(2416), + [anon_sym_inline] = ACTIONS(2416), + [anon_sym___inline] = ACTIONS(2416), + [anon_sym___inline__] = ACTIONS(2416), + [anon_sym___forceinline] = ACTIONS(2416), + [anon_sym_thread_local] = ACTIONS(2416), + [anon_sym___thread] = ACTIONS(2416), + [anon_sym_CG_EXTERN] = ACTIONS(2416), + [anon_sym_CG_INLINE] = ACTIONS(2416), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2416), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2416), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2416), + [anon_sym_IBOutlet] = ACTIONS(2416), + [anon_sym_IBInspectable] = ACTIONS(2416), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2416), + [anon_sym_NS_INLINE] = ACTIONS(2416), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2416), + [anon_sym_OBJC_EXPORT] = ACTIONS(2416), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2416), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2416), + [anon_sym_const] = ACTIONS(2416), + [anon_sym_constexpr] = ACTIONS(2416), + [anon_sym_volatile] = ACTIONS(2416), + [anon_sym_restrict] = ACTIONS(2416), + [anon_sym___restrict__] = ACTIONS(2416), + [anon_sym__Atomic] = ACTIONS(2416), + [anon_sym__Noreturn] = ACTIONS(2416), + [anon_sym__Nonnull] = ACTIONS(2416), + [anon_sym_nullable] = ACTIONS(2416), + [anon_sym__Complex] = ACTIONS(2416), + [anon_sym__Nullable] = ACTIONS(2416), + [anon_sym__Nullable_result] = ACTIONS(2416), + [anon_sym__Null_unspecified] = ACTIONS(2416), + [anon_sym___autoreleasing] = ACTIONS(2416), + [anon_sym___block] = ACTIONS(2416), + [anon_sym___bridge] = ACTIONS(2416), + [anon_sym___bridge_retained] = ACTIONS(2416), + [anon_sym___bridge_transfer] = ACTIONS(2416), + [anon_sym___complex] = ACTIONS(2416), + [anon_sym___const] = ACTIONS(2416), + [anon_sym___imag] = ACTIONS(2416), + [anon_sym___kindof] = ACTIONS(2416), + [anon_sym___nonnull] = ACTIONS(2416), + [anon_sym___nullable] = ACTIONS(2416), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2416), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2416), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2416), + [anon_sym___real] = ACTIONS(2416), + [anon_sym___strong] = ACTIONS(2416), + [anon_sym___unsafe_unretained] = ACTIONS(2416), + [anon_sym___unused] = ACTIONS(2416), + [anon_sym___weak] = ACTIONS(2416), + [anon_sym_alignas] = ACTIONS(2416), + [anon_sym__Alignas] = ACTIONS(2416), + [sym_primitive_type] = ACTIONS(2416), + [anon_sym_enum] = ACTIONS(2416), + [anon_sym_struct] = ACTIONS(2416), + [anon_sym_union] = ACTIONS(2416), + [anon_sym_if] = ACTIONS(2416), + [anon_sym_else] = ACTIONS(2416), + [anon_sym_switch] = ACTIONS(2416), + [anon_sym_case] = ACTIONS(2416), + [anon_sym_default] = ACTIONS(2416), + [anon_sym_while] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2416), + [anon_sym_for] = ACTIONS(2416), + [anon_sym_in] = ACTIONS(2416), + [anon_sym_return] = ACTIONS(2416), + [anon_sym_break] = ACTIONS(2416), + [anon_sym_continue] = ACTIONS(2416), + [anon_sym_goto] = ACTIONS(2416), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_sizeof] = ACTIONS(2416), + [anon_sym___alignof__] = ACTIONS(2416), + [anon_sym___alignof] = ACTIONS(2416), + [anon_sym__alignof] = ACTIONS(2416), + [anon_sym_alignof] = ACTIONS(2416), + [anon_sym__Alignof] = ACTIONS(2416), + [anon_sym_offsetof] = ACTIONS(2416), + [anon_sym__Generic] = ACTIONS(2416), + [anon_sym_asm] = ACTIONS(2416), + [anon_sym___asm__] = ACTIONS(2416), + [anon_sym___asm] = ACTIONS(2416), + [sym_number_literal] = ACTIONS(2418), + [anon_sym_L_SQUOTE] = ACTIONS(2418), + [anon_sym_u_SQUOTE] = ACTIONS(2418), + [anon_sym_U_SQUOTE] = ACTIONS(2418), + [anon_sym_u8_SQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_L_DQUOTE] = ACTIONS(2418), + [anon_sym_u_DQUOTE] = ACTIONS(2418), + [anon_sym_U_DQUOTE] = ACTIONS(2418), + [anon_sym_u8_DQUOTE] = ACTIONS(2418), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2416), + [anon_sym_nullptr] = ACTIONS(2416), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2416), + [anon_sym___typeof] = ACTIONS(2416), + [anon_sym_typeof] = ACTIONS(2416), + [anon_sym_ATimport] = ACTIONS(2418), + [aux_sym_preproc_undef_token1] = ACTIONS(2416), + [anon_sym_POUND] = ACTIONS(2416), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2416), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2416), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2416), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2416), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2416), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2416), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2416), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2416), + [anon_sym_NS_AVAILABLE] = ACTIONS(2416), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2416), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_API_AVAILABLE] = ACTIONS(2416), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_API_DEPRECATED] = ACTIONS(2416), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2416), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2416), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2416), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2416), + [anon_sym___deprecated_msg] = ACTIONS(2416), + [anon_sym___deprecated_enum_msg] = ACTIONS(2416), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2416), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2416), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2416), + [anon_sym_ATprotocol] = ACTIONS(2418), + [anon_sym_ATinterface] = ACTIONS(2418), + [anon_sym_ATimplementation] = ACTIONS(2418), + [anon_sym_ATcompatibility_alias] = ACTIONS(2418), + [anon_sym_ATselector] = ACTIONS(2418), + [anon_sym_ATavailable] = ACTIONS(2418), + [anon_sym___builtin_available] = ACTIONS(2416), + [anon_sym_va_arg] = ACTIONS(2416), + [anon_sym_ATencode] = ACTIONS(2418), + [anon_sym_BOOL] = ACTIONS(2416), + [anon_sym_IMP] = ACTIONS(2416), + [anon_sym_SEL] = ACTIONS(2416), + [anon_sym_Class] = ACTIONS(2416), + [anon_sym_id] = ACTIONS(2416), + }, + [955] = { + [ts_builtin_sym_end] = ACTIONS(2500), + [sym_identifier] = ACTIONS(2498), + [aux_sym_preproc_include_token1] = ACTIONS(2498), + [aux_sym_preproc_include_token2] = ACTIONS(2498), + [aux_sym_preproc_def_token1] = ACTIONS(2498), + [aux_sym_preproc_if_token1] = ACTIONS(2498), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2498), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2498), + [sym_preproc_directive] = ACTIONS(2498), + [anon_sym_LPAREN2] = ACTIONS(2500), + [anon_sym_BANG] = ACTIONS(2500), + [anon_sym_TILDE] = ACTIONS(2500), + [anon_sym_DASH] = ACTIONS(2498), + [anon_sym_PLUS] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(2500), + [anon_sym_CARET] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(2500), + [anon_sym_SEMI] = ACTIONS(2500), + [anon_sym___extension__] = ACTIONS(2498), + [anon_sym_typedef] = ACTIONS(2498), + [anon_sym_extern] = ACTIONS(2498), + [anon_sym___attribute__] = ACTIONS(2498), + [anon_sym___attribute] = ACTIONS(2498), + [anon_sym_noreturn] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2500), + [anon_sym___declspec] = ACTIONS(2498), + [anon_sym___cdecl] = ACTIONS(2498), + [anon_sym___clrcall] = ACTIONS(2498), + [anon_sym___stdcall] = ACTIONS(2498), + [anon_sym___fastcall] = ACTIONS(2498), + [anon_sym___thiscall] = ACTIONS(2498), + [anon_sym___vectorcall] = ACTIONS(2498), + [anon_sym_LBRACE] = ACTIONS(2500), + [anon_sym_signed] = ACTIONS(2498), + [anon_sym_unsigned] = ACTIONS(2498), + [anon_sym_long] = ACTIONS(2498), + [anon_sym_short] = ACTIONS(2498), + [anon_sym_static] = ACTIONS(2498), + [anon_sym_ATautoreleasepool] = ACTIONS(2500), + [anon_sym_auto] = ACTIONS(2498), + [anon_sym_register] = ACTIONS(2498), + [anon_sym_inline] = ACTIONS(2498), + [anon_sym___inline] = ACTIONS(2498), + [anon_sym___inline__] = ACTIONS(2498), + [anon_sym___forceinline] = ACTIONS(2498), + [anon_sym_thread_local] = ACTIONS(2498), + [anon_sym___thread] = ACTIONS(2498), + [anon_sym_CG_EXTERN] = ACTIONS(2498), + [anon_sym_CG_INLINE] = ACTIONS(2498), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2498), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2498), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2498), + [anon_sym_IBOutlet] = ACTIONS(2498), + [anon_sym_IBInspectable] = ACTIONS(2498), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2498), + [anon_sym_NS_INLINE] = ACTIONS(2498), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2498), + [anon_sym_OBJC_EXPORT] = ACTIONS(2498), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2498), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2498), + [anon_sym_const] = ACTIONS(2498), + [anon_sym_constexpr] = ACTIONS(2498), + [anon_sym_volatile] = ACTIONS(2498), + [anon_sym_restrict] = ACTIONS(2498), + [anon_sym___restrict__] = ACTIONS(2498), + [anon_sym__Atomic] = ACTIONS(2498), + [anon_sym__Noreturn] = ACTIONS(2498), + [anon_sym__Nonnull] = ACTIONS(2498), + [anon_sym_nullable] = ACTIONS(2498), + [anon_sym__Complex] = ACTIONS(2498), + [anon_sym__Nullable] = ACTIONS(2498), + [anon_sym__Nullable_result] = ACTIONS(2498), + [anon_sym__Null_unspecified] = ACTIONS(2498), + [anon_sym___autoreleasing] = ACTIONS(2498), + [anon_sym___block] = ACTIONS(2498), + [anon_sym___bridge] = ACTIONS(2498), + [anon_sym___bridge_retained] = ACTIONS(2498), + [anon_sym___bridge_transfer] = ACTIONS(2498), + [anon_sym___complex] = ACTIONS(2498), + [anon_sym___const] = ACTIONS(2498), + [anon_sym___imag] = ACTIONS(2498), + [anon_sym___kindof] = ACTIONS(2498), + [anon_sym___nonnull] = ACTIONS(2498), + [anon_sym___nullable] = ACTIONS(2498), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2498), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2498), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2498), + [anon_sym___real] = ACTIONS(2498), + [anon_sym___strong] = ACTIONS(2498), + [anon_sym___unsafe_unretained] = ACTIONS(2498), + [anon_sym___unused] = ACTIONS(2498), + [anon_sym___weak] = ACTIONS(2498), + [anon_sym_alignas] = ACTIONS(2498), + [anon_sym__Alignas] = ACTIONS(2498), + [sym_primitive_type] = ACTIONS(2498), + [anon_sym_enum] = ACTIONS(2498), + [anon_sym_struct] = ACTIONS(2498), + [anon_sym_union] = ACTIONS(2498), + [anon_sym_if] = ACTIONS(2498), + [anon_sym_else] = ACTIONS(2498), + [anon_sym_switch] = ACTIONS(2498), + [anon_sym_case] = ACTIONS(2498), + [anon_sym_default] = ACTIONS(2498), + [anon_sym_while] = ACTIONS(2498), + [anon_sym_do] = ACTIONS(2498), + [anon_sym_for] = ACTIONS(2498), + [anon_sym_in] = ACTIONS(2498), + [anon_sym_return] = ACTIONS(2498), + [anon_sym_break] = ACTIONS(2498), + [anon_sym_continue] = ACTIONS(2498), + [anon_sym_goto] = ACTIONS(2498), + [anon_sym_DASH_DASH] = ACTIONS(2500), + [anon_sym_PLUS_PLUS] = ACTIONS(2500), + [anon_sym_sizeof] = ACTIONS(2498), + [anon_sym___alignof__] = ACTIONS(2498), + [anon_sym___alignof] = ACTIONS(2498), + [anon_sym__alignof] = ACTIONS(2498), + [anon_sym_alignof] = ACTIONS(2498), + [anon_sym__Alignof] = ACTIONS(2498), + [anon_sym_offsetof] = ACTIONS(2498), + [anon_sym__Generic] = ACTIONS(2498), + [anon_sym_asm] = ACTIONS(2498), + [anon_sym___asm__] = ACTIONS(2498), + [anon_sym___asm] = ACTIONS(2498), + [sym_number_literal] = ACTIONS(2500), + [anon_sym_L_SQUOTE] = ACTIONS(2500), + [anon_sym_u_SQUOTE] = ACTIONS(2500), + [anon_sym_U_SQUOTE] = ACTIONS(2500), + [anon_sym_u8_SQUOTE] = ACTIONS(2500), + [anon_sym_SQUOTE] = ACTIONS(2500), + [anon_sym_AT] = ACTIONS(2498), + [anon_sym_DQUOTE] = ACTIONS(2500), + [anon_sym_L_DQUOTE] = ACTIONS(2500), + [anon_sym_u_DQUOTE] = ACTIONS(2500), + [anon_sym_U_DQUOTE] = ACTIONS(2500), + [anon_sym_u8_DQUOTE] = ACTIONS(2500), + [sym_true] = ACTIONS(2498), + [sym_false] = ACTIONS(2498), + [anon_sym_NULL] = ACTIONS(2498), + [anon_sym_nullptr] = ACTIONS(2498), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2498), + [anon_sym___typeof] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(2498), + [anon_sym_ATimport] = ACTIONS(2500), + [aux_sym_preproc_undef_token1] = ACTIONS(2498), + [anon_sym_POUND] = ACTIONS(2498), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2498), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2498), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2498), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2498), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2498), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2498), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2498), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2498), + [anon_sym_NS_AVAILABLE] = ACTIONS(2498), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2498), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_API_AVAILABLE] = ACTIONS(2498), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_API_DEPRECATED] = ACTIONS(2498), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2498), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2498), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2498), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2498), + [anon_sym___deprecated_msg] = ACTIONS(2498), + [anon_sym___deprecated_enum_msg] = ACTIONS(2498), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2498), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2498), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2498), + [anon_sym_ATprotocol] = ACTIONS(2500), + [anon_sym_ATinterface] = ACTIONS(2500), + [anon_sym_ATimplementation] = ACTIONS(2500), + [anon_sym_ATcompatibility_alias] = ACTIONS(2500), + [anon_sym_ATselector] = ACTIONS(2500), + [anon_sym_ATavailable] = ACTIONS(2500), + [anon_sym___builtin_available] = ACTIONS(2498), + [anon_sym_va_arg] = ACTIONS(2498), + [anon_sym_ATencode] = ACTIONS(2500), + [anon_sym_BOOL] = ACTIONS(2498), + [anon_sym_IMP] = ACTIONS(2498), + [anon_sym_SEL] = ACTIONS(2498), + [anon_sym_Class] = ACTIONS(2498), + [anon_sym_id] = ACTIONS(2498), + }, + [956] = { + [sym_expression] = STATE(1629), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_extern] = ACTIONS(2922), + [anon_sym___attribute__] = ACTIONS(2922), + [anon_sym___attribute] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym___declspec] = ACTIONS(2922), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_auto] = ACTIONS(2922), + [anon_sym_register] = ACTIONS(2922), + [anon_sym_inline] = ACTIONS(2922), + [anon_sym___inline] = ACTIONS(2922), + [anon_sym___inline__] = ACTIONS(2922), + [anon_sym___forceinline] = ACTIONS(2922), + [anon_sym_thread_local] = ACTIONS(2922), + [anon_sym___thread] = ACTIONS(2922), + [anon_sym_CG_EXTERN] = ACTIONS(2922), + [anon_sym_CG_INLINE] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2922), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2922), + [anon_sym_IBOutlet] = ACTIONS(2922), + [anon_sym_IBInspectable] = ACTIONS(2922), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2922), + [anon_sym_NS_INLINE] = ACTIONS(2922), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2922), + [anon_sym_OBJC_EXPORT] = ACTIONS(2922), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(203), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2926), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2922), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2922), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2922), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2922), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE] = ACTIONS(2922), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_API_AVAILABLE] = ACTIONS(2922), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_API_DEPRECATED] = ACTIONS(2922), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2922), + [anon_sym___deprecated_msg] = ACTIONS(2922), + [anon_sym___deprecated_enum_msg] = ACTIONS(2922), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2922), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2922), + [anon_sym_ATprotocol] = ACTIONS(2928), + [anon_sym_ATinterface] = ACTIONS(2928), + [anon_sym_ATimplementation] = ACTIONS(2928), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(203), + }, + [957] = { + [ts_builtin_sym_end] = ACTIONS(2510), + [sym_identifier] = ACTIONS(2508), + [aux_sym_preproc_include_token1] = ACTIONS(2508), + [aux_sym_preproc_include_token2] = ACTIONS(2508), + [aux_sym_preproc_def_token1] = ACTIONS(2508), + [aux_sym_preproc_if_token1] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2508), + [sym_preproc_directive] = ACTIONS(2508), + [anon_sym_LPAREN2] = ACTIONS(2510), + [anon_sym_BANG] = ACTIONS(2510), + [anon_sym_TILDE] = ACTIONS(2510), + [anon_sym_DASH] = ACTIONS(2508), + [anon_sym_PLUS] = ACTIONS(2508), + [anon_sym_STAR] = ACTIONS(2510), + [anon_sym_CARET] = ACTIONS(2510), + [anon_sym_AMP] = ACTIONS(2510), + [anon_sym_SEMI] = ACTIONS(2510), + [anon_sym___extension__] = ACTIONS(2508), + [anon_sym_typedef] = ACTIONS(2508), + [anon_sym_extern] = ACTIONS(2508), + [anon_sym___attribute__] = ACTIONS(2508), + [anon_sym___attribute] = ACTIONS(2508), + [anon_sym_noreturn] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym___declspec] = ACTIONS(2508), + [anon_sym___cdecl] = ACTIONS(2508), + [anon_sym___clrcall] = ACTIONS(2508), + [anon_sym___stdcall] = ACTIONS(2508), + [anon_sym___fastcall] = ACTIONS(2508), + [anon_sym___thiscall] = ACTIONS(2508), + [anon_sym___vectorcall] = ACTIONS(2508), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_signed] = ACTIONS(2508), + [anon_sym_unsigned] = ACTIONS(2508), + [anon_sym_long] = ACTIONS(2508), + [anon_sym_short] = ACTIONS(2508), + [anon_sym_static] = ACTIONS(2508), + [anon_sym_ATautoreleasepool] = ACTIONS(2510), + [anon_sym_auto] = ACTIONS(2508), + [anon_sym_register] = ACTIONS(2508), + [anon_sym_inline] = ACTIONS(2508), + [anon_sym___inline] = ACTIONS(2508), + [anon_sym___inline__] = ACTIONS(2508), + [anon_sym___forceinline] = ACTIONS(2508), + [anon_sym_thread_local] = ACTIONS(2508), + [anon_sym___thread] = ACTIONS(2508), + [anon_sym_CG_EXTERN] = ACTIONS(2508), + [anon_sym_CG_INLINE] = ACTIONS(2508), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2508), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2508), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2508), + [anon_sym_IBOutlet] = ACTIONS(2508), + [anon_sym_IBInspectable] = ACTIONS(2508), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2508), + [anon_sym_NS_INLINE] = ACTIONS(2508), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2508), + [anon_sym_OBJC_EXPORT] = ACTIONS(2508), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2508), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2508), + [anon_sym_const] = ACTIONS(2508), + [anon_sym_constexpr] = ACTIONS(2508), + [anon_sym_volatile] = ACTIONS(2508), + [anon_sym_restrict] = ACTIONS(2508), + [anon_sym___restrict__] = ACTIONS(2508), + [anon_sym__Atomic] = ACTIONS(2508), + [anon_sym__Noreturn] = ACTIONS(2508), + [anon_sym__Nonnull] = ACTIONS(2508), + [anon_sym_nullable] = ACTIONS(2508), + [anon_sym__Complex] = ACTIONS(2508), + [anon_sym__Nullable] = ACTIONS(2508), + [anon_sym__Nullable_result] = ACTIONS(2508), + [anon_sym__Null_unspecified] = ACTIONS(2508), + [anon_sym___autoreleasing] = ACTIONS(2508), + [anon_sym___block] = ACTIONS(2508), + [anon_sym___bridge] = ACTIONS(2508), + [anon_sym___bridge_retained] = ACTIONS(2508), + [anon_sym___bridge_transfer] = ACTIONS(2508), + [anon_sym___complex] = ACTIONS(2508), + [anon_sym___const] = ACTIONS(2508), + [anon_sym___imag] = ACTIONS(2508), + [anon_sym___kindof] = ACTIONS(2508), + [anon_sym___nonnull] = ACTIONS(2508), + [anon_sym___nullable] = ACTIONS(2508), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2508), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2508), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2508), + [anon_sym___real] = ACTIONS(2508), + [anon_sym___strong] = ACTIONS(2508), + [anon_sym___unsafe_unretained] = ACTIONS(2508), + [anon_sym___unused] = ACTIONS(2508), + [anon_sym___weak] = ACTIONS(2508), + [anon_sym_alignas] = ACTIONS(2508), + [anon_sym__Alignas] = ACTIONS(2508), + [sym_primitive_type] = ACTIONS(2508), + [anon_sym_enum] = ACTIONS(2508), + [anon_sym_struct] = ACTIONS(2508), + [anon_sym_union] = ACTIONS(2508), + [anon_sym_if] = ACTIONS(2508), + [anon_sym_else] = ACTIONS(2508), + [anon_sym_switch] = ACTIONS(2508), + [anon_sym_case] = ACTIONS(2508), + [anon_sym_default] = ACTIONS(2508), + [anon_sym_while] = ACTIONS(2508), + [anon_sym_do] = ACTIONS(2508), + [anon_sym_for] = ACTIONS(2508), + [anon_sym_in] = ACTIONS(2508), + [anon_sym_return] = ACTIONS(2508), + [anon_sym_break] = ACTIONS(2508), + [anon_sym_continue] = ACTIONS(2508), + [anon_sym_goto] = ACTIONS(2508), + [anon_sym_DASH_DASH] = ACTIONS(2510), + [anon_sym_PLUS_PLUS] = ACTIONS(2510), + [anon_sym_sizeof] = ACTIONS(2508), + [anon_sym___alignof__] = ACTIONS(2508), + [anon_sym___alignof] = ACTIONS(2508), + [anon_sym__alignof] = ACTIONS(2508), + [anon_sym_alignof] = ACTIONS(2508), + [anon_sym__Alignof] = ACTIONS(2508), + [anon_sym_offsetof] = ACTIONS(2508), + [anon_sym__Generic] = ACTIONS(2508), + [anon_sym_asm] = ACTIONS(2508), + [anon_sym___asm__] = ACTIONS(2508), + [anon_sym___asm] = ACTIONS(2508), + [sym_number_literal] = ACTIONS(2510), + [anon_sym_L_SQUOTE] = ACTIONS(2510), + [anon_sym_u_SQUOTE] = ACTIONS(2510), + [anon_sym_U_SQUOTE] = ACTIONS(2510), + [anon_sym_u8_SQUOTE] = ACTIONS(2510), + [anon_sym_SQUOTE] = ACTIONS(2510), + [anon_sym_AT] = ACTIONS(2508), + [anon_sym_DQUOTE] = ACTIONS(2510), + [anon_sym_L_DQUOTE] = ACTIONS(2510), + [anon_sym_u_DQUOTE] = ACTIONS(2510), + [anon_sym_U_DQUOTE] = ACTIONS(2510), + [anon_sym_u8_DQUOTE] = ACTIONS(2510), + [sym_true] = ACTIONS(2508), + [sym_false] = ACTIONS(2508), + [anon_sym_NULL] = ACTIONS(2508), + [anon_sym_nullptr] = ACTIONS(2508), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2508), + [anon_sym___typeof] = ACTIONS(2508), + [anon_sym_typeof] = ACTIONS(2508), + [anon_sym_ATimport] = ACTIONS(2510), + [aux_sym_preproc_undef_token1] = ACTIONS(2508), + [anon_sym_POUND] = ACTIONS(2508), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2508), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2508), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2508), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2508), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2508), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2508), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2508), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2508), + [anon_sym_NS_AVAILABLE] = ACTIONS(2508), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2508), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_API_AVAILABLE] = ACTIONS(2508), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_API_DEPRECATED] = ACTIONS(2508), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2508), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2508), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2508), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2508), + [anon_sym___deprecated_msg] = ACTIONS(2508), + [anon_sym___deprecated_enum_msg] = ACTIONS(2508), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2508), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2508), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2508), + [anon_sym_ATprotocol] = ACTIONS(2510), + [anon_sym_ATinterface] = ACTIONS(2510), + [anon_sym_ATimplementation] = ACTIONS(2510), + [anon_sym_ATcompatibility_alias] = ACTIONS(2510), + [anon_sym_ATselector] = ACTIONS(2510), + [anon_sym_ATavailable] = ACTIONS(2510), + [anon_sym___builtin_available] = ACTIONS(2508), + [anon_sym_va_arg] = ACTIONS(2508), + [anon_sym_ATencode] = ACTIONS(2510), + [anon_sym_BOOL] = ACTIONS(2508), + [anon_sym_IMP] = ACTIONS(2508), + [anon_sym_SEL] = ACTIONS(2508), + [anon_sym_Class] = ACTIONS(2508), + [anon_sym_id] = ACTIONS(2508), + }, + [958] = { + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2516), + [aux_sym_preproc_include_token1] = ACTIONS(2516), + [aux_sym_preproc_include_token2] = ACTIONS(2516), + [aux_sym_preproc_def_token1] = ACTIONS(2516), + [aux_sym_preproc_if_token1] = ACTIONS(2516), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2516), + [sym_preproc_directive] = ACTIONS(2516), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_BANG] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_PLUS] = ACTIONS(2516), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_CARET] = ACTIONS(2518), + [anon_sym_AMP] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym___extension__] = ACTIONS(2516), + [anon_sym_typedef] = ACTIONS(2516), + [anon_sym_extern] = ACTIONS(2516), + [anon_sym___attribute__] = ACTIONS(2516), + [anon_sym___attribute] = ACTIONS(2516), + [anon_sym_noreturn] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2518), + [anon_sym___declspec] = ACTIONS(2516), + [anon_sym___cdecl] = ACTIONS(2516), + [anon_sym___clrcall] = ACTIONS(2516), + [anon_sym___stdcall] = ACTIONS(2516), + [anon_sym___fastcall] = ACTIONS(2516), + [anon_sym___thiscall] = ACTIONS(2516), + [anon_sym___vectorcall] = ACTIONS(2516), + [anon_sym_LBRACE] = ACTIONS(2518), + [anon_sym_signed] = ACTIONS(2516), + [anon_sym_unsigned] = ACTIONS(2516), + [anon_sym_long] = ACTIONS(2516), + [anon_sym_short] = ACTIONS(2516), + [anon_sym_static] = ACTIONS(2516), + [anon_sym_ATautoreleasepool] = ACTIONS(2518), + [anon_sym_auto] = ACTIONS(2516), + [anon_sym_register] = ACTIONS(2516), + [anon_sym_inline] = ACTIONS(2516), + [anon_sym___inline] = ACTIONS(2516), + [anon_sym___inline__] = ACTIONS(2516), + [anon_sym___forceinline] = ACTIONS(2516), + [anon_sym_thread_local] = ACTIONS(2516), + [anon_sym___thread] = ACTIONS(2516), + [anon_sym_CG_EXTERN] = ACTIONS(2516), + [anon_sym_CG_INLINE] = ACTIONS(2516), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2516), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2516), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2516), + [anon_sym_IBOutlet] = ACTIONS(2516), + [anon_sym_IBInspectable] = ACTIONS(2516), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2516), + [anon_sym_NS_INLINE] = ACTIONS(2516), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2516), + [anon_sym_OBJC_EXPORT] = ACTIONS(2516), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2516), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2516), + [anon_sym_const] = ACTIONS(2516), + [anon_sym_constexpr] = ACTIONS(2516), + [anon_sym_volatile] = ACTIONS(2516), + [anon_sym_restrict] = ACTIONS(2516), + [anon_sym___restrict__] = ACTIONS(2516), + [anon_sym__Atomic] = ACTIONS(2516), + [anon_sym__Noreturn] = ACTIONS(2516), + [anon_sym__Nonnull] = ACTIONS(2516), + [anon_sym_nullable] = ACTIONS(2516), + [anon_sym__Complex] = ACTIONS(2516), + [anon_sym__Nullable] = ACTIONS(2516), + [anon_sym__Nullable_result] = ACTIONS(2516), + [anon_sym__Null_unspecified] = ACTIONS(2516), + [anon_sym___autoreleasing] = ACTIONS(2516), + [anon_sym___block] = ACTIONS(2516), + [anon_sym___bridge] = ACTIONS(2516), + [anon_sym___bridge_retained] = ACTIONS(2516), + [anon_sym___bridge_transfer] = ACTIONS(2516), + [anon_sym___complex] = ACTIONS(2516), + [anon_sym___const] = ACTIONS(2516), + [anon_sym___imag] = ACTIONS(2516), + [anon_sym___kindof] = ACTIONS(2516), + [anon_sym___nonnull] = ACTIONS(2516), + [anon_sym___nullable] = ACTIONS(2516), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2516), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2516), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2516), + [anon_sym___real] = ACTIONS(2516), + [anon_sym___strong] = ACTIONS(2516), + [anon_sym___unsafe_unretained] = ACTIONS(2516), + [anon_sym___unused] = ACTIONS(2516), + [anon_sym___weak] = ACTIONS(2516), + [anon_sym_alignas] = ACTIONS(2516), + [anon_sym__Alignas] = ACTIONS(2516), + [sym_primitive_type] = ACTIONS(2516), + [anon_sym_enum] = ACTIONS(2516), + [anon_sym_struct] = ACTIONS(2516), + [anon_sym_union] = ACTIONS(2516), + [anon_sym_if] = ACTIONS(2516), + [anon_sym_else] = ACTIONS(2516), + [anon_sym_switch] = ACTIONS(2516), + [anon_sym_case] = ACTIONS(2516), + [anon_sym_default] = ACTIONS(2516), + [anon_sym_while] = ACTIONS(2516), + [anon_sym_do] = ACTIONS(2516), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_in] = ACTIONS(2516), + [anon_sym_return] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_goto] = ACTIONS(2516), + [anon_sym_DASH_DASH] = ACTIONS(2518), + [anon_sym_PLUS_PLUS] = ACTIONS(2518), + [anon_sym_sizeof] = ACTIONS(2516), + [anon_sym___alignof__] = ACTIONS(2516), + [anon_sym___alignof] = ACTIONS(2516), + [anon_sym__alignof] = ACTIONS(2516), + [anon_sym_alignof] = ACTIONS(2516), + [anon_sym__Alignof] = ACTIONS(2516), + [anon_sym_offsetof] = ACTIONS(2516), + [anon_sym__Generic] = ACTIONS(2516), + [anon_sym_asm] = ACTIONS(2516), + [anon_sym___asm__] = ACTIONS(2516), + [anon_sym___asm] = ACTIONS(2516), + [sym_number_literal] = ACTIONS(2518), + [anon_sym_L_SQUOTE] = ACTIONS(2518), + [anon_sym_u_SQUOTE] = ACTIONS(2518), + [anon_sym_U_SQUOTE] = ACTIONS(2518), + [anon_sym_u8_SQUOTE] = ACTIONS(2518), + [anon_sym_SQUOTE] = ACTIONS(2518), + [anon_sym_AT] = ACTIONS(2516), + [anon_sym_DQUOTE] = ACTIONS(2518), + [anon_sym_L_DQUOTE] = ACTIONS(2518), + [anon_sym_u_DQUOTE] = ACTIONS(2518), + [anon_sym_U_DQUOTE] = ACTIONS(2518), + [anon_sym_u8_DQUOTE] = ACTIONS(2518), + [sym_true] = ACTIONS(2516), + [sym_false] = ACTIONS(2516), + [anon_sym_NULL] = ACTIONS(2516), + [anon_sym_nullptr] = ACTIONS(2516), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2516), + [anon_sym___typeof] = ACTIONS(2516), + [anon_sym_typeof] = ACTIONS(2516), + [anon_sym_ATimport] = ACTIONS(2518), + [aux_sym_preproc_undef_token1] = ACTIONS(2516), + [anon_sym_POUND] = ACTIONS(2516), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2516), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2516), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2516), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2516), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2516), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2516), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2516), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2516), + [anon_sym_NS_AVAILABLE] = ACTIONS(2516), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2516), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_API_AVAILABLE] = ACTIONS(2516), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_API_DEPRECATED] = ACTIONS(2516), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2516), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2516), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2516), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2516), + [anon_sym___deprecated_msg] = ACTIONS(2516), + [anon_sym___deprecated_enum_msg] = ACTIONS(2516), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2516), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2516), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2516), + [anon_sym_ATprotocol] = ACTIONS(2518), + [anon_sym_ATinterface] = ACTIONS(2518), + [anon_sym_ATimplementation] = ACTIONS(2518), + [anon_sym_ATcompatibility_alias] = ACTIONS(2518), + [anon_sym_ATselector] = ACTIONS(2518), + [anon_sym_ATavailable] = ACTIONS(2518), + [anon_sym___builtin_available] = ACTIONS(2516), + [anon_sym_va_arg] = ACTIONS(2516), + [anon_sym_ATencode] = ACTIONS(2518), + [anon_sym_BOOL] = ACTIONS(2516), + [anon_sym_IMP] = ACTIONS(2516), + [anon_sym_SEL] = ACTIONS(2516), + [anon_sym_Class] = ACTIONS(2516), + [anon_sym_id] = ACTIONS(2516), + }, + [959] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [960] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [961] = { + [ts_builtin_sym_end] = ACTIONS(2554), + [sym_identifier] = ACTIONS(2552), + [aux_sym_preproc_include_token1] = ACTIONS(2552), + [aux_sym_preproc_include_token2] = ACTIONS(2552), + [aux_sym_preproc_def_token1] = ACTIONS(2552), + [aux_sym_preproc_if_token1] = ACTIONS(2552), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2552), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2552), + [sym_preproc_directive] = ACTIONS(2552), + [anon_sym_LPAREN2] = ACTIONS(2554), + [anon_sym_BANG] = ACTIONS(2554), + [anon_sym_TILDE] = ACTIONS(2554), + [anon_sym_DASH] = ACTIONS(2552), + [anon_sym_PLUS] = ACTIONS(2552), + [anon_sym_STAR] = ACTIONS(2554), + [anon_sym_CARET] = ACTIONS(2554), + [anon_sym_AMP] = ACTIONS(2554), + [anon_sym_SEMI] = ACTIONS(2554), + [anon_sym___extension__] = ACTIONS(2552), + [anon_sym_typedef] = ACTIONS(2552), + [anon_sym_extern] = ACTIONS(2552), + [anon_sym___attribute__] = ACTIONS(2552), + [anon_sym___attribute] = ACTIONS(2552), + [anon_sym_noreturn] = ACTIONS(2552), + [anon_sym_LBRACK] = ACTIONS(2554), + [anon_sym___declspec] = ACTIONS(2552), + [anon_sym___cdecl] = ACTIONS(2552), + [anon_sym___clrcall] = ACTIONS(2552), + [anon_sym___stdcall] = ACTIONS(2552), + [anon_sym___fastcall] = ACTIONS(2552), + [anon_sym___thiscall] = ACTIONS(2552), + [anon_sym___vectorcall] = ACTIONS(2552), + [anon_sym_LBRACE] = ACTIONS(2554), + [anon_sym_signed] = ACTIONS(2552), + [anon_sym_unsigned] = ACTIONS(2552), + [anon_sym_long] = ACTIONS(2552), + [anon_sym_short] = ACTIONS(2552), + [anon_sym_static] = ACTIONS(2552), + [anon_sym_ATautoreleasepool] = ACTIONS(2554), + [anon_sym_auto] = ACTIONS(2552), + [anon_sym_register] = ACTIONS(2552), + [anon_sym_inline] = ACTIONS(2552), + [anon_sym___inline] = ACTIONS(2552), + [anon_sym___inline__] = ACTIONS(2552), + [anon_sym___forceinline] = ACTIONS(2552), + [anon_sym_thread_local] = ACTIONS(2552), + [anon_sym___thread] = ACTIONS(2552), + [anon_sym_CG_EXTERN] = ACTIONS(2552), + [anon_sym_CG_INLINE] = ACTIONS(2552), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2552), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2552), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2552), + [anon_sym_IBOutlet] = ACTIONS(2552), + [anon_sym_IBInspectable] = ACTIONS(2552), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2552), + [anon_sym_NS_INLINE] = ACTIONS(2552), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2552), + [anon_sym_OBJC_EXPORT] = ACTIONS(2552), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2552), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2552), + [anon_sym_const] = ACTIONS(2552), + [anon_sym_constexpr] = ACTIONS(2552), + [anon_sym_volatile] = ACTIONS(2552), + [anon_sym_restrict] = ACTIONS(2552), + [anon_sym___restrict__] = ACTIONS(2552), + [anon_sym__Atomic] = ACTIONS(2552), + [anon_sym__Noreturn] = ACTIONS(2552), + [anon_sym__Nonnull] = ACTIONS(2552), + [anon_sym_nullable] = ACTIONS(2552), + [anon_sym__Complex] = ACTIONS(2552), + [anon_sym__Nullable] = ACTIONS(2552), + [anon_sym__Nullable_result] = ACTIONS(2552), + [anon_sym__Null_unspecified] = ACTIONS(2552), + [anon_sym___autoreleasing] = ACTIONS(2552), + [anon_sym___block] = ACTIONS(2552), + [anon_sym___bridge] = ACTIONS(2552), + [anon_sym___bridge_retained] = ACTIONS(2552), + [anon_sym___bridge_transfer] = ACTIONS(2552), + [anon_sym___complex] = ACTIONS(2552), + [anon_sym___const] = ACTIONS(2552), + [anon_sym___imag] = ACTIONS(2552), + [anon_sym___kindof] = ACTIONS(2552), + [anon_sym___nonnull] = ACTIONS(2552), + [anon_sym___nullable] = ACTIONS(2552), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2552), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2552), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2552), + [anon_sym___real] = ACTIONS(2552), + [anon_sym___strong] = ACTIONS(2552), + [anon_sym___unsafe_unretained] = ACTIONS(2552), + [anon_sym___unused] = ACTIONS(2552), + [anon_sym___weak] = ACTIONS(2552), + [anon_sym_alignas] = ACTIONS(2552), + [anon_sym__Alignas] = ACTIONS(2552), + [sym_primitive_type] = ACTIONS(2552), + [anon_sym_enum] = ACTIONS(2552), + [anon_sym_struct] = ACTIONS(2552), + [anon_sym_union] = ACTIONS(2552), + [anon_sym_if] = ACTIONS(2552), + [anon_sym_else] = ACTIONS(2552), + [anon_sym_switch] = ACTIONS(2552), + [anon_sym_case] = ACTIONS(2552), + [anon_sym_default] = ACTIONS(2552), + [anon_sym_while] = ACTIONS(2552), + [anon_sym_do] = ACTIONS(2552), + [anon_sym_for] = ACTIONS(2552), + [anon_sym_in] = ACTIONS(2552), + [anon_sym_return] = ACTIONS(2552), + [anon_sym_break] = ACTIONS(2552), + [anon_sym_continue] = ACTIONS(2552), + [anon_sym_goto] = ACTIONS(2552), + [anon_sym_DASH_DASH] = ACTIONS(2554), + [anon_sym_PLUS_PLUS] = ACTIONS(2554), + [anon_sym_sizeof] = ACTIONS(2552), + [anon_sym___alignof__] = ACTIONS(2552), + [anon_sym___alignof] = ACTIONS(2552), + [anon_sym__alignof] = ACTIONS(2552), + [anon_sym_alignof] = ACTIONS(2552), + [anon_sym__Alignof] = ACTIONS(2552), + [anon_sym_offsetof] = ACTIONS(2552), + [anon_sym__Generic] = ACTIONS(2552), + [anon_sym_asm] = ACTIONS(2552), + [anon_sym___asm__] = ACTIONS(2552), + [anon_sym___asm] = ACTIONS(2552), + [sym_number_literal] = ACTIONS(2554), + [anon_sym_L_SQUOTE] = ACTIONS(2554), + [anon_sym_u_SQUOTE] = ACTIONS(2554), + [anon_sym_U_SQUOTE] = ACTIONS(2554), + [anon_sym_u8_SQUOTE] = ACTIONS(2554), + [anon_sym_SQUOTE] = ACTIONS(2554), + [anon_sym_AT] = ACTIONS(2552), + [anon_sym_DQUOTE] = ACTIONS(2554), + [anon_sym_L_DQUOTE] = ACTIONS(2554), + [anon_sym_u_DQUOTE] = ACTIONS(2554), + [anon_sym_U_DQUOTE] = ACTIONS(2554), + [anon_sym_u8_DQUOTE] = ACTIONS(2554), + [sym_true] = ACTIONS(2552), + [sym_false] = ACTIONS(2552), + [anon_sym_NULL] = ACTIONS(2552), + [anon_sym_nullptr] = ACTIONS(2552), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2552), + [anon_sym___typeof] = ACTIONS(2552), + [anon_sym_typeof] = ACTIONS(2552), + [anon_sym_ATimport] = ACTIONS(2554), + [aux_sym_preproc_undef_token1] = ACTIONS(2552), + [anon_sym_POUND] = ACTIONS(2552), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2552), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2552), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2552), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2552), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2552), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2552), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2552), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2552), + [anon_sym_NS_AVAILABLE] = ACTIONS(2552), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2552), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_API_AVAILABLE] = ACTIONS(2552), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_API_DEPRECATED] = ACTIONS(2552), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2552), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2552), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2552), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2552), + [anon_sym___deprecated_msg] = ACTIONS(2552), + [anon_sym___deprecated_enum_msg] = ACTIONS(2552), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2552), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2552), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2552), + [anon_sym_ATprotocol] = ACTIONS(2554), + [anon_sym_ATinterface] = ACTIONS(2554), + [anon_sym_ATimplementation] = ACTIONS(2554), + [anon_sym_ATcompatibility_alias] = ACTIONS(2554), + [anon_sym_ATselector] = ACTIONS(2554), + [anon_sym_ATavailable] = ACTIONS(2554), + [anon_sym___builtin_available] = ACTIONS(2552), + [anon_sym_va_arg] = ACTIONS(2552), + [anon_sym_ATencode] = ACTIONS(2554), + [anon_sym_BOOL] = ACTIONS(2552), + [anon_sym_IMP] = ACTIONS(2552), + [anon_sym_SEL] = ACTIONS(2552), + [anon_sym_Class] = ACTIONS(2552), + [anon_sym_id] = ACTIONS(2552), + }, + [962] = { + [ts_builtin_sym_end] = ACTIONS(2422), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_include_token1] = ACTIONS(2420), + [aux_sym_preproc_include_token2] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2420), + [aux_sym_preproc_if_token1] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2420), + [sym_preproc_directive] = ACTIONS(2420), + [anon_sym_LPAREN2] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(2422), + [anon_sym_CARET] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym___extension__] = ACTIONS(2420), + [anon_sym_typedef] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym___attribute__] = ACTIONS(2420), + [anon_sym___attribute] = ACTIONS(2420), + [anon_sym_noreturn] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2422), + [anon_sym___declspec] = ACTIONS(2420), + [anon_sym___cdecl] = ACTIONS(2420), + [anon_sym___clrcall] = ACTIONS(2420), + [anon_sym___stdcall] = ACTIONS(2420), + [anon_sym___fastcall] = ACTIONS(2420), + [anon_sym___thiscall] = ACTIONS(2420), + [anon_sym___vectorcall] = ACTIONS(2420), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_signed] = ACTIONS(2420), + [anon_sym_unsigned] = ACTIONS(2420), + [anon_sym_long] = ACTIONS(2420), + [anon_sym_short] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_ATautoreleasepool] = ACTIONS(2422), + [anon_sym_auto] = ACTIONS(2420), + [anon_sym_register] = ACTIONS(2420), + [anon_sym_inline] = ACTIONS(2420), + [anon_sym___inline] = ACTIONS(2420), + [anon_sym___inline__] = ACTIONS(2420), + [anon_sym___forceinline] = ACTIONS(2420), + [anon_sym_thread_local] = ACTIONS(2420), + [anon_sym___thread] = ACTIONS(2420), + [anon_sym_CG_EXTERN] = ACTIONS(2420), + [anon_sym_CG_INLINE] = ACTIONS(2420), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2420), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2420), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2420), + [anon_sym_IBOutlet] = ACTIONS(2420), + [anon_sym_IBInspectable] = ACTIONS(2420), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2420), + [anon_sym_NS_INLINE] = ACTIONS(2420), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2420), + [anon_sym_OBJC_EXPORT] = ACTIONS(2420), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2420), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [anon_sym_constexpr] = ACTIONS(2420), + [anon_sym_volatile] = ACTIONS(2420), + [anon_sym_restrict] = ACTIONS(2420), + [anon_sym___restrict__] = ACTIONS(2420), + [anon_sym__Atomic] = ACTIONS(2420), + [anon_sym__Noreturn] = ACTIONS(2420), + [anon_sym__Nonnull] = ACTIONS(2420), + [anon_sym_nullable] = ACTIONS(2420), + [anon_sym__Complex] = ACTIONS(2420), + [anon_sym__Nullable] = ACTIONS(2420), + [anon_sym__Nullable_result] = ACTIONS(2420), + [anon_sym__Null_unspecified] = ACTIONS(2420), + [anon_sym___autoreleasing] = ACTIONS(2420), + [anon_sym___block] = ACTIONS(2420), + [anon_sym___bridge] = ACTIONS(2420), + [anon_sym___bridge_retained] = ACTIONS(2420), + [anon_sym___bridge_transfer] = ACTIONS(2420), + [anon_sym___complex] = ACTIONS(2420), + [anon_sym___const] = ACTIONS(2420), + [anon_sym___imag] = ACTIONS(2420), + [anon_sym___kindof] = ACTIONS(2420), + [anon_sym___nonnull] = ACTIONS(2420), + [anon_sym___nullable] = ACTIONS(2420), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2420), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2420), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2420), + [anon_sym___real] = ACTIONS(2420), + [anon_sym___strong] = ACTIONS(2420), + [anon_sym___unsafe_unretained] = ACTIONS(2420), + [anon_sym___unused] = ACTIONS(2420), + [anon_sym___weak] = ACTIONS(2420), + [anon_sym_alignas] = ACTIONS(2420), + [anon_sym__Alignas] = ACTIONS(2420), + [sym_primitive_type] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), + [anon_sym_struct] = ACTIONS(2420), + [anon_sym_union] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_else] = ACTIONS(2420), + [anon_sym_switch] = ACTIONS(2420), + [anon_sym_case] = ACTIONS(2420), + [anon_sym_default] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_do] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_in] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_goto] = ACTIONS(2420), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_sizeof] = ACTIONS(2420), + [anon_sym___alignof__] = ACTIONS(2420), + [anon_sym___alignof] = ACTIONS(2420), + [anon_sym__alignof] = ACTIONS(2420), + [anon_sym_alignof] = ACTIONS(2420), + [anon_sym__Alignof] = ACTIONS(2420), + [anon_sym_offsetof] = ACTIONS(2420), + [anon_sym__Generic] = ACTIONS(2420), + [anon_sym_asm] = ACTIONS(2420), + [anon_sym___asm__] = ACTIONS(2420), + [anon_sym___asm] = ACTIONS(2420), + [sym_number_literal] = ACTIONS(2422), + [anon_sym_L_SQUOTE] = ACTIONS(2422), + [anon_sym_u_SQUOTE] = ACTIONS(2422), + [anon_sym_U_SQUOTE] = ACTIONS(2422), + [anon_sym_u8_SQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [anon_sym_AT] = ACTIONS(2420), + [anon_sym_DQUOTE] = ACTIONS(2422), + [anon_sym_L_DQUOTE] = ACTIONS(2422), + [anon_sym_u_DQUOTE] = ACTIONS(2422), + [anon_sym_U_DQUOTE] = ACTIONS(2422), + [anon_sym_u8_DQUOTE] = ACTIONS(2422), + [sym_true] = ACTIONS(2420), + [sym_false] = ACTIONS(2420), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2420), + [anon_sym___typeof] = ACTIONS(2420), + [anon_sym_typeof] = ACTIONS(2420), + [anon_sym_ATimport] = ACTIONS(2422), + [aux_sym_preproc_undef_token1] = ACTIONS(2420), + [anon_sym_POUND] = ACTIONS(2420), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2420), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2420), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2420), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2420), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2420), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2420), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2420), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2420), + [anon_sym_NS_AVAILABLE] = ACTIONS(2420), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2420), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_API_AVAILABLE] = ACTIONS(2420), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_API_DEPRECATED] = ACTIONS(2420), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2420), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2420), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2420), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2420), + [anon_sym___deprecated_msg] = ACTIONS(2420), + [anon_sym___deprecated_enum_msg] = ACTIONS(2420), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2420), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2420), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2420), + [anon_sym_ATprotocol] = ACTIONS(2422), + [anon_sym_ATinterface] = ACTIONS(2422), + [anon_sym_ATimplementation] = ACTIONS(2422), + [anon_sym_ATcompatibility_alias] = ACTIONS(2422), + [anon_sym_ATselector] = ACTIONS(2422), + [anon_sym_ATavailable] = ACTIONS(2422), + [anon_sym___builtin_available] = ACTIONS(2420), + [anon_sym_va_arg] = ACTIONS(2420), + [anon_sym_ATencode] = ACTIONS(2422), + [anon_sym_BOOL] = ACTIONS(2420), + [anon_sym_IMP] = ACTIONS(2420), + [anon_sym_SEL] = ACTIONS(2420), + [anon_sym_Class] = ACTIONS(2420), + [anon_sym_id] = ACTIONS(2420), + }, + [963] = { + [ts_builtin_sym_end] = ACTIONS(2464), + [sym_identifier] = ACTIONS(2462), + [aux_sym_preproc_include_token1] = ACTIONS(2462), + [aux_sym_preproc_include_token2] = ACTIONS(2462), + [aux_sym_preproc_def_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2462), + [sym_preproc_directive] = ACTIONS(2462), + [anon_sym_LPAREN2] = ACTIONS(2464), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_CARET] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym___extension__] = ACTIONS(2462), + [anon_sym_typedef] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym___attribute__] = ACTIONS(2462), + [anon_sym___attribute] = ACTIONS(2462), + [anon_sym_noreturn] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2464), + [anon_sym___declspec] = ACTIONS(2462), + [anon_sym___cdecl] = ACTIONS(2462), + [anon_sym___clrcall] = ACTIONS(2462), + [anon_sym___stdcall] = ACTIONS(2462), + [anon_sym___fastcall] = ACTIONS(2462), + [anon_sym___thiscall] = ACTIONS(2462), + [anon_sym___vectorcall] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_signed] = ACTIONS(2462), + [anon_sym_unsigned] = ACTIONS(2462), + [anon_sym_long] = ACTIONS(2462), + [anon_sym_short] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_ATautoreleasepool] = ACTIONS(2464), + [anon_sym_auto] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_inline] = ACTIONS(2462), + [anon_sym___inline] = ACTIONS(2462), + [anon_sym___inline__] = ACTIONS(2462), + [anon_sym___forceinline] = ACTIONS(2462), + [anon_sym_thread_local] = ACTIONS(2462), + [anon_sym___thread] = ACTIONS(2462), + [anon_sym_CG_EXTERN] = ACTIONS(2462), + [anon_sym_CG_INLINE] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2462), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2462), + [anon_sym_IBOutlet] = ACTIONS(2462), + [anon_sym_IBInspectable] = ACTIONS(2462), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2462), + [anon_sym_NS_INLINE] = ACTIONS(2462), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2462), + [anon_sym_OBJC_EXPORT] = ACTIONS(2462), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_constexpr] = ACTIONS(2462), + [anon_sym_volatile] = ACTIONS(2462), + [anon_sym_restrict] = ACTIONS(2462), + [anon_sym___restrict__] = ACTIONS(2462), + [anon_sym__Atomic] = ACTIONS(2462), + [anon_sym__Noreturn] = ACTIONS(2462), + [anon_sym__Nonnull] = ACTIONS(2462), + [anon_sym_nullable] = ACTIONS(2462), + [anon_sym__Complex] = ACTIONS(2462), + [anon_sym__Nullable] = ACTIONS(2462), + [anon_sym__Nullable_result] = ACTIONS(2462), + [anon_sym__Null_unspecified] = ACTIONS(2462), + [anon_sym___autoreleasing] = ACTIONS(2462), + [anon_sym___block] = ACTIONS(2462), + [anon_sym___bridge] = ACTIONS(2462), + [anon_sym___bridge_retained] = ACTIONS(2462), + [anon_sym___bridge_transfer] = ACTIONS(2462), + [anon_sym___complex] = ACTIONS(2462), + [anon_sym___const] = ACTIONS(2462), + [anon_sym___imag] = ACTIONS(2462), + [anon_sym___kindof] = ACTIONS(2462), + [anon_sym___nonnull] = ACTIONS(2462), + [anon_sym___nullable] = ACTIONS(2462), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2462), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2462), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2462), + [anon_sym___real] = ACTIONS(2462), + [anon_sym___strong] = ACTIONS(2462), + [anon_sym___unsafe_unretained] = ACTIONS(2462), + [anon_sym___unused] = ACTIONS(2462), + [anon_sym___weak] = ACTIONS(2462), + [anon_sym_alignas] = ACTIONS(2462), + [anon_sym__Alignas] = ACTIONS(2462), + [sym_primitive_type] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_case] = ACTIONS(2462), + [anon_sym_default] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_in] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_goto] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(2464), + [anon_sym_sizeof] = ACTIONS(2462), + [anon_sym___alignof__] = ACTIONS(2462), + [anon_sym___alignof] = ACTIONS(2462), + [anon_sym__alignof] = ACTIONS(2462), + [anon_sym_alignof] = ACTIONS(2462), + [anon_sym__Alignof] = ACTIONS(2462), + [anon_sym_offsetof] = ACTIONS(2462), + [anon_sym__Generic] = ACTIONS(2462), + [anon_sym_asm] = ACTIONS(2462), + [anon_sym___asm__] = ACTIONS(2462), + [anon_sym___asm] = ACTIONS(2462), + [sym_number_literal] = ACTIONS(2464), + [anon_sym_L_SQUOTE] = ACTIONS(2464), + [anon_sym_u_SQUOTE] = ACTIONS(2464), + [anon_sym_U_SQUOTE] = ACTIONS(2464), + [anon_sym_u8_SQUOTE] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2464), + [anon_sym_AT] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2464), + [anon_sym_L_DQUOTE] = ACTIONS(2464), + [anon_sym_u_DQUOTE] = ACTIONS(2464), + [anon_sym_U_DQUOTE] = ACTIONS(2464), + [anon_sym_u8_DQUOTE] = ACTIONS(2464), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [anon_sym_NULL] = ACTIONS(2462), + [anon_sym_nullptr] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2462), + [anon_sym___typeof] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [anon_sym_ATimport] = ACTIONS(2464), + [aux_sym_preproc_undef_token1] = ACTIONS(2462), + [anon_sym_POUND] = ACTIONS(2462), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2462), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2462), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2462), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2462), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE] = ACTIONS(2462), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_API_AVAILABLE] = ACTIONS(2462), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_API_DEPRECATED] = ACTIONS(2462), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2462), + [anon_sym___deprecated_msg] = ACTIONS(2462), + [anon_sym___deprecated_enum_msg] = ACTIONS(2462), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2462), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2462), + [anon_sym_ATprotocol] = ACTIONS(2464), + [anon_sym_ATinterface] = ACTIONS(2464), + [anon_sym_ATimplementation] = ACTIONS(2464), + [anon_sym_ATcompatibility_alias] = ACTIONS(2464), + [anon_sym_ATselector] = ACTIONS(2464), + [anon_sym_ATavailable] = ACTIONS(2464), + [anon_sym___builtin_available] = ACTIONS(2462), + [anon_sym_va_arg] = ACTIONS(2462), + [anon_sym_ATencode] = ACTIONS(2464), + [anon_sym_BOOL] = ACTIONS(2462), + [anon_sym_IMP] = ACTIONS(2462), + [anon_sym_SEL] = ACTIONS(2462), + [anon_sym_Class] = ACTIONS(2462), + [anon_sym_id] = ACTIONS(2462), + }, + [964] = { + [ts_builtin_sym_end] = ACTIONS(2464), + [sym_identifier] = ACTIONS(2462), + [aux_sym_preproc_include_token1] = ACTIONS(2462), + [aux_sym_preproc_include_token2] = ACTIONS(2462), + [aux_sym_preproc_def_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2462), + [sym_preproc_directive] = ACTIONS(2462), + [anon_sym_LPAREN2] = ACTIONS(2464), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_CARET] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym___extension__] = ACTIONS(2462), + [anon_sym_typedef] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym___attribute__] = ACTIONS(2462), + [anon_sym___attribute] = ACTIONS(2462), + [anon_sym_noreturn] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2464), + [anon_sym___declspec] = ACTIONS(2462), + [anon_sym___cdecl] = ACTIONS(2462), + [anon_sym___clrcall] = ACTIONS(2462), + [anon_sym___stdcall] = ACTIONS(2462), + [anon_sym___fastcall] = ACTIONS(2462), + [anon_sym___thiscall] = ACTIONS(2462), + [anon_sym___vectorcall] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_signed] = ACTIONS(2462), + [anon_sym_unsigned] = ACTIONS(2462), + [anon_sym_long] = ACTIONS(2462), + [anon_sym_short] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_ATautoreleasepool] = ACTIONS(2464), + [anon_sym_auto] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_inline] = ACTIONS(2462), + [anon_sym___inline] = ACTIONS(2462), + [anon_sym___inline__] = ACTIONS(2462), + [anon_sym___forceinline] = ACTIONS(2462), + [anon_sym_thread_local] = ACTIONS(2462), + [anon_sym___thread] = ACTIONS(2462), + [anon_sym_CG_EXTERN] = ACTIONS(2462), + [anon_sym_CG_INLINE] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2462), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2462), + [anon_sym_IBOutlet] = ACTIONS(2462), + [anon_sym_IBInspectable] = ACTIONS(2462), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2462), + [anon_sym_NS_INLINE] = ACTIONS(2462), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2462), + [anon_sym_OBJC_EXPORT] = ACTIONS(2462), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_constexpr] = ACTIONS(2462), + [anon_sym_volatile] = ACTIONS(2462), + [anon_sym_restrict] = ACTIONS(2462), + [anon_sym___restrict__] = ACTIONS(2462), + [anon_sym__Atomic] = ACTIONS(2462), + [anon_sym__Noreturn] = ACTIONS(2462), + [anon_sym__Nonnull] = ACTIONS(2462), + [anon_sym_nullable] = ACTIONS(2462), + [anon_sym__Complex] = ACTIONS(2462), + [anon_sym__Nullable] = ACTIONS(2462), + [anon_sym__Nullable_result] = ACTIONS(2462), + [anon_sym__Null_unspecified] = ACTIONS(2462), + [anon_sym___autoreleasing] = ACTIONS(2462), + [anon_sym___block] = ACTIONS(2462), + [anon_sym___bridge] = ACTIONS(2462), + [anon_sym___bridge_retained] = ACTIONS(2462), + [anon_sym___bridge_transfer] = ACTIONS(2462), + [anon_sym___complex] = ACTIONS(2462), + [anon_sym___const] = ACTIONS(2462), + [anon_sym___imag] = ACTIONS(2462), + [anon_sym___kindof] = ACTIONS(2462), + [anon_sym___nonnull] = ACTIONS(2462), + [anon_sym___nullable] = ACTIONS(2462), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2462), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2462), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2462), + [anon_sym___real] = ACTIONS(2462), + [anon_sym___strong] = ACTIONS(2462), + [anon_sym___unsafe_unretained] = ACTIONS(2462), + [anon_sym___unused] = ACTIONS(2462), + [anon_sym___weak] = ACTIONS(2462), + [anon_sym_alignas] = ACTIONS(2462), + [anon_sym__Alignas] = ACTIONS(2462), + [sym_primitive_type] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_case] = ACTIONS(2462), + [anon_sym_default] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_in] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_goto] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(2464), + [anon_sym_sizeof] = ACTIONS(2462), + [anon_sym___alignof__] = ACTIONS(2462), + [anon_sym___alignof] = ACTIONS(2462), + [anon_sym__alignof] = ACTIONS(2462), + [anon_sym_alignof] = ACTIONS(2462), + [anon_sym__Alignof] = ACTIONS(2462), + [anon_sym_offsetof] = ACTIONS(2462), + [anon_sym__Generic] = ACTIONS(2462), + [anon_sym_asm] = ACTIONS(2462), + [anon_sym___asm__] = ACTIONS(2462), + [anon_sym___asm] = ACTIONS(2462), + [sym_number_literal] = ACTIONS(2464), + [anon_sym_L_SQUOTE] = ACTIONS(2464), + [anon_sym_u_SQUOTE] = ACTIONS(2464), + [anon_sym_U_SQUOTE] = ACTIONS(2464), + [anon_sym_u8_SQUOTE] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2464), + [anon_sym_AT] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2464), + [anon_sym_L_DQUOTE] = ACTIONS(2464), + [anon_sym_u_DQUOTE] = ACTIONS(2464), + [anon_sym_U_DQUOTE] = ACTIONS(2464), + [anon_sym_u8_DQUOTE] = ACTIONS(2464), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [anon_sym_NULL] = ACTIONS(2462), + [anon_sym_nullptr] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2462), + [anon_sym___typeof] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [anon_sym_ATimport] = ACTIONS(2464), + [aux_sym_preproc_undef_token1] = ACTIONS(2462), + [anon_sym_POUND] = ACTIONS(2462), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2462), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2462), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2462), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2462), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE] = ACTIONS(2462), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_API_AVAILABLE] = ACTIONS(2462), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_API_DEPRECATED] = ACTIONS(2462), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2462), + [anon_sym___deprecated_msg] = ACTIONS(2462), + [anon_sym___deprecated_enum_msg] = ACTIONS(2462), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2462), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2462), + [anon_sym_ATprotocol] = ACTIONS(2464), + [anon_sym_ATinterface] = ACTIONS(2464), + [anon_sym_ATimplementation] = ACTIONS(2464), + [anon_sym_ATcompatibility_alias] = ACTIONS(2464), + [anon_sym_ATselector] = ACTIONS(2464), + [anon_sym_ATavailable] = ACTIONS(2464), + [anon_sym___builtin_available] = ACTIONS(2462), + [anon_sym_va_arg] = ACTIONS(2462), + [anon_sym_ATencode] = ACTIONS(2464), + [anon_sym_BOOL] = ACTIONS(2462), + [anon_sym_IMP] = ACTIONS(2462), + [anon_sym_SEL] = ACTIONS(2462), + [anon_sym_Class] = ACTIONS(2462), + [anon_sym_id] = ACTIONS(2462), + }, + [965] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [966] = { + [ts_builtin_sym_end] = ACTIONS(2514), + [sym_identifier] = ACTIONS(2512), + [aux_sym_preproc_include_token1] = ACTIONS(2512), + [aux_sym_preproc_include_token2] = ACTIONS(2512), + [aux_sym_preproc_def_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token1] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2512), + [sym_preproc_directive] = ACTIONS(2512), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_TILDE] = ACTIONS(2514), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_STAR] = ACTIONS(2514), + [anon_sym_CARET] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym___extension__] = ACTIONS(2512), + [anon_sym_typedef] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym___attribute__] = ACTIONS(2512), + [anon_sym___attribute] = ACTIONS(2512), + [anon_sym_noreturn] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym___declspec] = ACTIONS(2512), + [anon_sym___cdecl] = ACTIONS(2512), + [anon_sym___clrcall] = ACTIONS(2512), + [anon_sym___stdcall] = ACTIONS(2512), + [anon_sym___fastcall] = ACTIONS(2512), + [anon_sym___thiscall] = ACTIONS(2512), + [anon_sym___vectorcall] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_signed] = ACTIONS(2512), + [anon_sym_unsigned] = ACTIONS(2512), + [anon_sym_long] = ACTIONS(2512), + [anon_sym_short] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_ATautoreleasepool] = ACTIONS(2514), + [anon_sym_auto] = ACTIONS(2512), + [anon_sym_register] = ACTIONS(2512), + [anon_sym_inline] = ACTIONS(2512), + [anon_sym___inline] = ACTIONS(2512), + [anon_sym___inline__] = ACTIONS(2512), + [anon_sym___forceinline] = ACTIONS(2512), + [anon_sym_thread_local] = ACTIONS(2512), + [anon_sym___thread] = ACTIONS(2512), + [anon_sym_CG_EXTERN] = ACTIONS(2512), + [anon_sym_CG_INLINE] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2512), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2512), + [anon_sym_IBOutlet] = ACTIONS(2512), + [anon_sym_IBInspectable] = ACTIONS(2512), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2512), + [anon_sym_NS_INLINE] = ACTIONS(2512), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2512), + [anon_sym_OBJC_EXPORT] = ACTIONS(2512), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_constexpr] = ACTIONS(2512), + [anon_sym_volatile] = ACTIONS(2512), + [anon_sym_restrict] = ACTIONS(2512), + [anon_sym___restrict__] = ACTIONS(2512), + [anon_sym__Atomic] = ACTIONS(2512), + [anon_sym__Noreturn] = ACTIONS(2512), + [anon_sym__Nonnull] = ACTIONS(2512), + [anon_sym_nullable] = ACTIONS(2512), + [anon_sym__Complex] = ACTIONS(2512), + [anon_sym__Nullable] = ACTIONS(2512), + [anon_sym__Nullable_result] = ACTIONS(2512), + [anon_sym__Null_unspecified] = ACTIONS(2512), + [anon_sym___autoreleasing] = ACTIONS(2512), + [anon_sym___block] = ACTIONS(2512), + [anon_sym___bridge] = ACTIONS(2512), + [anon_sym___bridge_retained] = ACTIONS(2512), + [anon_sym___bridge_transfer] = ACTIONS(2512), + [anon_sym___complex] = ACTIONS(2512), + [anon_sym___const] = ACTIONS(2512), + [anon_sym___imag] = ACTIONS(2512), + [anon_sym___kindof] = ACTIONS(2512), + [anon_sym___nonnull] = ACTIONS(2512), + [anon_sym___nullable] = ACTIONS(2512), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2512), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2512), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2512), + [anon_sym___real] = ACTIONS(2512), + [anon_sym___strong] = ACTIONS(2512), + [anon_sym___unsafe_unretained] = ACTIONS(2512), + [anon_sym___unused] = ACTIONS(2512), + [anon_sym___weak] = ACTIONS(2512), + [anon_sym_alignas] = ACTIONS(2512), + [anon_sym__Alignas] = ACTIONS(2512), + [sym_primitive_type] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [anon_sym_struct] = ACTIONS(2512), + [anon_sym_union] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_else] = ACTIONS(2512), + [anon_sym_switch] = ACTIONS(2512), + [anon_sym_case] = ACTIONS(2512), + [anon_sym_default] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_do] = ACTIONS(2512), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_in] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_goto] = ACTIONS(2512), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_sizeof] = ACTIONS(2512), + [anon_sym___alignof__] = ACTIONS(2512), + [anon_sym___alignof] = ACTIONS(2512), + [anon_sym__alignof] = ACTIONS(2512), + [anon_sym_alignof] = ACTIONS(2512), + [anon_sym__Alignof] = ACTIONS(2512), + [anon_sym_offsetof] = ACTIONS(2512), + [anon_sym__Generic] = ACTIONS(2512), + [anon_sym_asm] = ACTIONS(2512), + [anon_sym___asm__] = ACTIONS(2512), + [anon_sym___asm] = ACTIONS(2512), + [sym_number_literal] = ACTIONS(2514), + [anon_sym_L_SQUOTE] = ACTIONS(2514), + [anon_sym_u_SQUOTE] = ACTIONS(2514), + [anon_sym_U_SQUOTE] = ACTIONS(2514), + [anon_sym_u8_SQUOTE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_AT] = ACTIONS(2512), + [anon_sym_DQUOTE] = ACTIONS(2514), + [anon_sym_L_DQUOTE] = ACTIONS(2514), + [anon_sym_u_DQUOTE] = ACTIONS(2514), + [anon_sym_U_DQUOTE] = ACTIONS(2514), + [anon_sym_u8_DQUOTE] = ACTIONS(2514), + [sym_true] = ACTIONS(2512), + [sym_false] = ACTIONS(2512), + [anon_sym_NULL] = ACTIONS(2512), + [anon_sym_nullptr] = ACTIONS(2512), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2512), + [anon_sym___typeof] = ACTIONS(2512), + [anon_sym_typeof] = ACTIONS(2512), + [anon_sym_ATimport] = ACTIONS(2514), + [aux_sym_preproc_undef_token1] = ACTIONS(2512), + [anon_sym_POUND] = ACTIONS(2512), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2512), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2512), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2512), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2512), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE] = ACTIONS(2512), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_API_AVAILABLE] = ACTIONS(2512), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_API_DEPRECATED] = ACTIONS(2512), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2512), + [anon_sym___deprecated_msg] = ACTIONS(2512), + [anon_sym___deprecated_enum_msg] = ACTIONS(2512), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2512), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2512), + [anon_sym_ATprotocol] = ACTIONS(2514), + [anon_sym_ATinterface] = ACTIONS(2514), + [anon_sym_ATimplementation] = ACTIONS(2514), + [anon_sym_ATcompatibility_alias] = ACTIONS(2514), + [anon_sym_ATselector] = ACTIONS(2514), + [anon_sym_ATavailable] = ACTIONS(2514), + [anon_sym___builtin_available] = ACTIONS(2512), + [anon_sym_va_arg] = ACTIONS(2512), + [anon_sym_ATencode] = ACTIONS(2514), + [anon_sym_BOOL] = ACTIONS(2512), + [anon_sym_IMP] = ACTIONS(2512), + [anon_sym_SEL] = ACTIONS(2512), + [anon_sym_Class] = ACTIONS(2512), + [anon_sym_id] = ACTIONS(2512), + }, + [967] = { + [ts_builtin_sym_end] = ACTIONS(2514), + [sym_identifier] = ACTIONS(2512), + [aux_sym_preproc_include_token1] = ACTIONS(2512), + [aux_sym_preproc_include_token2] = ACTIONS(2512), + [aux_sym_preproc_def_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token1] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2512), + [sym_preproc_directive] = ACTIONS(2512), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_TILDE] = ACTIONS(2514), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_STAR] = ACTIONS(2514), + [anon_sym_CARET] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym___extension__] = ACTIONS(2512), + [anon_sym_typedef] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym___attribute__] = ACTIONS(2512), + [anon_sym___attribute] = ACTIONS(2512), + [anon_sym_noreturn] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym___declspec] = ACTIONS(2512), + [anon_sym___cdecl] = ACTIONS(2512), + [anon_sym___clrcall] = ACTIONS(2512), + [anon_sym___stdcall] = ACTIONS(2512), + [anon_sym___fastcall] = ACTIONS(2512), + [anon_sym___thiscall] = ACTIONS(2512), + [anon_sym___vectorcall] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_signed] = ACTIONS(2512), + [anon_sym_unsigned] = ACTIONS(2512), + [anon_sym_long] = ACTIONS(2512), + [anon_sym_short] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_ATautoreleasepool] = ACTIONS(2514), + [anon_sym_auto] = ACTIONS(2512), + [anon_sym_register] = ACTIONS(2512), + [anon_sym_inline] = ACTIONS(2512), + [anon_sym___inline] = ACTIONS(2512), + [anon_sym___inline__] = ACTIONS(2512), + [anon_sym___forceinline] = ACTIONS(2512), + [anon_sym_thread_local] = ACTIONS(2512), + [anon_sym___thread] = ACTIONS(2512), + [anon_sym_CG_EXTERN] = ACTIONS(2512), + [anon_sym_CG_INLINE] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2512), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2512), + [anon_sym_IBOutlet] = ACTIONS(2512), + [anon_sym_IBInspectable] = ACTIONS(2512), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2512), + [anon_sym_NS_INLINE] = ACTIONS(2512), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2512), + [anon_sym_OBJC_EXPORT] = ACTIONS(2512), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_constexpr] = ACTIONS(2512), + [anon_sym_volatile] = ACTIONS(2512), + [anon_sym_restrict] = ACTIONS(2512), + [anon_sym___restrict__] = ACTIONS(2512), + [anon_sym__Atomic] = ACTIONS(2512), + [anon_sym__Noreturn] = ACTIONS(2512), + [anon_sym__Nonnull] = ACTIONS(2512), + [anon_sym_nullable] = ACTIONS(2512), + [anon_sym__Complex] = ACTIONS(2512), + [anon_sym__Nullable] = ACTIONS(2512), + [anon_sym__Nullable_result] = ACTIONS(2512), + [anon_sym__Null_unspecified] = ACTIONS(2512), + [anon_sym___autoreleasing] = ACTIONS(2512), + [anon_sym___block] = ACTIONS(2512), + [anon_sym___bridge] = ACTIONS(2512), + [anon_sym___bridge_retained] = ACTIONS(2512), + [anon_sym___bridge_transfer] = ACTIONS(2512), + [anon_sym___complex] = ACTIONS(2512), + [anon_sym___const] = ACTIONS(2512), + [anon_sym___imag] = ACTIONS(2512), + [anon_sym___kindof] = ACTIONS(2512), + [anon_sym___nonnull] = ACTIONS(2512), + [anon_sym___nullable] = ACTIONS(2512), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2512), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2512), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2512), + [anon_sym___real] = ACTIONS(2512), + [anon_sym___strong] = ACTIONS(2512), + [anon_sym___unsafe_unretained] = ACTIONS(2512), + [anon_sym___unused] = ACTIONS(2512), + [anon_sym___weak] = ACTIONS(2512), + [anon_sym_alignas] = ACTIONS(2512), + [anon_sym__Alignas] = ACTIONS(2512), + [sym_primitive_type] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [anon_sym_struct] = ACTIONS(2512), + [anon_sym_union] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_else] = ACTIONS(2512), + [anon_sym_switch] = ACTIONS(2512), + [anon_sym_case] = ACTIONS(2512), + [anon_sym_default] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_do] = ACTIONS(2512), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_in] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_goto] = ACTIONS(2512), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_sizeof] = ACTIONS(2512), + [anon_sym___alignof__] = ACTIONS(2512), + [anon_sym___alignof] = ACTIONS(2512), + [anon_sym__alignof] = ACTIONS(2512), + [anon_sym_alignof] = ACTIONS(2512), + [anon_sym__Alignof] = ACTIONS(2512), + [anon_sym_offsetof] = ACTIONS(2512), + [anon_sym__Generic] = ACTIONS(2512), + [anon_sym_asm] = ACTIONS(2512), + [anon_sym___asm__] = ACTIONS(2512), + [anon_sym___asm] = ACTIONS(2512), + [sym_number_literal] = ACTIONS(2514), + [anon_sym_L_SQUOTE] = ACTIONS(2514), + [anon_sym_u_SQUOTE] = ACTIONS(2514), + [anon_sym_U_SQUOTE] = ACTIONS(2514), + [anon_sym_u8_SQUOTE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_AT] = ACTIONS(2512), + [anon_sym_DQUOTE] = ACTIONS(2514), + [anon_sym_L_DQUOTE] = ACTIONS(2514), + [anon_sym_u_DQUOTE] = ACTIONS(2514), + [anon_sym_U_DQUOTE] = ACTIONS(2514), + [anon_sym_u8_DQUOTE] = ACTIONS(2514), + [sym_true] = ACTIONS(2512), + [sym_false] = ACTIONS(2512), + [anon_sym_NULL] = ACTIONS(2512), + [anon_sym_nullptr] = ACTIONS(2512), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2512), + [anon_sym___typeof] = ACTIONS(2512), + [anon_sym_typeof] = ACTIONS(2512), + [anon_sym_ATimport] = ACTIONS(2514), + [aux_sym_preproc_undef_token1] = ACTIONS(2512), + [anon_sym_POUND] = ACTIONS(2512), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2512), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2512), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2512), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2512), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE] = ACTIONS(2512), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_API_AVAILABLE] = ACTIONS(2512), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_API_DEPRECATED] = ACTIONS(2512), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2512), + [anon_sym___deprecated_msg] = ACTIONS(2512), + [anon_sym___deprecated_enum_msg] = ACTIONS(2512), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2512), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2512), + [anon_sym_ATprotocol] = ACTIONS(2514), + [anon_sym_ATinterface] = ACTIONS(2514), + [anon_sym_ATimplementation] = ACTIONS(2514), + [anon_sym_ATcompatibility_alias] = ACTIONS(2514), + [anon_sym_ATselector] = ACTIONS(2514), + [anon_sym_ATavailable] = ACTIONS(2514), + [anon_sym___builtin_available] = ACTIONS(2512), + [anon_sym_va_arg] = ACTIONS(2512), + [anon_sym_ATencode] = ACTIONS(2514), + [anon_sym_BOOL] = ACTIONS(2512), + [anon_sym_IMP] = ACTIONS(2512), + [anon_sym_SEL] = ACTIONS(2512), + [anon_sym_Class] = ACTIONS(2512), + [anon_sym_id] = ACTIONS(2512), + }, + [968] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [969] = { + [ts_builtin_sym_end] = ACTIONS(2558), + [sym_identifier] = ACTIONS(2556), + [aux_sym_preproc_include_token1] = ACTIONS(2556), + [aux_sym_preproc_include_token2] = ACTIONS(2556), + [aux_sym_preproc_def_token1] = ACTIONS(2556), + [aux_sym_preproc_if_token1] = ACTIONS(2556), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2556), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2556), + [sym_preproc_directive] = ACTIONS(2556), + [anon_sym_LPAREN2] = ACTIONS(2558), + [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_TILDE] = ACTIONS(2558), + [anon_sym_DASH] = ACTIONS(2556), + [anon_sym_PLUS] = ACTIONS(2556), + [anon_sym_STAR] = ACTIONS(2558), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym_AMP] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym___extension__] = ACTIONS(2556), + [anon_sym_typedef] = ACTIONS(2556), + [anon_sym_extern] = ACTIONS(2556), + [anon_sym___attribute__] = ACTIONS(2556), + [anon_sym___attribute] = ACTIONS(2556), + [anon_sym_noreturn] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym___declspec] = ACTIONS(2556), + [anon_sym___cdecl] = ACTIONS(2556), + [anon_sym___clrcall] = ACTIONS(2556), + [anon_sym___stdcall] = ACTIONS(2556), + [anon_sym___fastcall] = ACTIONS(2556), + [anon_sym___thiscall] = ACTIONS(2556), + [anon_sym___vectorcall] = ACTIONS(2556), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_signed] = ACTIONS(2556), + [anon_sym_unsigned] = ACTIONS(2556), + [anon_sym_long] = ACTIONS(2556), + [anon_sym_short] = ACTIONS(2556), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_ATautoreleasepool] = ACTIONS(2558), + [anon_sym_auto] = ACTIONS(2556), + [anon_sym_register] = ACTIONS(2556), + [anon_sym_inline] = ACTIONS(2556), + [anon_sym___inline] = ACTIONS(2556), + [anon_sym___inline__] = ACTIONS(2556), + [anon_sym___forceinline] = ACTIONS(2556), + [anon_sym_thread_local] = ACTIONS(2556), + [anon_sym___thread] = ACTIONS(2556), + [anon_sym_CG_EXTERN] = ACTIONS(2556), + [anon_sym_CG_INLINE] = ACTIONS(2556), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2556), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2556), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2556), + [anon_sym_IBOutlet] = ACTIONS(2556), + [anon_sym_IBInspectable] = ACTIONS(2556), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2556), + [anon_sym_NS_INLINE] = ACTIONS(2556), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2556), + [anon_sym_OBJC_EXPORT] = ACTIONS(2556), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2556), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2556), + [anon_sym_const] = ACTIONS(2556), + [anon_sym_constexpr] = ACTIONS(2556), + [anon_sym_volatile] = ACTIONS(2556), + [anon_sym_restrict] = ACTIONS(2556), + [anon_sym___restrict__] = ACTIONS(2556), + [anon_sym__Atomic] = ACTIONS(2556), + [anon_sym__Noreturn] = ACTIONS(2556), + [anon_sym__Nonnull] = ACTIONS(2556), + [anon_sym_nullable] = ACTIONS(2556), + [anon_sym__Complex] = ACTIONS(2556), + [anon_sym__Nullable] = ACTIONS(2556), + [anon_sym__Nullable_result] = ACTIONS(2556), + [anon_sym__Null_unspecified] = ACTIONS(2556), + [anon_sym___autoreleasing] = ACTIONS(2556), + [anon_sym___block] = ACTIONS(2556), + [anon_sym___bridge] = ACTIONS(2556), + [anon_sym___bridge_retained] = ACTIONS(2556), + [anon_sym___bridge_transfer] = ACTIONS(2556), + [anon_sym___complex] = ACTIONS(2556), + [anon_sym___const] = ACTIONS(2556), + [anon_sym___imag] = ACTIONS(2556), + [anon_sym___kindof] = ACTIONS(2556), + [anon_sym___nonnull] = ACTIONS(2556), + [anon_sym___nullable] = ACTIONS(2556), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2556), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2556), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2556), + [anon_sym___real] = ACTIONS(2556), + [anon_sym___strong] = ACTIONS(2556), + [anon_sym___unsafe_unretained] = ACTIONS(2556), + [anon_sym___unused] = ACTIONS(2556), + [anon_sym___weak] = ACTIONS(2556), + [anon_sym_alignas] = ACTIONS(2556), + [anon_sym__Alignas] = ACTIONS(2556), + [sym_primitive_type] = ACTIONS(2556), + [anon_sym_enum] = ACTIONS(2556), + [anon_sym_struct] = ACTIONS(2556), + [anon_sym_union] = ACTIONS(2556), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_else] = ACTIONS(2556), + [anon_sym_switch] = ACTIONS(2556), + [anon_sym_case] = ACTIONS(2556), + [anon_sym_default] = ACTIONS(2556), + [anon_sym_while] = ACTIONS(2556), + [anon_sym_do] = ACTIONS(2556), + [anon_sym_for] = ACTIONS(2556), + [anon_sym_in] = ACTIONS(2556), + [anon_sym_return] = ACTIONS(2556), + [anon_sym_break] = ACTIONS(2556), + [anon_sym_continue] = ACTIONS(2556), + [anon_sym_goto] = ACTIONS(2556), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_sizeof] = ACTIONS(2556), + [anon_sym___alignof__] = ACTIONS(2556), + [anon_sym___alignof] = ACTIONS(2556), + [anon_sym__alignof] = ACTIONS(2556), + [anon_sym_alignof] = ACTIONS(2556), + [anon_sym__Alignof] = ACTIONS(2556), + [anon_sym_offsetof] = ACTIONS(2556), + [anon_sym__Generic] = ACTIONS(2556), + [anon_sym_asm] = ACTIONS(2556), + [anon_sym___asm__] = ACTIONS(2556), + [anon_sym___asm] = ACTIONS(2556), + [sym_number_literal] = ACTIONS(2558), + [anon_sym_L_SQUOTE] = ACTIONS(2558), + [anon_sym_u_SQUOTE] = ACTIONS(2558), + [anon_sym_U_SQUOTE] = ACTIONS(2558), + [anon_sym_u8_SQUOTE] = ACTIONS(2558), + [anon_sym_SQUOTE] = ACTIONS(2558), + [anon_sym_AT] = ACTIONS(2556), + [anon_sym_DQUOTE] = ACTIONS(2558), + [anon_sym_L_DQUOTE] = ACTIONS(2558), + [anon_sym_u_DQUOTE] = ACTIONS(2558), + [anon_sym_U_DQUOTE] = ACTIONS(2558), + [anon_sym_u8_DQUOTE] = ACTIONS(2558), + [sym_true] = ACTIONS(2556), + [sym_false] = ACTIONS(2556), + [anon_sym_NULL] = ACTIONS(2556), + [anon_sym_nullptr] = ACTIONS(2556), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2556), + [anon_sym___typeof] = ACTIONS(2556), + [anon_sym_typeof] = ACTIONS(2556), + [anon_sym_ATimport] = ACTIONS(2558), + [aux_sym_preproc_undef_token1] = ACTIONS(2556), + [anon_sym_POUND] = ACTIONS(2556), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2556), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2556), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2556), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2556), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2556), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2556), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2556), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2556), + [anon_sym_NS_AVAILABLE] = ACTIONS(2556), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2556), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_API_AVAILABLE] = ACTIONS(2556), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_API_DEPRECATED] = ACTIONS(2556), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2556), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2556), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2556), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2556), + [anon_sym___deprecated_msg] = ACTIONS(2556), + [anon_sym___deprecated_enum_msg] = ACTIONS(2556), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2556), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2556), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2556), + [anon_sym_ATprotocol] = ACTIONS(2558), + [anon_sym_ATinterface] = ACTIONS(2558), + [anon_sym_ATimplementation] = ACTIONS(2558), + [anon_sym_ATcompatibility_alias] = ACTIONS(2558), + [anon_sym_ATselector] = ACTIONS(2558), + [anon_sym_ATavailable] = ACTIONS(2558), + [anon_sym___builtin_available] = ACTIONS(2556), + [anon_sym_va_arg] = ACTIONS(2556), + [anon_sym_ATencode] = ACTIONS(2558), + [anon_sym_BOOL] = ACTIONS(2556), + [anon_sym_IMP] = ACTIONS(2556), + [anon_sym_SEL] = ACTIONS(2556), + [anon_sym_Class] = ACTIONS(2556), + [anon_sym_id] = ACTIONS(2556), + }, + [970] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [971] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [972] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [973] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [974] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [975] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [976] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [977] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [978] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [979] = { + [ts_builtin_sym_end] = ACTIONS(2480), + [sym_identifier] = ACTIONS(2478), + [aux_sym_preproc_include_token1] = ACTIONS(2478), + [aux_sym_preproc_include_token2] = ACTIONS(2478), + [aux_sym_preproc_def_token1] = ACTIONS(2478), + [aux_sym_preproc_if_token1] = ACTIONS(2478), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2478), + [sym_preproc_directive] = ACTIONS(2478), + [anon_sym_LPAREN2] = ACTIONS(2480), + [anon_sym_BANG] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2478), + [anon_sym_PLUS] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2480), + [anon_sym_CARET] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2480), + [anon_sym_SEMI] = ACTIONS(2480), + [anon_sym___extension__] = ACTIONS(2478), + [anon_sym_typedef] = ACTIONS(2478), + [anon_sym_extern] = ACTIONS(2478), + [anon_sym___attribute__] = ACTIONS(2478), + [anon_sym___attribute] = ACTIONS(2478), + [anon_sym_noreturn] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2480), + [anon_sym___declspec] = ACTIONS(2478), + [anon_sym___cdecl] = ACTIONS(2478), + [anon_sym___clrcall] = ACTIONS(2478), + [anon_sym___stdcall] = ACTIONS(2478), + [anon_sym___fastcall] = ACTIONS(2478), + [anon_sym___thiscall] = ACTIONS(2478), + [anon_sym___vectorcall] = ACTIONS(2478), + [anon_sym_LBRACE] = ACTIONS(2480), + [anon_sym_signed] = ACTIONS(2478), + [anon_sym_unsigned] = ACTIONS(2478), + [anon_sym_long] = ACTIONS(2478), + [anon_sym_short] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_ATautoreleasepool] = ACTIONS(2480), + [anon_sym_auto] = ACTIONS(2478), + [anon_sym_register] = ACTIONS(2478), + [anon_sym_inline] = ACTIONS(2478), + [anon_sym___inline] = ACTIONS(2478), + [anon_sym___inline__] = ACTIONS(2478), + [anon_sym___forceinline] = ACTIONS(2478), + [anon_sym_thread_local] = ACTIONS(2478), + [anon_sym___thread] = ACTIONS(2478), + [anon_sym_CG_EXTERN] = ACTIONS(2478), + [anon_sym_CG_INLINE] = ACTIONS(2478), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2478), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2478), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2478), + [anon_sym_IBOutlet] = ACTIONS(2478), + [anon_sym_IBInspectable] = ACTIONS(2478), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2478), + [anon_sym_NS_INLINE] = ACTIONS(2478), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2478), + [anon_sym_OBJC_EXPORT] = ACTIONS(2478), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2478), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [anon_sym_constexpr] = ACTIONS(2478), + [anon_sym_volatile] = ACTIONS(2478), + [anon_sym_restrict] = ACTIONS(2478), + [anon_sym___restrict__] = ACTIONS(2478), + [anon_sym__Atomic] = ACTIONS(2478), + [anon_sym__Noreturn] = ACTIONS(2478), + [anon_sym__Nonnull] = ACTIONS(2478), + [anon_sym_nullable] = ACTIONS(2478), + [anon_sym__Complex] = ACTIONS(2478), + [anon_sym__Nullable] = ACTIONS(2478), + [anon_sym__Nullable_result] = ACTIONS(2478), + [anon_sym__Null_unspecified] = ACTIONS(2478), + [anon_sym___autoreleasing] = ACTIONS(2478), + [anon_sym___block] = ACTIONS(2478), + [anon_sym___bridge] = ACTIONS(2478), + [anon_sym___bridge_retained] = ACTIONS(2478), + [anon_sym___bridge_transfer] = ACTIONS(2478), + [anon_sym___complex] = ACTIONS(2478), + [anon_sym___const] = ACTIONS(2478), + [anon_sym___imag] = ACTIONS(2478), + [anon_sym___kindof] = ACTIONS(2478), + [anon_sym___nonnull] = ACTIONS(2478), + [anon_sym___nullable] = ACTIONS(2478), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2478), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2478), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2478), + [anon_sym___real] = ACTIONS(2478), + [anon_sym___strong] = ACTIONS(2478), + [anon_sym___unsafe_unretained] = ACTIONS(2478), + [anon_sym___unused] = ACTIONS(2478), + [anon_sym___weak] = ACTIONS(2478), + [anon_sym_alignas] = ACTIONS(2478), + [anon_sym__Alignas] = ACTIONS(2478), + [sym_primitive_type] = ACTIONS(2478), + [anon_sym_enum] = ACTIONS(2478), + [anon_sym_struct] = ACTIONS(2478), + [anon_sym_union] = ACTIONS(2478), + [anon_sym_if] = ACTIONS(2478), + [anon_sym_else] = ACTIONS(2478), + [anon_sym_switch] = ACTIONS(2478), + [anon_sym_case] = ACTIONS(2478), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2478), + [anon_sym_do] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_in] = ACTIONS(2478), + [anon_sym_return] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_goto] = ACTIONS(2478), + [anon_sym_DASH_DASH] = ACTIONS(2480), + [anon_sym_PLUS_PLUS] = ACTIONS(2480), + [anon_sym_sizeof] = ACTIONS(2478), + [anon_sym___alignof__] = ACTIONS(2478), + [anon_sym___alignof] = ACTIONS(2478), + [anon_sym__alignof] = ACTIONS(2478), + [anon_sym_alignof] = ACTIONS(2478), + [anon_sym__Alignof] = ACTIONS(2478), + [anon_sym_offsetof] = ACTIONS(2478), + [anon_sym__Generic] = ACTIONS(2478), + [anon_sym_asm] = ACTIONS(2478), + [anon_sym___asm__] = ACTIONS(2478), + [anon_sym___asm] = ACTIONS(2478), + [sym_number_literal] = ACTIONS(2480), + [anon_sym_L_SQUOTE] = ACTIONS(2480), + [anon_sym_u_SQUOTE] = ACTIONS(2480), + [anon_sym_U_SQUOTE] = ACTIONS(2480), + [anon_sym_u8_SQUOTE] = ACTIONS(2480), + [anon_sym_SQUOTE] = ACTIONS(2480), + [anon_sym_AT] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2480), + [anon_sym_L_DQUOTE] = ACTIONS(2480), + [anon_sym_u_DQUOTE] = ACTIONS(2480), + [anon_sym_U_DQUOTE] = ACTIONS(2480), + [anon_sym_u8_DQUOTE] = ACTIONS(2480), + [sym_true] = ACTIONS(2478), + [sym_false] = ACTIONS(2478), + [anon_sym_NULL] = ACTIONS(2478), + [anon_sym_nullptr] = ACTIONS(2478), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2478), + [anon_sym___typeof] = ACTIONS(2478), + [anon_sym_typeof] = ACTIONS(2478), + [anon_sym_ATimport] = ACTIONS(2480), + [aux_sym_preproc_undef_token1] = ACTIONS(2478), + [anon_sym_POUND] = ACTIONS(2478), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2478), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2478), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2478), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2478), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2478), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2478), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2478), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2478), + [anon_sym_NS_AVAILABLE] = ACTIONS(2478), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2478), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_API_AVAILABLE] = ACTIONS(2478), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_API_DEPRECATED] = ACTIONS(2478), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2478), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2478), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2478), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2478), + [anon_sym___deprecated_msg] = ACTIONS(2478), + [anon_sym___deprecated_enum_msg] = ACTIONS(2478), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2478), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2478), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2478), + [anon_sym_ATprotocol] = ACTIONS(2480), + [anon_sym_ATinterface] = ACTIONS(2480), + [anon_sym_ATimplementation] = ACTIONS(2480), + [anon_sym_ATcompatibility_alias] = ACTIONS(2480), + [anon_sym_ATselector] = ACTIONS(2480), + [anon_sym_ATavailable] = ACTIONS(2480), + [anon_sym___builtin_available] = ACTIONS(2478), + [anon_sym_va_arg] = ACTIONS(2478), + [anon_sym_ATencode] = ACTIONS(2480), + [anon_sym_BOOL] = ACTIONS(2478), + [anon_sym_IMP] = ACTIONS(2478), + [anon_sym_SEL] = ACTIONS(2478), + [anon_sym_Class] = ACTIONS(2478), + [anon_sym_id] = ACTIONS(2478), + }, + [980] = { + [ts_builtin_sym_end] = ACTIONS(2522), + [sym_identifier] = ACTIONS(2520), + [aux_sym_preproc_include_token1] = ACTIONS(2520), + [aux_sym_preproc_include_token2] = ACTIONS(2520), + [aux_sym_preproc_def_token1] = ACTIONS(2520), + [aux_sym_preproc_if_token1] = ACTIONS(2520), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2520), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2520), + [sym_preproc_directive] = ACTIONS(2520), + [anon_sym_LPAREN2] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2522), + [anon_sym_TILDE] = ACTIONS(2522), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_PLUS] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_CARET] = ACTIONS(2522), + [anon_sym_AMP] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym___extension__] = ACTIONS(2520), + [anon_sym_typedef] = ACTIONS(2520), + [anon_sym_extern] = ACTIONS(2520), + [anon_sym___attribute__] = ACTIONS(2520), + [anon_sym___attribute] = ACTIONS(2520), + [anon_sym_noreturn] = ACTIONS(2520), + [anon_sym_LBRACK] = ACTIONS(2522), + [anon_sym___declspec] = ACTIONS(2520), + [anon_sym___cdecl] = ACTIONS(2520), + [anon_sym___clrcall] = ACTIONS(2520), + [anon_sym___stdcall] = ACTIONS(2520), + [anon_sym___fastcall] = ACTIONS(2520), + [anon_sym___thiscall] = ACTIONS(2520), + [anon_sym___vectorcall] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_signed] = ACTIONS(2520), + [anon_sym_unsigned] = ACTIONS(2520), + [anon_sym_long] = ACTIONS(2520), + [anon_sym_short] = ACTIONS(2520), + [anon_sym_static] = ACTIONS(2520), + [anon_sym_ATautoreleasepool] = ACTIONS(2522), + [anon_sym_auto] = ACTIONS(2520), + [anon_sym_register] = ACTIONS(2520), + [anon_sym_inline] = ACTIONS(2520), + [anon_sym___inline] = ACTIONS(2520), + [anon_sym___inline__] = ACTIONS(2520), + [anon_sym___forceinline] = ACTIONS(2520), + [anon_sym_thread_local] = ACTIONS(2520), + [anon_sym___thread] = ACTIONS(2520), + [anon_sym_CG_EXTERN] = ACTIONS(2520), + [anon_sym_CG_INLINE] = ACTIONS(2520), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2520), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2520), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2520), + [anon_sym_IBOutlet] = ACTIONS(2520), + [anon_sym_IBInspectable] = ACTIONS(2520), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2520), + [anon_sym_NS_INLINE] = ACTIONS(2520), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2520), + [anon_sym_OBJC_EXPORT] = ACTIONS(2520), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2520), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2520), + [anon_sym_const] = ACTIONS(2520), + [anon_sym_constexpr] = ACTIONS(2520), + [anon_sym_volatile] = ACTIONS(2520), + [anon_sym_restrict] = ACTIONS(2520), + [anon_sym___restrict__] = ACTIONS(2520), + [anon_sym__Atomic] = ACTIONS(2520), + [anon_sym__Noreturn] = ACTIONS(2520), + [anon_sym__Nonnull] = ACTIONS(2520), + [anon_sym_nullable] = ACTIONS(2520), + [anon_sym__Complex] = ACTIONS(2520), + [anon_sym__Nullable] = ACTIONS(2520), + [anon_sym__Nullable_result] = ACTIONS(2520), + [anon_sym__Null_unspecified] = ACTIONS(2520), + [anon_sym___autoreleasing] = ACTIONS(2520), + [anon_sym___block] = ACTIONS(2520), + [anon_sym___bridge] = ACTIONS(2520), + [anon_sym___bridge_retained] = ACTIONS(2520), + [anon_sym___bridge_transfer] = ACTIONS(2520), + [anon_sym___complex] = ACTIONS(2520), + [anon_sym___const] = ACTIONS(2520), + [anon_sym___imag] = ACTIONS(2520), + [anon_sym___kindof] = ACTIONS(2520), + [anon_sym___nonnull] = ACTIONS(2520), + [anon_sym___nullable] = ACTIONS(2520), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2520), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2520), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2520), + [anon_sym___real] = ACTIONS(2520), + [anon_sym___strong] = ACTIONS(2520), + [anon_sym___unsafe_unretained] = ACTIONS(2520), + [anon_sym___unused] = ACTIONS(2520), + [anon_sym___weak] = ACTIONS(2520), + [anon_sym_alignas] = ACTIONS(2520), + [anon_sym__Alignas] = ACTIONS(2520), + [sym_primitive_type] = ACTIONS(2520), + [anon_sym_enum] = ACTIONS(2520), + [anon_sym_struct] = ACTIONS(2520), + [anon_sym_union] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2520), + [anon_sym_else] = ACTIONS(2520), + [anon_sym_switch] = ACTIONS(2520), + [anon_sym_case] = ACTIONS(2520), + [anon_sym_default] = ACTIONS(2520), + [anon_sym_while] = ACTIONS(2520), + [anon_sym_do] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2520), + [anon_sym_in] = ACTIONS(2520), + [anon_sym_return] = ACTIONS(2520), + [anon_sym_break] = ACTIONS(2520), + [anon_sym_continue] = ACTIONS(2520), + [anon_sym_goto] = ACTIONS(2520), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_sizeof] = ACTIONS(2520), + [anon_sym___alignof__] = ACTIONS(2520), + [anon_sym___alignof] = ACTIONS(2520), + [anon_sym__alignof] = ACTIONS(2520), + [anon_sym_alignof] = ACTIONS(2520), + [anon_sym__Alignof] = ACTIONS(2520), + [anon_sym_offsetof] = ACTIONS(2520), + [anon_sym__Generic] = ACTIONS(2520), + [anon_sym_asm] = ACTIONS(2520), + [anon_sym___asm__] = ACTIONS(2520), + [anon_sym___asm] = ACTIONS(2520), + [sym_number_literal] = ACTIONS(2522), + [anon_sym_L_SQUOTE] = ACTIONS(2522), + [anon_sym_u_SQUOTE] = ACTIONS(2522), + [anon_sym_U_SQUOTE] = ACTIONS(2522), + [anon_sym_u8_SQUOTE] = ACTIONS(2522), + [anon_sym_SQUOTE] = ACTIONS(2522), + [anon_sym_AT] = ACTIONS(2520), + [anon_sym_DQUOTE] = ACTIONS(2522), + [anon_sym_L_DQUOTE] = ACTIONS(2522), + [anon_sym_u_DQUOTE] = ACTIONS(2522), + [anon_sym_U_DQUOTE] = ACTIONS(2522), + [anon_sym_u8_DQUOTE] = ACTIONS(2522), + [sym_true] = ACTIONS(2520), + [sym_false] = ACTIONS(2520), + [anon_sym_NULL] = ACTIONS(2520), + [anon_sym_nullptr] = ACTIONS(2520), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2520), + [anon_sym___typeof] = ACTIONS(2520), + [anon_sym_typeof] = ACTIONS(2520), + [anon_sym_ATimport] = ACTIONS(2522), + [aux_sym_preproc_undef_token1] = ACTIONS(2520), + [anon_sym_POUND] = ACTIONS(2520), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2520), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2520), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2520), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2520), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2520), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2520), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2520), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2520), + [anon_sym_NS_AVAILABLE] = ACTIONS(2520), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2520), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_API_AVAILABLE] = ACTIONS(2520), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_API_DEPRECATED] = ACTIONS(2520), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2520), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2520), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2520), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2520), + [anon_sym___deprecated_msg] = ACTIONS(2520), + [anon_sym___deprecated_enum_msg] = ACTIONS(2520), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2520), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2520), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2520), + [anon_sym_ATprotocol] = ACTIONS(2522), + [anon_sym_ATinterface] = ACTIONS(2522), + [anon_sym_ATimplementation] = ACTIONS(2522), + [anon_sym_ATcompatibility_alias] = ACTIONS(2522), + [anon_sym_ATselector] = ACTIONS(2522), + [anon_sym_ATavailable] = ACTIONS(2522), + [anon_sym___builtin_available] = ACTIONS(2520), + [anon_sym_va_arg] = ACTIONS(2520), + [anon_sym_ATencode] = ACTIONS(2522), + [anon_sym_BOOL] = ACTIONS(2520), + [anon_sym_IMP] = ACTIONS(2520), + [anon_sym_SEL] = ACTIONS(2520), + [anon_sym_Class] = ACTIONS(2520), + [anon_sym_id] = ACTIONS(2520), + }, + [981] = { + [ts_builtin_sym_end] = ACTIONS(2570), + [sym_identifier] = ACTIONS(2568), + [aux_sym_preproc_include_token1] = ACTIONS(2568), + [aux_sym_preproc_include_token2] = ACTIONS(2568), + [aux_sym_preproc_def_token1] = ACTIONS(2568), + [aux_sym_preproc_if_token1] = ACTIONS(2568), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2568), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2568), + [sym_preproc_directive] = ACTIONS(2568), + [anon_sym_LPAREN2] = ACTIONS(2570), + [anon_sym_BANG] = ACTIONS(2570), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_CARET] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym___extension__] = ACTIONS(2568), + [anon_sym_typedef] = ACTIONS(2568), + [anon_sym_extern] = ACTIONS(2568), + [anon_sym___attribute__] = ACTIONS(2568), + [anon_sym___attribute] = ACTIONS(2568), + [anon_sym_noreturn] = ACTIONS(2568), + [anon_sym_LBRACK] = ACTIONS(2570), + [anon_sym___declspec] = ACTIONS(2568), + [anon_sym___cdecl] = ACTIONS(2568), + [anon_sym___clrcall] = ACTIONS(2568), + [anon_sym___stdcall] = ACTIONS(2568), + [anon_sym___fastcall] = ACTIONS(2568), + [anon_sym___thiscall] = ACTIONS(2568), + [anon_sym___vectorcall] = ACTIONS(2568), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_signed] = ACTIONS(2568), + [anon_sym_unsigned] = ACTIONS(2568), + [anon_sym_long] = ACTIONS(2568), + [anon_sym_short] = ACTIONS(2568), + [anon_sym_static] = ACTIONS(2568), + [anon_sym_ATautoreleasepool] = ACTIONS(2570), + [anon_sym_auto] = ACTIONS(2568), + [anon_sym_register] = ACTIONS(2568), + [anon_sym_inline] = ACTIONS(2568), + [anon_sym___inline] = ACTIONS(2568), + [anon_sym___inline__] = ACTIONS(2568), + [anon_sym___forceinline] = ACTIONS(2568), + [anon_sym_thread_local] = ACTIONS(2568), + [anon_sym___thread] = ACTIONS(2568), + [anon_sym_CG_EXTERN] = ACTIONS(2568), + [anon_sym_CG_INLINE] = ACTIONS(2568), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2568), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2568), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2568), + [anon_sym_IBOutlet] = ACTIONS(2568), + [anon_sym_IBInspectable] = ACTIONS(2568), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2568), + [anon_sym_NS_INLINE] = ACTIONS(2568), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2568), + [anon_sym_OBJC_EXPORT] = ACTIONS(2568), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2568), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2568), + [anon_sym_const] = ACTIONS(2568), + [anon_sym_constexpr] = ACTIONS(2568), + [anon_sym_volatile] = ACTIONS(2568), + [anon_sym_restrict] = ACTIONS(2568), + [anon_sym___restrict__] = ACTIONS(2568), + [anon_sym__Atomic] = ACTIONS(2568), + [anon_sym__Noreturn] = ACTIONS(2568), + [anon_sym__Nonnull] = ACTIONS(2568), + [anon_sym_nullable] = ACTIONS(2568), + [anon_sym__Complex] = ACTIONS(2568), + [anon_sym__Nullable] = ACTIONS(2568), + [anon_sym__Nullable_result] = ACTIONS(2568), + [anon_sym__Null_unspecified] = ACTIONS(2568), + [anon_sym___autoreleasing] = ACTIONS(2568), + [anon_sym___block] = ACTIONS(2568), + [anon_sym___bridge] = ACTIONS(2568), + [anon_sym___bridge_retained] = ACTIONS(2568), + [anon_sym___bridge_transfer] = ACTIONS(2568), + [anon_sym___complex] = ACTIONS(2568), + [anon_sym___const] = ACTIONS(2568), + [anon_sym___imag] = ACTIONS(2568), + [anon_sym___kindof] = ACTIONS(2568), + [anon_sym___nonnull] = ACTIONS(2568), + [anon_sym___nullable] = ACTIONS(2568), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2568), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2568), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2568), + [anon_sym___real] = ACTIONS(2568), + [anon_sym___strong] = ACTIONS(2568), + [anon_sym___unsafe_unretained] = ACTIONS(2568), + [anon_sym___unused] = ACTIONS(2568), + [anon_sym___weak] = ACTIONS(2568), + [anon_sym_alignas] = ACTIONS(2568), + [anon_sym__Alignas] = ACTIONS(2568), + [sym_primitive_type] = ACTIONS(2568), + [anon_sym_enum] = ACTIONS(2568), + [anon_sym_struct] = ACTIONS(2568), + [anon_sym_union] = ACTIONS(2568), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_else] = ACTIONS(2568), + [anon_sym_switch] = ACTIONS(2568), + [anon_sym_case] = ACTIONS(2568), + [anon_sym_default] = ACTIONS(2568), + [anon_sym_while] = ACTIONS(2568), + [anon_sym_do] = ACTIONS(2568), + [anon_sym_for] = ACTIONS(2568), + [anon_sym_in] = ACTIONS(2568), + [anon_sym_return] = ACTIONS(2568), + [anon_sym_break] = ACTIONS(2568), + [anon_sym_continue] = ACTIONS(2568), + [anon_sym_goto] = ACTIONS(2568), + [anon_sym_DASH_DASH] = ACTIONS(2570), + [anon_sym_PLUS_PLUS] = ACTIONS(2570), + [anon_sym_sizeof] = ACTIONS(2568), + [anon_sym___alignof__] = ACTIONS(2568), + [anon_sym___alignof] = ACTIONS(2568), + [anon_sym__alignof] = ACTIONS(2568), + [anon_sym_alignof] = ACTIONS(2568), + [anon_sym__Alignof] = ACTIONS(2568), + [anon_sym_offsetof] = ACTIONS(2568), + [anon_sym__Generic] = ACTIONS(2568), + [anon_sym_asm] = ACTIONS(2568), + [anon_sym___asm__] = ACTIONS(2568), + [anon_sym___asm] = ACTIONS(2568), + [sym_number_literal] = ACTIONS(2570), + [anon_sym_L_SQUOTE] = ACTIONS(2570), + [anon_sym_u_SQUOTE] = ACTIONS(2570), + [anon_sym_U_SQUOTE] = ACTIONS(2570), + [anon_sym_u8_SQUOTE] = ACTIONS(2570), + [anon_sym_SQUOTE] = ACTIONS(2570), + [anon_sym_AT] = ACTIONS(2568), + [anon_sym_DQUOTE] = ACTIONS(2570), + [anon_sym_L_DQUOTE] = ACTIONS(2570), + [anon_sym_u_DQUOTE] = ACTIONS(2570), + [anon_sym_U_DQUOTE] = ACTIONS(2570), + [anon_sym_u8_DQUOTE] = ACTIONS(2570), + [sym_true] = ACTIONS(2568), + [sym_false] = ACTIONS(2568), + [anon_sym_NULL] = ACTIONS(2568), + [anon_sym_nullptr] = ACTIONS(2568), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2568), + [anon_sym___typeof] = ACTIONS(2568), + [anon_sym_typeof] = ACTIONS(2568), + [anon_sym_ATimport] = ACTIONS(2570), + [aux_sym_preproc_undef_token1] = ACTIONS(2568), + [anon_sym_POUND] = ACTIONS(2568), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2568), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2568), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2568), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2568), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2568), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2568), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2568), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2568), + [anon_sym_NS_AVAILABLE] = ACTIONS(2568), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2568), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_API_AVAILABLE] = ACTIONS(2568), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_API_DEPRECATED] = ACTIONS(2568), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2568), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2568), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2568), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2568), + [anon_sym___deprecated_msg] = ACTIONS(2568), + [anon_sym___deprecated_enum_msg] = ACTIONS(2568), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2568), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2568), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2568), + [anon_sym_ATprotocol] = ACTIONS(2570), + [anon_sym_ATinterface] = ACTIONS(2570), + [anon_sym_ATimplementation] = ACTIONS(2570), + [anon_sym_ATcompatibility_alias] = ACTIONS(2570), + [anon_sym_ATselector] = ACTIONS(2570), + [anon_sym_ATavailable] = ACTIONS(2570), + [anon_sym___builtin_available] = ACTIONS(2568), + [anon_sym_va_arg] = ACTIONS(2568), + [anon_sym_ATencode] = ACTIONS(2570), + [anon_sym_BOOL] = ACTIONS(2568), + [anon_sym_IMP] = ACTIONS(2568), + [anon_sym_SEL] = ACTIONS(2568), + [anon_sym_Class] = ACTIONS(2568), + [anon_sym_id] = ACTIONS(2568), + }, + [982] = { + [ts_builtin_sym_end] = ACTIONS(2484), + [sym_identifier] = ACTIONS(2482), + [aux_sym_preproc_include_token1] = ACTIONS(2482), + [aux_sym_preproc_include_token2] = ACTIONS(2482), + [aux_sym_preproc_def_token1] = ACTIONS(2482), + [aux_sym_preproc_if_token1] = ACTIONS(2482), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2482), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2482), + [sym_preproc_directive] = ACTIONS(2482), + [anon_sym_LPAREN2] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2484), + [anon_sym_TILDE] = ACTIONS(2484), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_STAR] = ACTIONS(2484), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym___extension__] = ACTIONS(2482), + [anon_sym_typedef] = ACTIONS(2482), + [anon_sym_extern] = ACTIONS(2482), + [anon_sym___attribute__] = ACTIONS(2482), + [anon_sym___attribute] = ACTIONS(2482), + [anon_sym_noreturn] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2484), + [anon_sym___declspec] = ACTIONS(2482), + [anon_sym___cdecl] = ACTIONS(2482), + [anon_sym___clrcall] = ACTIONS(2482), + [anon_sym___stdcall] = ACTIONS(2482), + [anon_sym___fastcall] = ACTIONS(2482), + [anon_sym___thiscall] = ACTIONS(2482), + [anon_sym___vectorcall] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_signed] = ACTIONS(2482), + [anon_sym_unsigned] = ACTIONS(2482), + [anon_sym_long] = ACTIONS(2482), + [anon_sym_short] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_ATautoreleasepool] = ACTIONS(2484), + [anon_sym_auto] = ACTIONS(2482), + [anon_sym_register] = ACTIONS(2482), + [anon_sym_inline] = ACTIONS(2482), + [anon_sym___inline] = ACTIONS(2482), + [anon_sym___inline__] = ACTIONS(2482), + [anon_sym___forceinline] = ACTIONS(2482), + [anon_sym_thread_local] = ACTIONS(2482), + [anon_sym___thread] = ACTIONS(2482), + [anon_sym_CG_EXTERN] = ACTIONS(2482), + [anon_sym_CG_INLINE] = ACTIONS(2482), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2482), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2482), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2482), + [anon_sym_IBOutlet] = ACTIONS(2482), + [anon_sym_IBInspectable] = ACTIONS(2482), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2482), + [anon_sym_NS_INLINE] = ACTIONS(2482), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2482), + [anon_sym_OBJC_EXPORT] = ACTIONS(2482), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2482), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2482), + [anon_sym_const] = ACTIONS(2482), + [anon_sym_constexpr] = ACTIONS(2482), + [anon_sym_volatile] = ACTIONS(2482), + [anon_sym_restrict] = ACTIONS(2482), + [anon_sym___restrict__] = ACTIONS(2482), + [anon_sym__Atomic] = ACTIONS(2482), + [anon_sym__Noreturn] = ACTIONS(2482), + [anon_sym__Nonnull] = ACTIONS(2482), + [anon_sym_nullable] = ACTIONS(2482), + [anon_sym__Complex] = ACTIONS(2482), + [anon_sym__Nullable] = ACTIONS(2482), + [anon_sym__Nullable_result] = ACTIONS(2482), + [anon_sym__Null_unspecified] = ACTIONS(2482), + [anon_sym___autoreleasing] = ACTIONS(2482), + [anon_sym___block] = ACTIONS(2482), + [anon_sym___bridge] = ACTIONS(2482), + [anon_sym___bridge_retained] = ACTIONS(2482), + [anon_sym___bridge_transfer] = ACTIONS(2482), + [anon_sym___complex] = ACTIONS(2482), + [anon_sym___const] = ACTIONS(2482), + [anon_sym___imag] = ACTIONS(2482), + [anon_sym___kindof] = ACTIONS(2482), + [anon_sym___nonnull] = ACTIONS(2482), + [anon_sym___nullable] = ACTIONS(2482), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2482), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2482), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2482), + [anon_sym___real] = ACTIONS(2482), + [anon_sym___strong] = ACTIONS(2482), + [anon_sym___unsafe_unretained] = ACTIONS(2482), + [anon_sym___unused] = ACTIONS(2482), + [anon_sym___weak] = ACTIONS(2482), + [anon_sym_alignas] = ACTIONS(2482), + [anon_sym__Alignas] = ACTIONS(2482), + [sym_primitive_type] = ACTIONS(2482), + [anon_sym_enum] = ACTIONS(2482), + [anon_sym_struct] = ACTIONS(2482), + [anon_sym_union] = ACTIONS(2482), + [anon_sym_if] = ACTIONS(2482), + [anon_sym_else] = ACTIONS(2482), + [anon_sym_switch] = ACTIONS(2482), + [anon_sym_case] = ACTIONS(2482), + [anon_sym_default] = ACTIONS(2482), + [anon_sym_while] = ACTIONS(2482), + [anon_sym_do] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2482), + [anon_sym_continue] = ACTIONS(2482), + [anon_sym_goto] = ACTIONS(2482), + [anon_sym_DASH_DASH] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(2484), + [anon_sym_sizeof] = ACTIONS(2482), + [anon_sym___alignof__] = ACTIONS(2482), + [anon_sym___alignof] = ACTIONS(2482), + [anon_sym__alignof] = ACTIONS(2482), + [anon_sym_alignof] = ACTIONS(2482), + [anon_sym__Alignof] = ACTIONS(2482), + [anon_sym_offsetof] = ACTIONS(2482), + [anon_sym__Generic] = ACTIONS(2482), + [anon_sym_asm] = ACTIONS(2482), + [anon_sym___asm__] = ACTIONS(2482), + [anon_sym___asm] = ACTIONS(2482), + [sym_number_literal] = ACTIONS(2484), + [anon_sym_L_SQUOTE] = ACTIONS(2484), + [anon_sym_u_SQUOTE] = ACTIONS(2484), + [anon_sym_U_SQUOTE] = ACTIONS(2484), + [anon_sym_u8_SQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [anon_sym_AT] = ACTIONS(2482), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_L_DQUOTE] = ACTIONS(2484), + [anon_sym_u_DQUOTE] = ACTIONS(2484), + [anon_sym_U_DQUOTE] = ACTIONS(2484), + [anon_sym_u8_DQUOTE] = ACTIONS(2484), + [sym_true] = ACTIONS(2482), + [sym_false] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_nullptr] = ACTIONS(2482), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2482), + [anon_sym___typeof] = ACTIONS(2482), + [anon_sym_typeof] = ACTIONS(2482), + [anon_sym_ATimport] = ACTIONS(2484), + [aux_sym_preproc_undef_token1] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2482), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2482), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2482), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2482), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2482), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2482), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2482), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2482), + [anon_sym_NS_AVAILABLE] = ACTIONS(2482), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2482), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_API_AVAILABLE] = ACTIONS(2482), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_API_DEPRECATED] = ACTIONS(2482), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2482), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2482), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2482), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2482), + [anon_sym___deprecated_msg] = ACTIONS(2482), + [anon_sym___deprecated_enum_msg] = ACTIONS(2482), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2482), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2482), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2482), + [anon_sym_ATprotocol] = ACTIONS(2484), + [anon_sym_ATinterface] = ACTIONS(2484), + [anon_sym_ATimplementation] = ACTIONS(2484), + [anon_sym_ATcompatibility_alias] = ACTIONS(2484), + [anon_sym_ATselector] = ACTIONS(2484), + [anon_sym_ATavailable] = ACTIONS(2484), + [anon_sym___builtin_available] = ACTIONS(2482), + [anon_sym_va_arg] = ACTIONS(2482), + [anon_sym_ATencode] = ACTIONS(2484), + [anon_sym_BOOL] = ACTIONS(2482), + [anon_sym_IMP] = ACTIONS(2482), + [anon_sym_SEL] = ACTIONS(2482), + [anon_sym_Class] = ACTIONS(2482), + [anon_sym_id] = ACTIONS(2482), + }, + [983] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [aux_sym_preproc_include_token1] = ACTIONS(2564), + [aux_sym_preproc_include_token2] = ACTIONS(2564), + [aux_sym_preproc_def_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2564), + [sym_preproc_directive] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym___cdecl] = ACTIONS(2564), + [anon_sym___clrcall] = ACTIONS(2564), + [anon_sym___stdcall] = ACTIONS(2564), + [anon_sym___fastcall] = ACTIONS(2564), + [anon_sym___thiscall] = ACTIONS(2564), + [anon_sym___vectorcall] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_ATimport] = ACTIONS(2566), + [aux_sym_preproc_undef_token1] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATprotocol] = ACTIONS(2566), + [anon_sym_ATinterface] = ACTIONS(2566), + [anon_sym_ATimplementation] = ACTIONS(2566), + [anon_sym_ATcompatibility_alias] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [984] = { + [ts_builtin_sym_end] = ACTIONS(2496), + [sym_identifier] = ACTIONS(2494), + [aux_sym_preproc_include_token1] = ACTIONS(2494), + [aux_sym_preproc_include_token2] = ACTIONS(2494), + [aux_sym_preproc_def_token1] = ACTIONS(2494), + [aux_sym_preproc_if_token1] = ACTIONS(2494), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2494), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2494), + [sym_preproc_directive] = ACTIONS(2494), + [anon_sym_LPAREN2] = ACTIONS(2496), + [anon_sym_BANG] = ACTIONS(2496), + [anon_sym_TILDE] = ACTIONS(2496), + [anon_sym_DASH] = ACTIONS(2494), + [anon_sym_PLUS] = ACTIONS(2494), + [anon_sym_STAR] = ACTIONS(2496), + [anon_sym_CARET] = ACTIONS(2496), + [anon_sym_AMP] = ACTIONS(2496), + [anon_sym_SEMI] = ACTIONS(2496), + [anon_sym___extension__] = ACTIONS(2494), + [anon_sym_typedef] = ACTIONS(2494), + [anon_sym_extern] = ACTIONS(2494), + [anon_sym___attribute__] = ACTIONS(2494), + [anon_sym___attribute] = ACTIONS(2494), + [anon_sym_noreturn] = ACTIONS(2494), + [anon_sym_LBRACK] = ACTIONS(2496), + [anon_sym___declspec] = ACTIONS(2494), + [anon_sym___cdecl] = ACTIONS(2494), + [anon_sym___clrcall] = ACTIONS(2494), + [anon_sym___stdcall] = ACTIONS(2494), + [anon_sym___fastcall] = ACTIONS(2494), + [anon_sym___thiscall] = ACTIONS(2494), + [anon_sym___vectorcall] = ACTIONS(2494), + [anon_sym_LBRACE] = ACTIONS(2496), + [anon_sym_signed] = ACTIONS(2494), + [anon_sym_unsigned] = ACTIONS(2494), + [anon_sym_long] = ACTIONS(2494), + [anon_sym_short] = ACTIONS(2494), + [anon_sym_static] = ACTIONS(2494), + [anon_sym_ATautoreleasepool] = ACTIONS(2496), + [anon_sym_auto] = ACTIONS(2494), + [anon_sym_register] = ACTIONS(2494), + [anon_sym_inline] = ACTIONS(2494), + [anon_sym___inline] = ACTIONS(2494), + [anon_sym___inline__] = ACTIONS(2494), + [anon_sym___forceinline] = ACTIONS(2494), + [anon_sym_thread_local] = ACTIONS(2494), + [anon_sym___thread] = ACTIONS(2494), + [anon_sym_CG_EXTERN] = ACTIONS(2494), + [anon_sym_CG_INLINE] = ACTIONS(2494), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2494), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2494), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2494), + [anon_sym_IBOutlet] = ACTIONS(2494), + [anon_sym_IBInspectable] = ACTIONS(2494), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2494), + [anon_sym_NS_INLINE] = ACTIONS(2494), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2494), + [anon_sym_OBJC_EXPORT] = ACTIONS(2494), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2494), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2494), + [anon_sym_const] = ACTIONS(2494), + [anon_sym_constexpr] = ACTIONS(2494), + [anon_sym_volatile] = ACTIONS(2494), + [anon_sym_restrict] = ACTIONS(2494), + [anon_sym___restrict__] = ACTIONS(2494), + [anon_sym__Atomic] = ACTIONS(2494), + [anon_sym__Noreturn] = ACTIONS(2494), + [anon_sym__Nonnull] = ACTIONS(2494), + [anon_sym_nullable] = ACTIONS(2494), + [anon_sym__Complex] = ACTIONS(2494), + [anon_sym__Nullable] = ACTIONS(2494), + [anon_sym__Nullable_result] = ACTIONS(2494), + [anon_sym__Null_unspecified] = ACTIONS(2494), + [anon_sym___autoreleasing] = ACTIONS(2494), + [anon_sym___block] = ACTIONS(2494), + [anon_sym___bridge] = ACTIONS(2494), + [anon_sym___bridge_retained] = ACTIONS(2494), + [anon_sym___bridge_transfer] = ACTIONS(2494), + [anon_sym___complex] = ACTIONS(2494), + [anon_sym___const] = ACTIONS(2494), + [anon_sym___imag] = ACTIONS(2494), + [anon_sym___kindof] = ACTIONS(2494), + [anon_sym___nonnull] = ACTIONS(2494), + [anon_sym___nullable] = ACTIONS(2494), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2494), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2494), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2494), + [anon_sym___real] = ACTIONS(2494), + [anon_sym___strong] = ACTIONS(2494), + [anon_sym___unsafe_unretained] = ACTIONS(2494), + [anon_sym___unused] = ACTIONS(2494), + [anon_sym___weak] = ACTIONS(2494), + [anon_sym_alignas] = ACTIONS(2494), + [anon_sym__Alignas] = ACTIONS(2494), + [sym_primitive_type] = ACTIONS(2494), + [anon_sym_enum] = ACTIONS(2494), + [anon_sym_struct] = ACTIONS(2494), + [anon_sym_union] = ACTIONS(2494), + [anon_sym_if] = ACTIONS(2494), + [anon_sym_else] = ACTIONS(2494), + [anon_sym_switch] = ACTIONS(2494), + [anon_sym_case] = ACTIONS(2494), + [anon_sym_default] = ACTIONS(2494), + [anon_sym_while] = ACTIONS(2494), + [anon_sym_do] = ACTIONS(2494), + [anon_sym_for] = ACTIONS(2494), + [anon_sym_in] = ACTIONS(2494), + [anon_sym_return] = ACTIONS(2494), + [anon_sym_break] = ACTIONS(2494), + [anon_sym_continue] = ACTIONS(2494), + [anon_sym_goto] = ACTIONS(2494), + [anon_sym_DASH_DASH] = ACTIONS(2496), + [anon_sym_PLUS_PLUS] = ACTIONS(2496), + [anon_sym_sizeof] = ACTIONS(2494), + [anon_sym___alignof__] = ACTIONS(2494), + [anon_sym___alignof] = ACTIONS(2494), + [anon_sym__alignof] = ACTIONS(2494), + [anon_sym_alignof] = ACTIONS(2494), + [anon_sym__Alignof] = ACTIONS(2494), + [anon_sym_offsetof] = ACTIONS(2494), + [anon_sym__Generic] = ACTIONS(2494), + [anon_sym_asm] = ACTIONS(2494), + [anon_sym___asm__] = ACTIONS(2494), + [anon_sym___asm] = ACTIONS(2494), + [sym_number_literal] = ACTIONS(2496), + [anon_sym_L_SQUOTE] = ACTIONS(2496), + [anon_sym_u_SQUOTE] = ACTIONS(2496), + [anon_sym_U_SQUOTE] = ACTIONS(2496), + [anon_sym_u8_SQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2496), + [anon_sym_AT] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_L_DQUOTE] = ACTIONS(2496), + [anon_sym_u_DQUOTE] = ACTIONS(2496), + [anon_sym_U_DQUOTE] = ACTIONS(2496), + [anon_sym_u8_DQUOTE] = ACTIONS(2496), + [sym_true] = ACTIONS(2494), + [sym_false] = ACTIONS(2494), + [anon_sym_NULL] = ACTIONS(2494), + [anon_sym_nullptr] = ACTIONS(2494), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2494), + [anon_sym___typeof] = ACTIONS(2494), + [anon_sym_typeof] = ACTIONS(2494), + [anon_sym_ATimport] = ACTIONS(2496), + [aux_sym_preproc_undef_token1] = ACTIONS(2494), + [anon_sym_POUND] = ACTIONS(2494), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2494), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2494), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2494), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2494), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2494), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2494), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2494), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2494), + [anon_sym_NS_AVAILABLE] = ACTIONS(2494), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2494), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_API_AVAILABLE] = ACTIONS(2494), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_API_DEPRECATED] = ACTIONS(2494), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2494), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2494), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2494), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2494), + [anon_sym___deprecated_msg] = ACTIONS(2494), + [anon_sym___deprecated_enum_msg] = ACTIONS(2494), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2494), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2494), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2494), + [anon_sym_ATprotocol] = ACTIONS(2496), + [anon_sym_ATinterface] = ACTIONS(2496), + [anon_sym_ATimplementation] = ACTIONS(2496), + [anon_sym_ATcompatibility_alias] = ACTIONS(2496), + [anon_sym_ATselector] = ACTIONS(2496), + [anon_sym_ATavailable] = ACTIONS(2496), + [anon_sym___builtin_available] = ACTIONS(2494), + [anon_sym_va_arg] = ACTIONS(2494), + [anon_sym_ATencode] = ACTIONS(2496), + [anon_sym_BOOL] = ACTIONS(2494), + [anon_sym_IMP] = ACTIONS(2494), + [anon_sym_SEL] = ACTIONS(2494), + [anon_sym_Class] = ACTIONS(2494), + [anon_sym_id] = ACTIONS(2494), + }, + [985] = { + [ts_builtin_sym_end] = ACTIONS(2818), + [sym_identifier] = ACTIONS(2816), + [aux_sym_preproc_include_token1] = ACTIONS(2816), + [aux_sym_preproc_include_token2] = ACTIONS(2816), + [aux_sym_preproc_def_token1] = ACTIONS(2816), + [aux_sym_preproc_if_token1] = ACTIONS(2816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2816), + [sym_preproc_directive] = ACTIONS(2816), + [anon_sym_LPAREN2] = ACTIONS(2818), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_TILDE] = ACTIONS(2818), + [anon_sym_DASH] = ACTIONS(2816), + [anon_sym_PLUS] = ACTIONS(2816), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_CARET] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym___extension__] = ACTIONS(2816), + [anon_sym_typedef] = ACTIONS(2816), + [anon_sym_extern] = ACTIONS(2816), + [anon_sym___attribute__] = ACTIONS(2816), + [anon_sym___attribute] = ACTIONS(2816), + [anon_sym_noreturn] = ACTIONS(2816), + [anon_sym_LBRACK] = ACTIONS(2818), + [anon_sym___declspec] = ACTIONS(2816), + [anon_sym___cdecl] = ACTIONS(2816), + [anon_sym___clrcall] = ACTIONS(2816), + [anon_sym___stdcall] = ACTIONS(2816), + [anon_sym___fastcall] = ACTIONS(2816), + [anon_sym___thiscall] = ACTIONS(2816), + [anon_sym___vectorcall] = ACTIONS(2816), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_signed] = ACTIONS(2816), + [anon_sym_unsigned] = ACTIONS(2816), + [anon_sym_long] = ACTIONS(2816), + [anon_sym_short] = ACTIONS(2816), + [anon_sym_static] = ACTIONS(2816), + [anon_sym_ATautoreleasepool] = ACTIONS(2818), + [anon_sym_auto] = ACTIONS(2816), + [anon_sym_register] = ACTIONS(2816), + [anon_sym_inline] = ACTIONS(2816), + [anon_sym___inline] = ACTIONS(2816), + [anon_sym___inline__] = ACTIONS(2816), + [anon_sym___forceinline] = ACTIONS(2816), + [anon_sym_thread_local] = ACTIONS(2816), + [anon_sym___thread] = ACTIONS(2816), + [anon_sym_CG_EXTERN] = ACTIONS(2816), + [anon_sym_CG_INLINE] = ACTIONS(2816), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2816), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2816), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2816), + [anon_sym_IBOutlet] = ACTIONS(2816), + [anon_sym_IBInspectable] = ACTIONS(2816), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2816), + [anon_sym_NS_INLINE] = ACTIONS(2816), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2816), + [anon_sym_OBJC_EXPORT] = ACTIONS(2816), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2816), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2816), + [anon_sym_const] = ACTIONS(2816), + [anon_sym_constexpr] = ACTIONS(2816), + [anon_sym_volatile] = ACTIONS(2816), + [anon_sym_restrict] = ACTIONS(2816), + [anon_sym___restrict__] = ACTIONS(2816), + [anon_sym__Atomic] = ACTIONS(2816), + [anon_sym__Noreturn] = ACTIONS(2816), + [anon_sym__Nonnull] = ACTIONS(2816), + [anon_sym_nullable] = ACTIONS(2816), + [anon_sym__Complex] = ACTIONS(2816), + [anon_sym__Nullable] = ACTIONS(2816), + [anon_sym__Nullable_result] = ACTIONS(2816), + [anon_sym__Null_unspecified] = ACTIONS(2816), + [anon_sym___autoreleasing] = ACTIONS(2816), + [anon_sym___block] = ACTIONS(2816), + [anon_sym___bridge] = ACTIONS(2816), + [anon_sym___bridge_retained] = ACTIONS(2816), + [anon_sym___bridge_transfer] = ACTIONS(2816), + [anon_sym___complex] = ACTIONS(2816), + [anon_sym___const] = ACTIONS(2816), + [anon_sym___imag] = ACTIONS(2816), + [anon_sym___kindof] = ACTIONS(2816), + [anon_sym___nonnull] = ACTIONS(2816), + [anon_sym___nullable] = ACTIONS(2816), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2816), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2816), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2816), + [anon_sym___real] = ACTIONS(2816), + [anon_sym___strong] = ACTIONS(2816), + [anon_sym___unsafe_unretained] = ACTIONS(2816), + [anon_sym___unused] = ACTIONS(2816), + [anon_sym___weak] = ACTIONS(2816), + [anon_sym_alignas] = ACTIONS(2816), + [anon_sym__Alignas] = ACTIONS(2816), + [sym_primitive_type] = ACTIONS(2816), + [anon_sym_enum] = ACTIONS(2816), + [anon_sym_struct] = ACTIONS(2816), + [anon_sym_union] = ACTIONS(2816), + [anon_sym_if] = ACTIONS(2816), + [anon_sym_switch] = ACTIONS(2816), + [anon_sym_case] = ACTIONS(2816), + [anon_sym_default] = ACTIONS(2816), + [anon_sym_while] = ACTIONS(2816), + [anon_sym_do] = ACTIONS(2816), + [anon_sym_for] = ACTIONS(2816), + [anon_sym_in] = ACTIONS(2816), + [anon_sym_return] = ACTIONS(2816), + [anon_sym_break] = ACTIONS(2816), + [anon_sym_continue] = ACTIONS(2816), + [anon_sym_goto] = ACTIONS(2816), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_sizeof] = ACTIONS(2816), + [anon_sym___alignof__] = ACTIONS(2816), + [anon_sym___alignof] = ACTIONS(2816), + [anon_sym__alignof] = ACTIONS(2816), + [anon_sym_alignof] = ACTIONS(2816), + [anon_sym__Alignof] = ACTIONS(2816), + [anon_sym_offsetof] = ACTIONS(2816), + [anon_sym__Generic] = ACTIONS(2816), + [anon_sym_asm] = ACTIONS(2816), + [anon_sym___asm__] = ACTIONS(2816), + [anon_sym___asm] = ACTIONS(2816), + [sym_number_literal] = ACTIONS(2818), + [anon_sym_L_SQUOTE] = ACTIONS(2818), + [anon_sym_u_SQUOTE] = ACTIONS(2818), + [anon_sym_U_SQUOTE] = ACTIONS(2818), + [anon_sym_u8_SQUOTE] = ACTIONS(2818), + [anon_sym_SQUOTE] = ACTIONS(2818), + [anon_sym_AT] = ACTIONS(2816), + [anon_sym_DQUOTE] = ACTIONS(2818), + [anon_sym_L_DQUOTE] = ACTIONS(2818), + [anon_sym_u_DQUOTE] = ACTIONS(2818), + [anon_sym_U_DQUOTE] = ACTIONS(2818), + [anon_sym_u8_DQUOTE] = ACTIONS(2818), + [sym_true] = ACTIONS(2816), + [sym_false] = ACTIONS(2816), + [anon_sym_NULL] = ACTIONS(2816), + [anon_sym_nullptr] = ACTIONS(2816), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2816), + [anon_sym___typeof] = ACTIONS(2816), + [anon_sym_typeof] = ACTIONS(2816), + [anon_sym_ATimport] = ACTIONS(2818), + [aux_sym_preproc_undef_token1] = ACTIONS(2816), + [anon_sym_POUND] = ACTIONS(2816), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2816), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2816), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2816), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2816), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2816), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2816), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2816), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2816), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2816), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2816), + [anon_sym_NS_AVAILABLE] = ACTIONS(2816), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2816), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2816), + [anon_sym_API_AVAILABLE] = ACTIONS(2816), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2816), + [anon_sym_API_DEPRECATED] = ACTIONS(2816), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2816), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2816), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2816), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2816), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2816), + [anon_sym___deprecated_msg] = ACTIONS(2816), + [anon_sym___deprecated_enum_msg] = ACTIONS(2816), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2816), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2816), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2816), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2816), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2816), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2816), + [anon_sym_ATprotocol] = ACTIONS(2818), + [anon_sym_ATinterface] = ACTIONS(2818), + [anon_sym_ATimplementation] = ACTIONS(2818), + [anon_sym_ATcompatibility_alias] = ACTIONS(2818), + [anon_sym_ATselector] = ACTIONS(2818), + [anon_sym_ATavailable] = ACTIONS(2818), + [anon_sym___builtin_available] = ACTIONS(2816), + [anon_sym_va_arg] = ACTIONS(2816), + [anon_sym_ATencode] = ACTIONS(2818), + [anon_sym_BOOL] = ACTIONS(2816), + [anon_sym_IMP] = ACTIONS(2816), + [anon_sym_SEL] = ACTIONS(2816), + [anon_sym_Class] = ACTIONS(2816), + [anon_sym_id] = ACTIONS(2816), + }, + [986] = { + [ts_builtin_sym_end] = ACTIONS(2858), + [sym_identifier] = ACTIONS(2856), + [aux_sym_preproc_include_token1] = ACTIONS(2856), + [aux_sym_preproc_include_token2] = ACTIONS(2856), + [aux_sym_preproc_def_token1] = ACTIONS(2856), + [aux_sym_preproc_if_token1] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2856), + [sym_preproc_directive] = ACTIONS(2856), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_CARET] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2858), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym___extension__] = ACTIONS(2856), + [anon_sym_typedef] = ACTIONS(2856), + [anon_sym_extern] = ACTIONS(2856), + [anon_sym___attribute__] = ACTIONS(2856), + [anon_sym___attribute] = ACTIONS(2856), + [anon_sym_noreturn] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2858), + [anon_sym___declspec] = ACTIONS(2856), + [anon_sym___cdecl] = ACTIONS(2856), + [anon_sym___clrcall] = ACTIONS(2856), + [anon_sym___stdcall] = ACTIONS(2856), + [anon_sym___fastcall] = ACTIONS(2856), + [anon_sym___thiscall] = ACTIONS(2856), + [anon_sym___vectorcall] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_signed] = ACTIONS(2856), + [anon_sym_unsigned] = ACTIONS(2856), + [anon_sym_long] = ACTIONS(2856), + [anon_sym_short] = ACTIONS(2856), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_ATautoreleasepool] = ACTIONS(2858), + [anon_sym_auto] = ACTIONS(2856), + [anon_sym_register] = ACTIONS(2856), + [anon_sym_inline] = ACTIONS(2856), + [anon_sym___inline] = ACTIONS(2856), + [anon_sym___inline__] = ACTIONS(2856), + [anon_sym___forceinline] = ACTIONS(2856), + [anon_sym_thread_local] = ACTIONS(2856), + [anon_sym___thread] = ACTIONS(2856), + [anon_sym_CG_EXTERN] = ACTIONS(2856), + [anon_sym_CG_INLINE] = ACTIONS(2856), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2856), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2856), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2856), + [anon_sym_IBOutlet] = ACTIONS(2856), + [anon_sym_IBInspectable] = ACTIONS(2856), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2856), + [anon_sym_NS_INLINE] = ACTIONS(2856), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2856), + [anon_sym_OBJC_EXPORT] = ACTIONS(2856), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2856), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2856), + [anon_sym_constexpr] = ACTIONS(2856), + [anon_sym_volatile] = ACTIONS(2856), + [anon_sym_restrict] = ACTIONS(2856), + [anon_sym___restrict__] = ACTIONS(2856), + [anon_sym__Atomic] = ACTIONS(2856), + [anon_sym__Noreturn] = ACTIONS(2856), + [anon_sym__Nonnull] = ACTIONS(2856), + [anon_sym_nullable] = ACTIONS(2856), + [anon_sym__Complex] = ACTIONS(2856), + [anon_sym__Nullable] = ACTIONS(2856), + [anon_sym__Nullable_result] = ACTIONS(2856), + [anon_sym__Null_unspecified] = ACTIONS(2856), + [anon_sym___autoreleasing] = ACTIONS(2856), + [anon_sym___block] = ACTIONS(2856), + [anon_sym___bridge] = ACTIONS(2856), + [anon_sym___bridge_retained] = ACTIONS(2856), + [anon_sym___bridge_transfer] = ACTIONS(2856), + [anon_sym___complex] = ACTIONS(2856), + [anon_sym___const] = ACTIONS(2856), + [anon_sym___imag] = ACTIONS(2856), + [anon_sym___kindof] = ACTIONS(2856), + [anon_sym___nonnull] = ACTIONS(2856), + [anon_sym___nullable] = ACTIONS(2856), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2856), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2856), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2856), + [anon_sym___real] = ACTIONS(2856), + [anon_sym___strong] = ACTIONS(2856), + [anon_sym___unsafe_unretained] = ACTIONS(2856), + [anon_sym___unused] = ACTIONS(2856), + [anon_sym___weak] = ACTIONS(2856), + [anon_sym_alignas] = ACTIONS(2856), + [anon_sym__Alignas] = ACTIONS(2856), + [sym_primitive_type] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2856), + [anon_sym_union] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_switch] = ACTIONS(2856), + [anon_sym_case] = ACTIONS(2856), + [anon_sym_default] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_in] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(2856), + [anon_sym_continue] = ACTIONS(2856), + [anon_sym_goto] = ACTIONS(2856), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_sizeof] = ACTIONS(2856), + [anon_sym___alignof__] = ACTIONS(2856), + [anon_sym___alignof] = ACTIONS(2856), + [anon_sym__alignof] = ACTIONS(2856), + [anon_sym_alignof] = ACTIONS(2856), + [anon_sym__Alignof] = ACTIONS(2856), + [anon_sym_offsetof] = ACTIONS(2856), + [anon_sym__Generic] = ACTIONS(2856), + [anon_sym_asm] = ACTIONS(2856), + [anon_sym___asm__] = ACTIONS(2856), + [anon_sym___asm] = ACTIONS(2856), + [sym_number_literal] = ACTIONS(2858), + [anon_sym_L_SQUOTE] = ACTIONS(2858), + [anon_sym_u_SQUOTE] = ACTIONS(2858), + [anon_sym_U_SQUOTE] = ACTIONS(2858), + [anon_sym_u8_SQUOTE] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_AT] = ACTIONS(2856), + [anon_sym_DQUOTE] = ACTIONS(2858), + [anon_sym_L_DQUOTE] = ACTIONS(2858), + [anon_sym_u_DQUOTE] = ACTIONS(2858), + [anon_sym_U_DQUOTE] = ACTIONS(2858), + [anon_sym_u8_DQUOTE] = ACTIONS(2858), + [sym_true] = ACTIONS(2856), + [sym_false] = ACTIONS(2856), + [anon_sym_NULL] = ACTIONS(2856), + [anon_sym_nullptr] = ACTIONS(2856), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2856), + [anon_sym___typeof] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2856), + [anon_sym_ATimport] = ACTIONS(2858), + [aux_sym_preproc_undef_token1] = ACTIONS(2856), + [anon_sym_POUND] = ACTIONS(2856), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2856), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2856), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2856), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2856), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2856), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2856), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2856), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2856), + [anon_sym_NS_AVAILABLE] = ACTIONS(2856), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2856), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_API_AVAILABLE] = ACTIONS(2856), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_API_DEPRECATED] = ACTIONS(2856), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2856), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2856), + [anon_sym___deprecated_msg] = ACTIONS(2856), + [anon_sym___deprecated_enum_msg] = ACTIONS(2856), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2856), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2856), + [anon_sym_ATprotocol] = ACTIONS(2858), + [anon_sym_ATinterface] = ACTIONS(2858), + [anon_sym_ATimplementation] = ACTIONS(2858), + [anon_sym_ATcompatibility_alias] = ACTIONS(2858), + [anon_sym_ATselector] = ACTIONS(2858), + [anon_sym_ATavailable] = ACTIONS(2858), + [anon_sym___builtin_available] = ACTIONS(2856), + [anon_sym_va_arg] = ACTIONS(2856), + [anon_sym_ATencode] = ACTIONS(2858), + [anon_sym_BOOL] = ACTIONS(2856), + [anon_sym_IMP] = ACTIONS(2856), + [anon_sym_SEL] = ACTIONS(2856), + [anon_sym_Class] = ACTIONS(2856), + [anon_sym_id] = ACTIONS(2856), + }, + [987] = { + [ts_builtin_sym_end] = ACTIONS(2830), + [sym_identifier] = ACTIONS(2828), + [aux_sym_preproc_include_token1] = ACTIONS(2828), + [aux_sym_preproc_include_token2] = ACTIONS(2828), + [aux_sym_preproc_def_token1] = ACTIONS(2828), + [aux_sym_preproc_if_token1] = ACTIONS(2828), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2828), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2828), + [sym_preproc_directive] = ACTIONS(2828), + [anon_sym_LPAREN2] = ACTIONS(2830), + [anon_sym_BANG] = ACTIONS(2830), + [anon_sym_TILDE] = ACTIONS(2830), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_PLUS] = ACTIONS(2828), + [anon_sym_STAR] = ACTIONS(2830), + [anon_sym_CARET] = ACTIONS(2830), + [anon_sym_AMP] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym___extension__] = ACTIONS(2828), + [anon_sym_typedef] = ACTIONS(2828), + [anon_sym_extern] = ACTIONS(2828), + [anon_sym___attribute__] = ACTIONS(2828), + [anon_sym___attribute] = ACTIONS(2828), + [anon_sym_noreturn] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym___declspec] = ACTIONS(2828), + [anon_sym___cdecl] = ACTIONS(2828), + [anon_sym___clrcall] = ACTIONS(2828), + [anon_sym___stdcall] = ACTIONS(2828), + [anon_sym___fastcall] = ACTIONS(2828), + [anon_sym___thiscall] = ACTIONS(2828), + [anon_sym___vectorcall] = ACTIONS(2828), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_signed] = ACTIONS(2828), + [anon_sym_unsigned] = ACTIONS(2828), + [anon_sym_long] = ACTIONS(2828), + [anon_sym_short] = ACTIONS(2828), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_ATautoreleasepool] = ACTIONS(2830), + [anon_sym_auto] = ACTIONS(2828), + [anon_sym_register] = ACTIONS(2828), + [anon_sym_inline] = ACTIONS(2828), + [anon_sym___inline] = ACTIONS(2828), + [anon_sym___inline__] = ACTIONS(2828), + [anon_sym___forceinline] = ACTIONS(2828), + [anon_sym_thread_local] = ACTIONS(2828), + [anon_sym___thread] = ACTIONS(2828), + [anon_sym_CG_EXTERN] = ACTIONS(2828), + [anon_sym_CG_INLINE] = ACTIONS(2828), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2828), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2828), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2828), + [anon_sym_IBOutlet] = ACTIONS(2828), + [anon_sym_IBInspectable] = ACTIONS(2828), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2828), + [anon_sym_NS_INLINE] = ACTIONS(2828), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2828), + [anon_sym_OBJC_EXPORT] = ACTIONS(2828), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2828), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2828), + [anon_sym_const] = ACTIONS(2828), + [anon_sym_constexpr] = ACTIONS(2828), + [anon_sym_volatile] = ACTIONS(2828), + [anon_sym_restrict] = ACTIONS(2828), + [anon_sym___restrict__] = ACTIONS(2828), + [anon_sym__Atomic] = ACTIONS(2828), + [anon_sym__Noreturn] = ACTIONS(2828), + [anon_sym__Nonnull] = ACTIONS(2828), + [anon_sym_nullable] = ACTIONS(2828), + [anon_sym__Complex] = ACTIONS(2828), + [anon_sym__Nullable] = ACTIONS(2828), + [anon_sym__Nullable_result] = ACTIONS(2828), + [anon_sym__Null_unspecified] = ACTIONS(2828), + [anon_sym___autoreleasing] = ACTIONS(2828), + [anon_sym___block] = ACTIONS(2828), + [anon_sym___bridge] = ACTIONS(2828), + [anon_sym___bridge_retained] = ACTIONS(2828), + [anon_sym___bridge_transfer] = ACTIONS(2828), + [anon_sym___complex] = ACTIONS(2828), + [anon_sym___const] = ACTIONS(2828), + [anon_sym___imag] = ACTIONS(2828), + [anon_sym___kindof] = ACTIONS(2828), + [anon_sym___nonnull] = ACTIONS(2828), + [anon_sym___nullable] = ACTIONS(2828), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2828), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2828), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2828), + [anon_sym___real] = ACTIONS(2828), + [anon_sym___strong] = ACTIONS(2828), + [anon_sym___unsafe_unretained] = ACTIONS(2828), + [anon_sym___unused] = ACTIONS(2828), + [anon_sym___weak] = ACTIONS(2828), + [anon_sym_alignas] = ACTIONS(2828), + [anon_sym__Alignas] = ACTIONS(2828), + [sym_primitive_type] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [anon_sym_struct] = ACTIONS(2828), + [anon_sym_union] = ACTIONS(2828), + [anon_sym_if] = ACTIONS(2828), + [anon_sym_switch] = ACTIONS(2828), + [anon_sym_case] = ACTIONS(2828), + [anon_sym_default] = ACTIONS(2828), + [anon_sym_while] = ACTIONS(2828), + [anon_sym_do] = ACTIONS(2828), + [anon_sym_for] = ACTIONS(2828), + [anon_sym_in] = ACTIONS(2828), + [anon_sym_return] = ACTIONS(2828), + [anon_sym_break] = ACTIONS(2828), + [anon_sym_continue] = ACTIONS(2828), + [anon_sym_goto] = ACTIONS(2828), + [anon_sym_DASH_DASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2830), + [anon_sym_sizeof] = ACTIONS(2828), + [anon_sym___alignof__] = ACTIONS(2828), + [anon_sym___alignof] = ACTIONS(2828), + [anon_sym__alignof] = ACTIONS(2828), + [anon_sym_alignof] = ACTIONS(2828), + [anon_sym__Alignof] = ACTIONS(2828), + [anon_sym_offsetof] = ACTIONS(2828), + [anon_sym__Generic] = ACTIONS(2828), + [anon_sym_asm] = ACTIONS(2828), + [anon_sym___asm__] = ACTIONS(2828), + [anon_sym___asm] = ACTIONS(2828), + [sym_number_literal] = ACTIONS(2830), + [anon_sym_L_SQUOTE] = ACTIONS(2830), + [anon_sym_u_SQUOTE] = ACTIONS(2830), + [anon_sym_U_SQUOTE] = ACTIONS(2830), + [anon_sym_u8_SQUOTE] = ACTIONS(2830), + [anon_sym_SQUOTE] = ACTIONS(2830), + [anon_sym_AT] = ACTIONS(2828), + [anon_sym_DQUOTE] = ACTIONS(2830), + [anon_sym_L_DQUOTE] = ACTIONS(2830), + [anon_sym_u_DQUOTE] = ACTIONS(2830), + [anon_sym_U_DQUOTE] = ACTIONS(2830), + [anon_sym_u8_DQUOTE] = ACTIONS(2830), + [sym_true] = ACTIONS(2828), + [sym_false] = ACTIONS(2828), + [anon_sym_NULL] = ACTIONS(2828), + [anon_sym_nullptr] = ACTIONS(2828), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2828), + [anon_sym___typeof] = ACTIONS(2828), + [anon_sym_typeof] = ACTIONS(2828), + [anon_sym_ATimport] = ACTIONS(2830), + [aux_sym_preproc_undef_token1] = ACTIONS(2828), + [anon_sym_POUND] = ACTIONS(2828), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2828), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2828), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2828), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2828), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2828), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2828), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2828), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2828), + [anon_sym_NS_AVAILABLE] = ACTIONS(2828), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2828), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_API_AVAILABLE] = ACTIONS(2828), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_API_DEPRECATED] = ACTIONS(2828), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2828), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2828), + [anon_sym___deprecated_msg] = ACTIONS(2828), + [anon_sym___deprecated_enum_msg] = ACTIONS(2828), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2828), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2828), + [anon_sym_ATprotocol] = ACTIONS(2830), + [anon_sym_ATinterface] = ACTIONS(2830), + [anon_sym_ATimplementation] = ACTIONS(2830), + [anon_sym_ATcompatibility_alias] = ACTIONS(2830), + [anon_sym_ATselector] = ACTIONS(2830), + [anon_sym_ATavailable] = ACTIONS(2830), + [anon_sym___builtin_available] = ACTIONS(2828), + [anon_sym_va_arg] = ACTIONS(2828), + [anon_sym_ATencode] = ACTIONS(2830), + [anon_sym_BOOL] = ACTIONS(2828), + [anon_sym_IMP] = ACTIONS(2828), + [anon_sym_SEL] = ACTIONS(2828), + [anon_sym_Class] = ACTIONS(2828), + [anon_sym_id] = ACTIONS(2828), + }, + [988] = { + [ts_builtin_sym_end] = ACTIONS(2874), + [sym_identifier] = ACTIONS(2872), + [aux_sym_preproc_include_token1] = ACTIONS(2872), + [aux_sym_preproc_include_token2] = ACTIONS(2872), + [aux_sym_preproc_def_token1] = ACTIONS(2872), + [aux_sym_preproc_if_token1] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2872), + [sym_preproc_directive] = ACTIONS(2872), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_CARET] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2874), + [anon_sym___extension__] = ACTIONS(2872), + [anon_sym_typedef] = ACTIONS(2872), + [anon_sym_extern] = ACTIONS(2872), + [anon_sym___attribute__] = ACTIONS(2872), + [anon_sym___attribute] = ACTIONS(2872), + [anon_sym_noreturn] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2874), + [anon_sym___declspec] = ACTIONS(2872), + [anon_sym___cdecl] = ACTIONS(2872), + [anon_sym___clrcall] = ACTIONS(2872), + [anon_sym___stdcall] = ACTIONS(2872), + [anon_sym___fastcall] = ACTIONS(2872), + [anon_sym___thiscall] = ACTIONS(2872), + [anon_sym___vectorcall] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_signed] = ACTIONS(2872), + [anon_sym_unsigned] = ACTIONS(2872), + [anon_sym_long] = ACTIONS(2872), + [anon_sym_short] = ACTIONS(2872), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_ATautoreleasepool] = ACTIONS(2874), + [anon_sym_auto] = ACTIONS(2872), + [anon_sym_register] = ACTIONS(2872), + [anon_sym_inline] = ACTIONS(2872), + [anon_sym___inline] = ACTIONS(2872), + [anon_sym___inline__] = ACTIONS(2872), + [anon_sym___forceinline] = ACTIONS(2872), + [anon_sym_thread_local] = ACTIONS(2872), + [anon_sym___thread] = ACTIONS(2872), + [anon_sym_CG_EXTERN] = ACTIONS(2872), + [anon_sym_CG_INLINE] = ACTIONS(2872), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2872), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2872), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2872), + [anon_sym_IBOutlet] = ACTIONS(2872), + [anon_sym_IBInspectable] = ACTIONS(2872), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2872), + [anon_sym_NS_INLINE] = ACTIONS(2872), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2872), + [anon_sym_OBJC_EXPORT] = ACTIONS(2872), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2872), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2872), + [anon_sym_const] = ACTIONS(2872), + [anon_sym_constexpr] = ACTIONS(2872), + [anon_sym_volatile] = ACTIONS(2872), + [anon_sym_restrict] = ACTIONS(2872), + [anon_sym___restrict__] = ACTIONS(2872), + [anon_sym__Atomic] = ACTIONS(2872), + [anon_sym__Noreturn] = ACTIONS(2872), + [anon_sym__Nonnull] = ACTIONS(2872), + [anon_sym_nullable] = ACTIONS(2872), + [anon_sym__Complex] = ACTIONS(2872), + [anon_sym__Nullable] = ACTIONS(2872), + [anon_sym__Nullable_result] = ACTIONS(2872), + [anon_sym__Null_unspecified] = ACTIONS(2872), + [anon_sym___autoreleasing] = ACTIONS(2872), + [anon_sym___block] = ACTIONS(2872), + [anon_sym___bridge] = ACTIONS(2872), + [anon_sym___bridge_retained] = ACTIONS(2872), + [anon_sym___bridge_transfer] = ACTIONS(2872), + [anon_sym___complex] = ACTIONS(2872), + [anon_sym___const] = ACTIONS(2872), + [anon_sym___imag] = ACTIONS(2872), + [anon_sym___kindof] = ACTIONS(2872), + [anon_sym___nonnull] = ACTIONS(2872), + [anon_sym___nullable] = ACTIONS(2872), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2872), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2872), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2872), + [anon_sym___real] = ACTIONS(2872), + [anon_sym___strong] = ACTIONS(2872), + [anon_sym___unsafe_unretained] = ACTIONS(2872), + [anon_sym___unused] = ACTIONS(2872), + [anon_sym___weak] = ACTIONS(2872), + [anon_sym_alignas] = ACTIONS(2872), + [anon_sym__Alignas] = ACTIONS(2872), + [sym_primitive_type] = ACTIONS(2872), + [anon_sym_enum] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2872), + [anon_sym_union] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_switch] = ACTIONS(2872), + [anon_sym_case] = ACTIONS(2872), + [anon_sym_default] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_in] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_break] = ACTIONS(2872), + [anon_sym_continue] = ACTIONS(2872), + [anon_sym_goto] = ACTIONS(2872), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_sizeof] = ACTIONS(2872), + [anon_sym___alignof__] = ACTIONS(2872), + [anon_sym___alignof] = ACTIONS(2872), + [anon_sym__alignof] = ACTIONS(2872), + [anon_sym_alignof] = ACTIONS(2872), + [anon_sym__Alignof] = ACTIONS(2872), + [anon_sym_offsetof] = ACTIONS(2872), + [anon_sym__Generic] = ACTIONS(2872), + [anon_sym_asm] = ACTIONS(2872), + [anon_sym___asm__] = ACTIONS(2872), + [anon_sym___asm] = ACTIONS(2872), + [sym_number_literal] = ACTIONS(2874), + [anon_sym_L_SQUOTE] = ACTIONS(2874), + [anon_sym_u_SQUOTE] = ACTIONS(2874), + [anon_sym_U_SQUOTE] = ACTIONS(2874), + [anon_sym_u8_SQUOTE] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_AT] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(2874), + [anon_sym_L_DQUOTE] = ACTIONS(2874), + [anon_sym_u_DQUOTE] = ACTIONS(2874), + [anon_sym_U_DQUOTE] = ACTIONS(2874), + [anon_sym_u8_DQUOTE] = ACTIONS(2874), + [sym_true] = ACTIONS(2872), + [sym_false] = ACTIONS(2872), + [anon_sym_NULL] = ACTIONS(2872), + [anon_sym_nullptr] = ACTIONS(2872), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2872), + [anon_sym___typeof] = ACTIONS(2872), + [anon_sym_typeof] = ACTIONS(2872), + [anon_sym_ATimport] = ACTIONS(2874), + [aux_sym_preproc_undef_token1] = ACTIONS(2872), + [anon_sym_POUND] = ACTIONS(2872), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2872), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2872), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2872), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2872), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2872), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2872), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2872), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2872), + [anon_sym_NS_AVAILABLE] = ACTIONS(2872), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2872), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_API_AVAILABLE] = ACTIONS(2872), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_API_DEPRECATED] = ACTIONS(2872), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2872), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2872), + [anon_sym___deprecated_msg] = ACTIONS(2872), + [anon_sym___deprecated_enum_msg] = ACTIONS(2872), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2872), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2872), + [anon_sym_ATprotocol] = ACTIONS(2874), + [anon_sym_ATinterface] = ACTIONS(2874), + [anon_sym_ATimplementation] = ACTIONS(2874), + [anon_sym_ATcompatibility_alias] = ACTIONS(2874), + [anon_sym_ATselector] = ACTIONS(2874), + [anon_sym_ATavailable] = ACTIONS(2874), + [anon_sym___builtin_available] = ACTIONS(2872), + [anon_sym_va_arg] = ACTIONS(2872), + [anon_sym_ATencode] = ACTIONS(2874), + [anon_sym_BOOL] = ACTIONS(2872), + [anon_sym_IMP] = ACTIONS(2872), + [anon_sym_SEL] = ACTIONS(2872), + [anon_sym_Class] = ACTIONS(2872), + [anon_sym_id] = ACTIONS(2872), + }, + [989] = { + [ts_builtin_sym_end] = ACTIONS(2654), + [sym_identifier] = ACTIONS(2652), + [aux_sym_preproc_include_token1] = ACTIONS(2652), + [aux_sym_preproc_include_token2] = ACTIONS(2652), + [aux_sym_preproc_def_token1] = ACTIONS(2652), + [aux_sym_preproc_if_token1] = ACTIONS(2652), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2652), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2652), + [sym_preproc_directive] = ACTIONS(2652), + [anon_sym_LPAREN2] = ACTIONS(2654), + [anon_sym_BANG] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2654), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_STAR] = ACTIONS(2654), + [anon_sym_CARET] = ACTIONS(2654), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_SEMI] = ACTIONS(2654), + [anon_sym___extension__] = ACTIONS(2652), + [anon_sym_typedef] = ACTIONS(2652), + [anon_sym_extern] = ACTIONS(2652), + [anon_sym___attribute__] = ACTIONS(2652), + [anon_sym___attribute] = ACTIONS(2652), + [anon_sym_noreturn] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2654), + [anon_sym___declspec] = ACTIONS(2652), + [anon_sym___cdecl] = ACTIONS(2652), + [anon_sym___clrcall] = ACTIONS(2652), + [anon_sym___stdcall] = ACTIONS(2652), + [anon_sym___fastcall] = ACTIONS(2652), + [anon_sym___thiscall] = ACTIONS(2652), + [anon_sym___vectorcall] = ACTIONS(2652), + [anon_sym_LBRACE] = ACTIONS(2654), + [anon_sym_signed] = ACTIONS(2652), + [anon_sym_unsigned] = ACTIONS(2652), + [anon_sym_long] = ACTIONS(2652), + [anon_sym_short] = ACTIONS(2652), + [anon_sym_static] = ACTIONS(2652), + [anon_sym_ATautoreleasepool] = ACTIONS(2654), + [anon_sym_auto] = ACTIONS(2652), + [anon_sym_register] = ACTIONS(2652), + [anon_sym_inline] = ACTIONS(2652), + [anon_sym___inline] = ACTIONS(2652), + [anon_sym___inline__] = ACTIONS(2652), + [anon_sym___forceinline] = ACTIONS(2652), + [anon_sym_thread_local] = ACTIONS(2652), + [anon_sym___thread] = ACTIONS(2652), + [anon_sym_CG_EXTERN] = ACTIONS(2652), + [anon_sym_CG_INLINE] = ACTIONS(2652), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2652), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2652), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2652), + [anon_sym_IBOutlet] = ACTIONS(2652), + [anon_sym_IBInspectable] = ACTIONS(2652), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2652), + [anon_sym_NS_INLINE] = ACTIONS(2652), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2652), + [anon_sym_OBJC_EXPORT] = ACTIONS(2652), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2652), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2652), + [anon_sym_const] = ACTIONS(2652), + [anon_sym_constexpr] = ACTIONS(2652), + [anon_sym_volatile] = ACTIONS(2652), + [anon_sym_restrict] = ACTIONS(2652), + [anon_sym___restrict__] = ACTIONS(2652), + [anon_sym__Atomic] = ACTIONS(2652), + [anon_sym__Noreturn] = ACTIONS(2652), + [anon_sym__Nonnull] = ACTIONS(2652), + [anon_sym_nullable] = ACTIONS(2652), + [anon_sym__Complex] = ACTIONS(2652), + [anon_sym__Nullable] = ACTIONS(2652), + [anon_sym__Nullable_result] = ACTIONS(2652), + [anon_sym__Null_unspecified] = ACTIONS(2652), + [anon_sym___autoreleasing] = ACTIONS(2652), + [anon_sym___block] = ACTIONS(2652), + [anon_sym___bridge] = ACTIONS(2652), + [anon_sym___bridge_retained] = ACTIONS(2652), + [anon_sym___bridge_transfer] = ACTIONS(2652), + [anon_sym___complex] = ACTIONS(2652), + [anon_sym___const] = ACTIONS(2652), + [anon_sym___imag] = ACTIONS(2652), + [anon_sym___kindof] = ACTIONS(2652), + [anon_sym___nonnull] = ACTIONS(2652), + [anon_sym___nullable] = ACTIONS(2652), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2652), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2652), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2652), + [anon_sym___real] = ACTIONS(2652), + [anon_sym___strong] = ACTIONS(2652), + [anon_sym___unsafe_unretained] = ACTIONS(2652), + [anon_sym___unused] = ACTIONS(2652), + [anon_sym___weak] = ACTIONS(2652), + [anon_sym_alignas] = ACTIONS(2652), + [anon_sym__Alignas] = ACTIONS(2652), + [sym_primitive_type] = ACTIONS(2652), + [anon_sym_enum] = ACTIONS(2652), + [anon_sym_struct] = ACTIONS(2652), + [anon_sym_union] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_switch] = ACTIONS(2652), + [anon_sym_case] = ACTIONS(2652), + [anon_sym_default] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_do] = ACTIONS(2652), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_in] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_break] = ACTIONS(2652), + [anon_sym_continue] = ACTIONS(2652), + [anon_sym_goto] = ACTIONS(2652), + [anon_sym_DASH_DASH] = ACTIONS(2654), + [anon_sym_PLUS_PLUS] = ACTIONS(2654), + [anon_sym_sizeof] = ACTIONS(2652), + [anon_sym___alignof__] = ACTIONS(2652), + [anon_sym___alignof] = ACTIONS(2652), + [anon_sym__alignof] = ACTIONS(2652), + [anon_sym_alignof] = ACTIONS(2652), + [anon_sym__Alignof] = ACTIONS(2652), + [anon_sym_offsetof] = ACTIONS(2652), + [anon_sym__Generic] = ACTIONS(2652), + [anon_sym_asm] = ACTIONS(2652), + [anon_sym___asm__] = ACTIONS(2652), + [anon_sym___asm] = ACTIONS(2652), + [sym_number_literal] = ACTIONS(2654), + [anon_sym_L_SQUOTE] = ACTIONS(2654), + [anon_sym_u_SQUOTE] = ACTIONS(2654), + [anon_sym_U_SQUOTE] = ACTIONS(2654), + [anon_sym_u8_SQUOTE] = ACTIONS(2654), + [anon_sym_SQUOTE] = ACTIONS(2654), + [anon_sym_AT] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2654), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2652), + [sym_false] = ACTIONS(2652), + [anon_sym_NULL] = ACTIONS(2652), + [anon_sym_nullptr] = ACTIONS(2652), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2652), + [anon_sym___typeof] = ACTIONS(2652), + [anon_sym_typeof] = ACTIONS(2652), + [anon_sym_ATimport] = ACTIONS(2654), + [aux_sym_preproc_undef_token1] = ACTIONS(2652), + [anon_sym_POUND] = ACTIONS(2652), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2652), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2652), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2652), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2652), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2652), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2652), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2652), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2652), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2652), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2652), + [anon_sym_NS_AVAILABLE] = ACTIONS(2652), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2652), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2652), + [anon_sym_API_AVAILABLE] = ACTIONS(2652), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2652), + [anon_sym_API_DEPRECATED] = ACTIONS(2652), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2652), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2652), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2652), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2652), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2652), + [anon_sym___deprecated_msg] = ACTIONS(2652), + [anon_sym___deprecated_enum_msg] = ACTIONS(2652), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2652), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2652), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2652), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2652), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2652), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2652), + [anon_sym_ATprotocol] = ACTIONS(2654), + [anon_sym_ATinterface] = ACTIONS(2654), + [anon_sym_ATimplementation] = ACTIONS(2654), + [anon_sym_ATcompatibility_alias] = ACTIONS(2654), + [anon_sym_ATselector] = ACTIONS(2654), + [anon_sym_ATavailable] = ACTIONS(2654), + [anon_sym___builtin_available] = ACTIONS(2652), + [anon_sym_va_arg] = ACTIONS(2652), + [anon_sym_ATencode] = ACTIONS(2654), + [anon_sym_BOOL] = ACTIONS(2652), + [anon_sym_IMP] = ACTIONS(2652), + [anon_sym_SEL] = ACTIONS(2652), + [anon_sym_Class] = ACTIONS(2652), + [anon_sym_id] = ACTIONS(2652), + }, + [990] = { + [ts_builtin_sym_end] = ACTIONS(2940), + [sym_identifier] = ACTIONS(2942), + [aux_sym_preproc_include_token1] = ACTIONS(2942), + [aux_sym_preproc_include_token2] = ACTIONS(2942), + [aux_sym_preproc_def_token1] = ACTIONS(2942), + [aux_sym_preproc_if_token1] = ACTIONS(2942), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2942), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2942), + [sym_preproc_directive] = ACTIONS(2942), + [anon_sym_LPAREN2] = ACTIONS(2940), + [anon_sym_BANG] = ACTIONS(2940), + [anon_sym_TILDE] = ACTIONS(2940), + [anon_sym_DASH] = ACTIONS(2942), + [anon_sym_PLUS] = ACTIONS(2942), + [anon_sym_STAR] = ACTIONS(2940), + [anon_sym_CARET] = ACTIONS(2940), + [anon_sym_AMP] = ACTIONS(2940), + [anon_sym_SEMI] = ACTIONS(2940), + [anon_sym___extension__] = ACTIONS(2942), + [anon_sym_typedef] = ACTIONS(2942), + [anon_sym_extern] = ACTIONS(2942), + [anon_sym___attribute__] = ACTIONS(2942), + [anon_sym___attribute] = ACTIONS(2942), + [anon_sym_noreturn] = ACTIONS(2942), + [anon_sym_LBRACK] = ACTIONS(2940), + [anon_sym___declspec] = ACTIONS(2942), + [anon_sym___cdecl] = ACTIONS(2942), + [anon_sym___clrcall] = ACTIONS(2942), + [anon_sym___stdcall] = ACTIONS(2942), + [anon_sym___fastcall] = ACTIONS(2942), + [anon_sym___thiscall] = ACTIONS(2942), + [anon_sym___vectorcall] = ACTIONS(2942), + [anon_sym_LBRACE] = ACTIONS(2940), + [anon_sym_signed] = ACTIONS(2942), + [anon_sym_unsigned] = ACTIONS(2942), + [anon_sym_long] = ACTIONS(2942), + [anon_sym_short] = ACTIONS(2942), + [anon_sym_static] = ACTIONS(2942), + [anon_sym_ATautoreleasepool] = ACTIONS(2940), + [anon_sym_auto] = ACTIONS(2942), + [anon_sym_register] = ACTIONS(2942), + [anon_sym_inline] = ACTIONS(2942), + [anon_sym___inline] = ACTIONS(2942), + [anon_sym___inline__] = ACTIONS(2942), + [anon_sym___forceinline] = ACTIONS(2942), + [anon_sym_thread_local] = ACTIONS(2942), + [anon_sym___thread] = ACTIONS(2942), + [anon_sym_CG_EXTERN] = ACTIONS(2942), + [anon_sym_CG_INLINE] = ACTIONS(2942), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2942), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2942), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2942), + [anon_sym_IBOutlet] = ACTIONS(2942), + [anon_sym_IBInspectable] = ACTIONS(2942), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2942), + [anon_sym_NS_INLINE] = ACTIONS(2942), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2942), + [anon_sym_OBJC_EXPORT] = ACTIONS(2942), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2942), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2942), + [anon_sym_const] = ACTIONS(2942), + [anon_sym_constexpr] = ACTIONS(2942), + [anon_sym_volatile] = ACTIONS(2942), + [anon_sym_restrict] = ACTIONS(2942), + [anon_sym___restrict__] = ACTIONS(2942), + [anon_sym__Atomic] = ACTIONS(2942), + [anon_sym__Noreturn] = ACTIONS(2942), + [anon_sym__Nonnull] = ACTIONS(2942), + [anon_sym_nullable] = ACTIONS(2942), + [anon_sym__Complex] = ACTIONS(2942), + [anon_sym__Nullable] = ACTIONS(2942), + [anon_sym__Nullable_result] = ACTIONS(2942), + [anon_sym__Null_unspecified] = ACTIONS(2942), + [anon_sym___autoreleasing] = ACTIONS(2942), + [anon_sym___block] = ACTIONS(2942), + [anon_sym___bridge] = ACTIONS(2942), + [anon_sym___bridge_retained] = ACTIONS(2942), + [anon_sym___bridge_transfer] = ACTIONS(2942), + [anon_sym___complex] = ACTIONS(2942), + [anon_sym___const] = ACTIONS(2942), + [anon_sym___imag] = ACTIONS(2942), + [anon_sym___kindof] = ACTIONS(2942), + [anon_sym___nonnull] = ACTIONS(2942), + [anon_sym___nullable] = ACTIONS(2942), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2942), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2942), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2942), + [anon_sym___real] = ACTIONS(2942), + [anon_sym___strong] = ACTIONS(2942), + [anon_sym___unsafe_unretained] = ACTIONS(2942), + [anon_sym___unused] = ACTIONS(2942), + [anon_sym___weak] = ACTIONS(2942), + [anon_sym_alignas] = ACTIONS(2942), + [anon_sym__Alignas] = ACTIONS(2942), + [sym_primitive_type] = ACTIONS(2942), + [anon_sym_enum] = ACTIONS(2942), + [anon_sym_struct] = ACTIONS(2942), + [anon_sym_union] = ACTIONS(2942), + [anon_sym_if] = ACTIONS(2942), + [anon_sym_switch] = ACTIONS(2942), + [anon_sym_case] = ACTIONS(2942), + [anon_sym_default] = ACTIONS(2942), + [anon_sym_while] = ACTIONS(2942), + [anon_sym_do] = ACTIONS(2942), + [anon_sym_for] = ACTIONS(2942), + [anon_sym_in] = ACTIONS(2942), + [anon_sym_return] = ACTIONS(2942), + [anon_sym_break] = ACTIONS(2942), + [anon_sym_continue] = ACTIONS(2942), + [anon_sym_goto] = ACTIONS(2942), + [anon_sym_DASH_DASH] = ACTIONS(2940), + [anon_sym_PLUS_PLUS] = ACTIONS(2940), + [anon_sym_sizeof] = ACTIONS(2942), + [anon_sym___alignof__] = ACTIONS(2942), + [anon_sym___alignof] = ACTIONS(2942), + [anon_sym__alignof] = ACTIONS(2942), + [anon_sym_alignof] = ACTIONS(2942), + [anon_sym__Alignof] = ACTIONS(2942), + [anon_sym_offsetof] = ACTIONS(2942), + [anon_sym__Generic] = ACTIONS(2942), + [anon_sym_asm] = ACTIONS(2942), + [anon_sym___asm__] = ACTIONS(2942), + [anon_sym___asm] = ACTIONS(2942), + [sym_number_literal] = ACTIONS(2940), + [anon_sym_L_SQUOTE] = ACTIONS(2940), + [anon_sym_u_SQUOTE] = ACTIONS(2940), + [anon_sym_U_SQUOTE] = ACTIONS(2940), + [anon_sym_u8_SQUOTE] = ACTIONS(2940), + [anon_sym_SQUOTE] = ACTIONS(2940), + [anon_sym_AT] = ACTIONS(2942), + [anon_sym_DQUOTE] = ACTIONS(2940), + [anon_sym_L_DQUOTE] = ACTIONS(2940), + [anon_sym_u_DQUOTE] = ACTIONS(2940), + [anon_sym_U_DQUOTE] = ACTIONS(2940), + [anon_sym_u8_DQUOTE] = ACTIONS(2940), + [sym_true] = ACTIONS(2942), + [sym_false] = ACTIONS(2942), + [anon_sym_NULL] = ACTIONS(2942), + [anon_sym_nullptr] = ACTIONS(2942), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2942), + [anon_sym___typeof] = ACTIONS(2942), + [anon_sym_typeof] = ACTIONS(2942), + [anon_sym_ATimport] = ACTIONS(2940), + [aux_sym_preproc_undef_token1] = ACTIONS(2942), + [anon_sym_POUND] = ACTIONS(2942), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2942), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2942), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2942), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2942), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2942), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2942), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2942), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2942), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2942), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2942), + [anon_sym_NS_AVAILABLE] = ACTIONS(2942), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2942), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2942), + [anon_sym_API_AVAILABLE] = ACTIONS(2942), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2942), + [anon_sym_API_DEPRECATED] = ACTIONS(2942), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2942), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2942), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2942), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2942), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2942), + [anon_sym___deprecated_msg] = ACTIONS(2942), + [anon_sym___deprecated_enum_msg] = ACTIONS(2942), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2942), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2942), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2942), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2942), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2942), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2942), + [anon_sym_ATprotocol] = ACTIONS(2940), + [anon_sym_ATinterface] = ACTIONS(2940), + [anon_sym_ATimplementation] = ACTIONS(2940), + [anon_sym_ATcompatibility_alias] = ACTIONS(2940), + [anon_sym_ATselector] = ACTIONS(2940), + [anon_sym_ATavailable] = ACTIONS(2940), + [anon_sym___builtin_available] = ACTIONS(2942), + [anon_sym_va_arg] = ACTIONS(2942), + [anon_sym_ATencode] = ACTIONS(2940), + [anon_sym_BOOL] = ACTIONS(2942), + [anon_sym_IMP] = ACTIONS(2942), + [anon_sym_SEL] = ACTIONS(2942), + [anon_sym_Class] = ACTIONS(2942), + [anon_sym_id] = ACTIONS(2942), + }, + [991] = { + [ts_builtin_sym_end] = ACTIONS(2754), + [sym_identifier] = ACTIONS(2752), + [aux_sym_preproc_include_token1] = ACTIONS(2752), + [aux_sym_preproc_include_token2] = ACTIONS(2752), + [aux_sym_preproc_def_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token1] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2752), + [sym_preproc_directive] = ACTIONS(2752), + [anon_sym_LPAREN2] = ACTIONS(2754), + [anon_sym_BANG] = ACTIONS(2754), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_STAR] = ACTIONS(2754), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2754), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym___extension__] = ACTIONS(2752), + [anon_sym_typedef] = ACTIONS(2752), + [anon_sym_extern] = ACTIONS(2752), + [anon_sym___attribute__] = ACTIONS(2752), + [anon_sym___attribute] = ACTIONS(2752), + [anon_sym_noreturn] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym___declspec] = ACTIONS(2752), + [anon_sym___cdecl] = ACTIONS(2752), + [anon_sym___clrcall] = ACTIONS(2752), + [anon_sym___stdcall] = ACTIONS(2752), + [anon_sym___fastcall] = ACTIONS(2752), + [anon_sym___thiscall] = ACTIONS(2752), + [anon_sym___vectorcall] = ACTIONS(2752), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_signed] = ACTIONS(2752), + [anon_sym_unsigned] = ACTIONS(2752), + [anon_sym_long] = ACTIONS(2752), + [anon_sym_short] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_ATautoreleasepool] = ACTIONS(2754), + [anon_sym_auto] = ACTIONS(2752), + [anon_sym_register] = ACTIONS(2752), + [anon_sym_inline] = ACTIONS(2752), + [anon_sym___inline] = ACTIONS(2752), + [anon_sym___inline__] = ACTIONS(2752), + [anon_sym___forceinline] = ACTIONS(2752), + [anon_sym_thread_local] = ACTIONS(2752), + [anon_sym___thread] = ACTIONS(2752), + [anon_sym_CG_EXTERN] = ACTIONS(2752), + [anon_sym_CG_INLINE] = ACTIONS(2752), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2752), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2752), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2752), + [anon_sym_IBOutlet] = ACTIONS(2752), + [anon_sym_IBInspectable] = ACTIONS(2752), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2752), + [anon_sym_NS_INLINE] = ACTIONS(2752), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2752), + [anon_sym_OBJC_EXPORT] = ACTIONS(2752), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2752), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2752), + [anon_sym_const] = ACTIONS(2752), + [anon_sym_constexpr] = ACTIONS(2752), + [anon_sym_volatile] = ACTIONS(2752), + [anon_sym_restrict] = ACTIONS(2752), + [anon_sym___restrict__] = ACTIONS(2752), + [anon_sym__Atomic] = ACTIONS(2752), + [anon_sym__Noreturn] = ACTIONS(2752), + [anon_sym__Nonnull] = ACTIONS(2752), + [anon_sym_nullable] = ACTIONS(2752), + [anon_sym__Complex] = ACTIONS(2752), + [anon_sym__Nullable] = ACTIONS(2752), + [anon_sym__Nullable_result] = ACTIONS(2752), + [anon_sym__Null_unspecified] = ACTIONS(2752), + [anon_sym___autoreleasing] = ACTIONS(2752), + [anon_sym___block] = ACTIONS(2752), + [anon_sym___bridge] = ACTIONS(2752), + [anon_sym___bridge_retained] = ACTIONS(2752), + [anon_sym___bridge_transfer] = ACTIONS(2752), + [anon_sym___complex] = ACTIONS(2752), + [anon_sym___const] = ACTIONS(2752), + [anon_sym___imag] = ACTIONS(2752), + [anon_sym___kindof] = ACTIONS(2752), + [anon_sym___nonnull] = ACTIONS(2752), + [anon_sym___nullable] = ACTIONS(2752), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2752), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2752), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2752), + [anon_sym___real] = ACTIONS(2752), + [anon_sym___strong] = ACTIONS(2752), + [anon_sym___unsafe_unretained] = ACTIONS(2752), + [anon_sym___unused] = ACTIONS(2752), + [anon_sym___weak] = ACTIONS(2752), + [anon_sym_alignas] = ACTIONS(2752), + [anon_sym__Alignas] = ACTIONS(2752), + [sym_primitive_type] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2752), + [anon_sym_union] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2752), + [anon_sym_case] = ACTIONS(2752), + [anon_sym_default] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_in] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_break] = ACTIONS(2752), + [anon_sym_continue] = ACTIONS(2752), + [anon_sym_goto] = ACTIONS(2752), + [anon_sym_DASH_DASH] = ACTIONS(2754), + [anon_sym_PLUS_PLUS] = ACTIONS(2754), + [anon_sym_sizeof] = ACTIONS(2752), + [anon_sym___alignof__] = ACTIONS(2752), + [anon_sym___alignof] = ACTIONS(2752), + [anon_sym__alignof] = ACTIONS(2752), + [anon_sym_alignof] = ACTIONS(2752), + [anon_sym__Alignof] = ACTIONS(2752), + [anon_sym_offsetof] = ACTIONS(2752), + [anon_sym__Generic] = ACTIONS(2752), + [anon_sym_asm] = ACTIONS(2752), + [anon_sym___asm__] = ACTIONS(2752), + [anon_sym___asm] = ACTIONS(2752), + [sym_number_literal] = ACTIONS(2754), + [anon_sym_L_SQUOTE] = ACTIONS(2754), + [anon_sym_u_SQUOTE] = ACTIONS(2754), + [anon_sym_U_SQUOTE] = ACTIONS(2754), + [anon_sym_u8_SQUOTE] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2754), + [anon_sym_AT] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2754), + [anon_sym_L_DQUOTE] = ACTIONS(2754), + [anon_sym_u_DQUOTE] = ACTIONS(2754), + [anon_sym_U_DQUOTE] = ACTIONS(2754), + [anon_sym_u8_DQUOTE] = ACTIONS(2754), + [sym_true] = ACTIONS(2752), + [sym_false] = ACTIONS(2752), + [anon_sym_NULL] = ACTIONS(2752), + [anon_sym_nullptr] = ACTIONS(2752), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2752), + [anon_sym___typeof] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(2752), + [anon_sym_ATimport] = ACTIONS(2754), + [aux_sym_preproc_undef_token1] = ACTIONS(2752), + [anon_sym_POUND] = ACTIONS(2752), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2752), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2752), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2752), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2752), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2752), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2752), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2752), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2752), + [anon_sym_NS_AVAILABLE] = ACTIONS(2752), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2752), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_API_AVAILABLE] = ACTIONS(2752), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_API_DEPRECATED] = ACTIONS(2752), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2752), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2752), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2752), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2752), + [anon_sym___deprecated_msg] = ACTIONS(2752), + [anon_sym___deprecated_enum_msg] = ACTIONS(2752), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2752), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2752), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2752), + [anon_sym_ATprotocol] = ACTIONS(2754), + [anon_sym_ATinterface] = ACTIONS(2754), + [anon_sym_ATimplementation] = ACTIONS(2754), + [anon_sym_ATcompatibility_alias] = ACTIONS(2754), + [anon_sym_ATselector] = ACTIONS(2754), + [anon_sym_ATavailable] = ACTIONS(2754), + [anon_sym___builtin_available] = ACTIONS(2752), + [anon_sym_va_arg] = ACTIONS(2752), + [anon_sym_ATencode] = ACTIONS(2754), + [anon_sym_BOOL] = ACTIONS(2752), + [anon_sym_IMP] = ACTIONS(2752), + [anon_sym_SEL] = ACTIONS(2752), + [anon_sym_Class] = ACTIONS(2752), + [anon_sym_id] = ACTIONS(2752), + }, + [992] = { + [ts_builtin_sym_end] = ACTIONS(2746), + [sym_identifier] = ACTIONS(2744), + [aux_sym_preproc_include_token1] = ACTIONS(2744), + [aux_sym_preproc_include_token2] = ACTIONS(2744), + [aux_sym_preproc_def_token1] = ACTIONS(2744), + [aux_sym_preproc_if_token1] = ACTIONS(2744), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2744), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2744), + [sym_preproc_directive] = ACTIONS(2744), + [anon_sym_LPAREN2] = ACTIONS(2746), + [anon_sym_BANG] = ACTIONS(2746), + [anon_sym_TILDE] = ACTIONS(2746), + [anon_sym_DASH] = ACTIONS(2744), + [anon_sym_PLUS] = ACTIONS(2744), + [anon_sym_STAR] = ACTIONS(2746), + [anon_sym_CARET] = ACTIONS(2746), + [anon_sym_AMP] = ACTIONS(2746), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym___extension__] = ACTIONS(2744), + [anon_sym_typedef] = ACTIONS(2744), + [anon_sym_extern] = ACTIONS(2744), + [anon_sym___attribute__] = ACTIONS(2744), + [anon_sym___attribute] = ACTIONS(2744), + [anon_sym_noreturn] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym___declspec] = ACTIONS(2744), + [anon_sym___cdecl] = ACTIONS(2744), + [anon_sym___clrcall] = ACTIONS(2744), + [anon_sym___stdcall] = ACTIONS(2744), + [anon_sym___fastcall] = ACTIONS(2744), + [anon_sym___thiscall] = ACTIONS(2744), + [anon_sym___vectorcall] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_signed] = ACTIONS(2744), + [anon_sym_unsigned] = ACTIONS(2744), + [anon_sym_long] = ACTIONS(2744), + [anon_sym_short] = ACTIONS(2744), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_ATautoreleasepool] = ACTIONS(2746), + [anon_sym_auto] = ACTIONS(2744), + [anon_sym_register] = ACTIONS(2744), + [anon_sym_inline] = ACTIONS(2744), + [anon_sym___inline] = ACTIONS(2744), + [anon_sym___inline__] = ACTIONS(2744), + [anon_sym___forceinline] = ACTIONS(2744), + [anon_sym_thread_local] = ACTIONS(2744), + [anon_sym___thread] = ACTIONS(2744), + [anon_sym_CG_EXTERN] = ACTIONS(2744), + [anon_sym_CG_INLINE] = ACTIONS(2744), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2744), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2744), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2744), + [anon_sym_IBOutlet] = ACTIONS(2744), + [anon_sym_IBInspectable] = ACTIONS(2744), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2744), + [anon_sym_NS_INLINE] = ACTIONS(2744), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2744), + [anon_sym_OBJC_EXPORT] = ACTIONS(2744), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2744), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2744), + [anon_sym_const] = ACTIONS(2744), + [anon_sym_constexpr] = ACTIONS(2744), + [anon_sym_volatile] = ACTIONS(2744), + [anon_sym_restrict] = ACTIONS(2744), + [anon_sym___restrict__] = ACTIONS(2744), + [anon_sym__Atomic] = ACTIONS(2744), + [anon_sym__Noreturn] = ACTIONS(2744), + [anon_sym__Nonnull] = ACTIONS(2744), + [anon_sym_nullable] = ACTIONS(2744), + [anon_sym__Complex] = ACTIONS(2744), + [anon_sym__Nullable] = ACTIONS(2744), + [anon_sym__Nullable_result] = ACTIONS(2744), + [anon_sym__Null_unspecified] = ACTIONS(2744), + [anon_sym___autoreleasing] = ACTIONS(2744), + [anon_sym___block] = ACTIONS(2744), + [anon_sym___bridge] = ACTIONS(2744), + [anon_sym___bridge_retained] = ACTIONS(2744), + [anon_sym___bridge_transfer] = ACTIONS(2744), + [anon_sym___complex] = ACTIONS(2744), + [anon_sym___const] = ACTIONS(2744), + [anon_sym___imag] = ACTIONS(2744), + [anon_sym___kindof] = ACTIONS(2744), + [anon_sym___nonnull] = ACTIONS(2744), + [anon_sym___nullable] = ACTIONS(2744), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2744), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2744), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2744), + [anon_sym___real] = ACTIONS(2744), + [anon_sym___strong] = ACTIONS(2744), + [anon_sym___unsafe_unretained] = ACTIONS(2744), + [anon_sym___unused] = ACTIONS(2744), + [anon_sym___weak] = ACTIONS(2744), + [anon_sym_alignas] = ACTIONS(2744), + [anon_sym__Alignas] = ACTIONS(2744), + [sym_primitive_type] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), + [anon_sym_struct] = ACTIONS(2744), + [anon_sym_union] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_switch] = ACTIONS(2744), + [anon_sym_case] = ACTIONS(2744), + [anon_sym_default] = ACTIONS(2744), + [anon_sym_while] = ACTIONS(2744), + [anon_sym_do] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2744), + [anon_sym_return] = ACTIONS(2744), + [anon_sym_break] = ACTIONS(2744), + [anon_sym_continue] = ACTIONS(2744), + [anon_sym_goto] = ACTIONS(2744), + [anon_sym_DASH_DASH] = ACTIONS(2746), + [anon_sym_PLUS_PLUS] = ACTIONS(2746), + [anon_sym_sizeof] = ACTIONS(2744), + [anon_sym___alignof__] = ACTIONS(2744), + [anon_sym___alignof] = ACTIONS(2744), + [anon_sym__alignof] = ACTIONS(2744), + [anon_sym_alignof] = ACTIONS(2744), + [anon_sym__Alignof] = ACTIONS(2744), + [anon_sym_offsetof] = ACTIONS(2744), + [anon_sym__Generic] = ACTIONS(2744), + [anon_sym_asm] = ACTIONS(2744), + [anon_sym___asm__] = ACTIONS(2744), + [anon_sym___asm] = ACTIONS(2744), + [sym_number_literal] = ACTIONS(2746), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_AT] = ACTIONS(2744), + [anon_sym_DQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2746), + [anon_sym_u_DQUOTE] = ACTIONS(2746), + [anon_sym_U_DQUOTE] = ACTIONS(2746), + [anon_sym_u8_DQUOTE] = ACTIONS(2746), + [sym_true] = ACTIONS(2744), + [sym_false] = ACTIONS(2744), + [anon_sym_NULL] = ACTIONS(2744), + [anon_sym_nullptr] = ACTIONS(2744), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2744), + [anon_sym___typeof] = ACTIONS(2744), + [anon_sym_typeof] = ACTIONS(2744), + [anon_sym_ATimport] = ACTIONS(2746), + [aux_sym_preproc_undef_token1] = ACTIONS(2744), + [anon_sym_POUND] = ACTIONS(2744), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2744), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2744), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2744), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2744), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2744), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2744), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2744), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2744), + [anon_sym_NS_AVAILABLE] = ACTIONS(2744), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2744), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_API_AVAILABLE] = ACTIONS(2744), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_API_DEPRECATED] = ACTIONS(2744), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2744), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2744), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2744), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2744), + [anon_sym___deprecated_msg] = ACTIONS(2744), + [anon_sym___deprecated_enum_msg] = ACTIONS(2744), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2744), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2744), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2744), + [anon_sym_ATprotocol] = ACTIONS(2746), + [anon_sym_ATinterface] = ACTIONS(2746), + [anon_sym_ATimplementation] = ACTIONS(2746), + [anon_sym_ATcompatibility_alias] = ACTIONS(2746), + [anon_sym_ATselector] = ACTIONS(2746), + [anon_sym_ATavailable] = ACTIONS(2746), + [anon_sym___builtin_available] = ACTIONS(2744), + [anon_sym_va_arg] = ACTIONS(2744), + [anon_sym_ATencode] = ACTIONS(2746), + [anon_sym_BOOL] = ACTIONS(2744), + [anon_sym_IMP] = ACTIONS(2744), + [anon_sym_SEL] = ACTIONS(2744), + [anon_sym_Class] = ACTIONS(2744), + [anon_sym_id] = ACTIONS(2744), + }, + [993] = { + [ts_builtin_sym_end] = ACTIONS(2600), + [sym_identifier] = ACTIONS(2598), + [aux_sym_preproc_include_token1] = ACTIONS(2598), + [aux_sym_preproc_include_token2] = ACTIONS(2598), + [aux_sym_preproc_def_token1] = ACTIONS(2598), + [aux_sym_preproc_if_token1] = ACTIONS(2598), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2598), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2598), + [sym_preproc_directive] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(2600), + [anon_sym_BANG] = ACTIONS(2600), + [anon_sym_TILDE] = ACTIONS(2600), + [anon_sym_DASH] = ACTIONS(2598), + [anon_sym_PLUS] = ACTIONS(2598), + [anon_sym_STAR] = ACTIONS(2600), + [anon_sym_CARET] = ACTIONS(2600), + [anon_sym_AMP] = ACTIONS(2600), + [anon_sym_SEMI] = ACTIONS(2600), + [anon_sym___extension__] = ACTIONS(2598), + [anon_sym_typedef] = ACTIONS(2598), + [anon_sym_extern] = ACTIONS(2598), + [anon_sym___attribute__] = ACTIONS(2598), + [anon_sym___attribute] = ACTIONS(2598), + [anon_sym_noreturn] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(2600), + [anon_sym___declspec] = ACTIONS(2598), + [anon_sym___cdecl] = ACTIONS(2598), + [anon_sym___clrcall] = ACTIONS(2598), + [anon_sym___stdcall] = ACTIONS(2598), + [anon_sym___fastcall] = ACTIONS(2598), + [anon_sym___thiscall] = ACTIONS(2598), + [anon_sym___vectorcall] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_signed] = ACTIONS(2598), + [anon_sym_unsigned] = ACTIONS(2598), + [anon_sym_long] = ACTIONS(2598), + [anon_sym_short] = ACTIONS(2598), + [anon_sym_static] = ACTIONS(2598), + [anon_sym_ATautoreleasepool] = ACTIONS(2600), + [anon_sym_auto] = ACTIONS(2598), + [anon_sym_register] = ACTIONS(2598), + [anon_sym_inline] = ACTIONS(2598), + [anon_sym___inline] = ACTIONS(2598), + [anon_sym___inline__] = ACTIONS(2598), + [anon_sym___forceinline] = ACTIONS(2598), + [anon_sym_thread_local] = ACTIONS(2598), + [anon_sym___thread] = ACTIONS(2598), + [anon_sym_CG_EXTERN] = ACTIONS(2598), + [anon_sym_CG_INLINE] = ACTIONS(2598), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2598), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2598), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2598), + [anon_sym_IBOutlet] = ACTIONS(2598), + [anon_sym_IBInspectable] = ACTIONS(2598), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2598), + [anon_sym_NS_INLINE] = ACTIONS(2598), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2598), + [anon_sym_OBJC_EXPORT] = ACTIONS(2598), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2598), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2598), + [anon_sym_const] = ACTIONS(2598), + [anon_sym_constexpr] = ACTIONS(2598), + [anon_sym_volatile] = ACTIONS(2598), + [anon_sym_restrict] = ACTIONS(2598), + [anon_sym___restrict__] = ACTIONS(2598), + [anon_sym__Atomic] = ACTIONS(2598), + [anon_sym__Noreturn] = ACTIONS(2598), + [anon_sym__Nonnull] = ACTIONS(2598), + [anon_sym_nullable] = ACTIONS(2598), + [anon_sym__Complex] = ACTIONS(2598), + [anon_sym__Nullable] = ACTIONS(2598), + [anon_sym__Nullable_result] = ACTIONS(2598), + [anon_sym__Null_unspecified] = ACTIONS(2598), + [anon_sym___autoreleasing] = ACTIONS(2598), + [anon_sym___block] = ACTIONS(2598), + [anon_sym___bridge] = ACTIONS(2598), + [anon_sym___bridge_retained] = ACTIONS(2598), + [anon_sym___bridge_transfer] = ACTIONS(2598), + [anon_sym___complex] = ACTIONS(2598), + [anon_sym___const] = ACTIONS(2598), + [anon_sym___imag] = ACTIONS(2598), + [anon_sym___kindof] = ACTIONS(2598), + [anon_sym___nonnull] = ACTIONS(2598), + [anon_sym___nullable] = ACTIONS(2598), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2598), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2598), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2598), + [anon_sym___real] = ACTIONS(2598), + [anon_sym___strong] = ACTIONS(2598), + [anon_sym___unsafe_unretained] = ACTIONS(2598), + [anon_sym___unused] = ACTIONS(2598), + [anon_sym___weak] = ACTIONS(2598), + [anon_sym_alignas] = ACTIONS(2598), + [anon_sym__Alignas] = ACTIONS(2598), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_enum] = ACTIONS(2598), + [anon_sym_struct] = ACTIONS(2598), + [anon_sym_union] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2598), + [anon_sym_switch] = ACTIONS(2598), + [anon_sym_case] = ACTIONS(2598), + [anon_sym_default] = ACTIONS(2598), + [anon_sym_while] = ACTIONS(2598), + [anon_sym_do] = ACTIONS(2598), + [anon_sym_for] = ACTIONS(2598), + [anon_sym_in] = ACTIONS(2598), + [anon_sym_return] = ACTIONS(2598), + [anon_sym_break] = ACTIONS(2598), + [anon_sym_continue] = ACTIONS(2598), + [anon_sym_goto] = ACTIONS(2598), + [anon_sym_DASH_DASH] = ACTIONS(2600), + [anon_sym_PLUS_PLUS] = ACTIONS(2600), + [anon_sym_sizeof] = ACTIONS(2598), + [anon_sym___alignof__] = ACTIONS(2598), + [anon_sym___alignof] = ACTIONS(2598), + [anon_sym__alignof] = ACTIONS(2598), + [anon_sym_alignof] = ACTIONS(2598), + [anon_sym__Alignof] = ACTIONS(2598), + [anon_sym_offsetof] = ACTIONS(2598), + [anon_sym__Generic] = ACTIONS(2598), + [anon_sym_asm] = ACTIONS(2598), + [anon_sym___asm__] = ACTIONS(2598), + [anon_sym___asm] = ACTIONS(2598), + [sym_number_literal] = ACTIONS(2600), + [anon_sym_L_SQUOTE] = ACTIONS(2600), + [anon_sym_u_SQUOTE] = ACTIONS(2600), + [anon_sym_U_SQUOTE] = ACTIONS(2600), + [anon_sym_u8_SQUOTE] = ACTIONS(2600), + [anon_sym_SQUOTE] = ACTIONS(2600), + [anon_sym_AT] = ACTIONS(2598), + [anon_sym_DQUOTE] = ACTIONS(2600), + [anon_sym_L_DQUOTE] = ACTIONS(2600), + [anon_sym_u_DQUOTE] = ACTIONS(2600), + [anon_sym_U_DQUOTE] = ACTIONS(2600), + [anon_sym_u8_DQUOTE] = ACTIONS(2600), + [sym_true] = ACTIONS(2598), + [sym_false] = ACTIONS(2598), + [anon_sym_NULL] = ACTIONS(2598), + [anon_sym_nullptr] = ACTIONS(2598), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2598), + [anon_sym___typeof] = ACTIONS(2598), + [anon_sym_typeof] = ACTIONS(2598), + [anon_sym_ATimport] = ACTIONS(2600), + [aux_sym_preproc_undef_token1] = ACTIONS(2598), + [anon_sym_POUND] = ACTIONS(2598), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2598), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2598), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2598), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2598), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2598), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2598), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2598), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2598), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2598), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2598), + [anon_sym_NS_AVAILABLE] = ACTIONS(2598), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2598), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2598), + [anon_sym_API_AVAILABLE] = ACTIONS(2598), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2598), + [anon_sym_API_DEPRECATED] = ACTIONS(2598), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2598), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2598), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2598), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2598), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2598), + [anon_sym___deprecated_msg] = ACTIONS(2598), + [anon_sym___deprecated_enum_msg] = ACTIONS(2598), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2598), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2598), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2598), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2598), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2598), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2598), + [anon_sym_ATprotocol] = ACTIONS(2600), + [anon_sym_ATinterface] = ACTIONS(2600), + [anon_sym_ATimplementation] = ACTIONS(2600), + [anon_sym_ATcompatibility_alias] = ACTIONS(2600), + [anon_sym_ATselector] = ACTIONS(2600), + [anon_sym_ATavailable] = ACTIONS(2600), + [anon_sym___builtin_available] = ACTIONS(2598), + [anon_sym_va_arg] = ACTIONS(2598), + [anon_sym_ATencode] = ACTIONS(2600), + [anon_sym_BOOL] = ACTIONS(2598), + [anon_sym_IMP] = ACTIONS(2598), + [anon_sym_SEL] = ACTIONS(2598), + [anon_sym_Class] = ACTIONS(2598), + [anon_sym_id] = ACTIONS(2598), + }, + [994] = { + [ts_builtin_sym_end] = ACTIONS(2414), + [sym_identifier] = ACTIONS(2412), + [aux_sym_preproc_include_token1] = ACTIONS(2412), + [aux_sym_preproc_include_token2] = ACTIONS(2412), + [aux_sym_preproc_def_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2412), + [sym_preproc_directive] = ACTIONS(2412), + [anon_sym_LPAREN2] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2414), + [anon_sym_TILDE] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_STAR] = ACTIONS(2414), + [anon_sym_CARET] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym___extension__] = ACTIONS(2412), + [anon_sym_typedef] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym___attribute__] = ACTIONS(2412), + [anon_sym___attribute] = ACTIONS(2412), + [anon_sym_noreturn] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym___declspec] = ACTIONS(2412), + [anon_sym___cdecl] = ACTIONS(2412), + [anon_sym___clrcall] = ACTIONS(2412), + [anon_sym___stdcall] = ACTIONS(2412), + [anon_sym___fastcall] = ACTIONS(2412), + [anon_sym___thiscall] = ACTIONS(2412), + [anon_sym___vectorcall] = ACTIONS(2412), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_signed] = ACTIONS(2412), + [anon_sym_unsigned] = ACTIONS(2412), + [anon_sym_long] = ACTIONS(2412), + [anon_sym_short] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_ATautoreleasepool] = ACTIONS(2414), + [anon_sym_auto] = ACTIONS(2412), + [anon_sym_register] = ACTIONS(2412), + [anon_sym_inline] = ACTIONS(2412), + [anon_sym___inline] = ACTIONS(2412), + [anon_sym___inline__] = ACTIONS(2412), + [anon_sym___forceinline] = ACTIONS(2412), + [anon_sym_thread_local] = ACTIONS(2412), + [anon_sym___thread] = ACTIONS(2412), + [anon_sym_CG_EXTERN] = ACTIONS(2412), + [anon_sym_CG_INLINE] = ACTIONS(2412), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2412), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2412), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2412), + [anon_sym_IBOutlet] = ACTIONS(2412), + [anon_sym_IBInspectable] = ACTIONS(2412), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2412), + [anon_sym_NS_INLINE] = ACTIONS(2412), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2412), + [anon_sym_OBJC_EXPORT] = ACTIONS(2412), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2412), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_constexpr] = ACTIONS(2412), + [anon_sym_volatile] = ACTIONS(2412), + [anon_sym_restrict] = ACTIONS(2412), + [anon_sym___restrict__] = ACTIONS(2412), + [anon_sym__Atomic] = ACTIONS(2412), + [anon_sym__Noreturn] = ACTIONS(2412), + [anon_sym__Nonnull] = ACTIONS(2412), + [anon_sym_nullable] = ACTIONS(2412), + [anon_sym__Complex] = ACTIONS(2412), + [anon_sym__Nullable] = ACTIONS(2412), + [anon_sym__Nullable_result] = ACTIONS(2412), + [anon_sym__Null_unspecified] = ACTIONS(2412), + [anon_sym___autoreleasing] = ACTIONS(2412), + [anon_sym___block] = ACTIONS(2412), + [anon_sym___bridge] = ACTIONS(2412), + [anon_sym___bridge_retained] = ACTIONS(2412), + [anon_sym___bridge_transfer] = ACTIONS(2412), + [anon_sym___complex] = ACTIONS(2412), + [anon_sym___const] = ACTIONS(2412), + [anon_sym___imag] = ACTIONS(2412), + [anon_sym___kindof] = ACTIONS(2412), + [anon_sym___nonnull] = ACTIONS(2412), + [anon_sym___nullable] = ACTIONS(2412), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2412), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2412), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2412), + [anon_sym___real] = ACTIONS(2412), + [anon_sym___strong] = ACTIONS(2412), + [anon_sym___unsafe_unretained] = ACTIONS(2412), + [anon_sym___unused] = ACTIONS(2412), + [anon_sym___weak] = ACTIONS(2412), + [anon_sym_alignas] = ACTIONS(2412), + [anon_sym__Alignas] = ACTIONS(2412), + [sym_primitive_type] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [anon_sym_struct] = ACTIONS(2412), + [anon_sym_union] = ACTIONS(2412), + [anon_sym_if] = ACTIONS(2412), + [anon_sym_switch] = ACTIONS(2412), + [anon_sym_case] = ACTIONS(2412), + [anon_sym_default] = ACTIONS(2412), + [anon_sym_while] = ACTIONS(2412), + [anon_sym_do] = ACTIONS(2412), + [anon_sym_for] = ACTIONS(2412), + [anon_sym_in] = ACTIONS(2412), + [anon_sym_return] = ACTIONS(2412), + [anon_sym_break] = ACTIONS(2412), + [anon_sym_continue] = ACTIONS(2412), + [anon_sym_goto] = ACTIONS(2412), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_sizeof] = ACTIONS(2412), + [anon_sym___alignof__] = ACTIONS(2412), + [anon_sym___alignof] = ACTIONS(2412), + [anon_sym__alignof] = ACTIONS(2412), + [anon_sym_alignof] = ACTIONS(2412), + [anon_sym__Alignof] = ACTIONS(2412), + [anon_sym_offsetof] = ACTIONS(2412), + [anon_sym__Generic] = ACTIONS(2412), + [anon_sym_asm] = ACTIONS(2412), + [anon_sym___asm__] = ACTIONS(2412), + [anon_sym___asm] = ACTIONS(2412), + [sym_number_literal] = ACTIONS(2414), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_AT] = ACTIONS(2412), + [anon_sym_DQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2412), + [sym_false] = ACTIONS(2412), + [anon_sym_NULL] = ACTIONS(2412), + [anon_sym_nullptr] = ACTIONS(2412), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2412), + [anon_sym___typeof] = ACTIONS(2412), + [anon_sym_typeof] = ACTIONS(2412), + [anon_sym_ATimport] = ACTIONS(2414), + [aux_sym_preproc_undef_token1] = ACTIONS(2412), + [anon_sym_POUND] = ACTIONS(2412), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2412), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2412), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2412), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2412), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2412), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2412), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2412), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2412), + [anon_sym_NS_AVAILABLE] = ACTIONS(2412), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2412), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_API_AVAILABLE] = ACTIONS(2412), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_API_DEPRECATED] = ACTIONS(2412), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2412), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2412), + [anon_sym___deprecated_msg] = ACTIONS(2412), + [anon_sym___deprecated_enum_msg] = ACTIONS(2412), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2412), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2412), + [anon_sym_ATprotocol] = ACTIONS(2414), + [anon_sym_ATinterface] = ACTIONS(2414), + [anon_sym_ATimplementation] = ACTIONS(2414), + [anon_sym_ATcompatibility_alias] = ACTIONS(2414), + [anon_sym_ATselector] = ACTIONS(2414), + [anon_sym_ATavailable] = ACTIONS(2414), + [anon_sym___builtin_available] = ACTIONS(2412), + [anon_sym_va_arg] = ACTIONS(2412), + [anon_sym_ATencode] = ACTIONS(2414), + [anon_sym_BOOL] = ACTIONS(2412), + [anon_sym_IMP] = ACTIONS(2412), + [anon_sym_SEL] = ACTIONS(2412), + [anon_sym_Class] = ACTIONS(2412), + [anon_sym_id] = ACTIONS(2412), + }, + [995] = { + [ts_builtin_sym_end] = ACTIONS(2658), + [sym_identifier] = ACTIONS(2656), + [aux_sym_preproc_include_token1] = ACTIONS(2656), + [aux_sym_preproc_include_token2] = ACTIONS(2656), + [aux_sym_preproc_def_token1] = ACTIONS(2656), + [aux_sym_preproc_if_token1] = ACTIONS(2656), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2656), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2656), + [sym_preproc_directive] = ACTIONS(2656), + [anon_sym_LPAREN2] = ACTIONS(2658), + [anon_sym_BANG] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2656), + [anon_sym_PLUS] = ACTIONS(2656), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_CARET] = ACTIONS(2658), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym___extension__] = ACTIONS(2656), + [anon_sym_typedef] = ACTIONS(2656), + [anon_sym_extern] = ACTIONS(2656), + [anon_sym___attribute__] = ACTIONS(2656), + [anon_sym___attribute] = ACTIONS(2656), + [anon_sym_noreturn] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym___declspec] = ACTIONS(2656), + [anon_sym___cdecl] = ACTIONS(2656), + [anon_sym___clrcall] = ACTIONS(2656), + [anon_sym___stdcall] = ACTIONS(2656), + [anon_sym___fastcall] = ACTIONS(2656), + [anon_sym___thiscall] = ACTIONS(2656), + [anon_sym___vectorcall] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_signed] = ACTIONS(2656), + [anon_sym_unsigned] = ACTIONS(2656), + [anon_sym_long] = ACTIONS(2656), + [anon_sym_short] = ACTIONS(2656), + [anon_sym_static] = ACTIONS(2656), + [anon_sym_ATautoreleasepool] = ACTIONS(2658), + [anon_sym_auto] = ACTIONS(2656), + [anon_sym_register] = ACTIONS(2656), + [anon_sym_inline] = ACTIONS(2656), + [anon_sym___inline] = ACTIONS(2656), + [anon_sym___inline__] = ACTIONS(2656), + [anon_sym___forceinline] = ACTIONS(2656), + [anon_sym_thread_local] = ACTIONS(2656), + [anon_sym___thread] = ACTIONS(2656), + [anon_sym_CG_EXTERN] = ACTIONS(2656), + [anon_sym_CG_INLINE] = ACTIONS(2656), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2656), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2656), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2656), + [anon_sym_IBOutlet] = ACTIONS(2656), + [anon_sym_IBInspectable] = ACTIONS(2656), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2656), + [anon_sym_NS_INLINE] = ACTIONS(2656), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2656), + [anon_sym_OBJC_EXPORT] = ACTIONS(2656), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2656), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2656), + [anon_sym_const] = ACTIONS(2656), + [anon_sym_constexpr] = ACTIONS(2656), + [anon_sym_volatile] = ACTIONS(2656), + [anon_sym_restrict] = ACTIONS(2656), + [anon_sym___restrict__] = ACTIONS(2656), + [anon_sym__Atomic] = ACTIONS(2656), + [anon_sym__Noreturn] = ACTIONS(2656), + [anon_sym__Nonnull] = ACTIONS(2656), + [anon_sym_nullable] = ACTIONS(2656), + [anon_sym__Complex] = ACTIONS(2656), + [anon_sym__Nullable] = ACTIONS(2656), + [anon_sym__Nullable_result] = ACTIONS(2656), + [anon_sym__Null_unspecified] = ACTIONS(2656), + [anon_sym___autoreleasing] = ACTIONS(2656), + [anon_sym___block] = ACTIONS(2656), + [anon_sym___bridge] = ACTIONS(2656), + [anon_sym___bridge_retained] = ACTIONS(2656), + [anon_sym___bridge_transfer] = ACTIONS(2656), + [anon_sym___complex] = ACTIONS(2656), + [anon_sym___const] = ACTIONS(2656), + [anon_sym___imag] = ACTIONS(2656), + [anon_sym___kindof] = ACTIONS(2656), + [anon_sym___nonnull] = ACTIONS(2656), + [anon_sym___nullable] = ACTIONS(2656), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2656), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2656), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2656), + [anon_sym___real] = ACTIONS(2656), + [anon_sym___strong] = ACTIONS(2656), + [anon_sym___unsafe_unretained] = ACTIONS(2656), + [anon_sym___unused] = ACTIONS(2656), + [anon_sym___weak] = ACTIONS(2656), + [anon_sym_alignas] = ACTIONS(2656), + [anon_sym__Alignas] = ACTIONS(2656), + [sym_primitive_type] = ACTIONS(2656), + [anon_sym_enum] = ACTIONS(2656), + [anon_sym_struct] = ACTIONS(2656), + [anon_sym_union] = ACTIONS(2656), + [anon_sym_if] = ACTIONS(2656), + [anon_sym_switch] = ACTIONS(2656), + [anon_sym_case] = ACTIONS(2656), + [anon_sym_default] = ACTIONS(2656), + [anon_sym_while] = ACTIONS(2656), + [anon_sym_do] = ACTIONS(2656), + [anon_sym_for] = ACTIONS(2656), + [anon_sym_in] = ACTIONS(2656), + [anon_sym_return] = ACTIONS(2656), + [anon_sym_break] = ACTIONS(2656), + [anon_sym_continue] = ACTIONS(2656), + [anon_sym_goto] = ACTIONS(2656), + [anon_sym_DASH_DASH] = ACTIONS(2658), + [anon_sym_PLUS_PLUS] = ACTIONS(2658), + [anon_sym_sizeof] = ACTIONS(2656), + [anon_sym___alignof__] = ACTIONS(2656), + [anon_sym___alignof] = ACTIONS(2656), + [anon_sym__alignof] = ACTIONS(2656), + [anon_sym_alignof] = ACTIONS(2656), + [anon_sym__Alignof] = ACTIONS(2656), + [anon_sym_offsetof] = ACTIONS(2656), + [anon_sym__Generic] = ACTIONS(2656), + [anon_sym_asm] = ACTIONS(2656), + [anon_sym___asm__] = ACTIONS(2656), + [anon_sym___asm] = ACTIONS(2656), + [sym_number_literal] = ACTIONS(2658), + [anon_sym_L_SQUOTE] = ACTIONS(2658), + [anon_sym_u_SQUOTE] = ACTIONS(2658), + [anon_sym_U_SQUOTE] = ACTIONS(2658), + [anon_sym_u8_SQUOTE] = ACTIONS(2658), + [anon_sym_SQUOTE] = ACTIONS(2658), + [anon_sym_AT] = ACTIONS(2656), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_L_DQUOTE] = ACTIONS(2658), + [anon_sym_u_DQUOTE] = ACTIONS(2658), + [anon_sym_U_DQUOTE] = ACTIONS(2658), + [anon_sym_u8_DQUOTE] = ACTIONS(2658), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2656), + [anon_sym_nullptr] = ACTIONS(2656), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2656), + [anon_sym___typeof] = ACTIONS(2656), + [anon_sym_typeof] = ACTIONS(2656), + [anon_sym_ATimport] = ACTIONS(2658), + [aux_sym_preproc_undef_token1] = ACTIONS(2656), + [anon_sym_POUND] = ACTIONS(2656), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2656), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2656), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2656), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2656), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2656), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2656), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2656), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2656), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2656), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2656), + [anon_sym_NS_AVAILABLE] = ACTIONS(2656), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2656), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2656), + [anon_sym_API_AVAILABLE] = ACTIONS(2656), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2656), + [anon_sym_API_DEPRECATED] = ACTIONS(2656), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2656), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2656), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2656), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2656), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2656), + [anon_sym___deprecated_msg] = ACTIONS(2656), + [anon_sym___deprecated_enum_msg] = ACTIONS(2656), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2656), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2656), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2656), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2656), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2656), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2656), + [anon_sym_ATprotocol] = ACTIONS(2658), + [anon_sym_ATinterface] = ACTIONS(2658), + [anon_sym_ATimplementation] = ACTIONS(2658), + [anon_sym_ATcompatibility_alias] = ACTIONS(2658), + [anon_sym_ATselector] = ACTIONS(2658), + [anon_sym_ATavailable] = ACTIONS(2658), + [anon_sym___builtin_available] = ACTIONS(2656), + [anon_sym_va_arg] = ACTIONS(2656), + [anon_sym_ATencode] = ACTIONS(2658), + [anon_sym_BOOL] = ACTIONS(2656), + [anon_sym_IMP] = ACTIONS(2656), + [anon_sym_SEL] = ACTIONS(2656), + [anon_sym_Class] = ACTIONS(2656), + [anon_sym_id] = ACTIONS(2656), + }, + [996] = { + [ts_builtin_sym_end] = ACTIONS(2854), + [sym_identifier] = ACTIONS(2852), + [aux_sym_preproc_include_token1] = ACTIONS(2852), + [aux_sym_preproc_include_token2] = ACTIONS(2852), + [aux_sym_preproc_def_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token1] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2852), + [sym_preproc_directive] = ACTIONS(2852), + [anon_sym_LPAREN2] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_CARET] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym___extension__] = ACTIONS(2852), + [anon_sym_typedef] = ACTIONS(2852), + [anon_sym_extern] = ACTIONS(2852), + [anon_sym___attribute__] = ACTIONS(2852), + [anon_sym___attribute] = ACTIONS(2852), + [anon_sym_noreturn] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2854), + [anon_sym___declspec] = ACTIONS(2852), + [anon_sym___cdecl] = ACTIONS(2852), + [anon_sym___clrcall] = ACTIONS(2852), + [anon_sym___stdcall] = ACTIONS(2852), + [anon_sym___fastcall] = ACTIONS(2852), + [anon_sym___thiscall] = ACTIONS(2852), + [anon_sym___vectorcall] = ACTIONS(2852), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_signed] = ACTIONS(2852), + [anon_sym_unsigned] = ACTIONS(2852), + [anon_sym_long] = ACTIONS(2852), + [anon_sym_short] = ACTIONS(2852), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_ATautoreleasepool] = ACTIONS(2854), + [anon_sym_auto] = ACTIONS(2852), + [anon_sym_register] = ACTIONS(2852), + [anon_sym_inline] = ACTIONS(2852), + [anon_sym___inline] = ACTIONS(2852), + [anon_sym___inline__] = ACTIONS(2852), + [anon_sym___forceinline] = ACTIONS(2852), + [anon_sym_thread_local] = ACTIONS(2852), + [anon_sym___thread] = ACTIONS(2852), + [anon_sym_CG_EXTERN] = ACTIONS(2852), + [anon_sym_CG_INLINE] = ACTIONS(2852), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2852), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2852), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2852), + [anon_sym_IBOutlet] = ACTIONS(2852), + [anon_sym_IBInspectable] = ACTIONS(2852), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2852), + [anon_sym_NS_INLINE] = ACTIONS(2852), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2852), + [anon_sym_OBJC_EXPORT] = ACTIONS(2852), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2852), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2852), + [anon_sym_const] = ACTIONS(2852), + [anon_sym_constexpr] = ACTIONS(2852), + [anon_sym_volatile] = ACTIONS(2852), + [anon_sym_restrict] = ACTIONS(2852), + [anon_sym___restrict__] = ACTIONS(2852), + [anon_sym__Atomic] = ACTIONS(2852), + [anon_sym__Noreturn] = ACTIONS(2852), + [anon_sym__Nonnull] = ACTIONS(2852), + [anon_sym_nullable] = ACTIONS(2852), + [anon_sym__Complex] = ACTIONS(2852), + [anon_sym__Nullable] = ACTIONS(2852), + [anon_sym__Nullable_result] = ACTIONS(2852), + [anon_sym__Null_unspecified] = ACTIONS(2852), + [anon_sym___autoreleasing] = ACTIONS(2852), + [anon_sym___block] = ACTIONS(2852), + [anon_sym___bridge] = ACTIONS(2852), + [anon_sym___bridge_retained] = ACTIONS(2852), + [anon_sym___bridge_transfer] = ACTIONS(2852), + [anon_sym___complex] = ACTIONS(2852), + [anon_sym___const] = ACTIONS(2852), + [anon_sym___imag] = ACTIONS(2852), + [anon_sym___kindof] = ACTIONS(2852), + [anon_sym___nonnull] = ACTIONS(2852), + [anon_sym___nullable] = ACTIONS(2852), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2852), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2852), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2852), + [anon_sym___real] = ACTIONS(2852), + [anon_sym___strong] = ACTIONS(2852), + [anon_sym___unsafe_unretained] = ACTIONS(2852), + [anon_sym___unused] = ACTIONS(2852), + [anon_sym___weak] = ACTIONS(2852), + [anon_sym_alignas] = ACTIONS(2852), + [anon_sym__Alignas] = ACTIONS(2852), + [sym_primitive_type] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2852), + [anon_sym_union] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_switch] = ACTIONS(2852), + [anon_sym_case] = ACTIONS(2852), + [anon_sym_default] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_in] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_break] = ACTIONS(2852), + [anon_sym_continue] = ACTIONS(2852), + [anon_sym_goto] = ACTIONS(2852), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_sizeof] = ACTIONS(2852), + [anon_sym___alignof__] = ACTIONS(2852), + [anon_sym___alignof] = ACTIONS(2852), + [anon_sym__alignof] = ACTIONS(2852), + [anon_sym_alignof] = ACTIONS(2852), + [anon_sym__Alignof] = ACTIONS(2852), + [anon_sym_offsetof] = ACTIONS(2852), + [anon_sym__Generic] = ACTIONS(2852), + [anon_sym_asm] = ACTIONS(2852), + [anon_sym___asm__] = ACTIONS(2852), + [anon_sym___asm] = ACTIONS(2852), + [sym_number_literal] = ACTIONS(2854), + [anon_sym_L_SQUOTE] = ACTIONS(2854), + [anon_sym_u_SQUOTE] = ACTIONS(2854), + [anon_sym_U_SQUOTE] = ACTIONS(2854), + [anon_sym_u8_SQUOTE] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_AT] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2854), + [anon_sym_L_DQUOTE] = ACTIONS(2854), + [anon_sym_u_DQUOTE] = ACTIONS(2854), + [anon_sym_U_DQUOTE] = ACTIONS(2854), + [anon_sym_u8_DQUOTE] = ACTIONS(2854), + [sym_true] = ACTIONS(2852), + [sym_false] = ACTIONS(2852), + [anon_sym_NULL] = ACTIONS(2852), + [anon_sym_nullptr] = ACTIONS(2852), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2852), + [anon_sym___typeof] = ACTIONS(2852), + [anon_sym_typeof] = ACTIONS(2852), + [anon_sym_ATimport] = ACTIONS(2854), + [aux_sym_preproc_undef_token1] = ACTIONS(2852), + [anon_sym_POUND] = ACTIONS(2852), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2852), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2852), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2852), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2852), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2852), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2852), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2852), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2852), + [anon_sym_NS_AVAILABLE] = ACTIONS(2852), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2852), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_API_AVAILABLE] = ACTIONS(2852), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_API_DEPRECATED] = ACTIONS(2852), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2852), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2852), + [anon_sym___deprecated_msg] = ACTIONS(2852), + [anon_sym___deprecated_enum_msg] = ACTIONS(2852), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2852), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2852), + [anon_sym_ATprotocol] = ACTIONS(2854), + [anon_sym_ATinterface] = ACTIONS(2854), + [anon_sym_ATimplementation] = ACTIONS(2854), + [anon_sym_ATcompatibility_alias] = ACTIONS(2854), + [anon_sym_ATselector] = ACTIONS(2854), + [anon_sym_ATavailable] = ACTIONS(2854), + [anon_sym___builtin_available] = ACTIONS(2852), + [anon_sym_va_arg] = ACTIONS(2852), + [anon_sym_ATencode] = ACTIONS(2854), + [anon_sym_BOOL] = ACTIONS(2852), + [anon_sym_IMP] = ACTIONS(2852), + [anon_sym_SEL] = ACTIONS(2852), + [anon_sym_Class] = ACTIONS(2852), + [anon_sym_id] = ACTIONS(2852), + }, + [997] = { + [ts_builtin_sym_end] = ACTIONS(2944), + [sym_identifier] = ACTIONS(2946), + [aux_sym_preproc_include_token1] = ACTIONS(2946), + [aux_sym_preproc_include_token2] = ACTIONS(2946), + [aux_sym_preproc_def_token1] = ACTIONS(2946), + [aux_sym_preproc_if_token1] = ACTIONS(2946), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2946), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2946), + [sym_preproc_directive] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2944), + [anon_sym_TILDE] = ACTIONS(2944), + [anon_sym_DASH] = ACTIONS(2946), + [anon_sym_PLUS] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(2944), + [anon_sym_CARET] = ACTIONS(2944), + [anon_sym_AMP] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym___extension__] = ACTIONS(2946), + [anon_sym_typedef] = ACTIONS(2946), + [anon_sym_extern] = ACTIONS(2946), + [anon_sym___attribute__] = ACTIONS(2946), + [anon_sym___attribute] = ACTIONS(2946), + [anon_sym_noreturn] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym___declspec] = ACTIONS(2946), + [anon_sym___cdecl] = ACTIONS(2946), + [anon_sym___clrcall] = ACTIONS(2946), + [anon_sym___stdcall] = ACTIONS(2946), + [anon_sym___fastcall] = ACTIONS(2946), + [anon_sym___thiscall] = ACTIONS(2946), + [anon_sym___vectorcall] = ACTIONS(2946), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_signed] = ACTIONS(2946), + [anon_sym_unsigned] = ACTIONS(2946), + [anon_sym_long] = ACTIONS(2946), + [anon_sym_short] = ACTIONS(2946), + [anon_sym_static] = ACTIONS(2946), + [anon_sym_ATautoreleasepool] = ACTIONS(2944), + [anon_sym_auto] = ACTIONS(2946), + [anon_sym_register] = ACTIONS(2946), + [anon_sym_inline] = ACTIONS(2946), + [anon_sym___inline] = ACTIONS(2946), + [anon_sym___inline__] = ACTIONS(2946), + [anon_sym___forceinline] = ACTIONS(2946), + [anon_sym_thread_local] = ACTIONS(2946), + [anon_sym___thread] = ACTIONS(2946), + [anon_sym_CG_EXTERN] = ACTIONS(2946), + [anon_sym_CG_INLINE] = ACTIONS(2946), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2946), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2946), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2946), + [anon_sym_IBOutlet] = ACTIONS(2946), + [anon_sym_IBInspectable] = ACTIONS(2946), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2946), + [anon_sym_NS_INLINE] = ACTIONS(2946), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2946), + [anon_sym_OBJC_EXPORT] = ACTIONS(2946), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2946), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2946), + [anon_sym_const] = ACTIONS(2946), + [anon_sym_constexpr] = ACTIONS(2946), + [anon_sym_volatile] = ACTIONS(2946), + [anon_sym_restrict] = ACTIONS(2946), + [anon_sym___restrict__] = ACTIONS(2946), + [anon_sym__Atomic] = ACTIONS(2946), + [anon_sym__Noreturn] = ACTIONS(2946), + [anon_sym__Nonnull] = ACTIONS(2946), + [anon_sym_nullable] = ACTIONS(2946), + [anon_sym__Complex] = ACTIONS(2946), + [anon_sym__Nullable] = ACTIONS(2946), + [anon_sym__Nullable_result] = ACTIONS(2946), + [anon_sym__Null_unspecified] = ACTIONS(2946), + [anon_sym___autoreleasing] = ACTIONS(2946), + [anon_sym___block] = ACTIONS(2946), + [anon_sym___bridge] = ACTIONS(2946), + [anon_sym___bridge_retained] = ACTIONS(2946), + [anon_sym___bridge_transfer] = ACTIONS(2946), + [anon_sym___complex] = ACTIONS(2946), + [anon_sym___const] = ACTIONS(2946), + [anon_sym___imag] = ACTIONS(2946), + [anon_sym___kindof] = ACTIONS(2946), + [anon_sym___nonnull] = ACTIONS(2946), + [anon_sym___nullable] = ACTIONS(2946), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2946), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2946), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2946), + [anon_sym___real] = ACTIONS(2946), + [anon_sym___strong] = ACTIONS(2946), + [anon_sym___unsafe_unretained] = ACTIONS(2946), + [anon_sym___unused] = ACTIONS(2946), + [anon_sym___weak] = ACTIONS(2946), + [anon_sym_alignas] = ACTIONS(2946), + [anon_sym__Alignas] = ACTIONS(2946), + [sym_primitive_type] = ACTIONS(2946), + [anon_sym_enum] = ACTIONS(2946), + [anon_sym_struct] = ACTIONS(2946), + [anon_sym_union] = ACTIONS(2946), + [anon_sym_if] = ACTIONS(2946), + [anon_sym_switch] = ACTIONS(2946), + [anon_sym_case] = ACTIONS(2946), + [anon_sym_default] = ACTIONS(2946), + [anon_sym_while] = ACTIONS(2946), + [anon_sym_do] = ACTIONS(2946), + [anon_sym_for] = ACTIONS(2946), + [anon_sym_in] = ACTIONS(2946), + [anon_sym_return] = ACTIONS(2946), + [anon_sym_break] = ACTIONS(2946), + [anon_sym_continue] = ACTIONS(2946), + [anon_sym_goto] = ACTIONS(2946), + [anon_sym_DASH_DASH] = ACTIONS(2944), + [anon_sym_PLUS_PLUS] = ACTIONS(2944), + [anon_sym_sizeof] = ACTIONS(2946), + [anon_sym___alignof__] = ACTIONS(2946), + [anon_sym___alignof] = ACTIONS(2946), + [anon_sym__alignof] = ACTIONS(2946), + [anon_sym_alignof] = ACTIONS(2946), + [anon_sym__Alignof] = ACTIONS(2946), + [anon_sym_offsetof] = ACTIONS(2946), + [anon_sym__Generic] = ACTIONS(2946), + [anon_sym_asm] = ACTIONS(2946), + [anon_sym___asm__] = ACTIONS(2946), + [anon_sym___asm] = ACTIONS(2946), + [sym_number_literal] = ACTIONS(2944), + [anon_sym_L_SQUOTE] = ACTIONS(2944), + [anon_sym_u_SQUOTE] = ACTIONS(2944), + [anon_sym_U_SQUOTE] = ACTIONS(2944), + [anon_sym_u8_SQUOTE] = ACTIONS(2944), + [anon_sym_SQUOTE] = ACTIONS(2944), + [anon_sym_AT] = ACTIONS(2946), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_L_DQUOTE] = ACTIONS(2944), + [anon_sym_u_DQUOTE] = ACTIONS(2944), + [anon_sym_U_DQUOTE] = ACTIONS(2944), + [anon_sym_u8_DQUOTE] = ACTIONS(2944), + [sym_true] = ACTIONS(2946), + [sym_false] = ACTIONS(2946), + [anon_sym_NULL] = ACTIONS(2946), + [anon_sym_nullptr] = ACTIONS(2946), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2946), + [anon_sym___typeof] = ACTIONS(2946), + [anon_sym_typeof] = ACTIONS(2946), + [anon_sym_ATimport] = ACTIONS(2944), + [aux_sym_preproc_undef_token1] = ACTIONS(2946), + [anon_sym_POUND] = ACTIONS(2946), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2946), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2946), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2946), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2946), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2946), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2946), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2946), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2946), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2946), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2946), + [anon_sym_NS_AVAILABLE] = ACTIONS(2946), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2946), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2946), + [anon_sym_API_AVAILABLE] = ACTIONS(2946), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2946), + [anon_sym_API_DEPRECATED] = ACTIONS(2946), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2946), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2946), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2946), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2946), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2946), + [anon_sym___deprecated_msg] = ACTIONS(2946), + [anon_sym___deprecated_enum_msg] = ACTIONS(2946), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2946), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2946), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2946), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2946), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2946), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2946), + [anon_sym_ATprotocol] = ACTIONS(2944), + [anon_sym_ATinterface] = ACTIONS(2944), + [anon_sym_ATimplementation] = ACTIONS(2944), + [anon_sym_ATcompatibility_alias] = ACTIONS(2944), + [anon_sym_ATselector] = ACTIONS(2944), + [anon_sym_ATavailable] = ACTIONS(2944), + [anon_sym___builtin_available] = ACTIONS(2946), + [anon_sym_va_arg] = ACTIONS(2946), + [anon_sym_ATencode] = ACTIONS(2944), + [anon_sym_BOOL] = ACTIONS(2946), + [anon_sym_IMP] = ACTIONS(2946), + [anon_sym_SEL] = ACTIONS(2946), + [anon_sym_Class] = ACTIONS(2946), + [anon_sym_id] = ACTIONS(2946), + }, + [998] = { + [ts_builtin_sym_end] = ACTIONS(2948), + [sym_identifier] = ACTIONS(2950), + [aux_sym_preproc_include_token1] = ACTIONS(2950), + [aux_sym_preproc_include_token2] = ACTIONS(2950), + [aux_sym_preproc_def_token1] = ACTIONS(2950), + [aux_sym_preproc_if_token1] = ACTIONS(2950), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2950), + [sym_preproc_directive] = ACTIONS(2950), + [anon_sym_LPAREN2] = ACTIONS(2948), + [anon_sym_BANG] = ACTIONS(2948), + [anon_sym_TILDE] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2950), + [anon_sym_PLUS] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(2948), + [anon_sym_CARET] = ACTIONS(2948), + [anon_sym_AMP] = ACTIONS(2948), + [anon_sym_SEMI] = ACTIONS(2948), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_typedef] = ACTIONS(2950), + [anon_sym_extern] = ACTIONS(2950), + [anon_sym___attribute__] = ACTIONS(2950), + [anon_sym___attribute] = ACTIONS(2950), + [anon_sym_noreturn] = ACTIONS(2950), + [anon_sym_LBRACK] = ACTIONS(2948), + [anon_sym___declspec] = ACTIONS(2950), + [anon_sym___cdecl] = ACTIONS(2950), + [anon_sym___clrcall] = ACTIONS(2950), + [anon_sym___stdcall] = ACTIONS(2950), + [anon_sym___fastcall] = ACTIONS(2950), + [anon_sym___thiscall] = ACTIONS(2950), + [anon_sym___vectorcall] = ACTIONS(2950), + [anon_sym_LBRACE] = ACTIONS(2948), + [anon_sym_signed] = ACTIONS(2950), + [anon_sym_unsigned] = ACTIONS(2950), + [anon_sym_long] = ACTIONS(2950), + [anon_sym_short] = ACTIONS(2950), + [anon_sym_static] = ACTIONS(2950), + [anon_sym_ATautoreleasepool] = ACTIONS(2948), + [anon_sym_auto] = ACTIONS(2950), + [anon_sym_register] = ACTIONS(2950), + [anon_sym_inline] = ACTIONS(2950), + [anon_sym___inline] = ACTIONS(2950), + [anon_sym___inline__] = ACTIONS(2950), + [anon_sym___forceinline] = ACTIONS(2950), + [anon_sym_thread_local] = ACTIONS(2950), + [anon_sym___thread] = ACTIONS(2950), + [anon_sym_CG_EXTERN] = ACTIONS(2950), + [anon_sym_CG_INLINE] = ACTIONS(2950), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2950), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2950), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2950), + [anon_sym_IBOutlet] = ACTIONS(2950), + [anon_sym_IBInspectable] = ACTIONS(2950), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2950), + [anon_sym_NS_INLINE] = ACTIONS(2950), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2950), + [anon_sym_OBJC_EXPORT] = ACTIONS(2950), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2950), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2950), + [anon_sym_const] = ACTIONS(2950), + [anon_sym_constexpr] = ACTIONS(2950), + [anon_sym_volatile] = ACTIONS(2950), + [anon_sym_restrict] = ACTIONS(2950), + [anon_sym___restrict__] = ACTIONS(2950), + [anon_sym__Atomic] = ACTIONS(2950), + [anon_sym__Noreturn] = ACTIONS(2950), + [anon_sym__Nonnull] = ACTIONS(2950), + [anon_sym_nullable] = ACTIONS(2950), + [anon_sym__Complex] = ACTIONS(2950), + [anon_sym__Nullable] = ACTIONS(2950), + [anon_sym__Nullable_result] = ACTIONS(2950), + [anon_sym__Null_unspecified] = ACTIONS(2950), + [anon_sym___autoreleasing] = ACTIONS(2950), + [anon_sym___block] = ACTIONS(2950), + [anon_sym___bridge] = ACTIONS(2950), + [anon_sym___bridge_retained] = ACTIONS(2950), + [anon_sym___bridge_transfer] = ACTIONS(2950), + [anon_sym___complex] = ACTIONS(2950), + [anon_sym___const] = ACTIONS(2950), + [anon_sym___imag] = ACTIONS(2950), + [anon_sym___kindof] = ACTIONS(2950), + [anon_sym___nonnull] = ACTIONS(2950), + [anon_sym___nullable] = ACTIONS(2950), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2950), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2950), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2950), + [anon_sym___real] = ACTIONS(2950), + [anon_sym___strong] = ACTIONS(2950), + [anon_sym___unsafe_unretained] = ACTIONS(2950), + [anon_sym___unused] = ACTIONS(2950), + [anon_sym___weak] = ACTIONS(2950), + [anon_sym_alignas] = ACTIONS(2950), + [anon_sym__Alignas] = ACTIONS(2950), + [sym_primitive_type] = ACTIONS(2950), + [anon_sym_enum] = ACTIONS(2950), + [anon_sym_struct] = ACTIONS(2950), + [anon_sym_union] = ACTIONS(2950), + [anon_sym_if] = ACTIONS(2950), + [anon_sym_switch] = ACTIONS(2950), + [anon_sym_case] = ACTIONS(2950), + [anon_sym_default] = ACTIONS(2950), + [anon_sym_while] = ACTIONS(2950), + [anon_sym_do] = ACTIONS(2950), + [anon_sym_for] = ACTIONS(2950), + [anon_sym_in] = ACTIONS(2950), + [anon_sym_return] = ACTIONS(2950), + [anon_sym_break] = ACTIONS(2950), + [anon_sym_continue] = ACTIONS(2950), + [anon_sym_goto] = ACTIONS(2950), + [anon_sym_DASH_DASH] = ACTIONS(2948), + [anon_sym_PLUS_PLUS] = ACTIONS(2948), + [anon_sym_sizeof] = ACTIONS(2950), + [anon_sym___alignof__] = ACTIONS(2950), + [anon_sym___alignof] = ACTIONS(2950), + [anon_sym__alignof] = ACTIONS(2950), + [anon_sym_alignof] = ACTIONS(2950), + [anon_sym__Alignof] = ACTIONS(2950), + [anon_sym_offsetof] = ACTIONS(2950), + [anon_sym__Generic] = ACTIONS(2950), + [anon_sym_asm] = ACTIONS(2950), + [anon_sym___asm__] = ACTIONS(2950), + [anon_sym___asm] = ACTIONS(2950), + [sym_number_literal] = ACTIONS(2948), + [anon_sym_L_SQUOTE] = ACTIONS(2948), + [anon_sym_u_SQUOTE] = ACTIONS(2948), + [anon_sym_U_SQUOTE] = ACTIONS(2948), + [anon_sym_u8_SQUOTE] = ACTIONS(2948), + [anon_sym_SQUOTE] = ACTIONS(2948), + [anon_sym_AT] = ACTIONS(2950), + [anon_sym_DQUOTE] = ACTIONS(2948), + [anon_sym_L_DQUOTE] = ACTIONS(2948), + [anon_sym_u_DQUOTE] = ACTIONS(2948), + [anon_sym_U_DQUOTE] = ACTIONS(2948), + [anon_sym_u8_DQUOTE] = ACTIONS(2948), + [sym_true] = ACTIONS(2950), + [sym_false] = ACTIONS(2950), + [anon_sym_NULL] = ACTIONS(2950), + [anon_sym_nullptr] = ACTIONS(2950), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2950), + [anon_sym___typeof] = ACTIONS(2950), + [anon_sym_typeof] = ACTIONS(2950), + [anon_sym_ATimport] = ACTIONS(2948), + [aux_sym_preproc_undef_token1] = ACTIONS(2950), + [anon_sym_POUND] = ACTIONS(2950), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2950), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2950), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2950), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2950), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2950), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2950), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2950), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2950), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2950), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2950), + [anon_sym_NS_AVAILABLE] = ACTIONS(2950), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2950), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2950), + [anon_sym_API_AVAILABLE] = ACTIONS(2950), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2950), + [anon_sym_API_DEPRECATED] = ACTIONS(2950), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2950), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2950), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2950), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2950), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2950), + [anon_sym___deprecated_msg] = ACTIONS(2950), + [anon_sym___deprecated_enum_msg] = ACTIONS(2950), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2950), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2950), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2950), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2950), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2950), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2950), + [anon_sym_ATprotocol] = ACTIONS(2948), + [anon_sym_ATinterface] = ACTIONS(2948), + [anon_sym_ATimplementation] = ACTIONS(2948), + [anon_sym_ATcompatibility_alias] = ACTIONS(2948), + [anon_sym_ATselector] = ACTIONS(2948), + [anon_sym_ATavailable] = ACTIONS(2948), + [anon_sym___builtin_available] = ACTIONS(2950), + [anon_sym_va_arg] = ACTIONS(2950), + [anon_sym_ATencode] = ACTIONS(2948), + [anon_sym_BOOL] = ACTIONS(2950), + [anon_sym_IMP] = ACTIONS(2950), + [anon_sym_SEL] = ACTIONS(2950), + [anon_sym_Class] = ACTIONS(2950), + [anon_sym_id] = ACTIONS(2950), + }, + [999] = { + [ts_builtin_sym_end] = ACTIONS(2674), + [sym_identifier] = ACTIONS(2672), + [aux_sym_preproc_include_token1] = ACTIONS(2672), + [aux_sym_preproc_include_token2] = ACTIONS(2672), + [aux_sym_preproc_def_token1] = ACTIONS(2672), + [aux_sym_preproc_if_token1] = ACTIONS(2672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2672), + [sym_preproc_directive] = ACTIONS(2672), + [anon_sym_LPAREN2] = ACTIONS(2674), + [anon_sym_BANG] = ACTIONS(2674), + [anon_sym_TILDE] = ACTIONS(2674), + [anon_sym_DASH] = ACTIONS(2672), + [anon_sym_PLUS] = ACTIONS(2672), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_CARET] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2674), + [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym___extension__] = ACTIONS(2672), + [anon_sym_typedef] = ACTIONS(2672), + [anon_sym_extern] = ACTIONS(2672), + [anon_sym___attribute__] = ACTIONS(2672), + [anon_sym___attribute] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(2674), + [anon_sym___declspec] = ACTIONS(2672), + [anon_sym___cdecl] = ACTIONS(2672), + [anon_sym___clrcall] = ACTIONS(2672), + [anon_sym___stdcall] = ACTIONS(2672), + [anon_sym___fastcall] = ACTIONS(2672), + [anon_sym___thiscall] = ACTIONS(2672), + [anon_sym___vectorcall] = ACTIONS(2672), + [anon_sym_LBRACE] = ACTIONS(2674), + [anon_sym_signed] = ACTIONS(2672), + [anon_sym_unsigned] = ACTIONS(2672), + [anon_sym_long] = ACTIONS(2672), + [anon_sym_short] = ACTIONS(2672), + [anon_sym_static] = ACTIONS(2672), + [anon_sym_ATautoreleasepool] = ACTIONS(2674), + [anon_sym_auto] = ACTIONS(2672), + [anon_sym_register] = ACTIONS(2672), + [anon_sym_inline] = ACTIONS(2672), + [anon_sym___inline] = ACTIONS(2672), + [anon_sym___inline__] = ACTIONS(2672), + [anon_sym___forceinline] = ACTIONS(2672), + [anon_sym_thread_local] = ACTIONS(2672), + [anon_sym___thread] = ACTIONS(2672), + [anon_sym_CG_EXTERN] = ACTIONS(2672), + [anon_sym_CG_INLINE] = ACTIONS(2672), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2672), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2672), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2672), + [anon_sym_IBOutlet] = ACTIONS(2672), + [anon_sym_IBInspectable] = ACTIONS(2672), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2672), + [anon_sym_NS_INLINE] = ACTIONS(2672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2672), + [anon_sym_OBJC_EXPORT] = ACTIONS(2672), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2672), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2672), + [anon_sym_const] = ACTIONS(2672), + [anon_sym_constexpr] = ACTIONS(2672), + [anon_sym_volatile] = ACTIONS(2672), + [anon_sym_restrict] = ACTIONS(2672), + [anon_sym___restrict__] = ACTIONS(2672), + [anon_sym__Atomic] = ACTIONS(2672), + [anon_sym__Noreturn] = ACTIONS(2672), + [anon_sym__Nonnull] = ACTIONS(2672), + [anon_sym_nullable] = ACTIONS(2672), + [anon_sym__Complex] = ACTIONS(2672), + [anon_sym__Nullable] = ACTIONS(2672), + [anon_sym__Nullable_result] = ACTIONS(2672), + [anon_sym__Null_unspecified] = ACTIONS(2672), + [anon_sym___autoreleasing] = ACTIONS(2672), + [anon_sym___block] = ACTIONS(2672), + [anon_sym___bridge] = ACTIONS(2672), + [anon_sym___bridge_retained] = ACTIONS(2672), + [anon_sym___bridge_transfer] = ACTIONS(2672), + [anon_sym___complex] = ACTIONS(2672), + [anon_sym___const] = ACTIONS(2672), + [anon_sym___imag] = ACTIONS(2672), + [anon_sym___kindof] = ACTIONS(2672), + [anon_sym___nonnull] = ACTIONS(2672), + [anon_sym___nullable] = ACTIONS(2672), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2672), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2672), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2672), + [anon_sym___real] = ACTIONS(2672), + [anon_sym___strong] = ACTIONS(2672), + [anon_sym___unsafe_unretained] = ACTIONS(2672), + [anon_sym___unused] = ACTIONS(2672), + [anon_sym___weak] = ACTIONS(2672), + [anon_sym_alignas] = ACTIONS(2672), + [anon_sym__Alignas] = ACTIONS(2672), + [sym_primitive_type] = ACTIONS(2672), + [anon_sym_enum] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_union] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_switch] = ACTIONS(2672), + [anon_sym_case] = ACTIONS(2672), + [anon_sym_default] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_do] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_in] = ACTIONS(2672), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_goto] = ACTIONS(2672), + [anon_sym_DASH_DASH] = ACTIONS(2674), + [anon_sym_PLUS_PLUS] = ACTIONS(2674), + [anon_sym_sizeof] = ACTIONS(2672), + [anon_sym___alignof__] = ACTIONS(2672), + [anon_sym___alignof] = ACTIONS(2672), + [anon_sym__alignof] = ACTIONS(2672), + [anon_sym_alignof] = ACTIONS(2672), + [anon_sym__Alignof] = ACTIONS(2672), + [anon_sym_offsetof] = ACTIONS(2672), + [anon_sym__Generic] = ACTIONS(2672), + [anon_sym_asm] = ACTIONS(2672), + [anon_sym___asm__] = ACTIONS(2672), + [anon_sym___asm] = ACTIONS(2672), + [sym_number_literal] = ACTIONS(2674), + [anon_sym_L_SQUOTE] = ACTIONS(2674), + [anon_sym_u_SQUOTE] = ACTIONS(2674), + [anon_sym_U_SQUOTE] = ACTIONS(2674), + [anon_sym_u8_SQUOTE] = ACTIONS(2674), + [anon_sym_SQUOTE] = ACTIONS(2674), + [anon_sym_AT] = ACTIONS(2672), + [anon_sym_DQUOTE] = ACTIONS(2674), + [anon_sym_L_DQUOTE] = ACTIONS(2674), + [anon_sym_u_DQUOTE] = ACTIONS(2674), + [anon_sym_U_DQUOTE] = ACTIONS(2674), + [anon_sym_u8_DQUOTE] = ACTIONS(2674), + [sym_true] = ACTIONS(2672), + [sym_false] = ACTIONS(2672), + [anon_sym_NULL] = ACTIONS(2672), + [anon_sym_nullptr] = ACTIONS(2672), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2672), + [anon_sym___typeof] = ACTIONS(2672), + [anon_sym_typeof] = ACTIONS(2672), + [anon_sym_ATimport] = ACTIONS(2674), + [aux_sym_preproc_undef_token1] = ACTIONS(2672), + [anon_sym_POUND] = ACTIONS(2672), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2672), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2672), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2672), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2672), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2672), + [anon_sym_NS_AVAILABLE] = ACTIONS(2672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2672), + [anon_sym_API_AVAILABLE] = ACTIONS(2672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2672), + [anon_sym_API_DEPRECATED] = ACTIONS(2672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2672), + [anon_sym___deprecated_msg] = ACTIONS(2672), + [anon_sym___deprecated_enum_msg] = ACTIONS(2672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2672), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2672), + [anon_sym_ATprotocol] = ACTIONS(2674), + [anon_sym_ATinterface] = ACTIONS(2674), + [anon_sym_ATimplementation] = ACTIONS(2674), + [anon_sym_ATcompatibility_alias] = ACTIONS(2674), + [anon_sym_ATselector] = ACTIONS(2674), + [anon_sym_ATavailable] = ACTIONS(2674), + [anon_sym___builtin_available] = ACTIONS(2672), + [anon_sym_va_arg] = ACTIONS(2672), + [anon_sym_ATencode] = ACTIONS(2674), + [anon_sym_BOOL] = ACTIONS(2672), + [anon_sym_IMP] = ACTIONS(2672), + [anon_sym_SEL] = ACTIONS(2672), + [anon_sym_Class] = ACTIONS(2672), + [anon_sym_id] = ACTIONS(2672), + }, + [1000] = { + [ts_builtin_sym_end] = ACTIONS(2678), + [sym_identifier] = ACTIONS(2676), + [aux_sym_preproc_include_token1] = ACTIONS(2676), + [aux_sym_preproc_include_token2] = ACTIONS(2676), + [aux_sym_preproc_def_token1] = ACTIONS(2676), + [aux_sym_preproc_if_token1] = ACTIONS(2676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2676), + [sym_preproc_directive] = ACTIONS(2676), + [anon_sym_LPAREN2] = ACTIONS(2678), + [anon_sym_BANG] = ACTIONS(2678), + [anon_sym_TILDE] = ACTIONS(2678), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_STAR] = ACTIONS(2678), + [anon_sym_CARET] = ACTIONS(2678), + [anon_sym_AMP] = ACTIONS(2678), + [anon_sym_SEMI] = ACTIONS(2678), + [anon_sym___extension__] = ACTIONS(2676), + [anon_sym_typedef] = ACTIONS(2676), + [anon_sym_extern] = ACTIONS(2676), + [anon_sym___attribute__] = ACTIONS(2676), + [anon_sym___attribute] = ACTIONS(2676), + [anon_sym_noreturn] = ACTIONS(2676), + [anon_sym_LBRACK] = ACTIONS(2678), + [anon_sym___declspec] = ACTIONS(2676), + [anon_sym___cdecl] = ACTIONS(2676), + [anon_sym___clrcall] = ACTIONS(2676), + [anon_sym___stdcall] = ACTIONS(2676), + [anon_sym___fastcall] = ACTIONS(2676), + [anon_sym___thiscall] = ACTIONS(2676), + [anon_sym___vectorcall] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_signed] = ACTIONS(2676), + [anon_sym_unsigned] = ACTIONS(2676), + [anon_sym_long] = ACTIONS(2676), + [anon_sym_short] = ACTIONS(2676), + [anon_sym_static] = ACTIONS(2676), + [anon_sym_ATautoreleasepool] = ACTIONS(2678), + [anon_sym_auto] = ACTIONS(2676), + [anon_sym_register] = ACTIONS(2676), + [anon_sym_inline] = ACTIONS(2676), + [anon_sym___inline] = ACTIONS(2676), + [anon_sym___inline__] = ACTIONS(2676), + [anon_sym___forceinline] = ACTIONS(2676), + [anon_sym_thread_local] = ACTIONS(2676), + [anon_sym___thread] = ACTIONS(2676), + [anon_sym_CG_EXTERN] = ACTIONS(2676), + [anon_sym_CG_INLINE] = ACTIONS(2676), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2676), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2676), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2676), + [anon_sym_IBOutlet] = ACTIONS(2676), + [anon_sym_IBInspectable] = ACTIONS(2676), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2676), + [anon_sym_NS_INLINE] = ACTIONS(2676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2676), + [anon_sym_OBJC_EXPORT] = ACTIONS(2676), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2676), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2676), + [anon_sym_const] = ACTIONS(2676), + [anon_sym_constexpr] = ACTIONS(2676), + [anon_sym_volatile] = ACTIONS(2676), + [anon_sym_restrict] = ACTIONS(2676), + [anon_sym___restrict__] = ACTIONS(2676), + [anon_sym__Atomic] = ACTIONS(2676), + [anon_sym__Noreturn] = ACTIONS(2676), + [anon_sym__Nonnull] = ACTIONS(2676), + [anon_sym_nullable] = ACTIONS(2676), + [anon_sym__Complex] = ACTIONS(2676), + [anon_sym__Nullable] = ACTIONS(2676), + [anon_sym__Nullable_result] = ACTIONS(2676), + [anon_sym__Null_unspecified] = ACTIONS(2676), + [anon_sym___autoreleasing] = ACTIONS(2676), + [anon_sym___block] = ACTIONS(2676), + [anon_sym___bridge] = ACTIONS(2676), + [anon_sym___bridge_retained] = ACTIONS(2676), + [anon_sym___bridge_transfer] = ACTIONS(2676), + [anon_sym___complex] = ACTIONS(2676), + [anon_sym___const] = ACTIONS(2676), + [anon_sym___imag] = ACTIONS(2676), + [anon_sym___kindof] = ACTIONS(2676), + [anon_sym___nonnull] = ACTIONS(2676), + [anon_sym___nullable] = ACTIONS(2676), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2676), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2676), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2676), + [anon_sym___real] = ACTIONS(2676), + [anon_sym___strong] = ACTIONS(2676), + [anon_sym___unsafe_unretained] = ACTIONS(2676), + [anon_sym___unused] = ACTIONS(2676), + [anon_sym___weak] = ACTIONS(2676), + [anon_sym_alignas] = ACTIONS(2676), + [anon_sym__Alignas] = ACTIONS(2676), + [sym_primitive_type] = ACTIONS(2676), + [anon_sym_enum] = ACTIONS(2676), + [anon_sym_struct] = ACTIONS(2676), + [anon_sym_union] = ACTIONS(2676), + [anon_sym_if] = ACTIONS(2676), + [anon_sym_switch] = ACTIONS(2676), + [anon_sym_case] = ACTIONS(2676), + [anon_sym_default] = ACTIONS(2676), + [anon_sym_while] = ACTIONS(2676), + [anon_sym_do] = ACTIONS(2676), + [anon_sym_for] = ACTIONS(2676), + [anon_sym_in] = ACTIONS(2676), + [anon_sym_return] = ACTIONS(2676), + [anon_sym_break] = ACTIONS(2676), + [anon_sym_continue] = ACTIONS(2676), + [anon_sym_goto] = ACTIONS(2676), + [anon_sym_DASH_DASH] = ACTIONS(2678), + [anon_sym_PLUS_PLUS] = ACTIONS(2678), + [anon_sym_sizeof] = ACTIONS(2676), + [anon_sym___alignof__] = ACTIONS(2676), + [anon_sym___alignof] = ACTIONS(2676), + [anon_sym__alignof] = ACTIONS(2676), + [anon_sym_alignof] = ACTIONS(2676), + [anon_sym__Alignof] = ACTIONS(2676), + [anon_sym_offsetof] = ACTIONS(2676), + [anon_sym__Generic] = ACTIONS(2676), + [anon_sym_asm] = ACTIONS(2676), + [anon_sym___asm__] = ACTIONS(2676), + [anon_sym___asm] = ACTIONS(2676), + [sym_number_literal] = ACTIONS(2678), + [anon_sym_L_SQUOTE] = ACTIONS(2678), + [anon_sym_u_SQUOTE] = ACTIONS(2678), + [anon_sym_U_SQUOTE] = ACTIONS(2678), + [anon_sym_u8_SQUOTE] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2678), + [anon_sym_AT] = ACTIONS(2676), + [anon_sym_DQUOTE] = ACTIONS(2678), + [anon_sym_L_DQUOTE] = ACTIONS(2678), + [anon_sym_u_DQUOTE] = ACTIONS(2678), + [anon_sym_U_DQUOTE] = ACTIONS(2678), + [anon_sym_u8_DQUOTE] = ACTIONS(2678), + [sym_true] = ACTIONS(2676), + [sym_false] = ACTIONS(2676), + [anon_sym_NULL] = ACTIONS(2676), + [anon_sym_nullptr] = ACTIONS(2676), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2676), + [anon_sym___typeof] = ACTIONS(2676), + [anon_sym_typeof] = ACTIONS(2676), + [anon_sym_ATimport] = ACTIONS(2678), + [aux_sym_preproc_undef_token1] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(2676), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2676), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2676), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2676), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2676), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2676), + [anon_sym_NS_AVAILABLE] = ACTIONS(2676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2676), + [anon_sym_API_AVAILABLE] = ACTIONS(2676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2676), + [anon_sym_API_DEPRECATED] = ACTIONS(2676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2676), + [anon_sym___deprecated_msg] = ACTIONS(2676), + [anon_sym___deprecated_enum_msg] = ACTIONS(2676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2676), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2676), + [anon_sym_ATprotocol] = ACTIONS(2678), + [anon_sym_ATinterface] = ACTIONS(2678), + [anon_sym_ATimplementation] = ACTIONS(2678), + [anon_sym_ATcompatibility_alias] = ACTIONS(2678), + [anon_sym_ATselector] = ACTIONS(2678), + [anon_sym_ATavailable] = ACTIONS(2678), + [anon_sym___builtin_available] = ACTIONS(2676), + [anon_sym_va_arg] = ACTIONS(2676), + [anon_sym_ATencode] = ACTIONS(2678), + [anon_sym_BOOL] = ACTIONS(2676), + [anon_sym_IMP] = ACTIONS(2676), + [anon_sym_SEL] = ACTIONS(2676), + [anon_sym_Class] = ACTIONS(2676), + [anon_sym_id] = ACTIONS(2676), + }, + [1001] = { + [ts_builtin_sym_end] = ACTIONS(2682), + [sym_identifier] = ACTIONS(2680), + [aux_sym_preproc_include_token1] = ACTIONS(2680), + [aux_sym_preproc_include_token2] = ACTIONS(2680), + [aux_sym_preproc_def_token1] = ACTIONS(2680), + [aux_sym_preproc_if_token1] = ACTIONS(2680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2680), + [sym_preproc_directive] = ACTIONS(2680), + [anon_sym_LPAREN2] = ACTIONS(2682), + [anon_sym_BANG] = ACTIONS(2682), + [anon_sym_TILDE] = ACTIONS(2682), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_CARET] = ACTIONS(2682), + [anon_sym_AMP] = ACTIONS(2682), + [anon_sym_SEMI] = ACTIONS(2682), + [anon_sym___extension__] = ACTIONS(2680), + [anon_sym_typedef] = ACTIONS(2680), + [anon_sym_extern] = ACTIONS(2680), + [anon_sym___attribute__] = ACTIONS(2680), + [anon_sym___attribute] = ACTIONS(2680), + [anon_sym_noreturn] = ACTIONS(2680), + [anon_sym_LBRACK] = ACTIONS(2682), + [anon_sym___declspec] = ACTIONS(2680), + [anon_sym___cdecl] = ACTIONS(2680), + [anon_sym___clrcall] = ACTIONS(2680), + [anon_sym___stdcall] = ACTIONS(2680), + [anon_sym___fastcall] = ACTIONS(2680), + [anon_sym___thiscall] = ACTIONS(2680), + [anon_sym___vectorcall] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2682), + [anon_sym_signed] = ACTIONS(2680), + [anon_sym_unsigned] = ACTIONS(2680), + [anon_sym_long] = ACTIONS(2680), + [anon_sym_short] = ACTIONS(2680), + [anon_sym_static] = ACTIONS(2680), + [anon_sym_ATautoreleasepool] = ACTIONS(2682), + [anon_sym_auto] = ACTIONS(2680), + [anon_sym_register] = ACTIONS(2680), + [anon_sym_inline] = ACTIONS(2680), + [anon_sym___inline] = ACTIONS(2680), + [anon_sym___inline__] = ACTIONS(2680), + [anon_sym___forceinline] = ACTIONS(2680), + [anon_sym_thread_local] = ACTIONS(2680), + [anon_sym___thread] = ACTIONS(2680), + [anon_sym_CG_EXTERN] = ACTIONS(2680), + [anon_sym_CG_INLINE] = ACTIONS(2680), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2680), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2680), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2680), + [anon_sym_IBOutlet] = ACTIONS(2680), + [anon_sym_IBInspectable] = ACTIONS(2680), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2680), + [anon_sym_NS_INLINE] = ACTIONS(2680), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2680), + [anon_sym_OBJC_EXPORT] = ACTIONS(2680), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2680), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2680), + [anon_sym_const] = ACTIONS(2680), + [anon_sym_constexpr] = ACTIONS(2680), + [anon_sym_volatile] = ACTIONS(2680), + [anon_sym_restrict] = ACTIONS(2680), + [anon_sym___restrict__] = ACTIONS(2680), + [anon_sym__Atomic] = ACTIONS(2680), + [anon_sym__Noreturn] = ACTIONS(2680), + [anon_sym__Nonnull] = ACTIONS(2680), + [anon_sym_nullable] = ACTIONS(2680), + [anon_sym__Complex] = ACTIONS(2680), + [anon_sym__Nullable] = ACTIONS(2680), + [anon_sym__Nullable_result] = ACTIONS(2680), + [anon_sym__Null_unspecified] = ACTIONS(2680), + [anon_sym___autoreleasing] = ACTIONS(2680), + [anon_sym___block] = ACTIONS(2680), + [anon_sym___bridge] = ACTIONS(2680), + [anon_sym___bridge_retained] = ACTIONS(2680), + [anon_sym___bridge_transfer] = ACTIONS(2680), + [anon_sym___complex] = ACTIONS(2680), + [anon_sym___const] = ACTIONS(2680), + [anon_sym___imag] = ACTIONS(2680), + [anon_sym___kindof] = ACTIONS(2680), + [anon_sym___nonnull] = ACTIONS(2680), + [anon_sym___nullable] = ACTIONS(2680), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2680), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2680), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2680), + [anon_sym___real] = ACTIONS(2680), + [anon_sym___strong] = ACTIONS(2680), + [anon_sym___unsafe_unretained] = ACTIONS(2680), + [anon_sym___unused] = ACTIONS(2680), + [anon_sym___weak] = ACTIONS(2680), + [anon_sym_alignas] = ACTIONS(2680), + [anon_sym__Alignas] = ACTIONS(2680), + [sym_primitive_type] = ACTIONS(2680), + [anon_sym_enum] = ACTIONS(2680), + [anon_sym_struct] = ACTIONS(2680), + [anon_sym_union] = ACTIONS(2680), + [anon_sym_if] = ACTIONS(2680), + [anon_sym_switch] = ACTIONS(2680), + [anon_sym_case] = ACTIONS(2680), + [anon_sym_default] = ACTIONS(2680), + [anon_sym_while] = ACTIONS(2680), + [anon_sym_do] = ACTIONS(2680), + [anon_sym_for] = ACTIONS(2680), + [anon_sym_in] = ACTIONS(2680), + [anon_sym_return] = ACTIONS(2680), + [anon_sym_break] = ACTIONS(2680), + [anon_sym_continue] = ACTIONS(2680), + [anon_sym_goto] = ACTIONS(2680), + [anon_sym_DASH_DASH] = ACTIONS(2682), + [anon_sym_PLUS_PLUS] = ACTIONS(2682), + [anon_sym_sizeof] = ACTIONS(2680), + [anon_sym___alignof__] = ACTIONS(2680), + [anon_sym___alignof] = ACTIONS(2680), + [anon_sym__alignof] = ACTIONS(2680), + [anon_sym_alignof] = ACTIONS(2680), + [anon_sym__Alignof] = ACTIONS(2680), + [anon_sym_offsetof] = ACTIONS(2680), + [anon_sym__Generic] = ACTIONS(2680), + [anon_sym_asm] = ACTIONS(2680), + [anon_sym___asm__] = ACTIONS(2680), + [anon_sym___asm] = ACTIONS(2680), + [sym_number_literal] = ACTIONS(2682), + [anon_sym_L_SQUOTE] = ACTIONS(2682), + [anon_sym_u_SQUOTE] = ACTIONS(2682), + [anon_sym_U_SQUOTE] = ACTIONS(2682), + [anon_sym_u8_SQUOTE] = ACTIONS(2682), + [anon_sym_SQUOTE] = ACTIONS(2682), + [anon_sym_AT] = ACTIONS(2680), + [anon_sym_DQUOTE] = ACTIONS(2682), + [anon_sym_L_DQUOTE] = ACTIONS(2682), + [anon_sym_u_DQUOTE] = ACTIONS(2682), + [anon_sym_U_DQUOTE] = ACTIONS(2682), + [anon_sym_u8_DQUOTE] = ACTIONS(2682), + [sym_true] = ACTIONS(2680), + [sym_false] = ACTIONS(2680), + [anon_sym_NULL] = ACTIONS(2680), + [anon_sym_nullptr] = ACTIONS(2680), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2680), + [anon_sym___typeof] = ACTIONS(2680), + [anon_sym_typeof] = ACTIONS(2680), + [anon_sym_ATimport] = ACTIONS(2682), + [aux_sym_preproc_undef_token1] = ACTIONS(2680), + [anon_sym_POUND] = ACTIONS(2680), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2680), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2680), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2680), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2680), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2680), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2680), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2680), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2680), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2680), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2680), + [anon_sym_NS_AVAILABLE] = ACTIONS(2680), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2680), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2680), + [anon_sym_API_AVAILABLE] = ACTIONS(2680), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2680), + [anon_sym_API_DEPRECATED] = ACTIONS(2680), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2680), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2680), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2680), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2680), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2680), + [anon_sym___deprecated_msg] = ACTIONS(2680), + [anon_sym___deprecated_enum_msg] = ACTIONS(2680), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2680), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2680), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2680), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2680), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2680), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2680), + [anon_sym_ATprotocol] = ACTIONS(2682), + [anon_sym_ATinterface] = ACTIONS(2682), + [anon_sym_ATimplementation] = ACTIONS(2682), + [anon_sym_ATcompatibility_alias] = ACTIONS(2682), + [anon_sym_ATselector] = ACTIONS(2682), + [anon_sym_ATavailable] = ACTIONS(2682), + [anon_sym___builtin_available] = ACTIONS(2680), + [anon_sym_va_arg] = ACTIONS(2680), + [anon_sym_ATencode] = ACTIONS(2682), + [anon_sym_BOOL] = ACTIONS(2680), + [anon_sym_IMP] = ACTIONS(2680), + [anon_sym_SEL] = ACTIONS(2680), + [anon_sym_Class] = ACTIONS(2680), + [anon_sym_id] = ACTIONS(2680), + }, + [1002] = { + [ts_builtin_sym_end] = ACTIONS(2686), + [sym_identifier] = ACTIONS(2684), + [aux_sym_preproc_include_token1] = ACTIONS(2684), + [aux_sym_preproc_include_token2] = ACTIONS(2684), + [aux_sym_preproc_def_token1] = ACTIONS(2684), + [aux_sym_preproc_if_token1] = ACTIONS(2684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2684), + [sym_preproc_directive] = ACTIONS(2684), + [anon_sym_LPAREN2] = ACTIONS(2686), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_CARET] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_SEMI] = ACTIONS(2686), + [anon_sym___extension__] = ACTIONS(2684), + [anon_sym_typedef] = ACTIONS(2684), + [anon_sym_extern] = ACTIONS(2684), + [anon_sym___attribute__] = ACTIONS(2684), + [anon_sym___attribute] = ACTIONS(2684), + [anon_sym_noreturn] = ACTIONS(2684), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym___declspec] = ACTIONS(2684), + [anon_sym___cdecl] = ACTIONS(2684), + [anon_sym___clrcall] = ACTIONS(2684), + [anon_sym___stdcall] = ACTIONS(2684), + [anon_sym___fastcall] = ACTIONS(2684), + [anon_sym___thiscall] = ACTIONS(2684), + [anon_sym___vectorcall] = ACTIONS(2684), + [anon_sym_LBRACE] = ACTIONS(2686), + [anon_sym_signed] = ACTIONS(2684), + [anon_sym_unsigned] = ACTIONS(2684), + [anon_sym_long] = ACTIONS(2684), + [anon_sym_short] = ACTIONS(2684), + [anon_sym_static] = ACTIONS(2684), + [anon_sym_ATautoreleasepool] = ACTIONS(2686), + [anon_sym_auto] = ACTIONS(2684), + [anon_sym_register] = ACTIONS(2684), + [anon_sym_inline] = ACTIONS(2684), + [anon_sym___inline] = ACTIONS(2684), + [anon_sym___inline__] = ACTIONS(2684), + [anon_sym___forceinline] = ACTIONS(2684), + [anon_sym_thread_local] = ACTIONS(2684), + [anon_sym___thread] = ACTIONS(2684), + [anon_sym_CG_EXTERN] = ACTIONS(2684), + [anon_sym_CG_INLINE] = ACTIONS(2684), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2684), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2684), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2684), + [anon_sym_IBOutlet] = ACTIONS(2684), + [anon_sym_IBInspectable] = ACTIONS(2684), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2684), + [anon_sym_NS_INLINE] = ACTIONS(2684), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2684), + [anon_sym_OBJC_EXPORT] = ACTIONS(2684), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2684), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2684), + [anon_sym_const] = ACTIONS(2684), + [anon_sym_constexpr] = ACTIONS(2684), + [anon_sym_volatile] = ACTIONS(2684), + [anon_sym_restrict] = ACTIONS(2684), + [anon_sym___restrict__] = ACTIONS(2684), + [anon_sym__Atomic] = ACTIONS(2684), + [anon_sym__Noreturn] = ACTIONS(2684), + [anon_sym__Nonnull] = ACTIONS(2684), + [anon_sym_nullable] = ACTIONS(2684), + [anon_sym__Complex] = ACTIONS(2684), + [anon_sym__Nullable] = ACTIONS(2684), + [anon_sym__Nullable_result] = ACTIONS(2684), + [anon_sym__Null_unspecified] = ACTIONS(2684), + [anon_sym___autoreleasing] = ACTIONS(2684), + [anon_sym___block] = ACTIONS(2684), + [anon_sym___bridge] = ACTIONS(2684), + [anon_sym___bridge_retained] = ACTIONS(2684), + [anon_sym___bridge_transfer] = ACTIONS(2684), + [anon_sym___complex] = ACTIONS(2684), + [anon_sym___const] = ACTIONS(2684), + [anon_sym___imag] = ACTIONS(2684), + [anon_sym___kindof] = ACTIONS(2684), + [anon_sym___nonnull] = ACTIONS(2684), + [anon_sym___nullable] = ACTIONS(2684), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2684), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2684), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2684), + [anon_sym___real] = ACTIONS(2684), + [anon_sym___strong] = ACTIONS(2684), + [anon_sym___unsafe_unretained] = ACTIONS(2684), + [anon_sym___unused] = ACTIONS(2684), + [anon_sym___weak] = ACTIONS(2684), + [anon_sym_alignas] = ACTIONS(2684), + [anon_sym__Alignas] = ACTIONS(2684), + [sym_primitive_type] = ACTIONS(2684), + [anon_sym_enum] = ACTIONS(2684), + [anon_sym_struct] = ACTIONS(2684), + [anon_sym_union] = ACTIONS(2684), + [anon_sym_if] = ACTIONS(2684), + [anon_sym_switch] = ACTIONS(2684), + [anon_sym_case] = ACTIONS(2684), + [anon_sym_default] = ACTIONS(2684), + [anon_sym_while] = ACTIONS(2684), + [anon_sym_do] = ACTIONS(2684), + [anon_sym_for] = ACTIONS(2684), + [anon_sym_in] = ACTIONS(2684), + [anon_sym_return] = ACTIONS(2684), + [anon_sym_break] = ACTIONS(2684), + [anon_sym_continue] = ACTIONS(2684), + [anon_sym_goto] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(2686), + [anon_sym_PLUS_PLUS] = ACTIONS(2686), + [anon_sym_sizeof] = ACTIONS(2684), + [anon_sym___alignof__] = ACTIONS(2684), + [anon_sym___alignof] = ACTIONS(2684), + [anon_sym__alignof] = ACTIONS(2684), + [anon_sym_alignof] = ACTIONS(2684), + [anon_sym__Alignof] = ACTIONS(2684), + [anon_sym_offsetof] = ACTIONS(2684), + [anon_sym__Generic] = ACTIONS(2684), + [anon_sym_asm] = ACTIONS(2684), + [anon_sym___asm__] = ACTIONS(2684), + [anon_sym___asm] = ACTIONS(2684), + [sym_number_literal] = ACTIONS(2686), + [anon_sym_L_SQUOTE] = ACTIONS(2686), + [anon_sym_u_SQUOTE] = ACTIONS(2686), + [anon_sym_U_SQUOTE] = ACTIONS(2686), + [anon_sym_u8_SQUOTE] = ACTIONS(2686), + [anon_sym_SQUOTE] = ACTIONS(2686), + [anon_sym_AT] = ACTIONS(2684), + [anon_sym_DQUOTE] = ACTIONS(2686), + [anon_sym_L_DQUOTE] = ACTIONS(2686), + [anon_sym_u_DQUOTE] = ACTIONS(2686), + [anon_sym_U_DQUOTE] = ACTIONS(2686), + [anon_sym_u8_DQUOTE] = ACTIONS(2686), + [sym_true] = ACTIONS(2684), + [sym_false] = ACTIONS(2684), + [anon_sym_NULL] = ACTIONS(2684), + [anon_sym_nullptr] = ACTIONS(2684), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2684), + [anon_sym___typeof] = ACTIONS(2684), + [anon_sym_typeof] = ACTIONS(2684), + [anon_sym_ATimport] = ACTIONS(2686), + [aux_sym_preproc_undef_token1] = ACTIONS(2684), + [anon_sym_POUND] = ACTIONS(2684), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2684), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2684), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2684), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2684), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2684), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2684), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2684), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2684), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2684), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2684), + [anon_sym_NS_AVAILABLE] = ACTIONS(2684), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2684), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2684), + [anon_sym_API_AVAILABLE] = ACTIONS(2684), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2684), + [anon_sym_API_DEPRECATED] = ACTIONS(2684), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2684), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2684), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2684), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2684), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2684), + [anon_sym___deprecated_msg] = ACTIONS(2684), + [anon_sym___deprecated_enum_msg] = ACTIONS(2684), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2684), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2684), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2684), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2684), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2684), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2684), + [anon_sym_ATprotocol] = ACTIONS(2686), + [anon_sym_ATinterface] = ACTIONS(2686), + [anon_sym_ATimplementation] = ACTIONS(2686), + [anon_sym_ATcompatibility_alias] = ACTIONS(2686), + [anon_sym_ATselector] = ACTIONS(2686), + [anon_sym_ATavailable] = ACTIONS(2686), + [anon_sym___builtin_available] = ACTIONS(2684), + [anon_sym_va_arg] = ACTIONS(2684), + [anon_sym_ATencode] = ACTIONS(2686), + [anon_sym_BOOL] = ACTIONS(2684), + [anon_sym_IMP] = ACTIONS(2684), + [anon_sym_SEL] = ACTIONS(2684), + [anon_sym_Class] = ACTIONS(2684), + [anon_sym_id] = ACTIONS(2684), + }, + [1003] = { + [ts_builtin_sym_end] = ACTIONS(2690), + [sym_identifier] = ACTIONS(2688), + [aux_sym_preproc_include_token1] = ACTIONS(2688), + [aux_sym_preproc_include_token2] = ACTIONS(2688), + [aux_sym_preproc_def_token1] = ACTIONS(2688), + [aux_sym_preproc_if_token1] = ACTIONS(2688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2688), + [sym_preproc_directive] = ACTIONS(2688), + [anon_sym_LPAREN2] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_TILDE] = ACTIONS(2690), + [anon_sym_DASH] = ACTIONS(2688), + [anon_sym_PLUS] = ACTIONS(2688), + [anon_sym_STAR] = ACTIONS(2690), + [anon_sym_CARET] = ACTIONS(2690), + [anon_sym_AMP] = ACTIONS(2690), + [anon_sym_SEMI] = ACTIONS(2690), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_typedef] = ACTIONS(2688), + [anon_sym_extern] = ACTIONS(2688), + [anon_sym___attribute__] = ACTIONS(2688), + [anon_sym___attribute] = ACTIONS(2688), + [anon_sym_noreturn] = ACTIONS(2688), + [anon_sym_LBRACK] = ACTIONS(2690), + [anon_sym___declspec] = ACTIONS(2688), + [anon_sym___cdecl] = ACTIONS(2688), + [anon_sym___clrcall] = ACTIONS(2688), + [anon_sym___stdcall] = ACTIONS(2688), + [anon_sym___fastcall] = ACTIONS(2688), + [anon_sym___thiscall] = ACTIONS(2688), + [anon_sym___vectorcall] = ACTIONS(2688), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_signed] = ACTIONS(2688), + [anon_sym_unsigned] = ACTIONS(2688), + [anon_sym_long] = ACTIONS(2688), + [anon_sym_short] = ACTIONS(2688), + [anon_sym_static] = ACTIONS(2688), + [anon_sym_ATautoreleasepool] = ACTIONS(2690), + [anon_sym_auto] = ACTIONS(2688), + [anon_sym_register] = ACTIONS(2688), + [anon_sym_inline] = ACTIONS(2688), + [anon_sym___inline] = ACTIONS(2688), + [anon_sym___inline__] = ACTIONS(2688), + [anon_sym___forceinline] = ACTIONS(2688), + [anon_sym_thread_local] = ACTIONS(2688), + [anon_sym___thread] = ACTIONS(2688), + [anon_sym_CG_EXTERN] = ACTIONS(2688), + [anon_sym_CG_INLINE] = ACTIONS(2688), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2688), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2688), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2688), + [anon_sym_IBOutlet] = ACTIONS(2688), + [anon_sym_IBInspectable] = ACTIONS(2688), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2688), + [anon_sym_NS_INLINE] = ACTIONS(2688), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2688), + [anon_sym_OBJC_EXPORT] = ACTIONS(2688), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2688), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2688), + [anon_sym_const] = ACTIONS(2688), + [anon_sym_constexpr] = ACTIONS(2688), + [anon_sym_volatile] = ACTIONS(2688), + [anon_sym_restrict] = ACTIONS(2688), + [anon_sym___restrict__] = ACTIONS(2688), + [anon_sym__Atomic] = ACTIONS(2688), + [anon_sym__Noreturn] = ACTIONS(2688), + [anon_sym__Nonnull] = ACTIONS(2688), + [anon_sym_nullable] = ACTIONS(2688), + [anon_sym__Complex] = ACTIONS(2688), + [anon_sym__Nullable] = ACTIONS(2688), + [anon_sym__Nullable_result] = ACTIONS(2688), + [anon_sym__Null_unspecified] = ACTIONS(2688), + [anon_sym___autoreleasing] = ACTIONS(2688), + [anon_sym___block] = ACTIONS(2688), + [anon_sym___bridge] = ACTIONS(2688), + [anon_sym___bridge_retained] = ACTIONS(2688), + [anon_sym___bridge_transfer] = ACTIONS(2688), + [anon_sym___complex] = ACTIONS(2688), + [anon_sym___const] = ACTIONS(2688), + [anon_sym___imag] = ACTIONS(2688), + [anon_sym___kindof] = ACTIONS(2688), + [anon_sym___nonnull] = ACTIONS(2688), + [anon_sym___nullable] = ACTIONS(2688), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2688), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2688), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2688), + [anon_sym___real] = ACTIONS(2688), + [anon_sym___strong] = ACTIONS(2688), + [anon_sym___unsafe_unretained] = ACTIONS(2688), + [anon_sym___unused] = ACTIONS(2688), + [anon_sym___weak] = ACTIONS(2688), + [anon_sym_alignas] = ACTIONS(2688), + [anon_sym__Alignas] = ACTIONS(2688), + [sym_primitive_type] = ACTIONS(2688), + [anon_sym_enum] = ACTIONS(2688), + [anon_sym_struct] = ACTIONS(2688), + [anon_sym_union] = ACTIONS(2688), + [anon_sym_if] = ACTIONS(2688), + [anon_sym_switch] = ACTIONS(2688), + [anon_sym_case] = ACTIONS(2688), + [anon_sym_default] = ACTIONS(2688), + [anon_sym_while] = ACTIONS(2688), + [anon_sym_do] = ACTIONS(2688), + [anon_sym_for] = ACTIONS(2688), + [anon_sym_in] = ACTIONS(2688), + [anon_sym_return] = ACTIONS(2688), + [anon_sym_break] = ACTIONS(2688), + [anon_sym_continue] = ACTIONS(2688), + [anon_sym_goto] = ACTIONS(2688), + [anon_sym_DASH_DASH] = ACTIONS(2690), + [anon_sym_PLUS_PLUS] = ACTIONS(2690), + [anon_sym_sizeof] = ACTIONS(2688), + [anon_sym___alignof__] = ACTIONS(2688), + [anon_sym___alignof] = ACTIONS(2688), + [anon_sym__alignof] = ACTIONS(2688), + [anon_sym_alignof] = ACTIONS(2688), + [anon_sym__Alignof] = ACTIONS(2688), + [anon_sym_offsetof] = ACTIONS(2688), + [anon_sym__Generic] = ACTIONS(2688), + [anon_sym_asm] = ACTIONS(2688), + [anon_sym___asm__] = ACTIONS(2688), + [anon_sym___asm] = ACTIONS(2688), + [sym_number_literal] = ACTIONS(2690), + [anon_sym_L_SQUOTE] = ACTIONS(2690), + [anon_sym_u_SQUOTE] = ACTIONS(2690), + [anon_sym_U_SQUOTE] = ACTIONS(2690), + [anon_sym_u8_SQUOTE] = ACTIONS(2690), + [anon_sym_SQUOTE] = ACTIONS(2690), + [anon_sym_AT] = ACTIONS(2688), + [anon_sym_DQUOTE] = ACTIONS(2690), + [anon_sym_L_DQUOTE] = ACTIONS(2690), + [anon_sym_u_DQUOTE] = ACTIONS(2690), + [anon_sym_U_DQUOTE] = ACTIONS(2690), + [anon_sym_u8_DQUOTE] = ACTIONS(2690), + [sym_true] = ACTIONS(2688), + [sym_false] = ACTIONS(2688), + [anon_sym_NULL] = ACTIONS(2688), + [anon_sym_nullptr] = ACTIONS(2688), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2688), + [anon_sym___typeof] = ACTIONS(2688), + [anon_sym_typeof] = ACTIONS(2688), + [anon_sym_ATimport] = ACTIONS(2690), + [aux_sym_preproc_undef_token1] = ACTIONS(2688), + [anon_sym_POUND] = ACTIONS(2688), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2688), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2688), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2688), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2688), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2688), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2688), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2688), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2688), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2688), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2688), + [anon_sym_NS_AVAILABLE] = ACTIONS(2688), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2688), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2688), + [anon_sym_API_AVAILABLE] = ACTIONS(2688), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2688), + [anon_sym_API_DEPRECATED] = ACTIONS(2688), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2688), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2688), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2688), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2688), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2688), + [anon_sym___deprecated_msg] = ACTIONS(2688), + [anon_sym___deprecated_enum_msg] = ACTIONS(2688), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2688), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2688), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2688), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2688), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2688), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2688), + [anon_sym_ATprotocol] = ACTIONS(2690), + [anon_sym_ATinterface] = ACTIONS(2690), + [anon_sym_ATimplementation] = ACTIONS(2690), + [anon_sym_ATcompatibility_alias] = ACTIONS(2690), + [anon_sym_ATselector] = ACTIONS(2690), + [anon_sym_ATavailable] = ACTIONS(2690), + [anon_sym___builtin_available] = ACTIONS(2688), + [anon_sym_va_arg] = ACTIONS(2688), + [anon_sym_ATencode] = ACTIONS(2690), + [anon_sym_BOOL] = ACTIONS(2688), + [anon_sym_IMP] = ACTIONS(2688), + [anon_sym_SEL] = ACTIONS(2688), + [anon_sym_Class] = ACTIONS(2688), + [anon_sym_id] = ACTIONS(2688), + }, + [1004] = { + [ts_builtin_sym_end] = ACTIONS(2866), + [sym_identifier] = ACTIONS(2864), + [aux_sym_preproc_include_token1] = ACTIONS(2864), + [aux_sym_preproc_include_token2] = ACTIONS(2864), + [aux_sym_preproc_def_token1] = ACTIONS(2864), + [aux_sym_preproc_if_token1] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2864), + [sym_preproc_directive] = ACTIONS(2864), + [anon_sym_LPAREN2] = ACTIONS(2866), + [anon_sym_BANG] = ACTIONS(2866), + [anon_sym_TILDE] = ACTIONS(2866), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_CARET] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_SEMI] = ACTIONS(2866), + [anon_sym___extension__] = ACTIONS(2864), + [anon_sym_typedef] = ACTIONS(2864), + [anon_sym_extern] = ACTIONS(2864), + [anon_sym___attribute__] = ACTIONS(2864), + [anon_sym___attribute] = ACTIONS(2864), + [anon_sym_noreturn] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2866), + [anon_sym___declspec] = ACTIONS(2864), + [anon_sym___cdecl] = ACTIONS(2864), + [anon_sym___clrcall] = ACTIONS(2864), + [anon_sym___stdcall] = ACTIONS(2864), + [anon_sym___fastcall] = ACTIONS(2864), + [anon_sym___thiscall] = ACTIONS(2864), + [anon_sym___vectorcall] = ACTIONS(2864), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_signed] = ACTIONS(2864), + [anon_sym_unsigned] = ACTIONS(2864), + [anon_sym_long] = ACTIONS(2864), + [anon_sym_short] = ACTIONS(2864), + [anon_sym_static] = ACTIONS(2864), + [anon_sym_ATautoreleasepool] = ACTIONS(2866), + [anon_sym_auto] = ACTIONS(2864), + [anon_sym_register] = ACTIONS(2864), + [anon_sym_inline] = ACTIONS(2864), + [anon_sym___inline] = ACTIONS(2864), + [anon_sym___inline__] = ACTIONS(2864), + [anon_sym___forceinline] = ACTIONS(2864), + [anon_sym_thread_local] = ACTIONS(2864), + [anon_sym___thread] = ACTIONS(2864), + [anon_sym_CG_EXTERN] = ACTIONS(2864), + [anon_sym_CG_INLINE] = ACTIONS(2864), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2864), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2864), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2864), + [anon_sym_IBOutlet] = ACTIONS(2864), + [anon_sym_IBInspectable] = ACTIONS(2864), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2864), + [anon_sym_NS_INLINE] = ACTIONS(2864), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2864), + [anon_sym_OBJC_EXPORT] = ACTIONS(2864), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2864), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2864), + [anon_sym_const] = ACTIONS(2864), + [anon_sym_constexpr] = ACTIONS(2864), + [anon_sym_volatile] = ACTIONS(2864), + [anon_sym_restrict] = ACTIONS(2864), + [anon_sym___restrict__] = ACTIONS(2864), + [anon_sym__Atomic] = ACTIONS(2864), + [anon_sym__Noreturn] = ACTIONS(2864), + [anon_sym__Nonnull] = ACTIONS(2864), + [anon_sym_nullable] = ACTIONS(2864), + [anon_sym__Complex] = ACTIONS(2864), + [anon_sym__Nullable] = ACTIONS(2864), + [anon_sym__Nullable_result] = ACTIONS(2864), + [anon_sym__Null_unspecified] = ACTIONS(2864), + [anon_sym___autoreleasing] = ACTIONS(2864), + [anon_sym___block] = ACTIONS(2864), + [anon_sym___bridge] = ACTIONS(2864), + [anon_sym___bridge_retained] = ACTIONS(2864), + [anon_sym___bridge_transfer] = ACTIONS(2864), + [anon_sym___complex] = ACTIONS(2864), + [anon_sym___const] = ACTIONS(2864), + [anon_sym___imag] = ACTIONS(2864), + [anon_sym___kindof] = ACTIONS(2864), + [anon_sym___nonnull] = ACTIONS(2864), + [anon_sym___nullable] = ACTIONS(2864), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2864), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2864), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2864), + [anon_sym___real] = ACTIONS(2864), + [anon_sym___strong] = ACTIONS(2864), + [anon_sym___unsafe_unretained] = ACTIONS(2864), + [anon_sym___unused] = ACTIONS(2864), + [anon_sym___weak] = ACTIONS(2864), + [anon_sym_alignas] = ACTIONS(2864), + [anon_sym__Alignas] = ACTIONS(2864), + [sym_primitive_type] = ACTIONS(2864), + [anon_sym_enum] = ACTIONS(2864), + [anon_sym_struct] = ACTIONS(2864), + [anon_sym_union] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_switch] = ACTIONS(2864), + [anon_sym_case] = ACTIONS(2864), + [anon_sym_default] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_in] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_break] = ACTIONS(2864), + [anon_sym_continue] = ACTIONS(2864), + [anon_sym_goto] = ACTIONS(2864), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [anon_sym_PLUS_PLUS] = ACTIONS(2866), + [anon_sym_sizeof] = ACTIONS(2864), + [anon_sym___alignof__] = ACTIONS(2864), + [anon_sym___alignof] = ACTIONS(2864), + [anon_sym__alignof] = ACTIONS(2864), + [anon_sym_alignof] = ACTIONS(2864), + [anon_sym__Alignof] = ACTIONS(2864), + [anon_sym_offsetof] = ACTIONS(2864), + [anon_sym__Generic] = ACTIONS(2864), + [anon_sym_asm] = ACTIONS(2864), + [anon_sym___asm__] = ACTIONS(2864), + [anon_sym___asm] = ACTIONS(2864), + [sym_number_literal] = ACTIONS(2866), + [anon_sym_L_SQUOTE] = ACTIONS(2866), + [anon_sym_u_SQUOTE] = ACTIONS(2866), + [anon_sym_U_SQUOTE] = ACTIONS(2866), + [anon_sym_u8_SQUOTE] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_AT] = ACTIONS(2864), + [anon_sym_DQUOTE] = ACTIONS(2866), + [anon_sym_L_DQUOTE] = ACTIONS(2866), + [anon_sym_u_DQUOTE] = ACTIONS(2866), + [anon_sym_U_DQUOTE] = ACTIONS(2866), + [anon_sym_u8_DQUOTE] = ACTIONS(2866), + [sym_true] = ACTIONS(2864), + [sym_false] = ACTIONS(2864), + [anon_sym_NULL] = ACTIONS(2864), + [anon_sym_nullptr] = ACTIONS(2864), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2864), + [anon_sym___typeof] = ACTIONS(2864), + [anon_sym_typeof] = ACTIONS(2864), + [anon_sym_ATimport] = ACTIONS(2866), + [aux_sym_preproc_undef_token1] = ACTIONS(2864), + [anon_sym_POUND] = ACTIONS(2864), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2864), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2864), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2864), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2864), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2864), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2864), + [anon_sym_NS_AVAILABLE] = ACTIONS(2864), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2864), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_API_AVAILABLE] = ACTIONS(2864), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_API_DEPRECATED] = ACTIONS(2864), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2864), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2864), + [anon_sym___deprecated_msg] = ACTIONS(2864), + [anon_sym___deprecated_enum_msg] = ACTIONS(2864), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2864), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2864), + [anon_sym_ATprotocol] = ACTIONS(2866), + [anon_sym_ATinterface] = ACTIONS(2866), + [anon_sym_ATimplementation] = ACTIONS(2866), + [anon_sym_ATcompatibility_alias] = ACTIONS(2866), + [anon_sym_ATselector] = ACTIONS(2866), + [anon_sym_ATavailable] = ACTIONS(2866), + [anon_sym___builtin_available] = ACTIONS(2864), + [anon_sym_va_arg] = ACTIONS(2864), + [anon_sym_ATencode] = ACTIONS(2866), + [anon_sym_BOOL] = ACTIONS(2864), + [anon_sym_IMP] = ACTIONS(2864), + [anon_sym_SEL] = ACTIONS(2864), + [anon_sym_Class] = ACTIONS(2864), + [anon_sym_id] = ACTIONS(2864), + }, + [1005] = { + [ts_builtin_sym_end] = ACTIONS(2952), + [sym_identifier] = ACTIONS(2955), + [aux_sym_preproc_include_token1] = ACTIONS(2955), + [aux_sym_preproc_include_token2] = ACTIONS(2955), + [aux_sym_preproc_def_token1] = ACTIONS(2955), + [aux_sym_preproc_if_token1] = ACTIONS(2955), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2955), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2955), + [sym_preproc_directive] = ACTIONS(2955), + [anon_sym_LPAREN2] = ACTIONS(2952), + [anon_sym_BANG] = ACTIONS(2952), + [anon_sym_TILDE] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2952), + [anon_sym_CARET] = ACTIONS(2952), + [anon_sym_AMP] = ACTIONS(2952), + [anon_sym_SEMI] = ACTIONS(2952), + [anon_sym___extension__] = ACTIONS(2955), + [anon_sym_typedef] = ACTIONS(2955), + [anon_sym_extern] = ACTIONS(2955), + [anon_sym___attribute__] = ACTIONS(2955), + [anon_sym___attribute] = ACTIONS(2955), + [anon_sym_noreturn] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2952), + [anon_sym___declspec] = ACTIONS(2955), + [anon_sym___cdecl] = ACTIONS(2955), + [anon_sym___clrcall] = ACTIONS(2955), + [anon_sym___stdcall] = ACTIONS(2955), + [anon_sym___fastcall] = ACTIONS(2955), + [anon_sym___thiscall] = ACTIONS(2955), + [anon_sym___vectorcall] = ACTIONS(2955), + [anon_sym_LBRACE] = ACTIONS(2952), + [anon_sym_signed] = ACTIONS(2955), + [anon_sym_unsigned] = ACTIONS(2955), + [anon_sym_long] = ACTIONS(2955), + [anon_sym_short] = ACTIONS(2955), + [anon_sym_static] = ACTIONS(2955), + [anon_sym_ATautoreleasepool] = ACTIONS(2952), + [anon_sym_auto] = ACTIONS(2955), + [anon_sym_register] = ACTIONS(2955), + [anon_sym_inline] = ACTIONS(2955), + [anon_sym___inline] = ACTIONS(2955), + [anon_sym___inline__] = ACTIONS(2955), + [anon_sym___forceinline] = ACTIONS(2955), + [anon_sym_thread_local] = ACTIONS(2955), + [anon_sym___thread] = ACTIONS(2955), + [anon_sym_CG_EXTERN] = ACTIONS(2955), + [anon_sym_CG_INLINE] = ACTIONS(2955), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2955), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2955), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2955), + [anon_sym_IBOutlet] = ACTIONS(2955), + [anon_sym_IBInspectable] = ACTIONS(2955), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2955), + [anon_sym_NS_INLINE] = ACTIONS(2955), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2955), + [anon_sym_OBJC_EXPORT] = ACTIONS(2955), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2955), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2955), + [anon_sym_const] = ACTIONS(2955), + [anon_sym_constexpr] = ACTIONS(2955), + [anon_sym_volatile] = ACTIONS(2955), + [anon_sym_restrict] = ACTIONS(2955), + [anon_sym___restrict__] = ACTIONS(2955), + [anon_sym__Atomic] = ACTIONS(2955), + [anon_sym__Noreturn] = ACTIONS(2955), + [anon_sym__Nonnull] = ACTIONS(2955), + [anon_sym_nullable] = ACTIONS(2955), + [anon_sym__Complex] = ACTIONS(2955), + [anon_sym__Nullable] = ACTIONS(2955), + [anon_sym__Nullable_result] = ACTIONS(2955), + [anon_sym__Null_unspecified] = ACTIONS(2955), + [anon_sym___autoreleasing] = ACTIONS(2955), + [anon_sym___block] = ACTIONS(2955), + [anon_sym___bridge] = ACTIONS(2955), + [anon_sym___bridge_retained] = ACTIONS(2955), + [anon_sym___bridge_transfer] = ACTIONS(2955), + [anon_sym___complex] = ACTIONS(2955), + [anon_sym___const] = ACTIONS(2955), + [anon_sym___imag] = ACTIONS(2955), + [anon_sym___kindof] = ACTIONS(2955), + [anon_sym___nonnull] = ACTIONS(2955), + [anon_sym___nullable] = ACTIONS(2955), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2955), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2955), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2955), + [anon_sym___real] = ACTIONS(2955), + [anon_sym___strong] = ACTIONS(2955), + [anon_sym___unsafe_unretained] = ACTIONS(2955), + [anon_sym___unused] = ACTIONS(2955), + [anon_sym___weak] = ACTIONS(2955), + [anon_sym_alignas] = ACTIONS(2955), + [anon_sym__Alignas] = ACTIONS(2955), + [sym_primitive_type] = ACTIONS(2955), + [anon_sym_enum] = ACTIONS(2955), + [anon_sym_struct] = ACTIONS(2955), + [anon_sym_union] = ACTIONS(2955), + [anon_sym_if] = ACTIONS(2955), + [anon_sym_switch] = ACTIONS(2955), + [anon_sym_case] = ACTIONS(2955), + [anon_sym_default] = ACTIONS(2955), + [anon_sym_while] = ACTIONS(2955), + [anon_sym_do] = ACTIONS(2955), + [anon_sym_for] = ACTIONS(2955), + [anon_sym_in] = ACTIONS(2955), + [anon_sym_return] = ACTIONS(2955), + [anon_sym_break] = ACTIONS(2955), + [anon_sym_continue] = ACTIONS(2955), + [anon_sym_goto] = ACTIONS(2955), + [anon_sym_DASH_DASH] = ACTIONS(2952), + [anon_sym_PLUS_PLUS] = ACTIONS(2952), + [anon_sym_sizeof] = ACTIONS(2955), + [anon_sym___alignof__] = ACTIONS(2955), + [anon_sym___alignof] = ACTIONS(2955), + [anon_sym__alignof] = ACTIONS(2955), + [anon_sym_alignof] = ACTIONS(2955), + [anon_sym__Alignof] = ACTIONS(2955), + [anon_sym_offsetof] = ACTIONS(2955), + [anon_sym__Generic] = ACTIONS(2955), + [anon_sym_asm] = ACTIONS(2955), + [anon_sym___asm__] = ACTIONS(2955), + [anon_sym___asm] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(2952), + [anon_sym_L_SQUOTE] = ACTIONS(2952), + [anon_sym_u_SQUOTE] = ACTIONS(2952), + [anon_sym_U_SQUOTE] = ACTIONS(2952), + [anon_sym_u8_SQUOTE] = ACTIONS(2952), + [anon_sym_SQUOTE] = ACTIONS(2952), + [anon_sym_AT] = ACTIONS(2955), + [anon_sym_DQUOTE] = ACTIONS(2952), + [anon_sym_L_DQUOTE] = ACTIONS(2952), + [anon_sym_u_DQUOTE] = ACTIONS(2952), + [anon_sym_U_DQUOTE] = ACTIONS(2952), + [anon_sym_u8_DQUOTE] = ACTIONS(2952), + [sym_true] = ACTIONS(2955), + [sym_false] = ACTIONS(2955), + [anon_sym_NULL] = ACTIONS(2955), + [anon_sym_nullptr] = ACTIONS(2955), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2955), + [anon_sym___typeof] = ACTIONS(2955), + [anon_sym_typeof] = ACTIONS(2955), + [anon_sym_ATimport] = ACTIONS(2952), + [aux_sym_preproc_undef_token1] = ACTIONS(2955), + [anon_sym_POUND] = ACTIONS(2955), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2955), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2955), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2955), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2955), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2955), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2955), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2955), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2955), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2955), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2955), + [anon_sym_NS_AVAILABLE] = ACTIONS(2955), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2955), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2955), + [anon_sym_API_AVAILABLE] = ACTIONS(2955), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2955), + [anon_sym_API_DEPRECATED] = ACTIONS(2955), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2955), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2955), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2955), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2955), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2955), + [anon_sym___deprecated_msg] = ACTIONS(2955), + [anon_sym___deprecated_enum_msg] = ACTIONS(2955), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2955), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2955), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2955), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2955), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2955), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2955), + [anon_sym_ATprotocol] = ACTIONS(2952), + [anon_sym_ATinterface] = ACTIONS(2952), + [anon_sym_ATimplementation] = ACTIONS(2952), + [anon_sym_ATcompatibility_alias] = ACTIONS(2952), + [anon_sym_ATselector] = ACTIONS(2952), + [anon_sym_ATavailable] = ACTIONS(2952), + [anon_sym___builtin_available] = ACTIONS(2955), + [anon_sym_va_arg] = ACTIONS(2955), + [anon_sym_ATencode] = ACTIONS(2952), + [anon_sym_BOOL] = ACTIONS(2955), + [anon_sym_IMP] = ACTIONS(2955), + [anon_sym_SEL] = ACTIONS(2955), + [anon_sym_Class] = ACTIONS(2955), + [anon_sym_id] = ACTIONS(2955), + }, + [1006] = { + [ts_builtin_sym_end] = ACTIONS(2694), + [sym_identifier] = ACTIONS(2692), + [aux_sym_preproc_include_token1] = ACTIONS(2692), + [aux_sym_preproc_include_token2] = ACTIONS(2692), + [aux_sym_preproc_def_token1] = ACTIONS(2692), + [aux_sym_preproc_if_token1] = ACTIONS(2692), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2692), + [sym_preproc_directive] = ACTIONS(2692), + [anon_sym_LPAREN2] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2694), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2692), + [anon_sym_PLUS] = ACTIONS(2692), + [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_CARET] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_SEMI] = ACTIONS(2694), + [anon_sym___extension__] = ACTIONS(2692), + [anon_sym_typedef] = ACTIONS(2692), + [anon_sym_extern] = ACTIONS(2692), + [anon_sym___attribute__] = ACTIONS(2692), + [anon_sym___attribute] = ACTIONS(2692), + [anon_sym_noreturn] = ACTIONS(2692), + [anon_sym_LBRACK] = ACTIONS(2694), + [anon_sym___declspec] = ACTIONS(2692), + [anon_sym___cdecl] = ACTIONS(2692), + [anon_sym___clrcall] = ACTIONS(2692), + [anon_sym___stdcall] = ACTIONS(2692), + [anon_sym___fastcall] = ACTIONS(2692), + [anon_sym___thiscall] = ACTIONS(2692), + [anon_sym___vectorcall] = ACTIONS(2692), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_signed] = ACTIONS(2692), + [anon_sym_unsigned] = ACTIONS(2692), + [anon_sym_long] = ACTIONS(2692), + [anon_sym_short] = ACTIONS(2692), + [anon_sym_static] = ACTIONS(2692), + [anon_sym_ATautoreleasepool] = ACTIONS(2694), + [anon_sym_auto] = ACTIONS(2692), + [anon_sym_register] = ACTIONS(2692), + [anon_sym_inline] = ACTIONS(2692), + [anon_sym___inline] = ACTIONS(2692), + [anon_sym___inline__] = ACTIONS(2692), + [anon_sym___forceinline] = ACTIONS(2692), + [anon_sym_thread_local] = ACTIONS(2692), + [anon_sym___thread] = ACTIONS(2692), + [anon_sym_CG_EXTERN] = ACTIONS(2692), + [anon_sym_CG_INLINE] = ACTIONS(2692), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2692), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2692), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2692), + [anon_sym_IBOutlet] = ACTIONS(2692), + [anon_sym_IBInspectable] = ACTIONS(2692), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2692), + [anon_sym_NS_INLINE] = ACTIONS(2692), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2692), + [anon_sym_OBJC_EXPORT] = ACTIONS(2692), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2692), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2692), + [anon_sym_const] = ACTIONS(2692), + [anon_sym_constexpr] = ACTIONS(2692), + [anon_sym_volatile] = ACTIONS(2692), + [anon_sym_restrict] = ACTIONS(2692), + [anon_sym___restrict__] = ACTIONS(2692), + [anon_sym__Atomic] = ACTIONS(2692), + [anon_sym__Noreturn] = ACTIONS(2692), + [anon_sym__Nonnull] = ACTIONS(2692), + [anon_sym_nullable] = ACTIONS(2692), + [anon_sym__Complex] = ACTIONS(2692), + [anon_sym__Nullable] = ACTIONS(2692), + [anon_sym__Nullable_result] = ACTIONS(2692), + [anon_sym__Null_unspecified] = ACTIONS(2692), + [anon_sym___autoreleasing] = ACTIONS(2692), + [anon_sym___block] = ACTIONS(2692), + [anon_sym___bridge] = ACTIONS(2692), + [anon_sym___bridge_retained] = ACTIONS(2692), + [anon_sym___bridge_transfer] = ACTIONS(2692), + [anon_sym___complex] = ACTIONS(2692), + [anon_sym___const] = ACTIONS(2692), + [anon_sym___imag] = ACTIONS(2692), + [anon_sym___kindof] = ACTIONS(2692), + [anon_sym___nonnull] = ACTIONS(2692), + [anon_sym___nullable] = ACTIONS(2692), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2692), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2692), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2692), + [anon_sym___real] = ACTIONS(2692), + [anon_sym___strong] = ACTIONS(2692), + [anon_sym___unsafe_unretained] = ACTIONS(2692), + [anon_sym___unused] = ACTIONS(2692), + [anon_sym___weak] = ACTIONS(2692), + [anon_sym_alignas] = ACTIONS(2692), + [anon_sym__Alignas] = ACTIONS(2692), + [sym_primitive_type] = ACTIONS(2692), + [anon_sym_enum] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_union] = ACTIONS(2692), + [anon_sym_if] = ACTIONS(2692), + [anon_sym_switch] = ACTIONS(2692), + [anon_sym_case] = ACTIONS(2692), + [anon_sym_default] = ACTIONS(2692), + [anon_sym_while] = ACTIONS(2692), + [anon_sym_do] = ACTIONS(2692), + [anon_sym_for] = ACTIONS(2692), + [anon_sym_in] = ACTIONS(2692), + [anon_sym_return] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_goto] = ACTIONS(2692), + [anon_sym_DASH_DASH] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2694), + [anon_sym_sizeof] = ACTIONS(2692), + [anon_sym___alignof__] = ACTIONS(2692), + [anon_sym___alignof] = ACTIONS(2692), + [anon_sym__alignof] = ACTIONS(2692), + [anon_sym_alignof] = ACTIONS(2692), + [anon_sym__Alignof] = ACTIONS(2692), + [anon_sym_offsetof] = ACTIONS(2692), + [anon_sym__Generic] = ACTIONS(2692), + [anon_sym_asm] = ACTIONS(2692), + [anon_sym___asm__] = ACTIONS(2692), + [anon_sym___asm] = ACTIONS(2692), + [sym_number_literal] = ACTIONS(2694), + [anon_sym_L_SQUOTE] = ACTIONS(2694), + [anon_sym_u_SQUOTE] = ACTIONS(2694), + [anon_sym_U_SQUOTE] = ACTIONS(2694), + [anon_sym_u8_SQUOTE] = ACTIONS(2694), + [anon_sym_SQUOTE] = ACTIONS(2694), + [anon_sym_AT] = ACTIONS(2692), + [anon_sym_DQUOTE] = ACTIONS(2694), + [anon_sym_L_DQUOTE] = ACTIONS(2694), + [anon_sym_u_DQUOTE] = ACTIONS(2694), + [anon_sym_U_DQUOTE] = ACTIONS(2694), + [anon_sym_u8_DQUOTE] = ACTIONS(2694), + [sym_true] = ACTIONS(2692), + [sym_false] = ACTIONS(2692), + [anon_sym_NULL] = ACTIONS(2692), + [anon_sym_nullptr] = ACTIONS(2692), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2692), + [anon_sym___typeof] = ACTIONS(2692), + [anon_sym_typeof] = ACTIONS(2692), + [anon_sym_ATimport] = ACTIONS(2694), + [aux_sym_preproc_undef_token1] = ACTIONS(2692), + [anon_sym_POUND] = ACTIONS(2692), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2692), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2692), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2692), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2692), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2692), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2692), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2692), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2692), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2692), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2692), + [anon_sym_NS_AVAILABLE] = ACTIONS(2692), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2692), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2692), + [anon_sym_API_AVAILABLE] = ACTIONS(2692), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2692), + [anon_sym_API_DEPRECATED] = ACTIONS(2692), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2692), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2692), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2692), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2692), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2692), + [anon_sym___deprecated_msg] = ACTIONS(2692), + [anon_sym___deprecated_enum_msg] = ACTIONS(2692), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2692), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2692), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2692), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2692), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2692), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2692), + [anon_sym_ATprotocol] = ACTIONS(2694), + [anon_sym_ATinterface] = ACTIONS(2694), + [anon_sym_ATimplementation] = ACTIONS(2694), + [anon_sym_ATcompatibility_alias] = ACTIONS(2694), + [anon_sym_ATselector] = ACTIONS(2694), + [anon_sym_ATavailable] = ACTIONS(2694), + [anon_sym___builtin_available] = ACTIONS(2692), + [anon_sym_va_arg] = ACTIONS(2692), + [anon_sym_ATencode] = ACTIONS(2694), + [anon_sym_BOOL] = ACTIONS(2692), + [anon_sym_IMP] = ACTIONS(2692), + [anon_sym_SEL] = ACTIONS(2692), + [anon_sym_Class] = ACTIONS(2692), + [anon_sym_id] = ACTIONS(2692), + }, + [1007] = { + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_include_token2] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_CARET] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym___attribute] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_ATautoreleasepool] = ACTIONS(2862), + [anon_sym_auto] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_CG_EXTERN] = ACTIONS(2860), + [anon_sym_CG_INLINE] = ACTIONS(2860), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2860), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2860), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2860), + [anon_sym_IBOutlet] = ACTIONS(2860), + [anon_sym_IBInspectable] = ACTIONS(2860), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2860), + [anon_sym_NS_INLINE] = ACTIONS(2860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2860), + [anon_sym_OBJC_EXPORT] = ACTIONS(2860), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2860), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym__Nonnull] = ACTIONS(2860), + [anon_sym_nullable] = ACTIONS(2860), + [anon_sym__Complex] = ACTIONS(2860), + [anon_sym__Nullable] = ACTIONS(2860), + [anon_sym__Nullable_result] = ACTIONS(2860), + [anon_sym__Null_unspecified] = ACTIONS(2860), + [anon_sym___autoreleasing] = ACTIONS(2860), + [anon_sym___block] = ACTIONS(2860), + [anon_sym___bridge] = ACTIONS(2860), + [anon_sym___bridge_retained] = ACTIONS(2860), + [anon_sym___bridge_transfer] = ACTIONS(2860), + [anon_sym___complex] = ACTIONS(2860), + [anon_sym___const] = ACTIONS(2860), + [anon_sym___imag] = ACTIONS(2860), + [anon_sym___kindof] = ACTIONS(2860), + [anon_sym___nonnull] = ACTIONS(2860), + [anon_sym___nullable] = ACTIONS(2860), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2860), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2860), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2860), + [anon_sym___real] = ACTIONS(2860), + [anon_sym___strong] = ACTIONS(2860), + [anon_sym___unsafe_unretained] = ACTIONS(2860), + [anon_sym___unused] = ACTIONS(2860), + [anon_sym___weak] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym__Alignas] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_in] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [anon_sym___asm] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_AT] = ACTIONS(2860), + [anon_sym_DQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2860), + [anon_sym___typeof] = ACTIONS(2860), + [anon_sym_typeof] = ACTIONS(2860), + [anon_sym_ATimport] = ACTIONS(2862), + [aux_sym_preproc_undef_token1] = ACTIONS(2860), + [anon_sym_POUND] = ACTIONS(2860), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2860), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2860), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2860), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2860), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2860), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2860), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2860), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2860), + [anon_sym_NS_AVAILABLE] = ACTIONS(2860), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2860), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_API_AVAILABLE] = ACTIONS(2860), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_API_DEPRECATED] = ACTIONS(2860), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2860), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2860), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2860), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2860), + [anon_sym___deprecated_msg] = ACTIONS(2860), + [anon_sym___deprecated_enum_msg] = ACTIONS(2860), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2860), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2860), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2860), + [anon_sym_ATprotocol] = ACTIONS(2862), + [anon_sym_ATinterface] = ACTIONS(2862), + [anon_sym_ATimplementation] = ACTIONS(2862), + [anon_sym_ATcompatibility_alias] = ACTIONS(2862), + [anon_sym_ATselector] = ACTIONS(2862), + [anon_sym_ATavailable] = ACTIONS(2862), + [anon_sym___builtin_available] = ACTIONS(2860), + [anon_sym_va_arg] = ACTIONS(2860), + [anon_sym_ATencode] = ACTIONS(2862), + [anon_sym_BOOL] = ACTIONS(2860), + [anon_sym_IMP] = ACTIONS(2860), + [anon_sym_SEL] = ACTIONS(2860), + [anon_sym_Class] = ACTIONS(2860), + [anon_sym_id] = ACTIONS(2860), + }, + [1008] = { + [ts_builtin_sym_end] = ACTIONS(2698), + [sym_identifier] = ACTIONS(2696), + [aux_sym_preproc_include_token1] = ACTIONS(2696), + [aux_sym_preproc_include_token2] = ACTIONS(2696), + [aux_sym_preproc_def_token1] = ACTIONS(2696), + [aux_sym_preproc_if_token1] = ACTIONS(2696), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2696), + [sym_preproc_directive] = ACTIONS(2696), + [anon_sym_LPAREN2] = ACTIONS(2698), + [anon_sym_BANG] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2698), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_CARET] = ACTIONS(2698), + [anon_sym_AMP] = ACTIONS(2698), + [anon_sym_SEMI] = ACTIONS(2698), + [anon_sym___extension__] = ACTIONS(2696), + [anon_sym_typedef] = ACTIONS(2696), + [anon_sym_extern] = ACTIONS(2696), + [anon_sym___attribute__] = ACTIONS(2696), + [anon_sym___attribute] = ACTIONS(2696), + [anon_sym_noreturn] = ACTIONS(2696), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym___declspec] = ACTIONS(2696), + [anon_sym___cdecl] = ACTIONS(2696), + [anon_sym___clrcall] = ACTIONS(2696), + [anon_sym___stdcall] = ACTIONS(2696), + [anon_sym___fastcall] = ACTIONS(2696), + [anon_sym___thiscall] = ACTIONS(2696), + [anon_sym___vectorcall] = ACTIONS(2696), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_signed] = ACTIONS(2696), + [anon_sym_unsigned] = ACTIONS(2696), + [anon_sym_long] = ACTIONS(2696), + [anon_sym_short] = ACTIONS(2696), + [anon_sym_static] = ACTIONS(2696), + [anon_sym_ATautoreleasepool] = ACTIONS(2698), + [anon_sym_auto] = ACTIONS(2696), + [anon_sym_register] = ACTIONS(2696), + [anon_sym_inline] = ACTIONS(2696), + [anon_sym___inline] = ACTIONS(2696), + [anon_sym___inline__] = ACTIONS(2696), + [anon_sym___forceinline] = ACTIONS(2696), + [anon_sym_thread_local] = ACTIONS(2696), + [anon_sym___thread] = ACTIONS(2696), + [anon_sym_CG_EXTERN] = ACTIONS(2696), + [anon_sym_CG_INLINE] = ACTIONS(2696), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2696), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2696), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2696), + [anon_sym_IBOutlet] = ACTIONS(2696), + [anon_sym_IBInspectable] = ACTIONS(2696), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2696), + [anon_sym_NS_INLINE] = ACTIONS(2696), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2696), + [anon_sym_OBJC_EXPORT] = ACTIONS(2696), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2696), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2696), + [anon_sym_const] = ACTIONS(2696), + [anon_sym_constexpr] = ACTIONS(2696), + [anon_sym_volatile] = ACTIONS(2696), + [anon_sym_restrict] = ACTIONS(2696), + [anon_sym___restrict__] = ACTIONS(2696), + [anon_sym__Atomic] = ACTIONS(2696), + [anon_sym__Noreturn] = ACTIONS(2696), + [anon_sym__Nonnull] = ACTIONS(2696), + [anon_sym_nullable] = ACTIONS(2696), + [anon_sym__Complex] = ACTIONS(2696), + [anon_sym__Nullable] = ACTIONS(2696), + [anon_sym__Nullable_result] = ACTIONS(2696), + [anon_sym__Null_unspecified] = ACTIONS(2696), + [anon_sym___autoreleasing] = ACTIONS(2696), + [anon_sym___block] = ACTIONS(2696), + [anon_sym___bridge] = ACTIONS(2696), + [anon_sym___bridge_retained] = ACTIONS(2696), + [anon_sym___bridge_transfer] = ACTIONS(2696), + [anon_sym___complex] = ACTIONS(2696), + [anon_sym___const] = ACTIONS(2696), + [anon_sym___imag] = ACTIONS(2696), + [anon_sym___kindof] = ACTIONS(2696), + [anon_sym___nonnull] = ACTIONS(2696), + [anon_sym___nullable] = ACTIONS(2696), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2696), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2696), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2696), + [anon_sym___real] = ACTIONS(2696), + [anon_sym___strong] = ACTIONS(2696), + [anon_sym___unsafe_unretained] = ACTIONS(2696), + [anon_sym___unused] = ACTIONS(2696), + [anon_sym___weak] = ACTIONS(2696), + [anon_sym_alignas] = ACTIONS(2696), + [anon_sym__Alignas] = ACTIONS(2696), + [sym_primitive_type] = ACTIONS(2696), + [anon_sym_enum] = ACTIONS(2696), + [anon_sym_struct] = ACTIONS(2696), + [anon_sym_union] = ACTIONS(2696), + [anon_sym_if] = ACTIONS(2696), + [anon_sym_switch] = ACTIONS(2696), + [anon_sym_case] = ACTIONS(2696), + [anon_sym_default] = ACTIONS(2696), + [anon_sym_while] = ACTIONS(2696), + [anon_sym_do] = ACTIONS(2696), + [anon_sym_for] = ACTIONS(2696), + [anon_sym_in] = ACTIONS(2696), + [anon_sym_return] = ACTIONS(2696), + [anon_sym_break] = ACTIONS(2696), + [anon_sym_continue] = ACTIONS(2696), + [anon_sym_goto] = ACTIONS(2696), + [anon_sym_DASH_DASH] = ACTIONS(2698), + [anon_sym_PLUS_PLUS] = ACTIONS(2698), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2696), + [anon_sym___alignof] = ACTIONS(2696), + [anon_sym__alignof] = ACTIONS(2696), + [anon_sym_alignof] = ACTIONS(2696), + [anon_sym__Alignof] = ACTIONS(2696), + [anon_sym_offsetof] = ACTIONS(2696), + [anon_sym__Generic] = ACTIONS(2696), + [anon_sym_asm] = ACTIONS(2696), + [anon_sym___asm__] = ACTIONS(2696), + [anon_sym___asm] = ACTIONS(2696), + [sym_number_literal] = ACTIONS(2698), + [anon_sym_L_SQUOTE] = ACTIONS(2698), + [anon_sym_u_SQUOTE] = ACTIONS(2698), + [anon_sym_U_SQUOTE] = ACTIONS(2698), + [anon_sym_u8_SQUOTE] = ACTIONS(2698), + [anon_sym_SQUOTE] = ACTIONS(2698), + [anon_sym_AT] = ACTIONS(2696), + [anon_sym_DQUOTE] = ACTIONS(2698), + [anon_sym_L_DQUOTE] = ACTIONS(2698), + [anon_sym_u_DQUOTE] = ACTIONS(2698), + [anon_sym_U_DQUOTE] = ACTIONS(2698), + [anon_sym_u8_DQUOTE] = ACTIONS(2698), + [sym_true] = ACTIONS(2696), + [sym_false] = ACTIONS(2696), + [anon_sym_NULL] = ACTIONS(2696), + [anon_sym_nullptr] = ACTIONS(2696), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2696), + [anon_sym___typeof] = ACTIONS(2696), + [anon_sym_typeof] = ACTIONS(2696), + [anon_sym_ATimport] = ACTIONS(2698), + [aux_sym_preproc_undef_token1] = ACTIONS(2696), + [anon_sym_POUND] = ACTIONS(2696), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2696), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2696), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2696), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2696), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2696), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2696), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2696), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2696), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2696), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2696), + [anon_sym_NS_AVAILABLE] = ACTIONS(2696), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2696), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2696), + [anon_sym_API_AVAILABLE] = ACTIONS(2696), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2696), + [anon_sym_API_DEPRECATED] = ACTIONS(2696), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2696), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2696), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2696), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2696), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2696), + [anon_sym___deprecated_msg] = ACTIONS(2696), + [anon_sym___deprecated_enum_msg] = ACTIONS(2696), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2696), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2696), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2696), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2696), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2696), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2696), + [anon_sym_ATprotocol] = ACTIONS(2698), + [anon_sym_ATinterface] = ACTIONS(2698), + [anon_sym_ATimplementation] = ACTIONS(2698), + [anon_sym_ATcompatibility_alias] = ACTIONS(2698), + [anon_sym_ATselector] = ACTIONS(2698), + [anon_sym_ATavailable] = ACTIONS(2698), + [anon_sym___builtin_available] = ACTIONS(2696), + [anon_sym_va_arg] = ACTIONS(2696), + [anon_sym_ATencode] = ACTIONS(2698), + [anon_sym_BOOL] = ACTIONS(2696), + [anon_sym_IMP] = ACTIONS(2696), + [anon_sym_SEL] = ACTIONS(2696), + [anon_sym_Class] = ACTIONS(2696), + [anon_sym_id] = ACTIONS(2696), + }, + [1009] = { + [ts_builtin_sym_end] = ACTIONS(2592), + [sym_identifier] = ACTIONS(2590), + [aux_sym_preproc_include_token1] = ACTIONS(2590), + [aux_sym_preproc_include_token2] = ACTIONS(2590), + [aux_sym_preproc_def_token1] = ACTIONS(2590), + [aux_sym_preproc_if_token1] = ACTIONS(2590), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2590), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2590), + [sym_preproc_directive] = ACTIONS(2590), + [anon_sym_LPAREN2] = ACTIONS(2592), + [anon_sym_BANG] = ACTIONS(2592), + [anon_sym_TILDE] = ACTIONS(2592), + [anon_sym_DASH] = ACTIONS(2590), + [anon_sym_PLUS] = ACTIONS(2590), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_CARET] = ACTIONS(2592), + [anon_sym_AMP] = ACTIONS(2592), + [anon_sym_SEMI] = ACTIONS(2592), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_typedef] = ACTIONS(2590), + [anon_sym_extern] = ACTIONS(2590), + [anon_sym___attribute__] = ACTIONS(2590), + [anon_sym___attribute] = ACTIONS(2590), + [anon_sym_noreturn] = ACTIONS(2590), + [anon_sym_LBRACK] = ACTIONS(2592), + [anon_sym___declspec] = ACTIONS(2590), + [anon_sym___cdecl] = ACTIONS(2590), + [anon_sym___clrcall] = ACTIONS(2590), + [anon_sym___stdcall] = ACTIONS(2590), + [anon_sym___fastcall] = ACTIONS(2590), + [anon_sym___thiscall] = ACTIONS(2590), + [anon_sym___vectorcall] = ACTIONS(2590), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_signed] = ACTIONS(2590), + [anon_sym_unsigned] = ACTIONS(2590), + [anon_sym_long] = ACTIONS(2590), + [anon_sym_short] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(2590), + [anon_sym_ATautoreleasepool] = ACTIONS(2592), + [anon_sym_auto] = ACTIONS(2590), + [anon_sym_register] = ACTIONS(2590), + [anon_sym_inline] = ACTIONS(2590), + [anon_sym___inline] = ACTIONS(2590), + [anon_sym___inline__] = ACTIONS(2590), + [anon_sym___forceinline] = ACTIONS(2590), + [anon_sym_thread_local] = ACTIONS(2590), + [anon_sym___thread] = ACTIONS(2590), + [anon_sym_CG_EXTERN] = ACTIONS(2590), + [anon_sym_CG_INLINE] = ACTIONS(2590), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2590), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2590), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2590), + [anon_sym_IBOutlet] = ACTIONS(2590), + [anon_sym_IBInspectable] = ACTIONS(2590), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2590), + [anon_sym_NS_INLINE] = ACTIONS(2590), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2590), + [anon_sym_OBJC_EXPORT] = ACTIONS(2590), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2590), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2590), + [anon_sym_const] = ACTIONS(2590), + [anon_sym_constexpr] = ACTIONS(2590), + [anon_sym_volatile] = ACTIONS(2590), + [anon_sym_restrict] = ACTIONS(2590), + [anon_sym___restrict__] = ACTIONS(2590), + [anon_sym__Atomic] = ACTIONS(2590), + [anon_sym__Noreturn] = ACTIONS(2590), + [anon_sym__Nonnull] = ACTIONS(2590), + [anon_sym_nullable] = ACTIONS(2590), + [anon_sym__Complex] = ACTIONS(2590), + [anon_sym__Nullable] = ACTIONS(2590), + [anon_sym__Nullable_result] = ACTIONS(2590), + [anon_sym__Null_unspecified] = ACTIONS(2590), + [anon_sym___autoreleasing] = ACTIONS(2590), + [anon_sym___block] = ACTIONS(2590), + [anon_sym___bridge] = ACTIONS(2590), + [anon_sym___bridge_retained] = ACTIONS(2590), + [anon_sym___bridge_transfer] = ACTIONS(2590), + [anon_sym___complex] = ACTIONS(2590), + [anon_sym___const] = ACTIONS(2590), + [anon_sym___imag] = ACTIONS(2590), + [anon_sym___kindof] = ACTIONS(2590), + [anon_sym___nonnull] = ACTIONS(2590), + [anon_sym___nullable] = ACTIONS(2590), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2590), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2590), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2590), + [anon_sym___real] = ACTIONS(2590), + [anon_sym___strong] = ACTIONS(2590), + [anon_sym___unsafe_unretained] = ACTIONS(2590), + [anon_sym___unused] = ACTIONS(2590), + [anon_sym___weak] = ACTIONS(2590), + [anon_sym_alignas] = ACTIONS(2590), + [anon_sym__Alignas] = ACTIONS(2590), + [sym_primitive_type] = ACTIONS(2590), + [anon_sym_enum] = ACTIONS(2590), + [anon_sym_struct] = ACTIONS(2590), + [anon_sym_union] = ACTIONS(2590), + [anon_sym_if] = ACTIONS(2590), + [anon_sym_switch] = ACTIONS(2590), + [anon_sym_case] = ACTIONS(2590), + [anon_sym_default] = ACTIONS(2590), + [anon_sym_while] = ACTIONS(2590), + [anon_sym_do] = ACTIONS(2590), + [anon_sym_for] = ACTIONS(2590), + [anon_sym_in] = ACTIONS(2590), + [anon_sym_return] = ACTIONS(2590), + [anon_sym_break] = ACTIONS(2590), + [anon_sym_continue] = ACTIONS(2590), + [anon_sym_goto] = ACTIONS(2590), + [anon_sym_DASH_DASH] = ACTIONS(2592), + [anon_sym_PLUS_PLUS] = ACTIONS(2592), + [anon_sym_sizeof] = ACTIONS(2590), + [anon_sym___alignof__] = ACTIONS(2590), + [anon_sym___alignof] = ACTIONS(2590), + [anon_sym__alignof] = ACTIONS(2590), + [anon_sym_alignof] = ACTIONS(2590), + [anon_sym__Alignof] = ACTIONS(2590), + [anon_sym_offsetof] = ACTIONS(2590), + [anon_sym__Generic] = ACTIONS(2590), + [anon_sym_asm] = ACTIONS(2590), + [anon_sym___asm__] = ACTIONS(2590), + [anon_sym___asm] = ACTIONS(2590), + [sym_number_literal] = ACTIONS(2592), + [anon_sym_L_SQUOTE] = ACTIONS(2592), + [anon_sym_u_SQUOTE] = ACTIONS(2592), + [anon_sym_U_SQUOTE] = ACTIONS(2592), + [anon_sym_u8_SQUOTE] = ACTIONS(2592), + [anon_sym_SQUOTE] = ACTIONS(2592), + [anon_sym_AT] = ACTIONS(2590), + [anon_sym_DQUOTE] = ACTIONS(2592), + [anon_sym_L_DQUOTE] = ACTIONS(2592), + [anon_sym_u_DQUOTE] = ACTIONS(2592), + [anon_sym_U_DQUOTE] = ACTIONS(2592), + [anon_sym_u8_DQUOTE] = ACTIONS(2592), + [sym_true] = ACTIONS(2590), + [sym_false] = ACTIONS(2590), + [anon_sym_NULL] = ACTIONS(2590), + [anon_sym_nullptr] = ACTIONS(2590), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2590), + [anon_sym___typeof] = ACTIONS(2590), + [anon_sym_typeof] = ACTIONS(2590), + [anon_sym_ATimport] = ACTIONS(2592), + [aux_sym_preproc_undef_token1] = ACTIONS(2590), + [anon_sym_POUND] = ACTIONS(2590), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2590), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2590), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2590), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2590), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2590), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2590), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2590), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2590), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2590), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2590), + [anon_sym_NS_AVAILABLE] = ACTIONS(2590), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2590), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2590), + [anon_sym_API_AVAILABLE] = ACTIONS(2590), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2590), + [anon_sym_API_DEPRECATED] = ACTIONS(2590), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2590), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2590), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2590), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2590), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2590), + [anon_sym___deprecated_msg] = ACTIONS(2590), + [anon_sym___deprecated_enum_msg] = ACTIONS(2590), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2590), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2590), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2590), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2590), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2590), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2590), + [anon_sym_ATprotocol] = ACTIONS(2592), + [anon_sym_ATinterface] = ACTIONS(2592), + [anon_sym_ATimplementation] = ACTIONS(2592), + [anon_sym_ATcompatibility_alias] = ACTIONS(2592), + [anon_sym_ATselector] = ACTIONS(2592), + [anon_sym_ATavailable] = ACTIONS(2592), + [anon_sym___builtin_available] = ACTIONS(2590), + [anon_sym_va_arg] = ACTIONS(2590), + [anon_sym_ATencode] = ACTIONS(2592), + [anon_sym_BOOL] = ACTIONS(2590), + [anon_sym_IMP] = ACTIONS(2590), + [anon_sym_SEL] = ACTIONS(2590), + [anon_sym_Class] = ACTIONS(2590), + [anon_sym_id] = ACTIONS(2590), + }, + [1010] = { + [ts_builtin_sym_end] = ACTIONS(2850), + [sym_identifier] = ACTIONS(2848), + [aux_sym_preproc_include_token1] = ACTIONS(2848), + [aux_sym_preproc_include_token2] = ACTIONS(2848), + [aux_sym_preproc_def_token1] = ACTIONS(2848), + [aux_sym_preproc_if_token1] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2848), + [sym_preproc_directive] = ACTIONS(2848), + [anon_sym_LPAREN2] = ACTIONS(2850), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_TILDE] = ACTIONS(2850), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_STAR] = ACTIONS(2850), + [anon_sym_CARET] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2850), + [anon_sym___extension__] = ACTIONS(2848), + [anon_sym_typedef] = ACTIONS(2848), + [anon_sym_extern] = ACTIONS(2848), + [anon_sym___attribute__] = ACTIONS(2848), + [anon_sym___attribute] = ACTIONS(2848), + [anon_sym_noreturn] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2850), + [anon_sym___declspec] = ACTIONS(2848), + [anon_sym___cdecl] = ACTIONS(2848), + [anon_sym___clrcall] = ACTIONS(2848), + [anon_sym___stdcall] = ACTIONS(2848), + [anon_sym___fastcall] = ACTIONS(2848), + [anon_sym___thiscall] = ACTIONS(2848), + [anon_sym___vectorcall] = ACTIONS(2848), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_signed] = ACTIONS(2848), + [anon_sym_unsigned] = ACTIONS(2848), + [anon_sym_long] = ACTIONS(2848), + [anon_sym_short] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_ATautoreleasepool] = ACTIONS(2850), + [anon_sym_auto] = ACTIONS(2848), + [anon_sym_register] = ACTIONS(2848), + [anon_sym_inline] = ACTIONS(2848), + [anon_sym___inline] = ACTIONS(2848), + [anon_sym___inline__] = ACTIONS(2848), + [anon_sym___forceinline] = ACTIONS(2848), + [anon_sym_thread_local] = ACTIONS(2848), + [anon_sym___thread] = ACTIONS(2848), + [anon_sym_CG_EXTERN] = ACTIONS(2848), + [anon_sym_CG_INLINE] = ACTIONS(2848), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2848), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2848), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2848), + [anon_sym_IBOutlet] = ACTIONS(2848), + [anon_sym_IBInspectable] = ACTIONS(2848), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2848), + [anon_sym_NS_INLINE] = ACTIONS(2848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2848), + [anon_sym_OBJC_EXPORT] = ACTIONS(2848), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2848), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2848), + [anon_sym_const] = ACTIONS(2848), + [anon_sym_constexpr] = ACTIONS(2848), + [anon_sym_volatile] = ACTIONS(2848), + [anon_sym_restrict] = ACTIONS(2848), + [anon_sym___restrict__] = ACTIONS(2848), + [anon_sym__Atomic] = ACTIONS(2848), + [anon_sym__Noreturn] = ACTIONS(2848), + [anon_sym__Nonnull] = ACTIONS(2848), + [anon_sym_nullable] = ACTIONS(2848), + [anon_sym__Complex] = ACTIONS(2848), + [anon_sym__Nullable] = ACTIONS(2848), + [anon_sym__Nullable_result] = ACTIONS(2848), + [anon_sym__Null_unspecified] = ACTIONS(2848), + [anon_sym___autoreleasing] = ACTIONS(2848), + [anon_sym___block] = ACTIONS(2848), + [anon_sym___bridge] = ACTIONS(2848), + [anon_sym___bridge_retained] = ACTIONS(2848), + [anon_sym___bridge_transfer] = ACTIONS(2848), + [anon_sym___complex] = ACTIONS(2848), + [anon_sym___const] = ACTIONS(2848), + [anon_sym___imag] = ACTIONS(2848), + [anon_sym___kindof] = ACTIONS(2848), + [anon_sym___nonnull] = ACTIONS(2848), + [anon_sym___nullable] = ACTIONS(2848), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2848), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2848), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2848), + [anon_sym___real] = ACTIONS(2848), + [anon_sym___strong] = ACTIONS(2848), + [anon_sym___unsafe_unretained] = ACTIONS(2848), + [anon_sym___unused] = ACTIONS(2848), + [anon_sym___weak] = ACTIONS(2848), + [anon_sym_alignas] = ACTIONS(2848), + [anon_sym__Alignas] = ACTIONS(2848), + [sym_primitive_type] = ACTIONS(2848), + [anon_sym_enum] = ACTIONS(2848), + [anon_sym_struct] = ACTIONS(2848), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_switch] = ACTIONS(2848), + [anon_sym_case] = ACTIONS(2848), + [anon_sym_default] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_in] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_break] = ACTIONS(2848), + [anon_sym_continue] = ACTIONS(2848), + [anon_sym_goto] = ACTIONS(2848), + [anon_sym_DASH_DASH] = ACTIONS(2850), + [anon_sym_PLUS_PLUS] = ACTIONS(2850), + [anon_sym_sizeof] = ACTIONS(2848), + [anon_sym___alignof__] = ACTIONS(2848), + [anon_sym___alignof] = ACTIONS(2848), + [anon_sym__alignof] = ACTIONS(2848), + [anon_sym_alignof] = ACTIONS(2848), + [anon_sym__Alignof] = ACTIONS(2848), + [anon_sym_offsetof] = ACTIONS(2848), + [anon_sym__Generic] = ACTIONS(2848), + [anon_sym_asm] = ACTIONS(2848), + [anon_sym___asm__] = ACTIONS(2848), + [anon_sym___asm] = ACTIONS(2848), + [sym_number_literal] = ACTIONS(2850), + [anon_sym_L_SQUOTE] = ACTIONS(2850), + [anon_sym_u_SQUOTE] = ACTIONS(2850), + [anon_sym_U_SQUOTE] = ACTIONS(2850), + [anon_sym_u8_SQUOTE] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_AT] = ACTIONS(2848), + [anon_sym_DQUOTE] = ACTIONS(2850), + [anon_sym_L_DQUOTE] = ACTIONS(2850), + [anon_sym_u_DQUOTE] = ACTIONS(2850), + [anon_sym_U_DQUOTE] = ACTIONS(2850), + [anon_sym_u8_DQUOTE] = ACTIONS(2850), + [sym_true] = ACTIONS(2848), + [sym_false] = ACTIONS(2848), + [anon_sym_NULL] = ACTIONS(2848), + [anon_sym_nullptr] = ACTIONS(2848), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2848), + [anon_sym___typeof] = ACTIONS(2848), + [anon_sym_typeof] = ACTIONS(2848), + [anon_sym_ATimport] = ACTIONS(2850), + [aux_sym_preproc_undef_token1] = ACTIONS(2848), + [anon_sym_POUND] = ACTIONS(2848), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2848), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2848), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2848), + [anon_sym_NS_AVAILABLE] = ACTIONS(2848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_API_AVAILABLE] = ACTIONS(2848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_API_DEPRECATED] = ACTIONS(2848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2848), + [anon_sym___deprecated_msg] = ACTIONS(2848), + [anon_sym___deprecated_enum_msg] = ACTIONS(2848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2848), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2848), + [anon_sym_ATprotocol] = ACTIONS(2850), + [anon_sym_ATinterface] = ACTIONS(2850), + [anon_sym_ATimplementation] = ACTIONS(2850), + [anon_sym_ATcompatibility_alias] = ACTIONS(2850), + [anon_sym_ATselector] = ACTIONS(2850), + [anon_sym_ATavailable] = ACTIONS(2850), + [anon_sym___builtin_available] = ACTIONS(2848), + [anon_sym_va_arg] = ACTIONS(2848), + [anon_sym_ATencode] = ACTIONS(2850), + [anon_sym_BOOL] = ACTIONS(2848), + [anon_sym_IMP] = ACTIONS(2848), + [anon_sym_SEL] = ACTIONS(2848), + [anon_sym_Class] = ACTIONS(2848), + [anon_sym_id] = ACTIONS(2848), + }, + [1011] = { + [ts_builtin_sym_end] = ACTIONS(2702), + [sym_identifier] = ACTIONS(2700), + [aux_sym_preproc_include_token1] = ACTIONS(2700), + [aux_sym_preproc_include_token2] = ACTIONS(2700), + [aux_sym_preproc_def_token1] = ACTIONS(2700), + [aux_sym_preproc_if_token1] = ACTIONS(2700), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2700), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2700), + [sym_preproc_directive] = ACTIONS(2700), + [anon_sym_LPAREN2] = ACTIONS(2702), + [anon_sym_BANG] = ACTIONS(2702), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_STAR] = ACTIONS(2702), + [anon_sym_CARET] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2702), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym___extension__] = ACTIONS(2700), + [anon_sym_typedef] = ACTIONS(2700), + [anon_sym_extern] = ACTIONS(2700), + [anon_sym___attribute__] = ACTIONS(2700), + [anon_sym___attribute] = ACTIONS(2700), + [anon_sym_noreturn] = ACTIONS(2700), + [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym___declspec] = ACTIONS(2700), + [anon_sym___cdecl] = ACTIONS(2700), + [anon_sym___clrcall] = ACTIONS(2700), + [anon_sym___stdcall] = ACTIONS(2700), + [anon_sym___fastcall] = ACTIONS(2700), + [anon_sym___thiscall] = ACTIONS(2700), + [anon_sym___vectorcall] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_signed] = ACTIONS(2700), + [anon_sym_unsigned] = ACTIONS(2700), + [anon_sym_long] = ACTIONS(2700), + [anon_sym_short] = ACTIONS(2700), + [anon_sym_static] = ACTIONS(2700), + [anon_sym_ATautoreleasepool] = ACTIONS(2702), + [anon_sym_auto] = ACTIONS(2700), + [anon_sym_register] = ACTIONS(2700), + [anon_sym_inline] = ACTIONS(2700), + [anon_sym___inline] = ACTIONS(2700), + [anon_sym___inline__] = ACTIONS(2700), + [anon_sym___forceinline] = ACTIONS(2700), + [anon_sym_thread_local] = ACTIONS(2700), + [anon_sym___thread] = ACTIONS(2700), + [anon_sym_CG_EXTERN] = ACTIONS(2700), + [anon_sym_CG_INLINE] = ACTIONS(2700), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2700), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2700), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2700), + [anon_sym_IBOutlet] = ACTIONS(2700), + [anon_sym_IBInspectable] = ACTIONS(2700), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2700), + [anon_sym_NS_INLINE] = ACTIONS(2700), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2700), + [anon_sym_OBJC_EXPORT] = ACTIONS(2700), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2700), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2700), + [anon_sym_const] = ACTIONS(2700), + [anon_sym_constexpr] = ACTIONS(2700), + [anon_sym_volatile] = ACTIONS(2700), + [anon_sym_restrict] = ACTIONS(2700), + [anon_sym___restrict__] = ACTIONS(2700), + [anon_sym__Atomic] = ACTIONS(2700), + [anon_sym__Noreturn] = ACTIONS(2700), + [anon_sym__Nonnull] = ACTIONS(2700), + [anon_sym_nullable] = ACTIONS(2700), + [anon_sym__Complex] = ACTIONS(2700), + [anon_sym__Nullable] = ACTIONS(2700), + [anon_sym__Nullable_result] = ACTIONS(2700), + [anon_sym__Null_unspecified] = ACTIONS(2700), + [anon_sym___autoreleasing] = ACTIONS(2700), + [anon_sym___block] = ACTIONS(2700), + [anon_sym___bridge] = ACTIONS(2700), + [anon_sym___bridge_retained] = ACTIONS(2700), + [anon_sym___bridge_transfer] = ACTIONS(2700), + [anon_sym___complex] = ACTIONS(2700), + [anon_sym___const] = ACTIONS(2700), + [anon_sym___imag] = ACTIONS(2700), + [anon_sym___kindof] = ACTIONS(2700), + [anon_sym___nonnull] = ACTIONS(2700), + [anon_sym___nullable] = ACTIONS(2700), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2700), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2700), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2700), + [anon_sym___real] = ACTIONS(2700), + [anon_sym___strong] = ACTIONS(2700), + [anon_sym___unsafe_unretained] = ACTIONS(2700), + [anon_sym___unused] = ACTIONS(2700), + [anon_sym___weak] = ACTIONS(2700), + [anon_sym_alignas] = ACTIONS(2700), + [anon_sym__Alignas] = ACTIONS(2700), + [sym_primitive_type] = ACTIONS(2700), + [anon_sym_enum] = ACTIONS(2700), + [anon_sym_struct] = ACTIONS(2700), + [anon_sym_union] = ACTIONS(2700), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_switch] = ACTIONS(2700), + [anon_sym_case] = ACTIONS(2700), + [anon_sym_default] = ACTIONS(2700), + [anon_sym_while] = ACTIONS(2700), + [anon_sym_do] = ACTIONS(2700), + [anon_sym_for] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(2700), + [anon_sym_return] = ACTIONS(2700), + [anon_sym_break] = ACTIONS(2700), + [anon_sym_continue] = ACTIONS(2700), + [anon_sym_goto] = ACTIONS(2700), + [anon_sym_DASH_DASH] = ACTIONS(2702), + [anon_sym_PLUS_PLUS] = ACTIONS(2702), + [anon_sym_sizeof] = ACTIONS(2700), + [anon_sym___alignof__] = ACTIONS(2700), + [anon_sym___alignof] = ACTIONS(2700), + [anon_sym__alignof] = ACTIONS(2700), + [anon_sym_alignof] = ACTIONS(2700), + [anon_sym__Alignof] = ACTIONS(2700), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2700), + [anon_sym_asm] = ACTIONS(2700), + [anon_sym___asm__] = ACTIONS(2700), + [anon_sym___asm] = ACTIONS(2700), + [sym_number_literal] = ACTIONS(2702), + [anon_sym_L_SQUOTE] = ACTIONS(2702), + [anon_sym_u_SQUOTE] = ACTIONS(2702), + [anon_sym_U_SQUOTE] = ACTIONS(2702), + [anon_sym_u8_SQUOTE] = ACTIONS(2702), + [anon_sym_SQUOTE] = ACTIONS(2702), + [anon_sym_AT] = ACTIONS(2700), + [anon_sym_DQUOTE] = ACTIONS(2702), + [anon_sym_L_DQUOTE] = ACTIONS(2702), + [anon_sym_u_DQUOTE] = ACTIONS(2702), + [anon_sym_U_DQUOTE] = ACTIONS(2702), + [anon_sym_u8_DQUOTE] = ACTIONS(2702), + [sym_true] = ACTIONS(2700), + [sym_false] = ACTIONS(2700), + [anon_sym_NULL] = ACTIONS(2700), + [anon_sym_nullptr] = ACTIONS(2700), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2700), + [anon_sym___typeof] = ACTIONS(2700), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_ATimport] = ACTIONS(2702), + [aux_sym_preproc_undef_token1] = ACTIONS(2700), + [anon_sym_POUND] = ACTIONS(2700), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2700), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2700), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2700), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2700), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2700), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2700), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2700), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2700), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2700), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2700), + [anon_sym_NS_AVAILABLE] = ACTIONS(2700), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2700), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2700), + [anon_sym_API_AVAILABLE] = ACTIONS(2700), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2700), + [anon_sym_API_DEPRECATED] = ACTIONS(2700), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2700), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2700), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2700), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2700), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2700), + [anon_sym___deprecated_msg] = ACTIONS(2700), + [anon_sym___deprecated_enum_msg] = ACTIONS(2700), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2700), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2700), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2700), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2700), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2700), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2700), + [anon_sym_ATprotocol] = ACTIONS(2702), + [anon_sym_ATinterface] = ACTIONS(2702), + [anon_sym_ATimplementation] = ACTIONS(2702), + [anon_sym_ATcompatibility_alias] = ACTIONS(2702), + [anon_sym_ATselector] = ACTIONS(2702), + [anon_sym_ATavailable] = ACTIONS(2702), + [anon_sym___builtin_available] = ACTIONS(2700), + [anon_sym_va_arg] = ACTIONS(2700), + [anon_sym_ATencode] = ACTIONS(2702), + [anon_sym_BOOL] = ACTIONS(2700), + [anon_sym_IMP] = ACTIONS(2700), + [anon_sym_SEL] = ACTIONS(2700), + [anon_sym_Class] = ACTIONS(2700), + [anon_sym_id] = ACTIONS(2700), + }, + [1012] = { + [ts_builtin_sym_end] = ACTIONS(2706), + [sym_identifier] = ACTIONS(2704), + [aux_sym_preproc_include_token1] = ACTIONS(2704), + [aux_sym_preproc_include_token2] = ACTIONS(2704), + [aux_sym_preproc_def_token1] = ACTIONS(2704), + [aux_sym_preproc_if_token1] = ACTIONS(2704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2704), + [sym_preproc_directive] = ACTIONS(2704), + [anon_sym_LPAREN2] = ACTIONS(2706), + [anon_sym_BANG] = ACTIONS(2706), + [anon_sym_TILDE] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_STAR] = ACTIONS(2706), + [anon_sym_CARET] = ACTIONS(2706), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym___extension__] = ACTIONS(2704), + [anon_sym_typedef] = ACTIONS(2704), + [anon_sym_extern] = ACTIONS(2704), + [anon_sym___attribute__] = ACTIONS(2704), + [anon_sym___attribute] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_LBRACK] = ACTIONS(2706), + [anon_sym___declspec] = ACTIONS(2704), + [anon_sym___cdecl] = ACTIONS(2704), + [anon_sym___clrcall] = ACTIONS(2704), + [anon_sym___stdcall] = ACTIONS(2704), + [anon_sym___fastcall] = ACTIONS(2704), + [anon_sym___thiscall] = ACTIONS(2704), + [anon_sym___vectorcall] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_signed] = ACTIONS(2704), + [anon_sym_unsigned] = ACTIONS(2704), + [anon_sym_long] = ACTIONS(2704), + [anon_sym_short] = ACTIONS(2704), + [anon_sym_static] = ACTIONS(2704), + [anon_sym_ATautoreleasepool] = ACTIONS(2706), + [anon_sym_auto] = ACTIONS(2704), + [anon_sym_register] = ACTIONS(2704), + [anon_sym_inline] = ACTIONS(2704), + [anon_sym___inline] = ACTIONS(2704), + [anon_sym___inline__] = ACTIONS(2704), + [anon_sym___forceinline] = ACTIONS(2704), + [anon_sym_thread_local] = ACTIONS(2704), + [anon_sym___thread] = ACTIONS(2704), + [anon_sym_CG_EXTERN] = ACTIONS(2704), + [anon_sym_CG_INLINE] = ACTIONS(2704), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2704), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2704), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2704), + [anon_sym_IBOutlet] = ACTIONS(2704), + [anon_sym_IBInspectable] = ACTIONS(2704), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2704), + [anon_sym_NS_INLINE] = ACTIONS(2704), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2704), + [anon_sym_OBJC_EXPORT] = ACTIONS(2704), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2704), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2704), + [anon_sym_const] = ACTIONS(2704), + [anon_sym_constexpr] = ACTIONS(2704), + [anon_sym_volatile] = ACTIONS(2704), + [anon_sym_restrict] = ACTIONS(2704), + [anon_sym___restrict__] = ACTIONS(2704), + [anon_sym__Atomic] = ACTIONS(2704), + [anon_sym__Noreturn] = ACTIONS(2704), + [anon_sym__Nonnull] = ACTIONS(2704), + [anon_sym_nullable] = ACTIONS(2704), + [anon_sym__Complex] = ACTIONS(2704), + [anon_sym__Nullable] = ACTIONS(2704), + [anon_sym__Nullable_result] = ACTIONS(2704), + [anon_sym__Null_unspecified] = ACTIONS(2704), + [anon_sym___autoreleasing] = ACTIONS(2704), + [anon_sym___block] = ACTIONS(2704), + [anon_sym___bridge] = ACTIONS(2704), + [anon_sym___bridge_retained] = ACTIONS(2704), + [anon_sym___bridge_transfer] = ACTIONS(2704), + [anon_sym___complex] = ACTIONS(2704), + [anon_sym___const] = ACTIONS(2704), + [anon_sym___imag] = ACTIONS(2704), + [anon_sym___kindof] = ACTIONS(2704), + [anon_sym___nonnull] = ACTIONS(2704), + [anon_sym___nullable] = ACTIONS(2704), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2704), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2704), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2704), + [anon_sym___real] = ACTIONS(2704), + [anon_sym___strong] = ACTIONS(2704), + [anon_sym___unsafe_unretained] = ACTIONS(2704), + [anon_sym___unused] = ACTIONS(2704), + [anon_sym___weak] = ACTIONS(2704), + [anon_sym_alignas] = ACTIONS(2704), + [anon_sym__Alignas] = ACTIONS(2704), + [sym_primitive_type] = ACTIONS(2704), + [anon_sym_enum] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_union] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_switch] = ACTIONS(2704), + [anon_sym_case] = ACTIONS(2704), + [anon_sym_default] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_do] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_in] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_goto] = ACTIONS(2704), + [anon_sym_DASH_DASH] = ACTIONS(2706), + [anon_sym_PLUS_PLUS] = ACTIONS(2706), + [anon_sym_sizeof] = ACTIONS(2704), + [anon_sym___alignof__] = ACTIONS(2704), + [anon_sym___alignof] = ACTIONS(2704), + [anon_sym__alignof] = ACTIONS(2704), + [anon_sym_alignof] = ACTIONS(2704), + [anon_sym__Alignof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2704), + [anon_sym__Generic] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2704), + [anon_sym___asm__] = ACTIONS(2704), + [anon_sym___asm] = ACTIONS(2704), + [sym_number_literal] = ACTIONS(2706), + [anon_sym_L_SQUOTE] = ACTIONS(2706), + [anon_sym_u_SQUOTE] = ACTIONS(2706), + [anon_sym_U_SQUOTE] = ACTIONS(2706), + [anon_sym_u8_SQUOTE] = ACTIONS(2706), + [anon_sym_SQUOTE] = ACTIONS(2706), + [anon_sym_AT] = ACTIONS(2704), + [anon_sym_DQUOTE] = ACTIONS(2706), + [anon_sym_L_DQUOTE] = ACTIONS(2706), + [anon_sym_u_DQUOTE] = ACTIONS(2706), + [anon_sym_U_DQUOTE] = ACTIONS(2706), + [anon_sym_u8_DQUOTE] = ACTIONS(2706), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [anon_sym_NULL] = ACTIONS(2704), + [anon_sym_nullptr] = ACTIONS(2704), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2704), + [anon_sym___typeof] = ACTIONS(2704), + [anon_sym_typeof] = ACTIONS(2704), + [anon_sym_ATimport] = ACTIONS(2706), + [aux_sym_preproc_undef_token1] = ACTIONS(2704), + [anon_sym_POUND] = ACTIONS(2704), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2704), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2704), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2704), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2704), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2704), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2704), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2704), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2704), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2704), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2704), + [anon_sym_NS_AVAILABLE] = ACTIONS(2704), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2704), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2704), + [anon_sym_API_AVAILABLE] = ACTIONS(2704), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2704), + [anon_sym_API_DEPRECATED] = ACTIONS(2704), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2704), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2704), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2704), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2704), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2704), + [anon_sym___deprecated_msg] = ACTIONS(2704), + [anon_sym___deprecated_enum_msg] = ACTIONS(2704), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2704), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2704), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2704), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2704), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2704), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2704), + [anon_sym_ATprotocol] = ACTIONS(2706), + [anon_sym_ATinterface] = ACTIONS(2706), + [anon_sym_ATimplementation] = ACTIONS(2706), + [anon_sym_ATcompatibility_alias] = ACTIONS(2706), + [anon_sym_ATselector] = ACTIONS(2706), + [anon_sym_ATavailable] = ACTIONS(2706), + [anon_sym___builtin_available] = ACTIONS(2704), + [anon_sym_va_arg] = ACTIONS(2704), + [anon_sym_ATencode] = ACTIONS(2706), + [anon_sym_BOOL] = ACTIONS(2704), + [anon_sym_IMP] = ACTIONS(2704), + [anon_sym_SEL] = ACTIONS(2704), + [anon_sym_Class] = ACTIONS(2704), + [anon_sym_id] = ACTIONS(2704), + }, + [1013] = { + [ts_builtin_sym_end] = ACTIONS(2710), + [sym_identifier] = ACTIONS(2708), + [aux_sym_preproc_include_token1] = ACTIONS(2708), + [aux_sym_preproc_include_token2] = ACTIONS(2708), + [aux_sym_preproc_def_token1] = ACTIONS(2708), + [aux_sym_preproc_if_token1] = ACTIONS(2708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2708), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2708), + [sym_preproc_directive] = ACTIONS(2708), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_BANG] = ACTIONS(2710), + [anon_sym_TILDE] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_STAR] = ACTIONS(2710), + [anon_sym_CARET] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym___extension__] = ACTIONS(2708), + [anon_sym_typedef] = ACTIONS(2708), + [anon_sym_extern] = ACTIONS(2708), + [anon_sym___attribute__] = ACTIONS(2708), + [anon_sym___attribute] = ACTIONS(2708), + [anon_sym_noreturn] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2710), + [anon_sym___declspec] = ACTIONS(2708), + [anon_sym___cdecl] = ACTIONS(2708), + [anon_sym___clrcall] = ACTIONS(2708), + [anon_sym___stdcall] = ACTIONS(2708), + [anon_sym___fastcall] = ACTIONS(2708), + [anon_sym___thiscall] = ACTIONS(2708), + [anon_sym___vectorcall] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_signed] = ACTIONS(2708), + [anon_sym_unsigned] = ACTIONS(2708), + [anon_sym_long] = ACTIONS(2708), + [anon_sym_short] = ACTIONS(2708), + [anon_sym_static] = ACTIONS(2708), + [anon_sym_ATautoreleasepool] = ACTIONS(2710), + [anon_sym_auto] = ACTIONS(2708), + [anon_sym_register] = ACTIONS(2708), + [anon_sym_inline] = ACTIONS(2708), + [anon_sym___inline] = ACTIONS(2708), + [anon_sym___inline__] = ACTIONS(2708), + [anon_sym___forceinline] = ACTIONS(2708), + [anon_sym_thread_local] = ACTIONS(2708), + [anon_sym___thread] = ACTIONS(2708), + [anon_sym_CG_EXTERN] = ACTIONS(2708), + [anon_sym_CG_INLINE] = ACTIONS(2708), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2708), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2708), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2708), + [anon_sym_IBOutlet] = ACTIONS(2708), + [anon_sym_IBInspectable] = ACTIONS(2708), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2708), + [anon_sym_NS_INLINE] = ACTIONS(2708), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2708), + [anon_sym_OBJC_EXPORT] = ACTIONS(2708), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2708), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2708), + [anon_sym_const] = ACTIONS(2708), + [anon_sym_constexpr] = ACTIONS(2708), + [anon_sym_volatile] = ACTIONS(2708), + [anon_sym_restrict] = ACTIONS(2708), + [anon_sym___restrict__] = ACTIONS(2708), + [anon_sym__Atomic] = ACTIONS(2708), + [anon_sym__Noreturn] = ACTIONS(2708), + [anon_sym__Nonnull] = ACTIONS(2708), + [anon_sym_nullable] = ACTIONS(2708), + [anon_sym__Complex] = ACTIONS(2708), + [anon_sym__Nullable] = ACTIONS(2708), + [anon_sym__Nullable_result] = ACTIONS(2708), + [anon_sym__Null_unspecified] = ACTIONS(2708), + [anon_sym___autoreleasing] = ACTIONS(2708), + [anon_sym___block] = ACTIONS(2708), + [anon_sym___bridge] = ACTIONS(2708), + [anon_sym___bridge_retained] = ACTIONS(2708), + [anon_sym___bridge_transfer] = ACTIONS(2708), + [anon_sym___complex] = ACTIONS(2708), + [anon_sym___const] = ACTIONS(2708), + [anon_sym___imag] = ACTIONS(2708), + [anon_sym___kindof] = ACTIONS(2708), + [anon_sym___nonnull] = ACTIONS(2708), + [anon_sym___nullable] = ACTIONS(2708), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2708), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2708), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2708), + [anon_sym___real] = ACTIONS(2708), + [anon_sym___strong] = ACTIONS(2708), + [anon_sym___unsafe_unretained] = ACTIONS(2708), + [anon_sym___unused] = ACTIONS(2708), + [anon_sym___weak] = ACTIONS(2708), + [anon_sym_alignas] = ACTIONS(2708), + [anon_sym__Alignas] = ACTIONS(2708), + [sym_primitive_type] = ACTIONS(2708), + [anon_sym_enum] = ACTIONS(2708), + [anon_sym_struct] = ACTIONS(2708), + [anon_sym_union] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_switch] = ACTIONS(2708), + [anon_sym_case] = ACTIONS(2708), + [anon_sym_default] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_in] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_break] = ACTIONS(2708), + [anon_sym_continue] = ACTIONS(2708), + [anon_sym_goto] = ACTIONS(2708), + [anon_sym_DASH_DASH] = ACTIONS(2710), + [anon_sym_PLUS_PLUS] = ACTIONS(2710), + [anon_sym_sizeof] = ACTIONS(2708), + [anon_sym___alignof__] = ACTIONS(2708), + [anon_sym___alignof] = ACTIONS(2708), + [anon_sym__alignof] = ACTIONS(2708), + [anon_sym_alignof] = ACTIONS(2708), + [anon_sym__Alignof] = ACTIONS(2708), + [anon_sym_offsetof] = ACTIONS(2708), + [anon_sym__Generic] = ACTIONS(2708), + [anon_sym_asm] = ACTIONS(2708), + [anon_sym___asm__] = ACTIONS(2708), + [anon_sym___asm] = ACTIONS(2708), + [sym_number_literal] = ACTIONS(2710), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_AT] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2710), + [anon_sym_u_DQUOTE] = ACTIONS(2710), + [anon_sym_U_DQUOTE] = ACTIONS(2710), + [anon_sym_u8_DQUOTE] = ACTIONS(2710), + [sym_true] = ACTIONS(2708), + [sym_false] = ACTIONS(2708), + [anon_sym_NULL] = ACTIONS(2708), + [anon_sym_nullptr] = ACTIONS(2708), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2708), + [anon_sym___typeof] = ACTIONS(2708), + [anon_sym_typeof] = ACTIONS(2708), + [anon_sym_ATimport] = ACTIONS(2710), + [aux_sym_preproc_undef_token1] = ACTIONS(2708), + [anon_sym_POUND] = ACTIONS(2708), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2708), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2708), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2708), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2708), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2708), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2708), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2708), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2708), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2708), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2708), + [anon_sym_NS_AVAILABLE] = ACTIONS(2708), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2708), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2708), + [anon_sym_API_AVAILABLE] = ACTIONS(2708), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2708), + [anon_sym_API_DEPRECATED] = ACTIONS(2708), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2708), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2708), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2708), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2708), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2708), + [anon_sym___deprecated_msg] = ACTIONS(2708), + [anon_sym___deprecated_enum_msg] = ACTIONS(2708), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2708), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2708), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2708), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2708), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2708), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2708), + [anon_sym_ATprotocol] = ACTIONS(2710), + [anon_sym_ATinterface] = ACTIONS(2710), + [anon_sym_ATimplementation] = ACTIONS(2710), + [anon_sym_ATcompatibility_alias] = ACTIONS(2710), + [anon_sym_ATselector] = ACTIONS(2710), + [anon_sym_ATavailable] = ACTIONS(2710), + [anon_sym___builtin_available] = ACTIONS(2708), + [anon_sym_va_arg] = ACTIONS(2708), + [anon_sym_ATencode] = ACTIONS(2710), + [anon_sym_BOOL] = ACTIONS(2708), + [anon_sym_IMP] = ACTIONS(2708), + [anon_sym_SEL] = ACTIONS(2708), + [anon_sym_Class] = ACTIONS(2708), + [anon_sym_id] = ACTIONS(2708), + }, + [1014] = { + [ts_builtin_sym_end] = ACTIONS(2714), + [sym_identifier] = ACTIONS(2712), + [aux_sym_preproc_include_token1] = ACTIONS(2712), + [aux_sym_preproc_include_token2] = ACTIONS(2712), + [aux_sym_preproc_def_token1] = ACTIONS(2712), + [aux_sym_preproc_if_token1] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2712), + [sym_preproc_directive] = ACTIONS(2712), + [anon_sym_LPAREN2] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_PLUS] = ACTIONS(2712), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_CARET] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym___extension__] = ACTIONS(2712), + [anon_sym_typedef] = ACTIONS(2712), + [anon_sym_extern] = ACTIONS(2712), + [anon_sym___attribute__] = ACTIONS(2712), + [anon_sym___attribute] = ACTIONS(2712), + [anon_sym_noreturn] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym___declspec] = ACTIONS(2712), + [anon_sym___cdecl] = ACTIONS(2712), + [anon_sym___clrcall] = ACTIONS(2712), + [anon_sym___stdcall] = ACTIONS(2712), + [anon_sym___fastcall] = ACTIONS(2712), + [anon_sym___thiscall] = ACTIONS(2712), + [anon_sym___vectorcall] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_signed] = ACTIONS(2712), + [anon_sym_unsigned] = ACTIONS(2712), + [anon_sym_long] = ACTIONS(2712), + [anon_sym_short] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2712), + [anon_sym_ATautoreleasepool] = ACTIONS(2714), + [anon_sym_auto] = ACTIONS(2712), + [anon_sym_register] = ACTIONS(2712), + [anon_sym_inline] = ACTIONS(2712), + [anon_sym___inline] = ACTIONS(2712), + [anon_sym___inline__] = ACTIONS(2712), + [anon_sym___forceinline] = ACTIONS(2712), + [anon_sym_thread_local] = ACTIONS(2712), + [anon_sym___thread] = ACTIONS(2712), + [anon_sym_CG_EXTERN] = ACTIONS(2712), + [anon_sym_CG_INLINE] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2712), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2712), + [anon_sym_IBOutlet] = ACTIONS(2712), + [anon_sym_IBInspectable] = ACTIONS(2712), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2712), + [anon_sym_NS_INLINE] = ACTIONS(2712), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2712), + [anon_sym_OBJC_EXPORT] = ACTIONS(2712), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2712), + [anon_sym_const] = ACTIONS(2712), + [anon_sym_constexpr] = ACTIONS(2712), + [anon_sym_volatile] = ACTIONS(2712), + [anon_sym_restrict] = ACTIONS(2712), + [anon_sym___restrict__] = ACTIONS(2712), + [anon_sym__Atomic] = ACTIONS(2712), + [anon_sym__Noreturn] = ACTIONS(2712), + [anon_sym__Nonnull] = ACTIONS(2712), + [anon_sym_nullable] = ACTIONS(2712), + [anon_sym__Complex] = ACTIONS(2712), + [anon_sym__Nullable] = ACTIONS(2712), + [anon_sym__Nullable_result] = ACTIONS(2712), + [anon_sym__Null_unspecified] = ACTIONS(2712), + [anon_sym___autoreleasing] = ACTIONS(2712), + [anon_sym___block] = ACTIONS(2712), + [anon_sym___bridge] = ACTIONS(2712), + [anon_sym___bridge_retained] = ACTIONS(2712), + [anon_sym___bridge_transfer] = ACTIONS(2712), + [anon_sym___complex] = ACTIONS(2712), + [anon_sym___const] = ACTIONS(2712), + [anon_sym___imag] = ACTIONS(2712), + [anon_sym___kindof] = ACTIONS(2712), + [anon_sym___nonnull] = ACTIONS(2712), + [anon_sym___nullable] = ACTIONS(2712), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2712), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2712), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2712), + [anon_sym___real] = ACTIONS(2712), + [anon_sym___strong] = ACTIONS(2712), + [anon_sym___unsafe_unretained] = ACTIONS(2712), + [anon_sym___unused] = ACTIONS(2712), + [anon_sym___weak] = ACTIONS(2712), + [anon_sym_alignas] = ACTIONS(2712), + [anon_sym__Alignas] = ACTIONS(2712), + [sym_primitive_type] = ACTIONS(2712), + [anon_sym_enum] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_union] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_switch] = ACTIONS(2712), + [anon_sym_case] = ACTIONS(2712), + [anon_sym_default] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_do] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_goto] = ACTIONS(2712), + [anon_sym_DASH_DASH] = ACTIONS(2714), + [anon_sym_PLUS_PLUS] = ACTIONS(2714), + [anon_sym_sizeof] = ACTIONS(2712), + [anon_sym___alignof__] = ACTIONS(2712), + [anon_sym___alignof] = ACTIONS(2712), + [anon_sym__alignof] = ACTIONS(2712), + [anon_sym_alignof] = ACTIONS(2712), + [anon_sym__Alignof] = ACTIONS(2712), + [anon_sym_offsetof] = ACTIONS(2712), + [anon_sym__Generic] = ACTIONS(2712), + [anon_sym_asm] = ACTIONS(2712), + [anon_sym___asm__] = ACTIONS(2712), + [anon_sym___asm] = ACTIONS(2712), + [sym_number_literal] = ACTIONS(2714), + [anon_sym_L_SQUOTE] = ACTIONS(2714), + [anon_sym_u_SQUOTE] = ACTIONS(2714), + [anon_sym_U_SQUOTE] = ACTIONS(2714), + [anon_sym_u8_SQUOTE] = ACTIONS(2714), + [anon_sym_SQUOTE] = ACTIONS(2714), + [anon_sym_AT] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2714), + [anon_sym_L_DQUOTE] = ACTIONS(2714), + [anon_sym_u_DQUOTE] = ACTIONS(2714), + [anon_sym_U_DQUOTE] = ACTIONS(2714), + [anon_sym_u8_DQUOTE] = ACTIONS(2714), + [sym_true] = ACTIONS(2712), + [sym_false] = ACTIONS(2712), + [anon_sym_NULL] = ACTIONS(2712), + [anon_sym_nullptr] = ACTIONS(2712), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2712), + [anon_sym___typeof] = ACTIONS(2712), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_ATimport] = ACTIONS(2714), + [aux_sym_preproc_undef_token1] = ACTIONS(2712), + [anon_sym_POUND] = ACTIONS(2712), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2712), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2712), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2712), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2712), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE] = ACTIONS(2712), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_API_AVAILABLE] = ACTIONS(2712), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_API_DEPRECATED] = ACTIONS(2712), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2712), + [anon_sym___deprecated_msg] = ACTIONS(2712), + [anon_sym___deprecated_enum_msg] = ACTIONS(2712), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2712), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2712), + [anon_sym_ATprotocol] = ACTIONS(2714), + [anon_sym_ATinterface] = ACTIONS(2714), + [anon_sym_ATimplementation] = ACTIONS(2714), + [anon_sym_ATcompatibility_alias] = ACTIONS(2714), + [anon_sym_ATselector] = ACTIONS(2714), + [anon_sym_ATavailable] = ACTIONS(2714), + [anon_sym___builtin_available] = ACTIONS(2712), + [anon_sym_va_arg] = ACTIONS(2712), + [anon_sym_ATencode] = ACTIONS(2714), + [anon_sym_BOOL] = ACTIONS(2712), + [anon_sym_IMP] = ACTIONS(2712), + [anon_sym_SEL] = ACTIONS(2712), + [anon_sym_Class] = ACTIONS(2712), + [anon_sym_id] = ACTIONS(2712), + }, + [1015] = { + [ts_builtin_sym_end] = ACTIONS(2714), + [sym_identifier] = ACTIONS(2712), + [aux_sym_preproc_include_token1] = ACTIONS(2712), + [aux_sym_preproc_include_token2] = ACTIONS(2712), + [aux_sym_preproc_def_token1] = ACTIONS(2712), + [aux_sym_preproc_if_token1] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2712), + [sym_preproc_directive] = ACTIONS(2712), + [anon_sym_LPAREN2] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_PLUS] = ACTIONS(2712), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_CARET] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym___extension__] = ACTIONS(2712), + [anon_sym_typedef] = ACTIONS(2712), + [anon_sym_extern] = ACTIONS(2712), + [anon_sym___attribute__] = ACTIONS(2712), + [anon_sym___attribute] = ACTIONS(2712), + [anon_sym_noreturn] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym___declspec] = ACTIONS(2712), + [anon_sym___cdecl] = ACTIONS(2712), + [anon_sym___clrcall] = ACTIONS(2712), + [anon_sym___stdcall] = ACTIONS(2712), + [anon_sym___fastcall] = ACTIONS(2712), + [anon_sym___thiscall] = ACTIONS(2712), + [anon_sym___vectorcall] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_signed] = ACTIONS(2712), + [anon_sym_unsigned] = ACTIONS(2712), + [anon_sym_long] = ACTIONS(2712), + [anon_sym_short] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2712), + [anon_sym_ATautoreleasepool] = ACTIONS(2714), + [anon_sym_auto] = ACTIONS(2712), + [anon_sym_register] = ACTIONS(2712), + [anon_sym_inline] = ACTIONS(2712), + [anon_sym___inline] = ACTIONS(2712), + [anon_sym___inline__] = ACTIONS(2712), + [anon_sym___forceinline] = ACTIONS(2712), + [anon_sym_thread_local] = ACTIONS(2712), + [anon_sym___thread] = ACTIONS(2712), + [anon_sym_CG_EXTERN] = ACTIONS(2712), + [anon_sym_CG_INLINE] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2712), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2712), + [anon_sym_IBOutlet] = ACTIONS(2712), + [anon_sym_IBInspectable] = ACTIONS(2712), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2712), + [anon_sym_NS_INLINE] = ACTIONS(2712), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2712), + [anon_sym_OBJC_EXPORT] = ACTIONS(2712), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2712), + [anon_sym_const] = ACTIONS(2712), + [anon_sym_constexpr] = ACTIONS(2712), + [anon_sym_volatile] = ACTIONS(2712), + [anon_sym_restrict] = ACTIONS(2712), + [anon_sym___restrict__] = ACTIONS(2712), + [anon_sym__Atomic] = ACTIONS(2712), + [anon_sym__Noreturn] = ACTIONS(2712), + [anon_sym__Nonnull] = ACTIONS(2712), + [anon_sym_nullable] = ACTIONS(2712), + [anon_sym__Complex] = ACTIONS(2712), + [anon_sym__Nullable] = ACTIONS(2712), + [anon_sym__Nullable_result] = ACTIONS(2712), + [anon_sym__Null_unspecified] = ACTIONS(2712), + [anon_sym___autoreleasing] = ACTIONS(2712), + [anon_sym___block] = ACTIONS(2712), + [anon_sym___bridge] = ACTIONS(2712), + [anon_sym___bridge_retained] = ACTIONS(2712), + [anon_sym___bridge_transfer] = ACTIONS(2712), + [anon_sym___complex] = ACTIONS(2712), + [anon_sym___const] = ACTIONS(2712), + [anon_sym___imag] = ACTIONS(2712), + [anon_sym___kindof] = ACTIONS(2712), + [anon_sym___nonnull] = ACTIONS(2712), + [anon_sym___nullable] = ACTIONS(2712), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2712), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2712), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2712), + [anon_sym___real] = ACTIONS(2712), + [anon_sym___strong] = ACTIONS(2712), + [anon_sym___unsafe_unretained] = ACTIONS(2712), + [anon_sym___unused] = ACTIONS(2712), + [anon_sym___weak] = ACTIONS(2712), + [anon_sym_alignas] = ACTIONS(2712), + [anon_sym__Alignas] = ACTIONS(2712), + [sym_primitive_type] = ACTIONS(2712), + [anon_sym_enum] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_union] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_switch] = ACTIONS(2712), + [anon_sym_case] = ACTIONS(2712), + [anon_sym_default] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_do] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_goto] = ACTIONS(2712), + [anon_sym_DASH_DASH] = ACTIONS(2714), + [anon_sym_PLUS_PLUS] = ACTIONS(2714), + [anon_sym_sizeof] = ACTIONS(2712), + [anon_sym___alignof__] = ACTIONS(2712), + [anon_sym___alignof] = ACTIONS(2712), + [anon_sym__alignof] = ACTIONS(2712), + [anon_sym_alignof] = ACTIONS(2712), + [anon_sym__Alignof] = ACTIONS(2712), + [anon_sym_offsetof] = ACTIONS(2712), + [anon_sym__Generic] = ACTIONS(2712), + [anon_sym_asm] = ACTIONS(2712), + [anon_sym___asm__] = ACTIONS(2712), + [anon_sym___asm] = ACTIONS(2712), + [sym_number_literal] = ACTIONS(2714), + [anon_sym_L_SQUOTE] = ACTIONS(2714), + [anon_sym_u_SQUOTE] = ACTIONS(2714), + [anon_sym_U_SQUOTE] = ACTIONS(2714), + [anon_sym_u8_SQUOTE] = ACTIONS(2714), + [anon_sym_SQUOTE] = ACTIONS(2714), + [anon_sym_AT] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2714), + [anon_sym_L_DQUOTE] = ACTIONS(2714), + [anon_sym_u_DQUOTE] = ACTIONS(2714), + [anon_sym_U_DQUOTE] = ACTIONS(2714), + [anon_sym_u8_DQUOTE] = ACTIONS(2714), + [sym_true] = ACTIONS(2712), + [sym_false] = ACTIONS(2712), + [anon_sym_NULL] = ACTIONS(2712), + [anon_sym_nullptr] = ACTIONS(2712), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2712), + [anon_sym___typeof] = ACTIONS(2712), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_ATimport] = ACTIONS(2714), + [aux_sym_preproc_undef_token1] = ACTIONS(2712), + [anon_sym_POUND] = ACTIONS(2712), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2712), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2712), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2712), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2712), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE] = ACTIONS(2712), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_API_AVAILABLE] = ACTIONS(2712), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_API_DEPRECATED] = ACTIONS(2712), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2712), + [anon_sym___deprecated_msg] = ACTIONS(2712), + [anon_sym___deprecated_enum_msg] = ACTIONS(2712), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2712), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2712), + [anon_sym_ATprotocol] = ACTIONS(2714), + [anon_sym_ATinterface] = ACTIONS(2714), + [anon_sym_ATimplementation] = ACTIONS(2714), + [anon_sym_ATcompatibility_alias] = ACTIONS(2714), + [anon_sym_ATselector] = ACTIONS(2714), + [anon_sym_ATavailable] = ACTIONS(2714), + [anon_sym___builtin_available] = ACTIONS(2712), + [anon_sym_va_arg] = ACTIONS(2712), + [anon_sym_ATencode] = ACTIONS(2714), + [anon_sym_BOOL] = ACTIONS(2712), + [anon_sym_IMP] = ACTIONS(2712), + [anon_sym_SEL] = ACTIONS(2712), + [anon_sym_Class] = ACTIONS(2712), + [anon_sym_id] = ACTIONS(2712), + }, + [1016] = { + [ts_builtin_sym_end] = ACTIONS(2714), + [sym_identifier] = ACTIONS(2712), + [aux_sym_preproc_include_token1] = ACTIONS(2712), + [aux_sym_preproc_include_token2] = ACTIONS(2712), + [aux_sym_preproc_def_token1] = ACTIONS(2712), + [aux_sym_preproc_if_token1] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2712), + [sym_preproc_directive] = ACTIONS(2712), + [anon_sym_LPAREN2] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_PLUS] = ACTIONS(2712), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_CARET] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym___extension__] = ACTIONS(2712), + [anon_sym_typedef] = ACTIONS(2712), + [anon_sym_extern] = ACTIONS(2712), + [anon_sym___attribute__] = ACTIONS(2712), + [anon_sym___attribute] = ACTIONS(2712), + [anon_sym_noreturn] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym___declspec] = ACTIONS(2712), + [anon_sym___cdecl] = ACTIONS(2712), + [anon_sym___clrcall] = ACTIONS(2712), + [anon_sym___stdcall] = ACTIONS(2712), + [anon_sym___fastcall] = ACTIONS(2712), + [anon_sym___thiscall] = ACTIONS(2712), + [anon_sym___vectorcall] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_signed] = ACTIONS(2712), + [anon_sym_unsigned] = ACTIONS(2712), + [anon_sym_long] = ACTIONS(2712), + [anon_sym_short] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2712), + [anon_sym_ATautoreleasepool] = ACTIONS(2714), + [anon_sym_auto] = ACTIONS(2712), + [anon_sym_register] = ACTIONS(2712), + [anon_sym_inline] = ACTIONS(2712), + [anon_sym___inline] = ACTIONS(2712), + [anon_sym___inline__] = ACTIONS(2712), + [anon_sym___forceinline] = ACTIONS(2712), + [anon_sym_thread_local] = ACTIONS(2712), + [anon_sym___thread] = ACTIONS(2712), + [anon_sym_CG_EXTERN] = ACTIONS(2712), + [anon_sym_CG_INLINE] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2712), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2712), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2712), + [anon_sym_IBOutlet] = ACTIONS(2712), + [anon_sym_IBInspectable] = ACTIONS(2712), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2712), + [anon_sym_NS_INLINE] = ACTIONS(2712), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2712), + [anon_sym_OBJC_EXPORT] = ACTIONS(2712), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2712), + [anon_sym_const] = ACTIONS(2712), + [anon_sym_constexpr] = ACTIONS(2712), + [anon_sym_volatile] = ACTIONS(2712), + [anon_sym_restrict] = ACTIONS(2712), + [anon_sym___restrict__] = ACTIONS(2712), + [anon_sym__Atomic] = ACTIONS(2712), + [anon_sym__Noreturn] = ACTIONS(2712), + [anon_sym__Nonnull] = ACTIONS(2712), + [anon_sym_nullable] = ACTIONS(2712), + [anon_sym__Complex] = ACTIONS(2712), + [anon_sym__Nullable] = ACTIONS(2712), + [anon_sym__Nullable_result] = ACTIONS(2712), + [anon_sym__Null_unspecified] = ACTIONS(2712), + [anon_sym___autoreleasing] = ACTIONS(2712), + [anon_sym___block] = ACTIONS(2712), + [anon_sym___bridge] = ACTIONS(2712), + [anon_sym___bridge_retained] = ACTIONS(2712), + [anon_sym___bridge_transfer] = ACTIONS(2712), + [anon_sym___complex] = ACTIONS(2712), + [anon_sym___const] = ACTIONS(2712), + [anon_sym___imag] = ACTIONS(2712), + [anon_sym___kindof] = ACTIONS(2712), + [anon_sym___nonnull] = ACTIONS(2712), + [anon_sym___nullable] = ACTIONS(2712), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2712), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2712), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2712), + [anon_sym___real] = ACTIONS(2712), + [anon_sym___strong] = ACTIONS(2712), + [anon_sym___unsafe_unretained] = ACTIONS(2712), + [anon_sym___unused] = ACTIONS(2712), + [anon_sym___weak] = ACTIONS(2712), + [anon_sym_alignas] = ACTIONS(2712), + [anon_sym__Alignas] = ACTIONS(2712), + [sym_primitive_type] = ACTIONS(2712), + [anon_sym_enum] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_union] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_switch] = ACTIONS(2712), + [anon_sym_case] = ACTIONS(2712), + [anon_sym_default] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_do] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_goto] = ACTIONS(2712), + [anon_sym_DASH_DASH] = ACTIONS(2714), + [anon_sym_PLUS_PLUS] = ACTIONS(2714), + [anon_sym_sizeof] = ACTIONS(2712), + [anon_sym___alignof__] = ACTIONS(2712), + [anon_sym___alignof] = ACTIONS(2712), + [anon_sym__alignof] = ACTIONS(2712), + [anon_sym_alignof] = ACTIONS(2712), + [anon_sym__Alignof] = ACTIONS(2712), + [anon_sym_offsetof] = ACTIONS(2712), + [anon_sym__Generic] = ACTIONS(2712), + [anon_sym_asm] = ACTIONS(2712), + [anon_sym___asm__] = ACTIONS(2712), + [anon_sym___asm] = ACTIONS(2712), + [sym_number_literal] = ACTIONS(2714), + [anon_sym_L_SQUOTE] = ACTIONS(2714), + [anon_sym_u_SQUOTE] = ACTIONS(2714), + [anon_sym_U_SQUOTE] = ACTIONS(2714), + [anon_sym_u8_SQUOTE] = ACTIONS(2714), + [anon_sym_SQUOTE] = ACTIONS(2714), + [anon_sym_AT] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2714), + [anon_sym_L_DQUOTE] = ACTIONS(2714), + [anon_sym_u_DQUOTE] = ACTIONS(2714), + [anon_sym_U_DQUOTE] = ACTIONS(2714), + [anon_sym_u8_DQUOTE] = ACTIONS(2714), + [sym_true] = ACTIONS(2712), + [sym_false] = ACTIONS(2712), + [anon_sym_NULL] = ACTIONS(2712), + [anon_sym_nullptr] = ACTIONS(2712), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2712), + [anon_sym___typeof] = ACTIONS(2712), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_ATimport] = ACTIONS(2714), + [aux_sym_preproc_undef_token1] = ACTIONS(2712), + [anon_sym_POUND] = ACTIONS(2712), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2712), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2712), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2712), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2712), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2712), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2712), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE] = ACTIONS(2712), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2712), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_API_AVAILABLE] = ACTIONS(2712), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_API_DEPRECATED] = ACTIONS(2712), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2712), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2712), + [anon_sym___deprecated_msg] = ACTIONS(2712), + [anon_sym___deprecated_enum_msg] = ACTIONS(2712), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2712), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2712), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2712), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2712), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2712), + [anon_sym_ATprotocol] = ACTIONS(2714), + [anon_sym_ATinterface] = ACTIONS(2714), + [anon_sym_ATimplementation] = ACTIONS(2714), + [anon_sym_ATcompatibility_alias] = ACTIONS(2714), + [anon_sym_ATselector] = ACTIONS(2714), + [anon_sym_ATavailable] = ACTIONS(2714), + [anon_sym___builtin_available] = ACTIONS(2712), + [anon_sym_va_arg] = ACTIONS(2712), + [anon_sym_ATencode] = ACTIONS(2714), + [anon_sym_BOOL] = ACTIONS(2712), + [anon_sym_IMP] = ACTIONS(2712), + [anon_sym_SEL] = ACTIONS(2712), + [anon_sym_Class] = ACTIONS(2712), + [anon_sym_id] = ACTIONS(2712), + }, + [1017] = { + [ts_builtin_sym_end] = ACTIONS(2718), + [sym_identifier] = ACTIONS(2716), + [aux_sym_preproc_include_token1] = ACTIONS(2716), + [aux_sym_preproc_include_token2] = ACTIONS(2716), + [aux_sym_preproc_def_token1] = ACTIONS(2716), + [aux_sym_preproc_if_token1] = ACTIONS(2716), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2716), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2716), + [sym_preproc_directive] = ACTIONS(2716), + [anon_sym_LPAREN2] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2718), + [anon_sym_TILDE] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2716), + [anon_sym_PLUS] = ACTIONS(2716), + [anon_sym_STAR] = ACTIONS(2718), + [anon_sym_CARET] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2718), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym___extension__] = ACTIONS(2716), + [anon_sym_typedef] = ACTIONS(2716), + [anon_sym_extern] = ACTIONS(2716), + [anon_sym___attribute__] = ACTIONS(2716), + [anon_sym___attribute] = ACTIONS(2716), + [anon_sym_noreturn] = ACTIONS(2716), + [anon_sym_LBRACK] = ACTIONS(2718), + [anon_sym___declspec] = ACTIONS(2716), + [anon_sym___cdecl] = ACTIONS(2716), + [anon_sym___clrcall] = ACTIONS(2716), + [anon_sym___stdcall] = ACTIONS(2716), + [anon_sym___fastcall] = ACTIONS(2716), + [anon_sym___thiscall] = ACTIONS(2716), + [anon_sym___vectorcall] = ACTIONS(2716), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_signed] = ACTIONS(2716), + [anon_sym_unsigned] = ACTIONS(2716), + [anon_sym_long] = ACTIONS(2716), + [anon_sym_short] = ACTIONS(2716), + [anon_sym_static] = ACTIONS(2716), + [anon_sym_ATautoreleasepool] = ACTIONS(2718), + [anon_sym_auto] = ACTIONS(2716), + [anon_sym_register] = ACTIONS(2716), + [anon_sym_inline] = ACTIONS(2716), + [anon_sym___inline] = ACTIONS(2716), + [anon_sym___inline__] = ACTIONS(2716), + [anon_sym___forceinline] = ACTIONS(2716), + [anon_sym_thread_local] = ACTIONS(2716), + [anon_sym___thread] = ACTIONS(2716), + [anon_sym_CG_EXTERN] = ACTIONS(2716), + [anon_sym_CG_INLINE] = ACTIONS(2716), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2716), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2716), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2716), + [anon_sym_IBOutlet] = ACTIONS(2716), + [anon_sym_IBInspectable] = ACTIONS(2716), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2716), + [anon_sym_NS_INLINE] = ACTIONS(2716), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2716), + [anon_sym_OBJC_EXPORT] = ACTIONS(2716), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2716), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2716), + [anon_sym_const] = ACTIONS(2716), + [anon_sym_constexpr] = ACTIONS(2716), + [anon_sym_volatile] = ACTIONS(2716), + [anon_sym_restrict] = ACTIONS(2716), + [anon_sym___restrict__] = ACTIONS(2716), + [anon_sym__Atomic] = ACTIONS(2716), + [anon_sym__Noreturn] = ACTIONS(2716), + [anon_sym__Nonnull] = ACTIONS(2716), + [anon_sym_nullable] = ACTIONS(2716), + [anon_sym__Complex] = ACTIONS(2716), + [anon_sym__Nullable] = ACTIONS(2716), + [anon_sym__Nullable_result] = ACTIONS(2716), + [anon_sym__Null_unspecified] = ACTIONS(2716), + [anon_sym___autoreleasing] = ACTIONS(2716), + [anon_sym___block] = ACTIONS(2716), + [anon_sym___bridge] = ACTIONS(2716), + [anon_sym___bridge_retained] = ACTIONS(2716), + [anon_sym___bridge_transfer] = ACTIONS(2716), + [anon_sym___complex] = ACTIONS(2716), + [anon_sym___const] = ACTIONS(2716), + [anon_sym___imag] = ACTIONS(2716), + [anon_sym___kindof] = ACTIONS(2716), + [anon_sym___nonnull] = ACTIONS(2716), + [anon_sym___nullable] = ACTIONS(2716), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2716), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2716), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2716), + [anon_sym___real] = ACTIONS(2716), + [anon_sym___strong] = ACTIONS(2716), + [anon_sym___unsafe_unretained] = ACTIONS(2716), + [anon_sym___unused] = ACTIONS(2716), + [anon_sym___weak] = ACTIONS(2716), + [anon_sym_alignas] = ACTIONS(2716), + [anon_sym__Alignas] = ACTIONS(2716), + [sym_primitive_type] = ACTIONS(2716), + [anon_sym_enum] = ACTIONS(2716), + [anon_sym_struct] = ACTIONS(2716), + [anon_sym_union] = ACTIONS(2716), + [anon_sym_if] = ACTIONS(2716), + [anon_sym_switch] = ACTIONS(2716), + [anon_sym_case] = ACTIONS(2716), + [anon_sym_default] = ACTIONS(2716), + [anon_sym_while] = ACTIONS(2716), + [anon_sym_do] = ACTIONS(2716), + [anon_sym_for] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2716), + [anon_sym_return] = ACTIONS(2716), + [anon_sym_break] = ACTIONS(2716), + [anon_sym_continue] = ACTIONS(2716), + [anon_sym_goto] = ACTIONS(2716), + [anon_sym_DASH_DASH] = ACTIONS(2718), + [anon_sym_PLUS_PLUS] = ACTIONS(2718), + [anon_sym_sizeof] = ACTIONS(2716), + [anon_sym___alignof__] = ACTIONS(2716), + [anon_sym___alignof] = ACTIONS(2716), + [anon_sym__alignof] = ACTIONS(2716), + [anon_sym_alignof] = ACTIONS(2716), + [anon_sym__Alignof] = ACTIONS(2716), + [anon_sym_offsetof] = ACTIONS(2716), + [anon_sym__Generic] = ACTIONS(2716), + [anon_sym_asm] = ACTIONS(2716), + [anon_sym___asm__] = ACTIONS(2716), + [anon_sym___asm] = ACTIONS(2716), + [sym_number_literal] = ACTIONS(2718), + [anon_sym_L_SQUOTE] = ACTIONS(2718), + [anon_sym_u_SQUOTE] = ACTIONS(2718), + [anon_sym_U_SQUOTE] = ACTIONS(2718), + [anon_sym_u8_SQUOTE] = ACTIONS(2718), + [anon_sym_SQUOTE] = ACTIONS(2718), + [anon_sym_AT] = ACTIONS(2716), + [anon_sym_DQUOTE] = ACTIONS(2718), + [anon_sym_L_DQUOTE] = ACTIONS(2718), + [anon_sym_u_DQUOTE] = ACTIONS(2718), + [anon_sym_U_DQUOTE] = ACTIONS(2718), + [anon_sym_u8_DQUOTE] = ACTIONS(2718), + [sym_true] = ACTIONS(2716), + [sym_false] = ACTIONS(2716), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2716), + [anon_sym___typeof] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(2716), + [anon_sym_ATimport] = ACTIONS(2718), + [aux_sym_preproc_undef_token1] = ACTIONS(2716), + [anon_sym_POUND] = ACTIONS(2716), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2716), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2716), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2716), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2716), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2716), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2716), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2716), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2716), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2716), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2716), + [anon_sym_NS_AVAILABLE] = ACTIONS(2716), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2716), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2716), + [anon_sym_API_AVAILABLE] = ACTIONS(2716), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2716), + [anon_sym_API_DEPRECATED] = ACTIONS(2716), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2716), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2716), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2716), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2716), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2716), + [anon_sym___deprecated_msg] = ACTIONS(2716), + [anon_sym___deprecated_enum_msg] = ACTIONS(2716), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2716), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2716), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2716), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2716), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2716), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2716), + [anon_sym_ATprotocol] = ACTIONS(2718), + [anon_sym_ATinterface] = ACTIONS(2718), + [anon_sym_ATimplementation] = ACTIONS(2718), + [anon_sym_ATcompatibility_alias] = ACTIONS(2718), + [anon_sym_ATselector] = ACTIONS(2718), + [anon_sym_ATavailable] = ACTIONS(2718), + [anon_sym___builtin_available] = ACTIONS(2716), + [anon_sym_va_arg] = ACTIONS(2716), + [anon_sym_ATencode] = ACTIONS(2718), + [anon_sym_BOOL] = ACTIONS(2716), + [anon_sym_IMP] = ACTIONS(2716), + [anon_sym_SEL] = ACTIONS(2716), + [anon_sym_Class] = ACTIONS(2716), + [anon_sym_id] = ACTIONS(2716), + }, + [1018] = { + [ts_builtin_sym_end] = ACTIONS(2722), + [sym_identifier] = ACTIONS(2720), + [aux_sym_preproc_include_token1] = ACTIONS(2720), + [aux_sym_preproc_include_token2] = ACTIONS(2720), + [aux_sym_preproc_def_token1] = ACTIONS(2720), + [aux_sym_preproc_if_token1] = ACTIONS(2720), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2720), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2720), + [sym_preproc_directive] = ACTIONS(2720), + [anon_sym_LPAREN2] = ACTIONS(2722), + [anon_sym_BANG] = ACTIONS(2722), + [anon_sym_TILDE] = ACTIONS(2722), + [anon_sym_DASH] = ACTIONS(2720), + [anon_sym_PLUS] = ACTIONS(2720), + [anon_sym_STAR] = ACTIONS(2722), + [anon_sym_CARET] = ACTIONS(2722), + [anon_sym_AMP] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_typedef] = ACTIONS(2720), + [anon_sym_extern] = ACTIONS(2720), + [anon_sym___attribute__] = ACTIONS(2720), + [anon_sym___attribute] = ACTIONS(2720), + [anon_sym_noreturn] = ACTIONS(2720), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym___declspec] = ACTIONS(2720), + [anon_sym___cdecl] = ACTIONS(2720), + [anon_sym___clrcall] = ACTIONS(2720), + [anon_sym___stdcall] = ACTIONS(2720), + [anon_sym___fastcall] = ACTIONS(2720), + [anon_sym___thiscall] = ACTIONS(2720), + [anon_sym___vectorcall] = ACTIONS(2720), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_signed] = ACTIONS(2720), + [anon_sym_unsigned] = ACTIONS(2720), + [anon_sym_long] = ACTIONS(2720), + [anon_sym_short] = ACTIONS(2720), + [anon_sym_static] = ACTIONS(2720), + [anon_sym_ATautoreleasepool] = ACTIONS(2722), + [anon_sym_auto] = ACTIONS(2720), + [anon_sym_register] = ACTIONS(2720), + [anon_sym_inline] = ACTIONS(2720), + [anon_sym___inline] = ACTIONS(2720), + [anon_sym___inline__] = ACTIONS(2720), + [anon_sym___forceinline] = ACTIONS(2720), + [anon_sym_thread_local] = ACTIONS(2720), + [anon_sym___thread] = ACTIONS(2720), + [anon_sym_CG_EXTERN] = ACTIONS(2720), + [anon_sym_CG_INLINE] = ACTIONS(2720), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2720), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2720), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2720), + [anon_sym_IBOutlet] = ACTIONS(2720), + [anon_sym_IBInspectable] = ACTIONS(2720), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2720), + [anon_sym_NS_INLINE] = ACTIONS(2720), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2720), + [anon_sym_OBJC_EXPORT] = ACTIONS(2720), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2720), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2720), + [anon_sym_const] = ACTIONS(2720), + [anon_sym_constexpr] = ACTIONS(2720), + [anon_sym_volatile] = ACTIONS(2720), + [anon_sym_restrict] = ACTIONS(2720), + [anon_sym___restrict__] = ACTIONS(2720), + [anon_sym__Atomic] = ACTIONS(2720), + [anon_sym__Noreturn] = ACTIONS(2720), + [anon_sym__Nonnull] = ACTIONS(2720), + [anon_sym_nullable] = ACTIONS(2720), + [anon_sym__Complex] = ACTIONS(2720), + [anon_sym__Nullable] = ACTIONS(2720), + [anon_sym__Nullable_result] = ACTIONS(2720), + [anon_sym__Null_unspecified] = ACTIONS(2720), + [anon_sym___autoreleasing] = ACTIONS(2720), + [anon_sym___block] = ACTIONS(2720), + [anon_sym___bridge] = ACTIONS(2720), + [anon_sym___bridge_retained] = ACTIONS(2720), + [anon_sym___bridge_transfer] = ACTIONS(2720), + [anon_sym___complex] = ACTIONS(2720), + [anon_sym___const] = ACTIONS(2720), + [anon_sym___imag] = ACTIONS(2720), + [anon_sym___kindof] = ACTIONS(2720), + [anon_sym___nonnull] = ACTIONS(2720), + [anon_sym___nullable] = ACTIONS(2720), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2720), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2720), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2720), + [anon_sym___real] = ACTIONS(2720), + [anon_sym___strong] = ACTIONS(2720), + [anon_sym___unsafe_unretained] = ACTIONS(2720), + [anon_sym___unused] = ACTIONS(2720), + [anon_sym___weak] = ACTIONS(2720), + [anon_sym_alignas] = ACTIONS(2720), + [anon_sym__Alignas] = ACTIONS(2720), + [sym_primitive_type] = ACTIONS(2720), + [anon_sym_enum] = ACTIONS(2720), + [anon_sym_struct] = ACTIONS(2720), + [anon_sym_union] = ACTIONS(2720), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_switch] = ACTIONS(2720), + [anon_sym_case] = ACTIONS(2720), + [anon_sym_default] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2720), + [anon_sym_do] = ACTIONS(2720), + [anon_sym_for] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2720), + [anon_sym_return] = ACTIONS(2720), + [anon_sym_break] = ACTIONS(2720), + [anon_sym_continue] = ACTIONS(2720), + [anon_sym_goto] = ACTIONS(2720), + [anon_sym_DASH_DASH] = ACTIONS(2722), + [anon_sym_PLUS_PLUS] = ACTIONS(2722), + [anon_sym_sizeof] = ACTIONS(2720), + [anon_sym___alignof__] = ACTIONS(2720), + [anon_sym___alignof] = ACTIONS(2720), + [anon_sym__alignof] = ACTIONS(2720), + [anon_sym_alignof] = ACTIONS(2720), + [anon_sym__Alignof] = ACTIONS(2720), + [anon_sym_offsetof] = ACTIONS(2720), + [anon_sym__Generic] = ACTIONS(2720), + [anon_sym_asm] = ACTIONS(2720), + [anon_sym___asm__] = ACTIONS(2720), + [anon_sym___asm] = ACTIONS(2720), + [sym_number_literal] = ACTIONS(2722), + [anon_sym_L_SQUOTE] = ACTIONS(2722), + [anon_sym_u_SQUOTE] = ACTIONS(2722), + [anon_sym_U_SQUOTE] = ACTIONS(2722), + [anon_sym_u8_SQUOTE] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2722), + [anon_sym_AT] = ACTIONS(2720), + [anon_sym_DQUOTE] = ACTIONS(2722), + [anon_sym_L_DQUOTE] = ACTIONS(2722), + [anon_sym_u_DQUOTE] = ACTIONS(2722), + [anon_sym_U_DQUOTE] = ACTIONS(2722), + [anon_sym_u8_DQUOTE] = ACTIONS(2722), + [sym_true] = ACTIONS(2720), + [sym_false] = ACTIONS(2720), + [anon_sym_NULL] = ACTIONS(2720), + [anon_sym_nullptr] = ACTIONS(2720), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2720), + [anon_sym___typeof] = ACTIONS(2720), + [anon_sym_typeof] = ACTIONS(2720), + [anon_sym_ATimport] = ACTIONS(2722), + [aux_sym_preproc_undef_token1] = ACTIONS(2720), + [anon_sym_POUND] = ACTIONS(2720), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2720), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2720), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2720), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2720), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2720), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2720), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2720), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2720), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2720), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2720), + [anon_sym_NS_AVAILABLE] = ACTIONS(2720), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2720), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2720), + [anon_sym_API_AVAILABLE] = ACTIONS(2720), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2720), + [anon_sym_API_DEPRECATED] = ACTIONS(2720), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2720), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2720), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2720), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2720), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2720), + [anon_sym___deprecated_msg] = ACTIONS(2720), + [anon_sym___deprecated_enum_msg] = ACTIONS(2720), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2720), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2720), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2720), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2720), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2720), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2720), + [anon_sym_ATprotocol] = ACTIONS(2722), + [anon_sym_ATinterface] = ACTIONS(2722), + [anon_sym_ATimplementation] = ACTIONS(2722), + [anon_sym_ATcompatibility_alias] = ACTIONS(2722), + [anon_sym_ATselector] = ACTIONS(2722), + [anon_sym_ATavailable] = ACTIONS(2722), + [anon_sym___builtin_available] = ACTIONS(2720), + [anon_sym_va_arg] = ACTIONS(2720), + [anon_sym_ATencode] = ACTIONS(2722), + [anon_sym_BOOL] = ACTIONS(2720), + [anon_sym_IMP] = ACTIONS(2720), + [anon_sym_SEL] = ACTIONS(2720), + [anon_sym_Class] = ACTIONS(2720), + [anon_sym_id] = ACTIONS(2720), + }, + [1019] = { + [ts_builtin_sym_end] = ACTIONS(2726), + [sym_identifier] = ACTIONS(2724), + [aux_sym_preproc_include_token1] = ACTIONS(2724), + [aux_sym_preproc_include_token2] = ACTIONS(2724), + [aux_sym_preproc_def_token1] = ACTIONS(2724), + [aux_sym_preproc_if_token1] = ACTIONS(2724), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2724), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2724), + [sym_preproc_directive] = ACTIONS(2724), + [anon_sym_LPAREN2] = ACTIONS(2726), + [anon_sym_BANG] = ACTIONS(2726), + [anon_sym_TILDE] = ACTIONS(2726), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2726), + [anon_sym_CARET] = ACTIONS(2726), + [anon_sym_AMP] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym___extension__] = ACTIONS(2724), + [anon_sym_typedef] = ACTIONS(2724), + [anon_sym_extern] = ACTIONS(2724), + [anon_sym___attribute__] = ACTIONS(2724), + [anon_sym___attribute] = ACTIONS(2724), + [anon_sym_noreturn] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2726), + [anon_sym___declspec] = ACTIONS(2724), + [anon_sym___cdecl] = ACTIONS(2724), + [anon_sym___clrcall] = ACTIONS(2724), + [anon_sym___stdcall] = ACTIONS(2724), + [anon_sym___fastcall] = ACTIONS(2724), + [anon_sym___thiscall] = ACTIONS(2724), + [anon_sym___vectorcall] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2726), + [anon_sym_signed] = ACTIONS(2724), + [anon_sym_unsigned] = ACTIONS(2724), + [anon_sym_long] = ACTIONS(2724), + [anon_sym_short] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2724), + [anon_sym_ATautoreleasepool] = ACTIONS(2726), + [anon_sym_auto] = ACTIONS(2724), + [anon_sym_register] = ACTIONS(2724), + [anon_sym_inline] = ACTIONS(2724), + [anon_sym___inline] = ACTIONS(2724), + [anon_sym___inline__] = ACTIONS(2724), + [anon_sym___forceinline] = ACTIONS(2724), + [anon_sym_thread_local] = ACTIONS(2724), + [anon_sym___thread] = ACTIONS(2724), + [anon_sym_CG_EXTERN] = ACTIONS(2724), + [anon_sym_CG_INLINE] = ACTIONS(2724), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2724), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2724), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2724), + [anon_sym_IBOutlet] = ACTIONS(2724), + [anon_sym_IBInspectable] = ACTIONS(2724), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2724), + [anon_sym_NS_INLINE] = ACTIONS(2724), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2724), + [anon_sym_OBJC_EXPORT] = ACTIONS(2724), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2724), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2724), + [anon_sym_const] = ACTIONS(2724), + [anon_sym_constexpr] = ACTIONS(2724), + [anon_sym_volatile] = ACTIONS(2724), + [anon_sym_restrict] = ACTIONS(2724), + [anon_sym___restrict__] = ACTIONS(2724), + [anon_sym__Atomic] = ACTIONS(2724), + [anon_sym__Noreturn] = ACTIONS(2724), + [anon_sym__Nonnull] = ACTIONS(2724), + [anon_sym_nullable] = ACTIONS(2724), + [anon_sym__Complex] = ACTIONS(2724), + [anon_sym__Nullable] = ACTIONS(2724), + [anon_sym__Nullable_result] = ACTIONS(2724), + [anon_sym__Null_unspecified] = ACTIONS(2724), + [anon_sym___autoreleasing] = ACTIONS(2724), + [anon_sym___block] = ACTIONS(2724), + [anon_sym___bridge] = ACTIONS(2724), + [anon_sym___bridge_retained] = ACTIONS(2724), + [anon_sym___bridge_transfer] = ACTIONS(2724), + [anon_sym___complex] = ACTIONS(2724), + [anon_sym___const] = ACTIONS(2724), + [anon_sym___imag] = ACTIONS(2724), + [anon_sym___kindof] = ACTIONS(2724), + [anon_sym___nonnull] = ACTIONS(2724), + [anon_sym___nullable] = ACTIONS(2724), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2724), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2724), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2724), + [anon_sym___real] = ACTIONS(2724), + [anon_sym___strong] = ACTIONS(2724), + [anon_sym___unsafe_unretained] = ACTIONS(2724), + [anon_sym___unused] = ACTIONS(2724), + [anon_sym___weak] = ACTIONS(2724), + [anon_sym_alignas] = ACTIONS(2724), + [anon_sym__Alignas] = ACTIONS(2724), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), + [anon_sym_struct] = ACTIONS(2724), + [anon_sym_union] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2724), + [anon_sym_default] = ACTIONS(2724), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_do] = ACTIONS(2724), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_goto] = ACTIONS(2724), + [anon_sym_DASH_DASH] = ACTIONS(2726), + [anon_sym_PLUS_PLUS] = ACTIONS(2726), + [anon_sym_sizeof] = ACTIONS(2724), + [anon_sym___alignof__] = ACTIONS(2724), + [anon_sym___alignof] = ACTIONS(2724), + [anon_sym__alignof] = ACTIONS(2724), + [anon_sym_alignof] = ACTIONS(2724), + [anon_sym__Alignof] = ACTIONS(2724), + [anon_sym_offsetof] = ACTIONS(2724), + [anon_sym__Generic] = ACTIONS(2724), + [anon_sym_asm] = ACTIONS(2724), + [anon_sym___asm__] = ACTIONS(2724), + [anon_sym___asm] = ACTIONS(2724), + [sym_number_literal] = ACTIONS(2726), + [anon_sym_L_SQUOTE] = ACTIONS(2726), + [anon_sym_u_SQUOTE] = ACTIONS(2726), + [anon_sym_U_SQUOTE] = ACTIONS(2726), + [anon_sym_u8_SQUOTE] = ACTIONS(2726), + [anon_sym_SQUOTE] = ACTIONS(2726), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_DQUOTE] = ACTIONS(2726), + [anon_sym_L_DQUOTE] = ACTIONS(2726), + [anon_sym_u_DQUOTE] = ACTIONS(2726), + [anon_sym_U_DQUOTE] = ACTIONS(2726), + [anon_sym_u8_DQUOTE] = ACTIONS(2726), + [sym_true] = ACTIONS(2724), + [sym_false] = ACTIONS(2724), + [anon_sym_NULL] = ACTIONS(2724), + [anon_sym_nullptr] = ACTIONS(2724), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2724), + [anon_sym___typeof] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(2724), + [anon_sym_ATimport] = ACTIONS(2726), + [aux_sym_preproc_undef_token1] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(2724), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2724), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2724), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2724), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2724), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2724), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2724), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2724), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2724), + [anon_sym_NS_AVAILABLE] = ACTIONS(2724), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2724), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_API_AVAILABLE] = ACTIONS(2724), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_API_DEPRECATED] = ACTIONS(2724), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2724), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2724), + [anon_sym___deprecated_msg] = ACTIONS(2724), + [anon_sym___deprecated_enum_msg] = ACTIONS(2724), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2724), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2724), + [anon_sym_ATprotocol] = ACTIONS(2726), + [anon_sym_ATinterface] = ACTIONS(2726), + [anon_sym_ATimplementation] = ACTIONS(2726), + [anon_sym_ATcompatibility_alias] = ACTIONS(2726), + [anon_sym_ATselector] = ACTIONS(2726), + [anon_sym_ATavailable] = ACTIONS(2726), + [anon_sym___builtin_available] = ACTIONS(2724), + [anon_sym_va_arg] = ACTIONS(2724), + [anon_sym_ATencode] = ACTIONS(2726), + [anon_sym_BOOL] = ACTIONS(2724), + [anon_sym_IMP] = ACTIONS(2724), + [anon_sym_SEL] = ACTIONS(2724), + [anon_sym_Class] = ACTIONS(2724), + [anon_sym_id] = ACTIONS(2724), + }, + [1020] = { + [ts_builtin_sym_end] = ACTIONS(2726), + [sym_identifier] = ACTIONS(2724), + [aux_sym_preproc_include_token1] = ACTIONS(2724), + [aux_sym_preproc_include_token2] = ACTIONS(2724), + [aux_sym_preproc_def_token1] = ACTIONS(2724), + [aux_sym_preproc_if_token1] = ACTIONS(2724), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2724), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2724), + [sym_preproc_directive] = ACTIONS(2724), + [anon_sym_LPAREN2] = ACTIONS(2726), + [anon_sym_BANG] = ACTIONS(2726), + [anon_sym_TILDE] = ACTIONS(2726), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2726), + [anon_sym_CARET] = ACTIONS(2726), + [anon_sym_AMP] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym___extension__] = ACTIONS(2724), + [anon_sym_typedef] = ACTIONS(2724), + [anon_sym_extern] = ACTIONS(2724), + [anon_sym___attribute__] = ACTIONS(2724), + [anon_sym___attribute] = ACTIONS(2724), + [anon_sym_noreturn] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2726), + [anon_sym___declspec] = ACTIONS(2724), + [anon_sym___cdecl] = ACTIONS(2724), + [anon_sym___clrcall] = ACTIONS(2724), + [anon_sym___stdcall] = ACTIONS(2724), + [anon_sym___fastcall] = ACTIONS(2724), + [anon_sym___thiscall] = ACTIONS(2724), + [anon_sym___vectorcall] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2726), + [anon_sym_signed] = ACTIONS(2724), + [anon_sym_unsigned] = ACTIONS(2724), + [anon_sym_long] = ACTIONS(2724), + [anon_sym_short] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2724), + [anon_sym_ATautoreleasepool] = ACTIONS(2726), + [anon_sym_auto] = ACTIONS(2724), + [anon_sym_register] = ACTIONS(2724), + [anon_sym_inline] = ACTIONS(2724), + [anon_sym___inline] = ACTIONS(2724), + [anon_sym___inline__] = ACTIONS(2724), + [anon_sym___forceinline] = ACTIONS(2724), + [anon_sym_thread_local] = ACTIONS(2724), + [anon_sym___thread] = ACTIONS(2724), + [anon_sym_CG_EXTERN] = ACTIONS(2724), + [anon_sym_CG_INLINE] = ACTIONS(2724), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2724), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2724), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2724), + [anon_sym_IBOutlet] = ACTIONS(2724), + [anon_sym_IBInspectable] = ACTIONS(2724), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2724), + [anon_sym_NS_INLINE] = ACTIONS(2724), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2724), + [anon_sym_OBJC_EXPORT] = ACTIONS(2724), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2724), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2724), + [anon_sym_const] = ACTIONS(2724), + [anon_sym_constexpr] = ACTIONS(2724), + [anon_sym_volatile] = ACTIONS(2724), + [anon_sym_restrict] = ACTIONS(2724), + [anon_sym___restrict__] = ACTIONS(2724), + [anon_sym__Atomic] = ACTIONS(2724), + [anon_sym__Noreturn] = ACTIONS(2724), + [anon_sym__Nonnull] = ACTIONS(2724), + [anon_sym_nullable] = ACTIONS(2724), + [anon_sym__Complex] = ACTIONS(2724), + [anon_sym__Nullable] = ACTIONS(2724), + [anon_sym__Nullable_result] = ACTIONS(2724), + [anon_sym__Null_unspecified] = ACTIONS(2724), + [anon_sym___autoreleasing] = ACTIONS(2724), + [anon_sym___block] = ACTIONS(2724), + [anon_sym___bridge] = ACTIONS(2724), + [anon_sym___bridge_retained] = ACTIONS(2724), + [anon_sym___bridge_transfer] = ACTIONS(2724), + [anon_sym___complex] = ACTIONS(2724), + [anon_sym___const] = ACTIONS(2724), + [anon_sym___imag] = ACTIONS(2724), + [anon_sym___kindof] = ACTIONS(2724), + [anon_sym___nonnull] = ACTIONS(2724), + [anon_sym___nullable] = ACTIONS(2724), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2724), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2724), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2724), + [anon_sym___real] = ACTIONS(2724), + [anon_sym___strong] = ACTIONS(2724), + [anon_sym___unsafe_unretained] = ACTIONS(2724), + [anon_sym___unused] = ACTIONS(2724), + [anon_sym___weak] = ACTIONS(2724), + [anon_sym_alignas] = ACTIONS(2724), + [anon_sym__Alignas] = ACTIONS(2724), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), + [anon_sym_struct] = ACTIONS(2724), + [anon_sym_union] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2724), + [anon_sym_default] = ACTIONS(2724), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_do] = ACTIONS(2724), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_goto] = ACTIONS(2724), + [anon_sym_DASH_DASH] = ACTIONS(2726), + [anon_sym_PLUS_PLUS] = ACTIONS(2726), + [anon_sym_sizeof] = ACTIONS(2724), + [anon_sym___alignof__] = ACTIONS(2724), + [anon_sym___alignof] = ACTIONS(2724), + [anon_sym__alignof] = ACTIONS(2724), + [anon_sym_alignof] = ACTIONS(2724), + [anon_sym__Alignof] = ACTIONS(2724), + [anon_sym_offsetof] = ACTIONS(2724), + [anon_sym__Generic] = ACTIONS(2724), + [anon_sym_asm] = ACTIONS(2724), + [anon_sym___asm__] = ACTIONS(2724), + [anon_sym___asm] = ACTIONS(2724), + [sym_number_literal] = ACTIONS(2726), + [anon_sym_L_SQUOTE] = ACTIONS(2726), + [anon_sym_u_SQUOTE] = ACTIONS(2726), + [anon_sym_U_SQUOTE] = ACTIONS(2726), + [anon_sym_u8_SQUOTE] = ACTIONS(2726), + [anon_sym_SQUOTE] = ACTIONS(2726), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_DQUOTE] = ACTIONS(2726), + [anon_sym_L_DQUOTE] = ACTIONS(2726), + [anon_sym_u_DQUOTE] = ACTIONS(2726), + [anon_sym_U_DQUOTE] = ACTIONS(2726), + [anon_sym_u8_DQUOTE] = ACTIONS(2726), + [sym_true] = ACTIONS(2724), + [sym_false] = ACTIONS(2724), + [anon_sym_NULL] = ACTIONS(2724), + [anon_sym_nullptr] = ACTIONS(2724), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2724), + [anon_sym___typeof] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(2724), + [anon_sym_ATimport] = ACTIONS(2726), + [aux_sym_preproc_undef_token1] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(2724), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2724), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2724), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2724), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2724), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2724), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2724), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2724), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2724), + [anon_sym_NS_AVAILABLE] = ACTIONS(2724), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2724), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_API_AVAILABLE] = ACTIONS(2724), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_API_DEPRECATED] = ACTIONS(2724), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2724), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2724), + [anon_sym___deprecated_msg] = ACTIONS(2724), + [anon_sym___deprecated_enum_msg] = ACTIONS(2724), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2724), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2724), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2724), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2724), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2724), + [anon_sym_ATprotocol] = ACTIONS(2726), + [anon_sym_ATinterface] = ACTIONS(2726), + [anon_sym_ATimplementation] = ACTIONS(2726), + [anon_sym_ATcompatibility_alias] = ACTIONS(2726), + [anon_sym_ATselector] = ACTIONS(2726), + [anon_sym_ATavailable] = ACTIONS(2726), + [anon_sym___builtin_available] = ACTIONS(2724), + [anon_sym_va_arg] = ACTIONS(2724), + [anon_sym_ATencode] = ACTIONS(2726), + [anon_sym_BOOL] = ACTIONS(2724), + [anon_sym_IMP] = ACTIONS(2724), + [anon_sym_SEL] = ACTIONS(2724), + [anon_sym_Class] = ACTIONS(2724), + [anon_sym_id] = ACTIONS(2724), + }, + [1021] = { + [ts_builtin_sym_end] = ACTIONS(2614), + [sym_identifier] = ACTIONS(2612), + [aux_sym_preproc_include_token1] = ACTIONS(2612), + [aux_sym_preproc_include_token2] = ACTIONS(2612), + [aux_sym_preproc_def_token1] = ACTIONS(2612), + [aux_sym_preproc_if_token1] = ACTIONS(2612), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2612), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2612), + [sym_preproc_directive] = ACTIONS(2612), + [anon_sym_LPAREN2] = ACTIONS(2614), + [anon_sym_BANG] = ACTIONS(2614), + [anon_sym_TILDE] = ACTIONS(2614), + [anon_sym_DASH] = ACTIONS(2612), + [anon_sym_PLUS] = ACTIONS(2612), + [anon_sym_STAR] = ACTIONS(2614), + [anon_sym_CARET] = ACTIONS(2614), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_SEMI] = ACTIONS(2614), + [anon_sym___extension__] = ACTIONS(2612), + [anon_sym_typedef] = ACTIONS(2612), + [anon_sym_extern] = ACTIONS(2612), + [anon_sym___attribute__] = ACTIONS(2612), + [anon_sym___attribute] = ACTIONS(2612), + [anon_sym_noreturn] = ACTIONS(2612), + [anon_sym_LBRACK] = ACTIONS(2614), + [anon_sym___declspec] = ACTIONS(2612), + [anon_sym___cdecl] = ACTIONS(2612), + [anon_sym___clrcall] = ACTIONS(2612), + [anon_sym___stdcall] = ACTIONS(2612), + [anon_sym___fastcall] = ACTIONS(2612), + [anon_sym___thiscall] = ACTIONS(2612), + [anon_sym___vectorcall] = ACTIONS(2612), + [anon_sym_LBRACE] = ACTIONS(2614), + [anon_sym_signed] = ACTIONS(2612), + [anon_sym_unsigned] = ACTIONS(2612), + [anon_sym_long] = ACTIONS(2612), + [anon_sym_short] = ACTIONS(2612), + [anon_sym_static] = ACTIONS(2612), + [anon_sym_ATautoreleasepool] = ACTIONS(2614), + [anon_sym_auto] = ACTIONS(2612), + [anon_sym_register] = ACTIONS(2612), + [anon_sym_inline] = ACTIONS(2612), + [anon_sym___inline] = ACTIONS(2612), + [anon_sym___inline__] = ACTIONS(2612), + [anon_sym___forceinline] = ACTIONS(2612), + [anon_sym_thread_local] = ACTIONS(2612), + [anon_sym___thread] = ACTIONS(2612), + [anon_sym_CG_EXTERN] = ACTIONS(2612), + [anon_sym_CG_INLINE] = ACTIONS(2612), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2612), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2612), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2612), + [anon_sym_IBOutlet] = ACTIONS(2612), + [anon_sym_IBInspectable] = ACTIONS(2612), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2612), + [anon_sym_NS_INLINE] = ACTIONS(2612), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2612), + [anon_sym_OBJC_EXPORT] = ACTIONS(2612), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2612), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2612), + [anon_sym_const] = ACTIONS(2612), + [anon_sym_constexpr] = ACTIONS(2612), + [anon_sym_volatile] = ACTIONS(2612), + [anon_sym_restrict] = ACTIONS(2612), + [anon_sym___restrict__] = ACTIONS(2612), + [anon_sym__Atomic] = ACTIONS(2612), + [anon_sym__Noreturn] = ACTIONS(2612), + [anon_sym__Nonnull] = ACTIONS(2612), + [anon_sym_nullable] = ACTIONS(2612), + [anon_sym__Complex] = ACTIONS(2612), + [anon_sym__Nullable] = ACTIONS(2612), + [anon_sym__Nullable_result] = ACTIONS(2612), + [anon_sym__Null_unspecified] = ACTIONS(2612), + [anon_sym___autoreleasing] = ACTIONS(2612), + [anon_sym___block] = ACTIONS(2612), + [anon_sym___bridge] = ACTIONS(2612), + [anon_sym___bridge_retained] = ACTIONS(2612), + [anon_sym___bridge_transfer] = ACTIONS(2612), + [anon_sym___complex] = ACTIONS(2612), + [anon_sym___const] = ACTIONS(2612), + [anon_sym___imag] = ACTIONS(2612), + [anon_sym___kindof] = ACTIONS(2612), + [anon_sym___nonnull] = ACTIONS(2612), + [anon_sym___nullable] = ACTIONS(2612), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2612), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2612), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2612), + [anon_sym___real] = ACTIONS(2612), + [anon_sym___strong] = ACTIONS(2612), + [anon_sym___unsafe_unretained] = ACTIONS(2612), + [anon_sym___unused] = ACTIONS(2612), + [anon_sym___weak] = ACTIONS(2612), + [anon_sym_alignas] = ACTIONS(2612), + [anon_sym__Alignas] = ACTIONS(2612), + [sym_primitive_type] = ACTIONS(2612), + [anon_sym_enum] = ACTIONS(2612), + [anon_sym_struct] = ACTIONS(2612), + [anon_sym_union] = ACTIONS(2612), + [anon_sym_if] = ACTIONS(2612), + [anon_sym_switch] = ACTIONS(2612), + [anon_sym_case] = ACTIONS(2612), + [anon_sym_default] = ACTIONS(2612), + [anon_sym_while] = ACTIONS(2612), + [anon_sym_do] = ACTIONS(2612), + [anon_sym_for] = ACTIONS(2612), + [anon_sym_in] = ACTIONS(2612), + [anon_sym_return] = ACTIONS(2612), + [anon_sym_break] = ACTIONS(2612), + [anon_sym_continue] = ACTIONS(2612), + [anon_sym_goto] = ACTIONS(2612), + [anon_sym_DASH_DASH] = ACTIONS(2614), + [anon_sym_PLUS_PLUS] = ACTIONS(2614), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2612), + [anon_sym___alignof] = ACTIONS(2612), + [anon_sym__alignof] = ACTIONS(2612), + [anon_sym_alignof] = ACTIONS(2612), + [anon_sym__Alignof] = ACTIONS(2612), + [anon_sym_offsetof] = ACTIONS(2612), + [anon_sym__Generic] = ACTIONS(2612), + [anon_sym_asm] = ACTIONS(2612), + [anon_sym___asm__] = ACTIONS(2612), + [anon_sym___asm] = ACTIONS(2612), + [sym_number_literal] = ACTIONS(2614), + [anon_sym_L_SQUOTE] = ACTIONS(2614), + [anon_sym_u_SQUOTE] = ACTIONS(2614), + [anon_sym_U_SQUOTE] = ACTIONS(2614), + [anon_sym_u8_SQUOTE] = ACTIONS(2614), + [anon_sym_SQUOTE] = ACTIONS(2614), + [anon_sym_AT] = ACTIONS(2612), + [anon_sym_DQUOTE] = ACTIONS(2614), + [anon_sym_L_DQUOTE] = ACTIONS(2614), + [anon_sym_u_DQUOTE] = ACTIONS(2614), + [anon_sym_U_DQUOTE] = ACTIONS(2614), + [anon_sym_u8_DQUOTE] = ACTIONS(2614), + [sym_true] = ACTIONS(2612), + [sym_false] = ACTIONS(2612), + [anon_sym_NULL] = ACTIONS(2612), + [anon_sym_nullptr] = ACTIONS(2612), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2612), + [anon_sym___typeof] = ACTIONS(2612), + [anon_sym_typeof] = ACTIONS(2612), + [anon_sym_ATimport] = ACTIONS(2614), + [aux_sym_preproc_undef_token1] = ACTIONS(2612), + [anon_sym_POUND] = ACTIONS(2612), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2612), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2612), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2612), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2612), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2612), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2612), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2612), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2612), + [anon_sym_NS_AVAILABLE] = ACTIONS(2612), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2612), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_API_AVAILABLE] = ACTIONS(2612), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_API_DEPRECATED] = ACTIONS(2612), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2612), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2612), + [anon_sym___deprecated_msg] = ACTIONS(2612), + [anon_sym___deprecated_enum_msg] = ACTIONS(2612), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2612), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2612), + [anon_sym_ATprotocol] = ACTIONS(2614), + [anon_sym_ATinterface] = ACTIONS(2614), + [anon_sym_ATimplementation] = ACTIONS(2614), + [anon_sym_ATcompatibility_alias] = ACTIONS(2614), + [anon_sym_ATselector] = ACTIONS(2614), + [anon_sym_ATavailable] = ACTIONS(2614), + [anon_sym___builtin_available] = ACTIONS(2612), + [anon_sym_va_arg] = ACTIONS(2612), + [anon_sym_ATencode] = ACTIONS(2614), + [anon_sym_BOOL] = ACTIONS(2612), + [anon_sym_IMP] = ACTIONS(2612), + [anon_sym_SEL] = ACTIONS(2612), + [anon_sym_Class] = ACTIONS(2612), + [anon_sym_id] = ACTIONS(2612), + }, + [1022] = { + [ts_builtin_sym_end] = ACTIONS(2730), + [sym_identifier] = ACTIONS(2728), + [aux_sym_preproc_include_token1] = ACTIONS(2728), + [aux_sym_preproc_include_token2] = ACTIONS(2728), + [aux_sym_preproc_def_token1] = ACTIONS(2728), + [aux_sym_preproc_if_token1] = ACTIONS(2728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2728), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2728), + [sym_preproc_directive] = ACTIONS(2728), + [anon_sym_LPAREN2] = ACTIONS(2730), + [anon_sym_BANG] = ACTIONS(2730), + [anon_sym_TILDE] = ACTIONS(2730), + [anon_sym_DASH] = ACTIONS(2728), + [anon_sym_PLUS] = ACTIONS(2728), + [anon_sym_STAR] = ACTIONS(2730), + [anon_sym_CARET] = ACTIONS(2730), + [anon_sym_AMP] = ACTIONS(2730), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym___extension__] = ACTIONS(2728), + [anon_sym_typedef] = ACTIONS(2728), + [anon_sym_extern] = ACTIONS(2728), + [anon_sym___attribute__] = ACTIONS(2728), + [anon_sym___attribute] = ACTIONS(2728), + [anon_sym_noreturn] = ACTIONS(2728), + [anon_sym_LBRACK] = ACTIONS(2730), + [anon_sym___declspec] = ACTIONS(2728), + [anon_sym___cdecl] = ACTIONS(2728), + [anon_sym___clrcall] = ACTIONS(2728), + [anon_sym___stdcall] = ACTIONS(2728), + [anon_sym___fastcall] = ACTIONS(2728), + [anon_sym___thiscall] = ACTIONS(2728), + [anon_sym___vectorcall] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_signed] = ACTIONS(2728), + [anon_sym_unsigned] = ACTIONS(2728), + [anon_sym_long] = ACTIONS(2728), + [anon_sym_short] = ACTIONS(2728), + [anon_sym_static] = ACTIONS(2728), + [anon_sym_ATautoreleasepool] = ACTIONS(2730), + [anon_sym_auto] = ACTIONS(2728), + [anon_sym_register] = ACTIONS(2728), + [anon_sym_inline] = ACTIONS(2728), + [anon_sym___inline] = ACTIONS(2728), + [anon_sym___inline__] = ACTIONS(2728), + [anon_sym___forceinline] = ACTIONS(2728), + [anon_sym_thread_local] = ACTIONS(2728), + [anon_sym___thread] = ACTIONS(2728), + [anon_sym_CG_EXTERN] = ACTIONS(2728), + [anon_sym_CG_INLINE] = ACTIONS(2728), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2728), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2728), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2728), + [anon_sym_IBOutlet] = ACTIONS(2728), + [anon_sym_IBInspectable] = ACTIONS(2728), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2728), + [anon_sym_NS_INLINE] = ACTIONS(2728), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2728), + [anon_sym_OBJC_EXPORT] = ACTIONS(2728), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2728), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2728), + [anon_sym_const] = ACTIONS(2728), + [anon_sym_constexpr] = ACTIONS(2728), + [anon_sym_volatile] = ACTIONS(2728), + [anon_sym_restrict] = ACTIONS(2728), + [anon_sym___restrict__] = ACTIONS(2728), + [anon_sym__Atomic] = ACTIONS(2728), + [anon_sym__Noreturn] = ACTIONS(2728), + [anon_sym__Nonnull] = ACTIONS(2728), + [anon_sym_nullable] = ACTIONS(2728), + [anon_sym__Complex] = ACTIONS(2728), + [anon_sym__Nullable] = ACTIONS(2728), + [anon_sym__Nullable_result] = ACTIONS(2728), + [anon_sym__Null_unspecified] = ACTIONS(2728), + [anon_sym___autoreleasing] = ACTIONS(2728), + [anon_sym___block] = ACTIONS(2728), + [anon_sym___bridge] = ACTIONS(2728), + [anon_sym___bridge_retained] = ACTIONS(2728), + [anon_sym___bridge_transfer] = ACTIONS(2728), + [anon_sym___complex] = ACTIONS(2728), + [anon_sym___const] = ACTIONS(2728), + [anon_sym___imag] = ACTIONS(2728), + [anon_sym___kindof] = ACTIONS(2728), + [anon_sym___nonnull] = ACTIONS(2728), + [anon_sym___nullable] = ACTIONS(2728), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2728), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2728), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2728), + [anon_sym___real] = ACTIONS(2728), + [anon_sym___strong] = ACTIONS(2728), + [anon_sym___unsafe_unretained] = ACTIONS(2728), + [anon_sym___unused] = ACTIONS(2728), + [anon_sym___weak] = ACTIONS(2728), + [anon_sym_alignas] = ACTIONS(2728), + [anon_sym__Alignas] = ACTIONS(2728), + [sym_primitive_type] = ACTIONS(2728), + [anon_sym_enum] = ACTIONS(2728), + [anon_sym_struct] = ACTIONS(2728), + [anon_sym_union] = ACTIONS(2728), + [anon_sym_if] = ACTIONS(2728), + [anon_sym_switch] = ACTIONS(2728), + [anon_sym_case] = ACTIONS(2728), + [anon_sym_default] = ACTIONS(2728), + [anon_sym_while] = ACTIONS(2728), + [anon_sym_do] = ACTIONS(2728), + [anon_sym_for] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2728), + [anon_sym_return] = ACTIONS(2728), + [anon_sym_break] = ACTIONS(2728), + [anon_sym_continue] = ACTIONS(2728), + [anon_sym_goto] = ACTIONS(2728), + [anon_sym_DASH_DASH] = ACTIONS(2730), + [anon_sym_PLUS_PLUS] = ACTIONS(2730), + [anon_sym_sizeof] = ACTIONS(2728), + [anon_sym___alignof__] = ACTIONS(2728), + [anon_sym___alignof] = ACTIONS(2728), + [anon_sym__alignof] = ACTIONS(2728), + [anon_sym_alignof] = ACTIONS(2728), + [anon_sym__Alignof] = ACTIONS(2728), + [anon_sym_offsetof] = ACTIONS(2728), + [anon_sym__Generic] = ACTIONS(2728), + [anon_sym_asm] = ACTIONS(2728), + [anon_sym___asm__] = ACTIONS(2728), + [anon_sym___asm] = ACTIONS(2728), + [sym_number_literal] = ACTIONS(2730), + [anon_sym_L_SQUOTE] = ACTIONS(2730), + [anon_sym_u_SQUOTE] = ACTIONS(2730), + [anon_sym_U_SQUOTE] = ACTIONS(2730), + [anon_sym_u8_SQUOTE] = ACTIONS(2730), + [anon_sym_SQUOTE] = ACTIONS(2730), + [anon_sym_AT] = ACTIONS(2728), + [anon_sym_DQUOTE] = ACTIONS(2730), + [anon_sym_L_DQUOTE] = ACTIONS(2730), + [anon_sym_u_DQUOTE] = ACTIONS(2730), + [anon_sym_U_DQUOTE] = ACTIONS(2730), + [anon_sym_u8_DQUOTE] = ACTIONS(2730), + [sym_true] = ACTIONS(2728), + [sym_false] = ACTIONS(2728), + [anon_sym_NULL] = ACTIONS(2728), + [anon_sym_nullptr] = ACTIONS(2728), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2728), + [anon_sym___typeof] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(2728), + [anon_sym_ATimport] = ACTIONS(2730), + [aux_sym_preproc_undef_token1] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(2728), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2728), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2728), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2728), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2728), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2728), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2728), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2728), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2728), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2728), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2728), + [anon_sym_NS_AVAILABLE] = ACTIONS(2728), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2728), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2728), + [anon_sym_API_AVAILABLE] = ACTIONS(2728), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2728), + [anon_sym_API_DEPRECATED] = ACTIONS(2728), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2728), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2728), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2728), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2728), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2728), + [anon_sym___deprecated_msg] = ACTIONS(2728), + [anon_sym___deprecated_enum_msg] = ACTIONS(2728), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2728), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2728), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2728), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2728), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2728), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2728), + [anon_sym_ATprotocol] = ACTIONS(2730), + [anon_sym_ATinterface] = ACTIONS(2730), + [anon_sym_ATimplementation] = ACTIONS(2730), + [anon_sym_ATcompatibility_alias] = ACTIONS(2730), + [anon_sym_ATselector] = ACTIONS(2730), + [anon_sym_ATavailable] = ACTIONS(2730), + [anon_sym___builtin_available] = ACTIONS(2728), + [anon_sym_va_arg] = ACTIONS(2728), + [anon_sym_ATencode] = ACTIONS(2730), + [anon_sym_BOOL] = ACTIONS(2728), + [anon_sym_IMP] = ACTIONS(2728), + [anon_sym_SEL] = ACTIONS(2728), + [anon_sym_Class] = ACTIONS(2728), + [anon_sym_id] = ACTIONS(2728), + }, + [1023] = { + [ts_builtin_sym_end] = ACTIONS(2734), + [sym_identifier] = ACTIONS(2732), + [aux_sym_preproc_include_token1] = ACTIONS(2732), + [aux_sym_preproc_include_token2] = ACTIONS(2732), + [aux_sym_preproc_def_token1] = ACTIONS(2732), + [aux_sym_preproc_if_token1] = ACTIONS(2732), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2732), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2732), + [sym_preproc_directive] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_BANG] = ACTIONS(2734), + [anon_sym_TILDE] = ACTIONS(2734), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_STAR] = ACTIONS(2734), + [anon_sym_CARET] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2734), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym___extension__] = ACTIONS(2732), + [anon_sym_typedef] = ACTIONS(2732), + [anon_sym_extern] = ACTIONS(2732), + [anon_sym___attribute__] = ACTIONS(2732), + [anon_sym___attribute] = ACTIONS(2732), + [anon_sym_noreturn] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym___declspec] = ACTIONS(2732), + [anon_sym___cdecl] = ACTIONS(2732), + [anon_sym___clrcall] = ACTIONS(2732), + [anon_sym___stdcall] = ACTIONS(2732), + [anon_sym___fastcall] = ACTIONS(2732), + [anon_sym___thiscall] = ACTIONS(2732), + [anon_sym___vectorcall] = ACTIONS(2732), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_signed] = ACTIONS(2732), + [anon_sym_unsigned] = ACTIONS(2732), + [anon_sym_long] = ACTIONS(2732), + [anon_sym_short] = ACTIONS(2732), + [anon_sym_static] = ACTIONS(2732), + [anon_sym_ATautoreleasepool] = ACTIONS(2734), + [anon_sym_auto] = ACTIONS(2732), + [anon_sym_register] = ACTIONS(2732), + [anon_sym_inline] = ACTIONS(2732), + [anon_sym___inline] = ACTIONS(2732), + [anon_sym___inline__] = ACTIONS(2732), + [anon_sym___forceinline] = ACTIONS(2732), + [anon_sym_thread_local] = ACTIONS(2732), + [anon_sym___thread] = ACTIONS(2732), + [anon_sym_CG_EXTERN] = ACTIONS(2732), + [anon_sym_CG_INLINE] = ACTIONS(2732), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2732), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2732), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2732), + [anon_sym_IBOutlet] = ACTIONS(2732), + [anon_sym_IBInspectable] = ACTIONS(2732), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2732), + [anon_sym_NS_INLINE] = ACTIONS(2732), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2732), + [anon_sym_OBJC_EXPORT] = ACTIONS(2732), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2732), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2732), + [anon_sym_const] = ACTIONS(2732), + [anon_sym_constexpr] = ACTIONS(2732), + [anon_sym_volatile] = ACTIONS(2732), + [anon_sym_restrict] = ACTIONS(2732), + [anon_sym___restrict__] = ACTIONS(2732), + [anon_sym__Atomic] = ACTIONS(2732), + [anon_sym__Noreturn] = ACTIONS(2732), + [anon_sym__Nonnull] = ACTIONS(2732), + [anon_sym_nullable] = ACTIONS(2732), + [anon_sym__Complex] = ACTIONS(2732), + [anon_sym__Nullable] = ACTIONS(2732), + [anon_sym__Nullable_result] = ACTIONS(2732), + [anon_sym__Null_unspecified] = ACTIONS(2732), + [anon_sym___autoreleasing] = ACTIONS(2732), + [anon_sym___block] = ACTIONS(2732), + [anon_sym___bridge] = ACTIONS(2732), + [anon_sym___bridge_retained] = ACTIONS(2732), + [anon_sym___bridge_transfer] = ACTIONS(2732), + [anon_sym___complex] = ACTIONS(2732), + [anon_sym___const] = ACTIONS(2732), + [anon_sym___imag] = ACTIONS(2732), + [anon_sym___kindof] = ACTIONS(2732), + [anon_sym___nonnull] = ACTIONS(2732), + [anon_sym___nullable] = ACTIONS(2732), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2732), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2732), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2732), + [anon_sym___real] = ACTIONS(2732), + [anon_sym___strong] = ACTIONS(2732), + [anon_sym___unsafe_unretained] = ACTIONS(2732), + [anon_sym___unused] = ACTIONS(2732), + [anon_sym___weak] = ACTIONS(2732), + [anon_sym_alignas] = ACTIONS(2732), + [anon_sym__Alignas] = ACTIONS(2732), + [sym_primitive_type] = ACTIONS(2732), + [anon_sym_enum] = ACTIONS(2732), + [anon_sym_struct] = ACTIONS(2732), + [anon_sym_union] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_switch] = ACTIONS(2732), + [anon_sym_case] = ACTIONS(2732), + [anon_sym_default] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_break] = ACTIONS(2732), + [anon_sym_continue] = ACTIONS(2732), + [anon_sym_goto] = ACTIONS(2732), + [anon_sym_DASH_DASH] = ACTIONS(2734), + [anon_sym_PLUS_PLUS] = ACTIONS(2734), + [anon_sym_sizeof] = ACTIONS(2732), + [anon_sym___alignof__] = ACTIONS(2732), + [anon_sym___alignof] = ACTIONS(2732), + [anon_sym__alignof] = ACTIONS(2732), + [anon_sym_alignof] = ACTIONS(2732), + [anon_sym__Alignof] = ACTIONS(2732), + [anon_sym_offsetof] = ACTIONS(2732), + [anon_sym__Generic] = ACTIONS(2732), + [anon_sym_asm] = ACTIONS(2732), + [anon_sym___asm__] = ACTIONS(2732), + [anon_sym___asm] = ACTIONS(2732), + [sym_number_literal] = ACTIONS(2734), + [anon_sym_L_SQUOTE] = ACTIONS(2734), + [anon_sym_u_SQUOTE] = ACTIONS(2734), + [anon_sym_U_SQUOTE] = ACTIONS(2734), + [anon_sym_u8_SQUOTE] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_AT] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2734), + [anon_sym_L_DQUOTE] = ACTIONS(2734), + [anon_sym_u_DQUOTE] = ACTIONS(2734), + [anon_sym_U_DQUOTE] = ACTIONS(2734), + [anon_sym_u8_DQUOTE] = ACTIONS(2734), + [sym_true] = ACTIONS(2732), + [sym_false] = ACTIONS(2732), + [anon_sym_NULL] = ACTIONS(2732), + [anon_sym_nullptr] = ACTIONS(2732), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2732), + [anon_sym___typeof] = ACTIONS(2732), + [anon_sym_typeof] = ACTIONS(2732), + [anon_sym_ATimport] = ACTIONS(2734), + [aux_sym_preproc_undef_token1] = ACTIONS(2732), + [anon_sym_POUND] = ACTIONS(2732), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2732), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2732), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2732), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2732), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2732), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2732), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2732), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2732), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2732), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2732), + [anon_sym_NS_AVAILABLE] = ACTIONS(2732), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2732), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2732), + [anon_sym_API_AVAILABLE] = ACTIONS(2732), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2732), + [anon_sym_API_DEPRECATED] = ACTIONS(2732), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2732), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2732), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2732), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2732), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2732), + [anon_sym___deprecated_msg] = ACTIONS(2732), + [anon_sym___deprecated_enum_msg] = ACTIONS(2732), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2732), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2732), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2732), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2732), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2732), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2732), + [anon_sym_ATprotocol] = ACTIONS(2734), + [anon_sym_ATinterface] = ACTIONS(2734), + [anon_sym_ATimplementation] = ACTIONS(2734), + [anon_sym_ATcompatibility_alias] = ACTIONS(2734), + [anon_sym_ATselector] = ACTIONS(2734), + [anon_sym_ATavailable] = ACTIONS(2734), + [anon_sym___builtin_available] = ACTIONS(2732), + [anon_sym_va_arg] = ACTIONS(2732), + [anon_sym_ATencode] = ACTIONS(2734), + [anon_sym_BOOL] = ACTIONS(2732), + [anon_sym_IMP] = ACTIONS(2732), + [anon_sym_SEL] = ACTIONS(2732), + [anon_sym_Class] = ACTIONS(2732), + [anon_sym_id] = ACTIONS(2732), + }, + [1024] = { + [ts_builtin_sym_end] = ACTIONS(2584), + [sym_identifier] = ACTIONS(2582), + [aux_sym_preproc_include_token1] = ACTIONS(2582), + [aux_sym_preproc_include_token2] = ACTIONS(2582), + [aux_sym_preproc_def_token1] = ACTIONS(2582), + [aux_sym_preproc_if_token1] = ACTIONS(2582), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2582), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2582), + [sym_preproc_directive] = ACTIONS(2582), + [anon_sym_LPAREN2] = ACTIONS(2584), + [anon_sym_BANG] = ACTIONS(2584), + [anon_sym_TILDE] = ACTIONS(2584), + [anon_sym_DASH] = ACTIONS(2582), + [anon_sym_PLUS] = ACTIONS(2582), + [anon_sym_STAR] = ACTIONS(2584), + [anon_sym_CARET] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym___extension__] = ACTIONS(2582), + [anon_sym_typedef] = ACTIONS(2582), + [anon_sym_extern] = ACTIONS(2582), + [anon_sym___attribute__] = ACTIONS(2582), + [anon_sym___attribute] = ACTIONS(2582), + [anon_sym_noreturn] = ACTIONS(2582), + [anon_sym_LBRACK] = ACTIONS(2584), + [anon_sym___declspec] = ACTIONS(2582), + [anon_sym___cdecl] = ACTIONS(2582), + [anon_sym___clrcall] = ACTIONS(2582), + [anon_sym___stdcall] = ACTIONS(2582), + [anon_sym___fastcall] = ACTIONS(2582), + [anon_sym___thiscall] = ACTIONS(2582), + [anon_sym___vectorcall] = ACTIONS(2582), + [anon_sym_LBRACE] = ACTIONS(2584), + [anon_sym_signed] = ACTIONS(2582), + [anon_sym_unsigned] = ACTIONS(2582), + [anon_sym_long] = ACTIONS(2582), + [anon_sym_short] = ACTIONS(2582), + [anon_sym_static] = ACTIONS(2582), + [anon_sym_ATautoreleasepool] = ACTIONS(2584), + [anon_sym_auto] = ACTIONS(2582), + [anon_sym_register] = ACTIONS(2582), + [anon_sym_inline] = ACTIONS(2582), + [anon_sym___inline] = ACTIONS(2582), + [anon_sym___inline__] = ACTIONS(2582), + [anon_sym___forceinline] = ACTIONS(2582), + [anon_sym_thread_local] = ACTIONS(2582), + [anon_sym___thread] = ACTIONS(2582), + [anon_sym_CG_EXTERN] = ACTIONS(2582), + [anon_sym_CG_INLINE] = ACTIONS(2582), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2582), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2582), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2582), + [anon_sym_IBOutlet] = ACTIONS(2582), + [anon_sym_IBInspectable] = ACTIONS(2582), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2582), + [anon_sym_NS_INLINE] = ACTIONS(2582), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2582), + [anon_sym_OBJC_EXPORT] = ACTIONS(2582), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2582), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2582), + [anon_sym_const] = ACTIONS(2582), + [anon_sym_constexpr] = ACTIONS(2582), + [anon_sym_volatile] = ACTIONS(2582), + [anon_sym_restrict] = ACTIONS(2582), + [anon_sym___restrict__] = ACTIONS(2582), + [anon_sym__Atomic] = ACTIONS(2582), + [anon_sym__Noreturn] = ACTIONS(2582), + [anon_sym__Nonnull] = ACTIONS(2582), + [anon_sym_nullable] = ACTIONS(2582), + [anon_sym__Complex] = ACTIONS(2582), + [anon_sym__Nullable] = ACTIONS(2582), + [anon_sym__Nullable_result] = ACTIONS(2582), + [anon_sym__Null_unspecified] = ACTIONS(2582), + [anon_sym___autoreleasing] = ACTIONS(2582), + [anon_sym___block] = ACTIONS(2582), + [anon_sym___bridge] = ACTIONS(2582), + [anon_sym___bridge_retained] = ACTIONS(2582), + [anon_sym___bridge_transfer] = ACTIONS(2582), + [anon_sym___complex] = ACTIONS(2582), + [anon_sym___const] = ACTIONS(2582), + [anon_sym___imag] = ACTIONS(2582), + [anon_sym___kindof] = ACTIONS(2582), + [anon_sym___nonnull] = ACTIONS(2582), + [anon_sym___nullable] = ACTIONS(2582), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2582), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2582), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2582), + [anon_sym___real] = ACTIONS(2582), + [anon_sym___strong] = ACTIONS(2582), + [anon_sym___unsafe_unretained] = ACTIONS(2582), + [anon_sym___unused] = ACTIONS(2582), + [anon_sym___weak] = ACTIONS(2582), + [anon_sym_alignas] = ACTIONS(2582), + [anon_sym__Alignas] = ACTIONS(2582), + [sym_primitive_type] = ACTIONS(2582), + [anon_sym_enum] = ACTIONS(2582), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2582), + [anon_sym_if] = ACTIONS(2582), + [anon_sym_switch] = ACTIONS(2582), + [anon_sym_case] = ACTIONS(2582), + [anon_sym_default] = ACTIONS(2582), + [anon_sym_while] = ACTIONS(2582), + [anon_sym_do] = ACTIONS(2582), + [anon_sym_for] = ACTIONS(2582), + [anon_sym_in] = ACTIONS(2582), + [anon_sym_return] = ACTIONS(2582), + [anon_sym_break] = ACTIONS(2582), + [anon_sym_continue] = ACTIONS(2582), + [anon_sym_goto] = ACTIONS(2582), + [anon_sym_DASH_DASH] = ACTIONS(2584), + [anon_sym_PLUS_PLUS] = ACTIONS(2584), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2582), + [anon_sym___alignof] = ACTIONS(2582), + [anon_sym__alignof] = ACTIONS(2582), + [anon_sym_alignof] = ACTIONS(2582), + [anon_sym__Alignof] = ACTIONS(2582), + [anon_sym_offsetof] = ACTIONS(2582), + [anon_sym__Generic] = ACTIONS(2582), + [anon_sym_asm] = ACTIONS(2582), + [anon_sym___asm__] = ACTIONS(2582), + [anon_sym___asm] = ACTIONS(2582), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2584), + [anon_sym_u_SQUOTE] = ACTIONS(2584), + [anon_sym_U_SQUOTE] = ACTIONS(2584), + [anon_sym_u8_SQUOTE] = ACTIONS(2584), + [anon_sym_SQUOTE] = ACTIONS(2584), + [anon_sym_AT] = ACTIONS(2582), + [anon_sym_DQUOTE] = ACTIONS(2584), + [anon_sym_L_DQUOTE] = ACTIONS(2584), + [anon_sym_u_DQUOTE] = ACTIONS(2584), + [anon_sym_U_DQUOTE] = ACTIONS(2584), + [anon_sym_u8_DQUOTE] = ACTIONS(2584), + [sym_true] = ACTIONS(2582), + [sym_false] = ACTIONS(2582), + [anon_sym_NULL] = ACTIONS(2582), + [anon_sym_nullptr] = ACTIONS(2582), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2582), + [anon_sym___typeof] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(2582), + [anon_sym_ATimport] = ACTIONS(2584), + [aux_sym_preproc_undef_token1] = ACTIONS(2582), + [anon_sym_POUND] = ACTIONS(2582), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2582), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2582), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2582), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2582), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2582), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2582), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2582), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2582), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2582), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2582), + [anon_sym_NS_AVAILABLE] = ACTIONS(2582), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2582), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2582), + [anon_sym_API_AVAILABLE] = ACTIONS(2582), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2582), + [anon_sym_API_DEPRECATED] = ACTIONS(2582), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2582), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2582), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2582), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2582), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2582), + [anon_sym___deprecated_msg] = ACTIONS(2582), + [anon_sym___deprecated_enum_msg] = ACTIONS(2582), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2582), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2582), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2582), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2582), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2582), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2582), + [anon_sym_ATprotocol] = ACTIONS(2584), + [anon_sym_ATinterface] = ACTIONS(2584), + [anon_sym_ATimplementation] = ACTIONS(2584), + [anon_sym_ATcompatibility_alias] = ACTIONS(2584), + [anon_sym_ATselector] = ACTIONS(2584), + [anon_sym_ATavailable] = ACTIONS(2584), + [anon_sym___builtin_available] = ACTIONS(2582), + [anon_sym_va_arg] = ACTIONS(2582), + [anon_sym_ATencode] = ACTIONS(2584), + [anon_sym_BOOL] = ACTIONS(2582), + [anon_sym_IMP] = ACTIONS(2582), + [anon_sym_SEL] = ACTIONS(2582), + [anon_sym_Class] = ACTIONS(2582), + [anon_sym_id] = ACTIONS(2582), + }, + [1025] = { + [ts_builtin_sym_end] = ACTIONS(2618), + [sym_identifier] = ACTIONS(2616), + [aux_sym_preproc_include_token1] = ACTIONS(2616), + [aux_sym_preproc_include_token2] = ACTIONS(2616), + [aux_sym_preproc_def_token1] = ACTIONS(2616), + [aux_sym_preproc_if_token1] = ACTIONS(2616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2616), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2616), + [sym_preproc_directive] = ACTIONS(2616), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2618), + [anon_sym_TILDE] = ACTIONS(2618), + [anon_sym_DASH] = ACTIONS(2616), + [anon_sym_PLUS] = ACTIONS(2616), + [anon_sym_STAR] = ACTIONS(2618), + [anon_sym_CARET] = ACTIONS(2618), + [anon_sym_AMP] = ACTIONS(2618), + [anon_sym_SEMI] = ACTIONS(2618), + [anon_sym___extension__] = ACTIONS(2616), + [anon_sym_typedef] = ACTIONS(2616), + [anon_sym_extern] = ACTIONS(2616), + [anon_sym___attribute__] = ACTIONS(2616), + [anon_sym___attribute] = ACTIONS(2616), + [anon_sym_noreturn] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(2618), + [anon_sym___declspec] = ACTIONS(2616), + [anon_sym___cdecl] = ACTIONS(2616), + [anon_sym___clrcall] = ACTIONS(2616), + [anon_sym___stdcall] = ACTIONS(2616), + [anon_sym___fastcall] = ACTIONS(2616), + [anon_sym___thiscall] = ACTIONS(2616), + [anon_sym___vectorcall] = ACTIONS(2616), + [anon_sym_LBRACE] = ACTIONS(2618), + [anon_sym_signed] = ACTIONS(2616), + [anon_sym_unsigned] = ACTIONS(2616), + [anon_sym_long] = ACTIONS(2616), + [anon_sym_short] = ACTIONS(2616), + [anon_sym_static] = ACTIONS(2616), + [anon_sym_ATautoreleasepool] = ACTIONS(2618), + [anon_sym_auto] = ACTIONS(2616), + [anon_sym_register] = ACTIONS(2616), + [anon_sym_inline] = ACTIONS(2616), + [anon_sym___inline] = ACTIONS(2616), + [anon_sym___inline__] = ACTIONS(2616), + [anon_sym___forceinline] = ACTIONS(2616), + [anon_sym_thread_local] = ACTIONS(2616), + [anon_sym___thread] = ACTIONS(2616), + [anon_sym_CG_EXTERN] = ACTIONS(2616), + [anon_sym_CG_INLINE] = ACTIONS(2616), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2616), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2616), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2616), + [anon_sym_IBOutlet] = ACTIONS(2616), + [anon_sym_IBInspectable] = ACTIONS(2616), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2616), + [anon_sym_NS_INLINE] = ACTIONS(2616), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2616), + [anon_sym_OBJC_EXPORT] = ACTIONS(2616), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2616), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2616), + [anon_sym_const] = ACTIONS(2616), + [anon_sym_constexpr] = ACTIONS(2616), + [anon_sym_volatile] = ACTIONS(2616), + [anon_sym_restrict] = ACTIONS(2616), + [anon_sym___restrict__] = ACTIONS(2616), + [anon_sym__Atomic] = ACTIONS(2616), + [anon_sym__Noreturn] = ACTIONS(2616), + [anon_sym__Nonnull] = ACTIONS(2616), + [anon_sym_nullable] = ACTIONS(2616), + [anon_sym__Complex] = ACTIONS(2616), + [anon_sym__Nullable] = ACTIONS(2616), + [anon_sym__Nullable_result] = ACTIONS(2616), + [anon_sym__Null_unspecified] = ACTIONS(2616), + [anon_sym___autoreleasing] = ACTIONS(2616), + [anon_sym___block] = ACTIONS(2616), + [anon_sym___bridge] = ACTIONS(2616), + [anon_sym___bridge_retained] = ACTIONS(2616), + [anon_sym___bridge_transfer] = ACTIONS(2616), + [anon_sym___complex] = ACTIONS(2616), + [anon_sym___const] = ACTIONS(2616), + [anon_sym___imag] = ACTIONS(2616), + [anon_sym___kindof] = ACTIONS(2616), + [anon_sym___nonnull] = ACTIONS(2616), + [anon_sym___nullable] = ACTIONS(2616), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2616), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2616), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2616), + [anon_sym___real] = ACTIONS(2616), + [anon_sym___strong] = ACTIONS(2616), + [anon_sym___unsafe_unretained] = ACTIONS(2616), + [anon_sym___unused] = ACTIONS(2616), + [anon_sym___weak] = ACTIONS(2616), + [anon_sym_alignas] = ACTIONS(2616), + [anon_sym__Alignas] = ACTIONS(2616), + [sym_primitive_type] = ACTIONS(2616), + [anon_sym_enum] = ACTIONS(2616), + [anon_sym_struct] = ACTIONS(2616), + [anon_sym_union] = ACTIONS(2616), + [anon_sym_if] = ACTIONS(2616), + [anon_sym_switch] = ACTIONS(2616), + [anon_sym_case] = ACTIONS(2616), + [anon_sym_default] = ACTIONS(2616), + [anon_sym_while] = ACTIONS(2616), + [anon_sym_do] = ACTIONS(2616), + [anon_sym_for] = ACTIONS(2616), + [anon_sym_in] = ACTIONS(2616), + [anon_sym_return] = ACTIONS(2616), + [anon_sym_break] = ACTIONS(2616), + [anon_sym_continue] = ACTIONS(2616), + [anon_sym_goto] = ACTIONS(2616), + [anon_sym_DASH_DASH] = ACTIONS(2618), + [anon_sym_PLUS_PLUS] = ACTIONS(2618), + [anon_sym_sizeof] = ACTIONS(2616), + [anon_sym___alignof__] = ACTIONS(2616), + [anon_sym___alignof] = ACTIONS(2616), + [anon_sym__alignof] = ACTIONS(2616), + [anon_sym_alignof] = ACTIONS(2616), + [anon_sym__Alignof] = ACTIONS(2616), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2616), + [anon_sym_asm] = ACTIONS(2616), + [anon_sym___asm__] = ACTIONS(2616), + [anon_sym___asm] = ACTIONS(2616), + [sym_number_literal] = ACTIONS(2618), + [anon_sym_L_SQUOTE] = ACTIONS(2618), + [anon_sym_u_SQUOTE] = ACTIONS(2618), + [anon_sym_U_SQUOTE] = ACTIONS(2618), + [anon_sym_u8_SQUOTE] = ACTIONS(2618), + [anon_sym_SQUOTE] = ACTIONS(2618), + [anon_sym_AT] = ACTIONS(2616), + [anon_sym_DQUOTE] = ACTIONS(2618), + [anon_sym_L_DQUOTE] = ACTIONS(2618), + [anon_sym_u_DQUOTE] = ACTIONS(2618), + [anon_sym_U_DQUOTE] = ACTIONS(2618), + [anon_sym_u8_DQUOTE] = ACTIONS(2618), + [sym_true] = ACTIONS(2616), + [sym_false] = ACTIONS(2616), + [anon_sym_NULL] = ACTIONS(2616), + [anon_sym_nullptr] = ACTIONS(2616), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2616), + [anon_sym___typeof] = ACTIONS(2616), + [anon_sym_typeof] = ACTIONS(2616), + [anon_sym_ATimport] = ACTIONS(2618), + [aux_sym_preproc_undef_token1] = ACTIONS(2616), + [anon_sym_POUND] = ACTIONS(2616), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2616), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2616), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2616), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2616), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2616), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2616), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2616), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2616), + [anon_sym_NS_AVAILABLE] = ACTIONS(2616), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2616), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_API_AVAILABLE] = ACTIONS(2616), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_API_DEPRECATED] = ACTIONS(2616), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2616), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2616), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2616), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2616), + [anon_sym___deprecated_msg] = ACTIONS(2616), + [anon_sym___deprecated_enum_msg] = ACTIONS(2616), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2616), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2616), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2616), + [anon_sym_ATprotocol] = ACTIONS(2618), + [anon_sym_ATinterface] = ACTIONS(2618), + [anon_sym_ATimplementation] = ACTIONS(2618), + [anon_sym_ATcompatibility_alias] = ACTIONS(2618), + [anon_sym_ATselector] = ACTIONS(2618), + [anon_sym_ATavailable] = ACTIONS(2618), + [anon_sym___builtin_available] = ACTIONS(2616), + [anon_sym_va_arg] = ACTIONS(2616), + [anon_sym_ATencode] = ACTIONS(2618), + [anon_sym_BOOL] = ACTIONS(2616), + [anon_sym_IMP] = ACTIONS(2616), + [anon_sym_SEL] = ACTIONS(2616), + [anon_sym_Class] = ACTIONS(2616), + [anon_sym_id] = ACTIONS(2616), + }, + [1026] = { + [ts_builtin_sym_end] = ACTIONS(2438), + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_include_token1] = ACTIONS(2436), + [aux_sym_preproc_include_token2] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_ATautoreleasepool] = ACTIONS(2438), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_case] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_goto] = ACTIONS(2436), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_sizeof] = ACTIONS(2436), + [anon_sym___alignof__] = ACTIONS(2436), + [anon_sym___alignof] = ACTIONS(2436), + [anon_sym__alignof] = ACTIONS(2436), + [anon_sym_alignof] = ACTIONS(2436), + [anon_sym__Alignof] = ACTIONS(2436), + [anon_sym_offsetof] = ACTIONS(2436), + [anon_sym__Generic] = ACTIONS(2436), + [anon_sym_asm] = ACTIONS(2436), + [anon_sym___asm__] = ACTIONS(2436), + [anon_sym___asm] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_L_SQUOTE] = ACTIONS(2438), + [anon_sym_u_SQUOTE] = ACTIONS(2438), + [anon_sym_U_SQUOTE] = ACTIONS(2438), + [anon_sym_u8_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_L_DQUOTE] = ACTIONS(2438), + [anon_sym_u_DQUOTE] = ACTIONS(2438), + [anon_sym_U_DQUOTE] = ACTIONS(2438), + [anon_sym_u8_DQUOTE] = ACTIONS(2438), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_nullptr] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [anon_sym_ATimport] = ACTIONS(2438), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_POUND] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATprotocol] = ACTIONS(2438), + [anon_sym_ATinterface] = ACTIONS(2438), + [anon_sym_ATimplementation] = ACTIONS(2438), + [anon_sym_ATcompatibility_alias] = ACTIONS(2438), + [anon_sym_ATselector] = ACTIONS(2438), + [anon_sym_ATavailable] = ACTIONS(2438), + [anon_sym___builtin_available] = ACTIONS(2436), + [anon_sym_va_arg] = ACTIONS(2436), + [anon_sym_ATencode] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [1027] = { + [ts_builtin_sym_end] = ACTIONS(2438), + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_include_token1] = ACTIONS(2436), + [aux_sym_preproc_include_token2] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_ATautoreleasepool] = ACTIONS(2438), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_case] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_goto] = ACTIONS(2436), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_sizeof] = ACTIONS(2436), + [anon_sym___alignof__] = ACTIONS(2436), + [anon_sym___alignof] = ACTIONS(2436), + [anon_sym__alignof] = ACTIONS(2436), + [anon_sym_alignof] = ACTIONS(2436), + [anon_sym__Alignof] = ACTIONS(2436), + [anon_sym_offsetof] = ACTIONS(2436), + [anon_sym__Generic] = ACTIONS(2436), + [anon_sym_asm] = ACTIONS(2436), + [anon_sym___asm__] = ACTIONS(2436), + [anon_sym___asm] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_L_SQUOTE] = ACTIONS(2438), + [anon_sym_u_SQUOTE] = ACTIONS(2438), + [anon_sym_U_SQUOTE] = ACTIONS(2438), + [anon_sym_u8_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_L_DQUOTE] = ACTIONS(2438), + [anon_sym_u_DQUOTE] = ACTIONS(2438), + [anon_sym_U_DQUOTE] = ACTIONS(2438), + [anon_sym_u8_DQUOTE] = ACTIONS(2438), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_nullptr] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [anon_sym_ATimport] = ACTIONS(2438), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_POUND] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATprotocol] = ACTIONS(2438), + [anon_sym_ATinterface] = ACTIONS(2438), + [anon_sym_ATimplementation] = ACTIONS(2438), + [anon_sym_ATcompatibility_alias] = ACTIONS(2438), + [anon_sym_ATselector] = ACTIONS(2438), + [anon_sym_ATavailable] = ACTIONS(2438), + [anon_sym___builtin_available] = ACTIONS(2436), + [anon_sym_va_arg] = ACTIONS(2436), + [anon_sym_ATencode] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [1028] = { + [ts_builtin_sym_end] = ACTIONS(2438), + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_include_token1] = ACTIONS(2436), + [aux_sym_preproc_include_token2] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_ATautoreleasepool] = ACTIONS(2438), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_case] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_goto] = ACTIONS(2436), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_sizeof] = ACTIONS(2436), + [anon_sym___alignof__] = ACTIONS(2436), + [anon_sym___alignof] = ACTIONS(2436), + [anon_sym__alignof] = ACTIONS(2436), + [anon_sym_alignof] = ACTIONS(2436), + [anon_sym__Alignof] = ACTIONS(2436), + [anon_sym_offsetof] = ACTIONS(2436), + [anon_sym__Generic] = ACTIONS(2436), + [anon_sym_asm] = ACTIONS(2436), + [anon_sym___asm__] = ACTIONS(2436), + [anon_sym___asm] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_L_SQUOTE] = ACTIONS(2438), + [anon_sym_u_SQUOTE] = ACTIONS(2438), + [anon_sym_U_SQUOTE] = ACTIONS(2438), + [anon_sym_u8_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_L_DQUOTE] = ACTIONS(2438), + [anon_sym_u_DQUOTE] = ACTIONS(2438), + [anon_sym_U_DQUOTE] = ACTIONS(2438), + [anon_sym_u8_DQUOTE] = ACTIONS(2438), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_nullptr] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [anon_sym_ATimport] = ACTIONS(2438), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_POUND] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATprotocol] = ACTIONS(2438), + [anon_sym_ATinterface] = ACTIONS(2438), + [anon_sym_ATimplementation] = ACTIONS(2438), + [anon_sym_ATcompatibility_alias] = ACTIONS(2438), + [anon_sym_ATselector] = ACTIONS(2438), + [anon_sym_ATavailable] = ACTIONS(2438), + [anon_sym___builtin_available] = ACTIONS(2436), + [anon_sym_va_arg] = ACTIONS(2436), + [anon_sym_ATencode] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [1029] = { + [ts_builtin_sym_end] = ACTIONS(2738), + [sym_identifier] = ACTIONS(2736), + [aux_sym_preproc_include_token1] = ACTIONS(2736), + [aux_sym_preproc_include_token2] = ACTIONS(2736), + [aux_sym_preproc_def_token1] = ACTIONS(2736), + [aux_sym_preproc_if_token1] = ACTIONS(2736), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2736), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2736), + [sym_preproc_directive] = ACTIONS(2736), + [anon_sym_LPAREN2] = ACTIONS(2738), + [anon_sym_BANG] = ACTIONS(2738), + [anon_sym_TILDE] = ACTIONS(2738), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_CARET] = ACTIONS(2738), + [anon_sym_AMP] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_typedef] = ACTIONS(2736), + [anon_sym_extern] = ACTIONS(2736), + [anon_sym___attribute__] = ACTIONS(2736), + [anon_sym___attribute] = ACTIONS(2736), + [anon_sym_noreturn] = ACTIONS(2736), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym___declspec] = ACTIONS(2736), + [anon_sym___cdecl] = ACTIONS(2736), + [anon_sym___clrcall] = ACTIONS(2736), + [anon_sym___stdcall] = ACTIONS(2736), + [anon_sym___fastcall] = ACTIONS(2736), + [anon_sym___thiscall] = ACTIONS(2736), + [anon_sym___vectorcall] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_signed] = ACTIONS(2736), + [anon_sym_unsigned] = ACTIONS(2736), + [anon_sym_long] = ACTIONS(2736), + [anon_sym_short] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2736), + [anon_sym_ATautoreleasepool] = ACTIONS(2738), + [anon_sym_auto] = ACTIONS(2736), + [anon_sym_register] = ACTIONS(2736), + [anon_sym_inline] = ACTIONS(2736), + [anon_sym___inline] = ACTIONS(2736), + [anon_sym___inline__] = ACTIONS(2736), + [anon_sym___forceinline] = ACTIONS(2736), + [anon_sym_thread_local] = ACTIONS(2736), + [anon_sym___thread] = ACTIONS(2736), + [anon_sym_CG_EXTERN] = ACTIONS(2736), + [anon_sym_CG_INLINE] = ACTIONS(2736), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2736), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2736), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2736), + [anon_sym_IBOutlet] = ACTIONS(2736), + [anon_sym_IBInspectable] = ACTIONS(2736), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2736), + [anon_sym_NS_INLINE] = ACTIONS(2736), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2736), + [anon_sym_OBJC_EXPORT] = ACTIONS(2736), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2736), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2736), + [anon_sym_const] = ACTIONS(2736), + [anon_sym_constexpr] = ACTIONS(2736), + [anon_sym_volatile] = ACTIONS(2736), + [anon_sym_restrict] = ACTIONS(2736), + [anon_sym___restrict__] = ACTIONS(2736), + [anon_sym__Atomic] = ACTIONS(2736), + [anon_sym__Noreturn] = ACTIONS(2736), + [anon_sym__Nonnull] = ACTIONS(2736), + [anon_sym_nullable] = ACTIONS(2736), + [anon_sym__Complex] = ACTIONS(2736), + [anon_sym__Nullable] = ACTIONS(2736), + [anon_sym__Nullable_result] = ACTIONS(2736), + [anon_sym__Null_unspecified] = ACTIONS(2736), + [anon_sym___autoreleasing] = ACTIONS(2736), + [anon_sym___block] = ACTIONS(2736), + [anon_sym___bridge] = ACTIONS(2736), + [anon_sym___bridge_retained] = ACTIONS(2736), + [anon_sym___bridge_transfer] = ACTIONS(2736), + [anon_sym___complex] = ACTIONS(2736), + [anon_sym___const] = ACTIONS(2736), + [anon_sym___imag] = ACTIONS(2736), + [anon_sym___kindof] = ACTIONS(2736), + [anon_sym___nonnull] = ACTIONS(2736), + [anon_sym___nullable] = ACTIONS(2736), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2736), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2736), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2736), + [anon_sym___real] = ACTIONS(2736), + [anon_sym___strong] = ACTIONS(2736), + [anon_sym___unsafe_unretained] = ACTIONS(2736), + [anon_sym___unused] = ACTIONS(2736), + [anon_sym___weak] = ACTIONS(2736), + [anon_sym_alignas] = ACTIONS(2736), + [anon_sym__Alignas] = ACTIONS(2736), + [sym_primitive_type] = ACTIONS(2736), + [anon_sym_enum] = ACTIONS(2736), + [anon_sym_struct] = ACTIONS(2736), + [anon_sym_union] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_switch] = ACTIONS(2736), + [anon_sym_case] = ACTIONS(2736), + [anon_sym_default] = ACTIONS(2736), + [anon_sym_while] = ACTIONS(2736), + [anon_sym_do] = ACTIONS(2736), + [anon_sym_for] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2736), + [anon_sym_return] = ACTIONS(2736), + [anon_sym_break] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2736), + [anon_sym_goto] = ACTIONS(2736), + [anon_sym_DASH_DASH] = ACTIONS(2738), + [anon_sym_PLUS_PLUS] = ACTIONS(2738), + [anon_sym_sizeof] = ACTIONS(2736), + [anon_sym___alignof__] = ACTIONS(2736), + [anon_sym___alignof] = ACTIONS(2736), + [anon_sym__alignof] = ACTIONS(2736), + [anon_sym_alignof] = ACTIONS(2736), + [anon_sym__Alignof] = ACTIONS(2736), + [anon_sym_offsetof] = ACTIONS(2736), + [anon_sym__Generic] = ACTIONS(2736), + [anon_sym_asm] = ACTIONS(2736), + [anon_sym___asm__] = ACTIONS(2736), + [anon_sym___asm] = ACTIONS(2736), + [sym_number_literal] = ACTIONS(2738), + [anon_sym_L_SQUOTE] = ACTIONS(2738), + [anon_sym_u_SQUOTE] = ACTIONS(2738), + [anon_sym_U_SQUOTE] = ACTIONS(2738), + [anon_sym_u8_SQUOTE] = ACTIONS(2738), + [anon_sym_SQUOTE] = ACTIONS(2738), + [anon_sym_AT] = ACTIONS(2736), + [anon_sym_DQUOTE] = ACTIONS(2738), + [anon_sym_L_DQUOTE] = ACTIONS(2738), + [anon_sym_u_DQUOTE] = ACTIONS(2738), + [anon_sym_U_DQUOTE] = ACTIONS(2738), + [anon_sym_u8_DQUOTE] = ACTIONS(2738), + [sym_true] = ACTIONS(2736), + [sym_false] = ACTIONS(2736), + [anon_sym_NULL] = ACTIONS(2736), + [anon_sym_nullptr] = ACTIONS(2736), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2736), + [anon_sym___typeof] = ACTIONS(2736), + [anon_sym_typeof] = ACTIONS(2736), + [anon_sym_ATimport] = ACTIONS(2738), + [aux_sym_preproc_undef_token1] = ACTIONS(2736), + [anon_sym_POUND] = ACTIONS(2736), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2736), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2736), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2736), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2736), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2736), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2736), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2736), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2736), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2736), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2736), + [anon_sym_NS_AVAILABLE] = ACTIONS(2736), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2736), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2736), + [anon_sym_API_AVAILABLE] = ACTIONS(2736), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2736), + [anon_sym_API_DEPRECATED] = ACTIONS(2736), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2736), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2736), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2736), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2736), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2736), + [anon_sym___deprecated_msg] = ACTIONS(2736), + [anon_sym___deprecated_enum_msg] = ACTIONS(2736), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2736), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2736), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2736), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2736), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2736), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2736), + [anon_sym_ATprotocol] = ACTIONS(2738), + [anon_sym_ATinterface] = ACTIONS(2738), + [anon_sym_ATimplementation] = ACTIONS(2738), + [anon_sym_ATcompatibility_alias] = ACTIONS(2738), + [anon_sym_ATselector] = ACTIONS(2738), + [anon_sym_ATavailable] = ACTIONS(2738), + [anon_sym___builtin_available] = ACTIONS(2736), + [anon_sym_va_arg] = ACTIONS(2736), + [anon_sym_ATencode] = ACTIONS(2738), + [anon_sym_BOOL] = ACTIONS(2736), + [anon_sym_IMP] = ACTIONS(2736), + [anon_sym_SEL] = ACTIONS(2736), + [anon_sym_Class] = ACTIONS(2736), + [anon_sym_id] = ACTIONS(2736), + }, + [1030] = { + [ts_builtin_sym_end] = ACTIONS(2588), + [sym_identifier] = ACTIONS(2586), + [aux_sym_preproc_include_token1] = ACTIONS(2586), + [aux_sym_preproc_include_token2] = ACTIONS(2586), + [aux_sym_preproc_def_token1] = ACTIONS(2586), + [aux_sym_preproc_if_token1] = ACTIONS(2586), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2586), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2586), + [sym_preproc_directive] = ACTIONS(2586), + [anon_sym_LPAREN2] = ACTIONS(2588), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2588), + [anon_sym_DASH] = ACTIONS(2586), + [anon_sym_PLUS] = ACTIONS(2586), + [anon_sym_STAR] = ACTIONS(2588), + [anon_sym_CARET] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2588), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym___extension__] = ACTIONS(2586), + [anon_sym_typedef] = ACTIONS(2586), + [anon_sym_extern] = ACTIONS(2586), + [anon_sym___attribute__] = ACTIONS(2586), + [anon_sym___attribute] = ACTIONS(2586), + [anon_sym_noreturn] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(2588), + [anon_sym___declspec] = ACTIONS(2586), + [anon_sym___cdecl] = ACTIONS(2586), + [anon_sym___clrcall] = ACTIONS(2586), + [anon_sym___stdcall] = ACTIONS(2586), + [anon_sym___fastcall] = ACTIONS(2586), + [anon_sym___thiscall] = ACTIONS(2586), + [anon_sym___vectorcall] = ACTIONS(2586), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_signed] = ACTIONS(2586), + [anon_sym_unsigned] = ACTIONS(2586), + [anon_sym_long] = ACTIONS(2586), + [anon_sym_short] = ACTIONS(2586), + [anon_sym_static] = ACTIONS(2586), + [anon_sym_ATautoreleasepool] = ACTIONS(2588), + [anon_sym_auto] = ACTIONS(2586), + [anon_sym_register] = ACTIONS(2586), + [anon_sym_inline] = ACTIONS(2586), + [anon_sym___inline] = ACTIONS(2586), + [anon_sym___inline__] = ACTIONS(2586), + [anon_sym___forceinline] = ACTIONS(2586), + [anon_sym_thread_local] = ACTIONS(2586), + [anon_sym___thread] = ACTIONS(2586), + [anon_sym_CG_EXTERN] = ACTIONS(2586), + [anon_sym_CG_INLINE] = ACTIONS(2586), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2586), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2586), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2586), + [anon_sym_IBOutlet] = ACTIONS(2586), + [anon_sym_IBInspectable] = ACTIONS(2586), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2586), + [anon_sym_NS_INLINE] = ACTIONS(2586), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2586), + [anon_sym_OBJC_EXPORT] = ACTIONS(2586), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2586), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2586), + [anon_sym_const] = ACTIONS(2586), + [anon_sym_constexpr] = ACTIONS(2586), + [anon_sym_volatile] = ACTIONS(2586), + [anon_sym_restrict] = ACTIONS(2586), + [anon_sym___restrict__] = ACTIONS(2586), + [anon_sym__Atomic] = ACTIONS(2586), + [anon_sym__Noreturn] = ACTIONS(2586), + [anon_sym__Nonnull] = ACTIONS(2586), + [anon_sym_nullable] = ACTIONS(2586), + [anon_sym__Complex] = ACTIONS(2586), + [anon_sym__Nullable] = ACTIONS(2586), + [anon_sym__Nullable_result] = ACTIONS(2586), + [anon_sym__Null_unspecified] = ACTIONS(2586), + [anon_sym___autoreleasing] = ACTIONS(2586), + [anon_sym___block] = ACTIONS(2586), + [anon_sym___bridge] = ACTIONS(2586), + [anon_sym___bridge_retained] = ACTIONS(2586), + [anon_sym___bridge_transfer] = ACTIONS(2586), + [anon_sym___complex] = ACTIONS(2586), + [anon_sym___const] = ACTIONS(2586), + [anon_sym___imag] = ACTIONS(2586), + [anon_sym___kindof] = ACTIONS(2586), + [anon_sym___nonnull] = ACTIONS(2586), + [anon_sym___nullable] = ACTIONS(2586), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2586), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2586), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2586), + [anon_sym___real] = ACTIONS(2586), + [anon_sym___strong] = ACTIONS(2586), + [anon_sym___unsafe_unretained] = ACTIONS(2586), + [anon_sym___unused] = ACTIONS(2586), + [anon_sym___weak] = ACTIONS(2586), + [anon_sym_alignas] = ACTIONS(2586), + [anon_sym__Alignas] = ACTIONS(2586), + [sym_primitive_type] = ACTIONS(2586), + [anon_sym_enum] = ACTIONS(2586), + [anon_sym_struct] = ACTIONS(2586), + [anon_sym_union] = ACTIONS(2586), + [anon_sym_if] = ACTIONS(2586), + [anon_sym_switch] = ACTIONS(2586), + [anon_sym_case] = ACTIONS(2586), + [anon_sym_default] = ACTIONS(2586), + [anon_sym_while] = ACTIONS(2586), + [anon_sym_do] = ACTIONS(2586), + [anon_sym_for] = ACTIONS(2586), + [anon_sym_in] = ACTIONS(2586), + [anon_sym_return] = ACTIONS(2586), + [anon_sym_break] = ACTIONS(2586), + [anon_sym_continue] = ACTIONS(2586), + [anon_sym_goto] = ACTIONS(2586), + [anon_sym_DASH_DASH] = ACTIONS(2588), + [anon_sym_PLUS_PLUS] = ACTIONS(2588), + [anon_sym_sizeof] = ACTIONS(2586), + [anon_sym___alignof__] = ACTIONS(2586), + [anon_sym___alignof] = ACTIONS(2586), + [anon_sym__alignof] = ACTIONS(2586), + [anon_sym_alignof] = ACTIONS(2586), + [anon_sym__Alignof] = ACTIONS(2586), + [anon_sym_offsetof] = ACTIONS(2586), + [anon_sym__Generic] = ACTIONS(2586), + [anon_sym_asm] = ACTIONS(2586), + [anon_sym___asm__] = ACTIONS(2586), + [anon_sym___asm] = ACTIONS(2586), + [sym_number_literal] = ACTIONS(2588), + [anon_sym_L_SQUOTE] = ACTIONS(2588), + [anon_sym_u_SQUOTE] = ACTIONS(2588), + [anon_sym_U_SQUOTE] = ACTIONS(2588), + [anon_sym_u8_SQUOTE] = ACTIONS(2588), + [anon_sym_SQUOTE] = ACTIONS(2588), + [anon_sym_AT] = ACTIONS(2586), + [anon_sym_DQUOTE] = ACTIONS(2588), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2586), + [sym_false] = ACTIONS(2586), + [anon_sym_NULL] = ACTIONS(2586), + [anon_sym_nullptr] = ACTIONS(2586), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2586), + [anon_sym___typeof] = ACTIONS(2586), + [anon_sym_typeof] = ACTIONS(2586), + [anon_sym_ATimport] = ACTIONS(2588), + [aux_sym_preproc_undef_token1] = ACTIONS(2586), + [anon_sym_POUND] = ACTIONS(2586), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2586), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2586), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2586), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2586), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2586), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2586), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2586), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2586), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2586), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2586), + [anon_sym_NS_AVAILABLE] = ACTIONS(2586), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2586), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2586), + [anon_sym_API_AVAILABLE] = ACTIONS(2586), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2586), + [anon_sym_API_DEPRECATED] = ACTIONS(2586), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2586), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2586), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2586), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2586), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2586), + [anon_sym___deprecated_msg] = ACTIONS(2586), + [anon_sym___deprecated_enum_msg] = ACTIONS(2586), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2586), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2586), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2586), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2586), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2586), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2586), + [anon_sym_ATprotocol] = ACTIONS(2588), + [anon_sym_ATinterface] = ACTIONS(2588), + [anon_sym_ATimplementation] = ACTIONS(2588), + [anon_sym_ATcompatibility_alias] = ACTIONS(2588), + [anon_sym_ATselector] = ACTIONS(2588), + [anon_sym_ATavailable] = ACTIONS(2588), + [anon_sym___builtin_available] = ACTIONS(2586), + [anon_sym_va_arg] = ACTIONS(2586), + [anon_sym_ATencode] = ACTIONS(2588), + [anon_sym_BOOL] = ACTIONS(2586), + [anon_sym_IMP] = ACTIONS(2586), + [anon_sym_SEL] = ACTIONS(2586), + [anon_sym_Class] = ACTIONS(2586), + [anon_sym_id] = ACTIONS(2586), + }, + [1031] = { + [ts_builtin_sym_end] = ACTIONS(2758), + [sym_identifier] = ACTIONS(2756), + [aux_sym_preproc_include_token1] = ACTIONS(2756), + [aux_sym_preproc_include_token2] = ACTIONS(2756), + [aux_sym_preproc_def_token1] = ACTIONS(2756), + [aux_sym_preproc_if_token1] = ACTIONS(2756), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2756), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2756), + [sym_preproc_directive] = ACTIONS(2756), + [anon_sym_LPAREN2] = ACTIONS(2758), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_TILDE] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_STAR] = ACTIONS(2758), + [anon_sym_CARET] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym___extension__] = ACTIONS(2756), + [anon_sym_typedef] = ACTIONS(2756), + [anon_sym_extern] = ACTIONS(2756), + [anon_sym___attribute__] = ACTIONS(2756), + [anon_sym___attribute] = ACTIONS(2756), + [anon_sym_noreturn] = ACTIONS(2756), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym___declspec] = ACTIONS(2756), + [anon_sym___cdecl] = ACTIONS(2756), + [anon_sym___clrcall] = ACTIONS(2756), + [anon_sym___stdcall] = ACTIONS(2756), + [anon_sym___fastcall] = ACTIONS(2756), + [anon_sym___thiscall] = ACTIONS(2756), + [anon_sym___vectorcall] = ACTIONS(2756), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_signed] = ACTIONS(2756), + [anon_sym_unsigned] = ACTIONS(2756), + [anon_sym_long] = ACTIONS(2756), + [anon_sym_short] = ACTIONS(2756), + [anon_sym_static] = ACTIONS(2756), + [anon_sym_ATautoreleasepool] = ACTIONS(2758), + [anon_sym_auto] = ACTIONS(2756), + [anon_sym_register] = ACTIONS(2756), + [anon_sym_inline] = ACTIONS(2756), + [anon_sym___inline] = ACTIONS(2756), + [anon_sym___inline__] = ACTIONS(2756), + [anon_sym___forceinline] = ACTIONS(2756), + [anon_sym_thread_local] = ACTIONS(2756), + [anon_sym___thread] = ACTIONS(2756), + [anon_sym_CG_EXTERN] = ACTIONS(2756), + [anon_sym_CG_INLINE] = ACTIONS(2756), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2756), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2756), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2756), + [anon_sym_IBOutlet] = ACTIONS(2756), + [anon_sym_IBInspectable] = ACTIONS(2756), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2756), + [anon_sym_NS_INLINE] = ACTIONS(2756), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2756), + [anon_sym_OBJC_EXPORT] = ACTIONS(2756), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2756), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2756), + [anon_sym_const] = ACTIONS(2756), + [anon_sym_constexpr] = ACTIONS(2756), + [anon_sym_volatile] = ACTIONS(2756), + [anon_sym_restrict] = ACTIONS(2756), + [anon_sym___restrict__] = ACTIONS(2756), + [anon_sym__Atomic] = ACTIONS(2756), + [anon_sym__Noreturn] = ACTIONS(2756), + [anon_sym__Nonnull] = ACTIONS(2756), + [anon_sym_nullable] = ACTIONS(2756), + [anon_sym__Complex] = ACTIONS(2756), + [anon_sym__Nullable] = ACTIONS(2756), + [anon_sym__Nullable_result] = ACTIONS(2756), + [anon_sym__Null_unspecified] = ACTIONS(2756), + [anon_sym___autoreleasing] = ACTIONS(2756), + [anon_sym___block] = ACTIONS(2756), + [anon_sym___bridge] = ACTIONS(2756), + [anon_sym___bridge_retained] = ACTIONS(2756), + [anon_sym___bridge_transfer] = ACTIONS(2756), + [anon_sym___complex] = ACTIONS(2756), + [anon_sym___const] = ACTIONS(2756), + [anon_sym___imag] = ACTIONS(2756), + [anon_sym___kindof] = ACTIONS(2756), + [anon_sym___nonnull] = ACTIONS(2756), + [anon_sym___nullable] = ACTIONS(2756), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2756), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2756), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2756), + [anon_sym___real] = ACTIONS(2756), + [anon_sym___strong] = ACTIONS(2756), + [anon_sym___unsafe_unretained] = ACTIONS(2756), + [anon_sym___unused] = ACTIONS(2756), + [anon_sym___weak] = ACTIONS(2756), + [anon_sym_alignas] = ACTIONS(2756), + [anon_sym__Alignas] = ACTIONS(2756), + [sym_primitive_type] = ACTIONS(2756), + [anon_sym_enum] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(2756), + [anon_sym_union] = ACTIONS(2756), + [anon_sym_if] = ACTIONS(2756), + [anon_sym_switch] = ACTIONS(2756), + [anon_sym_case] = ACTIONS(2756), + [anon_sym_default] = ACTIONS(2756), + [anon_sym_while] = ACTIONS(2756), + [anon_sym_do] = ACTIONS(2756), + [anon_sym_for] = ACTIONS(2756), + [anon_sym_in] = ACTIONS(2756), + [anon_sym_return] = ACTIONS(2756), + [anon_sym_break] = ACTIONS(2756), + [anon_sym_continue] = ACTIONS(2756), + [anon_sym_goto] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_sizeof] = ACTIONS(2756), + [anon_sym___alignof__] = ACTIONS(2756), + [anon_sym___alignof] = ACTIONS(2756), + [anon_sym__alignof] = ACTIONS(2756), + [anon_sym_alignof] = ACTIONS(2756), + [anon_sym__Alignof] = ACTIONS(2756), + [anon_sym_offsetof] = ACTIONS(2756), + [anon_sym__Generic] = ACTIONS(2756), + [anon_sym_asm] = ACTIONS(2756), + [anon_sym___asm__] = ACTIONS(2756), + [anon_sym___asm] = ACTIONS(2756), + [sym_number_literal] = ACTIONS(2758), + [anon_sym_L_SQUOTE] = ACTIONS(2758), + [anon_sym_u_SQUOTE] = ACTIONS(2758), + [anon_sym_U_SQUOTE] = ACTIONS(2758), + [anon_sym_u8_SQUOTE] = ACTIONS(2758), + [anon_sym_SQUOTE] = ACTIONS(2758), + [anon_sym_AT] = ACTIONS(2756), + [anon_sym_DQUOTE] = ACTIONS(2758), + [anon_sym_L_DQUOTE] = ACTIONS(2758), + [anon_sym_u_DQUOTE] = ACTIONS(2758), + [anon_sym_U_DQUOTE] = ACTIONS(2758), + [anon_sym_u8_DQUOTE] = ACTIONS(2758), + [sym_true] = ACTIONS(2756), + [sym_false] = ACTIONS(2756), + [anon_sym_NULL] = ACTIONS(2756), + [anon_sym_nullptr] = ACTIONS(2756), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2756), + [anon_sym___typeof] = ACTIONS(2756), + [anon_sym_typeof] = ACTIONS(2756), + [anon_sym_ATimport] = ACTIONS(2758), + [aux_sym_preproc_undef_token1] = ACTIONS(2756), + [anon_sym_POUND] = ACTIONS(2756), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2756), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2756), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2756), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2756), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2756), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2756), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2756), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2756), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2756), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2756), + [anon_sym_NS_AVAILABLE] = ACTIONS(2756), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2756), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2756), + [anon_sym_API_AVAILABLE] = ACTIONS(2756), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2756), + [anon_sym_API_DEPRECATED] = ACTIONS(2756), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2756), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2756), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2756), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2756), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2756), + [anon_sym___deprecated_msg] = ACTIONS(2756), + [anon_sym___deprecated_enum_msg] = ACTIONS(2756), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2756), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2756), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2756), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2756), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2756), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2756), + [anon_sym_ATprotocol] = ACTIONS(2758), + [anon_sym_ATinterface] = ACTIONS(2758), + [anon_sym_ATimplementation] = ACTIONS(2758), + [anon_sym_ATcompatibility_alias] = ACTIONS(2758), + [anon_sym_ATselector] = ACTIONS(2758), + [anon_sym_ATavailable] = ACTIONS(2758), + [anon_sym___builtin_available] = ACTIONS(2756), + [anon_sym_va_arg] = ACTIONS(2756), + [anon_sym_ATencode] = ACTIONS(2758), + [anon_sym_BOOL] = ACTIONS(2756), + [anon_sym_IMP] = ACTIONS(2756), + [anon_sym_SEL] = ACTIONS(2756), + [anon_sym_Class] = ACTIONS(2756), + [anon_sym_id] = ACTIONS(2756), + }, + [1032] = { + [ts_builtin_sym_end] = ACTIONS(2762), + [sym_identifier] = ACTIONS(2760), + [aux_sym_preproc_include_token1] = ACTIONS(2760), + [aux_sym_preproc_include_token2] = ACTIONS(2760), + [aux_sym_preproc_def_token1] = ACTIONS(2760), + [aux_sym_preproc_if_token1] = ACTIONS(2760), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2760), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2760), + [sym_preproc_directive] = ACTIONS(2760), + [anon_sym_LPAREN2] = ACTIONS(2762), + [anon_sym_BANG] = ACTIONS(2762), + [anon_sym_TILDE] = ACTIONS(2762), + [anon_sym_DASH] = ACTIONS(2760), + [anon_sym_PLUS] = ACTIONS(2760), + [anon_sym_STAR] = ACTIONS(2762), + [anon_sym_CARET] = ACTIONS(2762), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym___extension__] = ACTIONS(2760), + [anon_sym_typedef] = ACTIONS(2760), + [anon_sym_extern] = ACTIONS(2760), + [anon_sym___attribute__] = ACTIONS(2760), + [anon_sym___attribute] = ACTIONS(2760), + [anon_sym_noreturn] = ACTIONS(2760), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym___declspec] = ACTIONS(2760), + [anon_sym___cdecl] = ACTIONS(2760), + [anon_sym___clrcall] = ACTIONS(2760), + [anon_sym___stdcall] = ACTIONS(2760), + [anon_sym___fastcall] = ACTIONS(2760), + [anon_sym___thiscall] = ACTIONS(2760), + [anon_sym___vectorcall] = ACTIONS(2760), + [anon_sym_LBRACE] = ACTIONS(2762), + [anon_sym_signed] = ACTIONS(2760), + [anon_sym_unsigned] = ACTIONS(2760), + [anon_sym_long] = ACTIONS(2760), + [anon_sym_short] = ACTIONS(2760), + [anon_sym_static] = ACTIONS(2760), + [anon_sym_ATautoreleasepool] = ACTIONS(2762), + [anon_sym_auto] = ACTIONS(2760), + [anon_sym_register] = ACTIONS(2760), + [anon_sym_inline] = ACTIONS(2760), + [anon_sym___inline] = ACTIONS(2760), + [anon_sym___inline__] = ACTIONS(2760), + [anon_sym___forceinline] = ACTIONS(2760), + [anon_sym_thread_local] = ACTIONS(2760), + [anon_sym___thread] = ACTIONS(2760), + [anon_sym_CG_EXTERN] = ACTIONS(2760), + [anon_sym_CG_INLINE] = ACTIONS(2760), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2760), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2760), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2760), + [anon_sym_IBOutlet] = ACTIONS(2760), + [anon_sym_IBInspectable] = ACTIONS(2760), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2760), + [anon_sym_NS_INLINE] = ACTIONS(2760), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2760), + [anon_sym_OBJC_EXPORT] = ACTIONS(2760), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2760), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2760), + [anon_sym_const] = ACTIONS(2760), + [anon_sym_constexpr] = ACTIONS(2760), + [anon_sym_volatile] = ACTIONS(2760), + [anon_sym_restrict] = ACTIONS(2760), + [anon_sym___restrict__] = ACTIONS(2760), + [anon_sym__Atomic] = ACTIONS(2760), + [anon_sym__Noreturn] = ACTIONS(2760), + [anon_sym__Nonnull] = ACTIONS(2760), + [anon_sym_nullable] = ACTIONS(2760), + [anon_sym__Complex] = ACTIONS(2760), + [anon_sym__Nullable] = ACTIONS(2760), + [anon_sym__Nullable_result] = ACTIONS(2760), + [anon_sym__Null_unspecified] = ACTIONS(2760), + [anon_sym___autoreleasing] = ACTIONS(2760), + [anon_sym___block] = ACTIONS(2760), + [anon_sym___bridge] = ACTIONS(2760), + [anon_sym___bridge_retained] = ACTIONS(2760), + [anon_sym___bridge_transfer] = ACTIONS(2760), + [anon_sym___complex] = ACTIONS(2760), + [anon_sym___const] = ACTIONS(2760), + [anon_sym___imag] = ACTIONS(2760), + [anon_sym___kindof] = ACTIONS(2760), + [anon_sym___nonnull] = ACTIONS(2760), + [anon_sym___nullable] = ACTIONS(2760), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2760), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2760), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2760), + [anon_sym___real] = ACTIONS(2760), + [anon_sym___strong] = ACTIONS(2760), + [anon_sym___unsafe_unretained] = ACTIONS(2760), + [anon_sym___unused] = ACTIONS(2760), + [anon_sym___weak] = ACTIONS(2760), + [anon_sym_alignas] = ACTIONS(2760), + [anon_sym__Alignas] = ACTIONS(2760), + [sym_primitive_type] = ACTIONS(2760), + [anon_sym_enum] = ACTIONS(2760), + [anon_sym_struct] = ACTIONS(2760), + [anon_sym_union] = ACTIONS(2760), + [anon_sym_if] = ACTIONS(2760), + [anon_sym_switch] = ACTIONS(2760), + [anon_sym_case] = ACTIONS(2760), + [anon_sym_default] = ACTIONS(2760), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_do] = ACTIONS(2760), + [anon_sym_for] = ACTIONS(2760), + [anon_sym_in] = ACTIONS(2760), + [anon_sym_return] = ACTIONS(2760), + [anon_sym_break] = ACTIONS(2760), + [anon_sym_continue] = ACTIONS(2760), + [anon_sym_goto] = ACTIONS(2760), + [anon_sym_DASH_DASH] = ACTIONS(2762), + [anon_sym_PLUS_PLUS] = ACTIONS(2762), + [anon_sym_sizeof] = ACTIONS(2760), + [anon_sym___alignof__] = ACTIONS(2760), + [anon_sym___alignof] = ACTIONS(2760), + [anon_sym__alignof] = ACTIONS(2760), + [anon_sym_alignof] = ACTIONS(2760), + [anon_sym__Alignof] = ACTIONS(2760), + [anon_sym_offsetof] = ACTIONS(2760), + [anon_sym__Generic] = ACTIONS(2760), + [anon_sym_asm] = ACTIONS(2760), + [anon_sym___asm__] = ACTIONS(2760), + [anon_sym___asm] = ACTIONS(2760), + [sym_number_literal] = ACTIONS(2762), + [anon_sym_L_SQUOTE] = ACTIONS(2762), + [anon_sym_u_SQUOTE] = ACTIONS(2762), + [anon_sym_U_SQUOTE] = ACTIONS(2762), + [anon_sym_u8_SQUOTE] = ACTIONS(2762), + [anon_sym_SQUOTE] = ACTIONS(2762), + [anon_sym_AT] = ACTIONS(2760), + [anon_sym_DQUOTE] = ACTIONS(2762), + [anon_sym_L_DQUOTE] = ACTIONS(2762), + [anon_sym_u_DQUOTE] = ACTIONS(2762), + [anon_sym_U_DQUOTE] = ACTIONS(2762), + [anon_sym_u8_DQUOTE] = ACTIONS(2762), + [sym_true] = ACTIONS(2760), + [sym_false] = ACTIONS(2760), + [anon_sym_NULL] = ACTIONS(2760), + [anon_sym_nullptr] = ACTIONS(2760), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2760), + [anon_sym___typeof] = ACTIONS(2760), + [anon_sym_typeof] = ACTIONS(2760), + [anon_sym_ATimport] = ACTIONS(2762), + [aux_sym_preproc_undef_token1] = ACTIONS(2760), + [anon_sym_POUND] = ACTIONS(2760), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2760), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2760), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2760), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2760), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2760), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2760), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2760), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2760), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2760), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2760), + [anon_sym_NS_AVAILABLE] = ACTIONS(2760), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2760), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2760), + [anon_sym_API_AVAILABLE] = ACTIONS(2760), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2760), + [anon_sym_API_DEPRECATED] = ACTIONS(2760), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2760), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2760), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2760), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2760), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2760), + [anon_sym___deprecated_msg] = ACTIONS(2760), + [anon_sym___deprecated_enum_msg] = ACTIONS(2760), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2760), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2760), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2760), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2760), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2760), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2760), + [anon_sym_ATprotocol] = ACTIONS(2762), + [anon_sym_ATinterface] = ACTIONS(2762), + [anon_sym_ATimplementation] = ACTIONS(2762), + [anon_sym_ATcompatibility_alias] = ACTIONS(2762), + [anon_sym_ATselector] = ACTIONS(2762), + [anon_sym_ATavailable] = ACTIONS(2762), + [anon_sym___builtin_available] = ACTIONS(2760), + [anon_sym_va_arg] = ACTIONS(2760), + [anon_sym_ATencode] = ACTIONS(2762), + [anon_sym_BOOL] = ACTIONS(2760), + [anon_sym_IMP] = ACTIONS(2760), + [anon_sym_SEL] = ACTIONS(2760), + [anon_sym_Class] = ACTIONS(2760), + [anon_sym_id] = ACTIONS(2760), + }, + [1033] = { + [ts_builtin_sym_end] = ACTIONS(2650), + [sym_identifier] = ACTIONS(2648), + [aux_sym_preproc_include_token1] = ACTIONS(2648), + [aux_sym_preproc_include_token2] = ACTIONS(2648), + [aux_sym_preproc_def_token1] = ACTIONS(2648), + [aux_sym_preproc_if_token1] = ACTIONS(2648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2648), + [sym_preproc_directive] = ACTIONS(2648), + [anon_sym_LPAREN2] = ACTIONS(2650), + [anon_sym_BANG] = ACTIONS(2650), + [anon_sym_TILDE] = ACTIONS(2650), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_PLUS] = ACTIONS(2648), + [anon_sym_STAR] = ACTIONS(2650), + [anon_sym_CARET] = ACTIONS(2650), + [anon_sym_AMP] = ACTIONS(2650), + [anon_sym_SEMI] = ACTIONS(2650), + [anon_sym___extension__] = ACTIONS(2648), + [anon_sym_typedef] = ACTIONS(2648), + [anon_sym_extern] = ACTIONS(2648), + [anon_sym___attribute__] = ACTIONS(2648), + [anon_sym___attribute] = ACTIONS(2648), + [anon_sym_noreturn] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(2650), + [anon_sym___declspec] = ACTIONS(2648), + [anon_sym___cdecl] = ACTIONS(2648), + [anon_sym___clrcall] = ACTIONS(2648), + [anon_sym___stdcall] = ACTIONS(2648), + [anon_sym___fastcall] = ACTIONS(2648), + [anon_sym___thiscall] = ACTIONS(2648), + [anon_sym___vectorcall] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2650), + [anon_sym_signed] = ACTIONS(2648), + [anon_sym_unsigned] = ACTIONS(2648), + [anon_sym_long] = ACTIONS(2648), + [anon_sym_short] = ACTIONS(2648), + [anon_sym_static] = ACTIONS(2648), + [anon_sym_ATautoreleasepool] = ACTIONS(2650), + [anon_sym_auto] = ACTIONS(2648), + [anon_sym_register] = ACTIONS(2648), + [anon_sym_inline] = ACTIONS(2648), + [anon_sym___inline] = ACTIONS(2648), + [anon_sym___inline__] = ACTIONS(2648), + [anon_sym___forceinline] = ACTIONS(2648), + [anon_sym_thread_local] = ACTIONS(2648), + [anon_sym___thread] = ACTIONS(2648), + [anon_sym_CG_EXTERN] = ACTIONS(2648), + [anon_sym_CG_INLINE] = ACTIONS(2648), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2648), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2648), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2648), + [anon_sym_IBOutlet] = ACTIONS(2648), + [anon_sym_IBInspectable] = ACTIONS(2648), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2648), + [anon_sym_NS_INLINE] = ACTIONS(2648), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2648), + [anon_sym_OBJC_EXPORT] = ACTIONS(2648), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2648), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2648), + [anon_sym_const] = ACTIONS(2648), + [anon_sym_constexpr] = ACTIONS(2648), + [anon_sym_volatile] = ACTIONS(2648), + [anon_sym_restrict] = ACTIONS(2648), + [anon_sym___restrict__] = ACTIONS(2648), + [anon_sym__Atomic] = ACTIONS(2648), + [anon_sym__Noreturn] = ACTIONS(2648), + [anon_sym__Nonnull] = ACTIONS(2648), + [anon_sym_nullable] = ACTIONS(2648), + [anon_sym__Complex] = ACTIONS(2648), + [anon_sym__Nullable] = ACTIONS(2648), + [anon_sym__Nullable_result] = ACTIONS(2648), + [anon_sym__Null_unspecified] = ACTIONS(2648), + [anon_sym___autoreleasing] = ACTIONS(2648), + [anon_sym___block] = ACTIONS(2648), + [anon_sym___bridge] = ACTIONS(2648), + [anon_sym___bridge_retained] = ACTIONS(2648), + [anon_sym___bridge_transfer] = ACTIONS(2648), + [anon_sym___complex] = ACTIONS(2648), + [anon_sym___const] = ACTIONS(2648), + [anon_sym___imag] = ACTIONS(2648), + [anon_sym___kindof] = ACTIONS(2648), + [anon_sym___nonnull] = ACTIONS(2648), + [anon_sym___nullable] = ACTIONS(2648), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2648), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2648), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2648), + [anon_sym___real] = ACTIONS(2648), + [anon_sym___strong] = ACTIONS(2648), + [anon_sym___unsafe_unretained] = ACTIONS(2648), + [anon_sym___unused] = ACTIONS(2648), + [anon_sym___weak] = ACTIONS(2648), + [anon_sym_alignas] = ACTIONS(2648), + [anon_sym__Alignas] = ACTIONS(2648), + [sym_primitive_type] = ACTIONS(2648), + [anon_sym_enum] = ACTIONS(2648), + [anon_sym_struct] = ACTIONS(2648), + [anon_sym_union] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2648), + [anon_sym_switch] = ACTIONS(2648), + [anon_sym_case] = ACTIONS(2648), + [anon_sym_default] = ACTIONS(2648), + [anon_sym_while] = ACTIONS(2648), + [anon_sym_do] = ACTIONS(2648), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_in] = ACTIONS(2648), + [anon_sym_return] = ACTIONS(2648), + [anon_sym_break] = ACTIONS(2648), + [anon_sym_continue] = ACTIONS(2648), + [anon_sym_goto] = ACTIONS(2648), + [anon_sym_DASH_DASH] = ACTIONS(2650), + [anon_sym_PLUS_PLUS] = ACTIONS(2650), + [anon_sym_sizeof] = ACTIONS(2648), + [anon_sym___alignof__] = ACTIONS(2648), + [anon_sym___alignof] = ACTIONS(2648), + [anon_sym__alignof] = ACTIONS(2648), + [anon_sym_alignof] = ACTIONS(2648), + [anon_sym__Alignof] = ACTIONS(2648), + [anon_sym_offsetof] = ACTIONS(2648), + [anon_sym__Generic] = ACTIONS(2648), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [anon_sym___asm] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2650), + [anon_sym_u_SQUOTE] = ACTIONS(2650), + [anon_sym_U_SQUOTE] = ACTIONS(2650), + [anon_sym_u8_SQUOTE] = ACTIONS(2650), + [anon_sym_SQUOTE] = ACTIONS(2650), + [anon_sym_AT] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(2650), + [anon_sym_L_DQUOTE] = ACTIONS(2650), + [anon_sym_u_DQUOTE] = ACTIONS(2650), + [anon_sym_U_DQUOTE] = ACTIONS(2650), + [anon_sym_u8_DQUOTE] = ACTIONS(2650), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2648), + [anon_sym_nullptr] = ACTIONS(2648), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2648), + [anon_sym___typeof] = ACTIONS(2648), + [anon_sym_typeof] = ACTIONS(2648), + [anon_sym_ATimport] = ACTIONS(2650), + [aux_sym_preproc_undef_token1] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(2648), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2648), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2648), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2648), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2648), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2648), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2648), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2648), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2648), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2648), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2648), + [anon_sym_NS_AVAILABLE] = ACTIONS(2648), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2648), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2648), + [anon_sym_API_AVAILABLE] = ACTIONS(2648), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2648), + [anon_sym_API_DEPRECATED] = ACTIONS(2648), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2648), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2648), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2648), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2648), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2648), + [anon_sym___deprecated_msg] = ACTIONS(2648), + [anon_sym___deprecated_enum_msg] = ACTIONS(2648), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2648), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2648), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2648), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2648), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2648), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2648), + [anon_sym_ATprotocol] = ACTIONS(2650), + [anon_sym_ATinterface] = ACTIONS(2650), + [anon_sym_ATimplementation] = ACTIONS(2650), + [anon_sym_ATcompatibility_alias] = ACTIONS(2650), + [anon_sym_ATselector] = ACTIONS(2650), + [anon_sym_ATavailable] = ACTIONS(2650), + [anon_sym___builtin_available] = ACTIONS(2648), + [anon_sym_va_arg] = ACTIONS(2648), + [anon_sym_ATencode] = ACTIONS(2650), + [anon_sym_BOOL] = ACTIONS(2648), + [anon_sym_IMP] = ACTIONS(2648), + [anon_sym_SEL] = ACTIONS(2648), + [anon_sym_Class] = ACTIONS(2648), + [anon_sym_id] = ACTIONS(2648), + }, + [1034] = { + [ts_builtin_sym_end] = ACTIONS(2622), + [sym_identifier] = ACTIONS(2620), + [aux_sym_preproc_include_token1] = ACTIONS(2620), + [aux_sym_preproc_include_token2] = ACTIONS(2620), + [aux_sym_preproc_def_token1] = ACTIONS(2620), + [aux_sym_preproc_if_token1] = ACTIONS(2620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2620), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2620), + [sym_preproc_directive] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(2622), + [anon_sym_BANG] = ACTIONS(2622), + [anon_sym_TILDE] = ACTIONS(2622), + [anon_sym_DASH] = ACTIONS(2620), + [anon_sym_PLUS] = ACTIONS(2620), + [anon_sym_STAR] = ACTIONS(2622), + [anon_sym_CARET] = ACTIONS(2622), + [anon_sym_AMP] = ACTIONS(2622), + [anon_sym_SEMI] = ACTIONS(2622), + [anon_sym___extension__] = ACTIONS(2620), + [anon_sym_typedef] = ACTIONS(2620), + [anon_sym_extern] = ACTIONS(2620), + [anon_sym___attribute__] = ACTIONS(2620), + [anon_sym___attribute] = ACTIONS(2620), + [anon_sym_noreturn] = ACTIONS(2620), + [anon_sym_LBRACK] = ACTIONS(2622), + [anon_sym___declspec] = ACTIONS(2620), + [anon_sym___cdecl] = ACTIONS(2620), + [anon_sym___clrcall] = ACTIONS(2620), + [anon_sym___stdcall] = ACTIONS(2620), + [anon_sym___fastcall] = ACTIONS(2620), + [anon_sym___thiscall] = ACTIONS(2620), + [anon_sym___vectorcall] = ACTIONS(2620), + [anon_sym_LBRACE] = ACTIONS(2622), + [anon_sym_signed] = ACTIONS(2620), + [anon_sym_unsigned] = ACTIONS(2620), + [anon_sym_long] = ACTIONS(2620), + [anon_sym_short] = ACTIONS(2620), + [anon_sym_static] = ACTIONS(2620), + [anon_sym_ATautoreleasepool] = ACTIONS(2622), + [anon_sym_auto] = ACTIONS(2620), + [anon_sym_register] = ACTIONS(2620), + [anon_sym_inline] = ACTIONS(2620), + [anon_sym___inline] = ACTIONS(2620), + [anon_sym___inline__] = ACTIONS(2620), + [anon_sym___forceinline] = ACTIONS(2620), + [anon_sym_thread_local] = ACTIONS(2620), + [anon_sym___thread] = ACTIONS(2620), + [anon_sym_CG_EXTERN] = ACTIONS(2620), + [anon_sym_CG_INLINE] = ACTIONS(2620), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2620), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2620), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2620), + [anon_sym_IBOutlet] = ACTIONS(2620), + [anon_sym_IBInspectable] = ACTIONS(2620), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2620), + [anon_sym_NS_INLINE] = ACTIONS(2620), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2620), + [anon_sym_OBJC_EXPORT] = ACTIONS(2620), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2620), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2620), + [anon_sym_const] = ACTIONS(2620), + [anon_sym_constexpr] = ACTIONS(2620), + [anon_sym_volatile] = ACTIONS(2620), + [anon_sym_restrict] = ACTIONS(2620), + [anon_sym___restrict__] = ACTIONS(2620), + [anon_sym__Atomic] = ACTIONS(2620), + [anon_sym__Noreturn] = ACTIONS(2620), + [anon_sym__Nonnull] = ACTIONS(2620), + [anon_sym_nullable] = ACTIONS(2620), + [anon_sym__Complex] = ACTIONS(2620), + [anon_sym__Nullable] = ACTIONS(2620), + [anon_sym__Nullable_result] = ACTIONS(2620), + [anon_sym__Null_unspecified] = ACTIONS(2620), + [anon_sym___autoreleasing] = ACTIONS(2620), + [anon_sym___block] = ACTIONS(2620), + [anon_sym___bridge] = ACTIONS(2620), + [anon_sym___bridge_retained] = ACTIONS(2620), + [anon_sym___bridge_transfer] = ACTIONS(2620), + [anon_sym___complex] = ACTIONS(2620), + [anon_sym___const] = ACTIONS(2620), + [anon_sym___imag] = ACTIONS(2620), + [anon_sym___kindof] = ACTIONS(2620), + [anon_sym___nonnull] = ACTIONS(2620), + [anon_sym___nullable] = ACTIONS(2620), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2620), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2620), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2620), + [anon_sym___real] = ACTIONS(2620), + [anon_sym___strong] = ACTIONS(2620), + [anon_sym___unsafe_unretained] = ACTIONS(2620), + [anon_sym___unused] = ACTIONS(2620), + [anon_sym___weak] = ACTIONS(2620), + [anon_sym_alignas] = ACTIONS(2620), + [anon_sym__Alignas] = ACTIONS(2620), + [sym_primitive_type] = ACTIONS(2620), + [anon_sym_enum] = ACTIONS(2620), + [anon_sym_struct] = ACTIONS(2620), + [anon_sym_union] = ACTIONS(2620), + [anon_sym_if] = ACTIONS(2620), + [anon_sym_switch] = ACTIONS(2620), + [anon_sym_case] = ACTIONS(2620), + [anon_sym_default] = ACTIONS(2620), + [anon_sym_while] = ACTIONS(2620), + [anon_sym_do] = ACTIONS(2620), + [anon_sym_for] = ACTIONS(2620), + [anon_sym_in] = ACTIONS(2620), + [anon_sym_return] = ACTIONS(2620), + [anon_sym_break] = ACTIONS(2620), + [anon_sym_continue] = ACTIONS(2620), + [anon_sym_goto] = ACTIONS(2620), + [anon_sym_DASH_DASH] = ACTIONS(2622), + [anon_sym_PLUS_PLUS] = ACTIONS(2622), + [anon_sym_sizeof] = ACTIONS(2620), + [anon_sym___alignof__] = ACTIONS(2620), + [anon_sym___alignof] = ACTIONS(2620), + [anon_sym__alignof] = ACTIONS(2620), + [anon_sym_alignof] = ACTIONS(2620), + [anon_sym__Alignof] = ACTIONS(2620), + [anon_sym_offsetof] = ACTIONS(2620), + [anon_sym__Generic] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2620), + [anon_sym___asm__] = ACTIONS(2620), + [anon_sym___asm] = ACTIONS(2620), + [sym_number_literal] = ACTIONS(2622), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_AT] = ACTIONS(2620), + [anon_sym_DQUOTE] = ACTIONS(2622), + [anon_sym_L_DQUOTE] = ACTIONS(2622), + [anon_sym_u_DQUOTE] = ACTIONS(2622), + [anon_sym_U_DQUOTE] = ACTIONS(2622), + [anon_sym_u8_DQUOTE] = ACTIONS(2622), + [sym_true] = ACTIONS(2620), + [sym_false] = ACTIONS(2620), + [anon_sym_NULL] = ACTIONS(2620), + [anon_sym_nullptr] = ACTIONS(2620), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2620), + [anon_sym___typeof] = ACTIONS(2620), + [anon_sym_typeof] = ACTIONS(2620), + [anon_sym_ATimport] = ACTIONS(2622), + [aux_sym_preproc_undef_token1] = ACTIONS(2620), + [anon_sym_POUND] = ACTIONS(2620), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2620), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2620), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2620), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2620), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2620), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2620), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2620), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2620), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2620), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2620), + [anon_sym_NS_AVAILABLE] = ACTIONS(2620), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2620), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2620), + [anon_sym_API_AVAILABLE] = ACTIONS(2620), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2620), + [anon_sym_API_DEPRECATED] = ACTIONS(2620), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2620), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2620), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2620), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2620), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2620), + [anon_sym___deprecated_msg] = ACTIONS(2620), + [anon_sym___deprecated_enum_msg] = ACTIONS(2620), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2620), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2620), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2620), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2620), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2620), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2620), + [anon_sym_ATprotocol] = ACTIONS(2622), + [anon_sym_ATinterface] = ACTIONS(2622), + [anon_sym_ATimplementation] = ACTIONS(2622), + [anon_sym_ATcompatibility_alias] = ACTIONS(2622), + [anon_sym_ATselector] = ACTIONS(2622), + [anon_sym_ATavailable] = ACTIONS(2622), + [anon_sym___builtin_available] = ACTIONS(2620), + [anon_sym_va_arg] = ACTIONS(2620), + [anon_sym_ATencode] = ACTIONS(2622), + [anon_sym_BOOL] = ACTIONS(2620), + [anon_sym_IMP] = ACTIONS(2620), + [anon_sym_SEL] = ACTIONS(2620), + [anon_sym_Class] = ACTIONS(2620), + [anon_sym_id] = ACTIONS(2620), + }, + [1035] = { + [ts_builtin_sym_end] = ACTIONS(2770), + [sym_identifier] = ACTIONS(2768), + [aux_sym_preproc_include_token1] = ACTIONS(2768), + [aux_sym_preproc_include_token2] = ACTIONS(2768), + [aux_sym_preproc_def_token1] = ACTIONS(2768), + [aux_sym_preproc_if_token1] = ACTIONS(2768), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2768), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2768), + [sym_preproc_directive] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_TILDE] = ACTIONS(2770), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(2770), + [anon_sym_CARET] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2770), + [anon_sym_SEMI] = ACTIONS(2770), + [anon_sym___extension__] = ACTIONS(2768), + [anon_sym_typedef] = ACTIONS(2768), + [anon_sym_extern] = ACTIONS(2768), + [anon_sym___attribute__] = ACTIONS(2768), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2770), + [anon_sym___declspec] = ACTIONS(2768), + [anon_sym___cdecl] = ACTIONS(2768), + [anon_sym___clrcall] = ACTIONS(2768), + [anon_sym___stdcall] = ACTIONS(2768), + [anon_sym___fastcall] = ACTIONS(2768), + [anon_sym___thiscall] = ACTIONS(2768), + [anon_sym___vectorcall] = ACTIONS(2768), + [anon_sym_LBRACE] = ACTIONS(2770), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_ATautoreleasepool] = ACTIONS(2770), + [anon_sym_auto] = ACTIONS(2768), + [anon_sym_register] = ACTIONS(2768), + [anon_sym_inline] = ACTIONS(2768), + [anon_sym___inline] = ACTIONS(2768), + [anon_sym___inline__] = ACTIONS(2768), + [anon_sym___forceinline] = ACTIONS(2768), + [anon_sym_thread_local] = ACTIONS(2768), + [anon_sym___thread] = ACTIONS(2768), + [anon_sym_CG_EXTERN] = ACTIONS(2768), + [anon_sym_CG_INLINE] = ACTIONS(2768), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2768), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2768), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2768), + [anon_sym_IBOutlet] = ACTIONS(2768), + [anon_sym_IBInspectable] = ACTIONS(2768), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2768), + [anon_sym_NS_INLINE] = ACTIONS(2768), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2768), + [anon_sym_OBJC_EXPORT] = ACTIONS(2768), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2768), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_nullable] = ACTIONS(2768), + [anon_sym__Complex] = ACTIONS(2768), + [anon_sym__Nullable] = ACTIONS(2768), + [anon_sym__Nullable_result] = ACTIONS(2768), + [anon_sym__Null_unspecified] = ACTIONS(2768), + [anon_sym___autoreleasing] = ACTIONS(2768), + [anon_sym___block] = ACTIONS(2768), + [anon_sym___bridge] = ACTIONS(2768), + [anon_sym___bridge_retained] = ACTIONS(2768), + [anon_sym___bridge_transfer] = ACTIONS(2768), + [anon_sym___complex] = ACTIONS(2768), + [anon_sym___const] = ACTIONS(2768), + [anon_sym___imag] = ACTIONS(2768), + [anon_sym___kindof] = ACTIONS(2768), + [anon_sym___nonnull] = ACTIONS(2768), + [anon_sym___nullable] = ACTIONS(2768), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2768), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2768), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2768), + [anon_sym___real] = ACTIONS(2768), + [anon_sym___strong] = ACTIONS(2768), + [anon_sym___unsafe_unretained] = ACTIONS(2768), + [anon_sym___unused] = ACTIONS(2768), + [anon_sym___weak] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2768), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_switch] = ACTIONS(2768), + [anon_sym_case] = ACTIONS(2768), + [anon_sym_default] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_in] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_break] = ACTIONS(2768), + [anon_sym_continue] = ACTIONS(2768), + [anon_sym_goto] = ACTIONS(2768), + [anon_sym_DASH_DASH] = ACTIONS(2770), + [anon_sym_PLUS_PLUS] = ACTIONS(2770), + [anon_sym_sizeof] = ACTIONS(2768), + [anon_sym___alignof__] = ACTIONS(2768), + [anon_sym___alignof] = ACTIONS(2768), + [anon_sym__alignof] = ACTIONS(2768), + [anon_sym_alignof] = ACTIONS(2768), + [anon_sym__Alignof] = ACTIONS(2768), + [anon_sym_offsetof] = ACTIONS(2768), + [anon_sym__Generic] = ACTIONS(2768), + [anon_sym_asm] = ACTIONS(2768), + [anon_sym___asm__] = ACTIONS(2768), + [anon_sym___asm] = ACTIONS(2768), + [sym_number_literal] = ACTIONS(2770), + [anon_sym_L_SQUOTE] = ACTIONS(2770), + [anon_sym_u_SQUOTE] = ACTIONS(2770), + [anon_sym_U_SQUOTE] = ACTIONS(2770), + [anon_sym_u8_SQUOTE] = ACTIONS(2770), + [anon_sym_SQUOTE] = ACTIONS(2770), + [anon_sym_AT] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2770), + [anon_sym_L_DQUOTE] = ACTIONS(2770), + [anon_sym_u_DQUOTE] = ACTIONS(2770), + [anon_sym_U_DQUOTE] = ACTIONS(2770), + [anon_sym_u8_DQUOTE] = ACTIONS(2770), + [sym_true] = ACTIONS(2768), + [sym_false] = ACTIONS(2768), + [anon_sym_NULL] = ACTIONS(2768), + [anon_sym_nullptr] = ACTIONS(2768), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2768), + [anon_sym___typeof] = ACTIONS(2768), + [anon_sym_typeof] = ACTIONS(2768), + [anon_sym_ATimport] = ACTIONS(2770), + [aux_sym_preproc_undef_token1] = ACTIONS(2768), + [anon_sym_POUND] = ACTIONS(2768), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2768), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2768), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2768), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2768), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2768), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2768), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2768), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2768), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2768), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2768), + [anon_sym_NS_AVAILABLE] = ACTIONS(2768), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2768), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2768), + [anon_sym_API_AVAILABLE] = ACTIONS(2768), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2768), + [anon_sym_API_DEPRECATED] = ACTIONS(2768), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2768), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2768), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2768), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2768), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2768), + [anon_sym___deprecated_msg] = ACTIONS(2768), + [anon_sym___deprecated_enum_msg] = ACTIONS(2768), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2768), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2768), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2768), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2768), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2768), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2768), + [anon_sym_ATprotocol] = ACTIONS(2770), + [anon_sym_ATinterface] = ACTIONS(2770), + [anon_sym_ATimplementation] = ACTIONS(2770), + [anon_sym_ATcompatibility_alias] = ACTIONS(2770), + [anon_sym_ATselector] = ACTIONS(2770), + [anon_sym_ATavailable] = ACTIONS(2770), + [anon_sym___builtin_available] = ACTIONS(2768), + [anon_sym_va_arg] = ACTIONS(2768), + [anon_sym_ATencode] = ACTIONS(2770), + [anon_sym_BOOL] = ACTIONS(2768), + [anon_sym_IMP] = ACTIONS(2768), + [anon_sym_SEL] = ACTIONS(2768), + [anon_sym_Class] = ACTIONS(2768), + [anon_sym_id] = ACTIONS(2768), + }, + [1036] = { + [ts_builtin_sym_end] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2772), + [aux_sym_preproc_include_token1] = ACTIONS(2772), + [aux_sym_preproc_include_token2] = ACTIONS(2772), + [aux_sym_preproc_def_token1] = ACTIONS(2772), + [aux_sym_preproc_if_token1] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2772), + [sym_preproc_directive] = ACTIONS(2772), + [anon_sym_LPAREN2] = ACTIONS(2774), + [anon_sym_BANG] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_CARET] = ACTIONS(2774), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym___extension__] = ACTIONS(2772), + [anon_sym_typedef] = ACTIONS(2772), + [anon_sym_extern] = ACTIONS(2772), + [anon_sym___attribute__] = ACTIONS(2772), + [anon_sym___attribute] = ACTIONS(2772), + [anon_sym_noreturn] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym___declspec] = ACTIONS(2772), + [anon_sym___cdecl] = ACTIONS(2772), + [anon_sym___clrcall] = ACTIONS(2772), + [anon_sym___stdcall] = ACTIONS(2772), + [anon_sym___fastcall] = ACTIONS(2772), + [anon_sym___thiscall] = ACTIONS(2772), + [anon_sym___vectorcall] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_signed] = ACTIONS(2772), + [anon_sym_unsigned] = ACTIONS(2772), + [anon_sym_long] = ACTIONS(2772), + [anon_sym_short] = ACTIONS(2772), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_ATautoreleasepool] = ACTIONS(2774), + [anon_sym_auto] = ACTIONS(2772), + [anon_sym_register] = ACTIONS(2772), + [anon_sym_inline] = ACTIONS(2772), + [anon_sym___inline] = ACTIONS(2772), + [anon_sym___inline__] = ACTIONS(2772), + [anon_sym___forceinline] = ACTIONS(2772), + [anon_sym_thread_local] = ACTIONS(2772), + [anon_sym___thread] = ACTIONS(2772), + [anon_sym_CG_EXTERN] = ACTIONS(2772), + [anon_sym_CG_INLINE] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2772), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2772), + [anon_sym_IBOutlet] = ACTIONS(2772), + [anon_sym_IBInspectable] = ACTIONS(2772), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2772), + [anon_sym_NS_INLINE] = ACTIONS(2772), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2772), + [anon_sym_OBJC_EXPORT] = ACTIONS(2772), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2772), + [anon_sym_const] = ACTIONS(2772), + [anon_sym_constexpr] = ACTIONS(2772), + [anon_sym_volatile] = ACTIONS(2772), + [anon_sym_restrict] = ACTIONS(2772), + [anon_sym___restrict__] = ACTIONS(2772), + [anon_sym__Atomic] = ACTIONS(2772), + [anon_sym__Noreturn] = ACTIONS(2772), + [anon_sym__Nonnull] = ACTIONS(2772), + [anon_sym_nullable] = ACTIONS(2772), + [anon_sym__Complex] = ACTIONS(2772), + [anon_sym__Nullable] = ACTIONS(2772), + [anon_sym__Nullable_result] = ACTIONS(2772), + [anon_sym__Null_unspecified] = ACTIONS(2772), + [anon_sym___autoreleasing] = ACTIONS(2772), + [anon_sym___block] = ACTIONS(2772), + [anon_sym___bridge] = ACTIONS(2772), + [anon_sym___bridge_retained] = ACTIONS(2772), + [anon_sym___bridge_transfer] = ACTIONS(2772), + [anon_sym___complex] = ACTIONS(2772), + [anon_sym___const] = ACTIONS(2772), + [anon_sym___imag] = ACTIONS(2772), + [anon_sym___kindof] = ACTIONS(2772), + [anon_sym___nonnull] = ACTIONS(2772), + [anon_sym___nullable] = ACTIONS(2772), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2772), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2772), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2772), + [anon_sym___real] = ACTIONS(2772), + [anon_sym___strong] = ACTIONS(2772), + [anon_sym___unsafe_unretained] = ACTIONS(2772), + [anon_sym___unused] = ACTIONS(2772), + [anon_sym___weak] = ACTIONS(2772), + [anon_sym_alignas] = ACTIONS(2772), + [anon_sym__Alignas] = ACTIONS(2772), + [sym_primitive_type] = ACTIONS(2772), + [anon_sym_enum] = ACTIONS(2772), + [anon_sym_struct] = ACTIONS(2772), + [anon_sym_union] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_switch] = ACTIONS(2772), + [anon_sym_case] = ACTIONS(2772), + [anon_sym_default] = ACTIONS(2772), + [anon_sym_while] = ACTIONS(2772), + [anon_sym_do] = ACTIONS(2772), + [anon_sym_for] = ACTIONS(2772), + [anon_sym_in] = ACTIONS(2772), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_break] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2772), + [anon_sym_goto] = ACTIONS(2772), + [anon_sym_DASH_DASH] = ACTIONS(2774), + [anon_sym_PLUS_PLUS] = ACTIONS(2774), + [anon_sym_sizeof] = ACTIONS(2772), + [anon_sym___alignof__] = ACTIONS(2772), + [anon_sym___alignof] = ACTIONS(2772), + [anon_sym__alignof] = ACTIONS(2772), + [anon_sym_alignof] = ACTIONS(2772), + [anon_sym__Alignof] = ACTIONS(2772), + [anon_sym_offsetof] = ACTIONS(2772), + [anon_sym__Generic] = ACTIONS(2772), + [anon_sym_asm] = ACTIONS(2772), + [anon_sym___asm__] = ACTIONS(2772), + [anon_sym___asm] = ACTIONS(2772), + [sym_number_literal] = ACTIONS(2774), + [anon_sym_L_SQUOTE] = ACTIONS(2774), + [anon_sym_u_SQUOTE] = ACTIONS(2774), + [anon_sym_U_SQUOTE] = ACTIONS(2774), + [anon_sym_u8_SQUOTE] = ACTIONS(2774), + [anon_sym_SQUOTE] = ACTIONS(2774), + [anon_sym_AT] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_L_DQUOTE] = ACTIONS(2774), + [anon_sym_u_DQUOTE] = ACTIONS(2774), + [anon_sym_U_DQUOTE] = ACTIONS(2774), + [anon_sym_u8_DQUOTE] = ACTIONS(2774), + [sym_true] = ACTIONS(2772), + [sym_false] = ACTIONS(2772), + [anon_sym_NULL] = ACTIONS(2772), + [anon_sym_nullptr] = ACTIONS(2772), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2772), + [anon_sym___typeof] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2772), + [anon_sym_ATimport] = ACTIONS(2774), + [aux_sym_preproc_undef_token1] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(2772), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2772), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2772), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2772), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2772), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE] = ACTIONS(2772), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_API_AVAILABLE] = ACTIONS(2772), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_API_DEPRECATED] = ACTIONS(2772), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2772), + [anon_sym___deprecated_msg] = ACTIONS(2772), + [anon_sym___deprecated_enum_msg] = ACTIONS(2772), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2772), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2772), + [anon_sym_ATprotocol] = ACTIONS(2774), + [anon_sym_ATinterface] = ACTIONS(2774), + [anon_sym_ATimplementation] = ACTIONS(2774), + [anon_sym_ATcompatibility_alias] = ACTIONS(2774), + [anon_sym_ATselector] = ACTIONS(2774), + [anon_sym_ATavailable] = ACTIONS(2774), + [anon_sym___builtin_available] = ACTIONS(2772), + [anon_sym_va_arg] = ACTIONS(2772), + [anon_sym_ATencode] = ACTIONS(2774), + [anon_sym_BOOL] = ACTIONS(2772), + [anon_sym_IMP] = ACTIONS(2772), + [anon_sym_SEL] = ACTIONS(2772), + [anon_sym_Class] = ACTIONS(2772), + [anon_sym_id] = ACTIONS(2772), + }, + [1037] = { + [ts_builtin_sym_end] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2772), + [aux_sym_preproc_include_token1] = ACTIONS(2772), + [aux_sym_preproc_include_token2] = ACTIONS(2772), + [aux_sym_preproc_def_token1] = ACTIONS(2772), + [aux_sym_preproc_if_token1] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2772), + [sym_preproc_directive] = ACTIONS(2772), + [anon_sym_LPAREN2] = ACTIONS(2774), + [anon_sym_BANG] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_CARET] = ACTIONS(2774), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym___extension__] = ACTIONS(2772), + [anon_sym_typedef] = ACTIONS(2772), + [anon_sym_extern] = ACTIONS(2772), + [anon_sym___attribute__] = ACTIONS(2772), + [anon_sym___attribute] = ACTIONS(2772), + [anon_sym_noreturn] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym___declspec] = ACTIONS(2772), + [anon_sym___cdecl] = ACTIONS(2772), + [anon_sym___clrcall] = ACTIONS(2772), + [anon_sym___stdcall] = ACTIONS(2772), + [anon_sym___fastcall] = ACTIONS(2772), + [anon_sym___thiscall] = ACTIONS(2772), + [anon_sym___vectorcall] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_signed] = ACTIONS(2772), + [anon_sym_unsigned] = ACTIONS(2772), + [anon_sym_long] = ACTIONS(2772), + [anon_sym_short] = ACTIONS(2772), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_ATautoreleasepool] = ACTIONS(2774), + [anon_sym_auto] = ACTIONS(2772), + [anon_sym_register] = ACTIONS(2772), + [anon_sym_inline] = ACTIONS(2772), + [anon_sym___inline] = ACTIONS(2772), + [anon_sym___inline__] = ACTIONS(2772), + [anon_sym___forceinline] = ACTIONS(2772), + [anon_sym_thread_local] = ACTIONS(2772), + [anon_sym___thread] = ACTIONS(2772), + [anon_sym_CG_EXTERN] = ACTIONS(2772), + [anon_sym_CG_INLINE] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2772), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2772), + [anon_sym_IBOutlet] = ACTIONS(2772), + [anon_sym_IBInspectable] = ACTIONS(2772), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2772), + [anon_sym_NS_INLINE] = ACTIONS(2772), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2772), + [anon_sym_OBJC_EXPORT] = ACTIONS(2772), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2772), + [anon_sym_const] = ACTIONS(2772), + [anon_sym_constexpr] = ACTIONS(2772), + [anon_sym_volatile] = ACTIONS(2772), + [anon_sym_restrict] = ACTIONS(2772), + [anon_sym___restrict__] = ACTIONS(2772), + [anon_sym__Atomic] = ACTIONS(2772), + [anon_sym__Noreturn] = ACTIONS(2772), + [anon_sym__Nonnull] = ACTIONS(2772), + [anon_sym_nullable] = ACTIONS(2772), + [anon_sym__Complex] = ACTIONS(2772), + [anon_sym__Nullable] = ACTIONS(2772), + [anon_sym__Nullable_result] = ACTIONS(2772), + [anon_sym__Null_unspecified] = ACTIONS(2772), + [anon_sym___autoreleasing] = ACTIONS(2772), + [anon_sym___block] = ACTIONS(2772), + [anon_sym___bridge] = ACTIONS(2772), + [anon_sym___bridge_retained] = ACTIONS(2772), + [anon_sym___bridge_transfer] = ACTIONS(2772), + [anon_sym___complex] = ACTIONS(2772), + [anon_sym___const] = ACTIONS(2772), + [anon_sym___imag] = ACTIONS(2772), + [anon_sym___kindof] = ACTIONS(2772), + [anon_sym___nonnull] = ACTIONS(2772), + [anon_sym___nullable] = ACTIONS(2772), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2772), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2772), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2772), + [anon_sym___real] = ACTIONS(2772), + [anon_sym___strong] = ACTIONS(2772), + [anon_sym___unsafe_unretained] = ACTIONS(2772), + [anon_sym___unused] = ACTIONS(2772), + [anon_sym___weak] = ACTIONS(2772), + [anon_sym_alignas] = ACTIONS(2772), + [anon_sym__Alignas] = ACTIONS(2772), + [sym_primitive_type] = ACTIONS(2772), + [anon_sym_enum] = ACTIONS(2772), + [anon_sym_struct] = ACTIONS(2772), + [anon_sym_union] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_switch] = ACTIONS(2772), + [anon_sym_case] = ACTIONS(2772), + [anon_sym_default] = ACTIONS(2772), + [anon_sym_while] = ACTIONS(2772), + [anon_sym_do] = ACTIONS(2772), + [anon_sym_for] = ACTIONS(2772), + [anon_sym_in] = ACTIONS(2772), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_break] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2772), + [anon_sym_goto] = ACTIONS(2772), + [anon_sym_DASH_DASH] = ACTIONS(2774), + [anon_sym_PLUS_PLUS] = ACTIONS(2774), + [anon_sym_sizeof] = ACTIONS(2772), + [anon_sym___alignof__] = ACTIONS(2772), + [anon_sym___alignof] = ACTIONS(2772), + [anon_sym__alignof] = ACTIONS(2772), + [anon_sym_alignof] = ACTIONS(2772), + [anon_sym__Alignof] = ACTIONS(2772), + [anon_sym_offsetof] = ACTIONS(2772), + [anon_sym__Generic] = ACTIONS(2772), + [anon_sym_asm] = ACTIONS(2772), + [anon_sym___asm__] = ACTIONS(2772), + [anon_sym___asm] = ACTIONS(2772), + [sym_number_literal] = ACTIONS(2774), + [anon_sym_L_SQUOTE] = ACTIONS(2774), + [anon_sym_u_SQUOTE] = ACTIONS(2774), + [anon_sym_U_SQUOTE] = ACTIONS(2774), + [anon_sym_u8_SQUOTE] = ACTIONS(2774), + [anon_sym_SQUOTE] = ACTIONS(2774), + [anon_sym_AT] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_L_DQUOTE] = ACTIONS(2774), + [anon_sym_u_DQUOTE] = ACTIONS(2774), + [anon_sym_U_DQUOTE] = ACTIONS(2774), + [anon_sym_u8_DQUOTE] = ACTIONS(2774), + [sym_true] = ACTIONS(2772), + [sym_false] = ACTIONS(2772), + [anon_sym_NULL] = ACTIONS(2772), + [anon_sym_nullptr] = ACTIONS(2772), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2772), + [anon_sym___typeof] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2772), + [anon_sym_ATimport] = ACTIONS(2774), + [aux_sym_preproc_undef_token1] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(2772), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2772), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2772), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2772), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2772), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE] = ACTIONS(2772), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_API_AVAILABLE] = ACTIONS(2772), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_API_DEPRECATED] = ACTIONS(2772), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2772), + [anon_sym___deprecated_msg] = ACTIONS(2772), + [anon_sym___deprecated_enum_msg] = ACTIONS(2772), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2772), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2772), + [anon_sym_ATprotocol] = ACTIONS(2774), + [anon_sym_ATinterface] = ACTIONS(2774), + [anon_sym_ATimplementation] = ACTIONS(2774), + [anon_sym_ATcompatibility_alias] = ACTIONS(2774), + [anon_sym_ATselector] = ACTIONS(2774), + [anon_sym_ATavailable] = ACTIONS(2774), + [anon_sym___builtin_available] = ACTIONS(2772), + [anon_sym_va_arg] = ACTIONS(2772), + [anon_sym_ATencode] = ACTIONS(2774), + [anon_sym_BOOL] = ACTIONS(2772), + [anon_sym_IMP] = ACTIONS(2772), + [anon_sym_SEL] = ACTIONS(2772), + [anon_sym_Class] = ACTIONS(2772), + [anon_sym_id] = ACTIONS(2772), + }, + [1038] = { + [ts_builtin_sym_end] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2772), + [aux_sym_preproc_include_token1] = ACTIONS(2772), + [aux_sym_preproc_include_token2] = ACTIONS(2772), + [aux_sym_preproc_def_token1] = ACTIONS(2772), + [aux_sym_preproc_if_token1] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2772), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2772), + [sym_preproc_directive] = ACTIONS(2772), + [anon_sym_LPAREN2] = ACTIONS(2774), + [anon_sym_BANG] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_CARET] = ACTIONS(2774), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym___extension__] = ACTIONS(2772), + [anon_sym_typedef] = ACTIONS(2772), + [anon_sym_extern] = ACTIONS(2772), + [anon_sym___attribute__] = ACTIONS(2772), + [anon_sym___attribute] = ACTIONS(2772), + [anon_sym_noreturn] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym___declspec] = ACTIONS(2772), + [anon_sym___cdecl] = ACTIONS(2772), + [anon_sym___clrcall] = ACTIONS(2772), + [anon_sym___stdcall] = ACTIONS(2772), + [anon_sym___fastcall] = ACTIONS(2772), + [anon_sym___thiscall] = ACTIONS(2772), + [anon_sym___vectorcall] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_signed] = ACTIONS(2772), + [anon_sym_unsigned] = ACTIONS(2772), + [anon_sym_long] = ACTIONS(2772), + [anon_sym_short] = ACTIONS(2772), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_ATautoreleasepool] = ACTIONS(2774), + [anon_sym_auto] = ACTIONS(2772), + [anon_sym_register] = ACTIONS(2772), + [anon_sym_inline] = ACTIONS(2772), + [anon_sym___inline] = ACTIONS(2772), + [anon_sym___inline__] = ACTIONS(2772), + [anon_sym___forceinline] = ACTIONS(2772), + [anon_sym_thread_local] = ACTIONS(2772), + [anon_sym___thread] = ACTIONS(2772), + [anon_sym_CG_EXTERN] = ACTIONS(2772), + [anon_sym_CG_INLINE] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2772), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2772), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2772), + [anon_sym_IBOutlet] = ACTIONS(2772), + [anon_sym_IBInspectable] = ACTIONS(2772), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2772), + [anon_sym_NS_INLINE] = ACTIONS(2772), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2772), + [anon_sym_OBJC_EXPORT] = ACTIONS(2772), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2772), + [anon_sym_const] = ACTIONS(2772), + [anon_sym_constexpr] = ACTIONS(2772), + [anon_sym_volatile] = ACTIONS(2772), + [anon_sym_restrict] = ACTIONS(2772), + [anon_sym___restrict__] = ACTIONS(2772), + [anon_sym__Atomic] = ACTIONS(2772), + [anon_sym__Noreturn] = ACTIONS(2772), + [anon_sym__Nonnull] = ACTIONS(2772), + [anon_sym_nullable] = ACTIONS(2772), + [anon_sym__Complex] = ACTIONS(2772), + [anon_sym__Nullable] = ACTIONS(2772), + [anon_sym__Nullable_result] = ACTIONS(2772), + [anon_sym__Null_unspecified] = ACTIONS(2772), + [anon_sym___autoreleasing] = ACTIONS(2772), + [anon_sym___block] = ACTIONS(2772), + [anon_sym___bridge] = ACTIONS(2772), + [anon_sym___bridge_retained] = ACTIONS(2772), + [anon_sym___bridge_transfer] = ACTIONS(2772), + [anon_sym___complex] = ACTIONS(2772), + [anon_sym___const] = ACTIONS(2772), + [anon_sym___imag] = ACTIONS(2772), + [anon_sym___kindof] = ACTIONS(2772), + [anon_sym___nonnull] = ACTIONS(2772), + [anon_sym___nullable] = ACTIONS(2772), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2772), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2772), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2772), + [anon_sym___real] = ACTIONS(2772), + [anon_sym___strong] = ACTIONS(2772), + [anon_sym___unsafe_unretained] = ACTIONS(2772), + [anon_sym___unused] = ACTIONS(2772), + [anon_sym___weak] = ACTIONS(2772), + [anon_sym_alignas] = ACTIONS(2772), + [anon_sym__Alignas] = ACTIONS(2772), + [sym_primitive_type] = ACTIONS(2772), + [anon_sym_enum] = ACTIONS(2772), + [anon_sym_struct] = ACTIONS(2772), + [anon_sym_union] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_switch] = ACTIONS(2772), + [anon_sym_case] = ACTIONS(2772), + [anon_sym_default] = ACTIONS(2772), + [anon_sym_while] = ACTIONS(2772), + [anon_sym_do] = ACTIONS(2772), + [anon_sym_for] = ACTIONS(2772), + [anon_sym_in] = ACTIONS(2772), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_break] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2772), + [anon_sym_goto] = ACTIONS(2772), + [anon_sym_DASH_DASH] = ACTIONS(2774), + [anon_sym_PLUS_PLUS] = ACTIONS(2774), + [anon_sym_sizeof] = ACTIONS(2772), + [anon_sym___alignof__] = ACTIONS(2772), + [anon_sym___alignof] = ACTIONS(2772), + [anon_sym__alignof] = ACTIONS(2772), + [anon_sym_alignof] = ACTIONS(2772), + [anon_sym__Alignof] = ACTIONS(2772), + [anon_sym_offsetof] = ACTIONS(2772), + [anon_sym__Generic] = ACTIONS(2772), + [anon_sym_asm] = ACTIONS(2772), + [anon_sym___asm__] = ACTIONS(2772), + [anon_sym___asm] = ACTIONS(2772), + [sym_number_literal] = ACTIONS(2774), + [anon_sym_L_SQUOTE] = ACTIONS(2774), + [anon_sym_u_SQUOTE] = ACTIONS(2774), + [anon_sym_U_SQUOTE] = ACTIONS(2774), + [anon_sym_u8_SQUOTE] = ACTIONS(2774), + [anon_sym_SQUOTE] = ACTIONS(2774), + [anon_sym_AT] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_L_DQUOTE] = ACTIONS(2774), + [anon_sym_u_DQUOTE] = ACTIONS(2774), + [anon_sym_U_DQUOTE] = ACTIONS(2774), + [anon_sym_u8_DQUOTE] = ACTIONS(2774), + [sym_true] = ACTIONS(2772), + [sym_false] = ACTIONS(2772), + [anon_sym_NULL] = ACTIONS(2772), + [anon_sym_nullptr] = ACTIONS(2772), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2772), + [anon_sym___typeof] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2772), + [anon_sym_ATimport] = ACTIONS(2774), + [aux_sym_preproc_undef_token1] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(2772), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2772), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2772), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2772), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2772), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2772), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2772), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE] = ACTIONS(2772), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2772), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_API_AVAILABLE] = ACTIONS(2772), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_API_DEPRECATED] = ACTIONS(2772), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2772), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2772), + [anon_sym___deprecated_msg] = ACTIONS(2772), + [anon_sym___deprecated_enum_msg] = ACTIONS(2772), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2772), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2772), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2772), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2772), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2772), + [anon_sym_ATprotocol] = ACTIONS(2774), + [anon_sym_ATinterface] = ACTIONS(2774), + [anon_sym_ATimplementation] = ACTIONS(2774), + [anon_sym_ATcompatibility_alias] = ACTIONS(2774), + [anon_sym_ATselector] = ACTIONS(2774), + [anon_sym_ATavailable] = ACTIONS(2774), + [anon_sym___builtin_available] = ACTIONS(2772), + [anon_sym_va_arg] = ACTIONS(2772), + [anon_sym_ATencode] = ACTIONS(2774), + [anon_sym_BOOL] = ACTIONS(2772), + [anon_sym_IMP] = ACTIONS(2772), + [anon_sym_SEL] = ACTIONS(2772), + [anon_sym_Class] = ACTIONS(2772), + [anon_sym_id] = ACTIONS(2772), + }, + [1039] = { + [ts_builtin_sym_end] = ACTIONS(2778), + [sym_identifier] = ACTIONS(2776), + [aux_sym_preproc_include_token1] = ACTIONS(2776), + [aux_sym_preproc_include_token2] = ACTIONS(2776), + [aux_sym_preproc_def_token1] = ACTIONS(2776), + [aux_sym_preproc_if_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2776), + [sym_preproc_directive] = ACTIONS(2776), + [anon_sym_LPAREN2] = ACTIONS(2778), + [anon_sym_BANG] = ACTIONS(2778), + [anon_sym_TILDE] = ACTIONS(2778), + [anon_sym_DASH] = ACTIONS(2776), + [anon_sym_PLUS] = ACTIONS(2776), + [anon_sym_STAR] = ACTIONS(2778), + [anon_sym_CARET] = ACTIONS(2778), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym___extension__] = ACTIONS(2776), + [anon_sym_typedef] = ACTIONS(2776), + [anon_sym_extern] = ACTIONS(2776), + [anon_sym___attribute__] = ACTIONS(2776), + [anon_sym___attribute] = ACTIONS(2776), + [anon_sym_noreturn] = ACTIONS(2776), + [anon_sym_LBRACK] = ACTIONS(2778), + [anon_sym___declspec] = ACTIONS(2776), + [anon_sym___cdecl] = ACTIONS(2776), + [anon_sym___clrcall] = ACTIONS(2776), + [anon_sym___stdcall] = ACTIONS(2776), + [anon_sym___fastcall] = ACTIONS(2776), + [anon_sym___thiscall] = ACTIONS(2776), + [anon_sym___vectorcall] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_signed] = ACTIONS(2776), + [anon_sym_unsigned] = ACTIONS(2776), + [anon_sym_long] = ACTIONS(2776), + [anon_sym_short] = ACTIONS(2776), + [anon_sym_static] = ACTIONS(2776), + [anon_sym_ATautoreleasepool] = ACTIONS(2778), + [anon_sym_auto] = ACTIONS(2776), + [anon_sym_register] = ACTIONS(2776), + [anon_sym_inline] = ACTIONS(2776), + [anon_sym___inline] = ACTIONS(2776), + [anon_sym___inline__] = ACTIONS(2776), + [anon_sym___forceinline] = ACTIONS(2776), + [anon_sym_thread_local] = ACTIONS(2776), + [anon_sym___thread] = ACTIONS(2776), + [anon_sym_CG_EXTERN] = ACTIONS(2776), + [anon_sym_CG_INLINE] = ACTIONS(2776), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2776), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2776), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2776), + [anon_sym_IBOutlet] = ACTIONS(2776), + [anon_sym_IBInspectable] = ACTIONS(2776), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2776), + [anon_sym_NS_INLINE] = ACTIONS(2776), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2776), + [anon_sym_OBJC_EXPORT] = ACTIONS(2776), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2776), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2776), + [anon_sym_const] = ACTIONS(2776), + [anon_sym_constexpr] = ACTIONS(2776), + [anon_sym_volatile] = ACTIONS(2776), + [anon_sym_restrict] = ACTIONS(2776), + [anon_sym___restrict__] = ACTIONS(2776), + [anon_sym__Atomic] = ACTIONS(2776), + [anon_sym__Noreturn] = ACTIONS(2776), + [anon_sym__Nonnull] = ACTIONS(2776), + [anon_sym_nullable] = ACTIONS(2776), + [anon_sym__Complex] = ACTIONS(2776), + [anon_sym__Nullable] = ACTIONS(2776), + [anon_sym__Nullable_result] = ACTIONS(2776), + [anon_sym__Null_unspecified] = ACTIONS(2776), + [anon_sym___autoreleasing] = ACTIONS(2776), + [anon_sym___block] = ACTIONS(2776), + [anon_sym___bridge] = ACTIONS(2776), + [anon_sym___bridge_retained] = ACTIONS(2776), + [anon_sym___bridge_transfer] = ACTIONS(2776), + [anon_sym___complex] = ACTIONS(2776), + [anon_sym___const] = ACTIONS(2776), + [anon_sym___imag] = ACTIONS(2776), + [anon_sym___kindof] = ACTIONS(2776), + [anon_sym___nonnull] = ACTIONS(2776), + [anon_sym___nullable] = ACTIONS(2776), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2776), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2776), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2776), + [anon_sym___real] = ACTIONS(2776), + [anon_sym___strong] = ACTIONS(2776), + [anon_sym___unsafe_unretained] = ACTIONS(2776), + [anon_sym___unused] = ACTIONS(2776), + [anon_sym___weak] = ACTIONS(2776), + [anon_sym_alignas] = ACTIONS(2776), + [anon_sym__Alignas] = ACTIONS(2776), + [sym_primitive_type] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2776), + [anon_sym_struct] = ACTIONS(2776), + [anon_sym_union] = ACTIONS(2776), + [anon_sym_if] = ACTIONS(2776), + [anon_sym_switch] = ACTIONS(2776), + [anon_sym_case] = ACTIONS(2776), + [anon_sym_default] = ACTIONS(2776), + [anon_sym_while] = ACTIONS(2776), + [anon_sym_do] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2776), + [anon_sym_in] = ACTIONS(2776), + [anon_sym_return] = ACTIONS(2776), + [anon_sym_break] = ACTIONS(2776), + [anon_sym_continue] = ACTIONS(2776), + [anon_sym_goto] = ACTIONS(2776), + [anon_sym_DASH_DASH] = ACTIONS(2778), + [anon_sym_PLUS_PLUS] = ACTIONS(2778), + [anon_sym_sizeof] = ACTIONS(2776), + [anon_sym___alignof__] = ACTIONS(2776), + [anon_sym___alignof] = ACTIONS(2776), + [anon_sym__alignof] = ACTIONS(2776), + [anon_sym_alignof] = ACTIONS(2776), + [anon_sym__Alignof] = ACTIONS(2776), + [anon_sym_offsetof] = ACTIONS(2776), + [anon_sym__Generic] = ACTIONS(2776), + [anon_sym_asm] = ACTIONS(2776), + [anon_sym___asm__] = ACTIONS(2776), + [anon_sym___asm] = ACTIONS(2776), + [sym_number_literal] = ACTIONS(2778), + [anon_sym_L_SQUOTE] = ACTIONS(2778), + [anon_sym_u_SQUOTE] = ACTIONS(2778), + [anon_sym_U_SQUOTE] = ACTIONS(2778), + [anon_sym_u8_SQUOTE] = ACTIONS(2778), + [anon_sym_SQUOTE] = ACTIONS(2778), + [anon_sym_AT] = ACTIONS(2776), + [anon_sym_DQUOTE] = ACTIONS(2778), + [anon_sym_L_DQUOTE] = ACTIONS(2778), + [anon_sym_u_DQUOTE] = ACTIONS(2778), + [anon_sym_U_DQUOTE] = ACTIONS(2778), + [anon_sym_u8_DQUOTE] = ACTIONS(2778), + [sym_true] = ACTIONS(2776), + [sym_false] = ACTIONS(2776), + [anon_sym_NULL] = ACTIONS(2776), + [anon_sym_nullptr] = ACTIONS(2776), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2776), + [anon_sym___typeof] = ACTIONS(2776), + [anon_sym_typeof] = ACTIONS(2776), + [anon_sym_ATimport] = ACTIONS(2778), + [aux_sym_preproc_undef_token1] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(2776), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2776), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2776), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2776), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2776), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2776), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2776), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2776), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2776), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2776), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2776), + [anon_sym_NS_AVAILABLE] = ACTIONS(2776), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2776), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2776), + [anon_sym_API_AVAILABLE] = ACTIONS(2776), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2776), + [anon_sym_API_DEPRECATED] = ACTIONS(2776), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2776), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2776), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2776), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2776), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2776), + [anon_sym___deprecated_msg] = ACTIONS(2776), + [anon_sym___deprecated_enum_msg] = ACTIONS(2776), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2776), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2776), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2776), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2776), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2776), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2776), + [anon_sym_ATprotocol] = ACTIONS(2778), + [anon_sym_ATinterface] = ACTIONS(2778), + [anon_sym_ATimplementation] = ACTIONS(2778), + [anon_sym_ATcompatibility_alias] = ACTIONS(2778), + [anon_sym_ATselector] = ACTIONS(2778), + [anon_sym_ATavailable] = ACTIONS(2778), + [anon_sym___builtin_available] = ACTIONS(2776), + [anon_sym_va_arg] = ACTIONS(2776), + [anon_sym_ATencode] = ACTIONS(2778), + [anon_sym_BOOL] = ACTIONS(2776), + [anon_sym_IMP] = ACTIONS(2776), + [anon_sym_SEL] = ACTIONS(2776), + [anon_sym_Class] = ACTIONS(2776), + [anon_sym_id] = ACTIONS(2776), + }, + [1040] = { + [ts_builtin_sym_end] = ACTIONS(2782), + [sym_identifier] = ACTIONS(2780), + [aux_sym_preproc_include_token1] = ACTIONS(2780), + [aux_sym_preproc_include_token2] = ACTIONS(2780), + [aux_sym_preproc_def_token1] = ACTIONS(2780), + [aux_sym_preproc_if_token1] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2780), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2782), + [anon_sym_BANG] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(2780), + [anon_sym_STAR] = ACTIONS(2782), + [anon_sym_CARET] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym___extension__] = ACTIONS(2780), + [anon_sym_typedef] = ACTIONS(2780), + [anon_sym_extern] = ACTIONS(2780), + [anon_sym___attribute__] = ACTIONS(2780), + [anon_sym___attribute] = ACTIONS(2780), + [anon_sym_noreturn] = ACTIONS(2780), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym___declspec] = ACTIONS(2780), + [anon_sym___cdecl] = ACTIONS(2780), + [anon_sym___clrcall] = ACTIONS(2780), + [anon_sym___stdcall] = ACTIONS(2780), + [anon_sym___fastcall] = ACTIONS(2780), + [anon_sym___thiscall] = ACTIONS(2780), + [anon_sym___vectorcall] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_signed] = ACTIONS(2780), + [anon_sym_unsigned] = ACTIONS(2780), + [anon_sym_long] = ACTIONS(2780), + [anon_sym_short] = ACTIONS(2780), + [anon_sym_static] = ACTIONS(2780), + [anon_sym_ATautoreleasepool] = ACTIONS(2782), + [anon_sym_auto] = ACTIONS(2780), + [anon_sym_register] = ACTIONS(2780), + [anon_sym_inline] = ACTIONS(2780), + [anon_sym___inline] = ACTIONS(2780), + [anon_sym___inline__] = ACTIONS(2780), + [anon_sym___forceinline] = ACTIONS(2780), + [anon_sym_thread_local] = ACTIONS(2780), + [anon_sym___thread] = ACTIONS(2780), + [anon_sym_CG_EXTERN] = ACTIONS(2780), + [anon_sym_CG_INLINE] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2780), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2780), + [anon_sym_IBOutlet] = ACTIONS(2780), + [anon_sym_IBInspectable] = ACTIONS(2780), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2780), + [anon_sym_NS_INLINE] = ACTIONS(2780), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2780), + [anon_sym_OBJC_EXPORT] = ACTIONS(2780), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2780), + [anon_sym_const] = ACTIONS(2780), + [anon_sym_constexpr] = ACTIONS(2780), + [anon_sym_volatile] = ACTIONS(2780), + [anon_sym_restrict] = ACTIONS(2780), + [anon_sym___restrict__] = ACTIONS(2780), + [anon_sym__Atomic] = ACTIONS(2780), + [anon_sym__Noreturn] = ACTIONS(2780), + [anon_sym__Nonnull] = ACTIONS(2780), + [anon_sym_nullable] = ACTIONS(2780), + [anon_sym__Complex] = ACTIONS(2780), + [anon_sym__Nullable] = ACTIONS(2780), + [anon_sym__Nullable_result] = ACTIONS(2780), + [anon_sym__Null_unspecified] = ACTIONS(2780), + [anon_sym___autoreleasing] = ACTIONS(2780), + [anon_sym___block] = ACTIONS(2780), + [anon_sym___bridge] = ACTIONS(2780), + [anon_sym___bridge_retained] = ACTIONS(2780), + [anon_sym___bridge_transfer] = ACTIONS(2780), + [anon_sym___complex] = ACTIONS(2780), + [anon_sym___const] = ACTIONS(2780), + [anon_sym___imag] = ACTIONS(2780), + [anon_sym___kindof] = ACTIONS(2780), + [anon_sym___nonnull] = ACTIONS(2780), + [anon_sym___nullable] = ACTIONS(2780), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2780), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2780), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2780), + [anon_sym___real] = ACTIONS(2780), + [anon_sym___strong] = ACTIONS(2780), + [anon_sym___unsafe_unretained] = ACTIONS(2780), + [anon_sym___unused] = ACTIONS(2780), + [anon_sym___weak] = ACTIONS(2780), + [anon_sym_alignas] = ACTIONS(2780), + [anon_sym__Alignas] = ACTIONS(2780), + [sym_primitive_type] = ACTIONS(2780), + [anon_sym_enum] = ACTIONS(2780), + [anon_sym_struct] = ACTIONS(2780), + [anon_sym_union] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_switch] = ACTIONS(2780), + [anon_sym_case] = ACTIONS(2780), + [anon_sym_default] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_in] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_break] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2780), + [anon_sym_goto] = ACTIONS(2780), + [anon_sym_DASH_DASH] = ACTIONS(2782), + [anon_sym_PLUS_PLUS] = ACTIONS(2782), + [anon_sym_sizeof] = ACTIONS(2780), + [anon_sym___alignof__] = ACTIONS(2780), + [anon_sym___alignof] = ACTIONS(2780), + [anon_sym__alignof] = ACTIONS(2780), + [anon_sym_alignof] = ACTIONS(2780), + [anon_sym__Alignof] = ACTIONS(2780), + [anon_sym_offsetof] = ACTIONS(2780), + [anon_sym__Generic] = ACTIONS(2780), + [anon_sym_asm] = ACTIONS(2780), + [anon_sym___asm__] = ACTIONS(2780), + [anon_sym___asm] = ACTIONS(2780), + [sym_number_literal] = ACTIONS(2782), + [anon_sym_L_SQUOTE] = ACTIONS(2782), + [anon_sym_u_SQUOTE] = ACTIONS(2782), + [anon_sym_U_SQUOTE] = ACTIONS(2782), + [anon_sym_u8_SQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2782), + [anon_sym_AT] = ACTIONS(2780), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_L_DQUOTE] = ACTIONS(2782), + [anon_sym_u_DQUOTE] = ACTIONS(2782), + [anon_sym_U_DQUOTE] = ACTIONS(2782), + [anon_sym_u8_DQUOTE] = ACTIONS(2782), + [sym_true] = ACTIONS(2780), + [sym_false] = ACTIONS(2780), + [anon_sym_NULL] = ACTIONS(2780), + [anon_sym_nullptr] = ACTIONS(2780), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2780), + [anon_sym___typeof] = ACTIONS(2780), + [anon_sym_typeof] = ACTIONS(2780), + [anon_sym_ATimport] = ACTIONS(2782), + [aux_sym_preproc_undef_token1] = ACTIONS(2780), + [anon_sym_POUND] = ACTIONS(2780), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2780), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2780), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2780), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2780), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE] = ACTIONS(2780), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_API_AVAILABLE] = ACTIONS(2780), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_API_DEPRECATED] = ACTIONS(2780), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2780), + [anon_sym___deprecated_msg] = ACTIONS(2780), + [anon_sym___deprecated_enum_msg] = ACTIONS(2780), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2780), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2780), + [anon_sym_ATprotocol] = ACTIONS(2782), + [anon_sym_ATinterface] = ACTIONS(2782), + [anon_sym_ATimplementation] = ACTIONS(2782), + [anon_sym_ATcompatibility_alias] = ACTIONS(2782), + [anon_sym_ATselector] = ACTIONS(2782), + [anon_sym_ATavailable] = ACTIONS(2782), + [anon_sym___builtin_available] = ACTIONS(2780), + [anon_sym_va_arg] = ACTIONS(2780), + [anon_sym_ATencode] = ACTIONS(2782), + [anon_sym_BOOL] = ACTIONS(2780), + [anon_sym_IMP] = ACTIONS(2780), + [anon_sym_SEL] = ACTIONS(2780), + [anon_sym_Class] = ACTIONS(2780), + [anon_sym_id] = ACTIONS(2780), + }, + [1041] = { + [ts_builtin_sym_end] = ACTIONS(2782), + [sym_identifier] = ACTIONS(2780), + [aux_sym_preproc_include_token1] = ACTIONS(2780), + [aux_sym_preproc_include_token2] = ACTIONS(2780), + [aux_sym_preproc_def_token1] = ACTIONS(2780), + [aux_sym_preproc_if_token1] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2780), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2782), + [anon_sym_BANG] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(2780), + [anon_sym_STAR] = ACTIONS(2782), + [anon_sym_CARET] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym___extension__] = ACTIONS(2780), + [anon_sym_typedef] = ACTIONS(2780), + [anon_sym_extern] = ACTIONS(2780), + [anon_sym___attribute__] = ACTIONS(2780), + [anon_sym___attribute] = ACTIONS(2780), + [anon_sym_noreturn] = ACTIONS(2780), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym___declspec] = ACTIONS(2780), + [anon_sym___cdecl] = ACTIONS(2780), + [anon_sym___clrcall] = ACTIONS(2780), + [anon_sym___stdcall] = ACTIONS(2780), + [anon_sym___fastcall] = ACTIONS(2780), + [anon_sym___thiscall] = ACTIONS(2780), + [anon_sym___vectorcall] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_signed] = ACTIONS(2780), + [anon_sym_unsigned] = ACTIONS(2780), + [anon_sym_long] = ACTIONS(2780), + [anon_sym_short] = ACTIONS(2780), + [anon_sym_static] = ACTIONS(2780), + [anon_sym_ATautoreleasepool] = ACTIONS(2782), + [anon_sym_auto] = ACTIONS(2780), + [anon_sym_register] = ACTIONS(2780), + [anon_sym_inline] = ACTIONS(2780), + [anon_sym___inline] = ACTIONS(2780), + [anon_sym___inline__] = ACTIONS(2780), + [anon_sym___forceinline] = ACTIONS(2780), + [anon_sym_thread_local] = ACTIONS(2780), + [anon_sym___thread] = ACTIONS(2780), + [anon_sym_CG_EXTERN] = ACTIONS(2780), + [anon_sym_CG_INLINE] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2780), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2780), + [anon_sym_IBOutlet] = ACTIONS(2780), + [anon_sym_IBInspectable] = ACTIONS(2780), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2780), + [anon_sym_NS_INLINE] = ACTIONS(2780), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2780), + [anon_sym_OBJC_EXPORT] = ACTIONS(2780), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2780), + [anon_sym_const] = ACTIONS(2780), + [anon_sym_constexpr] = ACTIONS(2780), + [anon_sym_volatile] = ACTIONS(2780), + [anon_sym_restrict] = ACTIONS(2780), + [anon_sym___restrict__] = ACTIONS(2780), + [anon_sym__Atomic] = ACTIONS(2780), + [anon_sym__Noreturn] = ACTIONS(2780), + [anon_sym__Nonnull] = ACTIONS(2780), + [anon_sym_nullable] = ACTIONS(2780), + [anon_sym__Complex] = ACTIONS(2780), + [anon_sym__Nullable] = ACTIONS(2780), + [anon_sym__Nullable_result] = ACTIONS(2780), + [anon_sym__Null_unspecified] = ACTIONS(2780), + [anon_sym___autoreleasing] = ACTIONS(2780), + [anon_sym___block] = ACTIONS(2780), + [anon_sym___bridge] = ACTIONS(2780), + [anon_sym___bridge_retained] = ACTIONS(2780), + [anon_sym___bridge_transfer] = ACTIONS(2780), + [anon_sym___complex] = ACTIONS(2780), + [anon_sym___const] = ACTIONS(2780), + [anon_sym___imag] = ACTIONS(2780), + [anon_sym___kindof] = ACTIONS(2780), + [anon_sym___nonnull] = ACTIONS(2780), + [anon_sym___nullable] = ACTIONS(2780), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2780), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2780), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2780), + [anon_sym___real] = ACTIONS(2780), + [anon_sym___strong] = ACTIONS(2780), + [anon_sym___unsafe_unretained] = ACTIONS(2780), + [anon_sym___unused] = ACTIONS(2780), + [anon_sym___weak] = ACTIONS(2780), + [anon_sym_alignas] = ACTIONS(2780), + [anon_sym__Alignas] = ACTIONS(2780), + [sym_primitive_type] = ACTIONS(2780), + [anon_sym_enum] = ACTIONS(2780), + [anon_sym_struct] = ACTIONS(2780), + [anon_sym_union] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_switch] = ACTIONS(2780), + [anon_sym_case] = ACTIONS(2780), + [anon_sym_default] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_in] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_break] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2780), + [anon_sym_goto] = ACTIONS(2780), + [anon_sym_DASH_DASH] = ACTIONS(2782), + [anon_sym_PLUS_PLUS] = ACTIONS(2782), + [anon_sym_sizeof] = ACTIONS(2780), + [anon_sym___alignof__] = ACTIONS(2780), + [anon_sym___alignof] = ACTIONS(2780), + [anon_sym__alignof] = ACTIONS(2780), + [anon_sym_alignof] = ACTIONS(2780), + [anon_sym__Alignof] = ACTIONS(2780), + [anon_sym_offsetof] = ACTIONS(2780), + [anon_sym__Generic] = ACTIONS(2780), + [anon_sym_asm] = ACTIONS(2780), + [anon_sym___asm__] = ACTIONS(2780), + [anon_sym___asm] = ACTIONS(2780), + [sym_number_literal] = ACTIONS(2782), + [anon_sym_L_SQUOTE] = ACTIONS(2782), + [anon_sym_u_SQUOTE] = ACTIONS(2782), + [anon_sym_U_SQUOTE] = ACTIONS(2782), + [anon_sym_u8_SQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2782), + [anon_sym_AT] = ACTIONS(2780), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_L_DQUOTE] = ACTIONS(2782), + [anon_sym_u_DQUOTE] = ACTIONS(2782), + [anon_sym_U_DQUOTE] = ACTIONS(2782), + [anon_sym_u8_DQUOTE] = ACTIONS(2782), + [sym_true] = ACTIONS(2780), + [sym_false] = ACTIONS(2780), + [anon_sym_NULL] = ACTIONS(2780), + [anon_sym_nullptr] = ACTIONS(2780), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2780), + [anon_sym___typeof] = ACTIONS(2780), + [anon_sym_typeof] = ACTIONS(2780), + [anon_sym_ATimport] = ACTIONS(2782), + [aux_sym_preproc_undef_token1] = ACTIONS(2780), + [anon_sym_POUND] = ACTIONS(2780), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2780), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2780), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2780), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2780), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE] = ACTIONS(2780), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_API_AVAILABLE] = ACTIONS(2780), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_API_DEPRECATED] = ACTIONS(2780), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2780), + [anon_sym___deprecated_msg] = ACTIONS(2780), + [anon_sym___deprecated_enum_msg] = ACTIONS(2780), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2780), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2780), + [anon_sym_ATprotocol] = ACTIONS(2782), + [anon_sym_ATinterface] = ACTIONS(2782), + [anon_sym_ATimplementation] = ACTIONS(2782), + [anon_sym_ATcompatibility_alias] = ACTIONS(2782), + [anon_sym_ATselector] = ACTIONS(2782), + [anon_sym_ATavailable] = ACTIONS(2782), + [anon_sym___builtin_available] = ACTIONS(2780), + [anon_sym_va_arg] = ACTIONS(2780), + [anon_sym_ATencode] = ACTIONS(2782), + [anon_sym_BOOL] = ACTIONS(2780), + [anon_sym_IMP] = ACTIONS(2780), + [anon_sym_SEL] = ACTIONS(2780), + [anon_sym_Class] = ACTIONS(2780), + [anon_sym_id] = ACTIONS(2780), + }, + [1042] = { + [ts_builtin_sym_end] = ACTIONS(2870), + [sym_identifier] = ACTIONS(2868), + [aux_sym_preproc_include_token1] = ACTIONS(2868), + [aux_sym_preproc_include_token2] = ACTIONS(2868), + [aux_sym_preproc_def_token1] = ACTIONS(2868), + [aux_sym_preproc_if_token1] = ACTIONS(2868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2868), + [sym_preproc_directive] = ACTIONS(2868), + [anon_sym_LPAREN2] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_CARET] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym___extension__] = ACTIONS(2868), + [anon_sym_typedef] = ACTIONS(2868), + [anon_sym_extern] = ACTIONS(2868), + [anon_sym___attribute__] = ACTIONS(2868), + [anon_sym___attribute] = ACTIONS(2868), + [anon_sym_noreturn] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2870), + [anon_sym___declspec] = ACTIONS(2868), + [anon_sym___cdecl] = ACTIONS(2868), + [anon_sym___clrcall] = ACTIONS(2868), + [anon_sym___stdcall] = ACTIONS(2868), + [anon_sym___fastcall] = ACTIONS(2868), + [anon_sym___thiscall] = ACTIONS(2868), + [anon_sym___vectorcall] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_signed] = ACTIONS(2868), + [anon_sym_unsigned] = ACTIONS(2868), + [anon_sym_long] = ACTIONS(2868), + [anon_sym_short] = ACTIONS(2868), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_ATautoreleasepool] = ACTIONS(2870), + [anon_sym_auto] = ACTIONS(2868), + [anon_sym_register] = ACTIONS(2868), + [anon_sym_inline] = ACTIONS(2868), + [anon_sym___inline] = ACTIONS(2868), + [anon_sym___inline__] = ACTIONS(2868), + [anon_sym___forceinline] = ACTIONS(2868), + [anon_sym_thread_local] = ACTIONS(2868), + [anon_sym___thread] = ACTIONS(2868), + [anon_sym_CG_EXTERN] = ACTIONS(2868), + [anon_sym_CG_INLINE] = ACTIONS(2868), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2868), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2868), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2868), + [anon_sym_IBOutlet] = ACTIONS(2868), + [anon_sym_IBInspectable] = ACTIONS(2868), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2868), + [anon_sym_NS_INLINE] = ACTIONS(2868), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2868), + [anon_sym_OBJC_EXPORT] = ACTIONS(2868), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2868), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2868), + [anon_sym_const] = ACTIONS(2868), + [anon_sym_constexpr] = ACTIONS(2868), + [anon_sym_volatile] = ACTIONS(2868), + [anon_sym_restrict] = ACTIONS(2868), + [anon_sym___restrict__] = ACTIONS(2868), + [anon_sym__Atomic] = ACTIONS(2868), + [anon_sym__Noreturn] = ACTIONS(2868), + [anon_sym__Nonnull] = ACTIONS(2868), + [anon_sym_nullable] = ACTIONS(2868), + [anon_sym__Complex] = ACTIONS(2868), + [anon_sym__Nullable] = ACTIONS(2868), + [anon_sym__Nullable_result] = ACTIONS(2868), + [anon_sym__Null_unspecified] = ACTIONS(2868), + [anon_sym___autoreleasing] = ACTIONS(2868), + [anon_sym___block] = ACTIONS(2868), + [anon_sym___bridge] = ACTIONS(2868), + [anon_sym___bridge_retained] = ACTIONS(2868), + [anon_sym___bridge_transfer] = ACTIONS(2868), + [anon_sym___complex] = ACTIONS(2868), + [anon_sym___const] = ACTIONS(2868), + [anon_sym___imag] = ACTIONS(2868), + [anon_sym___kindof] = ACTIONS(2868), + [anon_sym___nonnull] = ACTIONS(2868), + [anon_sym___nullable] = ACTIONS(2868), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2868), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2868), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2868), + [anon_sym___real] = ACTIONS(2868), + [anon_sym___strong] = ACTIONS(2868), + [anon_sym___unsafe_unretained] = ACTIONS(2868), + [anon_sym___unused] = ACTIONS(2868), + [anon_sym___weak] = ACTIONS(2868), + [anon_sym_alignas] = ACTIONS(2868), + [anon_sym__Alignas] = ACTIONS(2868), + [sym_primitive_type] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2868), + [anon_sym_union] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_switch] = ACTIONS(2868), + [anon_sym_case] = ACTIONS(2868), + [anon_sym_default] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_in] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_goto] = ACTIONS(2868), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_sizeof] = ACTIONS(2868), + [anon_sym___alignof__] = ACTIONS(2868), + [anon_sym___alignof] = ACTIONS(2868), + [anon_sym__alignof] = ACTIONS(2868), + [anon_sym_alignof] = ACTIONS(2868), + [anon_sym__Alignof] = ACTIONS(2868), + [anon_sym_offsetof] = ACTIONS(2868), + [anon_sym__Generic] = ACTIONS(2868), + [anon_sym_asm] = ACTIONS(2868), + [anon_sym___asm__] = ACTIONS(2868), + [anon_sym___asm] = ACTIONS(2868), + [sym_number_literal] = ACTIONS(2870), + [anon_sym_L_SQUOTE] = ACTIONS(2870), + [anon_sym_u_SQUOTE] = ACTIONS(2870), + [anon_sym_U_SQUOTE] = ACTIONS(2870), + [anon_sym_u8_SQUOTE] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_AT] = ACTIONS(2868), + [anon_sym_DQUOTE] = ACTIONS(2870), + [anon_sym_L_DQUOTE] = ACTIONS(2870), + [anon_sym_u_DQUOTE] = ACTIONS(2870), + [anon_sym_U_DQUOTE] = ACTIONS(2870), + [anon_sym_u8_DQUOTE] = ACTIONS(2870), + [sym_true] = ACTIONS(2868), + [sym_false] = ACTIONS(2868), + [anon_sym_NULL] = ACTIONS(2868), + [anon_sym_nullptr] = ACTIONS(2868), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2868), + [anon_sym___typeof] = ACTIONS(2868), + [anon_sym_typeof] = ACTIONS(2868), + [anon_sym_ATimport] = ACTIONS(2870), + [aux_sym_preproc_undef_token1] = ACTIONS(2868), + [anon_sym_POUND] = ACTIONS(2868), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2868), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2868), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2868), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2868), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2868), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2868), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2868), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2868), + [anon_sym_NS_AVAILABLE] = ACTIONS(2868), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_API_AVAILABLE] = ACTIONS(2868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_API_DEPRECATED] = ACTIONS(2868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2868), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2868), + [anon_sym___deprecated_msg] = ACTIONS(2868), + [anon_sym___deprecated_enum_msg] = ACTIONS(2868), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2868), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2868), + [anon_sym_ATprotocol] = ACTIONS(2870), + [anon_sym_ATinterface] = ACTIONS(2870), + [anon_sym_ATimplementation] = ACTIONS(2870), + [anon_sym_ATcompatibility_alias] = ACTIONS(2870), + [anon_sym_ATselector] = ACTIONS(2870), + [anon_sym_ATavailable] = ACTIONS(2870), + [anon_sym___builtin_available] = ACTIONS(2868), + [anon_sym_va_arg] = ACTIONS(2868), + [anon_sym_ATencode] = ACTIONS(2870), + [anon_sym_BOOL] = ACTIONS(2868), + [anon_sym_IMP] = ACTIONS(2868), + [anon_sym_SEL] = ACTIONS(2868), + [anon_sym_Class] = ACTIONS(2868), + [anon_sym_id] = ACTIONS(2868), + }, + [1043] = { + [ts_builtin_sym_end] = ACTIONS(2958), + [sym_identifier] = ACTIONS(2960), + [aux_sym_preproc_include_token1] = ACTIONS(2960), + [aux_sym_preproc_include_token2] = ACTIONS(2960), + [aux_sym_preproc_def_token1] = ACTIONS(2960), + [aux_sym_preproc_if_token1] = ACTIONS(2960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2960), + [sym_preproc_directive] = ACTIONS(2960), + [anon_sym_LPAREN2] = ACTIONS(2958), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(2958), + [anon_sym_CARET] = ACTIONS(2958), + [anon_sym_AMP] = ACTIONS(2958), + [anon_sym_SEMI] = ACTIONS(2958), + [anon_sym___extension__] = ACTIONS(2960), + [anon_sym_typedef] = ACTIONS(2960), + [anon_sym_extern] = ACTIONS(2960), + [anon_sym___attribute__] = ACTIONS(2960), + [anon_sym___attribute] = ACTIONS(2960), + [anon_sym_noreturn] = ACTIONS(2960), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym___declspec] = ACTIONS(2960), + [anon_sym___cdecl] = ACTIONS(2960), + [anon_sym___clrcall] = ACTIONS(2960), + [anon_sym___stdcall] = ACTIONS(2960), + [anon_sym___fastcall] = ACTIONS(2960), + [anon_sym___thiscall] = ACTIONS(2960), + [anon_sym___vectorcall] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2958), + [anon_sym_signed] = ACTIONS(2960), + [anon_sym_unsigned] = ACTIONS(2960), + [anon_sym_long] = ACTIONS(2960), + [anon_sym_short] = ACTIONS(2960), + [anon_sym_static] = ACTIONS(2960), + [anon_sym_ATautoreleasepool] = ACTIONS(2958), + [anon_sym_auto] = ACTIONS(2960), + [anon_sym_register] = ACTIONS(2960), + [anon_sym_inline] = ACTIONS(2960), + [anon_sym___inline] = ACTIONS(2960), + [anon_sym___inline__] = ACTIONS(2960), + [anon_sym___forceinline] = ACTIONS(2960), + [anon_sym_thread_local] = ACTIONS(2960), + [anon_sym___thread] = ACTIONS(2960), + [anon_sym_CG_EXTERN] = ACTIONS(2960), + [anon_sym_CG_INLINE] = ACTIONS(2960), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2960), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2960), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2960), + [anon_sym_IBOutlet] = ACTIONS(2960), + [anon_sym_IBInspectable] = ACTIONS(2960), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2960), + [anon_sym_NS_INLINE] = ACTIONS(2960), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2960), + [anon_sym_OBJC_EXPORT] = ACTIONS(2960), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2960), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2960), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_constexpr] = ACTIONS(2960), + [anon_sym_volatile] = ACTIONS(2960), + [anon_sym_restrict] = ACTIONS(2960), + [anon_sym___restrict__] = ACTIONS(2960), + [anon_sym__Atomic] = ACTIONS(2960), + [anon_sym__Noreturn] = ACTIONS(2960), + [anon_sym__Nonnull] = ACTIONS(2960), + [anon_sym_nullable] = ACTIONS(2960), + [anon_sym__Complex] = ACTIONS(2960), + [anon_sym__Nullable] = ACTIONS(2960), + [anon_sym__Nullable_result] = ACTIONS(2960), + [anon_sym__Null_unspecified] = ACTIONS(2960), + [anon_sym___autoreleasing] = ACTIONS(2960), + [anon_sym___block] = ACTIONS(2960), + [anon_sym___bridge] = ACTIONS(2960), + [anon_sym___bridge_retained] = ACTIONS(2960), + [anon_sym___bridge_transfer] = ACTIONS(2960), + [anon_sym___complex] = ACTIONS(2960), + [anon_sym___const] = ACTIONS(2960), + [anon_sym___imag] = ACTIONS(2960), + [anon_sym___kindof] = ACTIONS(2960), + [anon_sym___nonnull] = ACTIONS(2960), + [anon_sym___nullable] = ACTIONS(2960), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2960), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2960), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2960), + [anon_sym___real] = ACTIONS(2960), + [anon_sym___strong] = ACTIONS(2960), + [anon_sym___unsafe_unretained] = ACTIONS(2960), + [anon_sym___unused] = ACTIONS(2960), + [anon_sym___weak] = ACTIONS(2960), + [anon_sym_alignas] = ACTIONS(2960), + [anon_sym__Alignas] = ACTIONS(2960), + [sym_primitive_type] = ACTIONS(2960), + [anon_sym_enum] = ACTIONS(2960), + [anon_sym_struct] = ACTIONS(2960), + [anon_sym_union] = ACTIONS(2960), + [anon_sym_if] = ACTIONS(2960), + [anon_sym_switch] = ACTIONS(2960), + [anon_sym_case] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2960), + [anon_sym_while] = ACTIONS(2960), + [anon_sym_do] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2960), + [anon_sym_in] = ACTIONS(2960), + [anon_sym_return] = ACTIONS(2960), + [anon_sym_break] = ACTIONS(2960), + [anon_sym_continue] = ACTIONS(2960), + [anon_sym_goto] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(2958), + [anon_sym_PLUS_PLUS] = ACTIONS(2958), + [anon_sym_sizeof] = ACTIONS(2960), + [anon_sym___alignof__] = ACTIONS(2960), + [anon_sym___alignof] = ACTIONS(2960), + [anon_sym__alignof] = ACTIONS(2960), + [anon_sym_alignof] = ACTIONS(2960), + [anon_sym__Alignof] = ACTIONS(2960), + [anon_sym_offsetof] = ACTIONS(2960), + [anon_sym__Generic] = ACTIONS(2960), + [anon_sym_asm] = ACTIONS(2960), + [anon_sym___asm__] = ACTIONS(2960), + [anon_sym___asm] = ACTIONS(2960), + [sym_number_literal] = ACTIONS(2958), + [anon_sym_L_SQUOTE] = ACTIONS(2958), + [anon_sym_u_SQUOTE] = ACTIONS(2958), + [anon_sym_U_SQUOTE] = ACTIONS(2958), + [anon_sym_u8_SQUOTE] = ACTIONS(2958), + [anon_sym_SQUOTE] = ACTIONS(2958), + [anon_sym_AT] = ACTIONS(2960), + [anon_sym_DQUOTE] = ACTIONS(2958), + [anon_sym_L_DQUOTE] = ACTIONS(2958), + [anon_sym_u_DQUOTE] = ACTIONS(2958), + [anon_sym_U_DQUOTE] = ACTIONS(2958), + [anon_sym_u8_DQUOTE] = ACTIONS(2958), + [sym_true] = ACTIONS(2960), + [sym_false] = ACTIONS(2960), + [anon_sym_NULL] = ACTIONS(2960), + [anon_sym_nullptr] = ACTIONS(2960), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2960), + [anon_sym___typeof] = ACTIONS(2960), + [anon_sym_typeof] = ACTIONS(2960), + [anon_sym_ATimport] = ACTIONS(2958), + [aux_sym_preproc_undef_token1] = ACTIONS(2960), + [anon_sym_POUND] = ACTIONS(2960), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2960), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2960), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2960), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2960), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2960), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2960), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2960), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2960), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2960), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2960), + [anon_sym_NS_AVAILABLE] = ACTIONS(2960), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2960), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2960), + [anon_sym_API_AVAILABLE] = ACTIONS(2960), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2960), + [anon_sym_API_DEPRECATED] = ACTIONS(2960), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2960), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2960), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2960), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2960), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2960), + [anon_sym___deprecated_msg] = ACTIONS(2960), + [anon_sym___deprecated_enum_msg] = ACTIONS(2960), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2960), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2960), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2960), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2960), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2960), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2960), + [anon_sym_ATprotocol] = ACTIONS(2958), + [anon_sym_ATinterface] = ACTIONS(2958), + [anon_sym_ATimplementation] = ACTIONS(2958), + [anon_sym_ATcompatibility_alias] = ACTIONS(2958), + [anon_sym_ATselector] = ACTIONS(2958), + [anon_sym_ATavailable] = ACTIONS(2958), + [anon_sym___builtin_available] = ACTIONS(2960), + [anon_sym_va_arg] = ACTIONS(2960), + [anon_sym_ATencode] = ACTIONS(2958), + [anon_sym_BOOL] = ACTIONS(2960), + [anon_sym_IMP] = ACTIONS(2960), + [anon_sym_SEL] = ACTIONS(2960), + [anon_sym_Class] = ACTIONS(2960), + [anon_sym_id] = ACTIONS(2960), + }, + [1044] = { + [ts_builtin_sym_end] = ACTIONS(2782), + [sym_identifier] = ACTIONS(2780), + [aux_sym_preproc_include_token1] = ACTIONS(2780), + [aux_sym_preproc_include_token2] = ACTIONS(2780), + [aux_sym_preproc_def_token1] = ACTIONS(2780), + [aux_sym_preproc_if_token1] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2780), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2780), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2782), + [anon_sym_BANG] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(2780), + [anon_sym_STAR] = ACTIONS(2782), + [anon_sym_CARET] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym___extension__] = ACTIONS(2780), + [anon_sym_typedef] = ACTIONS(2780), + [anon_sym_extern] = ACTIONS(2780), + [anon_sym___attribute__] = ACTIONS(2780), + [anon_sym___attribute] = ACTIONS(2780), + [anon_sym_noreturn] = ACTIONS(2780), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym___declspec] = ACTIONS(2780), + [anon_sym___cdecl] = ACTIONS(2780), + [anon_sym___clrcall] = ACTIONS(2780), + [anon_sym___stdcall] = ACTIONS(2780), + [anon_sym___fastcall] = ACTIONS(2780), + [anon_sym___thiscall] = ACTIONS(2780), + [anon_sym___vectorcall] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_signed] = ACTIONS(2780), + [anon_sym_unsigned] = ACTIONS(2780), + [anon_sym_long] = ACTIONS(2780), + [anon_sym_short] = ACTIONS(2780), + [anon_sym_static] = ACTIONS(2780), + [anon_sym_ATautoreleasepool] = ACTIONS(2782), + [anon_sym_auto] = ACTIONS(2780), + [anon_sym_register] = ACTIONS(2780), + [anon_sym_inline] = ACTIONS(2780), + [anon_sym___inline] = ACTIONS(2780), + [anon_sym___inline__] = ACTIONS(2780), + [anon_sym___forceinline] = ACTIONS(2780), + [anon_sym_thread_local] = ACTIONS(2780), + [anon_sym___thread] = ACTIONS(2780), + [anon_sym_CG_EXTERN] = ACTIONS(2780), + [anon_sym_CG_INLINE] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2780), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2780), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2780), + [anon_sym_IBOutlet] = ACTIONS(2780), + [anon_sym_IBInspectable] = ACTIONS(2780), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2780), + [anon_sym_NS_INLINE] = ACTIONS(2780), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2780), + [anon_sym_OBJC_EXPORT] = ACTIONS(2780), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2780), + [anon_sym_const] = ACTIONS(2780), + [anon_sym_constexpr] = ACTIONS(2780), + [anon_sym_volatile] = ACTIONS(2780), + [anon_sym_restrict] = ACTIONS(2780), + [anon_sym___restrict__] = ACTIONS(2780), + [anon_sym__Atomic] = ACTIONS(2780), + [anon_sym__Noreturn] = ACTIONS(2780), + [anon_sym__Nonnull] = ACTIONS(2780), + [anon_sym_nullable] = ACTIONS(2780), + [anon_sym__Complex] = ACTIONS(2780), + [anon_sym__Nullable] = ACTIONS(2780), + [anon_sym__Nullable_result] = ACTIONS(2780), + [anon_sym__Null_unspecified] = ACTIONS(2780), + [anon_sym___autoreleasing] = ACTIONS(2780), + [anon_sym___block] = ACTIONS(2780), + [anon_sym___bridge] = ACTIONS(2780), + [anon_sym___bridge_retained] = ACTIONS(2780), + [anon_sym___bridge_transfer] = ACTIONS(2780), + [anon_sym___complex] = ACTIONS(2780), + [anon_sym___const] = ACTIONS(2780), + [anon_sym___imag] = ACTIONS(2780), + [anon_sym___kindof] = ACTIONS(2780), + [anon_sym___nonnull] = ACTIONS(2780), + [anon_sym___nullable] = ACTIONS(2780), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2780), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2780), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2780), + [anon_sym___real] = ACTIONS(2780), + [anon_sym___strong] = ACTIONS(2780), + [anon_sym___unsafe_unretained] = ACTIONS(2780), + [anon_sym___unused] = ACTIONS(2780), + [anon_sym___weak] = ACTIONS(2780), + [anon_sym_alignas] = ACTIONS(2780), + [anon_sym__Alignas] = ACTIONS(2780), + [sym_primitive_type] = ACTIONS(2780), + [anon_sym_enum] = ACTIONS(2780), + [anon_sym_struct] = ACTIONS(2780), + [anon_sym_union] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_switch] = ACTIONS(2780), + [anon_sym_case] = ACTIONS(2780), + [anon_sym_default] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_in] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_break] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2780), + [anon_sym_goto] = ACTIONS(2780), + [anon_sym_DASH_DASH] = ACTIONS(2782), + [anon_sym_PLUS_PLUS] = ACTIONS(2782), + [anon_sym_sizeof] = ACTIONS(2780), + [anon_sym___alignof__] = ACTIONS(2780), + [anon_sym___alignof] = ACTIONS(2780), + [anon_sym__alignof] = ACTIONS(2780), + [anon_sym_alignof] = ACTIONS(2780), + [anon_sym__Alignof] = ACTIONS(2780), + [anon_sym_offsetof] = ACTIONS(2780), + [anon_sym__Generic] = ACTIONS(2780), + [anon_sym_asm] = ACTIONS(2780), + [anon_sym___asm__] = ACTIONS(2780), + [anon_sym___asm] = ACTIONS(2780), + [sym_number_literal] = ACTIONS(2782), + [anon_sym_L_SQUOTE] = ACTIONS(2782), + [anon_sym_u_SQUOTE] = ACTIONS(2782), + [anon_sym_U_SQUOTE] = ACTIONS(2782), + [anon_sym_u8_SQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2782), + [anon_sym_AT] = ACTIONS(2780), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_L_DQUOTE] = ACTIONS(2782), + [anon_sym_u_DQUOTE] = ACTIONS(2782), + [anon_sym_U_DQUOTE] = ACTIONS(2782), + [anon_sym_u8_DQUOTE] = ACTIONS(2782), + [sym_true] = ACTIONS(2780), + [sym_false] = ACTIONS(2780), + [anon_sym_NULL] = ACTIONS(2780), + [anon_sym_nullptr] = ACTIONS(2780), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2780), + [anon_sym___typeof] = ACTIONS(2780), + [anon_sym_typeof] = ACTIONS(2780), + [anon_sym_ATimport] = ACTIONS(2782), + [aux_sym_preproc_undef_token1] = ACTIONS(2780), + [anon_sym_POUND] = ACTIONS(2780), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2780), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2780), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2780), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2780), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2780), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2780), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE] = ACTIONS(2780), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2780), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_API_AVAILABLE] = ACTIONS(2780), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_API_DEPRECATED] = ACTIONS(2780), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2780), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2780), + [anon_sym___deprecated_msg] = ACTIONS(2780), + [anon_sym___deprecated_enum_msg] = ACTIONS(2780), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2780), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2780), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2780), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2780), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2780), + [anon_sym_ATprotocol] = ACTIONS(2782), + [anon_sym_ATinterface] = ACTIONS(2782), + [anon_sym_ATimplementation] = ACTIONS(2782), + [anon_sym_ATcompatibility_alias] = ACTIONS(2782), + [anon_sym_ATselector] = ACTIONS(2782), + [anon_sym_ATavailable] = ACTIONS(2782), + [anon_sym___builtin_available] = ACTIONS(2780), + [anon_sym_va_arg] = ACTIONS(2780), + [anon_sym_ATencode] = ACTIONS(2782), + [anon_sym_BOOL] = ACTIONS(2780), + [anon_sym_IMP] = ACTIONS(2780), + [anon_sym_SEL] = ACTIONS(2780), + [anon_sym_Class] = ACTIONS(2780), + [anon_sym_id] = ACTIONS(2780), + }, + [1045] = { + [ts_builtin_sym_end] = ACTIONS(2786), + [sym_identifier] = ACTIONS(2784), + [aux_sym_preproc_include_token1] = ACTIONS(2784), + [aux_sym_preproc_include_token2] = ACTIONS(2784), + [aux_sym_preproc_def_token1] = ACTIONS(2784), + [aux_sym_preproc_if_token1] = ACTIONS(2784), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2784), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2784), + [sym_preproc_directive] = ACTIONS(2784), + [anon_sym_LPAREN2] = ACTIONS(2786), + [anon_sym_BANG] = ACTIONS(2786), + [anon_sym_TILDE] = ACTIONS(2786), + [anon_sym_DASH] = ACTIONS(2784), + [anon_sym_PLUS] = ACTIONS(2784), + [anon_sym_STAR] = ACTIONS(2786), + [anon_sym_CARET] = ACTIONS(2786), + [anon_sym_AMP] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2784), + [anon_sym_extern] = ACTIONS(2784), + [anon_sym___attribute__] = ACTIONS(2784), + [anon_sym___attribute] = ACTIONS(2784), + [anon_sym_noreturn] = ACTIONS(2784), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym___declspec] = ACTIONS(2784), + [anon_sym___cdecl] = ACTIONS(2784), + [anon_sym___clrcall] = ACTIONS(2784), + [anon_sym___stdcall] = ACTIONS(2784), + [anon_sym___fastcall] = ACTIONS(2784), + [anon_sym___thiscall] = ACTIONS(2784), + [anon_sym___vectorcall] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_signed] = ACTIONS(2784), + [anon_sym_unsigned] = ACTIONS(2784), + [anon_sym_long] = ACTIONS(2784), + [anon_sym_short] = ACTIONS(2784), + [anon_sym_static] = ACTIONS(2784), + [anon_sym_ATautoreleasepool] = ACTIONS(2786), + [anon_sym_auto] = ACTIONS(2784), + [anon_sym_register] = ACTIONS(2784), + [anon_sym_inline] = ACTIONS(2784), + [anon_sym___inline] = ACTIONS(2784), + [anon_sym___inline__] = ACTIONS(2784), + [anon_sym___forceinline] = ACTIONS(2784), + [anon_sym_thread_local] = ACTIONS(2784), + [anon_sym___thread] = ACTIONS(2784), + [anon_sym_CG_EXTERN] = ACTIONS(2784), + [anon_sym_CG_INLINE] = ACTIONS(2784), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2784), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2784), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2784), + [anon_sym_IBOutlet] = ACTIONS(2784), + [anon_sym_IBInspectable] = ACTIONS(2784), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2784), + [anon_sym_NS_INLINE] = ACTIONS(2784), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2784), + [anon_sym_OBJC_EXPORT] = ACTIONS(2784), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2784), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2784), + [anon_sym_const] = ACTIONS(2784), + [anon_sym_constexpr] = ACTIONS(2784), + [anon_sym_volatile] = ACTIONS(2784), + [anon_sym_restrict] = ACTIONS(2784), + [anon_sym___restrict__] = ACTIONS(2784), + [anon_sym__Atomic] = ACTIONS(2784), + [anon_sym__Noreturn] = ACTIONS(2784), + [anon_sym__Nonnull] = ACTIONS(2784), + [anon_sym_nullable] = ACTIONS(2784), + [anon_sym__Complex] = ACTIONS(2784), + [anon_sym__Nullable] = ACTIONS(2784), + [anon_sym__Nullable_result] = ACTIONS(2784), + [anon_sym__Null_unspecified] = ACTIONS(2784), + [anon_sym___autoreleasing] = ACTIONS(2784), + [anon_sym___block] = ACTIONS(2784), + [anon_sym___bridge] = ACTIONS(2784), + [anon_sym___bridge_retained] = ACTIONS(2784), + [anon_sym___bridge_transfer] = ACTIONS(2784), + [anon_sym___complex] = ACTIONS(2784), + [anon_sym___const] = ACTIONS(2784), + [anon_sym___imag] = ACTIONS(2784), + [anon_sym___kindof] = ACTIONS(2784), + [anon_sym___nonnull] = ACTIONS(2784), + [anon_sym___nullable] = ACTIONS(2784), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2784), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2784), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2784), + [anon_sym___real] = ACTIONS(2784), + [anon_sym___strong] = ACTIONS(2784), + [anon_sym___unsafe_unretained] = ACTIONS(2784), + [anon_sym___unused] = ACTIONS(2784), + [anon_sym___weak] = ACTIONS(2784), + [anon_sym_alignas] = ACTIONS(2784), + [anon_sym__Alignas] = ACTIONS(2784), + [sym_primitive_type] = ACTIONS(2784), + [anon_sym_enum] = ACTIONS(2784), + [anon_sym_struct] = ACTIONS(2784), + [anon_sym_union] = ACTIONS(2784), + [anon_sym_if] = ACTIONS(2784), + [anon_sym_switch] = ACTIONS(2784), + [anon_sym_case] = ACTIONS(2784), + [anon_sym_default] = ACTIONS(2784), + [anon_sym_while] = ACTIONS(2784), + [anon_sym_do] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2784), + [anon_sym_in] = ACTIONS(2784), + [anon_sym_return] = ACTIONS(2784), + [anon_sym_break] = ACTIONS(2784), + [anon_sym_continue] = ACTIONS(2784), + [anon_sym_goto] = ACTIONS(2784), + [anon_sym_DASH_DASH] = ACTIONS(2786), + [anon_sym_PLUS_PLUS] = ACTIONS(2786), + [anon_sym_sizeof] = ACTIONS(2784), + [anon_sym___alignof__] = ACTIONS(2784), + [anon_sym___alignof] = ACTIONS(2784), + [anon_sym__alignof] = ACTIONS(2784), + [anon_sym_alignof] = ACTIONS(2784), + [anon_sym__Alignof] = ACTIONS(2784), + [anon_sym_offsetof] = ACTIONS(2784), + [anon_sym__Generic] = ACTIONS(2784), + [anon_sym_asm] = ACTIONS(2784), + [anon_sym___asm__] = ACTIONS(2784), + [anon_sym___asm] = ACTIONS(2784), + [sym_number_literal] = ACTIONS(2786), + [anon_sym_L_SQUOTE] = ACTIONS(2786), + [anon_sym_u_SQUOTE] = ACTIONS(2786), + [anon_sym_U_SQUOTE] = ACTIONS(2786), + [anon_sym_u8_SQUOTE] = ACTIONS(2786), + [anon_sym_SQUOTE] = ACTIONS(2786), + [anon_sym_AT] = ACTIONS(2784), + [anon_sym_DQUOTE] = ACTIONS(2786), + [anon_sym_L_DQUOTE] = ACTIONS(2786), + [anon_sym_u_DQUOTE] = ACTIONS(2786), + [anon_sym_U_DQUOTE] = ACTIONS(2786), + [anon_sym_u8_DQUOTE] = ACTIONS(2786), + [sym_true] = ACTIONS(2784), + [sym_false] = ACTIONS(2784), + [anon_sym_NULL] = ACTIONS(2784), + [anon_sym_nullptr] = ACTIONS(2784), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2784), + [anon_sym___typeof] = ACTIONS(2784), + [anon_sym_typeof] = ACTIONS(2784), + [anon_sym_ATimport] = ACTIONS(2786), + [aux_sym_preproc_undef_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(2784), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2784), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2784), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2784), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2784), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2784), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2784), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2784), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2784), + [anon_sym_NS_AVAILABLE] = ACTIONS(2784), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2784), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_API_AVAILABLE] = ACTIONS(2784), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_API_DEPRECATED] = ACTIONS(2784), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2784), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2784), + [anon_sym___deprecated_msg] = ACTIONS(2784), + [anon_sym___deprecated_enum_msg] = ACTIONS(2784), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2784), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2784), + [anon_sym_ATprotocol] = ACTIONS(2786), + [anon_sym_ATinterface] = ACTIONS(2786), + [anon_sym_ATimplementation] = ACTIONS(2786), + [anon_sym_ATcompatibility_alias] = ACTIONS(2786), + [anon_sym_ATselector] = ACTIONS(2786), + [anon_sym_ATavailable] = ACTIONS(2786), + [anon_sym___builtin_available] = ACTIONS(2784), + [anon_sym_va_arg] = ACTIONS(2784), + [anon_sym_ATencode] = ACTIONS(2786), + [anon_sym_BOOL] = ACTIONS(2784), + [anon_sym_IMP] = ACTIONS(2784), + [anon_sym_SEL] = ACTIONS(2784), + [anon_sym_Class] = ACTIONS(2784), + [anon_sym_id] = ACTIONS(2784), + }, + [1046] = { + [ts_builtin_sym_end] = ACTIONS(2786), + [sym_identifier] = ACTIONS(2784), + [aux_sym_preproc_include_token1] = ACTIONS(2784), + [aux_sym_preproc_include_token2] = ACTIONS(2784), + [aux_sym_preproc_def_token1] = ACTIONS(2784), + [aux_sym_preproc_if_token1] = ACTIONS(2784), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2784), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2784), + [sym_preproc_directive] = ACTIONS(2784), + [anon_sym_LPAREN2] = ACTIONS(2786), + [anon_sym_BANG] = ACTIONS(2786), + [anon_sym_TILDE] = ACTIONS(2786), + [anon_sym_DASH] = ACTIONS(2784), + [anon_sym_PLUS] = ACTIONS(2784), + [anon_sym_STAR] = ACTIONS(2786), + [anon_sym_CARET] = ACTIONS(2786), + [anon_sym_AMP] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2784), + [anon_sym_extern] = ACTIONS(2784), + [anon_sym___attribute__] = ACTIONS(2784), + [anon_sym___attribute] = ACTIONS(2784), + [anon_sym_noreturn] = ACTIONS(2784), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym___declspec] = ACTIONS(2784), + [anon_sym___cdecl] = ACTIONS(2784), + [anon_sym___clrcall] = ACTIONS(2784), + [anon_sym___stdcall] = ACTIONS(2784), + [anon_sym___fastcall] = ACTIONS(2784), + [anon_sym___thiscall] = ACTIONS(2784), + [anon_sym___vectorcall] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_signed] = ACTIONS(2784), + [anon_sym_unsigned] = ACTIONS(2784), + [anon_sym_long] = ACTIONS(2784), + [anon_sym_short] = ACTIONS(2784), + [anon_sym_static] = ACTIONS(2784), + [anon_sym_ATautoreleasepool] = ACTIONS(2786), + [anon_sym_auto] = ACTIONS(2784), + [anon_sym_register] = ACTIONS(2784), + [anon_sym_inline] = ACTIONS(2784), + [anon_sym___inline] = ACTIONS(2784), + [anon_sym___inline__] = ACTIONS(2784), + [anon_sym___forceinline] = ACTIONS(2784), + [anon_sym_thread_local] = ACTIONS(2784), + [anon_sym___thread] = ACTIONS(2784), + [anon_sym_CG_EXTERN] = ACTIONS(2784), + [anon_sym_CG_INLINE] = ACTIONS(2784), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2784), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2784), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2784), + [anon_sym_IBOutlet] = ACTIONS(2784), + [anon_sym_IBInspectable] = ACTIONS(2784), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2784), + [anon_sym_NS_INLINE] = ACTIONS(2784), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2784), + [anon_sym_OBJC_EXPORT] = ACTIONS(2784), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2784), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2784), + [anon_sym_const] = ACTIONS(2784), + [anon_sym_constexpr] = ACTIONS(2784), + [anon_sym_volatile] = ACTIONS(2784), + [anon_sym_restrict] = ACTIONS(2784), + [anon_sym___restrict__] = ACTIONS(2784), + [anon_sym__Atomic] = ACTIONS(2784), + [anon_sym__Noreturn] = ACTIONS(2784), + [anon_sym__Nonnull] = ACTIONS(2784), + [anon_sym_nullable] = ACTIONS(2784), + [anon_sym__Complex] = ACTIONS(2784), + [anon_sym__Nullable] = ACTIONS(2784), + [anon_sym__Nullable_result] = ACTIONS(2784), + [anon_sym__Null_unspecified] = ACTIONS(2784), + [anon_sym___autoreleasing] = ACTIONS(2784), + [anon_sym___block] = ACTIONS(2784), + [anon_sym___bridge] = ACTIONS(2784), + [anon_sym___bridge_retained] = ACTIONS(2784), + [anon_sym___bridge_transfer] = ACTIONS(2784), + [anon_sym___complex] = ACTIONS(2784), + [anon_sym___const] = ACTIONS(2784), + [anon_sym___imag] = ACTIONS(2784), + [anon_sym___kindof] = ACTIONS(2784), + [anon_sym___nonnull] = ACTIONS(2784), + [anon_sym___nullable] = ACTIONS(2784), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2784), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2784), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2784), + [anon_sym___real] = ACTIONS(2784), + [anon_sym___strong] = ACTIONS(2784), + [anon_sym___unsafe_unretained] = ACTIONS(2784), + [anon_sym___unused] = ACTIONS(2784), + [anon_sym___weak] = ACTIONS(2784), + [anon_sym_alignas] = ACTIONS(2784), + [anon_sym__Alignas] = ACTIONS(2784), + [sym_primitive_type] = ACTIONS(2784), + [anon_sym_enum] = ACTIONS(2784), + [anon_sym_struct] = ACTIONS(2784), + [anon_sym_union] = ACTIONS(2784), + [anon_sym_if] = ACTIONS(2784), + [anon_sym_switch] = ACTIONS(2784), + [anon_sym_case] = ACTIONS(2784), + [anon_sym_default] = ACTIONS(2784), + [anon_sym_while] = ACTIONS(2784), + [anon_sym_do] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2784), + [anon_sym_in] = ACTIONS(2784), + [anon_sym_return] = ACTIONS(2784), + [anon_sym_break] = ACTIONS(2784), + [anon_sym_continue] = ACTIONS(2784), + [anon_sym_goto] = ACTIONS(2784), + [anon_sym_DASH_DASH] = ACTIONS(2786), + [anon_sym_PLUS_PLUS] = ACTIONS(2786), + [anon_sym_sizeof] = ACTIONS(2784), + [anon_sym___alignof__] = ACTIONS(2784), + [anon_sym___alignof] = ACTIONS(2784), + [anon_sym__alignof] = ACTIONS(2784), + [anon_sym_alignof] = ACTIONS(2784), + [anon_sym__Alignof] = ACTIONS(2784), + [anon_sym_offsetof] = ACTIONS(2784), + [anon_sym__Generic] = ACTIONS(2784), + [anon_sym_asm] = ACTIONS(2784), + [anon_sym___asm__] = ACTIONS(2784), + [anon_sym___asm] = ACTIONS(2784), + [sym_number_literal] = ACTIONS(2786), + [anon_sym_L_SQUOTE] = ACTIONS(2786), + [anon_sym_u_SQUOTE] = ACTIONS(2786), + [anon_sym_U_SQUOTE] = ACTIONS(2786), + [anon_sym_u8_SQUOTE] = ACTIONS(2786), + [anon_sym_SQUOTE] = ACTIONS(2786), + [anon_sym_AT] = ACTIONS(2784), + [anon_sym_DQUOTE] = ACTIONS(2786), + [anon_sym_L_DQUOTE] = ACTIONS(2786), + [anon_sym_u_DQUOTE] = ACTIONS(2786), + [anon_sym_U_DQUOTE] = ACTIONS(2786), + [anon_sym_u8_DQUOTE] = ACTIONS(2786), + [sym_true] = ACTIONS(2784), + [sym_false] = ACTIONS(2784), + [anon_sym_NULL] = ACTIONS(2784), + [anon_sym_nullptr] = ACTIONS(2784), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2784), + [anon_sym___typeof] = ACTIONS(2784), + [anon_sym_typeof] = ACTIONS(2784), + [anon_sym_ATimport] = ACTIONS(2786), + [aux_sym_preproc_undef_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(2784), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2784), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2784), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2784), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2784), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2784), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2784), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2784), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2784), + [anon_sym_NS_AVAILABLE] = ACTIONS(2784), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2784), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_API_AVAILABLE] = ACTIONS(2784), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_API_DEPRECATED] = ACTIONS(2784), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2784), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2784), + [anon_sym___deprecated_msg] = ACTIONS(2784), + [anon_sym___deprecated_enum_msg] = ACTIONS(2784), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2784), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2784), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2784), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2784), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2784), + [anon_sym_ATprotocol] = ACTIONS(2786), + [anon_sym_ATinterface] = ACTIONS(2786), + [anon_sym_ATimplementation] = ACTIONS(2786), + [anon_sym_ATcompatibility_alias] = ACTIONS(2786), + [anon_sym_ATselector] = ACTIONS(2786), + [anon_sym_ATavailable] = ACTIONS(2786), + [anon_sym___builtin_available] = ACTIONS(2784), + [anon_sym_va_arg] = ACTIONS(2784), + [anon_sym_ATencode] = ACTIONS(2786), + [anon_sym_BOOL] = ACTIONS(2784), + [anon_sym_IMP] = ACTIONS(2784), + [anon_sym_SEL] = ACTIONS(2784), + [anon_sym_Class] = ACTIONS(2784), + [anon_sym_id] = ACTIONS(2784), + }, + [1047] = { + [ts_builtin_sym_end] = ACTIONS(2790), + [sym_identifier] = ACTIONS(2788), + [aux_sym_preproc_include_token1] = ACTIONS(2788), + [aux_sym_preproc_include_token2] = ACTIONS(2788), + [aux_sym_preproc_def_token1] = ACTIONS(2788), + [aux_sym_preproc_if_token1] = ACTIONS(2788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2788), + [sym_preproc_directive] = ACTIONS(2788), + [anon_sym_LPAREN2] = ACTIONS(2790), + [anon_sym_BANG] = ACTIONS(2790), + [anon_sym_TILDE] = ACTIONS(2790), + [anon_sym_DASH] = ACTIONS(2788), + [anon_sym_PLUS] = ACTIONS(2788), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_CARET] = ACTIONS(2790), + [anon_sym_AMP] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym___extension__] = ACTIONS(2788), + [anon_sym_typedef] = ACTIONS(2788), + [anon_sym_extern] = ACTIONS(2788), + [anon_sym___attribute__] = ACTIONS(2788), + [anon_sym___attribute] = ACTIONS(2788), + [anon_sym_noreturn] = ACTIONS(2788), + [anon_sym_LBRACK] = ACTIONS(2790), + [anon_sym___declspec] = ACTIONS(2788), + [anon_sym___cdecl] = ACTIONS(2788), + [anon_sym___clrcall] = ACTIONS(2788), + [anon_sym___stdcall] = ACTIONS(2788), + [anon_sym___fastcall] = ACTIONS(2788), + [anon_sym___thiscall] = ACTIONS(2788), + [anon_sym___vectorcall] = ACTIONS(2788), + [anon_sym_LBRACE] = ACTIONS(2790), + [anon_sym_signed] = ACTIONS(2788), + [anon_sym_unsigned] = ACTIONS(2788), + [anon_sym_long] = ACTIONS(2788), + [anon_sym_short] = ACTIONS(2788), + [anon_sym_static] = ACTIONS(2788), + [anon_sym_ATautoreleasepool] = ACTIONS(2790), + [anon_sym_auto] = ACTIONS(2788), + [anon_sym_register] = ACTIONS(2788), + [anon_sym_inline] = ACTIONS(2788), + [anon_sym___inline] = ACTIONS(2788), + [anon_sym___inline__] = ACTIONS(2788), + [anon_sym___forceinline] = ACTIONS(2788), + [anon_sym_thread_local] = ACTIONS(2788), + [anon_sym___thread] = ACTIONS(2788), + [anon_sym_CG_EXTERN] = ACTIONS(2788), + [anon_sym_CG_INLINE] = ACTIONS(2788), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2788), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2788), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2788), + [anon_sym_IBOutlet] = ACTIONS(2788), + [anon_sym_IBInspectable] = ACTIONS(2788), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2788), + [anon_sym_NS_INLINE] = ACTIONS(2788), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2788), + [anon_sym_OBJC_EXPORT] = ACTIONS(2788), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2788), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2788), + [anon_sym_const] = ACTIONS(2788), + [anon_sym_constexpr] = ACTIONS(2788), + [anon_sym_volatile] = ACTIONS(2788), + [anon_sym_restrict] = ACTIONS(2788), + [anon_sym___restrict__] = ACTIONS(2788), + [anon_sym__Atomic] = ACTIONS(2788), + [anon_sym__Noreturn] = ACTIONS(2788), + [anon_sym__Nonnull] = ACTIONS(2788), + [anon_sym_nullable] = ACTIONS(2788), + [anon_sym__Complex] = ACTIONS(2788), + [anon_sym__Nullable] = ACTIONS(2788), + [anon_sym__Nullable_result] = ACTIONS(2788), + [anon_sym__Null_unspecified] = ACTIONS(2788), + [anon_sym___autoreleasing] = ACTIONS(2788), + [anon_sym___block] = ACTIONS(2788), + [anon_sym___bridge] = ACTIONS(2788), + [anon_sym___bridge_retained] = ACTIONS(2788), + [anon_sym___bridge_transfer] = ACTIONS(2788), + [anon_sym___complex] = ACTIONS(2788), + [anon_sym___const] = ACTIONS(2788), + [anon_sym___imag] = ACTIONS(2788), + [anon_sym___kindof] = ACTIONS(2788), + [anon_sym___nonnull] = ACTIONS(2788), + [anon_sym___nullable] = ACTIONS(2788), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2788), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2788), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2788), + [anon_sym___real] = ACTIONS(2788), + [anon_sym___strong] = ACTIONS(2788), + [anon_sym___unsafe_unretained] = ACTIONS(2788), + [anon_sym___unused] = ACTIONS(2788), + [anon_sym___weak] = ACTIONS(2788), + [anon_sym_alignas] = ACTIONS(2788), + [anon_sym__Alignas] = ACTIONS(2788), + [sym_primitive_type] = ACTIONS(2788), + [anon_sym_enum] = ACTIONS(2788), + [anon_sym_struct] = ACTIONS(2788), + [anon_sym_union] = ACTIONS(2788), + [anon_sym_if] = ACTIONS(2788), + [anon_sym_switch] = ACTIONS(2788), + [anon_sym_case] = ACTIONS(2788), + [anon_sym_default] = ACTIONS(2788), + [anon_sym_while] = ACTIONS(2788), + [anon_sym_do] = ACTIONS(2788), + [anon_sym_for] = ACTIONS(2788), + [anon_sym_in] = ACTIONS(2788), + [anon_sym_return] = ACTIONS(2788), + [anon_sym_break] = ACTIONS(2788), + [anon_sym_continue] = ACTIONS(2788), + [anon_sym_goto] = ACTIONS(2788), + [anon_sym_DASH_DASH] = ACTIONS(2790), + [anon_sym_PLUS_PLUS] = ACTIONS(2790), + [anon_sym_sizeof] = ACTIONS(2788), + [anon_sym___alignof__] = ACTIONS(2788), + [anon_sym___alignof] = ACTIONS(2788), + [anon_sym__alignof] = ACTIONS(2788), + [anon_sym_alignof] = ACTIONS(2788), + [anon_sym__Alignof] = ACTIONS(2788), + [anon_sym_offsetof] = ACTIONS(2788), + [anon_sym__Generic] = ACTIONS(2788), + [anon_sym_asm] = ACTIONS(2788), + [anon_sym___asm__] = ACTIONS(2788), + [anon_sym___asm] = ACTIONS(2788), + [sym_number_literal] = ACTIONS(2790), + [anon_sym_L_SQUOTE] = ACTIONS(2790), + [anon_sym_u_SQUOTE] = ACTIONS(2790), + [anon_sym_U_SQUOTE] = ACTIONS(2790), + [anon_sym_u8_SQUOTE] = ACTIONS(2790), + [anon_sym_SQUOTE] = ACTIONS(2790), + [anon_sym_AT] = ACTIONS(2788), + [anon_sym_DQUOTE] = ACTIONS(2790), + [anon_sym_L_DQUOTE] = ACTIONS(2790), + [anon_sym_u_DQUOTE] = ACTIONS(2790), + [anon_sym_U_DQUOTE] = ACTIONS(2790), + [anon_sym_u8_DQUOTE] = ACTIONS(2790), + [sym_true] = ACTIONS(2788), + [sym_false] = ACTIONS(2788), + [anon_sym_NULL] = ACTIONS(2788), + [anon_sym_nullptr] = ACTIONS(2788), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2788), + [anon_sym___typeof] = ACTIONS(2788), + [anon_sym_typeof] = ACTIONS(2788), + [anon_sym_ATimport] = ACTIONS(2790), + [aux_sym_preproc_undef_token1] = ACTIONS(2788), + [anon_sym_POUND] = ACTIONS(2788), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2788), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2788), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2788), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2788), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2788), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2788), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2788), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2788), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2788), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2788), + [anon_sym_NS_AVAILABLE] = ACTIONS(2788), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2788), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2788), + [anon_sym_API_AVAILABLE] = ACTIONS(2788), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2788), + [anon_sym_API_DEPRECATED] = ACTIONS(2788), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2788), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2788), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2788), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2788), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2788), + [anon_sym___deprecated_msg] = ACTIONS(2788), + [anon_sym___deprecated_enum_msg] = ACTIONS(2788), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2788), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2788), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2788), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2788), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2788), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2788), + [anon_sym_ATprotocol] = ACTIONS(2790), + [anon_sym_ATinterface] = ACTIONS(2790), + [anon_sym_ATimplementation] = ACTIONS(2790), + [anon_sym_ATcompatibility_alias] = ACTIONS(2790), + [anon_sym_ATselector] = ACTIONS(2790), + [anon_sym_ATavailable] = ACTIONS(2790), + [anon_sym___builtin_available] = ACTIONS(2788), + [anon_sym_va_arg] = ACTIONS(2788), + [anon_sym_ATencode] = ACTIONS(2790), + [anon_sym_BOOL] = ACTIONS(2788), + [anon_sym_IMP] = ACTIONS(2788), + [anon_sym_SEL] = ACTIONS(2788), + [anon_sym_Class] = ACTIONS(2788), + [anon_sym_id] = ACTIONS(2788), + }, + [1048] = { + [ts_builtin_sym_end] = ACTIONS(2794), + [sym_identifier] = ACTIONS(2792), + [aux_sym_preproc_include_token1] = ACTIONS(2792), + [aux_sym_preproc_include_token2] = ACTIONS(2792), + [aux_sym_preproc_def_token1] = ACTIONS(2792), + [aux_sym_preproc_if_token1] = ACTIONS(2792), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2792), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2792), + [sym_preproc_directive] = ACTIONS(2792), + [anon_sym_LPAREN2] = ACTIONS(2794), + [anon_sym_BANG] = ACTIONS(2794), + [anon_sym_TILDE] = ACTIONS(2794), + [anon_sym_DASH] = ACTIONS(2792), + [anon_sym_PLUS] = ACTIONS(2792), + [anon_sym_STAR] = ACTIONS(2794), + [anon_sym_CARET] = ACTIONS(2794), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym___extension__] = ACTIONS(2792), + [anon_sym_typedef] = ACTIONS(2792), + [anon_sym_extern] = ACTIONS(2792), + [anon_sym___attribute__] = ACTIONS(2792), + [anon_sym___attribute] = ACTIONS(2792), + [anon_sym_noreturn] = ACTIONS(2792), + [anon_sym_LBRACK] = ACTIONS(2794), + [anon_sym___declspec] = ACTIONS(2792), + [anon_sym___cdecl] = ACTIONS(2792), + [anon_sym___clrcall] = ACTIONS(2792), + [anon_sym___stdcall] = ACTIONS(2792), + [anon_sym___fastcall] = ACTIONS(2792), + [anon_sym___thiscall] = ACTIONS(2792), + [anon_sym___vectorcall] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_signed] = ACTIONS(2792), + [anon_sym_unsigned] = ACTIONS(2792), + [anon_sym_long] = ACTIONS(2792), + [anon_sym_short] = ACTIONS(2792), + [anon_sym_static] = ACTIONS(2792), + [anon_sym_ATautoreleasepool] = ACTIONS(2794), + [anon_sym_auto] = ACTIONS(2792), + [anon_sym_register] = ACTIONS(2792), + [anon_sym_inline] = ACTIONS(2792), + [anon_sym___inline] = ACTIONS(2792), + [anon_sym___inline__] = ACTIONS(2792), + [anon_sym___forceinline] = ACTIONS(2792), + [anon_sym_thread_local] = ACTIONS(2792), + [anon_sym___thread] = ACTIONS(2792), + [anon_sym_CG_EXTERN] = ACTIONS(2792), + [anon_sym_CG_INLINE] = ACTIONS(2792), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2792), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2792), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2792), + [anon_sym_IBOutlet] = ACTIONS(2792), + [anon_sym_IBInspectable] = ACTIONS(2792), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2792), + [anon_sym_NS_INLINE] = ACTIONS(2792), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2792), + [anon_sym_OBJC_EXPORT] = ACTIONS(2792), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2792), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2792), + [anon_sym_const] = ACTIONS(2792), + [anon_sym_constexpr] = ACTIONS(2792), + [anon_sym_volatile] = ACTIONS(2792), + [anon_sym_restrict] = ACTIONS(2792), + [anon_sym___restrict__] = ACTIONS(2792), + [anon_sym__Atomic] = ACTIONS(2792), + [anon_sym__Noreturn] = ACTIONS(2792), + [anon_sym__Nonnull] = ACTIONS(2792), + [anon_sym_nullable] = ACTIONS(2792), + [anon_sym__Complex] = ACTIONS(2792), + [anon_sym__Nullable] = ACTIONS(2792), + [anon_sym__Nullable_result] = ACTIONS(2792), + [anon_sym__Null_unspecified] = ACTIONS(2792), + [anon_sym___autoreleasing] = ACTIONS(2792), + [anon_sym___block] = ACTIONS(2792), + [anon_sym___bridge] = ACTIONS(2792), + [anon_sym___bridge_retained] = ACTIONS(2792), + [anon_sym___bridge_transfer] = ACTIONS(2792), + [anon_sym___complex] = ACTIONS(2792), + [anon_sym___const] = ACTIONS(2792), + [anon_sym___imag] = ACTIONS(2792), + [anon_sym___kindof] = ACTIONS(2792), + [anon_sym___nonnull] = ACTIONS(2792), + [anon_sym___nullable] = ACTIONS(2792), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2792), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2792), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2792), + [anon_sym___real] = ACTIONS(2792), + [anon_sym___strong] = ACTIONS(2792), + [anon_sym___unsafe_unretained] = ACTIONS(2792), + [anon_sym___unused] = ACTIONS(2792), + [anon_sym___weak] = ACTIONS(2792), + [anon_sym_alignas] = ACTIONS(2792), + [anon_sym__Alignas] = ACTIONS(2792), + [sym_primitive_type] = ACTIONS(2792), + [anon_sym_enum] = ACTIONS(2792), + [anon_sym_struct] = ACTIONS(2792), + [anon_sym_union] = ACTIONS(2792), + [anon_sym_if] = ACTIONS(2792), + [anon_sym_switch] = ACTIONS(2792), + [anon_sym_case] = ACTIONS(2792), + [anon_sym_default] = ACTIONS(2792), + [anon_sym_while] = ACTIONS(2792), + [anon_sym_do] = ACTIONS(2792), + [anon_sym_for] = ACTIONS(2792), + [anon_sym_in] = ACTIONS(2792), + [anon_sym_return] = ACTIONS(2792), + [anon_sym_break] = ACTIONS(2792), + [anon_sym_continue] = ACTIONS(2792), + [anon_sym_goto] = ACTIONS(2792), + [anon_sym_DASH_DASH] = ACTIONS(2794), + [anon_sym_PLUS_PLUS] = ACTIONS(2794), + [anon_sym_sizeof] = ACTIONS(2792), + [anon_sym___alignof__] = ACTIONS(2792), + [anon_sym___alignof] = ACTIONS(2792), + [anon_sym__alignof] = ACTIONS(2792), + [anon_sym_alignof] = ACTIONS(2792), + [anon_sym__Alignof] = ACTIONS(2792), + [anon_sym_offsetof] = ACTIONS(2792), + [anon_sym__Generic] = ACTIONS(2792), + [anon_sym_asm] = ACTIONS(2792), + [anon_sym___asm__] = ACTIONS(2792), + [anon_sym___asm] = ACTIONS(2792), + [sym_number_literal] = ACTIONS(2794), + [anon_sym_L_SQUOTE] = ACTIONS(2794), + [anon_sym_u_SQUOTE] = ACTIONS(2794), + [anon_sym_U_SQUOTE] = ACTIONS(2794), + [anon_sym_u8_SQUOTE] = ACTIONS(2794), + [anon_sym_SQUOTE] = ACTIONS(2794), + [anon_sym_AT] = ACTIONS(2792), + [anon_sym_DQUOTE] = ACTIONS(2794), + [anon_sym_L_DQUOTE] = ACTIONS(2794), + [anon_sym_u_DQUOTE] = ACTIONS(2794), + [anon_sym_U_DQUOTE] = ACTIONS(2794), + [anon_sym_u8_DQUOTE] = ACTIONS(2794), + [sym_true] = ACTIONS(2792), + [sym_false] = ACTIONS(2792), + [anon_sym_NULL] = ACTIONS(2792), + [anon_sym_nullptr] = ACTIONS(2792), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2792), + [anon_sym___typeof] = ACTIONS(2792), + [anon_sym_typeof] = ACTIONS(2792), + [anon_sym_ATimport] = ACTIONS(2794), + [aux_sym_preproc_undef_token1] = ACTIONS(2792), + [anon_sym_POUND] = ACTIONS(2792), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2792), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2792), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2792), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2792), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2792), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2792), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2792), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2792), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2792), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2792), + [anon_sym_NS_AVAILABLE] = ACTIONS(2792), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2792), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2792), + [anon_sym_API_AVAILABLE] = ACTIONS(2792), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2792), + [anon_sym_API_DEPRECATED] = ACTIONS(2792), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2792), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2792), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2792), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2792), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2792), + [anon_sym___deprecated_msg] = ACTIONS(2792), + [anon_sym___deprecated_enum_msg] = ACTIONS(2792), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2792), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2792), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2792), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2792), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2792), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2792), + [anon_sym_ATprotocol] = ACTIONS(2794), + [anon_sym_ATinterface] = ACTIONS(2794), + [anon_sym_ATimplementation] = ACTIONS(2794), + [anon_sym_ATcompatibility_alias] = ACTIONS(2794), + [anon_sym_ATselector] = ACTIONS(2794), + [anon_sym_ATavailable] = ACTIONS(2794), + [anon_sym___builtin_available] = ACTIONS(2792), + [anon_sym_va_arg] = ACTIONS(2792), + [anon_sym_ATencode] = ACTIONS(2794), + [anon_sym_BOOL] = ACTIONS(2792), + [anon_sym_IMP] = ACTIONS(2792), + [anon_sym_SEL] = ACTIONS(2792), + [anon_sym_Class] = ACTIONS(2792), + [anon_sym_id] = ACTIONS(2792), + }, + [1049] = { + [ts_builtin_sym_end] = ACTIONS(2626), + [sym_identifier] = ACTIONS(2624), + [aux_sym_preproc_include_token1] = ACTIONS(2624), + [aux_sym_preproc_include_token2] = ACTIONS(2624), + [aux_sym_preproc_def_token1] = ACTIONS(2624), + [aux_sym_preproc_if_token1] = ACTIONS(2624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2624), + [sym_preproc_directive] = ACTIONS(2624), + [anon_sym_LPAREN2] = ACTIONS(2626), + [anon_sym_BANG] = ACTIONS(2626), + [anon_sym_TILDE] = ACTIONS(2626), + [anon_sym_DASH] = ACTIONS(2624), + [anon_sym_PLUS] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2626), + [anon_sym_CARET] = ACTIONS(2626), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_SEMI] = ACTIONS(2626), + [anon_sym___extension__] = ACTIONS(2624), + [anon_sym_typedef] = ACTIONS(2624), + [anon_sym_extern] = ACTIONS(2624), + [anon_sym___attribute__] = ACTIONS(2624), + [anon_sym___attribute] = ACTIONS(2624), + [anon_sym_noreturn] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2626), + [anon_sym___declspec] = ACTIONS(2624), + [anon_sym___cdecl] = ACTIONS(2624), + [anon_sym___clrcall] = ACTIONS(2624), + [anon_sym___stdcall] = ACTIONS(2624), + [anon_sym___fastcall] = ACTIONS(2624), + [anon_sym___thiscall] = ACTIONS(2624), + [anon_sym___vectorcall] = ACTIONS(2624), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_signed] = ACTIONS(2624), + [anon_sym_unsigned] = ACTIONS(2624), + [anon_sym_long] = ACTIONS(2624), + [anon_sym_short] = ACTIONS(2624), + [anon_sym_static] = ACTIONS(2624), + [anon_sym_ATautoreleasepool] = ACTIONS(2626), + [anon_sym_auto] = ACTIONS(2624), + [anon_sym_register] = ACTIONS(2624), + [anon_sym_inline] = ACTIONS(2624), + [anon_sym___inline] = ACTIONS(2624), + [anon_sym___inline__] = ACTIONS(2624), + [anon_sym___forceinline] = ACTIONS(2624), + [anon_sym_thread_local] = ACTIONS(2624), + [anon_sym___thread] = ACTIONS(2624), + [anon_sym_CG_EXTERN] = ACTIONS(2624), + [anon_sym_CG_INLINE] = ACTIONS(2624), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2624), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2624), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2624), + [anon_sym_IBOutlet] = ACTIONS(2624), + [anon_sym_IBInspectable] = ACTIONS(2624), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2624), + [anon_sym_NS_INLINE] = ACTIONS(2624), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2624), + [anon_sym_OBJC_EXPORT] = ACTIONS(2624), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2624), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2624), + [anon_sym_const] = ACTIONS(2624), + [anon_sym_constexpr] = ACTIONS(2624), + [anon_sym_volatile] = ACTIONS(2624), + [anon_sym_restrict] = ACTIONS(2624), + [anon_sym___restrict__] = ACTIONS(2624), + [anon_sym__Atomic] = ACTIONS(2624), + [anon_sym__Noreturn] = ACTIONS(2624), + [anon_sym__Nonnull] = ACTIONS(2624), + [anon_sym_nullable] = ACTIONS(2624), + [anon_sym__Complex] = ACTIONS(2624), + [anon_sym__Nullable] = ACTIONS(2624), + [anon_sym__Nullable_result] = ACTIONS(2624), + [anon_sym__Null_unspecified] = ACTIONS(2624), + [anon_sym___autoreleasing] = ACTIONS(2624), + [anon_sym___block] = ACTIONS(2624), + [anon_sym___bridge] = ACTIONS(2624), + [anon_sym___bridge_retained] = ACTIONS(2624), + [anon_sym___bridge_transfer] = ACTIONS(2624), + [anon_sym___complex] = ACTIONS(2624), + [anon_sym___const] = ACTIONS(2624), + [anon_sym___imag] = ACTIONS(2624), + [anon_sym___kindof] = ACTIONS(2624), + [anon_sym___nonnull] = ACTIONS(2624), + [anon_sym___nullable] = ACTIONS(2624), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2624), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2624), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2624), + [anon_sym___real] = ACTIONS(2624), + [anon_sym___strong] = ACTIONS(2624), + [anon_sym___unsafe_unretained] = ACTIONS(2624), + [anon_sym___unused] = ACTIONS(2624), + [anon_sym___weak] = ACTIONS(2624), + [anon_sym_alignas] = ACTIONS(2624), + [anon_sym__Alignas] = ACTIONS(2624), + [sym_primitive_type] = ACTIONS(2624), + [anon_sym_enum] = ACTIONS(2624), + [anon_sym_struct] = ACTIONS(2624), + [anon_sym_union] = ACTIONS(2624), + [anon_sym_if] = ACTIONS(2624), + [anon_sym_switch] = ACTIONS(2624), + [anon_sym_case] = ACTIONS(2624), + [anon_sym_default] = ACTIONS(2624), + [anon_sym_while] = ACTIONS(2624), + [anon_sym_do] = ACTIONS(2624), + [anon_sym_for] = ACTIONS(2624), + [anon_sym_in] = ACTIONS(2624), + [anon_sym_return] = ACTIONS(2624), + [anon_sym_break] = ACTIONS(2624), + [anon_sym_continue] = ACTIONS(2624), + [anon_sym_goto] = ACTIONS(2624), + [anon_sym_DASH_DASH] = ACTIONS(2626), + [anon_sym_PLUS_PLUS] = ACTIONS(2626), + [anon_sym_sizeof] = ACTIONS(2624), + [anon_sym___alignof__] = ACTIONS(2624), + [anon_sym___alignof] = ACTIONS(2624), + [anon_sym__alignof] = ACTIONS(2624), + [anon_sym_alignof] = ACTIONS(2624), + [anon_sym__Alignof] = ACTIONS(2624), + [anon_sym_offsetof] = ACTIONS(2624), + [anon_sym__Generic] = ACTIONS(2624), + [anon_sym_asm] = ACTIONS(2624), + [anon_sym___asm__] = ACTIONS(2624), + [anon_sym___asm] = ACTIONS(2624), + [sym_number_literal] = ACTIONS(2626), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_AT] = ACTIONS(2624), + [anon_sym_DQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2626), + [anon_sym_u_DQUOTE] = ACTIONS(2626), + [anon_sym_U_DQUOTE] = ACTIONS(2626), + [anon_sym_u8_DQUOTE] = ACTIONS(2626), + [sym_true] = ACTIONS(2624), + [sym_false] = ACTIONS(2624), + [anon_sym_NULL] = ACTIONS(2624), + [anon_sym_nullptr] = ACTIONS(2624), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2624), + [anon_sym___typeof] = ACTIONS(2624), + [anon_sym_typeof] = ACTIONS(2624), + [anon_sym_ATimport] = ACTIONS(2626), + [aux_sym_preproc_undef_token1] = ACTIONS(2624), + [anon_sym_POUND] = ACTIONS(2624), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2624), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2624), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2624), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2624), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2624), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2624), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2624), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2624), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2624), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2624), + [anon_sym_NS_AVAILABLE] = ACTIONS(2624), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2624), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2624), + [anon_sym_API_AVAILABLE] = ACTIONS(2624), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2624), + [anon_sym_API_DEPRECATED] = ACTIONS(2624), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2624), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2624), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2624), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2624), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2624), + [anon_sym___deprecated_msg] = ACTIONS(2624), + [anon_sym___deprecated_enum_msg] = ACTIONS(2624), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2624), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2624), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2624), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2624), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2624), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2624), + [anon_sym_ATprotocol] = ACTIONS(2626), + [anon_sym_ATinterface] = ACTIONS(2626), + [anon_sym_ATimplementation] = ACTIONS(2626), + [anon_sym_ATcompatibility_alias] = ACTIONS(2626), + [anon_sym_ATselector] = ACTIONS(2626), + [anon_sym_ATavailable] = ACTIONS(2626), + [anon_sym___builtin_available] = ACTIONS(2624), + [anon_sym_va_arg] = ACTIONS(2624), + [anon_sym_ATencode] = ACTIONS(2626), + [anon_sym_BOOL] = ACTIONS(2624), + [anon_sym_IMP] = ACTIONS(2624), + [anon_sym_SEL] = ACTIONS(2624), + [anon_sym_Class] = ACTIONS(2624), + [anon_sym_id] = ACTIONS(2624), + }, + [1050] = { + [ts_builtin_sym_end] = ACTIONS(2798), + [sym_identifier] = ACTIONS(2796), + [aux_sym_preproc_include_token1] = ACTIONS(2796), + [aux_sym_preproc_include_token2] = ACTIONS(2796), + [aux_sym_preproc_def_token1] = ACTIONS(2796), + [aux_sym_preproc_if_token1] = ACTIONS(2796), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2796), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2796), + [sym_preproc_directive] = ACTIONS(2796), + [anon_sym_LPAREN2] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_TILDE] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2796), + [anon_sym_PLUS] = ACTIONS(2796), + [anon_sym_STAR] = ACTIONS(2798), + [anon_sym_CARET] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2798), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym___extension__] = ACTIONS(2796), + [anon_sym_typedef] = ACTIONS(2796), + [anon_sym_extern] = ACTIONS(2796), + [anon_sym___attribute__] = ACTIONS(2796), + [anon_sym___attribute] = ACTIONS(2796), + [anon_sym_noreturn] = ACTIONS(2796), + [anon_sym_LBRACK] = ACTIONS(2798), + [anon_sym___declspec] = ACTIONS(2796), + [anon_sym___cdecl] = ACTIONS(2796), + [anon_sym___clrcall] = ACTIONS(2796), + [anon_sym___stdcall] = ACTIONS(2796), + [anon_sym___fastcall] = ACTIONS(2796), + [anon_sym___thiscall] = ACTIONS(2796), + [anon_sym___vectorcall] = ACTIONS(2796), + [anon_sym_LBRACE] = ACTIONS(2798), + [anon_sym_signed] = ACTIONS(2796), + [anon_sym_unsigned] = ACTIONS(2796), + [anon_sym_long] = ACTIONS(2796), + [anon_sym_short] = ACTIONS(2796), + [anon_sym_static] = ACTIONS(2796), + [anon_sym_ATautoreleasepool] = ACTIONS(2798), + [anon_sym_auto] = ACTIONS(2796), + [anon_sym_register] = ACTIONS(2796), + [anon_sym_inline] = ACTIONS(2796), + [anon_sym___inline] = ACTIONS(2796), + [anon_sym___inline__] = ACTIONS(2796), + [anon_sym___forceinline] = ACTIONS(2796), + [anon_sym_thread_local] = ACTIONS(2796), + [anon_sym___thread] = ACTIONS(2796), + [anon_sym_CG_EXTERN] = ACTIONS(2796), + [anon_sym_CG_INLINE] = ACTIONS(2796), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2796), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2796), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2796), + [anon_sym_IBOutlet] = ACTIONS(2796), + [anon_sym_IBInspectable] = ACTIONS(2796), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2796), + [anon_sym_NS_INLINE] = ACTIONS(2796), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2796), + [anon_sym_OBJC_EXPORT] = ACTIONS(2796), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2796), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2796), + [anon_sym_const] = ACTIONS(2796), + [anon_sym_constexpr] = ACTIONS(2796), + [anon_sym_volatile] = ACTIONS(2796), + [anon_sym_restrict] = ACTIONS(2796), + [anon_sym___restrict__] = ACTIONS(2796), + [anon_sym__Atomic] = ACTIONS(2796), + [anon_sym__Noreturn] = ACTIONS(2796), + [anon_sym__Nonnull] = ACTIONS(2796), + [anon_sym_nullable] = ACTIONS(2796), + [anon_sym__Complex] = ACTIONS(2796), + [anon_sym__Nullable] = ACTIONS(2796), + [anon_sym__Nullable_result] = ACTIONS(2796), + [anon_sym__Null_unspecified] = ACTIONS(2796), + [anon_sym___autoreleasing] = ACTIONS(2796), + [anon_sym___block] = ACTIONS(2796), + [anon_sym___bridge] = ACTIONS(2796), + [anon_sym___bridge_retained] = ACTIONS(2796), + [anon_sym___bridge_transfer] = ACTIONS(2796), + [anon_sym___complex] = ACTIONS(2796), + [anon_sym___const] = ACTIONS(2796), + [anon_sym___imag] = ACTIONS(2796), + [anon_sym___kindof] = ACTIONS(2796), + [anon_sym___nonnull] = ACTIONS(2796), + [anon_sym___nullable] = ACTIONS(2796), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2796), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2796), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2796), + [anon_sym___real] = ACTIONS(2796), + [anon_sym___strong] = ACTIONS(2796), + [anon_sym___unsafe_unretained] = ACTIONS(2796), + [anon_sym___unused] = ACTIONS(2796), + [anon_sym___weak] = ACTIONS(2796), + [anon_sym_alignas] = ACTIONS(2796), + [anon_sym__Alignas] = ACTIONS(2796), + [sym_primitive_type] = ACTIONS(2796), + [anon_sym_enum] = ACTIONS(2796), + [anon_sym_struct] = ACTIONS(2796), + [anon_sym_union] = ACTIONS(2796), + [anon_sym_if] = ACTIONS(2796), + [anon_sym_switch] = ACTIONS(2796), + [anon_sym_case] = ACTIONS(2796), + [anon_sym_default] = ACTIONS(2796), + [anon_sym_while] = ACTIONS(2796), + [anon_sym_do] = ACTIONS(2796), + [anon_sym_for] = ACTIONS(2796), + [anon_sym_in] = ACTIONS(2796), + [anon_sym_return] = ACTIONS(2796), + [anon_sym_break] = ACTIONS(2796), + [anon_sym_continue] = ACTIONS(2796), + [anon_sym_goto] = ACTIONS(2796), + [anon_sym_DASH_DASH] = ACTIONS(2798), + [anon_sym_PLUS_PLUS] = ACTIONS(2798), + [anon_sym_sizeof] = ACTIONS(2796), + [anon_sym___alignof__] = ACTIONS(2796), + [anon_sym___alignof] = ACTIONS(2796), + [anon_sym__alignof] = ACTIONS(2796), + [anon_sym_alignof] = ACTIONS(2796), + [anon_sym__Alignof] = ACTIONS(2796), + [anon_sym_offsetof] = ACTIONS(2796), + [anon_sym__Generic] = ACTIONS(2796), + [anon_sym_asm] = ACTIONS(2796), + [anon_sym___asm__] = ACTIONS(2796), + [anon_sym___asm] = ACTIONS(2796), + [sym_number_literal] = ACTIONS(2798), + [anon_sym_L_SQUOTE] = ACTIONS(2798), + [anon_sym_u_SQUOTE] = ACTIONS(2798), + [anon_sym_U_SQUOTE] = ACTIONS(2798), + [anon_sym_u8_SQUOTE] = ACTIONS(2798), + [anon_sym_SQUOTE] = ACTIONS(2798), + [anon_sym_AT] = ACTIONS(2796), + [anon_sym_DQUOTE] = ACTIONS(2798), + [anon_sym_L_DQUOTE] = ACTIONS(2798), + [anon_sym_u_DQUOTE] = ACTIONS(2798), + [anon_sym_U_DQUOTE] = ACTIONS(2798), + [anon_sym_u8_DQUOTE] = ACTIONS(2798), + [sym_true] = ACTIONS(2796), + [sym_false] = ACTIONS(2796), + [anon_sym_NULL] = ACTIONS(2796), + [anon_sym_nullptr] = ACTIONS(2796), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2796), + [anon_sym___typeof] = ACTIONS(2796), + [anon_sym_typeof] = ACTIONS(2796), + [anon_sym_ATimport] = ACTIONS(2798), + [aux_sym_preproc_undef_token1] = ACTIONS(2796), + [anon_sym_POUND] = ACTIONS(2796), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2796), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2796), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2796), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2796), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2796), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2796), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2796), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2796), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2796), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2796), + [anon_sym_NS_AVAILABLE] = ACTIONS(2796), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2796), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2796), + [anon_sym_API_AVAILABLE] = ACTIONS(2796), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2796), + [anon_sym_API_DEPRECATED] = ACTIONS(2796), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2796), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2796), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2796), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2796), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2796), + [anon_sym___deprecated_msg] = ACTIONS(2796), + [anon_sym___deprecated_enum_msg] = ACTIONS(2796), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2796), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2796), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2796), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2796), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2796), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2796), + [anon_sym_ATprotocol] = ACTIONS(2798), + [anon_sym_ATinterface] = ACTIONS(2798), + [anon_sym_ATimplementation] = ACTIONS(2798), + [anon_sym_ATcompatibility_alias] = ACTIONS(2798), + [anon_sym_ATselector] = ACTIONS(2798), + [anon_sym_ATavailable] = ACTIONS(2798), + [anon_sym___builtin_available] = ACTIONS(2796), + [anon_sym_va_arg] = ACTIONS(2796), + [anon_sym_ATencode] = ACTIONS(2798), + [anon_sym_BOOL] = ACTIONS(2796), + [anon_sym_IMP] = ACTIONS(2796), + [anon_sym_SEL] = ACTIONS(2796), + [anon_sym_Class] = ACTIONS(2796), + [anon_sym_id] = ACTIONS(2796), + }, + [1051] = { + [ts_builtin_sym_end] = ACTIONS(2802), + [sym_identifier] = ACTIONS(2800), + [aux_sym_preproc_include_token1] = ACTIONS(2800), + [aux_sym_preproc_include_token2] = ACTIONS(2800), + [aux_sym_preproc_def_token1] = ACTIONS(2800), + [aux_sym_preproc_if_token1] = ACTIONS(2800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2800), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2800), + [sym_preproc_directive] = ACTIONS(2800), + [anon_sym_LPAREN2] = ACTIONS(2802), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_TILDE] = ACTIONS(2802), + [anon_sym_DASH] = ACTIONS(2800), + [anon_sym_PLUS] = ACTIONS(2800), + [anon_sym_STAR] = ACTIONS(2802), + [anon_sym_CARET] = ACTIONS(2802), + [anon_sym_AMP] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym___extension__] = ACTIONS(2800), + [anon_sym_typedef] = ACTIONS(2800), + [anon_sym_extern] = ACTIONS(2800), + [anon_sym___attribute__] = ACTIONS(2800), + [anon_sym___attribute] = ACTIONS(2800), + [anon_sym_noreturn] = ACTIONS(2800), + [anon_sym_LBRACK] = ACTIONS(2802), + [anon_sym___declspec] = ACTIONS(2800), + [anon_sym___cdecl] = ACTIONS(2800), + [anon_sym___clrcall] = ACTIONS(2800), + [anon_sym___stdcall] = ACTIONS(2800), + [anon_sym___fastcall] = ACTIONS(2800), + [anon_sym___thiscall] = ACTIONS(2800), + [anon_sym___vectorcall] = ACTIONS(2800), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_signed] = ACTIONS(2800), + [anon_sym_unsigned] = ACTIONS(2800), + [anon_sym_long] = ACTIONS(2800), + [anon_sym_short] = ACTIONS(2800), + [anon_sym_static] = ACTIONS(2800), + [anon_sym_ATautoreleasepool] = ACTIONS(2802), + [anon_sym_auto] = ACTIONS(2800), + [anon_sym_register] = ACTIONS(2800), + [anon_sym_inline] = ACTIONS(2800), + [anon_sym___inline] = ACTIONS(2800), + [anon_sym___inline__] = ACTIONS(2800), + [anon_sym___forceinline] = ACTIONS(2800), + [anon_sym_thread_local] = ACTIONS(2800), + [anon_sym___thread] = ACTIONS(2800), + [anon_sym_CG_EXTERN] = ACTIONS(2800), + [anon_sym_CG_INLINE] = ACTIONS(2800), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2800), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2800), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2800), + [anon_sym_IBOutlet] = ACTIONS(2800), + [anon_sym_IBInspectable] = ACTIONS(2800), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2800), + [anon_sym_NS_INLINE] = ACTIONS(2800), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2800), + [anon_sym_OBJC_EXPORT] = ACTIONS(2800), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2800), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2800), + [anon_sym_const] = ACTIONS(2800), + [anon_sym_constexpr] = ACTIONS(2800), + [anon_sym_volatile] = ACTIONS(2800), + [anon_sym_restrict] = ACTIONS(2800), + [anon_sym___restrict__] = ACTIONS(2800), + [anon_sym__Atomic] = ACTIONS(2800), + [anon_sym__Noreturn] = ACTIONS(2800), + [anon_sym__Nonnull] = ACTIONS(2800), + [anon_sym_nullable] = ACTIONS(2800), + [anon_sym__Complex] = ACTIONS(2800), + [anon_sym__Nullable] = ACTIONS(2800), + [anon_sym__Nullable_result] = ACTIONS(2800), + [anon_sym__Null_unspecified] = ACTIONS(2800), + [anon_sym___autoreleasing] = ACTIONS(2800), + [anon_sym___block] = ACTIONS(2800), + [anon_sym___bridge] = ACTIONS(2800), + [anon_sym___bridge_retained] = ACTIONS(2800), + [anon_sym___bridge_transfer] = ACTIONS(2800), + [anon_sym___complex] = ACTIONS(2800), + [anon_sym___const] = ACTIONS(2800), + [anon_sym___imag] = ACTIONS(2800), + [anon_sym___kindof] = ACTIONS(2800), + [anon_sym___nonnull] = ACTIONS(2800), + [anon_sym___nullable] = ACTIONS(2800), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2800), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2800), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2800), + [anon_sym___real] = ACTIONS(2800), + [anon_sym___strong] = ACTIONS(2800), + [anon_sym___unsafe_unretained] = ACTIONS(2800), + [anon_sym___unused] = ACTIONS(2800), + [anon_sym___weak] = ACTIONS(2800), + [anon_sym_alignas] = ACTIONS(2800), + [anon_sym__Alignas] = ACTIONS(2800), + [sym_primitive_type] = ACTIONS(2800), + [anon_sym_enum] = ACTIONS(2800), + [anon_sym_struct] = ACTIONS(2800), + [anon_sym_union] = ACTIONS(2800), + [anon_sym_if] = ACTIONS(2800), + [anon_sym_switch] = ACTIONS(2800), + [anon_sym_case] = ACTIONS(2800), + [anon_sym_default] = ACTIONS(2800), + [anon_sym_while] = ACTIONS(2800), + [anon_sym_do] = ACTIONS(2800), + [anon_sym_for] = ACTIONS(2800), + [anon_sym_in] = ACTIONS(2800), + [anon_sym_return] = ACTIONS(2800), + [anon_sym_break] = ACTIONS(2800), + [anon_sym_continue] = ACTIONS(2800), + [anon_sym_goto] = ACTIONS(2800), + [anon_sym_DASH_DASH] = ACTIONS(2802), + [anon_sym_PLUS_PLUS] = ACTIONS(2802), + [anon_sym_sizeof] = ACTIONS(2800), + [anon_sym___alignof__] = ACTIONS(2800), + [anon_sym___alignof] = ACTIONS(2800), + [anon_sym__alignof] = ACTIONS(2800), + [anon_sym_alignof] = ACTIONS(2800), + [anon_sym__Alignof] = ACTIONS(2800), + [anon_sym_offsetof] = ACTIONS(2800), + [anon_sym__Generic] = ACTIONS(2800), + [anon_sym_asm] = ACTIONS(2800), + [anon_sym___asm__] = ACTIONS(2800), + [anon_sym___asm] = ACTIONS(2800), + [sym_number_literal] = ACTIONS(2802), + [anon_sym_L_SQUOTE] = ACTIONS(2802), + [anon_sym_u_SQUOTE] = ACTIONS(2802), + [anon_sym_U_SQUOTE] = ACTIONS(2802), + [anon_sym_u8_SQUOTE] = ACTIONS(2802), + [anon_sym_SQUOTE] = ACTIONS(2802), + [anon_sym_AT] = ACTIONS(2800), + [anon_sym_DQUOTE] = ACTIONS(2802), + [anon_sym_L_DQUOTE] = ACTIONS(2802), + [anon_sym_u_DQUOTE] = ACTIONS(2802), + [anon_sym_U_DQUOTE] = ACTIONS(2802), + [anon_sym_u8_DQUOTE] = ACTIONS(2802), + [sym_true] = ACTIONS(2800), + [sym_false] = ACTIONS(2800), + [anon_sym_NULL] = ACTIONS(2800), + [anon_sym_nullptr] = ACTIONS(2800), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2800), + [anon_sym___typeof] = ACTIONS(2800), + [anon_sym_typeof] = ACTIONS(2800), + [anon_sym_ATimport] = ACTIONS(2802), + [aux_sym_preproc_undef_token1] = ACTIONS(2800), + [anon_sym_POUND] = ACTIONS(2800), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2800), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2800), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2800), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2800), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2800), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2800), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2800), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2800), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2800), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2800), + [anon_sym_NS_AVAILABLE] = ACTIONS(2800), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2800), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2800), + [anon_sym_API_AVAILABLE] = ACTIONS(2800), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2800), + [anon_sym_API_DEPRECATED] = ACTIONS(2800), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2800), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2800), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2800), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2800), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2800), + [anon_sym___deprecated_msg] = ACTIONS(2800), + [anon_sym___deprecated_enum_msg] = ACTIONS(2800), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2800), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2800), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2800), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2800), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2800), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2800), + [anon_sym_ATprotocol] = ACTIONS(2802), + [anon_sym_ATinterface] = ACTIONS(2802), + [anon_sym_ATimplementation] = ACTIONS(2802), + [anon_sym_ATcompatibility_alias] = ACTIONS(2802), + [anon_sym_ATselector] = ACTIONS(2802), + [anon_sym_ATavailable] = ACTIONS(2802), + [anon_sym___builtin_available] = ACTIONS(2800), + [anon_sym_va_arg] = ACTIONS(2800), + [anon_sym_ATencode] = ACTIONS(2802), + [anon_sym_BOOL] = ACTIONS(2800), + [anon_sym_IMP] = ACTIONS(2800), + [anon_sym_SEL] = ACTIONS(2800), + [anon_sym_Class] = ACTIONS(2800), + [anon_sym_id] = ACTIONS(2800), + }, + [1052] = { + [ts_builtin_sym_end] = ACTIONS(2630), + [sym_identifier] = ACTIONS(2628), + [aux_sym_preproc_include_token1] = ACTIONS(2628), + [aux_sym_preproc_include_token2] = ACTIONS(2628), + [aux_sym_preproc_def_token1] = ACTIONS(2628), + [aux_sym_preproc_if_token1] = ACTIONS(2628), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2628), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2628), + [sym_preproc_directive] = ACTIONS(2628), + [anon_sym_LPAREN2] = ACTIONS(2630), + [anon_sym_BANG] = ACTIONS(2630), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2628), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_CARET] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2630), + [anon_sym_SEMI] = ACTIONS(2630), + [anon_sym___extension__] = ACTIONS(2628), + [anon_sym_typedef] = ACTIONS(2628), + [anon_sym_extern] = ACTIONS(2628), + [anon_sym___attribute__] = ACTIONS(2628), + [anon_sym___attribute] = ACTIONS(2628), + [anon_sym_noreturn] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2630), + [anon_sym___declspec] = ACTIONS(2628), + [anon_sym___cdecl] = ACTIONS(2628), + [anon_sym___clrcall] = ACTIONS(2628), + [anon_sym___stdcall] = ACTIONS(2628), + [anon_sym___fastcall] = ACTIONS(2628), + [anon_sym___thiscall] = ACTIONS(2628), + [anon_sym___vectorcall] = ACTIONS(2628), + [anon_sym_LBRACE] = ACTIONS(2630), + [anon_sym_signed] = ACTIONS(2628), + [anon_sym_unsigned] = ACTIONS(2628), + [anon_sym_long] = ACTIONS(2628), + [anon_sym_short] = ACTIONS(2628), + [anon_sym_static] = ACTIONS(2628), + [anon_sym_ATautoreleasepool] = ACTIONS(2630), + [anon_sym_auto] = ACTIONS(2628), + [anon_sym_register] = ACTIONS(2628), + [anon_sym_inline] = ACTIONS(2628), + [anon_sym___inline] = ACTIONS(2628), + [anon_sym___inline__] = ACTIONS(2628), + [anon_sym___forceinline] = ACTIONS(2628), + [anon_sym_thread_local] = ACTIONS(2628), + [anon_sym___thread] = ACTIONS(2628), + [anon_sym_CG_EXTERN] = ACTIONS(2628), + [anon_sym_CG_INLINE] = ACTIONS(2628), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2628), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2628), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2628), + [anon_sym_IBOutlet] = ACTIONS(2628), + [anon_sym_IBInspectable] = ACTIONS(2628), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2628), + [anon_sym_NS_INLINE] = ACTIONS(2628), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2628), + [anon_sym_OBJC_EXPORT] = ACTIONS(2628), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2628), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2628), + [anon_sym_const] = ACTIONS(2628), + [anon_sym_constexpr] = ACTIONS(2628), + [anon_sym_volatile] = ACTIONS(2628), + [anon_sym_restrict] = ACTIONS(2628), + [anon_sym___restrict__] = ACTIONS(2628), + [anon_sym__Atomic] = ACTIONS(2628), + [anon_sym__Noreturn] = ACTIONS(2628), + [anon_sym__Nonnull] = ACTIONS(2628), + [anon_sym_nullable] = ACTIONS(2628), + [anon_sym__Complex] = ACTIONS(2628), + [anon_sym__Nullable] = ACTIONS(2628), + [anon_sym__Nullable_result] = ACTIONS(2628), + [anon_sym__Null_unspecified] = ACTIONS(2628), + [anon_sym___autoreleasing] = ACTIONS(2628), + [anon_sym___block] = ACTIONS(2628), + [anon_sym___bridge] = ACTIONS(2628), + [anon_sym___bridge_retained] = ACTIONS(2628), + [anon_sym___bridge_transfer] = ACTIONS(2628), + [anon_sym___complex] = ACTIONS(2628), + [anon_sym___const] = ACTIONS(2628), + [anon_sym___imag] = ACTIONS(2628), + [anon_sym___kindof] = ACTIONS(2628), + [anon_sym___nonnull] = ACTIONS(2628), + [anon_sym___nullable] = ACTIONS(2628), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2628), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2628), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2628), + [anon_sym___real] = ACTIONS(2628), + [anon_sym___strong] = ACTIONS(2628), + [anon_sym___unsafe_unretained] = ACTIONS(2628), + [anon_sym___unused] = ACTIONS(2628), + [anon_sym___weak] = ACTIONS(2628), + [anon_sym_alignas] = ACTIONS(2628), + [anon_sym__Alignas] = ACTIONS(2628), + [sym_primitive_type] = ACTIONS(2628), + [anon_sym_enum] = ACTIONS(2628), + [anon_sym_struct] = ACTIONS(2628), + [anon_sym_union] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_switch] = ACTIONS(2628), + [anon_sym_case] = ACTIONS(2628), + [anon_sym_default] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [anon_sym_do] = ACTIONS(2628), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_in] = ACTIONS(2628), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_break] = ACTIONS(2628), + [anon_sym_continue] = ACTIONS(2628), + [anon_sym_goto] = ACTIONS(2628), + [anon_sym_DASH_DASH] = ACTIONS(2630), + [anon_sym_PLUS_PLUS] = ACTIONS(2630), + [anon_sym_sizeof] = ACTIONS(2628), + [anon_sym___alignof__] = ACTIONS(2628), + [anon_sym___alignof] = ACTIONS(2628), + [anon_sym__alignof] = ACTIONS(2628), + [anon_sym_alignof] = ACTIONS(2628), + [anon_sym__Alignof] = ACTIONS(2628), + [anon_sym_offsetof] = ACTIONS(2628), + [anon_sym__Generic] = ACTIONS(2628), + [anon_sym_asm] = ACTIONS(2628), + [anon_sym___asm__] = ACTIONS(2628), + [anon_sym___asm] = ACTIONS(2628), + [sym_number_literal] = ACTIONS(2630), + [anon_sym_L_SQUOTE] = ACTIONS(2630), + [anon_sym_u_SQUOTE] = ACTIONS(2630), + [anon_sym_U_SQUOTE] = ACTIONS(2630), + [anon_sym_u8_SQUOTE] = ACTIONS(2630), + [anon_sym_SQUOTE] = ACTIONS(2630), + [anon_sym_AT] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2630), + [anon_sym_L_DQUOTE] = ACTIONS(2630), + [anon_sym_u_DQUOTE] = ACTIONS(2630), + [anon_sym_U_DQUOTE] = ACTIONS(2630), + [anon_sym_u8_DQUOTE] = ACTIONS(2630), + [sym_true] = ACTIONS(2628), + [sym_false] = ACTIONS(2628), + [anon_sym_NULL] = ACTIONS(2628), + [anon_sym_nullptr] = ACTIONS(2628), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2628), + [anon_sym___typeof] = ACTIONS(2628), + [anon_sym_typeof] = ACTIONS(2628), + [anon_sym_ATimport] = ACTIONS(2630), + [aux_sym_preproc_undef_token1] = ACTIONS(2628), + [anon_sym_POUND] = ACTIONS(2628), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2628), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2628), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2628), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2628), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2628), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2628), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2628), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2628), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2628), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2628), + [anon_sym_NS_AVAILABLE] = ACTIONS(2628), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2628), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2628), + [anon_sym_API_AVAILABLE] = ACTIONS(2628), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2628), + [anon_sym_API_DEPRECATED] = ACTIONS(2628), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2628), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2628), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2628), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2628), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2628), + [anon_sym___deprecated_msg] = ACTIONS(2628), + [anon_sym___deprecated_enum_msg] = ACTIONS(2628), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2628), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2628), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2628), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2628), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2628), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2628), + [anon_sym_ATprotocol] = ACTIONS(2630), + [anon_sym_ATinterface] = ACTIONS(2630), + [anon_sym_ATimplementation] = ACTIONS(2630), + [anon_sym_ATcompatibility_alias] = ACTIONS(2630), + [anon_sym_ATselector] = ACTIONS(2630), + [anon_sym_ATavailable] = ACTIONS(2630), + [anon_sym___builtin_available] = ACTIONS(2628), + [anon_sym_va_arg] = ACTIONS(2628), + [anon_sym_ATencode] = ACTIONS(2630), + [anon_sym_BOOL] = ACTIONS(2628), + [anon_sym_IMP] = ACTIONS(2628), + [anon_sym_SEL] = ACTIONS(2628), + [anon_sym_Class] = ACTIONS(2628), + [anon_sym_id] = ACTIONS(2628), + }, + [1053] = { + [ts_builtin_sym_end] = ACTIONS(2460), + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_include_token1] = ACTIONS(2458), + [aux_sym_preproc_include_token2] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2460), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2460), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_ATautoreleasepool] = ACTIONS(2460), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_goto] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2460), + [anon_sym_sizeof] = ACTIONS(2458), + [anon_sym___alignof__] = ACTIONS(2458), + [anon_sym___alignof] = ACTIONS(2458), + [anon_sym__alignof] = ACTIONS(2458), + [anon_sym_alignof] = ACTIONS(2458), + [anon_sym__Alignof] = ACTIONS(2458), + [anon_sym_offsetof] = ACTIONS(2458), + [anon_sym__Generic] = ACTIONS(2458), + [anon_sym_asm] = ACTIONS(2458), + [anon_sym___asm__] = ACTIONS(2458), + [anon_sym___asm] = ACTIONS(2458), + [sym_number_literal] = ACTIONS(2460), + [anon_sym_L_SQUOTE] = ACTIONS(2460), + [anon_sym_u_SQUOTE] = ACTIONS(2460), + [anon_sym_U_SQUOTE] = ACTIONS(2460), + [anon_sym_u8_SQUOTE] = ACTIONS(2460), + [anon_sym_SQUOTE] = ACTIONS(2460), + [anon_sym_AT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_L_DQUOTE] = ACTIONS(2460), + [anon_sym_u_DQUOTE] = ACTIONS(2460), + [anon_sym_U_DQUOTE] = ACTIONS(2460), + [anon_sym_u8_DQUOTE] = ACTIONS(2460), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [anon_sym_NULL] = ACTIONS(2458), + [anon_sym_nullptr] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_ATimport] = ACTIONS(2460), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_POUND] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATprotocol] = ACTIONS(2460), + [anon_sym_ATinterface] = ACTIONS(2460), + [anon_sym_ATimplementation] = ACTIONS(2460), + [anon_sym_ATcompatibility_alias] = ACTIONS(2460), + [anon_sym_ATselector] = ACTIONS(2460), + [anon_sym_ATavailable] = ACTIONS(2460), + [anon_sym___builtin_available] = ACTIONS(2458), + [anon_sym_va_arg] = ACTIONS(2458), + [anon_sym_ATencode] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [1054] = { + [ts_builtin_sym_end] = ACTIONS(2460), + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_include_token1] = ACTIONS(2458), + [aux_sym_preproc_include_token2] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2460), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2460), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_ATautoreleasepool] = ACTIONS(2460), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_goto] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2460), + [anon_sym_sizeof] = ACTIONS(2458), + [anon_sym___alignof__] = ACTIONS(2458), + [anon_sym___alignof] = ACTIONS(2458), + [anon_sym__alignof] = ACTIONS(2458), + [anon_sym_alignof] = ACTIONS(2458), + [anon_sym__Alignof] = ACTIONS(2458), + [anon_sym_offsetof] = ACTIONS(2458), + [anon_sym__Generic] = ACTIONS(2458), + [anon_sym_asm] = ACTIONS(2458), + [anon_sym___asm__] = ACTIONS(2458), + [anon_sym___asm] = ACTIONS(2458), + [sym_number_literal] = ACTIONS(2460), + [anon_sym_L_SQUOTE] = ACTIONS(2460), + [anon_sym_u_SQUOTE] = ACTIONS(2460), + [anon_sym_U_SQUOTE] = ACTIONS(2460), + [anon_sym_u8_SQUOTE] = ACTIONS(2460), + [anon_sym_SQUOTE] = ACTIONS(2460), + [anon_sym_AT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_L_DQUOTE] = ACTIONS(2460), + [anon_sym_u_DQUOTE] = ACTIONS(2460), + [anon_sym_U_DQUOTE] = ACTIONS(2460), + [anon_sym_u8_DQUOTE] = ACTIONS(2460), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [anon_sym_NULL] = ACTIONS(2458), + [anon_sym_nullptr] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_ATimport] = ACTIONS(2460), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_POUND] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATprotocol] = ACTIONS(2460), + [anon_sym_ATinterface] = ACTIONS(2460), + [anon_sym_ATimplementation] = ACTIONS(2460), + [anon_sym_ATcompatibility_alias] = ACTIONS(2460), + [anon_sym_ATselector] = ACTIONS(2460), + [anon_sym_ATavailable] = ACTIONS(2460), + [anon_sym___builtin_available] = ACTIONS(2458), + [anon_sym_va_arg] = ACTIONS(2458), + [anon_sym_ATencode] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [1055] = { + [ts_builtin_sym_end] = ACTIONS(2460), + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_include_token1] = ACTIONS(2458), + [aux_sym_preproc_include_token2] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2460), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2460), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_ATautoreleasepool] = ACTIONS(2460), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_goto] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2460), + [anon_sym_sizeof] = ACTIONS(2458), + [anon_sym___alignof__] = ACTIONS(2458), + [anon_sym___alignof] = ACTIONS(2458), + [anon_sym__alignof] = ACTIONS(2458), + [anon_sym_alignof] = ACTIONS(2458), + [anon_sym__Alignof] = ACTIONS(2458), + [anon_sym_offsetof] = ACTIONS(2458), + [anon_sym__Generic] = ACTIONS(2458), + [anon_sym_asm] = ACTIONS(2458), + [anon_sym___asm__] = ACTIONS(2458), + [anon_sym___asm] = ACTIONS(2458), + [sym_number_literal] = ACTIONS(2460), + [anon_sym_L_SQUOTE] = ACTIONS(2460), + [anon_sym_u_SQUOTE] = ACTIONS(2460), + [anon_sym_U_SQUOTE] = ACTIONS(2460), + [anon_sym_u8_SQUOTE] = ACTIONS(2460), + [anon_sym_SQUOTE] = ACTIONS(2460), + [anon_sym_AT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_L_DQUOTE] = ACTIONS(2460), + [anon_sym_u_DQUOTE] = ACTIONS(2460), + [anon_sym_U_DQUOTE] = ACTIONS(2460), + [anon_sym_u8_DQUOTE] = ACTIONS(2460), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [anon_sym_NULL] = ACTIONS(2458), + [anon_sym_nullptr] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_ATimport] = ACTIONS(2460), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_POUND] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATprotocol] = ACTIONS(2460), + [anon_sym_ATinterface] = ACTIONS(2460), + [anon_sym_ATimplementation] = ACTIONS(2460), + [anon_sym_ATcompatibility_alias] = ACTIONS(2460), + [anon_sym_ATselector] = ACTIONS(2460), + [anon_sym_ATavailable] = ACTIONS(2460), + [anon_sym___builtin_available] = ACTIONS(2458), + [anon_sym_va_arg] = ACTIONS(2458), + [anon_sym_ATencode] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [1056] = { + [ts_builtin_sym_end] = ACTIONS(2810), + [sym_identifier] = ACTIONS(2808), + [aux_sym_preproc_include_token1] = ACTIONS(2808), + [aux_sym_preproc_include_token2] = ACTIONS(2808), + [aux_sym_preproc_def_token1] = ACTIONS(2808), + [aux_sym_preproc_if_token1] = ACTIONS(2808), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2808), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2808), + [sym_preproc_directive] = ACTIONS(2808), + [anon_sym_LPAREN2] = ACTIONS(2810), + [anon_sym_BANG] = ACTIONS(2810), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2808), + [anon_sym_STAR] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym___extension__] = ACTIONS(2808), + [anon_sym_typedef] = ACTIONS(2808), + [anon_sym_extern] = ACTIONS(2808), + [anon_sym___attribute__] = ACTIONS(2808), + [anon_sym___attribute] = ACTIONS(2808), + [anon_sym_noreturn] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2810), + [anon_sym___declspec] = ACTIONS(2808), + [anon_sym___cdecl] = ACTIONS(2808), + [anon_sym___clrcall] = ACTIONS(2808), + [anon_sym___stdcall] = ACTIONS(2808), + [anon_sym___fastcall] = ACTIONS(2808), + [anon_sym___thiscall] = ACTIONS(2808), + [anon_sym___vectorcall] = ACTIONS(2808), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_signed] = ACTIONS(2808), + [anon_sym_unsigned] = ACTIONS(2808), + [anon_sym_long] = ACTIONS(2808), + [anon_sym_short] = ACTIONS(2808), + [anon_sym_static] = ACTIONS(2808), + [anon_sym_ATautoreleasepool] = ACTIONS(2810), + [anon_sym_auto] = ACTIONS(2808), + [anon_sym_register] = ACTIONS(2808), + [anon_sym_inline] = ACTIONS(2808), + [anon_sym___inline] = ACTIONS(2808), + [anon_sym___inline__] = ACTIONS(2808), + [anon_sym___forceinline] = ACTIONS(2808), + [anon_sym_thread_local] = ACTIONS(2808), + [anon_sym___thread] = ACTIONS(2808), + [anon_sym_CG_EXTERN] = ACTIONS(2808), + [anon_sym_CG_INLINE] = ACTIONS(2808), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2808), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2808), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2808), + [anon_sym_IBOutlet] = ACTIONS(2808), + [anon_sym_IBInspectable] = ACTIONS(2808), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2808), + [anon_sym_NS_INLINE] = ACTIONS(2808), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2808), + [anon_sym_OBJC_EXPORT] = ACTIONS(2808), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2808), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2808), + [anon_sym_const] = ACTIONS(2808), + [anon_sym_constexpr] = ACTIONS(2808), + [anon_sym_volatile] = ACTIONS(2808), + [anon_sym_restrict] = ACTIONS(2808), + [anon_sym___restrict__] = ACTIONS(2808), + [anon_sym__Atomic] = ACTIONS(2808), + [anon_sym__Noreturn] = ACTIONS(2808), + [anon_sym__Nonnull] = ACTIONS(2808), + [anon_sym_nullable] = ACTIONS(2808), + [anon_sym__Complex] = ACTIONS(2808), + [anon_sym__Nullable] = ACTIONS(2808), + [anon_sym__Nullable_result] = ACTIONS(2808), + [anon_sym__Null_unspecified] = ACTIONS(2808), + [anon_sym___autoreleasing] = ACTIONS(2808), + [anon_sym___block] = ACTIONS(2808), + [anon_sym___bridge] = ACTIONS(2808), + [anon_sym___bridge_retained] = ACTIONS(2808), + [anon_sym___bridge_transfer] = ACTIONS(2808), + [anon_sym___complex] = ACTIONS(2808), + [anon_sym___const] = ACTIONS(2808), + [anon_sym___imag] = ACTIONS(2808), + [anon_sym___kindof] = ACTIONS(2808), + [anon_sym___nonnull] = ACTIONS(2808), + [anon_sym___nullable] = ACTIONS(2808), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2808), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2808), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2808), + [anon_sym___real] = ACTIONS(2808), + [anon_sym___strong] = ACTIONS(2808), + [anon_sym___unsafe_unretained] = ACTIONS(2808), + [anon_sym___unused] = ACTIONS(2808), + [anon_sym___weak] = ACTIONS(2808), + [anon_sym_alignas] = ACTIONS(2808), + [anon_sym__Alignas] = ACTIONS(2808), + [sym_primitive_type] = ACTIONS(2808), + [anon_sym_enum] = ACTIONS(2808), + [anon_sym_struct] = ACTIONS(2808), + [anon_sym_union] = ACTIONS(2808), + [anon_sym_if] = ACTIONS(2808), + [anon_sym_switch] = ACTIONS(2808), + [anon_sym_case] = ACTIONS(2808), + [anon_sym_default] = ACTIONS(2808), + [anon_sym_while] = ACTIONS(2808), + [anon_sym_do] = ACTIONS(2808), + [anon_sym_for] = ACTIONS(2808), + [anon_sym_in] = ACTIONS(2808), + [anon_sym_return] = ACTIONS(2808), + [anon_sym_break] = ACTIONS(2808), + [anon_sym_continue] = ACTIONS(2808), + [anon_sym_goto] = ACTIONS(2808), + [anon_sym_DASH_DASH] = ACTIONS(2810), + [anon_sym_PLUS_PLUS] = ACTIONS(2810), + [anon_sym_sizeof] = ACTIONS(2808), + [anon_sym___alignof__] = ACTIONS(2808), + [anon_sym___alignof] = ACTIONS(2808), + [anon_sym__alignof] = ACTIONS(2808), + [anon_sym_alignof] = ACTIONS(2808), + [anon_sym__Alignof] = ACTIONS(2808), + [anon_sym_offsetof] = ACTIONS(2808), + [anon_sym__Generic] = ACTIONS(2808), + [anon_sym_asm] = ACTIONS(2808), + [anon_sym___asm__] = ACTIONS(2808), + [anon_sym___asm] = ACTIONS(2808), + [sym_number_literal] = ACTIONS(2810), + [anon_sym_L_SQUOTE] = ACTIONS(2810), + [anon_sym_u_SQUOTE] = ACTIONS(2810), + [anon_sym_U_SQUOTE] = ACTIONS(2810), + [anon_sym_u8_SQUOTE] = ACTIONS(2810), + [anon_sym_SQUOTE] = ACTIONS(2810), + [anon_sym_AT] = ACTIONS(2808), + [anon_sym_DQUOTE] = ACTIONS(2810), + [anon_sym_L_DQUOTE] = ACTIONS(2810), + [anon_sym_u_DQUOTE] = ACTIONS(2810), + [anon_sym_U_DQUOTE] = ACTIONS(2810), + [anon_sym_u8_DQUOTE] = ACTIONS(2810), + [sym_true] = ACTIONS(2808), + [sym_false] = ACTIONS(2808), + [anon_sym_NULL] = ACTIONS(2808), + [anon_sym_nullptr] = ACTIONS(2808), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2808), + [anon_sym___typeof] = ACTIONS(2808), + [anon_sym_typeof] = ACTIONS(2808), + [anon_sym_ATimport] = ACTIONS(2810), + [aux_sym_preproc_undef_token1] = ACTIONS(2808), + [anon_sym_POUND] = ACTIONS(2808), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2808), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2808), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2808), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2808), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2808), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2808), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2808), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2808), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2808), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2808), + [anon_sym_NS_AVAILABLE] = ACTIONS(2808), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2808), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2808), + [anon_sym_API_AVAILABLE] = ACTIONS(2808), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2808), + [anon_sym_API_DEPRECATED] = ACTIONS(2808), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2808), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2808), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2808), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2808), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2808), + [anon_sym___deprecated_msg] = ACTIONS(2808), + [anon_sym___deprecated_enum_msg] = ACTIONS(2808), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2808), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2808), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2808), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2808), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2808), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2808), + [anon_sym_ATprotocol] = ACTIONS(2810), + [anon_sym_ATinterface] = ACTIONS(2810), + [anon_sym_ATimplementation] = ACTIONS(2810), + [anon_sym_ATcompatibility_alias] = ACTIONS(2810), + [anon_sym_ATselector] = ACTIONS(2810), + [anon_sym_ATavailable] = ACTIONS(2810), + [anon_sym___builtin_available] = ACTIONS(2808), + [anon_sym_va_arg] = ACTIONS(2808), + [anon_sym_ATencode] = ACTIONS(2810), + [anon_sym_BOOL] = ACTIONS(2808), + [anon_sym_IMP] = ACTIONS(2808), + [anon_sym_SEL] = ACTIONS(2808), + [anon_sym_Class] = ACTIONS(2808), + [anon_sym_id] = ACTIONS(2808), + }, + [1057] = { + [ts_builtin_sym_end] = ACTIONS(2814), + [sym_identifier] = ACTIONS(2812), + [aux_sym_preproc_include_token1] = ACTIONS(2812), + [aux_sym_preproc_include_token2] = ACTIONS(2812), + [aux_sym_preproc_def_token1] = ACTIONS(2812), + [aux_sym_preproc_if_token1] = ACTIONS(2812), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2812), + [sym_preproc_directive] = ACTIONS(2812), + [anon_sym_LPAREN2] = ACTIONS(2814), + [anon_sym_BANG] = ACTIONS(2814), + [anon_sym_TILDE] = ACTIONS(2814), + [anon_sym_DASH] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_CARET] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2814), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym___extension__] = ACTIONS(2812), + [anon_sym_typedef] = ACTIONS(2812), + [anon_sym_extern] = ACTIONS(2812), + [anon_sym___attribute__] = ACTIONS(2812), + [anon_sym___attribute] = ACTIONS(2812), + [anon_sym_noreturn] = ACTIONS(2812), + [anon_sym_LBRACK] = ACTIONS(2814), + [anon_sym___declspec] = ACTIONS(2812), + [anon_sym___cdecl] = ACTIONS(2812), + [anon_sym___clrcall] = ACTIONS(2812), + [anon_sym___stdcall] = ACTIONS(2812), + [anon_sym___fastcall] = ACTIONS(2812), + [anon_sym___thiscall] = ACTIONS(2812), + [anon_sym___vectorcall] = ACTIONS(2812), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_signed] = ACTIONS(2812), + [anon_sym_unsigned] = ACTIONS(2812), + [anon_sym_long] = ACTIONS(2812), + [anon_sym_short] = ACTIONS(2812), + [anon_sym_static] = ACTIONS(2812), + [anon_sym_ATautoreleasepool] = ACTIONS(2814), + [anon_sym_auto] = ACTIONS(2812), + [anon_sym_register] = ACTIONS(2812), + [anon_sym_inline] = ACTIONS(2812), + [anon_sym___inline] = ACTIONS(2812), + [anon_sym___inline__] = ACTIONS(2812), + [anon_sym___forceinline] = ACTIONS(2812), + [anon_sym_thread_local] = ACTIONS(2812), + [anon_sym___thread] = ACTIONS(2812), + [anon_sym_CG_EXTERN] = ACTIONS(2812), + [anon_sym_CG_INLINE] = ACTIONS(2812), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2812), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2812), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2812), + [anon_sym_IBOutlet] = ACTIONS(2812), + [anon_sym_IBInspectable] = ACTIONS(2812), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2812), + [anon_sym_NS_INLINE] = ACTIONS(2812), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2812), + [anon_sym_OBJC_EXPORT] = ACTIONS(2812), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2812), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2812), + [anon_sym_const] = ACTIONS(2812), + [anon_sym_constexpr] = ACTIONS(2812), + [anon_sym_volatile] = ACTIONS(2812), + [anon_sym_restrict] = ACTIONS(2812), + [anon_sym___restrict__] = ACTIONS(2812), + [anon_sym__Atomic] = ACTIONS(2812), + [anon_sym__Noreturn] = ACTIONS(2812), + [anon_sym__Nonnull] = ACTIONS(2812), + [anon_sym_nullable] = ACTIONS(2812), + [anon_sym__Complex] = ACTIONS(2812), + [anon_sym__Nullable] = ACTIONS(2812), + [anon_sym__Nullable_result] = ACTIONS(2812), + [anon_sym__Null_unspecified] = ACTIONS(2812), + [anon_sym___autoreleasing] = ACTIONS(2812), + [anon_sym___block] = ACTIONS(2812), + [anon_sym___bridge] = ACTIONS(2812), + [anon_sym___bridge_retained] = ACTIONS(2812), + [anon_sym___bridge_transfer] = ACTIONS(2812), + [anon_sym___complex] = ACTIONS(2812), + [anon_sym___const] = ACTIONS(2812), + [anon_sym___imag] = ACTIONS(2812), + [anon_sym___kindof] = ACTIONS(2812), + [anon_sym___nonnull] = ACTIONS(2812), + [anon_sym___nullable] = ACTIONS(2812), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2812), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2812), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2812), + [anon_sym___real] = ACTIONS(2812), + [anon_sym___strong] = ACTIONS(2812), + [anon_sym___unsafe_unretained] = ACTIONS(2812), + [anon_sym___unused] = ACTIONS(2812), + [anon_sym___weak] = ACTIONS(2812), + [anon_sym_alignas] = ACTIONS(2812), + [anon_sym__Alignas] = ACTIONS(2812), + [sym_primitive_type] = ACTIONS(2812), + [anon_sym_enum] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2812), + [anon_sym_union] = ACTIONS(2812), + [anon_sym_if] = ACTIONS(2812), + [anon_sym_switch] = ACTIONS(2812), + [anon_sym_case] = ACTIONS(2812), + [anon_sym_default] = ACTIONS(2812), + [anon_sym_while] = ACTIONS(2812), + [anon_sym_do] = ACTIONS(2812), + [anon_sym_for] = ACTIONS(2812), + [anon_sym_in] = ACTIONS(2812), + [anon_sym_return] = ACTIONS(2812), + [anon_sym_break] = ACTIONS(2812), + [anon_sym_continue] = ACTIONS(2812), + [anon_sym_goto] = ACTIONS(2812), + [anon_sym_DASH_DASH] = ACTIONS(2814), + [anon_sym_PLUS_PLUS] = ACTIONS(2814), + [anon_sym_sizeof] = ACTIONS(2812), + [anon_sym___alignof__] = ACTIONS(2812), + [anon_sym___alignof] = ACTIONS(2812), + [anon_sym__alignof] = ACTIONS(2812), + [anon_sym_alignof] = ACTIONS(2812), + [anon_sym__Alignof] = ACTIONS(2812), + [anon_sym_offsetof] = ACTIONS(2812), + [anon_sym__Generic] = ACTIONS(2812), + [anon_sym_asm] = ACTIONS(2812), + [anon_sym___asm__] = ACTIONS(2812), + [anon_sym___asm] = ACTIONS(2812), + [sym_number_literal] = ACTIONS(2814), + [anon_sym_L_SQUOTE] = ACTIONS(2814), + [anon_sym_u_SQUOTE] = ACTIONS(2814), + [anon_sym_U_SQUOTE] = ACTIONS(2814), + [anon_sym_u8_SQUOTE] = ACTIONS(2814), + [anon_sym_SQUOTE] = ACTIONS(2814), + [anon_sym_AT] = ACTIONS(2812), + [anon_sym_DQUOTE] = ACTIONS(2814), + [anon_sym_L_DQUOTE] = ACTIONS(2814), + [anon_sym_u_DQUOTE] = ACTIONS(2814), + [anon_sym_U_DQUOTE] = ACTIONS(2814), + [anon_sym_u8_DQUOTE] = ACTIONS(2814), + [sym_true] = ACTIONS(2812), + [sym_false] = ACTIONS(2812), + [anon_sym_NULL] = ACTIONS(2812), + [anon_sym_nullptr] = ACTIONS(2812), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2812), + [anon_sym___typeof] = ACTIONS(2812), + [anon_sym_typeof] = ACTIONS(2812), + [anon_sym_ATimport] = ACTIONS(2814), + [aux_sym_preproc_undef_token1] = ACTIONS(2812), + [anon_sym_POUND] = ACTIONS(2812), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2812), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2812), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2812), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2812), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2812), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2812), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2812), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2812), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2812), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2812), + [anon_sym_NS_AVAILABLE] = ACTIONS(2812), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2812), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2812), + [anon_sym_API_AVAILABLE] = ACTIONS(2812), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2812), + [anon_sym_API_DEPRECATED] = ACTIONS(2812), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2812), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2812), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2812), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2812), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2812), + [anon_sym___deprecated_msg] = ACTIONS(2812), + [anon_sym___deprecated_enum_msg] = ACTIONS(2812), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2812), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2812), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2812), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2812), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2812), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2812), + [anon_sym_ATprotocol] = ACTIONS(2814), + [anon_sym_ATinterface] = ACTIONS(2814), + [anon_sym_ATimplementation] = ACTIONS(2814), + [anon_sym_ATcompatibility_alias] = ACTIONS(2814), + [anon_sym_ATselector] = ACTIONS(2814), + [anon_sym_ATavailable] = ACTIONS(2814), + [anon_sym___builtin_available] = ACTIONS(2812), + [anon_sym_va_arg] = ACTIONS(2812), + [anon_sym_ATencode] = ACTIONS(2814), + [anon_sym_BOOL] = ACTIONS(2812), + [anon_sym_IMP] = ACTIONS(2812), + [anon_sym_SEL] = ACTIONS(2812), + [anon_sym_Class] = ACTIONS(2812), + [anon_sym_id] = ACTIONS(2812), + }, + [1058] = { + [ts_builtin_sym_end] = ACTIONS(2596), + [sym_identifier] = ACTIONS(2594), + [aux_sym_preproc_include_token1] = ACTIONS(2594), + [aux_sym_preproc_include_token2] = ACTIONS(2594), + [aux_sym_preproc_def_token1] = ACTIONS(2594), + [aux_sym_preproc_if_token1] = ACTIONS(2594), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2594), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2594), + [sym_preproc_directive] = ACTIONS(2594), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_BANG] = ACTIONS(2596), + [anon_sym_TILDE] = ACTIONS(2596), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_CARET] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2596), + [anon_sym_SEMI] = ACTIONS(2596), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_typedef] = ACTIONS(2594), + [anon_sym_extern] = ACTIONS(2594), + [anon_sym___attribute__] = ACTIONS(2594), + [anon_sym___attribute] = ACTIONS(2594), + [anon_sym_noreturn] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2596), + [anon_sym___declspec] = ACTIONS(2594), + [anon_sym___cdecl] = ACTIONS(2594), + [anon_sym___clrcall] = ACTIONS(2594), + [anon_sym___stdcall] = ACTIONS(2594), + [anon_sym___fastcall] = ACTIONS(2594), + [anon_sym___thiscall] = ACTIONS(2594), + [anon_sym___vectorcall] = ACTIONS(2594), + [anon_sym_LBRACE] = ACTIONS(2596), + [anon_sym_signed] = ACTIONS(2594), + [anon_sym_unsigned] = ACTIONS(2594), + [anon_sym_long] = ACTIONS(2594), + [anon_sym_short] = ACTIONS(2594), + [anon_sym_static] = ACTIONS(2594), + [anon_sym_ATautoreleasepool] = ACTIONS(2596), + [anon_sym_auto] = ACTIONS(2594), + [anon_sym_register] = ACTIONS(2594), + [anon_sym_inline] = ACTIONS(2594), + [anon_sym___inline] = ACTIONS(2594), + [anon_sym___inline__] = ACTIONS(2594), + [anon_sym___forceinline] = ACTIONS(2594), + [anon_sym_thread_local] = ACTIONS(2594), + [anon_sym___thread] = ACTIONS(2594), + [anon_sym_CG_EXTERN] = ACTIONS(2594), + [anon_sym_CG_INLINE] = ACTIONS(2594), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2594), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2594), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2594), + [anon_sym_IBOutlet] = ACTIONS(2594), + [anon_sym_IBInspectable] = ACTIONS(2594), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2594), + [anon_sym_NS_INLINE] = ACTIONS(2594), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2594), + [anon_sym_OBJC_EXPORT] = ACTIONS(2594), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2594), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2594), + [anon_sym_const] = ACTIONS(2594), + [anon_sym_constexpr] = ACTIONS(2594), + [anon_sym_volatile] = ACTIONS(2594), + [anon_sym_restrict] = ACTIONS(2594), + [anon_sym___restrict__] = ACTIONS(2594), + [anon_sym__Atomic] = ACTIONS(2594), + [anon_sym__Noreturn] = ACTIONS(2594), + [anon_sym__Nonnull] = ACTIONS(2594), + [anon_sym_nullable] = ACTIONS(2594), + [anon_sym__Complex] = ACTIONS(2594), + [anon_sym__Nullable] = ACTIONS(2594), + [anon_sym__Nullable_result] = ACTIONS(2594), + [anon_sym__Null_unspecified] = ACTIONS(2594), + [anon_sym___autoreleasing] = ACTIONS(2594), + [anon_sym___block] = ACTIONS(2594), + [anon_sym___bridge] = ACTIONS(2594), + [anon_sym___bridge_retained] = ACTIONS(2594), + [anon_sym___bridge_transfer] = ACTIONS(2594), + [anon_sym___complex] = ACTIONS(2594), + [anon_sym___const] = ACTIONS(2594), + [anon_sym___imag] = ACTIONS(2594), + [anon_sym___kindof] = ACTIONS(2594), + [anon_sym___nonnull] = ACTIONS(2594), + [anon_sym___nullable] = ACTIONS(2594), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2594), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2594), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2594), + [anon_sym___real] = ACTIONS(2594), + [anon_sym___strong] = ACTIONS(2594), + [anon_sym___unsafe_unretained] = ACTIONS(2594), + [anon_sym___unused] = ACTIONS(2594), + [anon_sym___weak] = ACTIONS(2594), + [anon_sym_alignas] = ACTIONS(2594), + [anon_sym__Alignas] = ACTIONS(2594), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_enum] = ACTIONS(2594), + [anon_sym_struct] = ACTIONS(2594), + [anon_sym_union] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_switch] = ACTIONS(2594), + [anon_sym_case] = ACTIONS(2594), + [anon_sym_default] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_in] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_break] = ACTIONS(2594), + [anon_sym_continue] = ACTIONS(2594), + [anon_sym_goto] = ACTIONS(2594), + [anon_sym_DASH_DASH] = ACTIONS(2596), + [anon_sym_PLUS_PLUS] = ACTIONS(2596), + [anon_sym_sizeof] = ACTIONS(2594), + [anon_sym___alignof__] = ACTIONS(2594), + [anon_sym___alignof] = ACTIONS(2594), + [anon_sym__alignof] = ACTIONS(2594), + [anon_sym_alignof] = ACTIONS(2594), + [anon_sym__Alignof] = ACTIONS(2594), + [anon_sym_offsetof] = ACTIONS(2594), + [anon_sym__Generic] = ACTIONS(2594), + [anon_sym_asm] = ACTIONS(2594), + [anon_sym___asm__] = ACTIONS(2594), + [anon_sym___asm] = ACTIONS(2594), + [sym_number_literal] = ACTIONS(2596), + [anon_sym_L_SQUOTE] = ACTIONS(2596), + [anon_sym_u_SQUOTE] = ACTIONS(2596), + [anon_sym_U_SQUOTE] = ACTIONS(2596), + [anon_sym_u8_SQUOTE] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_AT] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2596), + [anon_sym_L_DQUOTE] = ACTIONS(2596), + [anon_sym_u_DQUOTE] = ACTIONS(2596), + [anon_sym_U_DQUOTE] = ACTIONS(2596), + [anon_sym_u8_DQUOTE] = ACTIONS(2596), + [sym_true] = ACTIONS(2594), + [sym_false] = ACTIONS(2594), + [anon_sym_NULL] = ACTIONS(2594), + [anon_sym_nullptr] = ACTIONS(2594), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2594), + [anon_sym___typeof] = ACTIONS(2594), + [anon_sym_typeof] = ACTIONS(2594), + [anon_sym_ATimport] = ACTIONS(2596), + [aux_sym_preproc_undef_token1] = ACTIONS(2594), + [anon_sym_POUND] = ACTIONS(2594), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2594), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2594), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2594), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2594), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2594), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2594), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2594), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2594), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2594), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2594), + [anon_sym_NS_AVAILABLE] = ACTIONS(2594), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2594), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2594), + [anon_sym_API_AVAILABLE] = ACTIONS(2594), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2594), + [anon_sym_API_DEPRECATED] = ACTIONS(2594), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2594), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2594), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2594), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2594), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2594), + [anon_sym___deprecated_msg] = ACTIONS(2594), + [anon_sym___deprecated_enum_msg] = ACTIONS(2594), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2594), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2594), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2594), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2594), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2594), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2594), + [anon_sym_ATprotocol] = ACTIONS(2596), + [anon_sym_ATinterface] = ACTIONS(2596), + [anon_sym_ATimplementation] = ACTIONS(2596), + [anon_sym_ATcompatibility_alias] = ACTIONS(2596), + [anon_sym_ATselector] = ACTIONS(2596), + [anon_sym_ATavailable] = ACTIONS(2596), + [anon_sym___builtin_available] = ACTIONS(2594), + [anon_sym_va_arg] = ACTIONS(2594), + [anon_sym_ATencode] = ACTIONS(2596), + [anon_sym_BOOL] = ACTIONS(2594), + [anon_sym_IMP] = ACTIONS(2594), + [anon_sym_SEL] = ACTIONS(2594), + [anon_sym_Class] = ACTIONS(2594), + [anon_sym_id] = ACTIONS(2594), + }, + [1059] = { + [ts_builtin_sym_end] = ACTIONS(2578), + [sym_identifier] = ACTIONS(2576), + [aux_sym_preproc_include_token1] = ACTIONS(2576), + [aux_sym_preproc_include_token2] = ACTIONS(2576), + [aux_sym_preproc_def_token1] = ACTIONS(2576), + [aux_sym_preproc_if_token1] = ACTIONS(2576), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2576), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2576), + [sym_preproc_directive] = ACTIONS(2576), + [anon_sym_LPAREN2] = ACTIONS(2578), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_CARET] = ACTIONS(2578), + [anon_sym_AMP] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym___extension__] = ACTIONS(2576), + [anon_sym_typedef] = ACTIONS(2576), + [anon_sym_extern] = ACTIONS(2576), + [anon_sym___attribute__] = ACTIONS(2576), + [anon_sym___attribute] = ACTIONS(2576), + [anon_sym_noreturn] = ACTIONS(2576), + [anon_sym_LBRACK] = ACTIONS(2578), + [anon_sym___declspec] = ACTIONS(2576), + [anon_sym___cdecl] = ACTIONS(2576), + [anon_sym___clrcall] = ACTIONS(2576), + [anon_sym___stdcall] = ACTIONS(2576), + [anon_sym___fastcall] = ACTIONS(2576), + [anon_sym___thiscall] = ACTIONS(2576), + [anon_sym___vectorcall] = ACTIONS(2576), + [anon_sym_LBRACE] = ACTIONS(2578), + [anon_sym_signed] = ACTIONS(2576), + [anon_sym_unsigned] = ACTIONS(2576), + [anon_sym_long] = ACTIONS(2576), + [anon_sym_short] = ACTIONS(2576), + [anon_sym_static] = ACTIONS(2576), + [anon_sym_ATautoreleasepool] = ACTIONS(2578), + [anon_sym_auto] = ACTIONS(2576), + [anon_sym_register] = ACTIONS(2576), + [anon_sym_inline] = ACTIONS(2576), + [anon_sym___inline] = ACTIONS(2576), + [anon_sym___inline__] = ACTIONS(2576), + [anon_sym___forceinline] = ACTIONS(2576), + [anon_sym_thread_local] = ACTIONS(2576), + [anon_sym___thread] = ACTIONS(2576), + [anon_sym_CG_EXTERN] = ACTIONS(2576), + [anon_sym_CG_INLINE] = ACTIONS(2576), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2576), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2576), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2576), + [anon_sym_IBOutlet] = ACTIONS(2576), + [anon_sym_IBInspectable] = ACTIONS(2576), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2576), + [anon_sym_NS_INLINE] = ACTIONS(2576), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2576), + [anon_sym_OBJC_EXPORT] = ACTIONS(2576), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2576), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2576), + [anon_sym_const] = ACTIONS(2576), + [anon_sym_constexpr] = ACTIONS(2576), + [anon_sym_volatile] = ACTIONS(2576), + [anon_sym_restrict] = ACTIONS(2576), + [anon_sym___restrict__] = ACTIONS(2576), + [anon_sym__Atomic] = ACTIONS(2576), + [anon_sym__Noreturn] = ACTIONS(2576), + [anon_sym__Nonnull] = ACTIONS(2576), + [anon_sym_nullable] = ACTIONS(2576), + [anon_sym__Complex] = ACTIONS(2576), + [anon_sym__Nullable] = ACTIONS(2576), + [anon_sym__Nullable_result] = ACTIONS(2576), + [anon_sym__Null_unspecified] = ACTIONS(2576), + [anon_sym___autoreleasing] = ACTIONS(2576), + [anon_sym___block] = ACTIONS(2576), + [anon_sym___bridge] = ACTIONS(2576), + [anon_sym___bridge_retained] = ACTIONS(2576), + [anon_sym___bridge_transfer] = ACTIONS(2576), + [anon_sym___complex] = ACTIONS(2576), + [anon_sym___const] = ACTIONS(2576), + [anon_sym___imag] = ACTIONS(2576), + [anon_sym___kindof] = ACTIONS(2576), + [anon_sym___nonnull] = ACTIONS(2576), + [anon_sym___nullable] = ACTIONS(2576), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2576), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2576), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2576), + [anon_sym___real] = ACTIONS(2576), + [anon_sym___strong] = ACTIONS(2576), + [anon_sym___unsafe_unretained] = ACTIONS(2576), + [anon_sym___unused] = ACTIONS(2576), + [anon_sym___weak] = ACTIONS(2576), + [anon_sym_alignas] = ACTIONS(2576), + [anon_sym__Alignas] = ACTIONS(2576), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2576), + [anon_sym_struct] = ACTIONS(2576), + [anon_sym_union] = ACTIONS(2576), + [anon_sym_if] = ACTIONS(2576), + [anon_sym_switch] = ACTIONS(2576), + [anon_sym_case] = ACTIONS(2576), + [anon_sym_default] = ACTIONS(2576), + [anon_sym_while] = ACTIONS(2576), + [anon_sym_do] = ACTIONS(2576), + [anon_sym_for] = ACTIONS(2576), + [anon_sym_in] = ACTIONS(2576), + [anon_sym_return] = ACTIONS(2576), + [anon_sym_break] = ACTIONS(2576), + [anon_sym_continue] = ACTIONS(2576), + [anon_sym_goto] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(2578), + [anon_sym_PLUS_PLUS] = ACTIONS(2578), + [anon_sym_sizeof] = ACTIONS(2576), + [anon_sym___alignof__] = ACTIONS(2576), + [anon_sym___alignof] = ACTIONS(2576), + [anon_sym__alignof] = ACTIONS(2576), + [anon_sym_alignof] = ACTIONS(2576), + [anon_sym__Alignof] = ACTIONS(2576), + [anon_sym_offsetof] = ACTIONS(2576), + [anon_sym__Generic] = ACTIONS(2576), + [anon_sym_asm] = ACTIONS(2576), + [anon_sym___asm__] = ACTIONS(2576), + [anon_sym___asm] = ACTIONS(2576), + [sym_number_literal] = ACTIONS(2578), + [anon_sym_L_SQUOTE] = ACTIONS(2578), + [anon_sym_u_SQUOTE] = ACTIONS(2578), + [anon_sym_U_SQUOTE] = ACTIONS(2578), + [anon_sym_u8_SQUOTE] = ACTIONS(2578), + [anon_sym_SQUOTE] = ACTIONS(2578), + [anon_sym_AT] = ACTIONS(2576), + [anon_sym_DQUOTE] = ACTIONS(2578), + [anon_sym_L_DQUOTE] = ACTIONS(2578), + [anon_sym_u_DQUOTE] = ACTIONS(2578), + [anon_sym_U_DQUOTE] = ACTIONS(2578), + [anon_sym_u8_DQUOTE] = ACTIONS(2578), + [sym_true] = ACTIONS(2576), + [sym_false] = ACTIONS(2576), + [anon_sym_NULL] = ACTIONS(2576), + [anon_sym_nullptr] = ACTIONS(2576), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2576), + [anon_sym___typeof] = ACTIONS(2576), + [anon_sym_typeof] = ACTIONS(2576), + [anon_sym_ATimport] = ACTIONS(2578), + [aux_sym_preproc_undef_token1] = ACTIONS(2576), + [anon_sym_POUND] = ACTIONS(2576), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2576), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2576), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2576), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2576), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2576), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2576), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2576), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2576), + [anon_sym_NS_AVAILABLE] = ACTIONS(2576), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2576), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_API_AVAILABLE] = ACTIONS(2576), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_API_DEPRECATED] = ACTIONS(2576), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2576), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2576), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2576), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2576), + [anon_sym___deprecated_msg] = ACTIONS(2576), + [anon_sym___deprecated_enum_msg] = ACTIONS(2576), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2576), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2576), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2576), + [anon_sym_ATprotocol] = ACTIONS(2578), + [anon_sym_ATinterface] = ACTIONS(2578), + [anon_sym_ATimplementation] = ACTIONS(2578), + [anon_sym_ATcompatibility_alias] = ACTIONS(2578), + [anon_sym_ATselector] = ACTIONS(2578), + [anon_sym_ATavailable] = ACTIONS(2578), + [anon_sym___builtin_available] = ACTIONS(2576), + [anon_sym_va_arg] = ACTIONS(2576), + [anon_sym_ATencode] = ACTIONS(2578), + [anon_sym_BOOL] = ACTIONS(2576), + [anon_sym_IMP] = ACTIONS(2576), + [anon_sym_SEL] = ACTIONS(2576), + [anon_sym_Class] = ACTIONS(2576), + [anon_sym_id] = ACTIONS(2576), + }, + [1060] = { + [ts_builtin_sym_end] = ACTIONS(2634), + [sym_identifier] = ACTIONS(2632), + [aux_sym_preproc_include_token1] = ACTIONS(2632), + [aux_sym_preproc_include_token2] = ACTIONS(2632), + [aux_sym_preproc_def_token1] = ACTIONS(2632), + [aux_sym_preproc_if_token1] = ACTIONS(2632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2632), + [sym_preproc_directive] = ACTIONS(2632), + [anon_sym_LPAREN2] = ACTIONS(2634), + [anon_sym_BANG] = ACTIONS(2634), + [anon_sym_TILDE] = ACTIONS(2634), + [anon_sym_DASH] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(2632), + [anon_sym_STAR] = ACTIONS(2634), + [anon_sym_CARET] = ACTIONS(2634), + [anon_sym_AMP] = ACTIONS(2634), + [anon_sym_SEMI] = ACTIONS(2634), + [anon_sym___extension__] = ACTIONS(2632), + [anon_sym_typedef] = ACTIONS(2632), + [anon_sym_extern] = ACTIONS(2632), + [anon_sym___attribute__] = ACTIONS(2632), + [anon_sym___attribute] = ACTIONS(2632), + [anon_sym_noreturn] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2634), + [anon_sym___declspec] = ACTIONS(2632), + [anon_sym___cdecl] = ACTIONS(2632), + [anon_sym___clrcall] = ACTIONS(2632), + [anon_sym___stdcall] = ACTIONS(2632), + [anon_sym___fastcall] = ACTIONS(2632), + [anon_sym___thiscall] = ACTIONS(2632), + [anon_sym___vectorcall] = ACTIONS(2632), + [anon_sym_LBRACE] = ACTIONS(2634), + [anon_sym_signed] = ACTIONS(2632), + [anon_sym_unsigned] = ACTIONS(2632), + [anon_sym_long] = ACTIONS(2632), + [anon_sym_short] = ACTIONS(2632), + [anon_sym_static] = ACTIONS(2632), + [anon_sym_ATautoreleasepool] = ACTIONS(2634), + [anon_sym_auto] = ACTIONS(2632), + [anon_sym_register] = ACTIONS(2632), + [anon_sym_inline] = ACTIONS(2632), + [anon_sym___inline] = ACTIONS(2632), + [anon_sym___inline__] = ACTIONS(2632), + [anon_sym___forceinline] = ACTIONS(2632), + [anon_sym_thread_local] = ACTIONS(2632), + [anon_sym___thread] = ACTIONS(2632), + [anon_sym_CG_EXTERN] = ACTIONS(2632), + [anon_sym_CG_INLINE] = ACTIONS(2632), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2632), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2632), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2632), + [anon_sym_IBOutlet] = ACTIONS(2632), + [anon_sym_IBInspectable] = ACTIONS(2632), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2632), + [anon_sym_NS_INLINE] = ACTIONS(2632), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2632), + [anon_sym_OBJC_EXPORT] = ACTIONS(2632), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2632), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2632), + [anon_sym_const] = ACTIONS(2632), + [anon_sym_constexpr] = ACTIONS(2632), + [anon_sym_volatile] = ACTIONS(2632), + [anon_sym_restrict] = ACTIONS(2632), + [anon_sym___restrict__] = ACTIONS(2632), + [anon_sym__Atomic] = ACTIONS(2632), + [anon_sym__Noreturn] = ACTIONS(2632), + [anon_sym__Nonnull] = ACTIONS(2632), + [anon_sym_nullable] = ACTIONS(2632), + [anon_sym__Complex] = ACTIONS(2632), + [anon_sym__Nullable] = ACTIONS(2632), + [anon_sym__Nullable_result] = ACTIONS(2632), + [anon_sym__Null_unspecified] = ACTIONS(2632), + [anon_sym___autoreleasing] = ACTIONS(2632), + [anon_sym___block] = ACTIONS(2632), + [anon_sym___bridge] = ACTIONS(2632), + [anon_sym___bridge_retained] = ACTIONS(2632), + [anon_sym___bridge_transfer] = ACTIONS(2632), + [anon_sym___complex] = ACTIONS(2632), + [anon_sym___const] = ACTIONS(2632), + [anon_sym___imag] = ACTIONS(2632), + [anon_sym___kindof] = ACTIONS(2632), + [anon_sym___nonnull] = ACTIONS(2632), + [anon_sym___nullable] = ACTIONS(2632), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2632), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2632), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2632), + [anon_sym___real] = ACTIONS(2632), + [anon_sym___strong] = ACTIONS(2632), + [anon_sym___unsafe_unretained] = ACTIONS(2632), + [anon_sym___unused] = ACTIONS(2632), + [anon_sym___weak] = ACTIONS(2632), + [anon_sym_alignas] = ACTIONS(2632), + [anon_sym__Alignas] = ACTIONS(2632), + [sym_primitive_type] = ACTIONS(2632), + [anon_sym_enum] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2632), + [anon_sym_union] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_switch] = ACTIONS(2632), + [anon_sym_case] = ACTIONS(2632), + [anon_sym_default] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_do] = ACTIONS(2632), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_in] = ACTIONS(2632), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_break] = ACTIONS(2632), + [anon_sym_continue] = ACTIONS(2632), + [anon_sym_goto] = ACTIONS(2632), + [anon_sym_DASH_DASH] = ACTIONS(2634), + [anon_sym_PLUS_PLUS] = ACTIONS(2634), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2632), + [anon_sym___alignof] = ACTIONS(2632), + [anon_sym__alignof] = ACTIONS(2632), + [anon_sym_alignof] = ACTIONS(2632), + [anon_sym__Alignof] = ACTIONS(2632), + [anon_sym_offsetof] = ACTIONS(2632), + [anon_sym__Generic] = ACTIONS(2632), + [anon_sym_asm] = ACTIONS(2632), + [anon_sym___asm__] = ACTIONS(2632), + [anon_sym___asm] = ACTIONS(2632), + [sym_number_literal] = ACTIONS(2634), + [anon_sym_L_SQUOTE] = ACTIONS(2634), + [anon_sym_u_SQUOTE] = ACTIONS(2634), + [anon_sym_U_SQUOTE] = ACTIONS(2634), + [anon_sym_u8_SQUOTE] = ACTIONS(2634), + [anon_sym_SQUOTE] = ACTIONS(2634), + [anon_sym_AT] = ACTIONS(2632), + [anon_sym_DQUOTE] = ACTIONS(2634), + [anon_sym_L_DQUOTE] = ACTIONS(2634), + [anon_sym_u_DQUOTE] = ACTIONS(2634), + [anon_sym_U_DQUOTE] = ACTIONS(2634), + [anon_sym_u8_DQUOTE] = ACTIONS(2634), + [sym_true] = ACTIONS(2632), + [sym_false] = ACTIONS(2632), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2632), + [anon_sym___typeof] = ACTIONS(2632), + [anon_sym_typeof] = ACTIONS(2632), + [anon_sym_ATimport] = ACTIONS(2634), + [aux_sym_preproc_undef_token1] = ACTIONS(2632), + [anon_sym_POUND] = ACTIONS(2632), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2632), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2632), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2632), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2632), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2632), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2632), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2632), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2632), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2632), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2632), + [anon_sym_NS_AVAILABLE] = ACTIONS(2632), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2632), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2632), + [anon_sym_API_AVAILABLE] = ACTIONS(2632), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2632), + [anon_sym_API_DEPRECATED] = ACTIONS(2632), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2632), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2632), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2632), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2632), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2632), + [anon_sym___deprecated_msg] = ACTIONS(2632), + [anon_sym___deprecated_enum_msg] = ACTIONS(2632), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2632), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2632), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2632), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2632), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2632), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2632), + [anon_sym_ATprotocol] = ACTIONS(2634), + [anon_sym_ATinterface] = ACTIONS(2634), + [anon_sym_ATimplementation] = ACTIONS(2634), + [anon_sym_ATcompatibility_alias] = ACTIONS(2634), + [anon_sym_ATselector] = ACTIONS(2634), + [anon_sym_ATavailable] = ACTIONS(2634), + [anon_sym___builtin_available] = ACTIONS(2632), + [anon_sym_va_arg] = ACTIONS(2632), + [anon_sym_ATencode] = ACTIONS(2634), + [anon_sym_BOOL] = ACTIONS(2632), + [anon_sym_IMP] = ACTIONS(2632), + [anon_sym_SEL] = ACTIONS(2632), + [anon_sym_Class] = ACTIONS(2632), + [anon_sym_id] = ACTIONS(2632), + }, + [1061] = { + [ts_builtin_sym_end] = ACTIONS(2822), + [sym_identifier] = ACTIONS(2820), + [aux_sym_preproc_include_token1] = ACTIONS(2820), + [aux_sym_preproc_include_token2] = ACTIONS(2820), + [aux_sym_preproc_def_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), + [sym_preproc_directive] = ACTIONS(2820), + [anon_sym_LPAREN2] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_CARET] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym___extension__] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym___attribute__] = ACTIONS(2820), + [anon_sym___attribute] = ACTIONS(2820), + [anon_sym_noreturn] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym___declspec] = ACTIONS(2820), + [anon_sym___cdecl] = ACTIONS(2820), + [anon_sym___clrcall] = ACTIONS(2820), + [anon_sym___stdcall] = ACTIONS(2820), + [anon_sym___fastcall] = ACTIONS(2820), + [anon_sym___thiscall] = ACTIONS(2820), + [anon_sym___vectorcall] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2820), + [anon_sym_unsigned] = ACTIONS(2820), + [anon_sym_long] = ACTIONS(2820), + [anon_sym_short] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_ATautoreleasepool] = ACTIONS(2822), + [anon_sym_auto] = ACTIONS(2820), + [anon_sym_register] = ACTIONS(2820), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym___inline] = ACTIONS(2820), + [anon_sym___inline__] = ACTIONS(2820), + [anon_sym___forceinline] = ACTIONS(2820), + [anon_sym_thread_local] = ACTIONS(2820), + [anon_sym___thread] = ACTIONS(2820), + [anon_sym_CG_EXTERN] = ACTIONS(2820), + [anon_sym_CG_INLINE] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2820), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2820), + [anon_sym_IBOutlet] = ACTIONS(2820), + [anon_sym_IBInspectable] = ACTIONS(2820), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2820), + [anon_sym_NS_INLINE] = ACTIONS(2820), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2820), + [anon_sym_OBJC_EXPORT] = ACTIONS(2820), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_constexpr] = ACTIONS(2820), + [anon_sym_volatile] = ACTIONS(2820), + [anon_sym_restrict] = ACTIONS(2820), + [anon_sym___restrict__] = ACTIONS(2820), + [anon_sym__Atomic] = ACTIONS(2820), + [anon_sym__Noreturn] = ACTIONS(2820), + [anon_sym__Nonnull] = ACTIONS(2820), + [anon_sym_nullable] = ACTIONS(2820), + [anon_sym__Complex] = ACTIONS(2820), + [anon_sym__Nullable] = ACTIONS(2820), + [anon_sym__Nullable_result] = ACTIONS(2820), + [anon_sym__Null_unspecified] = ACTIONS(2820), + [anon_sym___autoreleasing] = ACTIONS(2820), + [anon_sym___block] = ACTIONS(2820), + [anon_sym___bridge] = ACTIONS(2820), + [anon_sym___bridge_retained] = ACTIONS(2820), + [anon_sym___bridge_transfer] = ACTIONS(2820), + [anon_sym___complex] = ACTIONS(2820), + [anon_sym___const] = ACTIONS(2820), + [anon_sym___imag] = ACTIONS(2820), + [anon_sym___kindof] = ACTIONS(2820), + [anon_sym___nonnull] = ACTIONS(2820), + [anon_sym___nullable] = ACTIONS(2820), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2820), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2820), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2820), + [anon_sym___real] = ACTIONS(2820), + [anon_sym___strong] = ACTIONS(2820), + [anon_sym___unsafe_unretained] = ACTIONS(2820), + [anon_sym___unused] = ACTIONS(2820), + [anon_sym___weak] = ACTIONS(2820), + [anon_sym_alignas] = ACTIONS(2820), + [anon_sym__Alignas] = ACTIONS(2820), + [sym_primitive_type] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2820), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_case] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_in] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_goto] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_sizeof] = ACTIONS(2820), + [anon_sym___alignof__] = ACTIONS(2820), + [anon_sym___alignof] = ACTIONS(2820), + [anon_sym__alignof] = ACTIONS(2820), + [anon_sym_alignof] = ACTIONS(2820), + [anon_sym__Alignof] = ACTIONS(2820), + [anon_sym_offsetof] = ACTIONS(2820), + [anon_sym__Generic] = ACTIONS(2820), + [anon_sym_asm] = ACTIONS(2820), + [anon_sym___asm__] = ACTIONS(2820), + [anon_sym___asm] = ACTIONS(2820), + [sym_number_literal] = ACTIONS(2822), + [anon_sym_L_SQUOTE] = ACTIONS(2822), + [anon_sym_u_SQUOTE] = ACTIONS(2822), + [anon_sym_U_SQUOTE] = ACTIONS(2822), + [anon_sym_u8_SQUOTE] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2822), + [anon_sym_AT] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2822), + [anon_sym_L_DQUOTE] = ACTIONS(2822), + [anon_sym_u_DQUOTE] = ACTIONS(2822), + [anon_sym_U_DQUOTE] = ACTIONS(2822), + [anon_sym_u8_DQUOTE] = ACTIONS(2822), + [sym_true] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [anon_sym_NULL] = ACTIONS(2820), + [anon_sym_nullptr] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2820), + [anon_sym___typeof] = ACTIONS(2820), + [anon_sym_typeof] = ACTIONS(2820), + [anon_sym_ATimport] = ACTIONS(2822), + [aux_sym_preproc_undef_token1] = ACTIONS(2820), + [anon_sym_POUND] = ACTIONS(2820), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2820), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2820), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2820), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2820), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE] = ACTIONS(2820), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_API_AVAILABLE] = ACTIONS(2820), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_API_DEPRECATED] = ACTIONS(2820), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2820), + [anon_sym___deprecated_msg] = ACTIONS(2820), + [anon_sym___deprecated_enum_msg] = ACTIONS(2820), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2820), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2820), + [anon_sym_ATprotocol] = ACTIONS(2822), + [anon_sym_ATinterface] = ACTIONS(2822), + [anon_sym_ATimplementation] = ACTIONS(2822), + [anon_sym_ATcompatibility_alias] = ACTIONS(2822), + [anon_sym_ATselector] = ACTIONS(2822), + [anon_sym_ATavailable] = ACTIONS(2822), + [anon_sym___builtin_available] = ACTIONS(2820), + [anon_sym_va_arg] = ACTIONS(2820), + [anon_sym_ATencode] = ACTIONS(2822), + [anon_sym_BOOL] = ACTIONS(2820), + [anon_sym_IMP] = ACTIONS(2820), + [anon_sym_SEL] = ACTIONS(2820), + [anon_sym_Class] = ACTIONS(2820), + [anon_sym_id] = ACTIONS(2820), + }, + [1062] = { + [ts_builtin_sym_end] = ACTIONS(2822), + [sym_identifier] = ACTIONS(2820), + [aux_sym_preproc_include_token1] = ACTIONS(2820), + [aux_sym_preproc_include_token2] = ACTIONS(2820), + [aux_sym_preproc_def_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), + [sym_preproc_directive] = ACTIONS(2820), + [anon_sym_LPAREN2] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_CARET] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym___extension__] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym___attribute__] = ACTIONS(2820), + [anon_sym___attribute] = ACTIONS(2820), + [anon_sym_noreturn] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym___declspec] = ACTIONS(2820), + [anon_sym___cdecl] = ACTIONS(2820), + [anon_sym___clrcall] = ACTIONS(2820), + [anon_sym___stdcall] = ACTIONS(2820), + [anon_sym___fastcall] = ACTIONS(2820), + [anon_sym___thiscall] = ACTIONS(2820), + [anon_sym___vectorcall] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2820), + [anon_sym_unsigned] = ACTIONS(2820), + [anon_sym_long] = ACTIONS(2820), + [anon_sym_short] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_ATautoreleasepool] = ACTIONS(2822), + [anon_sym_auto] = ACTIONS(2820), + [anon_sym_register] = ACTIONS(2820), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym___inline] = ACTIONS(2820), + [anon_sym___inline__] = ACTIONS(2820), + [anon_sym___forceinline] = ACTIONS(2820), + [anon_sym_thread_local] = ACTIONS(2820), + [anon_sym___thread] = ACTIONS(2820), + [anon_sym_CG_EXTERN] = ACTIONS(2820), + [anon_sym_CG_INLINE] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2820), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2820), + [anon_sym_IBOutlet] = ACTIONS(2820), + [anon_sym_IBInspectable] = ACTIONS(2820), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2820), + [anon_sym_NS_INLINE] = ACTIONS(2820), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2820), + [anon_sym_OBJC_EXPORT] = ACTIONS(2820), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_constexpr] = ACTIONS(2820), + [anon_sym_volatile] = ACTIONS(2820), + [anon_sym_restrict] = ACTIONS(2820), + [anon_sym___restrict__] = ACTIONS(2820), + [anon_sym__Atomic] = ACTIONS(2820), + [anon_sym__Noreturn] = ACTIONS(2820), + [anon_sym__Nonnull] = ACTIONS(2820), + [anon_sym_nullable] = ACTIONS(2820), + [anon_sym__Complex] = ACTIONS(2820), + [anon_sym__Nullable] = ACTIONS(2820), + [anon_sym__Nullable_result] = ACTIONS(2820), + [anon_sym__Null_unspecified] = ACTIONS(2820), + [anon_sym___autoreleasing] = ACTIONS(2820), + [anon_sym___block] = ACTIONS(2820), + [anon_sym___bridge] = ACTIONS(2820), + [anon_sym___bridge_retained] = ACTIONS(2820), + [anon_sym___bridge_transfer] = ACTIONS(2820), + [anon_sym___complex] = ACTIONS(2820), + [anon_sym___const] = ACTIONS(2820), + [anon_sym___imag] = ACTIONS(2820), + [anon_sym___kindof] = ACTIONS(2820), + [anon_sym___nonnull] = ACTIONS(2820), + [anon_sym___nullable] = ACTIONS(2820), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2820), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2820), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2820), + [anon_sym___real] = ACTIONS(2820), + [anon_sym___strong] = ACTIONS(2820), + [anon_sym___unsafe_unretained] = ACTIONS(2820), + [anon_sym___unused] = ACTIONS(2820), + [anon_sym___weak] = ACTIONS(2820), + [anon_sym_alignas] = ACTIONS(2820), + [anon_sym__Alignas] = ACTIONS(2820), + [sym_primitive_type] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2820), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_case] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_in] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_goto] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_sizeof] = ACTIONS(2820), + [anon_sym___alignof__] = ACTIONS(2820), + [anon_sym___alignof] = ACTIONS(2820), + [anon_sym__alignof] = ACTIONS(2820), + [anon_sym_alignof] = ACTIONS(2820), + [anon_sym__Alignof] = ACTIONS(2820), + [anon_sym_offsetof] = ACTIONS(2820), + [anon_sym__Generic] = ACTIONS(2820), + [anon_sym_asm] = ACTIONS(2820), + [anon_sym___asm__] = ACTIONS(2820), + [anon_sym___asm] = ACTIONS(2820), + [sym_number_literal] = ACTIONS(2822), + [anon_sym_L_SQUOTE] = ACTIONS(2822), + [anon_sym_u_SQUOTE] = ACTIONS(2822), + [anon_sym_U_SQUOTE] = ACTIONS(2822), + [anon_sym_u8_SQUOTE] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2822), + [anon_sym_AT] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2822), + [anon_sym_L_DQUOTE] = ACTIONS(2822), + [anon_sym_u_DQUOTE] = ACTIONS(2822), + [anon_sym_U_DQUOTE] = ACTIONS(2822), + [anon_sym_u8_DQUOTE] = ACTIONS(2822), + [sym_true] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [anon_sym_NULL] = ACTIONS(2820), + [anon_sym_nullptr] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2820), + [anon_sym___typeof] = ACTIONS(2820), + [anon_sym_typeof] = ACTIONS(2820), + [anon_sym_ATimport] = ACTIONS(2822), + [aux_sym_preproc_undef_token1] = ACTIONS(2820), + [anon_sym_POUND] = ACTIONS(2820), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2820), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2820), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2820), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2820), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE] = ACTIONS(2820), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_API_AVAILABLE] = ACTIONS(2820), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_API_DEPRECATED] = ACTIONS(2820), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2820), + [anon_sym___deprecated_msg] = ACTIONS(2820), + [anon_sym___deprecated_enum_msg] = ACTIONS(2820), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2820), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2820), + [anon_sym_ATprotocol] = ACTIONS(2822), + [anon_sym_ATinterface] = ACTIONS(2822), + [anon_sym_ATimplementation] = ACTIONS(2822), + [anon_sym_ATcompatibility_alias] = ACTIONS(2822), + [anon_sym_ATselector] = ACTIONS(2822), + [anon_sym_ATavailable] = ACTIONS(2822), + [anon_sym___builtin_available] = ACTIONS(2820), + [anon_sym_va_arg] = ACTIONS(2820), + [anon_sym_ATencode] = ACTIONS(2822), + [anon_sym_BOOL] = ACTIONS(2820), + [anon_sym_IMP] = ACTIONS(2820), + [anon_sym_SEL] = ACTIONS(2820), + [anon_sym_Class] = ACTIONS(2820), + [anon_sym_id] = ACTIONS(2820), + }, + [1063] = { + [ts_builtin_sym_end] = ACTIONS(2822), + [sym_identifier] = ACTIONS(2820), + [aux_sym_preproc_include_token1] = ACTIONS(2820), + [aux_sym_preproc_include_token2] = ACTIONS(2820), + [aux_sym_preproc_def_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), + [sym_preproc_directive] = ACTIONS(2820), + [anon_sym_LPAREN2] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_CARET] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym___extension__] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym___attribute__] = ACTIONS(2820), + [anon_sym___attribute] = ACTIONS(2820), + [anon_sym_noreturn] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym___declspec] = ACTIONS(2820), + [anon_sym___cdecl] = ACTIONS(2820), + [anon_sym___clrcall] = ACTIONS(2820), + [anon_sym___stdcall] = ACTIONS(2820), + [anon_sym___fastcall] = ACTIONS(2820), + [anon_sym___thiscall] = ACTIONS(2820), + [anon_sym___vectorcall] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2820), + [anon_sym_unsigned] = ACTIONS(2820), + [anon_sym_long] = ACTIONS(2820), + [anon_sym_short] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_ATautoreleasepool] = ACTIONS(2822), + [anon_sym_auto] = ACTIONS(2820), + [anon_sym_register] = ACTIONS(2820), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym___inline] = ACTIONS(2820), + [anon_sym___inline__] = ACTIONS(2820), + [anon_sym___forceinline] = ACTIONS(2820), + [anon_sym_thread_local] = ACTIONS(2820), + [anon_sym___thread] = ACTIONS(2820), + [anon_sym_CG_EXTERN] = ACTIONS(2820), + [anon_sym_CG_INLINE] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2820), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2820), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2820), + [anon_sym_IBOutlet] = ACTIONS(2820), + [anon_sym_IBInspectable] = ACTIONS(2820), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2820), + [anon_sym_NS_INLINE] = ACTIONS(2820), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2820), + [anon_sym_OBJC_EXPORT] = ACTIONS(2820), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_constexpr] = ACTIONS(2820), + [anon_sym_volatile] = ACTIONS(2820), + [anon_sym_restrict] = ACTIONS(2820), + [anon_sym___restrict__] = ACTIONS(2820), + [anon_sym__Atomic] = ACTIONS(2820), + [anon_sym__Noreturn] = ACTIONS(2820), + [anon_sym__Nonnull] = ACTIONS(2820), + [anon_sym_nullable] = ACTIONS(2820), + [anon_sym__Complex] = ACTIONS(2820), + [anon_sym__Nullable] = ACTIONS(2820), + [anon_sym__Nullable_result] = ACTIONS(2820), + [anon_sym__Null_unspecified] = ACTIONS(2820), + [anon_sym___autoreleasing] = ACTIONS(2820), + [anon_sym___block] = ACTIONS(2820), + [anon_sym___bridge] = ACTIONS(2820), + [anon_sym___bridge_retained] = ACTIONS(2820), + [anon_sym___bridge_transfer] = ACTIONS(2820), + [anon_sym___complex] = ACTIONS(2820), + [anon_sym___const] = ACTIONS(2820), + [anon_sym___imag] = ACTIONS(2820), + [anon_sym___kindof] = ACTIONS(2820), + [anon_sym___nonnull] = ACTIONS(2820), + [anon_sym___nullable] = ACTIONS(2820), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2820), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2820), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2820), + [anon_sym___real] = ACTIONS(2820), + [anon_sym___strong] = ACTIONS(2820), + [anon_sym___unsafe_unretained] = ACTIONS(2820), + [anon_sym___unused] = ACTIONS(2820), + [anon_sym___weak] = ACTIONS(2820), + [anon_sym_alignas] = ACTIONS(2820), + [anon_sym__Alignas] = ACTIONS(2820), + [sym_primitive_type] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2820), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_case] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_in] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_goto] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_sizeof] = ACTIONS(2820), + [anon_sym___alignof__] = ACTIONS(2820), + [anon_sym___alignof] = ACTIONS(2820), + [anon_sym__alignof] = ACTIONS(2820), + [anon_sym_alignof] = ACTIONS(2820), + [anon_sym__Alignof] = ACTIONS(2820), + [anon_sym_offsetof] = ACTIONS(2820), + [anon_sym__Generic] = ACTIONS(2820), + [anon_sym_asm] = ACTIONS(2820), + [anon_sym___asm__] = ACTIONS(2820), + [anon_sym___asm] = ACTIONS(2820), + [sym_number_literal] = ACTIONS(2822), + [anon_sym_L_SQUOTE] = ACTIONS(2822), + [anon_sym_u_SQUOTE] = ACTIONS(2822), + [anon_sym_U_SQUOTE] = ACTIONS(2822), + [anon_sym_u8_SQUOTE] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2822), + [anon_sym_AT] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2822), + [anon_sym_L_DQUOTE] = ACTIONS(2822), + [anon_sym_u_DQUOTE] = ACTIONS(2822), + [anon_sym_U_DQUOTE] = ACTIONS(2822), + [anon_sym_u8_DQUOTE] = ACTIONS(2822), + [sym_true] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [anon_sym_NULL] = ACTIONS(2820), + [anon_sym_nullptr] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2820), + [anon_sym___typeof] = ACTIONS(2820), + [anon_sym_typeof] = ACTIONS(2820), + [anon_sym_ATimport] = ACTIONS(2822), + [aux_sym_preproc_undef_token1] = ACTIONS(2820), + [anon_sym_POUND] = ACTIONS(2820), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2820), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2820), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2820), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2820), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2820), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2820), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE] = ACTIONS(2820), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2820), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_API_AVAILABLE] = ACTIONS(2820), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_API_DEPRECATED] = ACTIONS(2820), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2820), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2820), + [anon_sym___deprecated_msg] = ACTIONS(2820), + [anon_sym___deprecated_enum_msg] = ACTIONS(2820), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2820), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2820), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2820), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2820), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2820), + [anon_sym_ATprotocol] = ACTIONS(2822), + [anon_sym_ATinterface] = ACTIONS(2822), + [anon_sym_ATimplementation] = ACTIONS(2822), + [anon_sym_ATcompatibility_alias] = ACTIONS(2822), + [anon_sym_ATselector] = ACTIONS(2822), + [anon_sym_ATavailable] = ACTIONS(2822), + [anon_sym___builtin_available] = ACTIONS(2820), + [anon_sym_va_arg] = ACTIONS(2820), + [anon_sym_ATencode] = ACTIONS(2822), + [anon_sym_BOOL] = ACTIONS(2820), + [anon_sym_IMP] = ACTIONS(2820), + [anon_sym_SEL] = ACTIONS(2820), + [anon_sym_Class] = ACTIONS(2820), + [anon_sym_id] = ACTIONS(2820), + }, + [1064] = { + [ts_builtin_sym_end] = ACTIONS(2826), + [sym_identifier] = ACTIONS(2824), + [aux_sym_preproc_include_token1] = ACTIONS(2824), + [aux_sym_preproc_include_token2] = ACTIONS(2824), + [aux_sym_preproc_def_token1] = ACTIONS(2824), + [aux_sym_preproc_if_token1] = ACTIONS(2824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2824), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2824), + [sym_preproc_directive] = ACTIONS(2824), + [anon_sym_LPAREN2] = ACTIONS(2826), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_DASH] = ACTIONS(2824), + [anon_sym_PLUS] = ACTIONS(2824), + [anon_sym_STAR] = ACTIONS(2826), + [anon_sym_CARET] = ACTIONS(2826), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym___extension__] = ACTIONS(2824), + [anon_sym_typedef] = ACTIONS(2824), + [anon_sym_extern] = ACTIONS(2824), + [anon_sym___attribute__] = ACTIONS(2824), + [anon_sym___attribute] = ACTIONS(2824), + [anon_sym_noreturn] = ACTIONS(2824), + [anon_sym_LBRACK] = ACTIONS(2826), + [anon_sym___declspec] = ACTIONS(2824), + [anon_sym___cdecl] = ACTIONS(2824), + [anon_sym___clrcall] = ACTIONS(2824), + [anon_sym___stdcall] = ACTIONS(2824), + [anon_sym___fastcall] = ACTIONS(2824), + [anon_sym___thiscall] = ACTIONS(2824), + [anon_sym___vectorcall] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_signed] = ACTIONS(2824), + [anon_sym_unsigned] = ACTIONS(2824), + [anon_sym_long] = ACTIONS(2824), + [anon_sym_short] = ACTIONS(2824), + [anon_sym_static] = ACTIONS(2824), + [anon_sym_ATautoreleasepool] = ACTIONS(2826), + [anon_sym_auto] = ACTIONS(2824), + [anon_sym_register] = ACTIONS(2824), + [anon_sym_inline] = ACTIONS(2824), + [anon_sym___inline] = ACTIONS(2824), + [anon_sym___inline__] = ACTIONS(2824), + [anon_sym___forceinline] = ACTIONS(2824), + [anon_sym_thread_local] = ACTIONS(2824), + [anon_sym___thread] = ACTIONS(2824), + [anon_sym_CG_EXTERN] = ACTIONS(2824), + [anon_sym_CG_INLINE] = ACTIONS(2824), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2824), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2824), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2824), + [anon_sym_IBOutlet] = ACTIONS(2824), + [anon_sym_IBInspectable] = ACTIONS(2824), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2824), + [anon_sym_NS_INLINE] = ACTIONS(2824), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2824), + [anon_sym_OBJC_EXPORT] = ACTIONS(2824), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2824), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2824), + [anon_sym_const] = ACTIONS(2824), + [anon_sym_constexpr] = ACTIONS(2824), + [anon_sym_volatile] = ACTIONS(2824), + [anon_sym_restrict] = ACTIONS(2824), + [anon_sym___restrict__] = ACTIONS(2824), + [anon_sym__Atomic] = ACTIONS(2824), + [anon_sym__Noreturn] = ACTIONS(2824), + [anon_sym__Nonnull] = ACTIONS(2824), + [anon_sym_nullable] = ACTIONS(2824), + [anon_sym__Complex] = ACTIONS(2824), + [anon_sym__Nullable] = ACTIONS(2824), + [anon_sym__Nullable_result] = ACTIONS(2824), + [anon_sym__Null_unspecified] = ACTIONS(2824), + [anon_sym___autoreleasing] = ACTIONS(2824), + [anon_sym___block] = ACTIONS(2824), + [anon_sym___bridge] = ACTIONS(2824), + [anon_sym___bridge_retained] = ACTIONS(2824), + [anon_sym___bridge_transfer] = ACTIONS(2824), + [anon_sym___complex] = ACTIONS(2824), + [anon_sym___const] = ACTIONS(2824), + [anon_sym___imag] = ACTIONS(2824), + [anon_sym___kindof] = ACTIONS(2824), + [anon_sym___nonnull] = ACTIONS(2824), + [anon_sym___nullable] = ACTIONS(2824), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2824), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2824), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2824), + [anon_sym___real] = ACTIONS(2824), + [anon_sym___strong] = ACTIONS(2824), + [anon_sym___unsafe_unretained] = ACTIONS(2824), + [anon_sym___unused] = ACTIONS(2824), + [anon_sym___weak] = ACTIONS(2824), + [anon_sym_alignas] = ACTIONS(2824), + [anon_sym__Alignas] = ACTIONS(2824), + [sym_primitive_type] = ACTIONS(2824), + [anon_sym_enum] = ACTIONS(2824), + [anon_sym_struct] = ACTIONS(2824), + [anon_sym_union] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2824), + [anon_sym_switch] = ACTIONS(2824), + [anon_sym_case] = ACTIONS(2824), + [anon_sym_default] = ACTIONS(2824), + [anon_sym_while] = ACTIONS(2824), + [anon_sym_do] = ACTIONS(2824), + [anon_sym_for] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2824), + [anon_sym_return] = ACTIONS(2824), + [anon_sym_break] = ACTIONS(2824), + [anon_sym_continue] = ACTIONS(2824), + [anon_sym_goto] = ACTIONS(2824), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_sizeof] = ACTIONS(2824), + [anon_sym___alignof__] = ACTIONS(2824), + [anon_sym___alignof] = ACTIONS(2824), + [anon_sym__alignof] = ACTIONS(2824), + [anon_sym_alignof] = ACTIONS(2824), + [anon_sym__Alignof] = ACTIONS(2824), + [anon_sym_offsetof] = ACTIONS(2824), + [anon_sym__Generic] = ACTIONS(2824), + [anon_sym_asm] = ACTIONS(2824), + [anon_sym___asm__] = ACTIONS(2824), + [anon_sym___asm] = ACTIONS(2824), + [sym_number_literal] = ACTIONS(2826), + [anon_sym_L_SQUOTE] = ACTIONS(2826), + [anon_sym_u_SQUOTE] = ACTIONS(2826), + [anon_sym_U_SQUOTE] = ACTIONS(2826), + [anon_sym_u8_SQUOTE] = ACTIONS(2826), + [anon_sym_SQUOTE] = ACTIONS(2826), + [anon_sym_AT] = ACTIONS(2824), + [anon_sym_DQUOTE] = ACTIONS(2826), + [anon_sym_L_DQUOTE] = ACTIONS(2826), + [anon_sym_u_DQUOTE] = ACTIONS(2826), + [anon_sym_U_DQUOTE] = ACTIONS(2826), + [anon_sym_u8_DQUOTE] = ACTIONS(2826), + [sym_true] = ACTIONS(2824), + [sym_false] = ACTIONS(2824), + [anon_sym_NULL] = ACTIONS(2824), + [anon_sym_nullptr] = ACTIONS(2824), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2824), + [anon_sym___typeof] = ACTIONS(2824), + [anon_sym_typeof] = ACTIONS(2824), + [anon_sym_ATimport] = ACTIONS(2826), + [aux_sym_preproc_undef_token1] = ACTIONS(2824), + [anon_sym_POUND] = ACTIONS(2824), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2824), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2824), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2824), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2824), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2824), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2824), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2824), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2824), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2824), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2824), + [anon_sym_NS_AVAILABLE] = ACTIONS(2824), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2824), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2824), + [anon_sym_API_AVAILABLE] = ACTIONS(2824), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2824), + [anon_sym_API_DEPRECATED] = ACTIONS(2824), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2824), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2824), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2824), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2824), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2824), + [anon_sym___deprecated_msg] = ACTIONS(2824), + [anon_sym___deprecated_enum_msg] = ACTIONS(2824), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2824), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2824), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2824), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2824), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2824), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2824), + [anon_sym_ATprotocol] = ACTIONS(2826), + [anon_sym_ATinterface] = ACTIONS(2826), + [anon_sym_ATimplementation] = ACTIONS(2826), + [anon_sym_ATcompatibility_alias] = ACTIONS(2826), + [anon_sym_ATselector] = ACTIONS(2826), + [anon_sym_ATavailable] = ACTIONS(2826), + [anon_sym___builtin_available] = ACTIONS(2824), + [anon_sym_va_arg] = ACTIONS(2824), + [anon_sym_ATencode] = ACTIONS(2826), + [anon_sym_BOOL] = ACTIONS(2824), + [anon_sym_IMP] = ACTIONS(2824), + [anon_sym_SEL] = ACTIONS(2824), + [anon_sym_Class] = ACTIONS(2824), + [anon_sym_id] = ACTIONS(2824), + }, + [1065] = { + [ts_builtin_sym_end] = ACTIONS(2574), + [sym_identifier] = ACTIONS(2572), + [aux_sym_preproc_include_token1] = ACTIONS(2572), + [aux_sym_preproc_include_token2] = ACTIONS(2572), + [aux_sym_preproc_def_token1] = ACTIONS(2572), + [aux_sym_preproc_if_token1] = ACTIONS(2572), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2572), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2572), + [sym_preproc_directive] = ACTIONS(2572), + [anon_sym_LPAREN2] = ACTIONS(2574), + [anon_sym_BANG] = ACTIONS(2574), + [anon_sym_TILDE] = ACTIONS(2574), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_STAR] = ACTIONS(2574), + [anon_sym_CARET] = ACTIONS(2574), + [anon_sym_AMP] = ACTIONS(2574), + [anon_sym_SEMI] = ACTIONS(2574), + [anon_sym___extension__] = ACTIONS(2572), + [anon_sym_typedef] = ACTIONS(2572), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym___attribute__] = ACTIONS(2572), + [anon_sym___attribute] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym___declspec] = ACTIONS(2572), + [anon_sym___cdecl] = ACTIONS(2572), + [anon_sym___clrcall] = ACTIONS(2572), + [anon_sym___stdcall] = ACTIONS(2572), + [anon_sym___fastcall] = ACTIONS(2572), + [anon_sym___thiscall] = ACTIONS(2572), + [anon_sym___vectorcall] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2574), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_ATautoreleasepool] = ACTIONS(2574), + [anon_sym_auto] = ACTIONS(2572), + [anon_sym_register] = ACTIONS(2572), + [anon_sym_inline] = ACTIONS(2572), + [anon_sym___inline] = ACTIONS(2572), + [anon_sym___inline__] = ACTIONS(2572), + [anon_sym___forceinline] = ACTIONS(2572), + [anon_sym_thread_local] = ACTIONS(2572), + [anon_sym___thread] = ACTIONS(2572), + [anon_sym_CG_EXTERN] = ACTIONS(2572), + [anon_sym_CG_INLINE] = ACTIONS(2572), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2572), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2572), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2572), + [anon_sym_IBOutlet] = ACTIONS(2572), + [anon_sym_IBInspectable] = ACTIONS(2572), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2572), + [anon_sym_NS_INLINE] = ACTIONS(2572), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2572), + [anon_sym_OBJC_EXPORT] = ACTIONS(2572), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2572), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_nullable] = ACTIONS(2572), + [anon_sym__Complex] = ACTIONS(2572), + [anon_sym__Nullable] = ACTIONS(2572), + [anon_sym__Nullable_result] = ACTIONS(2572), + [anon_sym__Null_unspecified] = ACTIONS(2572), + [anon_sym___autoreleasing] = ACTIONS(2572), + [anon_sym___block] = ACTIONS(2572), + [anon_sym___bridge] = ACTIONS(2572), + [anon_sym___bridge_retained] = ACTIONS(2572), + [anon_sym___bridge_transfer] = ACTIONS(2572), + [anon_sym___complex] = ACTIONS(2572), + [anon_sym___const] = ACTIONS(2572), + [anon_sym___imag] = ACTIONS(2572), + [anon_sym___kindof] = ACTIONS(2572), + [anon_sym___nonnull] = ACTIONS(2572), + [anon_sym___nullable] = ACTIONS(2572), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2572), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2572), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2572), + [anon_sym___real] = ACTIONS(2572), + [anon_sym___strong] = ACTIONS(2572), + [anon_sym___unsafe_unretained] = ACTIONS(2572), + [anon_sym___unused] = ACTIONS(2572), + [anon_sym___weak] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(2572), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_struct] = ACTIONS(2572), + [anon_sym_union] = ACTIONS(2572), + [anon_sym_if] = ACTIONS(2572), + [anon_sym_switch] = ACTIONS(2572), + [anon_sym_case] = ACTIONS(2572), + [anon_sym_default] = ACTIONS(2572), + [anon_sym_while] = ACTIONS(2572), + [anon_sym_do] = ACTIONS(2572), + [anon_sym_for] = ACTIONS(2572), + [anon_sym_in] = ACTIONS(2572), + [anon_sym_return] = ACTIONS(2572), + [anon_sym_break] = ACTIONS(2572), + [anon_sym_continue] = ACTIONS(2572), + [anon_sym_goto] = ACTIONS(2572), + [anon_sym_DASH_DASH] = ACTIONS(2574), + [anon_sym_PLUS_PLUS] = ACTIONS(2574), + [anon_sym_sizeof] = ACTIONS(2572), + [anon_sym___alignof__] = ACTIONS(2572), + [anon_sym___alignof] = ACTIONS(2572), + [anon_sym__alignof] = ACTIONS(2572), + [anon_sym_alignof] = ACTIONS(2572), + [anon_sym__Alignof] = ACTIONS(2572), + [anon_sym_offsetof] = ACTIONS(2572), + [anon_sym__Generic] = ACTIONS(2572), + [anon_sym_asm] = ACTIONS(2572), + [anon_sym___asm__] = ACTIONS(2572), + [anon_sym___asm] = ACTIONS(2572), + [sym_number_literal] = ACTIONS(2574), + [anon_sym_L_SQUOTE] = ACTIONS(2574), + [anon_sym_u_SQUOTE] = ACTIONS(2574), + [anon_sym_U_SQUOTE] = ACTIONS(2574), + [anon_sym_u8_SQUOTE] = ACTIONS(2574), + [anon_sym_SQUOTE] = ACTIONS(2574), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_DQUOTE] = ACTIONS(2574), + [anon_sym_L_DQUOTE] = ACTIONS(2574), + [anon_sym_u_DQUOTE] = ACTIONS(2574), + [anon_sym_U_DQUOTE] = ACTIONS(2574), + [anon_sym_u8_DQUOTE] = ACTIONS(2574), + [sym_true] = ACTIONS(2572), + [sym_false] = ACTIONS(2572), + [anon_sym_NULL] = ACTIONS(2572), + [anon_sym_nullptr] = ACTIONS(2572), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2572), + [anon_sym___typeof] = ACTIONS(2572), + [anon_sym_typeof] = ACTIONS(2572), + [anon_sym_ATimport] = ACTIONS(2574), + [aux_sym_preproc_undef_token1] = ACTIONS(2572), + [anon_sym_POUND] = ACTIONS(2572), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2572), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2572), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2572), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2572), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2572), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2572), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2572), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2572), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2572), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2572), + [anon_sym_NS_AVAILABLE] = ACTIONS(2572), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2572), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2572), + [anon_sym_API_AVAILABLE] = ACTIONS(2572), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2572), + [anon_sym_API_DEPRECATED] = ACTIONS(2572), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2572), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2572), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2572), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2572), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2572), + [anon_sym___deprecated_msg] = ACTIONS(2572), + [anon_sym___deprecated_enum_msg] = ACTIONS(2572), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2572), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2572), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2572), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2572), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2572), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2572), + [anon_sym_ATprotocol] = ACTIONS(2574), + [anon_sym_ATinterface] = ACTIONS(2574), + [anon_sym_ATimplementation] = ACTIONS(2574), + [anon_sym_ATcompatibility_alias] = ACTIONS(2574), + [anon_sym_ATselector] = ACTIONS(2574), + [anon_sym_ATavailable] = ACTIONS(2574), + [anon_sym___builtin_available] = ACTIONS(2572), + [anon_sym_va_arg] = ACTIONS(2572), + [anon_sym_ATencode] = ACTIONS(2574), + [anon_sym_BOOL] = ACTIONS(2572), + [anon_sym_IMP] = ACTIONS(2572), + [anon_sym_SEL] = ACTIONS(2572), + [anon_sym_Class] = ACTIONS(2572), + [anon_sym_id] = ACTIONS(2572), + }, + [1066] = { + [ts_builtin_sym_end] = ACTIONS(2834), + [sym_identifier] = ACTIONS(2832), + [aux_sym_preproc_include_token1] = ACTIONS(2832), + [aux_sym_preproc_include_token2] = ACTIONS(2832), + [aux_sym_preproc_def_token1] = ACTIONS(2832), + [aux_sym_preproc_if_token1] = ACTIONS(2832), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2832), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2832), + [sym_preproc_directive] = ACTIONS(2832), + [anon_sym_LPAREN2] = ACTIONS(2834), + [anon_sym_BANG] = ACTIONS(2834), + [anon_sym_TILDE] = ACTIONS(2834), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_PLUS] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2834), + [anon_sym_CARET] = ACTIONS(2834), + [anon_sym_AMP] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym___extension__] = ACTIONS(2832), + [anon_sym_typedef] = ACTIONS(2832), + [anon_sym_extern] = ACTIONS(2832), + [anon_sym___attribute__] = ACTIONS(2832), + [anon_sym___attribute] = ACTIONS(2832), + [anon_sym_noreturn] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2834), + [anon_sym___declspec] = ACTIONS(2832), + [anon_sym___cdecl] = ACTIONS(2832), + [anon_sym___clrcall] = ACTIONS(2832), + [anon_sym___stdcall] = ACTIONS(2832), + [anon_sym___fastcall] = ACTIONS(2832), + [anon_sym___thiscall] = ACTIONS(2832), + [anon_sym___vectorcall] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2834), + [anon_sym_signed] = ACTIONS(2832), + [anon_sym_unsigned] = ACTIONS(2832), + [anon_sym_long] = ACTIONS(2832), + [anon_sym_short] = ACTIONS(2832), + [anon_sym_static] = ACTIONS(2832), + [anon_sym_ATautoreleasepool] = ACTIONS(2834), + [anon_sym_auto] = ACTIONS(2832), + [anon_sym_register] = ACTIONS(2832), + [anon_sym_inline] = ACTIONS(2832), + [anon_sym___inline] = ACTIONS(2832), + [anon_sym___inline__] = ACTIONS(2832), + [anon_sym___forceinline] = ACTIONS(2832), + [anon_sym_thread_local] = ACTIONS(2832), + [anon_sym___thread] = ACTIONS(2832), + [anon_sym_CG_EXTERN] = ACTIONS(2832), + [anon_sym_CG_INLINE] = ACTIONS(2832), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2832), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2832), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2832), + [anon_sym_IBOutlet] = ACTIONS(2832), + [anon_sym_IBInspectable] = ACTIONS(2832), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2832), + [anon_sym_NS_INLINE] = ACTIONS(2832), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2832), + [anon_sym_OBJC_EXPORT] = ACTIONS(2832), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2832), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2832), + [anon_sym_const] = ACTIONS(2832), + [anon_sym_constexpr] = ACTIONS(2832), + [anon_sym_volatile] = ACTIONS(2832), + [anon_sym_restrict] = ACTIONS(2832), + [anon_sym___restrict__] = ACTIONS(2832), + [anon_sym__Atomic] = ACTIONS(2832), + [anon_sym__Noreturn] = ACTIONS(2832), + [anon_sym__Nonnull] = ACTIONS(2832), + [anon_sym_nullable] = ACTIONS(2832), + [anon_sym__Complex] = ACTIONS(2832), + [anon_sym__Nullable] = ACTIONS(2832), + [anon_sym__Nullable_result] = ACTIONS(2832), + [anon_sym__Null_unspecified] = ACTIONS(2832), + [anon_sym___autoreleasing] = ACTIONS(2832), + [anon_sym___block] = ACTIONS(2832), + [anon_sym___bridge] = ACTIONS(2832), + [anon_sym___bridge_retained] = ACTIONS(2832), + [anon_sym___bridge_transfer] = ACTIONS(2832), + [anon_sym___complex] = ACTIONS(2832), + [anon_sym___const] = ACTIONS(2832), + [anon_sym___imag] = ACTIONS(2832), + [anon_sym___kindof] = ACTIONS(2832), + [anon_sym___nonnull] = ACTIONS(2832), + [anon_sym___nullable] = ACTIONS(2832), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2832), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2832), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2832), + [anon_sym___real] = ACTIONS(2832), + [anon_sym___strong] = ACTIONS(2832), + [anon_sym___unsafe_unretained] = ACTIONS(2832), + [anon_sym___unused] = ACTIONS(2832), + [anon_sym___weak] = ACTIONS(2832), + [anon_sym_alignas] = ACTIONS(2832), + [anon_sym__Alignas] = ACTIONS(2832), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_enum] = ACTIONS(2832), + [anon_sym_struct] = ACTIONS(2832), + [anon_sym_union] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_switch] = ACTIONS(2832), + [anon_sym_case] = ACTIONS(2832), + [anon_sym_default] = ACTIONS(2832), + [anon_sym_while] = ACTIONS(2832), + [anon_sym_do] = ACTIONS(2832), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_in] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_goto] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2834), + [anon_sym_PLUS_PLUS] = ACTIONS(2834), + [anon_sym_sizeof] = ACTIONS(2832), + [anon_sym___alignof__] = ACTIONS(2832), + [anon_sym___alignof] = ACTIONS(2832), + [anon_sym__alignof] = ACTIONS(2832), + [anon_sym_alignof] = ACTIONS(2832), + [anon_sym__Alignof] = ACTIONS(2832), + [anon_sym_offsetof] = ACTIONS(2832), + [anon_sym__Generic] = ACTIONS(2832), + [anon_sym_asm] = ACTIONS(2832), + [anon_sym___asm__] = ACTIONS(2832), + [anon_sym___asm] = ACTIONS(2832), + [sym_number_literal] = ACTIONS(2834), + [anon_sym_L_SQUOTE] = ACTIONS(2834), + [anon_sym_u_SQUOTE] = ACTIONS(2834), + [anon_sym_U_SQUOTE] = ACTIONS(2834), + [anon_sym_u8_SQUOTE] = ACTIONS(2834), + [anon_sym_SQUOTE] = ACTIONS(2834), + [anon_sym_AT] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2834), + [anon_sym_L_DQUOTE] = ACTIONS(2834), + [anon_sym_u_DQUOTE] = ACTIONS(2834), + [anon_sym_U_DQUOTE] = ACTIONS(2834), + [anon_sym_u8_DQUOTE] = ACTIONS(2834), + [sym_true] = ACTIONS(2832), + [sym_false] = ACTIONS(2832), + [anon_sym_NULL] = ACTIONS(2832), + [anon_sym_nullptr] = ACTIONS(2832), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2832), + [anon_sym___typeof] = ACTIONS(2832), + [anon_sym_typeof] = ACTIONS(2832), + [anon_sym_ATimport] = ACTIONS(2834), + [aux_sym_preproc_undef_token1] = ACTIONS(2832), + [anon_sym_POUND] = ACTIONS(2832), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2832), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2832), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2832), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2832), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2832), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2832), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2832), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2832), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2832), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2832), + [anon_sym_NS_AVAILABLE] = ACTIONS(2832), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2832), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2832), + [anon_sym_API_AVAILABLE] = ACTIONS(2832), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2832), + [anon_sym_API_DEPRECATED] = ACTIONS(2832), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2832), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2832), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2832), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2832), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2832), + [anon_sym___deprecated_msg] = ACTIONS(2832), + [anon_sym___deprecated_enum_msg] = ACTIONS(2832), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2832), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2832), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2832), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2832), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2832), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2832), + [anon_sym_ATprotocol] = ACTIONS(2834), + [anon_sym_ATinterface] = ACTIONS(2834), + [anon_sym_ATimplementation] = ACTIONS(2834), + [anon_sym_ATcompatibility_alias] = ACTIONS(2834), + [anon_sym_ATselector] = ACTIONS(2834), + [anon_sym_ATavailable] = ACTIONS(2834), + [anon_sym___builtin_available] = ACTIONS(2832), + [anon_sym_va_arg] = ACTIONS(2832), + [anon_sym_ATencode] = ACTIONS(2834), + [anon_sym_BOOL] = ACTIONS(2832), + [anon_sym_IMP] = ACTIONS(2832), + [anon_sym_SEL] = ACTIONS(2832), + [anon_sym_Class] = ACTIONS(2832), + [anon_sym_id] = ACTIONS(2832), + }, + [1067] = { + [sym_ms_declspec_modifier] = STATE(6749), + [sym_expression] = STATE(4402), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_typedef] = ACTIONS(2962), + [anon_sym_extern] = ACTIONS(2922), + [anon_sym___attribute__] = ACTIONS(2922), + [anon_sym___attribute] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_auto] = ACTIONS(2922), + [anon_sym_register] = ACTIONS(2922), + [anon_sym_inline] = ACTIONS(2922), + [anon_sym___inline] = ACTIONS(2922), + [anon_sym___inline__] = ACTIONS(2922), + [anon_sym___forceinline] = ACTIONS(2922), + [anon_sym_thread_local] = ACTIONS(2922), + [anon_sym___thread] = ACTIONS(2922), + [anon_sym_CG_EXTERN] = ACTIONS(2922), + [anon_sym_CG_INLINE] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2922), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2922), + [anon_sym_IBOutlet] = ACTIONS(2922), + [anon_sym_IBInspectable] = ACTIONS(2922), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2922), + [anon_sym_NS_INLINE] = ACTIONS(2922), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2922), + [anon_sym_OBJC_EXPORT] = ACTIONS(2922), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(203), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2926), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2922), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2922), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2922), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2922), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE] = ACTIONS(2922), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_API_AVAILABLE] = ACTIONS(2922), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_API_DEPRECATED] = ACTIONS(2922), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2922), + [anon_sym___deprecated_msg] = ACTIONS(2922), + [anon_sym___deprecated_enum_msg] = ACTIONS(2922), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2922), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2922), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(203), + }, + [1068] = { + [ts_builtin_sym_end] = ACTIONS(2468), + [sym_identifier] = ACTIONS(2466), + [aux_sym_preproc_include_token1] = ACTIONS(2466), + [aux_sym_preproc_include_token2] = ACTIONS(2466), + [aux_sym_preproc_def_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token1] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2466), + [sym_preproc_directive] = ACTIONS(2466), + [anon_sym_LPAREN2] = ACTIONS(2468), + [anon_sym_BANG] = ACTIONS(2468), + [anon_sym_TILDE] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_PLUS] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2468), + [anon_sym_CARET] = ACTIONS(2468), + [anon_sym_AMP] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym___extension__] = ACTIONS(2466), + [anon_sym_typedef] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym___attribute__] = ACTIONS(2466), + [anon_sym___attribute] = ACTIONS(2466), + [anon_sym_noreturn] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2468), + [anon_sym___declspec] = ACTIONS(2466), + [anon_sym___cdecl] = ACTIONS(2466), + [anon_sym___clrcall] = ACTIONS(2466), + [anon_sym___stdcall] = ACTIONS(2466), + [anon_sym___fastcall] = ACTIONS(2466), + [anon_sym___thiscall] = ACTIONS(2466), + [anon_sym___vectorcall] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_signed] = ACTIONS(2466), + [anon_sym_unsigned] = ACTIONS(2466), + [anon_sym_long] = ACTIONS(2466), + [anon_sym_short] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_ATautoreleasepool] = ACTIONS(2468), + [anon_sym_auto] = ACTIONS(2466), + [anon_sym_register] = ACTIONS(2466), + [anon_sym_inline] = ACTIONS(2466), + [anon_sym___inline] = ACTIONS(2466), + [anon_sym___inline__] = ACTIONS(2466), + [anon_sym___forceinline] = ACTIONS(2466), + [anon_sym_thread_local] = ACTIONS(2466), + [anon_sym___thread] = ACTIONS(2466), + [anon_sym_CG_EXTERN] = ACTIONS(2466), + [anon_sym_CG_INLINE] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2466), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2466), + [anon_sym_IBOutlet] = ACTIONS(2466), + [anon_sym_IBInspectable] = ACTIONS(2466), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2466), + [anon_sym_NS_INLINE] = ACTIONS(2466), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2466), + [anon_sym_OBJC_EXPORT] = ACTIONS(2466), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_constexpr] = ACTIONS(2466), + [anon_sym_volatile] = ACTIONS(2466), + [anon_sym_restrict] = ACTIONS(2466), + [anon_sym___restrict__] = ACTIONS(2466), + [anon_sym__Atomic] = ACTIONS(2466), + [anon_sym__Noreturn] = ACTIONS(2466), + [anon_sym__Nonnull] = ACTIONS(2466), + [anon_sym_nullable] = ACTIONS(2466), + [anon_sym__Complex] = ACTIONS(2466), + [anon_sym__Nullable] = ACTIONS(2466), + [anon_sym__Nullable_result] = ACTIONS(2466), + [anon_sym__Null_unspecified] = ACTIONS(2466), + [anon_sym___autoreleasing] = ACTIONS(2466), + [anon_sym___block] = ACTIONS(2466), + [anon_sym___bridge] = ACTIONS(2466), + [anon_sym___bridge_retained] = ACTIONS(2466), + [anon_sym___bridge_transfer] = ACTIONS(2466), + [anon_sym___complex] = ACTIONS(2466), + [anon_sym___const] = ACTIONS(2466), + [anon_sym___imag] = ACTIONS(2466), + [anon_sym___kindof] = ACTIONS(2466), + [anon_sym___nonnull] = ACTIONS(2466), + [anon_sym___nullable] = ACTIONS(2466), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2466), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2466), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2466), + [anon_sym___real] = ACTIONS(2466), + [anon_sym___strong] = ACTIONS(2466), + [anon_sym___unsafe_unretained] = ACTIONS(2466), + [anon_sym___unused] = ACTIONS(2466), + [anon_sym___weak] = ACTIONS(2466), + [anon_sym_alignas] = ACTIONS(2466), + [anon_sym__Alignas] = ACTIONS(2466), + [sym_primitive_type] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), + [anon_sym_struct] = ACTIONS(2466), + [anon_sym_union] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_switch] = ACTIONS(2466), + [anon_sym_case] = ACTIONS(2466), + [anon_sym_default] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_do] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_in] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_goto] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2468), + [anon_sym_PLUS_PLUS] = ACTIONS(2468), + [anon_sym_sizeof] = ACTIONS(2466), + [anon_sym___alignof__] = ACTIONS(2466), + [anon_sym___alignof] = ACTIONS(2466), + [anon_sym__alignof] = ACTIONS(2466), + [anon_sym_alignof] = ACTIONS(2466), + [anon_sym__Alignof] = ACTIONS(2466), + [anon_sym_offsetof] = ACTIONS(2466), + [anon_sym__Generic] = ACTIONS(2466), + [anon_sym_asm] = ACTIONS(2466), + [anon_sym___asm__] = ACTIONS(2466), + [anon_sym___asm] = ACTIONS(2466), + [sym_number_literal] = ACTIONS(2468), + [anon_sym_L_SQUOTE] = ACTIONS(2468), + [anon_sym_u_SQUOTE] = ACTIONS(2468), + [anon_sym_U_SQUOTE] = ACTIONS(2468), + [anon_sym_u8_SQUOTE] = ACTIONS(2468), + [anon_sym_SQUOTE] = ACTIONS(2468), + [anon_sym_AT] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2468), + [anon_sym_L_DQUOTE] = ACTIONS(2468), + [anon_sym_u_DQUOTE] = ACTIONS(2468), + [anon_sym_U_DQUOTE] = ACTIONS(2468), + [anon_sym_u8_DQUOTE] = ACTIONS(2468), + [sym_true] = ACTIONS(2466), + [sym_false] = ACTIONS(2466), + [anon_sym_NULL] = ACTIONS(2466), + [anon_sym_nullptr] = ACTIONS(2466), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2466), + [anon_sym___typeof] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2466), + [anon_sym_ATimport] = ACTIONS(2468), + [aux_sym_preproc_undef_token1] = ACTIONS(2466), + [anon_sym_POUND] = ACTIONS(2466), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2466), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2466), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2466), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2466), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE] = ACTIONS(2466), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_API_AVAILABLE] = ACTIONS(2466), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_API_DEPRECATED] = ACTIONS(2466), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2466), + [anon_sym___deprecated_msg] = ACTIONS(2466), + [anon_sym___deprecated_enum_msg] = ACTIONS(2466), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2466), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2466), + [anon_sym_ATprotocol] = ACTIONS(2468), + [anon_sym_ATinterface] = ACTIONS(2468), + [anon_sym_ATimplementation] = ACTIONS(2468), + [anon_sym_ATcompatibility_alias] = ACTIONS(2468), + [anon_sym_ATselector] = ACTIONS(2468), + [anon_sym_ATavailable] = ACTIONS(2468), + [anon_sym___builtin_available] = ACTIONS(2466), + [anon_sym_va_arg] = ACTIONS(2466), + [anon_sym_ATencode] = ACTIONS(2468), + [anon_sym_BOOL] = ACTIONS(2466), + [anon_sym_IMP] = ACTIONS(2466), + [anon_sym_SEL] = ACTIONS(2466), + [anon_sym_Class] = ACTIONS(2466), + [anon_sym_id] = ACTIONS(2466), + }, + [1069] = { + [ts_builtin_sym_end] = ACTIONS(2638), + [sym_identifier] = ACTIONS(2636), + [aux_sym_preproc_include_token1] = ACTIONS(2636), + [aux_sym_preproc_include_token2] = ACTIONS(2636), + [aux_sym_preproc_def_token1] = ACTIONS(2636), + [aux_sym_preproc_if_token1] = ACTIONS(2636), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2636), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2636), + [sym_preproc_directive] = ACTIONS(2636), + [anon_sym_LPAREN2] = ACTIONS(2638), + [anon_sym_BANG] = ACTIONS(2638), + [anon_sym_TILDE] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_PLUS] = ACTIONS(2636), + [anon_sym_STAR] = ACTIONS(2638), + [anon_sym_CARET] = ACTIONS(2638), + [anon_sym_AMP] = ACTIONS(2638), + [anon_sym_SEMI] = ACTIONS(2638), + [anon_sym___extension__] = ACTIONS(2636), + [anon_sym_typedef] = ACTIONS(2636), + [anon_sym_extern] = ACTIONS(2636), + [anon_sym___attribute__] = ACTIONS(2636), + [anon_sym___attribute] = ACTIONS(2636), + [anon_sym_noreturn] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2638), + [anon_sym___declspec] = ACTIONS(2636), + [anon_sym___cdecl] = ACTIONS(2636), + [anon_sym___clrcall] = ACTIONS(2636), + [anon_sym___stdcall] = ACTIONS(2636), + [anon_sym___fastcall] = ACTIONS(2636), + [anon_sym___thiscall] = ACTIONS(2636), + [anon_sym___vectorcall] = ACTIONS(2636), + [anon_sym_LBRACE] = ACTIONS(2638), + [anon_sym_signed] = ACTIONS(2636), + [anon_sym_unsigned] = ACTIONS(2636), + [anon_sym_long] = ACTIONS(2636), + [anon_sym_short] = ACTIONS(2636), + [anon_sym_static] = ACTIONS(2636), + [anon_sym_ATautoreleasepool] = ACTIONS(2638), + [anon_sym_auto] = ACTIONS(2636), + [anon_sym_register] = ACTIONS(2636), + [anon_sym_inline] = ACTIONS(2636), + [anon_sym___inline] = ACTIONS(2636), + [anon_sym___inline__] = ACTIONS(2636), + [anon_sym___forceinline] = ACTIONS(2636), + [anon_sym_thread_local] = ACTIONS(2636), + [anon_sym___thread] = ACTIONS(2636), + [anon_sym_CG_EXTERN] = ACTIONS(2636), + [anon_sym_CG_INLINE] = ACTIONS(2636), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2636), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2636), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2636), + [anon_sym_IBOutlet] = ACTIONS(2636), + [anon_sym_IBInspectable] = ACTIONS(2636), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2636), + [anon_sym_NS_INLINE] = ACTIONS(2636), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2636), + [anon_sym_OBJC_EXPORT] = ACTIONS(2636), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2636), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2636), + [anon_sym_const] = ACTIONS(2636), + [anon_sym_constexpr] = ACTIONS(2636), + [anon_sym_volatile] = ACTIONS(2636), + [anon_sym_restrict] = ACTIONS(2636), + [anon_sym___restrict__] = ACTIONS(2636), + [anon_sym__Atomic] = ACTIONS(2636), + [anon_sym__Noreturn] = ACTIONS(2636), + [anon_sym__Nonnull] = ACTIONS(2636), + [anon_sym_nullable] = ACTIONS(2636), + [anon_sym__Complex] = ACTIONS(2636), + [anon_sym__Nullable] = ACTIONS(2636), + [anon_sym__Nullable_result] = ACTIONS(2636), + [anon_sym__Null_unspecified] = ACTIONS(2636), + [anon_sym___autoreleasing] = ACTIONS(2636), + [anon_sym___block] = ACTIONS(2636), + [anon_sym___bridge] = ACTIONS(2636), + [anon_sym___bridge_retained] = ACTIONS(2636), + [anon_sym___bridge_transfer] = ACTIONS(2636), + [anon_sym___complex] = ACTIONS(2636), + [anon_sym___const] = ACTIONS(2636), + [anon_sym___imag] = ACTIONS(2636), + [anon_sym___kindof] = ACTIONS(2636), + [anon_sym___nonnull] = ACTIONS(2636), + [anon_sym___nullable] = ACTIONS(2636), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2636), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2636), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2636), + [anon_sym___real] = ACTIONS(2636), + [anon_sym___strong] = ACTIONS(2636), + [anon_sym___unsafe_unretained] = ACTIONS(2636), + [anon_sym___unused] = ACTIONS(2636), + [anon_sym___weak] = ACTIONS(2636), + [anon_sym_alignas] = ACTIONS(2636), + [anon_sym__Alignas] = ACTIONS(2636), + [sym_primitive_type] = ACTIONS(2636), + [anon_sym_enum] = ACTIONS(2636), + [anon_sym_struct] = ACTIONS(2636), + [anon_sym_union] = ACTIONS(2636), + [anon_sym_if] = ACTIONS(2636), + [anon_sym_switch] = ACTIONS(2636), + [anon_sym_case] = ACTIONS(2636), + [anon_sym_default] = ACTIONS(2636), + [anon_sym_while] = ACTIONS(2636), + [anon_sym_do] = ACTIONS(2636), + [anon_sym_for] = ACTIONS(2636), + [anon_sym_in] = ACTIONS(2636), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_break] = ACTIONS(2636), + [anon_sym_continue] = ACTIONS(2636), + [anon_sym_goto] = ACTIONS(2636), + [anon_sym_DASH_DASH] = ACTIONS(2638), + [anon_sym_PLUS_PLUS] = ACTIONS(2638), + [anon_sym_sizeof] = ACTIONS(2636), + [anon_sym___alignof__] = ACTIONS(2636), + [anon_sym___alignof] = ACTIONS(2636), + [anon_sym__alignof] = ACTIONS(2636), + [anon_sym_alignof] = ACTIONS(2636), + [anon_sym__Alignof] = ACTIONS(2636), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2636), + [anon_sym_asm] = ACTIONS(2636), + [anon_sym___asm__] = ACTIONS(2636), + [anon_sym___asm] = ACTIONS(2636), + [sym_number_literal] = ACTIONS(2638), + [anon_sym_L_SQUOTE] = ACTIONS(2638), + [anon_sym_u_SQUOTE] = ACTIONS(2638), + [anon_sym_U_SQUOTE] = ACTIONS(2638), + [anon_sym_u8_SQUOTE] = ACTIONS(2638), + [anon_sym_SQUOTE] = ACTIONS(2638), + [anon_sym_AT] = ACTIONS(2636), + [anon_sym_DQUOTE] = ACTIONS(2638), + [anon_sym_L_DQUOTE] = ACTIONS(2638), + [anon_sym_u_DQUOTE] = ACTIONS(2638), + [anon_sym_U_DQUOTE] = ACTIONS(2638), + [anon_sym_u8_DQUOTE] = ACTIONS(2638), + [sym_true] = ACTIONS(2636), + [sym_false] = ACTIONS(2636), + [anon_sym_NULL] = ACTIONS(2636), + [anon_sym_nullptr] = ACTIONS(2636), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2636), + [anon_sym___typeof] = ACTIONS(2636), + [anon_sym_typeof] = ACTIONS(2636), + [anon_sym_ATimport] = ACTIONS(2638), + [aux_sym_preproc_undef_token1] = ACTIONS(2636), + [anon_sym_POUND] = ACTIONS(2636), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2636), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2636), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2636), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2636), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2636), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2636), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2636), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2636), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2636), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2636), + [anon_sym_NS_AVAILABLE] = ACTIONS(2636), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2636), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2636), + [anon_sym_API_AVAILABLE] = ACTIONS(2636), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2636), + [anon_sym_API_DEPRECATED] = ACTIONS(2636), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2636), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2636), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2636), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2636), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2636), + [anon_sym___deprecated_msg] = ACTIONS(2636), + [anon_sym___deprecated_enum_msg] = ACTIONS(2636), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2636), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2636), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2636), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2636), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2636), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2636), + [anon_sym_ATprotocol] = ACTIONS(2638), + [anon_sym_ATinterface] = ACTIONS(2638), + [anon_sym_ATimplementation] = ACTIONS(2638), + [anon_sym_ATcompatibility_alias] = ACTIONS(2638), + [anon_sym_ATselector] = ACTIONS(2638), + [anon_sym_ATavailable] = ACTIONS(2638), + [anon_sym___builtin_available] = ACTIONS(2636), + [anon_sym_va_arg] = ACTIONS(2636), + [anon_sym_ATencode] = ACTIONS(2638), + [anon_sym_BOOL] = ACTIONS(2636), + [anon_sym_IMP] = ACTIONS(2636), + [anon_sym_SEL] = ACTIONS(2636), + [anon_sym_Class] = ACTIONS(2636), + [anon_sym_id] = ACTIONS(2636), + }, + [1070] = { + [ts_builtin_sym_end] = ACTIONS(2468), + [sym_identifier] = ACTIONS(2466), + [aux_sym_preproc_include_token1] = ACTIONS(2466), + [aux_sym_preproc_include_token2] = ACTIONS(2466), + [aux_sym_preproc_def_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token1] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2466), + [sym_preproc_directive] = ACTIONS(2466), + [anon_sym_LPAREN2] = ACTIONS(2468), + [anon_sym_BANG] = ACTIONS(2468), + [anon_sym_TILDE] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_PLUS] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2468), + [anon_sym_CARET] = ACTIONS(2468), + [anon_sym_AMP] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym___extension__] = ACTIONS(2466), + [anon_sym_typedef] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym___attribute__] = ACTIONS(2466), + [anon_sym___attribute] = ACTIONS(2466), + [anon_sym_noreturn] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2468), + [anon_sym___declspec] = ACTIONS(2466), + [anon_sym___cdecl] = ACTIONS(2466), + [anon_sym___clrcall] = ACTIONS(2466), + [anon_sym___stdcall] = ACTIONS(2466), + [anon_sym___fastcall] = ACTIONS(2466), + [anon_sym___thiscall] = ACTIONS(2466), + [anon_sym___vectorcall] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_signed] = ACTIONS(2466), + [anon_sym_unsigned] = ACTIONS(2466), + [anon_sym_long] = ACTIONS(2466), + [anon_sym_short] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_ATautoreleasepool] = ACTIONS(2468), + [anon_sym_auto] = ACTIONS(2466), + [anon_sym_register] = ACTIONS(2466), + [anon_sym_inline] = ACTIONS(2466), + [anon_sym___inline] = ACTIONS(2466), + [anon_sym___inline__] = ACTIONS(2466), + [anon_sym___forceinline] = ACTIONS(2466), + [anon_sym_thread_local] = ACTIONS(2466), + [anon_sym___thread] = ACTIONS(2466), + [anon_sym_CG_EXTERN] = ACTIONS(2466), + [anon_sym_CG_INLINE] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2466), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2466), + [anon_sym_IBOutlet] = ACTIONS(2466), + [anon_sym_IBInspectable] = ACTIONS(2466), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2466), + [anon_sym_NS_INLINE] = ACTIONS(2466), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2466), + [anon_sym_OBJC_EXPORT] = ACTIONS(2466), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_constexpr] = ACTIONS(2466), + [anon_sym_volatile] = ACTIONS(2466), + [anon_sym_restrict] = ACTIONS(2466), + [anon_sym___restrict__] = ACTIONS(2466), + [anon_sym__Atomic] = ACTIONS(2466), + [anon_sym__Noreturn] = ACTIONS(2466), + [anon_sym__Nonnull] = ACTIONS(2466), + [anon_sym_nullable] = ACTIONS(2466), + [anon_sym__Complex] = ACTIONS(2466), + [anon_sym__Nullable] = ACTIONS(2466), + [anon_sym__Nullable_result] = ACTIONS(2466), + [anon_sym__Null_unspecified] = ACTIONS(2466), + [anon_sym___autoreleasing] = ACTIONS(2466), + [anon_sym___block] = ACTIONS(2466), + [anon_sym___bridge] = ACTIONS(2466), + [anon_sym___bridge_retained] = ACTIONS(2466), + [anon_sym___bridge_transfer] = ACTIONS(2466), + [anon_sym___complex] = ACTIONS(2466), + [anon_sym___const] = ACTIONS(2466), + [anon_sym___imag] = ACTIONS(2466), + [anon_sym___kindof] = ACTIONS(2466), + [anon_sym___nonnull] = ACTIONS(2466), + [anon_sym___nullable] = ACTIONS(2466), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2466), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2466), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2466), + [anon_sym___real] = ACTIONS(2466), + [anon_sym___strong] = ACTIONS(2466), + [anon_sym___unsafe_unretained] = ACTIONS(2466), + [anon_sym___unused] = ACTIONS(2466), + [anon_sym___weak] = ACTIONS(2466), + [anon_sym_alignas] = ACTIONS(2466), + [anon_sym__Alignas] = ACTIONS(2466), + [sym_primitive_type] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), + [anon_sym_struct] = ACTIONS(2466), + [anon_sym_union] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_switch] = ACTIONS(2466), + [anon_sym_case] = ACTIONS(2466), + [anon_sym_default] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_do] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_in] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_goto] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2468), + [anon_sym_PLUS_PLUS] = ACTIONS(2468), + [anon_sym_sizeof] = ACTIONS(2466), + [anon_sym___alignof__] = ACTIONS(2466), + [anon_sym___alignof] = ACTIONS(2466), + [anon_sym__alignof] = ACTIONS(2466), + [anon_sym_alignof] = ACTIONS(2466), + [anon_sym__Alignof] = ACTIONS(2466), + [anon_sym_offsetof] = ACTIONS(2466), + [anon_sym__Generic] = ACTIONS(2466), + [anon_sym_asm] = ACTIONS(2466), + [anon_sym___asm__] = ACTIONS(2466), + [anon_sym___asm] = ACTIONS(2466), + [sym_number_literal] = ACTIONS(2468), + [anon_sym_L_SQUOTE] = ACTIONS(2468), + [anon_sym_u_SQUOTE] = ACTIONS(2468), + [anon_sym_U_SQUOTE] = ACTIONS(2468), + [anon_sym_u8_SQUOTE] = ACTIONS(2468), + [anon_sym_SQUOTE] = ACTIONS(2468), + [anon_sym_AT] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2468), + [anon_sym_L_DQUOTE] = ACTIONS(2468), + [anon_sym_u_DQUOTE] = ACTIONS(2468), + [anon_sym_U_DQUOTE] = ACTIONS(2468), + [anon_sym_u8_DQUOTE] = ACTIONS(2468), + [sym_true] = ACTIONS(2466), + [sym_false] = ACTIONS(2466), + [anon_sym_NULL] = ACTIONS(2466), + [anon_sym_nullptr] = ACTIONS(2466), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2466), + [anon_sym___typeof] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2466), + [anon_sym_ATimport] = ACTIONS(2468), + [aux_sym_preproc_undef_token1] = ACTIONS(2466), + [anon_sym_POUND] = ACTIONS(2466), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2466), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2466), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2466), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2466), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE] = ACTIONS(2466), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_API_AVAILABLE] = ACTIONS(2466), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_API_DEPRECATED] = ACTIONS(2466), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2466), + [anon_sym___deprecated_msg] = ACTIONS(2466), + [anon_sym___deprecated_enum_msg] = ACTIONS(2466), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2466), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2466), + [anon_sym_ATprotocol] = ACTIONS(2468), + [anon_sym_ATinterface] = ACTIONS(2468), + [anon_sym_ATimplementation] = ACTIONS(2468), + [anon_sym_ATcompatibility_alias] = ACTIONS(2468), + [anon_sym_ATselector] = ACTIONS(2468), + [anon_sym_ATavailable] = ACTIONS(2468), + [anon_sym___builtin_available] = ACTIONS(2466), + [anon_sym_va_arg] = ACTIONS(2466), + [anon_sym_ATencode] = ACTIONS(2468), + [anon_sym_BOOL] = ACTIONS(2466), + [anon_sym_IMP] = ACTIONS(2466), + [anon_sym_SEL] = ACTIONS(2466), + [anon_sym_Class] = ACTIONS(2466), + [anon_sym_id] = ACTIONS(2466), + }, + [1071] = { + [ts_builtin_sym_end] = ACTIONS(2842), + [sym_identifier] = ACTIONS(2840), + [aux_sym_preproc_include_token1] = ACTIONS(2840), + [aux_sym_preproc_include_token2] = ACTIONS(2840), + [aux_sym_preproc_def_token1] = ACTIONS(2840), + [aux_sym_preproc_if_token1] = ACTIONS(2840), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2840), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2840), + [sym_preproc_directive] = ACTIONS(2840), + [anon_sym_LPAREN2] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(2842), + [anon_sym_TILDE] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2840), + [anon_sym_PLUS] = ACTIONS(2840), + [anon_sym_STAR] = ACTIONS(2842), + [anon_sym_CARET] = ACTIONS(2842), + [anon_sym_AMP] = ACTIONS(2842), + [anon_sym_SEMI] = ACTIONS(2842), + [anon_sym___extension__] = ACTIONS(2840), + [anon_sym_typedef] = ACTIONS(2840), + [anon_sym_extern] = ACTIONS(2840), + [anon_sym___attribute__] = ACTIONS(2840), + [anon_sym___attribute] = ACTIONS(2840), + [anon_sym_noreturn] = ACTIONS(2840), + [anon_sym_LBRACK] = ACTIONS(2842), + [anon_sym___declspec] = ACTIONS(2840), + [anon_sym___cdecl] = ACTIONS(2840), + [anon_sym___clrcall] = ACTIONS(2840), + [anon_sym___stdcall] = ACTIONS(2840), + [anon_sym___fastcall] = ACTIONS(2840), + [anon_sym___thiscall] = ACTIONS(2840), + [anon_sym___vectorcall] = ACTIONS(2840), + [anon_sym_LBRACE] = ACTIONS(2842), + [anon_sym_signed] = ACTIONS(2840), + [anon_sym_unsigned] = ACTIONS(2840), + [anon_sym_long] = ACTIONS(2840), + [anon_sym_short] = ACTIONS(2840), + [anon_sym_static] = ACTIONS(2840), + [anon_sym_ATautoreleasepool] = ACTIONS(2842), + [anon_sym_auto] = ACTIONS(2840), + [anon_sym_register] = ACTIONS(2840), + [anon_sym_inline] = ACTIONS(2840), + [anon_sym___inline] = ACTIONS(2840), + [anon_sym___inline__] = ACTIONS(2840), + [anon_sym___forceinline] = ACTIONS(2840), + [anon_sym_thread_local] = ACTIONS(2840), + [anon_sym___thread] = ACTIONS(2840), + [anon_sym_CG_EXTERN] = ACTIONS(2840), + [anon_sym_CG_INLINE] = ACTIONS(2840), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2840), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2840), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2840), + [anon_sym_IBOutlet] = ACTIONS(2840), + [anon_sym_IBInspectable] = ACTIONS(2840), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2840), + [anon_sym_NS_INLINE] = ACTIONS(2840), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2840), + [anon_sym_OBJC_EXPORT] = ACTIONS(2840), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2840), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2840), + [anon_sym_const] = ACTIONS(2840), + [anon_sym_constexpr] = ACTIONS(2840), + [anon_sym_volatile] = ACTIONS(2840), + [anon_sym_restrict] = ACTIONS(2840), + [anon_sym___restrict__] = ACTIONS(2840), + [anon_sym__Atomic] = ACTIONS(2840), + [anon_sym__Noreturn] = ACTIONS(2840), + [anon_sym__Nonnull] = ACTIONS(2840), + [anon_sym_nullable] = ACTIONS(2840), + [anon_sym__Complex] = ACTIONS(2840), + [anon_sym__Nullable] = ACTIONS(2840), + [anon_sym__Nullable_result] = ACTIONS(2840), + [anon_sym__Null_unspecified] = ACTIONS(2840), + [anon_sym___autoreleasing] = ACTIONS(2840), + [anon_sym___block] = ACTIONS(2840), + [anon_sym___bridge] = ACTIONS(2840), + [anon_sym___bridge_retained] = ACTIONS(2840), + [anon_sym___bridge_transfer] = ACTIONS(2840), + [anon_sym___complex] = ACTIONS(2840), + [anon_sym___const] = ACTIONS(2840), + [anon_sym___imag] = ACTIONS(2840), + [anon_sym___kindof] = ACTIONS(2840), + [anon_sym___nonnull] = ACTIONS(2840), + [anon_sym___nullable] = ACTIONS(2840), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2840), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2840), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2840), + [anon_sym___real] = ACTIONS(2840), + [anon_sym___strong] = ACTIONS(2840), + [anon_sym___unsafe_unretained] = ACTIONS(2840), + [anon_sym___unused] = ACTIONS(2840), + [anon_sym___weak] = ACTIONS(2840), + [anon_sym_alignas] = ACTIONS(2840), + [anon_sym__Alignas] = ACTIONS(2840), + [sym_primitive_type] = ACTIONS(2840), + [anon_sym_enum] = ACTIONS(2840), + [anon_sym_struct] = ACTIONS(2840), + [anon_sym_union] = ACTIONS(2840), + [anon_sym_if] = ACTIONS(2840), + [anon_sym_switch] = ACTIONS(2840), + [anon_sym_case] = ACTIONS(2840), + [anon_sym_default] = ACTIONS(2840), + [anon_sym_while] = ACTIONS(2840), + [anon_sym_do] = ACTIONS(2840), + [anon_sym_for] = ACTIONS(2840), + [anon_sym_in] = ACTIONS(2840), + [anon_sym_return] = ACTIONS(2840), + [anon_sym_break] = ACTIONS(2840), + [anon_sym_continue] = ACTIONS(2840), + [anon_sym_goto] = ACTIONS(2840), + [anon_sym_DASH_DASH] = ACTIONS(2842), + [anon_sym_PLUS_PLUS] = ACTIONS(2842), + [anon_sym_sizeof] = ACTIONS(2840), + [anon_sym___alignof__] = ACTIONS(2840), + [anon_sym___alignof] = ACTIONS(2840), + [anon_sym__alignof] = ACTIONS(2840), + [anon_sym_alignof] = ACTIONS(2840), + [anon_sym__Alignof] = ACTIONS(2840), + [anon_sym_offsetof] = ACTIONS(2840), + [anon_sym__Generic] = ACTIONS(2840), + [anon_sym_asm] = ACTIONS(2840), + [anon_sym___asm__] = ACTIONS(2840), + [anon_sym___asm] = ACTIONS(2840), + [sym_number_literal] = ACTIONS(2842), + [anon_sym_L_SQUOTE] = ACTIONS(2842), + [anon_sym_u_SQUOTE] = ACTIONS(2842), + [anon_sym_U_SQUOTE] = ACTIONS(2842), + [anon_sym_u8_SQUOTE] = ACTIONS(2842), + [anon_sym_SQUOTE] = ACTIONS(2842), + [anon_sym_AT] = ACTIONS(2840), + [anon_sym_DQUOTE] = ACTIONS(2842), + [anon_sym_L_DQUOTE] = ACTIONS(2842), + [anon_sym_u_DQUOTE] = ACTIONS(2842), + [anon_sym_U_DQUOTE] = ACTIONS(2842), + [anon_sym_u8_DQUOTE] = ACTIONS(2842), + [sym_true] = ACTIONS(2840), + [sym_false] = ACTIONS(2840), + [anon_sym_NULL] = ACTIONS(2840), + [anon_sym_nullptr] = ACTIONS(2840), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2840), + [anon_sym___typeof] = ACTIONS(2840), + [anon_sym_typeof] = ACTIONS(2840), + [anon_sym_ATimport] = ACTIONS(2842), + [aux_sym_preproc_undef_token1] = ACTIONS(2840), + [anon_sym_POUND] = ACTIONS(2840), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2840), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2840), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2840), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2840), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2840), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2840), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2840), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2840), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2840), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2840), + [anon_sym_NS_AVAILABLE] = ACTIONS(2840), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2840), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2840), + [anon_sym_API_AVAILABLE] = ACTIONS(2840), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2840), + [anon_sym_API_DEPRECATED] = ACTIONS(2840), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2840), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2840), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2840), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2840), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2840), + [anon_sym___deprecated_msg] = ACTIONS(2840), + [anon_sym___deprecated_enum_msg] = ACTIONS(2840), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2840), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2840), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2840), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2840), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2840), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2840), + [anon_sym_ATprotocol] = ACTIONS(2842), + [anon_sym_ATinterface] = ACTIONS(2842), + [anon_sym_ATimplementation] = ACTIONS(2842), + [anon_sym_ATcompatibility_alias] = ACTIONS(2842), + [anon_sym_ATselector] = ACTIONS(2842), + [anon_sym_ATavailable] = ACTIONS(2842), + [anon_sym___builtin_available] = ACTIONS(2840), + [anon_sym_va_arg] = ACTIONS(2840), + [anon_sym_ATencode] = ACTIONS(2842), + [anon_sym_BOOL] = ACTIONS(2840), + [anon_sym_IMP] = ACTIONS(2840), + [anon_sym_SEL] = ACTIONS(2840), + [anon_sym_Class] = ACTIONS(2840), + [anon_sym_id] = ACTIONS(2840), + }, + [1072] = { + [ts_builtin_sym_end] = ACTIONS(2846), + [sym_identifier] = ACTIONS(2844), + [aux_sym_preproc_include_token1] = ACTIONS(2844), + [aux_sym_preproc_include_token2] = ACTIONS(2844), + [aux_sym_preproc_def_token1] = ACTIONS(2844), + [aux_sym_preproc_if_token1] = ACTIONS(2844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2844), + [sym_preproc_directive] = ACTIONS(2844), + [anon_sym_LPAREN2] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2844), + [anon_sym_PLUS] = ACTIONS(2844), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_CARET] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2846), + [anon_sym_SEMI] = ACTIONS(2846), + [anon_sym___extension__] = ACTIONS(2844), + [anon_sym_typedef] = ACTIONS(2844), + [anon_sym_extern] = ACTIONS(2844), + [anon_sym___attribute__] = ACTIONS(2844), + [anon_sym___attribute] = ACTIONS(2844), + [anon_sym_noreturn] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym___declspec] = ACTIONS(2844), + [anon_sym___cdecl] = ACTIONS(2844), + [anon_sym___clrcall] = ACTIONS(2844), + [anon_sym___stdcall] = ACTIONS(2844), + [anon_sym___fastcall] = ACTIONS(2844), + [anon_sym___thiscall] = ACTIONS(2844), + [anon_sym___vectorcall] = ACTIONS(2844), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_signed] = ACTIONS(2844), + [anon_sym_unsigned] = ACTIONS(2844), + [anon_sym_long] = ACTIONS(2844), + [anon_sym_short] = ACTIONS(2844), + [anon_sym_static] = ACTIONS(2844), + [anon_sym_ATautoreleasepool] = ACTIONS(2846), + [anon_sym_auto] = ACTIONS(2844), + [anon_sym_register] = ACTIONS(2844), + [anon_sym_inline] = ACTIONS(2844), + [anon_sym___inline] = ACTIONS(2844), + [anon_sym___inline__] = ACTIONS(2844), + [anon_sym___forceinline] = ACTIONS(2844), + [anon_sym_thread_local] = ACTIONS(2844), + [anon_sym___thread] = ACTIONS(2844), + [anon_sym_CG_EXTERN] = ACTIONS(2844), + [anon_sym_CG_INLINE] = ACTIONS(2844), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2844), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2844), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2844), + [anon_sym_IBOutlet] = ACTIONS(2844), + [anon_sym_IBInspectable] = ACTIONS(2844), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2844), + [anon_sym_NS_INLINE] = ACTIONS(2844), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2844), + [anon_sym_OBJC_EXPORT] = ACTIONS(2844), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2844), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2844), + [anon_sym_const] = ACTIONS(2844), + [anon_sym_constexpr] = ACTIONS(2844), + [anon_sym_volatile] = ACTIONS(2844), + [anon_sym_restrict] = ACTIONS(2844), + [anon_sym___restrict__] = ACTIONS(2844), + [anon_sym__Atomic] = ACTIONS(2844), + [anon_sym__Noreturn] = ACTIONS(2844), + [anon_sym__Nonnull] = ACTIONS(2844), + [anon_sym_nullable] = ACTIONS(2844), + [anon_sym__Complex] = ACTIONS(2844), + [anon_sym__Nullable] = ACTIONS(2844), + [anon_sym__Nullable_result] = ACTIONS(2844), + [anon_sym__Null_unspecified] = ACTIONS(2844), + [anon_sym___autoreleasing] = ACTIONS(2844), + [anon_sym___block] = ACTIONS(2844), + [anon_sym___bridge] = ACTIONS(2844), + [anon_sym___bridge_retained] = ACTIONS(2844), + [anon_sym___bridge_transfer] = ACTIONS(2844), + [anon_sym___complex] = ACTIONS(2844), + [anon_sym___const] = ACTIONS(2844), + [anon_sym___imag] = ACTIONS(2844), + [anon_sym___kindof] = ACTIONS(2844), + [anon_sym___nonnull] = ACTIONS(2844), + [anon_sym___nullable] = ACTIONS(2844), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2844), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2844), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2844), + [anon_sym___real] = ACTIONS(2844), + [anon_sym___strong] = ACTIONS(2844), + [anon_sym___unsafe_unretained] = ACTIONS(2844), + [anon_sym___unused] = ACTIONS(2844), + [anon_sym___weak] = ACTIONS(2844), + [anon_sym_alignas] = ACTIONS(2844), + [anon_sym__Alignas] = ACTIONS(2844), + [sym_primitive_type] = ACTIONS(2844), + [anon_sym_enum] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2844), + [anon_sym_union] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2844), + [anon_sym_switch] = ACTIONS(2844), + [anon_sym_case] = ACTIONS(2844), + [anon_sym_default] = ACTIONS(2844), + [anon_sym_while] = ACTIONS(2844), + [anon_sym_do] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(2844), + [anon_sym_in] = ACTIONS(2844), + [anon_sym_return] = ACTIONS(2844), + [anon_sym_break] = ACTIONS(2844), + [anon_sym_continue] = ACTIONS(2844), + [anon_sym_goto] = ACTIONS(2844), + [anon_sym_DASH_DASH] = ACTIONS(2846), + [anon_sym_PLUS_PLUS] = ACTIONS(2846), + [anon_sym_sizeof] = ACTIONS(2844), + [anon_sym___alignof__] = ACTIONS(2844), + [anon_sym___alignof] = ACTIONS(2844), + [anon_sym__alignof] = ACTIONS(2844), + [anon_sym_alignof] = ACTIONS(2844), + [anon_sym__Alignof] = ACTIONS(2844), + [anon_sym_offsetof] = ACTIONS(2844), + [anon_sym__Generic] = ACTIONS(2844), + [anon_sym_asm] = ACTIONS(2844), + [anon_sym___asm__] = ACTIONS(2844), + [anon_sym___asm] = ACTIONS(2844), + [sym_number_literal] = ACTIONS(2846), + [anon_sym_L_SQUOTE] = ACTIONS(2846), + [anon_sym_u_SQUOTE] = ACTIONS(2846), + [anon_sym_U_SQUOTE] = ACTIONS(2846), + [anon_sym_u8_SQUOTE] = ACTIONS(2846), + [anon_sym_SQUOTE] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2844), + [anon_sym_DQUOTE] = ACTIONS(2846), + [anon_sym_L_DQUOTE] = ACTIONS(2846), + [anon_sym_u_DQUOTE] = ACTIONS(2846), + [anon_sym_U_DQUOTE] = ACTIONS(2846), + [anon_sym_u8_DQUOTE] = ACTIONS(2846), + [sym_true] = ACTIONS(2844), + [sym_false] = ACTIONS(2844), + [anon_sym_NULL] = ACTIONS(2844), + [anon_sym_nullptr] = ACTIONS(2844), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2844), + [anon_sym___typeof] = ACTIONS(2844), + [anon_sym_typeof] = ACTIONS(2844), + [anon_sym_ATimport] = ACTIONS(2846), + [aux_sym_preproc_undef_token1] = ACTIONS(2844), + [anon_sym_POUND] = ACTIONS(2844), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2844), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2844), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2844), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2844), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2844), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2844), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2844), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2844), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2844), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2844), + [anon_sym_NS_AVAILABLE] = ACTIONS(2844), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2844), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2844), + [anon_sym_API_AVAILABLE] = ACTIONS(2844), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2844), + [anon_sym_API_DEPRECATED] = ACTIONS(2844), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2844), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2844), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2844), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2844), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2844), + [anon_sym___deprecated_msg] = ACTIONS(2844), + [anon_sym___deprecated_enum_msg] = ACTIONS(2844), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2844), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2844), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2844), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2844), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2844), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2844), + [anon_sym_ATprotocol] = ACTIONS(2846), + [anon_sym_ATinterface] = ACTIONS(2846), + [anon_sym_ATimplementation] = ACTIONS(2846), + [anon_sym_ATcompatibility_alias] = ACTIONS(2846), + [anon_sym_ATselector] = ACTIONS(2846), + [anon_sym_ATavailable] = ACTIONS(2846), + [anon_sym___builtin_available] = ACTIONS(2844), + [anon_sym_va_arg] = ACTIONS(2844), + [anon_sym_ATencode] = ACTIONS(2846), + [anon_sym_BOOL] = ACTIONS(2844), + [anon_sym_IMP] = ACTIONS(2844), + [anon_sym_SEL] = ACTIONS(2844), + [anon_sym_Class] = ACTIONS(2844), + [anon_sym_id] = ACTIONS(2844), + }, + [1073] = { + [ts_builtin_sym_end] = ACTIONS(2472), + [sym_identifier] = ACTIONS(2470), + [aux_sym_preproc_include_token1] = ACTIONS(2470), + [aux_sym_preproc_include_token2] = ACTIONS(2470), + [aux_sym_preproc_def_token1] = ACTIONS(2470), + [aux_sym_preproc_if_token1] = ACTIONS(2470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2470), + [sym_preproc_directive] = ACTIONS(2470), + [anon_sym_LPAREN2] = ACTIONS(2472), + [anon_sym_BANG] = ACTIONS(2472), + [anon_sym_TILDE] = ACTIONS(2472), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_CARET] = ACTIONS(2472), + [anon_sym_AMP] = ACTIONS(2472), + [anon_sym_SEMI] = ACTIONS(2472), + [anon_sym___extension__] = ACTIONS(2470), + [anon_sym_typedef] = ACTIONS(2470), + [anon_sym_extern] = ACTIONS(2470), + [anon_sym___attribute__] = ACTIONS(2470), + [anon_sym___attribute] = ACTIONS(2470), + [anon_sym_noreturn] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2472), + [anon_sym___declspec] = ACTIONS(2470), + [anon_sym___cdecl] = ACTIONS(2470), + [anon_sym___clrcall] = ACTIONS(2470), + [anon_sym___stdcall] = ACTIONS(2470), + [anon_sym___fastcall] = ACTIONS(2470), + [anon_sym___thiscall] = ACTIONS(2470), + [anon_sym___vectorcall] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2472), + [anon_sym_signed] = ACTIONS(2470), + [anon_sym_unsigned] = ACTIONS(2470), + [anon_sym_long] = ACTIONS(2470), + [anon_sym_short] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_ATautoreleasepool] = ACTIONS(2472), + [anon_sym_auto] = ACTIONS(2470), + [anon_sym_register] = ACTIONS(2470), + [anon_sym_inline] = ACTIONS(2470), + [anon_sym___inline] = ACTIONS(2470), + [anon_sym___inline__] = ACTIONS(2470), + [anon_sym___forceinline] = ACTIONS(2470), + [anon_sym_thread_local] = ACTIONS(2470), + [anon_sym___thread] = ACTIONS(2470), + [anon_sym_CG_EXTERN] = ACTIONS(2470), + [anon_sym_CG_INLINE] = ACTIONS(2470), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2470), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2470), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2470), + [anon_sym_IBOutlet] = ACTIONS(2470), + [anon_sym_IBInspectable] = ACTIONS(2470), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2470), + [anon_sym_NS_INLINE] = ACTIONS(2470), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2470), + [anon_sym_OBJC_EXPORT] = ACTIONS(2470), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2470), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_constexpr] = ACTIONS(2470), + [anon_sym_volatile] = ACTIONS(2470), + [anon_sym_restrict] = ACTIONS(2470), + [anon_sym___restrict__] = ACTIONS(2470), + [anon_sym__Atomic] = ACTIONS(2470), + [anon_sym__Noreturn] = ACTIONS(2470), + [anon_sym__Nonnull] = ACTIONS(2470), + [anon_sym_nullable] = ACTIONS(2470), + [anon_sym__Complex] = ACTIONS(2470), + [anon_sym__Nullable] = ACTIONS(2470), + [anon_sym__Nullable_result] = ACTIONS(2470), + [anon_sym__Null_unspecified] = ACTIONS(2470), + [anon_sym___autoreleasing] = ACTIONS(2470), + [anon_sym___block] = ACTIONS(2470), + [anon_sym___bridge] = ACTIONS(2470), + [anon_sym___bridge_retained] = ACTIONS(2470), + [anon_sym___bridge_transfer] = ACTIONS(2470), + [anon_sym___complex] = ACTIONS(2470), + [anon_sym___const] = ACTIONS(2470), + [anon_sym___imag] = ACTIONS(2470), + [anon_sym___kindof] = ACTIONS(2470), + [anon_sym___nonnull] = ACTIONS(2470), + [anon_sym___nullable] = ACTIONS(2470), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2470), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2470), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2470), + [anon_sym___real] = ACTIONS(2470), + [anon_sym___strong] = ACTIONS(2470), + [anon_sym___unsafe_unretained] = ACTIONS(2470), + [anon_sym___unused] = ACTIONS(2470), + [anon_sym___weak] = ACTIONS(2470), + [anon_sym_alignas] = ACTIONS(2470), + [anon_sym__Alignas] = ACTIONS(2470), + [sym_primitive_type] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [anon_sym_struct] = ACTIONS(2470), + [anon_sym_union] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_case] = ACTIONS(2470), + [anon_sym_default] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_in] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_goto] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2472), + [anon_sym_PLUS_PLUS] = ACTIONS(2472), + [anon_sym_sizeof] = ACTIONS(2470), + [anon_sym___alignof__] = ACTIONS(2470), + [anon_sym___alignof] = ACTIONS(2470), + [anon_sym__alignof] = ACTIONS(2470), + [anon_sym_alignof] = ACTIONS(2470), + [anon_sym__Alignof] = ACTIONS(2470), + [anon_sym_offsetof] = ACTIONS(2470), + [anon_sym__Generic] = ACTIONS(2470), + [anon_sym_asm] = ACTIONS(2470), + [anon_sym___asm__] = ACTIONS(2470), + [anon_sym___asm] = ACTIONS(2470), + [sym_number_literal] = ACTIONS(2472), + [anon_sym_L_SQUOTE] = ACTIONS(2472), + [anon_sym_u_SQUOTE] = ACTIONS(2472), + [anon_sym_U_SQUOTE] = ACTIONS(2472), + [anon_sym_u8_SQUOTE] = ACTIONS(2472), + [anon_sym_SQUOTE] = ACTIONS(2472), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2472), + [anon_sym_L_DQUOTE] = ACTIONS(2472), + [anon_sym_u_DQUOTE] = ACTIONS(2472), + [anon_sym_U_DQUOTE] = ACTIONS(2472), + [anon_sym_u8_DQUOTE] = ACTIONS(2472), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [anon_sym_NULL] = ACTIONS(2470), + [anon_sym_nullptr] = ACTIONS(2470), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2470), + [anon_sym___typeof] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_ATimport] = ACTIONS(2472), + [aux_sym_preproc_undef_token1] = ACTIONS(2470), + [anon_sym_POUND] = ACTIONS(2470), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2470), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2470), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2470), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2470), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2470), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2470), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2470), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2470), + [anon_sym_NS_AVAILABLE] = ACTIONS(2470), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2470), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_API_AVAILABLE] = ACTIONS(2470), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_API_DEPRECATED] = ACTIONS(2470), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2470), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2470), + [anon_sym___deprecated_msg] = ACTIONS(2470), + [anon_sym___deprecated_enum_msg] = ACTIONS(2470), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2470), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2470), + [anon_sym_ATprotocol] = ACTIONS(2472), + [anon_sym_ATinterface] = ACTIONS(2472), + [anon_sym_ATimplementation] = ACTIONS(2472), + [anon_sym_ATcompatibility_alias] = ACTIONS(2472), + [anon_sym_ATselector] = ACTIONS(2472), + [anon_sym_ATavailable] = ACTIONS(2472), + [anon_sym___builtin_available] = ACTIONS(2470), + [anon_sym_va_arg] = ACTIONS(2470), + [anon_sym_ATencode] = ACTIONS(2472), + [anon_sym_BOOL] = ACTIONS(2470), + [anon_sym_IMP] = ACTIONS(2470), + [anon_sym_SEL] = ACTIONS(2470), + [anon_sym_Class] = ACTIONS(2470), + [anon_sym_id] = ACTIONS(2470), + }, + [1074] = { + [ts_builtin_sym_end] = ACTIONS(2642), + [sym_identifier] = ACTIONS(2640), + [aux_sym_preproc_include_token1] = ACTIONS(2640), + [aux_sym_preproc_include_token2] = ACTIONS(2640), + [aux_sym_preproc_def_token1] = ACTIONS(2640), + [aux_sym_preproc_if_token1] = ACTIONS(2640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2640), + [sym_preproc_directive] = ACTIONS(2640), + [anon_sym_LPAREN2] = ACTIONS(2642), + [anon_sym_BANG] = ACTIONS(2642), + [anon_sym_TILDE] = ACTIONS(2642), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2642), + [anon_sym_CARET] = ACTIONS(2642), + [anon_sym_AMP] = ACTIONS(2642), + [anon_sym_SEMI] = ACTIONS(2642), + [anon_sym___extension__] = ACTIONS(2640), + [anon_sym_typedef] = ACTIONS(2640), + [anon_sym_extern] = ACTIONS(2640), + [anon_sym___attribute__] = ACTIONS(2640), + [anon_sym___attribute] = ACTIONS(2640), + [anon_sym_noreturn] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym___declspec] = ACTIONS(2640), + [anon_sym___cdecl] = ACTIONS(2640), + [anon_sym___clrcall] = ACTIONS(2640), + [anon_sym___stdcall] = ACTIONS(2640), + [anon_sym___fastcall] = ACTIONS(2640), + [anon_sym___thiscall] = ACTIONS(2640), + [anon_sym___vectorcall] = ACTIONS(2640), + [anon_sym_LBRACE] = ACTIONS(2642), + [anon_sym_signed] = ACTIONS(2640), + [anon_sym_unsigned] = ACTIONS(2640), + [anon_sym_long] = ACTIONS(2640), + [anon_sym_short] = ACTIONS(2640), + [anon_sym_static] = ACTIONS(2640), + [anon_sym_ATautoreleasepool] = ACTIONS(2642), + [anon_sym_auto] = ACTIONS(2640), + [anon_sym_register] = ACTIONS(2640), + [anon_sym_inline] = ACTIONS(2640), + [anon_sym___inline] = ACTIONS(2640), + [anon_sym___inline__] = ACTIONS(2640), + [anon_sym___forceinline] = ACTIONS(2640), + [anon_sym_thread_local] = ACTIONS(2640), + [anon_sym___thread] = ACTIONS(2640), + [anon_sym_CG_EXTERN] = ACTIONS(2640), + [anon_sym_CG_INLINE] = ACTIONS(2640), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2640), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2640), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2640), + [anon_sym_IBOutlet] = ACTIONS(2640), + [anon_sym_IBInspectable] = ACTIONS(2640), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2640), + [anon_sym_NS_INLINE] = ACTIONS(2640), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2640), + [anon_sym_OBJC_EXPORT] = ACTIONS(2640), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2640), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2640), + [anon_sym_const] = ACTIONS(2640), + [anon_sym_constexpr] = ACTIONS(2640), + [anon_sym_volatile] = ACTIONS(2640), + [anon_sym_restrict] = ACTIONS(2640), + [anon_sym___restrict__] = ACTIONS(2640), + [anon_sym__Atomic] = ACTIONS(2640), + [anon_sym__Noreturn] = ACTIONS(2640), + [anon_sym__Nonnull] = ACTIONS(2640), + [anon_sym_nullable] = ACTIONS(2640), + [anon_sym__Complex] = ACTIONS(2640), + [anon_sym__Nullable] = ACTIONS(2640), + [anon_sym__Nullable_result] = ACTIONS(2640), + [anon_sym__Null_unspecified] = ACTIONS(2640), + [anon_sym___autoreleasing] = ACTIONS(2640), + [anon_sym___block] = ACTIONS(2640), + [anon_sym___bridge] = ACTIONS(2640), + [anon_sym___bridge_retained] = ACTIONS(2640), + [anon_sym___bridge_transfer] = ACTIONS(2640), + [anon_sym___complex] = ACTIONS(2640), + [anon_sym___const] = ACTIONS(2640), + [anon_sym___imag] = ACTIONS(2640), + [anon_sym___kindof] = ACTIONS(2640), + [anon_sym___nonnull] = ACTIONS(2640), + [anon_sym___nullable] = ACTIONS(2640), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2640), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2640), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2640), + [anon_sym___real] = ACTIONS(2640), + [anon_sym___strong] = ACTIONS(2640), + [anon_sym___unsafe_unretained] = ACTIONS(2640), + [anon_sym___unused] = ACTIONS(2640), + [anon_sym___weak] = ACTIONS(2640), + [anon_sym_alignas] = ACTIONS(2640), + [anon_sym__Alignas] = ACTIONS(2640), + [sym_primitive_type] = ACTIONS(2640), + [anon_sym_enum] = ACTIONS(2640), + [anon_sym_struct] = ACTIONS(2640), + [anon_sym_union] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_switch] = ACTIONS(2640), + [anon_sym_case] = ACTIONS(2640), + [anon_sym_default] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_in] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_break] = ACTIONS(2640), + [anon_sym_continue] = ACTIONS(2640), + [anon_sym_goto] = ACTIONS(2640), + [anon_sym_DASH_DASH] = ACTIONS(2642), + [anon_sym_PLUS_PLUS] = ACTIONS(2642), + [anon_sym_sizeof] = ACTIONS(2640), + [anon_sym___alignof__] = ACTIONS(2640), + [anon_sym___alignof] = ACTIONS(2640), + [anon_sym__alignof] = ACTIONS(2640), + [anon_sym_alignof] = ACTIONS(2640), + [anon_sym__Alignof] = ACTIONS(2640), + [anon_sym_offsetof] = ACTIONS(2640), + [anon_sym__Generic] = ACTIONS(2640), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [anon_sym___asm] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2642), + [anon_sym_u_SQUOTE] = ACTIONS(2642), + [anon_sym_U_SQUOTE] = ACTIONS(2642), + [anon_sym_u8_SQUOTE] = ACTIONS(2642), + [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_AT] = ACTIONS(2640), + [anon_sym_DQUOTE] = ACTIONS(2642), + [anon_sym_L_DQUOTE] = ACTIONS(2642), + [anon_sym_u_DQUOTE] = ACTIONS(2642), + [anon_sym_U_DQUOTE] = ACTIONS(2642), + [anon_sym_u8_DQUOTE] = ACTIONS(2642), + [sym_true] = ACTIONS(2640), + [sym_false] = ACTIONS(2640), + [anon_sym_NULL] = ACTIONS(2640), + [anon_sym_nullptr] = ACTIONS(2640), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2640), + [anon_sym___typeof] = ACTIONS(2640), + [anon_sym_typeof] = ACTIONS(2640), + [anon_sym_ATimport] = ACTIONS(2642), + [aux_sym_preproc_undef_token1] = ACTIONS(2640), + [anon_sym_POUND] = ACTIONS(2640), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2640), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2640), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2640), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2640), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2640), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2640), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2640), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2640), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2640), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2640), + [anon_sym_NS_AVAILABLE] = ACTIONS(2640), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2640), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2640), + [anon_sym_API_AVAILABLE] = ACTIONS(2640), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2640), + [anon_sym_API_DEPRECATED] = ACTIONS(2640), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2640), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2640), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2640), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2640), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2640), + [anon_sym___deprecated_msg] = ACTIONS(2640), + [anon_sym___deprecated_enum_msg] = ACTIONS(2640), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2640), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2640), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2640), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2640), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2640), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2640), + [anon_sym_ATprotocol] = ACTIONS(2642), + [anon_sym_ATinterface] = ACTIONS(2642), + [anon_sym_ATimplementation] = ACTIONS(2642), + [anon_sym_ATcompatibility_alias] = ACTIONS(2642), + [anon_sym_ATselector] = ACTIONS(2642), + [anon_sym_ATavailable] = ACTIONS(2642), + [anon_sym___builtin_available] = ACTIONS(2640), + [anon_sym_va_arg] = ACTIONS(2640), + [anon_sym_ATencode] = ACTIONS(2642), + [anon_sym_BOOL] = ACTIONS(2640), + [anon_sym_IMP] = ACTIONS(2640), + [anon_sym_SEL] = ACTIONS(2640), + [anon_sym_Class] = ACTIONS(2640), + [anon_sym_id] = ACTIONS(2640), + }, + [1075] = { + [sym_ms_declspec_modifier] = STATE(6589), + [sym_expression] = STATE(4402), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_typedef] = ACTIONS(2920), + [anon_sym_extern] = ACTIONS(2922), + [anon_sym___attribute__] = ACTIONS(2922), + [anon_sym___attribute] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_auto] = ACTIONS(2922), + [anon_sym_register] = ACTIONS(2922), + [anon_sym_inline] = ACTIONS(2922), + [anon_sym___inline] = ACTIONS(2922), + [anon_sym___inline__] = ACTIONS(2922), + [anon_sym___forceinline] = ACTIONS(2922), + [anon_sym_thread_local] = ACTIONS(2922), + [anon_sym___thread] = ACTIONS(2922), + [anon_sym_CG_EXTERN] = ACTIONS(2922), + [anon_sym_CG_INLINE] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2922), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2922), + [anon_sym_IBOutlet] = ACTIONS(2922), + [anon_sym_IBInspectable] = ACTIONS(2922), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2922), + [anon_sym_NS_INLINE] = ACTIONS(2922), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2922), + [anon_sym_OBJC_EXPORT] = ACTIONS(2922), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(203), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2926), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2922), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2922), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2922), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2922), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE] = ACTIONS(2922), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_API_AVAILABLE] = ACTIONS(2922), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_API_DEPRECATED] = ACTIONS(2922), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2922), + [anon_sym___deprecated_msg] = ACTIONS(2922), + [anon_sym___deprecated_enum_msg] = ACTIONS(2922), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2922), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2922), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(203), + }, + [1076] = { + [sym_ms_declspec_modifier] = STATE(6767), + [sym_expression] = STATE(4402), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_typedef] = ACTIONS(2964), + [anon_sym_extern] = ACTIONS(2922), + [anon_sym___attribute__] = ACTIONS(2922), + [anon_sym___attribute] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_auto] = ACTIONS(2922), + [anon_sym_register] = ACTIONS(2922), + [anon_sym_inline] = ACTIONS(2922), + [anon_sym___inline] = ACTIONS(2922), + [anon_sym___inline__] = ACTIONS(2922), + [anon_sym___forceinline] = ACTIONS(2922), + [anon_sym_thread_local] = ACTIONS(2922), + [anon_sym___thread] = ACTIONS(2922), + [anon_sym_CG_EXTERN] = ACTIONS(2922), + [anon_sym_CG_INLINE] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2922), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2922), + [anon_sym_IBOutlet] = ACTIONS(2922), + [anon_sym_IBInspectable] = ACTIONS(2922), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2922), + [anon_sym_NS_INLINE] = ACTIONS(2922), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2922), + [anon_sym_OBJC_EXPORT] = ACTIONS(2922), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(203), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2926), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2922), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2922), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2922), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2922), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE] = ACTIONS(2922), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_API_AVAILABLE] = ACTIONS(2922), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_API_DEPRECATED] = ACTIONS(2922), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2922), + [anon_sym___deprecated_msg] = ACTIONS(2922), + [anon_sym___deprecated_enum_msg] = ACTIONS(2922), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2922), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2922), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(203), + }, + [1077] = { + [ts_builtin_sym_end] = ACTIONS(2646), + [sym_identifier] = ACTIONS(2644), + [aux_sym_preproc_include_token1] = ACTIONS(2644), + [aux_sym_preproc_include_token2] = ACTIONS(2644), + [aux_sym_preproc_def_token1] = ACTIONS(2644), + [aux_sym_preproc_if_token1] = ACTIONS(2644), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2644), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2644), + [sym_preproc_directive] = ACTIONS(2644), + [anon_sym_LPAREN2] = ACTIONS(2646), + [anon_sym_BANG] = ACTIONS(2646), + [anon_sym_TILDE] = ACTIONS(2646), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_PLUS] = ACTIONS(2644), + [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_CARET] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2646), + [anon_sym_SEMI] = ACTIONS(2646), + [anon_sym___extension__] = ACTIONS(2644), + [anon_sym_typedef] = ACTIONS(2644), + [anon_sym_extern] = ACTIONS(2644), + [anon_sym___attribute__] = ACTIONS(2644), + [anon_sym___attribute] = ACTIONS(2644), + [anon_sym_noreturn] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2646), + [anon_sym___declspec] = ACTIONS(2644), + [anon_sym___cdecl] = ACTIONS(2644), + [anon_sym___clrcall] = ACTIONS(2644), + [anon_sym___stdcall] = ACTIONS(2644), + [anon_sym___fastcall] = ACTIONS(2644), + [anon_sym___thiscall] = ACTIONS(2644), + [anon_sym___vectorcall] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2646), + [anon_sym_signed] = ACTIONS(2644), + [anon_sym_unsigned] = ACTIONS(2644), + [anon_sym_long] = ACTIONS(2644), + [anon_sym_short] = ACTIONS(2644), + [anon_sym_static] = ACTIONS(2644), + [anon_sym_ATautoreleasepool] = ACTIONS(2646), + [anon_sym_auto] = ACTIONS(2644), + [anon_sym_register] = ACTIONS(2644), + [anon_sym_inline] = ACTIONS(2644), + [anon_sym___inline] = ACTIONS(2644), + [anon_sym___inline__] = ACTIONS(2644), + [anon_sym___forceinline] = ACTIONS(2644), + [anon_sym_thread_local] = ACTIONS(2644), + [anon_sym___thread] = ACTIONS(2644), + [anon_sym_CG_EXTERN] = ACTIONS(2644), + [anon_sym_CG_INLINE] = ACTIONS(2644), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2644), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2644), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2644), + [anon_sym_IBOutlet] = ACTIONS(2644), + [anon_sym_IBInspectable] = ACTIONS(2644), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2644), + [anon_sym_NS_INLINE] = ACTIONS(2644), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2644), + [anon_sym_OBJC_EXPORT] = ACTIONS(2644), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2644), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2644), + [anon_sym_const] = ACTIONS(2644), + [anon_sym_constexpr] = ACTIONS(2644), + [anon_sym_volatile] = ACTIONS(2644), + [anon_sym_restrict] = ACTIONS(2644), + [anon_sym___restrict__] = ACTIONS(2644), + [anon_sym__Atomic] = ACTIONS(2644), + [anon_sym__Noreturn] = ACTIONS(2644), + [anon_sym__Nonnull] = ACTIONS(2644), + [anon_sym_nullable] = ACTIONS(2644), + [anon_sym__Complex] = ACTIONS(2644), + [anon_sym__Nullable] = ACTIONS(2644), + [anon_sym__Nullable_result] = ACTIONS(2644), + [anon_sym__Null_unspecified] = ACTIONS(2644), + [anon_sym___autoreleasing] = ACTIONS(2644), + [anon_sym___block] = ACTIONS(2644), + [anon_sym___bridge] = ACTIONS(2644), + [anon_sym___bridge_retained] = ACTIONS(2644), + [anon_sym___bridge_transfer] = ACTIONS(2644), + [anon_sym___complex] = ACTIONS(2644), + [anon_sym___const] = ACTIONS(2644), + [anon_sym___imag] = ACTIONS(2644), + [anon_sym___kindof] = ACTIONS(2644), + [anon_sym___nonnull] = ACTIONS(2644), + [anon_sym___nullable] = ACTIONS(2644), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2644), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2644), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2644), + [anon_sym___real] = ACTIONS(2644), + [anon_sym___strong] = ACTIONS(2644), + [anon_sym___unsafe_unretained] = ACTIONS(2644), + [anon_sym___unused] = ACTIONS(2644), + [anon_sym___weak] = ACTIONS(2644), + [anon_sym_alignas] = ACTIONS(2644), + [anon_sym__Alignas] = ACTIONS(2644), + [sym_primitive_type] = ACTIONS(2644), + [anon_sym_enum] = ACTIONS(2644), + [anon_sym_struct] = ACTIONS(2644), + [anon_sym_union] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_switch] = ACTIONS(2644), + [anon_sym_case] = ACTIONS(2644), + [anon_sym_default] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_do] = ACTIONS(2644), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_in] = ACTIONS(2644), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_break] = ACTIONS(2644), + [anon_sym_continue] = ACTIONS(2644), + [anon_sym_goto] = ACTIONS(2644), + [anon_sym_DASH_DASH] = ACTIONS(2646), + [anon_sym_PLUS_PLUS] = ACTIONS(2646), + [anon_sym_sizeof] = ACTIONS(2644), + [anon_sym___alignof__] = ACTIONS(2644), + [anon_sym___alignof] = ACTIONS(2644), + [anon_sym__alignof] = ACTIONS(2644), + [anon_sym_alignof] = ACTIONS(2644), + [anon_sym__Alignof] = ACTIONS(2644), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2644), + [anon_sym_asm] = ACTIONS(2644), + [anon_sym___asm__] = ACTIONS(2644), + [anon_sym___asm] = ACTIONS(2644), + [sym_number_literal] = ACTIONS(2646), + [anon_sym_L_SQUOTE] = ACTIONS(2646), + [anon_sym_u_SQUOTE] = ACTIONS(2646), + [anon_sym_U_SQUOTE] = ACTIONS(2646), + [anon_sym_u8_SQUOTE] = ACTIONS(2646), + [anon_sym_SQUOTE] = ACTIONS(2646), + [anon_sym_AT] = ACTIONS(2644), + [anon_sym_DQUOTE] = ACTIONS(2646), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2644), + [sym_false] = ACTIONS(2644), + [anon_sym_NULL] = ACTIONS(2644), + [anon_sym_nullptr] = ACTIONS(2644), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2644), + [anon_sym___typeof] = ACTIONS(2644), + [anon_sym_typeof] = ACTIONS(2644), + [anon_sym_ATimport] = ACTIONS(2646), + [aux_sym_preproc_undef_token1] = ACTIONS(2644), + [anon_sym_POUND] = ACTIONS(2644), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2644), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2644), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2644), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2644), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2644), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2644), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2644), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2644), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2644), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2644), + [anon_sym_NS_AVAILABLE] = ACTIONS(2644), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2644), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2644), + [anon_sym_API_AVAILABLE] = ACTIONS(2644), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2644), + [anon_sym_API_DEPRECATED] = ACTIONS(2644), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2644), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2644), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2644), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2644), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2644), + [anon_sym___deprecated_msg] = ACTIONS(2644), + [anon_sym___deprecated_enum_msg] = ACTIONS(2644), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2644), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2644), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2644), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2644), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2644), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2644), + [anon_sym_ATprotocol] = ACTIONS(2646), + [anon_sym_ATinterface] = ACTIONS(2646), + [anon_sym_ATimplementation] = ACTIONS(2646), + [anon_sym_ATcompatibility_alias] = ACTIONS(2646), + [anon_sym_ATselector] = ACTIONS(2646), + [anon_sym_ATavailable] = ACTIONS(2646), + [anon_sym___builtin_available] = ACTIONS(2644), + [anon_sym_va_arg] = ACTIONS(2644), + [anon_sym_ATencode] = ACTIONS(2646), + [anon_sym_BOOL] = ACTIONS(2644), + [anon_sym_IMP] = ACTIONS(2644), + [anon_sym_SEL] = ACTIONS(2644), + [anon_sym_Class] = ACTIONS(2644), + [anon_sym_id] = ACTIONS(2644), + }, + [1078] = { + [sym_ms_declspec_modifier] = STATE(6739), + [sym_expression] = STATE(4402), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_typedef] = ACTIONS(2934), + [anon_sym_extern] = ACTIONS(2922), + [anon_sym___attribute__] = ACTIONS(2922), + [anon_sym___attribute] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_auto] = ACTIONS(2922), + [anon_sym_register] = ACTIONS(2922), + [anon_sym_inline] = ACTIONS(2922), + [anon_sym___inline] = ACTIONS(2922), + [anon_sym___inline__] = ACTIONS(2922), + [anon_sym___forceinline] = ACTIONS(2922), + [anon_sym_thread_local] = ACTIONS(2922), + [anon_sym___thread] = ACTIONS(2922), + [anon_sym_CG_EXTERN] = ACTIONS(2922), + [anon_sym_CG_INLINE] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2922), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2922), + [anon_sym_IBOutlet] = ACTIONS(2922), + [anon_sym_IBInspectable] = ACTIONS(2922), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2922), + [anon_sym_NS_INLINE] = ACTIONS(2922), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2922), + [anon_sym_OBJC_EXPORT] = ACTIONS(2922), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(203), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2926), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2922), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2922), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2922), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2922), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE] = ACTIONS(2922), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_API_AVAILABLE] = ACTIONS(2922), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_API_DEPRECATED] = ACTIONS(2922), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2922), + [anon_sym___deprecated_msg] = ACTIONS(2922), + [anon_sym___deprecated_enum_msg] = ACTIONS(2922), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2922), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2922), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(203), + }, + [1079] = { + [sym_ms_declspec_modifier] = STATE(6757), + [sym_expression] = STATE(4402), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_typedef] = ACTIONS(2936), + [anon_sym_extern] = ACTIONS(2922), + [anon_sym___attribute__] = ACTIONS(2922), + [anon_sym___attribute] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_auto] = ACTIONS(2922), + [anon_sym_register] = ACTIONS(2922), + [anon_sym_inline] = ACTIONS(2922), + [anon_sym___inline] = ACTIONS(2922), + [anon_sym___inline__] = ACTIONS(2922), + [anon_sym___forceinline] = ACTIONS(2922), + [anon_sym_thread_local] = ACTIONS(2922), + [anon_sym___thread] = ACTIONS(2922), + [anon_sym_CG_EXTERN] = ACTIONS(2922), + [anon_sym_CG_INLINE] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2922), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2922), + [anon_sym_IBOutlet] = ACTIONS(2922), + [anon_sym_IBInspectable] = ACTIONS(2922), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2922), + [anon_sym_NS_INLINE] = ACTIONS(2922), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2922), + [anon_sym_OBJC_EXPORT] = ACTIONS(2922), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(203), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2926), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2922), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2922), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2922), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2922), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE] = ACTIONS(2922), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_API_AVAILABLE] = ACTIONS(2922), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_API_DEPRECATED] = ACTIONS(2922), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2922), + [anon_sym___deprecated_msg] = ACTIONS(2922), + [anon_sym___deprecated_enum_msg] = ACTIONS(2922), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2922), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2922), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(203), + }, + [1080] = { + [sym_ms_declspec_modifier] = STATE(6764), + [sym_expression] = STATE(4402), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_typedef] = ACTIONS(2930), + [anon_sym_extern] = ACTIONS(2922), + [anon_sym___attribute__] = ACTIONS(2922), + [anon_sym___attribute] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_auto] = ACTIONS(2922), + [anon_sym_register] = ACTIONS(2922), + [anon_sym_inline] = ACTIONS(2922), + [anon_sym___inline] = ACTIONS(2922), + [anon_sym___inline__] = ACTIONS(2922), + [anon_sym___forceinline] = ACTIONS(2922), + [anon_sym_thread_local] = ACTIONS(2922), + [anon_sym___thread] = ACTIONS(2922), + [anon_sym_CG_EXTERN] = ACTIONS(2922), + [anon_sym_CG_INLINE] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2922), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2922), + [anon_sym_IBOutlet] = ACTIONS(2922), + [anon_sym_IBInspectable] = ACTIONS(2922), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2922), + [anon_sym_NS_INLINE] = ACTIONS(2922), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2922), + [anon_sym_OBJC_EXPORT] = ACTIONS(2922), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(203), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2926), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2922), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2922), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2922), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2922), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE] = ACTIONS(2922), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_API_AVAILABLE] = ACTIONS(2922), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_API_DEPRECATED] = ACTIONS(2922), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2922), + [anon_sym___deprecated_msg] = ACTIONS(2922), + [anon_sym___deprecated_enum_msg] = ACTIONS(2922), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2922), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2922), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(203), + }, + [1081] = { + [ts_builtin_sym_end] = ACTIONS(2766), + [sym_identifier] = ACTIONS(2764), + [aux_sym_preproc_include_token1] = ACTIONS(2764), + [aux_sym_preproc_include_token2] = ACTIONS(2764), + [aux_sym_preproc_def_token1] = ACTIONS(2764), + [aux_sym_preproc_if_token1] = ACTIONS(2764), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2764), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2764), + [sym_preproc_directive] = ACTIONS(2764), + [anon_sym_LPAREN2] = ACTIONS(2766), + [anon_sym_BANG] = ACTIONS(2766), + [anon_sym_TILDE] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2764), + [anon_sym_PLUS] = ACTIONS(2764), + [anon_sym_STAR] = ACTIONS(2766), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2766), + [anon_sym_SEMI] = ACTIONS(2766), + [anon_sym___extension__] = ACTIONS(2764), + [anon_sym_typedef] = ACTIONS(2764), + [anon_sym_extern] = ACTIONS(2764), + [anon_sym___attribute__] = ACTIONS(2764), + [anon_sym___attribute] = ACTIONS(2764), + [anon_sym_noreturn] = ACTIONS(2764), + [anon_sym_LBRACK] = ACTIONS(2766), + [anon_sym___declspec] = ACTIONS(2764), + [anon_sym___cdecl] = ACTIONS(2764), + [anon_sym___clrcall] = ACTIONS(2764), + [anon_sym___stdcall] = ACTIONS(2764), + [anon_sym___fastcall] = ACTIONS(2764), + [anon_sym___thiscall] = ACTIONS(2764), + [anon_sym___vectorcall] = ACTIONS(2764), + [anon_sym_LBRACE] = ACTIONS(2766), + [anon_sym_signed] = ACTIONS(2764), + [anon_sym_unsigned] = ACTIONS(2764), + [anon_sym_long] = ACTIONS(2764), + [anon_sym_short] = ACTIONS(2764), + [anon_sym_static] = ACTIONS(2764), + [anon_sym_ATautoreleasepool] = ACTIONS(2766), + [anon_sym_auto] = ACTIONS(2764), + [anon_sym_register] = ACTIONS(2764), + [anon_sym_inline] = ACTIONS(2764), + [anon_sym___inline] = ACTIONS(2764), + [anon_sym___inline__] = ACTIONS(2764), + [anon_sym___forceinline] = ACTIONS(2764), + [anon_sym_thread_local] = ACTIONS(2764), + [anon_sym___thread] = ACTIONS(2764), + [anon_sym_CG_EXTERN] = ACTIONS(2764), + [anon_sym_CG_INLINE] = ACTIONS(2764), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2764), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2764), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2764), + [anon_sym_IBOutlet] = ACTIONS(2764), + [anon_sym_IBInspectable] = ACTIONS(2764), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2764), + [anon_sym_NS_INLINE] = ACTIONS(2764), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2764), + [anon_sym_OBJC_EXPORT] = ACTIONS(2764), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2764), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2764), + [anon_sym_const] = ACTIONS(2764), + [anon_sym_constexpr] = ACTIONS(2764), + [anon_sym_volatile] = ACTIONS(2764), + [anon_sym_restrict] = ACTIONS(2764), + [anon_sym___restrict__] = ACTIONS(2764), + [anon_sym__Atomic] = ACTIONS(2764), + [anon_sym__Noreturn] = ACTIONS(2764), + [anon_sym__Nonnull] = ACTIONS(2764), + [anon_sym_nullable] = ACTIONS(2764), + [anon_sym__Complex] = ACTIONS(2764), + [anon_sym__Nullable] = ACTIONS(2764), + [anon_sym__Nullable_result] = ACTIONS(2764), + [anon_sym__Null_unspecified] = ACTIONS(2764), + [anon_sym___autoreleasing] = ACTIONS(2764), + [anon_sym___block] = ACTIONS(2764), + [anon_sym___bridge] = ACTIONS(2764), + [anon_sym___bridge_retained] = ACTIONS(2764), + [anon_sym___bridge_transfer] = ACTIONS(2764), + [anon_sym___complex] = ACTIONS(2764), + [anon_sym___const] = ACTIONS(2764), + [anon_sym___imag] = ACTIONS(2764), + [anon_sym___kindof] = ACTIONS(2764), + [anon_sym___nonnull] = ACTIONS(2764), + [anon_sym___nullable] = ACTIONS(2764), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2764), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2764), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2764), + [anon_sym___real] = ACTIONS(2764), + [anon_sym___strong] = ACTIONS(2764), + [anon_sym___unsafe_unretained] = ACTIONS(2764), + [anon_sym___unused] = ACTIONS(2764), + [anon_sym___weak] = ACTIONS(2764), + [anon_sym_alignas] = ACTIONS(2764), + [anon_sym__Alignas] = ACTIONS(2764), + [sym_primitive_type] = ACTIONS(2764), + [anon_sym_enum] = ACTIONS(2764), + [anon_sym_struct] = ACTIONS(2764), + [anon_sym_union] = ACTIONS(2764), + [anon_sym_if] = ACTIONS(2764), + [anon_sym_switch] = ACTIONS(2764), + [anon_sym_case] = ACTIONS(2764), + [anon_sym_default] = ACTIONS(2764), + [anon_sym_while] = ACTIONS(2764), + [anon_sym_do] = ACTIONS(2764), + [anon_sym_for] = ACTIONS(2764), + [anon_sym_in] = ACTIONS(2764), + [anon_sym_return] = ACTIONS(2764), + [anon_sym_break] = ACTIONS(2764), + [anon_sym_continue] = ACTIONS(2764), + [anon_sym_goto] = ACTIONS(2764), + [anon_sym_DASH_DASH] = ACTIONS(2766), + [anon_sym_PLUS_PLUS] = ACTIONS(2766), + [anon_sym_sizeof] = ACTIONS(2764), + [anon_sym___alignof__] = ACTIONS(2764), + [anon_sym___alignof] = ACTIONS(2764), + [anon_sym__alignof] = ACTIONS(2764), + [anon_sym_alignof] = ACTIONS(2764), + [anon_sym__Alignof] = ACTIONS(2764), + [anon_sym_offsetof] = ACTIONS(2764), + [anon_sym__Generic] = ACTIONS(2764), + [anon_sym_asm] = ACTIONS(2764), + [anon_sym___asm__] = ACTIONS(2764), + [anon_sym___asm] = ACTIONS(2764), + [sym_number_literal] = ACTIONS(2766), + [anon_sym_L_SQUOTE] = ACTIONS(2766), + [anon_sym_u_SQUOTE] = ACTIONS(2766), + [anon_sym_U_SQUOTE] = ACTIONS(2766), + [anon_sym_u8_SQUOTE] = ACTIONS(2766), + [anon_sym_SQUOTE] = ACTIONS(2766), + [anon_sym_AT] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2766), + [anon_sym_L_DQUOTE] = ACTIONS(2766), + [anon_sym_u_DQUOTE] = ACTIONS(2766), + [anon_sym_U_DQUOTE] = ACTIONS(2766), + [anon_sym_u8_DQUOTE] = ACTIONS(2766), + [sym_true] = ACTIONS(2764), + [sym_false] = ACTIONS(2764), + [anon_sym_NULL] = ACTIONS(2764), + [anon_sym_nullptr] = ACTIONS(2764), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2764), + [anon_sym___typeof] = ACTIONS(2764), + [anon_sym_typeof] = ACTIONS(2764), + [anon_sym_ATimport] = ACTIONS(2766), + [aux_sym_preproc_undef_token1] = ACTIONS(2764), + [anon_sym_POUND] = ACTIONS(2764), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2764), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2764), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2764), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2764), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2764), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2764), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2764), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2764), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2764), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2764), + [anon_sym_NS_AVAILABLE] = ACTIONS(2764), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2764), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2764), + [anon_sym_API_AVAILABLE] = ACTIONS(2764), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2764), + [anon_sym_API_DEPRECATED] = ACTIONS(2764), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2764), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2764), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2764), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2764), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2764), + [anon_sym___deprecated_msg] = ACTIONS(2764), + [anon_sym___deprecated_enum_msg] = ACTIONS(2764), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2764), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2764), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2764), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2764), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2764), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2764), + [anon_sym_ATprotocol] = ACTIONS(2766), + [anon_sym_ATinterface] = ACTIONS(2766), + [anon_sym_ATimplementation] = ACTIONS(2766), + [anon_sym_ATcompatibility_alias] = ACTIONS(2766), + [anon_sym_ATselector] = ACTIONS(2766), + [anon_sym_ATavailable] = ACTIONS(2766), + [anon_sym___builtin_available] = ACTIONS(2764), + [anon_sym_va_arg] = ACTIONS(2764), + [anon_sym_ATencode] = ACTIONS(2766), + [anon_sym_BOOL] = ACTIONS(2764), + [anon_sym_IMP] = ACTIONS(2764), + [anon_sym_SEL] = ACTIONS(2764), + [anon_sym_Class] = ACTIONS(2764), + [anon_sym_id] = ACTIONS(2764), + }, + [1082] = { + [sym_expression] = STATE(4402), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_extern] = ACTIONS(2922), + [anon_sym___attribute__] = ACTIONS(2922), + [anon_sym___attribute] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym___declspec] = ACTIONS(2922), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_auto] = ACTIONS(2922), + [anon_sym_register] = ACTIONS(2922), + [anon_sym_inline] = ACTIONS(2922), + [anon_sym___inline] = ACTIONS(2922), + [anon_sym___inline__] = ACTIONS(2922), + [anon_sym___forceinline] = ACTIONS(2922), + [anon_sym_thread_local] = ACTIONS(2922), + [anon_sym___thread] = ACTIONS(2922), + [anon_sym_CG_EXTERN] = ACTIONS(2922), + [anon_sym_CG_INLINE] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2922), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2922), + [anon_sym_IBOutlet] = ACTIONS(2922), + [anon_sym_IBInspectable] = ACTIONS(2922), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2922), + [anon_sym_NS_INLINE] = ACTIONS(2922), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2922), + [anon_sym_OBJC_EXPORT] = ACTIONS(2922), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(203), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2926), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2922), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2922), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2922), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2922), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE] = ACTIONS(2922), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_API_AVAILABLE] = ACTIONS(2922), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_API_DEPRECATED] = ACTIONS(2922), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2922), + [anon_sym___deprecated_msg] = ACTIONS(2922), + [anon_sym___deprecated_enum_msg] = ACTIONS(2922), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2922), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2922), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(203), + }, + [1083] = { + [sym_expression] = STATE(1629), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_extern] = ACTIONS(2922), + [anon_sym___attribute__] = ACTIONS(2922), + [anon_sym___attribute] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym___declspec] = ACTIONS(2922), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_auto] = ACTIONS(2922), + [anon_sym_register] = ACTIONS(2922), + [anon_sym_inline] = ACTIONS(2922), + [anon_sym___inline] = ACTIONS(2922), + [anon_sym___inline__] = ACTIONS(2922), + [anon_sym___forceinline] = ACTIONS(2922), + [anon_sym_thread_local] = ACTIONS(2922), + [anon_sym___thread] = ACTIONS(2922), + [anon_sym_CG_EXTERN] = ACTIONS(2922), + [anon_sym_CG_INLINE] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2922), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2922), + [anon_sym_IBOutlet] = ACTIONS(2922), + [anon_sym_IBInspectable] = ACTIONS(2922), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2922), + [anon_sym_NS_INLINE] = ACTIONS(2922), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2922), + [anon_sym_OBJC_EXPORT] = ACTIONS(2922), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(203), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2926), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2922), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2922), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2922), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2922), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE] = ACTIONS(2922), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_API_AVAILABLE] = ACTIONS(2922), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_API_DEPRECATED] = ACTIONS(2922), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2922), + [anon_sym___deprecated_msg] = ACTIONS(2922), + [anon_sym___deprecated_enum_msg] = ACTIONS(2922), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2922), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2922), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(203), + }, + [1084] = { + [sym_identifier] = ACTIONS(2966), + [anon_sym_COMMA] = ACTIONS(2968), + [anon_sym_RPAREN] = ACTIONS(2968), + [anon_sym_LPAREN2] = ACTIONS(2968), + [anon_sym_BANG] = ACTIONS(2968), + [anon_sym_TILDE] = ACTIONS(2968), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_STAR] = ACTIONS(2968), + [anon_sym_CARET] = ACTIONS(2968), + [anon_sym_AMP] = ACTIONS(2968), + [anon_sym_GT] = ACTIONS(2968), + [anon_sym_SEMI] = ACTIONS(2968), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_extern] = ACTIONS(2966), + [anon_sym___attribute__] = ACTIONS(2966), + [anon_sym___attribute] = ACTIONS(2966), + [anon_sym_noreturn] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2968), + [anon_sym___declspec] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_signed] = ACTIONS(2966), + [anon_sym_unsigned] = ACTIONS(2966), + [anon_sym_long] = ACTIONS(2966), + [anon_sym_short] = ACTIONS(2966), + [anon_sym_static] = ACTIONS(2966), + [anon_sym_ATautoreleasepool] = ACTIONS(2968), + [anon_sym_auto] = ACTIONS(2966), + [anon_sym_register] = ACTIONS(2966), + [anon_sym_inline] = ACTIONS(2966), + [anon_sym___inline] = ACTIONS(2966), + [anon_sym___inline__] = ACTIONS(2966), + [anon_sym___forceinline] = ACTIONS(2966), + [anon_sym_thread_local] = ACTIONS(2966), + [anon_sym___thread] = ACTIONS(2966), + [anon_sym_CG_EXTERN] = ACTIONS(2966), + [anon_sym_CG_INLINE] = ACTIONS(2966), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2966), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2966), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2966), + [anon_sym_IBOutlet] = ACTIONS(2966), + [anon_sym_IBInspectable] = ACTIONS(2966), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2966), + [anon_sym_NS_INLINE] = ACTIONS(2966), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2966), + [anon_sym_OBJC_EXPORT] = ACTIONS(2966), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2966), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2966), + [anon_sym_constexpr] = ACTIONS(2966), + [anon_sym_volatile] = ACTIONS(2966), + [anon_sym_restrict] = ACTIONS(2966), + [anon_sym___restrict__] = ACTIONS(2966), + [anon_sym__Atomic] = ACTIONS(2966), + [anon_sym__Noreturn] = ACTIONS(2966), + [anon_sym__Nonnull] = ACTIONS(2966), + [anon_sym_nullable] = ACTIONS(2966), + [anon_sym__Complex] = ACTIONS(2966), + [anon_sym__Nullable] = ACTIONS(2966), + [anon_sym__Nullable_result] = ACTIONS(2966), + [anon_sym__Null_unspecified] = ACTIONS(2966), + [anon_sym___autoreleasing] = ACTIONS(2966), + [anon_sym___block] = ACTIONS(2966), + [anon_sym___bridge] = ACTIONS(2966), + [anon_sym___bridge_retained] = ACTIONS(2966), + [anon_sym___bridge_transfer] = ACTIONS(2966), + [anon_sym___complex] = ACTIONS(2966), + [anon_sym___const] = ACTIONS(2966), + [anon_sym___imag] = ACTIONS(2966), + [anon_sym___kindof] = ACTIONS(2966), + [anon_sym___nonnull] = ACTIONS(2966), + [anon_sym___nullable] = ACTIONS(2966), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2966), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2966), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2966), + [anon_sym___real] = ACTIONS(2966), + [anon_sym___strong] = ACTIONS(2966), + [anon_sym___unsafe_unretained] = ACTIONS(2966), + [anon_sym___unused] = ACTIONS(2966), + [anon_sym___weak] = ACTIONS(2966), + [anon_sym_alignas] = ACTIONS(2966), + [anon_sym__Alignas] = ACTIONS(2966), + [sym_primitive_type] = ACTIONS(2966), + [anon_sym_enum] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2968), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_union] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_switch] = ACTIONS(2966), + [anon_sym_case] = ACTIONS(2966), + [anon_sym_default] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_do] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_in] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_break] = ACTIONS(2966), + [anon_sym_continue] = ACTIONS(2966), + [anon_sym_goto] = ACTIONS(2966), + [anon_sym_DASH_DASH] = ACTIONS(2968), + [anon_sym_PLUS_PLUS] = ACTIONS(2968), + [anon_sym_sizeof] = ACTIONS(2966), + [anon_sym___alignof__] = ACTIONS(2966), + [anon_sym___alignof] = ACTIONS(2966), + [anon_sym__alignof] = ACTIONS(2966), + [anon_sym_alignof] = ACTIONS(2966), + [anon_sym__Alignof] = ACTIONS(2966), + [anon_sym_offsetof] = ACTIONS(2966), + [anon_sym__Generic] = ACTIONS(2966), + [anon_sym_asm] = ACTIONS(2966), + [anon_sym___asm__] = ACTIONS(2966), + [anon_sym___asm] = ACTIONS(2966), + [sym_number_literal] = ACTIONS(2968), + [anon_sym_L_SQUOTE] = ACTIONS(2968), + [anon_sym_u_SQUOTE] = ACTIONS(2968), + [anon_sym_U_SQUOTE] = ACTIONS(2968), + [anon_sym_u8_SQUOTE] = ACTIONS(2968), + [anon_sym_SQUOTE] = ACTIONS(2968), + [anon_sym_AT] = ACTIONS(2966), + [anon_sym_DQUOTE] = ACTIONS(2968), + [anon_sym_L_DQUOTE] = ACTIONS(2968), + [anon_sym_u_DQUOTE] = ACTIONS(2968), + [anon_sym_U_DQUOTE] = ACTIONS(2968), + [anon_sym_u8_DQUOTE] = ACTIONS(2968), + [sym_true] = ACTIONS(2966), + [sym_false] = ACTIONS(2966), + [anon_sym_NULL] = ACTIONS(2966), + [anon_sym_nullptr] = ACTIONS(2966), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2966), + [anon_sym___typeof] = ACTIONS(2966), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2966), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2966), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2966), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2966), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2966), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2966), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2966), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2966), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2966), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2966), + [anon_sym_NS_AVAILABLE] = ACTIONS(2966), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2966), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2966), + [anon_sym_API_AVAILABLE] = ACTIONS(2966), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2966), + [anon_sym_API_DEPRECATED] = ACTIONS(2966), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2966), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2966), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2966), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2966), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2966), + [anon_sym___deprecated_msg] = ACTIONS(2966), + [anon_sym___deprecated_enum_msg] = ACTIONS(2966), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2966), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2966), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2966), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2966), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2966), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2966), + [anon_sym_ATprotocol] = ACTIONS(2968), + [anon_sym_ATinterface] = ACTIONS(2968), + [anon_sym_ATimplementation] = ACTIONS(2968), + [anon_sym_ATtry] = ACTIONS(2968), + [anon_sym___try] = ACTIONS(2966), + [anon_sym_ATthrow] = ACTIONS(2968), + [anon_sym_ATselector] = ACTIONS(2968), + [anon_sym_ATavailable] = ACTIONS(2968), + [anon_sym___builtin_available] = ACTIONS(2966), + [anon_sym_va_arg] = ACTIONS(2966), + [anon_sym_ATencode] = ACTIONS(2968), + [anon_sym_ATsynchronized] = ACTIONS(2968), + [anon_sym_BOOL] = ACTIONS(2966), + [anon_sym_IMP] = ACTIONS(2966), + [anon_sym_SEL] = ACTIONS(2966), + [anon_sym_Class] = ACTIONS(2966), + [anon_sym_id] = ACTIONS(2966), + }, + [1085] = { + [sym_identifier] = ACTIONS(2970), + [anon_sym_COMMA] = ACTIONS(2972), + [anon_sym_RPAREN] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(2972), + [anon_sym_BANG] = ACTIONS(2972), + [anon_sym_TILDE] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2970), + [anon_sym_STAR] = ACTIONS(2972), + [anon_sym_CARET] = ACTIONS(2972), + [anon_sym_AMP] = ACTIONS(2972), + [anon_sym_GT] = ACTIONS(2972), + [anon_sym_SEMI] = ACTIONS(2972), + [anon_sym___extension__] = ACTIONS(2970), + [anon_sym_extern] = ACTIONS(2970), + [anon_sym___attribute__] = ACTIONS(2970), + [anon_sym___attribute] = ACTIONS(2970), + [anon_sym_noreturn] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym___declspec] = ACTIONS(2970), + [anon_sym_LBRACE] = ACTIONS(2972), + [anon_sym_signed] = ACTIONS(2970), + [anon_sym_unsigned] = ACTIONS(2970), + [anon_sym_long] = ACTIONS(2970), + [anon_sym_short] = ACTIONS(2970), + [anon_sym_static] = ACTIONS(2970), + [anon_sym_ATautoreleasepool] = ACTIONS(2972), + [anon_sym_auto] = ACTIONS(2970), + [anon_sym_register] = ACTIONS(2970), + [anon_sym_inline] = ACTIONS(2970), + [anon_sym___inline] = ACTIONS(2970), + [anon_sym___inline__] = ACTIONS(2970), + [anon_sym___forceinline] = ACTIONS(2970), + [anon_sym_thread_local] = ACTIONS(2970), + [anon_sym___thread] = ACTIONS(2970), + [anon_sym_CG_EXTERN] = ACTIONS(2970), + [anon_sym_CG_INLINE] = ACTIONS(2970), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2970), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2970), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2970), + [anon_sym_IBOutlet] = ACTIONS(2970), + [anon_sym_IBInspectable] = ACTIONS(2970), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2970), + [anon_sym_NS_INLINE] = ACTIONS(2970), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2970), + [anon_sym_OBJC_EXPORT] = ACTIONS(2970), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2970), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2970), + [anon_sym_const] = ACTIONS(2970), + [anon_sym_constexpr] = ACTIONS(2970), + [anon_sym_volatile] = ACTIONS(2970), + [anon_sym_restrict] = ACTIONS(2970), + [anon_sym___restrict__] = ACTIONS(2970), + [anon_sym__Atomic] = ACTIONS(2970), + [anon_sym__Noreturn] = ACTIONS(2970), + [anon_sym__Nonnull] = ACTIONS(2970), + [anon_sym_nullable] = ACTIONS(2970), + [anon_sym__Complex] = ACTIONS(2970), + [anon_sym__Nullable] = ACTIONS(2970), + [anon_sym__Nullable_result] = ACTIONS(2970), + [anon_sym__Null_unspecified] = ACTIONS(2970), + [anon_sym___autoreleasing] = ACTIONS(2970), + [anon_sym___block] = ACTIONS(2970), + [anon_sym___bridge] = ACTIONS(2970), + [anon_sym___bridge_retained] = ACTIONS(2970), + [anon_sym___bridge_transfer] = ACTIONS(2970), + [anon_sym___complex] = ACTIONS(2970), + [anon_sym___const] = ACTIONS(2970), + [anon_sym___imag] = ACTIONS(2970), + [anon_sym___kindof] = ACTIONS(2970), + [anon_sym___nonnull] = ACTIONS(2970), + [anon_sym___nullable] = ACTIONS(2970), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2970), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2970), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2970), + [anon_sym___real] = ACTIONS(2970), + [anon_sym___strong] = ACTIONS(2970), + [anon_sym___unsafe_unretained] = ACTIONS(2970), + [anon_sym___unused] = ACTIONS(2970), + [anon_sym___weak] = ACTIONS(2970), + [anon_sym_alignas] = ACTIONS(2970), + [anon_sym__Alignas] = ACTIONS(2970), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_enum] = ACTIONS(2970), + [anon_sym_COLON] = ACTIONS(2972), + [anon_sym_struct] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2970), + [anon_sym_case] = ACTIONS(2970), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2970), + [anon_sym_do] = ACTIONS(2970), + [anon_sym_for] = ACTIONS(2970), + [anon_sym_in] = ACTIONS(2970), + [anon_sym_return] = ACTIONS(2970), + [anon_sym_break] = ACTIONS(2970), + [anon_sym_continue] = ACTIONS(2970), + [anon_sym_goto] = ACTIONS(2970), + [anon_sym_DASH_DASH] = ACTIONS(2972), + [anon_sym_PLUS_PLUS] = ACTIONS(2972), + [anon_sym_sizeof] = ACTIONS(2970), + [anon_sym___alignof__] = ACTIONS(2970), + [anon_sym___alignof] = ACTIONS(2970), + [anon_sym__alignof] = ACTIONS(2970), + [anon_sym_alignof] = ACTIONS(2970), + [anon_sym__Alignof] = ACTIONS(2970), + [anon_sym_offsetof] = ACTIONS(2970), + [anon_sym__Generic] = ACTIONS(2970), + [anon_sym_asm] = ACTIONS(2970), + [anon_sym___asm__] = ACTIONS(2970), + [anon_sym___asm] = ACTIONS(2970), + [sym_number_literal] = ACTIONS(2972), + [anon_sym_L_SQUOTE] = ACTIONS(2972), + [anon_sym_u_SQUOTE] = ACTIONS(2972), + [anon_sym_U_SQUOTE] = ACTIONS(2972), + [anon_sym_u8_SQUOTE] = ACTIONS(2972), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_AT] = ACTIONS(2970), + [anon_sym_DQUOTE] = ACTIONS(2972), + [anon_sym_L_DQUOTE] = ACTIONS(2972), + [anon_sym_u_DQUOTE] = ACTIONS(2972), + [anon_sym_U_DQUOTE] = ACTIONS(2972), + [anon_sym_u8_DQUOTE] = ACTIONS(2972), + [sym_true] = ACTIONS(2970), + [sym_false] = ACTIONS(2970), + [anon_sym_NULL] = ACTIONS(2970), + [anon_sym_nullptr] = ACTIONS(2970), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2970), + [anon_sym___typeof] = ACTIONS(2970), + [anon_sym_typeof] = ACTIONS(2970), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2970), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2970), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2970), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2970), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2970), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2970), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2970), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2970), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2970), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2970), + [anon_sym_NS_AVAILABLE] = ACTIONS(2970), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2970), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2970), + [anon_sym_API_AVAILABLE] = ACTIONS(2970), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2970), + [anon_sym_API_DEPRECATED] = ACTIONS(2970), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2970), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2970), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2970), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2970), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2970), + [anon_sym___deprecated_msg] = ACTIONS(2970), + [anon_sym___deprecated_enum_msg] = ACTIONS(2970), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2970), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2970), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2970), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2970), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2970), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2970), + [anon_sym_ATprotocol] = ACTIONS(2972), + [anon_sym_ATinterface] = ACTIONS(2972), + [anon_sym_ATimplementation] = ACTIONS(2972), + [anon_sym_ATtry] = ACTIONS(2972), + [anon_sym___try] = ACTIONS(2970), + [anon_sym_ATthrow] = ACTIONS(2972), + [anon_sym_ATselector] = ACTIONS(2972), + [anon_sym_ATavailable] = ACTIONS(2972), + [anon_sym___builtin_available] = ACTIONS(2970), + [anon_sym_va_arg] = ACTIONS(2970), + [anon_sym_ATencode] = ACTIONS(2972), + [anon_sym_ATsynchronized] = ACTIONS(2972), + [anon_sym_BOOL] = ACTIONS(2970), + [anon_sym_IMP] = ACTIONS(2970), + [anon_sym_SEL] = ACTIONS(2970), + [anon_sym_Class] = ACTIONS(2970), + [anon_sym_id] = ACTIONS(2970), + }, + [1086] = { + [sym_catch_clause] = STATE(1087), + [sym_finally_clause] = STATE(1170), + [aux_sym_try_statement_repeat1] = STATE(1087), + [sym_identifier] = ACTIONS(2294), + [anon_sym_LPAREN2] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_STAR] = ACTIONS(2296), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym___extension__] = ACTIONS(2294), + [anon_sym_typedef] = ACTIONS(2294), + [anon_sym_extern] = ACTIONS(2294), + [anon_sym___attribute__] = ACTIONS(2294), + [anon_sym___attribute] = ACTIONS(2294), + [anon_sym_noreturn] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym___declspec] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_signed] = ACTIONS(2294), + [anon_sym_unsigned] = ACTIONS(2294), + [anon_sym_long] = ACTIONS(2294), + [anon_sym_short] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_ATautoreleasepool] = ACTIONS(2296), + [anon_sym_auto] = ACTIONS(2294), + [anon_sym_register] = ACTIONS(2294), + [anon_sym_inline] = ACTIONS(2294), + [anon_sym___inline] = ACTIONS(2294), + [anon_sym___inline__] = ACTIONS(2294), + [anon_sym___forceinline] = ACTIONS(2294), + [anon_sym_thread_local] = ACTIONS(2294), + [anon_sym___thread] = ACTIONS(2294), + [anon_sym_CG_EXTERN] = ACTIONS(2294), + [anon_sym_CG_INLINE] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2294), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2294), + [anon_sym_IBOutlet] = ACTIONS(2294), + [anon_sym_IBInspectable] = ACTIONS(2294), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2294), + [anon_sym_NS_INLINE] = ACTIONS(2294), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2294), + [anon_sym_OBJC_EXPORT] = ACTIONS(2294), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [anon_sym_constexpr] = ACTIONS(2294), + [anon_sym_volatile] = ACTIONS(2294), + [anon_sym_restrict] = ACTIONS(2294), + [anon_sym___restrict__] = ACTIONS(2294), + [anon_sym__Atomic] = ACTIONS(2294), + [anon_sym__Noreturn] = ACTIONS(2294), + [anon_sym__Nonnull] = ACTIONS(2294), + [anon_sym_nullable] = ACTIONS(2294), + [anon_sym__Complex] = ACTIONS(2294), + [anon_sym__Nullable] = ACTIONS(2294), + [anon_sym__Nullable_result] = ACTIONS(2294), + [anon_sym__Null_unspecified] = ACTIONS(2294), + [anon_sym___autoreleasing] = ACTIONS(2294), + [anon_sym___block] = ACTIONS(2294), + [anon_sym___bridge] = ACTIONS(2294), + [anon_sym___bridge_retained] = ACTIONS(2294), + [anon_sym___bridge_transfer] = ACTIONS(2294), + [anon_sym___complex] = ACTIONS(2294), + [anon_sym___const] = ACTIONS(2294), + [anon_sym___imag] = ACTIONS(2294), + [anon_sym___kindof] = ACTIONS(2294), + [anon_sym___nonnull] = ACTIONS(2294), + [anon_sym___nullable] = ACTIONS(2294), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2294), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2294), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2294), + [anon_sym___real] = ACTIONS(2294), + [anon_sym___strong] = ACTIONS(2294), + [anon_sym___unsafe_unretained] = ACTIONS(2294), + [anon_sym___unused] = ACTIONS(2294), + [anon_sym___weak] = ACTIONS(2294), + [anon_sym_alignas] = ACTIONS(2294), + [anon_sym__Alignas] = ACTIONS(2294), + [sym_primitive_type] = ACTIONS(2294), + [anon_sym_enum] = ACTIONS(2294), + [anon_sym_struct] = ACTIONS(2294), + [anon_sym_union] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_switch] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_goto] = ACTIONS(2294), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_sizeof] = ACTIONS(2294), + [anon_sym___alignof__] = ACTIONS(2294), + [anon_sym___alignof] = ACTIONS(2294), + [anon_sym__alignof] = ACTIONS(2294), + [anon_sym_alignof] = ACTIONS(2294), + [anon_sym__Alignof] = ACTIONS(2294), + [anon_sym_offsetof] = ACTIONS(2294), + [anon_sym__Generic] = ACTIONS(2294), + [anon_sym_asm] = ACTIONS(2294), + [anon_sym___asm__] = ACTIONS(2294), + [anon_sym___asm] = ACTIONS(2294), + [sym_number_literal] = ACTIONS(2296), + [anon_sym_L_SQUOTE] = ACTIONS(2296), + [anon_sym_u_SQUOTE] = ACTIONS(2296), + [anon_sym_U_SQUOTE] = ACTIONS(2296), + [anon_sym_u8_SQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_L_DQUOTE] = ACTIONS(2296), + [anon_sym_u_DQUOTE] = ACTIONS(2296), + [anon_sym_U_DQUOTE] = ACTIONS(2296), + [anon_sym_u8_DQUOTE] = ACTIONS(2296), + [sym_true] = ACTIONS(2294), + [sym_false] = ACTIONS(2294), + [anon_sym_NULL] = ACTIONS(2294), + [anon_sym_nullptr] = ACTIONS(2294), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2294), + [anon_sym___typeof] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(2294), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2294), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2294), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2294), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2294), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE] = ACTIONS(2294), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_API_AVAILABLE] = ACTIONS(2294), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_API_DEPRECATED] = ACTIONS(2294), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2294), + [anon_sym___deprecated_msg] = ACTIONS(2294), + [anon_sym___deprecated_enum_msg] = ACTIONS(2294), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2294), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2294), + [anon_sym_ATtry] = ACTIONS(2296), + [anon_sym___try] = ACTIONS(2294), + [anon_sym_ATcatch] = ACTIONS(2974), + [anon_sym___catch] = ACTIONS(2976), + [anon_sym_ATfinally] = ACTIONS(2978), + [anon_sym___finally] = ACTIONS(2980), + [anon_sym_ATthrow] = ACTIONS(2296), + [anon_sym_ATselector] = ACTIONS(2296), + [anon_sym_ATavailable] = ACTIONS(2296), + [anon_sym___builtin_available] = ACTIONS(2294), + [anon_sym_va_arg] = ACTIONS(2294), + [anon_sym_ATencode] = ACTIONS(2296), + [anon_sym_ATsynchronized] = ACTIONS(2296), + [anon_sym_BOOL] = ACTIONS(2294), + [anon_sym_IMP] = ACTIONS(2294), + [anon_sym_SEL] = ACTIONS(2294), + [anon_sym_Class] = ACTIONS(2294), + [anon_sym_id] = ACTIONS(2294), + }, + [1087] = { + [sym_catch_clause] = STATE(1087), + [aux_sym_try_statement_repeat1] = STATE(1087), + [sym_identifier] = ACTIONS(2318), + [anon_sym_LPAREN2] = ACTIONS(2320), + [anon_sym_BANG] = ACTIONS(2320), + [anon_sym_TILDE] = ACTIONS(2320), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2320), + [anon_sym_CARET] = ACTIONS(2320), + [anon_sym_AMP] = ACTIONS(2320), + [anon_sym_SEMI] = ACTIONS(2320), + [anon_sym___extension__] = ACTIONS(2318), + [anon_sym_typedef] = ACTIONS(2318), + [anon_sym_extern] = ACTIONS(2318), + [anon_sym___attribute__] = ACTIONS(2318), + [anon_sym___attribute] = ACTIONS(2318), + [anon_sym_noreturn] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2320), + [anon_sym___declspec] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2320), + [anon_sym_signed] = ACTIONS(2318), + [anon_sym_unsigned] = ACTIONS(2318), + [anon_sym_long] = ACTIONS(2318), + [anon_sym_short] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_ATautoreleasepool] = ACTIONS(2320), + [anon_sym_auto] = ACTIONS(2318), + [anon_sym_register] = ACTIONS(2318), + [anon_sym_inline] = ACTIONS(2318), + [anon_sym___inline] = ACTIONS(2318), + [anon_sym___inline__] = ACTIONS(2318), + [anon_sym___forceinline] = ACTIONS(2318), + [anon_sym_thread_local] = ACTIONS(2318), + [anon_sym___thread] = ACTIONS(2318), + [anon_sym_CG_EXTERN] = ACTIONS(2318), + [anon_sym_CG_INLINE] = ACTIONS(2318), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2318), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2318), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2318), + [anon_sym_IBOutlet] = ACTIONS(2318), + [anon_sym_IBInspectable] = ACTIONS(2318), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2318), + [anon_sym_NS_INLINE] = ACTIONS(2318), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2318), + [anon_sym_OBJC_EXPORT] = ACTIONS(2318), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2318), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_constexpr] = ACTIONS(2318), + [anon_sym_volatile] = ACTIONS(2318), + [anon_sym_restrict] = ACTIONS(2318), + [anon_sym___restrict__] = ACTIONS(2318), + [anon_sym__Atomic] = ACTIONS(2318), + [anon_sym__Noreturn] = ACTIONS(2318), + [anon_sym__Nonnull] = ACTIONS(2318), + [anon_sym_nullable] = ACTIONS(2318), + [anon_sym__Complex] = ACTIONS(2318), + [anon_sym__Nullable] = ACTIONS(2318), + [anon_sym__Nullable_result] = ACTIONS(2318), + [anon_sym__Null_unspecified] = ACTIONS(2318), + [anon_sym___autoreleasing] = ACTIONS(2318), + [anon_sym___block] = ACTIONS(2318), + [anon_sym___bridge] = ACTIONS(2318), + [anon_sym___bridge_retained] = ACTIONS(2318), + [anon_sym___bridge_transfer] = ACTIONS(2318), + [anon_sym___complex] = ACTIONS(2318), + [anon_sym___const] = ACTIONS(2318), + [anon_sym___imag] = ACTIONS(2318), + [anon_sym___kindof] = ACTIONS(2318), + [anon_sym___nonnull] = ACTIONS(2318), + [anon_sym___nullable] = ACTIONS(2318), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2318), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2318), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2318), + [anon_sym___real] = ACTIONS(2318), + [anon_sym___strong] = ACTIONS(2318), + [anon_sym___unsafe_unretained] = ACTIONS(2318), + [anon_sym___unused] = ACTIONS(2318), + [anon_sym___weak] = ACTIONS(2318), + [anon_sym_alignas] = ACTIONS(2318), + [anon_sym__Alignas] = ACTIONS(2318), + [sym_primitive_type] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_goto] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2320), + [anon_sym_sizeof] = ACTIONS(2318), + [anon_sym___alignof__] = ACTIONS(2318), + [anon_sym___alignof] = ACTIONS(2318), + [anon_sym__alignof] = ACTIONS(2318), + [anon_sym_alignof] = ACTIONS(2318), + [anon_sym__Alignof] = ACTIONS(2318), + [anon_sym_offsetof] = ACTIONS(2318), + [anon_sym__Generic] = ACTIONS(2318), + [anon_sym_asm] = ACTIONS(2318), + [anon_sym___asm__] = ACTIONS(2318), + [anon_sym___asm] = ACTIONS(2318), + [sym_number_literal] = ACTIONS(2320), + [anon_sym_L_SQUOTE] = ACTIONS(2320), + [anon_sym_u_SQUOTE] = ACTIONS(2320), + [anon_sym_U_SQUOTE] = ACTIONS(2320), + [anon_sym_u8_SQUOTE] = ACTIONS(2320), + [anon_sym_SQUOTE] = ACTIONS(2320), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_DQUOTE] = ACTIONS(2320), + [anon_sym_L_DQUOTE] = ACTIONS(2320), + [anon_sym_u_DQUOTE] = ACTIONS(2320), + [anon_sym_U_DQUOTE] = ACTIONS(2320), + [anon_sym_u8_DQUOTE] = ACTIONS(2320), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [anon_sym_NULL] = ACTIONS(2318), + [anon_sym_nullptr] = ACTIONS(2318), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2318), + [anon_sym___typeof] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2318), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2318), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2318), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2318), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2318), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2318), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2318), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2318), + [anon_sym_NS_AVAILABLE] = ACTIONS(2318), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2318), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_API_AVAILABLE] = ACTIONS(2318), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_API_DEPRECATED] = ACTIONS(2318), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2318), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2318), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2318), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2318), + [anon_sym___deprecated_msg] = ACTIONS(2318), + [anon_sym___deprecated_enum_msg] = ACTIONS(2318), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2318), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2318), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2318), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2318), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2318), + [anon_sym_ATtry] = ACTIONS(2320), + [anon_sym___try] = ACTIONS(2318), + [anon_sym_ATcatch] = ACTIONS(2982), + [anon_sym___catch] = ACTIONS(2985), + [anon_sym_ATfinally] = ACTIONS(2320), + [anon_sym___finally] = ACTIONS(2318), + [anon_sym_ATthrow] = ACTIONS(2320), + [anon_sym_ATselector] = ACTIONS(2320), + [anon_sym_ATavailable] = ACTIONS(2320), + [anon_sym___builtin_available] = ACTIONS(2318), + [anon_sym_va_arg] = ACTIONS(2318), + [anon_sym_ATencode] = ACTIONS(2320), + [anon_sym_ATsynchronized] = ACTIONS(2320), + [anon_sym_BOOL] = ACTIONS(2318), + [anon_sym_IMP] = ACTIONS(2318), + [anon_sym_SEL] = ACTIONS(2318), + [anon_sym_Class] = ACTIONS(2318), + [anon_sym_id] = ACTIONS(2318), + }, + [1088] = { + [sym_identifier] = ACTIONS(2368), + [anon_sym_LPAREN2] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym___extension__] = ACTIONS(2368), + [anon_sym_typedef] = ACTIONS(2368), + [anon_sym_extern] = ACTIONS(2368), + [anon_sym___attribute__] = ACTIONS(2368), + [anon_sym___attribute] = ACTIONS(2368), + [anon_sym_noreturn] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym___declspec] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_signed] = ACTIONS(2368), + [anon_sym_unsigned] = ACTIONS(2368), + [anon_sym_long] = ACTIONS(2368), + [anon_sym_short] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_ATautoreleasepool] = ACTIONS(2370), + [anon_sym_auto] = ACTIONS(2368), + [anon_sym_register] = ACTIONS(2368), + [anon_sym_inline] = ACTIONS(2368), + [anon_sym___inline] = ACTIONS(2368), + [anon_sym___inline__] = ACTIONS(2368), + [anon_sym___forceinline] = ACTIONS(2368), + [anon_sym_thread_local] = ACTIONS(2368), + [anon_sym___thread] = ACTIONS(2368), + [anon_sym_CG_EXTERN] = ACTIONS(2368), + [anon_sym_CG_INLINE] = ACTIONS(2368), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2368), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2368), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2368), + [anon_sym_IBOutlet] = ACTIONS(2368), + [anon_sym_IBInspectable] = ACTIONS(2368), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2368), + [anon_sym_NS_INLINE] = ACTIONS(2368), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2368), + [anon_sym_OBJC_EXPORT] = ACTIONS(2368), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2368), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_constexpr] = ACTIONS(2368), + [anon_sym_volatile] = ACTIONS(2368), + [anon_sym_restrict] = ACTIONS(2368), + [anon_sym___restrict__] = ACTIONS(2368), + [anon_sym__Atomic] = ACTIONS(2368), + [anon_sym__Noreturn] = ACTIONS(2368), + [anon_sym__Nonnull] = ACTIONS(2368), + [anon_sym_nullable] = ACTIONS(2368), + [anon_sym__Complex] = ACTIONS(2368), + [anon_sym__Nullable] = ACTIONS(2368), + [anon_sym__Nullable_result] = ACTIONS(2368), + [anon_sym__Null_unspecified] = ACTIONS(2368), + [anon_sym___autoreleasing] = ACTIONS(2368), + [anon_sym___block] = ACTIONS(2368), + [anon_sym___bridge] = ACTIONS(2368), + [anon_sym___bridge_retained] = ACTIONS(2368), + [anon_sym___bridge_transfer] = ACTIONS(2368), + [anon_sym___complex] = ACTIONS(2368), + [anon_sym___const] = ACTIONS(2368), + [anon_sym___imag] = ACTIONS(2368), + [anon_sym___kindof] = ACTIONS(2368), + [anon_sym___nonnull] = ACTIONS(2368), + [anon_sym___nullable] = ACTIONS(2368), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2368), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2368), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2368), + [anon_sym___real] = ACTIONS(2368), + [anon_sym___strong] = ACTIONS(2368), + [anon_sym___unsafe_unretained] = ACTIONS(2368), + [anon_sym___unused] = ACTIONS(2368), + [anon_sym___weak] = ACTIONS(2368), + [anon_sym_alignas] = ACTIONS(2368), + [anon_sym__Alignas] = ACTIONS(2368), + [sym_primitive_type] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [anon_sym_struct] = ACTIONS(2368), + [anon_sym_union] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_in] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_goto] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_sizeof] = ACTIONS(2368), + [anon_sym___alignof__] = ACTIONS(2368), + [anon_sym___alignof] = ACTIONS(2368), + [anon_sym__alignof] = ACTIONS(2368), + [anon_sym_alignof] = ACTIONS(2368), + [anon_sym__Alignof] = ACTIONS(2368), + [anon_sym_offsetof] = ACTIONS(2368), + [anon_sym__Generic] = ACTIONS(2368), + [anon_sym_asm] = ACTIONS(2368), + [anon_sym___asm__] = ACTIONS(2368), + [anon_sym___asm] = ACTIONS(2368), + [sym_number_literal] = ACTIONS(2370), + [anon_sym_L_SQUOTE] = ACTIONS(2370), + [anon_sym_u_SQUOTE] = ACTIONS(2370), + [anon_sym_U_SQUOTE] = ACTIONS(2370), + [anon_sym_u8_SQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_L_DQUOTE] = ACTIONS(2370), + [anon_sym_u_DQUOTE] = ACTIONS(2370), + [anon_sym_U_DQUOTE] = ACTIONS(2370), + [anon_sym_u8_DQUOTE] = ACTIONS(2370), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [anon_sym_NULL] = ACTIONS(2368), + [anon_sym_nullptr] = ACTIONS(2368), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2368), + [anon_sym___typeof] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2368), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2368), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2368), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2368), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2368), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2368), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2368), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2368), + [anon_sym_NS_AVAILABLE] = ACTIONS(2368), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2368), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_API_AVAILABLE] = ACTIONS(2368), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_API_DEPRECATED] = ACTIONS(2368), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2368), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2368), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2368), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2368), + [anon_sym___deprecated_msg] = ACTIONS(2368), + [anon_sym___deprecated_enum_msg] = ACTIONS(2368), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2368), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2368), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2368), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2368), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2368), + [anon_sym_ATtry] = ACTIONS(2370), + [anon_sym___try] = ACTIONS(2368), + [anon_sym_ATcatch] = ACTIONS(2370), + [anon_sym___catch] = ACTIONS(2368), + [anon_sym_ATfinally] = ACTIONS(2370), + [anon_sym___finally] = ACTIONS(2368), + [anon_sym_ATthrow] = ACTIONS(2370), + [anon_sym_ATselector] = ACTIONS(2370), + [anon_sym_ATavailable] = ACTIONS(2370), + [anon_sym___builtin_available] = ACTIONS(2368), + [anon_sym_va_arg] = ACTIONS(2368), + [anon_sym_ATencode] = ACTIONS(2370), + [anon_sym_ATsynchronized] = ACTIONS(2370), + [anon_sym_BOOL] = ACTIONS(2368), + [anon_sym_IMP] = ACTIONS(2368), + [anon_sym_SEL] = ACTIONS(2368), + [anon_sym_Class] = ACTIONS(2368), + [anon_sym_id] = ACTIONS(2368), + }, + [1089] = { + [sym_identifier] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2346), + [anon_sym_PLUS] = ACTIONS(2346), + [anon_sym_STAR] = ACTIONS(2348), + [anon_sym_CARET] = ACTIONS(2348), + [anon_sym_AMP] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym___extension__] = ACTIONS(2346), + [anon_sym_typedef] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym___attribute__] = ACTIONS(2346), + [anon_sym___attribute] = ACTIONS(2346), + [anon_sym_noreturn] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym___declspec] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_signed] = ACTIONS(2346), + [anon_sym_unsigned] = ACTIONS(2346), + [anon_sym_long] = ACTIONS(2346), + [anon_sym_short] = ACTIONS(2346), + [anon_sym_static] = ACTIONS(2346), + [anon_sym_ATautoreleasepool] = ACTIONS(2348), + [anon_sym_auto] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2346), + [anon_sym_inline] = ACTIONS(2346), + [anon_sym___inline] = ACTIONS(2346), + [anon_sym___inline__] = ACTIONS(2346), + [anon_sym___forceinline] = ACTIONS(2346), + [anon_sym_thread_local] = ACTIONS(2346), + [anon_sym___thread] = ACTIONS(2346), + [anon_sym_CG_EXTERN] = ACTIONS(2346), + [anon_sym_CG_INLINE] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2346), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2346), + [anon_sym_IBOutlet] = ACTIONS(2346), + [anon_sym_IBInspectable] = ACTIONS(2346), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2346), + [anon_sym_NS_INLINE] = ACTIONS(2346), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2346), + [anon_sym_OBJC_EXPORT] = ACTIONS(2346), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_constexpr] = ACTIONS(2346), + [anon_sym_volatile] = ACTIONS(2346), + [anon_sym_restrict] = ACTIONS(2346), + [anon_sym___restrict__] = ACTIONS(2346), + [anon_sym__Atomic] = ACTIONS(2346), + [anon_sym__Noreturn] = ACTIONS(2346), + [anon_sym__Nonnull] = ACTIONS(2346), + [anon_sym_nullable] = ACTIONS(2346), + [anon_sym__Complex] = ACTIONS(2346), + [anon_sym__Nullable] = ACTIONS(2346), + [anon_sym__Nullable_result] = ACTIONS(2346), + [anon_sym__Null_unspecified] = ACTIONS(2346), + [anon_sym___autoreleasing] = ACTIONS(2346), + [anon_sym___block] = ACTIONS(2346), + [anon_sym___bridge] = ACTIONS(2346), + [anon_sym___bridge_retained] = ACTIONS(2346), + [anon_sym___bridge_transfer] = ACTIONS(2346), + [anon_sym___complex] = ACTIONS(2346), + [anon_sym___const] = ACTIONS(2346), + [anon_sym___imag] = ACTIONS(2346), + [anon_sym___kindof] = ACTIONS(2346), + [anon_sym___nonnull] = ACTIONS(2346), + [anon_sym___nullable] = ACTIONS(2346), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2346), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2346), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2346), + [anon_sym___real] = ACTIONS(2346), + [anon_sym___strong] = ACTIONS(2346), + [anon_sym___unsafe_unretained] = ACTIONS(2346), + [anon_sym___unused] = ACTIONS(2346), + [anon_sym___weak] = ACTIONS(2346), + [anon_sym_alignas] = ACTIONS(2346), + [anon_sym__Alignas] = ACTIONS(2346), + [sym_primitive_type] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_switch] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_do] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_goto] = ACTIONS(2346), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2346), + [anon_sym__Generic] = ACTIONS(2346), + [anon_sym_asm] = ACTIONS(2346), + [anon_sym___asm__] = ACTIONS(2346), + [anon_sym___asm] = ACTIONS(2346), + [sym_number_literal] = ACTIONS(2348), + [anon_sym_L_SQUOTE] = ACTIONS(2348), + [anon_sym_u_SQUOTE] = ACTIONS(2348), + [anon_sym_U_SQUOTE] = ACTIONS(2348), + [anon_sym_u8_SQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_L_DQUOTE] = ACTIONS(2348), + [anon_sym_u_DQUOTE] = ACTIONS(2348), + [anon_sym_U_DQUOTE] = ACTIONS(2348), + [anon_sym_u8_DQUOTE] = ACTIONS(2348), + [sym_true] = ACTIONS(2346), + [sym_false] = ACTIONS(2346), + [anon_sym_NULL] = ACTIONS(2346), + [anon_sym_nullptr] = ACTIONS(2346), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2346), + [anon_sym___typeof] = ACTIONS(2346), + [anon_sym_typeof] = ACTIONS(2346), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2346), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2346), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2346), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2346), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE] = ACTIONS(2346), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_API_AVAILABLE] = ACTIONS(2346), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_API_DEPRECATED] = ACTIONS(2346), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2346), + [anon_sym___deprecated_msg] = ACTIONS(2346), + [anon_sym___deprecated_enum_msg] = ACTIONS(2346), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2346), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2346), + [anon_sym_ATtry] = ACTIONS(2348), + [anon_sym___try] = ACTIONS(2346), + [anon_sym_ATcatch] = ACTIONS(2348), + [anon_sym___catch] = ACTIONS(2346), + [anon_sym_ATfinally] = ACTIONS(2348), + [anon_sym___finally] = ACTIONS(2346), + [anon_sym_ATthrow] = ACTIONS(2348), + [anon_sym_ATselector] = ACTIONS(2348), + [anon_sym_ATavailable] = ACTIONS(2348), + [anon_sym___builtin_available] = ACTIONS(2346), + [anon_sym_va_arg] = ACTIONS(2346), + [anon_sym_ATencode] = ACTIONS(2348), + [anon_sym_ATsynchronized] = ACTIONS(2348), + [anon_sym_BOOL] = ACTIONS(2346), + [anon_sym_IMP] = ACTIONS(2346), + [anon_sym_SEL] = ACTIONS(2346), + [anon_sym_Class] = ACTIONS(2346), + [anon_sym_id] = ACTIONS(2346), + }, + [1090] = { + [sym_identifier] = ACTIONS(2354), + [anon_sym_LPAREN2] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2354), + [anon_sym_PLUS] = ACTIONS(2354), + [anon_sym_STAR] = ACTIONS(2356), + [anon_sym_CARET] = ACTIONS(2356), + [anon_sym_AMP] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym___extension__] = ACTIONS(2354), + [anon_sym_typedef] = ACTIONS(2354), + [anon_sym_extern] = ACTIONS(2354), + [anon_sym___attribute__] = ACTIONS(2354), + [anon_sym___attribute] = ACTIONS(2354), + [anon_sym_noreturn] = ACTIONS(2354), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym___declspec] = ACTIONS(2354), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_signed] = ACTIONS(2354), + [anon_sym_unsigned] = ACTIONS(2354), + [anon_sym_long] = ACTIONS(2354), + [anon_sym_short] = ACTIONS(2354), + [anon_sym_static] = ACTIONS(2354), + [anon_sym_ATautoreleasepool] = ACTIONS(2356), + [anon_sym_auto] = ACTIONS(2354), + [anon_sym_register] = ACTIONS(2354), + [anon_sym_inline] = ACTIONS(2354), + [anon_sym___inline] = ACTIONS(2354), + [anon_sym___inline__] = ACTIONS(2354), + [anon_sym___forceinline] = ACTIONS(2354), + [anon_sym_thread_local] = ACTIONS(2354), + [anon_sym___thread] = ACTIONS(2354), + [anon_sym_CG_EXTERN] = ACTIONS(2354), + [anon_sym_CG_INLINE] = ACTIONS(2354), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2354), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2354), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2354), + [anon_sym_IBOutlet] = ACTIONS(2354), + [anon_sym_IBInspectable] = ACTIONS(2354), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2354), + [anon_sym_NS_INLINE] = ACTIONS(2354), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2354), + [anon_sym_OBJC_EXPORT] = ACTIONS(2354), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2354), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2354), + [anon_sym_const] = ACTIONS(2354), + [anon_sym_constexpr] = ACTIONS(2354), + [anon_sym_volatile] = ACTIONS(2354), + [anon_sym_restrict] = ACTIONS(2354), + [anon_sym___restrict__] = ACTIONS(2354), + [anon_sym__Atomic] = ACTIONS(2354), + [anon_sym__Noreturn] = ACTIONS(2354), + [anon_sym__Nonnull] = ACTIONS(2354), + [anon_sym_nullable] = ACTIONS(2354), + [anon_sym__Complex] = ACTIONS(2354), + [anon_sym__Nullable] = ACTIONS(2354), + [anon_sym__Nullable_result] = ACTIONS(2354), + [anon_sym__Null_unspecified] = ACTIONS(2354), + [anon_sym___autoreleasing] = ACTIONS(2354), + [anon_sym___block] = ACTIONS(2354), + [anon_sym___bridge] = ACTIONS(2354), + [anon_sym___bridge_retained] = ACTIONS(2354), + [anon_sym___bridge_transfer] = ACTIONS(2354), + [anon_sym___complex] = ACTIONS(2354), + [anon_sym___const] = ACTIONS(2354), + [anon_sym___imag] = ACTIONS(2354), + [anon_sym___kindof] = ACTIONS(2354), + [anon_sym___nonnull] = ACTIONS(2354), + [anon_sym___nullable] = ACTIONS(2354), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2354), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2354), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2354), + [anon_sym___real] = ACTIONS(2354), + [anon_sym___strong] = ACTIONS(2354), + [anon_sym___unsafe_unretained] = ACTIONS(2354), + [anon_sym___unused] = ACTIONS(2354), + [anon_sym___weak] = ACTIONS(2354), + [anon_sym_alignas] = ACTIONS(2354), + [anon_sym__Alignas] = ACTIONS(2354), + [sym_primitive_type] = ACTIONS(2354), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(2354), + [anon_sym_union] = ACTIONS(2354), + [anon_sym_if] = ACTIONS(2354), + [anon_sym_else] = ACTIONS(2354), + [anon_sym_switch] = ACTIONS(2354), + [anon_sym_while] = ACTIONS(2354), + [anon_sym_do] = ACTIONS(2354), + [anon_sym_for] = ACTIONS(2354), + [anon_sym_in] = ACTIONS(2354), + [anon_sym_return] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_goto] = ACTIONS(2354), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_sizeof] = ACTIONS(2354), + [anon_sym___alignof__] = ACTIONS(2354), + [anon_sym___alignof] = ACTIONS(2354), + [anon_sym__alignof] = ACTIONS(2354), + [anon_sym_alignof] = ACTIONS(2354), + [anon_sym__Alignof] = ACTIONS(2354), + [anon_sym_offsetof] = ACTIONS(2354), + [anon_sym__Generic] = ACTIONS(2354), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2356), + [anon_sym_u_SQUOTE] = ACTIONS(2356), + [anon_sym_U_SQUOTE] = ACTIONS(2356), + [anon_sym_u8_SQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2354), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_L_DQUOTE] = ACTIONS(2356), + [anon_sym_u_DQUOTE] = ACTIONS(2356), + [anon_sym_U_DQUOTE] = ACTIONS(2356), + [anon_sym_u8_DQUOTE] = ACTIONS(2356), + [sym_true] = ACTIONS(2354), + [sym_false] = ACTIONS(2354), + [anon_sym_NULL] = ACTIONS(2354), + [anon_sym_nullptr] = ACTIONS(2354), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2354), + [anon_sym___typeof] = ACTIONS(2354), + [anon_sym_typeof] = ACTIONS(2354), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2354), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2354), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2354), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2354), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2354), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2354), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2354), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2354), + [anon_sym_NS_AVAILABLE] = ACTIONS(2354), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2354), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_API_AVAILABLE] = ACTIONS(2354), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_API_DEPRECATED] = ACTIONS(2354), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2354), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2354), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2354), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2354), + [anon_sym___deprecated_msg] = ACTIONS(2354), + [anon_sym___deprecated_enum_msg] = ACTIONS(2354), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2354), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2354), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2354), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2354), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2354), + [anon_sym_ATtry] = ACTIONS(2356), + [anon_sym___try] = ACTIONS(2354), + [anon_sym_ATcatch] = ACTIONS(2356), + [anon_sym___catch] = ACTIONS(2354), + [anon_sym_ATfinally] = ACTIONS(2356), + [anon_sym___finally] = ACTIONS(2354), + [anon_sym_ATthrow] = ACTIONS(2356), + [anon_sym_ATselector] = ACTIONS(2356), + [anon_sym_ATavailable] = ACTIONS(2356), + [anon_sym___builtin_available] = ACTIONS(2354), + [anon_sym_va_arg] = ACTIONS(2354), + [anon_sym_ATencode] = ACTIONS(2356), + [anon_sym_ATsynchronized] = ACTIONS(2356), + [anon_sym_BOOL] = ACTIONS(2354), + [anon_sym_IMP] = ACTIONS(2354), + [anon_sym_SEL] = ACTIONS(2354), + [anon_sym_Class] = ACTIONS(2354), + [anon_sym_id] = ACTIONS(2354), + }, + [1091] = { + [sym_identifier] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_PLUS] = ACTIONS(2364), + [anon_sym_STAR] = ACTIONS(2366), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_AMP] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_typedef] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym___attribute__] = ACTIONS(2364), + [anon_sym___attribute] = ACTIONS(2364), + [anon_sym_noreturn] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym___declspec] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_signed] = ACTIONS(2364), + [anon_sym_unsigned] = ACTIONS(2364), + [anon_sym_long] = ACTIONS(2364), + [anon_sym_short] = ACTIONS(2364), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_ATautoreleasepool] = ACTIONS(2366), + [anon_sym_auto] = ACTIONS(2364), + [anon_sym_register] = ACTIONS(2364), + [anon_sym_inline] = ACTIONS(2364), + [anon_sym___inline] = ACTIONS(2364), + [anon_sym___inline__] = ACTIONS(2364), + [anon_sym___forceinline] = ACTIONS(2364), + [anon_sym_thread_local] = ACTIONS(2364), + [anon_sym___thread] = ACTIONS(2364), + [anon_sym_CG_EXTERN] = ACTIONS(2364), + [anon_sym_CG_INLINE] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2364), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2364), + [anon_sym_IBOutlet] = ACTIONS(2364), + [anon_sym_IBInspectable] = ACTIONS(2364), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2364), + [anon_sym_NS_INLINE] = ACTIONS(2364), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2364), + [anon_sym_OBJC_EXPORT] = ACTIONS(2364), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [anon_sym_constexpr] = ACTIONS(2364), + [anon_sym_volatile] = ACTIONS(2364), + [anon_sym_restrict] = ACTIONS(2364), + [anon_sym___restrict__] = ACTIONS(2364), + [anon_sym__Atomic] = ACTIONS(2364), + [anon_sym__Noreturn] = ACTIONS(2364), + [anon_sym__Nonnull] = ACTIONS(2364), + [anon_sym_nullable] = ACTIONS(2364), + [anon_sym__Complex] = ACTIONS(2364), + [anon_sym__Nullable] = ACTIONS(2364), + [anon_sym__Nullable_result] = ACTIONS(2364), + [anon_sym__Null_unspecified] = ACTIONS(2364), + [anon_sym___autoreleasing] = ACTIONS(2364), + [anon_sym___block] = ACTIONS(2364), + [anon_sym___bridge] = ACTIONS(2364), + [anon_sym___bridge_retained] = ACTIONS(2364), + [anon_sym___bridge_transfer] = ACTIONS(2364), + [anon_sym___complex] = ACTIONS(2364), + [anon_sym___const] = ACTIONS(2364), + [anon_sym___imag] = ACTIONS(2364), + [anon_sym___kindof] = ACTIONS(2364), + [anon_sym___nonnull] = ACTIONS(2364), + [anon_sym___nullable] = ACTIONS(2364), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2364), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2364), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2364), + [anon_sym___real] = ACTIONS(2364), + [anon_sym___strong] = ACTIONS(2364), + [anon_sym___unsafe_unretained] = ACTIONS(2364), + [anon_sym___unused] = ACTIONS(2364), + [anon_sym___weak] = ACTIONS(2364), + [anon_sym_alignas] = ACTIONS(2364), + [anon_sym__Alignas] = ACTIONS(2364), + [sym_primitive_type] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(2364), + [anon_sym_union] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_switch] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_do] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_in] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_goto] = ACTIONS(2364), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_sizeof] = ACTIONS(2364), + [anon_sym___alignof__] = ACTIONS(2364), + [anon_sym___alignof] = ACTIONS(2364), + [anon_sym__alignof] = ACTIONS(2364), + [anon_sym_alignof] = ACTIONS(2364), + [anon_sym__Alignof] = ACTIONS(2364), + [anon_sym_offsetof] = ACTIONS(2364), + [anon_sym__Generic] = ACTIONS(2364), + [anon_sym_asm] = ACTIONS(2364), + [anon_sym___asm__] = ACTIONS(2364), + [anon_sym___asm] = ACTIONS(2364), + [sym_number_literal] = ACTIONS(2366), + [anon_sym_L_SQUOTE] = ACTIONS(2366), + [anon_sym_u_SQUOTE] = ACTIONS(2366), + [anon_sym_U_SQUOTE] = ACTIONS(2366), + [anon_sym_u8_SQUOTE] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2366), + [anon_sym_AT] = ACTIONS(2364), + [anon_sym_DQUOTE] = ACTIONS(2366), + [anon_sym_L_DQUOTE] = ACTIONS(2366), + [anon_sym_u_DQUOTE] = ACTIONS(2366), + [anon_sym_U_DQUOTE] = ACTIONS(2366), + [anon_sym_u8_DQUOTE] = ACTIONS(2366), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2364), + [anon_sym___typeof] = ACTIONS(2364), + [anon_sym_typeof] = ACTIONS(2364), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2364), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2364), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2364), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2364), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE] = ACTIONS(2364), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_API_AVAILABLE] = ACTIONS(2364), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_API_DEPRECATED] = ACTIONS(2364), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2364), + [anon_sym___deprecated_msg] = ACTIONS(2364), + [anon_sym___deprecated_enum_msg] = ACTIONS(2364), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2364), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2364), + [anon_sym_ATtry] = ACTIONS(2366), + [anon_sym___try] = ACTIONS(2364), + [anon_sym_ATcatch] = ACTIONS(2366), + [anon_sym___catch] = ACTIONS(2364), + [anon_sym_ATfinally] = ACTIONS(2366), + [anon_sym___finally] = ACTIONS(2364), + [anon_sym_ATthrow] = ACTIONS(2366), + [anon_sym_ATselector] = ACTIONS(2366), + [anon_sym_ATavailable] = ACTIONS(2366), + [anon_sym___builtin_available] = ACTIONS(2364), + [anon_sym_va_arg] = ACTIONS(2364), + [anon_sym_ATencode] = ACTIONS(2366), + [anon_sym_ATsynchronized] = ACTIONS(2366), + [anon_sym_BOOL] = ACTIONS(2364), + [anon_sym_IMP] = ACTIONS(2364), + [anon_sym_SEL] = ACTIONS(2364), + [anon_sym_Class] = ACTIONS(2364), + [anon_sym_id] = ACTIONS(2364), + }, + [1092] = { + [sym_identifier] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(2352), + [anon_sym_BANG] = ACTIONS(2352), + [anon_sym_TILDE] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2350), + [anon_sym_STAR] = ACTIONS(2352), + [anon_sym_CARET] = ACTIONS(2352), + [anon_sym_AMP] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2352), + [anon_sym___extension__] = ACTIONS(2350), + [anon_sym_typedef] = ACTIONS(2350), + [anon_sym_extern] = ACTIONS(2350), + [anon_sym___attribute__] = ACTIONS(2350), + [anon_sym___attribute] = ACTIONS(2350), + [anon_sym_noreturn] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2352), + [anon_sym___declspec] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2352), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(2350), + [anon_sym_ATautoreleasepool] = ACTIONS(2352), + [anon_sym_auto] = ACTIONS(2350), + [anon_sym_register] = ACTIONS(2350), + [anon_sym_inline] = ACTIONS(2350), + [anon_sym___inline] = ACTIONS(2350), + [anon_sym___inline__] = ACTIONS(2350), + [anon_sym___forceinline] = ACTIONS(2350), + [anon_sym_thread_local] = ACTIONS(2350), + [anon_sym___thread] = ACTIONS(2350), + [anon_sym_CG_EXTERN] = ACTIONS(2350), + [anon_sym_CG_INLINE] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2350), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2350), + [anon_sym_IBOutlet] = ACTIONS(2350), + [anon_sym_IBInspectable] = ACTIONS(2350), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2350), + [anon_sym_NS_INLINE] = ACTIONS(2350), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2350), + [anon_sym_OBJC_EXPORT] = ACTIONS(2350), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2350), + [anon_sym_const] = ACTIONS(2350), + [anon_sym_constexpr] = ACTIONS(2350), + [anon_sym_volatile] = ACTIONS(2350), + [anon_sym_restrict] = ACTIONS(2350), + [anon_sym___restrict__] = ACTIONS(2350), + [anon_sym__Atomic] = ACTIONS(2350), + [anon_sym__Noreturn] = ACTIONS(2350), + [anon_sym__Nonnull] = ACTIONS(2350), + [anon_sym_nullable] = ACTIONS(2350), + [anon_sym__Complex] = ACTIONS(2350), + [anon_sym__Nullable] = ACTIONS(2350), + [anon_sym__Nullable_result] = ACTIONS(2350), + [anon_sym__Null_unspecified] = ACTIONS(2350), + [anon_sym___autoreleasing] = ACTIONS(2350), + [anon_sym___block] = ACTIONS(2350), + [anon_sym___bridge] = ACTIONS(2350), + [anon_sym___bridge_retained] = ACTIONS(2350), + [anon_sym___bridge_transfer] = ACTIONS(2350), + [anon_sym___complex] = ACTIONS(2350), + [anon_sym___const] = ACTIONS(2350), + [anon_sym___imag] = ACTIONS(2350), + [anon_sym___kindof] = ACTIONS(2350), + [anon_sym___nonnull] = ACTIONS(2350), + [anon_sym___nullable] = ACTIONS(2350), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2350), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2350), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2350), + [anon_sym___real] = ACTIONS(2350), + [anon_sym___strong] = ACTIONS(2350), + [anon_sym___unsafe_unretained] = ACTIONS(2350), + [anon_sym___unused] = ACTIONS(2350), + [anon_sym___weak] = ACTIONS(2350), + [anon_sym_alignas] = ACTIONS(2350), + [anon_sym__Alignas] = ACTIONS(2350), + [sym_primitive_type] = ACTIONS(2350), + [anon_sym_enum] = ACTIONS(2350), + [anon_sym_struct] = ACTIONS(2350), + [anon_sym_union] = ACTIONS(2350), + [anon_sym_if] = ACTIONS(2350), + [anon_sym_else] = ACTIONS(2350), + [anon_sym_switch] = ACTIONS(2350), + [anon_sym_while] = ACTIONS(2350), + [anon_sym_do] = ACTIONS(2350), + [anon_sym_for] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_return] = ACTIONS(2350), + [anon_sym_break] = ACTIONS(2350), + [anon_sym_continue] = ACTIONS(2350), + [anon_sym_goto] = ACTIONS(2350), + [anon_sym_DASH_DASH] = ACTIONS(2352), + [anon_sym_PLUS_PLUS] = ACTIONS(2352), + [anon_sym_sizeof] = ACTIONS(2350), + [anon_sym___alignof__] = ACTIONS(2350), + [anon_sym___alignof] = ACTIONS(2350), + [anon_sym__alignof] = ACTIONS(2350), + [anon_sym_alignof] = ACTIONS(2350), + [anon_sym__Alignof] = ACTIONS(2350), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_asm] = ACTIONS(2350), + [anon_sym___asm__] = ACTIONS(2350), + [anon_sym___asm] = ACTIONS(2350), + [sym_number_literal] = ACTIONS(2352), + [anon_sym_L_SQUOTE] = ACTIONS(2352), + [anon_sym_u_SQUOTE] = ACTIONS(2352), + [anon_sym_U_SQUOTE] = ACTIONS(2352), + [anon_sym_u8_SQUOTE] = ACTIONS(2352), + [anon_sym_SQUOTE] = ACTIONS(2352), + [anon_sym_AT] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2352), + [anon_sym_L_DQUOTE] = ACTIONS(2352), + [anon_sym_u_DQUOTE] = ACTIONS(2352), + [anon_sym_U_DQUOTE] = ACTIONS(2352), + [anon_sym_u8_DQUOTE] = ACTIONS(2352), + [sym_true] = ACTIONS(2350), + [sym_false] = ACTIONS(2350), + [anon_sym_NULL] = ACTIONS(2350), + [anon_sym_nullptr] = ACTIONS(2350), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2350), + [anon_sym___typeof] = ACTIONS(2350), + [anon_sym_typeof] = ACTIONS(2350), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2350), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2350), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2350), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2350), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE] = ACTIONS(2350), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_API_AVAILABLE] = ACTIONS(2350), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_API_DEPRECATED] = ACTIONS(2350), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2350), + [anon_sym___deprecated_msg] = ACTIONS(2350), + [anon_sym___deprecated_enum_msg] = ACTIONS(2350), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2350), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2350), + [anon_sym_ATtry] = ACTIONS(2352), + [anon_sym___try] = ACTIONS(2350), + [anon_sym_ATcatch] = ACTIONS(2352), + [anon_sym___catch] = ACTIONS(2350), + [anon_sym_ATfinally] = ACTIONS(2352), + [anon_sym___finally] = ACTIONS(2350), + [anon_sym_ATthrow] = ACTIONS(2352), + [anon_sym_ATselector] = ACTIONS(2352), + [anon_sym_ATavailable] = ACTIONS(2352), + [anon_sym___builtin_available] = ACTIONS(2350), + [anon_sym_va_arg] = ACTIONS(2350), + [anon_sym_ATencode] = ACTIONS(2352), + [anon_sym_ATsynchronized] = ACTIONS(2352), + [anon_sym_BOOL] = ACTIONS(2350), + [anon_sym_IMP] = ACTIONS(2350), + [anon_sym_SEL] = ACTIONS(2350), + [anon_sym_Class] = ACTIONS(2350), + [anon_sym_id] = ACTIONS(2350), + }, + [1093] = { + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN2] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(2991), + [anon_sym_TILDE] = ACTIONS(2991), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_CARET] = ACTIONS(2991), + [anon_sym_AMP] = ACTIONS(2991), + [anon_sym_SEMI] = ACTIONS(2991), + [anon_sym___extension__] = ACTIONS(2988), + [anon_sym_extern] = ACTIONS(2995), + [anon_sym___attribute__] = ACTIONS(2995), + [anon_sym___attribute] = ACTIONS(2995), + [anon_sym_noreturn] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym___declspec] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2991), + [anon_sym_signed] = ACTIONS(2995), + [anon_sym_unsigned] = ACTIONS(2995), + [anon_sym_long] = ACTIONS(2995), + [anon_sym_short] = ACTIONS(2995), + [anon_sym_static] = ACTIONS(2995), + [anon_sym_ATautoreleasepool] = ACTIONS(2991), + [anon_sym_auto] = ACTIONS(2995), + [anon_sym_register] = ACTIONS(2995), + [anon_sym_inline] = ACTIONS(2995), + [anon_sym___inline] = ACTIONS(2995), + [anon_sym___inline__] = ACTIONS(2995), + [anon_sym___forceinline] = ACTIONS(2995), + [anon_sym_thread_local] = ACTIONS(2995), + [anon_sym___thread] = ACTIONS(2995), + [anon_sym_CG_EXTERN] = ACTIONS(2995), + [anon_sym_CG_INLINE] = ACTIONS(2995), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2995), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2995), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2995), + [anon_sym_IBOutlet] = ACTIONS(2995), + [anon_sym_IBInspectable] = ACTIONS(2995), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2995), + [anon_sym_NS_INLINE] = ACTIONS(2995), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2995), + [anon_sym_OBJC_EXPORT] = ACTIONS(2995), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2995), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2995), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_constexpr] = ACTIONS(2995), + [anon_sym_volatile] = ACTIONS(2995), + [anon_sym_restrict] = ACTIONS(2995), + [anon_sym___restrict__] = ACTIONS(2995), + [anon_sym__Atomic] = ACTIONS(2995), + [anon_sym__Noreturn] = ACTIONS(2995), + [anon_sym__Nonnull] = ACTIONS(2995), + [anon_sym_nullable] = ACTIONS(2995), + [anon_sym__Complex] = ACTIONS(2995), + [anon_sym__Nullable] = ACTIONS(2995), + [anon_sym__Nullable_result] = ACTIONS(2995), + [anon_sym__Null_unspecified] = ACTIONS(2995), + [anon_sym___autoreleasing] = ACTIONS(2995), + [anon_sym___block] = ACTIONS(2995), + [anon_sym___bridge] = ACTIONS(2995), + [anon_sym___bridge_retained] = ACTIONS(2995), + [anon_sym___bridge_transfer] = ACTIONS(2995), + [anon_sym___complex] = ACTIONS(2995), + [anon_sym___const] = ACTIONS(2995), + [anon_sym___imag] = ACTIONS(2988), + [anon_sym___kindof] = ACTIONS(2995), + [anon_sym___nonnull] = ACTIONS(2995), + [anon_sym___nullable] = ACTIONS(2995), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2995), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2995), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2995), + [anon_sym___real] = ACTIONS(2988), + [anon_sym___strong] = ACTIONS(2995), + [anon_sym___unsafe_unretained] = ACTIONS(2995), + [anon_sym___unused] = ACTIONS(2995), + [anon_sym___weak] = ACTIONS(2995), + [anon_sym_alignas] = ACTIONS(2995), + [anon_sym__Alignas] = ACTIONS(2995), + [sym_primitive_type] = ACTIONS(2995), + [anon_sym_enum] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2988), + [anon_sym_union] = ACTIONS(2995), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_switch] = ACTIONS(2993), + [anon_sym_case] = ACTIONS(2993), + [anon_sym_default] = ACTIONS(2993), + [anon_sym_while] = ACTIONS(2993), + [anon_sym_do] = ACTIONS(2993), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_in] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_break] = ACTIONS(2993), + [anon_sym_continue] = ACTIONS(2993), + [anon_sym_goto] = ACTIONS(2993), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2993), + [anon_sym___alignof] = ACTIONS(2993), + [anon_sym__alignof] = ACTIONS(2993), + [anon_sym_alignof] = ACTIONS(2993), + [anon_sym__Alignof] = ACTIONS(2993), + [anon_sym_offsetof] = ACTIONS(2993), + [anon_sym__Generic] = ACTIONS(2993), + [anon_sym_asm] = ACTIONS(2993), + [anon_sym___asm__] = ACTIONS(2993), + [anon_sym___asm] = ACTIONS(2993), + [sym_number_literal] = ACTIONS(2991), + [anon_sym_L_SQUOTE] = ACTIONS(2991), + [anon_sym_u_SQUOTE] = ACTIONS(2991), + [anon_sym_U_SQUOTE] = ACTIONS(2991), + [anon_sym_u8_SQUOTE] = ACTIONS(2991), + [anon_sym_SQUOTE] = ACTIONS(2991), + [anon_sym_AT] = ACTIONS(2993), + [anon_sym_DQUOTE] = ACTIONS(2991), + [anon_sym_L_DQUOTE] = ACTIONS(2991), + [anon_sym_u_DQUOTE] = ACTIONS(2991), + [anon_sym_U_DQUOTE] = ACTIONS(2991), + [anon_sym_u8_DQUOTE] = ACTIONS(2991), + [sym_true] = ACTIONS(2993), + [sym_false] = ACTIONS(2993), + [anon_sym_NULL] = ACTIONS(2993), + [anon_sym_nullptr] = ACTIONS(2993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2995), + [anon_sym___typeof] = ACTIONS(2995), + [anon_sym_typeof] = ACTIONS(2995), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2995), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2995), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2995), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2995), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2995), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2995), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2995), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2995), + [anon_sym_NS_AVAILABLE] = ACTIONS(2995), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2995), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_API_AVAILABLE] = ACTIONS(2995), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_API_DEPRECATED] = ACTIONS(2995), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2995), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2995), + [anon_sym___deprecated_msg] = ACTIONS(2995), + [anon_sym___deprecated_enum_msg] = ACTIONS(2995), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2995), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2995), + [anon_sym_ATprotocol] = ACTIONS(3000), + [anon_sym_ATinterface] = ACTIONS(3000), + [anon_sym_ATimplementation] = ACTIONS(3000), + [anon_sym_ATtry] = ACTIONS(2991), + [anon_sym___try] = ACTIONS(2993), + [anon_sym_ATthrow] = ACTIONS(2991), + [anon_sym_ATselector] = ACTIONS(2991), + [anon_sym_ATavailable] = ACTIONS(2991), + [anon_sym___builtin_available] = ACTIONS(2993), + [anon_sym_va_arg] = ACTIONS(2993), + [anon_sym_ATencode] = ACTIONS(2991), + [anon_sym_ATsynchronized] = ACTIONS(2991), + [anon_sym_BOOL] = ACTIONS(2995), + [anon_sym_IMP] = ACTIONS(2995), + [anon_sym_SEL] = ACTIONS(2995), + [anon_sym_Class] = ACTIONS(2995), + [anon_sym_id] = ACTIONS(2988), + }, + [1094] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym__type_params] = STATE(1191), + [sym__class_implementation_inheritance] = STATE(1220), + [sym_parameterized_arguments] = STATE(1191), + [sym_generic_arguments] = STATE(1999), + [sym_instance_variables] = STATE(1298), + [sym_implementation_definition] = STATE(1300), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1300), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_LPAREN2] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3032), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1095] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym__type_params] = STATE(1193), + [sym__class_implementation_inheritance] = STATE(1222), + [sym_parameterized_arguments] = STATE(1193), + [sym_generic_arguments] = STATE(1999), + [sym_instance_variables] = STATE(1323), + [sym_implementation_definition] = STATE(1292), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1292), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_LPAREN2] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3038), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1096] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym__type_params] = STATE(1189), + [sym__class_implementation_inheritance] = STATE(1207), + [sym_parameterized_arguments] = STATE(1189), + [sym_generic_arguments] = STATE(1999), + [sym_instance_variables] = STATE(1268), + [sym_implementation_definition] = STATE(1313), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1313), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_LPAREN2] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3040), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1097] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym__type_params] = STATE(1190), + [sym__class_implementation_inheritance] = STATE(1215), + [sym_parameterized_arguments] = STATE(1190), + [sym_generic_arguments] = STATE(1999), + [sym_instance_variables] = STATE(1291), + [sym_implementation_definition] = STATE(1266), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1266), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_LPAREN2] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3042), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1098] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym__type_params] = STATE(1192), + [sym__class_implementation_inheritance] = STATE(1217), + [sym_parameterized_arguments] = STATE(1192), + [sym_generic_arguments] = STATE(1999), + [sym_instance_variables] = STATE(1284), + [sym_implementation_definition] = STATE(1285), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1285), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_LPAREN2] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3044), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1099] = { + [sym_else_clause] = STATE(1153), + [sym_identifier] = ACTIONS(2402), + [anon_sym_LPAREN2] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_TILDE] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_PLUS] = ACTIONS(2402), + [anon_sym_STAR] = ACTIONS(2404), + [anon_sym_CARET] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym___extension__] = ACTIONS(2402), + [anon_sym_typedef] = ACTIONS(2402), + [anon_sym_extern] = ACTIONS(2402), + [anon_sym___attribute__] = ACTIONS(2402), + [anon_sym___attribute] = ACTIONS(2402), + [anon_sym_noreturn] = ACTIONS(2402), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym___declspec] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2404), + [anon_sym_signed] = ACTIONS(2402), + [anon_sym_unsigned] = ACTIONS(2402), + [anon_sym_long] = ACTIONS(2402), + [anon_sym_short] = ACTIONS(2402), + [anon_sym_static] = ACTIONS(2402), + [anon_sym_ATautoreleasepool] = ACTIONS(2404), + [anon_sym_auto] = ACTIONS(2402), + [anon_sym_register] = ACTIONS(2402), + [anon_sym_inline] = ACTIONS(2402), + [anon_sym___inline] = ACTIONS(2402), + [anon_sym___inline__] = ACTIONS(2402), + [anon_sym___forceinline] = ACTIONS(2402), + [anon_sym_thread_local] = ACTIONS(2402), + [anon_sym___thread] = ACTIONS(2402), + [anon_sym_CG_EXTERN] = ACTIONS(2402), + [anon_sym_CG_INLINE] = ACTIONS(2402), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2402), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2402), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2402), + [anon_sym_IBOutlet] = ACTIONS(2402), + [anon_sym_IBInspectable] = ACTIONS(2402), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2402), + [anon_sym_NS_INLINE] = ACTIONS(2402), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2402), + [anon_sym_OBJC_EXPORT] = ACTIONS(2402), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2402), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2402), + [anon_sym_const] = ACTIONS(2402), + [anon_sym_constexpr] = ACTIONS(2402), + [anon_sym_volatile] = ACTIONS(2402), + [anon_sym_restrict] = ACTIONS(2402), + [anon_sym___restrict__] = ACTIONS(2402), + [anon_sym__Atomic] = ACTIONS(2402), + [anon_sym__Noreturn] = ACTIONS(2402), + [anon_sym__Nonnull] = ACTIONS(2402), + [anon_sym_nullable] = ACTIONS(2402), + [anon_sym__Complex] = ACTIONS(2402), + [anon_sym__Nullable] = ACTIONS(2402), + [anon_sym__Nullable_result] = ACTIONS(2402), + [anon_sym__Null_unspecified] = ACTIONS(2402), + [anon_sym___autoreleasing] = ACTIONS(2402), + [anon_sym___block] = ACTIONS(2402), + [anon_sym___bridge] = ACTIONS(2402), + [anon_sym___bridge_retained] = ACTIONS(2402), + [anon_sym___bridge_transfer] = ACTIONS(2402), + [anon_sym___complex] = ACTIONS(2402), + [anon_sym___const] = ACTIONS(2402), + [anon_sym___imag] = ACTIONS(2402), + [anon_sym___kindof] = ACTIONS(2402), + [anon_sym___nonnull] = ACTIONS(2402), + [anon_sym___nullable] = ACTIONS(2402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2402), + [anon_sym___real] = ACTIONS(2402), + [anon_sym___strong] = ACTIONS(2402), + [anon_sym___unsafe_unretained] = ACTIONS(2402), + [anon_sym___unused] = ACTIONS(2402), + [anon_sym___weak] = ACTIONS(2402), + [anon_sym_alignas] = ACTIONS(2402), + [anon_sym__Alignas] = ACTIONS(2402), + [sym_primitive_type] = ACTIONS(2402), + [anon_sym_enum] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(2402), + [anon_sym_union] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_else] = ACTIONS(3046), + [anon_sym_switch] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_in] = ACTIONS(2402), + [anon_sym_return] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_goto] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2404), + [anon_sym_sizeof] = ACTIONS(2402), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2402), + [anon_sym_asm] = ACTIONS(2402), + [anon_sym___asm__] = ACTIONS(2402), + [anon_sym___asm] = ACTIONS(2402), + [sym_number_literal] = ACTIONS(2404), + [anon_sym_L_SQUOTE] = ACTIONS(2404), + [anon_sym_u_SQUOTE] = ACTIONS(2404), + [anon_sym_U_SQUOTE] = ACTIONS(2404), + [anon_sym_u8_SQUOTE] = ACTIONS(2404), + [anon_sym_SQUOTE] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_L_DQUOTE] = ACTIONS(2404), + [anon_sym_u_DQUOTE] = ACTIONS(2404), + [anon_sym_U_DQUOTE] = ACTIONS(2404), + [anon_sym_u8_DQUOTE] = ACTIONS(2404), + [sym_true] = ACTIONS(2402), + [sym_false] = ACTIONS(2402), + [anon_sym_NULL] = ACTIONS(2402), + [anon_sym_nullptr] = ACTIONS(2402), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2402), + [anon_sym___typeof] = ACTIONS(2402), + [anon_sym_typeof] = ACTIONS(2402), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2402), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2402), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2402), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2402), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2402), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2402), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2402), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2402), + [anon_sym_NS_AVAILABLE] = ACTIONS(2402), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2402), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_API_AVAILABLE] = ACTIONS(2402), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_API_DEPRECATED] = ACTIONS(2402), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2402), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2402), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2402), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2402), + [anon_sym___deprecated_msg] = ACTIONS(2402), + [anon_sym___deprecated_enum_msg] = ACTIONS(2402), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2402), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2402), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2402), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2402), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2402), + [anon_sym_ATtry] = ACTIONS(2404), + [anon_sym___try] = ACTIONS(2402), + [anon_sym_ATthrow] = ACTIONS(2404), + [anon_sym_ATselector] = ACTIONS(2404), + [anon_sym_ATavailable] = ACTIONS(2404), + [anon_sym___builtin_available] = ACTIONS(2402), + [anon_sym_va_arg] = ACTIONS(2402), + [anon_sym_ATencode] = ACTIONS(2404), + [anon_sym_ATsynchronized] = ACTIONS(2404), + [anon_sym_BOOL] = ACTIONS(2402), + [anon_sym_IMP] = ACTIONS(2402), + [anon_sym_SEL] = ACTIONS(2402), + [anon_sym_Class] = ACTIONS(2402), + [anon_sym_id] = ACTIONS(2402), + }, + [1100] = { + [sym_identifier] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [1101] = { + [sym_identifier] = ACTIONS(2544), + [anon_sym_LPAREN2] = ACTIONS(2546), + [anon_sym_BANG] = ACTIONS(2546), + [anon_sym_TILDE] = ACTIONS(2546), + [anon_sym_DASH] = ACTIONS(2544), + [anon_sym_PLUS] = ACTIONS(2544), + [anon_sym_STAR] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2546), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym___extension__] = ACTIONS(2544), + [anon_sym_typedef] = ACTIONS(2544), + [anon_sym_extern] = ACTIONS(2544), + [anon_sym___attribute__] = ACTIONS(2544), + [anon_sym___attribute] = ACTIONS(2544), + [anon_sym_noreturn] = ACTIONS(2544), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym___declspec] = ACTIONS(2544), + [anon_sym_LBRACE] = ACTIONS(2546), + [anon_sym_signed] = ACTIONS(2544), + [anon_sym_unsigned] = ACTIONS(2544), + [anon_sym_long] = ACTIONS(2544), + [anon_sym_short] = ACTIONS(2544), + [anon_sym_static] = ACTIONS(2544), + [anon_sym_ATautoreleasepool] = ACTIONS(2546), + [anon_sym_auto] = ACTIONS(2544), + [anon_sym_register] = ACTIONS(2544), + [anon_sym_inline] = ACTIONS(2544), + [anon_sym___inline] = ACTIONS(2544), + [anon_sym___inline__] = ACTIONS(2544), + [anon_sym___forceinline] = ACTIONS(2544), + [anon_sym_thread_local] = ACTIONS(2544), + [anon_sym___thread] = ACTIONS(2544), + [anon_sym_CG_EXTERN] = ACTIONS(2544), + [anon_sym_CG_INLINE] = ACTIONS(2544), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2544), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2544), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2544), + [anon_sym_IBOutlet] = ACTIONS(2544), + [anon_sym_IBInspectable] = ACTIONS(2544), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2544), + [anon_sym_NS_INLINE] = ACTIONS(2544), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2544), + [anon_sym_OBJC_EXPORT] = ACTIONS(2544), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2544), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2544), + [anon_sym_const] = ACTIONS(2544), + [anon_sym_constexpr] = ACTIONS(2544), + [anon_sym_volatile] = ACTIONS(2544), + [anon_sym_restrict] = ACTIONS(2544), + [anon_sym___restrict__] = ACTIONS(2544), + [anon_sym__Atomic] = ACTIONS(2544), + [anon_sym__Noreturn] = ACTIONS(2544), + [anon_sym__Nonnull] = ACTIONS(2544), + [anon_sym_nullable] = ACTIONS(2544), + [anon_sym__Complex] = ACTIONS(2544), + [anon_sym__Nullable] = ACTIONS(2544), + [anon_sym__Nullable_result] = ACTIONS(2544), + [anon_sym__Null_unspecified] = ACTIONS(2544), + [anon_sym___autoreleasing] = ACTIONS(2544), + [anon_sym___block] = ACTIONS(2544), + [anon_sym___bridge] = ACTIONS(2544), + [anon_sym___bridge_retained] = ACTIONS(2544), + [anon_sym___bridge_transfer] = ACTIONS(2544), + [anon_sym___complex] = ACTIONS(2544), + [anon_sym___const] = ACTIONS(2544), + [anon_sym___imag] = ACTIONS(2544), + [anon_sym___kindof] = ACTIONS(2544), + [anon_sym___nonnull] = ACTIONS(2544), + [anon_sym___nullable] = ACTIONS(2544), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2544), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2544), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2544), + [anon_sym___real] = ACTIONS(2544), + [anon_sym___strong] = ACTIONS(2544), + [anon_sym___unsafe_unretained] = ACTIONS(2544), + [anon_sym___unused] = ACTIONS(2544), + [anon_sym___weak] = ACTIONS(2544), + [anon_sym_alignas] = ACTIONS(2544), + [anon_sym__Alignas] = ACTIONS(2544), + [sym_primitive_type] = ACTIONS(2544), + [anon_sym_enum] = ACTIONS(2544), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2544), + [anon_sym_if] = ACTIONS(2544), + [anon_sym_else] = ACTIONS(2544), + [anon_sym_switch] = ACTIONS(2544), + [anon_sym_while] = ACTIONS(2544), + [anon_sym_do] = ACTIONS(2544), + [anon_sym_for] = ACTIONS(2544), + [anon_sym_in] = ACTIONS(2544), + [anon_sym_return] = ACTIONS(2544), + [anon_sym_break] = ACTIONS(2544), + [anon_sym_continue] = ACTIONS(2544), + [anon_sym_goto] = ACTIONS(2544), + [anon_sym_DASH_DASH] = ACTIONS(2546), + [anon_sym_PLUS_PLUS] = ACTIONS(2546), + [anon_sym_sizeof] = ACTIONS(2544), + [anon_sym___alignof__] = ACTIONS(2544), + [anon_sym___alignof] = ACTIONS(2544), + [anon_sym__alignof] = ACTIONS(2544), + [anon_sym_alignof] = ACTIONS(2544), + [anon_sym__Alignof] = ACTIONS(2544), + [anon_sym_offsetof] = ACTIONS(2544), + [anon_sym__Generic] = ACTIONS(2544), + [anon_sym_asm] = ACTIONS(2544), + [anon_sym___asm__] = ACTIONS(2544), + [anon_sym___asm] = ACTIONS(2544), + [sym_number_literal] = ACTIONS(2546), + [anon_sym_L_SQUOTE] = ACTIONS(2546), + [anon_sym_u_SQUOTE] = ACTIONS(2546), + [anon_sym_U_SQUOTE] = ACTIONS(2546), + [anon_sym_u8_SQUOTE] = ACTIONS(2546), + [anon_sym_SQUOTE] = ACTIONS(2546), + [anon_sym_AT] = ACTIONS(2544), + [anon_sym_DQUOTE] = ACTIONS(2546), + [anon_sym_L_DQUOTE] = ACTIONS(2546), + [anon_sym_u_DQUOTE] = ACTIONS(2546), + [anon_sym_U_DQUOTE] = ACTIONS(2546), + [anon_sym_u8_DQUOTE] = ACTIONS(2546), + [sym_true] = ACTIONS(2544), + [sym_false] = ACTIONS(2544), + [anon_sym_NULL] = ACTIONS(2544), + [anon_sym_nullptr] = ACTIONS(2544), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2544), + [anon_sym___typeof] = ACTIONS(2544), + [anon_sym_typeof] = ACTIONS(2544), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2544), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2544), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2544), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2544), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2544), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2544), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2544), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2544), + [anon_sym_NS_AVAILABLE] = ACTIONS(2544), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2544), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_API_AVAILABLE] = ACTIONS(2544), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_API_DEPRECATED] = ACTIONS(2544), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2544), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2544), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2544), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2544), + [anon_sym___deprecated_msg] = ACTIONS(2544), + [anon_sym___deprecated_enum_msg] = ACTIONS(2544), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2544), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2544), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2544), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2544), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2544), + [anon_sym_ATtry] = ACTIONS(2546), + [anon_sym___try] = ACTIONS(2544), + [anon_sym_ATthrow] = ACTIONS(2546), + [anon_sym_ATselector] = ACTIONS(2546), + [anon_sym_ATavailable] = ACTIONS(2546), + [anon_sym___builtin_available] = ACTIONS(2544), + [anon_sym_va_arg] = ACTIONS(2544), + [anon_sym_ATencode] = ACTIONS(2546), + [anon_sym_ATsynchronized] = ACTIONS(2546), + [anon_sym_BOOL] = ACTIONS(2544), + [anon_sym_IMP] = ACTIONS(2544), + [anon_sym_SEL] = ACTIONS(2544), + [anon_sym_Class] = ACTIONS(2544), + [anon_sym_id] = ACTIONS(2544), + }, + [1102] = { + [sym_identifier] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_ATautoreleasepool] = ACTIONS(2438), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_goto] = ACTIONS(2436), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_sizeof] = ACTIONS(2436), + [anon_sym___alignof__] = ACTIONS(2436), + [anon_sym___alignof] = ACTIONS(2436), + [anon_sym__alignof] = ACTIONS(2436), + [anon_sym_alignof] = ACTIONS(2436), + [anon_sym__Alignof] = ACTIONS(2436), + [anon_sym_offsetof] = ACTIONS(2436), + [anon_sym__Generic] = ACTIONS(2436), + [anon_sym_asm] = ACTIONS(2436), + [anon_sym___asm__] = ACTIONS(2436), + [anon_sym___asm] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_L_SQUOTE] = ACTIONS(2438), + [anon_sym_u_SQUOTE] = ACTIONS(2438), + [anon_sym_U_SQUOTE] = ACTIONS(2438), + [anon_sym_u8_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_L_DQUOTE] = ACTIONS(2438), + [anon_sym_u_DQUOTE] = ACTIONS(2438), + [anon_sym_U_DQUOTE] = ACTIONS(2438), + [anon_sym_u8_DQUOTE] = ACTIONS(2438), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_nullptr] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATtry] = ACTIONS(2438), + [anon_sym___try] = ACTIONS(2436), + [anon_sym_ATthrow] = ACTIONS(2438), + [anon_sym_ATselector] = ACTIONS(2438), + [anon_sym_ATavailable] = ACTIONS(2438), + [anon_sym___builtin_available] = ACTIONS(2436), + [anon_sym_va_arg] = ACTIONS(2436), + [anon_sym_ATencode] = ACTIONS(2438), + [anon_sym_ATsynchronized] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [1103] = { + [sym_identifier] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_ATautoreleasepool] = ACTIONS(2438), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_goto] = ACTIONS(2436), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_sizeof] = ACTIONS(2436), + [anon_sym___alignof__] = ACTIONS(2436), + [anon_sym___alignof] = ACTIONS(2436), + [anon_sym__alignof] = ACTIONS(2436), + [anon_sym_alignof] = ACTIONS(2436), + [anon_sym__Alignof] = ACTIONS(2436), + [anon_sym_offsetof] = ACTIONS(2436), + [anon_sym__Generic] = ACTIONS(2436), + [anon_sym_asm] = ACTIONS(2436), + [anon_sym___asm__] = ACTIONS(2436), + [anon_sym___asm] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_L_SQUOTE] = ACTIONS(2438), + [anon_sym_u_SQUOTE] = ACTIONS(2438), + [anon_sym_U_SQUOTE] = ACTIONS(2438), + [anon_sym_u8_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_L_DQUOTE] = ACTIONS(2438), + [anon_sym_u_DQUOTE] = ACTIONS(2438), + [anon_sym_U_DQUOTE] = ACTIONS(2438), + [anon_sym_u8_DQUOTE] = ACTIONS(2438), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_nullptr] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATtry] = ACTIONS(2438), + [anon_sym___try] = ACTIONS(2436), + [anon_sym_ATthrow] = ACTIONS(2438), + [anon_sym_ATselector] = ACTIONS(2438), + [anon_sym_ATavailable] = ACTIONS(2438), + [anon_sym___builtin_available] = ACTIONS(2436), + [anon_sym_va_arg] = ACTIONS(2436), + [anon_sym_ATencode] = ACTIONS(2438), + [anon_sym_ATsynchronized] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [1104] = { + [sym_identifier] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_ATautoreleasepool] = ACTIONS(2438), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_goto] = ACTIONS(2436), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_sizeof] = ACTIONS(2436), + [anon_sym___alignof__] = ACTIONS(2436), + [anon_sym___alignof] = ACTIONS(2436), + [anon_sym__alignof] = ACTIONS(2436), + [anon_sym_alignof] = ACTIONS(2436), + [anon_sym__Alignof] = ACTIONS(2436), + [anon_sym_offsetof] = ACTIONS(2436), + [anon_sym__Generic] = ACTIONS(2436), + [anon_sym_asm] = ACTIONS(2436), + [anon_sym___asm__] = ACTIONS(2436), + [anon_sym___asm] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_L_SQUOTE] = ACTIONS(2438), + [anon_sym_u_SQUOTE] = ACTIONS(2438), + [anon_sym_U_SQUOTE] = ACTIONS(2438), + [anon_sym_u8_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_L_DQUOTE] = ACTIONS(2438), + [anon_sym_u_DQUOTE] = ACTIONS(2438), + [anon_sym_U_DQUOTE] = ACTIONS(2438), + [anon_sym_u8_DQUOTE] = ACTIONS(2438), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_nullptr] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATtry] = ACTIONS(2438), + [anon_sym___try] = ACTIONS(2436), + [anon_sym_ATthrow] = ACTIONS(2438), + [anon_sym_ATselector] = ACTIONS(2438), + [anon_sym_ATavailable] = ACTIONS(2438), + [anon_sym___builtin_available] = ACTIONS(2436), + [anon_sym_va_arg] = ACTIONS(2436), + [anon_sym_ATencode] = ACTIONS(2438), + [anon_sym_ATsynchronized] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [1105] = { + [sym_identifier] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [1106] = { + [sym_identifier] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [1107] = { + [sym_identifier] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [1108] = { + [sym_identifier] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2460), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2460), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_ATautoreleasepool] = ACTIONS(2460), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_goto] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2460), + [anon_sym_sizeof] = ACTIONS(2458), + [anon_sym___alignof__] = ACTIONS(2458), + [anon_sym___alignof] = ACTIONS(2458), + [anon_sym__alignof] = ACTIONS(2458), + [anon_sym_alignof] = ACTIONS(2458), + [anon_sym__Alignof] = ACTIONS(2458), + [anon_sym_offsetof] = ACTIONS(2458), + [anon_sym__Generic] = ACTIONS(2458), + [anon_sym_asm] = ACTIONS(2458), + [anon_sym___asm__] = ACTIONS(2458), + [anon_sym___asm] = ACTIONS(2458), + [sym_number_literal] = ACTIONS(2460), + [anon_sym_L_SQUOTE] = ACTIONS(2460), + [anon_sym_u_SQUOTE] = ACTIONS(2460), + [anon_sym_U_SQUOTE] = ACTIONS(2460), + [anon_sym_u8_SQUOTE] = ACTIONS(2460), + [anon_sym_SQUOTE] = ACTIONS(2460), + [anon_sym_AT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_L_DQUOTE] = ACTIONS(2460), + [anon_sym_u_DQUOTE] = ACTIONS(2460), + [anon_sym_U_DQUOTE] = ACTIONS(2460), + [anon_sym_u8_DQUOTE] = ACTIONS(2460), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [anon_sym_NULL] = ACTIONS(2458), + [anon_sym_nullptr] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATtry] = ACTIONS(2460), + [anon_sym___try] = ACTIONS(2458), + [anon_sym_ATthrow] = ACTIONS(2460), + [anon_sym_ATselector] = ACTIONS(2460), + [anon_sym_ATavailable] = ACTIONS(2460), + [anon_sym___builtin_available] = ACTIONS(2458), + [anon_sym_va_arg] = ACTIONS(2458), + [anon_sym_ATencode] = ACTIONS(2460), + [anon_sym_ATsynchronized] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [1109] = { + [sym_identifier] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2460), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2460), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_ATautoreleasepool] = ACTIONS(2460), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_goto] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2460), + [anon_sym_sizeof] = ACTIONS(2458), + [anon_sym___alignof__] = ACTIONS(2458), + [anon_sym___alignof] = ACTIONS(2458), + [anon_sym__alignof] = ACTIONS(2458), + [anon_sym_alignof] = ACTIONS(2458), + [anon_sym__Alignof] = ACTIONS(2458), + [anon_sym_offsetof] = ACTIONS(2458), + [anon_sym__Generic] = ACTIONS(2458), + [anon_sym_asm] = ACTIONS(2458), + [anon_sym___asm__] = ACTIONS(2458), + [anon_sym___asm] = ACTIONS(2458), + [sym_number_literal] = ACTIONS(2460), + [anon_sym_L_SQUOTE] = ACTIONS(2460), + [anon_sym_u_SQUOTE] = ACTIONS(2460), + [anon_sym_U_SQUOTE] = ACTIONS(2460), + [anon_sym_u8_SQUOTE] = ACTIONS(2460), + [anon_sym_SQUOTE] = ACTIONS(2460), + [anon_sym_AT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_L_DQUOTE] = ACTIONS(2460), + [anon_sym_u_DQUOTE] = ACTIONS(2460), + [anon_sym_U_DQUOTE] = ACTIONS(2460), + [anon_sym_u8_DQUOTE] = ACTIONS(2460), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [anon_sym_NULL] = ACTIONS(2458), + [anon_sym_nullptr] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATtry] = ACTIONS(2460), + [anon_sym___try] = ACTIONS(2458), + [anon_sym_ATthrow] = ACTIONS(2460), + [anon_sym_ATselector] = ACTIONS(2460), + [anon_sym_ATavailable] = ACTIONS(2460), + [anon_sym___builtin_available] = ACTIONS(2458), + [anon_sym_va_arg] = ACTIONS(2458), + [anon_sym_ATencode] = ACTIONS(2460), + [anon_sym_ATsynchronized] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [1110] = { + [sym_identifier] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2460), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2460), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_ATautoreleasepool] = ACTIONS(2460), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_goto] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2460), + [anon_sym_sizeof] = ACTIONS(2458), + [anon_sym___alignof__] = ACTIONS(2458), + [anon_sym___alignof] = ACTIONS(2458), + [anon_sym__alignof] = ACTIONS(2458), + [anon_sym_alignof] = ACTIONS(2458), + [anon_sym__Alignof] = ACTIONS(2458), + [anon_sym_offsetof] = ACTIONS(2458), + [anon_sym__Generic] = ACTIONS(2458), + [anon_sym_asm] = ACTIONS(2458), + [anon_sym___asm__] = ACTIONS(2458), + [anon_sym___asm] = ACTIONS(2458), + [sym_number_literal] = ACTIONS(2460), + [anon_sym_L_SQUOTE] = ACTIONS(2460), + [anon_sym_u_SQUOTE] = ACTIONS(2460), + [anon_sym_U_SQUOTE] = ACTIONS(2460), + [anon_sym_u8_SQUOTE] = ACTIONS(2460), + [anon_sym_SQUOTE] = ACTIONS(2460), + [anon_sym_AT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_L_DQUOTE] = ACTIONS(2460), + [anon_sym_u_DQUOTE] = ACTIONS(2460), + [anon_sym_U_DQUOTE] = ACTIONS(2460), + [anon_sym_u8_DQUOTE] = ACTIONS(2460), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [anon_sym_NULL] = ACTIONS(2458), + [anon_sym_nullptr] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATtry] = ACTIONS(2460), + [anon_sym___try] = ACTIONS(2458), + [anon_sym_ATthrow] = ACTIONS(2460), + [anon_sym_ATselector] = ACTIONS(2460), + [anon_sym_ATavailable] = ACTIONS(2460), + [anon_sym___builtin_available] = ACTIONS(2458), + [anon_sym_va_arg] = ACTIONS(2458), + [anon_sym_ATencode] = ACTIONS(2460), + [anon_sym_ATsynchronized] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [1111] = { + [sym_identifier] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [1112] = { + [sym_identifier] = ACTIONS(2466), + [anon_sym_LPAREN2] = ACTIONS(2468), + [anon_sym_BANG] = ACTIONS(2468), + [anon_sym_TILDE] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_PLUS] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2468), + [anon_sym_CARET] = ACTIONS(2468), + [anon_sym_AMP] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym___extension__] = ACTIONS(2466), + [anon_sym_typedef] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym___attribute__] = ACTIONS(2466), + [anon_sym___attribute] = ACTIONS(2466), + [anon_sym_noreturn] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2468), + [anon_sym___declspec] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_signed] = ACTIONS(2466), + [anon_sym_unsigned] = ACTIONS(2466), + [anon_sym_long] = ACTIONS(2466), + [anon_sym_short] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_ATautoreleasepool] = ACTIONS(2468), + [anon_sym_auto] = ACTIONS(2466), + [anon_sym_register] = ACTIONS(2466), + [anon_sym_inline] = ACTIONS(2466), + [anon_sym___inline] = ACTIONS(2466), + [anon_sym___inline__] = ACTIONS(2466), + [anon_sym___forceinline] = ACTIONS(2466), + [anon_sym_thread_local] = ACTIONS(2466), + [anon_sym___thread] = ACTIONS(2466), + [anon_sym_CG_EXTERN] = ACTIONS(2466), + [anon_sym_CG_INLINE] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2466), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2466), + [anon_sym_IBOutlet] = ACTIONS(2466), + [anon_sym_IBInspectable] = ACTIONS(2466), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2466), + [anon_sym_NS_INLINE] = ACTIONS(2466), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2466), + [anon_sym_OBJC_EXPORT] = ACTIONS(2466), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_constexpr] = ACTIONS(2466), + [anon_sym_volatile] = ACTIONS(2466), + [anon_sym_restrict] = ACTIONS(2466), + [anon_sym___restrict__] = ACTIONS(2466), + [anon_sym__Atomic] = ACTIONS(2466), + [anon_sym__Noreturn] = ACTIONS(2466), + [anon_sym__Nonnull] = ACTIONS(2466), + [anon_sym_nullable] = ACTIONS(2466), + [anon_sym__Complex] = ACTIONS(2466), + [anon_sym__Nullable] = ACTIONS(2466), + [anon_sym__Nullable_result] = ACTIONS(2466), + [anon_sym__Null_unspecified] = ACTIONS(2466), + [anon_sym___autoreleasing] = ACTIONS(2466), + [anon_sym___block] = ACTIONS(2466), + [anon_sym___bridge] = ACTIONS(2466), + [anon_sym___bridge_retained] = ACTIONS(2466), + [anon_sym___bridge_transfer] = ACTIONS(2466), + [anon_sym___complex] = ACTIONS(2466), + [anon_sym___const] = ACTIONS(2466), + [anon_sym___imag] = ACTIONS(2466), + [anon_sym___kindof] = ACTIONS(2466), + [anon_sym___nonnull] = ACTIONS(2466), + [anon_sym___nullable] = ACTIONS(2466), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2466), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2466), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2466), + [anon_sym___real] = ACTIONS(2466), + [anon_sym___strong] = ACTIONS(2466), + [anon_sym___unsafe_unretained] = ACTIONS(2466), + [anon_sym___unused] = ACTIONS(2466), + [anon_sym___weak] = ACTIONS(2466), + [anon_sym_alignas] = ACTIONS(2466), + [anon_sym__Alignas] = ACTIONS(2466), + [sym_primitive_type] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), + [anon_sym_struct] = ACTIONS(2466), + [anon_sym_union] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_else] = ACTIONS(2466), + [anon_sym_switch] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_do] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_in] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_goto] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2468), + [anon_sym_PLUS_PLUS] = ACTIONS(2468), + [anon_sym_sizeof] = ACTIONS(2466), + [anon_sym___alignof__] = ACTIONS(2466), + [anon_sym___alignof] = ACTIONS(2466), + [anon_sym__alignof] = ACTIONS(2466), + [anon_sym_alignof] = ACTIONS(2466), + [anon_sym__Alignof] = ACTIONS(2466), + [anon_sym_offsetof] = ACTIONS(2466), + [anon_sym__Generic] = ACTIONS(2466), + [anon_sym_asm] = ACTIONS(2466), + [anon_sym___asm__] = ACTIONS(2466), + [anon_sym___asm] = ACTIONS(2466), + [sym_number_literal] = ACTIONS(2468), + [anon_sym_L_SQUOTE] = ACTIONS(2468), + [anon_sym_u_SQUOTE] = ACTIONS(2468), + [anon_sym_U_SQUOTE] = ACTIONS(2468), + [anon_sym_u8_SQUOTE] = ACTIONS(2468), + [anon_sym_SQUOTE] = ACTIONS(2468), + [anon_sym_AT] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2468), + [anon_sym_L_DQUOTE] = ACTIONS(2468), + [anon_sym_u_DQUOTE] = ACTIONS(2468), + [anon_sym_U_DQUOTE] = ACTIONS(2468), + [anon_sym_u8_DQUOTE] = ACTIONS(2468), + [sym_true] = ACTIONS(2466), + [sym_false] = ACTIONS(2466), + [anon_sym_NULL] = ACTIONS(2466), + [anon_sym_nullptr] = ACTIONS(2466), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2466), + [anon_sym___typeof] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2466), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2466), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2466), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2466), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2466), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE] = ACTIONS(2466), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_API_AVAILABLE] = ACTIONS(2466), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_API_DEPRECATED] = ACTIONS(2466), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2466), + [anon_sym___deprecated_msg] = ACTIONS(2466), + [anon_sym___deprecated_enum_msg] = ACTIONS(2466), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2466), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2466), + [anon_sym_ATtry] = ACTIONS(2468), + [anon_sym___try] = ACTIONS(2466), + [anon_sym_ATthrow] = ACTIONS(2468), + [anon_sym_ATselector] = ACTIONS(2468), + [anon_sym_ATavailable] = ACTIONS(2468), + [anon_sym___builtin_available] = ACTIONS(2466), + [anon_sym_va_arg] = ACTIONS(2466), + [anon_sym_ATencode] = ACTIONS(2468), + [anon_sym_ATsynchronized] = ACTIONS(2468), + [anon_sym_BOOL] = ACTIONS(2466), + [anon_sym_IMP] = ACTIONS(2466), + [anon_sym_SEL] = ACTIONS(2466), + [anon_sym_Class] = ACTIONS(2466), + [anon_sym_id] = ACTIONS(2466), + }, + [1113] = { + [sym_identifier] = ACTIONS(2568), + [anon_sym_LPAREN2] = ACTIONS(2570), + [anon_sym_BANG] = ACTIONS(2570), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_CARET] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym___extension__] = ACTIONS(2568), + [anon_sym_typedef] = ACTIONS(2568), + [anon_sym_extern] = ACTIONS(2568), + [anon_sym___attribute__] = ACTIONS(2568), + [anon_sym___attribute] = ACTIONS(2568), + [anon_sym_noreturn] = ACTIONS(2568), + [anon_sym_LBRACK] = ACTIONS(2570), + [anon_sym___declspec] = ACTIONS(2568), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_signed] = ACTIONS(2568), + [anon_sym_unsigned] = ACTIONS(2568), + [anon_sym_long] = ACTIONS(2568), + [anon_sym_short] = ACTIONS(2568), + [anon_sym_static] = ACTIONS(2568), + [anon_sym_ATautoreleasepool] = ACTIONS(2570), + [anon_sym_auto] = ACTIONS(2568), + [anon_sym_register] = ACTIONS(2568), + [anon_sym_inline] = ACTIONS(2568), + [anon_sym___inline] = ACTIONS(2568), + [anon_sym___inline__] = ACTIONS(2568), + [anon_sym___forceinline] = ACTIONS(2568), + [anon_sym_thread_local] = ACTIONS(2568), + [anon_sym___thread] = ACTIONS(2568), + [anon_sym_CG_EXTERN] = ACTIONS(2568), + [anon_sym_CG_INLINE] = ACTIONS(2568), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2568), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2568), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2568), + [anon_sym_IBOutlet] = ACTIONS(2568), + [anon_sym_IBInspectable] = ACTIONS(2568), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2568), + [anon_sym_NS_INLINE] = ACTIONS(2568), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2568), + [anon_sym_OBJC_EXPORT] = ACTIONS(2568), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2568), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2568), + [anon_sym_const] = ACTIONS(2568), + [anon_sym_constexpr] = ACTIONS(2568), + [anon_sym_volatile] = ACTIONS(2568), + [anon_sym_restrict] = ACTIONS(2568), + [anon_sym___restrict__] = ACTIONS(2568), + [anon_sym__Atomic] = ACTIONS(2568), + [anon_sym__Noreturn] = ACTIONS(2568), + [anon_sym__Nonnull] = ACTIONS(2568), + [anon_sym_nullable] = ACTIONS(2568), + [anon_sym__Complex] = ACTIONS(2568), + [anon_sym__Nullable] = ACTIONS(2568), + [anon_sym__Nullable_result] = ACTIONS(2568), + [anon_sym__Null_unspecified] = ACTIONS(2568), + [anon_sym___autoreleasing] = ACTIONS(2568), + [anon_sym___block] = ACTIONS(2568), + [anon_sym___bridge] = ACTIONS(2568), + [anon_sym___bridge_retained] = ACTIONS(2568), + [anon_sym___bridge_transfer] = ACTIONS(2568), + [anon_sym___complex] = ACTIONS(2568), + [anon_sym___const] = ACTIONS(2568), + [anon_sym___imag] = ACTIONS(2568), + [anon_sym___kindof] = ACTIONS(2568), + [anon_sym___nonnull] = ACTIONS(2568), + [anon_sym___nullable] = ACTIONS(2568), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2568), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2568), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2568), + [anon_sym___real] = ACTIONS(2568), + [anon_sym___strong] = ACTIONS(2568), + [anon_sym___unsafe_unretained] = ACTIONS(2568), + [anon_sym___unused] = ACTIONS(2568), + [anon_sym___weak] = ACTIONS(2568), + [anon_sym_alignas] = ACTIONS(2568), + [anon_sym__Alignas] = ACTIONS(2568), + [sym_primitive_type] = ACTIONS(2568), + [anon_sym_enum] = ACTIONS(2568), + [anon_sym_struct] = ACTIONS(2568), + [anon_sym_union] = ACTIONS(2568), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_else] = ACTIONS(2568), + [anon_sym_switch] = ACTIONS(2568), + [anon_sym_while] = ACTIONS(2568), + [anon_sym_do] = ACTIONS(2568), + [anon_sym_for] = ACTIONS(2568), + [anon_sym_in] = ACTIONS(2568), + [anon_sym_return] = ACTIONS(2568), + [anon_sym_break] = ACTIONS(2568), + [anon_sym_continue] = ACTIONS(2568), + [anon_sym_goto] = ACTIONS(2568), + [anon_sym_DASH_DASH] = ACTIONS(2570), + [anon_sym_PLUS_PLUS] = ACTIONS(2570), + [anon_sym_sizeof] = ACTIONS(2568), + [anon_sym___alignof__] = ACTIONS(2568), + [anon_sym___alignof] = ACTIONS(2568), + [anon_sym__alignof] = ACTIONS(2568), + [anon_sym_alignof] = ACTIONS(2568), + [anon_sym__Alignof] = ACTIONS(2568), + [anon_sym_offsetof] = ACTIONS(2568), + [anon_sym__Generic] = ACTIONS(2568), + [anon_sym_asm] = ACTIONS(2568), + [anon_sym___asm__] = ACTIONS(2568), + [anon_sym___asm] = ACTIONS(2568), + [sym_number_literal] = ACTIONS(2570), + [anon_sym_L_SQUOTE] = ACTIONS(2570), + [anon_sym_u_SQUOTE] = ACTIONS(2570), + [anon_sym_U_SQUOTE] = ACTIONS(2570), + [anon_sym_u8_SQUOTE] = ACTIONS(2570), + [anon_sym_SQUOTE] = ACTIONS(2570), + [anon_sym_AT] = ACTIONS(2568), + [anon_sym_DQUOTE] = ACTIONS(2570), + [anon_sym_L_DQUOTE] = ACTIONS(2570), + [anon_sym_u_DQUOTE] = ACTIONS(2570), + [anon_sym_U_DQUOTE] = ACTIONS(2570), + [anon_sym_u8_DQUOTE] = ACTIONS(2570), + [sym_true] = ACTIONS(2568), + [sym_false] = ACTIONS(2568), + [anon_sym_NULL] = ACTIONS(2568), + [anon_sym_nullptr] = ACTIONS(2568), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2568), + [anon_sym___typeof] = ACTIONS(2568), + [anon_sym_typeof] = ACTIONS(2568), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2568), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2568), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2568), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2568), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2568), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2568), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2568), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2568), + [anon_sym_NS_AVAILABLE] = ACTIONS(2568), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2568), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_API_AVAILABLE] = ACTIONS(2568), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_API_DEPRECATED] = ACTIONS(2568), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2568), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2568), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2568), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2568), + [anon_sym___deprecated_msg] = ACTIONS(2568), + [anon_sym___deprecated_enum_msg] = ACTIONS(2568), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2568), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2568), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2568), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2568), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2568), + [anon_sym_ATtry] = ACTIONS(2570), + [anon_sym___try] = ACTIONS(2568), + [anon_sym_ATthrow] = ACTIONS(2570), + [anon_sym_ATselector] = ACTIONS(2570), + [anon_sym_ATavailable] = ACTIONS(2570), + [anon_sym___builtin_available] = ACTIONS(2568), + [anon_sym_va_arg] = ACTIONS(2568), + [anon_sym_ATencode] = ACTIONS(2570), + [anon_sym_ATsynchronized] = ACTIONS(2570), + [anon_sym_BOOL] = ACTIONS(2568), + [anon_sym_IMP] = ACTIONS(2568), + [anon_sym_SEL] = ACTIONS(2568), + [anon_sym_Class] = ACTIONS(2568), + [anon_sym_id] = ACTIONS(2568), + }, + [1114] = { + [sym_identifier] = ACTIONS(2466), + [anon_sym_LPAREN2] = ACTIONS(2468), + [anon_sym_BANG] = ACTIONS(2468), + [anon_sym_TILDE] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_PLUS] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2468), + [anon_sym_CARET] = ACTIONS(2468), + [anon_sym_AMP] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym___extension__] = ACTIONS(2466), + [anon_sym_typedef] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym___attribute__] = ACTIONS(2466), + [anon_sym___attribute] = ACTIONS(2466), + [anon_sym_noreturn] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2468), + [anon_sym___declspec] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_signed] = ACTIONS(2466), + [anon_sym_unsigned] = ACTIONS(2466), + [anon_sym_long] = ACTIONS(2466), + [anon_sym_short] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_ATautoreleasepool] = ACTIONS(2468), + [anon_sym_auto] = ACTIONS(2466), + [anon_sym_register] = ACTIONS(2466), + [anon_sym_inline] = ACTIONS(2466), + [anon_sym___inline] = ACTIONS(2466), + [anon_sym___inline__] = ACTIONS(2466), + [anon_sym___forceinline] = ACTIONS(2466), + [anon_sym_thread_local] = ACTIONS(2466), + [anon_sym___thread] = ACTIONS(2466), + [anon_sym_CG_EXTERN] = ACTIONS(2466), + [anon_sym_CG_INLINE] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2466), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2466), + [anon_sym_IBOutlet] = ACTIONS(2466), + [anon_sym_IBInspectable] = ACTIONS(2466), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2466), + [anon_sym_NS_INLINE] = ACTIONS(2466), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2466), + [anon_sym_OBJC_EXPORT] = ACTIONS(2466), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_constexpr] = ACTIONS(2466), + [anon_sym_volatile] = ACTIONS(2466), + [anon_sym_restrict] = ACTIONS(2466), + [anon_sym___restrict__] = ACTIONS(2466), + [anon_sym__Atomic] = ACTIONS(2466), + [anon_sym__Noreturn] = ACTIONS(2466), + [anon_sym__Nonnull] = ACTIONS(2466), + [anon_sym_nullable] = ACTIONS(2466), + [anon_sym__Complex] = ACTIONS(2466), + [anon_sym__Nullable] = ACTIONS(2466), + [anon_sym__Nullable_result] = ACTIONS(2466), + [anon_sym__Null_unspecified] = ACTIONS(2466), + [anon_sym___autoreleasing] = ACTIONS(2466), + [anon_sym___block] = ACTIONS(2466), + [anon_sym___bridge] = ACTIONS(2466), + [anon_sym___bridge_retained] = ACTIONS(2466), + [anon_sym___bridge_transfer] = ACTIONS(2466), + [anon_sym___complex] = ACTIONS(2466), + [anon_sym___const] = ACTIONS(2466), + [anon_sym___imag] = ACTIONS(2466), + [anon_sym___kindof] = ACTIONS(2466), + [anon_sym___nonnull] = ACTIONS(2466), + [anon_sym___nullable] = ACTIONS(2466), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2466), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2466), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2466), + [anon_sym___real] = ACTIONS(2466), + [anon_sym___strong] = ACTIONS(2466), + [anon_sym___unsafe_unretained] = ACTIONS(2466), + [anon_sym___unused] = ACTIONS(2466), + [anon_sym___weak] = ACTIONS(2466), + [anon_sym_alignas] = ACTIONS(2466), + [anon_sym__Alignas] = ACTIONS(2466), + [sym_primitive_type] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), + [anon_sym_struct] = ACTIONS(2466), + [anon_sym_union] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_else] = ACTIONS(2466), + [anon_sym_switch] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_do] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_in] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_goto] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2468), + [anon_sym_PLUS_PLUS] = ACTIONS(2468), + [anon_sym_sizeof] = ACTIONS(2466), + [anon_sym___alignof__] = ACTIONS(2466), + [anon_sym___alignof] = ACTIONS(2466), + [anon_sym__alignof] = ACTIONS(2466), + [anon_sym_alignof] = ACTIONS(2466), + [anon_sym__Alignof] = ACTIONS(2466), + [anon_sym_offsetof] = ACTIONS(2466), + [anon_sym__Generic] = ACTIONS(2466), + [anon_sym_asm] = ACTIONS(2466), + [anon_sym___asm__] = ACTIONS(2466), + [anon_sym___asm] = ACTIONS(2466), + [sym_number_literal] = ACTIONS(2468), + [anon_sym_L_SQUOTE] = ACTIONS(2468), + [anon_sym_u_SQUOTE] = ACTIONS(2468), + [anon_sym_U_SQUOTE] = ACTIONS(2468), + [anon_sym_u8_SQUOTE] = ACTIONS(2468), + [anon_sym_SQUOTE] = ACTIONS(2468), + [anon_sym_AT] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2468), + [anon_sym_L_DQUOTE] = ACTIONS(2468), + [anon_sym_u_DQUOTE] = ACTIONS(2468), + [anon_sym_U_DQUOTE] = ACTIONS(2468), + [anon_sym_u8_DQUOTE] = ACTIONS(2468), + [sym_true] = ACTIONS(2466), + [sym_false] = ACTIONS(2466), + [anon_sym_NULL] = ACTIONS(2466), + [anon_sym_nullptr] = ACTIONS(2466), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2466), + [anon_sym___typeof] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2466), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2466), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2466), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2466), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2466), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE] = ACTIONS(2466), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_API_AVAILABLE] = ACTIONS(2466), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_API_DEPRECATED] = ACTIONS(2466), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2466), + [anon_sym___deprecated_msg] = ACTIONS(2466), + [anon_sym___deprecated_enum_msg] = ACTIONS(2466), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2466), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2466), + [anon_sym_ATtry] = ACTIONS(2468), + [anon_sym___try] = ACTIONS(2466), + [anon_sym_ATthrow] = ACTIONS(2468), + [anon_sym_ATselector] = ACTIONS(2468), + [anon_sym_ATavailable] = ACTIONS(2468), + [anon_sym___builtin_available] = ACTIONS(2466), + [anon_sym_va_arg] = ACTIONS(2466), + [anon_sym_ATencode] = ACTIONS(2468), + [anon_sym_ATsynchronized] = ACTIONS(2468), + [anon_sym_BOOL] = ACTIONS(2466), + [anon_sym_IMP] = ACTIONS(2466), + [anon_sym_SEL] = ACTIONS(2466), + [anon_sym_Class] = ACTIONS(2466), + [anon_sym_id] = ACTIONS(2466), + }, + [1115] = { + [sym_identifier] = ACTIONS(2416), + [anon_sym_LPAREN2] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym___extension__] = ACTIONS(2416), + [anon_sym_typedef] = ACTIONS(2416), + [anon_sym_extern] = ACTIONS(2416), + [anon_sym___attribute__] = ACTIONS(2416), + [anon_sym___attribute] = ACTIONS(2416), + [anon_sym_noreturn] = ACTIONS(2416), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym___declspec] = ACTIONS(2416), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_signed] = ACTIONS(2416), + [anon_sym_unsigned] = ACTIONS(2416), + [anon_sym_long] = ACTIONS(2416), + [anon_sym_short] = ACTIONS(2416), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_ATautoreleasepool] = ACTIONS(2418), + [anon_sym_auto] = ACTIONS(2416), + [anon_sym_register] = ACTIONS(2416), + [anon_sym_inline] = ACTIONS(2416), + [anon_sym___inline] = ACTIONS(2416), + [anon_sym___inline__] = ACTIONS(2416), + [anon_sym___forceinline] = ACTIONS(2416), + [anon_sym_thread_local] = ACTIONS(2416), + [anon_sym___thread] = ACTIONS(2416), + [anon_sym_CG_EXTERN] = ACTIONS(2416), + [anon_sym_CG_INLINE] = ACTIONS(2416), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2416), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2416), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2416), + [anon_sym_IBOutlet] = ACTIONS(2416), + [anon_sym_IBInspectable] = ACTIONS(2416), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2416), + [anon_sym_NS_INLINE] = ACTIONS(2416), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2416), + [anon_sym_OBJC_EXPORT] = ACTIONS(2416), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2416), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2416), + [anon_sym_const] = ACTIONS(2416), + [anon_sym_constexpr] = ACTIONS(2416), + [anon_sym_volatile] = ACTIONS(2416), + [anon_sym_restrict] = ACTIONS(2416), + [anon_sym___restrict__] = ACTIONS(2416), + [anon_sym__Atomic] = ACTIONS(2416), + [anon_sym__Noreturn] = ACTIONS(2416), + [anon_sym__Nonnull] = ACTIONS(2416), + [anon_sym_nullable] = ACTIONS(2416), + [anon_sym__Complex] = ACTIONS(2416), + [anon_sym__Nullable] = ACTIONS(2416), + [anon_sym__Nullable_result] = ACTIONS(2416), + [anon_sym__Null_unspecified] = ACTIONS(2416), + [anon_sym___autoreleasing] = ACTIONS(2416), + [anon_sym___block] = ACTIONS(2416), + [anon_sym___bridge] = ACTIONS(2416), + [anon_sym___bridge_retained] = ACTIONS(2416), + [anon_sym___bridge_transfer] = ACTIONS(2416), + [anon_sym___complex] = ACTIONS(2416), + [anon_sym___const] = ACTIONS(2416), + [anon_sym___imag] = ACTIONS(2416), + [anon_sym___kindof] = ACTIONS(2416), + [anon_sym___nonnull] = ACTIONS(2416), + [anon_sym___nullable] = ACTIONS(2416), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2416), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2416), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2416), + [anon_sym___real] = ACTIONS(2416), + [anon_sym___strong] = ACTIONS(2416), + [anon_sym___unsafe_unretained] = ACTIONS(2416), + [anon_sym___unused] = ACTIONS(2416), + [anon_sym___weak] = ACTIONS(2416), + [anon_sym_alignas] = ACTIONS(2416), + [anon_sym__Alignas] = ACTIONS(2416), + [sym_primitive_type] = ACTIONS(2416), + [anon_sym_enum] = ACTIONS(2416), + [anon_sym_struct] = ACTIONS(2416), + [anon_sym_union] = ACTIONS(2416), + [anon_sym_if] = ACTIONS(2416), + [anon_sym_else] = ACTIONS(2416), + [anon_sym_switch] = ACTIONS(2416), + [anon_sym_while] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2416), + [anon_sym_for] = ACTIONS(2416), + [anon_sym_in] = ACTIONS(2416), + [anon_sym_return] = ACTIONS(2416), + [anon_sym_break] = ACTIONS(2416), + [anon_sym_continue] = ACTIONS(2416), + [anon_sym_goto] = ACTIONS(2416), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_sizeof] = ACTIONS(2416), + [anon_sym___alignof__] = ACTIONS(2416), + [anon_sym___alignof] = ACTIONS(2416), + [anon_sym__alignof] = ACTIONS(2416), + [anon_sym_alignof] = ACTIONS(2416), + [anon_sym__Alignof] = ACTIONS(2416), + [anon_sym_offsetof] = ACTIONS(2416), + [anon_sym__Generic] = ACTIONS(2416), + [anon_sym_asm] = ACTIONS(2416), + [anon_sym___asm__] = ACTIONS(2416), + [anon_sym___asm] = ACTIONS(2416), + [sym_number_literal] = ACTIONS(2418), + [anon_sym_L_SQUOTE] = ACTIONS(2418), + [anon_sym_u_SQUOTE] = ACTIONS(2418), + [anon_sym_U_SQUOTE] = ACTIONS(2418), + [anon_sym_u8_SQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_L_DQUOTE] = ACTIONS(2418), + [anon_sym_u_DQUOTE] = ACTIONS(2418), + [anon_sym_U_DQUOTE] = ACTIONS(2418), + [anon_sym_u8_DQUOTE] = ACTIONS(2418), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2416), + [anon_sym_nullptr] = ACTIONS(2416), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2416), + [anon_sym___typeof] = ACTIONS(2416), + [anon_sym_typeof] = ACTIONS(2416), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2416), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2416), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2416), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2416), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2416), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2416), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2416), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2416), + [anon_sym_NS_AVAILABLE] = ACTIONS(2416), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2416), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_API_AVAILABLE] = ACTIONS(2416), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_API_DEPRECATED] = ACTIONS(2416), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2416), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2416), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2416), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2416), + [anon_sym___deprecated_msg] = ACTIONS(2416), + [anon_sym___deprecated_enum_msg] = ACTIONS(2416), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2416), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2416), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2416), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2416), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2416), + [anon_sym_ATtry] = ACTIONS(2418), + [anon_sym___try] = ACTIONS(2416), + [anon_sym_ATthrow] = ACTIONS(2418), + [anon_sym_ATselector] = ACTIONS(2418), + [anon_sym_ATavailable] = ACTIONS(2418), + [anon_sym___builtin_available] = ACTIONS(2416), + [anon_sym_va_arg] = ACTIONS(2416), + [anon_sym_ATencode] = ACTIONS(2418), + [anon_sym_ATsynchronized] = ACTIONS(2418), + [anon_sym_BOOL] = ACTIONS(2416), + [anon_sym_IMP] = ACTIONS(2416), + [anon_sym_SEL] = ACTIONS(2416), + [anon_sym_Class] = ACTIONS(2416), + [anon_sym_id] = ACTIONS(2416), + }, + [1116] = { + [sym_identifier] = ACTIONS(2420), + [anon_sym_LPAREN2] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(2422), + [anon_sym_CARET] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym___extension__] = ACTIONS(2420), + [anon_sym_typedef] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym___attribute__] = ACTIONS(2420), + [anon_sym___attribute] = ACTIONS(2420), + [anon_sym_noreturn] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2422), + [anon_sym___declspec] = ACTIONS(2420), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_signed] = ACTIONS(2420), + [anon_sym_unsigned] = ACTIONS(2420), + [anon_sym_long] = ACTIONS(2420), + [anon_sym_short] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_ATautoreleasepool] = ACTIONS(2422), + [anon_sym_auto] = ACTIONS(2420), + [anon_sym_register] = ACTIONS(2420), + [anon_sym_inline] = ACTIONS(2420), + [anon_sym___inline] = ACTIONS(2420), + [anon_sym___inline__] = ACTIONS(2420), + [anon_sym___forceinline] = ACTIONS(2420), + [anon_sym_thread_local] = ACTIONS(2420), + [anon_sym___thread] = ACTIONS(2420), + [anon_sym_CG_EXTERN] = ACTIONS(2420), + [anon_sym_CG_INLINE] = ACTIONS(2420), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2420), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2420), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2420), + [anon_sym_IBOutlet] = ACTIONS(2420), + [anon_sym_IBInspectable] = ACTIONS(2420), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2420), + [anon_sym_NS_INLINE] = ACTIONS(2420), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2420), + [anon_sym_OBJC_EXPORT] = ACTIONS(2420), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2420), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [anon_sym_constexpr] = ACTIONS(2420), + [anon_sym_volatile] = ACTIONS(2420), + [anon_sym_restrict] = ACTIONS(2420), + [anon_sym___restrict__] = ACTIONS(2420), + [anon_sym__Atomic] = ACTIONS(2420), + [anon_sym__Noreturn] = ACTIONS(2420), + [anon_sym__Nonnull] = ACTIONS(2420), + [anon_sym_nullable] = ACTIONS(2420), + [anon_sym__Complex] = ACTIONS(2420), + [anon_sym__Nullable] = ACTIONS(2420), + [anon_sym__Nullable_result] = ACTIONS(2420), + [anon_sym__Null_unspecified] = ACTIONS(2420), + [anon_sym___autoreleasing] = ACTIONS(2420), + [anon_sym___block] = ACTIONS(2420), + [anon_sym___bridge] = ACTIONS(2420), + [anon_sym___bridge_retained] = ACTIONS(2420), + [anon_sym___bridge_transfer] = ACTIONS(2420), + [anon_sym___complex] = ACTIONS(2420), + [anon_sym___const] = ACTIONS(2420), + [anon_sym___imag] = ACTIONS(2420), + [anon_sym___kindof] = ACTIONS(2420), + [anon_sym___nonnull] = ACTIONS(2420), + [anon_sym___nullable] = ACTIONS(2420), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2420), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2420), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2420), + [anon_sym___real] = ACTIONS(2420), + [anon_sym___strong] = ACTIONS(2420), + [anon_sym___unsafe_unretained] = ACTIONS(2420), + [anon_sym___unused] = ACTIONS(2420), + [anon_sym___weak] = ACTIONS(2420), + [anon_sym_alignas] = ACTIONS(2420), + [anon_sym__Alignas] = ACTIONS(2420), + [sym_primitive_type] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), + [anon_sym_struct] = ACTIONS(2420), + [anon_sym_union] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_else] = ACTIONS(2420), + [anon_sym_switch] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_do] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_in] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_goto] = ACTIONS(2420), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_sizeof] = ACTIONS(2420), + [anon_sym___alignof__] = ACTIONS(2420), + [anon_sym___alignof] = ACTIONS(2420), + [anon_sym__alignof] = ACTIONS(2420), + [anon_sym_alignof] = ACTIONS(2420), + [anon_sym__Alignof] = ACTIONS(2420), + [anon_sym_offsetof] = ACTIONS(2420), + [anon_sym__Generic] = ACTIONS(2420), + [anon_sym_asm] = ACTIONS(2420), + [anon_sym___asm__] = ACTIONS(2420), + [anon_sym___asm] = ACTIONS(2420), + [sym_number_literal] = ACTIONS(2422), + [anon_sym_L_SQUOTE] = ACTIONS(2422), + [anon_sym_u_SQUOTE] = ACTIONS(2422), + [anon_sym_U_SQUOTE] = ACTIONS(2422), + [anon_sym_u8_SQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [anon_sym_AT] = ACTIONS(2420), + [anon_sym_DQUOTE] = ACTIONS(2422), + [anon_sym_L_DQUOTE] = ACTIONS(2422), + [anon_sym_u_DQUOTE] = ACTIONS(2422), + [anon_sym_U_DQUOTE] = ACTIONS(2422), + [anon_sym_u8_DQUOTE] = ACTIONS(2422), + [sym_true] = ACTIONS(2420), + [sym_false] = ACTIONS(2420), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2420), + [anon_sym___typeof] = ACTIONS(2420), + [anon_sym_typeof] = ACTIONS(2420), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2420), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2420), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2420), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2420), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2420), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2420), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2420), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2420), + [anon_sym_NS_AVAILABLE] = ACTIONS(2420), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2420), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_API_AVAILABLE] = ACTIONS(2420), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_API_DEPRECATED] = ACTIONS(2420), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2420), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2420), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2420), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2420), + [anon_sym___deprecated_msg] = ACTIONS(2420), + [anon_sym___deprecated_enum_msg] = ACTIONS(2420), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2420), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2420), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2420), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2420), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2420), + [anon_sym_ATtry] = ACTIONS(2422), + [anon_sym___try] = ACTIONS(2420), + [anon_sym_ATthrow] = ACTIONS(2422), + [anon_sym_ATselector] = ACTIONS(2422), + [anon_sym_ATavailable] = ACTIONS(2422), + [anon_sym___builtin_available] = ACTIONS(2420), + [anon_sym_va_arg] = ACTIONS(2420), + [anon_sym_ATencode] = ACTIONS(2422), + [anon_sym_ATsynchronized] = ACTIONS(2422), + [anon_sym_BOOL] = ACTIONS(2420), + [anon_sym_IMP] = ACTIONS(2420), + [anon_sym_SEL] = ACTIONS(2420), + [anon_sym_Class] = ACTIONS(2420), + [anon_sym_id] = ACTIONS(2420), + }, + [1117] = { + [sym_identifier] = ACTIONS(2474), + [anon_sym_LPAREN2] = ACTIONS(2476), + [anon_sym_BANG] = ACTIONS(2476), + [anon_sym_TILDE] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2474), + [anon_sym_PLUS] = ACTIONS(2474), + [anon_sym_STAR] = ACTIONS(2476), + [anon_sym_CARET] = ACTIONS(2476), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2476), + [anon_sym___extension__] = ACTIONS(2474), + [anon_sym_typedef] = ACTIONS(2474), + [anon_sym_extern] = ACTIONS(2474), + [anon_sym___attribute__] = ACTIONS(2474), + [anon_sym___attribute] = ACTIONS(2474), + [anon_sym_noreturn] = ACTIONS(2474), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym___declspec] = ACTIONS(2474), + [anon_sym_LBRACE] = ACTIONS(2476), + [anon_sym_signed] = ACTIONS(2474), + [anon_sym_unsigned] = ACTIONS(2474), + [anon_sym_long] = ACTIONS(2474), + [anon_sym_short] = ACTIONS(2474), + [anon_sym_static] = ACTIONS(2474), + [anon_sym_ATautoreleasepool] = ACTIONS(2476), + [anon_sym_auto] = ACTIONS(2474), + [anon_sym_register] = ACTIONS(2474), + [anon_sym_inline] = ACTIONS(2474), + [anon_sym___inline] = ACTIONS(2474), + [anon_sym___inline__] = ACTIONS(2474), + [anon_sym___forceinline] = ACTIONS(2474), + [anon_sym_thread_local] = ACTIONS(2474), + [anon_sym___thread] = ACTIONS(2474), + [anon_sym_CG_EXTERN] = ACTIONS(2474), + [anon_sym_CG_INLINE] = ACTIONS(2474), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2474), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2474), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2474), + [anon_sym_IBOutlet] = ACTIONS(2474), + [anon_sym_IBInspectable] = ACTIONS(2474), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2474), + [anon_sym_NS_INLINE] = ACTIONS(2474), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2474), + [anon_sym_OBJC_EXPORT] = ACTIONS(2474), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2474), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2474), + [anon_sym_const] = ACTIONS(2474), + [anon_sym_constexpr] = ACTIONS(2474), + [anon_sym_volatile] = ACTIONS(2474), + [anon_sym_restrict] = ACTIONS(2474), + [anon_sym___restrict__] = ACTIONS(2474), + [anon_sym__Atomic] = ACTIONS(2474), + [anon_sym__Noreturn] = ACTIONS(2474), + [anon_sym__Nonnull] = ACTIONS(2474), + [anon_sym_nullable] = ACTIONS(2474), + [anon_sym__Complex] = ACTIONS(2474), + [anon_sym__Nullable] = ACTIONS(2474), + [anon_sym__Nullable_result] = ACTIONS(2474), + [anon_sym__Null_unspecified] = ACTIONS(2474), + [anon_sym___autoreleasing] = ACTIONS(2474), + [anon_sym___block] = ACTIONS(2474), + [anon_sym___bridge] = ACTIONS(2474), + [anon_sym___bridge_retained] = ACTIONS(2474), + [anon_sym___bridge_transfer] = ACTIONS(2474), + [anon_sym___complex] = ACTIONS(2474), + [anon_sym___const] = ACTIONS(2474), + [anon_sym___imag] = ACTIONS(2474), + [anon_sym___kindof] = ACTIONS(2474), + [anon_sym___nonnull] = ACTIONS(2474), + [anon_sym___nullable] = ACTIONS(2474), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2474), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2474), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2474), + [anon_sym___real] = ACTIONS(2474), + [anon_sym___strong] = ACTIONS(2474), + [anon_sym___unsafe_unretained] = ACTIONS(2474), + [anon_sym___unused] = ACTIONS(2474), + [anon_sym___weak] = ACTIONS(2474), + [anon_sym_alignas] = ACTIONS(2474), + [anon_sym__Alignas] = ACTIONS(2474), + [sym_primitive_type] = ACTIONS(2474), + [anon_sym_enum] = ACTIONS(2474), + [anon_sym_struct] = ACTIONS(2474), + [anon_sym_union] = ACTIONS(2474), + [anon_sym_if] = ACTIONS(2474), + [anon_sym_else] = ACTIONS(2474), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_while] = ACTIONS(2474), + [anon_sym_do] = ACTIONS(2474), + [anon_sym_for] = ACTIONS(2474), + [anon_sym_in] = ACTIONS(2474), + [anon_sym_return] = ACTIONS(2474), + [anon_sym_break] = ACTIONS(2474), + [anon_sym_continue] = ACTIONS(2474), + [anon_sym_goto] = ACTIONS(2474), + [anon_sym_DASH_DASH] = ACTIONS(2476), + [anon_sym_PLUS_PLUS] = ACTIONS(2476), + [anon_sym_sizeof] = ACTIONS(2474), + [anon_sym___alignof__] = ACTIONS(2474), + [anon_sym___alignof] = ACTIONS(2474), + [anon_sym__alignof] = ACTIONS(2474), + [anon_sym_alignof] = ACTIONS(2474), + [anon_sym__Alignof] = ACTIONS(2474), + [anon_sym_offsetof] = ACTIONS(2474), + [anon_sym__Generic] = ACTIONS(2474), + [anon_sym_asm] = ACTIONS(2474), + [anon_sym___asm__] = ACTIONS(2474), + [anon_sym___asm] = ACTIONS(2474), + [sym_number_literal] = ACTIONS(2476), + [anon_sym_L_SQUOTE] = ACTIONS(2476), + [anon_sym_u_SQUOTE] = ACTIONS(2476), + [anon_sym_U_SQUOTE] = ACTIONS(2476), + [anon_sym_u8_SQUOTE] = ACTIONS(2476), + [anon_sym_SQUOTE] = ACTIONS(2476), + [anon_sym_AT] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_L_DQUOTE] = ACTIONS(2476), + [anon_sym_u_DQUOTE] = ACTIONS(2476), + [anon_sym_U_DQUOTE] = ACTIONS(2476), + [anon_sym_u8_DQUOTE] = ACTIONS(2476), + [sym_true] = ACTIONS(2474), + [sym_false] = ACTIONS(2474), + [anon_sym_NULL] = ACTIONS(2474), + [anon_sym_nullptr] = ACTIONS(2474), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2474), + [anon_sym___typeof] = ACTIONS(2474), + [anon_sym_typeof] = ACTIONS(2474), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2474), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2474), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2474), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2474), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2474), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2474), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2474), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2474), + [anon_sym_NS_AVAILABLE] = ACTIONS(2474), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2474), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_API_AVAILABLE] = ACTIONS(2474), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_API_DEPRECATED] = ACTIONS(2474), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2474), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2474), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2474), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2474), + [anon_sym___deprecated_msg] = ACTIONS(2474), + [anon_sym___deprecated_enum_msg] = ACTIONS(2474), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2474), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2474), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2474), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2474), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2474), + [anon_sym_ATtry] = ACTIONS(2476), + [anon_sym___try] = ACTIONS(2474), + [anon_sym_ATthrow] = ACTIONS(2476), + [anon_sym_ATselector] = ACTIONS(2476), + [anon_sym_ATavailable] = ACTIONS(2476), + [anon_sym___builtin_available] = ACTIONS(2474), + [anon_sym_va_arg] = ACTIONS(2474), + [anon_sym_ATencode] = ACTIONS(2476), + [anon_sym_ATsynchronized] = ACTIONS(2476), + [anon_sym_BOOL] = ACTIONS(2474), + [anon_sym_IMP] = ACTIONS(2474), + [anon_sym_SEL] = ACTIONS(2474), + [anon_sym_Class] = ACTIONS(2474), + [anon_sym_id] = ACTIONS(2474), + }, + [1118] = { + [sym_identifier] = ACTIONS(2478), + [anon_sym_LPAREN2] = ACTIONS(2480), + [anon_sym_BANG] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2478), + [anon_sym_PLUS] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2480), + [anon_sym_CARET] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2480), + [anon_sym_SEMI] = ACTIONS(2480), + [anon_sym___extension__] = ACTIONS(2478), + [anon_sym_typedef] = ACTIONS(2478), + [anon_sym_extern] = ACTIONS(2478), + [anon_sym___attribute__] = ACTIONS(2478), + [anon_sym___attribute] = ACTIONS(2478), + [anon_sym_noreturn] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2480), + [anon_sym___declspec] = ACTIONS(2478), + [anon_sym_LBRACE] = ACTIONS(2480), + [anon_sym_signed] = ACTIONS(2478), + [anon_sym_unsigned] = ACTIONS(2478), + [anon_sym_long] = ACTIONS(2478), + [anon_sym_short] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_ATautoreleasepool] = ACTIONS(2480), + [anon_sym_auto] = ACTIONS(2478), + [anon_sym_register] = ACTIONS(2478), + [anon_sym_inline] = ACTIONS(2478), + [anon_sym___inline] = ACTIONS(2478), + [anon_sym___inline__] = ACTIONS(2478), + [anon_sym___forceinline] = ACTIONS(2478), + [anon_sym_thread_local] = ACTIONS(2478), + [anon_sym___thread] = ACTIONS(2478), + [anon_sym_CG_EXTERN] = ACTIONS(2478), + [anon_sym_CG_INLINE] = ACTIONS(2478), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2478), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2478), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2478), + [anon_sym_IBOutlet] = ACTIONS(2478), + [anon_sym_IBInspectable] = ACTIONS(2478), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2478), + [anon_sym_NS_INLINE] = ACTIONS(2478), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2478), + [anon_sym_OBJC_EXPORT] = ACTIONS(2478), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2478), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [anon_sym_constexpr] = ACTIONS(2478), + [anon_sym_volatile] = ACTIONS(2478), + [anon_sym_restrict] = ACTIONS(2478), + [anon_sym___restrict__] = ACTIONS(2478), + [anon_sym__Atomic] = ACTIONS(2478), + [anon_sym__Noreturn] = ACTIONS(2478), + [anon_sym__Nonnull] = ACTIONS(2478), + [anon_sym_nullable] = ACTIONS(2478), + [anon_sym__Complex] = ACTIONS(2478), + [anon_sym__Nullable] = ACTIONS(2478), + [anon_sym__Nullable_result] = ACTIONS(2478), + [anon_sym__Null_unspecified] = ACTIONS(2478), + [anon_sym___autoreleasing] = ACTIONS(2478), + [anon_sym___block] = ACTIONS(2478), + [anon_sym___bridge] = ACTIONS(2478), + [anon_sym___bridge_retained] = ACTIONS(2478), + [anon_sym___bridge_transfer] = ACTIONS(2478), + [anon_sym___complex] = ACTIONS(2478), + [anon_sym___const] = ACTIONS(2478), + [anon_sym___imag] = ACTIONS(2478), + [anon_sym___kindof] = ACTIONS(2478), + [anon_sym___nonnull] = ACTIONS(2478), + [anon_sym___nullable] = ACTIONS(2478), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2478), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2478), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2478), + [anon_sym___real] = ACTIONS(2478), + [anon_sym___strong] = ACTIONS(2478), + [anon_sym___unsafe_unretained] = ACTIONS(2478), + [anon_sym___unused] = ACTIONS(2478), + [anon_sym___weak] = ACTIONS(2478), + [anon_sym_alignas] = ACTIONS(2478), + [anon_sym__Alignas] = ACTIONS(2478), + [sym_primitive_type] = ACTIONS(2478), + [anon_sym_enum] = ACTIONS(2478), + [anon_sym_struct] = ACTIONS(2478), + [anon_sym_union] = ACTIONS(2478), + [anon_sym_if] = ACTIONS(2478), + [anon_sym_else] = ACTIONS(2478), + [anon_sym_switch] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2478), + [anon_sym_do] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_in] = ACTIONS(2478), + [anon_sym_return] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_goto] = ACTIONS(2478), + [anon_sym_DASH_DASH] = ACTIONS(2480), + [anon_sym_PLUS_PLUS] = ACTIONS(2480), + [anon_sym_sizeof] = ACTIONS(2478), + [anon_sym___alignof__] = ACTIONS(2478), + [anon_sym___alignof] = ACTIONS(2478), + [anon_sym__alignof] = ACTIONS(2478), + [anon_sym_alignof] = ACTIONS(2478), + [anon_sym__Alignof] = ACTIONS(2478), + [anon_sym_offsetof] = ACTIONS(2478), + [anon_sym__Generic] = ACTIONS(2478), + [anon_sym_asm] = ACTIONS(2478), + [anon_sym___asm__] = ACTIONS(2478), + [anon_sym___asm] = ACTIONS(2478), + [sym_number_literal] = ACTIONS(2480), + [anon_sym_L_SQUOTE] = ACTIONS(2480), + [anon_sym_u_SQUOTE] = ACTIONS(2480), + [anon_sym_U_SQUOTE] = ACTIONS(2480), + [anon_sym_u8_SQUOTE] = ACTIONS(2480), + [anon_sym_SQUOTE] = ACTIONS(2480), + [anon_sym_AT] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2480), + [anon_sym_L_DQUOTE] = ACTIONS(2480), + [anon_sym_u_DQUOTE] = ACTIONS(2480), + [anon_sym_U_DQUOTE] = ACTIONS(2480), + [anon_sym_u8_DQUOTE] = ACTIONS(2480), + [sym_true] = ACTIONS(2478), + [sym_false] = ACTIONS(2478), + [anon_sym_NULL] = ACTIONS(2478), + [anon_sym_nullptr] = ACTIONS(2478), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2478), + [anon_sym___typeof] = ACTIONS(2478), + [anon_sym_typeof] = ACTIONS(2478), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2478), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2478), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2478), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2478), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2478), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2478), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2478), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2478), + [anon_sym_NS_AVAILABLE] = ACTIONS(2478), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2478), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_API_AVAILABLE] = ACTIONS(2478), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_API_DEPRECATED] = ACTIONS(2478), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2478), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2478), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2478), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2478), + [anon_sym___deprecated_msg] = ACTIONS(2478), + [anon_sym___deprecated_enum_msg] = ACTIONS(2478), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2478), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2478), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2478), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2478), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2478), + [anon_sym_ATtry] = ACTIONS(2480), + [anon_sym___try] = ACTIONS(2478), + [anon_sym_ATthrow] = ACTIONS(2480), + [anon_sym_ATselector] = ACTIONS(2480), + [anon_sym_ATavailable] = ACTIONS(2480), + [anon_sym___builtin_available] = ACTIONS(2478), + [anon_sym_va_arg] = ACTIONS(2478), + [anon_sym_ATencode] = ACTIONS(2480), + [anon_sym_ATsynchronized] = ACTIONS(2480), + [anon_sym_BOOL] = ACTIONS(2478), + [anon_sym_IMP] = ACTIONS(2478), + [anon_sym_SEL] = ACTIONS(2478), + [anon_sym_Class] = ACTIONS(2478), + [anon_sym_id] = ACTIONS(2478), + }, + [1119] = { + [sym_identifier] = ACTIONS(2470), + [anon_sym_LPAREN2] = ACTIONS(2472), + [anon_sym_BANG] = ACTIONS(2472), + [anon_sym_TILDE] = ACTIONS(2472), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_CARET] = ACTIONS(2472), + [anon_sym_AMP] = ACTIONS(2472), + [anon_sym_SEMI] = ACTIONS(2472), + [anon_sym___extension__] = ACTIONS(2470), + [anon_sym_typedef] = ACTIONS(2470), + [anon_sym_extern] = ACTIONS(2470), + [anon_sym___attribute__] = ACTIONS(2470), + [anon_sym___attribute] = ACTIONS(2470), + [anon_sym_noreturn] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2472), + [anon_sym___declspec] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2472), + [anon_sym_signed] = ACTIONS(2470), + [anon_sym_unsigned] = ACTIONS(2470), + [anon_sym_long] = ACTIONS(2470), + [anon_sym_short] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_ATautoreleasepool] = ACTIONS(2472), + [anon_sym_auto] = ACTIONS(2470), + [anon_sym_register] = ACTIONS(2470), + [anon_sym_inline] = ACTIONS(2470), + [anon_sym___inline] = ACTIONS(2470), + [anon_sym___inline__] = ACTIONS(2470), + [anon_sym___forceinline] = ACTIONS(2470), + [anon_sym_thread_local] = ACTIONS(2470), + [anon_sym___thread] = ACTIONS(2470), + [anon_sym_CG_EXTERN] = ACTIONS(2470), + [anon_sym_CG_INLINE] = ACTIONS(2470), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2470), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2470), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2470), + [anon_sym_IBOutlet] = ACTIONS(2470), + [anon_sym_IBInspectable] = ACTIONS(2470), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2470), + [anon_sym_NS_INLINE] = ACTIONS(2470), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2470), + [anon_sym_OBJC_EXPORT] = ACTIONS(2470), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2470), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_constexpr] = ACTIONS(2470), + [anon_sym_volatile] = ACTIONS(2470), + [anon_sym_restrict] = ACTIONS(2470), + [anon_sym___restrict__] = ACTIONS(2470), + [anon_sym__Atomic] = ACTIONS(2470), + [anon_sym__Noreturn] = ACTIONS(2470), + [anon_sym__Nonnull] = ACTIONS(2470), + [anon_sym_nullable] = ACTIONS(2470), + [anon_sym__Complex] = ACTIONS(2470), + [anon_sym__Nullable] = ACTIONS(2470), + [anon_sym__Nullable_result] = ACTIONS(2470), + [anon_sym__Null_unspecified] = ACTIONS(2470), + [anon_sym___autoreleasing] = ACTIONS(2470), + [anon_sym___block] = ACTIONS(2470), + [anon_sym___bridge] = ACTIONS(2470), + [anon_sym___bridge_retained] = ACTIONS(2470), + [anon_sym___bridge_transfer] = ACTIONS(2470), + [anon_sym___complex] = ACTIONS(2470), + [anon_sym___const] = ACTIONS(2470), + [anon_sym___imag] = ACTIONS(2470), + [anon_sym___kindof] = ACTIONS(2470), + [anon_sym___nonnull] = ACTIONS(2470), + [anon_sym___nullable] = ACTIONS(2470), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2470), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2470), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2470), + [anon_sym___real] = ACTIONS(2470), + [anon_sym___strong] = ACTIONS(2470), + [anon_sym___unsafe_unretained] = ACTIONS(2470), + [anon_sym___unused] = ACTIONS(2470), + [anon_sym___weak] = ACTIONS(2470), + [anon_sym_alignas] = ACTIONS(2470), + [anon_sym__Alignas] = ACTIONS(2470), + [sym_primitive_type] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [anon_sym_struct] = ACTIONS(2470), + [anon_sym_union] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_else] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_in] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_goto] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2472), + [anon_sym_PLUS_PLUS] = ACTIONS(2472), + [anon_sym_sizeof] = ACTIONS(2470), + [anon_sym___alignof__] = ACTIONS(2470), + [anon_sym___alignof] = ACTIONS(2470), + [anon_sym__alignof] = ACTIONS(2470), + [anon_sym_alignof] = ACTIONS(2470), + [anon_sym__Alignof] = ACTIONS(2470), + [anon_sym_offsetof] = ACTIONS(2470), + [anon_sym__Generic] = ACTIONS(2470), + [anon_sym_asm] = ACTIONS(2470), + [anon_sym___asm__] = ACTIONS(2470), + [anon_sym___asm] = ACTIONS(2470), + [sym_number_literal] = ACTIONS(2472), + [anon_sym_L_SQUOTE] = ACTIONS(2472), + [anon_sym_u_SQUOTE] = ACTIONS(2472), + [anon_sym_U_SQUOTE] = ACTIONS(2472), + [anon_sym_u8_SQUOTE] = ACTIONS(2472), + [anon_sym_SQUOTE] = ACTIONS(2472), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2472), + [anon_sym_L_DQUOTE] = ACTIONS(2472), + [anon_sym_u_DQUOTE] = ACTIONS(2472), + [anon_sym_U_DQUOTE] = ACTIONS(2472), + [anon_sym_u8_DQUOTE] = ACTIONS(2472), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [anon_sym_NULL] = ACTIONS(2470), + [anon_sym_nullptr] = ACTIONS(2470), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2470), + [anon_sym___typeof] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2470), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2470), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2470), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2470), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2470), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2470), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2470), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2470), + [anon_sym_NS_AVAILABLE] = ACTIONS(2470), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2470), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_API_AVAILABLE] = ACTIONS(2470), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_API_DEPRECATED] = ACTIONS(2470), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2470), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2470), + [anon_sym___deprecated_msg] = ACTIONS(2470), + [anon_sym___deprecated_enum_msg] = ACTIONS(2470), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2470), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2470), + [anon_sym_ATtry] = ACTIONS(2472), + [anon_sym___try] = ACTIONS(2470), + [anon_sym_ATthrow] = ACTIONS(2472), + [anon_sym_ATselector] = ACTIONS(2472), + [anon_sym_ATavailable] = ACTIONS(2472), + [anon_sym___builtin_available] = ACTIONS(2470), + [anon_sym_va_arg] = ACTIONS(2470), + [anon_sym_ATencode] = ACTIONS(2472), + [anon_sym_ATsynchronized] = ACTIONS(2472), + [anon_sym_BOOL] = ACTIONS(2470), + [anon_sym_IMP] = ACTIONS(2470), + [anon_sym_SEL] = ACTIONS(2470), + [anon_sym_Class] = ACTIONS(2470), + [anon_sym_id] = ACTIONS(2470), + }, + [1120] = { + [sym_identifier] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2346), + [anon_sym_PLUS] = ACTIONS(2346), + [anon_sym_STAR] = ACTIONS(2348), + [anon_sym_CARET] = ACTIONS(2348), + [anon_sym_AMP] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym___extension__] = ACTIONS(2346), + [anon_sym_typedef] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym___attribute__] = ACTIONS(2346), + [anon_sym___attribute] = ACTIONS(2346), + [anon_sym_noreturn] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym___declspec] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_signed] = ACTIONS(2346), + [anon_sym_unsigned] = ACTIONS(2346), + [anon_sym_long] = ACTIONS(2346), + [anon_sym_short] = ACTIONS(2346), + [anon_sym_static] = ACTIONS(2346), + [anon_sym_ATautoreleasepool] = ACTIONS(2348), + [anon_sym_auto] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2346), + [anon_sym_inline] = ACTIONS(2346), + [anon_sym___inline] = ACTIONS(2346), + [anon_sym___inline__] = ACTIONS(2346), + [anon_sym___forceinline] = ACTIONS(2346), + [anon_sym_thread_local] = ACTIONS(2346), + [anon_sym___thread] = ACTIONS(2346), + [anon_sym_CG_EXTERN] = ACTIONS(2346), + [anon_sym_CG_INLINE] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2346), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2346), + [anon_sym_IBOutlet] = ACTIONS(2346), + [anon_sym_IBInspectable] = ACTIONS(2346), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2346), + [anon_sym_NS_INLINE] = ACTIONS(2346), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2346), + [anon_sym_OBJC_EXPORT] = ACTIONS(2346), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_constexpr] = ACTIONS(2346), + [anon_sym_volatile] = ACTIONS(2346), + [anon_sym_restrict] = ACTIONS(2346), + [anon_sym___restrict__] = ACTIONS(2346), + [anon_sym__Atomic] = ACTIONS(2346), + [anon_sym__Noreturn] = ACTIONS(2346), + [anon_sym__Nonnull] = ACTIONS(2346), + [anon_sym_nullable] = ACTIONS(2346), + [anon_sym__Complex] = ACTIONS(2346), + [anon_sym__Nullable] = ACTIONS(2346), + [anon_sym__Nullable_result] = ACTIONS(2346), + [anon_sym__Null_unspecified] = ACTIONS(2346), + [anon_sym___autoreleasing] = ACTIONS(2346), + [anon_sym___block] = ACTIONS(2346), + [anon_sym___bridge] = ACTIONS(2346), + [anon_sym___bridge_retained] = ACTIONS(2346), + [anon_sym___bridge_transfer] = ACTIONS(2346), + [anon_sym___complex] = ACTIONS(2346), + [anon_sym___const] = ACTIONS(2346), + [anon_sym___imag] = ACTIONS(2346), + [anon_sym___kindof] = ACTIONS(2346), + [anon_sym___nonnull] = ACTIONS(2346), + [anon_sym___nullable] = ACTIONS(2346), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2346), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2346), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2346), + [anon_sym___real] = ACTIONS(2346), + [anon_sym___strong] = ACTIONS(2346), + [anon_sym___unsafe_unretained] = ACTIONS(2346), + [anon_sym___unused] = ACTIONS(2346), + [anon_sym___weak] = ACTIONS(2346), + [anon_sym_alignas] = ACTIONS(2346), + [anon_sym__Alignas] = ACTIONS(2346), + [sym_primitive_type] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_switch] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_do] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_goto] = ACTIONS(2346), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2346), + [anon_sym__Generic] = ACTIONS(2346), + [anon_sym_asm] = ACTIONS(2346), + [anon_sym___asm__] = ACTIONS(2346), + [anon_sym___asm] = ACTIONS(2346), + [sym_number_literal] = ACTIONS(2348), + [anon_sym_L_SQUOTE] = ACTIONS(2348), + [anon_sym_u_SQUOTE] = ACTIONS(2348), + [anon_sym_U_SQUOTE] = ACTIONS(2348), + [anon_sym_u8_SQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_L_DQUOTE] = ACTIONS(2348), + [anon_sym_u_DQUOTE] = ACTIONS(2348), + [anon_sym_U_DQUOTE] = ACTIONS(2348), + [anon_sym_u8_DQUOTE] = ACTIONS(2348), + [sym_true] = ACTIONS(2346), + [sym_false] = ACTIONS(2346), + [anon_sym_NULL] = ACTIONS(2346), + [anon_sym_nullptr] = ACTIONS(2346), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2346), + [anon_sym___typeof] = ACTIONS(2346), + [anon_sym_typeof] = ACTIONS(2346), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2346), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2346), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2346), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2346), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE] = ACTIONS(2346), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_API_AVAILABLE] = ACTIONS(2346), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_API_DEPRECATED] = ACTIONS(2346), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2346), + [anon_sym___deprecated_msg] = ACTIONS(2346), + [anon_sym___deprecated_enum_msg] = ACTIONS(2346), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2346), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2346), + [anon_sym_ATtry] = ACTIONS(2348), + [anon_sym___try] = ACTIONS(2346), + [anon_sym_ATthrow] = ACTIONS(2348), + [anon_sym_ATselector] = ACTIONS(2348), + [anon_sym_ATavailable] = ACTIONS(2348), + [anon_sym___builtin_available] = ACTIONS(2346), + [anon_sym_va_arg] = ACTIONS(2346), + [anon_sym_ATencode] = ACTIONS(2348), + [anon_sym_ATsynchronized] = ACTIONS(2348), + [anon_sym_BOOL] = ACTIONS(2346), + [anon_sym_IMP] = ACTIONS(2346), + [anon_sym_SEL] = ACTIONS(2346), + [anon_sym_Class] = ACTIONS(2346), + [anon_sym_id] = ACTIONS(2346), + }, + [1121] = { + [sym_identifier] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_PLUS] = ACTIONS(2364), + [anon_sym_STAR] = ACTIONS(2366), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_AMP] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_typedef] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym___attribute__] = ACTIONS(2364), + [anon_sym___attribute] = ACTIONS(2364), + [anon_sym_noreturn] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym___declspec] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_signed] = ACTIONS(2364), + [anon_sym_unsigned] = ACTIONS(2364), + [anon_sym_long] = ACTIONS(2364), + [anon_sym_short] = ACTIONS(2364), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_ATautoreleasepool] = ACTIONS(2366), + [anon_sym_auto] = ACTIONS(2364), + [anon_sym_register] = ACTIONS(2364), + [anon_sym_inline] = ACTIONS(2364), + [anon_sym___inline] = ACTIONS(2364), + [anon_sym___inline__] = ACTIONS(2364), + [anon_sym___forceinline] = ACTIONS(2364), + [anon_sym_thread_local] = ACTIONS(2364), + [anon_sym___thread] = ACTIONS(2364), + [anon_sym_CG_EXTERN] = ACTIONS(2364), + [anon_sym_CG_INLINE] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2364), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2364), + [anon_sym_IBOutlet] = ACTIONS(2364), + [anon_sym_IBInspectable] = ACTIONS(2364), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2364), + [anon_sym_NS_INLINE] = ACTIONS(2364), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2364), + [anon_sym_OBJC_EXPORT] = ACTIONS(2364), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [anon_sym_constexpr] = ACTIONS(2364), + [anon_sym_volatile] = ACTIONS(2364), + [anon_sym_restrict] = ACTIONS(2364), + [anon_sym___restrict__] = ACTIONS(2364), + [anon_sym__Atomic] = ACTIONS(2364), + [anon_sym__Noreturn] = ACTIONS(2364), + [anon_sym__Nonnull] = ACTIONS(2364), + [anon_sym_nullable] = ACTIONS(2364), + [anon_sym__Complex] = ACTIONS(2364), + [anon_sym__Nullable] = ACTIONS(2364), + [anon_sym__Nullable_result] = ACTIONS(2364), + [anon_sym__Null_unspecified] = ACTIONS(2364), + [anon_sym___autoreleasing] = ACTIONS(2364), + [anon_sym___block] = ACTIONS(2364), + [anon_sym___bridge] = ACTIONS(2364), + [anon_sym___bridge_retained] = ACTIONS(2364), + [anon_sym___bridge_transfer] = ACTIONS(2364), + [anon_sym___complex] = ACTIONS(2364), + [anon_sym___const] = ACTIONS(2364), + [anon_sym___imag] = ACTIONS(2364), + [anon_sym___kindof] = ACTIONS(2364), + [anon_sym___nonnull] = ACTIONS(2364), + [anon_sym___nullable] = ACTIONS(2364), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2364), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2364), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2364), + [anon_sym___real] = ACTIONS(2364), + [anon_sym___strong] = ACTIONS(2364), + [anon_sym___unsafe_unretained] = ACTIONS(2364), + [anon_sym___unused] = ACTIONS(2364), + [anon_sym___weak] = ACTIONS(2364), + [anon_sym_alignas] = ACTIONS(2364), + [anon_sym__Alignas] = ACTIONS(2364), + [sym_primitive_type] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(2364), + [anon_sym_union] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_switch] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_do] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_in] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_goto] = ACTIONS(2364), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_sizeof] = ACTIONS(2364), + [anon_sym___alignof__] = ACTIONS(2364), + [anon_sym___alignof] = ACTIONS(2364), + [anon_sym__alignof] = ACTIONS(2364), + [anon_sym_alignof] = ACTIONS(2364), + [anon_sym__Alignof] = ACTIONS(2364), + [anon_sym_offsetof] = ACTIONS(2364), + [anon_sym__Generic] = ACTIONS(2364), + [anon_sym_asm] = ACTIONS(2364), + [anon_sym___asm__] = ACTIONS(2364), + [anon_sym___asm] = ACTIONS(2364), + [sym_number_literal] = ACTIONS(2366), + [anon_sym_L_SQUOTE] = ACTIONS(2366), + [anon_sym_u_SQUOTE] = ACTIONS(2366), + [anon_sym_U_SQUOTE] = ACTIONS(2366), + [anon_sym_u8_SQUOTE] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2366), + [anon_sym_AT] = ACTIONS(2364), + [anon_sym_DQUOTE] = ACTIONS(2366), + [anon_sym_L_DQUOTE] = ACTIONS(2366), + [anon_sym_u_DQUOTE] = ACTIONS(2366), + [anon_sym_U_DQUOTE] = ACTIONS(2366), + [anon_sym_u8_DQUOTE] = ACTIONS(2366), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2364), + [anon_sym___typeof] = ACTIONS(2364), + [anon_sym_typeof] = ACTIONS(2364), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2364), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2364), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2364), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2364), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE] = ACTIONS(2364), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_API_AVAILABLE] = ACTIONS(2364), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_API_DEPRECATED] = ACTIONS(2364), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2364), + [anon_sym___deprecated_msg] = ACTIONS(2364), + [anon_sym___deprecated_enum_msg] = ACTIONS(2364), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2364), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2364), + [anon_sym_ATtry] = ACTIONS(2366), + [anon_sym___try] = ACTIONS(2364), + [anon_sym_ATthrow] = ACTIONS(2366), + [anon_sym_ATselector] = ACTIONS(2366), + [anon_sym_ATavailable] = ACTIONS(2366), + [anon_sym___builtin_available] = ACTIONS(2364), + [anon_sym_va_arg] = ACTIONS(2364), + [anon_sym_ATencode] = ACTIONS(2366), + [anon_sym_ATsynchronized] = ACTIONS(2366), + [anon_sym_BOOL] = ACTIONS(2364), + [anon_sym_IMP] = ACTIONS(2364), + [anon_sym_SEL] = ACTIONS(2364), + [anon_sym_Class] = ACTIONS(2364), + [anon_sym_id] = ACTIONS(2364), + }, + [1122] = { + [sym_identifier] = ACTIONS(2512), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_TILDE] = ACTIONS(2514), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_STAR] = ACTIONS(2514), + [anon_sym_CARET] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym___extension__] = ACTIONS(2512), + [anon_sym_typedef] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym___attribute__] = ACTIONS(2512), + [anon_sym___attribute] = ACTIONS(2512), + [anon_sym_noreturn] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym___declspec] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_signed] = ACTIONS(2512), + [anon_sym_unsigned] = ACTIONS(2512), + [anon_sym_long] = ACTIONS(2512), + [anon_sym_short] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_ATautoreleasepool] = ACTIONS(2514), + [anon_sym_auto] = ACTIONS(2512), + [anon_sym_register] = ACTIONS(2512), + [anon_sym_inline] = ACTIONS(2512), + [anon_sym___inline] = ACTIONS(2512), + [anon_sym___inline__] = ACTIONS(2512), + [anon_sym___forceinline] = ACTIONS(2512), + [anon_sym_thread_local] = ACTIONS(2512), + [anon_sym___thread] = ACTIONS(2512), + [anon_sym_CG_EXTERN] = ACTIONS(2512), + [anon_sym_CG_INLINE] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2512), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2512), + [anon_sym_IBOutlet] = ACTIONS(2512), + [anon_sym_IBInspectable] = ACTIONS(2512), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2512), + [anon_sym_NS_INLINE] = ACTIONS(2512), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2512), + [anon_sym_OBJC_EXPORT] = ACTIONS(2512), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_constexpr] = ACTIONS(2512), + [anon_sym_volatile] = ACTIONS(2512), + [anon_sym_restrict] = ACTIONS(2512), + [anon_sym___restrict__] = ACTIONS(2512), + [anon_sym__Atomic] = ACTIONS(2512), + [anon_sym__Noreturn] = ACTIONS(2512), + [anon_sym__Nonnull] = ACTIONS(2512), + [anon_sym_nullable] = ACTIONS(2512), + [anon_sym__Complex] = ACTIONS(2512), + [anon_sym__Nullable] = ACTIONS(2512), + [anon_sym__Nullable_result] = ACTIONS(2512), + [anon_sym__Null_unspecified] = ACTIONS(2512), + [anon_sym___autoreleasing] = ACTIONS(2512), + [anon_sym___block] = ACTIONS(2512), + [anon_sym___bridge] = ACTIONS(2512), + [anon_sym___bridge_retained] = ACTIONS(2512), + [anon_sym___bridge_transfer] = ACTIONS(2512), + [anon_sym___complex] = ACTIONS(2512), + [anon_sym___const] = ACTIONS(2512), + [anon_sym___imag] = ACTIONS(2512), + [anon_sym___kindof] = ACTIONS(2512), + [anon_sym___nonnull] = ACTIONS(2512), + [anon_sym___nullable] = ACTIONS(2512), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2512), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2512), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2512), + [anon_sym___real] = ACTIONS(2512), + [anon_sym___strong] = ACTIONS(2512), + [anon_sym___unsafe_unretained] = ACTIONS(2512), + [anon_sym___unused] = ACTIONS(2512), + [anon_sym___weak] = ACTIONS(2512), + [anon_sym_alignas] = ACTIONS(2512), + [anon_sym__Alignas] = ACTIONS(2512), + [sym_primitive_type] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [anon_sym_struct] = ACTIONS(2512), + [anon_sym_union] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_else] = ACTIONS(2512), + [anon_sym_switch] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_do] = ACTIONS(2512), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_in] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_goto] = ACTIONS(2512), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_sizeof] = ACTIONS(2512), + [anon_sym___alignof__] = ACTIONS(2512), + [anon_sym___alignof] = ACTIONS(2512), + [anon_sym__alignof] = ACTIONS(2512), + [anon_sym_alignof] = ACTIONS(2512), + [anon_sym__Alignof] = ACTIONS(2512), + [anon_sym_offsetof] = ACTIONS(2512), + [anon_sym__Generic] = ACTIONS(2512), + [anon_sym_asm] = ACTIONS(2512), + [anon_sym___asm__] = ACTIONS(2512), + [anon_sym___asm] = ACTIONS(2512), + [sym_number_literal] = ACTIONS(2514), + [anon_sym_L_SQUOTE] = ACTIONS(2514), + [anon_sym_u_SQUOTE] = ACTIONS(2514), + [anon_sym_U_SQUOTE] = ACTIONS(2514), + [anon_sym_u8_SQUOTE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_AT] = ACTIONS(2512), + [anon_sym_DQUOTE] = ACTIONS(2514), + [anon_sym_L_DQUOTE] = ACTIONS(2514), + [anon_sym_u_DQUOTE] = ACTIONS(2514), + [anon_sym_U_DQUOTE] = ACTIONS(2514), + [anon_sym_u8_DQUOTE] = ACTIONS(2514), + [sym_true] = ACTIONS(2512), + [sym_false] = ACTIONS(2512), + [anon_sym_NULL] = ACTIONS(2512), + [anon_sym_nullptr] = ACTIONS(2512), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2512), + [anon_sym___typeof] = ACTIONS(2512), + [anon_sym_typeof] = ACTIONS(2512), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2512), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2512), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2512), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2512), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE] = ACTIONS(2512), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_API_AVAILABLE] = ACTIONS(2512), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_API_DEPRECATED] = ACTIONS(2512), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2512), + [anon_sym___deprecated_msg] = ACTIONS(2512), + [anon_sym___deprecated_enum_msg] = ACTIONS(2512), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2512), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2512), + [anon_sym_ATtry] = ACTIONS(2514), + [anon_sym___try] = ACTIONS(2512), + [anon_sym_ATthrow] = ACTIONS(2514), + [anon_sym_ATselector] = ACTIONS(2514), + [anon_sym_ATavailable] = ACTIONS(2514), + [anon_sym___builtin_available] = ACTIONS(2512), + [anon_sym_va_arg] = ACTIONS(2512), + [anon_sym_ATencode] = ACTIONS(2514), + [anon_sym_ATsynchronized] = ACTIONS(2514), + [anon_sym_BOOL] = ACTIONS(2512), + [anon_sym_IMP] = ACTIONS(2512), + [anon_sym_SEL] = ACTIONS(2512), + [anon_sym_Class] = ACTIONS(2512), + [anon_sym_id] = ACTIONS(2512), + }, + [1123] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_LPAREN2] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2484), + [anon_sym_TILDE] = ACTIONS(2484), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_STAR] = ACTIONS(2484), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym___extension__] = ACTIONS(2482), + [anon_sym_typedef] = ACTIONS(2482), + [anon_sym_extern] = ACTIONS(2482), + [anon_sym___attribute__] = ACTIONS(2482), + [anon_sym___attribute] = ACTIONS(2482), + [anon_sym_noreturn] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2484), + [anon_sym___declspec] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_signed] = ACTIONS(2482), + [anon_sym_unsigned] = ACTIONS(2482), + [anon_sym_long] = ACTIONS(2482), + [anon_sym_short] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_ATautoreleasepool] = ACTIONS(2484), + [anon_sym_auto] = ACTIONS(2482), + [anon_sym_register] = ACTIONS(2482), + [anon_sym_inline] = ACTIONS(2482), + [anon_sym___inline] = ACTIONS(2482), + [anon_sym___inline__] = ACTIONS(2482), + [anon_sym___forceinline] = ACTIONS(2482), + [anon_sym_thread_local] = ACTIONS(2482), + [anon_sym___thread] = ACTIONS(2482), + [anon_sym_CG_EXTERN] = ACTIONS(2482), + [anon_sym_CG_INLINE] = ACTIONS(2482), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2482), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2482), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2482), + [anon_sym_IBOutlet] = ACTIONS(2482), + [anon_sym_IBInspectable] = ACTIONS(2482), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2482), + [anon_sym_NS_INLINE] = ACTIONS(2482), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2482), + [anon_sym_OBJC_EXPORT] = ACTIONS(2482), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2482), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2482), + [anon_sym_const] = ACTIONS(2482), + [anon_sym_constexpr] = ACTIONS(2482), + [anon_sym_volatile] = ACTIONS(2482), + [anon_sym_restrict] = ACTIONS(2482), + [anon_sym___restrict__] = ACTIONS(2482), + [anon_sym__Atomic] = ACTIONS(2482), + [anon_sym__Noreturn] = ACTIONS(2482), + [anon_sym__Nonnull] = ACTIONS(2482), + [anon_sym_nullable] = ACTIONS(2482), + [anon_sym__Complex] = ACTIONS(2482), + [anon_sym__Nullable] = ACTIONS(2482), + [anon_sym__Nullable_result] = ACTIONS(2482), + [anon_sym__Null_unspecified] = ACTIONS(2482), + [anon_sym___autoreleasing] = ACTIONS(2482), + [anon_sym___block] = ACTIONS(2482), + [anon_sym___bridge] = ACTIONS(2482), + [anon_sym___bridge_retained] = ACTIONS(2482), + [anon_sym___bridge_transfer] = ACTIONS(2482), + [anon_sym___complex] = ACTIONS(2482), + [anon_sym___const] = ACTIONS(2482), + [anon_sym___imag] = ACTIONS(2482), + [anon_sym___kindof] = ACTIONS(2482), + [anon_sym___nonnull] = ACTIONS(2482), + [anon_sym___nullable] = ACTIONS(2482), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2482), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2482), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2482), + [anon_sym___real] = ACTIONS(2482), + [anon_sym___strong] = ACTIONS(2482), + [anon_sym___unsafe_unretained] = ACTIONS(2482), + [anon_sym___unused] = ACTIONS(2482), + [anon_sym___weak] = ACTIONS(2482), + [anon_sym_alignas] = ACTIONS(2482), + [anon_sym__Alignas] = ACTIONS(2482), + [sym_primitive_type] = ACTIONS(2482), + [anon_sym_enum] = ACTIONS(2482), + [anon_sym_struct] = ACTIONS(2482), + [anon_sym_union] = ACTIONS(2482), + [anon_sym_if] = ACTIONS(2482), + [anon_sym_else] = ACTIONS(2482), + [anon_sym_switch] = ACTIONS(2482), + [anon_sym_while] = ACTIONS(2482), + [anon_sym_do] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2482), + [anon_sym_continue] = ACTIONS(2482), + [anon_sym_goto] = ACTIONS(2482), + [anon_sym_DASH_DASH] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(2484), + [anon_sym_sizeof] = ACTIONS(2482), + [anon_sym___alignof__] = ACTIONS(2482), + [anon_sym___alignof] = ACTIONS(2482), + [anon_sym__alignof] = ACTIONS(2482), + [anon_sym_alignof] = ACTIONS(2482), + [anon_sym__Alignof] = ACTIONS(2482), + [anon_sym_offsetof] = ACTIONS(2482), + [anon_sym__Generic] = ACTIONS(2482), + [anon_sym_asm] = ACTIONS(2482), + [anon_sym___asm__] = ACTIONS(2482), + [anon_sym___asm] = ACTIONS(2482), + [sym_number_literal] = ACTIONS(2484), + [anon_sym_L_SQUOTE] = ACTIONS(2484), + [anon_sym_u_SQUOTE] = ACTIONS(2484), + [anon_sym_U_SQUOTE] = ACTIONS(2484), + [anon_sym_u8_SQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [anon_sym_AT] = ACTIONS(2482), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_L_DQUOTE] = ACTIONS(2484), + [anon_sym_u_DQUOTE] = ACTIONS(2484), + [anon_sym_U_DQUOTE] = ACTIONS(2484), + [anon_sym_u8_DQUOTE] = ACTIONS(2484), + [sym_true] = ACTIONS(2482), + [sym_false] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_nullptr] = ACTIONS(2482), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2482), + [anon_sym___typeof] = ACTIONS(2482), + [anon_sym_typeof] = ACTIONS(2482), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2482), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2482), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2482), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2482), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2482), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2482), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2482), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2482), + [anon_sym_NS_AVAILABLE] = ACTIONS(2482), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2482), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_API_AVAILABLE] = ACTIONS(2482), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_API_DEPRECATED] = ACTIONS(2482), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2482), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2482), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2482), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2482), + [anon_sym___deprecated_msg] = ACTIONS(2482), + [anon_sym___deprecated_enum_msg] = ACTIONS(2482), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2482), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2482), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2482), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2482), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2482), + [anon_sym_ATtry] = ACTIONS(2484), + [anon_sym___try] = ACTIONS(2482), + [anon_sym_ATthrow] = ACTIONS(2484), + [anon_sym_ATselector] = ACTIONS(2484), + [anon_sym_ATavailable] = ACTIONS(2484), + [anon_sym___builtin_available] = ACTIONS(2482), + [anon_sym_va_arg] = ACTIONS(2482), + [anon_sym_ATencode] = ACTIONS(2484), + [anon_sym_ATsynchronized] = ACTIONS(2484), + [anon_sym_BOOL] = ACTIONS(2482), + [anon_sym_IMP] = ACTIONS(2482), + [anon_sym_SEL] = ACTIONS(2482), + [anon_sym_Class] = ACTIONS(2482), + [anon_sym_id] = ACTIONS(2482), + }, + [1124] = { + [sym_identifier] = ACTIONS(2486), + [anon_sym_LPAREN2] = ACTIONS(2488), + [anon_sym_BANG] = ACTIONS(2488), + [anon_sym_TILDE] = ACTIONS(2488), + [anon_sym_DASH] = ACTIONS(2486), + [anon_sym_PLUS] = ACTIONS(2486), + [anon_sym_STAR] = ACTIONS(2488), + [anon_sym_CARET] = ACTIONS(2488), + [anon_sym_AMP] = ACTIONS(2488), + [anon_sym_SEMI] = ACTIONS(2488), + [anon_sym___extension__] = ACTIONS(2486), + [anon_sym_typedef] = ACTIONS(2486), + [anon_sym_extern] = ACTIONS(2486), + [anon_sym___attribute__] = ACTIONS(2486), + [anon_sym___attribute] = ACTIONS(2486), + [anon_sym_noreturn] = ACTIONS(2486), + [anon_sym_LBRACK] = ACTIONS(2488), + [anon_sym___declspec] = ACTIONS(2486), + [anon_sym_LBRACE] = ACTIONS(2488), + [anon_sym_signed] = ACTIONS(2486), + [anon_sym_unsigned] = ACTIONS(2486), + [anon_sym_long] = ACTIONS(2486), + [anon_sym_short] = ACTIONS(2486), + [anon_sym_static] = ACTIONS(2486), + [anon_sym_ATautoreleasepool] = ACTIONS(2488), + [anon_sym_auto] = ACTIONS(2486), + [anon_sym_register] = ACTIONS(2486), + [anon_sym_inline] = ACTIONS(2486), + [anon_sym___inline] = ACTIONS(2486), + [anon_sym___inline__] = ACTIONS(2486), + [anon_sym___forceinline] = ACTIONS(2486), + [anon_sym_thread_local] = ACTIONS(2486), + [anon_sym___thread] = ACTIONS(2486), + [anon_sym_CG_EXTERN] = ACTIONS(2486), + [anon_sym_CG_INLINE] = ACTIONS(2486), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2486), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2486), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2486), + [anon_sym_IBOutlet] = ACTIONS(2486), + [anon_sym_IBInspectable] = ACTIONS(2486), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2486), + [anon_sym_NS_INLINE] = ACTIONS(2486), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2486), + [anon_sym_OBJC_EXPORT] = ACTIONS(2486), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2486), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2486), + [anon_sym_const] = ACTIONS(2486), + [anon_sym_constexpr] = ACTIONS(2486), + [anon_sym_volatile] = ACTIONS(2486), + [anon_sym_restrict] = ACTIONS(2486), + [anon_sym___restrict__] = ACTIONS(2486), + [anon_sym__Atomic] = ACTIONS(2486), + [anon_sym__Noreturn] = ACTIONS(2486), + [anon_sym__Nonnull] = ACTIONS(2486), + [anon_sym_nullable] = ACTIONS(2486), + [anon_sym__Complex] = ACTIONS(2486), + [anon_sym__Nullable] = ACTIONS(2486), + [anon_sym__Nullable_result] = ACTIONS(2486), + [anon_sym__Null_unspecified] = ACTIONS(2486), + [anon_sym___autoreleasing] = ACTIONS(2486), + [anon_sym___block] = ACTIONS(2486), + [anon_sym___bridge] = ACTIONS(2486), + [anon_sym___bridge_retained] = ACTIONS(2486), + [anon_sym___bridge_transfer] = ACTIONS(2486), + [anon_sym___complex] = ACTIONS(2486), + [anon_sym___const] = ACTIONS(2486), + [anon_sym___imag] = ACTIONS(2486), + [anon_sym___kindof] = ACTIONS(2486), + [anon_sym___nonnull] = ACTIONS(2486), + [anon_sym___nullable] = ACTIONS(2486), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2486), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2486), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2486), + [anon_sym___real] = ACTIONS(2486), + [anon_sym___strong] = ACTIONS(2486), + [anon_sym___unsafe_unretained] = ACTIONS(2486), + [anon_sym___unused] = ACTIONS(2486), + [anon_sym___weak] = ACTIONS(2486), + [anon_sym_alignas] = ACTIONS(2486), + [anon_sym__Alignas] = ACTIONS(2486), + [sym_primitive_type] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2486), + [anon_sym_struct] = ACTIONS(2486), + [anon_sym_union] = ACTIONS(2486), + [anon_sym_if] = ACTIONS(2486), + [anon_sym_else] = ACTIONS(2486), + [anon_sym_switch] = ACTIONS(2486), + [anon_sym_while] = ACTIONS(2486), + [anon_sym_do] = ACTIONS(2486), + [anon_sym_for] = ACTIONS(2486), + [anon_sym_in] = ACTIONS(2486), + [anon_sym_return] = ACTIONS(2486), + [anon_sym_break] = ACTIONS(2486), + [anon_sym_continue] = ACTIONS(2486), + [anon_sym_goto] = ACTIONS(2486), + [anon_sym_DASH_DASH] = ACTIONS(2488), + [anon_sym_PLUS_PLUS] = ACTIONS(2488), + [anon_sym_sizeof] = ACTIONS(2486), + [anon_sym___alignof__] = ACTIONS(2486), + [anon_sym___alignof] = ACTIONS(2486), + [anon_sym__alignof] = ACTIONS(2486), + [anon_sym_alignof] = ACTIONS(2486), + [anon_sym__Alignof] = ACTIONS(2486), + [anon_sym_offsetof] = ACTIONS(2486), + [anon_sym__Generic] = ACTIONS(2486), + [anon_sym_asm] = ACTIONS(2486), + [anon_sym___asm__] = ACTIONS(2486), + [anon_sym___asm] = ACTIONS(2486), + [sym_number_literal] = ACTIONS(2488), + [anon_sym_L_SQUOTE] = ACTIONS(2488), + [anon_sym_u_SQUOTE] = ACTIONS(2488), + [anon_sym_U_SQUOTE] = ACTIONS(2488), + [anon_sym_u8_SQUOTE] = ACTIONS(2488), + [anon_sym_SQUOTE] = ACTIONS(2488), + [anon_sym_AT] = ACTIONS(2486), + [anon_sym_DQUOTE] = ACTIONS(2488), + [anon_sym_L_DQUOTE] = ACTIONS(2488), + [anon_sym_u_DQUOTE] = ACTIONS(2488), + [anon_sym_U_DQUOTE] = ACTIONS(2488), + [anon_sym_u8_DQUOTE] = ACTIONS(2488), + [sym_true] = ACTIONS(2486), + [sym_false] = ACTIONS(2486), + [anon_sym_NULL] = ACTIONS(2486), + [anon_sym_nullptr] = ACTIONS(2486), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2486), + [anon_sym___typeof] = ACTIONS(2486), + [anon_sym_typeof] = ACTIONS(2486), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2486), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2486), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2486), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2486), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2486), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2486), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2486), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2486), + [anon_sym_NS_AVAILABLE] = ACTIONS(2486), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2486), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_API_AVAILABLE] = ACTIONS(2486), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_API_DEPRECATED] = ACTIONS(2486), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2486), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2486), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2486), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2486), + [anon_sym___deprecated_msg] = ACTIONS(2486), + [anon_sym___deprecated_enum_msg] = ACTIONS(2486), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2486), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2486), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2486), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2486), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2486), + [anon_sym_ATtry] = ACTIONS(2488), + [anon_sym___try] = ACTIONS(2486), + [anon_sym_ATthrow] = ACTIONS(2488), + [anon_sym_ATselector] = ACTIONS(2488), + [anon_sym_ATavailable] = ACTIONS(2488), + [anon_sym___builtin_available] = ACTIONS(2486), + [anon_sym_va_arg] = ACTIONS(2486), + [anon_sym_ATencode] = ACTIONS(2488), + [anon_sym_ATsynchronized] = ACTIONS(2488), + [anon_sym_BOOL] = ACTIONS(2486), + [anon_sym_IMP] = ACTIONS(2486), + [anon_sym_SEL] = ACTIONS(2486), + [anon_sym_Class] = ACTIONS(2486), + [anon_sym_id] = ACTIONS(2486), + }, + [1125] = { + [sym_identifier] = ACTIONS(2512), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_TILDE] = ACTIONS(2514), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_STAR] = ACTIONS(2514), + [anon_sym_CARET] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym___extension__] = ACTIONS(2512), + [anon_sym_typedef] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym___attribute__] = ACTIONS(2512), + [anon_sym___attribute] = ACTIONS(2512), + [anon_sym_noreturn] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym___declspec] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_signed] = ACTIONS(2512), + [anon_sym_unsigned] = ACTIONS(2512), + [anon_sym_long] = ACTIONS(2512), + [anon_sym_short] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_ATautoreleasepool] = ACTIONS(2514), + [anon_sym_auto] = ACTIONS(2512), + [anon_sym_register] = ACTIONS(2512), + [anon_sym_inline] = ACTIONS(2512), + [anon_sym___inline] = ACTIONS(2512), + [anon_sym___inline__] = ACTIONS(2512), + [anon_sym___forceinline] = ACTIONS(2512), + [anon_sym_thread_local] = ACTIONS(2512), + [anon_sym___thread] = ACTIONS(2512), + [anon_sym_CG_EXTERN] = ACTIONS(2512), + [anon_sym_CG_INLINE] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2512), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2512), + [anon_sym_IBOutlet] = ACTIONS(2512), + [anon_sym_IBInspectable] = ACTIONS(2512), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2512), + [anon_sym_NS_INLINE] = ACTIONS(2512), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2512), + [anon_sym_OBJC_EXPORT] = ACTIONS(2512), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_constexpr] = ACTIONS(2512), + [anon_sym_volatile] = ACTIONS(2512), + [anon_sym_restrict] = ACTIONS(2512), + [anon_sym___restrict__] = ACTIONS(2512), + [anon_sym__Atomic] = ACTIONS(2512), + [anon_sym__Noreturn] = ACTIONS(2512), + [anon_sym__Nonnull] = ACTIONS(2512), + [anon_sym_nullable] = ACTIONS(2512), + [anon_sym__Complex] = ACTIONS(2512), + [anon_sym__Nullable] = ACTIONS(2512), + [anon_sym__Nullable_result] = ACTIONS(2512), + [anon_sym__Null_unspecified] = ACTIONS(2512), + [anon_sym___autoreleasing] = ACTIONS(2512), + [anon_sym___block] = ACTIONS(2512), + [anon_sym___bridge] = ACTIONS(2512), + [anon_sym___bridge_retained] = ACTIONS(2512), + [anon_sym___bridge_transfer] = ACTIONS(2512), + [anon_sym___complex] = ACTIONS(2512), + [anon_sym___const] = ACTIONS(2512), + [anon_sym___imag] = ACTIONS(2512), + [anon_sym___kindof] = ACTIONS(2512), + [anon_sym___nonnull] = ACTIONS(2512), + [anon_sym___nullable] = ACTIONS(2512), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2512), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2512), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2512), + [anon_sym___real] = ACTIONS(2512), + [anon_sym___strong] = ACTIONS(2512), + [anon_sym___unsafe_unretained] = ACTIONS(2512), + [anon_sym___unused] = ACTIONS(2512), + [anon_sym___weak] = ACTIONS(2512), + [anon_sym_alignas] = ACTIONS(2512), + [anon_sym__Alignas] = ACTIONS(2512), + [sym_primitive_type] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [anon_sym_struct] = ACTIONS(2512), + [anon_sym_union] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_else] = ACTIONS(2512), + [anon_sym_switch] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_do] = ACTIONS(2512), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_in] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_goto] = ACTIONS(2512), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_sizeof] = ACTIONS(2512), + [anon_sym___alignof__] = ACTIONS(2512), + [anon_sym___alignof] = ACTIONS(2512), + [anon_sym__alignof] = ACTIONS(2512), + [anon_sym_alignof] = ACTIONS(2512), + [anon_sym__Alignof] = ACTIONS(2512), + [anon_sym_offsetof] = ACTIONS(2512), + [anon_sym__Generic] = ACTIONS(2512), + [anon_sym_asm] = ACTIONS(2512), + [anon_sym___asm__] = ACTIONS(2512), + [anon_sym___asm] = ACTIONS(2512), + [sym_number_literal] = ACTIONS(2514), + [anon_sym_L_SQUOTE] = ACTIONS(2514), + [anon_sym_u_SQUOTE] = ACTIONS(2514), + [anon_sym_U_SQUOTE] = ACTIONS(2514), + [anon_sym_u8_SQUOTE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_AT] = ACTIONS(2512), + [anon_sym_DQUOTE] = ACTIONS(2514), + [anon_sym_L_DQUOTE] = ACTIONS(2514), + [anon_sym_u_DQUOTE] = ACTIONS(2514), + [anon_sym_U_DQUOTE] = ACTIONS(2514), + [anon_sym_u8_DQUOTE] = ACTIONS(2514), + [sym_true] = ACTIONS(2512), + [sym_false] = ACTIONS(2512), + [anon_sym_NULL] = ACTIONS(2512), + [anon_sym_nullptr] = ACTIONS(2512), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2512), + [anon_sym___typeof] = ACTIONS(2512), + [anon_sym_typeof] = ACTIONS(2512), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2512), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2512), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2512), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2512), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE] = ACTIONS(2512), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_API_AVAILABLE] = ACTIONS(2512), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_API_DEPRECATED] = ACTIONS(2512), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2512), + [anon_sym___deprecated_msg] = ACTIONS(2512), + [anon_sym___deprecated_enum_msg] = ACTIONS(2512), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2512), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2512), + [anon_sym_ATtry] = ACTIONS(2514), + [anon_sym___try] = ACTIONS(2512), + [anon_sym_ATthrow] = ACTIONS(2514), + [anon_sym_ATselector] = ACTIONS(2514), + [anon_sym_ATavailable] = ACTIONS(2514), + [anon_sym___builtin_available] = ACTIONS(2512), + [anon_sym_va_arg] = ACTIONS(2512), + [anon_sym_ATencode] = ACTIONS(2514), + [anon_sym_ATsynchronized] = ACTIONS(2514), + [anon_sym_BOOL] = ACTIONS(2512), + [anon_sym_IMP] = ACTIONS(2512), + [anon_sym_SEL] = ACTIONS(2512), + [anon_sym_Class] = ACTIONS(2512), + [anon_sym_id] = ACTIONS(2512), + }, + [1126] = { + [sym_identifier] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(2352), + [anon_sym_BANG] = ACTIONS(2352), + [anon_sym_TILDE] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2350), + [anon_sym_STAR] = ACTIONS(2352), + [anon_sym_CARET] = ACTIONS(2352), + [anon_sym_AMP] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2352), + [anon_sym___extension__] = ACTIONS(2350), + [anon_sym_typedef] = ACTIONS(2350), + [anon_sym_extern] = ACTIONS(2350), + [anon_sym___attribute__] = ACTIONS(2350), + [anon_sym___attribute] = ACTIONS(2350), + [anon_sym_noreturn] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2352), + [anon_sym___declspec] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2352), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(2350), + [anon_sym_ATautoreleasepool] = ACTIONS(2352), + [anon_sym_auto] = ACTIONS(2350), + [anon_sym_register] = ACTIONS(2350), + [anon_sym_inline] = ACTIONS(2350), + [anon_sym___inline] = ACTIONS(2350), + [anon_sym___inline__] = ACTIONS(2350), + [anon_sym___forceinline] = ACTIONS(2350), + [anon_sym_thread_local] = ACTIONS(2350), + [anon_sym___thread] = ACTIONS(2350), + [anon_sym_CG_EXTERN] = ACTIONS(2350), + [anon_sym_CG_INLINE] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2350), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2350), + [anon_sym_IBOutlet] = ACTIONS(2350), + [anon_sym_IBInspectable] = ACTIONS(2350), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2350), + [anon_sym_NS_INLINE] = ACTIONS(2350), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2350), + [anon_sym_OBJC_EXPORT] = ACTIONS(2350), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2350), + [anon_sym_const] = ACTIONS(2350), + [anon_sym_constexpr] = ACTIONS(2350), + [anon_sym_volatile] = ACTIONS(2350), + [anon_sym_restrict] = ACTIONS(2350), + [anon_sym___restrict__] = ACTIONS(2350), + [anon_sym__Atomic] = ACTIONS(2350), + [anon_sym__Noreturn] = ACTIONS(2350), + [anon_sym__Nonnull] = ACTIONS(2350), + [anon_sym_nullable] = ACTIONS(2350), + [anon_sym__Complex] = ACTIONS(2350), + [anon_sym__Nullable] = ACTIONS(2350), + [anon_sym__Nullable_result] = ACTIONS(2350), + [anon_sym__Null_unspecified] = ACTIONS(2350), + [anon_sym___autoreleasing] = ACTIONS(2350), + [anon_sym___block] = ACTIONS(2350), + [anon_sym___bridge] = ACTIONS(2350), + [anon_sym___bridge_retained] = ACTIONS(2350), + [anon_sym___bridge_transfer] = ACTIONS(2350), + [anon_sym___complex] = ACTIONS(2350), + [anon_sym___const] = ACTIONS(2350), + [anon_sym___imag] = ACTIONS(2350), + [anon_sym___kindof] = ACTIONS(2350), + [anon_sym___nonnull] = ACTIONS(2350), + [anon_sym___nullable] = ACTIONS(2350), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2350), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2350), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2350), + [anon_sym___real] = ACTIONS(2350), + [anon_sym___strong] = ACTIONS(2350), + [anon_sym___unsafe_unretained] = ACTIONS(2350), + [anon_sym___unused] = ACTIONS(2350), + [anon_sym___weak] = ACTIONS(2350), + [anon_sym_alignas] = ACTIONS(2350), + [anon_sym__Alignas] = ACTIONS(2350), + [sym_primitive_type] = ACTIONS(2350), + [anon_sym_enum] = ACTIONS(2350), + [anon_sym_struct] = ACTIONS(2350), + [anon_sym_union] = ACTIONS(2350), + [anon_sym_if] = ACTIONS(2350), + [anon_sym_else] = ACTIONS(2350), + [anon_sym_switch] = ACTIONS(2350), + [anon_sym_while] = ACTIONS(2350), + [anon_sym_do] = ACTIONS(2350), + [anon_sym_for] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_return] = ACTIONS(2350), + [anon_sym_break] = ACTIONS(2350), + [anon_sym_continue] = ACTIONS(2350), + [anon_sym_goto] = ACTIONS(2350), + [anon_sym_DASH_DASH] = ACTIONS(2352), + [anon_sym_PLUS_PLUS] = ACTIONS(2352), + [anon_sym_sizeof] = ACTIONS(2350), + [anon_sym___alignof__] = ACTIONS(2350), + [anon_sym___alignof] = ACTIONS(2350), + [anon_sym__alignof] = ACTIONS(2350), + [anon_sym_alignof] = ACTIONS(2350), + [anon_sym__Alignof] = ACTIONS(2350), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_asm] = ACTIONS(2350), + [anon_sym___asm__] = ACTIONS(2350), + [anon_sym___asm] = ACTIONS(2350), + [sym_number_literal] = ACTIONS(2352), + [anon_sym_L_SQUOTE] = ACTIONS(2352), + [anon_sym_u_SQUOTE] = ACTIONS(2352), + [anon_sym_U_SQUOTE] = ACTIONS(2352), + [anon_sym_u8_SQUOTE] = ACTIONS(2352), + [anon_sym_SQUOTE] = ACTIONS(2352), + [anon_sym_AT] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2352), + [anon_sym_L_DQUOTE] = ACTIONS(2352), + [anon_sym_u_DQUOTE] = ACTIONS(2352), + [anon_sym_U_DQUOTE] = ACTIONS(2352), + [anon_sym_u8_DQUOTE] = ACTIONS(2352), + [sym_true] = ACTIONS(2350), + [sym_false] = ACTIONS(2350), + [anon_sym_NULL] = ACTIONS(2350), + [anon_sym_nullptr] = ACTIONS(2350), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2350), + [anon_sym___typeof] = ACTIONS(2350), + [anon_sym_typeof] = ACTIONS(2350), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2350), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2350), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2350), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2350), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE] = ACTIONS(2350), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_API_AVAILABLE] = ACTIONS(2350), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_API_DEPRECATED] = ACTIONS(2350), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2350), + [anon_sym___deprecated_msg] = ACTIONS(2350), + [anon_sym___deprecated_enum_msg] = ACTIONS(2350), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2350), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2350), + [anon_sym_ATtry] = ACTIONS(2352), + [anon_sym___try] = ACTIONS(2350), + [anon_sym_ATthrow] = ACTIONS(2352), + [anon_sym_ATselector] = ACTIONS(2352), + [anon_sym_ATavailable] = ACTIONS(2352), + [anon_sym___builtin_available] = ACTIONS(2350), + [anon_sym_va_arg] = ACTIONS(2350), + [anon_sym_ATencode] = ACTIONS(2352), + [anon_sym_ATsynchronized] = ACTIONS(2352), + [anon_sym_BOOL] = ACTIONS(2350), + [anon_sym_IMP] = ACTIONS(2350), + [anon_sym_SEL] = ACTIONS(2350), + [anon_sym_Class] = ACTIONS(2350), + [anon_sym_id] = ACTIONS(2350), + }, + [1127] = { + [sym_identifier] = ACTIONS(2490), + [anon_sym_LPAREN2] = ACTIONS(2492), + [anon_sym_BANG] = ACTIONS(2492), + [anon_sym_TILDE] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2490), + [anon_sym_PLUS] = ACTIONS(2490), + [anon_sym_STAR] = ACTIONS(2492), + [anon_sym_CARET] = ACTIONS(2492), + [anon_sym_AMP] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym___extension__] = ACTIONS(2490), + [anon_sym_typedef] = ACTIONS(2490), + [anon_sym_extern] = ACTIONS(2490), + [anon_sym___attribute__] = ACTIONS(2490), + [anon_sym___attribute] = ACTIONS(2490), + [anon_sym_noreturn] = ACTIONS(2490), + [anon_sym_LBRACK] = ACTIONS(2492), + [anon_sym___declspec] = ACTIONS(2490), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_signed] = ACTIONS(2490), + [anon_sym_unsigned] = ACTIONS(2490), + [anon_sym_long] = ACTIONS(2490), + [anon_sym_short] = ACTIONS(2490), + [anon_sym_static] = ACTIONS(2490), + [anon_sym_ATautoreleasepool] = ACTIONS(2492), + [anon_sym_auto] = ACTIONS(2490), + [anon_sym_register] = ACTIONS(2490), + [anon_sym_inline] = ACTIONS(2490), + [anon_sym___inline] = ACTIONS(2490), + [anon_sym___inline__] = ACTIONS(2490), + [anon_sym___forceinline] = ACTIONS(2490), + [anon_sym_thread_local] = ACTIONS(2490), + [anon_sym___thread] = ACTIONS(2490), + [anon_sym_CG_EXTERN] = ACTIONS(2490), + [anon_sym_CG_INLINE] = ACTIONS(2490), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2490), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2490), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2490), + [anon_sym_IBOutlet] = ACTIONS(2490), + [anon_sym_IBInspectable] = ACTIONS(2490), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2490), + [anon_sym_NS_INLINE] = ACTIONS(2490), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2490), + [anon_sym_OBJC_EXPORT] = ACTIONS(2490), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2490), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(2490), + [anon_sym_constexpr] = ACTIONS(2490), + [anon_sym_volatile] = ACTIONS(2490), + [anon_sym_restrict] = ACTIONS(2490), + [anon_sym___restrict__] = ACTIONS(2490), + [anon_sym__Atomic] = ACTIONS(2490), + [anon_sym__Noreturn] = ACTIONS(2490), + [anon_sym__Nonnull] = ACTIONS(2490), + [anon_sym_nullable] = ACTIONS(2490), + [anon_sym__Complex] = ACTIONS(2490), + [anon_sym__Nullable] = ACTIONS(2490), + [anon_sym__Nullable_result] = ACTIONS(2490), + [anon_sym__Null_unspecified] = ACTIONS(2490), + [anon_sym___autoreleasing] = ACTIONS(2490), + [anon_sym___block] = ACTIONS(2490), + [anon_sym___bridge] = ACTIONS(2490), + [anon_sym___bridge_retained] = ACTIONS(2490), + [anon_sym___bridge_transfer] = ACTIONS(2490), + [anon_sym___complex] = ACTIONS(2490), + [anon_sym___const] = ACTIONS(2490), + [anon_sym___imag] = ACTIONS(2490), + [anon_sym___kindof] = ACTIONS(2490), + [anon_sym___nonnull] = ACTIONS(2490), + [anon_sym___nullable] = ACTIONS(2490), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2490), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2490), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2490), + [anon_sym___real] = ACTIONS(2490), + [anon_sym___strong] = ACTIONS(2490), + [anon_sym___unsafe_unretained] = ACTIONS(2490), + [anon_sym___unused] = ACTIONS(2490), + [anon_sym___weak] = ACTIONS(2490), + [anon_sym_alignas] = ACTIONS(2490), + [anon_sym__Alignas] = ACTIONS(2490), + [sym_primitive_type] = ACTIONS(2490), + [anon_sym_enum] = ACTIONS(2490), + [anon_sym_struct] = ACTIONS(2490), + [anon_sym_union] = ACTIONS(2490), + [anon_sym_if] = ACTIONS(2490), + [anon_sym_else] = ACTIONS(2490), + [anon_sym_switch] = ACTIONS(2490), + [anon_sym_while] = ACTIONS(2490), + [anon_sym_do] = ACTIONS(2490), + [anon_sym_for] = ACTIONS(2490), + [anon_sym_in] = ACTIONS(2490), + [anon_sym_return] = ACTIONS(2490), + [anon_sym_break] = ACTIONS(2490), + [anon_sym_continue] = ACTIONS(2490), + [anon_sym_goto] = ACTIONS(2490), + [anon_sym_DASH_DASH] = ACTIONS(2492), + [anon_sym_PLUS_PLUS] = ACTIONS(2492), + [anon_sym_sizeof] = ACTIONS(2490), + [anon_sym___alignof__] = ACTIONS(2490), + [anon_sym___alignof] = ACTIONS(2490), + [anon_sym__alignof] = ACTIONS(2490), + [anon_sym_alignof] = ACTIONS(2490), + [anon_sym__Alignof] = ACTIONS(2490), + [anon_sym_offsetof] = ACTIONS(2490), + [anon_sym__Generic] = ACTIONS(2490), + [anon_sym_asm] = ACTIONS(2490), + [anon_sym___asm__] = ACTIONS(2490), + [anon_sym___asm] = ACTIONS(2490), + [sym_number_literal] = ACTIONS(2492), + [anon_sym_L_SQUOTE] = ACTIONS(2492), + [anon_sym_u_SQUOTE] = ACTIONS(2492), + [anon_sym_U_SQUOTE] = ACTIONS(2492), + [anon_sym_u8_SQUOTE] = ACTIONS(2492), + [anon_sym_SQUOTE] = ACTIONS(2492), + [anon_sym_AT] = ACTIONS(2490), + [anon_sym_DQUOTE] = ACTIONS(2492), + [anon_sym_L_DQUOTE] = ACTIONS(2492), + [anon_sym_u_DQUOTE] = ACTIONS(2492), + [anon_sym_U_DQUOTE] = ACTIONS(2492), + [anon_sym_u8_DQUOTE] = ACTIONS(2492), + [sym_true] = ACTIONS(2490), + [sym_false] = ACTIONS(2490), + [anon_sym_NULL] = ACTIONS(2490), + [anon_sym_nullptr] = ACTIONS(2490), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2490), + [anon_sym___typeof] = ACTIONS(2490), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2490), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2490), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2490), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2490), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2490), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2490), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2490), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2490), + [anon_sym_NS_AVAILABLE] = ACTIONS(2490), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2490), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_API_AVAILABLE] = ACTIONS(2490), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_API_DEPRECATED] = ACTIONS(2490), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2490), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2490), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2490), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2490), + [anon_sym___deprecated_msg] = ACTIONS(2490), + [anon_sym___deprecated_enum_msg] = ACTIONS(2490), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2490), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2490), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2490), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2490), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2490), + [anon_sym_ATtry] = ACTIONS(2492), + [anon_sym___try] = ACTIONS(2490), + [anon_sym_ATthrow] = ACTIONS(2492), + [anon_sym_ATselector] = ACTIONS(2492), + [anon_sym_ATavailable] = ACTIONS(2492), + [anon_sym___builtin_available] = ACTIONS(2490), + [anon_sym_va_arg] = ACTIONS(2490), + [anon_sym_ATencode] = ACTIONS(2492), + [anon_sym_ATsynchronized] = ACTIONS(2492), + [anon_sym_BOOL] = ACTIONS(2490), + [anon_sym_IMP] = ACTIONS(2490), + [anon_sym_SEL] = ACTIONS(2490), + [anon_sym_Class] = ACTIONS(2490), + [anon_sym_id] = ACTIONS(2490), + }, + [1128] = { + [sym_identifier] = ACTIONS(2494), + [anon_sym_LPAREN2] = ACTIONS(2496), + [anon_sym_BANG] = ACTIONS(2496), + [anon_sym_TILDE] = ACTIONS(2496), + [anon_sym_DASH] = ACTIONS(2494), + [anon_sym_PLUS] = ACTIONS(2494), + [anon_sym_STAR] = ACTIONS(2496), + [anon_sym_CARET] = ACTIONS(2496), + [anon_sym_AMP] = ACTIONS(2496), + [anon_sym_SEMI] = ACTIONS(2496), + [anon_sym___extension__] = ACTIONS(2494), + [anon_sym_typedef] = ACTIONS(2494), + [anon_sym_extern] = ACTIONS(2494), + [anon_sym___attribute__] = ACTIONS(2494), + [anon_sym___attribute] = ACTIONS(2494), + [anon_sym_noreturn] = ACTIONS(2494), + [anon_sym_LBRACK] = ACTIONS(2496), + [anon_sym___declspec] = ACTIONS(2494), + [anon_sym_LBRACE] = ACTIONS(2496), + [anon_sym_signed] = ACTIONS(2494), + [anon_sym_unsigned] = ACTIONS(2494), + [anon_sym_long] = ACTIONS(2494), + [anon_sym_short] = ACTIONS(2494), + [anon_sym_static] = ACTIONS(2494), + [anon_sym_ATautoreleasepool] = ACTIONS(2496), + [anon_sym_auto] = ACTIONS(2494), + [anon_sym_register] = ACTIONS(2494), + [anon_sym_inline] = ACTIONS(2494), + [anon_sym___inline] = ACTIONS(2494), + [anon_sym___inline__] = ACTIONS(2494), + [anon_sym___forceinline] = ACTIONS(2494), + [anon_sym_thread_local] = ACTIONS(2494), + [anon_sym___thread] = ACTIONS(2494), + [anon_sym_CG_EXTERN] = ACTIONS(2494), + [anon_sym_CG_INLINE] = ACTIONS(2494), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2494), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2494), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2494), + [anon_sym_IBOutlet] = ACTIONS(2494), + [anon_sym_IBInspectable] = ACTIONS(2494), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2494), + [anon_sym_NS_INLINE] = ACTIONS(2494), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2494), + [anon_sym_OBJC_EXPORT] = ACTIONS(2494), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2494), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2494), + [anon_sym_const] = ACTIONS(2494), + [anon_sym_constexpr] = ACTIONS(2494), + [anon_sym_volatile] = ACTIONS(2494), + [anon_sym_restrict] = ACTIONS(2494), + [anon_sym___restrict__] = ACTIONS(2494), + [anon_sym__Atomic] = ACTIONS(2494), + [anon_sym__Noreturn] = ACTIONS(2494), + [anon_sym__Nonnull] = ACTIONS(2494), + [anon_sym_nullable] = ACTIONS(2494), + [anon_sym__Complex] = ACTIONS(2494), + [anon_sym__Nullable] = ACTIONS(2494), + [anon_sym__Nullable_result] = ACTIONS(2494), + [anon_sym__Null_unspecified] = ACTIONS(2494), + [anon_sym___autoreleasing] = ACTIONS(2494), + [anon_sym___block] = ACTIONS(2494), + [anon_sym___bridge] = ACTIONS(2494), + [anon_sym___bridge_retained] = ACTIONS(2494), + [anon_sym___bridge_transfer] = ACTIONS(2494), + [anon_sym___complex] = ACTIONS(2494), + [anon_sym___const] = ACTIONS(2494), + [anon_sym___imag] = ACTIONS(2494), + [anon_sym___kindof] = ACTIONS(2494), + [anon_sym___nonnull] = ACTIONS(2494), + [anon_sym___nullable] = ACTIONS(2494), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2494), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2494), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2494), + [anon_sym___real] = ACTIONS(2494), + [anon_sym___strong] = ACTIONS(2494), + [anon_sym___unsafe_unretained] = ACTIONS(2494), + [anon_sym___unused] = ACTIONS(2494), + [anon_sym___weak] = ACTIONS(2494), + [anon_sym_alignas] = ACTIONS(2494), + [anon_sym__Alignas] = ACTIONS(2494), + [sym_primitive_type] = ACTIONS(2494), + [anon_sym_enum] = ACTIONS(2494), + [anon_sym_struct] = ACTIONS(2494), + [anon_sym_union] = ACTIONS(2494), + [anon_sym_if] = ACTIONS(2494), + [anon_sym_else] = ACTIONS(2494), + [anon_sym_switch] = ACTIONS(2494), + [anon_sym_while] = ACTIONS(2494), + [anon_sym_do] = ACTIONS(2494), + [anon_sym_for] = ACTIONS(2494), + [anon_sym_in] = ACTIONS(2494), + [anon_sym_return] = ACTIONS(2494), + [anon_sym_break] = ACTIONS(2494), + [anon_sym_continue] = ACTIONS(2494), + [anon_sym_goto] = ACTIONS(2494), + [anon_sym_DASH_DASH] = ACTIONS(2496), + [anon_sym_PLUS_PLUS] = ACTIONS(2496), + [anon_sym_sizeof] = ACTIONS(2494), + [anon_sym___alignof__] = ACTIONS(2494), + [anon_sym___alignof] = ACTIONS(2494), + [anon_sym__alignof] = ACTIONS(2494), + [anon_sym_alignof] = ACTIONS(2494), + [anon_sym__Alignof] = ACTIONS(2494), + [anon_sym_offsetof] = ACTIONS(2494), + [anon_sym__Generic] = ACTIONS(2494), + [anon_sym_asm] = ACTIONS(2494), + [anon_sym___asm__] = ACTIONS(2494), + [anon_sym___asm] = ACTIONS(2494), + [sym_number_literal] = ACTIONS(2496), + [anon_sym_L_SQUOTE] = ACTIONS(2496), + [anon_sym_u_SQUOTE] = ACTIONS(2496), + [anon_sym_U_SQUOTE] = ACTIONS(2496), + [anon_sym_u8_SQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2496), + [anon_sym_AT] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_L_DQUOTE] = ACTIONS(2496), + [anon_sym_u_DQUOTE] = ACTIONS(2496), + [anon_sym_U_DQUOTE] = ACTIONS(2496), + [anon_sym_u8_DQUOTE] = ACTIONS(2496), + [sym_true] = ACTIONS(2494), + [sym_false] = ACTIONS(2494), + [anon_sym_NULL] = ACTIONS(2494), + [anon_sym_nullptr] = ACTIONS(2494), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2494), + [anon_sym___typeof] = ACTIONS(2494), + [anon_sym_typeof] = ACTIONS(2494), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2494), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2494), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2494), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2494), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2494), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2494), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2494), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2494), + [anon_sym_NS_AVAILABLE] = ACTIONS(2494), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2494), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_API_AVAILABLE] = ACTIONS(2494), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_API_DEPRECATED] = ACTIONS(2494), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2494), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2494), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2494), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2494), + [anon_sym___deprecated_msg] = ACTIONS(2494), + [anon_sym___deprecated_enum_msg] = ACTIONS(2494), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2494), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2494), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2494), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2494), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2494), + [anon_sym_ATtry] = ACTIONS(2496), + [anon_sym___try] = ACTIONS(2494), + [anon_sym_ATthrow] = ACTIONS(2496), + [anon_sym_ATselector] = ACTIONS(2496), + [anon_sym_ATavailable] = ACTIONS(2496), + [anon_sym___builtin_available] = ACTIONS(2494), + [anon_sym_va_arg] = ACTIONS(2494), + [anon_sym_ATencode] = ACTIONS(2496), + [anon_sym_ATsynchronized] = ACTIONS(2496), + [anon_sym_BOOL] = ACTIONS(2494), + [anon_sym_IMP] = ACTIONS(2494), + [anon_sym_SEL] = ACTIONS(2494), + [anon_sym_Class] = ACTIONS(2494), + [anon_sym_id] = ACTIONS(2494), + }, + [1129] = { + [sym_identifier] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [1130] = { + [sym_identifier] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [1131] = { + [sym_identifier] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_STAR] = ACTIONS(2430), + [anon_sym_CARET] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_ATautoreleasepool] = ACTIONS(2430), + [anon_sym_auto] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_CG_EXTERN] = ACTIONS(2428), + [anon_sym_CG_INLINE] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2428), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2428), + [anon_sym_IBOutlet] = ACTIONS(2428), + [anon_sym_IBInspectable] = ACTIONS(2428), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2428), + [anon_sym_NS_INLINE] = ACTIONS(2428), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2428), + [anon_sym_OBJC_EXPORT] = ACTIONS(2428), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_nullable] = ACTIONS(2428), + [anon_sym__Complex] = ACTIONS(2428), + [anon_sym__Nullable] = ACTIONS(2428), + [anon_sym__Nullable_result] = ACTIONS(2428), + [anon_sym__Null_unspecified] = ACTIONS(2428), + [anon_sym___autoreleasing] = ACTIONS(2428), + [anon_sym___block] = ACTIONS(2428), + [anon_sym___bridge] = ACTIONS(2428), + [anon_sym___bridge_retained] = ACTIONS(2428), + [anon_sym___bridge_transfer] = ACTIONS(2428), + [anon_sym___complex] = ACTIONS(2428), + [anon_sym___const] = ACTIONS(2428), + [anon_sym___imag] = ACTIONS(2428), + [anon_sym___kindof] = ACTIONS(2428), + [anon_sym___nonnull] = ACTIONS(2428), + [anon_sym___nullable] = ACTIONS(2428), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2428), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2428), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2428), + [anon_sym___real] = ACTIONS(2428), + [anon_sym___strong] = ACTIONS(2428), + [anon_sym___unsafe_unretained] = ACTIONS(2428), + [anon_sym___unused] = ACTIONS(2428), + [anon_sym___weak] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_else] = ACTIONS(2428), + [anon_sym_switch] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_do] = ACTIONS(2428), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_in] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_goto] = ACTIONS(2428), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_sizeof] = ACTIONS(2428), + [anon_sym___alignof__] = ACTIONS(2428), + [anon_sym___alignof] = ACTIONS(2428), + [anon_sym__alignof] = ACTIONS(2428), + [anon_sym_alignof] = ACTIONS(2428), + [anon_sym__Alignof] = ACTIONS(2428), + [anon_sym_offsetof] = ACTIONS(2428), + [anon_sym__Generic] = ACTIONS(2428), + [anon_sym_asm] = ACTIONS(2428), + [anon_sym___asm__] = ACTIONS(2428), + [anon_sym___asm] = ACTIONS(2428), + [sym_number_literal] = ACTIONS(2430), + [anon_sym_L_SQUOTE] = ACTIONS(2430), + [anon_sym_u_SQUOTE] = ACTIONS(2430), + [anon_sym_U_SQUOTE] = ACTIONS(2430), + [anon_sym_u8_SQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_AT] = ACTIONS(2428), + [anon_sym_DQUOTE] = ACTIONS(2430), + [anon_sym_L_DQUOTE] = ACTIONS(2430), + [anon_sym_u_DQUOTE] = ACTIONS(2430), + [anon_sym_U_DQUOTE] = ACTIONS(2430), + [anon_sym_u8_DQUOTE] = ACTIONS(2430), + [sym_true] = ACTIONS(2428), + [sym_false] = ACTIONS(2428), + [anon_sym_NULL] = ACTIONS(2428), + [anon_sym_nullptr] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2428), + [anon_sym___typeof] = ACTIONS(2428), + [anon_sym_typeof] = ACTIONS(2428), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2428), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2428), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2428), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2428), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE] = ACTIONS(2428), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_API_AVAILABLE] = ACTIONS(2428), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_API_DEPRECATED] = ACTIONS(2428), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2428), + [anon_sym___deprecated_msg] = ACTIONS(2428), + [anon_sym___deprecated_enum_msg] = ACTIONS(2428), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2428), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2428), + [anon_sym_ATtry] = ACTIONS(2430), + [anon_sym___try] = ACTIONS(2428), + [anon_sym_ATthrow] = ACTIONS(2430), + [anon_sym_ATselector] = ACTIONS(2430), + [anon_sym_ATavailable] = ACTIONS(2430), + [anon_sym___builtin_available] = ACTIONS(2428), + [anon_sym_va_arg] = ACTIONS(2428), + [anon_sym_ATencode] = ACTIONS(2430), + [anon_sym_ATsynchronized] = ACTIONS(2430), + [anon_sym_BOOL] = ACTIONS(2428), + [anon_sym_IMP] = ACTIONS(2428), + [anon_sym_SEL] = ACTIONS(2428), + [anon_sym_Class] = ACTIONS(2428), + [anon_sym_id] = ACTIONS(2428), + }, + [1132] = { + [sym_identifier] = ACTIONS(2432), + [anon_sym_LPAREN2] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym___extension__] = ACTIONS(2432), + [anon_sym_typedef] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym___attribute__] = ACTIONS(2432), + [anon_sym___attribute] = ACTIONS(2432), + [anon_sym_noreturn] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym___declspec] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_signed] = ACTIONS(2432), + [anon_sym_unsigned] = ACTIONS(2432), + [anon_sym_long] = ACTIONS(2432), + [anon_sym_short] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_ATautoreleasepool] = ACTIONS(2434), + [anon_sym_auto] = ACTIONS(2432), + [anon_sym_register] = ACTIONS(2432), + [anon_sym_inline] = ACTIONS(2432), + [anon_sym___inline] = ACTIONS(2432), + [anon_sym___inline__] = ACTIONS(2432), + [anon_sym___forceinline] = ACTIONS(2432), + [anon_sym_thread_local] = ACTIONS(2432), + [anon_sym___thread] = ACTIONS(2432), + [anon_sym_CG_EXTERN] = ACTIONS(2432), + [anon_sym_CG_INLINE] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2432), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2432), + [anon_sym_IBOutlet] = ACTIONS(2432), + [anon_sym_IBInspectable] = ACTIONS(2432), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2432), + [anon_sym_NS_INLINE] = ACTIONS(2432), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2432), + [anon_sym_OBJC_EXPORT] = ACTIONS(2432), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_constexpr] = ACTIONS(2432), + [anon_sym_volatile] = ACTIONS(2432), + [anon_sym_restrict] = ACTIONS(2432), + [anon_sym___restrict__] = ACTIONS(2432), + [anon_sym__Atomic] = ACTIONS(2432), + [anon_sym__Noreturn] = ACTIONS(2432), + [anon_sym__Nonnull] = ACTIONS(2432), + [anon_sym_nullable] = ACTIONS(2432), + [anon_sym__Complex] = ACTIONS(2432), + [anon_sym__Nullable] = ACTIONS(2432), + [anon_sym__Nullable_result] = ACTIONS(2432), + [anon_sym__Null_unspecified] = ACTIONS(2432), + [anon_sym___autoreleasing] = ACTIONS(2432), + [anon_sym___block] = ACTIONS(2432), + [anon_sym___bridge] = ACTIONS(2432), + [anon_sym___bridge_retained] = ACTIONS(2432), + [anon_sym___bridge_transfer] = ACTIONS(2432), + [anon_sym___complex] = ACTIONS(2432), + [anon_sym___const] = ACTIONS(2432), + [anon_sym___imag] = ACTIONS(2432), + [anon_sym___kindof] = ACTIONS(2432), + [anon_sym___nonnull] = ACTIONS(2432), + [anon_sym___nullable] = ACTIONS(2432), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2432), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2432), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2432), + [anon_sym___real] = ACTIONS(2432), + [anon_sym___strong] = ACTIONS(2432), + [anon_sym___unsafe_unretained] = ACTIONS(2432), + [anon_sym___unused] = ACTIONS(2432), + [anon_sym___weak] = ACTIONS(2432), + [anon_sym_alignas] = ACTIONS(2432), + [anon_sym__Alignas] = ACTIONS(2432), + [sym_primitive_type] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_else] = ACTIONS(2432), + [anon_sym_switch] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_in] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_goto] = ACTIONS(2432), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_sizeof] = ACTIONS(2432), + [anon_sym___alignof__] = ACTIONS(2432), + [anon_sym___alignof] = ACTIONS(2432), + [anon_sym__alignof] = ACTIONS(2432), + [anon_sym_alignof] = ACTIONS(2432), + [anon_sym__Alignof] = ACTIONS(2432), + [anon_sym_offsetof] = ACTIONS(2432), + [anon_sym__Generic] = ACTIONS(2432), + [anon_sym_asm] = ACTIONS(2432), + [anon_sym___asm__] = ACTIONS(2432), + [anon_sym___asm] = ACTIONS(2432), + [sym_number_literal] = ACTIONS(2434), + [anon_sym_L_SQUOTE] = ACTIONS(2434), + [anon_sym_u_SQUOTE] = ACTIONS(2434), + [anon_sym_U_SQUOTE] = ACTIONS(2434), + [anon_sym_u8_SQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_AT] = ACTIONS(2432), + [anon_sym_DQUOTE] = ACTIONS(2434), + [anon_sym_L_DQUOTE] = ACTIONS(2434), + [anon_sym_u_DQUOTE] = ACTIONS(2434), + [anon_sym_U_DQUOTE] = ACTIONS(2434), + [anon_sym_u8_DQUOTE] = ACTIONS(2434), + [sym_true] = ACTIONS(2432), + [sym_false] = ACTIONS(2432), + [anon_sym_NULL] = ACTIONS(2432), + [anon_sym_nullptr] = ACTIONS(2432), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2432), + [anon_sym___typeof] = ACTIONS(2432), + [anon_sym_typeof] = ACTIONS(2432), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2432), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2432), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2432), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2432), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE] = ACTIONS(2432), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_API_AVAILABLE] = ACTIONS(2432), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_API_DEPRECATED] = ACTIONS(2432), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2432), + [anon_sym___deprecated_msg] = ACTIONS(2432), + [anon_sym___deprecated_enum_msg] = ACTIONS(2432), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2432), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2432), + [anon_sym_ATtry] = ACTIONS(2434), + [anon_sym___try] = ACTIONS(2432), + [anon_sym_ATthrow] = ACTIONS(2434), + [anon_sym_ATselector] = ACTIONS(2434), + [anon_sym_ATavailable] = ACTIONS(2434), + [anon_sym___builtin_available] = ACTIONS(2432), + [anon_sym_va_arg] = ACTIONS(2432), + [anon_sym_ATencode] = ACTIONS(2434), + [anon_sym_ATsynchronized] = ACTIONS(2434), + [anon_sym_BOOL] = ACTIONS(2432), + [anon_sym_IMP] = ACTIONS(2432), + [anon_sym_SEL] = ACTIONS(2432), + [anon_sym_Class] = ACTIONS(2432), + [anon_sym_id] = ACTIONS(2432), + }, + [1133] = { + [sym_identifier] = ACTIONS(2498), + [anon_sym_LPAREN2] = ACTIONS(2500), + [anon_sym_BANG] = ACTIONS(2500), + [anon_sym_TILDE] = ACTIONS(2500), + [anon_sym_DASH] = ACTIONS(2498), + [anon_sym_PLUS] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(2500), + [anon_sym_CARET] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(2500), + [anon_sym_SEMI] = ACTIONS(2500), + [anon_sym___extension__] = ACTIONS(2498), + [anon_sym_typedef] = ACTIONS(2498), + [anon_sym_extern] = ACTIONS(2498), + [anon_sym___attribute__] = ACTIONS(2498), + [anon_sym___attribute] = ACTIONS(2498), + [anon_sym_noreturn] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2500), + [anon_sym___declspec] = ACTIONS(2498), + [anon_sym_LBRACE] = ACTIONS(2500), + [anon_sym_signed] = ACTIONS(2498), + [anon_sym_unsigned] = ACTIONS(2498), + [anon_sym_long] = ACTIONS(2498), + [anon_sym_short] = ACTIONS(2498), + [anon_sym_static] = ACTIONS(2498), + [anon_sym_ATautoreleasepool] = ACTIONS(2500), + [anon_sym_auto] = ACTIONS(2498), + [anon_sym_register] = ACTIONS(2498), + [anon_sym_inline] = ACTIONS(2498), + [anon_sym___inline] = ACTIONS(2498), + [anon_sym___inline__] = ACTIONS(2498), + [anon_sym___forceinline] = ACTIONS(2498), + [anon_sym_thread_local] = ACTIONS(2498), + [anon_sym___thread] = ACTIONS(2498), + [anon_sym_CG_EXTERN] = ACTIONS(2498), + [anon_sym_CG_INLINE] = ACTIONS(2498), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2498), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2498), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2498), + [anon_sym_IBOutlet] = ACTIONS(2498), + [anon_sym_IBInspectable] = ACTIONS(2498), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2498), + [anon_sym_NS_INLINE] = ACTIONS(2498), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2498), + [anon_sym_OBJC_EXPORT] = ACTIONS(2498), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2498), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2498), + [anon_sym_const] = ACTIONS(2498), + [anon_sym_constexpr] = ACTIONS(2498), + [anon_sym_volatile] = ACTIONS(2498), + [anon_sym_restrict] = ACTIONS(2498), + [anon_sym___restrict__] = ACTIONS(2498), + [anon_sym__Atomic] = ACTIONS(2498), + [anon_sym__Noreturn] = ACTIONS(2498), + [anon_sym__Nonnull] = ACTIONS(2498), + [anon_sym_nullable] = ACTIONS(2498), + [anon_sym__Complex] = ACTIONS(2498), + [anon_sym__Nullable] = ACTIONS(2498), + [anon_sym__Nullable_result] = ACTIONS(2498), + [anon_sym__Null_unspecified] = ACTIONS(2498), + [anon_sym___autoreleasing] = ACTIONS(2498), + [anon_sym___block] = ACTIONS(2498), + [anon_sym___bridge] = ACTIONS(2498), + [anon_sym___bridge_retained] = ACTIONS(2498), + [anon_sym___bridge_transfer] = ACTIONS(2498), + [anon_sym___complex] = ACTIONS(2498), + [anon_sym___const] = ACTIONS(2498), + [anon_sym___imag] = ACTIONS(2498), + [anon_sym___kindof] = ACTIONS(2498), + [anon_sym___nonnull] = ACTIONS(2498), + [anon_sym___nullable] = ACTIONS(2498), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2498), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2498), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2498), + [anon_sym___real] = ACTIONS(2498), + [anon_sym___strong] = ACTIONS(2498), + [anon_sym___unsafe_unretained] = ACTIONS(2498), + [anon_sym___unused] = ACTIONS(2498), + [anon_sym___weak] = ACTIONS(2498), + [anon_sym_alignas] = ACTIONS(2498), + [anon_sym__Alignas] = ACTIONS(2498), + [sym_primitive_type] = ACTIONS(2498), + [anon_sym_enum] = ACTIONS(2498), + [anon_sym_struct] = ACTIONS(2498), + [anon_sym_union] = ACTIONS(2498), + [anon_sym_if] = ACTIONS(2498), + [anon_sym_else] = ACTIONS(2498), + [anon_sym_switch] = ACTIONS(2498), + [anon_sym_while] = ACTIONS(2498), + [anon_sym_do] = ACTIONS(2498), + [anon_sym_for] = ACTIONS(2498), + [anon_sym_in] = ACTIONS(2498), + [anon_sym_return] = ACTIONS(2498), + [anon_sym_break] = ACTIONS(2498), + [anon_sym_continue] = ACTIONS(2498), + [anon_sym_goto] = ACTIONS(2498), + [anon_sym_DASH_DASH] = ACTIONS(2500), + [anon_sym_PLUS_PLUS] = ACTIONS(2500), + [anon_sym_sizeof] = ACTIONS(2498), + [anon_sym___alignof__] = ACTIONS(2498), + [anon_sym___alignof] = ACTIONS(2498), + [anon_sym__alignof] = ACTIONS(2498), + [anon_sym_alignof] = ACTIONS(2498), + [anon_sym__Alignof] = ACTIONS(2498), + [anon_sym_offsetof] = ACTIONS(2498), + [anon_sym__Generic] = ACTIONS(2498), + [anon_sym_asm] = ACTIONS(2498), + [anon_sym___asm__] = ACTIONS(2498), + [anon_sym___asm] = ACTIONS(2498), + [sym_number_literal] = ACTIONS(2500), + [anon_sym_L_SQUOTE] = ACTIONS(2500), + [anon_sym_u_SQUOTE] = ACTIONS(2500), + [anon_sym_U_SQUOTE] = ACTIONS(2500), + [anon_sym_u8_SQUOTE] = ACTIONS(2500), + [anon_sym_SQUOTE] = ACTIONS(2500), + [anon_sym_AT] = ACTIONS(2498), + [anon_sym_DQUOTE] = ACTIONS(2500), + [anon_sym_L_DQUOTE] = ACTIONS(2500), + [anon_sym_u_DQUOTE] = ACTIONS(2500), + [anon_sym_U_DQUOTE] = ACTIONS(2500), + [anon_sym_u8_DQUOTE] = ACTIONS(2500), + [sym_true] = ACTIONS(2498), + [sym_false] = ACTIONS(2498), + [anon_sym_NULL] = ACTIONS(2498), + [anon_sym_nullptr] = ACTIONS(2498), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2498), + [anon_sym___typeof] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(2498), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2498), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2498), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2498), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2498), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2498), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2498), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2498), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2498), + [anon_sym_NS_AVAILABLE] = ACTIONS(2498), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2498), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_API_AVAILABLE] = ACTIONS(2498), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_API_DEPRECATED] = ACTIONS(2498), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2498), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2498), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2498), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2498), + [anon_sym___deprecated_msg] = ACTIONS(2498), + [anon_sym___deprecated_enum_msg] = ACTIONS(2498), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2498), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2498), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2498), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2498), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2498), + [anon_sym_ATtry] = ACTIONS(2500), + [anon_sym___try] = ACTIONS(2498), + [anon_sym_ATthrow] = ACTIONS(2500), + [anon_sym_ATselector] = ACTIONS(2500), + [anon_sym_ATavailable] = ACTIONS(2500), + [anon_sym___builtin_available] = ACTIONS(2498), + [anon_sym_va_arg] = ACTIONS(2498), + [anon_sym_ATencode] = ACTIONS(2500), + [anon_sym_ATsynchronized] = ACTIONS(2500), + [anon_sym_BOOL] = ACTIONS(2498), + [anon_sym_IMP] = ACTIONS(2498), + [anon_sym_SEL] = ACTIONS(2498), + [anon_sym_Class] = ACTIONS(2498), + [anon_sym_id] = ACTIONS(2498), + }, + [1134] = { + [sym_identifier] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_CARET] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_ATautoreleasepool] = ACTIONS(2426), + [anon_sym_auto] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_CG_EXTERN] = ACTIONS(2424), + [anon_sym_CG_INLINE] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2424), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2424), + [anon_sym_IBOutlet] = ACTIONS(2424), + [anon_sym_IBInspectable] = ACTIONS(2424), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2424), + [anon_sym_NS_INLINE] = ACTIONS(2424), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2424), + [anon_sym_OBJC_EXPORT] = ACTIONS(2424), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_nullable] = ACTIONS(2424), + [anon_sym__Complex] = ACTIONS(2424), + [anon_sym__Nullable] = ACTIONS(2424), + [anon_sym__Nullable_result] = ACTIONS(2424), + [anon_sym__Null_unspecified] = ACTIONS(2424), + [anon_sym___autoreleasing] = ACTIONS(2424), + [anon_sym___block] = ACTIONS(2424), + [anon_sym___bridge] = ACTIONS(2424), + [anon_sym___bridge_retained] = ACTIONS(2424), + [anon_sym___bridge_transfer] = ACTIONS(2424), + [anon_sym___complex] = ACTIONS(2424), + [anon_sym___const] = ACTIONS(2424), + [anon_sym___imag] = ACTIONS(2424), + [anon_sym___kindof] = ACTIONS(2424), + [anon_sym___nonnull] = ACTIONS(2424), + [anon_sym___nullable] = ACTIONS(2424), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2424), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2424), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2424), + [anon_sym___real] = ACTIONS(2424), + [anon_sym___strong] = ACTIONS(2424), + [anon_sym___unsafe_unretained] = ACTIONS(2424), + [anon_sym___unused] = ACTIONS(2424), + [anon_sym___weak] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_else] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_in] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_goto] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_sizeof] = ACTIONS(2424), + [anon_sym___alignof__] = ACTIONS(2424), + [anon_sym___alignof] = ACTIONS(2424), + [anon_sym__alignof] = ACTIONS(2424), + [anon_sym_alignof] = ACTIONS(2424), + [anon_sym__Alignof] = ACTIONS(2424), + [anon_sym_offsetof] = ACTIONS(2424), + [anon_sym__Generic] = ACTIONS(2424), + [anon_sym_asm] = ACTIONS(2424), + [anon_sym___asm__] = ACTIONS(2424), + [anon_sym___asm] = ACTIONS(2424), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_L_SQUOTE] = ACTIONS(2426), + [anon_sym_u_SQUOTE] = ACTIONS(2426), + [anon_sym_U_SQUOTE] = ACTIONS(2426), + [anon_sym_u8_SQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_AT] = ACTIONS(2424), + [anon_sym_DQUOTE] = ACTIONS(2426), + [anon_sym_L_DQUOTE] = ACTIONS(2426), + [anon_sym_u_DQUOTE] = ACTIONS(2426), + [anon_sym_U_DQUOTE] = ACTIONS(2426), + [anon_sym_u8_DQUOTE] = ACTIONS(2426), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [anon_sym_NULL] = ACTIONS(2424), + [anon_sym_nullptr] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2424), + [anon_sym___typeof] = ACTIONS(2424), + [anon_sym_typeof] = ACTIONS(2424), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2424), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2424), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2424), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2424), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE] = ACTIONS(2424), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_API_AVAILABLE] = ACTIONS(2424), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_API_DEPRECATED] = ACTIONS(2424), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2424), + [anon_sym___deprecated_msg] = ACTIONS(2424), + [anon_sym___deprecated_enum_msg] = ACTIONS(2424), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2424), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2424), + [anon_sym_ATtry] = ACTIONS(2426), + [anon_sym___try] = ACTIONS(2424), + [anon_sym_ATthrow] = ACTIONS(2426), + [anon_sym_ATselector] = ACTIONS(2426), + [anon_sym_ATavailable] = ACTIONS(2426), + [anon_sym___builtin_available] = ACTIONS(2424), + [anon_sym_va_arg] = ACTIONS(2424), + [anon_sym_ATencode] = ACTIONS(2426), + [anon_sym_ATsynchronized] = ACTIONS(2426), + [anon_sym_BOOL] = ACTIONS(2424), + [anon_sym_IMP] = ACTIONS(2424), + [anon_sym_SEL] = ACTIONS(2424), + [anon_sym_Class] = ACTIONS(2424), + [anon_sym_id] = ACTIONS(2424), + }, + [1135] = { + [sym_identifier] = ACTIONS(2408), + [anon_sym_LPAREN2] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2408), + [anon_sym_PLUS] = ACTIONS(2408), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_CARET] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym___extension__] = ACTIONS(2408), + [anon_sym_typedef] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym___attribute__] = ACTIONS(2408), + [anon_sym___attribute] = ACTIONS(2408), + [anon_sym_noreturn] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym___declspec] = ACTIONS(2408), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_signed] = ACTIONS(2408), + [anon_sym_unsigned] = ACTIONS(2408), + [anon_sym_long] = ACTIONS(2408), + [anon_sym_short] = ACTIONS(2408), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_ATautoreleasepool] = ACTIONS(2410), + [anon_sym_auto] = ACTIONS(2408), + [anon_sym_register] = ACTIONS(2408), + [anon_sym_inline] = ACTIONS(2408), + [anon_sym___inline] = ACTIONS(2408), + [anon_sym___inline__] = ACTIONS(2408), + [anon_sym___forceinline] = ACTIONS(2408), + [anon_sym_thread_local] = ACTIONS(2408), + [anon_sym___thread] = ACTIONS(2408), + [anon_sym_CG_EXTERN] = ACTIONS(2408), + [anon_sym_CG_INLINE] = ACTIONS(2408), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2408), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2408), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2408), + [anon_sym_IBOutlet] = ACTIONS(2408), + [anon_sym_IBInspectable] = ACTIONS(2408), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2408), + [anon_sym_NS_INLINE] = ACTIONS(2408), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2408), + [anon_sym_OBJC_EXPORT] = ACTIONS(2408), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2408), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_constexpr] = ACTIONS(2408), + [anon_sym_volatile] = ACTIONS(2408), + [anon_sym_restrict] = ACTIONS(2408), + [anon_sym___restrict__] = ACTIONS(2408), + [anon_sym__Atomic] = ACTIONS(2408), + [anon_sym__Noreturn] = ACTIONS(2408), + [anon_sym__Nonnull] = ACTIONS(2408), + [anon_sym_nullable] = ACTIONS(2408), + [anon_sym__Complex] = ACTIONS(2408), + [anon_sym__Nullable] = ACTIONS(2408), + [anon_sym__Nullable_result] = ACTIONS(2408), + [anon_sym__Null_unspecified] = ACTIONS(2408), + [anon_sym___autoreleasing] = ACTIONS(2408), + [anon_sym___block] = ACTIONS(2408), + [anon_sym___bridge] = ACTIONS(2408), + [anon_sym___bridge_retained] = ACTIONS(2408), + [anon_sym___bridge_transfer] = ACTIONS(2408), + [anon_sym___complex] = ACTIONS(2408), + [anon_sym___const] = ACTIONS(2408), + [anon_sym___imag] = ACTIONS(2408), + [anon_sym___kindof] = ACTIONS(2408), + [anon_sym___nonnull] = ACTIONS(2408), + [anon_sym___nullable] = ACTIONS(2408), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2408), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2408), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2408), + [anon_sym___real] = ACTIONS(2408), + [anon_sym___strong] = ACTIONS(2408), + [anon_sym___unsafe_unretained] = ACTIONS(2408), + [anon_sym___unused] = ACTIONS(2408), + [anon_sym___weak] = ACTIONS(2408), + [anon_sym_alignas] = ACTIONS(2408), + [anon_sym__Alignas] = ACTIONS(2408), + [sym_primitive_type] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_struct] = ACTIONS(2408), + [anon_sym_union] = ACTIONS(2408), + [anon_sym_if] = ACTIONS(2408), + [anon_sym_else] = ACTIONS(2408), + [anon_sym_switch] = ACTIONS(2408), + [anon_sym_while] = ACTIONS(2408), + [anon_sym_do] = ACTIONS(2408), + [anon_sym_for] = ACTIONS(2408), + [anon_sym_in] = ACTIONS(2408), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_break] = ACTIONS(2408), + [anon_sym_continue] = ACTIONS(2408), + [anon_sym_goto] = ACTIONS(2408), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_sizeof] = ACTIONS(2408), + [anon_sym___alignof__] = ACTIONS(2408), + [anon_sym___alignof] = ACTIONS(2408), + [anon_sym__alignof] = ACTIONS(2408), + [anon_sym_alignof] = ACTIONS(2408), + [anon_sym__Alignof] = ACTIONS(2408), + [anon_sym_offsetof] = ACTIONS(2408), + [anon_sym__Generic] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2410), + [anon_sym_u_SQUOTE] = ACTIONS(2410), + [anon_sym_U_SQUOTE] = ACTIONS(2410), + [anon_sym_u8_SQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(2408), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_L_DQUOTE] = ACTIONS(2410), + [anon_sym_u_DQUOTE] = ACTIONS(2410), + [anon_sym_U_DQUOTE] = ACTIONS(2410), + [anon_sym_u8_DQUOTE] = ACTIONS(2410), + [sym_true] = ACTIONS(2408), + [sym_false] = ACTIONS(2408), + [anon_sym_NULL] = ACTIONS(2408), + [anon_sym_nullptr] = ACTIONS(2408), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2408), + [anon_sym___typeof] = ACTIONS(2408), + [anon_sym_typeof] = ACTIONS(2408), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2408), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2408), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2408), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2408), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2408), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2408), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2408), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2408), + [anon_sym_NS_AVAILABLE] = ACTIONS(2408), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2408), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_API_AVAILABLE] = ACTIONS(2408), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_API_DEPRECATED] = ACTIONS(2408), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2408), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2408), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2408), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2408), + [anon_sym___deprecated_msg] = ACTIONS(2408), + [anon_sym___deprecated_enum_msg] = ACTIONS(2408), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2408), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2408), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2408), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2408), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2408), + [anon_sym_ATtry] = ACTIONS(2410), + [anon_sym___try] = ACTIONS(2408), + [anon_sym_ATthrow] = ACTIONS(2410), + [anon_sym_ATselector] = ACTIONS(2410), + [anon_sym_ATavailable] = ACTIONS(2410), + [anon_sym___builtin_available] = ACTIONS(2408), + [anon_sym_va_arg] = ACTIONS(2408), + [anon_sym_ATencode] = ACTIONS(2410), + [anon_sym_ATsynchronized] = ACTIONS(2410), + [anon_sym_BOOL] = ACTIONS(2408), + [anon_sym_IMP] = ACTIONS(2408), + [anon_sym_SEL] = ACTIONS(2408), + [anon_sym_Class] = ACTIONS(2408), + [anon_sym_id] = ACTIONS(2408), + }, + [1136] = { + [sym_identifier] = ACTIONS(2432), + [anon_sym_LPAREN2] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym___extension__] = ACTIONS(2432), + [anon_sym_typedef] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym___attribute__] = ACTIONS(2432), + [anon_sym___attribute] = ACTIONS(2432), + [anon_sym_noreturn] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym___declspec] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_signed] = ACTIONS(2432), + [anon_sym_unsigned] = ACTIONS(2432), + [anon_sym_long] = ACTIONS(2432), + [anon_sym_short] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_ATautoreleasepool] = ACTIONS(2434), + [anon_sym_auto] = ACTIONS(2432), + [anon_sym_register] = ACTIONS(2432), + [anon_sym_inline] = ACTIONS(2432), + [anon_sym___inline] = ACTIONS(2432), + [anon_sym___inline__] = ACTIONS(2432), + [anon_sym___forceinline] = ACTIONS(2432), + [anon_sym_thread_local] = ACTIONS(2432), + [anon_sym___thread] = ACTIONS(2432), + [anon_sym_CG_EXTERN] = ACTIONS(2432), + [anon_sym_CG_INLINE] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2432), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2432), + [anon_sym_IBOutlet] = ACTIONS(2432), + [anon_sym_IBInspectable] = ACTIONS(2432), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2432), + [anon_sym_NS_INLINE] = ACTIONS(2432), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2432), + [anon_sym_OBJC_EXPORT] = ACTIONS(2432), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_constexpr] = ACTIONS(2432), + [anon_sym_volatile] = ACTIONS(2432), + [anon_sym_restrict] = ACTIONS(2432), + [anon_sym___restrict__] = ACTIONS(2432), + [anon_sym__Atomic] = ACTIONS(2432), + [anon_sym__Noreturn] = ACTIONS(2432), + [anon_sym__Nonnull] = ACTIONS(2432), + [anon_sym_nullable] = ACTIONS(2432), + [anon_sym__Complex] = ACTIONS(2432), + [anon_sym__Nullable] = ACTIONS(2432), + [anon_sym__Nullable_result] = ACTIONS(2432), + [anon_sym__Null_unspecified] = ACTIONS(2432), + [anon_sym___autoreleasing] = ACTIONS(2432), + [anon_sym___block] = ACTIONS(2432), + [anon_sym___bridge] = ACTIONS(2432), + [anon_sym___bridge_retained] = ACTIONS(2432), + [anon_sym___bridge_transfer] = ACTIONS(2432), + [anon_sym___complex] = ACTIONS(2432), + [anon_sym___const] = ACTIONS(2432), + [anon_sym___imag] = ACTIONS(2432), + [anon_sym___kindof] = ACTIONS(2432), + [anon_sym___nonnull] = ACTIONS(2432), + [anon_sym___nullable] = ACTIONS(2432), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2432), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2432), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2432), + [anon_sym___real] = ACTIONS(2432), + [anon_sym___strong] = ACTIONS(2432), + [anon_sym___unsafe_unretained] = ACTIONS(2432), + [anon_sym___unused] = ACTIONS(2432), + [anon_sym___weak] = ACTIONS(2432), + [anon_sym_alignas] = ACTIONS(2432), + [anon_sym__Alignas] = ACTIONS(2432), + [sym_primitive_type] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_else] = ACTIONS(2432), + [anon_sym_switch] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_in] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_goto] = ACTIONS(2432), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_sizeof] = ACTIONS(2432), + [anon_sym___alignof__] = ACTIONS(2432), + [anon_sym___alignof] = ACTIONS(2432), + [anon_sym__alignof] = ACTIONS(2432), + [anon_sym_alignof] = ACTIONS(2432), + [anon_sym__Alignof] = ACTIONS(2432), + [anon_sym_offsetof] = ACTIONS(2432), + [anon_sym__Generic] = ACTIONS(2432), + [anon_sym_asm] = ACTIONS(2432), + [anon_sym___asm__] = ACTIONS(2432), + [anon_sym___asm] = ACTIONS(2432), + [sym_number_literal] = ACTIONS(2434), + [anon_sym_L_SQUOTE] = ACTIONS(2434), + [anon_sym_u_SQUOTE] = ACTIONS(2434), + [anon_sym_U_SQUOTE] = ACTIONS(2434), + [anon_sym_u8_SQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_AT] = ACTIONS(2432), + [anon_sym_DQUOTE] = ACTIONS(2434), + [anon_sym_L_DQUOTE] = ACTIONS(2434), + [anon_sym_u_DQUOTE] = ACTIONS(2434), + [anon_sym_U_DQUOTE] = ACTIONS(2434), + [anon_sym_u8_DQUOTE] = ACTIONS(2434), + [sym_true] = ACTIONS(2432), + [sym_false] = ACTIONS(2432), + [anon_sym_NULL] = ACTIONS(2432), + [anon_sym_nullptr] = ACTIONS(2432), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2432), + [anon_sym___typeof] = ACTIONS(2432), + [anon_sym_typeof] = ACTIONS(2432), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2432), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2432), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2432), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2432), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE] = ACTIONS(2432), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_API_AVAILABLE] = ACTIONS(2432), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_API_DEPRECATED] = ACTIONS(2432), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2432), + [anon_sym___deprecated_msg] = ACTIONS(2432), + [anon_sym___deprecated_enum_msg] = ACTIONS(2432), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2432), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2432), + [anon_sym_ATtry] = ACTIONS(2434), + [anon_sym___try] = ACTIONS(2432), + [anon_sym_ATthrow] = ACTIONS(2434), + [anon_sym_ATselector] = ACTIONS(2434), + [anon_sym_ATavailable] = ACTIONS(2434), + [anon_sym___builtin_available] = ACTIONS(2432), + [anon_sym_va_arg] = ACTIONS(2432), + [anon_sym_ATencode] = ACTIONS(2434), + [anon_sym_ATsynchronized] = ACTIONS(2434), + [anon_sym_BOOL] = ACTIONS(2432), + [anon_sym_IMP] = ACTIONS(2432), + [anon_sym_SEL] = ACTIONS(2432), + [anon_sym_Class] = ACTIONS(2432), + [anon_sym_id] = ACTIONS(2432), + }, + [1137] = { + [sym_identifier] = ACTIONS(2508), + [anon_sym_LPAREN2] = ACTIONS(2510), + [anon_sym_BANG] = ACTIONS(2510), + [anon_sym_TILDE] = ACTIONS(2510), + [anon_sym_DASH] = ACTIONS(2508), + [anon_sym_PLUS] = ACTIONS(2508), + [anon_sym_STAR] = ACTIONS(2510), + [anon_sym_CARET] = ACTIONS(2510), + [anon_sym_AMP] = ACTIONS(2510), + [anon_sym_SEMI] = ACTIONS(2510), + [anon_sym___extension__] = ACTIONS(2508), + [anon_sym_typedef] = ACTIONS(2508), + [anon_sym_extern] = ACTIONS(2508), + [anon_sym___attribute__] = ACTIONS(2508), + [anon_sym___attribute] = ACTIONS(2508), + [anon_sym_noreturn] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym___declspec] = ACTIONS(2508), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_signed] = ACTIONS(2508), + [anon_sym_unsigned] = ACTIONS(2508), + [anon_sym_long] = ACTIONS(2508), + [anon_sym_short] = ACTIONS(2508), + [anon_sym_static] = ACTIONS(2508), + [anon_sym_ATautoreleasepool] = ACTIONS(2510), + [anon_sym_auto] = ACTIONS(2508), + [anon_sym_register] = ACTIONS(2508), + [anon_sym_inline] = ACTIONS(2508), + [anon_sym___inline] = ACTIONS(2508), + [anon_sym___inline__] = ACTIONS(2508), + [anon_sym___forceinline] = ACTIONS(2508), + [anon_sym_thread_local] = ACTIONS(2508), + [anon_sym___thread] = ACTIONS(2508), + [anon_sym_CG_EXTERN] = ACTIONS(2508), + [anon_sym_CG_INLINE] = ACTIONS(2508), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2508), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2508), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2508), + [anon_sym_IBOutlet] = ACTIONS(2508), + [anon_sym_IBInspectable] = ACTIONS(2508), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2508), + [anon_sym_NS_INLINE] = ACTIONS(2508), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2508), + [anon_sym_OBJC_EXPORT] = ACTIONS(2508), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2508), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2508), + [anon_sym_const] = ACTIONS(2508), + [anon_sym_constexpr] = ACTIONS(2508), + [anon_sym_volatile] = ACTIONS(2508), + [anon_sym_restrict] = ACTIONS(2508), + [anon_sym___restrict__] = ACTIONS(2508), + [anon_sym__Atomic] = ACTIONS(2508), + [anon_sym__Noreturn] = ACTIONS(2508), + [anon_sym__Nonnull] = ACTIONS(2508), + [anon_sym_nullable] = ACTIONS(2508), + [anon_sym__Complex] = ACTIONS(2508), + [anon_sym__Nullable] = ACTIONS(2508), + [anon_sym__Nullable_result] = ACTIONS(2508), + [anon_sym__Null_unspecified] = ACTIONS(2508), + [anon_sym___autoreleasing] = ACTIONS(2508), + [anon_sym___block] = ACTIONS(2508), + [anon_sym___bridge] = ACTIONS(2508), + [anon_sym___bridge_retained] = ACTIONS(2508), + [anon_sym___bridge_transfer] = ACTIONS(2508), + [anon_sym___complex] = ACTIONS(2508), + [anon_sym___const] = ACTIONS(2508), + [anon_sym___imag] = ACTIONS(2508), + [anon_sym___kindof] = ACTIONS(2508), + [anon_sym___nonnull] = ACTIONS(2508), + [anon_sym___nullable] = ACTIONS(2508), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2508), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2508), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2508), + [anon_sym___real] = ACTIONS(2508), + [anon_sym___strong] = ACTIONS(2508), + [anon_sym___unsafe_unretained] = ACTIONS(2508), + [anon_sym___unused] = ACTIONS(2508), + [anon_sym___weak] = ACTIONS(2508), + [anon_sym_alignas] = ACTIONS(2508), + [anon_sym__Alignas] = ACTIONS(2508), + [sym_primitive_type] = ACTIONS(2508), + [anon_sym_enum] = ACTIONS(2508), + [anon_sym_struct] = ACTIONS(2508), + [anon_sym_union] = ACTIONS(2508), + [anon_sym_if] = ACTIONS(2508), + [anon_sym_else] = ACTIONS(2508), + [anon_sym_switch] = ACTIONS(2508), + [anon_sym_while] = ACTIONS(2508), + [anon_sym_do] = ACTIONS(2508), + [anon_sym_for] = ACTIONS(2508), + [anon_sym_in] = ACTIONS(2508), + [anon_sym_return] = ACTIONS(2508), + [anon_sym_break] = ACTIONS(2508), + [anon_sym_continue] = ACTIONS(2508), + [anon_sym_goto] = ACTIONS(2508), + [anon_sym_DASH_DASH] = ACTIONS(2510), + [anon_sym_PLUS_PLUS] = ACTIONS(2510), + [anon_sym_sizeof] = ACTIONS(2508), + [anon_sym___alignof__] = ACTIONS(2508), + [anon_sym___alignof] = ACTIONS(2508), + [anon_sym__alignof] = ACTIONS(2508), + [anon_sym_alignof] = ACTIONS(2508), + [anon_sym__Alignof] = ACTIONS(2508), + [anon_sym_offsetof] = ACTIONS(2508), + [anon_sym__Generic] = ACTIONS(2508), + [anon_sym_asm] = ACTIONS(2508), + [anon_sym___asm__] = ACTIONS(2508), + [anon_sym___asm] = ACTIONS(2508), + [sym_number_literal] = ACTIONS(2510), + [anon_sym_L_SQUOTE] = ACTIONS(2510), + [anon_sym_u_SQUOTE] = ACTIONS(2510), + [anon_sym_U_SQUOTE] = ACTIONS(2510), + [anon_sym_u8_SQUOTE] = ACTIONS(2510), + [anon_sym_SQUOTE] = ACTIONS(2510), + [anon_sym_AT] = ACTIONS(2508), + [anon_sym_DQUOTE] = ACTIONS(2510), + [anon_sym_L_DQUOTE] = ACTIONS(2510), + [anon_sym_u_DQUOTE] = ACTIONS(2510), + [anon_sym_U_DQUOTE] = ACTIONS(2510), + [anon_sym_u8_DQUOTE] = ACTIONS(2510), + [sym_true] = ACTIONS(2508), + [sym_false] = ACTIONS(2508), + [anon_sym_NULL] = ACTIONS(2508), + [anon_sym_nullptr] = ACTIONS(2508), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2508), + [anon_sym___typeof] = ACTIONS(2508), + [anon_sym_typeof] = ACTIONS(2508), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2508), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2508), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2508), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2508), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2508), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2508), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2508), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2508), + [anon_sym_NS_AVAILABLE] = ACTIONS(2508), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2508), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_API_AVAILABLE] = ACTIONS(2508), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_API_DEPRECATED] = ACTIONS(2508), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2508), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2508), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2508), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2508), + [anon_sym___deprecated_msg] = ACTIONS(2508), + [anon_sym___deprecated_enum_msg] = ACTIONS(2508), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2508), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2508), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2508), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2508), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2508), + [anon_sym_ATtry] = ACTIONS(2510), + [anon_sym___try] = ACTIONS(2508), + [anon_sym_ATthrow] = ACTIONS(2510), + [anon_sym_ATselector] = ACTIONS(2510), + [anon_sym_ATavailable] = ACTIONS(2510), + [anon_sym___builtin_available] = ACTIONS(2508), + [anon_sym_va_arg] = ACTIONS(2508), + [anon_sym_ATencode] = ACTIONS(2510), + [anon_sym_ATsynchronized] = ACTIONS(2510), + [anon_sym_BOOL] = ACTIONS(2508), + [anon_sym_IMP] = ACTIONS(2508), + [anon_sym_SEL] = ACTIONS(2508), + [anon_sym_Class] = ACTIONS(2508), + [anon_sym_id] = ACTIONS(2508), + }, + [1138] = { + [sym_identifier] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_STAR] = ACTIONS(2430), + [anon_sym_CARET] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_ATautoreleasepool] = ACTIONS(2430), + [anon_sym_auto] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_CG_EXTERN] = ACTIONS(2428), + [anon_sym_CG_INLINE] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2428), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2428), + [anon_sym_IBOutlet] = ACTIONS(2428), + [anon_sym_IBInspectable] = ACTIONS(2428), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2428), + [anon_sym_NS_INLINE] = ACTIONS(2428), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2428), + [anon_sym_OBJC_EXPORT] = ACTIONS(2428), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_nullable] = ACTIONS(2428), + [anon_sym__Complex] = ACTIONS(2428), + [anon_sym__Nullable] = ACTIONS(2428), + [anon_sym__Nullable_result] = ACTIONS(2428), + [anon_sym__Null_unspecified] = ACTIONS(2428), + [anon_sym___autoreleasing] = ACTIONS(2428), + [anon_sym___block] = ACTIONS(2428), + [anon_sym___bridge] = ACTIONS(2428), + [anon_sym___bridge_retained] = ACTIONS(2428), + [anon_sym___bridge_transfer] = ACTIONS(2428), + [anon_sym___complex] = ACTIONS(2428), + [anon_sym___const] = ACTIONS(2428), + [anon_sym___imag] = ACTIONS(2428), + [anon_sym___kindof] = ACTIONS(2428), + [anon_sym___nonnull] = ACTIONS(2428), + [anon_sym___nullable] = ACTIONS(2428), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2428), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2428), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2428), + [anon_sym___real] = ACTIONS(2428), + [anon_sym___strong] = ACTIONS(2428), + [anon_sym___unsafe_unretained] = ACTIONS(2428), + [anon_sym___unused] = ACTIONS(2428), + [anon_sym___weak] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_else] = ACTIONS(2428), + [anon_sym_switch] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_do] = ACTIONS(2428), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_in] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_goto] = ACTIONS(2428), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_sizeof] = ACTIONS(2428), + [anon_sym___alignof__] = ACTIONS(2428), + [anon_sym___alignof] = ACTIONS(2428), + [anon_sym__alignof] = ACTIONS(2428), + [anon_sym_alignof] = ACTIONS(2428), + [anon_sym__Alignof] = ACTIONS(2428), + [anon_sym_offsetof] = ACTIONS(2428), + [anon_sym__Generic] = ACTIONS(2428), + [anon_sym_asm] = ACTIONS(2428), + [anon_sym___asm__] = ACTIONS(2428), + [anon_sym___asm] = ACTIONS(2428), + [sym_number_literal] = ACTIONS(2430), + [anon_sym_L_SQUOTE] = ACTIONS(2430), + [anon_sym_u_SQUOTE] = ACTIONS(2430), + [anon_sym_U_SQUOTE] = ACTIONS(2430), + [anon_sym_u8_SQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_AT] = ACTIONS(2428), + [anon_sym_DQUOTE] = ACTIONS(2430), + [anon_sym_L_DQUOTE] = ACTIONS(2430), + [anon_sym_u_DQUOTE] = ACTIONS(2430), + [anon_sym_U_DQUOTE] = ACTIONS(2430), + [anon_sym_u8_DQUOTE] = ACTIONS(2430), + [sym_true] = ACTIONS(2428), + [sym_false] = ACTIONS(2428), + [anon_sym_NULL] = ACTIONS(2428), + [anon_sym_nullptr] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2428), + [anon_sym___typeof] = ACTIONS(2428), + [anon_sym_typeof] = ACTIONS(2428), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2428), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2428), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2428), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2428), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE] = ACTIONS(2428), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_API_AVAILABLE] = ACTIONS(2428), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_API_DEPRECATED] = ACTIONS(2428), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2428), + [anon_sym___deprecated_msg] = ACTIONS(2428), + [anon_sym___deprecated_enum_msg] = ACTIONS(2428), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2428), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2428), + [anon_sym_ATtry] = ACTIONS(2430), + [anon_sym___try] = ACTIONS(2428), + [anon_sym_ATthrow] = ACTIONS(2430), + [anon_sym_ATselector] = ACTIONS(2430), + [anon_sym_ATavailable] = ACTIONS(2430), + [anon_sym___builtin_available] = ACTIONS(2428), + [anon_sym_va_arg] = ACTIONS(2428), + [anon_sym_ATencode] = ACTIONS(2430), + [anon_sym_ATsynchronized] = ACTIONS(2430), + [anon_sym_BOOL] = ACTIONS(2428), + [anon_sym_IMP] = ACTIONS(2428), + [anon_sym_SEL] = ACTIONS(2428), + [anon_sym_Class] = ACTIONS(2428), + [anon_sym_id] = ACTIONS(2428), + }, + [1139] = { + [sym_identifier] = ACTIONS(2446), + [anon_sym_LPAREN2] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_TILDE] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_STAR] = ACTIONS(2448), + [anon_sym_CARET] = ACTIONS(2448), + [anon_sym_AMP] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym___extension__] = ACTIONS(2446), + [anon_sym_typedef] = ACTIONS(2446), + [anon_sym_extern] = ACTIONS(2446), + [anon_sym___attribute__] = ACTIONS(2446), + [anon_sym___attribute] = ACTIONS(2446), + [anon_sym_noreturn] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym___declspec] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_signed] = ACTIONS(2446), + [anon_sym_unsigned] = ACTIONS(2446), + [anon_sym_long] = ACTIONS(2446), + [anon_sym_short] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_ATautoreleasepool] = ACTIONS(2448), + [anon_sym_auto] = ACTIONS(2446), + [anon_sym_register] = ACTIONS(2446), + [anon_sym_inline] = ACTIONS(2446), + [anon_sym___inline] = ACTIONS(2446), + [anon_sym___inline__] = ACTIONS(2446), + [anon_sym___forceinline] = ACTIONS(2446), + [anon_sym_thread_local] = ACTIONS(2446), + [anon_sym___thread] = ACTIONS(2446), + [anon_sym_CG_EXTERN] = ACTIONS(2446), + [anon_sym_CG_INLINE] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2446), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2446), + [anon_sym_IBOutlet] = ACTIONS(2446), + [anon_sym_IBInspectable] = ACTIONS(2446), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2446), + [anon_sym_NS_INLINE] = ACTIONS(2446), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2446), + [anon_sym_OBJC_EXPORT] = ACTIONS(2446), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [anon_sym_constexpr] = ACTIONS(2446), + [anon_sym_volatile] = ACTIONS(2446), + [anon_sym_restrict] = ACTIONS(2446), + [anon_sym___restrict__] = ACTIONS(2446), + [anon_sym__Atomic] = ACTIONS(2446), + [anon_sym__Noreturn] = ACTIONS(2446), + [anon_sym__Nonnull] = ACTIONS(2446), + [anon_sym_nullable] = ACTIONS(2446), + [anon_sym__Complex] = ACTIONS(2446), + [anon_sym__Nullable] = ACTIONS(2446), + [anon_sym__Nullable_result] = ACTIONS(2446), + [anon_sym__Null_unspecified] = ACTIONS(2446), + [anon_sym___autoreleasing] = ACTIONS(2446), + [anon_sym___block] = ACTIONS(2446), + [anon_sym___bridge] = ACTIONS(2446), + [anon_sym___bridge_retained] = ACTIONS(2446), + [anon_sym___bridge_transfer] = ACTIONS(2446), + [anon_sym___complex] = ACTIONS(2446), + [anon_sym___const] = ACTIONS(2446), + [anon_sym___imag] = ACTIONS(2446), + [anon_sym___kindof] = ACTIONS(2446), + [anon_sym___nonnull] = ACTIONS(2446), + [anon_sym___nullable] = ACTIONS(2446), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2446), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2446), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2446), + [anon_sym___real] = ACTIONS(2446), + [anon_sym___strong] = ACTIONS(2446), + [anon_sym___unsafe_unretained] = ACTIONS(2446), + [anon_sym___unused] = ACTIONS(2446), + [anon_sym___weak] = ACTIONS(2446), + [anon_sym_alignas] = ACTIONS(2446), + [anon_sym__Alignas] = ACTIONS(2446), + [sym_primitive_type] = ACTIONS(2446), + [anon_sym_enum] = ACTIONS(2446), + [anon_sym_struct] = ACTIONS(2446), + [anon_sym_union] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2446), + [anon_sym_else] = ACTIONS(2446), + [anon_sym_switch] = ACTIONS(2446), + [anon_sym_while] = ACTIONS(2446), + [anon_sym_do] = ACTIONS(2446), + [anon_sym_for] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_return] = ACTIONS(2446), + [anon_sym_break] = ACTIONS(2446), + [anon_sym_continue] = ACTIONS(2446), + [anon_sym_goto] = ACTIONS(2446), + [anon_sym_DASH_DASH] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2448), + [anon_sym_sizeof] = ACTIONS(2446), + [anon_sym___alignof__] = ACTIONS(2446), + [anon_sym___alignof] = ACTIONS(2446), + [anon_sym__alignof] = ACTIONS(2446), + [anon_sym_alignof] = ACTIONS(2446), + [anon_sym__Alignof] = ACTIONS(2446), + [anon_sym_offsetof] = ACTIONS(2446), + [anon_sym__Generic] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(2446), + [anon_sym___asm__] = ACTIONS(2446), + [anon_sym___asm] = ACTIONS(2446), + [sym_number_literal] = ACTIONS(2448), + [anon_sym_L_SQUOTE] = ACTIONS(2448), + [anon_sym_u_SQUOTE] = ACTIONS(2448), + [anon_sym_U_SQUOTE] = ACTIONS(2448), + [anon_sym_u8_SQUOTE] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_L_DQUOTE] = ACTIONS(2448), + [anon_sym_u_DQUOTE] = ACTIONS(2448), + [anon_sym_U_DQUOTE] = ACTIONS(2448), + [anon_sym_u8_DQUOTE] = ACTIONS(2448), + [sym_true] = ACTIONS(2446), + [sym_false] = ACTIONS(2446), + [anon_sym_NULL] = ACTIONS(2446), + [anon_sym_nullptr] = ACTIONS(2446), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2446), + [anon_sym___typeof] = ACTIONS(2446), + [anon_sym_typeof] = ACTIONS(2446), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2446), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2446), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2446), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2446), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE] = ACTIONS(2446), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_API_AVAILABLE] = ACTIONS(2446), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_API_DEPRECATED] = ACTIONS(2446), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2446), + [anon_sym___deprecated_msg] = ACTIONS(2446), + [anon_sym___deprecated_enum_msg] = ACTIONS(2446), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2446), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2446), + [anon_sym_ATtry] = ACTIONS(2448), + [anon_sym___try] = ACTIONS(2446), + [anon_sym_ATthrow] = ACTIONS(2448), + [anon_sym_ATselector] = ACTIONS(2448), + [anon_sym_ATavailable] = ACTIONS(2448), + [anon_sym___builtin_available] = ACTIONS(2446), + [anon_sym_va_arg] = ACTIONS(2446), + [anon_sym_ATencode] = ACTIONS(2448), + [anon_sym_ATsynchronized] = ACTIONS(2448), + [anon_sym_BOOL] = ACTIONS(2446), + [anon_sym_IMP] = ACTIONS(2446), + [anon_sym_SEL] = ACTIONS(2446), + [anon_sym_Class] = ACTIONS(2446), + [anon_sym_id] = ACTIONS(2446), + }, + [1140] = { + [sym_identifier] = ACTIONS(2450), + [anon_sym_LPAREN2] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_CARET] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2452), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_ATautoreleasepool] = ACTIONS(2452), + [anon_sym_auto] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_CG_EXTERN] = ACTIONS(2450), + [anon_sym_CG_INLINE] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2450), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2450), + [anon_sym_IBOutlet] = ACTIONS(2450), + [anon_sym_IBInspectable] = ACTIONS(2450), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2450), + [anon_sym_NS_INLINE] = ACTIONS(2450), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2450), + [anon_sym_OBJC_EXPORT] = ACTIONS(2450), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_nullable] = ACTIONS(2450), + [anon_sym__Complex] = ACTIONS(2450), + [anon_sym__Nullable] = ACTIONS(2450), + [anon_sym__Nullable_result] = ACTIONS(2450), + [anon_sym__Null_unspecified] = ACTIONS(2450), + [anon_sym___autoreleasing] = ACTIONS(2450), + [anon_sym___block] = ACTIONS(2450), + [anon_sym___bridge] = ACTIONS(2450), + [anon_sym___bridge_retained] = ACTIONS(2450), + [anon_sym___bridge_transfer] = ACTIONS(2450), + [anon_sym___complex] = ACTIONS(2450), + [anon_sym___const] = ACTIONS(2450), + [anon_sym___imag] = ACTIONS(2450), + [anon_sym___kindof] = ACTIONS(2450), + [anon_sym___nonnull] = ACTIONS(2450), + [anon_sym___nullable] = ACTIONS(2450), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2450), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2450), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2450), + [anon_sym___real] = ACTIONS(2450), + [anon_sym___strong] = ACTIONS(2450), + [anon_sym___unsafe_unretained] = ACTIONS(2450), + [anon_sym___unused] = ACTIONS(2450), + [anon_sym___weak] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_else] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2450), + [anon_sym_while] = ACTIONS(2450), + [anon_sym_do] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_break] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_goto] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2452), + [anon_sym_sizeof] = ACTIONS(2450), + [anon_sym___alignof__] = ACTIONS(2450), + [anon_sym___alignof] = ACTIONS(2450), + [anon_sym__alignof] = ACTIONS(2450), + [anon_sym_alignof] = ACTIONS(2450), + [anon_sym__Alignof] = ACTIONS(2450), + [anon_sym_offsetof] = ACTIONS(2450), + [anon_sym__Generic] = ACTIONS(2450), + [anon_sym_asm] = ACTIONS(2450), + [anon_sym___asm__] = ACTIONS(2450), + [anon_sym___asm] = ACTIONS(2450), + [sym_number_literal] = ACTIONS(2452), + [anon_sym_L_SQUOTE] = ACTIONS(2452), + [anon_sym_u_SQUOTE] = ACTIONS(2452), + [anon_sym_U_SQUOTE] = ACTIONS(2452), + [anon_sym_u8_SQUOTE] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(2452), + [anon_sym_AT] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2452), + [anon_sym_L_DQUOTE] = ACTIONS(2452), + [anon_sym_u_DQUOTE] = ACTIONS(2452), + [anon_sym_U_DQUOTE] = ACTIONS(2452), + [anon_sym_u8_DQUOTE] = ACTIONS(2452), + [sym_true] = ACTIONS(2450), + [sym_false] = ACTIONS(2450), + [anon_sym_NULL] = ACTIONS(2450), + [anon_sym_nullptr] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2450), + [anon_sym___typeof] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2450), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2450), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2450), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2450), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE] = ACTIONS(2450), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_API_AVAILABLE] = ACTIONS(2450), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_API_DEPRECATED] = ACTIONS(2450), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2450), + [anon_sym___deprecated_msg] = ACTIONS(2450), + [anon_sym___deprecated_enum_msg] = ACTIONS(2450), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2450), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2450), + [anon_sym_ATtry] = ACTIONS(2452), + [anon_sym___try] = ACTIONS(2450), + [anon_sym_ATthrow] = ACTIONS(2452), + [anon_sym_ATselector] = ACTIONS(2452), + [anon_sym_ATavailable] = ACTIONS(2452), + [anon_sym___builtin_available] = ACTIONS(2450), + [anon_sym_va_arg] = ACTIONS(2450), + [anon_sym_ATencode] = ACTIONS(2452), + [anon_sym_ATsynchronized] = ACTIONS(2452), + [anon_sym_BOOL] = ACTIONS(2450), + [anon_sym_IMP] = ACTIONS(2450), + [anon_sym_SEL] = ACTIONS(2450), + [anon_sym_Class] = ACTIONS(2450), + [anon_sym_id] = ACTIONS(2450), + }, + [1141] = { + [sym_identifier] = ACTIONS(2454), + [anon_sym_LPAREN2] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_CARET] = ACTIONS(2456), + [anon_sym_AMP] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym___extension__] = ACTIONS(2454), + [anon_sym_typedef] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym___attribute__] = ACTIONS(2454), + [anon_sym___attribute] = ACTIONS(2454), + [anon_sym_noreturn] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym___declspec] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_signed] = ACTIONS(2454), + [anon_sym_unsigned] = ACTIONS(2454), + [anon_sym_long] = ACTIONS(2454), + [anon_sym_short] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_ATautoreleasepool] = ACTIONS(2456), + [anon_sym_auto] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_inline] = ACTIONS(2454), + [anon_sym___inline] = ACTIONS(2454), + [anon_sym___inline__] = ACTIONS(2454), + [anon_sym___forceinline] = ACTIONS(2454), + [anon_sym_thread_local] = ACTIONS(2454), + [anon_sym___thread] = ACTIONS(2454), + [anon_sym_CG_EXTERN] = ACTIONS(2454), + [anon_sym_CG_INLINE] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2454), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2454), + [anon_sym_IBOutlet] = ACTIONS(2454), + [anon_sym_IBInspectable] = ACTIONS(2454), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2454), + [anon_sym_NS_INLINE] = ACTIONS(2454), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2454), + [anon_sym_OBJC_EXPORT] = ACTIONS(2454), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_constexpr] = ACTIONS(2454), + [anon_sym_volatile] = ACTIONS(2454), + [anon_sym_restrict] = ACTIONS(2454), + [anon_sym___restrict__] = ACTIONS(2454), + [anon_sym__Atomic] = ACTIONS(2454), + [anon_sym__Noreturn] = ACTIONS(2454), + [anon_sym__Nonnull] = ACTIONS(2454), + [anon_sym_nullable] = ACTIONS(2454), + [anon_sym__Complex] = ACTIONS(2454), + [anon_sym__Nullable] = ACTIONS(2454), + [anon_sym__Nullable_result] = ACTIONS(2454), + [anon_sym__Null_unspecified] = ACTIONS(2454), + [anon_sym___autoreleasing] = ACTIONS(2454), + [anon_sym___block] = ACTIONS(2454), + [anon_sym___bridge] = ACTIONS(2454), + [anon_sym___bridge_retained] = ACTIONS(2454), + [anon_sym___bridge_transfer] = ACTIONS(2454), + [anon_sym___complex] = ACTIONS(2454), + [anon_sym___const] = ACTIONS(2454), + [anon_sym___imag] = ACTIONS(2454), + [anon_sym___kindof] = ACTIONS(2454), + [anon_sym___nonnull] = ACTIONS(2454), + [anon_sym___nullable] = ACTIONS(2454), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2454), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2454), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2454), + [anon_sym___real] = ACTIONS(2454), + [anon_sym___strong] = ACTIONS(2454), + [anon_sym___unsafe_unretained] = ACTIONS(2454), + [anon_sym___unused] = ACTIONS(2454), + [anon_sym___weak] = ACTIONS(2454), + [anon_sym_alignas] = ACTIONS(2454), + [anon_sym__Alignas] = ACTIONS(2454), + [sym_primitive_type] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2454), + [anon_sym_else] = ACTIONS(2454), + [anon_sym_switch] = ACTIONS(2454), + [anon_sym_while] = ACTIONS(2454), + [anon_sym_do] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_in] = ACTIONS(2454), + [anon_sym_return] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_goto] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_sizeof] = ACTIONS(2454), + [anon_sym___alignof__] = ACTIONS(2454), + [anon_sym___alignof] = ACTIONS(2454), + [anon_sym__alignof] = ACTIONS(2454), + [anon_sym_alignof] = ACTIONS(2454), + [anon_sym__Alignof] = ACTIONS(2454), + [anon_sym_offsetof] = ACTIONS(2454), + [anon_sym__Generic] = ACTIONS(2454), + [anon_sym_asm] = ACTIONS(2454), + [anon_sym___asm__] = ACTIONS(2454), + [anon_sym___asm] = ACTIONS(2454), + [sym_number_literal] = ACTIONS(2456), + [anon_sym_L_SQUOTE] = ACTIONS(2456), + [anon_sym_u_SQUOTE] = ACTIONS(2456), + [anon_sym_U_SQUOTE] = ACTIONS(2456), + [anon_sym_u8_SQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_L_DQUOTE] = ACTIONS(2456), + [anon_sym_u_DQUOTE] = ACTIONS(2456), + [anon_sym_U_DQUOTE] = ACTIONS(2456), + [anon_sym_u8_DQUOTE] = ACTIONS(2456), + [sym_true] = ACTIONS(2454), + [sym_false] = ACTIONS(2454), + [anon_sym_NULL] = ACTIONS(2454), + [anon_sym_nullptr] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2454), + [anon_sym___typeof] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(2454), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2454), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2454), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2454), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2454), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE] = ACTIONS(2454), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_API_AVAILABLE] = ACTIONS(2454), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_API_DEPRECATED] = ACTIONS(2454), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2454), + [anon_sym___deprecated_msg] = ACTIONS(2454), + [anon_sym___deprecated_enum_msg] = ACTIONS(2454), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2454), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2454), + [anon_sym_ATtry] = ACTIONS(2456), + [anon_sym___try] = ACTIONS(2454), + [anon_sym_ATthrow] = ACTIONS(2456), + [anon_sym_ATselector] = ACTIONS(2456), + [anon_sym_ATavailable] = ACTIONS(2456), + [anon_sym___builtin_available] = ACTIONS(2454), + [anon_sym_va_arg] = ACTIONS(2454), + [anon_sym_ATencode] = ACTIONS(2456), + [anon_sym_ATsynchronized] = ACTIONS(2456), + [anon_sym_BOOL] = ACTIONS(2454), + [anon_sym_IMP] = ACTIONS(2454), + [anon_sym_SEL] = ACTIONS(2454), + [anon_sym_Class] = ACTIONS(2454), + [anon_sym_id] = ACTIONS(2454), + }, + [1142] = { + [sym_identifier] = ACTIONS(2454), + [anon_sym_LPAREN2] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_CARET] = ACTIONS(2456), + [anon_sym_AMP] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym___extension__] = ACTIONS(2454), + [anon_sym_typedef] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym___attribute__] = ACTIONS(2454), + [anon_sym___attribute] = ACTIONS(2454), + [anon_sym_noreturn] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym___declspec] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_signed] = ACTIONS(2454), + [anon_sym_unsigned] = ACTIONS(2454), + [anon_sym_long] = ACTIONS(2454), + [anon_sym_short] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_ATautoreleasepool] = ACTIONS(2456), + [anon_sym_auto] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_inline] = ACTIONS(2454), + [anon_sym___inline] = ACTIONS(2454), + [anon_sym___inline__] = ACTIONS(2454), + [anon_sym___forceinline] = ACTIONS(2454), + [anon_sym_thread_local] = ACTIONS(2454), + [anon_sym___thread] = ACTIONS(2454), + [anon_sym_CG_EXTERN] = ACTIONS(2454), + [anon_sym_CG_INLINE] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2454), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2454), + [anon_sym_IBOutlet] = ACTIONS(2454), + [anon_sym_IBInspectable] = ACTIONS(2454), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2454), + [anon_sym_NS_INLINE] = ACTIONS(2454), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2454), + [anon_sym_OBJC_EXPORT] = ACTIONS(2454), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_constexpr] = ACTIONS(2454), + [anon_sym_volatile] = ACTIONS(2454), + [anon_sym_restrict] = ACTIONS(2454), + [anon_sym___restrict__] = ACTIONS(2454), + [anon_sym__Atomic] = ACTIONS(2454), + [anon_sym__Noreturn] = ACTIONS(2454), + [anon_sym__Nonnull] = ACTIONS(2454), + [anon_sym_nullable] = ACTIONS(2454), + [anon_sym__Complex] = ACTIONS(2454), + [anon_sym__Nullable] = ACTIONS(2454), + [anon_sym__Nullable_result] = ACTIONS(2454), + [anon_sym__Null_unspecified] = ACTIONS(2454), + [anon_sym___autoreleasing] = ACTIONS(2454), + [anon_sym___block] = ACTIONS(2454), + [anon_sym___bridge] = ACTIONS(2454), + [anon_sym___bridge_retained] = ACTIONS(2454), + [anon_sym___bridge_transfer] = ACTIONS(2454), + [anon_sym___complex] = ACTIONS(2454), + [anon_sym___const] = ACTIONS(2454), + [anon_sym___imag] = ACTIONS(2454), + [anon_sym___kindof] = ACTIONS(2454), + [anon_sym___nonnull] = ACTIONS(2454), + [anon_sym___nullable] = ACTIONS(2454), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2454), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2454), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2454), + [anon_sym___real] = ACTIONS(2454), + [anon_sym___strong] = ACTIONS(2454), + [anon_sym___unsafe_unretained] = ACTIONS(2454), + [anon_sym___unused] = ACTIONS(2454), + [anon_sym___weak] = ACTIONS(2454), + [anon_sym_alignas] = ACTIONS(2454), + [anon_sym__Alignas] = ACTIONS(2454), + [sym_primitive_type] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2454), + [anon_sym_else] = ACTIONS(2454), + [anon_sym_switch] = ACTIONS(2454), + [anon_sym_while] = ACTIONS(2454), + [anon_sym_do] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_in] = ACTIONS(2454), + [anon_sym_return] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_goto] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_sizeof] = ACTIONS(2454), + [anon_sym___alignof__] = ACTIONS(2454), + [anon_sym___alignof] = ACTIONS(2454), + [anon_sym__alignof] = ACTIONS(2454), + [anon_sym_alignof] = ACTIONS(2454), + [anon_sym__Alignof] = ACTIONS(2454), + [anon_sym_offsetof] = ACTIONS(2454), + [anon_sym__Generic] = ACTIONS(2454), + [anon_sym_asm] = ACTIONS(2454), + [anon_sym___asm__] = ACTIONS(2454), + [anon_sym___asm] = ACTIONS(2454), + [sym_number_literal] = ACTIONS(2456), + [anon_sym_L_SQUOTE] = ACTIONS(2456), + [anon_sym_u_SQUOTE] = ACTIONS(2456), + [anon_sym_U_SQUOTE] = ACTIONS(2456), + [anon_sym_u8_SQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_L_DQUOTE] = ACTIONS(2456), + [anon_sym_u_DQUOTE] = ACTIONS(2456), + [anon_sym_U_DQUOTE] = ACTIONS(2456), + [anon_sym_u8_DQUOTE] = ACTIONS(2456), + [sym_true] = ACTIONS(2454), + [sym_false] = ACTIONS(2454), + [anon_sym_NULL] = ACTIONS(2454), + [anon_sym_nullptr] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2454), + [anon_sym___typeof] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(2454), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2454), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2454), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2454), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2454), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE] = ACTIONS(2454), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_API_AVAILABLE] = ACTIONS(2454), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_API_DEPRECATED] = ACTIONS(2454), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2454), + [anon_sym___deprecated_msg] = ACTIONS(2454), + [anon_sym___deprecated_enum_msg] = ACTIONS(2454), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2454), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2454), + [anon_sym_ATtry] = ACTIONS(2456), + [anon_sym___try] = ACTIONS(2454), + [anon_sym_ATthrow] = ACTIONS(2456), + [anon_sym_ATselector] = ACTIONS(2456), + [anon_sym_ATavailable] = ACTIONS(2456), + [anon_sym___builtin_available] = ACTIONS(2454), + [anon_sym_va_arg] = ACTIONS(2454), + [anon_sym_ATencode] = ACTIONS(2456), + [anon_sym_ATsynchronized] = ACTIONS(2456), + [anon_sym_BOOL] = ACTIONS(2454), + [anon_sym_IMP] = ACTIONS(2454), + [anon_sym_SEL] = ACTIONS(2454), + [anon_sym_Class] = ACTIONS(2454), + [anon_sym_id] = ACTIONS(2454), + }, + [1143] = { + [sym_identifier] = ACTIONS(2970), + [anon_sym_LPAREN2] = ACTIONS(2972), + [anon_sym_BANG] = ACTIONS(2972), + [anon_sym_TILDE] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2970), + [anon_sym_STAR] = ACTIONS(2972), + [anon_sym_CARET] = ACTIONS(2972), + [anon_sym_AMP] = ACTIONS(2972), + [anon_sym_SEMI] = ACTIONS(2972), + [anon_sym___extension__] = ACTIONS(2970), + [anon_sym_extern] = ACTIONS(2970), + [anon_sym___attribute__] = ACTIONS(2970), + [anon_sym___attribute] = ACTIONS(2970), + [anon_sym_noreturn] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym___declspec] = ACTIONS(2970), + [anon_sym_LBRACE] = ACTIONS(2972), + [anon_sym_signed] = ACTIONS(2970), + [anon_sym_unsigned] = ACTIONS(2970), + [anon_sym_long] = ACTIONS(2970), + [anon_sym_short] = ACTIONS(2970), + [anon_sym_static] = ACTIONS(2970), + [anon_sym_ATautoreleasepool] = ACTIONS(2972), + [anon_sym_auto] = ACTIONS(2970), + [anon_sym_register] = ACTIONS(2970), + [anon_sym_inline] = ACTIONS(2970), + [anon_sym___inline] = ACTIONS(2970), + [anon_sym___inline__] = ACTIONS(2970), + [anon_sym___forceinline] = ACTIONS(2970), + [anon_sym_thread_local] = ACTIONS(2970), + [anon_sym___thread] = ACTIONS(2970), + [anon_sym_CG_EXTERN] = ACTIONS(2970), + [anon_sym_CG_INLINE] = ACTIONS(2970), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2970), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2970), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2970), + [anon_sym_IBOutlet] = ACTIONS(2970), + [anon_sym_IBInspectable] = ACTIONS(2970), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2970), + [anon_sym_NS_INLINE] = ACTIONS(2970), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2970), + [anon_sym_OBJC_EXPORT] = ACTIONS(2970), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2970), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2970), + [anon_sym_const] = ACTIONS(2970), + [anon_sym_constexpr] = ACTIONS(2970), + [anon_sym_volatile] = ACTIONS(2970), + [anon_sym_restrict] = ACTIONS(2970), + [anon_sym___restrict__] = ACTIONS(2970), + [anon_sym__Atomic] = ACTIONS(2970), + [anon_sym__Noreturn] = ACTIONS(2970), + [anon_sym__Nonnull] = ACTIONS(2970), + [anon_sym_nullable] = ACTIONS(2970), + [anon_sym__Complex] = ACTIONS(2970), + [anon_sym__Nullable] = ACTIONS(2970), + [anon_sym__Nullable_result] = ACTIONS(2970), + [anon_sym__Null_unspecified] = ACTIONS(2970), + [anon_sym___autoreleasing] = ACTIONS(2970), + [anon_sym___block] = ACTIONS(2970), + [anon_sym___bridge] = ACTIONS(2970), + [anon_sym___bridge_retained] = ACTIONS(2970), + [anon_sym___bridge_transfer] = ACTIONS(2970), + [anon_sym___complex] = ACTIONS(2970), + [anon_sym___const] = ACTIONS(2970), + [anon_sym___imag] = ACTIONS(2970), + [anon_sym___kindof] = ACTIONS(2970), + [anon_sym___nonnull] = ACTIONS(2970), + [anon_sym___nullable] = ACTIONS(2970), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2970), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2970), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2970), + [anon_sym___real] = ACTIONS(2970), + [anon_sym___strong] = ACTIONS(2970), + [anon_sym___unsafe_unretained] = ACTIONS(2970), + [anon_sym___unused] = ACTIONS(2970), + [anon_sym___weak] = ACTIONS(2970), + [anon_sym_alignas] = ACTIONS(2970), + [anon_sym__Alignas] = ACTIONS(2970), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_enum] = ACTIONS(2970), + [anon_sym_struct] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2970), + [anon_sym_case] = ACTIONS(2970), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2970), + [anon_sym_do] = ACTIONS(2970), + [anon_sym_for] = ACTIONS(2970), + [anon_sym_in] = ACTIONS(2970), + [anon_sym_return] = ACTIONS(2970), + [anon_sym_break] = ACTIONS(2970), + [anon_sym_continue] = ACTIONS(2970), + [anon_sym_goto] = ACTIONS(2970), + [anon_sym_DASH_DASH] = ACTIONS(2972), + [anon_sym_PLUS_PLUS] = ACTIONS(2972), + [anon_sym_sizeof] = ACTIONS(2970), + [anon_sym___alignof__] = ACTIONS(2970), + [anon_sym___alignof] = ACTIONS(2970), + [anon_sym__alignof] = ACTIONS(2970), + [anon_sym_alignof] = ACTIONS(2970), + [anon_sym__Alignof] = ACTIONS(2970), + [anon_sym_offsetof] = ACTIONS(2970), + [anon_sym__Generic] = ACTIONS(2970), + [anon_sym_asm] = ACTIONS(2970), + [anon_sym___asm__] = ACTIONS(2970), + [anon_sym___asm] = ACTIONS(2970), + [sym_number_literal] = ACTIONS(2972), + [anon_sym_L_SQUOTE] = ACTIONS(2972), + [anon_sym_u_SQUOTE] = ACTIONS(2972), + [anon_sym_U_SQUOTE] = ACTIONS(2972), + [anon_sym_u8_SQUOTE] = ACTIONS(2972), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_AT] = ACTIONS(2970), + [anon_sym_DQUOTE] = ACTIONS(2972), + [anon_sym_L_DQUOTE] = ACTIONS(2972), + [anon_sym_u_DQUOTE] = ACTIONS(2972), + [anon_sym_U_DQUOTE] = ACTIONS(2972), + [anon_sym_u8_DQUOTE] = ACTIONS(2972), + [sym_true] = ACTIONS(2970), + [sym_false] = ACTIONS(2970), + [anon_sym_NULL] = ACTIONS(2970), + [anon_sym_nullptr] = ACTIONS(2970), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2970), + [anon_sym___typeof] = ACTIONS(2970), + [anon_sym_typeof] = ACTIONS(2970), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2970), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2970), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2970), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2970), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2970), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2970), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2970), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2970), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2970), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2970), + [anon_sym_NS_AVAILABLE] = ACTIONS(2970), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2970), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2970), + [anon_sym_API_AVAILABLE] = ACTIONS(2970), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2970), + [anon_sym_API_DEPRECATED] = ACTIONS(2970), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2970), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2970), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2970), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2970), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2970), + [anon_sym___deprecated_msg] = ACTIONS(2970), + [anon_sym___deprecated_enum_msg] = ACTIONS(2970), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2970), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2970), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2970), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2970), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2970), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2970), + [anon_sym_ATtry] = ACTIONS(2972), + [anon_sym___try] = ACTIONS(2970), + [anon_sym_ATthrow] = ACTIONS(2972), + [anon_sym_ATselector] = ACTIONS(2972), + [anon_sym_ATavailable] = ACTIONS(2972), + [anon_sym___builtin_available] = ACTIONS(2970), + [anon_sym_va_arg] = ACTIONS(2970), + [anon_sym_ATencode] = ACTIONS(2972), + [anon_sym_ATsynchronized] = ACTIONS(2972), + [anon_sym_BOOL] = ACTIONS(2970), + [anon_sym_IMP] = ACTIONS(2970), + [anon_sym_SEL] = ACTIONS(2970), + [anon_sym_Class] = ACTIONS(2970), + [anon_sym_id] = ACTIONS(2970), + }, + [1144] = { + [sym_identifier] = ACTIONS(2446), + [anon_sym_LPAREN2] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_TILDE] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_STAR] = ACTIONS(2448), + [anon_sym_CARET] = ACTIONS(2448), + [anon_sym_AMP] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym___extension__] = ACTIONS(2446), + [anon_sym_typedef] = ACTIONS(2446), + [anon_sym_extern] = ACTIONS(2446), + [anon_sym___attribute__] = ACTIONS(2446), + [anon_sym___attribute] = ACTIONS(2446), + [anon_sym_noreturn] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym___declspec] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_signed] = ACTIONS(2446), + [anon_sym_unsigned] = ACTIONS(2446), + [anon_sym_long] = ACTIONS(2446), + [anon_sym_short] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_ATautoreleasepool] = ACTIONS(2448), + [anon_sym_auto] = ACTIONS(2446), + [anon_sym_register] = ACTIONS(2446), + [anon_sym_inline] = ACTIONS(2446), + [anon_sym___inline] = ACTIONS(2446), + [anon_sym___inline__] = ACTIONS(2446), + [anon_sym___forceinline] = ACTIONS(2446), + [anon_sym_thread_local] = ACTIONS(2446), + [anon_sym___thread] = ACTIONS(2446), + [anon_sym_CG_EXTERN] = ACTIONS(2446), + [anon_sym_CG_INLINE] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2446), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2446), + [anon_sym_IBOutlet] = ACTIONS(2446), + [anon_sym_IBInspectable] = ACTIONS(2446), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2446), + [anon_sym_NS_INLINE] = ACTIONS(2446), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2446), + [anon_sym_OBJC_EXPORT] = ACTIONS(2446), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [anon_sym_constexpr] = ACTIONS(2446), + [anon_sym_volatile] = ACTIONS(2446), + [anon_sym_restrict] = ACTIONS(2446), + [anon_sym___restrict__] = ACTIONS(2446), + [anon_sym__Atomic] = ACTIONS(2446), + [anon_sym__Noreturn] = ACTIONS(2446), + [anon_sym__Nonnull] = ACTIONS(2446), + [anon_sym_nullable] = ACTIONS(2446), + [anon_sym__Complex] = ACTIONS(2446), + [anon_sym__Nullable] = ACTIONS(2446), + [anon_sym__Nullable_result] = ACTIONS(2446), + [anon_sym__Null_unspecified] = ACTIONS(2446), + [anon_sym___autoreleasing] = ACTIONS(2446), + [anon_sym___block] = ACTIONS(2446), + [anon_sym___bridge] = ACTIONS(2446), + [anon_sym___bridge_retained] = ACTIONS(2446), + [anon_sym___bridge_transfer] = ACTIONS(2446), + [anon_sym___complex] = ACTIONS(2446), + [anon_sym___const] = ACTIONS(2446), + [anon_sym___imag] = ACTIONS(2446), + [anon_sym___kindof] = ACTIONS(2446), + [anon_sym___nonnull] = ACTIONS(2446), + [anon_sym___nullable] = ACTIONS(2446), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2446), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2446), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2446), + [anon_sym___real] = ACTIONS(2446), + [anon_sym___strong] = ACTIONS(2446), + [anon_sym___unsafe_unretained] = ACTIONS(2446), + [anon_sym___unused] = ACTIONS(2446), + [anon_sym___weak] = ACTIONS(2446), + [anon_sym_alignas] = ACTIONS(2446), + [anon_sym__Alignas] = ACTIONS(2446), + [sym_primitive_type] = ACTIONS(2446), + [anon_sym_enum] = ACTIONS(2446), + [anon_sym_struct] = ACTIONS(2446), + [anon_sym_union] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2446), + [anon_sym_else] = ACTIONS(2446), + [anon_sym_switch] = ACTIONS(2446), + [anon_sym_while] = ACTIONS(2446), + [anon_sym_do] = ACTIONS(2446), + [anon_sym_for] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_return] = ACTIONS(2446), + [anon_sym_break] = ACTIONS(2446), + [anon_sym_continue] = ACTIONS(2446), + [anon_sym_goto] = ACTIONS(2446), + [anon_sym_DASH_DASH] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2448), + [anon_sym_sizeof] = ACTIONS(2446), + [anon_sym___alignof__] = ACTIONS(2446), + [anon_sym___alignof] = ACTIONS(2446), + [anon_sym__alignof] = ACTIONS(2446), + [anon_sym_alignof] = ACTIONS(2446), + [anon_sym__Alignof] = ACTIONS(2446), + [anon_sym_offsetof] = ACTIONS(2446), + [anon_sym__Generic] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(2446), + [anon_sym___asm__] = ACTIONS(2446), + [anon_sym___asm] = ACTIONS(2446), + [sym_number_literal] = ACTIONS(2448), + [anon_sym_L_SQUOTE] = ACTIONS(2448), + [anon_sym_u_SQUOTE] = ACTIONS(2448), + [anon_sym_U_SQUOTE] = ACTIONS(2448), + [anon_sym_u8_SQUOTE] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_L_DQUOTE] = ACTIONS(2448), + [anon_sym_u_DQUOTE] = ACTIONS(2448), + [anon_sym_U_DQUOTE] = ACTIONS(2448), + [anon_sym_u8_DQUOTE] = ACTIONS(2448), + [sym_true] = ACTIONS(2446), + [sym_false] = ACTIONS(2446), + [anon_sym_NULL] = ACTIONS(2446), + [anon_sym_nullptr] = ACTIONS(2446), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2446), + [anon_sym___typeof] = ACTIONS(2446), + [anon_sym_typeof] = ACTIONS(2446), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2446), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2446), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2446), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2446), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE] = ACTIONS(2446), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_API_AVAILABLE] = ACTIONS(2446), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_API_DEPRECATED] = ACTIONS(2446), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2446), + [anon_sym___deprecated_msg] = ACTIONS(2446), + [anon_sym___deprecated_enum_msg] = ACTIONS(2446), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2446), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2446), + [anon_sym_ATtry] = ACTIONS(2448), + [anon_sym___try] = ACTIONS(2446), + [anon_sym_ATthrow] = ACTIONS(2448), + [anon_sym_ATselector] = ACTIONS(2448), + [anon_sym_ATavailable] = ACTIONS(2448), + [anon_sym___builtin_available] = ACTIONS(2446), + [anon_sym_va_arg] = ACTIONS(2446), + [anon_sym_ATencode] = ACTIONS(2448), + [anon_sym_ATsynchronized] = ACTIONS(2448), + [anon_sym_BOOL] = ACTIONS(2446), + [anon_sym_IMP] = ACTIONS(2446), + [anon_sym_SEL] = ACTIONS(2446), + [anon_sym_Class] = ACTIONS(2446), + [anon_sym_id] = ACTIONS(2446), + }, + [1145] = { + [sym_identifier] = ACTIONS(2450), + [anon_sym_LPAREN2] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_CARET] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2452), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_ATautoreleasepool] = ACTIONS(2452), + [anon_sym_auto] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_CG_EXTERN] = ACTIONS(2450), + [anon_sym_CG_INLINE] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2450), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2450), + [anon_sym_IBOutlet] = ACTIONS(2450), + [anon_sym_IBInspectable] = ACTIONS(2450), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2450), + [anon_sym_NS_INLINE] = ACTIONS(2450), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2450), + [anon_sym_OBJC_EXPORT] = ACTIONS(2450), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_nullable] = ACTIONS(2450), + [anon_sym__Complex] = ACTIONS(2450), + [anon_sym__Nullable] = ACTIONS(2450), + [anon_sym__Nullable_result] = ACTIONS(2450), + [anon_sym__Null_unspecified] = ACTIONS(2450), + [anon_sym___autoreleasing] = ACTIONS(2450), + [anon_sym___block] = ACTIONS(2450), + [anon_sym___bridge] = ACTIONS(2450), + [anon_sym___bridge_retained] = ACTIONS(2450), + [anon_sym___bridge_transfer] = ACTIONS(2450), + [anon_sym___complex] = ACTIONS(2450), + [anon_sym___const] = ACTIONS(2450), + [anon_sym___imag] = ACTIONS(2450), + [anon_sym___kindof] = ACTIONS(2450), + [anon_sym___nonnull] = ACTIONS(2450), + [anon_sym___nullable] = ACTIONS(2450), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2450), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2450), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2450), + [anon_sym___real] = ACTIONS(2450), + [anon_sym___strong] = ACTIONS(2450), + [anon_sym___unsafe_unretained] = ACTIONS(2450), + [anon_sym___unused] = ACTIONS(2450), + [anon_sym___weak] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_else] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2450), + [anon_sym_while] = ACTIONS(2450), + [anon_sym_do] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_break] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_goto] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2452), + [anon_sym_sizeof] = ACTIONS(2450), + [anon_sym___alignof__] = ACTIONS(2450), + [anon_sym___alignof] = ACTIONS(2450), + [anon_sym__alignof] = ACTIONS(2450), + [anon_sym_alignof] = ACTIONS(2450), + [anon_sym__Alignof] = ACTIONS(2450), + [anon_sym_offsetof] = ACTIONS(2450), + [anon_sym__Generic] = ACTIONS(2450), + [anon_sym_asm] = ACTIONS(2450), + [anon_sym___asm__] = ACTIONS(2450), + [anon_sym___asm] = ACTIONS(2450), + [sym_number_literal] = ACTIONS(2452), + [anon_sym_L_SQUOTE] = ACTIONS(2452), + [anon_sym_u_SQUOTE] = ACTIONS(2452), + [anon_sym_U_SQUOTE] = ACTIONS(2452), + [anon_sym_u8_SQUOTE] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(2452), + [anon_sym_AT] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2452), + [anon_sym_L_DQUOTE] = ACTIONS(2452), + [anon_sym_u_DQUOTE] = ACTIONS(2452), + [anon_sym_U_DQUOTE] = ACTIONS(2452), + [anon_sym_u8_DQUOTE] = ACTIONS(2452), + [sym_true] = ACTIONS(2450), + [sym_false] = ACTIONS(2450), + [anon_sym_NULL] = ACTIONS(2450), + [anon_sym_nullptr] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2450), + [anon_sym___typeof] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2450), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2450), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2450), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2450), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE] = ACTIONS(2450), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_API_AVAILABLE] = ACTIONS(2450), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_API_DEPRECATED] = ACTIONS(2450), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2450), + [anon_sym___deprecated_msg] = ACTIONS(2450), + [anon_sym___deprecated_enum_msg] = ACTIONS(2450), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2450), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2450), + [anon_sym_ATtry] = ACTIONS(2452), + [anon_sym___try] = ACTIONS(2450), + [anon_sym_ATthrow] = ACTIONS(2452), + [anon_sym_ATselector] = ACTIONS(2452), + [anon_sym_ATavailable] = ACTIONS(2452), + [anon_sym___builtin_available] = ACTIONS(2450), + [anon_sym_va_arg] = ACTIONS(2450), + [anon_sym_ATencode] = ACTIONS(2452), + [anon_sym_ATsynchronized] = ACTIONS(2452), + [anon_sym_BOOL] = ACTIONS(2450), + [anon_sym_IMP] = ACTIONS(2450), + [anon_sym_SEL] = ACTIONS(2450), + [anon_sym_Class] = ACTIONS(2450), + [anon_sym_id] = ACTIONS(2450), + }, + [1146] = { + [sym_identifier] = ACTIONS(2462), + [anon_sym_LPAREN2] = ACTIONS(2464), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_CARET] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym___extension__] = ACTIONS(2462), + [anon_sym_typedef] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym___attribute__] = ACTIONS(2462), + [anon_sym___attribute] = ACTIONS(2462), + [anon_sym_noreturn] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2464), + [anon_sym___declspec] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_signed] = ACTIONS(2462), + [anon_sym_unsigned] = ACTIONS(2462), + [anon_sym_long] = ACTIONS(2462), + [anon_sym_short] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_ATautoreleasepool] = ACTIONS(2464), + [anon_sym_auto] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_inline] = ACTIONS(2462), + [anon_sym___inline] = ACTIONS(2462), + [anon_sym___inline__] = ACTIONS(2462), + [anon_sym___forceinline] = ACTIONS(2462), + [anon_sym_thread_local] = ACTIONS(2462), + [anon_sym___thread] = ACTIONS(2462), + [anon_sym_CG_EXTERN] = ACTIONS(2462), + [anon_sym_CG_INLINE] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2462), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2462), + [anon_sym_IBOutlet] = ACTIONS(2462), + [anon_sym_IBInspectable] = ACTIONS(2462), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2462), + [anon_sym_NS_INLINE] = ACTIONS(2462), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2462), + [anon_sym_OBJC_EXPORT] = ACTIONS(2462), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_constexpr] = ACTIONS(2462), + [anon_sym_volatile] = ACTIONS(2462), + [anon_sym_restrict] = ACTIONS(2462), + [anon_sym___restrict__] = ACTIONS(2462), + [anon_sym__Atomic] = ACTIONS(2462), + [anon_sym__Noreturn] = ACTIONS(2462), + [anon_sym__Nonnull] = ACTIONS(2462), + [anon_sym_nullable] = ACTIONS(2462), + [anon_sym__Complex] = ACTIONS(2462), + [anon_sym__Nullable] = ACTIONS(2462), + [anon_sym__Nullable_result] = ACTIONS(2462), + [anon_sym__Null_unspecified] = ACTIONS(2462), + [anon_sym___autoreleasing] = ACTIONS(2462), + [anon_sym___block] = ACTIONS(2462), + [anon_sym___bridge] = ACTIONS(2462), + [anon_sym___bridge_retained] = ACTIONS(2462), + [anon_sym___bridge_transfer] = ACTIONS(2462), + [anon_sym___complex] = ACTIONS(2462), + [anon_sym___const] = ACTIONS(2462), + [anon_sym___imag] = ACTIONS(2462), + [anon_sym___kindof] = ACTIONS(2462), + [anon_sym___nonnull] = ACTIONS(2462), + [anon_sym___nullable] = ACTIONS(2462), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2462), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2462), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2462), + [anon_sym___real] = ACTIONS(2462), + [anon_sym___strong] = ACTIONS(2462), + [anon_sym___unsafe_unretained] = ACTIONS(2462), + [anon_sym___unused] = ACTIONS(2462), + [anon_sym___weak] = ACTIONS(2462), + [anon_sym_alignas] = ACTIONS(2462), + [anon_sym__Alignas] = ACTIONS(2462), + [sym_primitive_type] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_in] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_goto] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(2464), + [anon_sym_sizeof] = ACTIONS(2462), + [anon_sym___alignof__] = ACTIONS(2462), + [anon_sym___alignof] = ACTIONS(2462), + [anon_sym__alignof] = ACTIONS(2462), + [anon_sym_alignof] = ACTIONS(2462), + [anon_sym__Alignof] = ACTIONS(2462), + [anon_sym_offsetof] = ACTIONS(2462), + [anon_sym__Generic] = ACTIONS(2462), + [anon_sym_asm] = ACTIONS(2462), + [anon_sym___asm__] = ACTIONS(2462), + [anon_sym___asm] = ACTIONS(2462), + [sym_number_literal] = ACTIONS(2464), + [anon_sym_L_SQUOTE] = ACTIONS(2464), + [anon_sym_u_SQUOTE] = ACTIONS(2464), + [anon_sym_U_SQUOTE] = ACTIONS(2464), + [anon_sym_u8_SQUOTE] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2464), + [anon_sym_AT] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2464), + [anon_sym_L_DQUOTE] = ACTIONS(2464), + [anon_sym_u_DQUOTE] = ACTIONS(2464), + [anon_sym_U_DQUOTE] = ACTIONS(2464), + [anon_sym_u8_DQUOTE] = ACTIONS(2464), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [anon_sym_NULL] = ACTIONS(2462), + [anon_sym_nullptr] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2462), + [anon_sym___typeof] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2462), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2462), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2462), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2462), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE] = ACTIONS(2462), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_API_AVAILABLE] = ACTIONS(2462), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_API_DEPRECATED] = ACTIONS(2462), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2462), + [anon_sym___deprecated_msg] = ACTIONS(2462), + [anon_sym___deprecated_enum_msg] = ACTIONS(2462), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2462), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2462), + [anon_sym_ATtry] = ACTIONS(2464), + [anon_sym___try] = ACTIONS(2462), + [anon_sym_ATthrow] = ACTIONS(2464), + [anon_sym_ATselector] = ACTIONS(2464), + [anon_sym_ATavailable] = ACTIONS(2464), + [anon_sym___builtin_available] = ACTIONS(2462), + [anon_sym_va_arg] = ACTIONS(2462), + [anon_sym_ATencode] = ACTIONS(2464), + [anon_sym_ATsynchronized] = ACTIONS(2464), + [anon_sym_BOOL] = ACTIONS(2462), + [anon_sym_IMP] = ACTIONS(2462), + [anon_sym_SEL] = ACTIONS(2462), + [anon_sym_Class] = ACTIONS(2462), + [anon_sym_id] = ACTIONS(2462), + }, + [1147] = { + [sym_identifier] = ACTIONS(2462), + [anon_sym_LPAREN2] = ACTIONS(2464), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_CARET] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym___extension__] = ACTIONS(2462), + [anon_sym_typedef] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym___attribute__] = ACTIONS(2462), + [anon_sym___attribute] = ACTIONS(2462), + [anon_sym_noreturn] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2464), + [anon_sym___declspec] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_signed] = ACTIONS(2462), + [anon_sym_unsigned] = ACTIONS(2462), + [anon_sym_long] = ACTIONS(2462), + [anon_sym_short] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_ATautoreleasepool] = ACTIONS(2464), + [anon_sym_auto] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_inline] = ACTIONS(2462), + [anon_sym___inline] = ACTIONS(2462), + [anon_sym___inline__] = ACTIONS(2462), + [anon_sym___forceinline] = ACTIONS(2462), + [anon_sym_thread_local] = ACTIONS(2462), + [anon_sym___thread] = ACTIONS(2462), + [anon_sym_CG_EXTERN] = ACTIONS(2462), + [anon_sym_CG_INLINE] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2462), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2462), + [anon_sym_IBOutlet] = ACTIONS(2462), + [anon_sym_IBInspectable] = ACTIONS(2462), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2462), + [anon_sym_NS_INLINE] = ACTIONS(2462), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2462), + [anon_sym_OBJC_EXPORT] = ACTIONS(2462), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_constexpr] = ACTIONS(2462), + [anon_sym_volatile] = ACTIONS(2462), + [anon_sym_restrict] = ACTIONS(2462), + [anon_sym___restrict__] = ACTIONS(2462), + [anon_sym__Atomic] = ACTIONS(2462), + [anon_sym__Noreturn] = ACTIONS(2462), + [anon_sym__Nonnull] = ACTIONS(2462), + [anon_sym_nullable] = ACTIONS(2462), + [anon_sym__Complex] = ACTIONS(2462), + [anon_sym__Nullable] = ACTIONS(2462), + [anon_sym__Nullable_result] = ACTIONS(2462), + [anon_sym__Null_unspecified] = ACTIONS(2462), + [anon_sym___autoreleasing] = ACTIONS(2462), + [anon_sym___block] = ACTIONS(2462), + [anon_sym___bridge] = ACTIONS(2462), + [anon_sym___bridge_retained] = ACTIONS(2462), + [anon_sym___bridge_transfer] = ACTIONS(2462), + [anon_sym___complex] = ACTIONS(2462), + [anon_sym___const] = ACTIONS(2462), + [anon_sym___imag] = ACTIONS(2462), + [anon_sym___kindof] = ACTIONS(2462), + [anon_sym___nonnull] = ACTIONS(2462), + [anon_sym___nullable] = ACTIONS(2462), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2462), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2462), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2462), + [anon_sym___real] = ACTIONS(2462), + [anon_sym___strong] = ACTIONS(2462), + [anon_sym___unsafe_unretained] = ACTIONS(2462), + [anon_sym___unused] = ACTIONS(2462), + [anon_sym___weak] = ACTIONS(2462), + [anon_sym_alignas] = ACTIONS(2462), + [anon_sym__Alignas] = ACTIONS(2462), + [sym_primitive_type] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_in] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_goto] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(2464), + [anon_sym_sizeof] = ACTIONS(2462), + [anon_sym___alignof__] = ACTIONS(2462), + [anon_sym___alignof] = ACTIONS(2462), + [anon_sym__alignof] = ACTIONS(2462), + [anon_sym_alignof] = ACTIONS(2462), + [anon_sym__Alignof] = ACTIONS(2462), + [anon_sym_offsetof] = ACTIONS(2462), + [anon_sym__Generic] = ACTIONS(2462), + [anon_sym_asm] = ACTIONS(2462), + [anon_sym___asm__] = ACTIONS(2462), + [anon_sym___asm] = ACTIONS(2462), + [sym_number_literal] = ACTIONS(2464), + [anon_sym_L_SQUOTE] = ACTIONS(2464), + [anon_sym_u_SQUOTE] = ACTIONS(2464), + [anon_sym_U_SQUOTE] = ACTIONS(2464), + [anon_sym_u8_SQUOTE] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2464), + [anon_sym_AT] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2464), + [anon_sym_L_DQUOTE] = ACTIONS(2464), + [anon_sym_u_DQUOTE] = ACTIONS(2464), + [anon_sym_U_DQUOTE] = ACTIONS(2464), + [anon_sym_u8_DQUOTE] = ACTIONS(2464), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [anon_sym_NULL] = ACTIONS(2462), + [anon_sym_nullptr] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2462), + [anon_sym___typeof] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2462), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2462), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2462), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2462), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE] = ACTIONS(2462), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_API_AVAILABLE] = ACTIONS(2462), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_API_DEPRECATED] = ACTIONS(2462), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2462), + [anon_sym___deprecated_msg] = ACTIONS(2462), + [anon_sym___deprecated_enum_msg] = ACTIONS(2462), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2462), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2462), + [anon_sym_ATtry] = ACTIONS(2464), + [anon_sym___try] = ACTIONS(2462), + [anon_sym_ATthrow] = ACTIONS(2464), + [anon_sym_ATselector] = ACTIONS(2464), + [anon_sym_ATavailable] = ACTIONS(2464), + [anon_sym___builtin_available] = ACTIONS(2462), + [anon_sym_va_arg] = ACTIONS(2462), + [anon_sym_ATencode] = ACTIONS(2464), + [anon_sym_ATsynchronized] = ACTIONS(2464), + [anon_sym_BOOL] = ACTIONS(2462), + [anon_sym_IMP] = ACTIONS(2462), + [anon_sym_SEL] = ACTIONS(2462), + [anon_sym_Class] = ACTIONS(2462), + [anon_sym_id] = ACTIONS(2462), + }, + [1148] = { + [sym_identifier] = ACTIONS(2294), + [anon_sym_LPAREN2] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_STAR] = ACTIONS(2296), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym___extension__] = ACTIONS(2294), + [anon_sym_typedef] = ACTIONS(2294), + [anon_sym_extern] = ACTIONS(2294), + [anon_sym___attribute__] = ACTIONS(2294), + [anon_sym___attribute] = ACTIONS(2294), + [anon_sym_noreturn] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym___declspec] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_signed] = ACTIONS(2294), + [anon_sym_unsigned] = ACTIONS(2294), + [anon_sym_long] = ACTIONS(2294), + [anon_sym_short] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_ATautoreleasepool] = ACTIONS(2296), + [anon_sym_auto] = ACTIONS(2294), + [anon_sym_register] = ACTIONS(2294), + [anon_sym_inline] = ACTIONS(2294), + [anon_sym___inline] = ACTIONS(2294), + [anon_sym___inline__] = ACTIONS(2294), + [anon_sym___forceinline] = ACTIONS(2294), + [anon_sym_thread_local] = ACTIONS(2294), + [anon_sym___thread] = ACTIONS(2294), + [anon_sym_CG_EXTERN] = ACTIONS(2294), + [anon_sym_CG_INLINE] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2294), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2294), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2294), + [anon_sym_IBOutlet] = ACTIONS(2294), + [anon_sym_IBInspectable] = ACTIONS(2294), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2294), + [anon_sym_NS_INLINE] = ACTIONS(2294), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2294), + [anon_sym_OBJC_EXPORT] = ACTIONS(2294), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [anon_sym_constexpr] = ACTIONS(2294), + [anon_sym_volatile] = ACTIONS(2294), + [anon_sym_restrict] = ACTIONS(2294), + [anon_sym___restrict__] = ACTIONS(2294), + [anon_sym__Atomic] = ACTIONS(2294), + [anon_sym__Noreturn] = ACTIONS(2294), + [anon_sym__Nonnull] = ACTIONS(2294), + [anon_sym_nullable] = ACTIONS(2294), + [anon_sym__Complex] = ACTIONS(2294), + [anon_sym__Nullable] = ACTIONS(2294), + [anon_sym__Nullable_result] = ACTIONS(2294), + [anon_sym__Null_unspecified] = ACTIONS(2294), + [anon_sym___autoreleasing] = ACTIONS(2294), + [anon_sym___block] = ACTIONS(2294), + [anon_sym___bridge] = ACTIONS(2294), + [anon_sym___bridge_retained] = ACTIONS(2294), + [anon_sym___bridge_transfer] = ACTIONS(2294), + [anon_sym___complex] = ACTIONS(2294), + [anon_sym___const] = ACTIONS(2294), + [anon_sym___imag] = ACTIONS(2294), + [anon_sym___kindof] = ACTIONS(2294), + [anon_sym___nonnull] = ACTIONS(2294), + [anon_sym___nullable] = ACTIONS(2294), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2294), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2294), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2294), + [anon_sym___real] = ACTIONS(2294), + [anon_sym___strong] = ACTIONS(2294), + [anon_sym___unsafe_unretained] = ACTIONS(2294), + [anon_sym___unused] = ACTIONS(2294), + [anon_sym___weak] = ACTIONS(2294), + [anon_sym_alignas] = ACTIONS(2294), + [anon_sym__Alignas] = ACTIONS(2294), + [sym_primitive_type] = ACTIONS(2294), + [anon_sym_enum] = ACTIONS(2294), + [anon_sym_struct] = ACTIONS(2294), + [anon_sym_union] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_switch] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_goto] = ACTIONS(2294), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_sizeof] = ACTIONS(2294), + [anon_sym___alignof__] = ACTIONS(2294), + [anon_sym___alignof] = ACTIONS(2294), + [anon_sym__alignof] = ACTIONS(2294), + [anon_sym_alignof] = ACTIONS(2294), + [anon_sym__Alignof] = ACTIONS(2294), + [anon_sym_offsetof] = ACTIONS(2294), + [anon_sym__Generic] = ACTIONS(2294), + [anon_sym_asm] = ACTIONS(2294), + [anon_sym___asm__] = ACTIONS(2294), + [anon_sym___asm] = ACTIONS(2294), + [sym_number_literal] = ACTIONS(2296), + [anon_sym_L_SQUOTE] = ACTIONS(2296), + [anon_sym_u_SQUOTE] = ACTIONS(2296), + [anon_sym_U_SQUOTE] = ACTIONS(2296), + [anon_sym_u8_SQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_L_DQUOTE] = ACTIONS(2296), + [anon_sym_u_DQUOTE] = ACTIONS(2296), + [anon_sym_U_DQUOTE] = ACTIONS(2296), + [anon_sym_u8_DQUOTE] = ACTIONS(2296), + [sym_true] = ACTIONS(2294), + [sym_false] = ACTIONS(2294), + [anon_sym_NULL] = ACTIONS(2294), + [anon_sym_nullptr] = ACTIONS(2294), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2294), + [anon_sym___typeof] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(2294), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2294), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2294), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2294), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2294), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2294), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2294), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE] = ACTIONS(2294), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2294), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_API_AVAILABLE] = ACTIONS(2294), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_API_DEPRECATED] = ACTIONS(2294), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2294), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2294), + [anon_sym___deprecated_msg] = ACTIONS(2294), + [anon_sym___deprecated_enum_msg] = ACTIONS(2294), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2294), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2294), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2294), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2294), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2294), + [anon_sym_ATtry] = ACTIONS(2296), + [anon_sym___try] = ACTIONS(2294), + [anon_sym_ATthrow] = ACTIONS(2296), + [anon_sym_ATselector] = ACTIONS(2296), + [anon_sym_ATavailable] = ACTIONS(2296), + [anon_sym___builtin_available] = ACTIONS(2294), + [anon_sym_va_arg] = ACTIONS(2294), + [anon_sym_ATencode] = ACTIONS(2296), + [anon_sym_ATsynchronized] = ACTIONS(2296), + [anon_sym_BOOL] = ACTIONS(2294), + [anon_sym_IMP] = ACTIONS(2294), + [anon_sym_SEL] = ACTIONS(2294), + [anon_sym_Class] = ACTIONS(2294), + [anon_sym_id] = ACTIONS(2294), + }, + [1149] = { + [sym_identifier] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [1150] = { + [sym_identifier] = ACTIONS(2516), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_BANG] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_PLUS] = ACTIONS(2516), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_CARET] = ACTIONS(2518), + [anon_sym_AMP] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym___extension__] = ACTIONS(2516), + [anon_sym_typedef] = ACTIONS(2516), + [anon_sym_extern] = ACTIONS(2516), + [anon_sym___attribute__] = ACTIONS(2516), + [anon_sym___attribute] = ACTIONS(2516), + [anon_sym_noreturn] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2518), + [anon_sym___declspec] = ACTIONS(2516), + [anon_sym_LBRACE] = ACTIONS(2518), + [anon_sym_signed] = ACTIONS(2516), + [anon_sym_unsigned] = ACTIONS(2516), + [anon_sym_long] = ACTIONS(2516), + [anon_sym_short] = ACTIONS(2516), + [anon_sym_static] = ACTIONS(2516), + [anon_sym_ATautoreleasepool] = ACTIONS(2518), + [anon_sym_auto] = ACTIONS(2516), + [anon_sym_register] = ACTIONS(2516), + [anon_sym_inline] = ACTIONS(2516), + [anon_sym___inline] = ACTIONS(2516), + [anon_sym___inline__] = ACTIONS(2516), + [anon_sym___forceinline] = ACTIONS(2516), + [anon_sym_thread_local] = ACTIONS(2516), + [anon_sym___thread] = ACTIONS(2516), + [anon_sym_CG_EXTERN] = ACTIONS(2516), + [anon_sym_CG_INLINE] = ACTIONS(2516), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2516), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2516), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2516), + [anon_sym_IBOutlet] = ACTIONS(2516), + [anon_sym_IBInspectable] = ACTIONS(2516), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2516), + [anon_sym_NS_INLINE] = ACTIONS(2516), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2516), + [anon_sym_OBJC_EXPORT] = ACTIONS(2516), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2516), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2516), + [anon_sym_const] = ACTIONS(2516), + [anon_sym_constexpr] = ACTIONS(2516), + [anon_sym_volatile] = ACTIONS(2516), + [anon_sym_restrict] = ACTIONS(2516), + [anon_sym___restrict__] = ACTIONS(2516), + [anon_sym__Atomic] = ACTIONS(2516), + [anon_sym__Noreturn] = ACTIONS(2516), + [anon_sym__Nonnull] = ACTIONS(2516), + [anon_sym_nullable] = ACTIONS(2516), + [anon_sym__Complex] = ACTIONS(2516), + [anon_sym__Nullable] = ACTIONS(2516), + [anon_sym__Nullable_result] = ACTIONS(2516), + [anon_sym__Null_unspecified] = ACTIONS(2516), + [anon_sym___autoreleasing] = ACTIONS(2516), + [anon_sym___block] = ACTIONS(2516), + [anon_sym___bridge] = ACTIONS(2516), + [anon_sym___bridge_retained] = ACTIONS(2516), + [anon_sym___bridge_transfer] = ACTIONS(2516), + [anon_sym___complex] = ACTIONS(2516), + [anon_sym___const] = ACTIONS(2516), + [anon_sym___imag] = ACTIONS(2516), + [anon_sym___kindof] = ACTIONS(2516), + [anon_sym___nonnull] = ACTIONS(2516), + [anon_sym___nullable] = ACTIONS(2516), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2516), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2516), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2516), + [anon_sym___real] = ACTIONS(2516), + [anon_sym___strong] = ACTIONS(2516), + [anon_sym___unsafe_unretained] = ACTIONS(2516), + [anon_sym___unused] = ACTIONS(2516), + [anon_sym___weak] = ACTIONS(2516), + [anon_sym_alignas] = ACTIONS(2516), + [anon_sym__Alignas] = ACTIONS(2516), + [sym_primitive_type] = ACTIONS(2516), + [anon_sym_enum] = ACTIONS(2516), + [anon_sym_struct] = ACTIONS(2516), + [anon_sym_union] = ACTIONS(2516), + [anon_sym_if] = ACTIONS(2516), + [anon_sym_else] = ACTIONS(2516), + [anon_sym_switch] = ACTIONS(2516), + [anon_sym_while] = ACTIONS(2516), + [anon_sym_do] = ACTIONS(2516), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_in] = ACTIONS(2516), + [anon_sym_return] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_goto] = ACTIONS(2516), + [anon_sym_DASH_DASH] = ACTIONS(2518), + [anon_sym_PLUS_PLUS] = ACTIONS(2518), + [anon_sym_sizeof] = ACTIONS(2516), + [anon_sym___alignof__] = ACTIONS(2516), + [anon_sym___alignof] = ACTIONS(2516), + [anon_sym__alignof] = ACTIONS(2516), + [anon_sym_alignof] = ACTIONS(2516), + [anon_sym__Alignof] = ACTIONS(2516), + [anon_sym_offsetof] = ACTIONS(2516), + [anon_sym__Generic] = ACTIONS(2516), + [anon_sym_asm] = ACTIONS(2516), + [anon_sym___asm__] = ACTIONS(2516), + [anon_sym___asm] = ACTIONS(2516), + [sym_number_literal] = ACTIONS(2518), + [anon_sym_L_SQUOTE] = ACTIONS(2518), + [anon_sym_u_SQUOTE] = ACTIONS(2518), + [anon_sym_U_SQUOTE] = ACTIONS(2518), + [anon_sym_u8_SQUOTE] = ACTIONS(2518), + [anon_sym_SQUOTE] = ACTIONS(2518), + [anon_sym_AT] = ACTIONS(2516), + [anon_sym_DQUOTE] = ACTIONS(2518), + [anon_sym_L_DQUOTE] = ACTIONS(2518), + [anon_sym_u_DQUOTE] = ACTIONS(2518), + [anon_sym_U_DQUOTE] = ACTIONS(2518), + [anon_sym_u8_DQUOTE] = ACTIONS(2518), + [sym_true] = ACTIONS(2516), + [sym_false] = ACTIONS(2516), + [anon_sym_NULL] = ACTIONS(2516), + [anon_sym_nullptr] = ACTIONS(2516), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2516), + [anon_sym___typeof] = ACTIONS(2516), + [anon_sym_typeof] = ACTIONS(2516), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2516), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2516), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2516), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2516), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2516), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2516), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2516), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2516), + [anon_sym_NS_AVAILABLE] = ACTIONS(2516), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2516), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_API_AVAILABLE] = ACTIONS(2516), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_API_DEPRECATED] = ACTIONS(2516), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2516), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2516), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2516), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2516), + [anon_sym___deprecated_msg] = ACTIONS(2516), + [anon_sym___deprecated_enum_msg] = ACTIONS(2516), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2516), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2516), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2516), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2516), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2516), + [anon_sym_ATtry] = ACTIONS(2518), + [anon_sym___try] = ACTIONS(2516), + [anon_sym_ATthrow] = ACTIONS(2518), + [anon_sym_ATselector] = ACTIONS(2518), + [anon_sym_ATavailable] = ACTIONS(2518), + [anon_sym___builtin_available] = ACTIONS(2516), + [anon_sym_va_arg] = ACTIONS(2516), + [anon_sym_ATencode] = ACTIONS(2518), + [anon_sym_ATsynchronized] = ACTIONS(2518), + [anon_sym_BOOL] = ACTIONS(2516), + [anon_sym_IMP] = ACTIONS(2516), + [anon_sym_SEL] = ACTIONS(2516), + [anon_sym_Class] = ACTIONS(2516), + [anon_sym_id] = ACTIONS(2516), + }, + [1151] = { + [sym_identifier] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [1152] = { + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN2] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(2991), + [anon_sym_TILDE] = ACTIONS(2991), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_CARET] = ACTIONS(2991), + [anon_sym_AMP] = ACTIONS(2991), + [anon_sym_SEMI] = ACTIONS(2991), + [anon_sym___extension__] = ACTIONS(2988), + [anon_sym_extern] = ACTIONS(2995), + [anon_sym___attribute__] = ACTIONS(2995), + [anon_sym___attribute] = ACTIONS(2995), + [anon_sym_noreturn] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym___declspec] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2991), + [anon_sym_signed] = ACTIONS(2995), + [anon_sym_unsigned] = ACTIONS(2995), + [anon_sym_long] = ACTIONS(2995), + [anon_sym_short] = ACTIONS(2995), + [anon_sym_static] = ACTIONS(2995), + [anon_sym_ATautoreleasepool] = ACTIONS(2991), + [anon_sym_auto] = ACTIONS(2995), + [anon_sym_register] = ACTIONS(2995), + [anon_sym_inline] = ACTIONS(2995), + [anon_sym___inline] = ACTIONS(2995), + [anon_sym___inline__] = ACTIONS(2995), + [anon_sym___forceinline] = ACTIONS(2995), + [anon_sym_thread_local] = ACTIONS(2995), + [anon_sym___thread] = ACTIONS(2995), + [anon_sym_CG_EXTERN] = ACTIONS(2995), + [anon_sym_CG_INLINE] = ACTIONS(2995), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2995), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2995), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2995), + [anon_sym_IBOutlet] = ACTIONS(2995), + [anon_sym_IBInspectable] = ACTIONS(2995), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2995), + [anon_sym_NS_INLINE] = ACTIONS(2995), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2995), + [anon_sym_OBJC_EXPORT] = ACTIONS(2995), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2995), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2995), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_constexpr] = ACTIONS(2995), + [anon_sym_volatile] = ACTIONS(2995), + [anon_sym_restrict] = ACTIONS(2995), + [anon_sym___restrict__] = ACTIONS(2995), + [anon_sym__Atomic] = ACTIONS(2995), + [anon_sym__Noreturn] = ACTIONS(2995), + [anon_sym__Nonnull] = ACTIONS(2995), + [anon_sym_nullable] = ACTIONS(2995), + [anon_sym__Complex] = ACTIONS(2995), + [anon_sym__Nullable] = ACTIONS(2995), + [anon_sym__Nullable_result] = ACTIONS(2995), + [anon_sym__Null_unspecified] = ACTIONS(2995), + [anon_sym___autoreleasing] = ACTIONS(2995), + [anon_sym___block] = ACTIONS(2995), + [anon_sym___bridge] = ACTIONS(2995), + [anon_sym___bridge_retained] = ACTIONS(2995), + [anon_sym___bridge_transfer] = ACTIONS(2995), + [anon_sym___complex] = ACTIONS(2995), + [anon_sym___const] = ACTIONS(2995), + [anon_sym___imag] = ACTIONS(2988), + [anon_sym___kindof] = ACTIONS(2995), + [anon_sym___nonnull] = ACTIONS(2995), + [anon_sym___nullable] = ACTIONS(2995), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2995), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2995), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2995), + [anon_sym___real] = ACTIONS(2988), + [anon_sym___strong] = ACTIONS(2995), + [anon_sym___unsafe_unretained] = ACTIONS(2995), + [anon_sym___unused] = ACTIONS(2995), + [anon_sym___weak] = ACTIONS(2995), + [anon_sym_alignas] = ACTIONS(2995), + [anon_sym__Alignas] = ACTIONS(2995), + [sym_primitive_type] = ACTIONS(2995), + [anon_sym_enum] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2988), + [anon_sym_union] = ACTIONS(2995), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_switch] = ACTIONS(2993), + [anon_sym_case] = ACTIONS(2993), + [anon_sym_default] = ACTIONS(2993), + [anon_sym_while] = ACTIONS(2993), + [anon_sym_do] = ACTIONS(2993), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_in] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_break] = ACTIONS(2993), + [anon_sym_continue] = ACTIONS(2993), + [anon_sym_goto] = ACTIONS(2993), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2993), + [anon_sym___alignof] = ACTIONS(2993), + [anon_sym__alignof] = ACTIONS(2993), + [anon_sym_alignof] = ACTIONS(2993), + [anon_sym__Alignof] = ACTIONS(2993), + [anon_sym_offsetof] = ACTIONS(2993), + [anon_sym__Generic] = ACTIONS(2993), + [anon_sym_asm] = ACTIONS(2993), + [anon_sym___asm__] = ACTIONS(2993), + [anon_sym___asm] = ACTIONS(2993), + [sym_number_literal] = ACTIONS(2991), + [anon_sym_L_SQUOTE] = ACTIONS(2991), + [anon_sym_u_SQUOTE] = ACTIONS(2991), + [anon_sym_U_SQUOTE] = ACTIONS(2991), + [anon_sym_u8_SQUOTE] = ACTIONS(2991), + [anon_sym_SQUOTE] = ACTIONS(2991), + [anon_sym_AT] = ACTIONS(2993), + [anon_sym_DQUOTE] = ACTIONS(2991), + [anon_sym_L_DQUOTE] = ACTIONS(2991), + [anon_sym_u_DQUOTE] = ACTIONS(2991), + [anon_sym_U_DQUOTE] = ACTIONS(2991), + [anon_sym_u8_DQUOTE] = ACTIONS(2991), + [sym_true] = ACTIONS(2993), + [sym_false] = ACTIONS(2993), + [anon_sym_NULL] = ACTIONS(2993), + [anon_sym_nullptr] = ACTIONS(2993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2995), + [anon_sym___typeof] = ACTIONS(2995), + [anon_sym_typeof] = ACTIONS(2995), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2995), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2995), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2995), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2995), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2995), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2995), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2995), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2995), + [anon_sym_NS_AVAILABLE] = ACTIONS(2995), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2995), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_API_AVAILABLE] = ACTIONS(2995), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_API_DEPRECATED] = ACTIONS(2995), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2995), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2995), + [anon_sym___deprecated_msg] = ACTIONS(2995), + [anon_sym___deprecated_enum_msg] = ACTIONS(2995), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2995), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2995), + [anon_sym_ATtry] = ACTIONS(2991), + [anon_sym___try] = ACTIONS(2993), + [anon_sym_ATthrow] = ACTIONS(2991), + [anon_sym_ATselector] = ACTIONS(2991), + [anon_sym_ATavailable] = ACTIONS(2991), + [anon_sym___builtin_available] = ACTIONS(2993), + [anon_sym_va_arg] = ACTIONS(2993), + [anon_sym_ATencode] = ACTIONS(2991), + [anon_sym_ATsynchronized] = ACTIONS(2991), + [anon_sym_BOOL] = ACTIONS(2995), + [anon_sym_IMP] = ACTIONS(2995), + [anon_sym_SEL] = ACTIONS(2995), + [anon_sym_Class] = ACTIONS(2995), + [anon_sym_id] = ACTIONS(2988), + }, + [1153] = { + [sym_identifier] = ACTIONS(2520), + [anon_sym_LPAREN2] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2522), + [anon_sym_TILDE] = ACTIONS(2522), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_PLUS] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_CARET] = ACTIONS(2522), + [anon_sym_AMP] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym___extension__] = ACTIONS(2520), + [anon_sym_typedef] = ACTIONS(2520), + [anon_sym_extern] = ACTIONS(2520), + [anon_sym___attribute__] = ACTIONS(2520), + [anon_sym___attribute] = ACTIONS(2520), + [anon_sym_noreturn] = ACTIONS(2520), + [anon_sym_LBRACK] = ACTIONS(2522), + [anon_sym___declspec] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_signed] = ACTIONS(2520), + [anon_sym_unsigned] = ACTIONS(2520), + [anon_sym_long] = ACTIONS(2520), + [anon_sym_short] = ACTIONS(2520), + [anon_sym_static] = ACTIONS(2520), + [anon_sym_ATautoreleasepool] = ACTIONS(2522), + [anon_sym_auto] = ACTIONS(2520), + [anon_sym_register] = ACTIONS(2520), + [anon_sym_inline] = ACTIONS(2520), + [anon_sym___inline] = ACTIONS(2520), + [anon_sym___inline__] = ACTIONS(2520), + [anon_sym___forceinline] = ACTIONS(2520), + [anon_sym_thread_local] = ACTIONS(2520), + [anon_sym___thread] = ACTIONS(2520), + [anon_sym_CG_EXTERN] = ACTIONS(2520), + [anon_sym_CG_INLINE] = ACTIONS(2520), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2520), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2520), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2520), + [anon_sym_IBOutlet] = ACTIONS(2520), + [anon_sym_IBInspectable] = ACTIONS(2520), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2520), + [anon_sym_NS_INLINE] = ACTIONS(2520), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2520), + [anon_sym_OBJC_EXPORT] = ACTIONS(2520), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2520), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2520), + [anon_sym_const] = ACTIONS(2520), + [anon_sym_constexpr] = ACTIONS(2520), + [anon_sym_volatile] = ACTIONS(2520), + [anon_sym_restrict] = ACTIONS(2520), + [anon_sym___restrict__] = ACTIONS(2520), + [anon_sym__Atomic] = ACTIONS(2520), + [anon_sym__Noreturn] = ACTIONS(2520), + [anon_sym__Nonnull] = ACTIONS(2520), + [anon_sym_nullable] = ACTIONS(2520), + [anon_sym__Complex] = ACTIONS(2520), + [anon_sym__Nullable] = ACTIONS(2520), + [anon_sym__Nullable_result] = ACTIONS(2520), + [anon_sym__Null_unspecified] = ACTIONS(2520), + [anon_sym___autoreleasing] = ACTIONS(2520), + [anon_sym___block] = ACTIONS(2520), + [anon_sym___bridge] = ACTIONS(2520), + [anon_sym___bridge_retained] = ACTIONS(2520), + [anon_sym___bridge_transfer] = ACTIONS(2520), + [anon_sym___complex] = ACTIONS(2520), + [anon_sym___const] = ACTIONS(2520), + [anon_sym___imag] = ACTIONS(2520), + [anon_sym___kindof] = ACTIONS(2520), + [anon_sym___nonnull] = ACTIONS(2520), + [anon_sym___nullable] = ACTIONS(2520), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2520), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2520), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2520), + [anon_sym___real] = ACTIONS(2520), + [anon_sym___strong] = ACTIONS(2520), + [anon_sym___unsafe_unretained] = ACTIONS(2520), + [anon_sym___unused] = ACTIONS(2520), + [anon_sym___weak] = ACTIONS(2520), + [anon_sym_alignas] = ACTIONS(2520), + [anon_sym__Alignas] = ACTIONS(2520), + [sym_primitive_type] = ACTIONS(2520), + [anon_sym_enum] = ACTIONS(2520), + [anon_sym_struct] = ACTIONS(2520), + [anon_sym_union] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2520), + [anon_sym_else] = ACTIONS(2520), + [anon_sym_switch] = ACTIONS(2520), + [anon_sym_while] = ACTIONS(2520), + [anon_sym_do] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2520), + [anon_sym_in] = ACTIONS(2520), + [anon_sym_return] = ACTIONS(2520), + [anon_sym_break] = ACTIONS(2520), + [anon_sym_continue] = ACTIONS(2520), + [anon_sym_goto] = ACTIONS(2520), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_sizeof] = ACTIONS(2520), + [anon_sym___alignof__] = ACTIONS(2520), + [anon_sym___alignof] = ACTIONS(2520), + [anon_sym__alignof] = ACTIONS(2520), + [anon_sym_alignof] = ACTIONS(2520), + [anon_sym__Alignof] = ACTIONS(2520), + [anon_sym_offsetof] = ACTIONS(2520), + [anon_sym__Generic] = ACTIONS(2520), + [anon_sym_asm] = ACTIONS(2520), + [anon_sym___asm__] = ACTIONS(2520), + [anon_sym___asm] = ACTIONS(2520), + [sym_number_literal] = ACTIONS(2522), + [anon_sym_L_SQUOTE] = ACTIONS(2522), + [anon_sym_u_SQUOTE] = ACTIONS(2522), + [anon_sym_U_SQUOTE] = ACTIONS(2522), + [anon_sym_u8_SQUOTE] = ACTIONS(2522), + [anon_sym_SQUOTE] = ACTIONS(2522), + [anon_sym_AT] = ACTIONS(2520), + [anon_sym_DQUOTE] = ACTIONS(2522), + [anon_sym_L_DQUOTE] = ACTIONS(2522), + [anon_sym_u_DQUOTE] = ACTIONS(2522), + [anon_sym_U_DQUOTE] = ACTIONS(2522), + [anon_sym_u8_DQUOTE] = ACTIONS(2522), + [sym_true] = ACTIONS(2520), + [sym_false] = ACTIONS(2520), + [anon_sym_NULL] = ACTIONS(2520), + [anon_sym_nullptr] = ACTIONS(2520), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2520), + [anon_sym___typeof] = ACTIONS(2520), + [anon_sym_typeof] = ACTIONS(2520), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2520), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2520), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2520), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2520), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2520), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2520), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2520), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2520), + [anon_sym_NS_AVAILABLE] = ACTIONS(2520), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2520), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_API_AVAILABLE] = ACTIONS(2520), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_API_DEPRECATED] = ACTIONS(2520), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2520), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2520), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2520), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2520), + [anon_sym___deprecated_msg] = ACTIONS(2520), + [anon_sym___deprecated_enum_msg] = ACTIONS(2520), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2520), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2520), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2520), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2520), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2520), + [anon_sym_ATtry] = ACTIONS(2522), + [anon_sym___try] = ACTIONS(2520), + [anon_sym_ATthrow] = ACTIONS(2522), + [anon_sym_ATselector] = ACTIONS(2522), + [anon_sym_ATavailable] = ACTIONS(2522), + [anon_sym___builtin_available] = ACTIONS(2520), + [anon_sym_va_arg] = ACTIONS(2520), + [anon_sym_ATencode] = ACTIONS(2522), + [anon_sym_ATsynchronized] = ACTIONS(2522), + [anon_sym_BOOL] = ACTIONS(2520), + [anon_sym_IMP] = ACTIONS(2520), + [anon_sym_SEL] = ACTIONS(2520), + [anon_sym_Class] = ACTIONS(2520), + [anon_sym_id] = ACTIONS(2520), + }, + [1154] = { + [sym_identifier] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [1155] = { + [sym_identifier] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [1156] = { + [sym_identifier] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [1157] = { + [sym_identifier] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [1158] = { + [sym_identifier] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [1159] = { + [sym_identifier] = ACTIONS(2966), + [anon_sym_LPAREN2] = ACTIONS(2968), + [anon_sym_BANG] = ACTIONS(2968), + [anon_sym_TILDE] = ACTIONS(2968), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_STAR] = ACTIONS(2968), + [anon_sym_CARET] = ACTIONS(2968), + [anon_sym_AMP] = ACTIONS(2968), + [anon_sym_SEMI] = ACTIONS(2968), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_extern] = ACTIONS(2966), + [anon_sym___attribute__] = ACTIONS(2966), + [anon_sym___attribute] = ACTIONS(2966), + [anon_sym_noreturn] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2968), + [anon_sym___declspec] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_signed] = ACTIONS(2966), + [anon_sym_unsigned] = ACTIONS(2966), + [anon_sym_long] = ACTIONS(2966), + [anon_sym_short] = ACTIONS(2966), + [anon_sym_static] = ACTIONS(2966), + [anon_sym_ATautoreleasepool] = ACTIONS(2968), + [anon_sym_auto] = ACTIONS(2966), + [anon_sym_register] = ACTIONS(2966), + [anon_sym_inline] = ACTIONS(2966), + [anon_sym___inline] = ACTIONS(2966), + [anon_sym___inline__] = ACTIONS(2966), + [anon_sym___forceinline] = ACTIONS(2966), + [anon_sym_thread_local] = ACTIONS(2966), + [anon_sym___thread] = ACTIONS(2966), + [anon_sym_CG_EXTERN] = ACTIONS(2966), + [anon_sym_CG_INLINE] = ACTIONS(2966), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2966), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2966), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2966), + [anon_sym_IBOutlet] = ACTIONS(2966), + [anon_sym_IBInspectable] = ACTIONS(2966), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2966), + [anon_sym_NS_INLINE] = ACTIONS(2966), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2966), + [anon_sym_OBJC_EXPORT] = ACTIONS(2966), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2966), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2966), + [anon_sym_constexpr] = ACTIONS(2966), + [anon_sym_volatile] = ACTIONS(2966), + [anon_sym_restrict] = ACTIONS(2966), + [anon_sym___restrict__] = ACTIONS(2966), + [anon_sym__Atomic] = ACTIONS(2966), + [anon_sym__Noreturn] = ACTIONS(2966), + [anon_sym__Nonnull] = ACTIONS(2966), + [anon_sym_nullable] = ACTIONS(2966), + [anon_sym__Complex] = ACTIONS(2966), + [anon_sym__Nullable] = ACTIONS(2966), + [anon_sym__Nullable_result] = ACTIONS(2966), + [anon_sym__Null_unspecified] = ACTIONS(2966), + [anon_sym___autoreleasing] = ACTIONS(2966), + [anon_sym___block] = ACTIONS(2966), + [anon_sym___bridge] = ACTIONS(2966), + [anon_sym___bridge_retained] = ACTIONS(2966), + [anon_sym___bridge_transfer] = ACTIONS(2966), + [anon_sym___complex] = ACTIONS(2966), + [anon_sym___const] = ACTIONS(2966), + [anon_sym___imag] = ACTIONS(2966), + [anon_sym___kindof] = ACTIONS(2966), + [anon_sym___nonnull] = ACTIONS(2966), + [anon_sym___nullable] = ACTIONS(2966), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2966), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2966), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2966), + [anon_sym___real] = ACTIONS(2966), + [anon_sym___strong] = ACTIONS(2966), + [anon_sym___unsafe_unretained] = ACTIONS(2966), + [anon_sym___unused] = ACTIONS(2966), + [anon_sym___weak] = ACTIONS(2966), + [anon_sym_alignas] = ACTIONS(2966), + [anon_sym__Alignas] = ACTIONS(2966), + [sym_primitive_type] = ACTIONS(2966), + [anon_sym_enum] = ACTIONS(2966), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_union] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_switch] = ACTIONS(2966), + [anon_sym_case] = ACTIONS(2966), + [anon_sym_default] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_do] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_in] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_break] = ACTIONS(2966), + [anon_sym_continue] = ACTIONS(2966), + [anon_sym_goto] = ACTIONS(2966), + [anon_sym_DASH_DASH] = ACTIONS(2968), + [anon_sym_PLUS_PLUS] = ACTIONS(2968), + [anon_sym_sizeof] = ACTIONS(2966), + [anon_sym___alignof__] = ACTIONS(2966), + [anon_sym___alignof] = ACTIONS(2966), + [anon_sym__alignof] = ACTIONS(2966), + [anon_sym_alignof] = ACTIONS(2966), + [anon_sym__Alignof] = ACTIONS(2966), + [anon_sym_offsetof] = ACTIONS(2966), + [anon_sym__Generic] = ACTIONS(2966), + [anon_sym_asm] = ACTIONS(2966), + [anon_sym___asm__] = ACTIONS(2966), + [anon_sym___asm] = ACTIONS(2966), + [sym_number_literal] = ACTIONS(2968), + [anon_sym_L_SQUOTE] = ACTIONS(2968), + [anon_sym_u_SQUOTE] = ACTIONS(2968), + [anon_sym_U_SQUOTE] = ACTIONS(2968), + [anon_sym_u8_SQUOTE] = ACTIONS(2968), + [anon_sym_SQUOTE] = ACTIONS(2968), + [anon_sym_AT] = ACTIONS(2966), + [anon_sym_DQUOTE] = ACTIONS(2968), + [anon_sym_L_DQUOTE] = ACTIONS(2968), + [anon_sym_u_DQUOTE] = ACTIONS(2968), + [anon_sym_U_DQUOTE] = ACTIONS(2968), + [anon_sym_u8_DQUOTE] = ACTIONS(2968), + [sym_true] = ACTIONS(2966), + [sym_false] = ACTIONS(2966), + [anon_sym_NULL] = ACTIONS(2966), + [anon_sym_nullptr] = ACTIONS(2966), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2966), + [anon_sym___typeof] = ACTIONS(2966), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2966), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2966), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2966), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2966), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2966), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2966), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2966), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2966), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2966), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2966), + [anon_sym_NS_AVAILABLE] = ACTIONS(2966), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2966), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2966), + [anon_sym_API_AVAILABLE] = ACTIONS(2966), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2966), + [anon_sym_API_DEPRECATED] = ACTIONS(2966), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2966), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2966), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2966), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2966), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2966), + [anon_sym___deprecated_msg] = ACTIONS(2966), + [anon_sym___deprecated_enum_msg] = ACTIONS(2966), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2966), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2966), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2966), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2966), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2966), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2966), + [anon_sym_ATtry] = ACTIONS(2968), + [anon_sym___try] = ACTIONS(2966), + [anon_sym_ATthrow] = ACTIONS(2968), + [anon_sym_ATselector] = ACTIONS(2968), + [anon_sym_ATavailable] = ACTIONS(2968), + [anon_sym___builtin_available] = ACTIONS(2966), + [anon_sym_va_arg] = ACTIONS(2966), + [anon_sym_ATencode] = ACTIONS(2968), + [anon_sym_ATsynchronized] = ACTIONS(2968), + [anon_sym_BOOL] = ACTIONS(2966), + [anon_sym_IMP] = ACTIONS(2966), + [anon_sym_SEL] = ACTIONS(2966), + [anon_sym_Class] = ACTIONS(2966), + [anon_sym_id] = ACTIONS(2966), + }, + [1160] = { + [sym_identifier] = ACTIONS(2560), + [anon_sym_LPAREN2] = ACTIONS(2562), + [anon_sym_BANG] = ACTIONS(2562), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_DASH] = ACTIONS(2560), + [anon_sym_PLUS] = ACTIONS(2560), + [anon_sym_STAR] = ACTIONS(2562), + [anon_sym_CARET] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2562), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym___extension__] = ACTIONS(2560), + [anon_sym_typedef] = ACTIONS(2560), + [anon_sym_extern] = ACTIONS(2560), + [anon_sym___attribute__] = ACTIONS(2560), + [anon_sym___attribute] = ACTIONS(2560), + [anon_sym_noreturn] = ACTIONS(2560), + [anon_sym_LBRACK] = ACTIONS(2562), + [anon_sym___declspec] = ACTIONS(2560), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_signed] = ACTIONS(2560), + [anon_sym_unsigned] = ACTIONS(2560), + [anon_sym_long] = ACTIONS(2560), + [anon_sym_short] = ACTIONS(2560), + [anon_sym_static] = ACTIONS(2560), + [anon_sym_ATautoreleasepool] = ACTIONS(2562), + [anon_sym_auto] = ACTIONS(2560), + [anon_sym_register] = ACTIONS(2560), + [anon_sym_inline] = ACTIONS(2560), + [anon_sym___inline] = ACTIONS(2560), + [anon_sym___inline__] = ACTIONS(2560), + [anon_sym___forceinline] = ACTIONS(2560), + [anon_sym_thread_local] = ACTIONS(2560), + [anon_sym___thread] = ACTIONS(2560), + [anon_sym_CG_EXTERN] = ACTIONS(2560), + [anon_sym_CG_INLINE] = ACTIONS(2560), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2560), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2560), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2560), + [anon_sym_IBOutlet] = ACTIONS(2560), + [anon_sym_IBInspectable] = ACTIONS(2560), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2560), + [anon_sym_NS_INLINE] = ACTIONS(2560), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2560), + [anon_sym_OBJC_EXPORT] = ACTIONS(2560), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2560), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2560), + [anon_sym_const] = ACTIONS(2560), + [anon_sym_constexpr] = ACTIONS(2560), + [anon_sym_volatile] = ACTIONS(2560), + [anon_sym_restrict] = ACTIONS(2560), + [anon_sym___restrict__] = ACTIONS(2560), + [anon_sym__Atomic] = ACTIONS(2560), + [anon_sym__Noreturn] = ACTIONS(2560), + [anon_sym__Nonnull] = ACTIONS(2560), + [anon_sym_nullable] = ACTIONS(2560), + [anon_sym__Complex] = ACTIONS(2560), + [anon_sym__Nullable] = ACTIONS(2560), + [anon_sym__Nullable_result] = ACTIONS(2560), + [anon_sym__Null_unspecified] = ACTIONS(2560), + [anon_sym___autoreleasing] = ACTIONS(2560), + [anon_sym___block] = ACTIONS(2560), + [anon_sym___bridge] = ACTIONS(2560), + [anon_sym___bridge_retained] = ACTIONS(2560), + [anon_sym___bridge_transfer] = ACTIONS(2560), + [anon_sym___complex] = ACTIONS(2560), + [anon_sym___const] = ACTIONS(2560), + [anon_sym___imag] = ACTIONS(2560), + [anon_sym___kindof] = ACTIONS(2560), + [anon_sym___nonnull] = ACTIONS(2560), + [anon_sym___nullable] = ACTIONS(2560), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2560), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2560), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2560), + [anon_sym___real] = ACTIONS(2560), + [anon_sym___strong] = ACTIONS(2560), + [anon_sym___unsafe_unretained] = ACTIONS(2560), + [anon_sym___unused] = ACTIONS(2560), + [anon_sym___weak] = ACTIONS(2560), + [anon_sym_alignas] = ACTIONS(2560), + [anon_sym__Alignas] = ACTIONS(2560), + [sym_primitive_type] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2560), + [anon_sym_struct] = ACTIONS(2560), + [anon_sym_union] = ACTIONS(2560), + [anon_sym_if] = ACTIONS(2560), + [anon_sym_else] = ACTIONS(2560), + [anon_sym_switch] = ACTIONS(2560), + [anon_sym_while] = ACTIONS(2560), + [anon_sym_do] = ACTIONS(2560), + [anon_sym_for] = ACTIONS(2560), + [anon_sym_in] = ACTIONS(2560), + [anon_sym_return] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_goto] = ACTIONS(2560), + [anon_sym_DASH_DASH] = ACTIONS(2562), + [anon_sym_PLUS_PLUS] = ACTIONS(2562), + [anon_sym_sizeof] = ACTIONS(2560), + [anon_sym___alignof__] = ACTIONS(2560), + [anon_sym___alignof] = ACTIONS(2560), + [anon_sym__alignof] = ACTIONS(2560), + [anon_sym_alignof] = ACTIONS(2560), + [anon_sym__Alignof] = ACTIONS(2560), + [anon_sym_offsetof] = ACTIONS(2560), + [anon_sym__Generic] = ACTIONS(2560), + [anon_sym_asm] = ACTIONS(2560), + [anon_sym___asm__] = ACTIONS(2560), + [anon_sym___asm] = ACTIONS(2560), + [sym_number_literal] = ACTIONS(2562), + [anon_sym_L_SQUOTE] = ACTIONS(2562), + [anon_sym_u_SQUOTE] = ACTIONS(2562), + [anon_sym_U_SQUOTE] = ACTIONS(2562), + [anon_sym_u8_SQUOTE] = ACTIONS(2562), + [anon_sym_SQUOTE] = ACTIONS(2562), + [anon_sym_AT] = ACTIONS(2560), + [anon_sym_DQUOTE] = ACTIONS(2562), + [anon_sym_L_DQUOTE] = ACTIONS(2562), + [anon_sym_u_DQUOTE] = ACTIONS(2562), + [anon_sym_U_DQUOTE] = ACTIONS(2562), + [anon_sym_u8_DQUOTE] = ACTIONS(2562), + [sym_true] = ACTIONS(2560), + [sym_false] = ACTIONS(2560), + [anon_sym_NULL] = ACTIONS(2560), + [anon_sym_nullptr] = ACTIONS(2560), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2560), + [anon_sym___typeof] = ACTIONS(2560), + [anon_sym_typeof] = ACTIONS(2560), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2560), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2560), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2560), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2560), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2560), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2560), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2560), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2560), + [anon_sym_NS_AVAILABLE] = ACTIONS(2560), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2560), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_API_AVAILABLE] = ACTIONS(2560), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_API_DEPRECATED] = ACTIONS(2560), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2560), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2560), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2560), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2560), + [anon_sym___deprecated_msg] = ACTIONS(2560), + [anon_sym___deprecated_enum_msg] = ACTIONS(2560), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2560), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2560), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2560), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2560), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2560), + [anon_sym_ATtry] = ACTIONS(2562), + [anon_sym___try] = ACTIONS(2560), + [anon_sym_ATthrow] = ACTIONS(2562), + [anon_sym_ATselector] = ACTIONS(2562), + [anon_sym_ATavailable] = ACTIONS(2562), + [anon_sym___builtin_available] = ACTIONS(2560), + [anon_sym_va_arg] = ACTIONS(2560), + [anon_sym_ATencode] = ACTIONS(2562), + [anon_sym_ATsynchronized] = ACTIONS(2562), + [anon_sym_BOOL] = ACTIONS(2560), + [anon_sym_IMP] = ACTIONS(2560), + [anon_sym_SEL] = ACTIONS(2560), + [anon_sym_Class] = ACTIONS(2560), + [anon_sym_id] = ACTIONS(2560), + }, + [1161] = { + [sym_identifier] = ACTIONS(2552), + [anon_sym_LPAREN2] = ACTIONS(2554), + [anon_sym_BANG] = ACTIONS(2554), + [anon_sym_TILDE] = ACTIONS(2554), + [anon_sym_DASH] = ACTIONS(2552), + [anon_sym_PLUS] = ACTIONS(2552), + [anon_sym_STAR] = ACTIONS(2554), + [anon_sym_CARET] = ACTIONS(2554), + [anon_sym_AMP] = ACTIONS(2554), + [anon_sym_SEMI] = ACTIONS(2554), + [anon_sym___extension__] = ACTIONS(2552), + [anon_sym_typedef] = ACTIONS(2552), + [anon_sym_extern] = ACTIONS(2552), + [anon_sym___attribute__] = ACTIONS(2552), + [anon_sym___attribute] = ACTIONS(2552), + [anon_sym_noreturn] = ACTIONS(2552), + [anon_sym_LBRACK] = ACTIONS(2554), + [anon_sym___declspec] = ACTIONS(2552), + [anon_sym_LBRACE] = ACTIONS(2554), + [anon_sym_signed] = ACTIONS(2552), + [anon_sym_unsigned] = ACTIONS(2552), + [anon_sym_long] = ACTIONS(2552), + [anon_sym_short] = ACTIONS(2552), + [anon_sym_static] = ACTIONS(2552), + [anon_sym_ATautoreleasepool] = ACTIONS(2554), + [anon_sym_auto] = ACTIONS(2552), + [anon_sym_register] = ACTIONS(2552), + [anon_sym_inline] = ACTIONS(2552), + [anon_sym___inline] = ACTIONS(2552), + [anon_sym___inline__] = ACTIONS(2552), + [anon_sym___forceinline] = ACTIONS(2552), + [anon_sym_thread_local] = ACTIONS(2552), + [anon_sym___thread] = ACTIONS(2552), + [anon_sym_CG_EXTERN] = ACTIONS(2552), + [anon_sym_CG_INLINE] = ACTIONS(2552), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2552), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2552), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2552), + [anon_sym_IBOutlet] = ACTIONS(2552), + [anon_sym_IBInspectable] = ACTIONS(2552), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2552), + [anon_sym_NS_INLINE] = ACTIONS(2552), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2552), + [anon_sym_OBJC_EXPORT] = ACTIONS(2552), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2552), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2552), + [anon_sym_const] = ACTIONS(2552), + [anon_sym_constexpr] = ACTIONS(2552), + [anon_sym_volatile] = ACTIONS(2552), + [anon_sym_restrict] = ACTIONS(2552), + [anon_sym___restrict__] = ACTIONS(2552), + [anon_sym__Atomic] = ACTIONS(2552), + [anon_sym__Noreturn] = ACTIONS(2552), + [anon_sym__Nonnull] = ACTIONS(2552), + [anon_sym_nullable] = ACTIONS(2552), + [anon_sym__Complex] = ACTIONS(2552), + [anon_sym__Nullable] = ACTIONS(2552), + [anon_sym__Nullable_result] = ACTIONS(2552), + [anon_sym__Null_unspecified] = ACTIONS(2552), + [anon_sym___autoreleasing] = ACTIONS(2552), + [anon_sym___block] = ACTIONS(2552), + [anon_sym___bridge] = ACTIONS(2552), + [anon_sym___bridge_retained] = ACTIONS(2552), + [anon_sym___bridge_transfer] = ACTIONS(2552), + [anon_sym___complex] = ACTIONS(2552), + [anon_sym___const] = ACTIONS(2552), + [anon_sym___imag] = ACTIONS(2552), + [anon_sym___kindof] = ACTIONS(2552), + [anon_sym___nonnull] = ACTIONS(2552), + [anon_sym___nullable] = ACTIONS(2552), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2552), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2552), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2552), + [anon_sym___real] = ACTIONS(2552), + [anon_sym___strong] = ACTIONS(2552), + [anon_sym___unsafe_unretained] = ACTIONS(2552), + [anon_sym___unused] = ACTIONS(2552), + [anon_sym___weak] = ACTIONS(2552), + [anon_sym_alignas] = ACTIONS(2552), + [anon_sym__Alignas] = ACTIONS(2552), + [sym_primitive_type] = ACTIONS(2552), + [anon_sym_enum] = ACTIONS(2552), + [anon_sym_struct] = ACTIONS(2552), + [anon_sym_union] = ACTIONS(2552), + [anon_sym_if] = ACTIONS(2552), + [anon_sym_else] = ACTIONS(2552), + [anon_sym_switch] = ACTIONS(2552), + [anon_sym_while] = ACTIONS(2552), + [anon_sym_do] = ACTIONS(2552), + [anon_sym_for] = ACTIONS(2552), + [anon_sym_in] = ACTIONS(2552), + [anon_sym_return] = ACTIONS(2552), + [anon_sym_break] = ACTIONS(2552), + [anon_sym_continue] = ACTIONS(2552), + [anon_sym_goto] = ACTIONS(2552), + [anon_sym_DASH_DASH] = ACTIONS(2554), + [anon_sym_PLUS_PLUS] = ACTIONS(2554), + [anon_sym_sizeof] = ACTIONS(2552), + [anon_sym___alignof__] = ACTIONS(2552), + [anon_sym___alignof] = ACTIONS(2552), + [anon_sym__alignof] = ACTIONS(2552), + [anon_sym_alignof] = ACTIONS(2552), + [anon_sym__Alignof] = ACTIONS(2552), + [anon_sym_offsetof] = ACTIONS(2552), + [anon_sym__Generic] = ACTIONS(2552), + [anon_sym_asm] = ACTIONS(2552), + [anon_sym___asm__] = ACTIONS(2552), + [anon_sym___asm] = ACTIONS(2552), + [sym_number_literal] = ACTIONS(2554), + [anon_sym_L_SQUOTE] = ACTIONS(2554), + [anon_sym_u_SQUOTE] = ACTIONS(2554), + [anon_sym_U_SQUOTE] = ACTIONS(2554), + [anon_sym_u8_SQUOTE] = ACTIONS(2554), + [anon_sym_SQUOTE] = ACTIONS(2554), + [anon_sym_AT] = ACTIONS(2552), + [anon_sym_DQUOTE] = ACTIONS(2554), + [anon_sym_L_DQUOTE] = ACTIONS(2554), + [anon_sym_u_DQUOTE] = ACTIONS(2554), + [anon_sym_U_DQUOTE] = ACTIONS(2554), + [anon_sym_u8_DQUOTE] = ACTIONS(2554), + [sym_true] = ACTIONS(2552), + [sym_false] = ACTIONS(2552), + [anon_sym_NULL] = ACTIONS(2552), + [anon_sym_nullptr] = ACTIONS(2552), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2552), + [anon_sym___typeof] = ACTIONS(2552), + [anon_sym_typeof] = ACTIONS(2552), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2552), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2552), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2552), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2552), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2552), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2552), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2552), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2552), + [anon_sym_NS_AVAILABLE] = ACTIONS(2552), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2552), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_API_AVAILABLE] = ACTIONS(2552), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_API_DEPRECATED] = ACTIONS(2552), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2552), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2552), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2552), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2552), + [anon_sym___deprecated_msg] = ACTIONS(2552), + [anon_sym___deprecated_enum_msg] = ACTIONS(2552), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2552), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2552), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2552), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2552), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2552), + [anon_sym_ATtry] = ACTIONS(2554), + [anon_sym___try] = ACTIONS(2552), + [anon_sym_ATthrow] = ACTIONS(2554), + [anon_sym_ATselector] = ACTIONS(2554), + [anon_sym_ATavailable] = ACTIONS(2554), + [anon_sym___builtin_available] = ACTIONS(2552), + [anon_sym_va_arg] = ACTIONS(2552), + [anon_sym_ATencode] = ACTIONS(2554), + [anon_sym_ATsynchronized] = ACTIONS(2554), + [anon_sym_BOOL] = ACTIONS(2552), + [anon_sym_IMP] = ACTIONS(2552), + [anon_sym_SEL] = ACTIONS(2552), + [anon_sym_Class] = ACTIONS(2552), + [anon_sym_id] = ACTIONS(2552), + }, + [1162] = { + [sym_identifier] = ACTIONS(2412), + [anon_sym_LPAREN2] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2414), + [anon_sym_TILDE] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_STAR] = ACTIONS(2414), + [anon_sym_CARET] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym___extension__] = ACTIONS(2412), + [anon_sym_typedef] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym___attribute__] = ACTIONS(2412), + [anon_sym___attribute] = ACTIONS(2412), + [anon_sym_noreturn] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym___declspec] = ACTIONS(2412), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_signed] = ACTIONS(2412), + [anon_sym_unsigned] = ACTIONS(2412), + [anon_sym_long] = ACTIONS(2412), + [anon_sym_short] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_ATautoreleasepool] = ACTIONS(2414), + [anon_sym_auto] = ACTIONS(2412), + [anon_sym_register] = ACTIONS(2412), + [anon_sym_inline] = ACTIONS(2412), + [anon_sym___inline] = ACTIONS(2412), + [anon_sym___inline__] = ACTIONS(2412), + [anon_sym___forceinline] = ACTIONS(2412), + [anon_sym_thread_local] = ACTIONS(2412), + [anon_sym___thread] = ACTIONS(2412), + [anon_sym_CG_EXTERN] = ACTIONS(2412), + [anon_sym_CG_INLINE] = ACTIONS(2412), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2412), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2412), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2412), + [anon_sym_IBOutlet] = ACTIONS(2412), + [anon_sym_IBInspectable] = ACTIONS(2412), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2412), + [anon_sym_NS_INLINE] = ACTIONS(2412), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2412), + [anon_sym_OBJC_EXPORT] = ACTIONS(2412), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2412), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_constexpr] = ACTIONS(2412), + [anon_sym_volatile] = ACTIONS(2412), + [anon_sym_restrict] = ACTIONS(2412), + [anon_sym___restrict__] = ACTIONS(2412), + [anon_sym__Atomic] = ACTIONS(2412), + [anon_sym__Noreturn] = ACTIONS(2412), + [anon_sym__Nonnull] = ACTIONS(2412), + [anon_sym_nullable] = ACTIONS(2412), + [anon_sym__Complex] = ACTIONS(2412), + [anon_sym__Nullable] = ACTIONS(2412), + [anon_sym__Nullable_result] = ACTIONS(2412), + [anon_sym__Null_unspecified] = ACTIONS(2412), + [anon_sym___autoreleasing] = ACTIONS(2412), + [anon_sym___block] = ACTIONS(2412), + [anon_sym___bridge] = ACTIONS(2412), + [anon_sym___bridge_retained] = ACTIONS(2412), + [anon_sym___bridge_transfer] = ACTIONS(2412), + [anon_sym___complex] = ACTIONS(2412), + [anon_sym___const] = ACTIONS(2412), + [anon_sym___imag] = ACTIONS(2412), + [anon_sym___kindof] = ACTIONS(2412), + [anon_sym___nonnull] = ACTIONS(2412), + [anon_sym___nullable] = ACTIONS(2412), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2412), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2412), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2412), + [anon_sym___real] = ACTIONS(2412), + [anon_sym___strong] = ACTIONS(2412), + [anon_sym___unsafe_unretained] = ACTIONS(2412), + [anon_sym___unused] = ACTIONS(2412), + [anon_sym___weak] = ACTIONS(2412), + [anon_sym_alignas] = ACTIONS(2412), + [anon_sym__Alignas] = ACTIONS(2412), + [sym_primitive_type] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [anon_sym_struct] = ACTIONS(2412), + [anon_sym_union] = ACTIONS(2412), + [anon_sym_if] = ACTIONS(2412), + [anon_sym_else] = ACTIONS(2412), + [anon_sym_switch] = ACTIONS(2412), + [anon_sym_while] = ACTIONS(2412), + [anon_sym_do] = ACTIONS(2412), + [anon_sym_for] = ACTIONS(2412), + [anon_sym_in] = ACTIONS(2412), + [anon_sym_return] = ACTIONS(2412), + [anon_sym_break] = ACTIONS(2412), + [anon_sym_continue] = ACTIONS(2412), + [anon_sym_goto] = ACTIONS(2412), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_sizeof] = ACTIONS(2412), + [anon_sym___alignof__] = ACTIONS(2412), + [anon_sym___alignof] = ACTIONS(2412), + [anon_sym__alignof] = ACTIONS(2412), + [anon_sym_alignof] = ACTIONS(2412), + [anon_sym__Alignof] = ACTIONS(2412), + [anon_sym_offsetof] = ACTIONS(2412), + [anon_sym__Generic] = ACTIONS(2412), + [anon_sym_asm] = ACTIONS(2412), + [anon_sym___asm__] = ACTIONS(2412), + [anon_sym___asm] = ACTIONS(2412), + [sym_number_literal] = ACTIONS(2414), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_AT] = ACTIONS(2412), + [anon_sym_DQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2412), + [sym_false] = ACTIONS(2412), + [anon_sym_NULL] = ACTIONS(2412), + [anon_sym_nullptr] = ACTIONS(2412), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2412), + [anon_sym___typeof] = ACTIONS(2412), + [anon_sym_typeof] = ACTIONS(2412), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2412), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2412), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2412), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2412), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2412), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2412), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2412), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2412), + [anon_sym_NS_AVAILABLE] = ACTIONS(2412), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2412), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_API_AVAILABLE] = ACTIONS(2412), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_API_DEPRECATED] = ACTIONS(2412), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2412), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2412), + [anon_sym___deprecated_msg] = ACTIONS(2412), + [anon_sym___deprecated_enum_msg] = ACTIONS(2412), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2412), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2412), + [anon_sym_ATtry] = ACTIONS(2414), + [anon_sym___try] = ACTIONS(2412), + [anon_sym_ATthrow] = ACTIONS(2414), + [anon_sym_ATselector] = ACTIONS(2414), + [anon_sym_ATavailable] = ACTIONS(2414), + [anon_sym___builtin_available] = ACTIONS(2412), + [anon_sym_va_arg] = ACTIONS(2412), + [anon_sym_ATencode] = ACTIONS(2414), + [anon_sym_ATsynchronized] = ACTIONS(2414), + [anon_sym_BOOL] = ACTIONS(2412), + [anon_sym_IMP] = ACTIONS(2412), + [anon_sym_SEL] = ACTIONS(2412), + [anon_sym_Class] = ACTIONS(2412), + [anon_sym_id] = ACTIONS(2412), + }, + [1163] = { + [sym_identifier] = ACTIONS(2556), + [anon_sym_LPAREN2] = ACTIONS(2558), + [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_TILDE] = ACTIONS(2558), + [anon_sym_DASH] = ACTIONS(2556), + [anon_sym_PLUS] = ACTIONS(2556), + [anon_sym_STAR] = ACTIONS(2558), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym_AMP] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym___extension__] = ACTIONS(2556), + [anon_sym_typedef] = ACTIONS(2556), + [anon_sym_extern] = ACTIONS(2556), + [anon_sym___attribute__] = ACTIONS(2556), + [anon_sym___attribute] = ACTIONS(2556), + [anon_sym_noreturn] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym___declspec] = ACTIONS(2556), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_signed] = ACTIONS(2556), + [anon_sym_unsigned] = ACTIONS(2556), + [anon_sym_long] = ACTIONS(2556), + [anon_sym_short] = ACTIONS(2556), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_ATautoreleasepool] = ACTIONS(2558), + [anon_sym_auto] = ACTIONS(2556), + [anon_sym_register] = ACTIONS(2556), + [anon_sym_inline] = ACTIONS(2556), + [anon_sym___inline] = ACTIONS(2556), + [anon_sym___inline__] = ACTIONS(2556), + [anon_sym___forceinline] = ACTIONS(2556), + [anon_sym_thread_local] = ACTIONS(2556), + [anon_sym___thread] = ACTIONS(2556), + [anon_sym_CG_EXTERN] = ACTIONS(2556), + [anon_sym_CG_INLINE] = ACTIONS(2556), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2556), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2556), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2556), + [anon_sym_IBOutlet] = ACTIONS(2556), + [anon_sym_IBInspectable] = ACTIONS(2556), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2556), + [anon_sym_NS_INLINE] = ACTIONS(2556), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2556), + [anon_sym_OBJC_EXPORT] = ACTIONS(2556), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2556), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2556), + [anon_sym_const] = ACTIONS(2556), + [anon_sym_constexpr] = ACTIONS(2556), + [anon_sym_volatile] = ACTIONS(2556), + [anon_sym_restrict] = ACTIONS(2556), + [anon_sym___restrict__] = ACTIONS(2556), + [anon_sym__Atomic] = ACTIONS(2556), + [anon_sym__Noreturn] = ACTIONS(2556), + [anon_sym__Nonnull] = ACTIONS(2556), + [anon_sym_nullable] = ACTIONS(2556), + [anon_sym__Complex] = ACTIONS(2556), + [anon_sym__Nullable] = ACTIONS(2556), + [anon_sym__Nullable_result] = ACTIONS(2556), + [anon_sym__Null_unspecified] = ACTIONS(2556), + [anon_sym___autoreleasing] = ACTIONS(2556), + [anon_sym___block] = ACTIONS(2556), + [anon_sym___bridge] = ACTIONS(2556), + [anon_sym___bridge_retained] = ACTIONS(2556), + [anon_sym___bridge_transfer] = ACTIONS(2556), + [anon_sym___complex] = ACTIONS(2556), + [anon_sym___const] = ACTIONS(2556), + [anon_sym___imag] = ACTIONS(2556), + [anon_sym___kindof] = ACTIONS(2556), + [anon_sym___nonnull] = ACTIONS(2556), + [anon_sym___nullable] = ACTIONS(2556), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2556), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2556), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2556), + [anon_sym___real] = ACTIONS(2556), + [anon_sym___strong] = ACTIONS(2556), + [anon_sym___unsafe_unretained] = ACTIONS(2556), + [anon_sym___unused] = ACTIONS(2556), + [anon_sym___weak] = ACTIONS(2556), + [anon_sym_alignas] = ACTIONS(2556), + [anon_sym__Alignas] = ACTIONS(2556), + [sym_primitive_type] = ACTIONS(2556), + [anon_sym_enum] = ACTIONS(2556), + [anon_sym_struct] = ACTIONS(2556), + [anon_sym_union] = ACTIONS(2556), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_else] = ACTIONS(2556), + [anon_sym_switch] = ACTIONS(2556), + [anon_sym_while] = ACTIONS(2556), + [anon_sym_do] = ACTIONS(2556), + [anon_sym_for] = ACTIONS(2556), + [anon_sym_in] = ACTIONS(2556), + [anon_sym_return] = ACTIONS(2556), + [anon_sym_break] = ACTIONS(2556), + [anon_sym_continue] = ACTIONS(2556), + [anon_sym_goto] = ACTIONS(2556), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_sizeof] = ACTIONS(2556), + [anon_sym___alignof__] = ACTIONS(2556), + [anon_sym___alignof] = ACTIONS(2556), + [anon_sym__alignof] = ACTIONS(2556), + [anon_sym_alignof] = ACTIONS(2556), + [anon_sym__Alignof] = ACTIONS(2556), + [anon_sym_offsetof] = ACTIONS(2556), + [anon_sym__Generic] = ACTIONS(2556), + [anon_sym_asm] = ACTIONS(2556), + [anon_sym___asm__] = ACTIONS(2556), + [anon_sym___asm] = ACTIONS(2556), + [sym_number_literal] = ACTIONS(2558), + [anon_sym_L_SQUOTE] = ACTIONS(2558), + [anon_sym_u_SQUOTE] = ACTIONS(2558), + [anon_sym_U_SQUOTE] = ACTIONS(2558), + [anon_sym_u8_SQUOTE] = ACTIONS(2558), + [anon_sym_SQUOTE] = ACTIONS(2558), + [anon_sym_AT] = ACTIONS(2556), + [anon_sym_DQUOTE] = ACTIONS(2558), + [anon_sym_L_DQUOTE] = ACTIONS(2558), + [anon_sym_u_DQUOTE] = ACTIONS(2558), + [anon_sym_U_DQUOTE] = ACTIONS(2558), + [anon_sym_u8_DQUOTE] = ACTIONS(2558), + [sym_true] = ACTIONS(2556), + [sym_false] = ACTIONS(2556), + [anon_sym_NULL] = ACTIONS(2556), + [anon_sym_nullptr] = ACTIONS(2556), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2556), + [anon_sym___typeof] = ACTIONS(2556), + [anon_sym_typeof] = ACTIONS(2556), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2556), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2556), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2556), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2556), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2556), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2556), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2556), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2556), + [anon_sym_NS_AVAILABLE] = ACTIONS(2556), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2556), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_API_AVAILABLE] = ACTIONS(2556), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_API_DEPRECATED] = ACTIONS(2556), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2556), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2556), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2556), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2556), + [anon_sym___deprecated_msg] = ACTIONS(2556), + [anon_sym___deprecated_enum_msg] = ACTIONS(2556), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2556), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2556), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2556), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2556), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2556), + [anon_sym_ATtry] = ACTIONS(2558), + [anon_sym___try] = ACTIONS(2556), + [anon_sym_ATthrow] = ACTIONS(2558), + [anon_sym_ATselector] = ACTIONS(2558), + [anon_sym_ATavailable] = ACTIONS(2558), + [anon_sym___builtin_available] = ACTIONS(2556), + [anon_sym_va_arg] = ACTIONS(2556), + [anon_sym_ATencode] = ACTIONS(2558), + [anon_sym_ATsynchronized] = ACTIONS(2558), + [anon_sym_BOOL] = ACTIONS(2556), + [anon_sym_IMP] = ACTIONS(2556), + [anon_sym_SEL] = ACTIONS(2556), + [anon_sym_Class] = ACTIONS(2556), + [anon_sym_id] = ACTIONS(2556), + }, + [1164] = { + [sym_identifier] = ACTIONS(2548), + [anon_sym_LPAREN2] = ACTIONS(2550), + [anon_sym_BANG] = ACTIONS(2550), + [anon_sym_TILDE] = ACTIONS(2550), + [anon_sym_DASH] = ACTIONS(2548), + [anon_sym_PLUS] = ACTIONS(2548), + [anon_sym_STAR] = ACTIONS(2550), + [anon_sym_CARET] = ACTIONS(2550), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_SEMI] = ACTIONS(2550), + [anon_sym___extension__] = ACTIONS(2548), + [anon_sym_typedef] = ACTIONS(2548), + [anon_sym_extern] = ACTIONS(2548), + [anon_sym___attribute__] = ACTIONS(2548), + [anon_sym___attribute] = ACTIONS(2548), + [anon_sym_noreturn] = ACTIONS(2548), + [anon_sym_LBRACK] = ACTIONS(2550), + [anon_sym___declspec] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2550), + [anon_sym_signed] = ACTIONS(2548), + [anon_sym_unsigned] = ACTIONS(2548), + [anon_sym_long] = ACTIONS(2548), + [anon_sym_short] = ACTIONS(2548), + [anon_sym_static] = ACTIONS(2548), + [anon_sym_ATautoreleasepool] = ACTIONS(2550), + [anon_sym_auto] = ACTIONS(2548), + [anon_sym_register] = ACTIONS(2548), + [anon_sym_inline] = ACTIONS(2548), + [anon_sym___inline] = ACTIONS(2548), + [anon_sym___inline__] = ACTIONS(2548), + [anon_sym___forceinline] = ACTIONS(2548), + [anon_sym_thread_local] = ACTIONS(2548), + [anon_sym___thread] = ACTIONS(2548), + [anon_sym_CG_EXTERN] = ACTIONS(2548), + [anon_sym_CG_INLINE] = ACTIONS(2548), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2548), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2548), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2548), + [anon_sym_IBOutlet] = ACTIONS(2548), + [anon_sym_IBInspectable] = ACTIONS(2548), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2548), + [anon_sym_NS_INLINE] = ACTIONS(2548), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2548), + [anon_sym_OBJC_EXPORT] = ACTIONS(2548), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2548), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2548), + [anon_sym_const] = ACTIONS(2548), + [anon_sym_constexpr] = ACTIONS(2548), + [anon_sym_volatile] = ACTIONS(2548), + [anon_sym_restrict] = ACTIONS(2548), + [anon_sym___restrict__] = ACTIONS(2548), + [anon_sym__Atomic] = ACTIONS(2548), + [anon_sym__Noreturn] = ACTIONS(2548), + [anon_sym__Nonnull] = ACTIONS(2548), + [anon_sym_nullable] = ACTIONS(2548), + [anon_sym__Complex] = ACTIONS(2548), + [anon_sym__Nullable] = ACTIONS(2548), + [anon_sym__Nullable_result] = ACTIONS(2548), + [anon_sym__Null_unspecified] = ACTIONS(2548), + [anon_sym___autoreleasing] = ACTIONS(2548), + [anon_sym___block] = ACTIONS(2548), + [anon_sym___bridge] = ACTIONS(2548), + [anon_sym___bridge_retained] = ACTIONS(2548), + [anon_sym___bridge_transfer] = ACTIONS(2548), + [anon_sym___complex] = ACTIONS(2548), + [anon_sym___const] = ACTIONS(2548), + [anon_sym___imag] = ACTIONS(2548), + [anon_sym___kindof] = ACTIONS(2548), + [anon_sym___nonnull] = ACTIONS(2548), + [anon_sym___nullable] = ACTIONS(2548), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2548), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2548), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2548), + [anon_sym___real] = ACTIONS(2548), + [anon_sym___strong] = ACTIONS(2548), + [anon_sym___unsafe_unretained] = ACTIONS(2548), + [anon_sym___unused] = ACTIONS(2548), + [anon_sym___weak] = ACTIONS(2548), + [anon_sym_alignas] = ACTIONS(2548), + [anon_sym__Alignas] = ACTIONS(2548), + [sym_primitive_type] = ACTIONS(2548), + [anon_sym_enum] = ACTIONS(2548), + [anon_sym_struct] = ACTIONS(2548), + [anon_sym_union] = ACTIONS(2548), + [anon_sym_if] = ACTIONS(2548), + [anon_sym_else] = ACTIONS(2548), + [anon_sym_switch] = ACTIONS(2548), + [anon_sym_while] = ACTIONS(2548), + [anon_sym_do] = ACTIONS(2548), + [anon_sym_for] = ACTIONS(2548), + [anon_sym_in] = ACTIONS(2548), + [anon_sym_return] = ACTIONS(2548), + [anon_sym_break] = ACTIONS(2548), + [anon_sym_continue] = ACTIONS(2548), + [anon_sym_goto] = ACTIONS(2548), + [anon_sym_DASH_DASH] = ACTIONS(2550), + [anon_sym_PLUS_PLUS] = ACTIONS(2550), + [anon_sym_sizeof] = ACTIONS(2548), + [anon_sym___alignof__] = ACTIONS(2548), + [anon_sym___alignof] = ACTIONS(2548), + [anon_sym__alignof] = ACTIONS(2548), + [anon_sym_alignof] = ACTIONS(2548), + [anon_sym__Alignof] = ACTIONS(2548), + [anon_sym_offsetof] = ACTIONS(2548), + [anon_sym__Generic] = ACTIONS(2548), + [anon_sym_asm] = ACTIONS(2548), + [anon_sym___asm__] = ACTIONS(2548), + [anon_sym___asm] = ACTIONS(2548), + [sym_number_literal] = ACTIONS(2550), + [anon_sym_L_SQUOTE] = ACTIONS(2550), + [anon_sym_u_SQUOTE] = ACTIONS(2550), + [anon_sym_U_SQUOTE] = ACTIONS(2550), + [anon_sym_u8_SQUOTE] = ACTIONS(2550), + [anon_sym_SQUOTE] = ACTIONS(2550), + [anon_sym_AT] = ACTIONS(2548), + [anon_sym_DQUOTE] = ACTIONS(2550), + [anon_sym_L_DQUOTE] = ACTIONS(2550), + [anon_sym_u_DQUOTE] = ACTIONS(2550), + [anon_sym_U_DQUOTE] = ACTIONS(2550), + [anon_sym_u8_DQUOTE] = ACTIONS(2550), + [sym_true] = ACTIONS(2548), + [sym_false] = ACTIONS(2548), + [anon_sym_NULL] = ACTIONS(2548), + [anon_sym_nullptr] = ACTIONS(2548), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2548), + [anon_sym___typeof] = ACTIONS(2548), + [anon_sym_typeof] = ACTIONS(2548), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2548), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2548), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2548), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2548), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2548), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2548), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2548), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2548), + [anon_sym_NS_AVAILABLE] = ACTIONS(2548), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2548), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_API_AVAILABLE] = ACTIONS(2548), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_API_DEPRECATED] = ACTIONS(2548), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2548), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2548), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2548), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2548), + [anon_sym___deprecated_msg] = ACTIONS(2548), + [anon_sym___deprecated_enum_msg] = ACTIONS(2548), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2548), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2548), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2548), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2548), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2548), + [anon_sym_ATtry] = ACTIONS(2550), + [anon_sym___try] = ACTIONS(2548), + [anon_sym_ATthrow] = ACTIONS(2550), + [anon_sym_ATselector] = ACTIONS(2550), + [anon_sym_ATavailable] = ACTIONS(2550), + [anon_sym___builtin_available] = ACTIONS(2548), + [anon_sym_va_arg] = ACTIONS(2548), + [anon_sym_ATencode] = ACTIONS(2550), + [anon_sym_ATsynchronized] = ACTIONS(2550), + [anon_sym_BOOL] = ACTIONS(2548), + [anon_sym_IMP] = ACTIONS(2548), + [anon_sym_SEL] = ACTIONS(2548), + [anon_sym_Class] = ACTIONS(2548), + [anon_sym_id] = ACTIONS(2548), + }, + [1165] = { + [sym_identifier] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [1166] = { + [sym_identifier] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [1167] = { + [sym_identifier] = ACTIONS(2524), + [anon_sym_LPAREN2] = ACTIONS(2526), + [anon_sym_BANG] = ACTIONS(2526), + [anon_sym_TILDE] = ACTIONS(2526), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_STAR] = ACTIONS(2526), + [anon_sym_CARET] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2526), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym___extension__] = ACTIONS(2524), + [anon_sym_typedef] = ACTIONS(2524), + [anon_sym_extern] = ACTIONS(2524), + [anon_sym___attribute__] = ACTIONS(2524), + [anon_sym___attribute] = ACTIONS(2524), + [anon_sym_noreturn] = ACTIONS(2524), + [anon_sym_LBRACK] = ACTIONS(2526), + [anon_sym___declspec] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2526), + [anon_sym_signed] = ACTIONS(2524), + [anon_sym_unsigned] = ACTIONS(2524), + [anon_sym_long] = ACTIONS(2524), + [anon_sym_short] = ACTIONS(2524), + [anon_sym_static] = ACTIONS(2524), + [anon_sym_ATautoreleasepool] = ACTIONS(2526), + [anon_sym_auto] = ACTIONS(2524), + [anon_sym_register] = ACTIONS(2524), + [anon_sym_inline] = ACTIONS(2524), + [anon_sym___inline] = ACTIONS(2524), + [anon_sym___inline__] = ACTIONS(2524), + [anon_sym___forceinline] = ACTIONS(2524), + [anon_sym_thread_local] = ACTIONS(2524), + [anon_sym___thread] = ACTIONS(2524), + [anon_sym_CG_EXTERN] = ACTIONS(2524), + [anon_sym_CG_INLINE] = ACTIONS(2524), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2524), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2524), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2524), + [anon_sym_IBOutlet] = ACTIONS(2524), + [anon_sym_IBInspectable] = ACTIONS(2524), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2524), + [anon_sym_NS_INLINE] = ACTIONS(2524), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2524), + [anon_sym_OBJC_EXPORT] = ACTIONS(2524), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2524), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2524), + [anon_sym_const] = ACTIONS(2524), + [anon_sym_constexpr] = ACTIONS(2524), + [anon_sym_volatile] = ACTIONS(2524), + [anon_sym_restrict] = ACTIONS(2524), + [anon_sym___restrict__] = ACTIONS(2524), + [anon_sym__Atomic] = ACTIONS(2524), + [anon_sym__Noreturn] = ACTIONS(2524), + [anon_sym__Nonnull] = ACTIONS(2524), + [anon_sym_nullable] = ACTIONS(2524), + [anon_sym__Complex] = ACTIONS(2524), + [anon_sym__Nullable] = ACTIONS(2524), + [anon_sym__Nullable_result] = ACTIONS(2524), + [anon_sym__Null_unspecified] = ACTIONS(2524), + [anon_sym___autoreleasing] = ACTIONS(2524), + [anon_sym___block] = ACTIONS(2524), + [anon_sym___bridge] = ACTIONS(2524), + [anon_sym___bridge_retained] = ACTIONS(2524), + [anon_sym___bridge_transfer] = ACTIONS(2524), + [anon_sym___complex] = ACTIONS(2524), + [anon_sym___const] = ACTIONS(2524), + [anon_sym___imag] = ACTIONS(2524), + [anon_sym___kindof] = ACTIONS(2524), + [anon_sym___nonnull] = ACTIONS(2524), + [anon_sym___nullable] = ACTIONS(2524), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2524), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2524), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2524), + [anon_sym___real] = ACTIONS(2524), + [anon_sym___strong] = ACTIONS(2524), + [anon_sym___unsafe_unretained] = ACTIONS(2524), + [anon_sym___unused] = ACTIONS(2524), + [anon_sym___weak] = ACTIONS(2524), + [anon_sym_alignas] = ACTIONS(2524), + [anon_sym__Alignas] = ACTIONS(2524), + [sym_primitive_type] = ACTIONS(2524), + [anon_sym_enum] = ACTIONS(2524), + [anon_sym_struct] = ACTIONS(2524), + [anon_sym_union] = ACTIONS(2524), + [anon_sym_if] = ACTIONS(2524), + [anon_sym_else] = ACTIONS(2524), + [anon_sym_switch] = ACTIONS(2524), + [anon_sym_while] = ACTIONS(2524), + [anon_sym_do] = ACTIONS(2524), + [anon_sym_for] = ACTIONS(2524), + [anon_sym_in] = ACTIONS(2524), + [anon_sym_return] = ACTIONS(2524), + [anon_sym_break] = ACTIONS(2524), + [anon_sym_continue] = ACTIONS(2524), + [anon_sym_goto] = ACTIONS(2524), + [anon_sym_DASH_DASH] = ACTIONS(2526), + [anon_sym_PLUS_PLUS] = ACTIONS(2526), + [anon_sym_sizeof] = ACTIONS(2524), + [anon_sym___alignof__] = ACTIONS(2524), + [anon_sym___alignof] = ACTIONS(2524), + [anon_sym__alignof] = ACTIONS(2524), + [anon_sym_alignof] = ACTIONS(2524), + [anon_sym__Alignof] = ACTIONS(2524), + [anon_sym_offsetof] = ACTIONS(2524), + [anon_sym__Generic] = ACTIONS(2524), + [anon_sym_asm] = ACTIONS(2524), + [anon_sym___asm__] = ACTIONS(2524), + [anon_sym___asm] = ACTIONS(2524), + [sym_number_literal] = ACTIONS(2526), + [anon_sym_L_SQUOTE] = ACTIONS(2526), + [anon_sym_u_SQUOTE] = ACTIONS(2526), + [anon_sym_U_SQUOTE] = ACTIONS(2526), + [anon_sym_u8_SQUOTE] = ACTIONS(2526), + [anon_sym_SQUOTE] = ACTIONS(2526), + [anon_sym_AT] = ACTIONS(2524), + [anon_sym_DQUOTE] = ACTIONS(2526), + [anon_sym_L_DQUOTE] = ACTIONS(2526), + [anon_sym_u_DQUOTE] = ACTIONS(2526), + [anon_sym_U_DQUOTE] = ACTIONS(2526), + [anon_sym_u8_DQUOTE] = ACTIONS(2526), + [sym_true] = ACTIONS(2524), + [sym_false] = ACTIONS(2524), + [anon_sym_NULL] = ACTIONS(2524), + [anon_sym_nullptr] = ACTIONS(2524), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2524), + [anon_sym___typeof] = ACTIONS(2524), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2524), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2524), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2524), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2524), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2524), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2524), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2524), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2524), + [anon_sym_NS_AVAILABLE] = ACTIONS(2524), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2524), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_API_AVAILABLE] = ACTIONS(2524), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_API_DEPRECATED] = ACTIONS(2524), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2524), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2524), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2524), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2524), + [anon_sym___deprecated_msg] = ACTIONS(2524), + [anon_sym___deprecated_enum_msg] = ACTIONS(2524), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2524), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2524), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2524), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2524), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2524), + [anon_sym_ATtry] = ACTIONS(2526), + [anon_sym___try] = ACTIONS(2524), + [anon_sym_ATthrow] = ACTIONS(2526), + [anon_sym_ATselector] = ACTIONS(2526), + [anon_sym_ATavailable] = ACTIONS(2526), + [anon_sym___builtin_available] = ACTIONS(2524), + [anon_sym_va_arg] = ACTIONS(2524), + [anon_sym_ATencode] = ACTIONS(2526), + [anon_sym_ATsynchronized] = ACTIONS(2526), + [anon_sym_BOOL] = ACTIONS(2524), + [anon_sym_IMP] = ACTIONS(2524), + [anon_sym_SEL] = ACTIONS(2524), + [anon_sym_Class] = ACTIONS(2524), + [anon_sym_id] = ACTIONS(2524), + }, + [1168] = { + [sym_identifier] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym___attribute] = ACTIONS(2564), + [anon_sym_noreturn] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym___declspec] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_signed] = ACTIONS(2564), + [anon_sym_unsigned] = ACTIONS(2564), + [anon_sym_long] = ACTIONS(2564), + [anon_sym_short] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_ATautoreleasepool] = ACTIONS(2566), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym___inline] = ACTIONS(2564), + [anon_sym___inline__] = ACTIONS(2564), + [anon_sym___forceinline] = ACTIONS(2564), + [anon_sym_thread_local] = ACTIONS(2564), + [anon_sym___thread] = ACTIONS(2564), + [anon_sym_CG_EXTERN] = ACTIONS(2564), + [anon_sym_CG_INLINE] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2564), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2564), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2564), + [anon_sym_IBOutlet] = ACTIONS(2564), + [anon_sym_IBInspectable] = ACTIONS(2564), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2564), + [anon_sym_NS_INLINE] = ACTIONS(2564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2564), + [anon_sym_OBJC_EXPORT] = ACTIONS(2564), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_constexpr] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym___restrict__] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym__Noreturn] = ACTIONS(2564), + [anon_sym__Nonnull] = ACTIONS(2564), + [anon_sym_nullable] = ACTIONS(2564), + [anon_sym__Complex] = ACTIONS(2564), + [anon_sym__Nullable] = ACTIONS(2564), + [anon_sym__Nullable_result] = ACTIONS(2564), + [anon_sym__Null_unspecified] = ACTIONS(2564), + [anon_sym___autoreleasing] = ACTIONS(2564), + [anon_sym___block] = ACTIONS(2564), + [anon_sym___bridge] = ACTIONS(2564), + [anon_sym___bridge_retained] = ACTIONS(2564), + [anon_sym___bridge_transfer] = ACTIONS(2564), + [anon_sym___complex] = ACTIONS(2564), + [anon_sym___const] = ACTIONS(2564), + [anon_sym___imag] = ACTIONS(2564), + [anon_sym___kindof] = ACTIONS(2564), + [anon_sym___nonnull] = ACTIONS(2564), + [anon_sym___nullable] = ACTIONS(2564), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2564), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2564), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2564), + [anon_sym___real] = ACTIONS(2564), + [anon_sym___strong] = ACTIONS(2564), + [anon_sym___unsafe_unretained] = ACTIONS(2564), + [anon_sym___unused] = ACTIONS(2564), + [anon_sym___weak] = ACTIONS(2564), + [anon_sym_alignas] = ACTIONS(2564), + [anon_sym__Alignas] = ACTIONS(2564), + [sym_primitive_type] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_in] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_goto] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_sizeof] = ACTIONS(2564), + [anon_sym___alignof__] = ACTIONS(2564), + [anon_sym___alignof] = ACTIONS(2564), + [anon_sym__alignof] = ACTIONS(2564), + [anon_sym_alignof] = ACTIONS(2564), + [anon_sym__Alignof] = ACTIONS(2564), + [anon_sym_offsetof] = ACTIONS(2564), + [anon_sym__Generic] = ACTIONS(2564), + [anon_sym_asm] = ACTIONS(2564), + [anon_sym___asm__] = ACTIONS(2564), + [anon_sym___asm] = ACTIONS(2564), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_L_SQUOTE] = ACTIONS(2566), + [anon_sym_u_SQUOTE] = ACTIONS(2566), + [anon_sym_U_SQUOTE] = ACTIONS(2566), + [anon_sym_u8_SQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_L_DQUOTE] = ACTIONS(2566), + [anon_sym_u_DQUOTE] = ACTIONS(2566), + [anon_sym_U_DQUOTE] = ACTIONS(2566), + [anon_sym_u8_DQUOTE] = ACTIONS(2566), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_nullptr] = ACTIONS(2564), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2564), + [anon_sym___typeof] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2564), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2564), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE] = ACTIONS(2564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_API_AVAILABLE] = ACTIONS(2564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_API_DEPRECATED] = ACTIONS(2564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2564), + [anon_sym___deprecated_msg] = ACTIONS(2564), + [anon_sym___deprecated_enum_msg] = ACTIONS(2564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2564), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2564), + [anon_sym_ATtry] = ACTIONS(2566), + [anon_sym___try] = ACTIONS(2564), + [anon_sym_ATthrow] = ACTIONS(2566), + [anon_sym_ATselector] = ACTIONS(2566), + [anon_sym_ATavailable] = ACTIONS(2566), + [anon_sym___builtin_available] = ACTIONS(2564), + [anon_sym_va_arg] = ACTIONS(2564), + [anon_sym_ATencode] = ACTIONS(2566), + [anon_sym_ATsynchronized] = ACTIONS(2566), + [anon_sym_BOOL] = ACTIONS(2564), + [anon_sym_IMP] = ACTIONS(2564), + [anon_sym_SEL] = ACTIONS(2564), + [anon_sym_Class] = ACTIONS(2564), + [anon_sym_id] = ACTIONS(2564), + }, + [1169] = { + [sym_identifier] = ACTIONS(2528), + [anon_sym_LPAREN2] = ACTIONS(2530), + [anon_sym_BANG] = ACTIONS(2530), + [anon_sym_TILDE] = ACTIONS(2530), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_CARET] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2530), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym___extension__] = ACTIONS(2528), + [anon_sym_typedef] = ACTIONS(2528), + [anon_sym_extern] = ACTIONS(2528), + [anon_sym___attribute__] = ACTIONS(2528), + [anon_sym___attribute] = ACTIONS(2528), + [anon_sym_noreturn] = ACTIONS(2528), + [anon_sym_LBRACK] = ACTIONS(2530), + [anon_sym___declspec] = ACTIONS(2528), + [anon_sym_LBRACE] = ACTIONS(2530), + [anon_sym_signed] = ACTIONS(2528), + [anon_sym_unsigned] = ACTIONS(2528), + [anon_sym_long] = ACTIONS(2528), + [anon_sym_short] = ACTIONS(2528), + [anon_sym_static] = ACTIONS(2528), + [anon_sym_ATautoreleasepool] = ACTIONS(2530), + [anon_sym_auto] = ACTIONS(2528), + [anon_sym_register] = ACTIONS(2528), + [anon_sym_inline] = ACTIONS(2528), + [anon_sym___inline] = ACTIONS(2528), + [anon_sym___inline__] = ACTIONS(2528), + [anon_sym___forceinline] = ACTIONS(2528), + [anon_sym_thread_local] = ACTIONS(2528), + [anon_sym___thread] = ACTIONS(2528), + [anon_sym_CG_EXTERN] = ACTIONS(2528), + [anon_sym_CG_INLINE] = ACTIONS(2528), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2528), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2528), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2528), + [anon_sym_IBOutlet] = ACTIONS(2528), + [anon_sym_IBInspectable] = ACTIONS(2528), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2528), + [anon_sym_NS_INLINE] = ACTIONS(2528), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2528), + [anon_sym_OBJC_EXPORT] = ACTIONS(2528), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2528), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2528), + [anon_sym_const] = ACTIONS(2528), + [anon_sym_constexpr] = ACTIONS(2528), + [anon_sym_volatile] = ACTIONS(2528), + [anon_sym_restrict] = ACTIONS(2528), + [anon_sym___restrict__] = ACTIONS(2528), + [anon_sym__Atomic] = ACTIONS(2528), + [anon_sym__Noreturn] = ACTIONS(2528), + [anon_sym__Nonnull] = ACTIONS(2528), + [anon_sym_nullable] = ACTIONS(2528), + [anon_sym__Complex] = ACTIONS(2528), + [anon_sym__Nullable] = ACTIONS(2528), + [anon_sym__Nullable_result] = ACTIONS(2528), + [anon_sym__Null_unspecified] = ACTIONS(2528), + [anon_sym___autoreleasing] = ACTIONS(2528), + [anon_sym___block] = ACTIONS(2528), + [anon_sym___bridge] = ACTIONS(2528), + [anon_sym___bridge_retained] = ACTIONS(2528), + [anon_sym___bridge_transfer] = ACTIONS(2528), + [anon_sym___complex] = ACTIONS(2528), + [anon_sym___const] = ACTIONS(2528), + [anon_sym___imag] = ACTIONS(2528), + [anon_sym___kindof] = ACTIONS(2528), + [anon_sym___nonnull] = ACTIONS(2528), + [anon_sym___nullable] = ACTIONS(2528), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2528), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2528), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2528), + [anon_sym___real] = ACTIONS(2528), + [anon_sym___strong] = ACTIONS(2528), + [anon_sym___unsafe_unretained] = ACTIONS(2528), + [anon_sym___unused] = ACTIONS(2528), + [anon_sym___weak] = ACTIONS(2528), + [anon_sym_alignas] = ACTIONS(2528), + [anon_sym__Alignas] = ACTIONS(2528), + [sym_primitive_type] = ACTIONS(2528), + [anon_sym_enum] = ACTIONS(2528), + [anon_sym_struct] = ACTIONS(2528), + [anon_sym_union] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_else] = ACTIONS(2528), + [anon_sym_switch] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_in] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_break] = ACTIONS(2528), + [anon_sym_continue] = ACTIONS(2528), + [anon_sym_goto] = ACTIONS(2528), + [anon_sym_DASH_DASH] = ACTIONS(2530), + [anon_sym_PLUS_PLUS] = ACTIONS(2530), + [anon_sym_sizeof] = ACTIONS(2528), + [anon_sym___alignof__] = ACTIONS(2528), + [anon_sym___alignof] = ACTIONS(2528), + [anon_sym__alignof] = ACTIONS(2528), + [anon_sym_alignof] = ACTIONS(2528), + [anon_sym__Alignof] = ACTIONS(2528), + [anon_sym_offsetof] = ACTIONS(2528), + [anon_sym__Generic] = ACTIONS(2528), + [anon_sym_asm] = ACTIONS(2528), + [anon_sym___asm__] = ACTIONS(2528), + [anon_sym___asm] = ACTIONS(2528), + [sym_number_literal] = ACTIONS(2530), + [anon_sym_L_SQUOTE] = ACTIONS(2530), + [anon_sym_u_SQUOTE] = ACTIONS(2530), + [anon_sym_U_SQUOTE] = ACTIONS(2530), + [anon_sym_u8_SQUOTE] = ACTIONS(2530), + [anon_sym_SQUOTE] = ACTIONS(2530), + [anon_sym_AT] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2530), + [anon_sym_L_DQUOTE] = ACTIONS(2530), + [anon_sym_u_DQUOTE] = ACTIONS(2530), + [anon_sym_U_DQUOTE] = ACTIONS(2530), + [anon_sym_u8_DQUOTE] = ACTIONS(2530), + [sym_true] = ACTIONS(2528), + [sym_false] = ACTIONS(2528), + [anon_sym_NULL] = ACTIONS(2528), + [anon_sym_nullptr] = ACTIONS(2528), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2528), + [anon_sym___typeof] = ACTIONS(2528), + [anon_sym_typeof] = ACTIONS(2528), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2528), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2528), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2528), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2528), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2528), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2528), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2528), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2528), + [anon_sym_NS_AVAILABLE] = ACTIONS(2528), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2528), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_API_AVAILABLE] = ACTIONS(2528), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_API_DEPRECATED] = ACTIONS(2528), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2528), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2528), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2528), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2528), + [anon_sym___deprecated_msg] = ACTIONS(2528), + [anon_sym___deprecated_enum_msg] = ACTIONS(2528), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2528), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2528), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2528), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2528), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2528), + [anon_sym_ATtry] = ACTIONS(2530), + [anon_sym___try] = ACTIONS(2528), + [anon_sym_ATthrow] = ACTIONS(2530), + [anon_sym_ATselector] = ACTIONS(2530), + [anon_sym_ATavailable] = ACTIONS(2530), + [anon_sym___builtin_available] = ACTIONS(2528), + [anon_sym_va_arg] = ACTIONS(2528), + [anon_sym_ATencode] = ACTIONS(2530), + [anon_sym_ATsynchronized] = ACTIONS(2530), + [anon_sym_BOOL] = ACTIONS(2528), + [anon_sym_IMP] = ACTIONS(2528), + [anon_sym_SEL] = ACTIONS(2528), + [anon_sym_Class] = ACTIONS(2528), + [anon_sym_id] = ACTIONS(2528), + }, + [1170] = { + [sym_identifier] = ACTIONS(2532), + [anon_sym_LPAREN2] = ACTIONS(2534), + [anon_sym_BANG] = ACTIONS(2534), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2532), + [anon_sym_STAR] = ACTIONS(2534), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2534), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym___extension__] = ACTIONS(2532), + [anon_sym_typedef] = ACTIONS(2532), + [anon_sym_extern] = ACTIONS(2532), + [anon_sym___attribute__] = ACTIONS(2532), + [anon_sym___attribute] = ACTIONS(2532), + [anon_sym_noreturn] = ACTIONS(2532), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym___declspec] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_signed] = ACTIONS(2532), + [anon_sym_unsigned] = ACTIONS(2532), + [anon_sym_long] = ACTIONS(2532), + [anon_sym_short] = ACTIONS(2532), + [anon_sym_static] = ACTIONS(2532), + [anon_sym_ATautoreleasepool] = ACTIONS(2534), + [anon_sym_auto] = ACTIONS(2532), + [anon_sym_register] = ACTIONS(2532), + [anon_sym_inline] = ACTIONS(2532), + [anon_sym___inline] = ACTIONS(2532), + [anon_sym___inline__] = ACTIONS(2532), + [anon_sym___forceinline] = ACTIONS(2532), + [anon_sym_thread_local] = ACTIONS(2532), + [anon_sym___thread] = ACTIONS(2532), + [anon_sym_CG_EXTERN] = ACTIONS(2532), + [anon_sym_CG_INLINE] = ACTIONS(2532), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2532), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2532), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2532), + [anon_sym_IBOutlet] = ACTIONS(2532), + [anon_sym_IBInspectable] = ACTIONS(2532), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2532), + [anon_sym_NS_INLINE] = ACTIONS(2532), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2532), + [anon_sym_OBJC_EXPORT] = ACTIONS(2532), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2532), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2532), + [anon_sym_const] = ACTIONS(2532), + [anon_sym_constexpr] = ACTIONS(2532), + [anon_sym_volatile] = ACTIONS(2532), + [anon_sym_restrict] = ACTIONS(2532), + [anon_sym___restrict__] = ACTIONS(2532), + [anon_sym__Atomic] = ACTIONS(2532), + [anon_sym__Noreturn] = ACTIONS(2532), + [anon_sym__Nonnull] = ACTIONS(2532), + [anon_sym_nullable] = ACTIONS(2532), + [anon_sym__Complex] = ACTIONS(2532), + [anon_sym__Nullable] = ACTIONS(2532), + [anon_sym__Nullable_result] = ACTIONS(2532), + [anon_sym__Null_unspecified] = ACTIONS(2532), + [anon_sym___autoreleasing] = ACTIONS(2532), + [anon_sym___block] = ACTIONS(2532), + [anon_sym___bridge] = ACTIONS(2532), + [anon_sym___bridge_retained] = ACTIONS(2532), + [anon_sym___bridge_transfer] = ACTIONS(2532), + [anon_sym___complex] = ACTIONS(2532), + [anon_sym___const] = ACTIONS(2532), + [anon_sym___imag] = ACTIONS(2532), + [anon_sym___kindof] = ACTIONS(2532), + [anon_sym___nonnull] = ACTIONS(2532), + [anon_sym___nullable] = ACTIONS(2532), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2532), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2532), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2532), + [anon_sym___real] = ACTIONS(2532), + [anon_sym___strong] = ACTIONS(2532), + [anon_sym___unsafe_unretained] = ACTIONS(2532), + [anon_sym___unused] = ACTIONS(2532), + [anon_sym___weak] = ACTIONS(2532), + [anon_sym_alignas] = ACTIONS(2532), + [anon_sym__Alignas] = ACTIONS(2532), + [sym_primitive_type] = ACTIONS(2532), + [anon_sym_enum] = ACTIONS(2532), + [anon_sym_struct] = ACTIONS(2532), + [anon_sym_union] = ACTIONS(2532), + [anon_sym_if] = ACTIONS(2532), + [anon_sym_else] = ACTIONS(2532), + [anon_sym_switch] = ACTIONS(2532), + [anon_sym_while] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_for] = ACTIONS(2532), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_return] = ACTIONS(2532), + [anon_sym_break] = ACTIONS(2532), + [anon_sym_continue] = ACTIONS(2532), + [anon_sym_goto] = ACTIONS(2532), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), + [anon_sym_sizeof] = ACTIONS(2532), + [anon_sym___alignof__] = ACTIONS(2532), + [anon_sym___alignof] = ACTIONS(2532), + [anon_sym__alignof] = ACTIONS(2532), + [anon_sym_alignof] = ACTIONS(2532), + [anon_sym__Alignof] = ACTIONS(2532), + [anon_sym_offsetof] = ACTIONS(2532), + [anon_sym__Generic] = ACTIONS(2532), + [anon_sym_asm] = ACTIONS(2532), + [anon_sym___asm__] = ACTIONS(2532), + [anon_sym___asm] = ACTIONS(2532), + [sym_number_literal] = ACTIONS(2534), + [anon_sym_L_SQUOTE] = ACTIONS(2534), + [anon_sym_u_SQUOTE] = ACTIONS(2534), + [anon_sym_U_SQUOTE] = ACTIONS(2534), + [anon_sym_u8_SQUOTE] = ACTIONS(2534), + [anon_sym_SQUOTE] = ACTIONS(2534), + [anon_sym_AT] = ACTIONS(2532), + [anon_sym_DQUOTE] = ACTIONS(2534), + [anon_sym_L_DQUOTE] = ACTIONS(2534), + [anon_sym_u_DQUOTE] = ACTIONS(2534), + [anon_sym_U_DQUOTE] = ACTIONS(2534), + [anon_sym_u8_DQUOTE] = ACTIONS(2534), + [sym_true] = ACTIONS(2532), + [sym_false] = ACTIONS(2532), + [anon_sym_NULL] = ACTIONS(2532), + [anon_sym_nullptr] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2532), + [anon_sym___typeof] = ACTIONS(2532), + [anon_sym_typeof] = ACTIONS(2532), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2532), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2532), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2532), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2532), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2532), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2532), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2532), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2532), + [anon_sym_NS_AVAILABLE] = ACTIONS(2532), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2532), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_API_AVAILABLE] = ACTIONS(2532), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_API_DEPRECATED] = ACTIONS(2532), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2532), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2532), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2532), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2532), + [anon_sym___deprecated_msg] = ACTIONS(2532), + [anon_sym___deprecated_enum_msg] = ACTIONS(2532), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2532), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2532), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2532), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2532), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2532), + [anon_sym_ATtry] = ACTIONS(2534), + [anon_sym___try] = ACTIONS(2532), + [anon_sym_ATthrow] = ACTIONS(2534), + [anon_sym_ATselector] = ACTIONS(2534), + [anon_sym_ATavailable] = ACTIONS(2534), + [anon_sym___builtin_available] = ACTIONS(2532), + [anon_sym_va_arg] = ACTIONS(2532), + [anon_sym_ATencode] = ACTIONS(2534), + [anon_sym_ATsynchronized] = ACTIONS(2534), + [anon_sym_BOOL] = ACTIONS(2532), + [anon_sym_IMP] = ACTIONS(2532), + [anon_sym_SEL] = ACTIONS(2532), + [anon_sym_Class] = ACTIONS(2532), + [anon_sym_id] = ACTIONS(2532), + }, + [1171] = { + [sym_identifier] = ACTIONS(2536), + [anon_sym_LPAREN2] = ACTIONS(2538), + [anon_sym_BANG] = ACTIONS(2538), + [anon_sym_TILDE] = ACTIONS(2538), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_STAR] = ACTIONS(2538), + [anon_sym_CARET] = ACTIONS(2538), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_SEMI] = ACTIONS(2538), + [anon_sym___extension__] = ACTIONS(2536), + [anon_sym_typedef] = ACTIONS(2536), + [anon_sym_extern] = ACTIONS(2536), + [anon_sym___attribute__] = ACTIONS(2536), + [anon_sym___attribute] = ACTIONS(2536), + [anon_sym_noreturn] = ACTIONS(2536), + [anon_sym_LBRACK] = ACTIONS(2538), + [anon_sym___declspec] = ACTIONS(2536), + [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_signed] = ACTIONS(2536), + [anon_sym_unsigned] = ACTIONS(2536), + [anon_sym_long] = ACTIONS(2536), + [anon_sym_short] = ACTIONS(2536), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_ATautoreleasepool] = ACTIONS(2538), + [anon_sym_auto] = ACTIONS(2536), + [anon_sym_register] = ACTIONS(2536), + [anon_sym_inline] = ACTIONS(2536), + [anon_sym___inline] = ACTIONS(2536), + [anon_sym___inline__] = ACTIONS(2536), + [anon_sym___forceinline] = ACTIONS(2536), + [anon_sym_thread_local] = ACTIONS(2536), + [anon_sym___thread] = ACTIONS(2536), + [anon_sym_CG_EXTERN] = ACTIONS(2536), + [anon_sym_CG_INLINE] = ACTIONS(2536), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2536), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2536), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2536), + [anon_sym_IBOutlet] = ACTIONS(2536), + [anon_sym_IBInspectable] = ACTIONS(2536), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2536), + [anon_sym_NS_INLINE] = ACTIONS(2536), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2536), + [anon_sym_OBJC_EXPORT] = ACTIONS(2536), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2536), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2536), + [anon_sym_const] = ACTIONS(2536), + [anon_sym_constexpr] = ACTIONS(2536), + [anon_sym_volatile] = ACTIONS(2536), + [anon_sym_restrict] = ACTIONS(2536), + [anon_sym___restrict__] = ACTIONS(2536), + [anon_sym__Atomic] = ACTIONS(2536), + [anon_sym__Noreturn] = ACTIONS(2536), + [anon_sym__Nonnull] = ACTIONS(2536), + [anon_sym_nullable] = ACTIONS(2536), + [anon_sym__Complex] = ACTIONS(2536), + [anon_sym__Nullable] = ACTIONS(2536), + [anon_sym__Nullable_result] = ACTIONS(2536), + [anon_sym__Null_unspecified] = ACTIONS(2536), + [anon_sym___autoreleasing] = ACTIONS(2536), + [anon_sym___block] = ACTIONS(2536), + [anon_sym___bridge] = ACTIONS(2536), + [anon_sym___bridge_retained] = ACTIONS(2536), + [anon_sym___bridge_transfer] = ACTIONS(2536), + [anon_sym___complex] = ACTIONS(2536), + [anon_sym___const] = ACTIONS(2536), + [anon_sym___imag] = ACTIONS(2536), + [anon_sym___kindof] = ACTIONS(2536), + [anon_sym___nonnull] = ACTIONS(2536), + [anon_sym___nullable] = ACTIONS(2536), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2536), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2536), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2536), + [anon_sym___real] = ACTIONS(2536), + [anon_sym___strong] = ACTIONS(2536), + [anon_sym___unsafe_unretained] = ACTIONS(2536), + [anon_sym___unused] = ACTIONS(2536), + [anon_sym___weak] = ACTIONS(2536), + [anon_sym_alignas] = ACTIONS(2536), + [anon_sym__Alignas] = ACTIONS(2536), + [sym_primitive_type] = ACTIONS(2536), + [anon_sym_enum] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2536), + [anon_sym_union] = ACTIONS(2536), + [anon_sym_if] = ACTIONS(2536), + [anon_sym_else] = ACTIONS(2536), + [anon_sym_switch] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2536), + [anon_sym_do] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2536), + [anon_sym_in] = ACTIONS(2536), + [anon_sym_return] = ACTIONS(2536), + [anon_sym_break] = ACTIONS(2536), + [anon_sym_continue] = ACTIONS(2536), + [anon_sym_goto] = ACTIONS(2536), + [anon_sym_DASH_DASH] = ACTIONS(2538), + [anon_sym_PLUS_PLUS] = ACTIONS(2538), + [anon_sym_sizeof] = ACTIONS(2536), + [anon_sym___alignof__] = ACTIONS(2536), + [anon_sym___alignof] = ACTIONS(2536), + [anon_sym__alignof] = ACTIONS(2536), + [anon_sym_alignof] = ACTIONS(2536), + [anon_sym__Alignof] = ACTIONS(2536), + [anon_sym_offsetof] = ACTIONS(2536), + [anon_sym__Generic] = ACTIONS(2536), + [anon_sym_asm] = ACTIONS(2536), + [anon_sym___asm__] = ACTIONS(2536), + [anon_sym___asm] = ACTIONS(2536), + [sym_number_literal] = ACTIONS(2538), + [anon_sym_L_SQUOTE] = ACTIONS(2538), + [anon_sym_u_SQUOTE] = ACTIONS(2538), + [anon_sym_U_SQUOTE] = ACTIONS(2538), + [anon_sym_u8_SQUOTE] = ACTIONS(2538), + [anon_sym_SQUOTE] = ACTIONS(2538), + [anon_sym_AT] = ACTIONS(2536), + [anon_sym_DQUOTE] = ACTIONS(2538), + [anon_sym_L_DQUOTE] = ACTIONS(2538), + [anon_sym_u_DQUOTE] = ACTIONS(2538), + [anon_sym_U_DQUOTE] = ACTIONS(2538), + [anon_sym_u8_DQUOTE] = ACTIONS(2538), + [sym_true] = ACTIONS(2536), + [sym_false] = ACTIONS(2536), + [anon_sym_NULL] = ACTIONS(2536), + [anon_sym_nullptr] = ACTIONS(2536), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2536), + [anon_sym___typeof] = ACTIONS(2536), + [anon_sym_typeof] = ACTIONS(2536), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2536), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2536), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2536), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2536), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2536), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2536), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2536), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2536), + [anon_sym_NS_AVAILABLE] = ACTIONS(2536), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2536), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_API_AVAILABLE] = ACTIONS(2536), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_API_DEPRECATED] = ACTIONS(2536), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2536), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2536), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2536), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2536), + [anon_sym___deprecated_msg] = ACTIONS(2536), + [anon_sym___deprecated_enum_msg] = ACTIONS(2536), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2536), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2536), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2536), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2536), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2536), + [anon_sym_ATtry] = ACTIONS(2538), + [anon_sym___try] = ACTIONS(2536), + [anon_sym_ATthrow] = ACTIONS(2538), + [anon_sym_ATselector] = ACTIONS(2538), + [anon_sym_ATavailable] = ACTIONS(2538), + [anon_sym___builtin_available] = ACTIONS(2536), + [anon_sym_va_arg] = ACTIONS(2536), + [anon_sym_ATencode] = ACTIONS(2538), + [anon_sym_ATsynchronized] = ACTIONS(2538), + [anon_sym_BOOL] = ACTIONS(2536), + [anon_sym_IMP] = ACTIONS(2536), + [anon_sym_SEL] = ACTIONS(2536), + [anon_sym_Class] = ACTIONS(2536), + [anon_sym_id] = ACTIONS(2536), + }, + [1172] = { + [sym_identifier] = ACTIONS(2540), + [anon_sym_LPAREN2] = ACTIONS(2542), + [anon_sym_BANG] = ACTIONS(2542), + [anon_sym_TILDE] = ACTIONS(2542), + [anon_sym_DASH] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2540), + [anon_sym_STAR] = ACTIONS(2542), + [anon_sym_CARET] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2542), + [anon_sym___extension__] = ACTIONS(2540), + [anon_sym_typedef] = ACTIONS(2540), + [anon_sym_extern] = ACTIONS(2540), + [anon_sym___attribute__] = ACTIONS(2540), + [anon_sym___attribute] = ACTIONS(2540), + [anon_sym_noreturn] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym___declspec] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2542), + [anon_sym_signed] = ACTIONS(2540), + [anon_sym_unsigned] = ACTIONS(2540), + [anon_sym_long] = ACTIONS(2540), + [anon_sym_short] = ACTIONS(2540), + [anon_sym_static] = ACTIONS(2540), + [anon_sym_ATautoreleasepool] = ACTIONS(2542), + [anon_sym_auto] = ACTIONS(2540), + [anon_sym_register] = ACTIONS(2540), + [anon_sym_inline] = ACTIONS(2540), + [anon_sym___inline] = ACTIONS(2540), + [anon_sym___inline__] = ACTIONS(2540), + [anon_sym___forceinline] = ACTIONS(2540), + [anon_sym_thread_local] = ACTIONS(2540), + [anon_sym___thread] = ACTIONS(2540), + [anon_sym_CG_EXTERN] = ACTIONS(2540), + [anon_sym_CG_INLINE] = ACTIONS(2540), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2540), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2540), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2540), + [anon_sym_IBOutlet] = ACTIONS(2540), + [anon_sym_IBInspectable] = ACTIONS(2540), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2540), + [anon_sym_NS_INLINE] = ACTIONS(2540), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2540), + [anon_sym_OBJC_EXPORT] = ACTIONS(2540), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2540), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2540), + [anon_sym_const] = ACTIONS(2540), + [anon_sym_constexpr] = ACTIONS(2540), + [anon_sym_volatile] = ACTIONS(2540), + [anon_sym_restrict] = ACTIONS(2540), + [anon_sym___restrict__] = ACTIONS(2540), + [anon_sym__Atomic] = ACTIONS(2540), + [anon_sym__Noreturn] = ACTIONS(2540), + [anon_sym__Nonnull] = ACTIONS(2540), + [anon_sym_nullable] = ACTIONS(2540), + [anon_sym__Complex] = ACTIONS(2540), + [anon_sym__Nullable] = ACTIONS(2540), + [anon_sym__Nullable_result] = ACTIONS(2540), + [anon_sym__Null_unspecified] = ACTIONS(2540), + [anon_sym___autoreleasing] = ACTIONS(2540), + [anon_sym___block] = ACTIONS(2540), + [anon_sym___bridge] = ACTIONS(2540), + [anon_sym___bridge_retained] = ACTIONS(2540), + [anon_sym___bridge_transfer] = ACTIONS(2540), + [anon_sym___complex] = ACTIONS(2540), + [anon_sym___const] = ACTIONS(2540), + [anon_sym___imag] = ACTIONS(2540), + [anon_sym___kindof] = ACTIONS(2540), + [anon_sym___nonnull] = ACTIONS(2540), + [anon_sym___nullable] = ACTIONS(2540), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2540), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2540), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2540), + [anon_sym___real] = ACTIONS(2540), + [anon_sym___strong] = ACTIONS(2540), + [anon_sym___unsafe_unretained] = ACTIONS(2540), + [anon_sym___unused] = ACTIONS(2540), + [anon_sym___weak] = ACTIONS(2540), + [anon_sym_alignas] = ACTIONS(2540), + [anon_sym__Alignas] = ACTIONS(2540), + [sym_primitive_type] = ACTIONS(2540), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_struct] = ACTIONS(2540), + [anon_sym_union] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_else] = ACTIONS(2540), + [anon_sym_switch] = ACTIONS(2540), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_do] = ACTIONS(2540), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_in] = ACTIONS(2540), + [anon_sym_return] = ACTIONS(2540), + [anon_sym_break] = ACTIONS(2540), + [anon_sym_continue] = ACTIONS(2540), + [anon_sym_goto] = ACTIONS(2540), + [anon_sym_DASH_DASH] = ACTIONS(2542), + [anon_sym_PLUS_PLUS] = ACTIONS(2542), + [anon_sym_sizeof] = ACTIONS(2540), + [anon_sym___alignof__] = ACTIONS(2540), + [anon_sym___alignof] = ACTIONS(2540), + [anon_sym__alignof] = ACTIONS(2540), + [anon_sym_alignof] = ACTIONS(2540), + [anon_sym__Alignof] = ACTIONS(2540), + [anon_sym_offsetof] = ACTIONS(2540), + [anon_sym__Generic] = ACTIONS(2540), + [anon_sym_asm] = ACTIONS(2540), + [anon_sym___asm__] = ACTIONS(2540), + [anon_sym___asm] = ACTIONS(2540), + [sym_number_literal] = ACTIONS(2542), + [anon_sym_L_SQUOTE] = ACTIONS(2542), + [anon_sym_u_SQUOTE] = ACTIONS(2542), + [anon_sym_U_SQUOTE] = ACTIONS(2542), + [anon_sym_u8_SQUOTE] = ACTIONS(2542), + [anon_sym_SQUOTE] = ACTIONS(2542), + [anon_sym_AT] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2542), + [anon_sym_L_DQUOTE] = ACTIONS(2542), + [anon_sym_u_DQUOTE] = ACTIONS(2542), + [anon_sym_U_DQUOTE] = ACTIONS(2542), + [anon_sym_u8_DQUOTE] = ACTIONS(2542), + [sym_true] = ACTIONS(2540), + [sym_false] = ACTIONS(2540), + [anon_sym_NULL] = ACTIONS(2540), + [anon_sym_nullptr] = ACTIONS(2540), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2540), + [anon_sym___typeof] = ACTIONS(2540), + [anon_sym_typeof] = ACTIONS(2540), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2540), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2540), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2540), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2540), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2540), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2540), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2540), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2540), + [anon_sym_NS_AVAILABLE] = ACTIONS(2540), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2540), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_API_AVAILABLE] = ACTIONS(2540), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_API_DEPRECATED] = ACTIONS(2540), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2540), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2540), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2540), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2540), + [anon_sym___deprecated_msg] = ACTIONS(2540), + [anon_sym___deprecated_enum_msg] = ACTIONS(2540), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2540), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2540), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2540), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2540), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2540), + [anon_sym_ATtry] = ACTIONS(2542), + [anon_sym___try] = ACTIONS(2540), + [anon_sym_ATthrow] = ACTIONS(2542), + [anon_sym_ATselector] = ACTIONS(2542), + [anon_sym_ATavailable] = ACTIONS(2542), + [anon_sym___builtin_available] = ACTIONS(2540), + [anon_sym_va_arg] = ACTIONS(2540), + [anon_sym_ATencode] = ACTIONS(2542), + [anon_sym_ATsynchronized] = ACTIONS(2542), + [anon_sym_BOOL] = ACTIONS(2540), + [anon_sym_IMP] = ACTIONS(2540), + [anon_sym_SEL] = ACTIONS(2540), + [anon_sym_Class] = ACTIONS(2540), + [anon_sym_id] = ACTIONS(2540), + }, + [1173] = { + [sym_identifier] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_CARET] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_ATautoreleasepool] = ACTIONS(2426), + [anon_sym_auto] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_CG_EXTERN] = ACTIONS(2424), + [anon_sym_CG_INLINE] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2424), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2424), + [anon_sym_IBOutlet] = ACTIONS(2424), + [anon_sym_IBInspectable] = ACTIONS(2424), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2424), + [anon_sym_NS_INLINE] = ACTIONS(2424), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2424), + [anon_sym_OBJC_EXPORT] = ACTIONS(2424), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_nullable] = ACTIONS(2424), + [anon_sym__Complex] = ACTIONS(2424), + [anon_sym__Nullable] = ACTIONS(2424), + [anon_sym__Nullable_result] = ACTIONS(2424), + [anon_sym__Null_unspecified] = ACTIONS(2424), + [anon_sym___autoreleasing] = ACTIONS(2424), + [anon_sym___block] = ACTIONS(2424), + [anon_sym___bridge] = ACTIONS(2424), + [anon_sym___bridge_retained] = ACTIONS(2424), + [anon_sym___bridge_transfer] = ACTIONS(2424), + [anon_sym___complex] = ACTIONS(2424), + [anon_sym___const] = ACTIONS(2424), + [anon_sym___imag] = ACTIONS(2424), + [anon_sym___kindof] = ACTIONS(2424), + [anon_sym___nonnull] = ACTIONS(2424), + [anon_sym___nullable] = ACTIONS(2424), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2424), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2424), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2424), + [anon_sym___real] = ACTIONS(2424), + [anon_sym___strong] = ACTIONS(2424), + [anon_sym___unsafe_unretained] = ACTIONS(2424), + [anon_sym___unused] = ACTIONS(2424), + [anon_sym___weak] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_else] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_in] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_goto] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_sizeof] = ACTIONS(2424), + [anon_sym___alignof__] = ACTIONS(2424), + [anon_sym___alignof] = ACTIONS(2424), + [anon_sym__alignof] = ACTIONS(2424), + [anon_sym_alignof] = ACTIONS(2424), + [anon_sym__Alignof] = ACTIONS(2424), + [anon_sym_offsetof] = ACTIONS(2424), + [anon_sym__Generic] = ACTIONS(2424), + [anon_sym_asm] = ACTIONS(2424), + [anon_sym___asm__] = ACTIONS(2424), + [anon_sym___asm] = ACTIONS(2424), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_L_SQUOTE] = ACTIONS(2426), + [anon_sym_u_SQUOTE] = ACTIONS(2426), + [anon_sym_U_SQUOTE] = ACTIONS(2426), + [anon_sym_u8_SQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_AT] = ACTIONS(2424), + [anon_sym_DQUOTE] = ACTIONS(2426), + [anon_sym_L_DQUOTE] = ACTIONS(2426), + [anon_sym_u_DQUOTE] = ACTIONS(2426), + [anon_sym_U_DQUOTE] = ACTIONS(2426), + [anon_sym_u8_DQUOTE] = ACTIONS(2426), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [anon_sym_NULL] = ACTIONS(2424), + [anon_sym_nullptr] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2424), + [anon_sym___typeof] = ACTIONS(2424), + [anon_sym_typeof] = ACTIONS(2424), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2424), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2424), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2424), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2424), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE] = ACTIONS(2424), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_API_AVAILABLE] = ACTIONS(2424), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_API_DEPRECATED] = ACTIONS(2424), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2424), + [anon_sym___deprecated_msg] = ACTIONS(2424), + [anon_sym___deprecated_enum_msg] = ACTIONS(2424), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2424), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2424), + [anon_sym_ATtry] = ACTIONS(2426), + [anon_sym___try] = ACTIONS(2424), + [anon_sym_ATthrow] = ACTIONS(2426), + [anon_sym_ATselector] = ACTIONS(2426), + [anon_sym_ATavailable] = ACTIONS(2426), + [anon_sym___builtin_available] = ACTIONS(2424), + [anon_sym_va_arg] = ACTIONS(2424), + [anon_sym_ATencode] = ACTIONS(2426), + [anon_sym_ATsynchronized] = ACTIONS(2426), + [anon_sym_BOOL] = ACTIONS(2424), + [anon_sym_IMP] = ACTIONS(2424), + [anon_sym_SEL] = ACTIONS(2424), + [anon_sym_Class] = ACTIONS(2424), + [anon_sym_id] = ACTIONS(2424), + }, + [1174] = { + [sym_preproc_def] = STATE(1230), + [sym_preproc_call] = STATE(1230), + [sym_preproc_ifdef] = STATE(1230), + [sym_function_definition] = STATE(1230), + [sym_declaration] = STATE(1230), + [sym_type_definition] = STATE(1230), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1230), + [sym_preproc_undef] = STATE(1230), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_protocol_reference_list] = STATE(1224), + [sym_qualified_protocol_interface_declaration] = STATE(5110), + [sym_property_declaration] = STATE(1230), + [sym_method_declaration] = STATE(1230), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_protocol_forward_declaration_repeat1] = STATE(5533), + [aux_sym_class_interface_repeat1] = STATE(1230), + [aux_sym_protocol_declaration_repeat1] = STATE(5110), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3050), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_SEMI] = ACTIONS(3058), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3060), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1175] = { + [sym_preproc_def] = STATE(1238), + [sym_preproc_call] = STATE(1238), + [sym_preproc_ifdef] = STATE(1238), + [sym_function_definition] = STATE(1238), + [sym_declaration] = STATE(1238), + [sym_type_definition] = STATE(1238), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1238), + [sym_preproc_undef] = STATE(1238), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_protocol_reference_list] = STATE(1239), + [sym_qualified_protocol_interface_declaration] = STATE(5148), + [sym_property_declaration] = STATE(1238), + [sym_method_declaration] = STATE(1238), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_protocol_forward_declaration_repeat1] = STATE(5612), + [aux_sym_class_interface_repeat1] = STATE(1238), + [aux_sym_protocol_declaration_repeat1] = STATE(5148), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3050), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_SEMI] = ACTIONS(3066), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3068), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1176] = { + [sym_preproc_def] = STATE(1235), + [sym_preproc_call] = STATE(1235), + [sym_preproc_ifdef] = STATE(1235), + [sym_function_definition] = STATE(1235), + [sym_declaration] = STATE(1235), + [sym_type_definition] = STATE(1235), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1235), + [sym_preproc_undef] = STATE(1235), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_protocol_reference_list] = STATE(1244), + [sym_qualified_protocol_interface_declaration] = STATE(5144), + [sym_property_declaration] = STATE(1235), + [sym_method_declaration] = STATE(1235), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_protocol_forward_declaration_repeat1] = STATE(5647), + [aux_sym_class_interface_repeat1] = STATE(1235), + [aux_sym_protocol_declaration_repeat1] = STATE(5144), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3050), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_SEMI] = ACTIONS(3070), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3072), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1177] = { + [sym_preproc_def] = STATE(1381), + [sym_preproc_call] = STATE(1381), + [sym_preproc_ifdef] = STATE(1381), + [sym_function_definition] = STATE(1381), + [sym_declaration] = STATE(1381), + [sym_type_definition] = STATE(1381), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1381), + [sym_preproc_undef] = STATE(1381), + [sym_availability_attribute_specifier] = STATE(2913), + [sym__type_params] = STATE(1197), + [sym__class_interface_inheritance] = STATE(1255), + [sym_parameterized_arguments] = STATE(1213), + [sym_generic_arguments] = STATE(1999), + [sym_instance_variables] = STATE(1380), + [sym_property_declaration] = STATE(1381), + [sym_method_declaration] = STATE(1381), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_LPAREN2] = ACTIONS(3074), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3078), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1178] = { + [sym_preproc_def] = STATE(1419), + [sym_preproc_call] = STATE(1419), + [sym_preproc_ifdef] = STATE(1419), + [sym_function_definition] = STATE(1419), + [sym_declaration] = STATE(1419), + [sym_type_definition] = STATE(1419), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1419), + [sym_preproc_undef] = STATE(1419), + [sym_availability_attribute_specifier] = STATE(2913), + [sym__type_params] = STATE(1199), + [sym__class_interface_inheritance] = STATE(1252), + [sym_parameterized_arguments] = STATE(1211), + [sym_generic_arguments] = STATE(1999), + [sym_instance_variables] = STATE(1418), + [sym_property_declaration] = STATE(1419), + [sym_method_declaration] = STATE(1419), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1419), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_LPAREN2] = ACTIONS(3074), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3080), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1179] = { + [sym_preproc_def] = STATE(1256), + [sym_preproc_call] = STATE(1256), + [sym_preproc_ifdef] = STATE(1256), + [sym_function_definition] = STATE(1256), + [sym_declaration] = STATE(1256), + [sym_type_definition] = STATE(1256), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1256), + [sym_preproc_undef] = STATE(1256), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_protocol_reference_list] = STATE(1261), + [sym_qualified_protocol_interface_declaration] = STATE(5117), + [sym_property_declaration] = STATE(1256), + [sym_method_declaration] = STATE(1256), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_protocol_forward_declaration_repeat1] = STATE(5374), + [aux_sym_class_interface_repeat1] = STATE(1256), + [aux_sym_protocol_declaration_repeat1] = STATE(5117), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3050), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3084), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1180] = { + [sym_preproc_def] = STATE(1264), + [sym_preproc_call] = STATE(1264), + [sym_preproc_ifdef] = STATE(1264), + [sym_function_definition] = STATE(1264), + [sym_declaration] = STATE(1264), + [sym_type_definition] = STATE(1264), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1264), + [sym_preproc_undef] = STATE(1264), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_protocol_reference_list] = STATE(1263), + [sym_qualified_protocol_interface_declaration] = STATE(5146), + [sym_property_declaration] = STATE(1264), + [sym_method_declaration] = STATE(1264), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_protocol_forward_declaration_repeat1] = STATE(5455), + [aux_sym_class_interface_repeat1] = STATE(1264), + [aux_sym_protocol_declaration_repeat1] = STATE(5146), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3050), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3088), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1181] = { + [sym_preproc_def] = STATE(1347), + [sym_preproc_call] = STATE(1347), + [sym_preproc_ifdef] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_declaration] = STATE(1347), + [sym_type_definition] = STATE(1347), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1347), + [sym_preproc_undef] = STATE(1347), + [sym_availability_attribute_specifier] = STATE(2913), + [sym__type_params] = STATE(1194), + [sym__class_interface_inheritance] = STATE(1225), + [sym_parameterized_arguments] = STATE(1214), + [sym_generic_arguments] = STATE(1999), + [sym_instance_variables] = STATE(1346), + [sym_property_declaration] = STATE(1347), + [sym_method_declaration] = STATE(1347), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1347), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_LPAREN2] = ACTIONS(3074), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3090), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1182] = { + [sym_preproc_def] = STATE(1400), + [sym_preproc_call] = STATE(1400), + [sym_preproc_ifdef] = STATE(1400), + [sym_function_definition] = STATE(1400), + [sym_declaration] = STATE(1400), + [sym_type_definition] = STATE(1400), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1400), + [sym_preproc_undef] = STATE(1400), + [sym_availability_attribute_specifier] = STATE(2913), + [sym__type_params] = STATE(1203), + [sym__class_interface_inheritance] = STATE(1251), + [sym_parameterized_arguments] = STATE(1218), + [sym_generic_arguments] = STATE(1999), + [sym_instance_variables] = STATE(1399), + [sym_property_declaration] = STATE(1400), + [sym_method_declaration] = STATE(1400), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1400), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_LPAREN2] = ACTIONS(3074), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3092), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1183] = { + [sym_preproc_def] = STATE(1262), + [sym_preproc_call] = STATE(1262), + [sym_preproc_ifdef] = STATE(1262), + [sym_function_definition] = STATE(1262), + [sym_declaration] = STATE(1262), + [sym_type_definition] = STATE(1262), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1262), + [sym_preproc_undef] = STATE(1262), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_protocol_reference_list] = STATE(1265), + [sym_qualified_protocol_interface_declaration] = STATE(5118), + [sym_property_declaration] = STATE(1262), + [sym_method_declaration] = STATE(1262), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_protocol_forward_declaration_repeat1] = STATE(5317), + [aux_sym_class_interface_repeat1] = STATE(1262), + [aux_sym_protocol_declaration_repeat1] = STATE(5118), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3050), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3096), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1184] = { + [sym_preproc_def] = STATE(1223), + [sym_preproc_call] = STATE(1223), + [sym_preproc_ifdef] = STATE(1223), + [sym_function_definition] = STATE(1223), + [sym_declaration] = STATE(1223), + [sym_type_definition] = STATE(1223), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1223), + [sym_preproc_undef] = STATE(1223), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_protocol_reference_list] = STATE(1233), + [sym_qualified_protocol_interface_declaration] = STATE(5141), + [sym_property_declaration] = STATE(1223), + [sym_method_declaration] = STATE(1223), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_protocol_forward_declaration_repeat1] = STATE(5378), + [aux_sym_class_interface_repeat1] = STATE(1223), + [aux_sym_protocol_declaration_repeat1] = STATE(5141), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3050), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3100), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1185] = { + [sym_preproc_def] = STATE(1248), + [sym_preproc_call] = STATE(1248), + [sym_preproc_ifdef] = STATE(1248), + [sym_function_definition] = STATE(1248), + [sym_declaration] = STATE(1248), + [sym_type_definition] = STATE(1248), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1248), + [sym_preproc_undef] = STATE(1248), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_protocol_reference_list] = STATE(1247), + [sym_qualified_protocol_interface_declaration] = STATE(5087), + [sym_property_declaration] = STATE(1248), + [sym_method_declaration] = STATE(1248), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_protocol_forward_declaration_repeat1] = STATE(5336), + [aux_sym_class_interface_repeat1] = STATE(1248), + [aux_sym_protocol_declaration_repeat1] = STATE(5087), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3050), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3104), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1186] = { + [sym_preproc_def] = STATE(1362), + [sym_preproc_call] = STATE(1362), + [sym_preproc_ifdef] = STATE(1362), + [sym_function_definition] = STATE(1362), + [sym_declaration] = STATE(1362), + [sym_type_definition] = STATE(1362), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1362), + [sym_preproc_undef] = STATE(1362), + [sym_availability_attribute_specifier] = STATE(2913), + [sym__type_params] = STATE(1204), + [sym__class_interface_inheritance] = STATE(1260), + [sym_parameterized_arguments] = STATE(1219), + [sym_generic_arguments] = STATE(1999), + [sym_instance_variables] = STATE(1361), + [sym_property_declaration] = STATE(1362), + [sym_method_declaration] = STATE(1362), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1362), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_LPAREN2] = ACTIONS(3074), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3106), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1187] = { + [sym_preproc_def] = STATE(1227), + [sym_preproc_call] = STATE(1227), + [sym_preproc_ifdef] = STATE(1227), + [sym_function_definition] = STATE(1227), + [sym_declaration] = STATE(1227), + [sym_type_definition] = STATE(1227), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1227), + [sym_preproc_undef] = STATE(1227), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_protocol_reference_list] = STATE(1226), + [sym_qualified_protocol_interface_declaration] = STATE(5139), + [sym_property_declaration] = STATE(1227), + [sym_method_declaration] = STATE(1227), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_protocol_forward_declaration_repeat1] = STATE(5557), + [aux_sym_class_interface_repeat1] = STATE(1227), + [aux_sym_protocol_declaration_repeat1] = STATE(5139), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3050), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3110), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1188] = { + [sym_preproc_def] = STATE(1253), + [sym_preproc_call] = STATE(1253), + [sym_preproc_ifdef] = STATE(1253), + [sym_function_definition] = STATE(1253), + [sym_declaration] = STATE(1253), + [sym_type_definition] = STATE(1253), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1253), + [sym_preproc_undef] = STATE(1253), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_protocol_reference_list] = STATE(1242), + [sym_qualified_protocol_interface_declaration] = STATE(5155), + [sym_property_declaration] = STATE(1253), + [sym_method_declaration] = STATE(1253), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_protocol_forward_declaration_repeat1] = STATE(5566), + [aux_sym_class_interface_repeat1] = STATE(1253), + [aux_sym_protocol_declaration_repeat1] = STATE(5155), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3050), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3114), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1189] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym__class_implementation_inheritance] = STATE(1221), + [sym_instance_variables] = STATE(1294), + [sym_implementation_definition] = STATE(1288), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1288), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_LPAREN2] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3118), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1190] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym__class_implementation_inheritance] = STATE(1210), + [sym_instance_variables] = STATE(1301), + [sym_implementation_definition] = STATE(1302), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1302), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_LPAREN2] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3120), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1191] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym__class_implementation_inheritance] = STATE(1208), + [sym_instance_variables] = STATE(1320), + [sym_implementation_definition] = STATE(1321), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1321), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_LPAREN2] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3122), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1192] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym__class_implementation_inheritance] = STATE(1209), + [sym_instance_variables] = STATE(1297), + [sym_implementation_definition] = STATE(1305), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1305), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_LPAREN2] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3124), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1193] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym__class_implementation_inheritance] = STATE(1216), + [sym_instance_variables] = STATE(1314), + [sym_implementation_definition] = STATE(1280), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1280), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_LPAREN2] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3126), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1194] = { + [sym_preproc_def] = STATE(1349), + [sym_preproc_call] = STATE(1349), + [sym_preproc_ifdef] = STATE(1349), + [sym_function_definition] = STATE(1349), + [sym_declaration] = STATE(1349), + [sym_type_definition] = STATE(1349), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1349), + [sym_preproc_undef] = STATE(1349), + [sym_availability_attribute_specifier] = STATE(2913), + [sym__class_interface_inheritance] = STATE(1245), + [sym_parameterized_arguments] = STATE(1332), + [sym_instance_variables] = STATE(1348), + [sym_property_declaration] = STATE(1349), + [sym_method_declaration] = STATE(1349), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1349), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_LPAREN2] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3130), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1195] = { + [sym_preproc_def] = STATE(2237), + [sym_preproc_function_def] = STATE(2237), + [sym_preproc_call] = STATE(2237), + [sym_preproc_ifdef] = STATE(2237), + [sym_function_definition] = STATE(2237), + [sym_declaration] = STATE(2237), + [sym_type_definition] = STATE(2237), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4247), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2890), + [sym_ms_call_modifier] = STATE(2187), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3255), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(1977), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2237), + [sym_preproc_else_in_implementation_definition] = STATE(6472), + [sym_preproc_elif_in_implementation_definition] = STATE(6472), + [sym_preproc_undef] = STATE(2237), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1196), + [sym_property_implementation] = STATE(2237), + [sym_method_definition] = STATE(2237), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_preproc_if_in_implementation_definition_repeat1] = STATE(1196), + [sym_identifier] = ACTIONS(3132), + [aux_sym_preproc_def_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token1] = ACTIONS(3136), + [aux_sym_preproc_if_token2] = ACTIONS(3138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3140), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3140), + [aux_sym_preproc_else_token1] = ACTIONS(3142), + [aux_sym_preproc_elif_token1] = ACTIONS(3144), + [sym_preproc_directive] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym___extension__] = ACTIONS(3150), + [anon_sym_typedef] = ACTIONS(3152), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3154), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATsynthesize] = ACTIONS(3156), + [anon_sym_ATdynamic] = ACTIONS(3158), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1196] = { + [sym_preproc_def] = STATE(2237), + [sym_preproc_function_def] = STATE(2237), + [sym_preproc_call] = STATE(2237), + [sym_preproc_ifdef] = STATE(2237), + [sym_function_definition] = STATE(2237), + [sym_declaration] = STATE(2237), + [sym_type_definition] = STATE(2237), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4247), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2890), + [sym_ms_call_modifier] = STATE(2187), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3255), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(1977), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2237), + [sym_preproc_else_in_implementation_definition] = STATE(6645), + [sym_preproc_elif_in_implementation_definition] = STATE(6645), + [sym_preproc_undef] = STATE(2237), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1212), + [sym_property_implementation] = STATE(2237), + [sym_method_definition] = STATE(2237), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_preproc_if_in_implementation_definition_repeat1] = STATE(1212), + [sym_identifier] = ACTIONS(3132), + [aux_sym_preproc_def_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token1] = ACTIONS(3136), + [aux_sym_preproc_if_token2] = ACTIONS(3160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3140), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3140), + [aux_sym_preproc_else_token1] = ACTIONS(3142), + [aux_sym_preproc_elif_token1] = ACTIONS(3144), + [sym_preproc_directive] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym___extension__] = ACTIONS(3150), + [anon_sym_typedef] = ACTIONS(3152), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3154), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATsynthesize] = ACTIONS(3156), + [anon_sym_ATdynamic] = ACTIONS(3158), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1197] = { + [sym_preproc_def] = STATE(1383), + [sym_preproc_call] = STATE(1383), + [sym_preproc_ifdef] = STATE(1383), + [sym_function_definition] = STATE(1383), + [sym_declaration] = STATE(1383), + [sym_type_definition] = STATE(1383), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1383), + [sym_preproc_undef] = STATE(1383), + [sym_availability_attribute_specifier] = STATE(2913), + [sym__class_interface_inheritance] = STATE(1249), + [sym_parameterized_arguments] = STATE(1338), + [sym_instance_variables] = STATE(1382), + [sym_property_declaration] = STATE(1383), + [sym_method_declaration] = STATE(1383), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1383), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_LPAREN2] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3162), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1198] = { + [sym_preproc_def] = STATE(2237), + [sym_preproc_function_def] = STATE(2237), + [sym_preproc_call] = STATE(2237), + [sym_preproc_ifdef] = STATE(2237), + [sym_function_definition] = STATE(2237), + [sym_declaration] = STATE(2237), + [sym_type_definition] = STATE(2237), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4247), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2890), + [sym_ms_call_modifier] = STATE(2187), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3255), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(1977), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2237), + [sym_preproc_else_in_implementation_definition] = STATE(6756), + [sym_preproc_elif_in_implementation_definition] = STATE(6756), + [sym_preproc_undef] = STATE(2237), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1206), + [sym_property_implementation] = STATE(2237), + [sym_method_definition] = STATE(2237), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_preproc_if_in_implementation_definition_repeat1] = STATE(1206), + [sym_identifier] = ACTIONS(3132), + [aux_sym_preproc_def_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token1] = ACTIONS(3136), + [aux_sym_preproc_if_token2] = ACTIONS(3164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3140), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3140), + [aux_sym_preproc_else_token1] = ACTIONS(3142), + [aux_sym_preproc_elif_token1] = ACTIONS(3144), + [sym_preproc_directive] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym___extension__] = ACTIONS(3150), + [anon_sym_typedef] = ACTIONS(3152), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3154), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATsynthesize] = ACTIONS(3156), + [anon_sym_ATdynamic] = ACTIONS(3158), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1199] = { + [sym_preproc_def] = STATE(1421), + [sym_preproc_call] = STATE(1421), + [sym_preproc_ifdef] = STATE(1421), + [sym_function_definition] = STATE(1421), + [sym_declaration] = STATE(1421), + [sym_type_definition] = STATE(1421), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1421), + [sym_preproc_undef] = STATE(1421), + [sym_availability_attribute_specifier] = STATE(2913), + [sym__class_interface_inheritance] = STATE(1243), + [sym_parameterized_arguments] = STATE(1339), + [sym_instance_variables] = STATE(1420), + [sym_property_declaration] = STATE(1421), + [sym_method_declaration] = STATE(1421), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1421), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_LPAREN2] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3166), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1200] = { + [sym_preproc_def] = STATE(2237), + [sym_preproc_function_def] = STATE(2237), + [sym_preproc_call] = STATE(2237), + [sym_preproc_ifdef] = STATE(2237), + [sym_function_definition] = STATE(2237), + [sym_declaration] = STATE(2237), + [sym_type_definition] = STATE(2237), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4247), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2890), + [sym_ms_call_modifier] = STATE(2187), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3255), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(1977), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2237), + [sym_preproc_else_in_implementation_definition] = STATE(6561), + [sym_preproc_elif_in_implementation_definition] = STATE(6561), + [sym_preproc_undef] = STATE(2237), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1201), + [sym_property_implementation] = STATE(2237), + [sym_method_definition] = STATE(2237), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_preproc_if_in_implementation_definition_repeat1] = STATE(1201), + [sym_identifier] = ACTIONS(3132), + [aux_sym_preproc_def_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token1] = ACTIONS(3136), + [aux_sym_preproc_if_token2] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3140), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3140), + [aux_sym_preproc_else_token1] = ACTIONS(3142), + [aux_sym_preproc_elif_token1] = ACTIONS(3144), + [sym_preproc_directive] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym___extension__] = ACTIONS(3150), + [anon_sym_typedef] = ACTIONS(3152), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3154), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATsynthesize] = ACTIONS(3156), + [anon_sym_ATdynamic] = ACTIONS(3158), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1201] = { + [sym_preproc_def] = STATE(2237), + [sym_preproc_function_def] = STATE(2237), + [sym_preproc_call] = STATE(2237), + [sym_preproc_ifdef] = STATE(2237), + [sym_function_definition] = STATE(2237), + [sym_declaration] = STATE(2237), + [sym_type_definition] = STATE(2237), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4247), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2890), + [sym_ms_call_modifier] = STATE(2187), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3255), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(1977), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2237), + [sym_preproc_else_in_implementation_definition] = STATE(6502), + [sym_preproc_elif_in_implementation_definition] = STATE(6502), + [sym_preproc_undef] = STATE(2237), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1212), + [sym_property_implementation] = STATE(2237), + [sym_method_definition] = STATE(2237), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_preproc_if_in_implementation_definition_repeat1] = STATE(1212), + [sym_identifier] = ACTIONS(3132), + [aux_sym_preproc_def_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token1] = ACTIONS(3136), + [aux_sym_preproc_if_token2] = ACTIONS(3170), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3140), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3140), + [aux_sym_preproc_else_token1] = ACTIONS(3142), + [aux_sym_preproc_elif_token1] = ACTIONS(3144), + [sym_preproc_directive] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym___extension__] = ACTIONS(3150), + [anon_sym_typedef] = ACTIONS(3152), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3154), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATsynthesize] = ACTIONS(3156), + [anon_sym_ATdynamic] = ACTIONS(3158), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1202] = { + [sym_preproc_def] = STATE(2237), + [sym_preproc_function_def] = STATE(2237), + [sym_preproc_call] = STATE(2237), + [sym_preproc_ifdef] = STATE(2237), + [sym_function_definition] = STATE(2237), + [sym_declaration] = STATE(2237), + [sym_type_definition] = STATE(2237), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4247), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2890), + [sym_ms_call_modifier] = STATE(2187), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3255), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(1977), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2237), + [sym_preproc_else_in_implementation_definition] = STATE(6779), + [sym_preproc_elif_in_implementation_definition] = STATE(6779), + [sym_preproc_undef] = STATE(2237), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1212), + [sym_property_implementation] = STATE(2237), + [sym_method_definition] = STATE(2237), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_preproc_if_in_implementation_definition_repeat1] = STATE(1212), + [sym_identifier] = ACTIONS(3132), + [aux_sym_preproc_def_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token1] = ACTIONS(3136), + [aux_sym_preproc_if_token2] = ACTIONS(3172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3140), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3140), + [aux_sym_preproc_else_token1] = ACTIONS(3142), + [aux_sym_preproc_elif_token1] = ACTIONS(3144), + [sym_preproc_directive] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym___extension__] = ACTIONS(3150), + [anon_sym_typedef] = ACTIONS(3152), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3154), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATsynthesize] = ACTIONS(3156), + [anon_sym_ATdynamic] = ACTIONS(3158), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1203] = { + [sym_preproc_def] = STATE(1402), + [sym_preproc_call] = STATE(1402), + [sym_preproc_ifdef] = STATE(1402), + [sym_function_definition] = STATE(1402), + [sym_declaration] = STATE(1402), + [sym_type_definition] = STATE(1402), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1402), + [sym_preproc_undef] = STATE(1402), + [sym_availability_attribute_specifier] = STATE(2913), + [sym__class_interface_inheritance] = STATE(1228), + [sym_parameterized_arguments] = STATE(1335), + [sym_instance_variables] = STATE(1401), + [sym_property_declaration] = STATE(1402), + [sym_method_declaration] = STATE(1402), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1402), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_LPAREN2] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3174), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1204] = { + [sym_preproc_def] = STATE(1364), + [sym_preproc_call] = STATE(1364), + [sym_preproc_ifdef] = STATE(1364), + [sym_function_definition] = STATE(1364), + [sym_declaration] = STATE(1364), + [sym_type_definition] = STATE(1364), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1364), + [sym_preproc_undef] = STATE(1364), + [sym_availability_attribute_specifier] = STATE(2913), + [sym__class_interface_inheritance] = STATE(1259), + [sym_parameterized_arguments] = STATE(1333), + [sym_instance_variables] = STATE(1363), + [sym_property_declaration] = STATE(1364), + [sym_method_declaration] = STATE(1364), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1364), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_LPAREN2] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3176), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1205] = { + [sym_preproc_def] = STATE(2237), + [sym_preproc_function_def] = STATE(2237), + [sym_preproc_call] = STATE(2237), + [sym_preproc_ifdef] = STATE(2237), + [sym_function_definition] = STATE(2237), + [sym_declaration] = STATE(2237), + [sym_type_definition] = STATE(2237), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4247), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2890), + [sym_ms_call_modifier] = STATE(2187), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3255), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(1977), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2237), + [sym_preproc_else_in_implementation_definition] = STATE(6704), + [sym_preproc_elif_in_implementation_definition] = STATE(6704), + [sym_preproc_undef] = STATE(2237), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1202), + [sym_property_implementation] = STATE(2237), + [sym_method_definition] = STATE(2237), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_preproc_if_in_implementation_definition_repeat1] = STATE(1202), + [sym_identifier] = ACTIONS(3132), + [aux_sym_preproc_def_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token1] = ACTIONS(3136), + [aux_sym_preproc_if_token2] = ACTIONS(3178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3140), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3140), + [aux_sym_preproc_else_token1] = ACTIONS(3142), + [aux_sym_preproc_elif_token1] = ACTIONS(3144), + [sym_preproc_directive] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym___extension__] = ACTIONS(3150), + [anon_sym_typedef] = ACTIONS(3152), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3154), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATsynthesize] = ACTIONS(3156), + [anon_sym_ATdynamic] = ACTIONS(3158), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1206] = { + [sym_preproc_def] = STATE(2237), + [sym_preproc_function_def] = STATE(2237), + [sym_preproc_call] = STATE(2237), + [sym_preproc_ifdef] = STATE(2237), + [sym_function_definition] = STATE(2237), + [sym_declaration] = STATE(2237), + [sym_type_definition] = STATE(2237), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4247), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2890), + [sym_ms_call_modifier] = STATE(2187), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3255), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(1977), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2237), + [sym_preproc_else_in_implementation_definition] = STATE(5984), + [sym_preproc_elif_in_implementation_definition] = STATE(5984), + [sym_preproc_undef] = STATE(2237), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1212), + [sym_property_implementation] = STATE(2237), + [sym_method_definition] = STATE(2237), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_preproc_if_in_implementation_definition_repeat1] = STATE(1212), + [sym_identifier] = ACTIONS(3132), + [aux_sym_preproc_def_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token1] = ACTIONS(3136), + [aux_sym_preproc_if_token2] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3140), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3140), + [aux_sym_preproc_else_token1] = ACTIONS(3142), + [aux_sym_preproc_elif_token1] = ACTIONS(3144), + [sym_preproc_directive] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym___extension__] = ACTIONS(3150), + [anon_sym_typedef] = ACTIONS(3152), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3154), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATsynthesize] = ACTIONS(3156), + [anon_sym_ATdynamic] = ACTIONS(3158), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1207] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_instance_variables] = STATE(1295), + [sym_implementation_definition] = STATE(1306), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1306), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3182), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1208] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_instance_variables] = STATE(1271), + [sym_implementation_definition] = STATE(1272), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1272), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3184), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1209] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_instance_variables] = STATE(1269), + [sym_implementation_definition] = STATE(1276), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1276), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3186), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1210] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_instance_variables] = STATE(1309), + [sym_implementation_definition] = STATE(1310), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1310), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3188), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1211] = { + [sym_preproc_def] = STATE(1421), + [sym_preproc_call] = STATE(1421), + [sym_preproc_ifdef] = STATE(1421), + [sym_function_definition] = STATE(1421), + [sym_declaration] = STATE(1421), + [sym_type_definition] = STATE(1421), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1421), + [sym_preproc_undef] = STATE(1421), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_instance_variables] = STATE(1420), + [sym_property_declaration] = STATE(1421), + [sym_method_declaration] = STATE(1421), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1421), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_LPAREN2] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(3190), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3166), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1212] = { + [sym_preproc_def] = STATE(2237), + [sym_preproc_function_def] = STATE(2237), + [sym_preproc_call] = STATE(2237), + [sym_preproc_ifdef] = STATE(2237), + [sym_function_definition] = STATE(2237), + [sym_declaration] = STATE(2237), + [sym_type_definition] = STATE(2237), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4247), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2890), + [sym_ms_call_modifier] = STATE(2187), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3255), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(1977), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2237), + [sym_preproc_undef] = STATE(2237), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1212), + [sym_property_implementation] = STATE(2237), + [sym_method_definition] = STATE(2237), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_preproc_if_in_implementation_definition_repeat1] = STATE(1212), + [sym_identifier] = ACTIONS(3192), + [aux_sym_preproc_def_token1] = ACTIONS(3195), + [aux_sym_preproc_if_token1] = ACTIONS(3198), + [aux_sym_preproc_if_token2] = ACTIONS(3201), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3203), + [aux_sym_preproc_else_token1] = ACTIONS(3201), + [aux_sym_preproc_elif_token1] = ACTIONS(3201), + [sym_preproc_directive] = ACTIONS(3206), + [anon_sym_DASH] = ACTIONS(3209), + [anon_sym_PLUS] = ACTIONS(3209), + [anon_sym___extension__] = ACTIONS(3212), + [anon_sym_typedef] = ACTIONS(3215), + [anon_sym_extern] = ACTIONS(3218), + [anon_sym___attribute__] = ACTIONS(3221), + [anon_sym___attribute] = ACTIONS(3221), + [anon_sym_noreturn] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym___declspec] = ACTIONS(3230), + [anon_sym___cdecl] = ACTIONS(3233), + [anon_sym___clrcall] = ACTIONS(3233), + [anon_sym___stdcall] = ACTIONS(3233), + [anon_sym___fastcall] = ACTIONS(3233), + [anon_sym___thiscall] = ACTIONS(3233), + [anon_sym___vectorcall] = ACTIONS(3233), + [anon_sym_signed] = ACTIONS(3236), + [anon_sym_unsigned] = ACTIONS(3236), + [anon_sym_long] = ACTIONS(3236), + [anon_sym_short] = ACTIONS(3236), + [anon_sym_static] = ACTIONS(3218), + [anon_sym_auto] = ACTIONS(3218), + [anon_sym_register] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym___inline] = ACTIONS(3218), + [anon_sym___inline__] = ACTIONS(3218), + [anon_sym___forceinline] = ACTIONS(3218), + [anon_sym_thread_local] = ACTIONS(3218), + [anon_sym___thread] = ACTIONS(3218), + [anon_sym_CG_EXTERN] = ACTIONS(3218), + [anon_sym_CG_INLINE] = ACTIONS(3218), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3218), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3218), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3218), + [anon_sym_IBOutlet] = ACTIONS(3218), + [anon_sym_IBInspectable] = ACTIONS(3218), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3218), + [anon_sym_NS_INLINE] = ACTIONS(3218), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3218), + [anon_sym_OBJC_EXPORT] = ACTIONS(3218), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3218), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3218), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_constexpr] = ACTIONS(3224), + [anon_sym_volatile] = ACTIONS(3224), + [anon_sym_restrict] = ACTIONS(3224), + [anon_sym___restrict__] = ACTIONS(3224), + [anon_sym__Atomic] = ACTIONS(3224), + [anon_sym__Noreturn] = ACTIONS(3224), + [anon_sym__Nonnull] = ACTIONS(3224), + [anon_sym_nullable] = ACTIONS(3224), + [anon_sym__Complex] = ACTIONS(3224), + [anon_sym__Nullable] = ACTIONS(3224), + [anon_sym__Nullable_result] = ACTIONS(3224), + [anon_sym__Null_unspecified] = ACTIONS(3224), + [anon_sym___autoreleasing] = ACTIONS(3224), + [anon_sym___block] = ACTIONS(3224), + [anon_sym___bridge] = ACTIONS(3224), + [anon_sym___bridge_retained] = ACTIONS(3224), + [anon_sym___bridge_transfer] = ACTIONS(3224), + [anon_sym___complex] = ACTIONS(3224), + [anon_sym___const] = ACTIONS(3224), + [anon_sym___imag] = ACTIONS(3224), + [anon_sym___kindof] = ACTIONS(3224), + [anon_sym___nonnull] = ACTIONS(3224), + [anon_sym___nullable] = ACTIONS(3224), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3224), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3224), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3224), + [anon_sym___real] = ACTIONS(3224), + [anon_sym___strong] = ACTIONS(3224), + [anon_sym___unsafe_unretained] = ACTIONS(3224), + [anon_sym___unused] = ACTIONS(3224), + [anon_sym___weak] = ACTIONS(3224), + [anon_sym_alignas] = ACTIONS(3239), + [anon_sym__Alignas] = ACTIONS(3239), + [sym_primitive_type] = ACTIONS(3242), + [anon_sym_enum] = ACTIONS(3245), + [anon_sym_struct] = ACTIONS(3248), + [anon_sym_union] = ACTIONS(3251), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(3254), + [anon_sym___typeof] = ACTIONS(3254), + [anon_sym_typeof] = ACTIONS(3254), + [aux_sym_preproc_undef_token1] = ACTIONS(3257), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3260), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3260), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3260), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3260), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3260), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3260), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3260), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3260), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3260), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3263), + [anon_sym_NS_AVAILABLE] = ACTIONS(3263), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3263), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3263), + [anon_sym_API_AVAILABLE] = ACTIONS(3263), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3263), + [anon_sym_API_DEPRECATED] = ACTIONS(3263), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3263), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3263), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3263), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3263), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3263), + [anon_sym___deprecated_msg] = ACTIONS(3263), + [anon_sym___deprecated_enum_msg] = ACTIONS(3263), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3263), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3263), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3263), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3263), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3263), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3263), + [anon_sym_ATsynthesize] = ACTIONS(3266), + [anon_sym_ATdynamic] = ACTIONS(3269), + [anon_sym_BOOL] = ACTIONS(3272), + [anon_sym_IMP] = ACTIONS(3272), + [anon_sym_SEL] = ACTIONS(3272), + [anon_sym_Class] = ACTIONS(3272), + [anon_sym_id] = ACTIONS(3272), + }, + [1213] = { + [sym_preproc_def] = STATE(1383), + [sym_preproc_call] = STATE(1383), + [sym_preproc_ifdef] = STATE(1383), + [sym_function_definition] = STATE(1383), + [sym_declaration] = STATE(1383), + [sym_type_definition] = STATE(1383), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1383), + [sym_preproc_undef] = STATE(1383), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_instance_variables] = STATE(1382), + [sym_property_declaration] = STATE(1383), + [sym_method_declaration] = STATE(1383), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1383), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_LPAREN2] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(3190), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3162), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1214] = { + [sym_preproc_def] = STATE(1349), + [sym_preproc_call] = STATE(1349), + [sym_preproc_ifdef] = STATE(1349), + [sym_function_definition] = STATE(1349), + [sym_declaration] = STATE(1349), + [sym_type_definition] = STATE(1349), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1349), + [sym_preproc_undef] = STATE(1349), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_instance_variables] = STATE(1348), + [sym_property_declaration] = STATE(1349), + [sym_method_declaration] = STATE(1349), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1349), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_LPAREN2] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(3190), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3130), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1215] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_instance_variables] = STATE(1303), + [sym_implementation_definition] = STATE(1304), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1304), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3275), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1216] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_instance_variables] = STATE(1316), + [sym_implementation_definition] = STATE(1317), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1317), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3277), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1217] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_instance_variables] = STATE(1307), + [sym_implementation_definition] = STATE(1308), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1308), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3279), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1218] = { + [sym_preproc_def] = STATE(1402), + [sym_preproc_call] = STATE(1402), + [sym_preproc_ifdef] = STATE(1402), + [sym_function_definition] = STATE(1402), + [sym_declaration] = STATE(1402), + [sym_type_definition] = STATE(1402), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1402), + [sym_preproc_undef] = STATE(1402), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_instance_variables] = STATE(1401), + [sym_property_declaration] = STATE(1402), + [sym_method_declaration] = STATE(1402), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1402), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_LPAREN2] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(3190), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3174), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1219] = { + [sym_preproc_def] = STATE(1364), + [sym_preproc_call] = STATE(1364), + [sym_preproc_ifdef] = STATE(1364), + [sym_function_definition] = STATE(1364), + [sym_declaration] = STATE(1364), + [sym_type_definition] = STATE(1364), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1364), + [sym_preproc_undef] = STATE(1364), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_instance_variables] = STATE(1363), + [sym_property_declaration] = STATE(1364), + [sym_method_declaration] = STATE(1364), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1364), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_LPAREN2] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(3190), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3176), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1220] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_instance_variables] = STATE(1322), + [sym_implementation_definition] = STATE(1318), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1318), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3281), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1221] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_instance_variables] = STATE(1289), + [sym_implementation_definition] = STATE(1296), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1296), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3283), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1222] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_instance_variables] = STATE(1281), + [sym_implementation_definition] = STATE(1282), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1282), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3285), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1223] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_qualified_protocol_interface_declaration] = STATE(5093), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [aux_sym_protocol_declaration_repeat1] = STATE(5093), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3287), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1224] = { + [sym_preproc_def] = STATE(1262), + [sym_preproc_call] = STATE(1262), + [sym_preproc_ifdef] = STATE(1262), + [sym_function_definition] = STATE(1262), + [sym_declaration] = STATE(1262), + [sym_type_definition] = STATE(1262), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1262), + [sym_preproc_undef] = STATE(1262), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_qualified_protocol_interface_declaration] = STATE(5118), + [sym_property_declaration] = STATE(1262), + [sym_method_declaration] = STATE(1262), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1262), + [aux_sym_protocol_declaration_repeat1] = STATE(5118), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3096), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1225] = { + [sym_preproc_def] = STATE(1351), + [sym_preproc_call] = STATE(1351), + [sym_preproc_ifdef] = STATE(1351), + [sym_function_definition] = STATE(1351), + [sym_declaration] = STATE(1351), + [sym_type_definition] = STATE(1351), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1351), + [sym_preproc_undef] = STATE(1351), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_parameterized_arguments] = STATE(1334), + [sym_instance_variables] = STATE(1350), + [sym_property_declaration] = STATE(1351), + [sym_method_declaration] = STATE(1351), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1351), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3289), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1226] = { + [sym_preproc_def] = STATE(1238), + [sym_preproc_call] = STATE(1238), + [sym_preproc_ifdef] = STATE(1238), + [sym_function_definition] = STATE(1238), + [sym_declaration] = STATE(1238), + [sym_type_definition] = STATE(1238), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1238), + [sym_preproc_undef] = STATE(1238), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_qualified_protocol_interface_declaration] = STATE(5148), + [sym_property_declaration] = STATE(1238), + [sym_method_declaration] = STATE(1238), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1238), + [aux_sym_protocol_declaration_repeat1] = STATE(5148), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3068), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1227] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_qualified_protocol_interface_declaration] = STATE(5148), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [aux_sym_protocol_declaration_repeat1] = STATE(5148), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3068), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1228] = { + [sym_preproc_def] = STATE(1406), + [sym_preproc_call] = STATE(1406), + [sym_preproc_ifdef] = STATE(1406), + [sym_function_definition] = STATE(1406), + [sym_declaration] = STATE(1406), + [sym_type_definition] = STATE(1406), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1406), + [sym_preproc_undef] = STATE(1406), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_parameterized_arguments] = STATE(1331), + [sym_instance_variables] = STATE(1405), + [sym_property_declaration] = STATE(1406), + [sym_method_declaration] = STATE(1406), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1406), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3291), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1229] = { + [sym_preproc_def] = STATE(1327), + [sym_preproc_call] = STATE(1327), + [sym_preproc_ifdef] = STATE(1327), + [sym_function_definition] = STATE(1327), + [sym_declaration] = STATE(1327), + [sym_type_definition] = STATE(1327), + [sym__declaration_modifiers] = STATE(2906), + [sym__declaration_specifiers] = STATE(4247), + [sym_attribute_specifier] = STATE(2906), + [sym_attribute_declaration] = STATE(2906), + [sym_ms_declspec_modifier] = STATE(2890), + [sym_ms_call_modifier] = STATE(2187), + [sym_storage_class_specifier] = STATE(2906), + [sym_type_qualifier] = STATE(2906), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3259), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1327), + [sym_preproc_else_in_interface_declaration] = STATE(6279), + [sym_preproc_elif_in_interface_declaration] = STATE(6279), + [sym_preproc_undef] = STATE(1327), + [sym_availability_attribute_specifier] = STATE(2906), + [sym_property_declaration] = STATE(1327), + [sym_method_declaration] = STATE(1327), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_preproc_if_in_interface_declaration_repeat1] = STATE(1327), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3293), + [aux_sym_preproc_if_token1] = ACTIONS(3295), + [aux_sym_preproc_if_token2] = ACTIONS(3297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3140), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3140), + [aux_sym_preproc_else_token1] = ACTIONS(3299), + [aux_sym_preproc_elif_token1] = ACTIONS(3301), + [sym_preproc_directive] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym___extension__] = ACTIONS(3150), + [anon_sym_typedef] = ACTIONS(3152), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3154), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATproperty] = ACTIONS(3305), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1230] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_qualified_protocol_interface_declaration] = STATE(5118), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [aux_sym_protocol_declaration_repeat1] = STATE(5118), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3096), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1231] = { + [sym_preproc_def] = STATE(1327), + [sym_preproc_call] = STATE(1327), + [sym_preproc_ifdef] = STATE(1327), + [sym_function_definition] = STATE(1327), + [sym_declaration] = STATE(1327), + [sym_type_definition] = STATE(1327), + [sym__declaration_modifiers] = STATE(2906), + [sym__declaration_specifiers] = STATE(4247), + [sym_attribute_specifier] = STATE(2906), + [sym_attribute_declaration] = STATE(2906), + [sym_ms_declspec_modifier] = STATE(2890), + [sym_ms_call_modifier] = STATE(2187), + [sym_storage_class_specifier] = STATE(2906), + [sym_type_qualifier] = STATE(2906), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3259), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1327), + [sym_preproc_else_in_interface_declaration] = STATE(6626), + [sym_preproc_elif_in_interface_declaration] = STATE(6626), + [sym_preproc_undef] = STATE(1327), + [sym_availability_attribute_specifier] = STATE(2906), + [sym_property_declaration] = STATE(1327), + [sym_method_declaration] = STATE(1327), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_preproc_if_in_interface_declaration_repeat1] = STATE(1327), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3293), + [aux_sym_preproc_if_token1] = ACTIONS(3295), + [aux_sym_preproc_if_token2] = ACTIONS(3307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3140), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3140), + [aux_sym_preproc_else_token1] = ACTIONS(3299), + [aux_sym_preproc_elif_token1] = ACTIONS(3301), + [sym_preproc_directive] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym___extension__] = ACTIONS(3150), + [anon_sym_typedef] = ACTIONS(3152), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3154), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATproperty] = ACTIONS(3305), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1232] = { + [sym_preproc_def] = STATE(1327), + [sym_preproc_call] = STATE(1327), + [sym_preproc_ifdef] = STATE(1327), + [sym_function_definition] = STATE(1327), + [sym_declaration] = STATE(1327), + [sym_type_definition] = STATE(1327), + [sym__declaration_modifiers] = STATE(2906), + [sym__declaration_specifiers] = STATE(4247), + [sym_attribute_specifier] = STATE(2906), + [sym_attribute_declaration] = STATE(2906), + [sym_ms_declspec_modifier] = STATE(2890), + [sym_ms_call_modifier] = STATE(2187), + [sym_storage_class_specifier] = STATE(2906), + [sym_type_qualifier] = STATE(2906), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3259), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1327), + [sym_preproc_else_in_interface_declaration] = STATE(5977), + [sym_preproc_elif_in_interface_declaration] = STATE(5977), + [sym_preproc_undef] = STATE(1327), + [sym_availability_attribute_specifier] = STATE(2906), + [sym_property_declaration] = STATE(1327), + [sym_method_declaration] = STATE(1327), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_preproc_if_in_interface_declaration_repeat1] = STATE(1327), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3293), + [aux_sym_preproc_if_token1] = ACTIONS(3295), + [aux_sym_preproc_if_token2] = ACTIONS(3309), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3140), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3140), + [aux_sym_preproc_else_token1] = ACTIONS(3299), + [aux_sym_preproc_elif_token1] = ACTIONS(3301), + [sym_preproc_directive] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym___extension__] = ACTIONS(3150), + [anon_sym_typedef] = ACTIONS(3152), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3154), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATproperty] = ACTIONS(3305), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1233] = { + [sym_preproc_def] = STATE(1234), + [sym_preproc_call] = STATE(1234), + [sym_preproc_ifdef] = STATE(1234), + [sym_function_definition] = STATE(1234), + [sym_declaration] = STATE(1234), + [sym_type_definition] = STATE(1234), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1234), + [sym_preproc_undef] = STATE(1234), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_qualified_protocol_interface_declaration] = STATE(5093), + [sym_property_declaration] = STATE(1234), + [sym_method_declaration] = STATE(1234), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1234), + [aux_sym_protocol_declaration_repeat1] = STATE(5093), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3287), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1234] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_qualified_protocol_interface_declaration] = STATE(5086), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [aux_sym_protocol_declaration_repeat1] = STATE(5086), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3311), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1235] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_qualified_protocol_interface_declaration] = STATE(5127), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [aux_sym_protocol_declaration_repeat1] = STATE(5127), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3313), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1236] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_qualified_protocol_interface_declaration] = STATE(5156), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [aux_sym_protocol_declaration_repeat1] = STATE(5156), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3315), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1237] = { + [sym_preproc_def] = STATE(1229), + [sym_preproc_call] = STATE(1229), + [sym_preproc_ifdef] = STATE(1229), + [sym_function_definition] = STATE(1229), + [sym_declaration] = STATE(1229), + [sym_type_definition] = STATE(1229), + [sym__declaration_modifiers] = STATE(2906), + [sym__declaration_specifiers] = STATE(4247), + [sym_attribute_specifier] = STATE(2906), + [sym_attribute_declaration] = STATE(2906), + [sym_ms_declspec_modifier] = STATE(2890), + [sym_ms_call_modifier] = STATE(2187), + [sym_storage_class_specifier] = STATE(2906), + [sym_type_qualifier] = STATE(2906), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3259), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1229), + [sym_preproc_else_in_interface_declaration] = STATE(6513), + [sym_preproc_elif_in_interface_declaration] = STATE(6513), + [sym_preproc_undef] = STATE(1229), + [sym_availability_attribute_specifier] = STATE(2906), + [sym_property_declaration] = STATE(1229), + [sym_method_declaration] = STATE(1229), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_preproc_if_in_interface_declaration_repeat1] = STATE(1229), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3293), + [aux_sym_preproc_if_token1] = ACTIONS(3295), + [aux_sym_preproc_if_token2] = ACTIONS(3317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3140), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3140), + [aux_sym_preproc_else_token1] = ACTIONS(3299), + [aux_sym_preproc_elif_token1] = ACTIONS(3301), + [sym_preproc_directive] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym___extension__] = ACTIONS(3150), + [anon_sym_typedef] = ACTIONS(3152), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3154), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATproperty] = ACTIONS(3305), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1238] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_qualified_protocol_interface_declaration] = STATE(5090), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [aux_sym_protocol_declaration_repeat1] = STATE(5090), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3319), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1239] = { + [sym_preproc_def] = STATE(1240), + [sym_preproc_call] = STATE(1240), + [sym_preproc_ifdef] = STATE(1240), + [sym_function_definition] = STATE(1240), + [sym_declaration] = STATE(1240), + [sym_type_definition] = STATE(1240), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1240), + [sym_preproc_undef] = STATE(1240), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_qualified_protocol_interface_declaration] = STATE(5090), + [sym_property_declaration] = STATE(1240), + [sym_method_declaration] = STATE(1240), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1240), + [aux_sym_protocol_declaration_repeat1] = STATE(5090), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3319), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1240] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_qualified_protocol_interface_declaration] = STATE(5100), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [aux_sym_protocol_declaration_repeat1] = STATE(5100), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3321), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1241] = { + [sym_preproc_def] = STATE(1250), + [sym_preproc_call] = STATE(1250), + [sym_preproc_ifdef] = STATE(1250), + [sym_function_definition] = STATE(1250), + [sym_declaration] = STATE(1250), + [sym_type_definition] = STATE(1250), + [sym__declaration_modifiers] = STATE(2906), + [sym__declaration_specifiers] = STATE(4247), + [sym_attribute_specifier] = STATE(2906), + [sym_attribute_declaration] = STATE(2906), + [sym_ms_declspec_modifier] = STATE(2890), + [sym_ms_call_modifier] = STATE(2187), + [sym_storage_class_specifier] = STATE(2906), + [sym_type_qualifier] = STATE(2906), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3259), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1250), + [sym_preproc_else_in_interface_declaration] = STATE(6691), + [sym_preproc_elif_in_interface_declaration] = STATE(6691), + [sym_preproc_undef] = STATE(1250), + [sym_availability_attribute_specifier] = STATE(2906), + [sym_property_declaration] = STATE(1250), + [sym_method_declaration] = STATE(1250), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_preproc_if_in_interface_declaration_repeat1] = STATE(1250), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3293), + [aux_sym_preproc_if_token1] = ACTIONS(3295), + [aux_sym_preproc_if_token2] = ACTIONS(3323), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3140), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3140), + [aux_sym_preproc_else_token1] = ACTIONS(3299), + [aux_sym_preproc_elif_token1] = ACTIONS(3301), + [sym_preproc_directive] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym___extension__] = ACTIONS(3150), + [anon_sym_typedef] = ACTIONS(3152), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3154), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATproperty] = ACTIONS(3305), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1242] = { + [sym_preproc_def] = STATE(1235), + [sym_preproc_call] = STATE(1235), + [sym_preproc_ifdef] = STATE(1235), + [sym_function_definition] = STATE(1235), + [sym_declaration] = STATE(1235), + [sym_type_definition] = STATE(1235), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1235), + [sym_preproc_undef] = STATE(1235), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_qualified_protocol_interface_declaration] = STATE(5144), + [sym_property_declaration] = STATE(1235), + [sym_method_declaration] = STATE(1235), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1235), + [aux_sym_protocol_declaration_repeat1] = STATE(5144), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3072), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1243] = { + [sym_preproc_def] = STATE(1425), + [sym_preproc_call] = STATE(1425), + [sym_preproc_ifdef] = STATE(1425), + [sym_function_definition] = STATE(1425), + [sym_declaration] = STATE(1425), + [sym_type_definition] = STATE(1425), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1425), + [sym_preproc_undef] = STATE(1425), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_parameterized_arguments] = STATE(1341), + [sym_instance_variables] = STATE(1424), + [sym_property_declaration] = STATE(1425), + [sym_method_declaration] = STATE(1425), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1425), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3325), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1244] = { + [sym_preproc_def] = STATE(1254), + [sym_preproc_call] = STATE(1254), + [sym_preproc_ifdef] = STATE(1254), + [sym_function_definition] = STATE(1254), + [sym_declaration] = STATE(1254), + [sym_type_definition] = STATE(1254), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1254), + [sym_preproc_undef] = STATE(1254), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_qualified_protocol_interface_declaration] = STATE(5127), + [sym_property_declaration] = STATE(1254), + [sym_method_declaration] = STATE(1254), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1254), + [aux_sym_protocol_declaration_repeat1] = STATE(5127), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3313), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1245] = { + [sym_preproc_def] = STATE(1439), + [sym_preproc_call] = STATE(1439), + [sym_preproc_ifdef] = STATE(1439), + [sym_function_definition] = STATE(1439), + [sym_declaration] = STATE(1439), + [sym_type_definition] = STATE(1439), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1439), + [sym_preproc_undef] = STATE(1439), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_parameterized_arguments] = STATE(1329), + [sym_instance_variables] = STATE(1438), + [sym_property_declaration] = STATE(1439), + [sym_method_declaration] = STATE(1439), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1439), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3327), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1246] = { + [sym_preproc_def] = STATE(1231), + [sym_preproc_call] = STATE(1231), + [sym_preproc_ifdef] = STATE(1231), + [sym_function_definition] = STATE(1231), + [sym_declaration] = STATE(1231), + [sym_type_definition] = STATE(1231), + [sym__declaration_modifiers] = STATE(2906), + [sym__declaration_specifiers] = STATE(4247), + [sym_attribute_specifier] = STATE(2906), + [sym_attribute_declaration] = STATE(2906), + [sym_ms_declspec_modifier] = STATE(2890), + [sym_ms_call_modifier] = STATE(2187), + [sym_storage_class_specifier] = STATE(2906), + [sym_type_qualifier] = STATE(2906), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3259), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1231), + [sym_preproc_else_in_interface_declaration] = STATE(6402), + [sym_preproc_elif_in_interface_declaration] = STATE(6402), + [sym_preproc_undef] = STATE(1231), + [sym_availability_attribute_specifier] = STATE(2906), + [sym_property_declaration] = STATE(1231), + [sym_method_declaration] = STATE(1231), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_preproc_if_in_interface_declaration_repeat1] = STATE(1231), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3293), + [aux_sym_preproc_if_token1] = ACTIONS(3295), + [aux_sym_preproc_if_token2] = ACTIONS(3329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3140), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3140), + [aux_sym_preproc_else_token1] = ACTIONS(3299), + [aux_sym_preproc_elif_token1] = ACTIONS(3301), + [sym_preproc_directive] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym___extension__] = ACTIONS(3150), + [anon_sym_typedef] = ACTIONS(3152), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3154), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATproperty] = ACTIONS(3305), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1247] = { + [sym_preproc_def] = STATE(1256), + [sym_preproc_call] = STATE(1256), + [sym_preproc_ifdef] = STATE(1256), + [sym_function_definition] = STATE(1256), + [sym_declaration] = STATE(1256), + [sym_type_definition] = STATE(1256), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1256), + [sym_preproc_undef] = STATE(1256), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_qualified_protocol_interface_declaration] = STATE(5117), + [sym_property_declaration] = STATE(1256), + [sym_method_declaration] = STATE(1256), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1256), + [aux_sym_protocol_declaration_repeat1] = STATE(5117), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3084), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1248] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_qualified_protocol_interface_declaration] = STATE(5117), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [aux_sym_protocol_declaration_repeat1] = STATE(5117), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3084), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1249] = { + [sym_preproc_def] = STATE(1387), + [sym_preproc_call] = STATE(1387), + [sym_preproc_ifdef] = STATE(1387), + [sym_function_definition] = STATE(1387), + [sym_declaration] = STATE(1387), + [sym_type_definition] = STATE(1387), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1387), + [sym_preproc_undef] = STATE(1387), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_parameterized_arguments] = STATE(1326), + [sym_instance_variables] = STATE(1386), + [sym_property_declaration] = STATE(1387), + [sym_method_declaration] = STATE(1387), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1387), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3331), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1250] = { + [sym_preproc_def] = STATE(1327), + [sym_preproc_call] = STATE(1327), + [sym_preproc_ifdef] = STATE(1327), + [sym_function_definition] = STATE(1327), + [sym_declaration] = STATE(1327), + [sym_type_definition] = STATE(1327), + [sym__declaration_modifiers] = STATE(2906), + [sym__declaration_specifiers] = STATE(4247), + [sym_attribute_specifier] = STATE(2906), + [sym_attribute_declaration] = STATE(2906), + [sym_ms_declspec_modifier] = STATE(2890), + [sym_ms_call_modifier] = STATE(2187), + [sym_storage_class_specifier] = STATE(2906), + [sym_type_qualifier] = STATE(2906), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3259), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1327), + [sym_preproc_else_in_interface_declaration] = STATE(6769), + [sym_preproc_elif_in_interface_declaration] = STATE(6769), + [sym_preproc_undef] = STATE(1327), + [sym_availability_attribute_specifier] = STATE(2906), + [sym_property_declaration] = STATE(1327), + [sym_method_declaration] = STATE(1327), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_preproc_if_in_interface_declaration_repeat1] = STATE(1327), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3293), + [aux_sym_preproc_if_token1] = ACTIONS(3295), + [aux_sym_preproc_if_token2] = ACTIONS(3333), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3140), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3140), + [aux_sym_preproc_else_token1] = ACTIONS(3299), + [aux_sym_preproc_elif_token1] = ACTIONS(3301), + [sym_preproc_directive] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym___extension__] = ACTIONS(3150), + [anon_sym_typedef] = ACTIONS(3152), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3154), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATproperty] = ACTIONS(3305), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1251] = { + [sym_preproc_def] = STATE(1404), + [sym_preproc_call] = STATE(1404), + [sym_preproc_ifdef] = STATE(1404), + [sym_function_definition] = STATE(1404), + [sym_declaration] = STATE(1404), + [sym_type_definition] = STATE(1404), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1404), + [sym_preproc_undef] = STATE(1404), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_parameterized_arguments] = STATE(1325), + [sym_instance_variables] = STATE(1403), + [sym_property_declaration] = STATE(1404), + [sym_method_declaration] = STATE(1404), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1404), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3335), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1252] = { + [sym_preproc_def] = STATE(1423), + [sym_preproc_call] = STATE(1423), + [sym_preproc_ifdef] = STATE(1423), + [sym_function_definition] = STATE(1423), + [sym_declaration] = STATE(1423), + [sym_type_definition] = STATE(1423), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1423), + [sym_preproc_undef] = STATE(1423), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_parameterized_arguments] = STATE(1342), + [sym_instance_variables] = STATE(1422), + [sym_property_declaration] = STATE(1423), + [sym_method_declaration] = STATE(1423), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1423), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3337), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1253] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_qualified_protocol_interface_declaration] = STATE(5144), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [aux_sym_protocol_declaration_repeat1] = STATE(5144), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3072), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1254] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_qualified_protocol_interface_declaration] = STATE(5157), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [aux_sym_protocol_declaration_repeat1] = STATE(5157), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3339), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1255] = { + [sym_preproc_def] = STATE(1385), + [sym_preproc_call] = STATE(1385), + [sym_preproc_ifdef] = STATE(1385), + [sym_function_definition] = STATE(1385), + [sym_declaration] = STATE(1385), + [sym_type_definition] = STATE(1385), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1385), + [sym_preproc_undef] = STATE(1385), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_parameterized_arguments] = STATE(1343), + [sym_instance_variables] = STATE(1384), + [sym_property_declaration] = STATE(1385), + [sym_method_declaration] = STATE(1385), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1385), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3341), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1256] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_qualified_protocol_interface_declaration] = STATE(5120), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [aux_sym_protocol_declaration_repeat1] = STATE(5120), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3343), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1257] = { + [sym_preproc_def] = STATE(1232), + [sym_preproc_call] = STATE(1232), + [sym_preproc_ifdef] = STATE(1232), + [sym_function_definition] = STATE(1232), + [sym_declaration] = STATE(1232), + [sym_type_definition] = STATE(1232), + [sym__declaration_modifiers] = STATE(2906), + [sym__declaration_specifiers] = STATE(4247), + [sym_attribute_specifier] = STATE(2906), + [sym_attribute_declaration] = STATE(2906), + [sym_ms_declspec_modifier] = STATE(2890), + [sym_ms_call_modifier] = STATE(2187), + [sym_storage_class_specifier] = STATE(2906), + [sym_type_qualifier] = STATE(2906), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3259), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1232), + [sym_preproc_else_in_interface_declaration] = STATE(6706), + [sym_preproc_elif_in_interface_declaration] = STATE(6706), + [sym_preproc_undef] = STATE(1232), + [sym_availability_attribute_specifier] = STATE(2906), + [sym_property_declaration] = STATE(1232), + [sym_method_declaration] = STATE(1232), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_preproc_if_in_interface_declaration_repeat1] = STATE(1232), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3293), + [aux_sym_preproc_if_token1] = ACTIONS(3295), + [aux_sym_preproc_if_token2] = ACTIONS(3345), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3140), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3140), + [aux_sym_preproc_else_token1] = ACTIONS(3299), + [aux_sym_preproc_elif_token1] = ACTIONS(3301), + [sym_preproc_directive] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym___extension__] = ACTIONS(3150), + [anon_sym_typedef] = ACTIONS(3152), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3154), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATproperty] = ACTIONS(3305), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1258] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_qualified_protocol_interface_declaration] = STATE(5104), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [aux_sym_protocol_declaration_repeat1] = STATE(5104), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3347), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1259] = { + [sym_preproc_def] = STATE(1368), + [sym_preproc_call] = STATE(1368), + [sym_preproc_ifdef] = STATE(1368), + [sym_function_definition] = STATE(1368), + [sym_declaration] = STATE(1368), + [sym_type_definition] = STATE(1368), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1368), + [sym_preproc_undef] = STATE(1368), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_parameterized_arguments] = STATE(1340), + [sym_instance_variables] = STATE(1367), + [sym_property_declaration] = STATE(1368), + [sym_method_declaration] = STATE(1368), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1368), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3349), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1260] = { + [sym_preproc_def] = STATE(1366), + [sym_preproc_call] = STATE(1366), + [sym_preproc_ifdef] = STATE(1366), + [sym_function_definition] = STATE(1366), + [sym_declaration] = STATE(1366), + [sym_type_definition] = STATE(1366), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1366), + [sym_preproc_undef] = STATE(1366), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_parameterized_arguments] = STATE(1337), + [sym_instance_variables] = STATE(1365), + [sym_property_declaration] = STATE(1366), + [sym_method_declaration] = STATE(1366), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1366), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3351), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1261] = { + [sym_preproc_def] = STATE(1236), + [sym_preproc_call] = STATE(1236), + [sym_preproc_ifdef] = STATE(1236), + [sym_function_definition] = STATE(1236), + [sym_declaration] = STATE(1236), + [sym_type_definition] = STATE(1236), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1236), + [sym_preproc_undef] = STATE(1236), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_qualified_protocol_interface_declaration] = STATE(5120), + [sym_property_declaration] = STATE(1236), + [sym_method_declaration] = STATE(1236), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1236), + [aux_sym_protocol_declaration_repeat1] = STATE(5120), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3343), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1262] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_qualified_protocol_interface_declaration] = STATE(5131), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [aux_sym_protocol_declaration_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3353), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1263] = { + [sym_preproc_def] = STATE(1223), + [sym_preproc_call] = STATE(1223), + [sym_preproc_ifdef] = STATE(1223), + [sym_function_definition] = STATE(1223), + [sym_declaration] = STATE(1223), + [sym_type_definition] = STATE(1223), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1223), + [sym_preproc_undef] = STATE(1223), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_qualified_protocol_interface_declaration] = STATE(5141), + [sym_property_declaration] = STATE(1223), + [sym_method_declaration] = STATE(1223), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1223), + [aux_sym_protocol_declaration_repeat1] = STATE(5141), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3100), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1264] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_qualified_protocol_interface_declaration] = STATE(5141), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [aux_sym_protocol_declaration_repeat1] = STATE(5141), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3100), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1265] = { + [sym_preproc_def] = STATE(1258), + [sym_preproc_call] = STATE(1258), + [sym_preproc_ifdef] = STATE(1258), + [sym_function_definition] = STATE(1258), + [sym_declaration] = STATE(1258), + [sym_type_definition] = STATE(1258), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1258), + [sym_preproc_undef] = STATE(1258), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_qualified_protocol_interface_declaration] = STATE(5131), + [sym_property_declaration] = STATE(1258), + [sym_method_declaration] = STATE(1258), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1258), + [aux_sym_protocol_declaration_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3353), + [anon_sym_AToptional] = ACTIONS(3062), + [anon_sym_ATrequired] = ACTIONS(3062), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1266] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3120), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1267] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3355), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1268] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1288), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1288), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3118), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1269] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1283), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1283), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3357), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1270] = { + [sym_preproc_def] = STATE(2401), + [sym_preproc_function_def] = STATE(2401), + [sym_preproc_call] = STATE(2401), + [sym_preproc_ifdef] = STATE(2401), + [sym_function_definition] = STATE(2401), + [sym_declaration] = STATE(2401), + [sym_type_definition] = STATE(2401), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2889), + [sym_ms_call_modifier] = STATE(2191), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3257), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2086), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2401), + [sym_preproc_undef] = STATE(2401), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1299), + [sym_property_implementation] = STATE(2401), + [sym_method_definition] = STATE(2401), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_preproc_if_in_implementation_definition_repeat1] = STATE(1299), + [sym_identifier] = ACTIONS(3359), + [aux_sym_preproc_def_token1] = ACTIONS(3361), + [aux_sym_preproc_if_token1] = ACTIONS(3363), + [aux_sym_preproc_if_token2] = ACTIONS(3365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3367), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3367), + [sym_preproc_directive] = ACTIONS(3369), + [anon_sym_DASH] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_typedef] = ACTIONS(3375), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3377), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATsynthesize] = ACTIONS(3379), + [anon_sym_ATdynamic] = ACTIONS(3381), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1271] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1277), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3383), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1272] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3385), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1273] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3387), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1274] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3389), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1275] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3391), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1276] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3393), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1277] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3395), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1278] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3397), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1279] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3399), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1280] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3401), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1281] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1267), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1267), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3403), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1282] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3405), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1283] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3407), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1284] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1305), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1305), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3124), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1285] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3124), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1286] = { + [sym_preproc_def] = STATE(2401), + [sym_preproc_function_def] = STATE(2401), + [sym_preproc_call] = STATE(2401), + [sym_preproc_ifdef] = STATE(2401), + [sym_function_definition] = STATE(2401), + [sym_declaration] = STATE(2401), + [sym_type_definition] = STATE(2401), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2889), + [sym_ms_call_modifier] = STATE(2191), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3257), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2086), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2401), + [sym_preproc_undef] = STATE(2401), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1286), + [sym_property_implementation] = STATE(2401), + [sym_method_definition] = STATE(2401), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_preproc_if_in_implementation_definition_repeat1] = STATE(1286), + [sym_identifier] = ACTIONS(3409), + [aux_sym_preproc_def_token1] = ACTIONS(3412), + [aux_sym_preproc_if_token1] = ACTIONS(3415), + [aux_sym_preproc_if_token2] = ACTIONS(3201), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3418), + [sym_preproc_directive] = ACTIONS(3421), + [anon_sym_DASH] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3424), + [anon_sym___extension__] = ACTIONS(3427), + [anon_sym_typedef] = ACTIONS(3430), + [anon_sym_extern] = ACTIONS(3218), + [anon_sym___attribute__] = ACTIONS(3221), + [anon_sym___attribute] = ACTIONS(3221), + [anon_sym_noreturn] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym___declspec] = ACTIONS(3230), + [anon_sym___cdecl] = ACTIONS(3233), + [anon_sym___clrcall] = ACTIONS(3233), + [anon_sym___stdcall] = ACTIONS(3233), + [anon_sym___fastcall] = ACTIONS(3233), + [anon_sym___thiscall] = ACTIONS(3233), + [anon_sym___vectorcall] = ACTIONS(3233), + [anon_sym_signed] = ACTIONS(3236), + [anon_sym_unsigned] = ACTIONS(3236), + [anon_sym_long] = ACTIONS(3236), + [anon_sym_short] = ACTIONS(3236), + [anon_sym_static] = ACTIONS(3218), + [anon_sym_auto] = ACTIONS(3218), + [anon_sym_register] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym___inline] = ACTIONS(3218), + [anon_sym___inline__] = ACTIONS(3218), + [anon_sym___forceinline] = ACTIONS(3218), + [anon_sym_thread_local] = ACTIONS(3218), + [anon_sym___thread] = ACTIONS(3218), + [anon_sym_CG_EXTERN] = ACTIONS(3218), + [anon_sym_CG_INLINE] = ACTIONS(3218), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3218), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3218), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3218), + [anon_sym_IBOutlet] = ACTIONS(3218), + [anon_sym_IBInspectable] = ACTIONS(3218), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3218), + [anon_sym_NS_INLINE] = ACTIONS(3218), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3218), + [anon_sym_OBJC_EXPORT] = ACTIONS(3218), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3218), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3218), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_constexpr] = ACTIONS(3224), + [anon_sym_volatile] = ACTIONS(3224), + [anon_sym_restrict] = ACTIONS(3224), + [anon_sym___restrict__] = ACTIONS(3224), + [anon_sym__Atomic] = ACTIONS(3224), + [anon_sym__Noreturn] = ACTIONS(3224), + [anon_sym__Nonnull] = ACTIONS(3224), + [anon_sym_nullable] = ACTIONS(3224), + [anon_sym__Complex] = ACTIONS(3224), + [anon_sym__Nullable] = ACTIONS(3224), + [anon_sym__Nullable_result] = ACTIONS(3224), + [anon_sym__Null_unspecified] = ACTIONS(3224), + [anon_sym___autoreleasing] = ACTIONS(3224), + [anon_sym___block] = ACTIONS(3224), + [anon_sym___bridge] = ACTIONS(3224), + [anon_sym___bridge_retained] = ACTIONS(3224), + [anon_sym___bridge_transfer] = ACTIONS(3224), + [anon_sym___complex] = ACTIONS(3224), + [anon_sym___const] = ACTIONS(3224), + [anon_sym___imag] = ACTIONS(3224), + [anon_sym___kindof] = ACTIONS(3224), + [anon_sym___nonnull] = ACTIONS(3224), + [anon_sym___nullable] = ACTIONS(3224), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3224), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3224), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3224), + [anon_sym___real] = ACTIONS(3224), + [anon_sym___strong] = ACTIONS(3224), + [anon_sym___unsafe_unretained] = ACTIONS(3224), + [anon_sym___unused] = ACTIONS(3224), + [anon_sym___weak] = ACTIONS(3224), + [anon_sym_alignas] = ACTIONS(3239), + [anon_sym__Alignas] = ACTIONS(3239), + [sym_primitive_type] = ACTIONS(3242), + [anon_sym_enum] = ACTIONS(3245), + [anon_sym_struct] = ACTIONS(3248), + [anon_sym_union] = ACTIONS(3251), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(3254), + [anon_sym___typeof] = ACTIONS(3254), + [anon_sym_typeof] = ACTIONS(3254), + [aux_sym_preproc_undef_token1] = ACTIONS(3433), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3260), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3260), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3260), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3260), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3260), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3260), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3260), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3260), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3260), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3263), + [anon_sym_NS_AVAILABLE] = ACTIONS(3263), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3263), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3263), + [anon_sym_API_AVAILABLE] = ACTIONS(3263), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3263), + [anon_sym_API_DEPRECATED] = ACTIONS(3263), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3263), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3263), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3263), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3263), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3263), + [anon_sym___deprecated_msg] = ACTIONS(3263), + [anon_sym___deprecated_enum_msg] = ACTIONS(3263), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3263), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3263), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3263), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3263), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3263), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3263), + [anon_sym_ATsynthesize] = ACTIONS(3436), + [anon_sym_ATdynamic] = ACTIONS(3439), + [anon_sym_BOOL] = ACTIONS(3272), + [anon_sym_IMP] = ACTIONS(3272), + [anon_sym_SEL] = ACTIONS(3272), + [anon_sym_Class] = ACTIONS(3272), + [anon_sym_id] = ACTIONS(3272), + }, + [1287] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3442), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1288] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3444), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1289] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1274), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3446), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1290] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3448), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1291] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1302), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1302), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3120), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1292] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3126), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1293] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3450), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1294] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1293), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1293), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3444), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1295] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1290), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1290), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3452), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1296] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3454), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1297] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1278), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3456), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1298] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1321), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1321), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3122), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1299] = { + [sym_preproc_def] = STATE(2401), + [sym_preproc_function_def] = STATE(2401), + [sym_preproc_call] = STATE(2401), + [sym_preproc_ifdef] = STATE(2401), + [sym_function_definition] = STATE(2401), + [sym_declaration] = STATE(2401), + [sym_type_definition] = STATE(2401), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2889), + [sym_ms_call_modifier] = STATE(2191), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3257), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2086), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2401), + [sym_preproc_undef] = STATE(2401), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1286), + [sym_property_implementation] = STATE(2401), + [sym_method_definition] = STATE(2401), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_preproc_if_in_implementation_definition_repeat1] = STATE(1286), + [sym_identifier] = ACTIONS(3359), + [aux_sym_preproc_def_token1] = ACTIONS(3361), + [aux_sym_preproc_if_token1] = ACTIONS(3363), + [aux_sym_preproc_if_token2] = ACTIONS(3458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3367), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3367), + [sym_preproc_directive] = ACTIONS(3369), + [anon_sym_DASH] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_typedef] = ACTIONS(3375), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3377), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATsynthesize] = ACTIONS(3379), + [anon_sym_ATdynamic] = ACTIONS(3381), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1300] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3122), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1301] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1311), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1311), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3460), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1302] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3460), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1303] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1312), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1312), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3462), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1304] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3464), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1305] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3456), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1306] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3466), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1307] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1279), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1279), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3468), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1308] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3470), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1309] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1315), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1315), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3472), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1310] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3474), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1311] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3476), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1312] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3478), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1313] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3118), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1314] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1319), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1319), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3401), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1315] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3480), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1316] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1287), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1287), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3482), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1317] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3484), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1318] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3486), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1319] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3488), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1320] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1273), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1273), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3490), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1321] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3490), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1322] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1275), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1275), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3492), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1323] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1280), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1280), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3126), + [anon_sym_ATsynthesize] = ACTIONS(3034), + [anon_sym_ATdynamic] = ACTIONS(3036), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1324] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_preproc_call] = STATE(2355), + [sym_preproc_ifdef] = STATE(2355), + [sym_function_definition] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3258), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2070), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_implementation_definition] = STATE(2355), + [sym_preproc_undef] = STATE(2355), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_implementation_definition] = STATE(1324), + [sym_property_implementation] = STATE(2355), + [sym_method_definition] = STATE(2355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_implementation_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(3497), + [aux_sym_preproc_if_token1] = ACTIONS(3500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), + [sym_preproc_directive] = ACTIONS(3506), + [anon_sym_DASH] = ACTIONS(3509), + [anon_sym_PLUS] = ACTIONS(3509), + [anon_sym___extension__] = ACTIONS(3512), + [anon_sym_typedef] = ACTIONS(3515), + [anon_sym_extern] = ACTIONS(3518), + [anon_sym___attribute__] = ACTIONS(3521), + [anon_sym___attribute] = ACTIONS(3521), + [anon_sym_noreturn] = ACTIONS(3524), + [anon_sym_LBRACK] = ACTIONS(3527), + [anon_sym___declspec] = ACTIONS(3530), + [anon_sym___cdecl] = ACTIONS(3533), + [anon_sym___clrcall] = ACTIONS(3533), + [anon_sym___stdcall] = ACTIONS(3533), + [anon_sym___fastcall] = ACTIONS(3533), + [anon_sym___thiscall] = ACTIONS(3533), + [anon_sym___vectorcall] = ACTIONS(3533), + [anon_sym_signed] = ACTIONS(3536), + [anon_sym_unsigned] = ACTIONS(3536), + [anon_sym_long] = ACTIONS(3536), + [anon_sym_short] = ACTIONS(3536), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_auto] = ACTIONS(3518), + [anon_sym_register] = ACTIONS(3518), + [anon_sym_inline] = ACTIONS(3518), + [anon_sym___inline] = ACTIONS(3518), + [anon_sym___inline__] = ACTIONS(3518), + [anon_sym___forceinline] = ACTIONS(3518), + [anon_sym_thread_local] = ACTIONS(3518), + [anon_sym___thread] = ACTIONS(3518), + [anon_sym_CG_EXTERN] = ACTIONS(3518), + [anon_sym_CG_INLINE] = ACTIONS(3518), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3518), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3518), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3518), + [anon_sym_IBOutlet] = ACTIONS(3518), + [anon_sym_IBInspectable] = ACTIONS(3518), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3518), + [anon_sym_NS_INLINE] = ACTIONS(3518), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3518), + [anon_sym_OBJC_EXPORT] = ACTIONS(3518), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3518), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3524), + [anon_sym_constexpr] = ACTIONS(3524), + [anon_sym_volatile] = ACTIONS(3524), + [anon_sym_restrict] = ACTIONS(3524), + [anon_sym___restrict__] = ACTIONS(3524), + [anon_sym__Atomic] = ACTIONS(3524), + [anon_sym__Noreturn] = ACTIONS(3524), + [anon_sym__Nonnull] = ACTIONS(3524), + [anon_sym_nullable] = ACTIONS(3524), + [anon_sym__Complex] = ACTIONS(3524), + [anon_sym__Nullable] = ACTIONS(3524), + [anon_sym__Nullable_result] = ACTIONS(3524), + [anon_sym__Null_unspecified] = ACTIONS(3524), + [anon_sym___autoreleasing] = ACTIONS(3524), + [anon_sym___block] = ACTIONS(3524), + [anon_sym___bridge] = ACTIONS(3524), + [anon_sym___bridge_retained] = ACTIONS(3524), + [anon_sym___bridge_transfer] = ACTIONS(3524), + [anon_sym___complex] = ACTIONS(3524), + [anon_sym___const] = ACTIONS(3524), + [anon_sym___imag] = ACTIONS(3524), + [anon_sym___kindof] = ACTIONS(3524), + [anon_sym___nonnull] = ACTIONS(3524), + [anon_sym___nullable] = ACTIONS(3524), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3524), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3524), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3524), + [anon_sym___real] = ACTIONS(3524), + [anon_sym___strong] = ACTIONS(3524), + [anon_sym___unsafe_unretained] = ACTIONS(3524), + [anon_sym___unused] = ACTIONS(3524), + [anon_sym___weak] = ACTIONS(3524), + [anon_sym_alignas] = ACTIONS(3539), + [anon_sym__Alignas] = ACTIONS(3539), + [sym_primitive_type] = ACTIONS(3542), + [anon_sym_enum] = ACTIONS(3545), + [anon_sym_struct] = ACTIONS(3548), + [anon_sym_union] = ACTIONS(3551), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(3554), + [anon_sym___typeof] = ACTIONS(3554), + [anon_sym_typeof] = ACTIONS(3554), + [aux_sym_preproc_undef_token1] = ACTIONS(3557), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3560), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3560), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3560), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3560), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3560), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3560), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3560), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3560), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3560), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3563), + [anon_sym_NS_AVAILABLE] = ACTIONS(3563), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3563), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3563), + [anon_sym_API_AVAILABLE] = ACTIONS(3563), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3563), + [anon_sym_API_DEPRECATED] = ACTIONS(3563), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3563), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3563), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3563), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3563), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3563), + [anon_sym___deprecated_msg] = ACTIONS(3563), + [anon_sym___deprecated_enum_msg] = ACTIONS(3563), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3563), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3563), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3563), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3563), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3563), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3563), + [anon_sym_ATend] = ACTIONS(3566), + [anon_sym_ATsynthesize] = ACTIONS(3568), + [anon_sym_ATdynamic] = ACTIONS(3571), + [anon_sym_BOOL] = ACTIONS(3574), + [anon_sym_IMP] = ACTIONS(3574), + [anon_sym_SEL] = ACTIONS(3574), + [anon_sym_Class] = ACTIONS(3574), + [anon_sym_id] = ACTIONS(3574), + }, + [1325] = { + [sym_preproc_def] = STATE(1410), + [sym_preproc_call] = STATE(1410), + [sym_preproc_ifdef] = STATE(1410), + [sym_function_definition] = STATE(1410), + [sym_declaration] = STATE(1410), + [sym_type_definition] = STATE(1410), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1410), + [sym_preproc_undef] = STATE(1410), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_instance_variables] = STATE(1409), + [sym_property_declaration] = STATE(1410), + [sym_method_declaration] = STATE(1410), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1410), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3577), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1326] = { + [sym_preproc_def] = STATE(1394), + [sym_preproc_call] = STATE(1394), + [sym_preproc_ifdef] = STATE(1394), + [sym_function_definition] = STATE(1394), + [sym_declaration] = STATE(1394), + [sym_type_definition] = STATE(1394), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1394), + [sym_preproc_undef] = STATE(1394), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_instance_variables] = STATE(1393), + [sym_property_declaration] = STATE(1394), + [sym_method_declaration] = STATE(1394), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1394), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3579), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1327] = { + [sym_preproc_def] = STATE(1327), + [sym_preproc_call] = STATE(1327), + [sym_preproc_ifdef] = STATE(1327), + [sym_function_definition] = STATE(1327), + [sym_declaration] = STATE(1327), + [sym_type_definition] = STATE(1327), + [sym__declaration_modifiers] = STATE(2906), + [sym__declaration_specifiers] = STATE(4247), + [sym_attribute_specifier] = STATE(2906), + [sym_attribute_declaration] = STATE(2906), + [sym_ms_declspec_modifier] = STATE(2890), + [sym_ms_call_modifier] = STATE(2187), + [sym_storage_class_specifier] = STATE(2906), + [sym_type_qualifier] = STATE(2906), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3259), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1327), + [sym_preproc_undef] = STATE(1327), + [sym_availability_attribute_specifier] = STATE(2906), + [sym_property_declaration] = STATE(1327), + [sym_method_declaration] = STATE(1327), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_preproc_if_in_interface_declaration_repeat1] = STATE(1327), + [sym_identifier] = ACTIONS(3581), + [aux_sym_preproc_def_token1] = ACTIONS(3584), + [aux_sym_preproc_if_token1] = ACTIONS(3587), + [aux_sym_preproc_if_token2] = ACTIONS(3590), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3592), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3592), + [aux_sym_preproc_else_token1] = ACTIONS(3590), + [aux_sym_preproc_elif_token1] = ACTIONS(3590), + [sym_preproc_directive] = ACTIONS(3595), + [anon_sym_DASH] = ACTIONS(3598), + [anon_sym_PLUS] = ACTIONS(3598), + [anon_sym___extension__] = ACTIONS(3601), + [anon_sym_typedef] = ACTIONS(3604), + [anon_sym_extern] = ACTIONS(3607), + [anon_sym___attribute__] = ACTIONS(3610), + [anon_sym___attribute] = ACTIONS(3610), + [anon_sym_noreturn] = ACTIONS(3613), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym___declspec] = ACTIONS(3619), + [anon_sym___cdecl] = ACTIONS(3622), + [anon_sym___clrcall] = ACTIONS(3622), + [anon_sym___stdcall] = ACTIONS(3622), + [anon_sym___fastcall] = ACTIONS(3622), + [anon_sym___thiscall] = ACTIONS(3622), + [anon_sym___vectorcall] = ACTIONS(3622), + [anon_sym_signed] = ACTIONS(3625), + [anon_sym_unsigned] = ACTIONS(3625), + [anon_sym_long] = ACTIONS(3625), + [anon_sym_short] = ACTIONS(3625), + [anon_sym_static] = ACTIONS(3607), + [anon_sym_auto] = ACTIONS(3607), + [anon_sym_register] = ACTIONS(3607), + [anon_sym_inline] = ACTIONS(3607), + [anon_sym___inline] = ACTIONS(3607), + [anon_sym___inline__] = ACTIONS(3607), + [anon_sym___forceinline] = ACTIONS(3607), + [anon_sym_thread_local] = ACTIONS(3607), + [anon_sym___thread] = ACTIONS(3607), + [anon_sym_CG_EXTERN] = ACTIONS(3607), + [anon_sym_CG_INLINE] = ACTIONS(3607), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3607), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3607), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3607), + [anon_sym_IBOutlet] = ACTIONS(3607), + [anon_sym_IBInspectable] = ACTIONS(3607), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3607), + [anon_sym_NS_INLINE] = ACTIONS(3607), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3607), + [anon_sym_OBJC_EXPORT] = ACTIONS(3607), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3607), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3607), + [anon_sym_const] = ACTIONS(3613), + [anon_sym_constexpr] = ACTIONS(3613), + [anon_sym_volatile] = ACTIONS(3613), + [anon_sym_restrict] = ACTIONS(3613), + [anon_sym___restrict__] = ACTIONS(3613), + [anon_sym__Atomic] = ACTIONS(3613), + [anon_sym__Noreturn] = ACTIONS(3613), + [anon_sym__Nonnull] = ACTIONS(3613), + [anon_sym_nullable] = ACTIONS(3613), + [anon_sym__Complex] = ACTIONS(3613), + [anon_sym__Nullable] = ACTIONS(3613), + [anon_sym__Nullable_result] = ACTIONS(3613), + [anon_sym__Null_unspecified] = ACTIONS(3613), + [anon_sym___autoreleasing] = ACTIONS(3613), + [anon_sym___block] = ACTIONS(3613), + [anon_sym___bridge] = ACTIONS(3613), + [anon_sym___bridge_retained] = ACTIONS(3613), + [anon_sym___bridge_transfer] = ACTIONS(3613), + [anon_sym___complex] = ACTIONS(3613), + [anon_sym___const] = ACTIONS(3613), + [anon_sym___imag] = ACTIONS(3613), + [anon_sym___kindof] = ACTIONS(3613), + [anon_sym___nonnull] = ACTIONS(3613), + [anon_sym___nullable] = ACTIONS(3613), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3613), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3613), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3613), + [anon_sym___real] = ACTIONS(3613), + [anon_sym___strong] = ACTIONS(3613), + [anon_sym___unsafe_unretained] = ACTIONS(3613), + [anon_sym___unused] = ACTIONS(3613), + [anon_sym___weak] = ACTIONS(3613), + [anon_sym_alignas] = ACTIONS(3628), + [anon_sym__Alignas] = ACTIONS(3628), + [sym_primitive_type] = ACTIONS(3631), + [anon_sym_enum] = ACTIONS(3634), + [anon_sym_struct] = ACTIONS(3637), + [anon_sym_union] = ACTIONS(3640), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(3643), + [anon_sym___typeof] = ACTIONS(3643), + [anon_sym_typeof] = ACTIONS(3643), + [aux_sym_preproc_undef_token1] = ACTIONS(3646), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3649), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3649), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3649), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3649), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3649), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3649), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3649), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3649), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3649), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3652), + [anon_sym_NS_AVAILABLE] = ACTIONS(3652), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3652), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3652), + [anon_sym_API_AVAILABLE] = ACTIONS(3652), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3652), + [anon_sym_API_DEPRECATED] = ACTIONS(3652), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3652), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3652), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3652), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3652), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3652), + [anon_sym___deprecated_msg] = ACTIONS(3652), + [anon_sym___deprecated_enum_msg] = ACTIONS(3652), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3652), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3652), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3652), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3652), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3652), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3652), + [anon_sym_ATproperty] = ACTIONS(3655), + [anon_sym_BOOL] = ACTIONS(3658), + [anon_sym_IMP] = ACTIONS(3658), + [anon_sym_SEL] = ACTIONS(3658), + [anon_sym_Class] = ACTIONS(3658), + [anon_sym_id] = ACTIONS(3658), + }, + [1328] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3661), + [anon_sym_AToptional] = ACTIONS(3661), + [anon_sym_ATrequired] = ACTIONS(3661), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1329] = { + [sym_preproc_def] = STATE(1355), + [sym_preproc_call] = STATE(1355), + [sym_preproc_ifdef] = STATE(1355), + [sym_function_definition] = STATE(1355), + [sym_declaration] = STATE(1355), + [sym_type_definition] = STATE(1355), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1355), + [sym_preproc_undef] = STATE(1355), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_instance_variables] = STATE(1354), + [sym_property_declaration] = STATE(1355), + [sym_method_declaration] = STATE(1355), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3663), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1330] = { + [sym_preproc_def] = STATE(1328), + [sym_preproc_call] = STATE(1328), + [sym_preproc_ifdef] = STATE(1328), + [sym_function_definition] = STATE(1328), + [sym_declaration] = STATE(1328), + [sym_type_definition] = STATE(1328), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1328), + [sym_preproc_undef] = STATE(1328), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1328), + [sym_method_declaration] = STATE(1328), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1328), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3665), + [anon_sym_AToptional] = ACTIONS(3665), + [anon_sym_ATrequired] = ACTIONS(3665), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1331] = { + [sym_preproc_def] = STATE(1413), + [sym_preproc_call] = STATE(1413), + [sym_preproc_ifdef] = STATE(1413), + [sym_function_definition] = STATE(1413), + [sym_declaration] = STATE(1413), + [sym_type_definition] = STATE(1413), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1413), + [sym_preproc_undef] = STATE(1413), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_instance_variables] = STATE(1412), + [sym_property_declaration] = STATE(1413), + [sym_method_declaration] = STATE(1413), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1413), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3667), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1332] = { + [sym_preproc_def] = STATE(1437), + [sym_preproc_call] = STATE(1437), + [sym_preproc_ifdef] = STATE(1437), + [sym_function_definition] = STATE(1437), + [sym_declaration] = STATE(1437), + [sym_type_definition] = STATE(1437), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1437), + [sym_preproc_undef] = STATE(1437), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_instance_variables] = STATE(1440), + [sym_property_declaration] = STATE(1437), + [sym_method_declaration] = STATE(1437), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1437), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3669), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1333] = { + [sym_preproc_def] = STATE(1370), + [sym_preproc_call] = STATE(1370), + [sym_preproc_ifdef] = STATE(1370), + [sym_function_definition] = STATE(1370), + [sym_declaration] = STATE(1370), + [sym_type_definition] = STATE(1370), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1370), + [sym_preproc_undef] = STATE(1370), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_instance_variables] = STATE(1369), + [sym_property_declaration] = STATE(1370), + [sym_method_declaration] = STATE(1370), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1370), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3671), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1334] = { + [sym_preproc_def] = STATE(1397), + [sym_preproc_call] = STATE(1397), + [sym_preproc_ifdef] = STATE(1397), + [sym_function_definition] = STATE(1397), + [sym_declaration] = STATE(1397), + [sym_type_definition] = STATE(1397), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1397), + [sym_preproc_undef] = STATE(1397), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_instance_variables] = STATE(1344), + [sym_property_declaration] = STATE(1397), + [sym_method_declaration] = STATE(1397), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1397), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3673), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1335] = { + [sym_preproc_def] = STATE(1408), + [sym_preproc_call] = STATE(1408), + [sym_preproc_ifdef] = STATE(1408), + [sym_function_definition] = STATE(1408), + [sym_declaration] = STATE(1408), + [sym_type_definition] = STATE(1408), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1408), + [sym_preproc_undef] = STATE(1408), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_instance_variables] = STATE(1407), + [sym_property_declaration] = STATE(1408), + [sym_method_declaration] = STATE(1408), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1408), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3675), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1336] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3677), + [aux_sym_preproc_def_token1] = ACTIONS(3680), + [aux_sym_preproc_if_token1] = ACTIONS(3683), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3686), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3686), + [sym_preproc_directive] = ACTIONS(3689), + [anon_sym_DASH] = ACTIONS(3692), + [anon_sym_PLUS] = ACTIONS(3692), + [anon_sym___extension__] = ACTIONS(3695), + [anon_sym_typedef] = ACTIONS(3698), + [anon_sym_extern] = ACTIONS(3701), + [anon_sym___attribute__] = ACTIONS(3704), + [anon_sym___attribute] = ACTIONS(3704), + [anon_sym_noreturn] = ACTIONS(3707), + [anon_sym_LBRACK] = ACTIONS(3710), + [anon_sym___declspec] = ACTIONS(3713), + [anon_sym___cdecl] = ACTIONS(3716), + [anon_sym___clrcall] = ACTIONS(3716), + [anon_sym___stdcall] = ACTIONS(3716), + [anon_sym___fastcall] = ACTIONS(3716), + [anon_sym___thiscall] = ACTIONS(3716), + [anon_sym___vectorcall] = ACTIONS(3716), + [anon_sym_signed] = ACTIONS(3719), + [anon_sym_unsigned] = ACTIONS(3719), + [anon_sym_long] = ACTIONS(3719), + [anon_sym_short] = ACTIONS(3719), + [anon_sym_static] = ACTIONS(3701), + [anon_sym_auto] = ACTIONS(3701), + [anon_sym_register] = ACTIONS(3701), + [anon_sym_inline] = ACTIONS(3701), + [anon_sym___inline] = ACTIONS(3701), + [anon_sym___inline__] = ACTIONS(3701), + [anon_sym___forceinline] = ACTIONS(3701), + [anon_sym_thread_local] = ACTIONS(3701), + [anon_sym___thread] = ACTIONS(3701), + [anon_sym_CG_EXTERN] = ACTIONS(3701), + [anon_sym_CG_INLINE] = ACTIONS(3701), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3701), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3701), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3701), + [anon_sym_IBOutlet] = ACTIONS(3701), + [anon_sym_IBInspectable] = ACTIONS(3701), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3701), + [anon_sym_NS_INLINE] = ACTIONS(3701), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3701), + [anon_sym_OBJC_EXPORT] = ACTIONS(3701), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3701), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3701), + [anon_sym_const] = ACTIONS(3707), + [anon_sym_constexpr] = ACTIONS(3707), + [anon_sym_volatile] = ACTIONS(3707), + [anon_sym_restrict] = ACTIONS(3707), + [anon_sym___restrict__] = ACTIONS(3707), + [anon_sym__Atomic] = ACTIONS(3707), + [anon_sym__Noreturn] = ACTIONS(3707), + [anon_sym__Nonnull] = ACTIONS(3707), + [anon_sym_nullable] = ACTIONS(3707), + [anon_sym__Complex] = ACTIONS(3707), + [anon_sym__Nullable] = ACTIONS(3707), + [anon_sym__Nullable_result] = ACTIONS(3707), + [anon_sym__Null_unspecified] = ACTIONS(3707), + [anon_sym___autoreleasing] = ACTIONS(3707), + [anon_sym___block] = ACTIONS(3707), + [anon_sym___bridge] = ACTIONS(3707), + [anon_sym___bridge_retained] = ACTIONS(3707), + [anon_sym___bridge_transfer] = ACTIONS(3707), + [anon_sym___complex] = ACTIONS(3707), + [anon_sym___const] = ACTIONS(3707), + [anon_sym___imag] = ACTIONS(3707), + [anon_sym___kindof] = ACTIONS(3707), + [anon_sym___nonnull] = ACTIONS(3707), + [anon_sym___nullable] = ACTIONS(3707), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3707), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3707), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3707), + [anon_sym___real] = ACTIONS(3707), + [anon_sym___strong] = ACTIONS(3707), + [anon_sym___unsafe_unretained] = ACTIONS(3707), + [anon_sym___unused] = ACTIONS(3707), + [anon_sym___weak] = ACTIONS(3707), + [anon_sym_alignas] = ACTIONS(3722), + [anon_sym__Alignas] = ACTIONS(3722), + [sym_primitive_type] = ACTIONS(3725), + [anon_sym_enum] = ACTIONS(3728), + [anon_sym_struct] = ACTIONS(3731), + [anon_sym_union] = ACTIONS(3734), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(3737), + [anon_sym___typeof] = ACTIONS(3737), + [anon_sym_typeof] = ACTIONS(3737), + [aux_sym_preproc_undef_token1] = ACTIONS(3740), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3743), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3743), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3743), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3743), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3743), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3743), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3743), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3743), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3743), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3746), + [anon_sym_NS_AVAILABLE] = ACTIONS(3746), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3746), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3746), + [anon_sym_API_AVAILABLE] = ACTIONS(3746), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3746), + [anon_sym_API_DEPRECATED] = ACTIONS(3746), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3746), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3746), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3746), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3746), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3746), + [anon_sym___deprecated_msg] = ACTIONS(3746), + [anon_sym___deprecated_enum_msg] = ACTIONS(3746), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3746), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3746), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3746), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3746), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3746), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3746), + [anon_sym_ATend] = ACTIONS(3749), + [anon_sym_AToptional] = ACTIONS(3749), + [anon_sym_ATrequired] = ACTIONS(3749), + [anon_sym_ATproperty] = ACTIONS(3751), + [anon_sym_BOOL] = ACTIONS(3754), + [anon_sym_IMP] = ACTIONS(3754), + [anon_sym_SEL] = ACTIONS(3754), + [anon_sym_Class] = ACTIONS(3754), + [anon_sym_id] = ACTIONS(3754), + }, + [1337] = { + [sym_preproc_def] = STATE(1372), + [sym_preproc_call] = STATE(1372), + [sym_preproc_ifdef] = STATE(1372), + [sym_function_definition] = STATE(1372), + [sym_declaration] = STATE(1372), + [sym_type_definition] = STATE(1372), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1372), + [sym_preproc_undef] = STATE(1372), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_instance_variables] = STATE(1371), + [sym_property_declaration] = STATE(1372), + [sym_method_declaration] = STATE(1372), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1372), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3757), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1338] = { + [sym_preproc_def] = STATE(1389), + [sym_preproc_call] = STATE(1389), + [sym_preproc_ifdef] = STATE(1389), + [sym_function_definition] = STATE(1389), + [sym_declaration] = STATE(1389), + [sym_type_definition] = STATE(1389), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1389), + [sym_preproc_undef] = STATE(1389), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_instance_variables] = STATE(1388), + [sym_property_declaration] = STATE(1389), + [sym_method_declaration] = STATE(1389), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1389), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3759), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1339] = { + [sym_preproc_def] = STATE(1427), + [sym_preproc_call] = STATE(1427), + [sym_preproc_ifdef] = STATE(1427), + [sym_function_definition] = STATE(1427), + [sym_declaration] = STATE(1427), + [sym_type_definition] = STATE(1427), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1427), + [sym_preproc_undef] = STATE(1427), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_instance_variables] = STATE(1426), + [sym_property_declaration] = STATE(1427), + [sym_method_declaration] = STATE(1427), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1427), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3761), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1340] = { + [sym_preproc_def] = STATE(1375), + [sym_preproc_call] = STATE(1375), + [sym_preproc_ifdef] = STATE(1375), + [sym_function_definition] = STATE(1375), + [sym_declaration] = STATE(1375), + [sym_type_definition] = STATE(1375), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1375), + [sym_preproc_undef] = STATE(1375), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_instance_variables] = STATE(1374), + [sym_property_declaration] = STATE(1375), + [sym_method_declaration] = STATE(1375), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1375), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3763), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1341] = { + [sym_preproc_def] = STATE(1432), + [sym_preproc_call] = STATE(1432), + [sym_preproc_ifdef] = STATE(1432), + [sym_function_definition] = STATE(1432), + [sym_declaration] = STATE(1432), + [sym_type_definition] = STATE(1432), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1432), + [sym_preproc_undef] = STATE(1432), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_instance_variables] = STATE(1431), + [sym_property_declaration] = STATE(1432), + [sym_method_declaration] = STATE(1432), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1432), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3765), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1342] = { + [sym_preproc_def] = STATE(1429), + [sym_preproc_call] = STATE(1429), + [sym_preproc_ifdef] = STATE(1429), + [sym_function_definition] = STATE(1429), + [sym_declaration] = STATE(1429), + [sym_type_definition] = STATE(1429), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1429), + [sym_preproc_undef] = STATE(1429), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_instance_variables] = STATE(1428), + [sym_property_declaration] = STATE(1429), + [sym_method_declaration] = STATE(1429), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1429), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3767), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1343] = { + [sym_preproc_def] = STATE(1391), + [sym_preproc_call] = STATE(1391), + [sym_preproc_ifdef] = STATE(1391), + [sym_function_definition] = STATE(1391), + [sym_declaration] = STATE(1391), + [sym_type_definition] = STATE(1391), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1391), + [sym_preproc_undef] = STATE(1391), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_instance_variables] = STATE(1390), + [sym_property_declaration] = STATE(1391), + [sym_method_declaration] = STATE(1391), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1391), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3769), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1344] = { + [sym_preproc_def] = STATE(1358), + [sym_preproc_call] = STATE(1358), + [sym_preproc_ifdef] = STATE(1358), + [sym_function_definition] = STATE(1358), + [sym_declaration] = STATE(1358), + [sym_type_definition] = STATE(1358), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1358), + [sym_preproc_undef] = STATE(1358), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1358), + [sym_method_declaration] = STATE(1358), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1358), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3771), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1345] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3773), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1346] = { + [sym_preproc_def] = STATE(1349), + [sym_preproc_call] = STATE(1349), + [sym_preproc_ifdef] = STATE(1349), + [sym_function_definition] = STATE(1349), + [sym_declaration] = STATE(1349), + [sym_type_definition] = STATE(1349), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1349), + [sym_preproc_undef] = STATE(1349), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1349), + [sym_method_declaration] = STATE(1349), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1349), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3130), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1347] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3130), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1348] = { + [sym_preproc_def] = STATE(1437), + [sym_preproc_call] = STATE(1437), + [sym_preproc_ifdef] = STATE(1437), + [sym_function_definition] = STATE(1437), + [sym_declaration] = STATE(1437), + [sym_type_definition] = STATE(1437), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1437), + [sym_preproc_undef] = STATE(1437), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1437), + [sym_method_declaration] = STATE(1437), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1437), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3669), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1349] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3669), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1350] = { + [sym_preproc_def] = STATE(1345), + [sym_preproc_call] = STATE(1345), + [sym_preproc_ifdef] = STATE(1345), + [sym_function_definition] = STATE(1345), + [sym_declaration] = STATE(1345), + [sym_type_definition] = STATE(1345), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1345), + [sym_preproc_undef] = STATE(1345), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1345), + [sym_method_declaration] = STATE(1345), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1345), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3775), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1351] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3777), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1352] = { + [sym_preproc_def] = STATE(1359), + [sym_preproc_call] = STATE(1359), + [sym_preproc_ifdef] = STATE(1359), + [sym_function_definition] = STATE(1359), + [sym_declaration] = STATE(1359), + [sym_type_definition] = STATE(1359), + [sym__declaration_modifiers] = STATE(2908), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(2908), + [sym_attribute_declaration] = STATE(2908), + [sym_ms_declspec_modifier] = STATE(2889), + [sym_ms_call_modifier] = STATE(2191), + [sym_storage_class_specifier] = STATE(2908), + [sym_type_qualifier] = STATE(2908), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3256), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1359), + [sym_preproc_undef] = STATE(1359), + [sym_availability_attribute_specifier] = STATE(2908), + [sym_property_declaration] = STATE(1359), + [sym_method_declaration] = STATE(1359), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_preproc_if_in_interface_declaration_repeat1] = STATE(1359), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3779), + [aux_sym_preproc_if_token1] = ACTIONS(3781), + [aux_sym_preproc_if_token2] = ACTIONS(3783), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3367), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3367), + [sym_preproc_directive] = ACTIONS(3369), + [anon_sym_DASH] = ACTIONS(3785), + [anon_sym_PLUS] = ACTIONS(3785), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_typedef] = ACTIONS(3375), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3377), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATproperty] = ACTIONS(3787), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1353] = { + [sym_preproc_def] = STATE(1353), + [sym_preproc_call] = STATE(1353), + [sym_preproc_ifdef] = STATE(1353), + [sym_function_definition] = STATE(1353), + [sym_declaration] = STATE(1353), + [sym_type_definition] = STATE(1353), + [sym__declaration_modifiers] = STATE(2908), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(2908), + [sym_attribute_declaration] = STATE(2908), + [sym_ms_declspec_modifier] = STATE(2889), + [sym_ms_call_modifier] = STATE(2191), + [sym_storage_class_specifier] = STATE(2908), + [sym_type_qualifier] = STATE(2908), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3256), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1353), + [sym_preproc_undef] = STATE(1353), + [sym_availability_attribute_specifier] = STATE(2908), + [sym_property_declaration] = STATE(1353), + [sym_method_declaration] = STATE(1353), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_preproc_if_in_interface_declaration_repeat1] = STATE(1353), + [sym_identifier] = ACTIONS(3581), + [aux_sym_preproc_def_token1] = ACTIONS(3789), + [aux_sym_preproc_if_token1] = ACTIONS(3792), + [aux_sym_preproc_if_token2] = ACTIONS(3590), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3795), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3795), + [sym_preproc_directive] = ACTIONS(3798), + [anon_sym_DASH] = ACTIONS(3801), + [anon_sym_PLUS] = ACTIONS(3801), + [anon_sym___extension__] = ACTIONS(3804), + [anon_sym_typedef] = ACTIONS(3807), + [anon_sym_extern] = ACTIONS(3607), + [anon_sym___attribute__] = ACTIONS(3610), + [anon_sym___attribute] = ACTIONS(3610), + [anon_sym_noreturn] = ACTIONS(3613), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym___declspec] = ACTIONS(3619), + [anon_sym___cdecl] = ACTIONS(3622), + [anon_sym___clrcall] = ACTIONS(3622), + [anon_sym___stdcall] = ACTIONS(3622), + [anon_sym___fastcall] = ACTIONS(3622), + [anon_sym___thiscall] = ACTIONS(3622), + [anon_sym___vectorcall] = ACTIONS(3622), + [anon_sym_signed] = ACTIONS(3625), + [anon_sym_unsigned] = ACTIONS(3625), + [anon_sym_long] = ACTIONS(3625), + [anon_sym_short] = ACTIONS(3625), + [anon_sym_static] = ACTIONS(3607), + [anon_sym_auto] = ACTIONS(3607), + [anon_sym_register] = ACTIONS(3607), + [anon_sym_inline] = ACTIONS(3607), + [anon_sym___inline] = ACTIONS(3607), + [anon_sym___inline__] = ACTIONS(3607), + [anon_sym___forceinline] = ACTIONS(3607), + [anon_sym_thread_local] = ACTIONS(3607), + [anon_sym___thread] = ACTIONS(3607), + [anon_sym_CG_EXTERN] = ACTIONS(3607), + [anon_sym_CG_INLINE] = ACTIONS(3607), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3607), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3607), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3607), + [anon_sym_IBOutlet] = ACTIONS(3607), + [anon_sym_IBInspectable] = ACTIONS(3607), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3607), + [anon_sym_NS_INLINE] = ACTIONS(3607), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3607), + [anon_sym_OBJC_EXPORT] = ACTIONS(3607), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3607), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3607), + [anon_sym_const] = ACTIONS(3613), + [anon_sym_constexpr] = ACTIONS(3613), + [anon_sym_volatile] = ACTIONS(3613), + [anon_sym_restrict] = ACTIONS(3613), + [anon_sym___restrict__] = ACTIONS(3613), + [anon_sym__Atomic] = ACTIONS(3613), + [anon_sym__Noreturn] = ACTIONS(3613), + [anon_sym__Nonnull] = ACTIONS(3613), + [anon_sym_nullable] = ACTIONS(3613), + [anon_sym__Complex] = ACTIONS(3613), + [anon_sym__Nullable] = ACTIONS(3613), + [anon_sym__Nullable_result] = ACTIONS(3613), + [anon_sym__Null_unspecified] = ACTIONS(3613), + [anon_sym___autoreleasing] = ACTIONS(3613), + [anon_sym___block] = ACTIONS(3613), + [anon_sym___bridge] = ACTIONS(3613), + [anon_sym___bridge_retained] = ACTIONS(3613), + [anon_sym___bridge_transfer] = ACTIONS(3613), + [anon_sym___complex] = ACTIONS(3613), + [anon_sym___const] = ACTIONS(3613), + [anon_sym___imag] = ACTIONS(3613), + [anon_sym___kindof] = ACTIONS(3613), + [anon_sym___nonnull] = ACTIONS(3613), + [anon_sym___nullable] = ACTIONS(3613), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3613), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3613), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3613), + [anon_sym___real] = ACTIONS(3613), + [anon_sym___strong] = ACTIONS(3613), + [anon_sym___unsafe_unretained] = ACTIONS(3613), + [anon_sym___unused] = ACTIONS(3613), + [anon_sym___weak] = ACTIONS(3613), + [anon_sym_alignas] = ACTIONS(3628), + [anon_sym__Alignas] = ACTIONS(3628), + [sym_primitive_type] = ACTIONS(3631), + [anon_sym_enum] = ACTIONS(3634), + [anon_sym_struct] = ACTIONS(3637), + [anon_sym_union] = ACTIONS(3640), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(3643), + [anon_sym___typeof] = ACTIONS(3643), + [anon_sym_typeof] = ACTIONS(3643), + [aux_sym_preproc_undef_token1] = ACTIONS(3810), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3649), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3649), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3649), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3649), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3649), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3649), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3649), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3649), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3649), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3652), + [anon_sym_NS_AVAILABLE] = ACTIONS(3652), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3652), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3652), + [anon_sym_API_AVAILABLE] = ACTIONS(3652), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3652), + [anon_sym_API_DEPRECATED] = ACTIONS(3652), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3652), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3652), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3652), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3652), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3652), + [anon_sym___deprecated_msg] = ACTIONS(3652), + [anon_sym___deprecated_enum_msg] = ACTIONS(3652), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3652), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3652), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3652), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3652), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3652), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3652), + [anon_sym_ATproperty] = ACTIONS(3813), + [anon_sym_BOOL] = ACTIONS(3658), + [anon_sym_IMP] = ACTIONS(3658), + [anon_sym_SEL] = ACTIONS(3658), + [anon_sym_Class] = ACTIONS(3658), + [anon_sym_id] = ACTIONS(3658), + }, + [1354] = { + [sym_preproc_def] = STATE(1360), + [sym_preproc_call] = STATE(1360), + [sym_preproc_ifdef] = STATE(1360), + [sym_function_definition] = STATE(1360), + [sym_declaration] = STATE(1360), + [sym_type_definition] = STATE(1360), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1360), + [sym_preproc_undef] = STATE(1360), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1360), + [sym_method_declaration] = STATE(1360), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1360), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3816), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1355] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3818), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1356] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3820), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1357] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3822), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1358] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3824), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1359] = { + [sym_preproc_def] = STATE(1353), + [sym_preproc_call] = STATE(1353), + [sym_preproc_ifdef] = STATE(1353), + [sym_function_definition] = STATE(1353), + [sym_declaration] = STATE(1353), + [sym_type_definition] = STATE(1353), + [sym__declaration_modifiers] = STATE(2908), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(2908), + [sym_attribute_declaration] = STATE(2908), + [sym_ms_declspec_modifier] = STATE(2889), + [sym_ms_call_modifier] = STATE(2191), + [sym_storage_class_specifier] = STATE(2908), + [sym_type_qualifier] = STATE(2908), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3256), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1353), + [sym_preproc_undef] = STATE(1353), + [sym_availability_attribute_specifier] = STATE(2908), + [sym_property_declaration] = STATE(1353), + [sym_method_declaration] = STATE(1353), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_preproc_if_in_interface_declaration_repeat1] = STATE(1353), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3779), + [aux_sym_preproc_if_token1] = ACTIONS(3781), + [aux_sym_preproc_if_token2] = ACTIONS(3826), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3367), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3367), + [sym_preproc_directive] = ACTIONS(3369), + [anon_sym_DASH] = ACTIONS(3785), + [anon_sym_PLUS] = ACTIONS(3785), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_typedef] = ACTIONS(3375), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3377), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATproperty] = ACTIONS(3787), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1360] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3828), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1361] = { + [sym_preproc_def] = STATE(1364), + [sym_preproc_call] = STATE(1364), + [sym_preproc_ifdef] = STATE(1364), + [sym_function_definition] = STATE(1364), + [sym_declaration] = STATE(1364), + [sym_type_definition] = STATE(1364), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1364), + [sym_preproc_undef] = STATE(1364), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1364), + [sym_method_declaration] = STATE(1364), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1364), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3176), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1362] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3176), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1363] = { + [sym_preproc_def] = STATE(1370), + [sym_preproc_call] = STATE(1370), + [sym_preproc_ifdef] = STATE(1370), + [sym_function_definition] = STATE(1370), + [sym_declaration] = STATE(1370), + [sym_type_definition] = STATE(1370), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1370), + [sym_preproc_undef] = STATE(1370), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1370), + [sym_method_declaration] = STATE(1370), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1370), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3671), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1364] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3671), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1365] = { + [sym_preproc_def] = STATE(1373), + [sym_preproc_call] = STATE(1373), + [sym_preproc_ifdef] = STATE(1373), + [sym_function_definition] = STATE(1373), + [sym_declaration] = STATE(1373), + [sym_type_definition] = STATE(1373), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1373), + [sym_preproc_undef] = STATE(1373), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1373), + [sym_method_declaration] = STATE(1373), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1373), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3830), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1366] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3832), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1367] = { + [sym_preproc_def] = STATE(1376), + [sym_preproc_call] = STATE(1376), + [sym_preproc_ifdef] = STATE(1376), + [sym_function_definition] = STATE(1376), + [sym_declaration] = STATE(1376), + [sym_type_definition] = STATE(1376), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1376), + [sym_preproc_undef] = STATE(1376), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1376), + [sym_method_declaration] = STATE(1376), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1376), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3834), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1368] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3836), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1369] = { + [sym_preproc_def] = STATE(1377), + [sym_preproc_call] = STATE(1377), + [sym_preproc_ifdef] = STATE(1377), + [sym_function_definition] = STATE(1377), + [sym_declaration] = STATE(1377), + [sym_type_definition] = STATE(1377), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1377), + [sym_preproc_undef] = STATE(1377), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1377), + [sym_method_declaration] = STATE(1377), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1377), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3838), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1370] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3838), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1371] = { + [sym_preproc_def] = STATE(1378), + [sym_preproc_call] = STATE(1378), + [sym_preproc_ifdef] = STATE(1378), + [sym_function_definition] = STATE(1378), + [sym_declaration] = STATE(1378), + [sym_type_definition] = STATE(1378), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1378), + [sym_preproc_undef] = STATE(1378), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1378), + [sym_method_declaration] = STATE(1378), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1378), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3840), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1372] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3842), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1373] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3844), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1374] = { + [sym_preproc_def] = STATE(1379), + [sym_preproc_call] = STATE(1379), + [sym_preproc_ifdef] = STATE(1379), + [sym_function_definition] = STATE(1379), + [sym_declaration] = STATE(1379), + [sym_type_definition] = STATE(1379), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1379), + [sym_preproc_undef] = STATE(1379), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1379), + [sym_method_declaration] = STATE(1379), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1379), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3846), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1375] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3848), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1376] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3850), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1377] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3852), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1378] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3854), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1379] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3856), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1380] = { + [sym_preproc_def] = STATE(1383), + [sym_preproc_call] = STATE(1383), + [sym_preproc_ifdef] = STATE(1383), + [sym_function_definition] = STATE(1383), + [sym_declaration] = STATE(1383), + [sym_type_definition] = STATE(1383), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1383), + [sym_preproc_undef] = STATE(1383), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1383), + [sym_method_declaration] = STATE(1383), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1383), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3162), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1381] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3162), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1382] = { + [sym_preproc_def] = STATE(1389), + [sym_preproc_call] = STATE(1389), + [sym_preproc_ifdef] = STATE(1389), + [sym_function_definition] = STATE(1389), + [sym_declaration] = STATE(1389), + [sym_type_definition] = STATE(1389), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1389), + [sym_preproc_undef] = STATE(1389), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1389), + [sym_method_declaration] = STATE(1389), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1389), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3759), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1383] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3759), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1384] = { + [sym_preproc_def] = STATE(1392), + [sym_preproc_call] = STATE(1392), + [sym_preproc_ifdef] = STATE(1392), + [sym_function_definition] = STATE(1392), + [sym_declaration] = STATE(1392), + [sym_type_definition] = STATE(1392), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1392), + [sym_preproc_undef] = STATE(1392), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1392), + [sym_method_declaration] = STATE(1392), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1392), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3858), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1385] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3860), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1386] = { + [sym_preproc_def] = STATE(1395), + [sym_preproc_call] = STATE(1395), + [sym_preproc_ifdef] = STATE(1395), + [sym_function_definition] = STATE(1395), + [sym_declaration] = STATE(1395), + [sym_type_definition] = STATE(1395), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1395), + [sym_preproc_undef] = STATE(1395), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1395), + [sym_method_declaration] = STATE(1395), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1395), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3862), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1387] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3864), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1388] = { + [sym_preproc_def] = STATE(1396), + [sym_preproc_call] = STATE(1396), + [sym_preproc_ifdef] = STATE(1396), + [sym_function_definition] = STATE(1396), + [sym_declaration] = STATE(1396), + [sym_type_definition] = STATE(1396), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1396), + [sym_preproc_undef] = STATE(1396), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1396), + [sym_method_declaration] = STATE(1396), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1396), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3866), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1389] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3866), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1390] = { + [sym_preproc_def] = STATE(1441), + [sym_preproc_call] = STATE(1441), + [sym_preproc_ifdef] = STATE(1441), + [sym_function_definition] = STATE(1441), + [sym_declaration] = STATE(1441), + [sym_type_definition] = STATE(1441), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1441), + [sym_preproc_undef] = STATE(1441), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1441), + [sym_method_declaration] = STATE(1441), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1441), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3868), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1391] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3870), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1392] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3872), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1393] = { + [sym_preproc_def] = STATE(1398), + [sym_preproc_call] = STATE(1398), + [sym_preproc_ifdef] = STATE(1398), + [sym_function_definition] = STATE(1398), + [sym_declaration] = STATE(1398), + [sym_type_definition] = STATE(1398), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1398), + [sym_preproc_undef] = STATE(1398), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1398), + [sym_method_declaration] = STATE(1398), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1398), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3874), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1394] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3876), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1395] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3878), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1396] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3880), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1397] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3882), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1398] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3884), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1399] = { + [sym_preproc_def] = STATE(1402), + [sym_preproc_call] = STATE(1402), + [sym_preproc_ifdef] = STATE(1402), + [sym_function_definition] = STATE(1402), + [sym_declaration] = STATE(1402), + [sym_type_definition] = STATE(1402), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1402), + [sym_preproc_undef] = STATE(1402), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1402), + [sym_method_declaration] = STATE(1402), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1402), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3174), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1400] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3174), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1401] = { + [sym_preproc_def] = STATE(1408), + [sym_preproc_call] = STATE(1408), + [sym_preproc_ifdef] = STATE(1408), + [sym_function_definition] = STATE(1408), + [sym_declaration] = STATE(1408), + [sym_type_definition] = STATE(1408), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1408), + [sym_preproc_undef] = STATE(1408), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1408), + [sym_method_declaration] = STATE(1408), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1408), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3675), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1402] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3675), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1403] = { + [sym_preproc_def] = STATE(1411), + [sym_preproc_call] = STATE(1411), + [sym_preproc_ifdef] = STATE(1411), + [sym_function_definition] = STATE(1411), + [sym_declaration] = STATE(1411), + [sym_type_definition] = STATE(1411), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1411), + [sym_preproc_undef] = STATE(1411), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1411), + [sym_method_declaration] = STATE(1411), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1411), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3886), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1404] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3888), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1405] = { + [sym_preproc_def] = STATE(1414), + [sym_preproc_call] = STATE(1414), + [sym_preproc_ifdef] = STATE(1414), + [sym_function_definition] = STATE(1414), + [sym_declaration] = STATE(1414), + [sym_type_definition] = STATE(1414), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1414), + [sym_preproc_undef] = STATE(1414), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1414), + [sym_method_declaration] = STATE(1414), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1414), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3890), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1406] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3892), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1407] = { + [sym_preproc_def] = STATE(1415), + [sym_preproc_call] = STATE(1415), + [sym_preproc_ifdef] = STATE(1415), + [sym_function_definition] = STATE(1415), + [sym_declaration] = STATE(1415), + [sym_type_definition] = STATE(1415), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1415), + [sym_preproc_undef] = STATE(1415), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1415), + [sym_method_declaration] = STATE(1415), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1415), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3894), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1408] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3894), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1409] = { + [sym_preproc_def] = STATE(1416), + [sym_preproc_call] = STATE(1416), + [sym_preproc_ifdef] = STATE(1416), + [sym_function_definition] = STATE(1416), + [sym_declaration] = STATE(1416), + [sym_type_definition] = STATE(1416), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1416), + [sym_preproc_undef] = STATE(1416), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1416), + [sym_method_declaration] = STATE(1416), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1416), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3896), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1410] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3898), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1411] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3900), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1412] = { + [sym_preproc_def] = STATE(1417), + [sym_preproc_call] = STATE(1417), + [sym_preproc_ifdef] = STATE(1417), + [sym_function_definition] = STATE(1417), + [sym_declaration] = STATE(1417), + [sym_type_definition] = STATE(1417), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1417), + [sym_preproc_undef] = STATE(1417), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1417), + [sym_method_declaration] = STATE(1417), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1417), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3902), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1413] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3904), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1414] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3906), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1415] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3908), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1416] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3910), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1417] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3912), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1418] = { + [sym_preproc_def] = STATE(1421), + [sym_preproc_call] = STATE(1421), + [sym_preproc_ifdef] = STATE(1421), + [sym_function_definition] = STATE(1421), + [sym_declaration] = STATE(1421), + [sym_type_definition] = STATE(1421), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1421), + [sym_preproc_undef] = STATE(1421), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1421), + [sym_method_declaration] = STATE(1421), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1421), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3166), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1419] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3166), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1420] = { + [sym_preproc_def] = STATE(1427), + [sym_preproc_call] = STATE(1427), + [sym_preproc_ifdef] = STATE(1427), + [sym_function_definition] = STATE(1427), + [sym_declaration] = STATE(1427), + [sym_type_definition] = STATE(1427), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1427), + [sym_preproc_undef] = STATE(1427), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1427), + [sym_method_declaration] = STATE(1427), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1427), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3761), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1421] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3761), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1422] = { + [sym_preproc_def] = STATE(1430), + [sym_preproc_call] = STATE(1430), + [sym_preproc_ifdef] = STATE(1430), + [sym_function_definition] = STATE(1430), + [sym_declaration] = STATE(1430), + [sym_type_definition] = STATE(1430), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1430), + [sym_preproc_undef] = STATE(1430), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1430), + [sym_method_declaration] = STATE(1430), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1430), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3914), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1423] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3916), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1424] = { + [sym_preproc_def] = STATE(1433), + [sym_preproc_call] = STATE(1433), + [sym_preproc_ifdef] = STATE(1433), + [sym_function_definition] = STATE(1433), + [sym_declaration] = STATE(1433), + [sym_type_definition] = STATE(1433), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1433), + [sym_preproc_undef] = STATE(1433), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1433), + [sym_method_declaration] = STATE(1433), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1433), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3918), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1425] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3920), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1426] = { + [sym_preproc_def] = STATE(1434), + [sym_preproc_call] = STATE(1434), + [sym_preproc_ifdef] = STATE(1434), + [sym_function_definition] = STATE(1434), + [sym_declaration] = STATE(1434), + [sym_type_definition] = STATE(1434), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1434), + [sym_preproc_undef] = STATE(1434), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1434), + [sym_method_declaration] = STATE(1434), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1434), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3922), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1427] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3922), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1428] = { + [sym_preproc_def] = STATE(1435), + [sym_preproc_call] = STATE(1435), + [sym_preproc_ifdef] = STATE(1435), + [sym_function_definition] = STATE(1435), + [sym_declaration] = STATE(1435), + [sym_type_definition] = STATE(1435), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1435), + [sym_preproc_undef] = STATE(1435), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1435), + [sym_method_declaration] = STATE(1435), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1435), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3924), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1429] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3926), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1430] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3928), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1431] = { + [sym_preproc_def] = STATE(1436), + [sym_preproc_call] = STATE(1436), + [sym_preproc_ifdef] = STATE(1436), + [sym_function_definition] = STATE(1436), + [sym_declaration] = STATE(1436), + [sym_type_definition] = STATE(1436), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1436), + [sym_preproc_undef] = STATE(1436), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1436), + [sym_method_declaration] = STATE(1436), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1436), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3930), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1432] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3932), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1433] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3934), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1434] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3936), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1435] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3938), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1436] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3940), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1437] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3942), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1438] = { + [sym_preproc_def] = STATE(1356), + [sym_preproc_call] = STATE(1356), + [sym_preproc_ifdef] = STATE(1356), + [sym_function_definition] = STATE(1356), + [sym_declaration] = STATE(1356), + [sym_type_definition] = STATE(1356), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1356), + [sym_preproc_undef] = STATE(1356), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1356), + [sym_method_declaration] = STATE(1356), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3944), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1439] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3946), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1440] = { + [sym_preproc_def] = STATE(1357), + [sym_preproc_call] = STATE(1357), + [sym_preproc_ifdef] = STATE(1357), + [sym_function_definition] = STATE(1357), + [sym_declaration] = STATE(1357), + [sym_type_definition] = STATE(1357), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1357), + [sym_preproc_undef] = STATE(1357), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1357), + [sym_method_declaration] = STATE(1357), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1357), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3942), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1441] = { + [sym_preproc_def] = STATE(1336), + [sym_preproc_call] = STATE(1336), + [sym_preproc_ifdef] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_type_definition] = STATE(1336), + [sym__declaration_modifiers] = STATE(2913), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2913), + [sym_attribute_declaration] = STATE(2913), + [sym_ms_declspec_modifier] = STATE(2877), + [sym_ms_call_modifier] = STATE(2169), + [sym_storage_class_specifier] = STATE(2913), + [sym_type_qualifier] = STATE(2913), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(3253), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_preproc_if_in_interface_declaration] = STATE(1336), + [sym_preproc_undef] = STATE(1336), + [sym_availability_attribute_specifier] = STATE(2913), + [sym_property_declaration] = STATE(1336), + [sym_method_declaration] = STATE(1336), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_class_interface_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [aux_sym_preproc_undef_token1] = ACTIONS(3030), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATend] = ACTIONS(3948), + [anon_sym_ATproperty] = ACTIONS(3064), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1442] = { + [sym_string_literal] = STATE(1442), + [aux_sym_concatenated_string_repeat1] = STATE(1442), + [sym_identifier] = ACTIONS(3950), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3953), + [anon_sym_LPAREN2] = ACTIONS(3953), + [anon_sym_DASH] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_SLASH] = ACTIONS(3955), + [anon_sym_PERCENT] = ACTIONS(3955), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_PIPE] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3955), + [anon_sym_EQ_EQ] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_GT_EQ] = ACTIONS(3953), + [anon_sym_LT_EQ] = ACTIONS(3953), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_LT_LT] = ACTIONS(3955), + [anon_sym_GT_GT] = ACTIONS(3955), + [anon_sym_SEMI] = ACTIONS(3953), + [anon_sym___extension__] = ACTIONS(3955), + [anon_sym_extern] = ACTIONS(3955), + [anon_sym___attribute__] = ACTIONS(3955), + [anon_sym___attribute] = ACTIONS(3955), + [anon_sym_noreturn] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym___declspec] = ACTIONS(3955), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_signed] = ACTIONS(3955), + [anon_sym_unsigned] = ACTIONS(3955), + [anon_sym_long] = ACTIONS(3955), + [anon_sym_short] = ACTIONS(3955), + [anon_sym_static] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_ATautoreleasepool] = ACTIONS(3953), + [anon_sym_auto] = ACTIONS(3955), + [anon_sym_register] = ACTIONS(3955), + [anon_sym_inline] = ACTIONS(3955), + [anon_sym___inline] = ACTIONS(3955), + [anon_sym___inline__] = ACTIONS(3955), + [anon_sym___forceinline] = ACTIONS(3955), + [anon_sym_thread_local] = ACTIONS(3955), + [anon_sym___thread] = ACTIONS(3955), + [anon_sym_CG_EXTERN] = ACTIONS(3955), + [anon_sym_CG_INLINE] = ACTIONS(3955), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3955), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3955), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3955), + [anon_sym_IBOutlet] = ACTIONS(3955), + [anon_sym_IBInspectable] = ACTIONS(3955), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3955), + [anon_sym_NS_INLINE] = ACTIONS(3955), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3955), + [anon_sym_OBJC_EXPORT] = ACTIONS(3955), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3955), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3955), + [anon_sym_const] = ACTIONS(3955), + [anon_sym_constexpr] = ACTIONS(3955), + [anon_sym_volatile] = ACTIONS(3955), + [anon_sym_restrict] = ACTIONS(3955), + [anon_sym___restrict__] = ACTIONS(3955), + [anon_sym__Atomic] = ACTIONS(3955), + [anon_sym__Noreturn] = ACTIONS(3955), + [anon_sym__Nonnull] = ACTIONS(3955), + [anon_sym_nullable] = ACTIONS(3955), + [anon_sym__Complex] = ACTIONS(3955), + [anon_sym__Nullable] = ACTIONS(3955), + [anon_sym__Nullable_result] = ACTIONS(3955), + [anon_sym__Null_unspecified] = ACTIONS(3955), + [anon_sym___autoreleasing] = ACTIONS(3955), + [anon_sym___block] = ACTIONS(3955), + [anon_sym___bridge] = ACTIONS(3955), + [anon_sym___bridge_retained] = ACTIONS(3955), + [anon_sym___bridge_transfer] = ACTIONS(3955), + [anon_sym___complex] = ACTIONS(3955), + [anon_sym___const] = ACTIONS(3955), + [anon_sym___imag] = ACTIONS(3955), + [anon_sym___kindof] = ACTIONS(3955), + [anon_sym___nonnull] = ACTIONS(3955), + [anon_sym___nullable] = ACTIONS(3955), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3955), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3955), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3955), + [anon_sym___real] = ACTIONS(3955), + [anon_sym___strong] = ACTIONS(3955), + [anon_sym___unsafe_unretained] = ACTIONS(3955), + [anon_sym___unused] = ACTIONS(3955), + [anon_sym___weak] = ACTIONS(3955), + [anon_sym_alignas] = ACTIONS(3955), + [anon_sym__Alignas] = ACTIONS(3955), + [sym_primitive_type] = ACTIONS(3955), + [anon_sym_enum] = ACTIONS(3955), + [anon_sym_struct] = ACTIONS(3955), + [anon_sym_union] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3953), + [anon_sym_STAR_EQ] = ACTIONS(3953), + [anon_sym_SLASH_EQ] = ACTIONS(3953), + [anon_sym_PERCENT_EQ] = ACTIONS(3953), + [anon_sym_PLUS_EQ] = ACTIONS(3953), + [anon_sym_DASH_EQ] = ACTIONS(3953), + [anon_sym_LT_LT_EQ] = ACTIONS(3953), + [anon_sym_GT_GT_EQ] = ACTIONS(3953), + [anon_sym_AMP_EQ] = ACTIONS(3953), + [anon_sym_CARET_EQ] = ACTIONS(3953), + [anon_sym_PIPE_EQ] = ACTIONS(3953), + [anon_sym_DASH_DASH] = ACTIONS(3953), + [anon_sym_PLUS_PLUS] = ACTIONS(3953), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3953), + [anon_sym_AT] = ACTIONS(3957), + [anon_sym_DQUOTE] = ACTIONS(3960), + [anon_sym_L_DQUOTE] = ACTIONS(3960), + [anon_sym_u_DQUOTE] = ACTIONS(3960), + [anon_sym_U_DQUOTE] = ACTIONS(3960), + [anon_sym_u8_DQUOTE] = ACTIONS(3960), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(3955), + [anon_sym___typeof] = ACTIONS(3955), + [anon_sym_typeof] = ACTIONS(3955), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3955), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3955), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3955), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3955), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3955), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3955), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3955), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3955), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3955), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3955), + [anon_sym_NS_AVAILABLE] = ACTIONS(3955), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3955), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3955), + [anon_sym_API_AVAILABLE] = ACTIONS(3955), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3955), + [anon_sym_API_DEPRECATED] = ACTIONS(3955), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3955), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3955), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3955), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3955), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3955), + [anon_sym___deprecated_msg] = ACTIONS(3955), + [anon_sym___deprecated_enum_msg] = ACTIONS(3955), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3955), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3955), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3955), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3955), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3955), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3955), + [anon_sym_BOOL] = ACTIONS(3955), + [anon_sym_IMP] = ACTIONS(3955), + [anon_sym_SEL] = ACTIONS(3955), + [anon_sym_Class] = ACTIONS(3955), + [anon_sym_id] = ACTIONS(3955), + }, + [1443] = { + [sym_string_literal] = STATE(1444), + [aux_sym_concatenated_string_repeat1] = STATE(1444), + [sym_identifier] = ACTIONS(3963), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3965), + [anon_sym_COMMA] = ACTIONS(3965), + [anon_sym_LPAREN2] = ACTIONS(3965), + [anon_sym_DASH] = ACTIONS(3967), + [anon_sym_PLUS] = ACTIONS(3967), + [anon_sym_STAR] = ACTIONS(3967), + [anon_sym_SLASH] = ACTIONS(3967), + [anon_sym_PERCENT] = ACTIONS(3967), + [anon_sym_PIPE_PIPE] = ACTIONS(3965), + [anon_sym_AMP_AMP] = ACTIONS(3965), + [anon_sym_PIPE] = ACTIONS(3967), + [anon_sym_CARET] = ACTIONS(3967), + [anon_sym_AMP] = ACTIONS(3967), + [anon_sym_EQ_EQ] = ACTIONS(3965), + [anon_sym_BANG_EQ] = ACTIONS(3965), + [anon_sym_GT] = ACTIONS(3967), + [anon_sym_GT_EQ] = ACTIONS(3965), + [anon_sym_LT_EQ] = ACTIONS(3965), + [anon_sym_LT] = ACTIONS(3967), + [anon_sym_LT_LT] = ACTIONS(3967), + [anon_sym_GT_GT] = ACTIONS(3967), + [anon_sym_SEMI] = ACTIONS(3965), + [anon_sym___extension__] = ACTIONS(3967), + [anon_sym_extern] = ACTIONS(3967), + [anon_sym___attribute__] = ACTIONS(3967), + [anon_sym___attribute] = ACTIONS(3967), + [anon_sym_noreturn] = ACTIONS(3967), + [anon_sym_LBRACK] = ACTIONS(3965), + [anon_sym___declspec] = ACTIONS(3967), + [anon_sym_LBRACE] = ACTIONS(3965), + [anon_sym_signed] = ACTIONS(3967), + [anon_sym_unsigned] = ACTIONS(3967), + [anon_sym_long] = ACTIONS(3967), + [anon_sym_short] = ACTIONS(3967), + [anon_sym_static] = ACTIONS(3967), + [anon_sym_EQ] = ACTIONS(3967), + [anon_sym_ATautoreleasepool] = ACTIONS(3965), + [anon_sym_auto] = ACTIONS(3967), + [anon_sym_register] = ACTIONS(3967), + [anon_sym_inline] = ACTIONS(3967), + [anon_sym___inline] = ACTIONS(3967), + [anon_sym___inline__] = ACTIONS(3967), + [anon_sym___forceinline] = ACTIONS(3967), + [anon_sym_thread_local] = ACTIONS(3967), + [anon_sym___thread] = ACTIONS(3967), + [anon_sym_CG_EXTERN] = ACTIONS(3967), + [anon_sym_CG_INLINE] = ACTIONS(3967), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3967), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3967), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3967), + [anon_sym_IBOutlet] = ACTIONS(3967), + [anon_sym_IBInspectable] = ACTIONS(3967), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3967), + [anon_sym_NS_INLINE] = ACTIONS(3967), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3967), + [anon_sym_OBJC_EXPORT] = ACTIONS(3967), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3967), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3967), + [anon_sym_const] = ACTIONS(3967), + [anon_sym_constexpr] = ACTIONS(3967), + [anon_sym_volatile] = ACTIONS(3967), + [anon_sym_restrict] = ACTIONS(3967), + [anon_sym___restrict__] = ACTIONS(3967), + [anon_sym__Atomic] = ACTIONS(3967), + [anon_sym__Noreturn] = ACTIONS(3967), + [anon_sym__Nonnull] = ACTIONS(3967), + [anon_sym_nullable] = ACTIONS(3967), + [anon_sym__Complex] = ACTIONS(3967), + [anon_sym__Nullable] = ACTIONS(3967), + [anon_sym__Nullable_result] = ACTIONS(3967), + [anon_sym__Null_unspecified] = ACTIONS(3967), + [anon_sym___autoreleasing] = ACTIONS(3967), + [anon_sym___block] = ACTIONS(3967), + [anon_sym___bridge] = ACTIONS(3967), + [anon_sym___bridge_retained] = ACTIONS(3967), + [anon_sym___bridge_transfer] = ACTIONS(3967), + [anon_sym___complex] = ACTIONS(3967), + [anon_sym___const] = ACTIONS(3967), + [anon_sym___imag] = ACTIONS(3967), + [anon_sym___kindof] = ACTIONS(3967), + [anon_sym___nonnull] = ACTIONS(3967), + [anon_sym___nullable] = ACTIONS(3967), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3967), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3967), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3967), + [anon_sym___real] = ACTIONS(3967), + [anon_sym___strong] = ACTIONS(3967), + [anon_sym___unsafe_unretained] = ACTIONS(3967), + [anon_sym___unused] = ACTIONS(3967), + [anon_sym___weak] = ACTIONS(3967), + [anon_sym_alignas] = ACTIONS(3967), + [anon_sym__Alignas] = ACTIONS(3967), + [sym_primitive_type] = ACTIONS(3967), + [anon_sym_enum] = ACTIONS(3967), + [anon_sym_struct] = ACTIONS(3967), + [anon_sym_union] = ACTIONS(3967), + [anon_sym_QMARK] = ACTIONS(3965), + [anon_sym_STAR_EQ] = ACTIONS(3965), + [anon_sym_SLASH_EQ] = ACTIONS(3965), + [anon_sym_PERCENT_EQ] = ACTIONS(3965), + [anon_sym_PLUS_EQ] = ACTIONS(3965), + [anon_sym_DASH_EQ] = ACTIONS(3965), + [anon_sym_LT_LT_EQ] = ACTIONS(3965), + [anon_sym_GT_GT_EQ] = ACTIONS(3965), + [anon_sym_AMP_EQ] = ACTIONS(3965), + [anon_sym_CARET_EQ] = ACTIONS(3965), + [anon_sym_PIPE_EQ] = ACTIONS(3965), + [anon_sym_DASH_DASH] = ACTIONS(3965), + [anon_sym_PLUS_PLUS] = ACTIONS(3965), + [anon_sym_DOT] = ACTIONS(3967), + [anon_sym_DASH_GT] = ACTIONS(3965), + [anon_sym_AT] = ACTIONS(3969), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(3967), + [anon_sym___typeof] = ACTIONS(3967), + [anon_sym_typeof] = ACTIONS(3967), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3967), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3967), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3967), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3967), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3967), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3967), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3967), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3967), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3967), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3967), + [anon_sym_NS_AVAILABLE] = ACTIONS(3967), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3967), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3967), + [anon_sym_API_AVAILABLE] = ACTIONS(3967), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3967), + [anon_sym_API_DEPRECATED] = ACTIONS(3967), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3967), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3967), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3967), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3967), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3967), + [anon_sym___deprecated_msg] = ACTIONS(3967), + [anon_sym___deprecated_enum_msg] = ACTIONS(3967), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3967), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3967), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3967), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3967), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3967), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3967), + [anon_sym_BOOL] = ACTIONS(3967), + [anon_sym_IMP] = ACTIONS(3967), + [anon_sym_SEL] = ACTIONS(3967), + [anon_sym_Class] = ACTIONS(3967), + [anon_sym_id] = ACTIONS(3967), + }, + [1444] = { + [sym_string_literal] = STATE(1442), + [aux_sym_concatenated_string_repeat1] = STATE(1442), + [sym_identifier] = ACTIONS(3971), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3973), + [anon_sym_COMMA] = ACTIONS(3973), + [anon_sym_LPAREN2] = ACTIONS(3973), + [anon_sym_DASH] = ACTIONS(3975), + [anon_sym_PLUS] = ACTIONS(3975), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_SLASH] = ACTIONS(3975), + [anon_sym_PERCENT] = ACTIONS(3975), + [anon_sym_PIPE_PIPE] = ACTIONS(3973), + [anon_sym_AMP_AMP] = ACTIONS(3973), + [anon_sym_PIPE] = ACTIONS(3975), + [anon_sym_CARET] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3975), + [anon_sym_EQ_EQ] = ACTIONS(3973), + [anon_sym_BANG_EQ] = ACTIONS(3973), + [anon_sym_GT] = ACTIONS(3975), + [anon_sym_GT_EQ] = ACTIONS(3973), + [anon_sym_LT_EQ] = ACTIONS(3973), + [anon_sym_LT] = ACTIONS(3975), + [anon_sym_LT_LT] = ACTIONS(3975), + [anon_sym_GT_GT] = ACTIONS(3975), + [anon_sym_SEMI] = ACTIONS(3973), + [anon_sym___extension__] = ACTIONS(3975), + [anon_sym_extern] = ACTIONS(3975), + [anon_sym___attribute__] = ACTIONS(3975), + [anon_sym___attribute] = ACTIONS(3975), + [anon_sym_noreturn] = ACTIONS(3975), + [anon_sym_LBRACK] = ACTIONS(3973), + [anon_sym___declspec] = ACTIONS(3975), + [anon_sym_LBRACE] = ACTIONS(3973), + [anon_sym_signed] = ACTIONS(3975), + [anon_sym_unsigned] = ACTIONS(3975), + [anon_sym_long] = ACTIONS(3975), + [anon_sym_short] = ACTIONS(3975), + [anon_sym_static] = ACTIONS(3975), + [anon_sym_EQ] = ACTIONS(3975), + [anon_sym_ATautoreleasepool] = ACTIONS(3973), + [anon_sym_auto] = ACTIONS(3975), + [anon_sym_register] = ACTIONS(3975), + [anon_sym_inline] = ACTIONS(3975), + [anon_sym___inline] = ACTIONS(3975), + [anon_sym___inline__] = ACTIONS(3975), + [anon_sym___forceinline] = ACTIONS(3975), + [anon_sym_thread_local] = ACTIONS(3975), + [anon_sym___thread] = ACTIONS(3975), + [anon_sym_CG_EXTERN] = ACTIONS(3975), + [anon_sym_CG_INLINE] = ACTIONS(3975), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3975), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3975), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3975), + [anon_sym_IBOutlet] = ACTIONS(3975), + [anon_sym_IBInspectable] = ACTIONS(3975), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3975), + [anon_sym_NS_INLINE] = ACTIONS(3975), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3975), + [anon_sym_OBJC_EXPORT] = ACTIONS(3975), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3975), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3975), + [anon_sym_const] = ACTIONS(3975), + [anon_sym_constexpr] = ACTIONS(3975), + [anon_sym_volatile] = ACTIONS(3975), + [anon_sym_restrict] = ACTIONS(3975), + [anon_sym___restrict__] = ACTIONS(3975), + [anon_sym__Atomic] = ACTIONS(3975), + [anon_sym__Noreturn] = ACTIONS(3975), + [anon_sym__Nonnull] = ACTIONS(3975), + [anon_sym_nullable] = ACTIONS(3975), + [anon_sym__Complex] = ACTIONS(3975), + [anon_sym__Nullable] = ACTIONS(3975), + [anon_sym__Nullable_result] = ACTIONS(3975), + [anon_sym__Null_unspecified] = ACTIONS(3975), + [anon_sym___autoreleasing] = ACTIONS(3975), + [anon_sym___block] = ACTIONS(3975), + [anon_sym___bridge] = ACTIONS(3975), + [anon_sym___bridge_retained] = ACTIONS(3975), + [anon_sym___bridge_transfer] = ACTIONS(3975), + [anon_sym___complex] = ACTIONS(3975), + [anon_sym___const] = ACTIONS(3975), + [anon_sym___imag] = ACTIONS(3975), + [anon_sym___kindof] = ACTIONS(3975), + [anon_sym___nonnull] = ACTIONS(3975), + [anon_sym___nullable] = ACTIONS(3975), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3975), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3975), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3975), + [anon_sym___real] = ACTIONS(3975), + [anon_sym___strong] = ACTIONS(3975), + [anon_sym___unsafe_unretained] = ACTIONS(3975), + [anon_sym___unused] = ACTIONS(3975), + [anon_sym___weak] = ACTIONS(3975), + [anon_sym_alignas] = ACTIONS(3975), + [anon_sym__Alignas] = ACTIONS(3975), + [sym_primitive_type] = ACTIONS(3975), + [anon_sym_enum] = ACTIONS(3975), + [anon_sym_struct] = ACTIONS(3975), + [anon_sym_union] = ACTIONS(3975), + [anon_sym_QMARK] = ACTIONS(3973), + [anon_sym_STAR_EQ] = ACTIONS(3973), + [anon_sym_SLASH_EQ] = ACTIONS(3973), + [anon_sym_PERCENT_EQ] = ACTIONS(3973), + [anon_sym_PLUS_EQ] = ACTIONS(3973), + [anon_sym_DASH_EQ] = ACTIONS(3973), + [anon_sym_LT_LT_EQ] = ACTIONS(3973), + [anon_sym_GT_GT_EQ] = ACTIONS(3973), + [anon_sym_AMP_EQ] = ACTIONS(3973), + [anon_sym_CARET_EQ] = ACTIONS(3973), + [anon_sym_PIPE_EQ] = ACTIONS(3973), + [anon_sym_DASH_DASH] = ACTIONS(3973), + [anon_sym_PLUS_PLUS] = ACTIONS(3973), + [anon_sym_DOT] = ACTIONS(3975), + [anon_sym_DASH_GT] = ACTIONS(3973), + [anon_sym_AT] = ACTIONS(3969), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(3975), + [anon_sym___typeof] = ACTIONS(3975), + [anon_sym_typeof] = ACTIONS(3975), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3975), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3975), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3975), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3975), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3975), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3975), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3975), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3975), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3975), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3975), + [anon_sym_NS_AVAILABLE] = ACTIONS(3975), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3975), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3975), + [anon_sym_API_AVAILABLE] = ACTIONS(3975), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3975), + [anon_sym_API_DEPRECATED] = ACTIONS(3975), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3975), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3975), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3975), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3975), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3975), + [anon_sym___deprecated_msg] = ACTIONS(3975), + [anon_sym___deprecated_enum_msg] = ACTIONS(3975), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3975), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3975), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3975), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3975), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3975), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3975), + [anon_sym_BOOL] = ACTIONS(3975), + [anon_sym_IMP] = ACTIONS(3975), + [anon_sym_SEL] = ACTIONS(3975), + [anon_sym_Class] = ACTIONS(3975), + [anon_sym_id] = ACTIONS(3975), + }, + [1445] = { + [sym_string_literal] = STATE(1443), + [sym_identifier] = ACTIONS(3977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3979), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_LPAREN2] = ACTIONS(3979), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_STAR] = ACTIONS(3977), + [anon_sym_SLASH] = ACTIONS(3977), + [anon_sym_PERCENT] = ACTIONS(3977), + [anon_sym_PIPE_PIPE] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3979), + [anon_sym_PIPE] = ACTIONS(3977), + [anon_sym_CARET] = ACTIONS(3977), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_EQ_EQ] = ACTIONS(3979), + [anon_sym_BANG_EQ] = ACTIONS(3979), + [anon_sym_GT] = ACTIONS(3977), + [anon_sym_GT_EQ] = ACTIONS(3979), + [anon_sym_LT_EQ] = ACTIONS(3979), + [anon_sym_LT] = ACTIONS(3977), + [anon_sym_LT_LT] = ACTIONS(3977), + [anon_sym_GT_GT] = ACTIONS(3977), + [anon_sym_SEMI] = ACTIONS(3979), + [anon_sym___extension__] = ACTIONS(3977), + [anon_sym_extern] = ACTIONS(3977), + [anon_sym___attribute__] = ACTIONS(3977), + [anon_sym___attribute] = ACTIONS(3977), + [anon_sym_noreturn] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3979), + [anon_sym___declspec] = ACTIONS(3977), + [anon_sym_LBRACE] = ACTIONS(3979), + [anon_sym_signed] = ACTIONS(3977), + [anon_sym_unsigned] = ACTIONS(3977), + [anon_sym_long] = ACTIONS(3977), + [anon_sym_short] = ACTIONS(3977), + [anon_sym_static] = ACTIONS(3977), + [anon_sym_EQ] = ACTIONS(3977), + [anon_sym_ATautoreleasepool] = ACTIONS(3979), + [anon_sym_auto] = ACTIONS(3977), + [anon_sym_register] = ACTIONS(3977), + [anon_sym_inline] = ACTIONS(3977), + [anon_sym___inline] = ACTIONS(3977), + [anon_sym___inline__] = ACTIONS(3977), + [anon_sym___forceinline] = ACTIONS(3977), + [anon_sym_thread_local] = ACTIONS(3977), + [anon_sym___thread] = ACTIONS(3977), + [anon_sym_CG_EXTERN] = ACTIONS(3977), + [anon_sym_CG_INLINE] = ACTIONS(3977), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3977), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3977), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3977), + [anon_sym_IBOutlet] = ACTIONS(3977), + [anon_sym_IBInspectable] = ACTIONS(3977), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3977), + [anon_sym_NS_INLINE] = ACTIONS(3977), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3977), + [anon_sym_OBJC_EXPORT] = ACTIONS(3977), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3977), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(3977), + [anon_sym_constexpr] = ACTIONS(3977), + [anon_sym_volatile] = ACTIONS(3977), + [anon_sym_restrict] = ACTIONS(3977), + [anon_sym___restrict__] = ACTIONS(3977), + [anon_sym__Atomic] = ACTIONS(3977), + [anon_sym__Noreturn] = ACTIONS(3977), + [anon_sym__Nonnull] = ACTIONS(3977), + [anon_sym_nullable] = ACTIONS(3977), + [anon_sym__Complex] = ACTIONS(3977), + [anon_sym__Nullable] = ACTIONS(3977), + [anon_sym__Nullable_result] = ACTIONS(3977), + [anon_sym__Null_unspecified] = ACTIONS(3977), + [anon_sym___autoreleasing] = ACTIONS(3977), + [anon_sym___block] = ACTIONS(3977), + [anon_sym___bridge] = ACTIONS(3977), + [anon_sym___bridge_retained] = ACTIONS(3977), + [anon_sym___bridge_transfer] = ACTIONS(3977), + [anon_sym___complex] = ACTIONS(3977), + [anon_sym___const] = ACTIONS(3977), + [anon_sym___imag] = ACTIONS(3977), + [anon_sym___kindof] = ACTIONS(3977), + [anon_sym___nonnull] = ACTIONS(3977), + [anon_sym___nullable] = ACTIONS(3977), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3977), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3977), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3977), + [anon_sym___real] = ACTIONS(3977), + [anon_sym___strong] = ACTIONS(3977), + [anon_sym___unsafe_unretained] = ACTIONS(3977), + [anon_sym___unused] = ACTIONS(3977), + [anon_sym___weak] = ACTIONS(3977), + [anon_sym_alignas] = ACTIONS(3977), + [anon_sym__Alignas] = ACTIONS(3977), + [sym_primitive_type] = ACTIONS(3977), + [anon_sym_enum] = ACTIONS(3977), + [anon_sym_struct] = ACTIONS(3977), + [anon_sym_union] = ACTIONS(3977), + [anon_sym_QMARK] = ACTIONS(3979), + [anon_sym_STAR_EQ] = ACTIONS(3979), + [anon_sym_SLASH_EQ] = ACTIONS(3979), + [anon_sym_PERCENT_EQ] = ACTIONS(3979), + [anon_sym_PLUS_EQ] = ACTIONS(3979), + [anon_sym_DASH_EQ] = ACTIONS(3979), + [anon_sym_LT_LT_EQ] = ACTIONS(3979), + [anon_sym_GT_GT_EQ] = ACTIONS(3979), + [anon_sym_AMP_EQ] = ACTIONS(3979), + [anon_sym_CARET_EQ] = ACTIONS(3979), + [anon_sym_PIPE_EQ] = ACTIONS(3979), + [anon_sym_DASH_DASH] = ACTIONS(3979), + [anon_sym_PLUS_PLUS] = ACTIONS(3979), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_DASH_GT] = ACTIONS(3979), + [anon_sym_AT] = ACTIONS(3969), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(3977), + [anon_sym___typeof] = ACTIONS(3977), + [anon_sym_typeof] = ACTIONS(3977), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3977), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3977), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3977), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3977), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3977), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3977), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3977), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3977), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3977), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3977), + [anon_sym_NS_AVAILABLE] = ACTIONS(3977), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3977), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3977), + [anon_sym_API_AVAILABLE] = ACTIONS(3977), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3977), + [anon_sym_API_DEPRECATED] = ACTIONS(3977), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3977), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3977), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3977), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3977), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3977), + [anon_sym___deprecated_msg] = ACTIONS(3977), + [anon_sym___deprecated_enum_msg] = ACTIONS(3977), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3977), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3977), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3977), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3977), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3977), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3977), + [anon_sym_BOOL] = ACTIONS(3977), + [anon_sym_IMP] = ACTIONS(3977), + [anon_sym_SEL] = ACTIONS(3977), + [anon_sym_Class] = ACTIONS(3977), + [anon_sym_id] = ACTIONS(3977), + }, + [1446] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(3981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3983), + [anon_sym_COMMA] = ACTIONS(3983), + [anon_sym_RPAREN] = ACTIONS(3983), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3983), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3983), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(3981), + [anon_sym_PLUS] = ACTIONS(3981), + [anon_sym_STAR] = ACTIONS(3981), + [anon_sym_SLASH] = ACTIONS(3981), + [anon_sym_PERCENT] = ACTIONS(3981), + [anon_sym_PIPE_PIPE] = ACTIONS(3983), + [anon_sym_AMP_AMP] = ACTIONS(3983), + [anon_sym_PIPE] = ACTIONS(3981), + [anon_sym_CARET] = ACTIONS(3981), + [anon_sym_AMP] = ACTIONS(3981), + [anon_sym_EQ_EQ] = ACTIONS(3983), + [anon_sym_BANG_EQ] = ACTIONS(3983), + [anon_sym_GT] = ACTIONS(3981), + [anon_sym_GT_EQ] = ACTIONS(3983), + [anon_sym_LT_EQ] = ACTIONS(3983), + [anon_sym_LT] = ACTIONS(3981), + [anon_sym_LT_LT] = ACTIONS(3981), + [anon_sym_GT_GT] = ACTIONS(3981), + [anon_sym_SEMI] = ACTIONS(3983), + [anon_sym___extension__] = ACTIONS(3981), + [anon_sym_extern] = ACTIONS(3981), + [anon_sym___attribute__] = ACTIONS(3981), + [anon_sym___attribute] = ACTIONS(3981), + [anon_sym_noreturn] = ACTIONS(3981), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym_RBRACK] = ACTIONS(3983), + [anon_sym___declspec] = ACTIONS(3981), + [anon_sym_LBRACE] = ACTIONS(3983), + [anon_sym_RBRACE] = ACTIONS(3983), + [anon_sym_signed] = ACTIONS(3981), + [anon_sym_unsigned] = ACTIONS(3981), + [anon_sym_long] = ACTIONS(3981), + [anon_sym_short] = ACTIONS(3981), + [anon_sym_static] = ACTIONS(3981), + [anon_sym_EQ] = ACTIONS(3981), + [anon_sym_ATautoreleasepool] = ACTIONS(3983), + [anon_sym_auto] = ACTIONS(3981), + [anon_sym_register] = ACTIONS(3981), + [anon_sym_inline] = ACTIONS(3981), + [anon_sym___inline] = ACTIONS(3981), + [anon_sym___inline__] = ACTIONS(3981), + [anon_sym___forceinline] = ACTIONS(3981), + [anon_sym_thread_local] = ACTIONS(3981), + [anon_sym___thread] = ACTIONS(3981), + [anon_sym_CG_EXTERN] = ACTIONS(3981), + [anon_sym_CG_INLINE] = ACTIONS(3981), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3981), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3981), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3981), + [anon_sym_IBOutlet] = ACTIONS(3981), + [anon_sym_IBInspectable] = ACTIONS(3981), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3981), + [anon_sym_NS_INLINE] = ACTIONS(3981), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3981), + [anon_sym_OBJC_EXPORT] = ACTIONS(3981), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3981), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3981), + [anon_sym_const] = ACTIONS(3981), + [anon_sym_constexpr] = ACTIONS(3981), + [anon_sym_volatile] = ACTIONS(3981), + [anon_sym_restrict] = ACTIONS(3981), + [anon_sym___restrict__] = ACTIONS(3981), + [anon_sym__Atomic] = ACTIONS(3981), + [anon_sym__Noreturn] = ACTIONS(3981), + [anon_sym__Nonnull] = ACTIONS(3981), + [anon_sym_nullable] = ACTIONS(3981), + [anon_sym__Complex] = ACTIONS(3981), + [anon_sym__Nullable] = ACTIONS(3981), + [anon_sym__Nullable_result] = ACTIONS(3981), + [anon_sym__Null_unspecified] = ACTIONS(3981), + [anon_sym___autoreleasing] = ACTIONS(3981), + [anon_sym___block] = ACTIONS(3981), + [anon_sym___bridge] = ACTIONS(3981), + [anon_sym___bridge_retained] = ACTIONS(3981), + [anon_sym___bridge_transfer] = ACTIONS(3981), + [anon_sym___complex] = ACTIONS(3981), + [anon_sym___const] = ACTIONS(3981), + [anon_sym___imag] = ACTIONS(3981), + [anon_sym___kindof] = ACTIONS(3981), + [anon_sym___nonnull] = ACTIONS(3981), + [anon_sym___nullable] = ACTIONS(3981), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3981), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3981), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3981), + [anon_sym___real] = ACTIONS(3981), + [anon_sym___strong] = ACTIONS(3981), + [anon_sym___unsafe_unretained] = ACTIONS(3981), + [anon_sym___unused] = ACTIONS(3981), + [anon_sym___weak] = ACTIONS(3981), + [anon_sym_alignas] = ACTIONS(3981), + [anon_sym__Alignas] = ACTIONS(3981), + [sym_primitive_type] = ACTIONS(3981), + [anon_sym_enum] = ACTIONS(3981), + [anon_sym_COLON] = ACTIONS(3983), + [anon_sym_struct] = ACTIONS(3981), + [anon_sym_union] = ACTIONS(3981), + [anon_sym_QMARK] = ACTIONS(3983), + [anon_sym_STAR_EQ] = ACTIONS(3983), + [anon_sym_SLASH_EQ] = ACTIONS(3983), + [anon_sym_PERCENT_EQ] = ACTIONS(3983), + [anon_sym_PLUS_EQ] = ACTIONS(3983), + [anon_sym_DASH_EQ] = ACTIONS(3983), + [anon_sym_LT_LT_EQ] = ACTIONS(3983), + [anon_sym_GT_GT_EQ] = ACTIONS(3983), + [anon_sym_AMP_EQ] = ACTIONS(3983), + [anon_sym_CARET_EQ] = ACTIONS(3983), + [anon_sym_PIPE_EQ] = ACTIONS(3983), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(3981), + [anon_sym___typeof] = ACTIONS(3981), + [anon_sym_typeof] = ACTIONS(3981), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3981), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3981), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3981), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3981), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3981), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3981), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3981), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3981), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3981), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3981), + [anon_sym_NS_AVAILABLE] = ACTIONS(3981), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3981), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3981), + [anon_sym_API_AVAILABLE] = ACTIONS(3981), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3981), + [anon_sym_API_DEPRECATED] = ACTIONS(3981), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3981), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3981), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3981), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3981), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3981), + [anon_sym___deprecated_msg] = ACTIONS(3981), + [anon_sym___deprecated_enum_msg] = ACTIONS(3981), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3981), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3981), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3981), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3981), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3981), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3981), + [anon_sym_BOOL] = ACTIONS(3981), + [anon_sym_IMP] = ACTIONS(3981), + [anon_sym_SEL] = ACTIONS(3981), + [anon_sym_Class] = ACTIONS(3981), + [anon_sym_id] = ACTIONS(3981), + }, + [1447] = { + [sym_string_literal] = STATE(1443), + [sym_identifier] = ACTIONS(3995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(3997), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(3995), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(3995), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(3995), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym___extension__] = ACTIONS(3995), + [anon_sym_extern] = ACTIONS(3995), + [anon_sym___attribute__] = ACTIONS(3995), + [anon_sym___attribute] = ACTIONS(3995), + [anon_sym_noreturn] = ACTIONS(3995), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym___declspec] = ACTIONS(3995), + [anon_sym_LBRACE] = ACTIONS(3997), + [anon_sym_signed] = ACTIONS(3995), + [anon_sym_unsigned] = ACTIONS(3995), + [anon_sym_long] = ACTIONS(3995), + [anon_sym_short] = ACTIONS(3995), + [anon_sym_static] = ACTIONS(3995), + [anon_sym_EQ] = ACTIONS(3995), + [anon_sym_ATautoreleasepool] = ACTIONS(3997), + [anon_sym_auto] = ACTIONS(3995), + [anon_sym_register] = ACTIONS(3995), + [anon_sym_inline] = ACTIONS(3995), + [anon_sym___inline] = ACTIONS(3995), + [anon_sym___inline__] = ACTIONS(3995), + [anon_sym___forceinline] = ACTIONS(3995), + [anon_sym_thread_local] = ACTIONS(3995), + [anon_sym___thread] = ACTIONS(3995), + [anon_sym_CG_EXTERN] = ACTIONS(3995), + [anon_sym_CG_INLINE] = ACTIONS(3995), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3995), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3995), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3995), + [anon_sym_IBOutlet] = ACTIONS(3995), + [anon_sym_IBInspectable] = ACTIONS(3995), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3995), + [anon_sym_NS_INLINE] = ACTIONS(3995), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3995), + [anon_sym_OBJC_EXPORT] = ACTIONS(3995), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3995), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3995), + [anon_sym_const] = ACTIONS(3995), + [anon_sym_constexpr] = ACTIONS(3995), + [anon_sym_volatile] = ACTIONS(3995), + [anon_sym_restrict] = ACTIONS(3995), + [anon_sym___restrict__] = ACTIONS(3995), + [anon_sym__Atomic] = ACTIONS(3995), + [anon_sym__Noreturn] = ACTIONS(3995), + [anon_sym__Nonnull] = ACTIONS(3995), + [anon_sym_nullable] = ACTIONS(3995), + [anon_sym__Complex] = ACTIONS(3995), + [anon_sym__Nullable] = ACTIONS(3995), + [anon_sym__Nullable_result] = ACTIONS(3995), + [anon_sym__Null_unspecified] = ACTIONS(3995), + [anon_sym___autoreleasing] = ACTIONS(3995), + [anon_sym___block] = ACTIONS(3995), + [anon_sym___bridge] = ACTIONS(3995), + [anon_sym___bridge_retained] = ACTIONS(3995), + [anon_sym___bridge_transfer] = ACTIONS(3995), + [anon_sym___complex] = ACTIONS(3995), + [anon_sym___const] = ACTIONS(3995), + [anon_sym___imag] = ACTIONS(3995), + [anon_sym___kindof] = ACTIONS(3995), + [anon_sym___nonnull] = ACTIONS(3995), + [anon_sym___nullable] = ACTIONS(3995), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3995), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3995), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3995), + [anon_sym___real] = ACTIONS(3995), + [anon_sym___strong] = ACTIONS(3995), + [anon_sym___unsafe_unretained] = ACTIONS(3995), + [anon_sym___unused] = ACTIONS(3995), + [anon_sym___weak] = ACTIONS(3995), + [anon_sym_alignas] = ACTIONS(3995), + [anon_sym__Alignas] = ACTIONS(3995), + [sym_primitive_type] = ACTIONS(3995), + [anon_sym_enum] = ACTIONS(3995), + [anon_sym_struct] = ACTIONS(3995), + [anon_sym_union] = ACTIONS(3995), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(3997), + [anon_sym_SLASH_EQ] = ACTIONS(3997), + [anon_sym_PERCENT_EQ] = ACTIONS(3997), + [anon_sym_PLUS_EQ] = ACTIONS(3997), + [anon_sym_DASH_EQ] = ACTIONS(3997), + [anon_sym_LT_LT_EQ] = ACTIONS(3997), + [anon_sym_GT_GT_EQ] = ACTIONS(3997), + [anon_sym_AMP_EQ] = ACTIONS(3997), + [anon_sym_CARET_EQ] = ACTIONS(3997), + [anon_sym_PIPE_EQ] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(3969), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(3995), + [anon_sym___typeof] = ACTIONS(3995), + [anon_sym_typeof] = ACTIONS(3995), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3995), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3995), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3995), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3995), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3995), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3995), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3995), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3995), + [anon_sym_NS_AVAILABLE] = ACTIONS(3995), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3995), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_API_AVAILABLE] = ACTIONS(3995), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_API_DEPRECATED] = ACTIONS(3995), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3995), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3995), + [anon_sym___deprecated_msg] = ACTIONS(3995), + [anon_sym___deprecated_enum_msg] = ACTIONS(3995), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3995), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3995), + [anon_sym_BOOL] = ACTIONS(3995), + [anon_sym_IMP] = ACTIONS(3995), + [anon_sym_SEL] = ACTIONS(3995), + [anon_sym_Class] = ACTIONS(3995), + [anon_sym_id] = ACTIONS(3995), + }, + [1448] = { + [sym_string_literal] = STATE(1597), + [sym_identifier] = ACTIONS(3995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(3997), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(3995), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(3995), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(3995), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym___extension__] = ACTIONS(3995), + [anon_sym_extern] = ACTIONS(3995), + [anon_sym___attribute__] = ACTIONS(3995), + [anon_sym___attribute] = ACTIONS(3995), + [anon_sym_noreturn] = ACTIONS(3995), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym___declspec] = ACTIONS(3995), + [anon_sym_LBRACE] = ACTIONS(3997), + [anon_sym_signed] = ACTIONS(3995), + [anon_sym_unsigned] = ACTIONS(3995), + [anon_sym_long] = ACTIONS(3995), + [anon_sym_short] = ACTIONS(3995), + [anon_sym_static] = ACTIONS(3995), + [anon_sym_EQ] = ACTIONS(3999), + [anon_sym_ATautoreleasepool] = ACTIONS(3997), + [anon_sym_auto] = ACTIONS(3995), + [anon_sym_register] = ACTIONS(3995), + [anon_sym_inline] = ACTIONS(3995), + [anon_sym___inline] = ACTIONS(3995), + [anon_sym___inline__] = ACTIONS(3995), + [anon_sym___forceinline] = ACTIONS(3995), + [anon_sym_thread_local] = ACTIONS(3995), + [anon_sym___thread] = ACTIONS(3995), + [anon_sym_CG_EXTERN] = ACTIONS(3995), + [anon_sym_CG_INLINE] = ACTIONS(3995), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3995), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3995), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3995), + [anon_sym_IBOutlet] = ACTIONS(3995), + [anon_sym_IBInspectable] = ACTIONS(3995), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3995), + [anon_sym_NS_INLINE] = ACTIONS(3995), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3995), + [anon_sym_OBJC_EXPORT] = ACTIONS(3995), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3995), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3995), + [anon_sym_const] = ACTIONS(3995), + [anon_sym_constexpr] = ACTIONS(3995), + [anon_sym_volatile] = ACTIONS(3995), + [anon_sym_restrict] = ACTIONS(3995), + [anon_sym___restrict__] = ACTIONS(3995), + [anon_sym__Atomic] = ACTIONS(3995), + [anon_sym__Noreturn] = ACTIONS(3995), + [anon_sym__Nonnull] = ACTIONS(3995), + [anon_sym_nullable] = ACTIONS(3995), + [anon_sym__Complex] = ACTIONS(3995), + [anon_sym__Nullable] = ACTIONS(3995), + [anon_sym__Nullable_result] = ACTIONS(3995), + [anon_sym__Null_unspecified] = ACTIONS(3995), + [anon_sym___autoreleasing] = ACTIONS(3995), + [anon_sym___block] = ACTIONS(3995), + [anon_sym___bridge] = ACTIONS(3995), + [anon_sym___bridge_retained] = ACTIONS(3995), + [anon_sym___bridge_transfer] = ACTIONS(3995), + [anon_sym___complex] = ACTIONS(3995), + [anon_sym___const] = ACTIONS(3995), + [anon_sym___imag] = ACTIONS(3995), + [anon_sym___kindof] = ACTIONS(3995), + [anon_sym___nonnull] = ACTIONS(3995), + [anon_sym___nullable] = ACTIONS(3995), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3995), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3995), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3995), + [anon_sym___real] = ACTIONS(3995), + [anon_sym___strong] = ACTIONS(3995), + [anon_sym___unsafe_unretained] = ACTIONS(3995), + [anon_sym___unused] = ACTIONS(3995), + [anon_sym___weak] = ACTIONS(3995), + [anon_sym_alignas] = ACTIONS(3995), + [anon_sym__Alignas] = ACTIONS(3995), + [sym_primitive_type] = ACTIONS(3995), + [anon_sym_enum] = ACTIONS(3995), + [anon_sym_struct] = ACTIONS(3995), + [anon_sym_union] = ACTIONS(3995), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4001), + [anon_sym_SLASH_EQ] = ACTIONS(4001), + [anon_sym_PERCENT_EQ] = ACTIONS(4001), + [anon_sym_PLUS_EQ] = ACTIONS(4001), + [anon_sym_DASH_EQ] = ACTIONS(4001), + [anon_sym_LT_LT_EQ] = ACTIONS(4001), + [anon_sym_GT_GT_EQ] = ACTIONS(4001), + [anon_sym_AMP_EQ] = ACTIONS(4001), + [anon_sym_CARET_EQ] = ACTIONS(4001), + [anon_sym_PIPE_EQ] = ACTIONS(4001), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(4003), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(3995), + [anon_sym___typeof] = ACTIONS(3995), + [anon_sym_typeof] = ACTIONS(3995), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3995), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3995), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3995), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3995), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3995), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3995), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3995), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3995), + [anon_sym_NS_AVAILABLE] = ACTIONS(3995), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3995), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_API_AVAILABLE] = ACTIONS(3995), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_API_DEPRECATED] = ACTIONS(3995), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3995), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3995), + [anon_sym___deprecated_msg] = ACTIONS(3995), + [anon_sym___deprecated_enum_msg] = ACTIONS(3995), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3995), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3995), + [anon_sym_BOOL] = ACTIONS(3995), + [anon_sym_IMP] = ACTIONS(3995), + [anon_sym_SEL] = ACTIONS(3995), + [anon_sym_Class] = ACTIONS(3995), + [anon_sym_id] = ACTIONS(3995), + }, + [1449] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4007), + [anon_sym_COMMA] = ACTIONS(4007), + [anon_sym_RPAREN] = ACTIONS(4007), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4007), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4007), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4005), + [anon_sym_PLUS] = ACTIONS(4005), + [anon_sym_STAR] = ACTIONS(4005), + [anon_sym_SLASH] = ACTIONS(4005), + [anon_sym_PERCENT] = ACTIONS(4005), + [anon_sym_PIPE_PIPE] = ACTIONS(4007), + [anon_sym_AMP_AMP] = ACTIONS(4007), + [anon_sym_PIPE] = ACTIONS(4005), + [anon_sym_CARET] = ACTIONS(4005), + [anon_sym_AMP] = ACTIONS(4005), + [anon_sym_EQ_EQ] = ACTIONS(4007), + [anon_sym_BANG_EQ] = ACTIONS(4007), + [anon_sym_GT] = ACTIONS(4005), + [anon_sym_GT_EQ] = ACTIONS(4007), + [anon_sym_LT_EQ] = ACTIONS(4007), + [anon_sym_LT] = ACTIONS(4005), + [anon_sym_LT_LT] = ACTIONS(4005), + [anon_sym_GT_GT] = ACTIONS(4005), + [anon_sym_SEMI] = ACTIONS(4007), + [anon_sym___extension__] = ACTIONS(4005), + [anon_sym_extern] = ACTIONS(4005), + [anon_sym___attribute__] = ACTIONS(4005), + [anon_sym___attribute] = ACTIONS(4005), + [anon_sym_noreturn] = ACTIONS(4005), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym_RBRACK] = ACTIONS(4007), + [anon_sym___declspec] = ACTIONS(4005), + [anon_sym_LBRACE] = ACTIONS(4007), + [anon_sym_RBRACE] = ACTIONS(4007), + [anon_sym_signed] = ACTIONS(4005), + [anon_sym_unsigned] = ACTIONS(4005), + [anon_sym_long] = ACTIONS(4005), + [anon_sym_short] = ACTIONS(4005), + [anon_sym_static] = ACTIONS(4005), + [anon_sym_EQ] = ACTIONS(4005), + [anon_sym_ATautoreleasepool] = ACTIONS(4007), + [anon_sym_auto] = ACTIONS(4005), + [anon_sym_register] = ACTIONS(4005), + [anon_sym_inline] = ACTIONS(4005), + [anon_sym___inline] = ACTIONS(4005), + [anon_sym___inline__] = ACTIONS(4005), + [anon_sym___forceinline] = ACTIONS(4005), + [anon_sym_thread_local] = ACTIONS(4005), + [anon_sym___thread] = ACTIONS(4005), + [anon_sym_CG_EXTERN] = ACTIONS(4005), + [anon_sym_CG_INLINE] = ACTIONS(4005), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4005), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4005), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4005), + [anon_sym_IBOutlet] = ACTIONS(4005), + [anon_sym_IBInspectable] = ACTIONS(4005), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4005), + [anon_sym_NS_INLINE] = ACTIONS(4005), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4005), + [anon_sym_OBJC_EXPORT] = ACTIONS(4005), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4005), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4005), + [anon_sym_const] = ACTIONS(4005), + [anon_sym_constexpr] = ACTIONS(4005), + [anon_sym_volatile] = ACTIONS(4005), + [anon_sym_restrict] = ACTIONS(4005), + [anon_sym___restrict__] = ACTIONS(4005), + [anon_sym__Atomic] = ACTIONS(4005), + [anon_sym__Noreturn] = ACTIONS(4005), + [anon_sym__Nonnull] = ACTIONS(4005), + [anon_sym_nullable] = ACTIONS(4005), + [anon_sym__Complex] = ACTIONS(4005), + [anon_sym__Nullable] = ACTIONS(4005), + [anon_sym__Nullable_result] = ACTIONS(4005), + [anon_sym__Null_unspecified] = ACTIONS(4005), + [anon_sym___autoreleasing] = ACTIONS(4005), + [anon_sym___block] = ACTIONS(4005), + [anon_sym___bridge] = ACTIONS(4005), + [anon_sym___bridge_retained] = ACTIONS(4005), + [anon_sym___bridge_transfer] = ACTIONS(4005), + [anon_sym___complex] = ACTIONS(4005), + [anon_sym___const] = ACTIONS(4005), + [anon_sym___imag] = ACTIONS(4005), + [anon_sym___kindof] = ACTIONS(4005), + [anon_sym___nonnull] = ACTIONS(4005), + [anon_sym___nullable] = ACTIONS(4005), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4005), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4005), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4005), + [anon_sym___real] = ACTIONS(4005), + [anon_sym___strong] = ACTIONS(4005), + [anon_sym___unsafe_unretained] = ACTIONS(4005), + [anon_sym___unused] = ACTIONS(4005), + [anon_sym___weak] = ACTIONS(4005), + [anon_sym_alignas] = ACTIONS(4005), + [anon_sym__Alignas] = ACTIONS(4005), + [sym_primitive_type] = ACTIONS(4005), + [anon_sym_enum] = ACTIONS(4005), + [anon_sym_COLON] = ACTIONS(4007), + [anon_sym_struct] = ACTIONS(4005), + [anon_sym_union] = ACTIONS(4005), + [anon_sym_QMARK] = ACTIONS(4007), + [anon_sym_STAR_EQ] = ACTIONS(4007), + [anon_sym_SLASH_EQ] = ACTIONS(4007), + [anon_sym_PERCENT_EQ] = ACTIONS(4007), + [anon_sym_PLUS_EQ] = ACTIONS(4007), + [anon_sym_DASH_EQ] = ACTIONS(4007), + [anon_sym_LT_LT_EQ] = ACTIONS(4007), + [anon_sym_GT_GT_EQ] = ACTIONS(4007), + [anon_sym_AMP_EQ] = ACTIONS(4007), + [anon_sym_CARET_EQ] = ACTIONS(4007), + [anon_sym_PIPE_EQ] = ACTIONS(4007), + [anon_sym_DASH_DASH] = ACTIONS(4007), + [anon_sym_PLUS_PLUS] = ACTIONS(4007), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4005), + [anon_sym___typeof] = ACTIONS(4005), + [anon_sym_typeof] = ACTIONS(4005), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4005), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4005), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4005), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4005), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4005), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4005), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4005), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4005), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4005), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4005), + [anon_sym_NS_AVAILABLE] = ACTIONS(4005), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4005), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4005), + [anon_sym_API_AVAILABLE] = ACTIONS(4005), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4005), + [anon_sym_API_DEPRECATED] = ACTIONS(4005), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4005), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4005), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4005), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4005), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4005), + [anon_sym___deprecated_msg] = ACTIONS(4005), + [anon_sym___deprecated_enum_msg] = ACTIONS(4005), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4005), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4005), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4005), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4005), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4005), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4005), + [anon_sym_BOOL] = ACTIONS(4005), + [anon_sym_IMP] = ACTIONS(4005), + [anon_sym_SEL] = ACTIONS(4005), + [anon_sym_Class] = ACTIONS(4005), + [anon_sym_id] = ACTIONS(4005), + }, + [1450] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4009), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4011), + [anon_sym_COMMA] = ACTIONS(4011), + [anon_sym_RPAREN] = ACTIONS(4011), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4011), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4011), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4009), + [anon_sym_STAR] = ACTIONS(4009), + [anon_sym_SLASH] = ACTIONS(4009), + [anon_sym_PERCENT] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4011), + [anon_sym_AMP_AMP] = ACTIONS(4011), + [anon_sym_PIPE] = ACTIONS(4009), + [anon_sym_CARET] = ACTIONS(4009), + [anon_sym_AMP] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4011), + [anon_sym_BANG_EQ] = ACTIONS(4011), + [anon_sym_GT] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4011), + [anon_sym_LT_EQ] = ACTIONS(4011), + [anon_sym_LT] = ACTIONS(4009), + [anon_sym_LT_LT] = ACTIONS(4009), + [anon_sym_GT_GT] = ACTIONS(4009), + [anon_sym_SEMI] = ACTIONS(4011), + [anon_sym___extension__] = ACTIONS(4009), + [anon_sym_extern] = ACTIONS(4009), + [anon_sym___attribute__] = ACTIONS(4009), + [anon_sym___attribute] = ACTIONS(4009), + [anon_sym_noreturn] = ACTIONS(4009), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym_RBRACK] = ACTIONS(4011), + [anon_sym___declspec] = ACTIONS(4009), + [anon_sym_LBRACE] = ACTIONS(4011), + [anon_sym_RBRACE] = ACTIONS(4011), + [anon_sym_signed] = ACTIONS(4009), + [anon_sym_unsigned] = ACTIONS(4009), + [anon_sym_long] = ACTIONS(4009), + [anon_sym_short] = ACTIONS(4009), + [anon_sym_static] = ACTIONS(4009), + [anon_sym_EQ] = ACTIONS(4009), + [anon_sym_ATautoreleasepool] = ACTIONS(4011), + [anon_sym_auto] = ACTIONS(4009), + [anon_sym_register] = ACTIONS(4009), + [anon_sym_inline] = ACTIONS(4009), + [anon_sym___inline] = ACTIONS(4009), + [anon_sym___inline__] = ACTIONS(4009), + [anon_sym___forceinline] = ACTIONS(4009), + [anon_sym_thread_local] = ACTIONS(4009), + [anon_sym___thread] = ACTIONS(4009), + [anon_sym_CG_EXTERN] = ACTIONS(4009), + [anon_sym_CG_INLINE] = ACTIONS(4009), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4009), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4009), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4009), + [anon_sym_IBOutlet] = ACTIONS(4009), + [anon_sym_IBInspectable] = ACTIONS(4009), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4009), + [anon_sym_NS_INLINE] = ACTIONS(4009), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4009), + [anon_sym_OBJC_EXPORT] = ACTIONS(4009), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4009), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4009), + [anon_sym_const] = ACTIONS(4009), + [anon_sym_constexpr] = ACTIONS(4009), + [anon_sym_volatile] = ACTIONS(4009), + [anon_sym_restrict] = ACTIONS(4009), + [anon_sym___restrict__] = ACTIONS(4009), + [anon_sym__Atomic] = ACTIONS(4009), + [anon_sym__Noreturn] = ACTIONS(4009), + [anon_sym__Nonnull] = ACTIONS(4009), + [anon_sym_nullable] = ACTIONS(4009), + [anon_sym__Complex] = ACTIONS(4009), + [anon_sym__Nullable] = ACTIONS(4009), + [anon_sym__Nullable_result] = ACTIONS(4009), + [anon_sym__Null_unspecified] = ACTIONS(4009), + [anon_sym___autoreleasing] = ACTIONS(4009), + [anon_sym___block] = ACTIONS(4009), + [anon_sym___bridge] = ACTIONS(4009), + [anon_sym___bridge_retained] = ACTIONS(4009), + [anon_sym___bridge_transfer] = ACTIONS(4009), + [anon_sym___complex] = ACTIONS(4009), + [anon_sym___const] = ACTIONS(4009), + [anon_sym___imag] = ACTIONS(4009), + [anon_sym___kindof] = ACTIONS(4009), + [anon_sym___nonnull] = ACTIONS(4009), + [anon_sym___nullable] = ACTIONS(4009), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4009), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4009), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4009), + [anon_sym___real] = ACTIONS(4009), + [anon_sym___strong] = ACTIONS(4009), + [anon_sym___unsafe_unretained] = ACTIONS(4009), + [anon_sym___unused] = ACTIONS(4009), + [anon_sym___weak] = ACTIONS(4009), + [anon_sym_alignas] = ACTIONS(4009), + [anon_sym__Alignas] = ACTIONS(4009), + [sym_primitive_type] = ACTIONS(4009), + [anon_sym_enum] = ACTIONS(4009), + [anon_sym_COLON] = ACTIONS(4011), + [anon_sym_struct] = ACTIONS(4009), + [anon_sym_union] = ACTIONS(4009), + [anon_sym_QMARK] = ACTIONS(4011), + [anon_sym_STAR_EQ] = ACTIONS(4011), + [anon_sym_SLASH_EQ] = ACTIONS(4011), + [anon_sym_PERCENT_EQ] = ACTIONS(4011), + [anon_sym_PLUS_EQ] = ACTIONS(4011), + [anon_sym_DASH_EQ] = ACTIONS(4011), + [anon_sym_LT_LT_EQ] = ACTIONS(4011), + [anon_sym_GT_GT_EQ] = ACTIONS(4011), + [anon_sym_AMP_EQ] = ACTIONS(4011), + [anon_sym_CARET_EQ] = ACTIONS(4011), + [anon_sym_PIPE_EQ] = ACTIONS(4011), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4009), + [anon_sym___typeof] = ACTIONS(4009), + [anon_sym_typeof] = ACTIONS(4009), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4009), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4009), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4009), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4009), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4009), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4009), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4009), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4009), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4009), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4009), + [anon_sym_NS_AVAILABLE] = ACTIONS(4009), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4009), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4009), + [anon_sym_API_AVAILABLE] = ACTIONS(4009), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4009), + [anon_sym_API_DEPRECATED] = ACTIONS(4009), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4009), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4009), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4009), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4009), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4009), + [anon_sym___deprecated_msg] = ACTIONS(4009), + [anon_sym___deprecated_enum_msg] = ACTIONS(4009), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4009), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4009), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4009), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4009), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4009), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4009), + [anon_sym_BOOL] = ACTIONS(4009), + [anon_sym_IMP] = ACTIONS(4009), + [anon_sym_SEL] = ACTIONS(4009), + [anon_sym_Class] = ACTIONS(4009), + [anon_sym_id] = ACTIONS(4009), + }, + [1451] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4015), + [anon_sym_COMMA] = ACTIONS(4015), + [anon_sym_RPAREN] = ACTIONS(4015), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4015), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4015), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_STAR] = ACTIONS(4013), + [anon_sym_SLASH] = ACTIONS(4013), + [anon_sym_PERCENT] = ACTIONS(4013), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [anon_sym_AMP] = ACTIONS(4013), + [anon_sym_EQ_EQ] = ACTIONS(4015), + [anon_sym_BANG_EQ] = ACTIONS(4015), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_GT_EQ] = ACTIONS(4015), + [anon_sym_LT_EQ] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_LT_LT] = ACTIONS(4013), + [anon_sym_GT_GT] = ACTIONS(4013), + [anon_sym_SEMI] = ACTIONS(4015), + [anon_sym___extension__] = ACTIONS(4013), + [anon_sym_extern] = ACTIONS(4013), + [anon_sym___attribute__] = ACTIONS(4013), + [anon_sym___attribute] = ACTIONS(4013), + [anon_sym_noreturn] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym_RBRACK] = ACTIONS(4015), + [anon_sym___declspec] = ACTIONS(4013), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_RBRACE] = ACTIONS(4015), + [anon_sym_signed] = ACTIONS(4013), + [anon_sym_unsigned] = ACTIONS(4013), + [anon_sym_long] = ACTIONS(4013), + [anon_sym_short] = ACTIONS(4013), + [anon_sym_static] = ACTIONS(4013), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_ATautoreleasepool] = ACTIONS(4015), + [anon_sym_auto] = ACTIONS(4013), + [anon_sym_register] = ACTIONS(4013), + [anon_sym_inline] = ACTIONS(4013), + [anon_sym___inline] = ACTIONS(4013), + [anon_sym___inline__] = ACTIONS(4013), + [anon_sym___forceinline] = ACTIONS(4013), + [anon_sym_thread_local] = ACTIONS(4013), + [anon_sym___thread] = ACTIONS(4013), + [anon_sym_CG_EXTERN] = ACTIONS(4013), + [anon_sym_CG_INLINE] = ACTIONS(4013), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4013), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4013), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4013), + [anon_sym_IBOutlet] = ACTIONS(4013), + [anon_sym_IBInspectable] = ACTIONS(4013), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4013), + [anon_sym_NS_INLINE] = ACTIONS(4013), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4013), + [anon_sym_OBJC_EXPORT] = ACTIONS(4013), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4013), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4013), + [anon_sym_const] = ACTIONS(4013), + [anon_sym_constexpr] = ACTIONS(4013), + [anon_sym_volatile] = ACTIONS(4013), + [anon_sym_restrict] = ACTIONS(4013), + [anon_sym___restrict__] = ACTIONS(4013), + [anon_sym__Atomic] = ACTIONS(4013), + [anon_sym__Noreturn] = ACTIONS(4013), + [anon_sym__Nonnull] = ACTIONS(4013), + [anon_sym_nullable] = ACTIONS(4013), + [anon_sym__Complex] = ACTIONS(4013), + [anon_sym__Nullable] = ACTIONS(4013), + [anon_sym__Nullable_result] = ACTIONS(4013), + [anon_sym__Null_unspecified] = ACTIONS(4013), + [anon_sym___autoreleasing] = ACTIONS(4013), + [anon_sym___block] = ACTIONS(4013), + [anon_sym___bridge] = ACTIONS(4013), + [anon_sym___bridge_retained] = ACTIONS(4013), + [anon_sym___bridge_transfer] = ACTIONS(4013), + [anon_sym___complex] = ACTIONS(4013), + [anon_sym___const] = ACTIONS(4013), + [anon_sym___imag] = ACTIONS(4013), + [anon_sym___kindof] = ACTIONS(4013), + [anon_sym___nonnull] = ACTIONS(4013), + [anon_sym___nullable] = ACTIONS(4013), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4013), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4013), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4013), + [anon_sym___real] = ACTIONS(4013), + [anon_sym___strong] = ACTIONS(4013), + [anon_sym___unsafe_unretained] = ACTIONS(4013), + [anon_sym___unused] = ACTIONS(4013), + [anon_sym___weak] = ACTIONS(4013), + [anon_sym_alignas] = ACTIONS(4013), + [anon_sym__Alignas] = ACTIONS(4013), + [sym_primitive_type] = ACTIONS(4013), + [anon_sym_enum] = ACTIONS(4013), + [anon_sym_COLON] = ACTIONS(4015), + [anon_sym_struct] = ACTIONS(4013), + [anon_sym_union] = ACTIONS(4013), + [anon_sym_QMARK] = ACTIONS(4015), + [anon_sym_STAR_EQ] = ACTIONS(4015), + [anon_sym_SLASH_EQ] = ACTIONS(4015), + [anon_sym_PERCENT_EQ] = ACTIONS(4015), + [anon_sym_PLUS_EQ] = ACTIONS(4015), + [anon_sym_DASH_EQ] = ACTIONS(4015), + [anon_sym_LT_LT_EQ] = ACTIONS(4015), + [anon_sym_GT_GT_EQ] = ACTIONS(4015), + [anon_sym_AMP_EQ] = ACTIONS(4015), + [anon_sym_CARET_EQ] = ACTIONS(4015), + [anon_sym_PIPE_EQ] = ACTIONS(4015), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4013), + [anon_sym___typeof] = ACTIONS(4013), + [anon_sym_typeof] = ACTIONS(4013), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4013), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4013), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4013), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4013), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4013), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4013), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4013), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4013), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4013), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4013), + [anon_sym_NS_AVAILABLE] = ACTIONS(4013), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4013), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4013), + [anon_sym_API_AVAILABLE] = ACTIONS(4013), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4013), + [anon_sym_API_DEPRECATED] = ACTIONS(4013), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4013), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4013), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4013), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4013), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4013), + [anon_sym___deprecated_msg] = ACTIONS(4013), + [anon_sym___deprecated_enum_msg] = ACTIONS(4013), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4013), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4013), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4013), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4013), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4013), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4013), + [anon_sym_BOOL] = ACTIONS(4013), + [anon_sym_IMP] = ACTIONS(4013), + [anon_sym_SEL] = ACTIONS(4013), + [anon_sym_Class] = ACTIONS(4013), + [anon_sym_id] = ACTIONS(4013), + }, + [1452] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4019), + [anon_sym_COMMA] = ACTIONS(4019), + [anon_sym_RPAREN] = ACTIONS(4019), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4019), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4019), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4017), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_SLASH] = ACTIONS(4017), + [anon_sym_PERCENT] = ACTIONS(4017), + [anon_sym_PIPE_PIPE] = ACTIONS(4019), + [anon_sym_AMP_AMP] = ACTIONS(4019), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_CARET] = ACTIONS(4017), + [anon_sym_AMP] = ACTIONS(4017), + [anon_sym_EQ_EQ] = ACTIONS(4019), + [anon_sym_BANG_EQ] = ACTIONS(4019), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_EQ] = ACTIONS(4019), + [anon_sym_LT_EQ] = ACTIONS(4019), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4017), + [anon_sym_SEMI] = ACTIONS(4019), + [anon_sym___extension__] = ACTIONS(4017), + [anon_sym_extern] = ACTIONS(4017), + [anon_sym___attribute__] = ACTIONS(4017), + [anon_sym___attribute] = ACTIONS(4017), + [anon_sym_noreturn] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym_RBRACK] = ACTIONS(4019), + [anon_sym___declspec] = ACTIONS(4017), + [anon_sym_LBRACE] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(4019), + [anon_sym_signed] = ACTIONS(4017), + [anon_sym_unsigned] = ACTIONS(4017), + [anon_sym_long] = ACTIONS(4017), + [anon_sym_short] = ACTIONS(4017), + [anon_sym_static] = ACTIONS(4017), + [anon_sym_EQ] = ACTIONS(4017), + [anon_sym_ATautoreleasepool] = ACTIONS(4019), + [anon_sym_auto] = ACTIONS(4017), + [anon_sym_register] = ACTIONS(4017), + [anon_sym_inline] = ACTIONS(4017), + [anon_sym___inline] = ACTIONS(4017), + [anon_sym___inline__] = ACTIONS(4017), + [anon_sym___forceinline] = ACTIONS(4017), + [anon_sym_thread_local] = ACTIONS(4017), + [anon_sym___thread] = ACTIONS(4017), + [anon_sym_CG_EXTERN] = ACTIONS(4017), + [anon_sym_CG_INLINE] = ACTIONS(4017), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4017), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4017), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4017), + [anon_sym_IBOutlet] = ACTIONS(4017), + [anon_sym_IBInspectable] = ACTIONS(4017), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4017), + [anon_sym_NS_INLINE] = ACTIONS(4017), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4017), + [anon_sym_OBJC_EXPORT] = ACTIONS(4017), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4017), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4017), + [anon_sym_const] = ACTIONS(4017), + [anon_sym_constexpr] = ACTIONS(4017), + [anon_sym_volatile] = ACTIONS(4017), + [anon_sym_restrict] = ACTIONS(4017), + [anon_sym___restrict__] = ACTIONS(4017), + [anon_sym__Atomic] = ACTIONS(4017), + [anon_sym__Noreturn] = ACTIONS(4017), + [anon_sym__Nonnull] = ACTIONS(4017), + [anon_sym_nullable] = ACTIONS(4017), + [anon_sym__Complex] = ACTIONS(4017), + [anon_sym__Nullable] = ACTIONS(4017), + [anon_sym__Nullable_result] = ACTIONS(4017), + [anon_sym__Null_unspecified] = ACTIONS(4017), + [anon_sym___autoreleasing] = ACTIONS(4017), + [anon_sym___block] = ACTIONS(4017), + [anon_sym___bridge] = ACTIONS(4017), + [anon_sym___bridge_retained] = ACTIONS(4017), + [anon_sym___bridge_transfer] = ACTIONS(4017), + [anon_sym___complex] = ACTIONS(4017), + [anon_sym___const] = ACTIONS(4017), + [anon_sym___imag] = ACTIONS(4017), + [anon_sym___kindof] = ACTIONS(4017), + [anon_sym___nonnull] = ACTIONS(4017), + [anon_sym___nullable] = ACTIONS(4017), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4017), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4017), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4017), + [anon_sym___real] = ACTIONS(4017), + [anon_sym___strong] = ACTIONS(4017), + [anon_sym___unsafe_unretained] = ACTIONS(4017), + [anon_sym___unused] = ACTIONS(4017), + [anon_sym___weak] = ACTIONS(4017), + [anon_sym_alignas] = ACTIONS(4017), + [anon_sym__Alignas] = ACTIONS(4017), + [sym_primitive_type] = ACTIONS(4017), + [anon_sym_enum] = ACTIONS(4017), + [anon_sym_COLON] = ACTIONS(4019), + [anon_sym_struct] = ACTIONS(4017), + [anon_sym_union] = ACTIONS(4017), + [anon_sym_QMARK] = ACTIONS(4019), + [anon_sym_STAR_EQ] = ACTIONS(4019), + [anon_sym_SLASH_EQ] = ACTIONS(4019), + [anon_sym_PERCENT_EQ] = ACTIONS(4019), + [anon_sym_PLUS_EQ] = ACTIONS(4019), + [anon_sym_DASH_EQ] = ACTIONS(4019), + [anon_sym_LT_LT_EQ] = ACTIONS(4019), + [anon_sym_GT_GT_EQ] = ACTIONS(4019), + [anon_sym_AMP_EQ] = ACTIONS(4019), + [anon_sym_CARET_EQ] = ACTIONS(4019), + [anon_sym_PIPE_EQ] = ACTIONS(4019), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4017), + [anon_sym___typeof] = ACTIONS(4017), + [anon_sym_typeof] = ACTIONS(4017), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4017), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4017), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4017), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4017), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4017), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4017), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4017), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4017), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4017), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4017), + [anon_sym_NS_AVAILABLE] = ACTIONS(4017), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4017), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4017), + [anon_sym_API_AVAILABLE] = ACTIONS(4017), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4017), + [anon_sym_API_DEPRECATED] = ACTIONS(4017), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4017), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4017), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4017), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4017), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4017), + [anon_sym___deprecated_msg] = ACTIONS(4017), + [anon_sym___deprecated_enum_msg] = ACTIONS(4017), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4017), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4017), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4017), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4017), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4017), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4017), + [anon_sym_BOOL] = ACTIONS(4017), + [anon_sym_IMP] = ACTIONS(4017), + [anon_sym_SEL] = ACTIONS(4017), + [anon_sym_Class] = ACTIONS(4017), + [anon_sym_id] = ACTIONS(4017), + }, + [1453] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4021), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4023), + [anon_sym_COMMA] = ACTIONS(4023), + [anon_sym_RPAREN] = ACTIONS(4023), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4023), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4023), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4021), + [anon_sym_PLUS] = ACTIONS(4021), + [anon_sym_STAR] = ACTIONS(4021), + [anon_sym_SLASH] = ACTIONS(4021), + [anon_sym_PERCENT] = ACTIONS(4021), + [anon_sym_PIPE_PIPE] = ACTIONS(4023), + [anon_sym_AMP_AMP] = ACTIONS(4023), + [anon_sym_PIPE] = ACTIONS(4021), + [anon_sym_CARET] = ACTIONS(4021), + [anon_sym_AMP] = ACTIONS(4021), + [anon_sym_EQ_EQ] = ACTIONS(4023), + [anon_sym_BANG_EQ] = ACTIONS(4023), + [anon_sym_GT] = ACTIONS(4021), + [anon_sym_GT_EQ] = ACTIONS(4023), + [anon_sym_LT_EQ] = ACTIONS(4023), + [anon_sym_LT] = ACTIONS(4021), + [anon_sym_LT_LT] = ACTIONS(4021), + [anon_sym_GT_GT] = ACTIONS(4021), + [anon_sym_SEMI] = ACTIONS(4023), + [anon_sym___extension__] = ACTIONS(4021), + [anon_sym_extern] = ACTIONS(4021), + [anon_sym___attribute__] = ACTIONS(4021), + [anon_sym___attribute] = ACTIONS(4021), + [anon_sym_noreturn] = ACTIONS(4021), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym_RBRACK] = ACTIONS(4023), + [anon_sym___declspec] = ACTIONS(4021), + [anon_sym_LBRACE] = ACTIONS(4023), + [anon_sym_RBRACE] = ACTIONS(4023), + [anon_sym_signed] = ACTIONS(4021), + [anon_sym_unsigned] = ACTIONS(4021), + [anon_sym_long] = ACTIONS(4021), + [anon_sym_short] = ACTIONS(4021), + [anon_sym_static] = ACTIONS(4021), + [anon_sym_EQ] = ACTIONS(4021), + [anon_sym_ATautoreleasepool] = ACTIONS(4023), + [anon_sym_auto] = ACTIONS(4021), + [anon_sym_register] = ACTIONS(4021), + [anon_sym_inline] = ACTIONS(4021), + [anon_sym___inline] = ACTIONS(4021), + [anon_sym___inline__] = ACTIONS(4021), + [anon_sym___forceinline] = ACTIONS(4021), + [anon_sym_thread_local] = ACTIONS(4021), + [anon_sym___thread] = ACTIONS(4021), + [anon_sym_CG_EXTERN] = ACTIONS(4021), + [anon_sym_CG_INLINE] = ACTIONS(4021), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4021), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4021), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4021), + [anon_sym_IBOutlet] = ACTIONS(4021), + [anon_sym_IBInspectable] = ACTIONS(4021), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4021), + [anon_sym_NS_INLINE] = ACTIONS(4021), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4021), + [anon_sym_OBJC_EXPORT] = ACTIONS(4021), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4021), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4021), + [anon_sym_const] = ACTIONS(4021), + [anon_sym_constexpr] = ACTIONS(4021), + [anon_sym_volatile] = ACTIONS(4021), + [anon_sym_restrict] = ACTIONS(4021), + [anon_sym___restrict__] = ACTIONS(4021), + [anon_sym__Atomic] = ACTIONS(4021), + [anon_sym__Noreturn] = ACTIONS(4021), + [anon_sym__Nonnull] = ACTIONS(4021), + [anon_sym_nullable] = ACTIONS(4021), + [anon_sym__Complex] = ACTIONS(4021), + [anon_sym__Nullable] = ACTIONS(4021), + [anon_sym__Nullable_result] = ACTIONS(4021), + [anon_sym__Null_unspecified] = ACTIONS(4021), + [anon_sym___autoreleasing] = ACTIONS(4021), + [anon_sym___block] = ACTIONS(4021), + [anon_sym___bridge] = ACTIONS(4021), + [anon_sym___bridge_retained] = ACTIONS(4021), + [anon_sym___bridge_transfer] = ACTIONS(4021), + [anon_sym___complex] = ACTIONS(4021), + [anon_sym___const] = ACTIONS(4021), + [anon_sym___imag] = ACTIONS(4021), + [anon_sym___kindof] = ACTIONS(4021), + [anon_sym___nonnull] = ACTIONS(4021), + [anon_sym___nullable] = ACTIONS(4021), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4021), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4021), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4021), + [anon_sym___real] = ACTIONS(4021), + [anon_sym___strong] = ACTIONS(4021), + [anon_sym___unsafe_unretained] = ACTIONS(4021), + [anon_sym___unused] = ACTIONS(4021), + [anon_sym___weak] = ACTIONS(4021), + [anon_sym_alignas] = ACTIONS(4021), + [anon_sym__Alignas] = ACTIONS(4021), + [sym_primitive_type] = ACTIONS(4021), + [anon_sym_enum] = ACTIONS(4021), + [anon_sym_COLON] = ACTIONS(4023), + [anon_sym_struct] = ACTIONS(4021), + [anon_sym_union] = ACTIONS(4021), + [anon_sym_QMARK] = ACTIONS(4023), + [anon_sym_STAR_EQ] = ACTIONS(4023), + [anon_sym_SLASH_EQ] = ACTIONS(4023), + [anon_sym_PERCENT_EQ] = ACTIONS(4023), + [anon_sym_PLUS_EQ] = ACTIONS(4023), + [anon_sym_DASH_EQ] = ACTIONS(4023), + [anon_sym_LT_LT_EQ] = ACTIONS(4023), + [anon_sym_GT_GT_EQ] = ACTIONS(4023), + [anon_sym_AMP_EQ] = ACTIONS(4023), + [anon_sym_CARET_EQ] = ACTIONS(4023), + [anon_sym_PIPE_EQ] = ACTIONS(4023), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4021), + [anon_sym___typeof] = ACTIONS(4021), + [anon_sym_typeof] = ACTIONS(4021), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4021), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4021), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4021), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4021), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4021), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4021), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4021), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4021), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4021), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4021), + [anon_sym_NS_AVAILABLE] = ACTIONS(4021), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4021), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4021), + [anon_sym_API_AVAILABLE] = ACTIONS(4021), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4021), + [anon_sym_API_DEPRECATED] = ACTIONS(4021), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4021), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4021), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4021), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4021), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4021), + [anon_sym___deprecated_msg] = ACTIONS(4021), + [anon_sym___deprecated_enum_msg] = ACTIONS(4021), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4021), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4021), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4021), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4021), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4021), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4021), + [anon_sym_BOOL] = ACTIONS(4021), + [anon_sym_IMP] = ACTIONS(4021), + [anon_sym_SEL] = ACTIONS(4021), + [anon_sym_Class] = ACTIONS(4021), + [anon_sym_id] = ACTIONS(4021), + }, + [1454] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_RPAREN] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4025), + [anon_sym_PLUS] = ACTIONS(4025), + [anon_sym_STAR] = ACTIONS(4025), + [anon_sym_SLASH] = ACTIONS(4025), + [anon_sym_PERCENT] = ACTIONS(4025), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4025), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(4025), + [anon_sym_GT_EQ] = ACTIONS(4027), + [anon_sym_LT_EQ] = ACTIONS(4027), + [anon_sym_LT] = ACTIONS(4025), + [anon_sym_LT_LT] = ACTIONS(4025), + [anon_sym_GT_GT] = ACTIONS(4025), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym_RBRACK] = ACTIONS(4027), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4027), + [anon_sym_RBRACE] = ACTIONS(4027), + [anon_sym_signed] = ACTIONS(4025), + [anon_sym_unsigned] = ACTIONS(4025), + [anon_sym_long] = ACTIONS(4025), + [anon_sym_short] = ACTIONS(4025), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_ATautoreleasepool] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [sym_primitive_type] = ACTIONS(4025), + [anon_sym_enum] = ACTIONS(4025), + [anon_sym_COLON] = ACTIONS(4027), + [anon_sym_struct] = ACTIONS(4025), + [anon_sym_union] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4025), + [anon_sym___typeof] = ACTIONS(4025), + [anon_sym_typeof] = ACTIONS(4025), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + [anon_sym_BOOL] = ACTIONS(4025), + [anon_sym_IMP] = ACTIONS(4025), + [anon_sym_SEL] = ACTIONS(4025), + [anon_sym_Class] = ACTIONS(4025), + [anon_sym_id] = ACTIONS(4025), + }, + [1455] = { + [aux_sym_selector_expression_repeat2] = STATE(1456), + [sym_identifier] = ACTIONS(4029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4031), + [anon_sym_COMMA] = ACTIONS(4031), + [anon_sym_RPAREN] = ACTIONS(4033), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4031), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4031), + [anon_sym_LPAREN2] = ACTIONS(4031), + [anon_sym_DASH] = ACTIONS(4029), + [anon_sym_PLUS] = ACTIONS(4029), + [anon_sym_STAR] = ACTIONS(4029), + [anon_sym_SLASH] = ACTIONS(4029), + [anon_sym_PERCENT] = ACTIONS(4029), + [anon_sym_PIPE_PIPE] = ACTIONS(4031), + [anon_sym_AMP_AMP] = ACTIONS(4031), + [anon_sym_PIPE] = ACTIONS(4029), + [anon_sym_CARET] = ACTIONS(4029), + [anon_sym_AMP] = ACTIONS(4029), + [anon_sym_EQ_EQ] = ACTIONS(4031), + [anon_sym_BANG_EQ] = ACTIONS(4031), + [anon_sym_GT] = ACTIONS(4029), + [anon_sym_GT_EQ] = ACTIONS(4031), + [anon_sym_LT_EQ] = ACTIONS(4031), + [anon_sym_LT] = ACTIONS(4029), + [anon_sym_LT_LT] = ACTIONS(4029), + [anon_sym_GT_GT] = ACTIONS(4029), + [anon_sym_SEMI] = ACTIONS(4031), + [anon_sym___extension__] = ACTIONS(4029), + [anon_sym_extern] = ACTIONS(4029), + [anon_sym___attribute__] = ACTIONS(4029), + [anon_sym___attribute] = ACTIONS(4029), + [anon_sym_noreturn] = ACTIONS(4029), + [anon_sym_LBRACK] = ACTIONS(4031), + [anon_sym_RBRACK] = ACTIONS(4031), + [anon_sym___declspec] = ACTIONS(4029), + [anon_sym_LBRACE] = ACTIONS(4031), + [anon_sym_RBRACE] = ACTIONS(4031), + [anon_sym_signed] = ACTIONS(4029), + [anon_sym_unsigned] = ACTIONS(4029), + [anon_sym_long] = ACTIONS(4029), + [anon_sym_short] = ACTIONS(4029), + [anon_sym_static] = ACTIONS(4029), + [anon_sym_EQ] = ACTIONS(4029), + [anon_sym_ATautoreleasepool] = ACTIONS(4031), + [anon_sym_auto] = ACTIONS(4029), + [anon_sym_register] = ACTIONS(4029), + [anon_sym_inline] = ACTIONS(4029), + [anon_sym___inline] = ACTIONS(4029), + [anon_sym___inline__] = ACTIONS(4029), + [anon_sym___forceinline] = ACTIONS(4029), + [anon_sym_thread_local] = ACTIONS(4029), + [anon_sym___thread] = ACTIONS(4029), + [anon_sym_CG_EXTERN] = ACTIONS(4029), + [anon_sym_CG_INLINE] = ACTIONS(4029), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4029), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4029), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4029), + [anon_sym_IBOutlet] = ACTIONS(4029), + [anon_sym_IBInspectable] = ACTIONS(4029), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4029), + [anon_sym_NS_INLINE] = ACTIONS(4029), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4029), + [anon_sym_OBJC_EXPORT] = ACTIONS(4029), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4029), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4029), + [anon_sym_const] = ACTIONS(4029), + [anon_sym_constexpr] = ACTIONS(4029), + [anon_sym_volatile] = ACTIONS(4029), + [anon_sym_restrict] = ACTIONS(4029), + [anon_sym___restrict__] = ACTIONS(4029), + [anon_sym__Atomic] = ACTIONS(4029), + [anon_sym__Noreturn] = ACTIONS(4029), + [anon_sym__Nonnull] = ACTIONS(4029), + [anon_sym_nullable] = ACTIONS(4029), + [anon_sym__Complex] = ACTIONS(4029), + [anon_sym__Nullable] = ACTIONS(4029), + [anon_sym__Nullable_result] = ACTIONS(4029), + [anon_sym__Null_unspecified] = ACTIONS(4029), + [anon_sym___autoreleasing] = ACTIONS(4029), + [anon_sym___block] = ACTIONS(4029), + [anon_sym___bridge] = ACTIONS(4029), + [anon_sym___bridge_retained] = ACTIONS(4029), + [anon_sym___bridge_transfer] = ACTIONS(4029), + [anon_sym___complex] = ACTIONS(4029), + [anon_sym___const] = ACTIONS(4029), + [anon_sym___imag] = ACTIONS(4029), + [anon_sym___kindof] = ACTIONS(4029), + [anon_sym___nonnull] = ACTIONS(4029), + [anon_sym___nullable] = ACTIONS(4029), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4029), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4029), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4029), + [anon_sym___real] = ACTIONS(4029), + [anon_sym___strong] = ACTIONS(4029), + [anon_sym___unsafe_unretained] = ACTIONS(4029), + [anon_sym___unused] = ACTIONS(4029), + [anon_sym___weak] = ACTIONS(4029), + [anon_sym_alignas] = ACTIONS(4029), + [anon_sym__Alignas] = ACTIONS(4029), + [sym_primitive_type] = ACTIONS(4029), + [anon_sym_enum] = ACTIONS(4029), + [anon_sym_COLON] = ACTIONS(4031), + [anon_sym_struct] = ACTIONS(4029), + [anon_sym_union] = ACTIONS(4029), + [anon_sym_QMARK] = ACTIONS(4031), + [anon_sym_STAR_EQ] = ACTIONS(4031), + [anon_sym_SLASH_EQ] = ACTIONS(4031), + [anon_sym_PERCENT_EQ] = ACTIONS(4031), + [anon_sym_PLUS_EQ] = ACTIONS(4031), + [anon_sym_DASH_EQ] = ACTIONS(4031), + [anon_sym_LT_LT_EQ] = ACTIONS(4031), + [anon_sym_GT_GT_EQ] = ACTIONS(4031), + [anon_sym_AMP_EQ] = ACTIONS(4031), + [anon_sym_CARET_EQ] = ACTIONS(4031), + [anon_sym_PIPE_EQ] = ACTIONS(4031), + [anon_sym_DASH_DASH] = ACTIONS(4031), + [anon_sym_PLUS_PLUS] = ACTIONS(4031), + [anon_sym_DOT] = ACTIONS(4029), + [anon_sym_DASH_GT] = ACTIONS(4031), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4029), + [anon_sym___typeof] = ACTIONS(4029), + [anon_sym_typeof] = ACTIONS(4029), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4029), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4029), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4029), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4029), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4029), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4029), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4029), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4029), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4029), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4029), + [anon_sym_NS_AVAILABLE] = ACTIONS(4029), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4029), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4029), + [anon_sym_API_AVAILABLE] = ACTIONS(4029), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4029), + [anon_sym_API_DEPRECATED] = ACTIONS(4029), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4029), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4029), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4029), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4029), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4029), + [anon_sym___deprecated_msg] = ACTIONS(4029), + [anon_sym___deprecated_enum_msg] = ACTIONS(4029), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4029), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4029), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4029), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4029), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4029), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4029), + [anon_sym_BOOL] = ACTIONS(4029), + [anon_sym_IMP] = ACTIONS(4029), + [anon_sym_SEL] = ACTIONS(4029), + [anon_sym_Class] = ACTIONS(4029), + [anon_sym_id] = ACTIONS(4029), + }, + [1456] = { + [aux_sym_selector_expression_repeat2] = STATE(1456), + [sym_identifier] = ACTIONS(4035), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4037), + [anon_sym_COMMA] = ACTIONS(4037), + [anon_sym_RPAREN] = ACTIONS(4039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4037), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4037), + [anon_sym_LPAREN2] = ACTIONS(4037), + [anon_sym_DASH] = ACTIONS(4035), + [anon_sym_PLUS] = ACTIONS(4035), + [anon_sym_STAR] = ACTIONS(4035), + [anon_sym_SLASH] = ACTIONS(4035), + [anon_sym_PERCENT] = ACTIONS(4035), + [anon_sym_PIPE_PIPE] = ACTIONS(4037), + [anon_sym_AMP_AMP] = ACTIONS(4037), + [anon_sym_PIPE] = ACTIONS(4035), + [anon_sym_CARET] = ACTIONS(4035), + [anon_sym_AMP] = ACTIONS(4035), + [anon_sym_EQ_EQ] = ACTIONS(4037), + [anon_sym_BANG_EQ] = ACTIONS(4037), + [anon_sym_GT] = ACTIONS(4035), + [anon_sym_GT_EQ] = ACTIONS(4037), + [anon_sym_LT_EQ] = ACTIONS(4037), + [anon_sym_LT] = ACTIONS(4035), + [anon_sym_LT_LT] = ACTIONS(4035), + [anon_sym_GT_GT] = ACTIONS(4035), + [anon_sym_SEMI] = ACTIONS(4037), + [anon_sym___extension__] = ACTIONS(4035), + [anon_sym_extern] = ACTIONS(4035), + [anon_sym___attribute__] = ACTIONS(4035), + [anon_sym___attribute] = ACTIONS(4035), + [anon_sym_noreturn] = ACTIONS(4035), + [anon_sym_LBRACK] = ACTIONS(4037), + [anon_sym_RBRACK] = ACTIONS(4037), + [anon_sym___declspec] = ACTIONS(4035), + [anon_sym_LBRACE] = ACTIONS(4037), + [anon_sym_RBRACE] = ACTIONS(4037), + [anon_sym_signed] = ACTIONS(4035), + [anon_sym_unsigned] = ACTIONS(4035), + [anon_sym_long] = ACTIONS(4035), + [anon_sym_short] = ACTIONS(4035), + [anon_sym_static] = ACTIONS(4035), + [anon_sym_EQ] = ACTIONS(4035), + [anon_sym_ATautoreleasepool] = ACTIONS(4037), + [anon_sym_auto] = ACTIONS(4035), + [anon_sym_register] = ACTIONS(4035), + [anon_sym_inline] = ACTIONS(4035), + [anon_sym___inline] = ACTIONS(4035), + [anon_sym___inline__] = ACTIONS(4035), + [anon_sym___forceinline] = ACTIONS(4035), + [anon_sym_thread_local] = ACTIONS(4035), + [anon_sym___thread] = ACTIONS(4035), + [anon_sym_CG_EXTERN] = ACTIONS(4035), + [anon_sym_CG_INLINE] = ACTIONS(4035), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4035), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4035), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4035), + [anon_sym_IBOutlet] = ACTIONS(4035), + [anon_sym_IBInspectable] = ACTIONS(4035), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4035), + [anon_sym_NS_INLINE] = ACTIONS(4035), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4035), + [anon_sym_OBJC_EXPORT] = ACTIONS(4035), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4035), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4035), + [anon_sym_const] = ACTIONS(4035), + [anon_sym_constexpr] = ACTIONS(4035), + [anon_sym_volatile] = ACTIONS(4035), + [anon_sym_restrict] = ACTIONS(4035), + [anon_sym___restrict__] = ACTIONS(4035), + [anon_sym__Atomic] = ACTIONS(4035), + [anon_sym__Noreturn] = ACTIONS(4035), + [anon_sym__Nonnull] = ACTIONS(4035), + [anon_sym_nullable] = ACTIONS(4035), + [anon_sym__Complex] = ACTIONS(4035), + [anon_sym__Nullable] = ACTIONS(4035), + [anon_sym__Nullable_result] = ACTIONS(4035), + [anon_sym__Null_unspecified] = ACTIONS(4035), + [anon_sym___autoreleasing] = ACTIONS(4035), + [anon_sym___block] = ACTIONS(4035), + [anon_sym___bridge] = ACTIONS(4035), + [anon_sym___bridge_retained] = ACTIONS(4035), + [anon_sym___bridge_transfer] = ACTIONS(4035), + [anon_sym___complex] = ACTIONS(4035), + [anon_sym___const] = ACTIONS(4035), + [anon_sym___imag] = ACTIONS(4035), + [anon_sym___kindof] = ACTIONS(4035), + [anon_sym___nonnull] = ACTIONS(4035), + [anon_sym___nullable] = ACTIONS(4035), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4035), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4035), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4035), + [anon_sym___real] = ACTIONS(4035), + [anon_sym___strong] = ACTIONS(4035), + [anon_sym___unsafe_unretained] = ACTIONS(4035), + [anon_sym___unused] = ACTIONS(4035), + [anon_sym___weak] = ACTIONS(4035), + [anon_sym_alignas] = ACTIONS(4035), + [anon_sym__Alignas] = ACTIONS(4035), + [sym_primitive_type] = ACTIONS(4035), + [anon_sym_enum] = ACTIONS(4035), + [anon_sym_COLON] = ACTIONS(4037), + [anon_sym_struct] = ACTIONS(4035), + [anon_sym_union] = ACTIONS(4035), + [anon_sym_QMARK] = ACTIONS(4037), + [anon_sym_STAR_EQ] = ACTIONS(4037), + [anon_sym_SLASH_EQ] = ACTIONS(4037), + [anon_sym_PERCENT_EQ] = ACTIONS(4037), + [anon_sym_PLUS_EQ] = ACTIONS(4037), + [anon_sym_DASH_EQ] = ACTIONS(4037), + [anon_sym_LT_LT_EQ] = ACTIONS(4037), + [anon_sym_GT_GT_EQ] = ACTIONS(4037), + [anon_sym_AMP_EQ] = ACTIONS(4037), + [anon_sym_CARET_EQ] = ACTIONS(4037), + [anon_sym_PIPE_EQ] = ACTIONS(4037), + [anon_sym_DASH_DASH] = ACTIONS(4037), + [anon_sym_PLUS_PLUS] = ACTIONS(4037), + [anon_sym_DOT] = ACTIONS(4035), + [anon_sym_DASH_GT] = ACTIONS(4037), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4035), + [anon_sym___typeof] = ACTIONS(4035), + [anon_sym_typeof] = ACTIONS(4035), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4035), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4035), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4035), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4035), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4035), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4035), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4035), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4035), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4035), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4035), + [anon_sym_NS_AVAILABLE] = ACTIONS(4035), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4035), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4035), + [anon_sym_API_AVAILABLE] = ACTIONS(4035), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4035), + [anon_sym_API_DEPRECATED] = ACTIONS(4035), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4035), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4035), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4035), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4035), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4035), + [anon_sym___deprecated_msg] = ACTIONS(4035), + [anon_sym___deprecated_enum_msg] = ACTIONS(4035), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4035), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4035), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4035), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4035), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4035), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4035), + [anon_sym_BOOL] = ACTIONS(4035), + [anon_sym_IMP] = ACTIONS(4035), + [anon_sym_SEL] = ACTIONS(4035), + [anon_sym_Class] = ACTIONS(4035), + [anon_sym_id] = ACTIONS(4035), + }, + [1457] = { + [sym_identifier] = ACTIONS(4042), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4044), + [anon_sym_COMMA] = ACTIONS(4044), + [anon_sym_RPAREN] = ACTIONS(4044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4044), + [anon_sym_LPAREN2] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4042), + [anon_sym_PLUS] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(4042), + [anon_sym_SLASH] = ACTIONS(4042), + [anon_sym_PERCENT] = ACTIONS(4042), + [anon_sym_PIPE_PIPE] = ACTIONS(4044), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_PIPE] = ACTIONS(4042), + [anon_sym_CARET] = ACTIONS(4042), + [anon_sym_AMP] = ACTIONS(4042), + [anon_sym_EQ_EQ] = ACTIONS(4044), + [anon_sym_BANG_EQ] = ACTIONS(4044), + [anon_sym_GT] = ACTIONS(4042), + [anon_sym_GT_EQ] = ACTIONS(4044), + [anon_sym_LT_EQ] = ACTIONS(4044), + [anon_sym_LT] = ACTIONS(4042), + [anon_sym_LT_LT] = ACTIONS(4042), + [anon_sym_GT_GT] = ACTIONS(4042), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym___extension__] = ACTIONS(4042), + [anon_sym_extern] = ACTIONS(4042), + [anon_sym___attribute__] = ACTIONS(4042), + [anon_sym___attribute] = ACTIONS(4042), + [anon_sym_noreturn] = ACTIONS(4042), + [anon_sym_LBRACK] = ACTIONS(4044), + [anon_sym_RBRACK] = ACTIONS(4044), + [anon_sym___declspec] = ACTIONS(4042), + [anon_sym_LBRACE] = ACTIONS(4044), + [anon_sym_RBRACE] = ACTIONS(4044), + [anon_sym_signed] = ACTIONS(4042), + [anon_sym_unsigned] = ACTIONS(4042), + [anon_sym_long] = ACTIONS(4042), + [anon_sym_short] = ACTIONS(4042), + [anon_sym_static] = ACTIONS(4042), + [anon_sym_EQ] = ACTIONS(4042), + [anon_sym_ATautoreleasepool] = ACTIONS(4044), + [anon_sym_auto] = ACTIONS(4042), + [anon_sym_register] = ACTIONS(4042), + [anon_sym_inline] = ACTIONS(4042), + [anon_sym___inline] = ACTIONS(4042), + [anon_sym___inline__] = ACTIONS(4042), + [anon_sym___forceinline] = ACTIONS(4042), + [anon_sym_thread_local] = ACTIONS(4042), + [anon_sym___thread] = ACTIONS(4042), + [anon_sym_CG_EXTERN] = ACTIONS(4042), + [anon_sym_CG_INLINE] = ACTIONS(4042), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4042), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4042), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4042), + [anon_sym_IBOutlet] = ACTIONS(4042), + [anon_sym_IBInspectable] = ACTIONS(4042), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4042), + [anon_sym_NS_INLINE] = ACTIONS(4042), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4042), + [anon_sym_OBJC_EXPORT] = ACTIONS(4042), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4042), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4042), + [anon_sym_const] = ACTIONS(4042), + [anon_sym_constexpr] = ACTIONS(4042), + [anon_sym_volatile] = ACTIONS(4042), + [anon_sym_restrict] = ACTIONS(4042), + [anon_sym___restrict__] = ACTIONS(4042), + [anon_sym__Atomic] = ACTIONS(4042), + [anon_sym__Noreturn] = ACTIONS(4042), + [anon_sym__Nonnull] = ACTIONS(4042), + [anon_sym_nullable] = ACTIONS(4042), + [anon_sym__Complex] = ACTIONS(4042), + [anon_sym__Nullable] = ACTIONS(4042), + [anon_sym__Nullable_result] = ACTIONS(4042), + [anon_sym__Null_unspecified] = ACTIONS(4042), + [anon_sym___autoreleasing] = ACTIONS(4042), + [anon_sym___block] = ACTIONS(4042), + [anon_sym___bridge] = ACTIONS(4042), + [anon_sym___bridge_retained] = ACTIONS(4042), + [anon_sym___bridge_transfer] = ACTIONS(4042), + [anon_sym___complex] = ACTIONS(4042), + [anon_sym___const] = ACTIONS(4042), + [anon_sym___imag] = ACTIONS(4042), + [anon_sym___kindof] = ACTIONS(4042), + [anon_sym___nonnull] = ACTIONS(4042), + [anon_sym___nullable] = ACTIONS(4042), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4042), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4042), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4042), + [anon_sym___real] = ACTIONS(4042), + [anon_sym___strong] = ACTIONS(4042), + [anon_sym___unsafe_unretained] = ACTIONS(4042), + [anon_sym___unused] = ACTIONS(4042), + [anon_sym___weak] = ACTIONS(4042), + [anon_sym_alignas] = ACTIONS(4042), + [anon_sym__Alignas] = ACTIONS(4042), + [sym_primitive_type] = ACTIONS(4042), + [anon_sym_enum] = ACTIONS(4042), + [anon_sym_COLON] = ACTIONS(4044), + [anon_sym_struct] = ACTIONS(4042), + [anon_sym_union] = ACTIONS(4042), + [anon_sym_QMARK] = ACTIONS(4044), + [anon_sym_STAR_EQ] = ACTIONS(4044), + [anon_sym_SLASH_EQ] = ACTIONS(4044), + [anon_sym_PERCENT_EQ] = ACTIONS(4044), + [anon_sym_PLUS_EQ] = ACTIONS(4044), + [anon_sym_DASH_EQ] = ACTIONS(4044), + [anon_sym_LT_LT_EQ] = ACTIONS(4044), + [anon_sym_GT_GT_EQ] = ACTIONS(4044), + [anon_sym_AMP_EQ] = ACTIONS(4044), + [anon_sym_CARET_EQ] = ACTIONS(4044), + [anon_sym_PIPE_EQ] = ACTIONS(4044), + [anon_sym_DASH_DASH] = ACTIONS(4044), + [anon_sym_PLUS_PLUS] = ACTIONS(4044), + [anon_sym_DOT] = ACTIONS(4042), + [anon_sym_DASH_GT] = ACTIONS(4044), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4042), + [anon_sym___typeof] = ACTIONS(4042), + [anon_sym_typeof] = ACTIONS(4042), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4042), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4042), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4042), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4042), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4042), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4042), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4042), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4042), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4042), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4042), + [anon_sym_NS_AVAILABLE] = ACTIONS(4042), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4042), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4042), + [anon_sym_API_AVAILABLE] = ACTIONS(4042), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4042), + [anon_sym_API_DEPRECATED] = ACTIONS(4042), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4042), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4042), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4042), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4042), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4042), + [anon_sym___deprecated_msg] = ACTIONS(4042), + [anon_sym___deprecated_enum_msg] = ACTIONS(4042), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4042), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4042), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4042), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4042), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4042), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4042), + [anon_sym_BOOL] = ACTIONS(4042), + [anon_sym_IMP] = ACTIONS(4042), + [anon_sym_SEL] = ACTIONS(4042), + [anon_sym_Class] = ACTIONS(4042), + [anon_sym_id] = ACTIONS(4042), + }, + [1458] = { + [sym_identifier] = ACTIONS(4046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4048), + [anon_sym_COMMA] = ACTIONS(4048), + [anon_sym_RPAREN] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4048), + [anon_sym_LPAREN2] = ACTIONS(4048), + [anon_sym_DASH] = ACTIONS(4046), + [anon_sym_PLUS] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4046), + [anon_sym_PIPE_PIPE] = ACTIONS(4048), + [anon_sym_AMP_AMP] = ACTIONS(4048), + [anon_sym_PIPE] = ACTIONS(4046), + [anon_sym_CARET] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4046), + [anon_sym_EQ_EQ] = ACTIONS(4048), + [anon_sym_BANG_EQ] = ACTIONS(4048), + [anon_sym_GT] = ACTIONS(4046), + [anon_sym_GT_EQ] = ACTIONS(4048), + [anon_sym_LT_EQ] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(4046), + [anon_sym_LT_LT] = ACTIONS(4046), + [anon_sym_GT_GT] = ACTIONS(4046), + [anon_sym_SEMI] = ACTIONS(4048), + [anon_sym___extension__] = ACTIONS(4046), + [anon_sym_extern] = ACTIONS(4046), + [anon_sym___attribute__] = ACTIONS(4046), + [anon_sym___attribute] = ACTIONS(4046), + [anon_sym_noreturn] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_RBRACK] = ACTIONS(4048), + [anon_sym___declspec] = ACTIONS(4046), + [anon_sym_LBRACE] = ACTIONS(4048), + [anon_sym_RBRACE] = ACTIONS(4048), + [anon_sym_signed] = ACTIONS(4046), + [anon_sym_unsigned] = ACTIONS(4046), + [anon_sym_long] = ACTIONS(4046), + [anon_sym_short] = ACTIONS(4046), + [anon_sym_static] = ACTIONS(4046), + [anon_sym_EQ] = ACTIONS(4046), + [anon_sym_ATautoreleasepool] = ACTIONS(4048), + [anon_sym_auto] = ACTIONS(4046), + [anon_sym_register] = ACTIONS(4046), + [anon_sym_inline] = ACTIONS(4046), + [anon_sym___inline] = ACTIONS(4046), + [anon_sym___inline__] = ACTIONS(4046), + [anon_sym___forceinline] = ACTIONS(4046), + [anon_sym_thread_local] = ACTIONS(4046), + [anon_sym___thread] = ACTIONS(4046), + [anon_sym_CG_EXTERN] = ACTIONS(4046), + [anon_sym_CG_INLINE] = ACTIONS(4046), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4046), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4046), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4046), + [anon_sym_IBOutlet] = ACTIONS(4046), + [anon_sym_IBInspectable] = ACTIONS(4046), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4046), + [anon_sym_NS_INLINE] = ACTIONS(4046), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4046), + [anon_sym_OBJC_EXPORT] = ACTIONS(4046), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4046), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4046), + [anon_sym_const] = ACTIONS(4046), + [anon_sym_constexpr] = ACTIONS(4046), + [anon_sym_volatile] = ACTIONS(4046), + [anon_sym_restrict] = ACTIONS(4046), + [anon_sym___restrict__] = ACTIONS(4046), + [anon_sym__Atomic] = ACTIONS(4046), + [anon_sym__Noreturn] = ACTIONS(4046), + [anon_sym__Nonnull] = ACTIONS(4046), + [anon_sym_nullable] = ACTIONS(4046), + [anon_sym__Complex] = ACTIONS(4046), + [anon_sym__Nullable] = ACTIONS(4046), + [anon_sym__Nullable_result] = ACTIONS(4046), + [anon_sym__Null_unspecified] = ACTIONS(4046), + [anon_sym___autoreleasing] = ACTIONS(4046), + [anon_sym___block] = ACTIONS(4046), + [anon_sym___bridge] = ACTIONS(4046), + [anon_sym___bridge_retained] = ACTIONS(4046), + [anon_sym___bridge_transfer] = ACTIONS(4046), + [anon_sym___complex] = ACTIONS(4046), + [anon_sym___const] = ACTIONS(4046), + [anon_sym___imag] = ACTIONS(4046), + [anon_sym___kindof] = ACTIONS(4046), + [anon_sym___nonnull] = ACTIONS(4046), + [anon_sym___nullable] = ACTIONS(4046), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4046), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4046), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4046), + [anon_sym___real] = ACTIONS(4046), + [anon_sym___strong] = ACTIONS(4046), + [anon_sym___unsafe_unretained] = ACTIONS(4046), + [anon_sym___unused] = ACTIONS(4046), + [anon_sym___weak] = ACTIONS(4046), + [anon_sym_alignas] = ACTIONS(4046), + [anon_sym__Alignas] = ACTIONS(4046), + [sym_primitive_type] = ACTIONS(4046), + [anon_sym_enum] = ACTIONS(4046), + [anon_sym_COLON] = ACTIONS(4048), + [anon_sym_struct] = ACTIONS(4046), + [anon_sym_union] = ACTIONS(4046), + [anon_sym_QMARK] = ACTIONS(4048), + [anon_sym_STAR_EQ] = ACTIONS(4048), + [anon_sym_SLASH_EQ] = ACTIONS(4048), + [anon_sym_PERCENT_EQ] = ACTIONS(4048), + [anon_sym_PLUS_EQ] = ACTIONS(4048), + [anon_sym_DASH_EQ] = ACTIONS(4048), + [anon_sym_LT_LT_EQ] = ACTIONS(4048), + [anon_sym_GT_GT_EQ] = ACTIONS(4048), + [anon_sym_AMP_EQ] = ACTIONS(4048), + [anon_sym_CARET_EQ] = ACTIONS(4048), + [anon_sym_PIPE_EQ] = ACTIONS(4048), + [anon_sym_DASH_DASH] = ACTIONS(4048), + [anon_sym_PLUS_PLUS] = ACTIONS(4048), + [anon_sym_DOT] = ACTIONS(4046), + [anon_sym_DASH_GT] = ACTIONS(4048), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4046), + [anon_sym___typeof] = ACTIONS(4046), + [anon_sym_typeof] = ACTIONS(4046), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4046), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4046), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4046), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4046), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4046), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4046), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4046), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4046), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4046), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4046), + [anon_sym_NS_AVAILABLE] = ACTIONS(4046), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4046), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4046), + [anon_sym_API_AVAILABLE] = ACTIONS(4046), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4046), + [anon_sym_API_DEPRECATED] = ACTIONS(4046), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4046), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4046), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4046), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4046), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4046), + [anon_sym___deprecated_msg] = ACTIONS(4046), + [anon_sym___deprecated_enum_msg] = ACTIONS(4046), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4046), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4046), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4046), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4046), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4046), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4046), + [anon_sym_BOOL] = ACTIONS(4046), + [anon_sym_IMP] = ACTIONS(4046), + [anon_sym_SEL] = ACTIONS(4046), + [anon_sym_Class] = ACTIONS(4046), + [anon_sym_id] = ACTIONS(4046), + }, + [1459] = { + [sym_identifier] = ACTIONS(4050), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4052), + [anon_sym_COMMA] = ACTIONS(4052), + [anon_sym_RPAREN] = ACTIONS(4052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4052), + [anon_sym_LPAREN2] = ACTIONS(4052), + [anon_sym_DASH] = ACTIONS(4050), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(4050), + [anon_sym_SLASH] = ACTIONS(4050), + [anon_sym_PERCENT] = ACTIONS(4050), + [anon_sym_PIPE_PIPE] = ACTIONS(4052), + [anon_sym_AMP_AMP] = ACTIONS(4052), + [anon_sym_PIPE] = ACTIONS(4050), + [anon_sym_CARET] = ACTIONS(4050), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_EQ_EQ] = ACTIONS(4052), + [anon_sym_BANG_EQ] = ACTIONS(4052), + [anon_sym_GT] = ACTIONS(4050), + [anon_sym_GT_EQ] = ACTIONS(4052), + [anon_sym_LT_EQ] = ACTIONS(4052), + [anon_sym_LT] = ACTIONS(4050), + [anon_sym_LT_LT] = ACTIONS(4050), + [anon_sym_GT_GT] = ACTIONS(4050), + [anon_sym_SEMI] = ACTIONS(4052), + [anon_sym___extension__] = ACTIONS(4050), + [anon_sym_extern] = ACTIONS(4050), + [anon_sym___attribute__] = ACTIONS(4050), + [anon_sym___attribute] = ACTIONS(4050), + [anon_sym_noreturn] = ACTIONS(4050), + [anon_sym_LBRACK] = ACTIONS(4052), + [anon_sym_RBRACK] = ACTIONS(4052), + [anon_sym___declspec] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4052), + [anon_sym_RBRACE] = ACTIONS(4052), + [anon_sym_signed] = ACTIONS(4050), + [anon_sym_unsigned] = ACTIONS(4050), + [anon_sym_long] = ACTIONS(4050), + [anon_sym_short] = ACTIONS(4050), + [anon_sym_static] = ACTIONS(4050), + [anon_sym_EQ] = ACTIONS(4050), + [anon_sym_ATautoreleasepool] = ACTIONS(4052), + [anon_sym_auto] = ACTIONS(4050), + [anon_sym_register] = ACTIONS(4050), + [anon_sym_inline] = ACTIONS(4050), + [anon_sym___inline] = ACTIONS(4050), + [anon_sym___inline__] = ACTIONS(4050), + [anon_sym___forceinline] = ACTIONS(4050), + [anon_sym_thread_local] = ACTIONS(4050), + [anon_sym___thread] = ACTIONS(4050), + [anon_sym_CG_EXTERN] = ACTIONS(4050), + [anon_sym_CG_INLINE] = ACTIONS(4050), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4050), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4050), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4050), + [anon_sym_IBOutlet] = ACTIONS(4050), + [anon_sym_IBInspectable] = ACTIONS(4050), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4050), + [anon_sym_NS_INLINE] = ACTIONS(4050), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4050), + [anon_sym_OBJC_EXPORT] = ACTIONS(4050), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4050), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4050), + [anon_sym_const] = ACTIONS(4050), + [anon_sym_constexpr] = ACTIONS(4050), + [anon_sym_volatile] = ACTIONS(4050), + [anon_sym_restrict] = ACTIONS(4050), + [anon_sym___restrict__] = ACTIONS(4050), + [anon_sym__Atomic] = ACTIONS(4050), + [anon_sym__Noreturn] = ACTIONS(4050), + [anon_sym__Nonnull] = ACTIONS(4050), + [anon_sym_nullable] = ACTIONS(4050), + [anon_sym__Complex] = ACTIONS(4050), + [anon_sym__Nullable] = ACTIONS(4050), + [anon_sym__Nullable_result] = ACTIONS(4050), + [anon_sym__Null_unspecified] = ACTIONS(4050), + [anon_sym___autoreleasing] = ACTIONS(4050), + [anon_sym___block] = ACTIONS(4050), + [anon_sym___bridge] = ACTIONS(4050), + [anon_sym___bridge_retained] = ACTIONS(4050), + [anon_sym___bridge_transfer] = ACTIONS(4050), + [anon_sym___complex] = ACTIONS(4050), + [anon_sym___const] = ACTIONS(4050), + [anon_sym___imag] = ACTIONS(4050), + [anon_sym___kindof] = ACTIONS(4050), + [anon_sym___nonnull] = ACTIONS(4050), + [anon_sym___nullable] = ACTIONS(4050), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4050), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4050), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4050), + [anon_sym___real] = ACTIONS(4050), + [anon_sym___strong] = ACTIONS(4050), + [anon_sym___unsafe_unretained] = ACTIONS(4050), + [anon_sym___unused] = ACTIONS(4050), + [anon_sym___weak] = ACTIONS(4050), + [anon_sym_alignas] = ACTIONS(4050), + [anon_sym__Alignas] = ACTIONS(4050), + [sym_primitive_type] = ACTIONS(4050), + [anon_sym_enum] = ACTIONS(4050), + [anon_sym_COLON] = ACTIONS(4052), + [anon_sym_struct] = ACTIONS(4050), + [anon_sym_union] = ACTIONS(4050), + [anon_sym_QMARK] = ACTIONS(4052), + [anon_sym_STAR_EQ] = ACTIONS(4052), + [anon_sym_SLASH_EQ] = ACTIONS(4052), + [anon_sym_PERCENT_EQ] = ACTIONS(4052), + [anon_sym_PLUS_EQ] = ACTIONS(4052), + [anon_sym_DASH_EQ] = ACTIONS(4052), + [anon_sym_LT_LT_EQ] = ACTIONS(4052), + [anon_sym_GT_GT_EQ] = ACTIONS(4052), + [anon_sym_AMP_EQ] = ACTIONS(4052), + [anon_sym_CARET_EQ] = ACTIONS(4052), + [anon_sym_PIPE_EQ] = ACTIONS(4052), + [anon_sym_DASH_DASH] = ACTIONS(4052), + [anon_sym_PLUS_PLUS] = ACTIONS(4052), + [anon_sym_DOT] = ACTIONS(4050), + [anon_sym_DASH_GT] = ACTIONS(4052), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4050), + [anon_sym___typeof] = ACTIONS(4050), + [anon_sym_typeof] = ACTIONS(4050), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4050), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4050), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4050), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4050), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4050), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4050), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4050), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4050), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4050), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4050), + [anon_sym_NS_AVAILABLE] = ACTIONS(4050), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4050), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4050), + [anon_sym_API_AVAILABLE] = ACTIONS(4050), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4050), + [anon_sym_API_DEPRECATED] = ACTIONS(4050), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4050), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4050), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4050), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4050), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4050), + [anon_sym___deprecated_msg] = ACTIONS(4050), + [anon_sym___deprecated_enum_msg] = ACTIONS(4050), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4050), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4050), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4050), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4050), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4050), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4050), + [anon_sym_BOOL] = ACTIONS(4050), + [anon_sym_IMP] = ACTIONS(4050), + [anon_sym_SEL] = ACTIONS(4050), + [anon_sym_Class] = ACTIONS(4050), + [anon_sym_id] = ACTIONS(4050), + }, + [1460] = { + [sym_identifier] = ACTIONS(4054), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4056), + [anon_sym_COMMA] = ACTIONS(4056), + [anon_sym_RPAREN] = ACTIONS(4056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4056), + [anon_sym_LPAREN2] = ACTIONS(4056), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_STAR] = ACTIONS(4054), + [anon_sym_SLASH] = ACTIONS(4054), + [anon_sym_PERCENT] = ACTIONS(4054), + [anon_sym_PIPE_PIPE] = ACTIONS(4056), + [anon_sym_AMP_AMP] = ACTIONS(4056), + [anon_sym_PIPE] = ACTIONS(4054), + [anon_sym_CARET] = ACTIONS(4054), + [anon_sym_AMP] = ACTIONS(4054), + [anon_sym_EQ_EQ] = ACTIONS(4056), + [anon_sym_BANG_EQ] = ACTIONS(4056), + [anon_sym_GT] = ACTIONS(4054), + [anon_sym_GT_EQ] = ACTIONS(4056), + [anon_sym_LT_EQ] = ACTIONS(4056), + [anon_sym_LT] = ACTIONS(4054), + [anon_sym_LT_LT] = ACTIONS(4054), + [anon_sym_GT_GT] = ACTIONS(4054), + [anon_sym_SEMI] = ACTIONS(4056), + [anon_sym___extension__] = ACTIONS(4054), + [anon_sym_extern] = ACTIONS(4054), + [anon_sym___attribute__] = ACTIONS(4054), + [anon_sym___attribute] = ACTIONS(4054), + [anon_sym_noreturn] = ACTIONS(4054), + [anon_sym_LBRACK] = ACTIONS(4056), + [anon_sym_RBRACK] = ACTIONS(4056), + [anon_sym___declspec] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4056), + [anon_sym_RBRACE] = ACTIONS(4056), + [anon_sym_signed] = ACTIONS(4054), + [anon_sym_unsigned] = ACTIONS(4054), + [anon_sym_long] = ACTIONS(4054), + [anon_sym_short] = ACTIONS(4054), + [anon_sym_static] = ACTIONS(4054), + [anon_sym_EQ] = ACTIONS(4054), + [anon_sym_ATautoreleasepool] = ACTIONS(4056), + [anon_sym_auto] = ACTIONS(4054), + [anon_sym_register] = ACTIONS(4054), + [anon_sym_inline] = ACTIONS(4054), + [anon_sym___inline] = ACTIONS(4054), + [anon_sym___inline__] = ACTIONS(4054), + [anon_sym___forceinline] = ACTIONS(4054), + [anon_sym_thread_local] = ACTIONS(4054), + [anon_sym___thread] = ACTIONS(4054), + [anon_sym_CG_EXTERN] = ACTIONS(4054), + [anon_sym_CG_INLINE] = ACTIONS(4054), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4054), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4054), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4054), + [anon_sym_IBOutlet] = ACTIONS(4054), + [anon_sym_IBInspectable] = ACTIONS(4054), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4054), + [anon_sym_NS_INLINE] = ACTIONS(4054), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4054), + [anon_sym_OBJC_EXPORT] = ACTIONS(4054), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4054), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4054), + [anon_sym_const] = ACTIONS(4054), + [anon_sym_constexpr] = ACTIONS(4054), + [anon_sym_volatile] = ACTIONS(4054), + [anon_sym_restrict] = ACTIONS(4054), + [anon_sym___restrict__] = ACTIONS(4054), + [anon_sym__Atomic] = ACTIONS(4054), + [anon_sym__Noreturn] = ACTIONS(4054), + [anon_sym__Nonnull] = ACTIONS(4054), + [anon_sym_nullable] = ACTIONS(4054), + [anon_sym__Complex] = ACTIONS(4054), + [anon_sym__Nullable] = ACTIONS(4054), + [anon_sym__Nullable_result] = ACTIONS(4054), + [anon_sym__Null_unspecified] = ACTIONS(4054), + [anon_sym___autoreleasing] = ACTIONS(4054), + [anon_sym___block] = ACTIONS(4054), + [anon_sym___bridge] = ACTIONS(4054), + [anon_sym___bridge_retained] = ACTIONS(4054), + [anon_sym___bridge_transfer] = ACTIONS(4054), + [anon_sym___complex] = ACTIONS(4054), + [anon_sym___const] = ACTIONS(4054), + [anon_sym___imag] = ACTIONS(4054), + [anon_sym___kindof] = ACTIONS(4054), + [anon_sym___nonnull] = ACTIONS(4054), + [anon_sym___nullable] = ACTIONS(4054), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4054), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4054), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4054), + [anon_sym___real] = ACTIONS(4054), + [anon_sym___strong] = ACTIONS(4054), + [anon_sym___unsafe_unretained] = ACTIONS(4054), + [anon_sym___unused] = ACTIONS(4054), + [anon_sym___weak] = ACTIONS(4054), + [anon_sym_alignas] = ACTIONS(4054), + [anon_sym__Alignas] = ACTIONS(4054), + [sym_primitive_type] = ACTIONS(4054), + [anon_sym_enum] = ACTIONS(4054), + [anon_sym_COLON] = ACTIONS(4056), + [anon_sym_struct] = ACTIONS(4054), + [anon_sym_union] = ACTIONS(4054), + [anon_sym_QMARK] = ACTIONS(4056), + [anon_sym_STAR_EQ] = ACTIONS(4056), + [anon_sym_SLASH_EQ] = ACTIONS(4056), + [anon_sym_PERCENT_EQ] = ACTIONS(4056), + [anon_sym_PLUS_EQ] = ACTIONS(4056), + [anon_sym_DASH_EQ] = ACTIONS(4056), + [anon_sym_LT_LT_EQ] = ACTIONS(4056), + [anon_sym_GT_GT_EQ] = ACTIONS(4056), + [anon_sym_AMP_EQ] = ACTIONS(4056), + [anon_sym_CARET_EQ] = ACTIONS(4056), + [anon_sym_PIPE_EQ] = ACTIONS(4056), + [anon_sym_DASH_DASH] = ACTIONS(4056), + [anon_sym_PLUS_PLUS] = ACTIONS(4056), + [anon_sym_DOT] = ACTIONS(4054), + [anon_sym_DASH_GT] = ACTIONS(4056), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4054), + [anon_sym___typeof] = ACTIONS(4054), + [anon_sym_typeof] = ACTIONS(4054), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4054), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4054), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4054), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4054), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4054), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4054), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4054), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4054), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4054), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4054), + [anon_sym_NS_AVAILABLE] = ACTIONS(4054), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4054), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4054), + [anon_sym_API_AVAILABLE] = ACTIONS(4054), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4054), + [anon_sym_API_DEPRECATED] = ACTIONS(4054), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4054), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4054), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4054), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4054), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4054), + [anon_sym___deprecated_msg] = ACTIONS(4054), + [anon_sym___deprecated_enum_msg] = ACTIONS(4054), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4054), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4054), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4054), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4054), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4054), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4054), + [anon_sym_BOOL] = ACTIONS(4054), + [anon_sym_IMP] = ACTIONS(4054), + [anon_sym_SEL] = ACTIONS(4054), + [anon_sym_Class] = ACTIONS(4054), + [anon_sym_id] = ACTIONS(4054), + }, + [1461] = { + [sym_identifier] = ACTIONS(4058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4060), + [anon_sym_COMMA] = ACTIONS(4060), + [anon_sym_RPAREN] = ACTIONS(4060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4060), + [anon_sym_LPAREN2] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4058), + [anon_sym_PLUS] = ACTIONS(4058), + [anon_sym_STAR] = ACTIONS(4058), + [anon_sym_SLASH] = ACTIONS(4058), + [anon_sym_PERCENT] = ACTIONS(4058), + [anon_sym_PIPE_PIPE] = ACTIONS(4060), + [anon_sym_AMP_AMP] = ACTIONS(4060), + [anon_sym_PIPE] = ACTIONS(4058), + [anon_sym_CARET] = ACTIONS(4058), + [anon_sym_AMP] = ACTIONS(4058), + [anon_sym_EQ_EQ] = ACTIONS(4060), + [anon_sym_BANG_EQ] = ACTIONS(4060), + [anon_sym_GT] = ACTIONS(4058), + [anon_sym_GT_EQ] = ACTIONS(4060), + [anon_sym_LT_EQ] = ACTIONS(4060), + [anon_sym_LT] = ACTIONS(4058), + [anon_sym_LT_LT] = ACTIONS(4058), + [anon_sym_GT_GT] = ACTIONS(4058), + [anon_sym_SEMI] = ACTIONS(4060), + [anon_sym___extension__] = ACTIONS(4058), + [anon_sym_extern] = ACTIONS(4058), + [anon_sym___attribute__] = ACTIONS(4058), + [anon_sym___attribute] = ACTIONS(4058), + [anon_sym_noreturn] = ACTIONS(4058), + [anon_sym_LBRACK] = ACTIONS(4060), + [anon_sym_RBRACK] = ACTIONS(4060), + [anon_sym___declspec] = ACTIONS(4058), + [anon_sym_LBRACE] = ACTIONS(4060), + [anon_sym_RBRACE] = ACTIONS(4060), + [anon_sym_signed] = ACTIONS(4058), + [anon_sym_unsigned] = ACTIONS(4058), + [anon_sym_long] = ACTIONS(4058), + [anon_sym_short] = ACTIONS(4058), + [anon_sym_static] = ACTIONS(4058), + [anon_sym_EQ] = ACTIONS(4058), + [anon_sym_ATautoreleasepool] = ACTIONS(4060), + [anon_sym_auto] = ACTIONS(4058), + [anon_sym_register] = ACTIONS(4058), + [anon_sym_inline] = ACTIONS(4058), + [anon_sym___inline] = ACTIONS(4058), + [anon_sym___inline__] = ACTIONS(4058), + [anon_sym___forceinline] = ACTIONS(4058), + [anon_sym_thread_local] = ACTIONS(4058), + [anon_sym___thread] = ACTIONS(4058), + [anon_sym_CG_EXTERN] = ACTIONS(4058), + [anon_sym_CG_INLINE] = ACTIONS(4058), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4058), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4058), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4058), + [anon_sym_IBOutlet] = ACTIONS(4058), + [anon_sym_IBInspectable] = ACTIONS(4058), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4058), + [anon_sym_NS_INLINE] = ACTIONS(4058), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4058), + [anon_sym_OBJC_EXPORT] = ACTIONS(4058), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4058), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4058), + [anon_sym_const] = ACTIONS(4058), + [anon_sym_constexpr] = ACTIONS(4058), + [anon_sym_volatile] = ACTIONS(4058), + [anon_sym_restrict] = ACTIONS(4058), + [anon_sym___restrict__] = ACTIONS(4058), + [anon_sym__Atomic] = ACTIONS(4058), + [anon_sym__Noreturn] = ACTIONS(4058), + [anon_sym__Nonnull] = ACTIONS(4058), + [anon_sym_nullable] = ACTIONS(4058), + [anon_sym__Complex] = ACTIONS(4058), + [anon_sym__Nullable] = ACTIONS(4058), + [anon_sym__Nullable_result] = ACTIONS(4058), + [anon_sym__Null_unspecified] = ACTIONS(4058), + [anon_sym___autoreleasing] = ACTIONS(4058), + [anon_sym___block] = ACTIONS(4058), + [anon_sym___bridge] = ACTIONS(4058), + [anon_sym___bridge_retained] = ACTIONS(4058), + [anon_sym___bridge_transfer] = ACTIONS(4058), + [anon_sym___complex] = ACTIONS(4058), + [anon_sym___const] = ACTIONS(4058), + [anon_sym___imag] = ACTIONS(4058), + [anon_sym___kindof] = ACTIONS(4058), + [anon_sym___nonnull] = ACTIONS(4058), + [anon_sym___nullable] = ACTIONS(4058), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4058), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4058), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4058), + [anon_sym___real] = ACTIONS(4058), + [anon_sym___strong] = ACTIONS(4058), + [anon_sym___unsafe_unretained] = ACTIONS(4058), + [anon_sym___unused] = ACTIONS(4058), + [anon_sym___weak] = ACTIONS(4058), + [anon_sym_alignas] = ACTIONS(4058), + [anon_sym__Alignas] = ACTIONS(4058), + [sym_primitive_type] = ACTIONS(4058), + [anon_sym_enum] = ACTIONS(4058), + [anon_sym_COLON] = ACTIONS(4060), + [anon_sym_struct] = ACTIONS(4058), + [anon_sym_union] = ACTIONS(4058), + [anon_sym_QMARK] = ACTIONS(4060), + [anon_sym_STAR_EQ] = ACTIONS(4060), + [anon_sym_SLASH_EQ] = ACTIONS(4060), + [anon_sym_PERCENT_EQ] = ACTIONS(4060), + [anon_sym_PLUS_EQ] = ACTIONS(4060), + [anon_sym_DASH_EQ] = ACTIONS(4060), + [anon_sym_LT_LT_EQ] = ACTIONS(4060), + [anon_sym_GT_GT_EQ] = ACTIONS(4060), + [anon_sym_AMP_EQ] = ACTIONS(4060), + [anon_sym_CARET_EQ] = ACTIONS(4060), + [anon_sym_PIPE_EQ] = ACTIONS(4060), + [anon_sym_DASH_DASH] = ACTIONS(4060), + [anon_sym_PLUS_PLUS] = ACTIONS(4060), + [anon_sym_DOT] = ACTIONS(4058), + [anon_sym_DASH_GT] = ACTIONS(4060), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4058), + [anon_sym___typeof] = ACTIONS(4058), + [anon_sym_typeof] = ACTIONS(4058), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4058), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4058), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4058), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4058), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4058), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4058), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4058), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4058), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4058), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4058), + [anon_sym_NS_AVAILABLE] = ACTIONS(4058), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4058), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4058), + [anon_sym_API_AVAILABLE] = ACTIONS(4058), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4058), + [anon_sym_API_DEPRECATED] = ACTIONS(4058), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4058), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4058), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4058), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4058), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4058), + [anon_sym___deprecated_msg] = ACTIONS(4058), + [anon_sym___deprecated_enum_msg] = ACTIONS(4058), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4058), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4058), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4058), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4058), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4058), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4058), + [anon_sym_BOOL] = ACTIONS(4058), + [anon_sym_IMP] = ACTIONS(4058), + [anon_sym_SEL] = ACTIONS(4058), + [anon_sym_Class] = ACTIONS(4058), + [anon_sym_id] = ACTIONS(4058), + }, + [1462] = { + [sym_identifier] = ACTIONS(4062), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4064), + [anon_sym_COMMA] = ACTIONS(4064), + [anon_sym_RPAREN] = ACTIONS(4064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4064), + [anon_sym_LPAREN2] = ACTIONS(4064), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4062), + [anon_sym_SLASH] = ACTIONS(4062), + [anon_sym_PERCENT] = ACTIONS(4062), + [anon_sym_PIPE_PIPE] = ACTIONS(4064), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_PIPE] = ACTIONS(4062), + [anon_sym_CARET] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4062), + [anon_sym_EQ_EQ] = ACTIONS(4064), + [anon_sym_BANG_EQ] = ACTIONS(4064), + [anon_sym_GT] = ACTIONS(4062), + [anon_sym_GT_EQ] = ACTIONS(4064), + [anon_sym_LT_EQ] = ACTIONS(4064), + [anon_sym_LT] = ACTIONS(4062), + [anon_sym_LT_LT] = ACTIONS(4062), + [anon_sym_GT_GT] = ACTIONS(4062), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4062), + [anon_sym_extern] = ACTIONS(4062), + [anon_sym___attribute__] = ACTIONS(4062), + [anon_sym___attribute] = ACTIONS(4062), + [anon_sym_noreturn] = ACTIONS(4062), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_RBRACK] = ACTIONS(4064), + [anon_sym___declspec] = ACTIONS(4062), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_RBRACE] = ACTIONS(4064), + [anon_sym_signed] = ACTIONS(4062), + [anon_sym_unsigned] = ACTIONS(4062), + [anon_sym_long] = ACTIONS(4062), + [anon_sym_short] = ACTIONS(4062), + [anon_sym_static] = ACTIONS(4062), + [anon_sym_EQ] = ACTIONS(4062), + [anon_sym_ATautoreleasepool] = ACTIONS(4064), + [anon_sym_auto] = ACTIONS(4062), + [anon_sym_register] = ACTIONS(4062), + [anon_sym_inline] = ACTIONS(4062), + [anon_sym___inline] = ACTIONS(4062), + [anon_sym___inline__] = ACTIONS(4062), + [anon_sym___forceinline] = ACTIONS(4062), + [anon_sym_thread_local] = ACTIONS(4062), + [anon_sym___thread] = ACTIONS(4062), + [anon_sym_CG_EXTERN] = ACTIONS(4062), + [anon_sym_CG_INLINE] = ACTIONS(4062), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4062), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4062), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4062), + [anon_sym_IBOutlet] = ACTIONS(4062), + [anon_sym_IBInspectable] = ACTIONS(4062), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4062), + [anon_sym_NS_INLINE] = ACTIONS(4062), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4062), + [anon_sym_OBJC_EXPORT] = ACTIONS(4062), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4062), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4062), + [anon_sym_const] = ACTIONS(4062), + [anon_sym_constexpr] = ACTIONS(4062), + [anon_sym_volatile] = ACTIONS(4062), + [anon_sym_restrict] = ACTIONS(4062), + [anon_sym___restrict__] = ACTIONS(4062), + [anon_sym__Atomic] = ACTIONS(4062), + [anon_sym__Noreturn] = ACTIONS(4062), + [anon_sym__Nonnull] = ACTIONS(4062), + [anon_sym_nullable] = ACTIONS(4062), + [anon_sym__Complex] = ACTIONS(4062), + [anon_sym__Nullable] = ACTIONS(4062), + [anon_sym__Nullable_result] = ACTIONS(4062), + [anon_sym__Null_unspecified] = ACTIONS(4062), + [anon_sym___autoreleasing] = ACTIONS(4062), + [anon_sym___block] = ACTIONS(4062), + [anon_sym___bridge] = ACTIONS(4062), + [anon_sym___bridge_retained] = ACTIONS(4062), + [anon_sym___bridge_transfer] = ACTIONS(4062), + [anon_sym___complex] = ACTIONS(4062), + [anon_sym___const] = ACTIONS(4062), + [anon_sym___imag] = ACTIONS(4062), + [anon_sym___kindof] = ACTIONS(4062), + [anon_sym___nonnull] = ACTIONS(4062), + [anon_sym___nullable] = ACTIONS(4062), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4062), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4062), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4062), + [anon_sym___real] = ACTIONS(4062), + [anon_sym___strong] = ACTIONS(4062), + [anon_sym___unsafe_unretained] = ACTIONS(4062), + [anon_sym___unused] = ACTIONS(4062), + [anon_sym___weak] = ACTIONS(4062), + [anon_sym_alignas] = ACTIONS(4062), + [anon_sym__Alignas] = ACTIONS(4062), + [sym_primitive_type] = ACTIONS(4062), + [anon_sym_enum] = ACTIONS(4062), + [anon_sym_COLON] = ACTIONS(4064), + [anon_sym_struct] = ACTIONS(4062), + [anon_sym_union] = ACTIONS(4062), + [anon_sym_QMARK] = ACTIONS(4064), + [anon_sym_STAR_EQ] = ACTIONS(4064), + [anon_sym_SLASH_EQ] = ACTIONS(4064), + [anon_sym_PERCENT_EQ] = ACTIONS(4064), + [anon_sym_PLUS_EQ] = ACTIONS(4064), + [anon_sym_DASH_EQ] = ACTIONS(4064), + [anon_sym_LT_LT_EQ] = ACTIONS(4064), + [anon_sym_GT_GT_EQ] = ACTIONS(4064), + [anon_sym_AMP_EQ] = ACTIONS(4064), + [anon_sym_CARET_EQ] = ACTIONS(4064), + [anon_sym_PIPE_EQ] = ACTIONS(4064), + [anon_sym_DASH_DASH] = ACTIONS(4064), + [anon_sym_PLUS_PLUS] = ACTIONS(4064), + [anon_sym_DOT] = ACTIONS(4062), + [anon_sym_DASH_GT] = ACTIONS(4064), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4062), + [anon_sym___typeof] = ACTIONS(4062), + [anon_sym_typeof] = ACTIONS(4062), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4062), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4062), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4062), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4062), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4062), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4062), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4062), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4062), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4062), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4062), + [anon_sym_NS_AVAILABLE] = ACTIONS(4062), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4062), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4062), + [anon_sym_API_AVAILABLE] = ACTIONS(4062), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4062), + [anon_sym_API_DEPRECATED] = ACTIONS(4062), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4062), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4062), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4062), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4062), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4062), + [anon_sym___deprecated_msg] = ACTIONS(4062), + [anon_sym___deprecated_enum_msg] = ACTIONS(4062), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4062), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4062), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4062), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4062), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4062), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4062), + [anon_sym_BOOL] = ACTIONS(4062), + [anon_sym_IMP] = ACTIONS(4062), + [anon_sym_SEL] = ACTIONS(4062), + [anon_sym_Class] = ACTIONS(4062), + [anon_sym_id] = ACTIONS(4062), + }, + [1463] = { + [sym_identifier] = ACTIONS(4066), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4068), + [anon_sym_COMMA] = ACTIONS(4068), + [anon_sym_RPAREN] = ACTIONS(4068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4068), + [anon_sym_LPAREN2] = ACTIONS(4068), + [anon_sym_DASH] = ACTIONS(4066), + [anon_sym_PLUS] = ACTIONS(4066), + [anon_sym_STAR] = ACTIONS(4066), + [anon_sym_SLASH] = ACTIONS(4066), + [anon_sym_PERCENT] = ACTIONS(4066), + [anon_sym_PIPE_PIPE] = ACTIONS(4068), + [anon_sym_AMP_AMP] = ACTIONS(4068), + [anon_sym_PIPE] = ACTIONS(4066), + [anon_sym_CARET] = ACTIONS(4066), + [anon_sym_AMP] = ACTIONS(4066), + [anon_sym_EQ_EQ] = ACTIONS(4068), + [anon_sym_BANG_EQ] = ACTIONS(4068), + [anon_sym_GT] = ACTIONS(4066), + [anon_sym_GT_EQ] = ACTIONS(4068), + [anon_sym_LT_EQ] = ACTIONS(4068), + [anon_sym_LT] = ACTIONS(4066), + [anon_sym_LT_LT] = ACTIONS(4066), + [anon_sym_GT_GT] = ACTIONS(4066), + [anon_sym_SEMI] = ACTIONS(4068), + [anon_sym___extension__] = ACTIONS(4066), + [anon_sym_extern] = ACTIONS(4066), + [anon_sym___attribute__] = ACTIONS(4066), + [anon_sym___attribute] = ACTIONS(4066), + [anon_sym_noreturn] = ACTIONS(4066), + [anon_sym_LBRACK] = ACTIONS(4068), + [anon_sym_RBRACK] = ACTIONS(4068), + [anon_sym___declspec] = ACTIONS(4066), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_RBRACE] = ACTIONS(4068), + [anon_sym_signed] = ACTIONS(4066), + [anon_sym_unsigned] = ACTIONS(4066), + [anon_sym_long] = ACTIONS(4066), + [anon_sym_short] = ACTIONS(4066), + [anon_sym_static] = ACTIONS(4066), + [anon_sym_EQ] = ACTIONS(4066), + [anon_sym_ATautoreleasepool] = ACTIONS(4068), + [anon_sym_auto] = ACTIONS(4066), + [anon_sym_register] = ACTIONS(4066), + [anon_sym_inline] = ACTIONS(4066), + [anon_sym___inline] = ACTIONS(4066), + [anon_sym___inline__] = ACTIONS(4066), + [anon_sym___forceinline] = ACTIONS(4066), + [anon_sym_thread_local] = ACTIONS(4066), + [anon_sym___thread] = ACTIONS(4066), + [anon_sym_CG_EXTERN] = ACTIONS(4066), + [anon_sym_CG_INLINE] = ACTIONS(4066), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4066), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4066), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4066), + [anon_sym_IBOutlet] = ACTIONS(4066), + [anon_sym_IBInspectable] = ACTIONS(4066), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4066), + [anon_sym_NS_INLINE] = ACTIONS(4066), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4066), + [anon_sym_OBJC_EXPORT] = ACTIONS(4066), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4066), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4066), + [anon_sym_const] = ACTIONS(4066), + [anon_sym_constexpr] = ACTIONS(4066), + [anon_sym_volatile] = ACTIONS(4066), + [anon_sym_restrict] = ACTIONS(4066), + [anon_sym___restrict__] = ACTIONS(4066), + [anon_sym__Atomic] = ACTIONS(4066), + [anon_sym__Noreturn] = ACTIONS(4066), + [anon_sym__Nonnull] = ACTIONS(4066), + [anon_sym_nullable] = ACTIONS(4066), + [anon_sym__Complex] = ACTIONS(4066), + [anon_sym__Nullable] = ACTIONS(4066), + [anon_sym__Nullable_result] = ACTIONS(4066), + [anon_sym__Null_unspecified] = ACTIONS(4066), + [anon_sym___autoreleasing] = ACTIONS(4066), + [anon_sym___block] = ACTIONS(4066), + [anon_sym___bridge] = ACTIONS(4066), + [anon_sym___bridge_retained] = ACTIONS(4066), + [anon_sym___bridge_transfer] = ACTIONS(4066), + [anon_sym___complex] = ACTIONS(4066), + [anon_sym___const] = ACTIONS(4066), + [anon_sym___imag] = ACTIONS(4066), + [anon_sym___kindof] = ACTIONS(4066), + [anon_sym___nonnull] = ACTIONS(4066), + [anon_sym___nullable] = ACTIONS(4066), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4066), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4066), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4066), + [anon_sym___real] = ACTIONS(4066), + [anon_sym___strong] = ACTIONS(4066), + [anon_sym___unsafe_unretained] = ACTIONS(4066), + [anon_sym___unused] = ACTIONS(4066), + [anon_sym___weak] = ACTIONS(4066), + [anon_sym_alignas] = ACTIONS(4066), + [anon_sym__Alignas] = ACTIONS(4066), + [sym_primitive_type] = ACTIONS(4066), + [anon_sym_enum] = ACTIONS(4066), + [anon_sym_COLON] = ACTIONS(4068), + [anon_sym_struct] = ACTIONS(4066), + [anon_sym_union] = ACTIONS(4066), + [anon_sym_QMARK] = ACTIONS(4068), + [anon_sym_STAR_EQ] = ACTIONS(4068), + [anon_sym_SLASH_EQ] = ACTIONS(4068), + [anon_sym_PERCENT_EQ] = ACTIONS(4068), + [anon_sym_PLUS_EQ] = ACTIONS(4068), + [anon_sym_DASH_EQ] = ACTIONS(4068), + [anon_sym_LT_LT_EQ] = ACTIONS(4068), + [anon_sym_GT_GT_EQ] = ACTIONS(4068), + [anon_sym_AMP_EQ] = ACTIONS(4068), + [anon_sym_CARET_EQ] = ACTIONS(4068), + [anon_sym_PIPE_EQ] = ACTIONS(4068), + [anon_sym_DASH_DASH] = ACTIONS(4068), + [anon_sym_PLUS_PLUS] = ACTIONS(4068), + [anon_sym_DOT] = ACTIONS(4066), + [anon_sym_DASH_GT] = ACTIONS(4068), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4066), + [anon_sym___typeof] = ACTIONS(4066), + [anon_sym_typeof] = ACTIONS(4066), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4066), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4066), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4066), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4066), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4066), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4066), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4066), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4066), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4066), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4066), + [anon_sym_NS_AVAILABLE] = ACTIONS(4066), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4066), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4066), + [anon_sym_API_AVAILABLE] = ACTIONS(4066), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4066), + [anon_sym_API_DEPRECATED] = ACTIONS(4066), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4066), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4066), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4066), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4066), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4066), + [anon_sym___deprecated_msg] = ACTIONS(4066), + [anon_sym___deprecated_enum_msg] = ACTIONS(4066), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4066), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4066), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4066), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4066), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4066), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4066), + [anon_sym_BOOL] = ACTIONS(4066), + [anon_sym_IMP] = ACTIONS(4066), + [anon_sym_SEL] = ACTIONS(4066), + [anon_sym_Class] = ACTIONS(4066), + [anon_sym_id] = ACTIONS(4066), + }, + [1464] = { + [sym_identifier] = ACTIONS(4070), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4072), + [anon_sym_RPAREN] = ACTIONS(4072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4072), + [anon_sym_LPAREN2] = ACTIONS(4072), + [anon_sym_DASH] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(4070), + [anon_sym_STAR] = ACTIONS(4070), + [anon_sym_SLASH] = ACTIONS(4070), + [anon_sym_PERCENT] = ACTIONS(4070), + [anon_sym_PIPE_PIPE] = ACTIONS(4072), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE] = ACTIONS(4070), + [anon_sym_CARET] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4070), + [anon_sym_EQ_EQ] = ACTIONS(4072), + [anon_sym_BANG_EQ] = ACTIONS(4072), + [anon_sym_GT] = ACTIONS(4070), + [anon_sym_GT_EQ] = ACTIONS(4072), + [anon_sym_LT_EQ] = ACTIONS(4072), + [anon_sym_LT] = ACTIONS(4070), + [anon_sym_LT_LT] = ACTIONS(4070), + [anon_sym_GT_GT] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym___extension__] = ACTIONS(4070), + [anon_sym_extern] = ACTIONS(4070), + [anon_sym___attribute__] = ACTIONS(4070), + [anon_sym___attribute] = ACTIONS(4070), + [anon_sym_noreturn] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_RBRACK] = ACTIONS(4072), + [anon_sym___declspec] = ACTIONS(4070), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_RBRACE] = ACTIONS(4072), + [anon_sym_signed] = ACTIONS(4070), + [anon_sym_unsigned] = ACTIONS(4070), + [anon_sym_long] = ACTIONS(4070), + [anon_sym_short] = ACTIONS(4070), + [anon_sym_static] = ACTIONS(4070), + [anon_sym_EQ] = ACTIONS(4070), + [anon_sym_ATautoreleasepool] = ACTIONS(4072), + [anon_sym_auto] = ACTIONS(4070), + [anon_sym_register] = ACTIONS(4070), + [anon_sym_inline] = ACTIONS(4070), + [anon_sym___inline] = ACTIONS(4070), + [anon_sym___inline__] = ACTIONS(4070), + [anon_sym___forceinline] = ACTIONS(4070), + [anon_sym_thread_local] = ACTIONS(4070), + [anon_sym___thread] = ACTIONS(4070), + [anon_sym_CG_EXTERN] = ACTIONS(4070), + [anon_sym_CG_INLINE] = ACTIONS(4070), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4070), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4070), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4070), + [anon_sym_IBOutlet] = ACTIONS(4070), + [anon_sym_IBInspectable] = ACTIONS(4070), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4070), + [anon_sym_NS_INLINE] = ACTIONS(4070), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4070), + [anon_sym_OBJC_EXPORT] = ACTIONS(4070), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4070), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4070), + [anon_sym_const] = ACTIONS(4070), + [anon_sym_constexpr] = ACTIONS(4070), + [anon_sym_volatile] = ACTIONS(4070), + [anon_sym_restrict] = ACTIONS(4070), + [anon_sym___restrict__] = ACTIONS(4070), + [anon_sym__Atomic] = ACTIONS(4070), + [anon_sym__Noreturn] = ACTIONS(4070), + [anon_sym__Nonnull] = ACTIONS(4070), + [anon_sym_nullable] = ACTIONS(4070), + [anon_sym__Complex] = ACTIONS(4070), + [anon_sym__Nullable] = ACTIONS(4070), + [anon_sym__Nullable_result] = ACTIONS(4070), + [anon_sym__Null_unspecified] = ACTIONS(4070), + [anon_sym___autoreleasing] = ACTIONS(4070), + [anon_sym___block] = ACTIONS(4070), + [anon_sym___bridge] = ACTIONS(4070), + [anon_sym___bridge_retained] = ACTIONS(4070), + [anon_sym___bridge_transfer] = ACTIONS(4070), + [anon_sym___complex] = ACTIONS(4070), + [anon_sym___const] = ACTIONS(4070), + [anon_sym___imag] = ACTIONS(4070), + [anon_sym___kindof] = ACTIONS(4070), + [anon_sym___nonnull] = ACTIONS(4070), + [anon_sym___nullable] = ACTIONS(4070), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4070), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4070), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4070), + [anon_sym___real] = ACTIONS(4070), + [anon_sym___strong] = ACTIONS(4070), + [anon_sym___unsafe_unretained] = ACTIONS(4070), + [anon_sym___unused] = ACTIONS(4070), + [anon_sym___weak] = ACTIONS(4070), + [anon_sym_alignas] = ACTIONS(4070), + [anon_sym__Alignas] = ACTIONS(4070), + [sym_primitive_type] = ACTIONS(4070), + [anon_sym_enum] = ACTIONS(4070), + [anon_sym_COLON] = ACTIONS(4072), + [anon_sym_struct] = ACTIONS(4070), + [anon_sym_union] = ACTIONS(4070), + [anon_sym_QMARK] = ACTIONS(4072), + [anon_sym_STAR_EQ] = ACTIONS(4072), + [anon_sym_SLASH_EQ] = ACTIONS(4072), + [anon_sym_PERCENT_EQ] = ACTIONS(4072), + [anon_sym_PLUS_EQ] = ACTIONS(4072), + [anon_sym_DASH_EQ] = ACTIONS(4072), + [anon_sym_LT_LT_EQ] = ACTIONS(4072), + [anon_sym_GT_GT_EQ] = ACTIONS(4072), + [anon_sym_AMP_EQ] = ACTIONS(4072), + [anon_sym_CARET_EQ] = ACTIONS(4072), + [anon_sym_PIPE_EQ] = ACTIONS(4072), + [anon_sym_DASH_DASH] = ACTIONS(4072), + [anon_sym_PLUS_PLUS] = ACTIONS(4072), + [anon_sym_DOT] = ACTIONS(4070), + [anon_sym_DASH_GT] = ACTIONS(4072), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4070), + [anon_sym___typeof] = ACTIONS(4070), + [anon_sym_typeof] = ACTIONS(4070), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4070), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4070), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4070), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4070), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4070), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4070), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4070), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4070), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4070), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4070), + [anon_sym_NS_AVAILABLE] = ACTIONS(4070), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4070), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4070), + [anon_sym_API_AVAILABLE] = ACTIONS(4070), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4070), + [anon_sym_API_DEPRECATED] = ACTIONS(4070), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4070), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4070), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4070), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4070), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4070), + [anon_sym___deprecated_msg] = ACTIONS(4070), + [anon_sym___deprecated_enum_msg] = ACTIONS(4070), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4070), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4070), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4070), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4070), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4070), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4070), + [anon_sym_BOOL] = ACTIONS(4070), + [anon_sym_IMP] = ACTIONS(4070), + [anon_sym_SEL] = ACTIONS(4070), + [anon_sym_Class] = ACTIONS(4070), + [anon_sym_id] = ACTIONS(4070), + }, + [1465] = { + [sym_identifier] = ACTIONS(4074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4076), + [anon_sym_COMMA] = ACTIONS(4076), + [anon_sym_LPAREN2] = ACTIONS(4076), + [anon_sym_DASH] = ACTIONS(4074), + [anon_sym_PLUS] = ACTIONS(4074), + [anon_sym_STAR] = ACTIONS(4074), + [anon_sym_SLASH] = ACTIONS(4074), + [anon_sym_PERCENT] = ACTIONS(4074), + [anon_sym_PIPE_PIPE] = ACTIONS(4076), + [anon_sym_AMP_AMP] = ACTIONS(4076), + [anon_sym_PIPE] = ACTIONS(4074), + [anon_sym_CARET] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4074), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_GT] = ACTIONS(4074), + [anon_sym_GT_EQ] = ACTIONS(4076), + [anon_sym_LT_EQ] = ACTIONS(4076), + [anon_sym_LT] = ACTIONS(4074), + [anon_sym_LT_LT] = ACTIONS(4074), + [anon_sym_GT_GT] = ACTIONS(4074), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym___extension__] = ACTIONS(4074), + [anon_sym_extern] = ACTIONS(4074), + [anon_sym___attribute__] = ACTIONS(4074), + [anon_sym___attribute] = ACTIONS(4074), + [anon_sym_noreturn] = ACTIONS(4074), + [anon_sym_LBRACK] = ACTIONS(4076), + [anon_sym___declspec] = ACTIONS(4074), + [anon_sym_LBRACE] = ACTIONS(4076), + [anon_sym_signed] = ACTIONS(4074), + [anon_sym_unsigned] = ACTIONS(4074), + [anon_sym_long] = ACTIONS(4074), + [anon_sym_short] = ACTIONS(4074), + [anon_sym_static] = ACTIONS(4074), + [anon_sym_EQ] = ACTIONS(4074), + [anon_sym_ATautoreleasepool] = ACTIONS(4076), + [anon_sym_auto] = ACTIONS(4074), + [anon_sym_register] = ACTIONS(4074), + [anon_sym_inline] = ACTIONS(4074), + [anon_sym___inline] = ACTIONS(4074), + [anon_sym___inline__] = ACTIONS(4074), + [anon_sym___forceinline] = ACTIONS(4074), + [anon_sym_thread_local] = ACTIONS(4074), + [anon_sym___thread] = ACTIONS(4074), + [anon_sym_CG_EXTERN] = ACTIONS(4074), + [anon_sym_CG_INLINE] = ACTIONS(4074), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4074), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4074), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4074), + [anon_sym_IBOutlet] = ACTIONS(4074), + [anon_sym_IBInspectable] = ACTIONS(4074), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4074), + [anon_sym_NS_INLINE] = ACTIONS(4074), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4074), + [anon_sym_OBJC_EXPORT] = ACTIONS(4074), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4074), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4074), + [anon_sym_const] = ACTIONS(4074), + [anon_sym_constexpr] = ACTIONS(4074), + [anon_sym_volatile] = ACTIONS(4074), + [anon_sym_restrict] = ACTIONS(4074), + [anon_sym___restrict__] = ACTIONS(4074), + [anon_sym__Atomic] = ACTIONS(4074), + [anon_sym__Noreturn] = ACTIONS(4074), + [anon_sym__Nonnull] = ACTIONS(4074), + [anon_sym_nullable] = ACTIONS(4074), + [anon_sym__Complex] = ACTIONS(4074), + [anon_sym__Nullable] = ACTIONS(4074), + [anon_sym__Nullable_result] = ACTIONS(4074), + [anon_sym__Null_unspecified] = ACTIONS(4074), + [anon_sym___autoreleasing] = ACTIONS(4074), + [anon_sym___block] = ACTIONS(4074), + [anon_sym___bridge] = ACTIONS(4074), + [anon_sym___bridge_retained] = ACTIONS(4074), + [anon_sym___bridge_transfer] = ACTIONS(4074), + [anon_sym___complex] = ACTIONS(4074), + [anon_sym___const] = ACTIONS(4074), + [anon_sym___imag] = ACTIONS(4074), + [anon_sym___kindof] = ACTIONS(4074), + [anon_sym___nonnull] = ACTIONS(4074), + [anon_sym___nullable] = ACTIONS(4074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4074), + [anon_sym___real] = ACTIONS(4074), + [anon_sym___strong] = ACTIONS(4074), + [anon_sym___unsafe_unretained] = ACTIONS(4074), + [anon_sym___unused] = ACTIONS(4074), + [anon_sym___weak] = ACTIONS(4074), + [anon_sym_alignas] = ACTIONS(4074), + [anon_sym__Alignas] = ACTIONS(4074), + [sym_primitive_type] = ACTIONS(4074), + [anon_sym_enum] = ACTIONS(4074), + [anon_sym_struct] = ACTIONS(4074), + [anon_sym_union] = ACTIONS(4074), + [anon_sym_QMARK] = ACTIONS(4076), + [anon_sym_STAR_EQ] = ACTIONS(4076), + [anon_sym_SLASH_EQ] = ACTIONS(4076), + [anon_sym_PERCENT_EQ] = ACTIONS(4076), + [anon_sym_PLUS_EQ] = ACTIONS(4076), + [anon_sym_DASH_EQ] = ACTIONS(4076), + [anon_sym_LT_LT_EQ] = ACTIONS(4076), + [anon_sym_GT_GT_EQ] = ACTIONS(4076), + [anon_sym_AMP_EQ] = ACTIONS(4076), + [anon_sym_CARET_EQ] = ACTIONS(4076), + [anon_sym_PIPE_EQ] = ACTIONS(4076), + [anon_sym_DASH_DASH] = ACTIONS(4076), + [anon_sym_PLUS_PLUS] = ACTIONS(4076), + [anon_sym_DOT] = ACTIONS(4074), + [anon_sym_DASH_GT] = ACTIONS(4076), + [anon_sym_AT] = ACTIONS(4074), + [anon_sym_DQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4076), + [anon_sym_u_DQUOTE] = ACTIONS(4076), + [anon_sym_U_DQUOTE] = ACTIONS(4076), + [anon_sym_u8_DQUOTE] = ACTIONS(4076), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4074), + [anon_sym___typeof] = ACTIONS(4074), + [anon_sym_typeof] = ACTIONS(4074), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4074), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4074), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4074), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4074), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4074), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4074), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4074), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4074), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4074), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4074), + [anon_sym_NS_AVAILABLE] = ACTIONS(4074), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4074), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4074), + [anon_sym_API_AVAILABLE] = ACTIONS(4074), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4074), + [anon_sym_API_DEPRECATED] = ACTIONS(4074), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4074), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4074), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4074), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4074), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4074), + [anon_sym___deprecated_msg] = ACTIONS(4074), + [anon_sym___deprecated_enum_msg] = ACTIONS(4074), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4074), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4074), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4074), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4074), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4074), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4074), + [anon_sym_BOOL] = ACTIONS(4074), + [anon_sym_IMP] = ACTIONS(4074), + [anon_sym_SEL] = ACTIONS(4074), + [anon_sym_Class] = ACTIONS(4074), + [anon_sym_id] = ACTIONS(4074), + }, + [1466] = { + [sym_identifier] = ACTIONS(4078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4080), + [anon_sym_COMMA] = ACTIONS(4080), + [anon_sym_RPAREN] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), + [anon_sym_LPAREN2] = ACTIONS(4080), + [anon_sym_DASH] = ACTIONS(4078), + [anon_sym_PLUS] = ACTIONS(4078), + [anon_sym_STAR] = ACTIONS(4078), + [anon_sym_SLASH] = ACTIONS(4078), + [anon_sym_PERCENT] = ACTIONS(4078), + [anon_sym_PIPE_PIPE] = ACTIONS(4080), + [anon_sym_AMP_AMP] = ACTIONS(4080), + [anon_sym_PIPE] = ACTIONS(4078), + [anon_sym_CARET] = ACTIONS(4078), + [anon_sym_AMP] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4080), + [anon_sym_BANG_EQ] = ACTIONS(4080), + [anon_sym_GT] = ACTIONS(4078), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_LT] = ACTIONS(4078), + [anon_sym_LT_LT] = ACTIONS(4078), + [anon_sym_GT_GT] = ACTIONS(4078), + [anon_sym_SEMI] = ACTIONS(4080), + [anon_sym___extension__] = ACTIONS(4078), + [anon_sym_extern] = ACTIONS(4078), + [anon_sym___attribute__] = ACTIONS(4078), + [anon_sym___attribute] = ACTIONS(4078), + [anon_sym_noreturn] = ACTIONS(4078), + [anon_sym_LBRACK] = ACTIONS(4080), + [anon_sym_RBRACK] = ACTIONS(4080), + [anon_sym___declspec] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4080), + [anon_sym_RBRACE] = ACTIONS(4080), + [anon_sym_signed] = ACTIONS(4078), + [anon_sym_unsigned] = ACTIONS(4078), + [anon_sym_long] = ACTIONS(4078), + [anon_sym_short] = ACTIONS(4078), + [anon_sym_static] = ACTIONS(4078), + [anon_sym_EQ] = ACTIONS(4078), + [anon_sym_ATautoreleasepool] = ACTIONS(4080), + [anon_sym_auto] = ACTIONS(4078), + [anon_sym_register] = ACTIONS(4078), + [anon_sym_inline] = ACTIONS(4078), + [anon_sym___inline] = ACTIONS(4078), + [anon_sym___inline__] = ACTIONS(4078), + [anon_sym___forceinline] = ACTIONS(4078), + [anon_sym_thread_local] = ACTIONS(4078), + [anon_sym___thread] = ACTIONS(4078), + [anon_sym_CG_EXTERN] = ACTIONS(4078), + [anon_sym_CG_INLINE] = ACTIONS(4078), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4078), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4078), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4078), + [anon_sym_IBOutlet] = ACTIONS(4078), + [anon_sym_IBInspectable] = ACTIONS(4078), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4078), + [anon_sym_NS_INLINE] = ACTIONS(4078), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4078), + [anon_sym_OBJC_EXPORT] = ACTIONS(4078), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4078), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4078), + [anon_sym_const] = ACTIONS(4078), + [anon_sym_constexpr] = ACTIONS(4078), + [anon_sym_volatile] = ACTIONS(4078), + [anon_sym_restrict] = ACTIONS(4078), + [anon_sym___restrict__] = ACTIONS(4078), + [anon_sym__Atomic] = ACTIONS(4078), + [anon_sym__Noreturn] = ACTIONS(4078), + [anon_sym__Nonnull] = ACTIONS(4078), + [anon_sym_nullable] = ACTIONS(4078), + [anon_sym__Complex] = ACTIONS(4078), + [anon_sym__Nullable] = ACTIONS(4078), + [anon_sym__Nullable_result] = ACTIONS(4078), + [anon_sym__Null_unspecified] = ACTIONS(4078), + [anon_sym___autoreleasing] = ACTIONS(4078), + [anon_sym___block] = ACTIONS(4078), + [anon_sym___bridge] = ACTIONS(4078), + [anon_sym___bridge_retained] = ACTIONS(4078), + [anon_sym___bridge_transfer] = ACTIONS(4078), + [anon_sym___complex] = ACTIONS(4078), + [anon_sym___const] = ACTIONS(4078), + [anon_sym___imag] = ACTIONS(4078), + [anon_sym___kindof] = ACTIONS(4078), + [anon_sym___nonnull] = ACTIONS(4078), + [anon_sym___nullable] = ACTIONS(4078), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4078), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4078), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4078), + [anon_sym___real] = ACTIONS(4078), + [anon_sym___strong] = ACTIONS(4078), + [anon_sym___unsafe_unretained] = ACTIONS(4078), + [anon_sym___unused] = ACTIONS(4078), + [anon_sym___weak] = ACTIONS(4078), + [anon_sym_alignas] = ACTIONS(4078), + [anon_sym__Alignas] = ACTIONS(4078), + [sym_primitive_type] = ACTIONS(4078), + [anon_sym_enum] = ACTIONS(4078), + [anon_sym_COLON] = ACTIONS(4080), + [anon_sym_struct] = ACTIONS(4078), + [anon_sym_union] = ACTIONS(4078), + [anon_sym_QMARK] = ACTIONS(4080), + [anon_sym_STAR_EQ] = ACTIONS(4080), + [anon_sym_SLASH_EQ] = ACTIONS(4080), + [anon_sym_PERCENT_EQ] = ACTIONS(4080), + [anon_sym_PLUS_EQ] = ACTIONS(4080), + [anon_sym_DASH_EQ] = ACTIONS(4080), + [anon_sym_LT_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_GT_EQ] = ACTIONS(4080), + [anon_sym_AMP_EQ] = ACTIONS(4080), + [anon_sym_CARET_EQ] = ACTIONS(4080), + [anon_sym_PIPE_EQ] = ACTIONS(4080), + [anon_sym_DASH_DASH] = ACTIONS(4080), + [anon_sym_PLUS_PLUS] = ACTIONS(4080), + [anon_sym_DOT] = ACTIONS(4078), + [anon_sym_DASH_GT] = ACTIONS(4080), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4078), + [anon_sym___typeof] = ACTIONS(4078), + [anon_sym_typeof] = ACTIONS(4078), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4078), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4078), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4078), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4078), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4078), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4078), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4078), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4078), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4078), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4078), + [anon_sym_NS_AVAILABLE] = ACTIONS(4078), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4078), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4078), + [anon_sym_API_AVAILABLE] = ACTIONS(4078), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4078), + [anon_sym_API_DEPRECATED] = ACTIONS(4078), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4078), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4078), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4078), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4078), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4078), + [anon_sym___deprecated_msg] = ACTIONS(4078), + [anon_sym___deprecated_enum_msg] = ACTIONS(4078), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4078), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4078), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4078), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4078), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4078), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4078), + [anon_sym_BOOL] = ACTIONS(4078), + [anon_sym_IMP] = ACTIONS(4078), + [anon_sym_SEL] = ACTIONS(4078), + [anon_sym_Class] = ACTIONS(4078), + [anon_sym_id] = ACTIONS(4078), + }, + [1467] = { + [sym_identifier] = ACTIONS(4082), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_RPAREN] = ACTIONS(4084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4084), + [anon_sym_LPAREN2] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE] = ACTIONS(4082), + [anon_sym_CARET] = ACTIONS(4082), + [anon_sym_AMP] = ACTIONS(4082), + [anon_sym_EQ_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4084), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_LT_LT] = ACTIONS(4082), + [anon_sym_GT_GT] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym___extension__] = ACTIONS(4082), + [anon_sym_extern] = ACTIONS(4082), + [anon_sym___attribute__] = ACTIONS(4082), + [anon_sym___attribute] = ACTIONS(4082), + [anon_sym_noreturn] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_RBRACK] = ACTIONS(4084), + [anon_sym___declspec] = ACTIONS(4082), + [anon_sym_LBRACE] = ACTIONS(4084), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_signed] = ACTIONS(4082), + [anon_sym_unsigned] = ACTIONS(4082), + [anon_sym_long] = ACTIONS(4082), + [anon_sym_short] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(4082), + [anon_sym_ATautoreleasepool] = ACTIONS(4084), + [anon_sym_auto] = ACTIONS(4082), + [anon_sym_register] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym___inline] = ACTIONS(4082), + [anon_sym___inline__] = ACTIONS(4082), + [anon_sym___forceinline] = ACTIONS(4082), + [anon_sym_thread_local] = ACTIONS(4082), + [anon_sym___thread] = ACTIONS(4082), + [anon_sym_CG_EXTERN] = ACTIONS(4082), + [anon_sym_CG_INLINE] = ACTIONS(4082), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4082), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4082), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4082), + [anon_sym_IBOutlet] = ACTIONS(4082), + [anon_sym_IBInspectable] = ACTIONS(4082), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4082), + [anon_sym_NS_INLINE] = ACTIONS(4082), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4082), + [anon_sym_OBJC_EXPORT] = ACTIONS(4082), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4082), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4082), + [anon_sym_const] = ACTIONS(4082), + [anon_sym_constexpr] = ACTIONS(4082), + [anon_sym_volatile] = ACTIONS(4082), + [anon_sym_restrict] = ACTIONS(4082), + [anon_sym___restrict__] = ACTIONS(4082), + [anon_sym__Atomic] = ACTIONS(4082), + [anon_sym__Noreturn] = ACTIONS(4082), + [anon_sym__Nonnull] = ACTIONS(4082), + [anon_sym_nullable] = ACTIONS(4082), + [anon_sym__Complex] = ACTIONS(4082), + [anon_sym__Nullable] = ACTIONS(4082), + [anon_sym__Nullable_result] = ACTIONS(4082), + [anon_sym__Null_unspecified] = ACTIONS(4082), + [anon_sym___autoreleasing] = ACTIONS(4082), + [anon_sym___block] = ACTIONS(4082), + [anon_sym___bridge] = ACTIONS(4082), + [anon_sym___bridge_retained] = ACTIONS(4082), + [anon_sym___bridge_transfer] = ACTIONS(4082), + [anon_sym___complex] = ACTIONS(4082), + [anon_sym___const] = ACTIONS(4082), + [anon_sym___imag] = ACTIONS(4082), + [anon_sym___kindof] = ACTIONS(4082), + [anon_sym___nonnull] = ACTIONS(4082), + [anon_sym___nullable] = ACTIONS(4082), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4082), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4082), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4082), + [anon_sym___real] = ACTIONS(4082), + [anon_sym___strong] = ACTIONS(4082), + [anon_sym___unsafe_unretained] = ACTIONS(4082), + [anon_sym___unused] = ACTIONS(4082), + [anon_sym___weak] = ACTIONS(4082), + [anon_sym_alignas] = ACTIONS(4082), + [anon_sym__Alignas] = ACTIONS(4082), + [sym_primitive_type] = ACTIONS(4082), + [anon_sym_enum] = ACTIONS(4082), + [anon_sym_COLON] = ACTIONS(4084), + [anon_sym_struct] = ACTIONS(4082), + [anon_sym_union] = ACTIONS(4082), + [anon_sym_QMARK] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_LT_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_GT_EQ] = ACTIONS(4084), + [anon_sym_AMP_EQ] = ACTIONS(4084), + [anon_sym_CARET_EQ] = ACTIONS(4084), + [anon_sym_PIPE_EQ] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_DASH_GT] = ACTIONS(4084), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4082), + [anon_sym___typeof] = ACTIONS(4082), + [anon_sym_typeof] = ACTIONS(4082), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4082), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4082), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4082), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4082), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4082), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4082), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4082), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4082), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4082), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4082), + [anon_sym_NS_AVAILABLE] = ACTIONS(4082), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4082), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4082), + [anon_sym_API_AVAILABLE] = ACTIONS(4082), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4082), + [anon_sym_API_DEPRECATED] = ACTIONS(4082), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4082), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4082), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4082), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4082), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4082), + [anon_sym___deprecated_msg] = ACTIONS(4082), + [anon_sym___deprecated_enum_msg] = ACTIONS(4082), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4082), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4082), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4082), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4082), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4082), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4082), + [anon_sym_BOOL] = ACTIONS(4082), + [anon_sym_IMP] = ACTIONS(4082), + [anon_sym_SEL] = ACTIONS(4082), + [anon_sym_Class] = ACTIONS(4082), + [anon_sym_id] = ACTIONS(4082), + }, + [1468] = { + [sym_identifier] = ACTIONS(2350), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2352), + [anon_sym_COMMA] = ACTIONS(2352), + [anon_sym_RPAREN] = ACTIONS(2352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2352), + [anon_sym_LPAREN2] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2350), + [anon_sym_STAR] = ACTIONS(2350), + [anon_sym_SLASH] = ACTIONS(2350), + [anon_sym_PERCENT] = ACTIONS(2350), + [anon_sym_PIPE_PIPE] = ACTIONS(2352), + [anon_sym_AMP_AMP] = ACTIONS(2352), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_CARET] = ACTIONS(2350), + [anon_sym_AMP] = ACTIONS(2350), + [anon_sym_EQ_EQ] = ACTIONS(2352), + [anon_sym_BANG_EQ] = ACTIONS(2352), + [anon_sym_GT] = ACTIONS(2350), + [anon_sym_GT_EQ] = ACTIONS(2352), + [anon_sym_LT_EQ] = ACTIONS(2352), + [anon_sym_LT] = ACTIONS(2350), + [anon_sym_LT_LT] = ACTIONS(2350), + [anon_sym_GT_GT] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2352), + [anon_sym___extension__] = ACTIONS(2350), + [anon_sym_extern] = ACTIONS(2350), + [anon_sym___attribute__] = ACTIONS(2350), + [anon_sym___attribute] = ACTIONS(2350), + [anon_sym_noreturn] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2352), + [anon_sym_RBRACK] = ACTIONS(2352), + [anon_sym___declspec] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2352), + [anon_sym_RBRACE] = ACTIONS(2352), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(2350), + [anon_sym_EQ] = ACTIONS(2350), + [anon_sym_ATautoreleasepool] = ACTIONS(2352), + [anon_sym_auto] = ACTIONS(2350), + [anon_sym_register] = ACTIONS(2350), + [anon_sym_inline] = ACTIONS(2350), + [anon_sym___inline] = ACTIONS(2350), + [anon_sym___inline__] = ACTIONS(2350), + [anon_sym___forceinline] = ACTIONS(2350), + [anon_sym_thread_local] = ACTIONS(2350), + [anon_sym___thread] = ACTIONS(2350), + [anon_sym_CG_EXTERN] = ACTIONS(2350), + [anon_sym_CG_INLINE] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2350), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2350), + [anon_sym_IBOutlet] = ACTIONS(2350), + [anon_sym_IBInspectable] = ACTIONS(2350), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2350), + [anon_sym_NS_INLINE] = ACTIONS(2350), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2350), + [anon_sym_OBJC_EXPORT] = ACTIONS(2350), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2350), + [anon_sym_const] = ACTIONS(2350), + [anon_sym_constexpr] = ACTIONS(2350), + [anon_sym_volatile] = ACTIONS(2350), + [anon_sym_restrict] = ACTIONS(2350), + [anon_sym___restrict__] = ACTIONS(2350), + [anon_sym__Atomic] = ACTIONS(2350), + [anon_sym__Noreturn] = ACTIONS(2350), + [anon_sym__Nonnull] = ACTIONS(2350), + [anon_sym_nullable] = ACTIONS(2350), + [anon_sym__Complex] = ACTIONS(2350), + [anon_sym__Nullable] = ACTIONS(2350), + [anon_sym__Nullable_result] = ACTIONS(2350), + [anon_sym__Null_unspecified] = ACTIONS(2350), + [anon_sym___autoreleasing] = ACTIONS(2350), + [anon_sym___block] = ACTIONS(2350), + [anon_sym___bridge] = ACTIONS(2350), + [anon_sym___bridge_retained] = ACTIONS(2350), + [anon_sym___bridge_transfer] = ACTIONS(2350), + [anon_sym___complex] = ACTIONS(2350), + [anon_sym___const] = ACTIONS(2350), + [anon_sym___imag] = ACTIONS(2350), + [anon_sym___kindof] = ACTIONS(2350), + [anon_sym___nonnull] = ACTIONS(2350), + [anon_sym___nullable] = ACTIONS(2350), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2350), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2350), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2350), + [anon_sym___real] = ACTIONS(2350), + [anon_sym___strong] = ACTIONS(2350), + [anon_sym___unsafe_unretained] = ACTIONS(2350), + [anon_sym___unused] = ACTIONS(2350), + [anon_sym___weak] = ACTIONS(2350), + [anon_sym_alignas] = ACTIONS(2350), + [anon_sym__Alignas] = ACTIONS(2350), + [sym_primitive_type] = ACTIONS(2350), + [anon_sym_enum] = ACTIONS(2350), + [anon_sym_COLON] = ACTIONS(2352), + [anon_sym_struct] = ACTIONS(2350), + [anon_sym_union] = ACTIONS(2350), + [anon_sym_QMARK] = ACTIONS(2352), + [anon_sym_STAR_EQ] = ACTIONS(2352), + [anon_sym_SLASH_EQ] = ACTIONS(2352), + [anon_sym_PERCENT_EQ] = ACTIONS(2352), + [anon_sym_PLUS_EQ] = ACTIONS(2352), + [anon_sym_DASH_EQ] = ACTIONS(2352), + [anon_sym_LT_LT_EQ] = ACTIONS(2352), + [anon_sym_GT_GT_EQ] = ACTIONS(2352), + [anon_sym_AMP_EQ] = ACTIONS(2352), + [anon_sym_CARET_EQ] = ACTIONS(2352), + [anon_sym_PIPE_EQ] = ACTIONS(2352), + [anon_sym_DASH_DASH] = ACTIONS(2352), + [anon_sym_PLUS_PLUS] = ACTIONS(2352), + [anon_sym_DOT] = ACTIONS(2350), + [anon_sym_DASH_GT] = ACTIONS(2352), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2350), + [anon_sym___typeof] = ACTIONS(2350), + [anon_sym_typeof] = ACTIONS(2350), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2350), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2350), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2350), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2350), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE] = ACTIONS(2350), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_API_AVAILABLE] = ACTIONS(2350), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_API_DEPRECATED] = ACTIONS(2350), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2350), + [anon_sym___deprecated_msg] = ACTIONS(2350), + [anon_sym___deprecated_enum_msg] = ACTIONS(2350), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2350), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2350), + [anon_sym_BOOL] = ACTIONS(2350), + [anon_sym_IMP] = ACTIONS(2350), + [anon_sym_SEL] = ACTIONS(2350), + [anon_sym_Class] = ACTIONS(2350), + [anon_sym_id] = ACTIONS(2350), + }, + [1469] = { + [sym_identifier] = ACTIONS(4086), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4088), + [anon_sym_COMMA] = ACTIONS(4088), + [anon_sym_RPAREN] = ACTIONS(4088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4088), + [anon_sym_LPAREN2] = ACTIONS(4088), + [anon_sym_DASH] = ACTIONS(4086), + [anon_sym_PLUS] = ACTIONS(4086), + [anon_sym_STAR] = ACTIONS(4086), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4086), + [anon_sym_PIPE_PIPE] = ACTIONS(4088), + [anon_sym_AMP_AMP] = ACTIONS(4088), + [anon_sym_PIPE] = ACTIONS(4086), + [anon_sym_CARET] = ACTIONS(4086), + [anon_sym_AMP] = ACTIONS(4086), + [anon_sym_EQ_EQ] = ACTIONS(4088), + [anon_sym_BANG_EQ] = ACTIONS(4088), + [anon_sym_GT] = ACTIONS(4086), + [anon_sym_GT_EQ] = ACTIONS(4088), + [anon_sym_LT_EQ] = ACTIONS(4088), + [anon_sym_LT] = ACTIONS(4086), + [anon_sym_LT_LT] = ACTIONS(4086), + [anon_sym_GT_GT] = ACTIONS(4086), + [anon_sym_SEMI] = ACTIONS(4088), + [anon_sym___extension__] = ACTIONS(4086), + [anon_sym_extern] = ACTIONS(4086), + [anon_sym___attribute__] = ACTIONS(4086), + [anon_sym___attribute] = ACTIONS(4086), + [anon_sym_noreturn] = ACTIONS(4086), + [anon_sym_LBRACK] = ACTIONS(4088), + [anon_sym_RBRACK] = ACTIONS(4088), + [anon_sym___declspec] = ACTIONS(4086), + [anon_sym_LBRACE] = ACTIONS(4088), + [anon_sym_RBRACE] = ACTIONS(4088), + [anon_sym_signed] = ACTIONS(4086), + [anon_sym_unsigned] = ACTIONS(4086), + [anon_sym_long] = ACTIONS(4086), + [anon_sym_short] = ACTIONS(4086), + [anon_sym_static] = ACTIONS(4086), + [anon_sym_EQ] = ACTIONS(4086), + [anon_sym_ATautoreleasepool] = ACTIONS(4088), + [anon_sym_auto] = ACTIONS(4086), + [anon_sym_register] = ACTIONS(4086), + [anon_sym_inline] = ACTIONS(4086), + [anon_sym___inline] = ACTIONS(4086), + [anon_sym___inline__] = ACTIONS(4086), + [anon_sym___forceinline] = ACTIONS(4086), + [anon_sym_thread_local] = ACTIONS(4086), + [anon_sym___thread] = ACTIONS(4086), + [anon_sym_CG_EXTERN] = ACTIONS(4086), + [anon_sym_CG_INLINE] = ACTIONS(4086), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4086), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4086), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4086), + [anon_sym_IBOutlet] = ACTIONS(4086), + [anon_sym_IBInspectable] = ACTIONS(4086), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4086), + [anon_sym_NS_INLINE] = ACTIONS(4086), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4086), + [anon_sym_OBJC_EXPORT] = ACTIONS(4086), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4086), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4086), + [anon_sym_const] = ACTIONS(4086), + [anon_sym_constexpr] = ACTIONS(4086), + [anon_sym_volatile] = ACTIONS(4086), + [anon_sym_restrict] = ACTIONS(4086), + [anon_sym___restrict__] = ACTIONS(4086), + [anon_sym__Atomic] = ACTIONS(4086), + [anon_sym__Noreturn] = ACTIONS(4086), + [anon_sym__Nonnull] = ACTIONS(4086), + [anon_sym_nullable] = ACTIONS(4086), + [anon_sym__Complex] = ACTIONS(4086), + [anon_sym__Nullable] = ACTIONS(4086), + [anon_sym__Nullable_result] = ACTIONS(4086), + [anon_sym__Null_unspecified] = ACTIONS(4086), + [anon_sym___autoreleasing] = ACTIONS(4086), + [anon_sym___block] = ACTIONS(4086), + [anon_sym___bridge] = ACTIONS(4086), + [anon_sym___bridge_retained] = ACTIONS(4086), + [anon_sym___bridge_transfer] = ACTIONS(4086), + [anon_sym___complex] = ACTIONS(4086), + [anon_sym___const] = ACTIONS(4086), + [anon_sym___imag] = ACTIONS(4086), + [anon_sym___kindof] = ACTIONS(4086), + [anon_sym___nonnull] = ACTIONS(4086), + [anon_sym___nullable] = ACTIONS(4086), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4086), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4086), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4086), + [anon_sym___real] = ACTIONS(4086), + [anon_sym___strong] = ACTIONS(4086), + [anon_sym___unsafe_unretained] = ACTIONS(4086), + [anon_sym___unused] = ACTIONS(4086), + [anon_sym___weak] = ACTIONS(4086), + [anon_sym_alignas] = ACTIONS(4086), + [anon_sym__Alignas] = ACTIONS(4086), + [sym_primitive_type] = ACTIONS(4086), + [anon_sym_enum] = ACTIONS(4086), + [anon_sym_COLON] = ACTIONS(4088), + [anon_sym_struct] = ACTIONS(4086), + [anon_sym_union] = ACTIONS(4086), + [anon_sym_QMARK] = ACTIONS(4088), + [anon_sym_STAR_EQ] = ACTIONS(4088), + [anon_sym_SLASH_EQ] = ACTIONS(4088), + [anon_sym_PERCENT_EQ] = ACTIONS(4088), + [anon_sym_PLUS_EQ] = ACTIONS(4088), + [anon_sym_DASH_EQ] = ACTIONS(4088), + [anon_sym_LT_LT_EQ] = ACTIONS(4088), + [anon_sym_GT_GT_EQ] = ACTIONS(4088), + [anon_sym_AMP_EQ] = ACTIONS(4088), + [anon_sym_CARET_EQ] = ACTIONS(4088), + [anon_sym_PIPE_EQ] = ACTIONS(4088), + [anon_sym_DASH_DASH] = ACTIONS(4088), + [anon_sym_PLUS_PLUS] = ACTIONS(4088), + [anon_sym_DOT] = ACTIONS(4086), + [anon_sym_DASH_GT] = ACTIONS(4088), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4086), + [anon_sym___typeof] = ACTIONS(4086), + [anon_sym_typeof] = ACTIONS(4086), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4086), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4086), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4086), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4086), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4086), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4086), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4086), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4086), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4086), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4086), + [anon_sym_NS_AVAILABLE] = ACTIONS(4086), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4086), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4086), + [anon_sym_API_AVAILABLE] = ACTIONS(4086), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4086), + [anon_sym_API_DEPRECATED] = ACTIONS(4086), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4086), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4086), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4086), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4086), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4086), + [anon_sym___deprecated_msg] = ACTIONS(4086), + [anon_sym___deprecated_enum_msg] = ACTIONS(4086), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4086), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4086), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4086), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4086), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4086), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4086), + [anon_sym_BOOL] = ACTIONS(4086), + [anon_sym_IMP] = ACTIONS(4086), + [anon_sym_SEL] = ACTIONS(4086), + [anon_sym_Class] = ACTIONS(4086), + [anon_sym_id] = ACTIONS(4086), + }, + [1470] = { + [sym_identifier] = ACTIONS(4090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4092), + [anon_sym_COMMA] = ACTIONS(4092), + [anon_sym_LPAREN2] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4090), + [anon_sym_PLUS] = ACTIONS(4090), + [anon_sym_STAR] = ACTIONS(4090), + [anon_sym_SLASH] = ACTIONS(4090), + [anon_sym_PERCENT] = ACTIONS(4090), + [anon_sym_PIPE_PIPE] = ACTIONS(4092), + [anon_sym_AMP_AMP] = ACTIONS(4092), + [anon_sym_PIPE] = ACTIONS(4090), + [anon_sym_CARET] = ACTIONS(4090), + [anon_sym_AMP] = ACTIONS(4090), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4090), + [anon_sym_GT_EQ] = ACTIONS(4092), + [anon_sym_LT_EQ] = ACTIONS(4092), + [anon_sym_LT] = ACTIONS(4090), + [anon_sym_LT_LT] = ACTIONS(4090), + [anon_sym_GT_GT] = ACTIONS(4090), + [anon_sym_SEMI] = ACTIONS(4092), + [anon_sym___extension__] = ACTIONS(4090), + [anon_sym_extern] = ACTIONS(4090), + [anon_sym___attribute__] = ACTIONS(4090), + [anon_sym___attribute] = ACTIONS(4090), + [anon_sym_noreturn] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(4092), + [anon_sym___declspec] = ACTIONS(4090), + [anon_sym_LBRACE] = ACTIONS(4092), + [anon_sym_signed] = ACTIONS(4090), + [anon_sym_unsigned] = ACTIONS(4090), + [anon_sym_long] = ACTIONS(4090), + [anon_sym_short] = ACTIONS(4090), + [anon_sym_static] = ACTIONS(4090), + [anon_sym_EQ] = ACTIONS(4090), + [anon_sym_ATautoreleasepool] = ACTIONS(4092), + [anon_sym_auto] = ACTIONS(4090), + [anon_sym_register] = ACTIONS(4090), + [anon_sym_inline] = ACTIONS(4090), + [anon_sym___inline] = ACTIONS(4090), + [anon_sym___inline__] = ACTIONS(4090), + [anon_sym___forceinline] = ACTIONS(4090), + [anon_sym_thread_local] = ACTIONS(4090), + [anon_sym___thread] = ACTIONS(4090), + [anon_sym_CG_EXTERN] = ACTIONS(4090), + [anon_sym_CG_INLINE] = ACTIONS(4090), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4090), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4090), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4090), + [anon_sym_IBOutlet] = ACTIONS(4090), + [anon_sym_IBInspectable] = ACTIONS(4090), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4090), + [anon_sym_NS_INLINE] = ACTIONS(4090), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4090), + [anon_sym_OBJC_EXPORT] = ACTIONS(4090), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4090), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4090), + [anon_sym_const] = ACTIONS(4090), + [anon_sym_constexpr] = ACTIONS(4090), + [anon_sym_volatile] = ACTIONS(4090), + [anon_sym_restrict] = ACTIONS(4090), + [anon_sym___restrict__] = ACTIONS(4090), + [anon_sym__Atomic] = ACTIONS(4090), + [anon_sym__Noreturn] = ACTIONS(4090), + [anon_sym__Nonnull] = ACTIONS(4090), + [anon_sym_nullable] = ACTIONS(4090), + [anon_sym__Complex] = ACTIONS(4090), + [anon_sym__Nullable] = ACTIONS(4090), + [anon_sym__Nullable_result] = ACTIONS(4090), + [anon_sym__Null_unspecified] = ACTIONS(4090), + [anon_sym___autoreleasing] = ACTIONS(4090), + [anon_sym___block] = ACTIONS(4090), + [anon_sym___bridge] = ACTIONS(4090), + [anon_sym___bridge_retained] = ACTIONS(4090), + [anon_sym___bridge_transfer] = ACTIONS(4090), + [anon_sym___complex] = ACTIONS(4090), + [anon_sym___const] = ACTIONS(4090), + [anon_sym___imag] = ACTIONS(4090), + [anon_sym___kindof] = ACTIONS(4090), + [anon_sym___nonnull] = ACTIONS(4090), + [anon_sym___nullable] = ACTIONS(4090), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4090), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4090), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4090), + [anon_sym___real] = ACTIONS(4090), + [anon_sym___strong] = ACTIONS(4090), + [anon_sym___unsafe_unretained] = ACTIONS(4090), + [anon_sym___unused] = ACTIONS(4090), + [anon_sym___weak] = ACTIONS(4090), + [anon_sym_alignas] = ACTIONS(4090), + [anon_sym__Alignas] = ACTIONS(4090), + [sym_primitive_type] = ACTIONS(4090), + [anon_sym_enum] = ACTIONS(4090), + [anon_sym_struct] = ACTIONS(4090), + [anon_sym_union] = ACTIONS(4090), + [anon_sym_QMARK] = ACTIONS(4092), + [anon_sym_STAR_EQ] = ACTIONS(4092), + [anon_sym_SLASH_EQ] = ACTIONS(4092), + [anon_sym_PERCENT_EQ] = ACTIONS(4092), + [anon_sym_PLUS_EQ] = ACTIONS(4092), + [anon_sym_DASH_EQ] = ACTIONS(4092), + [anon_sym_LT_LT_EQ] = ACTIONS(4092), + [anon_sym_GT_GT_EQ] = ACTIONS(4092), + [anon_sym_AMP_EQ] = ACTIONS(4092), + [anon_sym_CARET_EQ] = ACTIONS(4092), + [anon_sym_PIPE_EQ] = ACTIONS(4092), + [anon_sym_DASH_DASH] = ACTIONS(4092), + [anon_sym_PLUS_PLUS] = ACTIONS(4092), + [anon_sym_DOT] = ACTIONS(4090), + [anon_sym_DASH_GT] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4090), + [anon_sym_DQUOTE] = ACTIONS(4092), + [anon_sym_L_DQUOTE] = ACTIONS(4092), + [anon_sym_u_DQUOTE] = ACTIONS(4092), + [anon_sym_U_DQUOTE] = ACTIONS(4092), + [anon_sym_u8_DQUOTE] = ACTIONS(4092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4090), + [anon_sym___typeof] = ACTIONS(4090), + [anon_sym_typeof] = ACTIONS(4090), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4090), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4090), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4090), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4090), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4090), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4090), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4090), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4090), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4090), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4090), + [anon_sym_NS_AVAILABLE] = ACTIONS(4090), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4090), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4090), + [anon_sym_API_AVAILABLE] = ACTIONS(4090), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4090), + [anon_sym_API_DEPRECATED] = ACTIONS(4090), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4090), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4090), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4090), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4090), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4090), + [anon_sym___deprecated_msg] = ACTIONS(4090), + [anon_sym___deprecated_enum_msg] = ACTIONS(4090), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4090), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4090), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4090), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4090), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4090), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4090), + [anon_sym_BOOL] = ACTIONS(4090), + [anon_sym_IMP] = ACTIONS(4090), + [anon_sym_SEL] = ACTIONS(4090), + [anon_sym_Class] = ACTIONS(4090), + [anon_sym_id] = ACTIONS(4090), + }, + [1471] = { + [sym_identifier] = ACTIONS(4094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4096), + [anon_sym_COMMA] = ACTIONS(4096), + [anon_sym_RPAREN] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), + [anon_sym_LPAREN2] = ACTIONS(4096), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4094), + [anon_sym_STAR] = ACTIONS(4094), + [anon_sym_SLASH] = ACTIONS(4094), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4096), + [anon_sym_AMP_AMP] = ACTIONS(4096), + [anon_sym_PIPE] = ACTIONS(4094), + [anon_sym_CARET] = ACTIONS(4094), + [anon_sym_AMP] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4096), + [anon_sym_BANG_EQ] = ACTIONS(4096), + [anon_sym_GT] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4096), + [anon_sym_LT_EQ] = ACTIONS(4096), + [anon_sym_LT] = ACTIONS(4094), + [anon_sym_LT_LT] = ACTIONS(4094), + [anon_sym_GT_GT] = ACTIONS(4094), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym___extension__] = ACTIONS(4094), + [anon_sym_extern] = ACTIONS(4094), + [anon_sym___attribute__] = ACTIONS(4094), + [anon_sym___attribute] = ACTIONS(4094), + [anon_sym_noreturn] = ACTIONS(4094), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_RBRACK] = ACTIONS(4096), + [anon_sym___declspec] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(4096), + [anon_sym_RBRACE] = ACTIONS(4096), + [anon_sym_signed] = ACTIONS(4094), + [anon_sym_unsigned] = ACTIONS(4094), + [anon_sym_long] = ACTIONS(4094), + [anon_sym_short] = ACTIONS(4094), + [anon_sym_static] = ACTIONS(4094), + [anon_sym_EQ] = ACTIONS(4094), + [anon_sym_ATautoreleasepool] = ACTIONS(4096), + [anon_sym_auto] = ACTIONS(4094), + [anon_sym_register] = ACTIONS(4094), + [anon_sym_inline] = ACTIONS(4094), + [anon_sym___inline] = ACTIONS(4094), + [anon_sym___inline__] = ACTIONS(4094), + [anon_sym___forceinline] = ACTIONS(4094), + [anon_sym_thread_local] = ACTIONS(4094), + [anon_sym___thread] = ACTIONS(4094), + [anon_sym_CG_EXTERN] = ACTIONS(4094), + [anon_sym_CG_INLINE] = ACTIONS(4094), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4094), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4094), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4094), + [anon_sym_IBOutlet] = ACTIONS(4094), + [anon_sym_IBInspectable] = ACTIONS(4094), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4094), + [anon_sym_NS_INLINE] = ACTIONS(4094), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4094), + [anon_sym_OBJC_EXPORT] = ACTIONS(4094), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4094), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4094), + [anon_sym_const] = ACTIONS(4094), + [anon_sym_constexpr] = ACTIONS(4094), + [anon_sym_volatile] = ACTIONS(4094), + [anon_sym_restrict] = ACTIONS(4094), + [anon_sym___restrict__] = ACTIONS(4094), + [anon_sym__Atomic] = ACTIONS(4094), + [anon_sym__Noreturn] = ACTIONS(4094), + [anon_sym__Nonnull] = ACTIONS(4094), + [anon_sym_nullable] = ACTIONS(4094), + [anon_sym__Complex] = ACTIONS(4094), + [anon_sym__Nullable] = ACTIONS(4094), + [anon_sym__Nullable_result] = ACTIONS(4094), + [anon_sym__Null_unspecified] = ACTIONS(4094), + [anon_sym___autoreleasing] = ACTIONS(4094), + [anon_sym___block] = ACTIONS(4094), + [anon_sym___bridge] = ACTIONS(4094), + [anon_sym___bridge_retained] = ACTIONS(4094), + [anon_sym___bridge_transfer] = ACTIONS(4094), + [anon_sym___complex] = ACTIONS(4094), + [anon_sym___const] = ACTIONS(4094), + [anon_sym___imag] = ACTIONS(4094), + [anon_sym___kindof] = ACTIONS(4094), + [anon_sym___nonnull] = ACTIONS(4094), + [anon_sym___nullable] = ACTIONS(4094), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4094), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4094), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4094), + [anon_sym___real] = ACTIONS(4094), + [anon_sym___strong] = ACTIONS(4094), + [anon_sym___unsafe_unretained] = ACTIONS(4094), + [anon_sym___unused] = ACTIONS(4094), + [anon_sym___weak] = ACTIONS(4094), + [anon_sym_alignas] = ACTIONS(4094), + [anon_sym__Alignas] = ACTIONS(4094), + [sym_primitive_type] = ACTIONS(4094), + [anon_sym_enum] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(4096), + [anon_sym_struct] = ACTIONS(4094), + [anon_sym_union] = ACTIONS(4094), + [anon_sym_QMARK] = ACTIONS(4096), + [anon_sym_STAR_EQ] = ACTIONS(4096), + [anon_sym_SLASH_EQ] = ACTIONS(4096), + [anon_sym_PERCENT_EQ] = ACTIONS(4096), + [anon_sym_PLUS_EQ] = ACTIONS(4096), + [anon_sym_DASH_EQ] = ACTIONS(4096), + [anon_sym_LT_LT_EQ] = ACTIONS(4096), + [anon_sym_GT_GT_EQ] = ACTIONS(4096), + [anon_sym_AMP_EQ] = ACTIONS(4096), + [anon_sym_CARET_EQ] = ACTIONS(4096), + [anon_sym_PIPE_EQ] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4096), + [anon_sym_PLUS_PLUS] = ACTIONS(4096), + [anon_sym_DOT] = ACTIONS(4094), + [anon_sym_DASH_GT] = ACTIONS(4096), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4094), + [anon_sym___typeof] = ACTIONS(4094), + [anon_sym_typeof] = ACTIONS(4094), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4094), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4094), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4094), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4094), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4094), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4094), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4094), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4094), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4094), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4094), + [anon_sym_NS_AVAILABLE] = ACTIONS(4094), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4094), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4094), + [anon_sym_API_AVAILABLE] = ACTIONS(4094), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4094), + [anon_sym_API_DEPRECATED] = ACTIONS(4094), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4094), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4094), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4094), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4094), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4094), + [anon_sym___deprecated_msg] = ACTIONS(4094), + [anon_sym___deprecated_enum_msg] = ACTIONS(4094), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4094), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4094), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4094), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4094), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4094), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4094), + [anon_sym_BOOL] = ACTIONS(4094), + [anon_sym_IMP] = ACTIONS(4094), + [anon_sym_SEL] = ACTIONS(4094), + [anon_sym_Class] = ACTIONS(4094), + [anon_sym_id] = ACTIONS(4094), + }, + [1472] = { + [sym_identifier] = ACTIONS(4098), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4100), + [anon_sym_COMMA] = ACTIONS(4100), + [anon_sym_RPAREN] = ACTIONS(4100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4100), + [anon_sym_LPAREN2] = ACTIONS(4100), + [anon_sym_DASH] = ACTIONS(4098), + [anon_sym_PLUS] = ACTIONS(4098), + [anon_sym_STAR] = ACTIONS(4098), + [anon_sym_SLASH] = ACTIONS(4098), + [anon_sym_PERCENT] = ACTIONS(4098), + [anon_sym_PIPE_PIPE] = ACTIONS(4100), + [anon_sym_AMP_AMP] = ACTIONS(4100), + [anon_sym_PIPE] = ACTIONS(4098), + [anon_sym_CARET] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4098), + [anon_sym_EQ_EQ] = ACTIONS(4100), + [anon_sym_BANG_EQ] = ACTIONS(4100), + [anon_sym_GT] = ACTIONS(4098), + [anon_sym_GT_EQ] = ACTIONS(4100), + [anon_sym_LT_EQ] = ACTIONS(4100), + [anon_sym_LT] = ACTIONS(4098), + [anon_sym_LT_LT] = ACTIONS(4098), + [anon_sym_GT_GT] = ACTIONS(4098), + [anon_sym_SEMI] = ACTIONS(4100), + [anon_sym___extension__] = ACTIONS(4098), + [anon_sym_extern] = ACTIONS(4098), + [anon_sym___attribute__] = ACTIONS(4098), + [anon_sym___attribute] = ACTIONS(4098), + [anon_sym_noreturn] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_RBRACK] = ACTIONS(4100), + [anon_sym___declspec] = ACTIONS(4098), + [anon_sym_LBRACE] = ACTIONS(4100), + [anon_sym_RBRACE] = ACTIONS(4100), + [anon_sym_signed] = ACTIONS(4098), + [anon_sym_unsigned] = ACTIONS(4098), + [anon_sym_long] = ACTIONS(4098), + [anon_sym_short] = ACTIONS(4098), + [anon_sym_static] = ACTIONS(4098), + [anon_sym_EQ] = ACTIONS(4098), + [anon_sym_ATautoreleasepool] = ACTIONS(4100), + [anon_sym_auto] = ACTIONS(4098), + [anon_sym_register] = ACTIONS(4098), + [anon_sym_inline] = ACTIONS(4098), + [anon_sym___inline] = ACTIONS(4098), + [anon_sym___inline__] = ACTIONS(4098), + [anon_sym___forceinline] = ACTIONS(4098), + [anon_sym_thread_local] = ACTIONS(4098), + [anon_sym___thread] = ACTIONS(4098), + [anon_sym_CG_EXTERN] = ACTIONS(4098), + [anon_sym_CG_INLINE] = ACTIONS(4098), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4098), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4098), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4098), + [anon_sym_IBOutlet] = ACTIONS(4098), + [anon_sym_IBInspectable] = ACTIONS(4098), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4098), + [anon_sym_NS_INLINE] = ACTIONS(4098), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4098), + [anon_sym_OBJC_EXPORT] = ACTIONS(4098), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4098), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4098), + [anon_sym_const] = ACTIONS(4098), + [anon_sym_constexpr] = ACTIONS(4098), + [anon_sym_volatile] = ACTIONS(4098), + [anon_sym_restrict] = ACTIONS(4098), + [anon_sym___restrict__] = ACTIONS(4098), + [anon_sym__Atomic] = ACTIONS(4098), + [anon_sym__Noreturn] = ACTIONS(4098), + [anon_sym__Nonnull] = ACTIONS(4098), + [anon_sym_nullable] = ACTIONS(4098), + [anon_sym__Complex] = ACTIONS(4098), + [anon_sym__Nullable] = ACTIONS(4098), + [anon_sym__Nullable_result] = ACTIONS(4098), + [anon_sym__Null_unspecified] = ACTIONS(4098), + [anon_sym___autoreleasing] = ACTIONS(4098), + [anon_sym___block] = ACTIONS(4098), + [anon_sym___bridge] = ACTIONS(4098), + [anon_sym___bridge_retained] = ACTIONS(4098), + [anon_sym___bridge_transfer] = ACTIONS(4098), + [anon_sym___complex] = ACTIONS(4098), + [anon_sym___const] = ACTIONS(4098), + [anon_sym___imag] = ACTIONS(4098), + [anon_sym___kindof] = ACTIONS(4098), + [anon_sym___nonnull] = ACTIONS(4098), + [anon_sym___nullable] = ACTIONS(4098), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4098), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4098), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4098), + [anon_sym___real] = ACTIONS(4098), + [anon_sym___strong] = ACTIONS(4098), + [anon_sym___unsafe_unretained] = ACTIONS(4098), + [anon_sym___unused] = ACTIONS(4098), + [anon_sym___weak] = ACTIONS(4098), + [anon_sym_alignas] = ACTIONS(4098), + [anon_sym__Alignas] = ACTIONS(4098), + [sym_primitive_type] = ACTIONS(4098), + [anon_sym_enum] = ACTIONS(4098), + [anon_sym_COLON] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(4098), + [anon_sym_union] = ACTIONS(4098), + [anon_sym_QMARK] = ACTIONS(4100), + [anon_sym_STAR_EQ] = ACTIONS(4100), + [anon_sym_SLASH_EQ] = ACTIONS(4100), + [anon_sym_PERCENT_EQ] = ACTIONS(4100), + [anon_sym_PLUS_EQ] = ACTIONS(4100), + [anon_sym_DASH_EQ] = ACTIONS(4100), + [anon_sym_LT_LT_EQ] = ACTIONS(4100), + [anon_sym_GT_GT_EQ] = ACTIONS(4100), + [anon_sym_AMP_EQ] = ACTIONS(4100), + [anon_sym_CARET_EQ] = ACTIONS(4100), + [anon_sym_PIPE_EQ] = ACTIONS(4100), + [anon_sym_DASH_DASH] = ACTIONS(4100), + [anon_sym_PLUS_PLUS] = ACTIONS(4100), + [anon_sym_DOT] = ACTIONS(4098), + [anon_sym_DASH_GT] = ACTIONS(4100), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4098), + [anon_sym___typeof] = ACTIONS(4098), + [anon_sym_typeof] = ACTIONS(4098), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4098), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4098), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4098), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4098), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4098), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4098), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4098), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4098), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4098), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4098), + [anon_sym_NS_AVAILABLE] = ACTIONS(4098), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4098), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4098), + [anon_sym_API_AVAILABLE] = ACTIONS(4098), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4098), + [anon_sym_API_DEPRECATED] = ACTIONS(4098), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4098), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4098), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4098), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4098), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4098), + [anon_sym___deprecated_msg] = ACTIONS(4098), + [anon_sym___deprecated_enum_msg] = ACTIONS(4098), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4098), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4098), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4098), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4098), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4098), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4098), + [anon_sym_BOOL] = ACTIONS(4098), + [anon_sym_IMP] = ACTIONS(4098), + [anon_sym_SEL] = ACTIONS(4098), + [anon_sym_Class] = ACTIONS(4098), + [anon_sym_id] = ACTIONS(4098), + }, + [1473] = { + [sym_identifier] = ACTIONS(4102), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_RPAREN] = ACTIONS(4104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4104), + [anon_sym_LPAREN2] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE] = ACTIONS(4102), + [anon_sym_CARET] = ACTIONS(4102), + [anon_sym_AMP] = ACTIONS(4102), + [anon_sym_EQ_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4104), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_LT_LT] = ACTIONS(4102), + [anon_sym_GT_GT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym___extension__] = ACTIONS(4102), + [anon_sym_extern] = ACTIONS(4102), + [anon_sym___attribute__] = ACTIONS(4102), + [anon_sym___attribute] = ACTIONS(4102), + [anon_sym_noreturn] = ACTIONS(4102), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_RBRACK] = ACTIONS(4104), + [anon_sym___declspec] = ACTIONS(4102), + [anon_sym_LBRACE] = ACTIONS(4104), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_signed] = ACTIONS(4102), + [anon_sym_unsigned] = ACTIONS(4102), + [anon_sym_long] = ACTIONS(4102), + [anon_sym_short] = ACTIONS(4102), + [anon_sym_static] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(4102), + [anon_sym_ATautoreleasepool] = ACTIONS(4104), + [anon_sym_auto] = ACTIONS(4102), + [anon_sym_register] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym___inline] = ACTIONS(4102), + [anon_sym___inline__] = ACTIONS(4102), + [anon_sym___forceinline] = ACTIONS(4102), + [anon_sym_thread_local] = ACTIONS(4102), + [anon_sym___thread] = ACTIONS(4102), + [anon_sym_CG_EXTERN] = ACTIONS(4102), + [anon_sym_CG_INLINE] = ACTIONS(4102), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4102), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4102), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4102), + [anon_sym_IBOutlet] = ACTIONS(4102), + [anon_sym_IBInspectable] = ACTIONS(4102), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4102), + [anon_sym_NS_INLINE] = ACTIONS(4102), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4102), + [anon_sym_OBJC_EXPORT] = ACTIONS(4102), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4102), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4102), + [anon_sym_const] = ACTIONS(4102), + [anon_sym_constexpr] = ACTIONS(4102), + [anon_sym_volatile] = ACTIONS(4102), + [anon_sym_restrict] = ACTIONS(4102), + [anon_sym___restrict__] = ACTIONS(4102), + [anon_sym__Atomic] = ACTIONS(4102), + [anon_sym__Noreturn] = ACTIONS(4102), + [anon_sym__Nonnull] = ACTIONS(4102), + [anon_sym_nullable] = ACTIONS(4102), + [anon_sym__Complex] = ACTIONS(4102), + [anon_sym__Nullable] = ACTIONS(4102), + [anon_sym__Nullable_result] = ACTIONS(4102), + [anon_sym__Null_unspecified] = ACTIONS(4102), + [anon_sym___autoreleasing] = ACTIONS(4102), + [anon_sym___block] = ACTIONS(4102), + [anon_sym___bridge] = ACTIONS(4102), + [anon_sym___bridge_retained] = ACTIONS(4102), + [anon_sym___bridge_transfer] = ACTIONS(4102), + [anon_sym___complex] = ACTIONS(4102), + [anon_sym___const] = ACTIONS(4102), + [anon_sym___imag] = ACTIONS(4102), + [anon_sym___kindof] = ACTIONS(4102), + [anon_sym___nonnull] = ACTIONS(4102), + [anon_sym___nullable] = ACTIONS(4102), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4102), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4102), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4102), + [anon_sym___real] = ACTIONS(4102), + [anon_sym___strong] = ACTIONS(4102), + [anon_sym___unsafe_unretained] = ACTIONS(4102), + [anon_sym___unused] = ACTIONS(4102), + [anon_sym___weak] = ACTIONS(4102), + [anon_sym_alignas] = ACTIONS(4102), + [anon_sym__Alignas] = ACTIONS(4102), + [sym_primitive_type] = ACTIONS(4102), + [anon_sym_enum] = ACTIONS(4102), + [anon_sym_COLON] = ACTIONS(4104), + [anon_sym_struct] = ACTIONS(4102), + [anon_sym_union] = ACTIONS(4102), + [anon_sym_QMARK] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_LT_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_GT_EQ] = ACTIONS(4104), + [anon_sym_AMP_EQ] = ACTIONS(4104), + [anon_sym_CARET_EQ] = ACTIONS(4104), + [anon_sym_PIPE_EQ] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_DASH_GT] = ACTIONS(4104), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4102), + [anon_sym___typeof] = ACTIONS(4102), + [anon_sym_typeof] = ACTIONS(4102), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4102), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4102), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4102), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4102), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4102), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4102), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4102), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4102), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4102), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4102), + [anon_sym_NS_AVAILABLE] = ACTIONS(4102), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4102), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4102), + [anon_sym_API_AVAILABLE] = ACTIONS(4102), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4102), + [anon_sym_API_DEPRECATED] = ACTIONS(4102), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4102), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4102), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4102), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4102), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4102), + [anon_sym___deprecated_msg] = ACTIONS(4102), + [anon_sym___deprecated_enum_msg] = ACTIONS(4102), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4102), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4102), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4102), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4102), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4102), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4102), + [anon_sym_BOOL] = ACTIONS(4102), + [anon_sym_IMP] = ACTIONS(4102), + [anon_sym_SEL] = ACTIONS(4102), + [anon_sym_Class] = ACTIONS(4102), + [anon_sym_id] = ACTIONS(4102), + }, + [1474] = { + [sym_identifier] = ACTIONS(4106), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4108), + [anon_sym_COMMA] = ACTIONS(4108), + [anon_sym_RPAREN] = ACTIONS(4108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4108), + [anon_sym_LPAREN2] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4106), + [anon_sym_SLASH] = ACTIONS(4106), + [anon_sym_PERCENT] = ACTIONS(4106), + [anon_sym_PIPE_PIPE] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4108), + [anon_sym_PIPE] = ACTIONS(4106), + [anon_sym_CARET] = ACTIONS(4106), + [anon_sym_AMP] = ACTIONS(4106), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4106), + [anon_sym_GT_EQ] = ACTIONS(4108), + [anon_sym_LT_EQ] = ACTIONS(4108), + [anon_sym_LT] = ACTIONS(4106), + [anon_sym_LT_LT] = ACTIONS(4106), + [anon_sym_GT_GT] = ACTIONS(4106), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym___extension__] = ACTIONS(4106), + [anon_sym_extern] = ACTIONS(4106), + [anon_sym___attribute__] = ACTIONS(4106), + [anon_sym___attribute] = ACTIONS(4106), + [anon_sym_noreturn] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_RBRACK] = ACTIONS(4108), + [anon_sym___declspec] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4108), + [anon_sym_signed] = ACTIONS(4106), + [anon_sym_unsigned] = ACTIONS(4106), + [anon_sym_long] = ACTIONS(4106), + [anon_sym_short] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_EQ] = ACTIONS(4106), + [anon_sym_ATautoreleasepool] = ACTIONS(4108), + [anon_sym_auto] = ACTIONS(4106), + [anon_sym_register] = ACTIONS(4106), + [anon_sym_inline] = ACTIONS(4106), + [anon_sym___inline] = ACTIONS(4106), + [anon_sym___inline__] = ACTIONS(4106), + [anon_sym___forceinline] = ACTIONS(4106), + [anon_sym_thread_local] = ACTIONS(4106), + [anon_sym___thread] = ACTIONS(4106), + [anon_sym_CG_EXTERN] = ACTIONS(4106), + [anon_sym_CG_INLINE] = ACTIONS(4106), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4106), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4106), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4106), + [anon_sym_IBOutlet] = ACTIONS(4106), + [anon_sym_IBInspectable] = ACTIONS(4106), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4106), + [anon_sym_NS_INLINE] = ACTIONS(4106), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4106), + [anon_sym_OBJC_EXPORT] = ACTIONS(4106), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4106), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4106), + [anon_sym_const] = ACTIONS(4106), + [anon_sym_constexpr] = ACTIONS(4106), + [anon_sym_volatile] = ACTIONS(4106), + [anon_sym_restrict] = ACTIONS(4106), + [anon_sym___restrict__] = ACTIONS(4106), + [anon_sym__Atomic] = ACTIONS(4106), + [anon_sym__Noreturn] = ACTIONS(4106), + [anon_sym__Nonnull] = ACTIONS(4106), + [anon_sym_nullable] = ACTIONS(4106), + [anon_sym__Complex] = ACTIONS(4106), + [anon_sym__Nullable] = ACTIONS(4106), + [anon_sym__Nullable_result] = ACTIONS(4106), + [anon_sym__Null_unspecified] = ACTIONS(4106), + [anon_sym___autoreleasing] = ACTIONS(4106), + [anon_sym___block] = ACTIONS(4106), + [anon_sym___bridge] = ACTIONS(4106), + [anon_sym___bridge_retained] = ACTIONS(4106), + [anon_sym___bridge_transfer] = ACTIONS(4106), + [anon_sym___complex] = ACTIONS(4106), + [anon_sym___const] = ACTIONS(4106), + [anon_sym___imag] = ACTIONS(4106), + [anon_sym___kindof] = ACTIONS(4106), + [anon_sym___nonnull] = ACTIONS(4106), + [anon_sym___nullable] = ACTIONS(4106), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4106), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4106), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4106), + [anon_sym___real] = ACTIONS(4106), + [anon_sym___strong] = ACTIONS(4106), + [anon_sym___unsafe_unretained] = ACTIONS(4106), + [anon_sym___unused] = ACTIONS(4106), + [anon_sym___weak] = ACTIONS(4106), + [anon_sym_alignas] = ACTIONS(4106), + [anon_sym__Alignas] = ACTIONS(4106), + [sym_primitive_type] = ACTIONS(4106), + [anon_sym_enum] = ACTIONS(4106), + [anon_sym_COLON] = ACTIONS(4108), + [anon_sym_struct] = ACTIONS(4106), + [anon_sym_union] = ACTIONS(4106), + [anon_sym_QMARK] = ACTIONS(4108), + [anon_sym_STAR_EQ] = ACTIONS(4108), + [anon_sym_SLASH_EQ] = ACTIONS(4108), + [anon_sym_PERCENT_EQ] = ACTIONS(4108), + [anon_sym_PLUS_EQ] = ACTIONS(4108), + [anon_sym_DASH_EQ] = ACTIONS(4108), + [anon_sym_LT_LT_EQ] = ACTIONS(4108), + [anon_sym_GT_GT_EQ] = ACTIONS(4108), + [anon_sym_AMP_EQ] = ACTIONS(4108), + [anon_sym_CARET_EQ] = ACTIONS(4108), + [anon_sym_PIPE_EQ] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4108), + [anon_sym_PLUS_PLUS] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_DASH_GT] = ACTIONS(4108), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4106), + [anon_sym___typeof] = ACTIONS(4106), + [anon_sym_typeof] = ACTIONS(4106), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4106), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4106), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4106), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4106), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4106), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4106), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4106), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4106), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4106), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4106), + [anon_sym_NS_AVAILABLE] = ACTIONS(4106), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4106), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4106), + [anon_sym_API_AVAILABLE] = ACTIONS(4106), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4106), + [anon_sym_API_DEPRECATED] = ACTIONS(4106), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4106), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4106), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4106), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4106), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4106), + [anon_sym___deprecated_msg] = ACTIONS(4106), + [anon_sym___deprecated_enum_msg] = ACTIONS(4106), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4106), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4106), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4106), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4106), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4106), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4106), + [anon_sym_BOOL] = ACTIONS(4106), + [anon_sym_IMP] = ACTIONS(4106), + [anon_sym_SEL] = ACTIONS(4106), + [anon_sym_Class] = ACTIONS(4106), + [anon_sym_id] = ACTIONS(4106), + }, + [1475] = { + [sym_identifier] = ACTIONS(4110), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4112), + [anon_sym_COMMA] = ACTIONS(4112), + [anon_sym_LPAREN2] = ACTIONS(4112), + [anon_sym_DASH] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4110), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4112), + [anon_sym_AMP_AMP] = ACTIONS(4112), + [anon_sym_PIPE] = ACTIONS(4110), + [anon_sym_CARET] = ACTIONS(4110), + [anon_sym_AMP] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4112), + [anon_sym_BANG_EQ] = ACTIONS(4112), + [anon_sym_GT] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4112), + [anon_sym_LT_EQ] = ACTIONS(4112), + [anon_sym_LT] = ACTIONS(4110), + [anon_sym_LT_LT] = ACTIONS(4110), + [anon_sym_GT_GT] = ACTIONS(4110), + [anon_sym_SEMI] = ACTIONS(4112), + [anon_sym___extension__] = ACTIONS(4110), + [anon_sym_extern] = ACTIONS(4110), + [anon_sym___attribute__] = ACTIONS(4110), + [anon_sym___attribute] = ACTIONS(4110), + [anon_sym_noreturn] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4112), + [anon_sym___declspec] = ACTIONS(4110), + [anon_sym_LBRACE] = ACTIONS(4112), + [anon_sym_signed] = ACTIONS(4110), + [anon_sym_unsigned] = ACTIONS(4110), + [anon_sym_long] = ACTIONS(4110), + [anon_sym_short] = ACTIONS(4110), + [anon_sym_static] = ACTIONS(4110), + [anon_sym_EQ] = ACTIONS(4110), + [anon_sym_ATautoreleasepool] = ACTIONS(4112), + [anon_sym_auto] = ACTIONS(4110), + [anon_sym_register] = ACTIONS(4110), + [anon_sym_inline] = ACTIONS(4110), + [anon_sym___inline] = ACTIONS(4110), + [anon_sym___inline__] = ACTIONS(4110), + [anon_sym___forceinline] = ACTIONS(4110), + [anon_sym_thread_local] = ACTIONS(4110), + [anon_sym___thread] = ACTIONS(4110), + [anon_sym_CG_EXTERN] = ACTIONS(4110), + [anon_sym_CG_INLINE] = ACTIONS(4110), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4110), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4110), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4110), + [anon_sym_IBOutlet] = ACTIONS(4110), + [anon_sym_IBInspectable] = ACTIONS(4110), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4110), + [anon_sym_NS_INLINE] = ACTIONS(4110), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4110), + [anon_sym_OBJC_EXPORT] = ACTIONS(4110), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4110), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4110), + [anon_sym_const] = ACTIONS(4110), + [anon_sym_constexpr] = ACTIONS(4110), + [anon_sym_volatile] = ACTIONS(4110), + [anon_sym_restrict] = ACTIONS(4110), + [anon_sym___restrict__] = ACTIONS(4110), + [anon_sym__Atomic] = ACTIONS(4110), + [anon_sym__Noreturn] = ACTIONS(4110), + [anon_sym__Nonnull] = ACTIONS(4110), + [anon_sym_nullable] = ACTIONS(4110), + [anon_sym__Complex] = ACTIONS(4110), + [anon_sym__Nullable] = ACTIONS(4110), + [anon_sym__Nullable_result] = ACTIONS(4110), + [anon_sym__Null_unspecified] = ACTIONS(4110), + [anon_sym___autoreleasing] = ACTIONS(4110), + [anon_sym___block] = ACTIONS(4110), + [anon_sym___bridge] = ACTIONS(4110), + [anon_sym___bridge_retained] = ACTIONS(4110), + [anon_sym___bridge_transfer] = ACTIONS(4110), + [anon_sym___complex] = ACTIONS(4110), + [anon_sym___const] = ACTIONS(4110), + [anon_sym___imag] = ACTIONS(4110), + [anon_sym___kindof] = ACTIONS(4110), + [anon_sym___nonnull] = ACTIONS(4110), + [anon_sym___nullable] = ACTIONS(4110), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4110), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4110), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4110), + [anon_sym___real] = ACTIONS(4110), + [anon_sym___strong] = ACTIONS(4110), + [anon_sym___unsafe_unretained] = ACTIONS(4110), + [anon_sym___unused] = ACTIONS(4110), + [anon_sym___weak] = ACTIONS(4110), + [anon_sym_alignas] = ACTIONS(4110), + [anon_sym__Alignas] = ACTIONS(4110), + [sym_primitive_type] = ACTIONS(4110), + [anon_sym_enum] = ACTIONS(4110), + [anon_sym_struct] = ACTIONS(4110), + [anon_sym_union] = ACTIONS(4110), + [anon_sym_QMARK] = ACTIONS(4112), + [anon_sym_STAR_EQ] = ACTIONS(4112), + [anon_sym_SLASH_EQ] = ACTIONS(4112), + [anon_sym_PERCENT_EQ] = ACTIONS(4112), + [anon_sym_PLUS_EQ] = ACTIONS(4112), + [anon_sym_DASH_EQ] = ACTIONS(4112), + [anon_sym_LT_LT_EQ] = ACTIONS(4112), + [anon_sym_GT_GT_EQ] = ACTIONS(4112), + [anon_sym_AMP_EQ] = ACTIONS(4112), + [anon_sym_CARET_EQ] = ACTIONS(4112), + [anon_sym_PIPE_EQ] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_DASH_GT] = ACTIONS(4112), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_DQUOTE] = ACTIONS(4112), + [anon_sym_L_DQUOTE] = ACTIONS(4112), + [anon_sym_u_DQUOTE] = ACTIONS(4112), + [anon_sym_U_DQUOTE] = ACTIONS(4112), + [anon_sym_u8_DQUOTE] = ACTIONS(4112), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4110), + [anon_sym___typeof] = ACTIONS(4110), + [anon_sym_typeof] = ACTIONS(4110), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4110), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4110), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4110), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4110), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4110), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4110), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4110), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4110), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4110), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4110), + [anon_sym_NS_AVAILABLE] = ACTIONS(4110), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4110), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4110), + [anon_sym_API_AVAILABLE] = ACTIONS(4110), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4110), + [anon_sym_API_DEPRECATED] = ACTIONS(4110), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4110), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4110), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4110), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4110), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4110), + [anon_sym___deprecated_msg] = ACTIONS(4110), + [anon_sym___deprecated_enum_msg] = ACTIONS(4110), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4110), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4110), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4110), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4110), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4110), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4110), + [anon_sym_BOOL] = ACTIONS(4110), + [anon_sym_IMP] = ACTIONS(4110), + [anon_sym_SEL] = ACTIONS(4110), + [anon_sym_Class] = ACTIONS(4110), + [anon_sym_id] = ACTIONS(4110), + }, + [1476] = { + [sym_identifier] = ACTIONS(4114), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4117), + [anon_sym_COMMA] = ACTIONS(4117), + [anon_sym_LPAREN2] = ACTIONS(4117), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4114), + [anon_sym_PIPE_PIPE] = ACTIONS(4117), + [anon_sym_AMP_AMP] = ACTIONS(4117), + [anon_sym_PIPE] = ACTIONS(4114), + [anon_sym_CARET] = ACTIONS(4114), + [anon_sym_AMP] = ACTIONS(4114), + [anon_sym_EQ_EQ] = ACTIONS(4117), + [anon_sym_BANG_EQ] = ACTIONS(4117), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_GT_EQ] = ACTIONS(4117), + [anon_sym_LT_EQ] = ACTIONS(4117), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_LT_LT] = ACTIONS(4114), + [anon_sym_GT_GT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4117), + [anon_sym___extension__] = ACTIONS(4114), + [anon_sym_extern] = ACTIONS(4114), + [anon_sym___attribute__] = ACTIONS(4114), + [anon_sym___attribute] = ACTIONS(4114), + [anon_sym_noreturn] = ACTIONS(4114), + [anon_sym_LBRACK] = ACTIONS(4117), + [anon_sym___declspec] = ACTIONS(4114), + [anon_sym_LBRACE] = ACTIONS(4117), + [anon_sym_signed] = ACTIONS(4114), + [anon_sym_unsigned] = ACTIONS(4114), + [anon_sym_long] = ACTIONS(4114), + [anon_sym_short] = ACTIONS(4114), + [anon_sym_static] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(4114), + [anon_sym_ATautoreleasepool] = ACTIONS(4117), + [anon_sym_auto] = ACTIONS(4114), + [anon_sym_register] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym___inline] = ACTIONS(4114), + [anon_sym___inline__] = ACTIONS(4114), + [anon_sym___forceinline] = ACTIONS(4114), + [anon_sym_thread_local] = ACTIONS(4114), + [anon_sym___thread] = ACTIONS(4114), + [anon_sym_CG_EXTERN] = ACTIONS(4114), + [anon_sym_CG_INLINE] = ACTIONS(4114), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4114), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4114), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4114), + [anon_sym_IBOutlet] = ACTIONS(4114), + [anon_sym_IBInspectable] = ACTIONS(4114), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4114), + [anon_sym_NS_INLINE] = ACTIONS(4114), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4114), + [anon_sym_OBJC_EXPORT] = ACTIONS(4114), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4114), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4114), + [anon_sym_const] = ACTIONS(4114), + [anon_sym_constexpr] = ACTIONS(4114), + [anon_sym_volatile] = ACTIONS(4114), + [anon_sym_restrict] = ACTIONS(4114), + [anon_sym___restrict__] = ACTIONS(4114), + [anon_sym__Atomic] = ACTIONS(4114), + [anon_sym__Noreturn] = ACTIONS(4114), + [anon_sym__Nonnull] = ACTIONS(4114), + [anon_sym_nullable] = ACTIONS(4114), + [anon_sym__Complex] = ACTIONS(4114), + [anon_sym__Nullable] = ACTIONS(4114), + [anon_sym__Nullable_result] = ACTIONS(4114), + [anon_sym__Null_unspecified] = ACTIONS(4114), + [anon_sym___autoreleasing] = ACTIONS(4114), + [anon_sym___block] = ACTIONS(4114), + [anon_sym___bridge] = ACTIONS(4114), + [anon_sym___bridge_retained] = ACTIONS(4114), + [anon_sym___bridge_transfer] = ACTIONS(4114), + [anon_sym___complex] = ACTIONS(4114), + [anon_sym___const] = ACTIONS(4114), + [anon_sym___imag] = ACTIONS(4114), + [anon_sym___kindof] = ACTIONS(4114), + [anon_sym___nonnull] = ACTIONS(4114), + [anon_sym___nullable] = ACTIONS(4114), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4114), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4114), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4114), + [anon_sym___real] = ACTIONS(4114), + [anon_sym___strong] = ACTIONS(4114), + [anon_sym___unsafe_unretained] = ACTIONS(4114), + [anon_sym___unused] = ACTIONS(4114), + [anon_sym___weak] = ACTIONS(4114), + [anon_sym_alignas] = ACTIONS(4114), + [anon_sym__Alignas] = ACTIONS(4114), + [sym_primitive_type] = ACTIONS(4114), + [anon_sym_enum] = ACTIONS(4114), + [anon_sym_struct] = ACTIONS(4114), + [anon_sym_union] = ACTIONS(4114), + [anon_sym_QMARK] = ACTIONS(4117), + [anon_sym_STAR_EQ] = ACTIONS(4117), + [anon_sym_SLASH_EQ] = ACTIONS(4117), + [anon_sym_PERCENT_EQ] = ACTIONS(4117), + [anon_sym_PLUS_EQ] = ACTIONS(4117), + [anon_sym_DASH_EQ] = ACTIONS(4117), + [anon_sym_LT_LT_EQ] = ACTIONS(4117), + [anon_sym_GT_GT_EQ] = ACTIONS(4117), + [anon_sym_AMP_EQ] = ACTIONS(4117), + [anon_sym_CARET_EQ] = ACTIONS(4117), + [anon_sym_PIPE_EQ] = ACTIONS(4117), + [anon_sym_DASH_DASH] = ACTIONS(4117), + [anon_sym_PLUS_PLUS] = ACTIONS(4117), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_DASH_GT] = ACTIONS(4117), + [anon_sym_AT] = ACTIONS(4114), + [anon_sym_DQUOTE] = ACTIONS(4117), + [anon_sym_L_DQUOTE] = ACTIONS(4117), + [anon_sym_u_DQUOTE] = ACTIONS(4117), + [anon_sym_U_DQUOTE] = ACTIONS(4117), + [anon_sym_u8_DQUOTE] = ACTIONS(4117), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4114), + [anon_sym___typeof] = ACTIONS(4114), + [anon_sym_typeof] = ACTIONS(4114), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4114), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4114), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4114), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4114), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4114), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4114), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4114), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4114), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4114), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4114), + [anon_sym_NS_AVAILABLE] = ACTIONS(4114), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4114), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4114), + [anon_sym_API_AVAILABLE] = ACTIONS(4114), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4114), + [anon_sym_API_DEPRECATED] = ACTIONS(4114), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4114), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4114), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4114), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4114), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4114), + [anon_sym___deprecated_msg] = ACTIONS(4114), + [anon_sym___deprecated_enum_msg] = ACTIONS(4114), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4114), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4114), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4114), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4114), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4114), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4114), + [anon_sym_BOOL] = ACTIONS(4114), + [anon_sym_IMP] = ACTIONS(4114), + [anon_sym_SEL] = ACTIONS(4114), + [anon_sym_Class] = ACTIONS(4114), + [anon_sym_id] = ACTIONS(4114), + }, + [1477] = { + [sym_identifier] = ACTIONS(4120), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_RPAREN] = ACTIONS(4122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4122), + [anon_sym_LPAREN2] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE] = ACTIONS(4120), + [anon_sym_CARET] = ACTIONS(4120), + [anon_sym_AMP] = ACTIONS(4120), + [anon_sym_EQ_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4122), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_LT_LT] = ACTIONS(4120), + [anon_sym_GT_GT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym___extension__] = ACTIONS(4120), + [anon_sym_extern] = ACTIONS(4120), + [anon_sym___attribute__] = ACTIONS(4120), + [anon_sym___attribute] = ACTIONS(4120), + [anon_sym_noreturn] = ACTIONS(4120), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_RBRACK] = ACTIONS(4122), + [anon_sym___declspec] = ACTIONS(4120), + [anon_sym_LBRACE] = ACTIONS(4122), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_signed] = ACTIONS(4120), + [anon_sym_unsigned] = ACTIONS(4120), + [anon_sym_long] = ACTIONS(4120), + [anon_sym_short] = ACTIONS(4120), + [anon_sym_static] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(4120), + [anon_sym_ATautoreleasepool] = ACTIONS(4122), + [anon_sym_auto] = ACTIONS(4120), + [anon_sym_register] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym___inline] = ACTIONS(4120), + [anon_sym___inline__] = ACTIONS(4120), + [anon_sym___forceinline] = ACTIONS(4120), + [anon_sym_thread_local] = ACTIONS(4120), + [anon_sym___thread] = ACTIONS(4120), + [anon_sym_CG_EXTERN] = ACTIONS(4120), + [anon_sym_CG_INLINE] = ACTIONS(4120), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4120), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4120), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4120), + [anon_sym_IBOutlet] = ACTIONS(4120), + [anon_sym_IBInspectable] = ACTIONS(4120), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4120), + [anon_sym_NS_INLINE] = ACTIONS(4120), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4120), + [anon_sym_OBJC_EXPORT] = ACTIONS(4120), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4120), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4120), + [anon_sym_const] = ACTIONS(4120), + [anon_sym_constexpr] = ACTIONS(4120), + [anon_sym_volatile] = ACTIONS(4120), + [anon_sym_restrict] = ACTIONS(4120), + [anon_sym___restrict__] = ACTIONS(4120), + [anon_sym__Atomic] = ACTIONS(4120), + [anon_sym__Noreturn] = ACTIONS(4120), + [anon_sym__Nonnull] = ACTIONS(4120), + [anon_sym_nullable] = ACTIONS(4120), + [anon_sym__Complex] = ACTIONS(4120), + [anon_sym__Nullable] = ACTIONS(4120), + [anon_sym__Nullable_result] = ACTIONS(4120), + [anon_sym__Null_unspecified] = ACTIONS(4120), + [anon_sym___autoreleasing] = ACTIONS(4120), + [anon_sym___block] = ACTIONS(4120), + [anon_sym___bridge] = ACTIONS(4120), + [anon_sym___bridge_retained] = ACTIONS(4120), + [anon_sym___bridge_transfer] = ACTIONS(4120), + [anon_sym___complex] = ACTIONS(4120), + [anon_sym___const] = ACTIONS(4120), + [anon_sym___imag] = ACTIONS(4120), + [anon_sym___kindof] = ACTIONS(4120), + [anon_sym___nonnull] = ACTIONS(4120), + [anon_sym___nullable] = ACTIONS(4120), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4120), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4120), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4120), + [anon_sym___real] = ACTIONS(4120), + [anon_sym___strong] = ACTIONS(4120), + [anon_sym___unsafe_unretained] = ACTIONS(4120), + [anon_sym___unused] = ACTIONS(4120), + [anon_sym___weak] = ACTIONS(4120), + [anon_sym_alignas] = ACTIONS(4120), + [anon_sym__Alignas] = ACTIONS(4120), + [sym_primitive_type] = ACTIONS(4120), + [anon_sym_enum] = ACTIONS(4120), + [anon_sym_COLON] = ACTIONS(4122), + [anon_sym_struct] = ACTIONS(4120), + [anon_sym_union] = ACTIONS(4120), + [anon_sym_QMARK] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_LT_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_GT_EQ] = ACTIONS(4122), + [anon_sym_AMP_EQ] = ACTIONS(4122), + [anon_sym_CARET_EQ] = ACTIONS(4122), + [anon_sym_PIPE_EQ] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_DASH_GT] = ACTIONS(4122), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4120), + [anon_sym___typeof] = ACTIONS(4120), + [anon_sym_typeof] = ACTIONS(4120), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4120), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4120), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4120), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4120), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4120), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4120), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4120), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4120), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4120), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4120), + [anon_sym_NS_AVAILABLE] = ACTIONS(4120), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4120), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4120), + [anon_sym_API_AVAILABLE] = ACTIONS(4120), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4120), + [anon_sym_API_DEPRECATED] = ACTIONS(4120), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4120), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4120), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4120), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4120), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4120), + [anon_sym___deprecated_msg] = ACTIONS(4120), + [anon_sym___deprecated_enum_msg] = ACTIONS(4120), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4120), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4120), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4120), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4120), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4120), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4120), + [anon_sym_BOOL] = ACTIONS(4120), + [anon_sym_IMP] = ACTIONS(4120), + [anon_sym_SEL] = ACTIONS(4120), + [anon_sym_Class] = ACTIONS(4120), + [anon_sym_id] = ACTIONS(4120), + }, + [1478] = { + [sym_identifier] = ACTIONS(4124), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4126), + [anon_sym_COMMA] = ACTIONS(4126), + [anon_sym_RPAREN] = ACTIONS(4126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4126), + [anon_sym_LPAREN2] = ACTIONS(4126), + [anon_sym_DASH] = ACTIONS(4124), + [anon_sym_PLUS] = ACTIONS(4124), + [anon_sym_STAR] = ACTIONS(4124), + [anon_sym_SLASH] = ACTIONS(4124), + [anon_sym_PERCENT] = ACTIONS(4124), + [anon_sym_PIPE_PIPE] = ACTIONS(4126), + [anon_sym_AMP_AMP] = ACTIONS(4126), + [anon_sym_PIPE] = ACTIONS(4124), + [anon_sym_CARET] = ACTIONS(4124), + [anon_sym_AMP] = ACTIONS(4124), + [anon_sym_EQ_EQ] = ACTIONS(4126), + [anon_sym_BANG_EQ] = ACTIONS(4126), + [anon_sym_GT] = ACTIONS(4124), + [anon_sym_GT_EQ] = ACTIONS(4126), + [anon_sym_LT_EQ] = ACTIONS(4126), + [anon_sym_LT] = ACTIONS(4124), + [anon_sym_LT_LT] = ACTIONS(4124), + [anon_sym_GT_GT] = ACTIONS(4124), + [anon_sym_SEMI] = ACTIONS(4126), + [anon_sym___extension__] = ACTIONS(4124), + [anon_sym_extern] = ACTIONS(4124), + [anon_sym___attribute__] = ACTIONS(4124), + [anon_sym___attribute] = ACTIONS(4124), + [anon_sym_noreturn] = ACTIONS(4124), + [anon_sym_LBRACK] = ACTIONS(4126), + [anon_sym_RBRACK] = ACTIONS(4126), + [anon_sym___declspec] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4126), + [anon_sym_RBRACE] = ACTIONS(4126), + [anon_sym_signed] = ACTIONS(4124), + [anon_sym_unsigned] = ACTIONS(4124), + [anon_sym_long] = ACTIONS(4124), + [anon_sym_short] = ACTIONS(4124), + [anon_sym_static] = ACTIONS(4124), + [anon_sym_EQ] = ACTIONS(4124), + [anon_sym_ATautoreleasepool] = ACTIONS(4126), + [anon_sym_auto] = ACTIONS(4124), + [anon_sym_register] = ACTIONS(4124), + [anon_sym_inline] = ACTIONS(4124), + [anon_sym___inline] = ACTIONS(4124), + [anon_sym___inline__] = ACTIONS(4124), + [anon_sym___forceinline] = ACTIONS(4124), + [anon_sym_thread_local] = ACTIONS(4124), + [anon_sym___thread] = ACTIONS(4124), + [anon_sym_CG_EXTERN] = ACTIONS(4124), + [anon_sym_CG_INLINE] = ACTIONS(4124), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4124), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4124), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4124), + [anon_sym_IBOutlet] = ACTIONS(4124), + [anon_sym_IBInspectable] = ACTIONS(4124), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4124), + [anon_sym_NS_INLINE] = ACTIONS(4124), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4124), + [anon_sym_OBJC_EXPORT] = ACTIONS(4124), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4124), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4124), + [anon_sym_const] = ACTIONS(4124), + [anon_sym_constexpr] = ACTIONS(4124), + [anon_sym_volatile] = ACTIONS(4124), + [anon_sym_restrict] = ACTIONS(4124), + [anon_sym___restrict__] = ACTIONS(4124), + [anon_sym__Atomic] = ACTIONS(4124), + [anon_sym__Noreturn] = ACTIONS(4124), + [anon_sym__Nonnull] = ACTIONS(4124), + [anon_sym_nullable] = ACTIONS(4124), + [anon_sym__Complex] = ACTIONS(4124), + [anon_sym__Nullable] = ACTIONS(4124), + [anon_sym__Nullable_result] = ACTIONS(4124), + [anon_sym__Null_unspecified] = ACTIONS(4124), + [anon_sym___autoreleasing] = ACTIONS(4124), + [anon_sym___block] = ACTIONS(4124), + [anon_sym___bridge] = ACTIONS(4124), + [anon_sym___bridge_retained] = ACTIONS(4124), + [anon_sym___bridge_transfer] = ACTIONS(4124), + [anon_sym___complex] = ACTIONS(4124), + [anon_sym___const] = ACTIONS(4124), + [anon_sym___imag] = ACTIONS(4124), + [anon_sym___kindof] = ACTIONS(4124), + [anon_sym___nonnull] = ACTIONS(4124), + [anon_sym___nullable] = ACTIONS(4124), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4124), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4124), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4124), + [anon_sym___real] = ACTIONS(4124), + [anon_sym___strong] = ACTIONS(4124), + [anon_sym___unsafe_unretained] = ACTIONS(4124), + [anon_sym___unused] = ACTIONS(4124), + [anon_sym___weak] = ACTIONS(4124), + [anon_sym_alignas] = ACTIONS(4124), + [anon_sym__Alignas] = ACTIONS(4124), + [sym_primitive_type] = ACTIONS(4124), + [anon_sym_enum] = ACTIONS(4124), + [anon_sym_COLON] = ACTIONS(4126), + [anon_sym_struct] = ACTIONS(4124), + [anon_sym_union] = ACTIONS(4124), + [anon_sym_QMARK] = ACTIONS(4126), + [anon_sym_STAR_EQ] = ACTIONS(4126), + [anon_sym_SLASH_EQ] = ACTIONS(4126), + [anon_sym_PERCENT_EQ] = ACTIONS(4126), + [anon_sym_PLUS_EQ] = ACTIONS(4126), + [anon_sym_DASH_EQ] = ACTIONS(4126), + [anon_sym_LT_LT_EQ] = ACTIONS(4126), + [anon_sym_GT_GT_EQ] = ACTIONS(4126), + [anon_sym_AMP_EQ] = ACTIONS(4126), + [anon_sym_CARET_EQ] = ACTIONS(4126), + [anon_sym_PIPE_EQ] = ACTIONS(4126), + [anon_sym_DASH_DASH] = ACTIONS(4126), + [anon_sym_PLUS_PLUS] = ACTIONS(4126), + [anon_sym_DOT] = ACTIONS(4124), + [anon_sym_DASH_GT] = ACTIONS(4126), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4124), + [anon_sym___typeof] = ACTIONS(4124), + [anon_sym_typeof] = ACTIONS(4124), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4124), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4124), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4124), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4124), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4124), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4124), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4124), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4124), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4124), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4124), + [anon_sym_NS_AVAILABLE] = ACTIONS(4124), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4124), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4124), + [anon_sym_API_AVAILABLE] = ACTIONS(4124), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4124), + [anon_sym_API_DEPRECATED] = ACTIONS(4124), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4124), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4124), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4124), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4124), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4124), + [anon_sym___deprecated_msg] = ACTIONS(4124), + [anon_sym___deprecated_enum_msg] = ACTIONS(4124), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4124), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4124), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4124), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4124), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4124), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4124), + [anon_sym_BOOL] = ACTIONS(4124), + [anon_sym_IMP] = ACTIONS(4124), + [anon_sym_SEL] = ACTIONS(4124), + [anon_sym_Class] = ACTIONS(4124), + [anon_sym_id] = ACTIONS(4124), + }, + [1479] = { + [sym_identifier] = ACTIONS(4128), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4130), + [anon_sym_COMMA] = ACTIONS(4130), + [anon_sym_RPAREN] = ACTIONS(4130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4130), + [anon_sym_LPAREN2] = ACTIONS(4130), + [anon_sym_DASH] = ACTIONS(4128), + [anon_sym_PLUS] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4128), + [anon_sym_SLASH] = ACTIONS(4128), + [anon_sym_PERCENT] = ACTIONS(4128), + [anon_sym_PIPE_PIPE] = ACTIONS(4130), + [anon_sym_AMP_AMP] = ACTIONS(4130), + [anon_sym_PIPE] = ACTIONS(4128), + [anon_sym_CARET] = ACTIONS(4128), + [anon_sym_AMP] = ACTIONS(4128), + [anon_sym_EQ_EQ] = ACTIONS(4130), + [anon_sym_BANG_EQ] = ACTIONS(4130), + [anon_sym_GT] = ACTIONS(4128), + [anon_sym_GT_EQ] = ACTIONS(4130), + [anon_sym_LT_EQ] = ACTIONS(4130), + [anon_sym_LT] = ACTIONS(4128), + [anon_sym_LT_LT] = ACTIONS(4128), + [anon_sym_GT_GT] = ACTIONS(4128), + [anon_sym_SEMI] = ACTIONS(4130), + [anon_sym___extension__] = ACTIONS(4128), + [anon_sym_extern] = ACTIONS(4128), + [anon_sym___attribute__] = ACTIONS(4128), + [anon_sym___attribute] = ACTIONS(4128), + [anon_sym_noreturn] = ACTIONS(4128), + [anon_sym_LBRACK] = ACTIONS(4130), + [anon_sym_RBRACK] = ACTIONS(4130), + [anon_sym___declspec] = ACTIONS(4128), + [anon_sym_LBRACE] = ACTIONS(4130), + [anon_sym_RBRACE] = ACTIONS(4130), + [anon_sym_signed] = ACTIONS(4128), + [anon_sym_unsigned] = ACTIONS(4128), + [anon_sym_long] = ACTIONS(4128), + [anon_sym_short] = ACTIONS(4128), + [anon_sym_static] = ACTIONS(4128), + [anon_sym_EQ] = ACTIONS(4128), + [anon_sym_ATautoreleasepool] = ACTIONS(4130), + [anon_sym_auto] = ACTIONS(4128), + [anon_sym_register] = ACTIONS(4128), + [anon_sym_inline] = ACTIONS(4128), + [anon_sym___inline] = ACTIONS(4128), + [anon_sym___inline__] = ACTIONS(4128), + [anon_sym___forceinline] = ACTIONS(4128), + [anon_sym_thread_local] = ACTIONS(4128), + [anon_sym___thread] = ACTIONS(4128), + [anon_sym_CG_EXTERN] = ACTIONS(4128), + [anon_sym_CG_INLINE] = ACTIONS(4128), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4128), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4128), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4128), + [anon_sym_IBOutlet] = ACTIONS(4128), + [anon_sym_IBInspectable] = ACTIONS(4128), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4128), + [anon_sym_NS_INLINE] = ACTIONS(4128), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4128), + [anon_sym_OBJC_EXPORT] = ACTIONS(4128), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4128), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4128), + [anon_sym_const] = ACTIONS(4128), + [anon_sym_constexpr] = ACTIONS(4128), + [anon_sym_volatile] = ACTIONS(4128), + [anon_sym_restrict] = ACTIONS(4128), + [anon_sym___restrict__] = ACTIONS(4128), + [anon_sym__Atomic] = ACTIONS(4128), + [anon_sym__Noreturn] = ACTIONS(4128), + [anon_sym__Nonnull] = ACTIONS(4128), + [anon_sym_nullable] = ACTIONS(4128), + [anon_sym__Complex] = ACTIONS(4128), + [anon_sym__Nullable] = ACTIONS(4128), + [anon_sym__Nullable_result] = ACTIONS(4128), + [anon_sym__Null_unspecified] = ACTIONS(4128), + [anon_sym___autoreleasing] = ACTIONS(4128), + [anon_sym___block] = ACTIONS(4128), + [anon_sym___bridge] = ACTIONS(4128), + [anon_sym___bridge_retained] = ACTIONS(4128), + [anon_sym___bridge_transfer] = ACTIONS(4128), + [anon_sym___complex] = ACTIONS(4128), + [anon_sym___const] = ACTIONS(4128), + [anon_sym___imag] = ACTIONS(4128), + [anon_sym___kindof] = ACTIONS(4128), + [anon_sym___nonnull] = ACTIONS(4128), + [anon_sym___nullable] = ACTIONS(4128), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4128), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4128), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4128), + [anon_sym___real] = ACTIONS(4128), + [anon_sym___strong] = ACTIONS(4128), + [anon_sym___unsafe_unretained] = ACTIONS(4128), + [anon_sym___unused] = ACTIONS(4128), + [anon_sym___weak] = ACTIONS(4128), + [anon_sym_alignas] = ACTIONS(4128), + [anon_sym__Alignas] = ACTIONS(4128), + [sym_primitive_type] = ACTIONS(4128), + [anon_sym_enum] = ACTIONS(4128), + [anon_sym_COLON] = ACTIONS(4130), + [anon_sym_struct] = ACTIONS(4128), + [anon_sym_union] = ACTIONS(4128), + [anon_sym_QMARK] = ACTIONS(4130), + [anon_sym_STAR_EQ] = ACTIONS(4130), + [anon_sym_SLASH_EQ] = ACTIONS(4130), + [anon_sym_PERCENT_EQ] = ACTIONS(4130), + [anon_sym_PLUS_EQ] = ACTIONS(4130), + [anon_sym_DASH_EQ] = ACTIONS(4130), + [anon_sym_LT_LT_EQ] = ACTIONS(4130), + [anon_sym_GT_GT_EQ] = ACTIONS(4130), + [anon_sym_AMP_EQ] = ACTIONS(4130), + [anon_sym_CARET_EQ] = ACTIONS(4130), + [anon_sym_PIPE_EQ] = ACTIONS(4130), + [anon_sym_DASH_DASH] = ACTIONS(4130), + [anon_sym_PLUS_PLUS] = ACTIONS(4130), + [anon_sym_DOT] = ACTIONS(4128), + [anon_sym_DASH_GT] = ACTIONS(4130), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4128), + [anon_sym___typeof] = ACTIONS(4128), + [anon_sym_typeof] = ACTIONS(4128), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4128), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4128), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4128), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4128), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4128), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4128), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4128), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4128), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4128), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4128), + [anon_sym_NS_AVAILABLE] = ACTIONS(4128), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4128), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4128), + [anon_sym_API_AVAILABLE] = ACTIONS(4128), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4128), + [anon_sym_API_DEPRECATED] = ACTIONS(4128), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4128), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4128), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4128), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4128), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4128), + [anon_sym___deprecated_msg] = ACTIONS(4128), + [anon_sym___deprecated_enum_msg] = ACTIONS(4128), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4128), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4128), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4128), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4128), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4128), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4128), + [anon_sym_BOOL] = ACTIONS(4128), + [anon_sym_IMP] = ACTIONS(4128), + [anon_sym_SEL] = ACTIONS(4128), + [anon_sym_Class] = ACTIONS(4128), + [anon_sym_id] = ACTIONS(4128), + }, + [1480] = { + [sym_identifier] = ACTIONS(4132), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4134), + [anon_sym_COMMA] = ACTIONS(4134), + [anon_sym_RPAREN] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4134), + [anon_sym_LPAREN2] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4132), + [anon_sym_PLUS] = ACTIONS(4132), + [anon_sym_STAR] = ACTIONS(4132), + [anon_sym_SLASH] = ACTIONS(4132), + [anon_sym_PERCENT] = ACTIONS(4132), + [anon_sym_PIPE_PIPE] = ACTIONS(4134), + [anon_sym_AMP_AMP] = ACTIONS(4134), + [anon_sym_PIPE] = ACTIONS(4132), + [anon_sym_CARET] = ACTIONS(4132), + [anon_sym_AMP] = ACTIONS(4132), + [anon_sym_EQ_EQ] = ACTIONS(4134), + [anon_sym_BANG_EQ] = ACTIONS(4134), + [anon_sym_GT] = ACTIONS(4132), + [anon_sym_GT_EQ] = ACTIONS(4134), + [anon_sym_LT_EQ] = ACTIONS(4134), + [anon_sym_LT] = ACTIONS(4132), + [anon_sym_LT_LT] = ACTIONS(4132), + [anon_sym_GT_GT] = ACTIONS(4132), + [anon_sym_SEMI] = ACTIONS(4134), + [anon_sym___extension__] = ACTIONS(4132), + [anon_sym_extern] = ACTIONS(4132), + [anon_sym___attribute__] = ACTIONS(4132), + [anon_sym___attribute] = ACTIONS(4132), + [anon_sym_noreturn] = ACTIONS(4132), + [anon_sym_LBRACK] = ACTIONS(4134), + [anon_sym_RBRACK] = ACTIONS(4134), + [anon_sym___declspec] = ACTIONS(4132), + [anon_sym_LBRACE] = ACTIONS(4134), + [anon_sym_RBRACE] = ACTIONS(4134), + [anon_sym_signed] = ACTIONS(4132), + [anon_sym_unsigned] = ACTIONS(4132), + [anon_sym_long] = ACTIONS(4132), + [anon_sym_short] = ACTIONS(4132), + [anon_sym_static] = ACTIONS(4132), + [anon_sym_EQ] = ACTIONS(4132), + [anon_sym_ATautoreleasepool] = ACTIONS(4134), + [anon_sym_auto] = ACTIONS(4132), + [anon_sym_register] = ACTIONS(4132), + [anon_sym_inline] = ACTIONS(4132), + [anon_sym___inline] = ACTIONS(4132), + [anon_sym___inline__] = ACTIONS(4132), + [anon_sym___forceinline] = ACTIONS(4132), + [anon_sym_thread_local] = ACTIONS(4132), + [anon_sym___thread] = ACTIONS(4132), + [anon_sym_CG_EXTERN] = ACTIONS(4132), + [anon_sym_CG_INLINE] = ACTIONS(4132), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4132), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4132), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4132), + [anon_sym_IBOutlet] = ACTIONS(4132), + [anon_sym_IBInspectable] = ACTIONS(4132), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4132), + [anon_sym_NS_INLINE] = ACTIONS(4132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4132), + [anon_sym_OBJC_EXPORT] = ACTIONS(4132), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4132), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4132), + [anon_sym_const] = ACTIONS(4132), + [anon_sym_constexpr] = ACTIONS(4132), + [anon_sym_volatile] = ACTIONS(4132), + [anon_sym_restrict] = ACTIONS(4132), + [anon_sym___restrict__] = ACTIONS(4132), + [anon_sym__Atomic] = ACTIONS(4132), + [anon_sym__Noreturn] = ACTIONS(4132), + [anon_sym__Nonnull] = ACTIONS(4132), + [anon_sym_nullable] = ACTIONS(4132), + [anon_sym__Complex] = ACTIONS(4132), + [anon_sym__Nullable] = ACTIONS(4132), + [anon_sym__Nullable_result] = ACTIONS(4132), + [anon_sym__Null_unspecified] = ACTIONS(4132), + [anon_sym___autoreleasing] = ACTIONS(4132), + [anon_sym___block] = ACTIONS(4132), + [anon_sym___bridge] = ACTIONS(4132), + [anon_sym___bridge_retained] = ACTIONS(4132), + [anon_sym___bridge_transfer] = ACTIONS(4132), + [anon_sym___complex] = ACTIONS(4132), + [anon_sym___const] = ACTIONS(4132), + [anon_sym___imag] = ACTIONS(4132), + [anon_sym___kindof] = ACTIONS(4132), + [anon_sym___nonnull] = ACTIONS(4132), + [anon_sym___nullable] = ACTIONS(4132), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4132), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4132), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4132), + [anon_sym___real] = ACTIONS(4132), + [anon_sym___strong] = ACTIONS(4132), + [anon_sym___unsafe_unretained] = ACTIONS(4132), + [anon_sym___unused] = ACTIONS(4132), + [anon_sym___weak] = ACTIONS(4132), + [anon_sym_alignas] = ACTIONS(4132), + [anon_sym__Alignas] = ACTIONS(4132), + [sym_primitive_type] = ACTIONS(4132), + [anon_sym_enum] = ACTIONS(4132), + [anon_sym_COLON] = ACTIONS(4134), + [anon_sym_struct] = ACTIONS(4132), + [anon_sym_union] = ACTIONS(4132), + [anon_sym_QMARK] = ACTIONS(4134), + [anon_sym_STAR_EQ] = ACTIONS(4134), + [anon_sym_SLASH_EQ] = ACTIONS(4134), + [anon_sym_PERCENT_EQ] = ACTIONS(4134), + [anon_sym_PLUS_EQ] = ACTIONS(4134), + [anon_sym_DASH_EQ] = ACTIONS(4134), + [anon_sym_LT_LT_EQ] = ACTIONS(4134), + [anon_sym_GT_GT_EQ] = ACTIONS(4134), + [anon_sym_AMP_EQ] = ACTIONS(4134), + [anon_sym_CARET_EQ] = ACTIONS(4134), + [anon_sym_PIPE_EQ] = ACTIONS(4134), + [anon_sym_DASH_DASH] = ACTIONS(4134), + [anon_sym_PLUS_PLUS] = ACTIONS(4134), + [anon_sym_DOT] = ACTIONS(4132), + [anon_sym_DASH_GT] = ACTIONS(4134), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4132), + [anon_sym___typeof] = ACTIONS(4132), + [anon_sym_typeof] = ACTIONS(4132), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4132), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4132), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4132), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4132), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4132), + [anon_sym_NS_AVAILABLE] = ACTIONS(4132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4132), + [anon_sym_API_AVAILABLE] = ACTIONS(4132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4132), + [anon_sym_API_DEPRECATED] = ACTIONS(4132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4132), + [anon_sym___deprecated_msg] = ACTIONS(4132), + [anon_sym___deprecated_enum_msg] = ACTIONS(4132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4132), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4132), + [anon_sym_BOOL] = ACTIONS(4132), + [anon_sym_IMP] = ACTIONS(4132), + [anon_sym_SEL] = ACTIONS(4132), + [anon_sym_Class] = ACTIONS(4132), + [anon_sym_id] = ACTIONS(4132), + }, + [1481] = { + [sym_identifier] = ACTIONS(4136), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4138), + [anon_sym_COMMA] = ACTIONS(4138), + [anon_sym_RPAREN] = ACTIONS(4138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4138), + [anon_sym_LPAREN2] = ACTIONS(4138), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4136), + [anon_sym_STAR] = ACTIONS(4136), + [anon_sym_SLASH] = ACTIONS(4136), + [anon_sym_PERCENT] = ACTIONS(4136), + [anon_sym_PIPE_PIPE] = ACTIONS(4138), + [anon_sym_AMP_AMP] = ACTIONS(4138), + [anon_sym_PIPE] = ACTIONS(4136), + [anon_sym_CARET] = ACTIONS(4136), + [anon_sym_AMP] = ACTIONS(4136), + [anon_sym_EQ_EQ] = ACTIONS(4138), + [anon_sym_BANG_EQ] = ACTIONS(4138), + [anon_sym_GT] = ACTIONS(4136), + [anon_sym_GT_EQ] = ACTIONS(4138), + [anon_sym_LT_EQ] = ACTIONS(4138), + [anon_sym_LT] = ACTIONS(4136), + [anon_sym_LT_LT] = ACTIONS(4136), + [anon_sym_GT_GT] = ACTIONS(4136), + [anon_sym_SEMI] = ACTIONS(4138), + [anon_sym___extension__] = ACTIONS(4136), + [anon_sym_extern] = ACTIONS(4136), + [anon_sym___attribute__] = ACTIONS(4136), + [anon_sym___attribute] = ACTIONS(4136), + [anon_sym_noreturn] = ACTIONS(4136), + [anon_sym_LBRACK] = ACTIONS(4138), + [anon_sym_RBRACK] = ACTIONS(4138), + [anon_sym___declspec] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(4138), + [anon_sym_RBRACE] = ACTIONS(4138), + [anon_sym_signed] = ACTIONS(4136), + [anon_sym_unsigned] = ACTIONS(4136), + [anon_sym_long] = ACTIONS(4136), + [anon_sym_short] = ACTIONS(4136), + [anon_sym_static] = ACTIONS(4136), + [anon_sym_EQ] = ACTIONS(4136), + [anon_sym_ATautoreleasepool] = ACTIONS(4138), + [anon_sym_auto] = ACTIONS(4136), + [anon_sym_register] = ACTIONS(4136), + [anon_sym_inline] = ACTIONS(4136), + [anon_sym___inline] = ACTIONS(4136), + [anon_sym___inline__] = ACTIONS(4136), + [anon_sym___forceinline] = ACTIONS(4136), + [anon_sym_thread_local] = ACTIONS(4136), + [anon_sym___thread] = ACTIONS(4136), + [anon_sym_CG_EXTERN] = ACTIONS(4136), + [anon_sym_CG_INLINE] = ACTIONS(4136), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4136), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4136), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4136), + [anon_sym_IBOutlet] = ACTIONS(4136), + [anon_sym_IBInspectable] = ACTIONS(4136), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4136), + [anon_sym_NS_INLINE] = ACTIONS(4136), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4136), + [anon_sym_OBJC_EXPORT] = ACTIONS(4136), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4136), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4136), + [anon_sym_const] = ACTIONS(4136), + [anon_sym_constexpr] = ACTIONS(4136), + [anon_sym_volatile] = ACTIONS(4136), + [anon_sym_restrict] = ACTIONS(4136), + [anon_sym___restrict__] = ACTIONS(4136), + [anon_sym__Atomic] = ACTIONS(4136), + [anon_sym__Noreturn] = ACTIONS(4136), + [anon_sym__Nonnull] = ACTIONS(4136), + [anon_sym_nullable] = ACTIONS(4136), + [anon_sym__Complex] = ACTIONS(4136), + [anon_sym__Nullable] = ACTIONS(4136), + [anon_sym__Nullable_result] = ACTIONS(4136), + [anon_sym__Null_unspecified] = ACTIONS(4136), + [anon_sym___autoreleasing] = ACTIONS(4136), + [anon_sym___block] = ACTIONS(4136), + [anon_sym___bridge] = ACTIONS(4136), + [anon_sym___bridge_retained] = ACTIONS(4136), + [anon_sym___bridge_transfer] = ACTIONS(4136), + [anon_sym___complex] = ACTIONS(4136), + [anon_sym___const] = ACTIONS(4136), + [anon_sym___imag] = ACTIONS(4136), + [anon_sym___kindof] = ACTIONS(4136), + [anon_sym___nonnull] = ACTIONS(4136), + [anon_sym___nullable] = ACTIONS(4136), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4136), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4136), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4136), + [anon_sym___real] = ACTIONS(4136), + [anon_sym___strong] = ACTIONS(4136), + [anon_sym___unsafe_unretained] = ACTIONS(4136), + [anon_sym___unused] = ACTIONS(4136), + [anon_sym___weak] = ACTIONS(4136), + [anon_sym_alignas] = ACTIONS(4136), + [anon_sym__Alignas] = ACTIONS(4136), + [sym_primitive_type] = ACTIONS(4136), + [anon_sym_enum] = ACTIONS(4136), + [anon_sym_COLON] = ACTIONS(4138), + [anon_sym_struct] = ACTIONS(4136), + [anon_sym_union] = ACTIONS(4136), + [anon_sym_QMARK] = ACTIONS(4138), + [anon_sym_STAR_EQ] = ACTIONS(4138), + [anon_sym_SLASH_EQ] = ACTIONS(4138), + [anon_sym_PERCENT_EQ] = ACTIONS(4138), + [anon_sym_PLUS_EQ] = ACTIONS(4138), + [anon_sym_DASH_EQ] = ACTIONS(4138), + [anon_sym_LT_LT_EQ] = ACTIONS(4138), + [anon_sym_GT_GT_EQ] = ACTIONS(4138), + [anon_sym_AMP_EQ] = ACTIONS(4138), + [anon_sym_CARET_EQ] = ACTIONS(4138), + [anon_sym_PIPE_EQ] = ACTIONS(4138), + [anon_sym_DASH_DASH] = ACTIONS(4138), + [anon_sym_PLUS_PLUS] = ACTIONS(4138), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_DASH_GT] = ACTIONS(4138), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4136), + [anon_sym___typeof] = ACTIONS(4136), + [anon_sym_typeof] = ACTIONS(4136), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4136), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4136), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4136), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4136), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4136), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4136), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4136), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4136), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4136), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4136), + [anon_sym_NS_AVAILABLE] = ACTIONS(4136), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4136), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4136), + [anon_sym_API_AVAILABLE] = ACTIONS(4136), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4136), + [anon_sym_API_DEPRECATED] = ACTIONS(4136), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4136), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4136), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4136), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4136), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4136), + [anon_sym___deprecated_msg] = ACTIONS(4136), + [anon_sym___deprecated_enum_msg] = ACTIONS(4136), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4136), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4136), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4136), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4136), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4136), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4136), + [anon_sym_BOOL] = ACTIONS(4136), + [anon_sym_IMP] = ACTIONS(4136), + [anon_sym_SEL] = ACTIONS(4136), + [anon_sym_Class] = ACTIONS(4136), + [anon_sym_id] = ACTIONS(4136), + }, + [1482] = { + [sym_identifier] = ACTIONS(4140), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_RPAREN] = ACTIONS(4142), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4142), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4142), + [anon_sym_LPAREN2] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE] = ACTIONS(4140), + [anon_sym_CARET] = ACTIONS(4140), + [anon_sym_AMP] = ACTIONS(4140), + [anon_sym_EQ_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_LT_LT] = ACTIONS(4140), + [anon_sym_GT_GT] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym___extension__] = ACTIONS(4140), + [anon_sym_extern] = ACTIONS(4140), + [anon_sym___attribute__] = ACTIONS(4140), + [anon_sym___attribute] = ACTIONS(4140), + [anon_sym_noreturn] = ACTIONS(4140), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_RBRACK] = ACTIONS(4142), + [anon_sym___declspec] = ACTIONS(4140), + [anon_sym_LBRACE] = ACTIONS(4142), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_signed] = ACTIONS(4140), + [anon_sym_unsigned] = ACTIONS(4140), + [anon_sym_long] = ACTIONS(4140), + [anon_sym_short] = ACTIONS(4140), + [anon_sym_static] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(4140), + [anon_sym_ATautoreleasepool] = ACTIONS(4142), + [anon_sym_auto] = ACTIONS(4140), + [anon_sym_register] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym___inline] = ACTIONS(4140), + [anon_sym___inline__] = ACTIONS(4140), + [anon_sym___forceinline] = ACTIONS(4140), + [anon_sym_thread_local] = ACTIONS(4140), + [anon_sym___thread] = ACTIONS(4140), + [anon_sym_CG_EXTERN] = ACTIONS(4140), + [anon_sym_CG_INLINE] = ACTIONS(4140), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4140), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4140), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4140), + [anon_sym_IBOutlet] = ACTIONS(4140), + [anon_sym_IBInspectable] = ACTIONS(4140), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4140), + [anon_sym_NS_INLINE] = ACTIONS(4140), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4140), + [anon_sym_OBJC_EXPORT] = ACTIONS(4140), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4140), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4140), + [anon_sym_const] = ACTIONS(4140), + [anon_sym_constexpr] = ACTIONS(4140), + [anon_sym_volatile] = ACTIONS(4140), + [anon_sym_restrict] = ACTIONS(4140), + [anon_sym___restrict__] = ACTIONS(4140), + [anon_sym__Atomic] = ACTIONS(4140), + [anon_sym__Noreturn] = ACTIONS(4140), + [anon_sym__Nonnull] = ACTIONS(4140), + [anon_sym_nullable] = ACTIONS(4140), + [anon_sym__Complex] = ACTIONS(4140), + [anon_sym__Nullable] = ACTIONS(4140), + [anon_sym__Nullable_result] = ACTIONS(4140), + [anon_sym__Null_unspecified] = ACTIONS(4140), + [anon_sym___autoreleasing] = ACTIONS(4140), + [anon_sym___block] = ACTIONS(4140), + [anon_sym___bridge] = ACTIONS(4140), + [anon_sym___bridge_retained] = ACTIONS(4140), + [anon_sym___bridge_transfer] = ACTIONS(4140), + [anon_sym___complex] = ACTIONS(4140), + [anon_sym___const] = ACTIONS(4140), + [anon_sym___imag] = ACTIONS(4140), + [anon_sym___kindof] = ACTIONS(4140), + [anon_sym___nonnull] = ACTIONS(4140), + [anon_sym___nullable] = ACTIONS(4140), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4140), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4140), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4140), + [anon_sym___real] = ACTIONS(4140), + [anon_sym___strong] = ACTIONS(4140), + [anon_sym___unsafe_unretained] = ACTIONS(4140), + [anon_sym___unused] = ACTIONS(4140), + [anon_sym___weak] = ACTIONS(4140), + [anon_sym_alignas] = ACTIONS(4140), + [anon_sym__Alignas] = ACTIONS(4140), + [sym_primitive_type] = ACTIONS(4140), + [anon_sym_enum] = ACTIONS(4140), + [anon_sym_COLON] = ACTIONS(4142), + [anon_sym_struct] = ACTIONS(4140), + [anon_sym_union] = ACTIONS(4140), + [anon_sym_QMARK] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_LT_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_GT_EQ] = ACTIONS(4142), + [anon_sym_AMP_EQ] = ACTIONS(4142), + [anon_sym_CARET_EQ] = ACTIONS(4142), + [anon_sym_PIPE_EQ] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_DASH_GT] = ACTIONS(4142), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4140), + [anon_sym___typeof] = ACTIONS(4140), + [anon_sym_typeof] = ACTIONS(4140), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4140), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4140), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4140), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4140), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4140), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4140), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4140), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4140), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4140), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4140), + [anon_sym_NS_AVAILABLE] = ACTIONS(4140), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4140), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4140), + [anon_sym_API_AVAILABLE] = ACTIONS(4140), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4140), + [anon_sym_API_DEPRECATED] = ACTIONS(4140), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4140), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4140), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4140), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4140), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4140), + [anon_sym___deprecated_msg] = ACTIONS(4140), + [anon_sym___deprecated_enum_msg] = ACTIONS(4140), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4140), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4140), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4140), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4140), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4140), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4140), + [anon_sym_BOOL] = ACTIONS(4140), + [anon_sym_IMP] = ACTIONS(4140), + [anon_sym_SEL] = ACTIONS(4140), + [anon_sym_Class] = ACTIONS(4140), + [anon_sym_id] = ACTIONS(4140), + }, + [1483] = { + [sym_identifier] = ACTIONS(4144), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), + [anon_sym_COMMA] = ACTIONS(4146), + [anon_sym_RPAREN] = ACTIONS(4146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4146), + [anon_sym_LPAREN2] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4144), + [anon_sym_STAR] = ACTIONS(4144), + [anon_sym_SLASH] = ACTIONS(4144), + [anon_sym_PERCENT] = ACTIONS(4144), + [anon_sym_PIPE_PIPE] = ACTIONS(4146), + [anon_sym_AMP_AMP] = ACTIONS(4146), + [anon_sym_PIPE] = ACTIONS(4144), + [anon_sym_CARET] = ACTIONS(4144), + [anon_sym_AMP] = ACTIONS(4144), + [anon_sym_EQ_EQ] = ACTIONS(4146), + [anon_sym_BANG_EQ] = ACTIONS(4146), + [anon_sym_GT] = ACTIONS(4144), + [anon_sym_GT_EQ] = ACTIONS(4146), + [anon_sym_LT_EQ] = ACTIONS(4146), + [anon_sym_LT] = ACTIONS(4144), + [anon_sym_LT_LT] = ACTIONS(4144), + [anon_sym_GT_GT] = ACTIONS(4144), + [anon_sym_SEMI] = ACTIONS(4146), + [anon_sym___extension__] = ACTIONS(4144), + [anon_sym_extern] = ACTIONS(4144), + [anon_sym___attribute__] = ACTIONS(4144), + [anon_sym___attribute] = ACTIONS(4144), + [anon_sym_noreturn] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4146), + [anon_sym_RBRACK] = ACTIONS(4146), + [anon_sym___declspec] = ACTIONS(4144), + [anon_sym_LBRACE] = ACTIONS(4146), + [anon_sym_RBRACE] = ACTIONS(4146), + [anon_sym_signed] = ACTIONS(4144), + [anon_sym_unsigned] = ACTIONS(4144), + [anon_sym_long] = ACTIONS(4144), + [anon_sym_short] = ACTIONS(4144), + [anon_sym_static] = ACTIONS(4144), + [anon_sym_EQ] = ACTIONS(4144), + [anon_sym_ATautoreleasepool] = ACTIONS(4146), + [anon_sym_auto] = ACTIONS(4144), + [anon_sym_register] = ACTIONS(4144), + [anon_sym_inline] = ACTIONS(4144), + [anon_sym___inline] = ACTIONS(4144), + [anon_sym___inline__] = ACTIONS(4144), + [anon_sym___forceinline] = ACTIONS(4144), + [anon_sym_thread_local] = ACTIONS(4144), + [anon_sym___thread] = ACTIONS(4144), + [anon_sym_CG_EXTERN] = ACTIONS(4144), + [anon_sym_CG_INLINE] = ACTIONS(4144), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4144), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4144), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4144), + [anon_sym_IBOutlet] = ACTIONS(4144), + [anon_sym_IBInspectable] = ACTIONS(4144), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4144), + [anon_sym_NS_INLINE] = ACTIONS(4144), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4144), + [anon_sym_OBJC_EXPORT] = ACTIONS(4144), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4144), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4144), + [anon_sym_const] = ACTIONS(4144), + [anon_sym_constexpr] = ACTIONS(4144), + [anon_sym_volatile] = ACTIONS(4144), + [anon_sym_restrict] = ACTIONS(4144), + [anon_sym___restrict__] = ACTIONS(4144), + [anon_sym__Atomic] = ACTIONS(4144), + [anon_sym__Noreturn] = ACTIONS(4144), + [anon_sym__Nonnull] = ACTIONS(4144), + [anon_sym_nullable] = ACTIONS(4144), + [anon_sym__Complex] = ACTIONS(4144), + [anon_sym__Nullable] = ACTIONS(4144), + [anon_sym__Nullable_result] = ACTIONS(4144), + [anon_sym__Null_unspecified] = ACTIONS(4144), + [anon_sym___autoreleasing] = ACTIONS(4144), + [anon_sym___block] = ACTIONS(4144), + [anon_sym___bridge] = ACTIONS(4144), + [anon_sym___bridge_retained] = ACTIONS(4144), + [anon_sym___bridge_transfer] = ACTIONS(4144), + [anon_sym___complex] = ACTIONS(4144), + [anon_sym___const] = ACTIONS(4144), + [anon_sym___imag] = ACTIONS(4144), + [anon_sym___kindof] = ACTIONS(4144), + [anon_sym___nonnull] = ACTIONS(4144), + [anon_sym___nullable] = ACTIONS(4144), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4144), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4144), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4144), + [anon_sym___real] = ACTIONS(4144), + [anon_sym___strong] = ACTIONS(4144), + [anon_sym___unsafe_unretained] = ACTIONS(4144), + [anon_sym___unused] = ACTIONS(4144), + [anon_sym___weak] = ACTIONS(4144), + [anon_sym_alignas] = ACTIONS(4144), + [anon_sym__Alignas] = ACTIONS(4144), + [sym_primitive_type] = ACTIONS(4144), + [anon_sym_enum] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(4146), + [anon_sym_struct] = ACTIONS(4144), + [anon_sym_union] = ACTIONS(4144), + [anon_sym_QMARK] = ACTIONS(4146), + [anon_sym_STAR_EQ] = ACTIONS(4146), + [anon_sym_SLASH_EQ] = ACTIONS(4146), + [anon_sym_PERCENT_EQ] = ACTIONS(4146), + [anon_sym_PLUS_EQ] = ACTIONS(4146), + [anon_sym_DASH_EQ] = ACTIONS(4146), + [anon_sym_LT_LT_EQ] = ACTIONS(4146), + [anon_sym_GT_GT_EQ] = ACTIONS(4146), + [anon_sym_AMP_EQ] = ACTIONS(4146), + [anon_sym_CARET_EQ] = ACTIONS(4146), + [anon_sym_PIPE_EQ] = ACTIONS(4146), + [anon_sym_DASH_DASH] = ACTIONS(4146), + [anon_sym_PLUS_PLUS] = ACTIONS(4146), + [anon_sym_DOT] = ACTIONS(4144), + [anon_sym_DASH_GT] = ACTIONS(4146), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4144), + [anon_sym___typeof] = ACTIONS(4144), + [anon_sym_typeof] = ACTIONS(4144), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4144), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4144), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4144), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4144), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4144), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4144), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4144), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4144), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4144), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4144), + [anon_sym_NS_AVAILABLE] = ACTIONS(4144), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4144), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4144), + [anon_sym_API_AVAILABLE] = ACTIONS(4144), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4144), + [anon_sym_API_DEPRECATED] = ACTIONS(4144), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4144), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4144), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4144), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4144), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4144), + [anon_sym___deprecated_msg] = ACTIONS(4144), + [anon_sym___deprecated_enum_msg] = ACTIONS(4144), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4144), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4144), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4144), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4144), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4144), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4144), + [anon_sym_BOOL] = ACTIONS(4144), + [anon_sym_IMP] = ACTIONS(4144), + [anon_sym_SEL] = ACTIONS(4144), + [anon_sym_Class] = ACTIONS(4144), + [anon_sym_id] = ACTIONS(4144), + }, + [1484] = { + [sym_identifier] = ACTIONS(4148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4150), + [anon_sym_COMMA] = ACTIONS(4150), + [anon_sym_RPAREN] = ACTIONS(4150), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4150), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4150), + [anon_sym_LPAREN2] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4148), + [anon_sym_PLUS] = ACTIONS(4148), + [anon_sym_STAR] = ACTIONS(4148), + [anon_sym_SLASH] = ACTIONS(4148), + [anon_sym_PERCENT] = ACTIONS(4148), + [anon_sym_PIPE_PIPE] = ACTIONS(4150), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_PIPE] = ACTIONS(4148), + [anon_sym_CARET] = ACTIONS(4148), + [anon_sym_AMP] = ACTIONS(4148), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4148), + [anon_sym_GT_EQ] = ACTIONS(4150), + [anon_sym_LT_EQ] = ACTIONS(4150), + [anon_sym_LT] = ACTIONS(4148), + [anon_sym_LT_LT] = ACTIONS(4148), + [anon_sym_GT_GT] = ACTIONS(4148), + [anon_sym_SEMI] = ACTIONS(4150), + [anon_sym___extension__] = ACTIONS(4148), + [anon_sym_extern] = ACTIONS(4148), + [anon_sym___attribute__] = ACTIONS(4148), + [anon_sym___attribute] = ACTIONS(4148), + [anon_sym_noreturn] = ACTIONS(4148), + [anon_sym_LBRACK] = ACTIONS(4150), + [anon_sym_RBRACK] = ACTIONS(4150), + [anon_sym___declspec] = ACTIONS(4148), + [anon_sym_LBRACE] = ACTIONS(4150), + [anon_sym_RBRACE] = ACTIONS(4150), + [anon_sym_signed] = ACTIONS(4148), + [anon_sym_unsigned] = ACTIONS(4148), + [anon_sym_long] = ACTIONS(4148), + [anon_sym_short] = ACTIONS(4148), + [anon_sym_static] = ACTIONS(4148), + [anon_sym_EQ] = ACTIONS(4148), + [anon_sym_ATautoreleasepool] = ACTIONS(4150), + [anon_sym_auto] = ACTIONS(4148), + [anon_sym_register] = ACTIONS(4148), + [anon_sym_inline] = ACTIONS(4148), + [anon_sym___inline] = ACTIONS(4148), + [anon_sym___inline__] = ACTIONS(4148), + [anon_sym___forceinline] = ACTIONS(4148), + [anon_sym_thread_local] = ACTIONS(4148), + [anon_sym___thread] = ACTIONS(4148), + [anon_sym_CG_EXTERN] = ACTIONS(4148), + [anon_sym_CG_INLINE] = ACTIONS(4148), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4148), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4148), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4148), + [anon_sym_IBOutlet] = ACTIONS(4148), + [anon_sym_IBInspectable] = ACTIONS(4148), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4148), + [anon_sym_NS_INLINE] = ACTIONS(4148), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4148), + [anon_sym_OBJC_EXPORT] = ACTIONS(4148), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4148), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4148), + [anon_sym_const] = ACTIONS(4148), + [anon_sym_constexpr] = ACTIONS(4148), + [anon_sym_volatile] = ACTIONS(4148), + [anon_sym_restrict] = ACTIONS(4148), + [anon_sym___restrict__] = ACTIONS(4148), + [anon_sym__Atomic] = ACTIONS(4148), + [anon_sym__Noreturn] = ACTIONS(4148), + [anon_sym__Nonnull] = ACTIONS(4148), + [anon_sym_nullable] = ACTIONS(4148), + [anon_sym__Complex] = ACTIONS(4148), + [anon_sym__Nullable] = ACTIONS(4148), + [anon_sym__Nullable_result] = ACTIONS(4148), + [anon_sym__Null_unspecified] = ACTIONS(4148), + [anon_sym___autoreleasing] = ACTIONS(4148), + [anon_sym___block] = ACTIONS(4148), + [anon_sym___bridge] = ACTIONS(4148), + [anon_sym___bridge_retained] = ACTIONS(4148), + [anon_sym___bridge_transfer] = ACTIONS(4148), + [anon_sym___complex] = ACTIONS(4148), + [anon_sym___const] = ACTIONS(4148), + [anon_sym___imag] = ACTIONS(4148), + [anon_sym___kindof] = ACTIONS(4148), + [anon_sym___nonnull] = ACTIONS(4148), + [anon_sym___nullable] = ACTIONS(4148), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4148), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4148), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4148), + [anon_sym___real] = ACTIONS(4148), + [anon_sym___strong] = ACTIONS(4148), + [anon_sym___unsafe_unretained] = ACTIONS(4148), + [anon_sym___unused] = ACTIONS(4148), + [anon_sym___weak] = ACTIONS(4148), + [anon_sym_alignas] = ACTIONS(4148), + [anon_sym__Alignas] = ACTIONS(4148), + [sym_primitive_type] = ACTIONS(4148), + [anon_sym_enum] = ACTIONS(4148), + [anon_sym_COLON] = ACTIONS(4150), + [anon_sym_struct] = ACTIONS(4148), + [anon_sym_union] = ACTIONS(4148), + [anon_sym_QMARK] = ACTIONS(4150), + [anon_sym_STAR_EQ] = ACTIONS(4150), + [anon_sym_SLASH_EQ] = ACTIONS(4150), + [anon_sym_PERCENT_EQ] = ACTIONS(4150), + [anon_sym_PLUS_EQ] = ACTIONS(4150), + [anon_sym_DASH_EQ] = ACTIONS(4150), + [anon_sym_LT_LT_EQ] = ACTIONS(4150), + [anon_sym_GT_GT_EQ] = ACTIONS(4150), + [anon_sym_AMP_EQ] = ACTIONS(4150), + [anon_sym_CARET_EQ] = ACTIONS(4150), + [anon_sym_PIPE_EQ] = ACTIONS(4150), + [anon_sym_DASH_DASH] = ACTIONS(4150), + [anon_sym_PLUS_PLUS] = ACTIONS(4150), + [anon_sym_DOT] = ACTIONS(4148), + [anon_sym_DASH_GT] = ACTIONS(4150), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4148), + [anon_sym___typeof] = ACTIONS(4148), + [anon_sym_typeof] = ACTIONS(4148), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4148), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4148), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4148), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4148), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4148), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4148), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4148), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4148), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4148), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4148), + [anon_sym_NS_AVAILABLE] = ACTIONS(4148), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4148), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4148), + [anon_sym_API_AVAILABLE] = ACTIONS(4148), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4148), + [anon_sym_API_DEPRECATED] = ACTIONS(4148), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4148), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4148), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4148), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4148), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4148), + [anon_sym___deprecated_msg] = ACTIONS(4148), + [anon_sym___deprecated_enum_msg] = ACTIONS(4148), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4148), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4148), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4148), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4148), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4148), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4148), + [anon_sym_BOOL] = ACTIONS(4148), + [anon_sym_IMP] = ACTIONS(4148), + [anon_sym_SEL] = ACTIONS(4148), + [anon_sym_Class] = ACTIONS(4148), + [anon_sym_id] = ACTIONS(4148), + }, + [1485] = { + [sym_identifier] = ACTIONS(4152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4154), + [anon_sym_COMMA] = ACTIONS(4154), + [anon_sym_RPAREN] = ACTIONS(4154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4154), + [anon_sym_LPAREN2] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE] = ACTIONS(4152), + [anon_sym_CARET] = ACTIONS(4152), + [anon_sym_AMP] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4154), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_LT_LT] = ACTIONS(4152), + [anon_sym_GT_GT] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym___extension__] = ACTIONS(4152), + [anon_sym_extern] = ACTIONS(4152), + [anon_sym___attribute__] = ACTIONS(4152), + [anon_sym___attribute] = ACTIONS(4152), + [anon_sym_noreturn] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_RBRACK] = ACTIONS(4154), + [anon_sym___declspec] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(4154), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_signed] = ACTIONS(4152), + [anon_sym_unsigned] = ACTIONS(4152), + [anon_sym_long] = ACTIONS(4152), + [anon_sym_short] = ACTIONS(4152), + [anon_sym_static] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(4152), + [anon_sym_ATautoreleasepool] = ACTIONS(4154), + [anon_sym_auto] = ACTIONS(4152), + [anon_sym_register] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym___inline] = ACTIONS(4152), + [anon_sym___inline__] = ACTIONS(4152), + [anon_sym___forceinline] = ACTIONS(4152), + [anon_sym_thread_local] = ACTIONS(4152), + [anon_sym___thread] = ACTIONS(4152), + [anon_sym_CG_EXTERN] = ACTIONS(4152), + [anon_sym_CG_INLINE] = ACTIONS(4152), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4152), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4152), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4152), + [anon_sym_IBOutlet] = ACTIONS(4152), + [anon_sym_IBInspectable] = ACTIONS(4152), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4152), + [anon_sym_NS_INLINE] = ACTIONS(4152), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4152), + [anon_sym_OBJC_EXPORT] = ACTIONS(4152), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4152), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4152), + [anon_sym_const] = ACTIONS(4152), + [anon_sym_constexpr] = ACTIONS(4152), + [anon_sym_volatile] = ACTIONS(4152), + [anon_sym_restrict] = ACTIONS(4152), + [anon_sym___restrict__] = ACTIONS(4152), + [anon_sym__Atomic] = ACTIONS(4152), + [anon_sym__Noreturn] = ACTIONS(4152), + [anon_sym__Nonnull] = ACTIONS(4152), + [anon_sym_nullable] = ACTIONS(4152), + [anon_sym__Complex] = ACTIONS(4152), + [anon_sym__Nullable] = ACTIONS(4152), + [anon_sym__Nullable_result] = ACTIONS(4152), + [anon_sym__Null_unspecified] = ACTIONS(4152), + [anon_sym___autoreleasing] = ACTIONS(4152), + [anon_sym___block] = ACTIONS(4152), + [anon_sym___bridge] = ACTIONS(4152), + [anon_sym___bridge_retained] = ACTIONS(4152), + [anon_sym___bridge_transfer] = ACTIONS(4152), + [anon_sym___complex] = ACTIONS(4152), + [anon_sym___const] = ACTIONS(4152), + [anon_sym___imag] = ACTIONS(4152), + [anon_sym___kindof] = ACTIONS(4152), + [anon_sym___nonnull] = ACTIONS(4152), + [anon_sym___nullable] = ACTIONS(4152), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4152), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4152), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4152), + [anon_sym___real] = ACTIONS(4152), + [anon_sym___strong] = ACTIONS(4152), + [anon_sym___unsafe_unretained] = ACTIONS(4152), + [anon_sym___unused] = ACTIONS(4152), + [anon_sym___weak] = ACTIONS(4152), + [anon_sym_alignas] = ACTIONS(4152), + [anon_sym__Alignas] = ACTIONS(4152), + [sym_primitive_type] = ACTIONS(4152), + [anon_sym_enum] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(4154), + [anon_sym_struct] = ACTIONS(4152), + [anon_sym_union] = ACTIONS(4152), + [anon_sym_QMARK] = ACTIONS(4154), + [anon_sym_STAR_EQ] = ACTIONS(4154), + [anon_sym_SLASH_EQ] = ACTIONS(4154), + [anon_sym_PERCENT_EQ] = ACTIONS(4154), + [anon_sym_PLUS_EQ] = ACTIONS(4154), + [anon_sym_DASH_EQ] = ACTIONS(4154), + [anon_sym_LT_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_GT_EQ] = ACTIONS(4154), + [anon_sym_AMP_EQ] = ACTIONS(4154), + [anon_sym_CARET_EQ] = ACTIONS(4154), + [anon_sym_PIPE_EQ] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_DASH_GT] = ACTIONS(4154), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4152), + [anon_sym___typeof] = ACTIONS(4152), + [anon_sym_typeof] = ACTIONS(4152), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4152), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4152), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4152), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4152), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4152), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4152), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4152), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4152), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4152), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4152), + [anon_sym_NS_AVAILABLE] = ACTIONS(4152), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4152), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4152), + [anon_sym_API_AVAILABLE] = ACTIONS(4152), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4152), + [anon_sym_API_DEPRECATED] = ACTIONS(4152), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4152), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4152), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4152), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4152), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4152), + [anon_sym___deprecated_msg] = ACTIONS(4152), + [anon_sym___deprecated_enum_msg] = ACTIONS(4152), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4152), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4152), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4152), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4152), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4152), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4152), + [anon_sym_BOOL] = ACTIONS(4152), + [anon_sym_IMP] = ACTIONS(4152), + [anon_sym_SEL] = ACTIONS(4152), + [anon_sym_Class] = ACTIONS(4152), + [anon_sym_id] = ACTIONS(4152), + }, + [1486] = { + [sym_identifier] = ACTIONS(4156), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_RPAREN] = ACTIONS(4158), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4158), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4158), + [anon_sym_LPAREN2] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE] = ACTIONS(4156), + [anon_sym_CARET] = ACTIONS(4156), + [anon_sym_AMP] = ACTIONS(4156), + [anon_sym_EQ_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4158), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_LT_LT] = ACTIONS(4156), + [anon_sym_GT_GT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym___extension__] = ACTIONS(4156), + [anon_sym_extern] = ACTIONS(4156), + [anon_sym___attribute__] = ACTIONS(4156), + [anon_sym___attribute] = ACTIONS(4156), + [anon_sym_noreturn] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_RBRACK] = ACTIONS(4158), + [anon_sym___declspec] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_signed] = ACTIONS(4156), + [anon_sym_unsigned] = ACTIONS(4156), + [anon_sym_long] = ACTIONS(4156), + [anon_sym_short] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(4156), + [anon_sym_ATautoreleasepool] = ACTIONS(4158), + [anon_sym_auto] = ACTIONS(4156), + [anon_sym_register] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym___inline] = ACTIONS(4156), + [anon_sym___inline__] = ACTIONS(4156), + [anon_sym___forceinline] = ACTIONS(4156), + [anon_sym_thread_local] = ACTIONS(4156), + [anon_sym___thread] = ACTIONS(4156), + [anon_sym_CG_EXTERN] = ACTIONS(4156), + [anon_sym_CG_INLINE] = ACTIONS(4156), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4156), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4156), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4156), + [anon_sym_IBOutlet] = ACTIONS(4156), + [anon_sym_IBInspectable] = ACTIONS(4156), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4156), + [anon_sym_NS_INLINE] = ACTIONS(4156), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4156), + [anon_sym_OBJC_EXPORT] = ACTIONS(4156), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4156), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4156), + [anon_sym_const] = ACTIONS(4156), + [anon_sym_constexpr] = ACTIONS(4156), + [anon_sym_volatile] = ACTIONS(4156), + [anon_sym_restrict] = ACTIONS(4156), + [anon_sym___restrict__] = ACTIONS(4156), + [anon_sym__Atomic] = ACTIONS(4156), + [anon_sym__Noreturn] = ACTIONS(4156), + [anon_sym__Nonnull] = ACTIONS(4156), + [anon_sym_nullable] = ACTIONS(4156), + [anon_sym__Complex] = ACTIONS(4156), + [anon_sym__Nullable] = ACTIONS(4156), + [anon_sym__Nullable_result] = ACTIONS(4156), + [anon_sym__Null_unspecified] = ACTIONS(4156), + [anon_sym___autoreleasing] = ACTIONS(4156), + [anon_sym___block] = ACTIONS(4156), + [anon_sym___bridge] = ACTIONS(4156), + [anon_sym___bridge_retained] = ACTIONS(4156), + [anon_sym___bridge_transfer] = ACTIONS(4156), + [anon_sym___complex] = ACTIONS(4156), + [anon_sym___const] = ACTIONS(4156), + [anon_sym___imag] = ACTIONS(4156), + [anon_sym___kindof] = ACTIONS(4156), + [anon_sym___nonnull] = ACTIONS(4156), + [anon_sym___nullable] = ACTIONS(4156), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4156), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4156), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4156), + [anon_sym___real] = ACTIONS(4156), + [anon_sym___strong] = ACTIONS(4156), + [anon_sym___unsafe_unretained] = ACTIONS(4156), + [anon_sym___unused] = ACTIONS(4156), + [anon_sym___weak] = ACTIONS(4156), + [anon_sym_alignas] = ACTIONS(4156), + [anon_sym__Alignas] = ACTIONS(4156), + [sym_primitive_type] = ACTIONS(4156), + [anon_sym_enum] = ACTIONS(4156), + [anon_sym_COLON] = ACTIONS(4158), + [anon_sym_struct] = ACTIONS(4156), + [anon_sym_union] = ACTIONS(4156), + [anon_sym_QMARK] = ACTIONS(4158), + [anon_sym_STAR_EQ] = ACTIONS(4158), + [anon_sym_SLASH_EQ] = ACTIONS(4158), + [anon_sym_PERCENT_EQ] = ACTIONS(4158), + [anon_sym_PLUS_EQ] = ACTIONS(4158), + [anon_sym_DASH_EQ] = ACTIONS(4158), + [anon_sym_LT_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_GT_EQ] = ACTIONS(4158), + [anon_sym_AMP_EQ] = ACTIONS(4158), + [anon_sym_CARET_EQ] = ACTIONS(4158), + [anon_sym_PIPE_EQ] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_DASH_GT] = ACTIONS(4158), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4156), + [anon_sym___typeof] = ACTIONS(4156), + [anon_sym_typeof] = ACTIONS(4156), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4156), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4156), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4156), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4156), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4156), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4156), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4156), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4156), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4156), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4156), + [anon_sym_NS_AVAILABLE] = ACTIONS(4156), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4156), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4156), + [anon_sym_API_AVAILABLE] = ACTIONS(4156), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4156), + [anon_sym_API_DEPRECATED] = ACTIONS(4156), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4156), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4156), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4156), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4156), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4156), + [anon_sym___deprecated_msg] = ACTIONS(4156), + [anon_sym___deprecated_enum_msg] = ACTIONS(4156), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4156), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4156), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4156), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4156), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4156), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4156), + [anon_sym_BOOL] = ACTIONS(4156), + [anon_sym_IMP] = ACTIONS(4156), + [anon_sym_SEL] = ACTIONS(4156), + [anon_sym_Class] = ACTIONS(4156), + [anon_sym_id] = ACTIONS(4156), + }, + [1487] = { + [sym__declaration_modifiers] = STATE(1585), + [sym__declaration_specifiers] = STATE(4592), + [sym_attribute_specifier] = STATE(1585), + [sym_attribute_declaration] = STATE(1585), + [sym_ms_declspec_modifier] = STATE(1585), + [sym_ms_based_modifier] = STATE(6199), + [sym__declarator] = STATE(5261), + [sym__abstract_declarator] = STATE(5262), + [sym_parenthesized_declarator] = STATE(4011), + [sym_abstract_parenthesized_declarator] = STATE(4894), + [sym_pointer_declarator] = STATE(4011), + [sym_abstract_pointer_declarator] = STATE(4894), + [sym_function_declarator] = STATE(4011), + [sym_abstract_function_declarator] = STATE(4894), + [sym_array_declarator] = STATE(4011), + [sym_abstract_array_declarator] = STATE(4894), + [sym_compound_statement] = STATE(6423), + [sym_storage_class_specifier] = STATE(1585), + [sym_type_qualifier] = STATE(1585), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_variadic_parameter] = STATE(5365), + [sym_parameter_list] = STATE(4295), + [sym_parameter_declaration] = STATE(5365), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1585), + [sym_block_pointer_declarator] = STATE(4011), + [sym_abstract_block_pointer_declarator] = STATE(4894), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(1585), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(4160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4164), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4170), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1488] = { + [sym_identifier] = ACTIONS(4176), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4178), + [anon_sym_COMMA] = ACTIONS(4178), + [anon_sym_RPAREN] = ACTIONS(4178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4178), + [anon_sym_LPAREN2] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4176), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_PIPE_PIPE] = ACTIONS(4178), + [anon_sym_AMP_AMP] = ACTIONS(4178), + [anon_sym_PIPE] = ACTIONS(4176), + [anon_sym_CARET] = ACTIONS(4176), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4176), + [anon_sym_GT_EQ] = ACTIONS(4178), + [anon_sym_LT_EQ] = ACTIONS(4178), + [anon_sym_LT] = ACTIONS(4176), + [anon_sym_LT_LT] = ACTIONS(4176), + [anon_sym_GT_GT] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4178), + [anon_sym___extension__] = ACTIONS(4176), + [anon_sym_extern] = ACTIONS(4176), + [anon_sym___attribute__] = ACTIONS(4176), + [anon_sym___attribute] = ACTIONS(4176), + [anon_sym_noreturn] = ACTIONS(4176), + [anon_sym_LBRACK] = ACTIONS(4178), + [anon_sym_RBRACK] = ACTIONS(4178), + [anon_sym___declspec] = ACTIONS(4176), + [anon_sym_LBRACE] = ACTIONS(4178), + [anon_sym_RBRACE] = ACTIONS(4178), + [anon_sym_signed] = ACTIONS(4176), + [anon_sym_unsigned] = ACTIONS(4176), + [anon_sym_long] = ACTIONS(4176), + [anon_sym_short] = ACTIONS(4176), + [anon_sym_static] = ACTIONS(4176), + [anon_sym_EQ] = ACTIONS(4176), + [anon_sym_ATautoreleasepool] = ACTIONS(4178), + [anon_sym_auto] = ACTIONS(4176), + [anon_sym_register] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym___inline] = ACTIONS(4176), + [anon_sym___inline__] = ACTIONS(4176), + [anon_sym___forceinline] = ACTIONS(4176), + [anon_sym_thread_local] = ACTIONS(4176), + [anon_sym___thread] = ACTIONS(4176), + [anon_sym_CG_EXTERN] = ACTIONS(4176), + [anon_sym_CG_INLINE] = ACTIONS(4176), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4176), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4176), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4176), + [anon_sym_IBOutlet] = ACTIONS(4176), + [anon_sym_IBInspectable] = ACTIONS(4176), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4176), + [anon_sym_NS_INLINE] = ACTIONS(4176), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4176), + [anon_sym_OBJC_EXPORT] = ACTIONS(4176), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4176), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4176), + [anon_sym_const] = ACTIONS(4176), + [anon_sym_constexpr] = ACTIONS(4176), + [anon_sym_volatile] = ACTIONS(4176), + [anon_sym_restrict] = ACTIONS(4176), + [anon_sym___restrict__] = ACTIONS(4176), + [anon_sym__Atomic] = ACTIONS(4176), + [anon_sym__Noreturn] = ACTIONS(4176), + [anon_sym__Nonnull] = ACTIONS(4176), + [anon_sym_nullable] = ACTIONS(4176), + [anon_sym__Complex] = ACTIONS(4176), + [anon_sym__Nullable] = ACTIONS(4176), + [anon_sym__Nullable_result] = ACTIONS(4176), + [anon_sym__Null_unspecified] = ACTIONS(4176), + [anon_sym___autoreleasing] = ACTIONS(4176), + [anon_sym___block] = ACTIONS(4176), + [anon_sym___bridge] = ACTIONS(4176), + [anon_sym___bridge_retained] = ACTIONS(4176), + [anon_sym___bridge_transfer] = ACTIONS(4176), + [anon_sym___complex] = ACTIONS(4176), + [anon_sym___const] = ACTIONS(4176), + [anon_sym___imag] = ACTIONS(4176), + [anon_sym___kindof] = ACTIONS(4176), + [anon_sym___nonnull] = ACTIONS(4176), + [anon_sym___nullable] = ACTIONS(4176), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4176), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4176), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4176), + [anon_sym___real] = ACTIONS(4176), + [anon_sym___strong] = ACTIONS(4176), + [anon_sym___unsafe_unretained] = ACTIONS(4176), + [anon_sym___unused] = ACTIONS(4176), + [anon_sym___weak] = ACTIONS(4176), + [anon_sym_alignas] = ACTIONS(4176), + [anon_sym__Alignas] = ACTIONS(4176), + [sym_primitive_type] = ACTIONS(4176), + [anon_sym_enum] = ACTIONS(4176), + [anon_sym_COLON] = ACTIONS(4178), + [anon_sym_struct] = ACTIONS(4176), + [anon_sym_union] = ACTIONS(4176), + [anon_sym_QMARK] = ACTIONS(4178), + [anon_sym_STAR_EQ] = ACTIONS(4178), + [anon_sym_SLASH_EQ] = ACTIONS(4178), + [anon_sym_PERCENT_EQ] = ACTIONS(4178), + [anon_sym_PLUS_EQ] = ACTIONS(4178), + [anon_sym_DASH_EQ] = ACTIONS(4178), + [anon_sym_LT_LT_EQ] = ACTIONS(4178), + [anon_sym_GT_GT_EQ] = ACTIONS(4178), + [anon_sym_AMP_EQ] = ACTIONS(4178), + [anon_sym_CARET_EQ] = ACTIONS(4178), + [anon_sym_PIPE_EQ] = ACTIONS(4178), + [anon_sym_DASH_DASH] = ACTIONS(4178), + [anon_sym_PLUS_PLUS] = ACTIONS(4178), + [anon_sym_DOT] = ACTIONS(4176), + [anon_sym_DASH_GT] = ACTIONS(4178), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4176), + [anon_sym___typeof] = ACTIONS(4176), + [anon_sym_typeof] = ACTIONS(4176), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4176), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4176), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4176), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4176), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4176), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4176), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4176), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4176), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4176), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4176), + [anon_sym_NS_AVAILABLE] = ACTIONS(4176), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4176), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4176), + [anon_sym_API_AVAILABLE] = ACTIONS(4176), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4176), + [anon_sym_API_DEPRECATED] = ACTIONS(4176), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4176), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4176), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4176), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4176), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4176), + [anon_sym___deprecated_msg] = ACTIONS(4176), + [anon_sym___deprecated_enum_msg] = ACTIONS(4176), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4176), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4176), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4176), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4176), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4176), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4176), + [anon_sym_BOOL] = ACTIONS(4176), + [anon_sym_IMP] = ACTIONS(4176), + [anon_sym_SEL] = ACTIONS(4176), + [anon_sym_Class] = ACTIONS(4176), + [anon_sym_id] = ACTIONS(4176), + }, + [1489] = { + [sym_identifier] = ACTIONS(4180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4182), + [anon_sym_COMMA] = ACTIONS(4182), + [anon_sym_RPAREN] = ACTIONS(4182), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4182), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4182), + [anon_sym_LPAREN2] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4180), + [anon_sym_STAR] = ACTIONS(4180), + [anon_sym_SLASH] = ACTIONS(4180), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE] = ACTIONS(4180), + [anon_sym_CARET] = ACTIONS(4180), + [anon_sym_AMP] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4182), + [anon_sym_GT] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4180), + [anon_sym_LT_LT] = ACTIONS(4180), + [anon_sym_GT_GT] = ACTIONS(4180), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym___extension__] = ACTIONS(4180), + [anon_sym_extern] = ACTIONS(4180), + [anon_sym___attribute__] = ACTIONS(4180), + [anon_sym___attribute] = ACTIONS(4180), + [anon_sym_noreturn] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4182), + [anon_sym_RBRACK] = ACTIONS(4182), + [anon_sym___declspec] = ACTIONS(4180), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_signed] = ACTIONS(4180), + [anon_sym_unsigned] = ACTIONS(4180), + [anon_sym_long] = ACTIONS(4180), + [anon_sym_short] = ACTIONS(4180), + [anon_sym_static] = ACTIONS(4180), + [anon_sym_EQ] = ACTIONS(4180), + [anon_sym_ATautoreleasepool] = ACTIONS(4182), + [anon_sym_auto] = ACTIONS(4180), + [anon_sym_register] = ACTIONS(4180), + [anon_sym_inline] = ACTIONS(4180), + [anon_sym___inline] = ACTIONS(4180), + [anon_sym___inline__] = ACTIONS(4180), + [anon_sym___forceinline] = ACTIONS(4180), + [anon_sym_thread_local] = ACTIONS(4180), + [anon_sym___thread] = ACTIONS(4180), + [anon_sym_CG_EXTERN] = ACTIONS(4180), + [anon_sym_CG_INLINE] = ACTIONS(4180), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4180), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4180), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4180), + [anon_sym_IBOutlet] = ACTIONS(4180), + [anon_sym_IBInspectable] = ACTIONS(4180), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4180), + [anon_sym_NS_INLINE] = ACTIONS(4180), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4180), + [anon_sym_OBJC_EXPORT] = ACTIONS(4180), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4180), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4180), + [anon_sym_const] = ACTIONS(4180), + [anon_sym_constexpr] = ACTIONS(4180), + [anon_sym_volatile] = ACTIONS(4180), + [anon_sym_restrict] = ACTIONS(4180), + [anon_sym___restrict__] = ACTIONS(4180), + [anon_sym__Atomic] = ACTIONS(4180), + [anon_sym__Noreturn] = ACTIONS(4180), + [anon_sym__Nonnull] = ACTIONS(4180), + [anon_sym_nullable] = ACTIONS(4180), + [anon_sym__Complex] = ACTIONS(4180), + [anon_sym__Nullable] = ACTIONS(4180), + [anon_sym__Nullable_result] = ACTIONS(4180), + [anon_sym__Null_unspecified] = ACTIONS(4180), + [anon_sym___autoreleasing] = ACTIONS(4180), + [anon_sym___block] = ACTIONS(4180), + [anon_sym___bridge] = ACTIONS(4180), + [anon_sym___bridge_retained] = ACTIONS(4180), + [anon_sym___bridge_transfer] = ACTIONS(4180), + [anon_sym___complex] = ACTIONS(4180), + [anon_sym___const] = ACTIONS(4180), + [anon_sym___imag] = ACTIONS(4180), + [anon_sym___kindof] = ACTIONS(4180), + [anon_sym___nonnull] = ACTIONS(4180), + [anon_sym___nullable] = ACTIONS(4180), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4180), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4180), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4180), + [anon_sym___real] = ACTIONS(4180), + [anon_sym___strong] = ACTIONS(4180), + [anon_sym___unsafe_unretained] = ACTIONS(4180), + [anon_sym___unused] = ACTIONS(4180), + [anon_sym___weak] = ACTIONS(4180), + [anon_sym_alignas] = ACTIONS(4180), + [anon_sym__Alignas] = ACTIONS(4180), + [sym_primitive_type] = ACTIONS(4180), + [anon_sym_enum] = ACTIONS(4180), + [anon_sym_COLON] = ACTIONS(4182), + [anon_sym_struct] = ACTIONS(4180), + [anon_sym_union] = ACTIONS(4180), + [anon_sym_QMARK] = ACTIONS(4182), + [anon_sym_STAR_EQ] = ACTIONS(4182), + [anon_sym_SLASH_EQ] = ACTIONS(4182), + [anon_sym_PERCENT_EQ] = ACTIONS(4182), + [anon_sym_PLUS_EQ] = ACTIONS(4182), + [anon_sym_DASH_EQ] = ACTIONS(4182), + [anon_sym_LT_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_GT_EQ] = ACTIONS(4182), + [anon_sym_AMP_EQ] = ACTIONS(4182), + [anon_sym_CARET_EQ] = ACTIONS(4182), + [anon_sym_PIPE_EQ] = ACTIONS(4182), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_DOT] = ACTIONS(4180), + [anon_sym_DASH_GT] = ACTIONS(4182), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4180), + [anon_sym___typeof] = ACTIONS(4180), + [anon_sym_typeof] = ACTIONS(4180), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4180), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4180), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4180), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4180), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4180), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4180), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4180), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4180), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4180), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4180), + [anon_sym_NS_AVAILABLE] = ACTIONS(4180), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4180), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4180), + [anon_sym_API_AVAILABLE] = ACTIONS(4180), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4180), + [anon_sym_API_DEPRECATED] = ACTIONS(4180), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4180), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4180), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4180), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4180), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4180), + [anon_sym___deprecated_msg] = ACTIONS(4180), + [anon_sym___deprecated_enum_msg] = ACTIONS(4180), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4180), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4180), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4180), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4180), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4180), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4180), + [anon_sym_BOOL] = ACTIONS(4180), + [anon_sym_IMP] = ACTIONS(4180), + [anon_sym_SEL] = ACTIONS(4180), + [anon_sym_Class] = ACTIONS(4180), + [anon_sym_id] = ACTIONS(4180), + }, + [1490] = { + [sym_identifier] = ACTIONS(4184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4186), + [anon_sym_COMMA] = ACTIONS(4186), + [anon_sym_RPAREN] = ACTIONS(4186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4186), + [anon_sym_LPAREN2] = ACTIONS(4186), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_AMP_AMP] = ACTIONS(4186), + [anon_sym_PIPE] = ACTIONS(4184), + [anon_sym_CARET] = ACTIONS(4184), + [anon_sym_AMP] = ACTIONS(4184), + [anon_sym_EQ_EQ] = ACTIONS(4186), + [anon_sym_BANG_EQ] = ACTIONS(4186), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_GT_EQ] = ACTIONS(4186), + [anon_sym_LT_EQ] = ACTIONS(4186), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_LT_LT] = ACTIONS(4184), + [anon_sym_GT_GT] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4186), + [anon_sym___extension__] = ACTIONS(4184), + [anon_sym_extern] = ACTIONS(4184), + [anon_sym___attribute__] = ACTIONS(4184), + [anon_sym___attribute] = ACTIONS(4184), + [anon_sym_noreturn] = ACTIONS(4184), + [anon_sym_LBRACK] = ACTIONS(4186), + [anon_sym_RBRACK] = ACTIONS(4186), + [anon_sym___declspec] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4186), + [anon_sym_RBRACE] = ACTIONS(4186), + [anon_sym_signed] = ACTIONS(4184), + [anon_sym_unsigned] = ACTIONS(4184), + [anon_sym_long] = ACTIONS(4184), + [anon_sym_short] = ACTIONS(4184), + [anon_sym_static] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_ATautoreleasepool] = ACTIONS(4186), + [anon_sym_auto] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym___inline] = ACTIONS(4184), + [anon_sym___inline__] = ACTIONS(4184), + [anon_sym___forceinline] = ACTIONS(4184), + [anon_sym_thread_local] = ACTIONS(4184), + [anon_sym___thread] = ACTIONS(4184), + [anon_sym_CG_EXTERN] = ACTIONS(4184), + [anon_sym_CG_INLINE] = ACTIONS(4184), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4184), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4184), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4184), + [anon_sym_IBOutlet] = ACTIONS(4184), + [anon_sym_IBInspectable] = ACTIONS(4184), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4184), + [anon_sym_NS_INLINE] = ACTIONS(4184), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4184), + [anon_sym_OBJC_EXPORT] = ACTIONS(4184), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4184), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4184), + [anon_sym_const] = ACTIONS(4184), + [anon_sym_constexpr] = ACTIONS(4184), + [anon_sym_volatile] = ACTIONS(4184), + [anon_sym_restrict] = ACTIONS(4184), + [anon_sym___restrict__] = ACTIONS(4184), + [anon_sym__Atomic] = ACTIONS(4184), + [anon_sym__Noreturn] = ACTIONS(4184), + [anon_sym__Nonnull] = ACTIONS(4184), + [anon_sym_nullable] = ACTIONS(4184), + [anon_sym__Complex] = ACTIONS(4184), + [anon_sym__Nullable] = ACTIONS(4184), + [anon_sym__Nullable_result] = ACTIONS(4184), + [anon_sym__Null_unspecified] = ACTIONS(4184), + [anon_sym___autoreleasing] = ACTIONS(4184), + [anon_sym___block] = ACTIONS(4184), + [anon_sym___bridge] = ACTIONS(4184), + [anon_sym___bridge_retained] = ACTIONS(4184), + [anon_sym___bridge_transfer] = ACTIONS(4184), + [anon_sym___complex] = ACTIONS(4184), + [anon_sym___const] = ACTIONS(4184), + [anon_sym___imag] = ACTIONS(4184), + [anon_sym___kindof] = ACTIONS(4184), + [anon_sym___nonnull] = ACTIONS(4184), + [anon_sym___nullable] = ACTIONS(4184), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4184), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4184), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4184), + [anon_sym___real] = ACTIONS(4184), + [anon_sym___strong] = ACTIONS(4184), + [anon_sym___unsafe_unretained] = ACTIONS(4184), + [anon_sym___unused] = ACTIONS(4184), + [anon_sym___weak] = ACTIONS(4184), + [anon_sym_alignas] = ACTIONS(4184), + [anon_sym__Alignas] = ACTIONS(4184), + [sym_primitive_type] = ACTIONS(4184), + [anon_sym_enum] = ACTIONS(4184), + [anon_sym_COLON] = ACTIONS(4186), + [anon_sym_struct] = ACTIONS(4184), + [anon_sym_union] = ACTIONS(4184), + [anon_sym_QMARK] = ACTIONS(4186), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_LT_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_GT_EQ] = ACTIONS(4186), + [anon_sym_AMP_EQ] = ACTIONS(4186), + [anon_sym_CARET_EQ] = ACTIONS(4186), + [anon_sym_PIPE_EQ] = ACTIONS(4186), + [anon_sym_DASH_DASH] = ACTIONS(4186), + [anon_sym_PLUS_PLUS] = ACTIONS(4186), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_DASH_GT] = ACTIONS(4186), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4184), + [anon_sym___typeof] = ACTIONS(4184), + [anon_sym_typeof] = ACTIONS(4184), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4184), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4184), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4184), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4184), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4184), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4184), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4184), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4184), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4184), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4184), + [anon_sym_NS_AVAILABLE] = ACTIONS(4184), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4184), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4184), + [anon_sym_API_AVAILABLE] = ACTIONS(4184), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4184), + [anon_sym_API_DEPRECATED] = ACTIONS(4184), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4184), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4184), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4184), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4184), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4184), + [anon_sym___deprecated_msg] = ACTIONS(4184), + [anon_sym___deprecated_enum_msg] = ACTIONS(4184), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4184), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4184), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4184), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4184), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4184), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4184), + [anon_sym_BOOL] = ACTIONS(4184), + [anon_sym_IMP] = ACTIONS(4184), + [anon_sym_SEL] = ACTIONS(4184), + [anon_sym_Class] = ACTIONS(4184), + [anon_sym_id] = ACTIONS(4184), + }, + [1491] = { + [sym_identifier] = ACTIONS(4188), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4191), + [anon_sym_COMMA] = ACTIONS(4191), + [anon_sym_LPAREN2] = ACTIONS(4191), + [anon_sym_DASH] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(4188), + [anon_sym_SLASH] = ACTIONS(4188), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4191), + [anon_sym_AMP_AMP] = ACTIONS(4191), + [anon_sym_PIPE] = ACTIONS(4188), + [anon_sym_CARET] = ACTIONS(4188), + [anon_sym_AMP] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4191), + [anon_sym_BANG_EQ] = ACTIONS(4191), + [anon_sym_GT] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4191), + [anon_sym_LT_EQ] = ACTIONS(4191), + [anon_sym_LT] = ACTIONS(4188), + [anon_sym_LT_LT] = ACTIONS(4188), + [anon_sym_GT_GT] = ACTIONS(4188), + [anon_sym_SEMI] = ACTIONS(4191), + [anon_sym___extension__] = ACTIONS(4188), + [anon_sym_extern] = ACTIONS(4188), + [anon_sym___attribute__] = ACTIONS(4188), + [anon_sym___attribute] = ACTIONS(4188), + [anon_sym_noreturn] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4191), + [anon_sym___declspec] = ACTIONS(4188), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_signed] = ACTIONS(4188), + [anon_sym_unsigned] = ACTIONS(4188), + [anon_sym_long] = ACTIONS(4188), + [anon_sym_short] = ACTIONS(4188), + [anon_sym_static] = ACTIONS(4188), + [anon_sym_EQ] = ACTIONS(4188), + [anon_sym_ATautoreleasepool] = ACTIONS(4191), + [anon_sym_auto] = ACTIONS(4188), + [anon_sym_register] = ACTIONS(4188), + [anon_sym_inline] = ACTIONS(4188), + [anon_sym___inline] = ACTIONS(4188), + [anon_sym___inline__] = ACTIONS(4188), + [anon_sym___forceinline] = ACTIONS(4188), + [anon_sym_thread_local] = ACTIONS(4188), + [anon_sym___thread] = ACTIONS(4188), + [anon_sym_CG_EXTERN] = ACTIONS(4188), + [anon_sym_CG_INLINE] = ACTIONS(4188), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4188), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4188), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4188), + [anon_sym_IBOutlet] = ACTIONS(4188), + [anon_sym_IBInspectable] = ACTIONS(4188), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4188), + [anon_sym_NS_INLINE] = ACTIONS(4188), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4188), + [anon_sym_OBJC_EXPORT] = ACTIONS(4188), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4188), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4188), + [anon_sym_const] = ACTIONS(4188), + [anon_sym_constexpr] = ACTIONS(4188), + [anon_sym_volatile] = ACTIONS(4188), + [anon_sym_restrict] = ACTIONS(4188), + [anon_sym___restrict__] = ACTIONS(4188), + [anon_sym__Atomic] = ACTIONS(4188), + [anon_sym__Noreturn] = ACTIONS(4188), + [anon_sym__Nonnull] = ACTIONS(4188), + [anon_sym_nullable] = ACTIONS(4188), + [anon_sym__Complex] = ACTIONS(4188), + [anon_sym__Nullable] = ACTIONS(4188), + [anon_sym__Nullable_result] = ACTIONS(4188), + [anon_sym__Null_unspecified] = ACTIONS(4188), + [anon_sym___autoreleasing] = ACTIONS(4188), + [anon_sym___block] = ACTIONS(4188), + [anon_sym___bridge] = ACTIONS(4188), + [anon_sym___bridge_retained] = ACTIONS(4188), + [anon_sym___bridge_transfer] = ACTIONS(4188), + [anon_sym___complex] = ACTIONS(4188), + [anon_sym___const] = ACTIONS(4188), + [anon_sym___imag] = ACTIONS(4188), + [anon_sym___kindof] = ACTIONS(4188), + [anon_sym___nonnull] = ACTIONS(4188), + [anon_sym___nullable] = ACTIONS(4188), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4188), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4188), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4188), + [anon_sym___real] = ACTIONS(4188), + [anon_sym___strong] = ACTIONS(4188), + [anon_sym___unsafe_unretained] = ACTIONS(4188), + [anon_sym___unused] = ACTIONS(4188), + [anon_sym___weak] = ACTIONS(4188), + [anon_sym_alignas] = ACTIONS(4188), + [anon_sym__Alignas] = ACTIONS(4188), + [sym_primitive_type] = ACTIONS(4188), + [anon_sym_enum] = ACTIONS(4188), + [anon_sym_struct] = ACTIONS(4188), + [anon_sym_union] = ACTIONS(4188), + [anon_sym_QMARK] = ACTIONS(4191), + [anon_sym_STAR_EQ] = ACTIONS(4191), + [anon_sym_SLASH_EQ] = ACTIONS(4191), + [anon_sym_PERCENT_EQ] = ACTIONS(4191), + [anon_sym_PLUS_EQ] = ACTIONS(4191), + [anon_sym_DASH_EQ] = ACTIONS(4191), + [anon_sym_LT_LT_EQ] = ACTIONS(4191), + [anon_sym_GT_GT_EQ] = ACTIONS(4191), + [anon_sym_AMP_EQ] = ACTIONS(4191), + [anon_sym_CARET_EQ] = ACTIONS(4191), + [anon_sym_PIPE_EQ] = ACTIONS(4191), + [anon_sym_DASH_DASH] = ACTIONS(4191), + [anon_sym_PLUS_PLUS] = ACTIONS(4191), + [anon_sym_DOT] = ACTIONS(4188), + [anon_sym_DASH_GT] = ACTIONS(4191), + [anon_sym_AT] = ACTIONS(4188), + [anon_sym_DQUOTE] = ACTIONS(4191), + [anon_sym_L_DQUOTE] = ACTIONS(4191), + [anon_sym_u_DQUOTE] = ACTIONS(4191), + [anon_sym_U_DQUOTE] = ACTIONS(4191), + [anon_sym_u8_DQUOTE] = ACTIONS(4191), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4188), + [anon_sym___typeof] = ACTIONS(4188), + [anon_sym_typeof] = ACTIONS(4188), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4188), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4188), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4188), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4188), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4188), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4188), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4188), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4188), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4188), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4188), + [anon_sym_NS_AVAILABLE] = ACTIONS(4188), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4188), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4188), + [anon_sym_API_AVAILABLE] = ACTIONS(4188), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4188), + [anon_sym_API_DEPRECATED] = ACTIONS(4188), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4188), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4188), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4188), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4188), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4188), + [anon_sym___deprecated_msg] = ACTIONS(4188), + [anon_sym___deprecated_enum_msg] = ACTIONS(4188), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4188), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4188), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4188), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4188), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4188), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4188), + [anon_sym_BOOL] = ACTIONS(4188), + [anon_sym_IMP] = ACTIONS(4188), + [anon_sym_SEL] = ACTIONS(4188), + [anon_sym_Class] = ACTIONS(4188), + [anon_sym_id] = ACTIONS(4188), + }, + [1492] = { + [sym_identifier] = ACTIONS(4194), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_RPAREN] = ACTIONS(4196), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4196), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4196), + [anon_sym_LPAREN2] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE] = ACTIONS(4194), + [anon_sym_CARET] = ACTIONS(4194), + [anon_sym_AMP] = ACTIONS(4194), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_LT_LT] = ACTIONS(4194), + [anon_sym_GT_GT] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym___extension__] = ACTIONS(4194), + [anon_sym_extern] = ACTIONS(4194), + [anon_sym___attribute__] = ACTIONS(4194), + [anon_sym___attribute] = ACTIONS(4194), + [anon_sym_noreturn] = ACTIONS(4194), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_RBRACK] = ACTIONS(4196), + [anon_sym___declspec] = ACTIONS(4194), + [anon_sym_LBRACE] = ACTIONS(4196), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_signed] = ACTIONS(4194), + [anon_sym_unsigned] = ACTIONS(4194), + [anon_sym_long] = ACTIONS(4194), + [anon_sym_short] = ACTIONS(4194), + [anon_sym_static] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(4194), + [anon_sym_ATautoreleasepool] = ACTIONS(4196), + [anon_sym_auto] = ACTIONS(4194), + [anon_sym_register] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym___inline] = ACTIONS(4194), + [anon_sym___inline__] = ACTIONS(4194), + [anon_sym___forceinline] = ACTIONS(4194), + [anon_sym_thread_local] = ACTIONS(4194), + [anon_sym___thread] = ACTIONS(4194), + [anon_sym_CG_EXTERN] = ACTIONS(4194), + [anon_sym_CG_INLINE] = ACTIONS(4194), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4194), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4194), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4194), + [anon_sym_IBOutlet] = ACTIONS(4194), + [anon_sym_IBInspectable] = ACTIONS(4194), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4194), + [anon_sym_NS_INLINE] = ACTIONS(4194), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4194), + [anon_sym_OBJC_EXPORT] = ACTIONS(4194), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4194), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4194), + [anon_sym_const] = ACTIONS(4194), + [anon_sym_constexpr] = ACTIONS(4194), + [anon_sym_volatile] = ACTIONS(4194), + [anon_sym_restrict] = ACTIONS(4194), + [anon_sym___restrict__] = ACTIONS(4194), + [anon_sym__Atomic] = ACTIONS(4194), + [anon_sym__Noreturn] = ACTIONS(4194), + [anon_sym__Nonnull] = ACTIONS(4194), + [anon_sym_nullable] = ACTIONS(4194), + [anon_sym__Complex] = ACTIONS(4194), + [anon_sym__Nullable] = ACTIONS(4194), + [anon_sym__Nullable_result] = ACTIONS(4194), + [anon_sym__Null_unspecified] = ACTIONS(4194), + [anon_sym___autoreleasing] = ACTIONS(4194), + [anon_sym___block] = ACTIONS(4194), + [anon_sym___bridge] = ACTIONS(4194), + [anon_sym___bridge_retained] = ACTIONS(4194), + [anon_sym___bridge_transfer] = ACTIONS(4194), + [anon_sym___complex] = ACTIONS(4194), + [anon_sym___const] = ACTIONS(4194), + [anon_sym___imag] = ACTIONS(4194), + [anon_sym___kindof] = ACTIONS(4194), + [anon_sym___nonnull] = ACTIONS(4194), + [anon_sym___nullable] = ACTIONS(4194), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4194), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4194), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4194), + [anon_sym___real] = ACTIONS(4194), + [anon_sym___strong] = ACTIONS(4194), + [anon_sym___unsafe_unretained] = ACTIONS(4194), + [anon_sym___unused] = ACTIONS(4194), + [anon_sym___weak] = ACTIONS(4194), + [anon_sym_alignas] = ACTIONS(4194), + [anon_sym__Alignas] = ACTIONS(4194), + [sym_primitive_type] = ACTIONS(4194), + [anon_sym_enum] = ACTIONS(4194), + [anon_sym_COLON] = ACTIONS(4196), + [anon_sym_struct] = ACTIONS(4194), + [anon_sym_union] = ACTIONS(4194), + [anon_sym_QMARK] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_LT_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_GT_EQ] = ACTIONS(4196), + [anon_sym_AMP_EQ] = ACTIONS(4196), + [anon_sym_CARET_EQ] = ACTIONS(4196), + [anon_sym_PIPE_EQ] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_DASH_GT] = ACTIONS(4196), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4194), + [anon_sym___typeof] = ACTIONS(4194), + [anon_sym_typeof] = ACTIONS(4194), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4194), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4194), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4194), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4194), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4194), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4194), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4194), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4194), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4194), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4194), + [anon_sym_NS_AVAILABLE] = ACTIONS(4194), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4194), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4194), + [anon_sym_API_AVAILABLE] = ACTIONS(4194), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4194), + [anon_sym_API_DEPRECATED] = ACTIONS(4194), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4194), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4194), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4194), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4194), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4194), + [anon_sym___deprecated_msg] = ACTIONS(4194), + [anon_sym___deprecated_enum_msg] = ACTIONS(4194), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4194), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4194), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4194), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4194), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4194), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4194), + [anon_sym_BOOL] = ACTIONS(4194), + [anon_sym_IMP] = ACTIONS(4194), + [anon_sym_SEL] = ACTIONS(4194), + [anon_sym_Class] = ACTIONS(4194), + [anon_sym_id] = ACTIONS(4194), + }, + [1493] = { + [sym_identifier] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2348), + [anon_sym_COMMA] = ACTIONS(2348), + [anon_sym_RPAREN] = ACTIONS(2348), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2348), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2348), + [anon_sym_LPAREN2] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2346), + [anon_sym_PLUS] = ACTIONS(2346), + [anon_sym_STAR] = ACTIONS(2346), + [anon_sym_SLASH] = ACTIONS(2346), + [anon_sym_PERCENT] = ACTIONS(2346), + [anon_sym_PIPE_PIPE] = ACTIONS(2348), + [anon_sym_AMP_AMP] = ACTIONS(2348), + [anon_sym_PIPE] = ACTIONS(2346), + [anon_sym_CARET] = ACTIONS(2346), + [anon_sym_AMP] = ACTIONS(2346), + [anon_sym_EQ_EQ] = ACTIONS(2348), + [anon_sym_BANG_EQ] = ACTIONS(2348), + [anon_sym_GT] = ACTIONS(2346), + [anon_sym_GT_EQ] = ACTIONS(2348), + [anon_sym_LT_EQ] = ACTIONS(2348), + [anon_sym_LT] = ACTIONS(2346), + [anon_sym_LT_LT] = ACTIONS(2346), + [anon_sym_GT_GT] = ACTIONS(2346), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym___extension__] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym___attribute__] = ACTIONS(2346), + [anon_sym___attribute] = ACTIONS(2346), + [anon_sym_noreturn] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym_RBRACK] = ACTIONS(2348), + [anon_sym___declspec] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_signed] = ACTIONS(2346), + [anon_sym_unsigned] = ACTIONS(2346), + [anon_sym_long] = ACTIONS(2346), + [anon_sym_short] = ACTIONS(2346), + [anon_sym_static] = ACTIONS(2346), + [anon_sym_EQ] = ACTIONS(2346), + [anon_sym_ATautoreleasepool] = ACTIONS(2348), + [anon_sym_auto] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2346), + [anon_sym_inline] = ACTIONS(2346), + [anon_sym___inline] = ACTIONS(2346), + [anon_sym___inline__] = ACTIONS(2346), + [anon_sym___forceinline] = ACTIONS(2346), + [anon_sym_thread_local] = ACTIONS(2346), + [anon_sym___thread] = ACTIONS(2346), + [anon_sym_CG_EXTERN] = ACTIONS(2346), + [anon_sym_CG_INLINE] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2346), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2346), + [anon_sym_IBOutlet] = ACTIONS(2346), + [anon_sym_IBInspectable] = ACTIONS(2346), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2346), + [anon_sym_NS_INLINE] = ACTIONS(2346), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2346), + [anon_sym_OBJC_EXPORT] = ACTIONS(2346), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_constexpr] = ACTIONS(2346), + [anon_sym_volatile] = ACTIONS(2346), + [anon_sym_restrict] = ACTIONS(2346), + [anon_sym___restrict__] = ACTIONS(2346), + [anon_sym__Atomic] = ACTIONS(2346), + [anon_sym__Noreturn] = ACTIONS(2346), + [anon_sym__Nonnull] = ACTIONS(2346), + [anon_sym_nullable] = ACTIONS(2346), + [anon_sym__Complex] = ACTIONS(2346), + [anon_sym__Nullable] = ACTIONS(2346), + [anon_sym__Nullable_result] = ACTIONS(2346), + [anon_sym__Null_unspecified] = ACTIONS(2346), + [anon_sym___autoreleasing] = ACTIONS(2346), + [anon_sym___block] = ACTIONS(2346), + [anon_sym___bridge] = ACTIONS(2346), + [anon_sym___bridge_retained] = ACTIONS(2346), + [anon_sym___bridge_transfer] = ACTIONS(2346), + [anon_sym___complex] = ACTIONS(2346), + [anon_sym___const] = ACTIONS(2346), + [anon_sym___imag] = ACTIONS(2346), + [anon_sym___kindof] = ACTIONS(2346), + [anon_sym___nonnull] = ACTIONS(2346), + [anon_sym___nullable] = ACTIONS(2346), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2346), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2346), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2346), + [anon_sym___real] = ACTIONS(2346), + [anon_sym___strong] = ACTIONS(2346), + [anon_sym___unsafe_unretained] = ACTIONS(2346), + [anon_sym___unused] = ACTIONS(2346), + [anon_sym___weak] = ACTIONS(2346), + [anon_sym_alignas] = ACTIONS(2346), + [anon_sym__Alignas] = ACTIONS(2346), + [sym_primitive_type] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_COLON] = ACTIONS(2348), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [anon_sym_QMARK] = ACTIONS(2348), + [anon_sym_STAR_EQ] = ACTIONS(2348), + [anon_sym_SLASH_EQ] = ACTIONS(2348), + [anon_sym_PERCENT_EQ] = ACTIONS(2348), + [anon_sym_PLUS_EQ] = ACTIONS(2348), + [anon_sym_DASH_EQ] = ACTIONS(2348), + [anon_sym_LT_LT_EQ] = ACTIONS(2348), + [anon_sym_GT_GT_EQ] = ACTIONS(2348), + [anon_sym_AMP_EQ] = ACTIONS(2348), + [anon_sym_CARET_EQ] = ACTIONS(2348), + [anon_sym_PIPE_EQ] = ACTIONS(2348), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_DOT] = ACTIONS(2346), + [anon_sym_DASH_GT] = ACTIONS(2348), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2346), + [anon_sym___typeof] = ACTIONS(2346), + [anon_sym_typeof] = ACTIONS(2346), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2346), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2346), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2346), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2346), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE] = ACTIONS(2346), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_API_AVAILABLE] = ACTIONS(2346), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_API_DEPRECATED] = ACTIONS(2346), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2346), + [anon_sym___deprecated_msg] = ACTIONS(2346), + [anon_sym___deprecated_enum_msg] = ACTIONS(2346), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2346), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2346), + [anon_sym_BOOL] = ACTIONS(2346), + [anon_sym_IMP] = ACTIONS(2346), + [anon_sym_SEL] = ACTIONS(2346), + [anon_sym_Class] = ACTIONS(2346), + [anon_sym_id] = ACTIONS(2346), + }, + [1494] = { + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4200), + [anon_sym_COMMA] = ACTIONS(4200), + [anon_sym_RPAREN] = ACTIONS(4200), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4200), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4198), + [anon_sym_STAR] = ACTIONS(4198), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4200), + [anon_sym_AMP_AMP] = ACTIONS(4200), + [anon_sym_PIPE] = ACTIONS(4198), + [anon_sym_CARET] = ACTIONS(4198), + [anon_sym_AMP] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4200), + [anon_sym_BANG_EQ] = ACTIONS(4200), + [anon_sym_GT] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4200), + [anon_sym_LT_EQ] = ACTIONS(4200), + [anon_sym_LT] = ACTIONS(4198), + [anon_sym_LT_LT] = ACTIONS(4198), + [anon_sym_GT_GT] = ACTIONS(4198), + [anon_sym_SEMI] = ACTIONS(4200), + [anon_sym___extension__] = ACTIONS(4198), + [anon_sym_extern] = ACTIONS(4198), + [anon_sym___attribute__] = ACTIONS(4198), + [anon_sym___attribute] = ACTIONS(4198), + [anon_sym_noreturn] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(4200), + [anon_sym_RBRACK] = ACTIONS(4200), + [anon_sym___declspec] = ACTIONS(4198), + [anon_sym_LBRACE] = ACTIONS(4200), + [anon_sym_RBRACE] = ACTIONS(4200), + [anon_sym_signed] = ACTIONS(4198), + [anon_sym_unsigned] = ACTIONS(4198), + [anon_sym_long] = ACTIONS(4198), + [anon_sym_short] = ACTIONS(4198), + [anon_sym_static] = ACTIONS(4198), + [anon_sym_EQ] = ACTIONS(4198), + [anon_sym_ATautoreleasepool] = ACTIONS(4200), + [anon_sym_auto] = ACTIONS(4198), + [anon_sym_register] = ACTIONS(4198), + [anon_sym_inline] = ACTIONS(4198), + [anon_sym___inline] = ACTIONS(4198), + [anon_sym___inline__] = ACTIONS(4198), + [anon_sym___forceinline] = ACTIONS(4198), + [anon_sym_thread_local] = ACTIONS(4198), + [anon_sym___thread] = ACTIONS(4198), + [anon_sym_CG_EXTERN] = ACTIONS(4198), + [anon_sym_CG_INLINE] = ACTIONS(4198), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4198), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4198), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4198), + [anon_sym_IBOutlet] = ACTIONS(4198), + [anon_sym_IBInspectable] = ACTIONS(4198), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4198), + [anon_sym_NS_INLINE] = ACTIONS(4198), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4198), + [anon_sym_OBJC_EXPORT] = ACTIONS(4198), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4198), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4198), + [anon_sym_const] = ACTIONS(4198), + [anon_sym_constexpr] = ACTIONS(4198), + [anon_sym_volatile] = ACTIONS(4198), + [anon_sym_restrict] = ACTIONS(4198), + [anon_sym___restrict__] = ACTIONS(4198), + [anon_sym__Atomic] = ACTIONS(4198), + [anon_sym__Noreturn] = ACTIONS(4198), + [anon_sym__Nonnull] = ACTIONS(4198), + [anon_sym_nullable] = ACTIONS(4198), + [anon_sym__Complex] = ACTIONS(4198), + [anon_sym__Nullable] = ACTIONS(4198), + [anon_sym__Nullable_result] = ACTIONS(4198), + [anon_sym__Null_unspecified] = ACTIONS(4198), + [anon_sym___autoreleasing] = ACTIONS(4198), + [anon_sym___block] = ACTIONS(4198), + [anon_sym___bridge] = ACTIONS(4198), + [anon_sym___bridge_retained] = ACTIONS(4198), + [anon_sym___bridge_transfer] = ACTIONS(4198), + [anon_sym___complex] = ACTIONS(4198), + [anon_sym___const] = ACTIONS(4198), + [anon_sym___imag] = ACTIONS(4198), + [anon_sym___kindof] = ACTIONS(4198), + [anon_sym___nonnull] = ACTIONS(4198), + [anon_sym___nullable] = ACTIONS(4198), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4198), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4198), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4198), + [anon_sym___real] = ACTIONS(4198), + [anon_sym___strong] = ACTIONS(4198), + [anon_sym___unsafe_unretained] = ACTIONS(4198), + [anon_sym___unused] = ACTIONS(4198), + [anon_sym___weak] = ACTIONS(4198), + [anon_sym_alignas] = ACTIONS(4198), + [anon_sym__Alignas] = ACTIONS(4198), + [sym_primitive_type] = ACTIONS(4198), + [anon_sym_enum] = ACTIONS(4198), + [anon_sym_COLON] = ACTIONS(4200), + [anon_sym_struct] = ACTIONS(4198), + [anon_sym_union] = ACTIONS(4198), + [anon_sym_QMARK] = ACTIONS(4200), + [anon_sym_STAR_EQ] = ACTIONS(4200), + [anon_sym_SLASH_EQ] = ACTIONS(4200), + [anon_sym_PERCENT_EQ] = ACTIONS(4200), + [anon_sym_PLUS_EQ] = ACTIONS(4200), + [anon_sym_DASH_EQ] = ACTIONS(4200), + [anon_sym_LT_LT_EQ] = ACTIONS(4200), + [anon_sym_GT_GT_EQ] = ACTIONS(4200), + [anon_sym_AMP_EQ] = ACTIONS(4200), + [anon_sym_CARET_EQ] = ACTIONS(4200), + [anon_sym_PIPE_EQ] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4200), + [anon_sym_PLUS_PLUS] = ACTIONS(4200), + [anon_sym_DOT] = ACTIONS(4198), + [anon_sym_DASH_GT] = ACTIONS(4200), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4198), + [anon_sym___typeof] = ACTIONS(4198), + [anon_sym_typeof] = ACTIONS(4198), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4198), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4198), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4198), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4198), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4198), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4198), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4198), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4198), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4198), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4198), + [anon_sym_NS_AVAILABLE] = ACTIONS(4198), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4198), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4198), + [anon_sym_API_AVAILABLE] = ACTIONS(4198), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4198), + [anon_sym_API_DEPRECATED] = ACTIONS(4198), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4198), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4198), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4198), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4198), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4198), + [anon_sym___deprecated_msg] = ACTIONS(4198), + [anon_sym___deprecated_enum_msg] = ACTIONS(4198), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4198), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4198), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4198), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4198), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4198), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4198), + [anon_sym_BOOL] = ACTIONS(4198), + [anon_sym_IMP] = ACTIONS(4198), + [anon_sym_SEL] = ACTIONS(4198), + [anon_sym_Class] = ACTIONS(4198), + [anon_sym_id] = ACTIONS(4198), + }, + [1495] = { + [sym_identifier] = ACTIONS(4194), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_RPAREN] = ACTIONS(4196), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4196), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4196), + [anon_sym_LPAREN2] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE] = ACTIONS(4194), + [anon_sym_CARET] = ACTIONS(4194), + [anon_sym_AMP] = ACTIONS(4194), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_LT_LT] = ACTIONS(4194), + [anon_sym_GT_GT] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym___extension__] = ACTIONS(4194), + [anon_sym_extern] = ACTIONS(4194), + [anon_sym___attribute__] = ACTIONS(4194), + [anon_sym___attribute] = ACTIONS(4194), + [anon_sym_noreturn] = ACTIONS(4194), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_RBRACK] = ACTIONS(4196), + [anon_sym___declspec] = ACTIONS(4194), + [anon_sym_LBRACE] = ACTIONS(4196), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_signed] = ACTIONS(4194), + [anon_sym_unsigned] = ACTIONS(4194), + [anon_sym_long] = ACTIONS(4194), + [anon_sym_short] = ACTIONS(4194), + [anon_sym_static] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(4194), + [anon_sym_ATautoreleasepool] = ACTIONS(4196), + [anon_sym_auto] = ACTIONS(4194), + [anon_sym_register] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym___inline] = ACTIONS(4194), + [anon_sym___inline__] = ACTIONS(4194), + [anon_sym___forceinline] = ACTIONS(4194), + [anon_sym_thread_local] = ACTIONS(4194), + [anon_sym___thread] = ACTIONS(4194), + [anon_sym_CG_EXTERN] = ACTIONS(4194), + [anon_sym_CG_INLINE] = ACTIONS(4194), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4194), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4194), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4194), + [anon_sym_IBOutlet] = ACTIONS(4194), + [anon_sym_IBInspectable] = ACTIONS(4194), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4194), + [anon_sym_NS_INLINE] = ACTIONS(4194), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4194), + [anon_sym_OBJC_EXPORT] = ACTIONS(4194), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4194), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4194), + [anon_sym_const] = ACTIONS(4194), + [anon_sym_constexpr] = ACTIONS(4194), + [anon_sym_volatile] = ACTIONS(4194), + [anon_sym_restrict] = ACTIONS(4194), + [anon_sym___restrict__] = ACTIONS(4194), + [anon_sym__Atomic] = ACTIONS(4194), + [anon_sym__Noreturn] = ACTIONS(4194), + [anon_sym__Nonnull] = ACTIONS(4194), + [anon_sym_nullable] = ACTIONS(4194), + [anon_sym__Complex] = ACTIONS(4194), + [anon_sym__Nullable] = ACTIONS(4194), + [anon_sym__Nullable_result] = ACTIONS(4194), + [anon_sym__Null_unspecified] = ACTIONS(4194), + [anon_sym___autoreleasing] = ACTIONS(4194), + [anon_sym___block] = ACTIONS(4194), + [anon_sym___bridge] = ACTIONS(4194), + [anon_sym___bridge_retained] = ACTIONS(4194), + [anon_sym___bridge_transfer] = ACTIONS(4194), + [anon_sym___complex] = ACTIONS(4194), + [anon_sym___const] = ACTIONS(4194), + [anon_sym___imag] = ACTIONS(4194), + [anon_sym___kindof] = ACTIONS(4194), + [anon_sym___nonnull] = ACTIONS(4194), + [anon_sym___nullable] = ACTIONS(4194), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4194), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4194), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4194), + [anon_sym___real] = ACTIONS(4194), + [anon_sym___strong] = ACTIONS(4194), + [anon_sym___unsafe_unretained] = ACTIONS(4194), + [anon_sym___unused] = ACTIONS(4194), + [anon_sym___weak] = ACTIONS(4194), + [anon_sym_alignas] = ACTIONS(4194), + [anon_sym__Alignas] = ACTIONS(4194), + [sym_primitive_type] = ACTIONS(4194), + [anon_sym_enum] = ACTIONS(4194), + [anon_sym_COLON] = ACTIONS(4196), + [anon_sym_struct] = ACTIONS(4194), + [anon_sym_union] = ACTIONS(4194), + [anon_sym_QMARK] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_LT_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_GT_EQ] = ACTIONS(4196), + [anon_sym_AMP_EQ] = ACTIONS(4196), + [anon_sym_CARET_EQ] = ACTIONS(4196), + [anon_sym_PIPE_EQ] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_DASH_GT] = ACTIONS(4196), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4194), + [anon_sym___typeof] = ACTIONS(4194), + [anon_sym_typeof] = ACTIONS(4194), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4194), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4194), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4194), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4194), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4194), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4194), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4194), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4194), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4194), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4194), + [anon_sym_NS_AVAILABLE] = ACTIONS(4194), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4194), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4194), + [anon_sym_API_AVAILABLE] = ACTIONS(4194), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4194), + [anon_sym_API_DEPRECATED] = ACTIONS(4194), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4194), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4194), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4194), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4194), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4194), + [anon_sym___deprecated_msg] = ACTIONS(4194), + [anon_sym___deprecated_enum_msg] = ACTIONS(4194), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4194), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4194), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4194), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4194), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4194), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4194), + [anon_sym_BOOL] = ACTIONS(4194), + [anon_sym_IMP] = ACTIONS(4194), + [anon_sym_SEL] = ACTIONS(4194), + [anon_sym_Class] = ACTIONS(4194), + [anon_sym_id] = ACTIONS(4194), + }, + [1496] = { + [sym_identifier] = ACTIONS(4202), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_RPAREN] = ACTIONS(4204), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4204), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE] = ACTIONS(4202), + [anon_sym_CARET] = ACTIONS(4202), + [anon_sym_AMP] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_LT_LT] = ACTIONS(4202), + [anon_sym_GT_GT] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(4202), + [anon_sym_extern] = ACTIONS(4202), + [anon_sym___attribute__] = ACTIONS(4202), + [anon_sym___attribute] = ACTIONS(4202), + [anon_sym_noreturn] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_RBRACK] = ACTIONS(4204), + [anon_sym___declspec] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4204), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_signed] = ACTIONS(4202), + [anon_sym_unsigned] = ACTIONS(4202), + [anon_sym_long] = ACTIONS(4202), + [anon_sym_short] = ACTIONS(4202), + [anon_sym_static] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_ATautoreleasepool] = ACTIONS(4204), + [anon_sym_auto] = ACTIONS(4202), + [anon_sym_register] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym___inline] = ACTIONS(4202), + [anon_sym___inline__] = ACTIONS(4202), + [anon_sym___forceinline] = ACTIONS(4202), + [anon_sym_thread_local] = ACTIONS(4202), + [anon_sym___thread] = ACTIONS(4202), + [anon_sym_CG_EXTERN] = ACTIONS(4202), + [anon_sym_CG_INLINE] = ACTIONS(4202), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4202), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4202), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4202), + [anon_sym_IBOutlet] = ACTIONS(4202), + [anon_sym_IBInspectable] = ACTIONS(4202), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4202), + [anon_sym_NS_INLINE] = ACTIONS(4202), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4202), + [anon_sym_OBJC_EXPORT] = ACTIONS(4202), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4202), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4202), + [anon_sym_const] = ACTIONS(4202), + [anon_sym_constexpr] = ACTIONS(4202), + [anon_sym_volatile] = ACTIONS(4202), + [anon_sym_restrict] = ACTIONS(4202), + [anon_sym___restrict__] = ACTIONS(4202), + [anon_sym__Atomic] = ACTIONS(4202), + [anon_sym__Noreturn] = ACTIONS(4202), + [anon_sym__Nonnull] = ACTIONS(4202), + [anon_sym_nullable] = ACTIONS(4202), + [anon_sym__Complex] = ACTIONS(4202), + [anon_sym__Nullable] = ACTIONS(4202), + [anon_sym__Nullable_result] = ACTIONS(4202), + [anon_sym__Null_unspecified] = ACTIONS(4202), + [anon_sym___autoreleasing] = ACTIONS(4202), + [anon_sym___block] = ACTIONS(4202), + [anon_sym___bridge] = ACTIONS(4202), + [anon_sym___bridge_retained] = ACTIONS(4202), + [anon_sym___bridge_transfer] = ACTIONS(4202), + [anon_sym___complex] = ACTIONS(4202), + [anon_sym___const] = ACTIONS(4202), + [anon_sym___imag] = ACTIONS(4202), + [anon_sym___kindof] = ACTIONS(4202), + [anon_sym___nonnull] = ACTIONS(4202), + [anon_sym___nullable] = ACTIONS(4202), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4202), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4202), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4202), + [anon_sym___real] = ACTIONS(4202), + [anon_sym___strong] = ACTIONS(4202), + [anon_sym___unsafe_unretained] = ACTIONS(4202), + [anon_sym___unused] = ACTIONS(4202), + [anon_sym___weak] = ACTIONS(4202), + [anon_sym_alignas] = ACTIONS(4202), + [anon_sym__Alignas] = ACTIONS(4202), + [sym_primitive_type] = ACTIONS(4202), + [anon_sym_enum] = ACTIONS(4202), + [anon_sym_COLON] = ACTIONS(4204), + [anon_sym_struct] = ACTIONS(4202), + [anon_sym_union] = ACTIONS(4202), + [anon_sym_QMARK] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_LT_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_GT_EQ] = ACTIONS(4204), + [anon_sym_AMP_EQ] = ACTIONS(4204), + [anon_sym_CARET_EQ] = ACTIONS(4204), + [anon_sym_PIPE_EQ] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_DASH_GT] = ACTIONS(4204), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4202), + [anon_sym___typeof] = ACTIONS(4202), + [anon_sym_typeof] = ACTIONS(4202), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4202), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4202), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4202), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4202), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4202), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4202), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4202), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4202), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4202), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4202), + [anon_sym_NS_AVAILABLE] = ACTIONS(4202), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4202), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4202), + [anon_sym_API_AVAILABLE] = ACTIONS(4202), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4202), + [anon_sym_API_DEPRECATED] = ACTIONS(4202), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4202), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4202), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4202), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4202), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4202), + [anon_sym___deprecated_msg] = ACTIONS(4202), + [anon_sym___deprecated_enum_msg] = ACTIONS(4202), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4202), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4202), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4202), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4202), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4202), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4202), + [anon_sym_BOOL] = ACTIONS(4202), + [anon_sym_IMP] = ACTIONS(4202), + [anon_sym_SEL] = ACTIONS(4202), + [anon_sym_Class] = ACTIONS(4202), + [anon_sym_id] = ACTIONS(4202), + }, + [1497] = { + [sym_identifier] = ACTIONS(4206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4208), + [anon_sym_COMMA] = ACTIONS(4208), + [anon_sym_RPAREN] = ACTIONS(4208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4208), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4208), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_DASH] = ACTIONS(4206), + [anon_sym_PLUS] = ACTIONS(4206), + [anon_sym_STAR] = ACTIONS(4206), + [anon_sym_SLASH] = ACTIONS(4206), + [anon_sym_PERCENT] = ACTIONS(4206), + [anon_sym_PIPE_PIPE] = ACTIONS(4208), + [anon_sym_AMP_AMP] = ACTIONS(4208), + [anon_sym_PIPE] = ACTIONS(4206), + [anon_sym_CARET] = ACTIONS(4206), + [anon_sym_AMP] = ACTIONS(4206), + [anon_sym_EQ_EQ] = ACTIONS(4208), + [anon_sym_BANG_EQ] = ACTIONS(4208), + [anon_sym_GT] = ACTIONS(4206), + [anon_sym_GT_EQ] = ACTIONS(4208), + [anon_sym_LT_EQ] = ACTIONS(4208), + [anon_sym_LT] = ACTIONS(4206), + [anon_sym_LT_LT] = ACTIONS(4206), + [anon_sym_GT_GT] = ACTIONS(4206), + [anon_sym_SEMI] = ACTIONS(4208), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_extern] = ACTIONS(4206), + [anon_sym___attribute__] = ACTIONS(4206), + [anon_sym___attribute] = ACTIONS(4206), + [anon_sym_noreturn] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4208), + [anon_sym_RBRACK] = ACTIONS(4208), + [anon_sym___declspec] = ACTIONS(4206), + [anon_sym_LBRACE] = ACTIONS(4208), + [anon_sym_RBRACE] = ACTIONS(4208), + [anon_sym_signed] = ACTIONS(4206), + [anon_sym_unsigned] = ACTIONS(4206), + [anon_sym_long] = ACTIONS(4206), + [anon_sym_short] = ACTIONS(4206), + [anon_sym_static] = ACTIONS(4206), + [anon_sym_EQ] = ACTIONS(4206), + [anon_sym_ATautoreleasepool] = ACTIONS(4208), + [anon_sym_auto] = ACTIONS(4206), + [anon_sym_register] = ACTIONS(4206), + [anon_sym_inline] = ACTIONS(4206), + [anon_sym___inline] = ACTIONS(4206), + [anon_sym___inline__] = ACTIONS(4206), + [anon_sym___forceinline] = ACTIONS(4206), + [anon_sym_thread_local] = ACTIONS(4206), + [anon_sym___thread] = ACTIONS(4206), + [anon_sym_CG_EXTERN] = ACTIONS(4206), + [anon_sym_CG_INLINE] = ACTIONS(4206), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4206), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4206), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4206), + [anon_sym_IBOutlet] = ACTIONS(4206), + [anon_sym_IBInspectable] = ACTIONS(4206), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4206), + [anon_sym_NS_INLINE] = ACTIONS(4206), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4206), + [anon_sym_OBJC_EXPORT] = ACTIONS(4206), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4206), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4206), + [anon_sym_const] = ACTIONS(4206), + [anon_sym_constexpr] = ACTIONS(4206), + [anon_sym_volatile] = ACTIONS(4206), + [anon_sym_restrict] = ACTIONS(4206), + [anon_sym___restrict__] = ACTIONS(4206), + [anon_sym__Atomic] = ACTIONS(4206), + [anon_sym__Noreturn] = ACTIONS(4206), + [anon_sym__Nonnull] = ACTIONS(4206), + [anon_sym_nullable] = ACTIONS(4206), + [anon_sym__Complex] = ACTIONS(4206), + [anon_sym__Nullable] = ACTIONS(4206), + [anon_sym__Nullable_result] = ACTIONS(4206), + [anon_sym__Null_unspecified] = ACTIONS(4206), + [anon_sym___autoreleasing] = ACTIONS(4206), + [anon_sym___block] = ACTIONS(4206), + [anon_sym___bridge] = ACTIONS(4206), + [anon_sym___bridge_retained] = ACTIONS(4206), + [anon_sym___bridge_transfer] = ACTIONS(4206), + [anon_sym___complex] = ACTIONS(4206), + [anon_sym___const] = ACTIONS(4206), + [anon_sym___imag] = ACTIONS(4206), + [anon_sym___kindof] = ACTIONS(4206), + [anon_sym___nonnull] = ACTIONS(4206), + [anon_sym___nullable] = ACTIONS(4206), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4206), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4206), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4206), + [anon_sym___real] = ACTIONS(4206), + [anon_sym___strong] = ACTIONS(4206), + [anon_sym___unsafe_unretained] = ACTIONS(4206), + [anon_sym___unused] = ACTIONS(4206), + [anon_sym___weak] = ACTIONS(4206), + [anon_sym_alignas] = ACTIONS(4206), + [anon_sym__Alignas] = ACTIONS(4206), + [sym_primitive_type] = ACTIONS(4206), + [anon_sym_enum] = ACTIONS(4206), + [anon_sym_COLON] = ACTIONS(4208), + [anon_sym_struct] = ACTIONS(4206), + [anon_sym_union] = ACTIONS(4206), + [anon_sym_QMARK] = ACTIONS(4208), + [anon_sym_STAR_EQ] = ACTIONS(4208), + [anon_sym_SLASH_EQ] = ACTIONS(4208), + [anon_sym_PERCENT_EQ] = ACTIONS(4208), + [anon_sym_PLUS_EQ] = ACTIONS(4208), + [anon_sym_DASH_EQ] = ACTIONS(4208), + [anon_sym_LT_LT_EQ] = ACTIONS(4208), + [anon_sym_GT_GT_EQ] = ACTIONS(4208), + [anon_sym_AMP_EQ] = ACTIONS(4208), + [anon_sym_CARET_EQ] = ACTIONS(4208), + [anon_sym_PIPE_EQ] = ACTIONS(4208), + [anon_sym_DASH_DASH] = ACTIONS(4208), + [anon_sym_PLUS_PLUS] = ACTIONS(4208), + [anon_sym_DOT] = ACTIONS(4206), + [anon_sym_DASH_GT] = ACTIONS(4208), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4206), + [anon_sym___typeof] = ACTIONS(4206), + [anon_sym_typeof] = ACTIONS(4206), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4206), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4206), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4206), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4206), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4206), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4206), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4206), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4206), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4206), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4206), + [anon_sym_NS_AVAILABLE] = ACTIONS(4206), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4206), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4206), + [anon_sym_API_AVAILABLE] = ACTIONS(4206), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4206), + [anon_sym_API_DEPRECATED] = ACTIONS(4206), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4206), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4206), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4206), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4206), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4206), + [anon_sym___deprecated_msg] = ACTIONS(4206), + [anon_sym___deprecated_enum_msg] = ACTIONS(4206), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4206), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4206), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4206), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4206), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4206), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4206), + [anon_sym_BOOL] = ACTIONS(4206), + [anon_sym_IMP] = ACTIONS(4206), + [anon_sym_SEL] = ACTIONS(4206), + [anon_sym_Class] = ACTIONS(4206), + [anon_sym_id] = ACTIONS(4206), + }, + [1498] = { + [sym_identifier] = ACTIONS(4210), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4212), + [anon_sym_COMMA] = ACTIONS(4212), + [anon_sym_RPAREN] = ACTIONS(4212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4212), + [anon_sym_LPAREN2] = ACTIONS(4212), + [anon_sym_DASH] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4210), + [anon_sym_SLASH] = ACTIONS(4210), + [anon_sym_PERCENT] = ACTIONS(4210), + [anon_sym_PIPE_PIPE] = ACTIONS(4212), + [anon_sym_AMP_AMP] = ACTIONS(4212), + [anon_sym_PIPE] = ACTIONS(4210), + [anon_sym_CARET] = ACTIONS(4210), + [anon_sym_AMP] = ACTIONS(4210), + [anon_sym_EQ_EQ] = ACTIONS(4212), + [anon_sym_BANG_EQ] = ACTIONS(4212), + [anon_sym_GT] = ACTIONS(4210), + [anon_sym_GT_EQ] = ACTIONS(4212), + [anon_sym_LT_EQ] = ACTIONS(4212), + [anon_sym_LT] = ACTIONS(4210), + [anon_sym_LT_LT] = ACTIONS(4210), + [anon_sym_GT_GT] = ACTIONS(4210), + [anon_sym_SEMI] = ACTIONS(4212), + [anon_sym___extension__] = ACTIONS(4210), + [anon_sym_extern] = ACTIONS(4210), + [anon_sym___attribute__] = ACTIONS(4210), + [anon_sym___attribute] = ACTIONS(4210), + [anon_sym_noreturn] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_RBRACK] = ACTIONS(4212), + [anon_sym___declspec] = ACTIONS(4210), + [anon_sym_LBRACE] = ACTIONS(4212), + [anon_sym_RBRACE] = ACTIONS(4212), + [anon_sym_signed] = ACTIONS(4210), + [anon_sym_unsigned] = ACTIONS(4210), + [anon_sym_long] = ACTIONS(4210), + [anon_sym_short] = ACTIONS(4210), + [anon_sym_static] = ACTIONS(4210), + [anon_sym_EQ] = ACTIONS(4210), + [anon_sym_ATautoreleasepool] = ACTIONS(4212), + [anon_sym_auto] = ACTIONS(4210), + [anon_sym_register] = ACTIONS(4210), + [anon_sym_inline] = ACTIONS(4210), + [anon_sym___inline] = ACTIONS(4210), + [anon_sym___inline__] = ACTIONS(4210), + [anon_sym___forceinline] = ACTIONS(4210), + [anon_sym_thread_local] = ACTIONS(4210), + [anon_sym___thread] = ACTIONS(4210), + [anon_sym_CG_EXTERN] = ACTIONS(4210), + [anon_sym_CG_INLINE] = ACTIONS(4210), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4210), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4210), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4210), + [anon_sym_IBOutlet] = ACTIONS(4210), + [anon_sym_IBInspectable] = ACTIONS(4210), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4210), + [anon_sym_NS_INLINE] = ACTIONS(4210), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4210), + [anon_sym_OBJC_EXPORT] = ACTIONS(4210), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4210), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4210), + [anon_sym_const] = ACTIONS(4210), + [anon_sym_constexpr] = ACTIONS(4210), + [anon_sym_volatile] = ACTIONS(4210), + [anon_sym_restrict] = ACTIONS(4210), + [anon_sym___restrict__] = ACTIONS(4210), + [anon_sym__Atomic] = ACTIONS(4210), + [anon_sym__Noreturn] = ACTIONS(4210), + [anon_sym__Nonnull] = ACTIONS(4210), + [anon_sym_nullable] = ACTIONS(4210), + [anon_sym__Complex] = ACTIONS(4210), + [anon_sym__Nullable] = ACTIONS(4210), + [anon_sym__Nullable_result] = ACTIONS(4210), + [anon_sym__Null_unspecified] = ACTIONS(4210), + [anon_sym___autoreleasing] = ACTIONS(4210), + [anon_sym___block] = ACTIONS(4210), + [anon_sym___bridge] = ACTIONS(4210), + [anon_sym___bridge_retained] = ACTIONS(4210), + [anon_sym___bridge_transfer] = ACTIONS(4210), + [anon_sym___complex] = ACTIONS(4210), + [anon_sym___const] = ACTIONS(4210), + [anon_sym___imag] = ACTIONS(4210), + [anon_sym___kindof] = ACTIONS(4210), + [anon_sym___nonnull] = ACTIONS(4210), + [anon_sym___nullable] = ACTIONS(4210), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4210), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4210), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4210), + [anon_sym___real] = ACTIONS(4210), + [anon_sym___strong] = ACTIONS(4210), + [anon_sym___unsafe_unretained] = ACTIONS(4210), + [anon_sym___unused] = ACTIONS(4210), + [anon_sym___weak] = ACTIONS(4210), + [anon_sym_alignas] = ACTIONS(4210), + [anon_sym__Alignas] = ACTIONS(4210), + [sym_primitive_type] = ACTIONS(4210), + [anon_sym_enum] = ACTIONS(4210), + [anon_sym_COLON] = ACTIONS(4212), + [anon_sym_struct] = ACTIONS(4210), + [anon_sym_union] = ACTIONS(4210), + [anon_sym_QMARK] = ACTIONS(4212), + [anon_sym_STAR_EQ] = ACTIONS(4212), + [anon_sym_SLASH_EQ] = ACTIONS(4212), + [anon_sym_PERCENT_EQ] = ACTIONS(4212), + [anon_sym_PLUS_EQ] = ACTIONS(4212), + [anon_sym_DASH_EQ] = ACTIONS(4212), + [anon_sym_LT_LT_EQ] = ACTIONS(4212), + [anon_sym_GT_GT_EQ] = ACTIONS(4212), + [anon_sym_AMP_EQ] = ACTIONS(4212), + [anon_sym_CARET_EQ] = ACTIONS(4212), + [anon_sym_PIPE_EQ] = ACTIONS(4212), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_DOT] = ACTIONS(4210), + [anon_sym_DASH_GT] = ACTIONS(4212), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4210), + [anon_sym___typeof] = ACTIONS(4210), + [anon_sym_typeof] = ACTIONS(4210), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4210), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4210), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4210), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4210), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4210), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4210), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4210), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4210), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4210), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4210), + [anon_sym_NS_AVAILABLE] = ACTIONS(4210), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4210), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4210), + [anon_sym_API_AVAILABLE] = ACTIONS(4210), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4210), + [anon_sym_API_DEPRECATED] = ACTIONS(4210), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4210), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4210), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4210), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4210), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4210), + [anon_sym___deprecated_msg] = ACTIONS(4210), + [anon_sym___deprecated_enum_msg] = ACTIONS(4210), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4210), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4210), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4210), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4210), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4210), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4210), + [anon_sym_BOOL] = ACTIONS(4210), + [anon_sym_IMP] = ACTIONS(4210), + [anon_sym_SEL] = ACTIONS(4210), + [anon_sym_Class] = ACTIONS(4210), + [anon_sym_id] = ACTIONS(4210), + }, + [1499] = { + [sym_identifier] = ACTIONS(4214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4216), + [anon_sym_COMMA] = ACTIONS(4216), + [anon_sym_RPAREN] = ACTIONS(4216), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4216), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4216), + [anon_sym_LPAREN2] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_PERCENT] = ACTIONS(4214), + [anon_sym_PIPE_PIPE] = ACTIONS(4216), + [anon_sym_AMP_AMP] = ACTIONS(4216), + [anon_sym_PIPE] = ACTIONS(4214), + [anon_sym_CARET] = ACTIONS(4214), + [anon_sym_AMP] = ACTIONS(4214), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4214), + [anon_sym_GT_EQ] = ACTIONS(4216), + [anon_sym_LT_EQ] = ACTIONS(4216), + [anon_sym_LT] = ACTIONS(4214), + [anon_sym_LT_LT] = ACTIONS(4214), + [anon_sym_GT_GT] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4216), + [anon_sym___extension__] = ACTIONS(4214), + [anon_sym_extern] = ACTIONS(4214), + [anon_sym___attribute__] = ACTIONS(4214), + [anon_sym___attribute] = ACTIONS(4214), + [anon_sym_noreturn] = ACTIONS(4214), + [anon_sym_LBRACK] = ACTIONS(4216), + [anon_sym_RBRACK] = ACTIONS(4216), + [anon_sym___declspec] = ACTIONS(4214), + [anon_sym_LBRACE] = ACTIONS(4216), + [anon_sym_RBRACE] = ACTIONS(4216), + [anon_sym_signed] = ACTIONS(4214), + [anon_sym_unsigned] = ACTIONS(4214), + [anon_sym_long] = ACTIONS(4214), + [anon_sym_short] = ACTIONS(4214), + [anon_sym_static] = ACTIONS(4214), + [anon_sym_EQ] = ACTIONS(4214), + [anon_sym_ATautoreleasepool] = ACTIONS(4216), + [anon_sym_auto] = ACTIONS(4214), + [anon_sym_register] = ACTIONS(4214), + [anon_sym_inline] = ACTIONS(4214), + [anon_sym___inline] = ACTIONS(4214), + [anon_sym___inline__] = ACTIONS(4214), + [anon_sym___forceinline] = ACTIONS(4214), + [anon_sym_thread_local] = ACTIONS(4214), + [anon_sym___thread] = ACTIONS(4214), + [anon_sym_CG_EXTERN] = ACTIONS(4214), + [anon_sym_CG_INLINE] = ACTIONS(4214), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4214), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4214), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4214), + [anon_sym_IBOutlet] = ACTIONS(4214), + [anon_sym_IBInspectable] = ACTIONS(4214), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4214), + [anon_sym_NS_INLINE] = ACTIONS(4214), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4214), + [anon_sym_OBJC_EXPORT] = ACTIONS(4214), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4214), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4214), + [anon_sym_const] = ACTIONS(4214), + [anon_sym_constexpr] = ACTIONS(4214), + [anon_sym_volatile] = ACTIONS(4214), + [anon_sym_restrict] = ACTIONS(4214), + [anon_sym___restrict__] = ACTIONS(4214), + [anon_sym__Atomic] = ACTIONS(4214), + [anon_sym__Noreturn] = ACTIONS(4214), + [anon_sym__Nonnull] = ACTIONS(4214), + [anon_sym_nullable] = ACTIONS(4214), + [anon_sym__Complex] = ACTIONS(4214), + [anon_sym__Nullable] = ACTIONS(4214), + [anon_sym__Nullable_result] = ACTIONS(4214), + [anon_sym__Null_unspecified] = ACTIONS(4214), + [anon_sym___autoreleasing] = ACTIONS(4214), + [anon_sym___block] = ACTIONS(4214), + [anon_sym___bridge] = ACTIONS(4214), + [anon_sym___bridge_retained] = ACTIONS(4214), + [anon_sym___bridge_transfer] = ACTIONS(4214), + [anon_sym___complex] = ACTIONS(4214), + [anon_sym___const] = ACTIONS(4214), + [anon_sym___imag] = ACTIONS(4214), + [anon_sym___kindof] = ACTIONS(4214), + [anon_sym___nonnull] = ACTIONS(4214), + [anon_sym___nullable] = ACTIONS(4214), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4214), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4214), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4214), + [anon_sym___real] = ACTIONS(4214), + [anon_sym___strong] = ACTIONS(4214), + [anon_sym___unsafe_unretained] = ACTIONS(4214), + [anon_sym___unused] = ACTIONS(4214), + [anon_sym___weak] = ACTIONS(4214), + [anon_sym_alignas] = ACTIONS(4214), + [anon_sym__Alignas] = ACTIONS(4214), + [sym_primitive_type] = ACTIONS(4214), + [anon_sym_enum] = ACTIONS(4214), + [anon_sym_COLON] = ACTIONS(4216), + [anon_sym_struct] = ACTIONS(4214), + [anon_sym_union] = ACTIONS(4214), + [anon_sym_QMARK] = ACTIONS(4216), + [anon_sym_STAR_EQ] = ACTIONS(4216), + [anon_sym_SLASH_EQ] = ACTIONS(4216), + [anon_sym_PERCENT_EQ] = ACTIONS(4216), + [anon_sym_PLUS_EQ] = ACTIONS(4216), + [anon_sym_DASH_EQ] = ACTIONS(4216), + [anon_sym_LT_LT_EQ] = ACTIONS(4216), + [anon_sym_GT_GT_EQ] = ACTIONS(4216), + [anon_sym_AMP_EQ] = ACTIONS(4216), + [anon_sym_CARET_EQ] = ACTIONS(4216), + [anon_sym_PIPE_EQ] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_DASH_GT] = ACTIONS(4216), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4214), + [anon_sym___typeof] = ACTIONS(4214), + [anon_sym_typeof] = ACTIONS(4214), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4214), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4214), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4214), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4214), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4214), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4214), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4214), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4214), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4214), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4214), + [anon_sym_NS_AVAILABLE] = ACTIONS(4214), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4214), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4214), + [anon_sym_API_AVAILABLE] = ACTIONS(4214), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4214), + [anon_sym_API_DEPRECATED] = ACTIONS(4214), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4214), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4214), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4214), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4214), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4214), + [anon_sym___deprecated_msg] = ACTIONS(4214), + [anon_sym___deprecated_enum_msg] = ACTIONS(4214), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4214), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4214), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4214), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4214), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4214), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4214), + [anon_sym_BOOL] = ACTIONS(4214), + [anon_sym_IMP] = ACTIONS(4214), + [anon_sym_SEL] = ACTIONS(4214), + [anon_sym_Class] = ACTIONS(4214), + [anon_sym_id] = ACTIONS(4214), + }, + [1500] = { + [sym_identifier] = ACTIONS(4218), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4220), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_RPAREN] = ACTIONS(4220), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4220), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4220), + [anon_sym_LPAREN2] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4218), + [anon_sym_SLASH] = ACTIONS(4218), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE] = ACTIONS(4218), + [anon_sym_CARET] = ACTIONS(4218), + [anon_sym_AMP] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_GT] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4218), + [anon_sym_LT_LT] = ACTIONS(4218), + [anon_sym_GT_GT] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym___extension__] = ACTIONS(4218), + [anon_sym_extern] = ACTIONS(4218), + [anon_sym___attribute__] = ACTIONS(4218), + [anon_sym___attribute] = ACTIONS(4218), + [anon_sym_noreturn] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_RBRACK] = ACTIONS(4220), + [anon_sym___declspec] = ACTIONS(4218), + [anon_sym_LBRACE] = ACTIONS(4220), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_signed] = ACTIONS(4218), + [anon_sym_unsigned] = ACTIONS(4218), + [anon_sym_long] = ACTIONS(4218), + [anon_sym_short] = ACTIONS(4218), + [anon_sym_static] = ACTIONS(4218), + [anon_sym_EQ] = ACTIONS(4218), + [anon_sym_ATautoreleasepool] = ACTIONS(4220), + [anon_sym_auto] = ACTIONS(4218), + [anon_sym_register] = ACTIONS(4218), + [anon_sym_inline] = ACTIONS(4218), + [anon_sym___inline] = ACTIONS(4218), + [anon_sym___inline__] = ACTIONS(4218), + [anon_sym___forceinline] = ACTIONS(4218), + [anon_sym_thread_local] = ACTIONS(4218), + [anon_sym___thread] = ACTIONS(4218), + [anon_sym_CG_EXTERN] = ACTIONS(4218), + [anon_sym_CG_INLINE] = ACTIONS(4218), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4218), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4218), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4218), + [anon_sym_IBOutlet] = ACTIONS(4218), + [anon_sym_IBInspectable] = ACTIONS(4218), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4218), + [anon_sym_NS_INLINE] = ACTIONS(4218), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4218), + [anon_sym_OBJC_EXPORT] = ACTIONS(4218), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4218), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4218), + [anon_sym_const] = ACTIONS(4218), + [anon_sym_constexpr] = ACTIONS(4218), + [anon_sym_volatile] = ACTIONS(4218), + [anon_sym_restrict] = ACTIONS(4218), + [anon_sym___restrict__] = ACTIONS(4218), + [anon_sym__Atomic] = ACTIONS(4218), + [anon_sym__Noreturn] = ACTIONS(4218), + [anon_sym__Nonnull] = ACTIONS(4218), + [anon_sym_nullable] = ACTIONS(4218), + [anon_sym__Complex] = ACTIONS(4218), + [anon_sym__Nullable] = ACTIONS(4218), + [anon_sym__Nullable_result] = ACTIONS(4218), + [anon_sym__Null_unspecified] = ACTIONS(4218), + [anon_sym___autoreleasing] = ACTIONS(4218), + [anon_sym___block] = ACTIONS(4218), + [anon_sym___bridge] = ACTIONS(4218), + [anon_sym___bridge_retained] = ACTIONS(4218), + [anon_sym___bridge_transfer] = ACTIONS(4218), + [anon_sym___complex] = ACTIONS(4218), + [anon_sym___const] = ACTIONS(4218), + [anon_sym___imag] = ACTIONS(4218), + [anon_sym___kindof] = ACTIONS(4218), + [anon_sym___nonnull] = ACTIONS(4218), + [anon_sym___nullable] = ACTIONS(4218), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4218), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4218), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4218), + [anon_sym___real] = ACTIONS(4218), + [anon_sym___strong] = ACTIONS(4218), + [anon_sym___unsafe_unretained] = ACTIONS(4218), + [anon_sym___unused] = ACTIONS(4218), + [anon_sym___weak] = ACTIONS(4218), + [anon_sym_alignas] = ACTIONS(4218), + [anon_sym__Alignas] = ACTIONS(4218), + [sym_primitive_type] = ACTIONS(4218), + [anon_sym_enum] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(4220), + [anon_sym_struct] = ACTIONS(4218), + [anon_sym_union] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4220), + [anon_sym_STAR_EQ] = ACTIONS(4220), + [anon_sym_SLASH_EQ] = ACTIONS(4220), + [anon_sym_PERCENT_EQ] = ACTIONS(4220), + [anon_sym_PLUS_EQ] = ACTIONS(4220), + [anon_sym_DASH_EQ] = ACTIONS(4220), + [anon_sym_LT_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_GT_EQ] = ACTIONS(4220), + [anon_sym_AMP_EQ] = ACTIONS(4220), + [anon_sym_CARET_EQ] = ACTIONS(4220), + [anon_sym_PIPE_EQ] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4218), + [anon_sym_DASH_GT] = ACTIONS(4220), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4218), + [anon_sym___typeof] = ACTIONS(4218), + [anon_sym_typeof] = ACTIONS(4218), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4218), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4218), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4218), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4218), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4218), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4218), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4218), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4218), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4218), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4218), + [anon_sym_NS_AVAILABLE] = ACTIONS(4218), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4218), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4218), + [anon_sym_API_AVAILABLE] = ACTIONS(4218), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4218), + [anon_sym_API_DEPRECATED] = ACTIONS(4218), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4218), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4218), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4218), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4218), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4218), + [anon_sym___deprecated_msg] = ACTIONS(4218), + [anon_sym___deprecated_enum_msg] = ACTIONS(4218), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4218), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4218), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4218), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4218), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4218), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4218), + [anon_sym_BOOL] = ACTIONS(4218), + [anon_sym_IMP] = ACTIONS(4218), + [anon_sym_SEL] = ACTIONS(4218), + [anon_sym_Class] = ACTIONS(4218), + [anon_sym_id] = ACTIONS(4218), + }, + [1501] = { + [sym_identifier] = ACTIONS(4222), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4224), + [anon_sym_COMMA] = ACTIONS(4224), + [anon_sym_RPAREN] = ACTIONS(4224), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4224), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4224), + [anon_sym_LPAREN2] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_PIPE_PIPE] = ACTIONS(4224), + [anon_sym_AMP_AMP] = ACTIONS(4224), + [anon_sym_PIPE] = ACTIONS(4222), + [anon_sym_CARET] = ACTIONS(4222), + [anon_sym_AMP] = ACTIONS(4222), + [anon_sym_EQ_EQ] = ACTIONS(4224), + [anon_sym_BANG_EQ] = ACTIONS(4224), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_GT_EQ] = ACTIONS(4224), + [anon_sym_LT_EQ] = ACTIONS(4224), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_LT_LT] = ACTIONS(4222), + [anon_sym_GT_GT] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4222), + [anon_sym_extern] = ACTIONS(4222), + [anon_sym___attribute__] = ACTIONS(4222), + [anon_sym___attribute] = ACTIONS(4222), + [anon_sym_noreturn] = ACTIONS(4222), + [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_RBRACK] = ACTIONS(4224), + [anon_sym___declspec] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4224), + [anon_sym_RBRACE] = ACTIONS(4224), + [anon_sym_signed] = ACTIONS(4222), + [anon_sym_unsigned] = ACTIONS(4222), + [anon_sym_long] = ACTIONS(4222), + [anon_sym_short] = ACTIONS(4222), + [anon_sym_static] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_ATautoreleasepool] = ACTIONS(4224), + [anon_sym_auto] = ACTIONS(4222), + [anon_sym_register] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym___inline] = ACTIONS(4222), + [anon_sym___inline__] = ACTIONS(4222), + [anon_sym___forceinline] = ACTIONS(4222), + [anon_sym_thread_local] = ACTIONS(4222), + [anon_sym___thread] = ACTIONS(4222), + [anon_sym_CG_EXTERN] = ACTIONS(4222), + [anon_sym_CG_INLINE] = ACTIONS(4222), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4222), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4222), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4222), + [anon_sym_IBOutlet] = ACTIONS(4222), + [anon_sym_IBInspectable] = ACTIONS(4222), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4222), + [anon_sym_NS_INLINE] = ACTIONS(4222), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4222), + [anon_sym_OBJC_EXPORT] = ACTIONS(4222), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4222), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4222), + [anon_sym_const] = ACTIONS(4222), + [anon_sym_constexpr] = ACTIONS(4222), + [anon_sym_volatile] = ACTIONS(4222), + [anon_sym_restrict] = ACTIONS(4222), + [anon_sym___restrict__] = ACTIONS(4222), + [anon_sym__Atomic] = ACTIONS(4222), + [anon_sym__Noreturn] = ACTIONS(4222), + [anon_sym__Nonnull] = ACTIONS(4222), + [anon_sym_nullable] = ACTIONS(4222), + [anon_sym__Complex] = ACTIONS(4222), + [anon_sym__Nullable] = ACTIONS(4222), + [anon_sym__Nullable_result] = ACTIONS(4222), + [anon_sym__Null_unspecified] = ACTIONS(4222), + [anon_sym___autoreleasing] = ACTIONS(4222), + [anon_sym___block] = ACTIONS(4222), + [anon_sym___bridge] = ACTIONS(4222), + [anon_sym___bridge_retained] = ACTIONS(4222), + [anon_sym___bridge_transfer] = ACTIONS(4222), + [anon_sym___complex] = ACTIONS(4222), + [anon_sym___const] = ACTIONS(4222), + [anon_sym___imag] = ACTIONS(4222), + [anon_sym___kindof] = ACTIONS(4222), + [anon_sym___nonnull] = ACTIONS(4222), + [anon_sym___nullable] = ACTIONS(4222), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4222), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4222), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4222), + [anon_sym___real] = ACTIONS(4222), + [anon_sym___strong] = ACTIONS(4222), + [anon_sym___unsafe_unretained] = ACTIONS(4222), + [anon_sym___unused] = ACTIONS(4222), + [anon_sym___weak] = ACTIONS(4222), + [anon_sym_alignas] = ACTIONS(4222), + [anon_sym__Alignas] = ACTIONS(4222), + [sym_primitive_type] = ACTIONS(4222), + [anon_sym_enum] = ACTIONS(4222), + [anon_sym_COLON] = ACTIONS(4224), + [anon_sym_struct] = ACTIONS(4222), + [anon_sym_union] = ACTIONS(4222), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_STAR_EQ] = ACTIONS(4224), + [anon_sym_SLASH_EQ] = ACTIONS(4224), + [anon_sym_PERCENT_EQ] = ACTIONS(4224), + [anon_sym_PLUS_EQ] = ACTIONS(4224), + [anon_sym_DASH_EQ] = ACTIONS(4224), + [anon_sym_LT_LT_EQ] = ACTIONS(4224), + [anon_sym_GT_GT_EQ] = ACTIONS(4224), + [anon_sym_AMP_EQ] = ACTIONS(4224), + [anon_sym_CARET_EQ] = ACTIONS(4224), + [anon_sym_PIPE_EQ] = ACTIONS(4224), + [anon_sym_DASH_DASH] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4224), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_DASH_GT] = ACTIONS(4224), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4222), + [anon_sym___typeof] = ACTIONS(4222), + [anon_sym_typeof] = ACTIONS(4222), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4222), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4222), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4222), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4222), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4222), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4222), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4222), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4222), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4222), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4222), + [anon_sym_NS_AVAILABLE] = ACTIONS(4222), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4222), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4222), + [anon_sym_API_AVAILABLE] = ACTIONS(4222), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4222), + [anon_sym_API_DEPRECATED] = ACTIONS(4222), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4222), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4222), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4222), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4222), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4222), + [anon_sym___deprecated_msg] = ACTIONS(4222), + [anon_sym___deprecated_enum_msg] = ACTIONS(4222), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4222), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4222), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4222), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4222), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4222), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4222), + [anon_sym_BOOL] = ACTIONS(4222), + [anon_sym_IMP] = ACTIONS(4222), + [anon_sym_SEL] = ACTIONS(4222), + [anon_sym_Class] = ACTIONS(4222), + [anon_sym_id] = ACTIONS(4222), + }, + [1502] = { + [sym_identifier] = ACTIONS(2364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2366), + [anon_sym_COMMA] = ACTIONS(2366), + [anon_sym_RPAREN] = ACTIONS(2366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2366), + [anon_sym_LPAREN2] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_PLUS] = ACTIONS(2364), + [anon_sym_STAR] = ACTIONS(2364), + [anon_sym_SLASH] = ACTIONS(2364), + [anon_sym_PERCENT] = ACTIONS(2364), + [anon_sym_PIPE_PIPE] = ACTIONS(2366), + [anon_sym_AMP_AMP] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_CARET] = ACTIONS(2364), + [anon_sym_AMP] = ACTIONS(2364), + [anon_sym_EQ_EQ] = ACTIONS(2366), + [anon_sym_BANG_EQ] = ACTIONS(2366), + [anon_sym_GT] = ACTIONS(2364), + [anon_sym_GT_EQ] = ACTIONS(2366), + [anon_sym_LT_EQ] = ACTIONS(2366), + [anon_sym_LT] = ACTIONS(2364), + [anon_sym_LT_LT] = ACTIONS(2364), + [anon_sym_GT_GT] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym___attribute__] = ACTIONS(2364), + [anon_sym___attribute] = ACTIONS(2364), + [anon_sym_noreturn] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym_RBRACK] = ACTIONS(2366), + [anon_sym___declspec] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_signed] = ACTIONS(2364), + [anon_sym_unsigned] = ACTIONS(2364), + [anon_sym_long] = ACTIONS(2364), + [anon_sym_short] = ACTIONS(2364), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_EQ] = ACTIONS(2364), + [anon_sym_ATautoreleasepool] = ACTIONS(2366), + [anon_sym_auto] = ACTIONS(2364), + [anon_sym_register] = ACTIONS(2364), + [anon_sym_inline] = ACTIONS(2364), + [anon_sym___inline] = ACTIONS(2364), + [anon_sym___inline__] = ACTIONS(2364), + [anon_sym___forceinline] = ACTIONS(2364), + [anon_sym_thread_local] = ACTIONS(2364), + [anon_sym___thread] = ACTIONS(2364), + [anon_sym_CG_EXTERN] = ACTIONS(2364), + [anon_sym_CG_INLINE] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2364), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2364), + [anon_sym_IBOutlet] = ACTIONS(2364), + [anon_sym_IBInspectable] = ACTIONS(2364), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2364), + [anon_sym_NS_INLINE] = ACTIONS(2364), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2364), + [anon_sym_OBJC_EXPORT] = ACTIONS(2364), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [anon_sym_constexpr] = ACTIONS(2364), + [anon_sym_volatile] = ACTIONS(2364), + [anon_sym_restrict] = ACTIONS(2364), + [anon_sym___restrict__] = ACTIONS(2364), + [anon_sym__Atomic] = ACTIONS(2364), + [anon_sym__Noreturn] = ACTIONS(2364), + [anon_sym__Nonnull] = ACTIONS(2364), + [anon_sym_nullable] = ACTIONS(2364), + [anon_sym__Complex] = ACTIONS(2364), + [anon_sym__Nullable] = ACTIONS(2364), + [anon_sym__Nullable_result] = ACTIONS(2364), + [anon_sym__Null_unspecified] = ACTIONS(2364), + [anon_sym___autoreleasing] = ACTIONS(2364), + [anon_sym___block] = ACTIONS(2364), + [anon_sym___bridge] = ACTIONS(2364), + [anon_sym___bridge_retained] = ACTIONS(2364), + [anon_sym___bridge_transfer] = ACTIONS(2364), + [anon_sym___complex] = ACTIONS(2364), + [anon_sym___const] = ACTIONS(2364), + [anon_sym___imag] = ACTIONS(2364), + [anon_sym___kindof] = ACTIONS(2364), + [anon_sym___nonnull] = ACTIONS(2364), + [anon_sym___nullable] = ACTIONS(2364), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2364), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2364), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2364), + [anon_sym___real] = ACTIONS(2364), + [anon_sym___strong] = ACTIONS(2364), + [anon_sym___unsafe_unretained] = ACTIONS(2364), + [anon_sym___unused] = ACTIONS(2364), + [anon_sym___weak] = ACTIONS(2364), + [anon_sym_alignas] = ACTIONS(2364), + [anon_sym__Alignas] = ACTIONS(2364), + [sym_primitive_type] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), + [anon_sym_COLON] = ACTIONS(2366), + [anon_sym_struct] = ACTIONS(2364), + [anon_sym_union] = ACTIONS(2364), + [anon_sym_QMARK] = ACTIONS(2366), + [anon_sym_STAR_EQ] = ACTIONS(2366), + [anon_sym_SLASH_EQ] = ACTIONS(2366), + [anon_sym_PERCENT_EQ] = ACTIONS(2366), + [anon_sym_PLUS_EQ] = ACTIONS(2366), + [anon_sym_DASH_EQ] = ACTIONS(2366), + [anon_sym_LT_LT_EQ] = ACTIONS(2366), + [anon_sym_GT_GT_EQ] = ACTIONS(2366), + [anon_sym_AMP_EQ] = ACTIONS(2366), + [anon_sym_CARET_EQ] = ACTIONS(2366), + [anon_sym_PIPE_EQ] = ACTIONS(2366), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_DOT] = ACTIONS(2364), + [anon_sym_DASH_GT] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2364), + [anon_sym___typeof] = ACTIONS(2364), + [anon_sym_typeof] = ACTIONS(2364), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2364), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2364), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2364), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2364), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE] = ACTIONS(2364), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_API_AVAILABLE] = ACTIONS(2364), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_API_DEPRECATED] = ACTIONS(2364), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2364), + [anon_sym___deprecated_msg] = ACTIONS(2364), + [anon_sym___deprecated_enum_msg] = ACTIONS(2364), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2364), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2364), + [anon_sym_BOOL] = ACTIONS(2364), + [anon_sym_IMP] = ACTIONS(2364), + [anon_sym_SEL] = ACTIONS(2364), + [anon_sym_Class] = ACTIONS(2364), + [anon_sym_id] = ACTIONS(2364), + }, + [1503] = { + [sym_identifier] = ACTIONS(4226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4228), + [anon_sym_COMMA] = ACTIONS(4228), + [anon_sym_RPAREN] = ACTIONS(4228), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4228), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4228), + [anon_sym_LPAREN2] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE] = ACTIONS(4226), + [anon_sym_CARET] = ACTIONS(4226), + [anon_sym_AMP] = ACTIONS(4226), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_LT_LT] = ACTIONS(4226), + [anon_sym_GT_GT] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym___extension__] = ACTIONS(4226), + [anon_sym_extern] = ACTIONS(4226), + [anon_sym___attribute__] = ACTIONS(4226), + [anon_sym___attribute] = ACTIONS(4226), + [anon_sym_noreturn] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_RBRACK] = ACTIONS(4228), + [anon_sym___declspec] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(4228), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_signed] = ACTIONS(4226), + [anon_sym_unsigned] = ACTIONS(4226), + [anon_sym_long] = ACTIONS(4226), + [anon_sym_short] = ACTIONS(4226), + [anon_sym_static] = ACTIONS(4226), + [anon_sym_EQ] = ACTIONS(4226), + [anon_sym_ATautoreleasepool] = ACTIONS(4228), + [anon_sym_auto] = ACTIONS(4226), + [anon_sym_register] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym___inline] = ACTIONS(4226), + [anon_sym___inline__] = ACTIONS(4226), + [anon_sym___forceinline] = ACTIONS(4226), + [anon_sym_thread_local] = ACTIONS(4226), + [anon_sym___thread] = ACTIONS(4226), + [anon_sym_CG_EXTERN] = ACTIONS(4226), + [anon_sym_CG_INLINE] = ACTIONS(4226), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4226), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4226), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4226), + [anon_sym_IBOutlet] = ACTIONS(4226), + [anon_sym_IBInspectable] = ACTIONS(4226), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4226), + [anon_sym_NS_INLINE] = ACTIONS(4226), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4226), + [anon_sym_OBJC_EXPORT] = ACTIONS(4226), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4226), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4226), + [anon_sym_const] = ACTIONS(4226), + [anon_sym_constexpr] = ACTIONS(4226), + [anon_sym_volatile] = ACTIONS(4226), + [anon_sym_restrict] = ACTIONS(4226), + [anon_sym___restrict__] = ACTIONS(4226), + [anon_sym__Atomic] = ACTIONS(4226), + [anon_sym__Noreturn] = ACTIONS(4226), + [anon_sym__Nonnull] = ACTIONS(4226), + [anon_sym_nullable] = ACTIONS(4226), + [anon_sym__Complex] = ACTIONS(4226), + [anon_sym__Nullable] = ACTIONS(4226), + [anon_sym__Nullable_result] = ACTIONS(4226), + [anon_sym__Null_unspecified] = ACTIONS(4226), + [anon_sym___autoreleasing] = ACTIONS(4226), + [anon_sym___block] = ACTIONS(4226), + [anon_sym___bridge] = ACTIONS(4226), + [anon_sym___bridge_retained] = ACTIONS(4226), + [anon_sym___bridge_transfer] = ACTIONS(4226), + [anon_sym___complex] = ACTIONS(4226), + [anon_sym___const] = ACTIONS(4226), + [anon_sym___imag] = ACTIONS(4226), + [anon_sym___kindof] = ACTIONS(4226), + [anon_sym___nonnull] = ACTIONS(4226), + [anon_sym___nullable] = ACTIONS(4226), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4226), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4226), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4226), + [anon_sym___real] = ACTIONS(4226), + [anon_sym___strong] = ACTIONS(4226), + [anon_sym___unsafe_unretained] = ACTIONS(4226), + [anon_sym___unused] = ACTIONS(4226), + [anon_sym___weak] = ACTIONS(4226), + [anon_sym_alignas] = ACTIONS(4226), + [anon_sym__Alignas] = ACTIONS(4226), + [sym_primitive_type] = ACTIONS(4226), + [anon_sym_enum] = ACTIONS(4226), + [anon_sym_COLON] = ACTIONS(4228), + [anon_sym_struct] = ACTIONS(4226), + [anon_sym_union] = ACTIONS(4226), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_STAR_EQ] = ACTIONS(4228), + [anon_sym_SLASH_EQ] = ACTIONS(4228), + [anon_sym_PERCENT_EQ] = ACTIONS(4228), + [anon_sym_PLUS_EQ] = ACTIONS(4228), + [anon_sym_DASH_EQ] = ACTIONS(4228), + [anon_sym_LT_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_GT_EQ] = ACTIONS(4228), + [anon_sym_AMP_EQ] = ACTIONS(4228), + [anon_sym_CARET_EQ] = ACTIONS(4228), + [anon_sym_PIPE_EQ] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_DASH_GT] = ACTIONS(4228), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4226), + [anon_sym___typeof] = ACTIONS(4226), + [anon_sym_typeof] = ACTIONS(4226), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4226), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4226), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4226), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4226), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4226), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4226), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4226), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4226), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4226), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4226), + [anon_sym_NS_AVAILABLE] = ACTIONS(4226), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4226), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4226), + [anon_sym_API_AVAILABLE] = ACTIONS(4226), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4226), + [anon_sym_API_DEPRECATED] = ACTIONS(4226), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4226), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4226), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4226), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4226), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4226), + [anon_sym___deprecated_msg] = ACTIONS(4226), + [anon_sym___deprecated_enum_msg] = ACTIONS(4226), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4226), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4226), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4226), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4226), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4226), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4226), + [anon_sym_BOOL] = ACTIONS(4226), + [anon_sym_IMP] = ACTIONS(4226), + [anon_sym_SEL] = ACTIONS(4226), + [anon_sym_Class] = ACTIONS(4226), + [anon_sym_id] = ACTIONS(4226), + }, + [1504] = { + [sym__declaration_modifiers] = STATE(1586), + [sym__declaration_specifiers] = STATE(4592), + [sym_attribute_specifier] = STATE(1586), + [sym_attribute_declaration] = STATE(1586), + [sym_ms_declspec_modifier] = STATE(1586), + [sym_ms_based_modifier] = STATE(6199), + [sym__declarator] = STATE(5214), + [sym__abstract_declarator] = STATE(5262), + [sym_parenthesized_declarator] = STATE(4011), + [sym_abstract_parenthesized_declarator] = STATE(4894), + [sym_pointer_declarator] = STATE(4011), + [sym_abstract_pointer_declarator] = STATE(4894), + [sym_function_declarator] = STATE(4011), + [sym_abstract_function_declarator] = STATE(4894), + [sym_array_declarator] = STATE(4011), + [sym_abstract_array_declarator] = STATE(4894), + [sym_compound_statement] = STATE(6423), + [sym_storage_class_specifier] = STATE(1586), + [sym_type_qualifier] = STATE(1586), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_variadic_parameter] = STATE(5365), + [sym_parameter_list] = STATE(4295), + [sym_parameter_declaration] = STATE(5365), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1586), + [sym_block_pointer_declarator] = STATE(4011), + [sym_abstract_block_pointer_declarator] = STATE(4894), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(1586), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(4160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4164), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4170), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1505] = { + [sym_identifier] = ACTIONS(4230), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_RPAREN] = ACTIONS(4232), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4232), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4232), + [anon_sym_LPAREN2] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE] = ACTIONS(4230), + [anon_sym_CARET] = ACTIONS(4230), + [anon_sym_AMP] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_LT_LT] = ACTIONS(4230), + [anon_sym_GT_GT] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym___extension__] = ACTIONS(4230), + [anon_sym_extern] = ACTIONS(4230), + [anon_sym___attribute__] = ACTIONS(4230), + [anon_sym___attribute] = ACTIONS(4230), + [anon_sym_noreturn] = ACTIONS(4230), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_RBRACK] = ACTIONS(4232), + [anon_sym___declspec] = ACTIONS(4230), + [anon_sym_LBRACE] = ACTIONS(4232), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_signed] = ACTIONS(4230), + [anon_sym_unsigned] = ACTIONS(4230), + [anon_sym_long] = ACTIONS(4230), + [anon_sym_short] = ACTIONS(4230), + [anon_sym_static] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(4230), + [anon_sym_ATautoreleasepool] = ACTIONS(4232), + [anon_sym_auto] = ACTIONS(4230), + [anon_sym_register] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym___inline] = ACTIONS(4230), + [anon_sym___inline__] = ACTIONS(4230), + [anon_sym___forceinline] = ACTIONS(4230), + [anon_sym_thread_local] = ACTIONS(4230), + [anon_sym___thread] = ACTIONS(4230), + [anon_sym_CG_EXTERN] = ACTIONS(4230), + [anon_sym_CG_INLINE] = ACTIONS(4230), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4230), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4230), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4230), + [anon_sym_IBOutlet] = ACTIONS(4230), + [anon_sym_IBInspectable] = ACTIONS(4230), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4230), + [anon_sym_NS_INLINE] = ACTIONS(4230), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4230), + [anon_sym_OBJC_EXPORT] = ACTIONS(4230), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4230), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4230), + [anon_sym_const] = ACTIONS(4230), + [anon_sym_constexpr] = ACTIONS(4230), + [anon_sym_volatile] = ACTIONS(4230), + [anon_sym_restrict] = ACTIONS(4230), + [anon_sym___restrict__] = ACTIONS(4230), + [anon_sym__Atomic] = ACTIONS(4230), + [anon_sym__Noreturn] = ACTIONS(4230), + [anon_sym__Nonnull] = ACTIONS(4230), + [anon_sym_nullable] = ACTIONS(4230), + [anon_sym__Complex] = ACTIONS(4230), + [anon_sym__Nullable] = ACTIONS(4230), + [anon_sym__Nullable_result] = ACTIONS(4230), + [anon_sym__Null_unspecified] = ACTIONS(4230), + [anon_sym___autoreleasing] = ACTIONS(4230), + [anon_sym___block] = ACTIONS(4230), + [anon_sym___bridge] = ACTIONS(4230), + [anon_sym___bridge_retained] = ACTIONS(4230), + [anon_sym___bridge_transfer] = ACTIONS(4230), + [anon_sym___complex] = ACTIONS(4230), + [anon_sym___const] = ACTIONS(4230), + [anon_sym___imag] = ACTIONS(4230), + [anon_sym___kindof] = ACTIONS(4230), + [anon_sym___nonnull] = ACTIONS(4230), + [anon_sym___nullable] = ACTIONS(4230), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4230), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4230), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4230), + [anon_sym___real] = ACTIONS(4230), + [anon_sym___strong] = ACTIONS(4230), + [anon_sym___unsafe_unretained] = ACTIONS(4230), + [anon_sym___unused] = ACTIONS(4230), + [anon_sym___weak] = ACTIONS(4230), + [anon_sym_alignas] = ACTIONS(4230), + [anon_sym__Alignas] = ACTIONS(4230), + [sym_primitive_type] = ACTIONS(4230), + [anon_sym_enum] = ACTIONS(4230), + [anon_sym_COLON] = ACTIONS(4232), + [anon_sym_struct] = ACTIONS(4230), + [anon_sym_union] = ACTIONS(4230), + [anon_sym_QMARK] = ACTIONS(4232), + [anon_sym_STAR_EQ] = ACTIONS(4232), + [anon_sym_SLASH_EQ] = ACTIONS(4232), + [anon_sym_PERCENT_EQ] = ACTIONS(4232), + [anon_sym_PLUS_EQ] = ACTIONS(4232), + [anon_sym_DASH_EQ] = ACTIONS(4232), + [anon_sym_LT_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_GT_EQ] = ACTIONS(4232), + [anon_sym_AMP_EQ] = ACTIONS(4232), + [anon_sym_CARET_EQ] = ACTIONS(4232), + [anon_sym_PIPE_EQ] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_DASH_GT] = ACTIONS(4232), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4230), + [anon_sym___typeof] = ACTIONS(4230), + [anon_sym_typeof] = ACTIONS(4230), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4230), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4230), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4230), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4230), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4230), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4230), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4230), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4230), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4230), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4230), + [anon_sym_NS_AVAILABLE] = ACTIONS(4230), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4230), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4230), + [anon_sym_API_AVAILABLE] = ACTIONS(4230), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4230), + [anon_sym_API_DEPRECATED] = ACTIONS(4230), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4230), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4230), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4230), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4230), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4230), + [anon_sym___deprecated_msg] = ACTIONS(4230), + [anon_sym___deprecated_enum_msg] = ACTIONS(4230), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4230), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4230), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4230), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4230), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4230), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4230), + [anon_sym_BOOL] = ACTIONS(4230), + [anon_sym_IMP] = ACTIONS(4230), + [anon_sym_SEL] = ACTIONS(4230), + [anon_sym_Class] = ACTIONS(4230), + [anon_sym_id] = ACTIONS(4230), + }, + [1506] = { + [sym_identifier] = ACTIONS(3995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_RPAREN] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(3997), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(3995), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(3995), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(3995), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym___extension__] = ACTIONS(3995), + [anon_sym_extern] = ACTIONS(3995), + [anon_sym___attribute__] = ACTIONS(3995), + [anon_sym___attribute] = ACTIONS(3995), + [anon_sym_noreturn] = ACTIONS(3995), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_RBRACK] = ACTIONS(3997), + [anon_sym___declspec] = ACTIONS(3995), + [anon_sym_LBRACE] = ACTIONS(3997), + [anon_sym_RBRACE] = ACTIONS(3997), + [anon_sym_signed] = ACTIONS(3995), + [anon_sym_unsigned] = ACTIONS(3995), + [anon_sym_long] = ACTIONS(3995), + [anon_sym_short] = ACTIONS(3995), + [anon_sym_static] = ACTIONS(3995), + [anon_sym_EQ] = ACTIONS(3995), + [anon_sym_ATautoreleasepool] = ACTIONS(3997), + [anon_sym_auto] = ACTIONS(3995), + [anon_sym_register] = ACTIONS(3995), + [anon_sym_inline] = ACTIONS(3995), + [anon_sym___inline] = ACTIONS(3995), + [anon_sym___inline__] = ACTIONS(3995), + [anon_sym___forceinline] = ACTIONS(3995), + [anon_sym_thread_local] = ACTIONS(3995), + [anon_sym___thread] = ACTIONS(3995), + [anon_sym_CG_EXTERN] = ACTIONS(3995), + [anon_sym_CG_INLINE] = ACTIONS(3995), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3995), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3995), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3995), + [anon_sym_IBOutlet] = ACTIONS(3995), + [anon_sym_IBInspectable] = ACTIONS(3995), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3995), + [anon_sym_NS_INLINE] = ACTIONS(3995), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3995), + [anon_sym_OBJC_EXPORT] = ACTIONS(3995), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3995), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3995), + [anon_sym_const] = ACTIONS(3995), + [anon_sym_constexpr] = ACTIONS(3995), + [anon_sym_volatile] = ACTIONS(3995), + [anon_sym_restrict] = ACTIONS(3995), + [anon_sym___restrict__] = ACTIONS(3995), + [anon_sym__Atomic] = ACTIONS(3995), + [anon_sym__Noreturn] = ACTIONS(3995), + [anon_sym__Nonnull] = ACTIONS(3995), + [anon_sym_nullable] = ACTIONS(3995), + [anon_sym__Complex] = ACTIONS(3995), + [anon_sym__Nullable] = ACTIONS(3995), + [anon_sym__Nullable_result] = ACTIONS(3995), + [anon_sym__Null_unspecified] = ACTIONS(3995), + [anon_sym___autoreleasing] = ACTIONS(3995), + [anon_sym___block] = ACTIONS(3995), + [anon_sym___bridge] = ACTIONS(3995), + [anon_sym___bridge_retained] = ACTIONS(3995), + [anon_sym___bridge_transfer] = ACTIONS(3995), + [anon_sym___complex] = ACTIONS(3995), + [anon_sym___const] = ACTIONS(3995), + [anon_sym___imag] = ACTIONS(3995), + [anon_sym___kindof] = ACTIONS(3995), + [anon_sym___nonnull] = ACTIONS(3995), + [anon_sym___nullable] = ACTIONS(3995), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3995), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3995), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3995), + [anon_sym___real] = ACTIONS(3995), + [anon_sym___strong] = ACTIONS(3995), + [anon_sym___unsafe_unretained] = ACTIONS(3995), + [anon_sym___unused] = ACTIONS(3995), + [anon_sym___weak] = ACTIONS(3995), + [anon_sym_alignas] = ACTIONS(3995), + [anon_sym__Alignas] = ACTIONS(3995), + [sym_primitive_type] = ACTIONS(3995), + [anon_sym_enum] = ACTIONS(3995), + [anon_sym_COLON] = ACTIONS(3997), + [anon_sym_struct] = ACTIONS(3995), + [anon_sym_union] = ACTIONS(3995), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(3997), + [anon_sym_SLASH_EQ] = ACTIONS(3997), + [anon_sym_PERCENT_EQ] = ACTIONS(3997), + [anon_sym_PLUS_EQ] = ACTIONS(3997), + [anon_sym_DASH_EQ] = ACTIONS(3997), + [anon_sym_LT_LT_EQ] = ACTIONS(3997), + [anon_sym_GT_GT_EQ] = ACTIONS(3997), + [anon_sym_AMP_EQ] = ACTIONS(3997), + [anon_sym_CARET_EQ] = ACTIONS(3997), + [anon_sym_PIPE_EQ] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(3995), + [anon_sym___typeof] = ACTIONS(3995), + [anon_sym_typeof] = ACTIONS(3995), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3995), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3995), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3995), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3995), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3995), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3995), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3995), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3995), + [anon_sym_NS_AVAILABLE] = ACTIONS(3995), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3995), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_API_AVAILABLE] = ACTIONS(3995), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_API_DEPRECATED] = ACTIONS(3995), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3995), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3995), + [anon_sym___deprecated_msg] = ACTIONS(3995), + [anon_sym___deprecated_enum_msg] = ACTIONS(3995), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3995), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3995), + [anon_sym_BOOL] = ACTIONS(3995), + [anon_sym_IMP] = ACTIONS(3995), + [anon_sym_SEL] = ACTIONS(3995), + [anon_sym_Class] = ACTIONS(3995), + [anon_sym_id] = ACTIONS(3995), + }, + [1507] = { + [sym_identifier] = ACTIONS(4234), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4236), + [anon_sym_COMMA] = ACTIONS(4236), + [anon_sym_RPAREN] = ACTIONS(4236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4236), + [anon_sym_LPAREN2] = ACTIONS(4236), + [anon_sym_DASH] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4234), + [anon_sym_STAR] = ACTIONS(4234), + [anon_sym_SLASH] = ACTIONS(4234), + [anon_sym_PERCENT] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4236), + [anon_sym_AMP_AMP] = ACTIONS(4236), + [anon_sym_PIPE] = ACTIONS(4234), + [anon_sym_CARET] = ACTIONS(4234), + [anon_sym_AMP] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4236), + [anon_sym_BANG_EQ] = ACTIONS(4236), + [anon_sym_GT] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4236), + [anon_sym_LT_EQ] = ACTIONS(4236), + [anon_sym_LT] = ACTIONS(4234), + [anon_sym_LT_LT] = ACTIONS(4234), + [anon_sym_GT_GT] = ACTIONS(4234), + [anon_sym_SEMI] = ACTIONS(4236), + [anon_sym___extension__] = ACTIONS(4234), + [anon_sym_extern] = ACTIONS(4234), + [anon_sym___attribute__] = ACTIONS(4234), + [anon_sym___attribute] = ACTIONS(4234), + [anon_sym_noreturn] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(4236), + [anon_sym_RBRACK] = ACTIONS(4236), + [anon_sym___declspec] = ACTIONS(4234), + [anon_sym_LBRACE] = ACTIONS(4236), + [anon_sym_RBRACE] = ACTIONS(4236), + [anon_sym_signed] = ACTIONS(4234), + [anon_sym_unsigned] = ACTIONS(4234), + [anon_sym_long] = ACTIONS(4234), + [anon_sym_short] = ACTIONS(4234), + [anon_sym_static] = ACTIONS(4234), + [anon_sym_EQ] = ACTIONS(4234), + [anon_sym_ATautoreleasepool] = ACTIONS(4236), + [anon_sym_auto] = ACTIONS(4234), + [anon_sym_register] = ACTIONS(4234), + [anon_sym_inline] = ACTIONS(4234), + [anon_sym___inline] = ACTIONS(4234), + [anon_sym___inline__] = ACTIONS(4234), + [anon_sym___forceinline] = ACTIONS(4234), + [anon_sym_thread_local] = ACTIONS(4234), + [anon_sym___thread] = ACTIONS(4234), + [anon_sym_CG_EXTERN] = ACTIONS(4234), + [anon_sym_CG_INLINE] = ACTIONS(4234), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4234), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4234), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4234), + [anon_sym_IBOutlet] = ACTIONS(4234), + [anon_sym_IBInspectable] = ACTIONS(4234), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4234), + [anon_sym_NS_INLINE] = ACTIONS(4234), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4234), + [anon_sym_OBJC_EXPORT] = ACTIONS(4234), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4234), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4234), + [anon_sym_const] = ACTIONS(4234), + [anon_sym_constexpr] = ACTIONS(4234), + [anon_sym_volatile] = ACTIONS(4234), + [anon_sym_restrict] = ACTIONS(4234), + [anon_sym___restrict__] = ACTIONS(4234), + [anon_sym__Atomic] = ACTIONS(4234), + [anon_sym__Noreturn] = ACTIONS(4234), + [anon_sym__Nonnull] = ACTIONS(4234), + [anon_sym_nullable] = ACTIONS(4234), + [anon_sym__Complex] = ACTIONS(4234), + [anon_sym__Nullable] = ACTIONS(4234), + [anon_sym__Nullable_result] = ACTIONS(4234), + [anon_sym__Null_unspecified] = ACTIONS(4234), + [anon_sym___autoreleasing] = ACTIONS(4234), + [anon_sym___block] = ACTIONS(4234), + [anon_sym___bridge] = ACTIONS(4234), + [anon_sym___bridge_retained] = ACTIONS(4234), + [anon_sym___bridge_transfer] = ACTIONS(4234), + [anon_sym___complex] = ACTIONS(4234), + [anon_sym___const] = ACTIONS(4234), + [anon_sym___imag] = ACTIONS(4234), + [anon_sym___kindof] = ACTIONS(4234), + [anon_sym___nonnull] = ACTIONS(4234), + [anon_sym___nullable] = ACTIONS(4234), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4234), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4234), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4234), + [anon_sym___real] = ACTIONS(4234), + [anon_sym___strong] = ACTIONS(4234), + [anon_sym___unsafe_unretained] = ACTIONS(4234), + [anon_sym___unused] = ACTIONS(4234), + [anon_sym___weak] = ACTIONS(4234), + [anon_sym_alignas] = ACTIONS(4234), + [anon_sym__Alignas] = ACTIONS(4234), + [sym_primitive_type] = ACTIONS(4234), + [anon_sym_enum] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(4236), + [anon_sym_struct] = ACTIONS(4234), + [anon_sym_union] = ACTIONS(4234), + [anon_sym_QMARK] = ACTIONS(4236), + [anon_sym_STAR_EQ] = ACTIONS(4236), + [anon_sym_SLASH_EQ] = ACTIONS(4236), + [anon_sym_PERCENT_EQ] = ACTIONS(4236), + [anon_sym_PLUS_EQ] = ACTIONS(4236), + [anon_sym_DASH_EQ] = ACTIONS(4236), + [anon_sym_LT_LT_EQ] = ACTIONS(4236), + [anon_sym_GT_GT_EQ] = ACTIONS(4236), + [anon_sym_AMP_EQ] = ACTIONS(4236), + [anon_sym_CARET_EQ] = ACTIONS(4236), + [anon_sym_PIPE_EQ] = ACTIONS(4236), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_DOT] = ACTIONS(4234), + [anon_sym_DASH_GT] = ACTIONS(4236), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4234), + [anon_sym___typeof] = ACTIONS(4234), + [anon_sym_typeof] = ACTIONS(4234), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4234), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4234), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4234), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4234), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4234), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4234), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4234), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4234), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4234), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4234), + [anon_sym_NS_AVAILABLE] = ACTIONS(4234), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4234), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4234), + [anon_sym_API_AVAILABLE] = ACTIONS(4234), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4234), + [anon_sym_API_DEPRECATED] = ACTIONS(4234), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4234), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4234), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4234), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4234), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4234), + [anon_sym___deprecated_msg] = ACTIONS(4234), + [anon_sym___deprecated_enum_msg] = ACTIONS(4234), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4234), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4234), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4234), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4234), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4234), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4234), + [anon_sym_BOOL] = ACTIONS(4234), + [anon_sym_IMP] = ACTIONS(4234), + [anon_sym_SEL] = ACTIONS(4234), + [anon_sym_Class] = ACTIONS(4234), + [anon_sym_id] = ACTIONS(4234), + }, + [1508] = { + [sym_identifier] = ACTIONS(3995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_RPAREN] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(3997), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(3995), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(3995), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(3995), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym___extension__] = ACTIONS(3995), + [anon_sym_extern] = ACTIONS(3995), + [anon_sym___attribute__] = ACTIONS(3995), + [anon_sym___attribute] = ACTIONS(3995), + [anon_sym_noreturn] = ACTIONS(3995), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_RBRACK] = ACTIONS(3997), + [anon_sym___declspec] = ACTIONS(3995), + [anon_sym_LBRACE] = ACTIONS(3997), + [anon_sym_RBRACE] = ACTIONS(3997), + [anon_sym_signed] = ACTIONS(3995), + [anon_sym_unsigned] = ACTIONS(3995), + [anon_sym_long] = ACTIONS(3995), + [anon_sym_short] = ACTIONS(3995), + [anon_sym_static] = ACTIONS(3995), + [anon_sym_EQ] = ACTIONS(3995), + [anon_sym_ATautoreleasepool] = ACTIONS(3997), + [anon_sym_auto] = ACTIONS(3995), + [anon_sym_register] = ACTIONS(3995), + [anon_sym_inline] = ACTIONS(3995), + [anon_sym___inline] = ACTIONS(3995), + [anon_sym___inline__] = ACTIONS(3995), + [anon_sym___forceinline] = ACTIONS(3995), + [anon_sym_thread_local] = ACTIONS(3995), + [anon_sym___thread] = ACTIONS(3995), + [anon_sym_CG_EXTERN] = ACTIONS(3995), + [anon_sym_CG_INLINE] = ACTIONS(3995), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3995), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3995), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3995), + [anon_sym_IBOutlet] = ACTIONS(3995), + [anon_sym_IBInspectable] = ACTIONS(3995), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3995), + [anon_sym_NS_INLINE] = ACTIONS(3995), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3995), + [anon_sym_OBJC_EXPORT] = ACTIONS(3995), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3995), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3995), + [anon_sym_const] = ACTIONS(3995), + [anon_sym_constexpr] = ACTIONS(3995), + [anon_sym_volatile] = ACTIONS(3995), + [anon_sym_restrict] = ACTIONS(3995), + [anon_sym___restrict__] = ACTIONS(3995), + [anon_sym__Atomic] = ACTIONS(3995), + [anon_sym__Noreturn] = ACTIONS(3995), + [anon_sym__Nonnull] = ACTIONS(3995), + [anon_sym_nullable] = ACTIONS(3995), + [anon_sym__Complex] = ACTIONS(3995), + [anon_sym__Nullable] = ACTIONS(3995), + [anon_sym__Nullable_result] = ACTIONS(3995), + [anon_sym__Null_unspecified] = ACTIONS(3995), + [anon_sym___autoreleasing] = ACTIONS(3995), + [anon_sym___block] = ACTIONS(3995), + [anon_sym___bridge] = ACTIONS(3995), + [anon_sym___bridge_retained] = ACTIONS(3995), + [anon_sym___bridge_transfer] = ACTIONS(3995), + [anon_sym___complex] = ACTIONS(3995), + [anon_sym___const] = ACTIONS(3995), + [anon_sym___imag] = ACTIONS(3995), + [anon_sym___kindof] = ACTIONS(3995), + [anon_sym___nonnull] = ACTIONS(3995), + [anon_sym___nullable] = ACTIONS(3995), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3995), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3995), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3995), + [anon_sym___real] = ACTIONS(3995), + [anon_sym___strong] = ACTIONS(3995), + [anon_sym___unsafe_unretained] = ACTIONS(3995), + [anon_sym___unused] = ACTIONS(3995), + [anon_sym___weak] = ACTIONS(3995), + [anon_sym_alignas] = ACTIONS(3995), + [anon_sym__Alignas] = ACTIONS(3995), + [sym_primitive_type] = ACTIONS(3995), + [anon_sym_enum] = ACTIONS(3995), + [anon_sym_COLON] = ACTIONS(3997), + [anon_sym_struct] = ACTIONS(3995), + [anon_sym_union] = ACTIONS(3995), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(3997), + [anon_sym_SLASH_EQ] = ACTIONS(3997), + [anon_sym_PERCENT_EQ] = ACTIONS(3997), + [anon_sym_PLUS_EQ] = ACTIONS(3997), + [anon_sym_DASH_EQ] = ACTIONS(3997), + [anon_sym_LT_LT_EQ] = ACTIONS(3997), + [anon_sym_GT_GT_EQ] = ACTIONS(3997), + [anon_sym_AMP_EQ] = ACTIONS(3997), + [anon_sym_CARET_EQ] = ACTIONS(3997), + [anon_sym_PIPE_EQ] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(3995), + [anon_sym___typeof] = ACTIONS(3995), + [anon_sym_typeof] = ACTIONS(3995), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3995), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3995), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3995), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3995), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3995), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3995), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3995), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3995), + [anon_sym_NS_AVAILABLE] = ACTIONS(3995), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3995), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_API_AVAILABLE] = ACTIONS(3995), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_API_DEPRECATED] = ACTIONS(3995), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3995), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3995), + [anon_sym___deprecated_msg] = ACTIONS(3995), + [anon_sym___deprecated_enum_msg] = ACTIONS(3995), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3995), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3995), + [anon_sym_BOOL] = ACTIONS(3995), + [anon_sym_IMP] = ACTIONS(3995), + [anon_sym_SEL] = ACTIONS(3995), + [anon_sym_Class] = ACTIONS(3995), + [anon_sym_id] = ACTIONS(3995), + }, + [1509] = { + [sym_identifier] = ACTIONS(4238), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4240), + [anon_sym_COMMA] = ACTIONS(4240), + [anon_sym_RPAREN] = ACTIONS(4240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4240), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_PLUS] = ACTIONS(4238), + [anon_sym_STAR] = ACTIONS(4238), + [anon_sym_SLASH] = ACTIONS(4238), + [anon_sym_PERCENT] = ACTIONS(4238), + [anon_sym_PIPE_PIPE] = ACTIONS(4240), + [anon_sym_AMP_AMP] = ACTIONS(4240), + [anon_sym_PIPE] = ACTIONS(4238), + [anon_sym_CARET] = ACTIONS(4238), + [anon_sym_AMP] = ACTIONS(4238), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4238), + [anon_sym_GT_EQ] = ACTIONS(4240), + [anon_sym_LT_EQ] = ACTIONS(4240), + [anon_sym_LT] = ACTIONS(4238), + [anon_sym_LT_LT] = ACTIONS(4238), + [anon_sym_GT_GT] = ACTIONS(4238), + [anon_sym_SEMI] = ACTIONS(4240), + [anon_sym___extension__] = ACTIONS(4238), + [anon_sym_extern] = ACTIONS(4238), + [anon_sym___attribute__] = ACTIONS(4238), + [anon_sym___attribute] = ACTIONS(4238), + [anon_sym_noreturn] = ACTIONS(4238), + [anon_sym_LBRACK] = ACTIONS(4240), + [anon_sym_RBRACK] = ACTIONS(4240), + [anon_sym___declspec] = ACTIONS(4238), + [anon_sym_LBRACE] = ACTIONS(4240), + [anon_sym_RBRACE] = ACTIONS(4240), + [anon_sym_signed] = ACTIONS(4238), + [anon_sym_unsigned] = ACTIONS(4238), + [anon_sym_long] = ACTIONS(4238), + [anon_sym_short] = ACTIONS(4238), + [anon_sym_static] = ACTIONS(4238), + [anon_sym_EQ] = ACTIONS(4238), + [anon_sym_ATautoreleasepool] = ACTIONS(4240), + [anon_sym_auto] = ACTIONS(4238), + [anon_sym_register] = ACTIONS(4238), + [anon_sym_inline] = ACTIONS(4238), + [anon_sym___inline] = ACTIONS(4238), + [anon_sym___inline__] = ACTIONS(4238), + [anon_sym___forceinline] = ACTIONS(4238), + [anon_sym_thread_local] = ACTIONS(4238), + [anon_sym___thread] = ACTIONS(4238), + [anon_sym_CG_EXTERN] = ACTIONS(4238), + [anon_sym_CG_INLINE] = ACTIONS(4238), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4238), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4238), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4238), + [anon_sym_IBOutlet] = ACTIONS(4238), + [anon_sym_IBInspectable] = ACTIONS(4238), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4238), + [anon_sym_NS_INLINE] = ACTIONS(4238), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4238), + [anon_sym_OBJC_EXPORT] = ACTIONS(4238), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4238), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4238), + [anon_sym_const] = ACTIONS(4238), + [anon_sym_constexpr] = ACTIONS(4238), + [anon_sym_volatile] = ACTIONS(4238), + [anon_sym_restrict] = ACTIONS(4238), + [anon_sym___restrict__] = ACTIONS(4238), + [anon_sym__Atomic] = ACTIONS(4238), + [anon_sym__Noreturn] = ACTIONS(4238), + [anon_sym__Nonnull] = ACTIONS(4238), + [anon_sym_nullable] = ACTIONS(4238), + [anon_sym__Complex] = ACTIONS(4238), + [anon_sym__Nullable] = ACTIONS(4238), + [anon_sym__Nullable_result] = ACTIONS(4238), + [anon_sym__Null_unspecified] = ACTIONS(4238), + [anon_sym___autoreleasing] = ACTIONS(4238), + [anon_sym___block] = ACTIONS(4238), + [anon_sym___bridge] = ACTIONS(4238), + [anon_sym___bridge_retained] = ACTIONS(4238), + [anon_sym___bridge_transfer] = ACTIONS(4238), + [anon_sym___complex] = ACTIONS(4238), + [anon_sym___const] = ACTIONS(4238), + [anon_sym___imag] = ACTIONS(4238), + [anon_sym___kindof] = ACTIONS(4238), + [anon_sym___nonnull] = ACTIONS(4238), + [anon_sym___nullable] = ACTIONS(4238), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4238), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4238), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4238), + [anon_sym___real] = ACTIONS(4238), + [anon_sym___strong] = ACTIONS(4238), + [anon_sym___unsafe_unretained] = ACTIONS(4238), + [anon_sym___unused] = ACTIONS(4238), + [anon_sym___weak] = ACTIONS(4238), + [anon_sym_alignas] = ACTIONS(4238), + [anon_sym__Alignas] = ACTIONS(4238), + [sym_primitive_type] = ACTIONS(4238), + [anon_sym_enum] = ACTIONS(4238), + [anon_sym_COLON] = ACTIONS(4240), + [anon_sym_struct] = ACTIONS(4238), + [anon_sym_union] = ACTIONS(4238), + [anon_sym_QMARK] = ACTIONS(4240), + [anon_sym_STAR_EQ] = ACTIONS(4240), + [anon_sym_SLASH_EQ] = ACTIONS(4240), + [anon_sym_PERCENT_EQ] = ACTIONS(4240), + [anon_sym_PLUS_EQ] = ACTIONS(4240), + [anon_sym_DASH_EQ] = ACTIONS(4240), + [anon_sym_LT_LT_EQ] = ACTIONS(4240), + [anon_sym_GT_GT_EQ] = ACTIONS(4240), + [anon_sym_AMP_EQ] = ACTIONS(4240), + [anon_sym_CARET_EQ] = ACTIONS(4240), + [anon_sym_PIPE_EQ] = ACTIONS(4240), + [anon_sym_DASH_DASH] = ACTIONS(4240), + [anon_sym_PLUS_PLUS] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_DASH_GT] = ACTIONS(4240), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4238), + [anon_sym___typeof] = ACTIONS(4238), + [anon_sym_typeof] = ACTIONS(4238), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4238), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4238), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4238), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4238), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4238), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4238), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4238), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4238), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4238), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4238), + [anon_sym_NS_AVAILABLE] = ACTIONS(4238), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4238), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4238), + [anon_sym_API_AVAILABLE] = ACTIONS(4238), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4238), + [anon_sym_API_DEPRECATED] = ACTIONS(4238), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4238), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4238), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4238), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4238), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4238), + [anon_sym___deprecated_msg] = ACTIONS(4238), + [anon_sym___deprecated_enum_msg] = ACTIONS(4238), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4238), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4238), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4238), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4238), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4238), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4238), + [anon_sym_BOOL] = ACTIONS(4238), + [anon_sym_IMP] = ACTIONS(4238), + [anon_sym_SEL] = ACTIONS(4238), + [anon_sym_Class] = ACTIONS(4238), + [anon_sym_id] = ACTIONS(4238), + }, + [1510] = { + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4244), + [anon_sym_COMMA] = ACTIONS(4244), + [anon_sym_RPAREN] = ACTIONS(4244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4244), + [anon_sym_LPAREN2] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4242), + [anon_sym_STAR] = ACTIONS(4242), + [anon_sym_SLASH] = ACTIONS(4242), + [anon_sym_PERCENT] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4244), + [anon_sym_AMP_AMP] = ACTIONS(4244), + [anon_sym_PIPE] = ACTIONS(4242), + [anon_sym_CARET] = ACTIONS(4242), + [anon_sym_AMP] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4244), + [anon_sym_LT_EQ] = ACTIONS(4244), + [anon_sym_LT] = ACTIONS(4242), + [anon_sym_LT_LT] = ACTIONS(4242), + [anon_sym_GT_GT] = ACTIONS(4242), + [anon_sym_SEMI] = ACTIONS(4244), + [anon_sym___extension__] = ACTIONS(4242), + [anon_sym_extern] = ACTIONS(4242), + [anon_sym___attribute__] = ACTIONS(4242), + [anon_sym___attribute] = ACTIONS(4242), + [anon_sym_noreturn] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4244), + [anon_sym_RBRACK] = ACTIONS(4244), + [anon_sym___declspec] = ACTIONS(4242), + [anon_sym_LBRACE] = ACTIONS(4244), + [anon_sym_RBRACE] = ACTIONS(4244), + [anon_sym_signed] = ACTIONS(4242), + [anon_sym_unsigned] = ACTIONS(4242), + [anon_sym_long] = ACTIONS(4242), + [anon_sym_short] = ACTIONS(4242), + [anon_sym_static] = ACTIONS(4242), + [anon_sym_EQ] = ACTIONS(4242), + [anon_sym_ATautoreleasepool] = ACTIONS(4244), + [anon_sym_auto] = ACTIONS(4242), + [anon_sym_register] = ACTIONS(4242), + [anon_sym_inline] = ACTIONS(4242), + [anon_sym___inline] = ACTIONS(4242), + [anon_sym___inline__] = ACTIONS(4242), + [anon_sym___forceinline] = ACTIONS(4242), + [anon_sym_thread_local] = ACTIONS(4242), + [anon_sym___thread] = ACTIONS(4242), + [anon_sym_CG_EXTERN] = ACTIONS(4242), + [anon_sym_CG_INLINE] = ACTIONS(4242), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4242), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4242), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4242), + [anon_sym_IBOutlet] = ACTIONS(4242), + [anon_sym_IBInspectable] = ACTIONS(4242), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4242), + [anon_sym_NS_INLINE] = ACTIONS(4242), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4242), + [anon_sym_OBJC_EXPORT] = ACTIONS(4242), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4242), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4242), + [anon_sym_const] = ACTIONS(4242), + [anon_sym_constexpr] = ACTIONS(4242), + [anon_sym_volatile] = ACTIONS(4242), + [anon_sym_restrict] = ACTIONS(4242), + [anon_sym___restrict__] = ACTIONS(4242), + [anon_sym__Atomic] = ACTIONS(4242), + [anon_sym__Noreturn] = ACTIONS(4242), + [anon_sym__Nonnull] = ACTIONS(4242), + [anon_sym_nullable] = ACTIONS(4242), + [anon_sym__Complex] = ACTIONS(4242), + [anon_sym__Nullable] = ACTIONS(4242), + [anon_sym__Nullable_result] = ACTIONS(4242), + [anon_sym__Null_unspecified] = ACTIONS(4242), + [anon_sym___autoreleasing] = ACTIONS(4242), + [anon_sym___block] = ACTIONS(4242), + [anon_sym___bridge] = ACTIONS(4242), + [anon_sym___bridge_retained] = ACTIONS(4242), + [anon_sym___bridge_transfer] = ACTIONS(4242), + [anon_sym___complex] = ACTIONS(4242), + [anon_sym___const] = ACTIONS(4242), + [anon_sym___imag] = ACTIONS(4242), + [anon_sym___kindof] = ACTIONS(4242), + [anon_sym___nonnull] = ACTIONS(4242), + [anon_sym___nullable] = ACTIONS(4242), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4242), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4242), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4242), + [anon_sym___real] = ACTIONS(4242), + [anon_sym___strong] = ACTIONS(4242), + [anon_sym___unsafe_unretained] = ACTIONS(4242), + [anon_sym___unused] = ACTIONS(4242), + [anon_sym___weak] = ACTIONS(4242), + [anon_sym_alignas] = ACTIONS(4242), + [anon_sym__Alignas] = ACTIONS(4242), + [sym_primitive_type] = ACTIONS(4242), + [anon_sym_enum] = ACTIONS(4242), + [anon_sym_COLON] = ACTIONS(4244), + [anon_sym_struct] = ACTIONS(4242), + [anon_sym_union] = ACTIONS(4242), + [anon_sym_QMARK] = ACTIONS(4244), + [anon_sym_STAR_EQ] = ACTIONS(4244), + [anon_sym_SLASH_EQ] = ACTIONS(4244), + [anon_sym_PERCENT_EQ] = ACTIONS(4244), + [anon_sym_PLUS_EQ] = ACTIONS(4244), + [anon_sym_DASH_EQ] = ACTIONS(4244), + [anon_sym_LT_LT_EQ] = ACTIONS(4244), + [anon_sym_GT_GT_EQ] = ACTIONS(4244), + [anon_sym_AMP_EQ] = ACTIONS(4244), + [anon_sym_CARET_EQ] = ACTIONS(4244), + [anon_sym_PIPE_EQ] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4244), + [anon_sym_PLUS_PLUS] = ACTIONS(4244), + [anon_sym_DOT] = ACTIONS(4242), + [anon_sym_DASH_GT] = ACTIONS(4244), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4242), + [anon_sym___typeof] = ACTIONS(4242), + [anon_sym_typeof] = ACTIONS(4242), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4242), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4242), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4242), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4242), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4242), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4242), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4242), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4242), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4242), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4242), + [anon_sym_NS_AVAILABLE] = ACTIONS(4242), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4242), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4242), + [anon_sym_API_AVAILABLE] = ACTIONS(4242), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4242), + [anon_sym_API_DEPRECATED] = ACTIONS(4242), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4242), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4242), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4242), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4242), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4242), + [anon_sym___deprecated_msg] = ACTIONS(4242), + [anon_sym___deprecated_enum_msg] = ACTIONS(4242), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4242), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4242), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4242), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4242), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4242), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4242), + [anon_sym_BOOL] = ACTIONS(4242), + [anon_sym_IMP] = ACTIONS(4242), + [anon_sym_SEL] = ACTIONS(4242), + [anon_sym_Class] = ACTIONS(4242), + [anon_sym_id] = ACTIONS(4242), + }, + [1511] = { + [sym_identifier] = ACTIONS(4246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4248), + [anon_sym_COMMA] = ACTIONS(4248), + [anon_sym_RPAREN] = ACTIONS(4248), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4248), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4248), + [anon_sym_LPAREN2] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4246), + [anon_sym_STAR] = ACTIONS(4246), + [anon_sym_SLASH] = ACTIONS(4246), + [anon_sym_PERCENT] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4248), + [anon_sym_AMP_AMP] = ACTIONS(4248), + [anon_sym_PIPE] = ACTIONS(4246), + [anon_sym_CARET] = ACTIONS(4246), + [anon_sym_AMP] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4248), + [anon_sym_LT_EQ] = ACTIONS(4248), + [anon_sym_LT] = ACTIONS(4246), + [anon_sym_LT_LT] = ACTIONS(4246), + [anon_sym_GT_GT] = ACTIONS(4246), + [anon_sym_SEMI] = ACTIONS(4248), + [anon_sym___extension__] = ACTIONS(4246), + [anon_sym_extern] = ACTIONS(4246), + [anon_sym___attribute__] = ACTIONS(4246), + [anon_sym___attribute] = ACTIONS(4246), + [anon_sym_noreturn] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4248), + [anon_sym_RBRACK] = ACTIONS(4248), + [anon_sym___declspec] = ACTIONS(4246), + [anon_sym_LBRACE] = ACTIONS(4248), + [anon_sym_RBRACE] = ACTIONS(4248), + [anon_sym_signed] = ACTIONS(4246), + [anon_sym_unsigned] = ACTIONS(4246), + [anon_sym_long] = ACTIONS(4246), + [anon_sym_short] = ACTIONS(4246), + [anon_sym_static] = ACTIONS(4246), + [anon_sym_EQ] = ACTIONS(4246), + [anon_sym_ATautoreleasepool] = ACTIONS(4248), + [anon_sym_auto] = ACTIONS(4246), + [anon_sym_register] = ACTIONS(4246), + [anon_sym_inline] = ACTIONS(4246), + [anon_sym___inline] = ACTIONS(4246), + [anon_sym___inline__] = ACTIONS(4246), + [anon_sym___forceinline] = ACTIONS(4246), + [anon_sym_thread_local] = ACTIONS(4246), + [anon_sym___thread] = ACTIONS(4246), + [anon_sym_CG_EXTERN] = ACTIONS(4246), + [anon_sym_CG_INLINE] = ACTIONS(4246), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4246), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4246), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4246), + [anon_sym_IBOutlet] = ACTIONS(4246), + [anon_sym_IBInspectable] = ACTIONS(4246), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4246), + [anon_sym_NS_INLINE] = ACTIONS(4246), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4246), + [anon_sym_OBJC_EXPORT] = ACTIONS(4246), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4246), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4246), + [anon_sym_const] = ACTIONS(4246), + [anon_sym_constexpr] = ACTIONS(4246), + [anon_sym_volatile] = ACTIONS(4246), + [anon_sym_restrict] = ACTIONS(4246), + [anon_sym___restrict__] = ACTIONS(4246), + [anon_sym__Atomic] = ACTIONS(4246), + [anon_sym__Noreturn] = ACTIONS(4246), + [anon_sym__Nonnull] = ACTIONS(4246), + [anon_sym_nullable] = ACTIONS(4246), + [anon_sym__Complex] = ACTIONS(4246), + [anon_sym__Nullable] = ACTIONS(4246), + [anon_sym__Nullable_result] = ACTIONS(4246), + [anon_sym__Null_unspecified] = ACTIONS(4246), + [anon_sym___autoreleasing] = ACTIONS(4246), + [anon_sym___block] = ACTIONS(4246), + [anon_sym___bridge] = ACTIONS(4246), + [anon_sym___bridge_retained] = ACTIONS(4246), + [anon_sym___bridge_transfer] = ACTIONS(4246), + [anon_sym___complex] = ACTIONS(4246), + [anon_sym___const] = ACTIONS(4246), + [anon_sym___imag] = ACTIONS(4246), + [anon_sym___kindof] = ACTIONS(4246), + [anon_sym___nonnull] = ACTIONS(4246), + [anon_sym___nullable] = ACTIONS(4246), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4246), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4246), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4246), + [anon_sym___real] = ACTIONS(4246), + [anon_sym___strong] = ACTIONS(4246), + [anon_sym___unsafe_unretained] = ACTIONS(4246), + [anon_sym___unused] = ACTIONS(4246), + [anon_sym___weak] = ACTIONS(4246), + [anon_sym_alignas] = ACTIONS(4246), + [anon_sym__Alignas] = ACTIONS(4246), + [sym_primitive_type] = ACTIONS(4246), + [anon_sym_enum] = ACTIONS(4246), + [anon_sym_COLON] = ACTIONS(4248), + [anon_sym_struct] = ACTIONS(4246), + [anon_sym_union] = ACTIONS(4246), + [anon_sym_QMARK] = ACTIONS(4248), + [anon_sym_STAR_EQ] = ACTIONS(4248), + [anon_sym_SLASH_EQ] = ACTIONS(4248), + [anon_sym_PERCENT_EQ] = ACTIONS(4248), + [anon_sym_PLUS_EQ] = ACTIONS(4248), + [anon_sym_DASH_EQ] = ACTIONS(4248), + [anon_sym_LT_LT_EQ] = ACTIONS(4248), + [anon_sym_GT_GT_EQ] = ACTIONS(4248), + [anon_sym_AMP_EQ] = ACTIONS(4248), + [anon_sym_CARET_EQ] = ACTIONS(4248), + [anon_sym_PIPE_EQ] = ACTIONS(4248), + [anon_sym_DASH_DASH] = ACTIONS(4248), + [anon_sym_PLUS_PLUS] = ACTIONS(4248), + [anon_sym_DOT] = ACTIONS(4246), + [anon_sym_DASH_GT] = ACTIONS(4248), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4246), + [anon_sym___typeof] = ACTIONS(4246), + [anon_sym_typeof] = ACTIONS(4246), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4246), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4246), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4246), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4246), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4246), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4246), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4246), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4246), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4246), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4246), + [anon_sym_NS_AVAILABLE] = ACTIONS(4246), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4246), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4246), + [anon_sym_API_AVAILABLE] = ACTIONS(4246), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4246), + [anon_sym_API_DEPRECATED] = ACTIONS(4246), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4246), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4246), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4246), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4246), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4246), + [anon_sym___deprecated_msg] = ACTIONS(4246), + [anon_sym___deprecated_enum_msg] = ACTIONS(4246), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4246), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4246), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4246), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4246), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4246), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4246), + [anon_sym_BOOL] = ACTIONS(4246), + [anon_sym_IMP] = ACTIONS(4246), + [anon_sym_SEL] = ACTIONS(4246), + [anon_sym_Class] = ACTIONS(4246), + [anon_sym_id] = ACTIONS(4246), + }, + [1512] = { + [sym_identifier] = ACTIONS(4250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4252), + [anon_sym_COMMA] = ACTIONS(4252), + [anon_sym_RPAREN] = ACTIONS(4252), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4252), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4252), + [anon_sym_LPAREN2] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4250), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_SLASH] = ACTIONS(4250), + [anon_sym_PERCENT] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4252), + [anon_sym_AMP_AMP] = ACTIONS(4252), + [anon_sym_PIPE] = ACTIONS(4250), + [anon_sym_CARET] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4252), + [anon_sym_BANG_EQ] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4252), + [anon_sym_LT_EQ] = ACTIONS(4252), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_LT_LT] = ACTIONS(4250), + [anon_sym_GT_GT] = ACTIONS(4250), + [anon_sym_SEMI] = ACTIONS(4252), + [anon_sym___extension__] = ACTIONS(4250), + [anon_sym_extern] = ACTIONS(4250), + [anon_sym___attribute__] = ACTIONS(4250), + [anon_sym___attribute] = ACTIONS(4250), + [anon_sym_noreturn] = ACTIONS(4250), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_RBRACK] = ACTIONS(4252), + [anon_sym___declspec] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(4252), + [anon_sym_RBRACE] = ACTIONS(4252), + [anon_sym_signed] = ACTIONS(4250), + [anon_sym_unsigned] = ACTIONS(4250), + [anon_sym_long] = ACTIONS(4250), + [anon_sym_short] = ACTIONS(4250), + [anon_sym_static] = ACTIONS(4250), + [anon_sym_EQ] = ACTIONS(4250), + [anon_sym_ATautoreleasepool] = ACTIONS(4252), + [anon_sym_auto] = ACTIONS(4250), + [anon_sym_register] = ACTIONS(4250), + [anon_sym_inline] = ACTIONS(4250), + [anon_sym___inline] = ACTIONS(4250), + [anon_sym___inline__] = ACTIONS(4250), + [anon_sym___forceinline] = ACTIONS(4250), + [anon_sym_thread_local] = ACTIONS(4250), + [anon_sym___thread] = ACTIONS(4250), + [anon_sym_CG_EXTERN] = ACTIONS(4250), + [anon_sym_CG_INLINE] = ACTIONS(4250), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4250), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4250), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4250), + [anon_sym_IBOutlet] = ACTIONS(4250), + [anon_sym_IBInspectable] = ACTIONS(4250), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4250), + [anon_sym_NS_INLINE] = ACTIONS(4250), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4250), + [anon_sym_OBJC_EXPORT] = ACTIONS(4250), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4250), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4250), + [anon_sym_const] = ACTIONS(4250), + [anon_sym_constexpr] = ACTIONS(4250), + [anon_sym_volatile] = ACTIONS(4250), + [anon_sym_restrict] = ACTIONS(4250), + [anon_sym___restrict__] = ACTIONS(4250), + [anon_sym__Atomic] = ACTIONS(4250), + [anon_sym__Noreturn] = ACTIONS(4250), + [anon_sym__Nonnull] = ACTIONS(4250), + [anon_sym_nullable] = ACTIONS(4250), + [anon_sym__Complex] = ACTIONS(4250), + [anon_sym__Nullable] = ACTIONS(4250), + [anon_sym__Nullable_result] = ACTIONS(4250), + [anon_sym__Null_unspecified] = ACTIONS(4250), + [anon_sym___autoreleasing] = ACTIONS(4250), + [anon_sym___block] = ACTIONS(4250), + [anon_sym___bridge] = ACTIONS(4250), + [anon_sym___bridge_retained] = ACTIONS(4250), + [anon_sym___bridge_transfer] = ACTIONS(4250), + [anon_sym___complex] = ACTIONS(4250), + [anon_sym___const] = ACTIONS(4250), + [anon_sym___imag] = ACTIONS(4250), + [anon_sym___kindof] = ACTIONS(4250), + [anon_sym___nonnull] = ACTIONS(4250), + [anon_sym___nullable] = ACTIONS(4250), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4250), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4250), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4250), + [anon_sym___real] = ACTIONS(4250), + [anon_sym___strong] = ACTIONS(4250), + [anon_sym___unsafe_unretained] = ACTIONS(4250), + [anon_sym___unused] = ACTIONS(4250), + [anon_sym___weak] = ACTIONS(4250), + [anon_sym_alignas] = ACTIONS(4250), + [anon_sym__Alignas] = ACTIONS(4250), + [sym_primitive_type] = ACTIONS(4250), + [anon_sym_enum] = ACTIONS(4250), + [anon_sym_COLON] = ACTIONS(4252), + [anon_sym_struct] = ACTIONS(4250), + [anon_sym_union] = ACTIONS(4250), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_STAR_EQ] = ACTIONS(4252), + [anon_sym_SLASH_EQ] = ACTIONS(4252), + [anon_sym_PERCENT_EQ] = ACTIONS(4252), + [anon_sym_PLUS_EQ] = ACTIONS(4252), + [anon_sym_DASH_EQ] = ACTIONS(4252), + [anon_sym_LT_LT_EQ] = ACTIONS(4252), + [anon_sym_GT_GT_EQ] = ACTIONS(4252), + [anon_sym_AMP_EQ] = ACTIONS(4252), + [anon_sym_CARET_EQ] = ACTIONS(4252), + [anon_sym_PIPE_EQ] = ACTIONS(4252), + [anon_sym_DASH_DASH] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4252), + [anon_sym_DOT] = ACTIONS(4250), + [anon_sym_DASH_GT] = ACTIONS(4252), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4250), + [anon_sym___typeof] = ACTIONS(4250), + [anon_sym_typeof] = ACTIONS(4250), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4250), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4250), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4250), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4250), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4250), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4250), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4250), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4250), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4250), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4250), + [anon_sym_NS_AVAILABLE] = ACTIONS(4250), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4250), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4250), + [anon_sym_API_AVAILABLE] = ACTIONS(4250), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4250), + [anon_sym_API_DEPRECATED] = ACTIONS(4250), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4250), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4250), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4250), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4250), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4250), + [anon_sym___deprecated_msg] = ACTIONS(4250), + [anon_sym___deprecated_enum_msg] = ACTIONS(4250), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4250), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4250), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4250), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4250), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4250), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4250), + [anon_sym_BOOL] = ACTIONS(4250), + [anon_sym_IMP] = ACTIONS(4250), + [anon_sym_SEL] = ACTIONS(4250), + [anon_sym_Class] = ACTIONS(4250), + [anon_sym_id] = ACTIONS(4250), + }, + [1513] = { + [sym_identifier] = ACTIONS(4254), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4256), + [anon_sym_COMMA] = ACTIONS(4256), + [anon_sym_RPAREN] = ACTIONS(4256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4256), + [anon_sym_LPAREN2] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4254), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_SLASH] = ACTIONS(4254), + [anon_sym_PERCENT] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4256), + [anon_sym_AMP_AMP] = ACTIONS(4256), + [anon_sym_PIPE] = ACTIONS(4254), + [anon_sym_CARET] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4254), + [anon_sym_EQ_EQ] = ACTIONS(4256), + [anon_sym_BANG_EQ] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4256), + [anon_sym_LT_EQ] = ACTIONS(4256), + [anon_sym_LT] = ACTIONS(4254), + [anon_sym_LT_LT] = ACTIONS(4254), + [anon_sym_GT_GT] = ACTIONS(4254), + [anon_sym_SEMI] = ACTIONS(4256), + [anon_sym___extension__] = ACTIONS(4254), + [anon_sym_extern] = ACTIONS(4254), + [anon_sym___attribute__] = ACTIONS(4254), + [anon_sym___attribute] = ACTIONS(4254), + [anon_sym_noreturn] = ACTIONS(4254), + [anon_sym_LBRACK] = ACTIONS(4256), + [anon_sym_RBRACK] = ACTIONS(4256), + [anon_sym___declspec] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_RBRACE] = ACTIONS(4256), + [anon_sym_signed] = ACTIONS(4254), + [anon_sym_unsigned] = ACTIONS(4254), + [anon_sym_long] = ACTIONS(4254), + [anon_sym_short] = ACTIONS(4254), + [anon_sym_static] = ACTIONS(4254), + [anon_sym_EQ] = ACTIONS(4254), + [anon_sym_ATautoreleasepool] = ACTIONS(4256), + [anon_sym_auto] = ACTIONS(4254), + [anon_sym_register] = ACTIONS(4254), + [anon_sym_inline] = ACTIONS(4254), + [anon_sym___inline] = ACTIONS(4254), + [anon_sym___inline__] = ACTIONS(4254), + [anon_sym___forceinline] = ACTIONS(4254), + [anon_sym_thread_local] = ACTIONS(4254), + [anon_sym___thread] = ACTIONS(4254), + [anon_sym_CG_EXTERN] = ACTIONS(4254), + [anon_sym_CG_INLINE] = ACTIONS(4254), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4254), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4254), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4254), + [anon_sym_IBOutlet] = ACTIONS(4254), + [anon_sym_IBInspectable] = ACTIONS(4254), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4254), + [anon_sym_NS_INLINE] = ACTIONS(4254), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4254), + [anon_sym_OBJC_EXPORT] = ACTIONS(4254), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4254), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4254), + [anon_sym_const] = ACTIONS(4254), + [anon_sym_constexpr] = ACTIONS(4254), + [anon_sym_volatile] = ACTIONS(4254), + [anon_sym_restrict] = ACTIONS(4254), + [anon_sym___restrict__] = ACTIONS(4254), + [anon_sym__Atomic] = ACTIONS(4254), + [anon_sym__Noreturn] = ACTIONS(4254), + [anon_sym__Nonnull] = ACTIONS(4254), + [anon_sym_nullable] = ACTIONS(4254), + [anon_sym__Complex] = ACTIONS(4254), + [anon_sym__Nullable] = ACTIONS(4254), + [anon_sym__Nullable_result] = ACTIONS(4254), + [anon_sym__Null_unspecified] = ACTIONS(4254), + [anon_sym___autoreleasing] = ACTIONS(4254), + [anon_sym___block] = ACTIONS(4254), + [anon_sym___bridge] = ACTIONS(4254), + [anon_sym___bridge_retained] = ACTIONS(4254), + [anon_sym___bridge_transfer] = ACTIONS(4254), + [anon_sym___complex] = ACTIONS(4254), + [anon_sym___const] = ACTIONS(4254), + [anon_sym___imag] = ACTIONS(4254), + [anon_sym___kindof] = ACTIONS(4254), + [anon_sym___nonnull] = ACTIONS(4254), + [anon_sym___nullable] = ACTIONS(4254), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4254), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4254), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4254), + [anon_sym___real] = ACTIONS(4254), + [anon_sym___strong] = ACTIONS(4254), + [anon_sym___unsafe_unretained] = ACTIONS(4254), + [anon_sym___unused] = ACTIONS(4254), + [anon_sym___weak] = ACTIONS(4254), + [anon_sym_alignas] = ACTIONS(4254), + [anon_sym__Alignas] = ACTIONS(4254), + [sym_primitive_type] = ACTIONS(4254), + [anon_sym_enum] = ACTIONS(4254), + [anon_sym_COLON] = ACTIONS(4256), + [anon_sym_struct] = ACTIONS(4254), + [anon_sym_union] = ACTIONS(4254), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_STAR_EQ] = ACTIONS(4256), + [anon_sym_SLASH_EQ] = ACTIONS(4256), + [anon_sym_PERCENT_EQ] = ACTIONS(4256), + [anon_sym_PLUS_EQ] = ACTIONS(4256), + [anon_sym_DASH_EQ] = ACTIONS(4256), + [anon_sym_LT_LT_EQ] = ACTIONS(4256), + [anon_sym_GT_GT_EQ] = ACTIONS(4256), + [anon_sym_AMP_EQ] = ACTIONS(4256), + [anon_sym_CARET_EQ] = ACTIONS(4256), + [anon_sym_PIPE_EQ] = ACTIONS(4256), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_DOT] = ACTIONS(4254), + [anon_sym_DASH_GT] = ACTIONS(4256), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4254), + [anon_sym___typeof] = ACTIONS(4254), + [anon_sym_typeof] = ACTIONS(4254), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4254), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4254), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4254), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4254), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4254), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4254), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4254), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4254), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4254), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4254), + [anon_sym_NS_AVAILABLE] = ACTIONS(4254), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4254), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4254), + [anon_sym_API_AVAILABLE] = ACTIONS(4254), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4254), + [anon_sym_API_DEPRECATED] = ACTIONS(4254), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4254), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4254), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4254), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4254), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4254), + [anon_sym___deprecated_msg] = ACTIONS(4254), + [anon_sym___deprecated_enum_msg] = ACTIONS(4254), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4254), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4254), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4254), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4254), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4254), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4254), + [anon_sym_BOOL] = ACTIONS(4254), + [anon_sym_IMP] = ACTIONS(4254), + [anon_sym_SEL] = ACTIONS(4254), + [anon_sym_Class] = ACTIONS(4254), + [anon_sym_id] = ACTIONS(4254), + }, + [1514] = { + [sym_identifier] = ACTIONS(4258), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4260), + [anon_sym_COMMA] = ACTIONS(4260), + [anon_sym_RPAREN] = ACTIONS(4260), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4260), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4260), + [anon_sym_LPAREN2] = ACTIONS(4260), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_STAR] = ACTIONS(4258), + [anon_sym_SLASH] = ACTIONS(4258), + [anon_sym_PERCENT] = ACTIONS(4258), + [anon_sym_PIPE_PIPE] = ACTIONS(4260), + [anon_sym_AMP_AMP] = ACTIONS(4260), + [anon_sym_PIPE] = ACTIONS(4258), + [anon_sym_CARET] = ACTIONS(4258), + [anon_sym_AMP] = ACTIONS(4258), + [anon_sym_EQ_EQ] = ACTIONS(4260), + [anon_sym_BANG_EQ] = ACTIONS(4260), + [anon_sym_GT] = ACTIONS(4258), + [anon_sym_GT_EQ] = ACTIONS(4260), + [anon_sym_LT_EQ] = ACTIONS(4260), + [anon_sym_LT] = ACTIONS(4258), + [anon_sym_LT_LT] = ACTIONS(4258), + [anon_sym_GT_GT] = ACTIONS(4258), + [anon_sym_SEMI] = ACTIONS(4260), + [anon_sym___extension__] = ACTIONS(4258), + [anon_sym_extern] = ACTIONS(4258), + [anon_sym___attribute__] = ACTIONS(4258), + [anon_sym___attribute] = ACTIONS(4258), + [anon_sym_noreturn] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(4260), + [anon_sym_RBRACK] = ACTIONS(4260), + [anon_sym___declspec] = ACTIONS(4258), + [anon_sym_LBRACE] = ACTIONS(4260), + [anon_sym_RBRACE] = ACTIONS(4260), + [anon_sym_signed] = ACTIONS(4258), + [anon_sym_unsigned] = ACTIONS(4258), + [anon_sym_long] = ACTIONS(4258), + [anon_sym_short] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_EQ] = ACTIONS(4258), + [anon_sym_ATautoreleasepool] = ACTIONS(4260), + [anon_sym_auto] = ACTIONS(4258), + [anon_sym_register] = ACTIONS(4258), + [anon_sym_inline] = ACTIONS(4258), + [anon_sym___inline] = ACTIONS(4258), + [anon_sym___inline__] = ACTIONS(4258), + [anon_sym___forceinline] = ACTIONS(4258), + [anon_sym_thread_local] = ACTIONS(4258), + [anon_sym___thread] = ACTIONS(4258), + [anon_sym_CG_EXTERN] = ACTIONS(4258), + [anon_sym_CG_INLINE] = ACTIONS(4258), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4258), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4258), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4258), + [anon_sym_IBOutlet] = ACTIONS(4258), + [anon_sym_IBInspectable] = ACTIONS(4258), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4258), + [anon_sym_NS_INLINE] = ACTIONS(4258), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4258), + [anon_sym_OBJC_EXPORT] = ACTIONS(4258), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4258), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4258), + [anon_sym_const] = ACTIONS(4258), + [anon_sym_constexpr] = ACTIONS(4258), + [anon_sym_volatile] = ACTIONS(4258), + [anon_sym_restrict] = ACTIONS(4258), + [anon_sym___restrict__] = ACTIONS(4258), + [anon_sym__Atomic] = ACTIONS(4258), + [anon_sym__Noreturn] = ACTIONS(4258), + [anon_sym__Nonnull] = ACTIONS(4258), + [anon_sym_nullable] = ACTIONS(4258), + [anon_sym__Complex] = ACTIONS(4258), + [anon_sym__Nullable] = ACTIONS(4258), + [anon_sym__Nullable_result] = ACTIONS(4258), + [anon_sym__Null_unspecified] = ACTIONS(4258), + [anon_sym___autoreleasing] = ACTIONS(4258), + [anon_sym___block] = ACTIONS(4258), + [anon_sym___bridge] = ACTIONS(4258), + [anon_sym___bridge_retained] = ACTIONS(4258), + [anon_sym___bridge_transfer] = ACTIONS(4258), + [anon_sym___complex] = ACTIONS(4258), + [anon_sym___const] = ACTIONS(4258), + [anon_sym___imag] = ACTIONS(4258), + [anon_sym___kindof] = ACTIONS(4258), + [anon_sym___nonnull] = ACTIONS(4258), + [anon_sym___nullable] = ACTIONS(4258), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4258), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4258), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4258), + [anon_sym___real] = ACTIONS(4258), + [anon_sym___strong] = ACTIONS(4258), + [anon_sym___unsafe_unretained] = ACTIONS(4258), + [anon_sym___unused] = ACTIONS(4258), + [anon_sym___weak] = ACTIONS(4258), + [anon_sym_alignas] = ACTIONS(4258), + [anon_sym__Alignas] = ACTIONS(4258), + [sym_primitive_type] = ACTIONS(4258), + [anon_sym_enum] = ACTIONS(4258), + [anon_sym_COLON] = ACTIONS(4260), + [anon_sym_struct] = ACTIONS(4258), + [anon_sym_union] = ACTIONS(4258), + [anon_sym_QMARK] = ACTIONS(4260), + [anon_sym_STAR_EQ] = ACTIONS(4260), + [anon_sym_SLASH_EQ] = ACTIONS(4260), + [anon_sym_PERCENT_EQ] = ACTIONS(4260), + [anon_sym_PLUS_EQ] = ACTIONS(4260), + [anon_sym_DASH_EQ] = ACTIONS(4260), + [anon_sym_LT_LT_EQ] = ACTIONS(4260), + [anon_sym_GT_GT_EQ] = ACTIONS(4260), + [anon_sym_AMP_EQ] = ACTIONS(4260), + [anon_sym_CARET_EQ] = ACTIONS(4260), + [anon_sym_PIPE_EQ] = ACTIONS(4260), + [anon_sym_DASH_DASH] = ACTIONS(4260), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_DOT] = ACTIONS(4258), + [anon_sym_DASH_GT] = ACTIONS(4260), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4258), + [anon_sym___typeof] = ACTIONS(4258), + [anon_sym_typeof] = ACTIONS(4258), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4258), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4258), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4258), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4258), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4258), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4258), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4258), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4258), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4258), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4258), + [anon_sym_NS_AVAILABLE] = ACTIONS(4258), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4258), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4258), + [anon_sym_API_AVAILABLE] = ACTIONS(4258), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4258), + [anon_sym_API_DEPRECATED] = ACTIONS(4258), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4258), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4258), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4258), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4258), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4258), + [anon_sym___deprecated_msg] = ACTIONS(4258), + [anon_sym___deprecated_enum_msg] = ACTIONS(4258), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4258), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4258), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4258), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4258), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4258), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4258), + [anon_sym_BOOL] = ACTIONS(4258), + [anon_sym_IMP] = ACTIONS(4258), + [anon_sym_SEL] = ACTIONS(4258), + [anon_sym_Class] = ACTIONS(4258), + [anon_sym_id] = ACTIONS(4258), + }, + [1515] = { + [sym_identifier] = ACTIONS(4262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4264), + [anon_sym_COMMA] = ACTIONS(4264), + [anon_sym_RPAREN] = ACTIONS(4264), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4264), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4264), + [anon_sym_LPAREN2] = ACTIONS(4264), + [anon_sym_DASH] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4262), + [anon_sym_STAR] = ACTIONS(4262), + [anon_sym_SLASH] = ACTIONS(4262), + [anon_sym_PERCENT] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4264), + [anon_sym_AMP_AMP] = ACTIONS(4264), + [anon_sym_PIPE] = ACTIONS(4262), + [anon_sym_CARET] = ACTIONS(4262), + [anon_sym_AMP] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4264), + [anon_sym_BANG_EQ] = ACTIONS(4264), + [anon_sym_GT] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4264), + [anon_sym_LT_EQ] = ACTIONS(4264), + [anon_sym_LT] = ACTIONS(4262), + [anon_sym_LT_LT] = ACTIONS(4262), + [anon_sym_GT_GT] = ACTIONS(4262), + [anon_sym_SEMI] = ACTIONS(4264), + [anon_sym___extension__] = ACTIONS(4262), + [anon_sym_extern] = ACTIONS(4262), + [anon_sym___attribute__] = ACTIONS(4262), + [anon_sym___attribute] = ACTIONS(4262), + [anon_sym_noreturn] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4264), + [anon_sym_RBRACK] = ACTIONS(4264), + [anon_sym___declspec] = ACTIONS(4262), + [anon_sym_LBRACE] = ACTIONS(4264), + [anon_sym_RBRACE] = ACTIONS(4264), + [anon_sym_signed] = ACTIONS(4262), + [anon_sym_unsigned] = ACTIONS(4262), + [anon_sym_long] = ACTIONS(4262), + [anon_sym_short] = ACTIONS(4262), + [anon_sym_static] = ACTIONS(4262), + [anon_sym_EQ] = ACTIONS(4262), + [anon_sym_ATautoreleasepool] = ACTIONS(4264), + [anon_sym_auto] = ACTIONS(4262), + [anon_sym_register] = ACTIONS(4262), + [anon_sym_inline] = ACTIONS(4262), + [anon_sym___inline] = ACTIONS(4262), + [anon_sym___inline__] = ACTIONS(4262), + [anon_sym___forceinline] = ACTIONS(4262), + [anon_sym_thread_local] = ACTIONS(4262), + [anon_sym___thread] = ACTIONS(4262), + [anon_sym_CG_EXTERN] = ACTIONS(4262), + [anon_sym_CG_INLINE] = ACTIONS(4262), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4262), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4262), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4262), + [anon_sym_IBOutlet] = ACTIONS(4262), + [anon_sym_IBInspectable] = ACTIONS(4262), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4262), + [anon_sym_NS_INLINE] = ACTIONS(4262), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4262), + [anon_sym_OBJC_EXPORT] = ACTIONS(4262), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4262), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4262), + [anon_sym_const] = ACTIONS(4262), + [anon_sym_constexpr] = ACTIONS(4262), + [anon_sym_volatile] = ACTIONS(4262), + [anon_sym_restrict] = ACTIONS(4262), + [anon_sym___restrict__] = ACTIONS(4262), + [anon_sym__Atomic] = ACTIONS(4262), + [anon_sym__Noreturn] = ACTIONS(4262), + [anon_sym__Nonnull] = ACTIONS(4262), + [anon_sym_nullable] = ACTIONS(4262), + [anon_sym__Complex] = ACTIONS(4262), + [anon_sym__Nullable] = ACTIONS(4262), + [anon_sym__Nullable_result] = ACTIONS(4262), + [anon_sym__Null_unspecified] = ACTIONS(4262), + [anon_sym___autoreleasing] = ACTIONS(4262), + [anon_sym___block] = ACTIONS(4262), + [anon_sym___bridge] = ACTIONS(4262), + [anon_sym___bridge_retained] = ACTIONS(4262), + [anon_sym___bridge_transfer] = ACTIONS(4262), + [anon_sym___complex] = ACTIONS(4262), + [anon_sym___const] = ACTIONS(4262), + [anon_sym___imag] = ACTIONS(4262), + [anon_sym___kindof] = ACTIONS(4262), + [anon_sym___nonnull] = ACTIONS(4262), + [anon_sym___nullable] = ACTIONS(4262), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4262), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4262), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4262), + [anon_sym___real] = ACTIONS(4262), + [anon_sym___strong] = ACTIONS(4262), + [anon_sym___unsafe_unretained] = ACTIONS(4262), + [anon_sym___unused] = ACTIONS(4262), + [anon_sym___weak] = ACTIONS(4262), + [anon_sym_alignas] = ACTIONS(4262), + [anon_sym__Alignas] = ACTIONS(4262), + [sym_primitive_type] = ACTIONS(4262), + [anon_sym_enum] = ACTIONS(4262), + [anon_sym_COLON] = ACTIONS(4264), + [anon_sym_struct] = ACTIONS(4262), + [anon_sym_union] = ACTIONS(4262), + [anon_sym_QMARK] = ACTIONS(4264), + [anon_sym_STAR_EQ] = ACTIONS(4264), + [anon_sym_SLASH_EQ] = ACTIONS(4264), + [anon_sym_PERCENT_EQ] = ACTIONS(4264), + [anon_sym_PLUS_EQ] = ACTIONS(4264), + [anon_sym_DASH_EQ] = ACTIONS(4264), + [anon_sym_LT_LT_EQ] = ACTIONS(4264), + [anon_sym_GT_GT_EQ] = ACTIONS(4264), + [anon_sym_AMP_EQ] = ACTIONS(4264), + [anon_sym_CARET_EQ] = ACTIONS(4264), + [anon_sym_PIPE_EQ] = ACTIONS(4264), + [anon_sym_DASH_DASH] = ACTIONS(4264), + [anon_sym_PLUS_PLUS] = ACTIONS(4264), + [anon_sym_DOT] = ACTIONS(4262), + [anon_sym_DASH_GT] = ACTIONS(4264), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4262), + [anon_sym___typeof] = ACTIONS(4262), + [anon_sym_typeof] = ACTIONS(4262), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4262), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4262), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4262), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4262), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4262), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4262), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4262), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4262), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4262), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4262), + [anon_sym_NS_AVAILABLE] = ACTIONS(4262), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4262), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4262), + [anon_sym_API_AVAILABLE] = ACTIONS(4262), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4262), + [anon_sym_API_DEPRECATED] = ACTIONS(4262), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4262), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4262), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4262), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4262), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4262), + [anon_sym___deprecated_msg] = ACTIONS(4262), + [anon_sym___deprecated_enum_msg] = ACTIONS(4262), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4262), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4262), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4262), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4262), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4262), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4262), + [anon_sym_BOOL] = ACTIONS(4262), + [anon_sym_IMP] = ACTIONS(4262), + [anon_sym_SEL] = ACTIONS(4262), + [anon_sym_Class] = ACTIONS(4262), + [anon_sym_id] = ACTIONS(4262), + }, + [1516] = { + [sym_identifier] = ACTIONS(4266), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4268), + [anon_sym_COMMA] = ACTIONS(4268), + [anon_sym_RPAREN] = ACTIONS(4268), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4268), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4268), + [anon_sym_LPAREN2] = ACTIONS(4268), + [anon_sym_DASH] = ACTIONS(4266), + [anon_sym_PLUS] = ACTIONS(4266), + [anon_sym_STAR] = ACTIONS(4266), + [anon_sym_SLASH] = ACTIONS(4266), + [anon_sym_PERCENT] = ACTIONS(4266), + [anon_sym_PIPE_PIPE] = ACTIONS(4268), + [anon_sym_AMP_AMP] = ACTIONS(4268), + [anon_sym_PIPE] = ACTIONS(4266), + [anon_sym_CARET] = ACTIONS(4266), + [anon_sym_AMP] = ACTIONS(4266), + [anon_sym_EQ_EQ] = ACTIONS(4268), + [anon_sym_BANG_EQ] = ACTIONS(4268), + [anon_sym_GT] = ACTIONS(4266), + [anon_sym_GT_EQ] = ACTIONS(4268), + [anon_sym_LT_EQ] = ACTIONS(4268), + [anon_sym_LT] = ACTIONS(4266), + [anon_sym_LT_LT] = ACTIONS(4266), + [anon_sym_GT_GT] = ACTIONS(4266), + [anon_sym_SEMI] = ACTIONS(4268), + [anon_sym___extension__] = ACTIONS(4266), + [anon_sym_extern] = ACTIONS(4266), + [anon_sym___attribute__] = ACTIONS(4266), + [anon_sym___attribute] = ACTIONS(4266), + [anon_sym_noreturn] = ACTIONS(4266), + [anon_sym_LBRACK] = ACTIONS(4268), + [anon_sym_RBRACK] = ACTIONS(4268), + [anon_sym___declspec] = ACTIONS(4266), + [anon_sym_LBRACE] = ACTIONS(4268), + [anon_sym_RBRACE] = ACTIONS(4268), + [anon_sym_signed] = ACTIONS(4266), + [anon_sym_unsigned] = ACTIONS(4266), + [anon_sym_long] = ACTIONS(4266), + [anon_sym_short] = ACTIONS(4266), + [anon_sym_static] = ACTIONS(4266), + [anon_sym_EQ] = ACTIONS(4266), + [anon_sym_ATautoreleasepool] = ACTIONS(4268), + [anon_sym_auto] = ACTIONS(4266), + [anon_sym_register] = ACTIONS(4266), + [anon_sym_inline] = ACTIONS(4266), + [anon_sym___inline] = ACTIONS(4266), + [anon_sym___inline__] = ACTIONS(4266), + [anon_sym___forceinline] = ACTIONS(4266), + [anon_sym_thread_local] = ACTIONS(4266), + [anon_sym___thread] = ACTIONS(4266), + [anon_sym_CG_EXTERN] = ACTIONS(4266), + [anon_sym_CG_INLINE] = ACTIONS(4266), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4266), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4266), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4266), + [anon_sym_IBOutlet] = ACTIONS(4266), + [anon_sym_IBInspectable] = ACTIONS(4266), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4266), + [anon_sym_NS_INLINE] = ACTIONS(4266), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4266), + [anon_sym_OBJC_EXPORT] = ACTIONS(4266), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4266), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4266), + [anon_sym_const] = ACTIONS(4266), + [anon_sym_constexpr] = ACTIONS(4266), + [anon_sym_volatile] = ACTIONS(4266), + [anon_sym_restrict] = ACTIONS(4266), + [anon_sym___restrict__] = ACTIONS(4266), + [anon_sym__Atomic] = ACTIONS(4266), + [anon_sym__Noreturn] = ACTIONS(4266), + [anon_sym__Nonnull] = ACTIONS(4266), + [anon_sym_nullable] = ACTIONS(4266), + [anon_sym__Complex] = ACTIONS(4266), + [anon_sym__Nullable] = ACTIONS(4266), + [anon_sym__Nullable_result] = ACTIONS(4266), + [anon_sym__Null_unspecified] = ACTIONS(4266), + [anon_sym___autoreleasing] = ACTIONS(4266), + [anon_sym___block] = ACTIONS(4266), + [anon_sym___bridge] = ACTIONS(4266), + [anon_sym___bridge_retained] = ACTIONS(4266), + [anon_sym___bridge_transfer] = ACTIONS(4266), + [anon_sym___complex] = ACTIONS(4266), + [anon_sym___const] = ACTIONS(4266), + [anon_sym___imag] = ACTIONS(4266), + [anon_sym___kindof] = ACTIONS(4266), + [anon_sym___nonnull] = ACTIONS(4266), + [anon_sym___nullable] = ACTIONS(4266), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4266), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4266), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4266), + [anon_sym___real] = ACTIONS(4266), + [anon_sym___strong] = ACTIONS(4266), + [anon_sym___unsafe_unretained] = ACTIONS(4266), + [anon_sym___unused] = ACTIONS(4266), + [anon_sym___weak] = ACTIONS(4266), + [anon_sym_alignas] = ACTIONS(4266), + [anon_sym__Alignas] = ACTIONS(4266), + [sym_primitive_type] = ACTIONS(4266), + [anon_sym_enum] = ACTIONS(4266), + [anon_sym_COLON] = ACTIONS(4268), + [anon_sym_struct] = ACTIONS(4266), + [anon_sym_union] = ACTIONS(4266), + [anon_sym_QMARK] = ACTIONS(4268), + [anon_sym_STAR_EQ] = ACTIONS(4268), + [anon_sym_SLASH_EQ] = ACTIONS(4268), + [anon_sym_PERCENT_EQ] = ACTIONS(4268), + [anon_sym_PLUS_EQ] = ACTIONS(4268), + [anon_sym_DASH_EQ] = ACTIONS(4268), + [anon_sym_LT_LT_EQ] = ACTIONS(4268), + [anon_sym_GT_GT_EQ] = ACTIONS(4268), + [anon_sym_AMP_EQ] = ACTIONS(4268), + [anon_sym_CARET_EQ] = ACTIONS(4268), + [anon_sym_PIPE_EQ] = ACTIONS(4268), + [anon_sym_DASH_DASH] = ACTIONS(4268), + [anon_sym_PLUS_PLUS] = ACTIONS(4268), + [anon_sym_DOT] = ACTIONS(4266), + [anon_sym_DASH_GT] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4266), + [anon_sym___typeof] = ACTIONS(4266), + [anon_sym_typeof] = ACTIONS(4266), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4266), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4266), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4266), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4266), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4266), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4266), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4266), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4266), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4266), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4266), + [anon_sym_NS_AVAILABLE] = ACTIONS(4266), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4266), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4266), + [anon_sym_API_AVAILABLE] = ACTIONS(4266), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4266), + [anon_sym_API_DEPRECATED] = ACTIONS(4266), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4266), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4266), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4266), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4266), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4266), + [anon_sym___deprecated_msg] = ACTIONS(4266), + [anon_sym___deprecated_enum_msg] = ACTIONS(4266), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4266), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4266), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4266), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4266), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4266), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4266), + [anon_sym_BOOL] = ACTIONS(4266), + [anon_sym_IMP] = ACTIONS(4266), + [anon_sym_SEL] = ACTIONS(4266), + [anon_sym_Class] = ACTIONS(4266), + [anon_sym_id] = ACTIONS(4266), + }, + [1517] = { + [sym_identifier] = ACTIONS(4270), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4272), + [anon_sym_COMMA] = ACTIONS(4272), + [anon_sym_RPAREN] = ACTIONS(4272), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4272), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4272), + [anon_sym_LPAREN2] = ACTIONS(4272), + [anon_sym_DASH] = ACTIONS(4270), + [anon_sym_PLUS] = ACTIONS(4270), + [anon_sym_STAR] = ACTIONS(4270), + [anon_sym_SLASH] = ACTIONS(4270), + [anon_sym_PERCENT] = ACTIONS(4270), + [anon_sym_PIPE_PIPE] = ACTIONS(4272), + [anon_sym_AMP_AMP] = ACTIONS(4272), + [anon_sym_PIPE] = ACTIONS(4270), + [anon_sym_CARET] = ACTIONS(4270), + [anon_sym_AMP] = ACTIONS(4270), + [anon_sym_EQ_EQ] = ACTIONS(4272), + [anon_sym_BANG_EQ] = ACTIONS(4272), + [anon_sym_GT] = ACTIONS(4270), + [anon_sym_GT_EQ] = ACTIONS(4272), + [anon_sym_LT_EQ] = ACTIONS(4272), + [anon_sym_LT] = ACTIONS(4270), + [anon_sym_LT_LT] = ACTIONS(4270), + [anon_sym_GT_GT] = ACTIONS(4270), + [anon_sym_SEMI] = ACTIONS(4272), + [anon_sym___extension__] = ACTIONS(4270), + [anon_sym_extern] = ACTIONS(4270), + [anon_sym___attribute__] = ACTIONS(4270), + [anon_sym___attribute] = ACTIONS(4270), + [anon_sym_noreturn] = ACTIONS(4270), + [anon_sym_LBRACK] = ACTIONS(4272), + [anon_sym_RBRACK] = ACTIONS(4272), + [anon_sym___declspec] = ACTIONS(4270), + [anon_sym_LBRACE] = ACTIONS(4272), + [anon_sym_RBRACE] = ACTIONS(4272), + [anon_sym_signed] = ACTIONS(4270), + [anon_sym_unsigned] = ACTIONS(4270), + [anon_sym_long] = ACTIONS(4270), + [anon_sym_short] = ACTIONS(4270), + [anon_sym_static] = ACTIONS(4270), + [anon_sym_EQ] = ACTIONS(4270), + [anon_sym_ATautoreleasepool] = ACTIONS(4272), + [anon_sym_auto] = ACTIONS(4270), + [anon_sym_register] = ACTIONS(4270), + [anon_sym_inline] = ACTIONS(4270), + [anon_sym___inline] = ACTIONS(4270), + [anon_sym___inline__] = ACTIONS(4270), + [anon_sym___forceinline] = ACTIONS(4270), + [anon_sym_thread_local] = ACTIONS(4270), + [anon_sym___thread] = ACTIONS(4270), + [anon_sym_CG_EXTERN] = ACTIONS(4270), + [anon_sym_CG_INLINE] = ACTIONS(4270), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4270), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4270), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4270), + [anon_sym_IBOutlet] = ACTIONS(4270), + [anon_sym_IBInspectable] = ACTIONS(4270), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4270), + [anon_sym_NS_INLINE] = ACTIONS(4270), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4270), + [anon_sym_OBJC_EXPORT] = ACTIONS(4270), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4270), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4270), + [anon_sym_const] = ACTIONS(4270), + [anon_sym_constexpr] = ACTIONS(4270), + [anon_sym_volatile] = ACTIONS(4270), + [anon_sym_restrict] = ACTIONS(4270), + [anon_sym___restrict__] = ACTIONS(4270), + [anon_sym__Atomic] = ACTIONS(4270), + [anon_sym__Noreturn] = ACTIONS(4270), + [anon_sym__Nonnull] = ACTIONS(4270), + [anon_sym_nullable] = ACTIONS(4270), + [anon_sym__Complex] = ACTIONS(4270), + [anon_sym__Nullable] = ACTIONS(4270), + [anon_sym__Nullable_result] = ACTIONS(4270), + [anon_sym__Null_unspecified] = ACTIONS(4270), + [anon_sym___autoreleasing] = ACTIONS(4270), + [anon_sym___block] = ACTIONS(4270), + [anon_sym___bridge] = ACTIONS(4270), + [anon_sym___bridge_retained] = ACTIONS(4270), + [anon_sym___bridge_transfer] = ACTIONS(4270), + [anon_sym___complex] = ACTIONS(4270), + [anon_sym___const] = ACTIONS(4270), + [anon_sym___imag] = ACTIONS(4270), + [anon_sym___kindof] = ACTIONS(4270), + [anon_sym___nonnull] = ACTIONS(4270), + [anon_sym___nullable] = ACTIONS(4270), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4270), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4270), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4270), + [anon_sym___real] = ACTIONS(4270), + [anon_sym___strong] = ACTIONS(4270), + [anon_sym___unsafe_unretained] = ACTIONS(4270), + [anon_sym___unused] = ACTIONS(4270), + [anon_sym___weak] = ACTIONS(4270), + [anon_sym_alignas] = ACTIONS(4270), + [anon_sym__Alignas] = ACTIONS(4270), + [sym_primitive_type] = ACTIONS(4270), + [anon_sym_enum] = ACTIONS(4270), + [anon_sym_COLON] = ACTIONS(4272), + [anon_sym_struct] = ACTIONS(4270), + [anon_sym_union] = ACTIONS(4270), + [anon_sym_QMARK] = ACTIONS(4272), + [anon_sym_STAR_EQ] = ACTIONS(4272), + [anon_sym_SLASH_EQ] = ACTIONS(4272), + [anon_sym_PERCENT_EQ] = ACTIONS(4272), + [anon_sym_PLUS_EQ] = ACTIONS(4272), + [anon_sym_DASH_EQ] = ACTIONS(4272), + [anon_sym_LT_LT_EQ] = ACTIONS(4272), + [anon_sym_GT_GT_EQ] = ACTIONS(4272), + [anon_sym_AMP_EQ] = ACTIONS(4272), + [anon_sym_CARET_EQ] = ACTIONS(4272), + [anon_sym_PIPE_EQ] = ACTIONS(4272), + [anon_sym_DASH_DASH] = ACTIONS(4272), + [anon_sym_PLUS_PLUS] = ACTIONS(4272), + [anon_sym_DOT] = ACTIONS(4270), + [anon_sym_DASH_GT] = ACTIONS(4272), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4270), + [anon_sym___typeof] = ACTIONS(4270), + [anon_sym_typeof] = ACTIONS(4270), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4270), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4270), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4270), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4270), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4270), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4270), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4270), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4270), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4270), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4270), + [anon_sym_NS_AVAILABLE] = ACTIONS(4270), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4270), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4270), + [anon_sym_API_AVAILABLE] = ACTIONS(4270), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4270), + [anon_sym_API_DEPRECATED] = ACTIONS(4270), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4270), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4270), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4270), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4270), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4270), + [anon_sym___deprecated_msg] = ACTIONS(4270), + [anon_sym___deprecated_enum_msg] = ACTIONS(4270), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4270), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4270), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4270), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4270), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4270), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4270), + [anon_sym_BOOL] = ACTIONS(4270), + [anon_sym_IMP] = ACTIONS(4270), + [anon_sym_SEL] = ACTIONS(4270), + [anon_sym_Class] = ACTIONS(4270), + [anon_sym_id] = ACTIONS(4270), + }, + [1518] = { + [sym_identifier] = ACTIONS(4274), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_RPAREN] = ACTIONS(4276), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4276), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4276), + [anon_sym_LPAREN2] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4274), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE] = ACTIONS(4274), + [anon_sym_CARET] = ACTIONS(4274), + [anon_sym_AMP] = ACTIONS(4274), + [anon_sym_EQ_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4276), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_LT_LT] = ACTIONS(4274), + [anon_sym_GT_GT] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym___extension__] = ACTIONS(4274), + [anon_sym_extern] = ACTIONS(4274), + [anon_sym___attribute__] = ACTIONS(4274), + [anon_sym___attribute] = ACTIONS(4274), + [anon_sym_noreturn] = ACTIONS(4274), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_RBRACK] = ACTIONS(4276), + [anon_sym___declspec] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(4276), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_signed] = ACTIONS(4274), + [anon_sym_unsigned] = ACTIONS(4274), + [anon_sym_long] = ACTIONS(4274), + [anon_sym_short] = ACTIONS(4274), + [anon_sym_static] = ACTIONS(4274), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_ATautoreleasepool] = ACTIONS(4276), + [anon_sym_auto] = ACTIONS(4274), + [anon_sym_register] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym___inline] = ACTIONS(4274), + [anon_sym___inline__] = ACTIONS(4274), + [anon_sym___forceinline] = ACTIONS(4274), + [anon_sym_thread_local] = ACTIONS(4274), + [anon_sym___thread] = ACTIONS(4274), + [anon_sym_CG_EXTERN] = ACTIONS(4274), + [anon_sym_CG_INLINE] = ACTIONS(4274), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4274), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4274), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4274), + [anon_sym_IBOutlet] = ACTIONS(4274), + [anon_sym_IBInspectable] = ACTIONS(4274), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4274), + [anon_sym_NS_INLINE] = ACTIONS(4274), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4274), + [anon_sym_OBJC_EXPORT] = ACTIONS(4274), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4274), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4274), + [anon_sym_const] = ACTIONS(4274), + [anon_sym_constexpr] = ACTIONS(4274), + [anon_sym_volatile] = ACTIONS(4274), + [anon_sym_restrict] = ACTIONS(4274), + [anon_sym___restrict__] = ACTIONS(4274), + [anon_sym__Atomic] = ACTIONS(4274), + [anon_sym__Noreturn] = ACTIONS(4274), + [anon_sym__Nonnull] = ACTIONS(4274), + [anon_sym_nullable] = ACTIONS(4274), + [anon_sym__Complex] = ACTIONS(4274), + [anon_sym__Nullable] = ACTIONS(4274), + [anon_sym__Nullable_result] = ACTIONS(4274), + [anon_sym__Null_unspecified] = ACTIONS(4274), + [anon_sym___autoreleasing] = ACTIONS(4274), + [anon_sym___block] = ACTIONS(4274), + [anon_sym___bridge] = ACTIONS(4274), + [anon_sym___bridge_retained] = ACTIONS(4274), + [anon_sym___bridge_transfer] = ACTIONS(4274), + [anon_sym___complex] = ACTIONS(4274), + [anon_sym___const] = ACTIONS(4274), + [anon_sym___imag] = ACTIONS(4274), + [anon_sym___kindof] = ACTIONS(4274), + [anon_sym___nonnull] = ACTIONS(4274), + [anon_sym___nullable] = ACTIONS(4274), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4274), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4274), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4274), + [anon_sym___real] = ACTIONS(4274), + [anon_sym___strong] = ACTIONS(4274), + [anon_sym___unsafe_unretained] = ACTIONS(4274), + [anon_sym___unused] = ACTIONS(4274), + [anon_sym___weak] = ACTIONS(4274), + [anon_sym_alignas] = ACTIONS(4274), + [anon_sym__Alignas] = ACTIONS(4274), + [sym_primitive_type] = ACTIONS(4274), + [anon_sym_enum] = ACTIONS(4274), + [anon_sym_COLON] = ACTIONS(4276), + [anon_sym_struct] = ACTIONS(4274), + [anon_sym_union] = ACTIONS(4274), + [anon_sym_QMARK] = ACTIONS(4276), + [anon_sym_STAR_EQ] = ACTIONS(4276), + [anon_sym_SLASH_EQ] = ACTIONS(4276), + [anon_sym_PERCENT_EQ] = ACTIONS(4276), + [anon_sym_PLUS_EQ] = ACTIONS(4276), + [anon_sym_DASH_EQ] = ACTIONS(4276), + [anon_sym_LT_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_GT_EQ] = ACTIONS(4276), + [anon_sym_AMP_EQ] = ACTIONS(4276), + [anon_sym_CARET_EQ] = ACTIONS(4276), + [anon_sym_PIPE_EQ] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_DASH_GT] = ACTIONS(4276), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4274), + [anon_sym___typeof] = ACTIONS(4274), + [anon_sym_typeof] = ACTIONS(4274), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4274), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4274), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4274), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4274), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4274), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4274), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4274), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4274), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4274), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4274), + [anon_sym_NS_AVAILABLE] = ACTIONS(4274), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4274), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4274), + [anon_sym_API_AVAILABLE] = ACTIONS(4274), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4274), + [anon_sym_API_DEPRECATED] = ACTIONS(4274), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4274), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4274), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4274), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4274), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4274), + [anon_sym___deprecated_msg] = ACTIONS(4274), + [anon_sym___deprecated_enum_msg] = ACTIONS(4274), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4274), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4274), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4274), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4274), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4274), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4274), + [anon_sym_BOOL] = ACTIONS(4274), + [anon_sym_IMP] = ACTIONS(4274), + [anon_sym_SEL] = ACTIONS(4274), + [anon_sym_Class] = ACTIONS(4274), + [anon_sym_id] = ACTIONS(4274), + }, + [1519] = { + [sym_identifier] = ACTIONS(4278), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4280), + [anon_sym_COMMA] = ACTIONS(4280), + [anon_sym_RPAREN] = ACTIONS(4280), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4280), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4280), + [anon_sym_LPAREN2] = ACTIONS(4280), + [anon_sym_DASH] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_STAR] = ACTIONS(4278), + [anon_sym_SLASH] = ACTIONS(4278), + [anon_sym_PERCENT] = ACTIONS(4278), + [anon_sym_PIPE_PIPE] = ACTIONS(4280), + [anon_sym_AMP_AMP] = ACTIONS(4280), + [anon_sym_PIPE] = ACTIONS(4278), + [anon_sym_CARET] = ACTIONS(4278), + [anon_sym_AMP] = ACTIONS(4278), + [anon_sym_EQ_EQ] = ACTIONS(4280), + [anon_sym_BANG_EQ] = ACTIONS(4280), + [anon_sym_GT] = ACTIONS(4278), + [anon_sym_GT_EQ] = ACTIONS(4280), + [anon_sym_LT_EQ] = ACTIONS(4280), + [anon_sym_LT] = ACTIONS(4278), + [anon_sym_LT_LT] = ACTIONS(4278), + [anon_sym_GT_GT] = ACTIONS(4278), + [anon_sym_SEMI] = ACTIONS(4280), + [anon_sym___extension__] = ACTIONS(4278), + [anon_sym_extern] = ACTIONS(4278), + [anon_sym___attribute__] = ACTIONS(4278), + [anon_sym___attribute] = ACTIONS(4278), + [anon_sym_noreturn] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_RBRACK] = ACTIONS(4280), + [anon_sym___declspec] = ACTIONS(4278), + [anon_sym_LBRACE] = ACTIONS(4280), + [anon_sym_RBRACE] = ACTIONS(4280), + [anon_sym_signed] = ACTIONS(4278), + [anon_sym_unsigned] = ACTIONS(4278), + [anon_sym_long] = ACTIONS(4278), + [anon_sym_short] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_EQ] = ACTIONS(4278), + [anon_sym_ATautoreleasepool] = ACTIONS(4280), + [anon_sym_auto] = ACTIONS(4278), + [anon_sym_register] = ACTIONS(4278), + [anon_sym_inline] = ACTIONS(4278), + [anon_sym___inline] = ACTIONS(4278), + [anon_sym___inline__] = ACTIONS(4278), + [anon_sym___forceinline] = ACTIONS(4278), + [anon_sym_thread_local] = ACTIONS(4278), + [anon_sym___thread] = ACTIONS(4278), + [anon_sym_CG_EXTERN] = ACTIONS(4278), + [anon_sym_CG_INLINE] = ACTIONS(4278), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4278), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4278), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4278), + [anon_sym_IBOutlet] = ACTIONS(4278), + [anon_sym_IBInspectable] = ACTIONS(4278), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4278), + [anon_sym_NS_INLINE] = ACTIONS(4278), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4278), + [anon_sym_OBJC_EXPORT] = ACTIONS(4278), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4278), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4278), + [anon_sym_const] = ACTIONS(4278), + [anon_sym_constexpr] = ACTIONS(4278), + [anon_sym_volatile] = ACTIONS(4278), + [anon_sym_restrict] = ACTIONS(4278), + [anon_sym___restrict__] = ACTIONS(4278), + [anon_sym__Atomic] = ACTIONS(4278), + [anon_sym__Noreturn] = ACTIONS(4278), + [anon_sym__Nonnull] = ACTIONS(4278), + [anon_sym_nullable] = ACTIONS(4278), + [anon_sym__Complex] = ACTIONS(4278), + [anon_sym__Nullable] = ACTIONS(4278), + [anon_sym__Nullable_result] = ACTIONS(4278), + [anon_sym__Null_unspecified] = ACTIONS(4278), + [anon_sym___autoreleasing] = ACTIONS(4278), + [anon_sym___block] = ACTIONS(4278), + [anon_sym___bridge] = ACTIONS(4278), + [anon_sym___bridge_retained] = ACTIONS(4278), + [anon_sym___bridge_transfer] = ACTIONS(4278), + [anon_sym___complex] = ACTIONS(4278), + [anon_sym___const] = ACTIONS(4278), + [anon_sym___imag] = ACTIONS(4278), + [anon_sym___kindof] = ACTIONS(4278), + [anon_sym___nonnull] = ACTIONS(4278), + [anon_sym___nullable] = ACTIONS(4278), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4278), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4278), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4278), + [anon_sym___real] = ACTIONS(4278), + [anon_sym___strong] = ACTIONS(4278), + [anon_sym___unsafe_unretained] = ACTIONS(4278), + [anon_sym___unused] = ACTIONS(4278), + [anon_sym___weak] = ACTIONS(4278), + [anon_sym_alignas] = ACTIONS(4278), + [anon_sym__Alignas] = ACTIONS(4278), + [sym_primitive_type] = ACTIONS(4278), + [anon_sym_enum] = ACTIONS(4278), + [anon_sym_COLON] = ACTIONS(4280), + [anon_sym_struct] = ACTIONS(4278), + [anon_sym_union] = ACTIONS(4278), + [anon_sym_QMARK] = ACTIONS(4280), + [anon_sym_STAR_EQ] = ACTIONS(4280), + [anon_sym_SLASH_EQ] = ACTIONS(4280), + [anon_sym_PERCENT_EQ] = ACTIONS(4280), + [anon_sym_PLUS_EQ] = ACTIONS(4280), + [anon_sym_DASH_EQ] = ACTIONS(4280), + [anon_sym_LT_LT_EQ] = ACTIONS(4280), + [anon_sym_GT_GT_EQ] = ACTIONS(4280), + [anon_sym_AMP_EQ] = ACTIONS(4280), + [anon_sym_CARET_EQ] = ACTIONS(4280), + [anon_sym_PIPE_EQ] = ACTIONS(4280), + [anon_sym_DASH_DASH] = ACTIONS(4280), + [anon_sym_PLUS_PLUS] = ACTIONS(4280), + [anon_sym_DOT] = ACTIONS(4278), + [anon_sym_DASH_GT] = ACTIONS(4280), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4278), + [anon_sym___typeof] = ACTIONS(4278), + [anon_sym_typeof] = ACTIONS(4278), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4278), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4278), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4278), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4278), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4278), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4278), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4278), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4278), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4278), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4278), + [anon_sym_NS_AVAILABLE] = ACTIONS(4278), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4278), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4278), + [anon_sym_API_AVAILABLE] = ACTIONS(4278), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4278), + [anon_sym_API_DEPRECATED] = ACTIONS(4278), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4278), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4278), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4278), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4278), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4278), + [anon_sym___deprecated_msg] = ACTIONS(4278), + [anon_sym___deprecated_enum_msg] = ACTIONS(4278), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4278), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4278), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4278), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4278), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4278), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4278), + [anon_sym_BOOL] = ACTIONS(4278), + [anon_sym_IMP] = ACTIONS(4278), + [anon_sym_SEL] = ACTIONS(4278), + [anon_sym_Class] = ACTIONS(4278), + [anon_sym_id] = ACTIONS(4278), + }, + [1520] = { + [sym_identifier] = ACTIONS(4282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4284), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_RPAREN] = ACTIONS(4284), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4284), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4284), + [anon_sym_LPAREN2] = ACTIONS(4284), + [anon_sym_DASH] = ACTIONS(4282), + [anon_sym_PLUS] = ACTIONS(4282), + [anon_sym_STAR] = ACTIONS(4282), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_PERCENT] = ACTIONS(4282), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4282), + [anon_sym_CARET] = ACTIONS(4282), + [anon_sym_AMP] = ACTIONS(4282), + [anon_sym_EQ_EQ] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4284), + [anon_sym_GT] = ACTIONS(4282), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_LT] = ACTIONS(4282), + [anon_sym_LT_LT] = ACTIONS(4282), + [anon_sym_GT_GT] = ACTIONS(4282), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym___extension__] = ACTIONS(4282), + [anon_sym_extern] = ACTIONS(4282), + [anon_sym___attribute__] = ACTIONS(4282), + [anon_sym___attribute] = ACTIONS(4282), + [anon_sym_noreturn] = ACTIONS(4282), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_RBRACK] = ACTIONS(4284), + [anon_sym___declspec] = ACTIONS(4282), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_signed] = ACTIONS(4282), + [anon_sym_unsigned] = ACTIONS(4282), + [anon_sym_long] = ACTIONS(4282), + [anon_sym_short] = ACTIONS(4282), + [anon_sym_static] = ACTIONS(4282), + [anon_sym_EQ] = ACTIONS(4282), + [anon_sym_ATautoreleasepool] = ACTIONS(4284), + [anon_sym_auto] = ACTIONS(4282), + [anon_sym_register] = ACTIONS(4282), + [anon_sym_inline] = ACTIONS(4282), + [anon_sym___inline] = ACTIONS(4282), + [anon_sym___inline__] = ACTIONS(4282), + [anon_sym___forceinline] = ACTIONS(4282), + [anon_sym_thread_local] = ACTIONS(4282), + [anon_sym___thread] = ACTIONS(4282), + [anon_sym_CG_EXTERN] = ACTIONS(4282), + [anon_sym_CG_INLINE] = ACTIONS(4282), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4282), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4282), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4282), + [anon_sym_IBOutlet] = ACTIONS(4282), + [anon_sym_IBInspectable] = ACTIONS(4282), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4282), + [anon_sym_NS_INLINE] = ACTIONS(4282), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4282), + [anon_sym_OBJC_EXPORT] = ACTIONS(4282), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4282), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4282), + [anon_sym_const] = ACTIONS(4282), + [anon_sym_constexpr] = ACTIONS(4282), + [anon_sym_volatile] = ACTIONS(4282), + [anon_sym_restrict] = ACTIONS(4282), + [anon_sym___restrict__] = ACTIONS(4282), + [anon_sym__Atomic] = ACTIONS(4282), + [anon_sym__Noreturn] = ACTIONS(4282), + [anon_sym__Nonnull] = ACTIONS(4282), + [anon_sym_nullable] = ACTIONS(4282), + [anon_sym__Complex] = ACTIONS(4282), + [anon_sym__Nullable] = ACTIONS(4282), + [anon_sym__Nullable_result] = ACTIONS(4282), + [anon_sym__Null_unspecified] = ACTIONS(4282), + [anon_sym___autoreleasing] = ACTIONS(4282), + [anon_sym___block] = ACTIONS(4282), + [anon_sym___bridge] = ACTIONS(4282), + [anon_sym___bridge_retained] = ACTIONS(4282), + [anon_sym___bridge_transfer] = ACTIONS(4282), + [anon_sym___complex] = ACTIONS(4282), + [anon_sym___const] = ACTIONS(4282), + [anon_sym___imag] = ACTIONS(4282), + [anon_sym___kindof] = ACTIONS(4282), + [anon_sym___nonnull] = ACTIONS(4282), + [anon_sym___nullable] = ACTIONS(4282), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4282), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4282), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4282), + [anon_sym___real] = ACTIONS(4282), + [anon_sym___strong] = ACTIONS(4282), + [anon_sym___unsafe_unretained] = ACTIONS(4282), + [anon_sym___unused] = ACTIONS(4282), + [anon_sym___weak] = ACTIONS(4282), + [anon_sym_alignas] = ACTIONS(4282), + [anon_sym__Alignas] = ACTIONS(4282), + [sym_primitive_type] = ACTIONS(4282), + [anon_sym_enum] = ACTIONS(4282), + [anon_sym_COLON] = ACTIONS(4284), + [anon_sym_struct] = ACTIONS(4282), + [anon_sym_union] = ACTIONS(4282), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DOT] = ACTIONS(4282), + [anon_sym_DASH_GT] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4282), + [anon_sym___typeof] = ACTIONS(4282), + [anon_sym_typeof] = ACTIONS(4282), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4282), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4282), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4282), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4282), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4282), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4282), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4282), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4282), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4282), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4282), + [anon_sym_NS_AVAILABLE] = ACTIONS(4282), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4282), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4282), + [anon_sym_API_AVAILABLE] = ACTIONS(4282), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4282), + [anon_sym_API_DEPRECATED] = ACTIONS(4282), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4282), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4282), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4282), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4282), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4282), + [anon_sym___deprecated_msg] = ACTIONS(4282), + [anon_sym___deprecated_enum_msg] = ACTIONS(4282), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4282), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4282), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4282), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4282), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4282), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4282), + [anon_sym_BOOL] = ACTIONS(4282), + [anon_sym_IMP] = ACTIONS(4282), + [anon_sym_SEL] = ACTIONS(4282), + [anon_sym_Class] = ACTIONS(4282), + [anon_sym_id] = ACTIONS(4282), + }, + [1521] = { + [sym_identifier] = ACTIONS(4286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4288), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_RPAREN] = ACTIONS(4288), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4288), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4288), + [anon_sym_LPAREN2] = ACTIONS(4288), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4286), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(4286), + [anon_sym_AMP] = ACTIONS(4286), + [anon_sym_EQ_EQ] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4288), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_LT_LT] = ACTIONS(4286), + [anon_sym_GT_GT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym___extension__] = ACTIONS(4286), + [anon_sym_extern] = ACTIONS(4286), + [anon_sym___attribute__] = ACTIONS(4286), + [anon_sym___attribute] = ACTIONS(4286), + [anon_sym_noreturn] = ACTIONS(4286), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_RBRACK] = ACTIONS(4288), + [anon_sym___declspec] = ACTIONS(4286), + [anon_sym_LBRACE] = ACTIONS(4288), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_signed] = ACTIONS(4286), + [anon_sym_unsigned] = ACTIONS(4286), + [anon_sym_long] = ACTIONS(4286), + [anon_sym_short] = ACTIONS(4286), + [anon_sym_static] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_ATautoreleasepool] = ACTIONS(4288), + [anon_sym_auto] = ACTIONS(4286), + [anon_sym_register] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym___inline] = ACTIONS(4286), + [anon_sym___inline__] = ACTIONS(4286), + [anon_sym___forceinline] = ACTIONS(4286), + [anon_sym_thread_local] = ACTIONS(4286), + [anon_sym___thread] = ACTIONS(4286), + [anon_sym_CG_EXTERN] = ACTIONS(4286), + [anon_sym_CG_INLINE] = ACTIONS(4286), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4286), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4286), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4286), + [anon_sym_IBOutlet] = ACTIONS(4286), + [anon_sym_IBInspectable] = ACTIONS(4286), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4286), + [anon_sym_NS_INLINE] = ACTIONS(4286), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4286), + [anon_sym_OBJC_EXPORT] = ACTIONS(4286), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4286), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4286), + [anon_sym_const] = ACTIONS(4286), + [anon_sym_constexpr] = ACTIONS(4286), + [anon_sym_volatile] = ACTIONS(4286), + [anon_sym_restrict] = ACTIONS(4286), + [anon_sym___restrict__] = ACTIONS(4286), + [anon_sym__Atomic] = ACTIONS(4286), + [anon_sym__Noreturn] = ACTIONS(4286), + [anon_sym__Nonnull] = ACTIONS(4286), + [anon_sym_nullable] = ACTIONS(4286), + [anon_sym__Complex] = ACTIONS(4286), + [anon_sym__Nullable] = ACTIONS(4286), + [anon_sym__Nullable_result] = ACTIONS(4286), + [anon_sym__Null_unspecified] = ACTIONS(4286), + [anon_sym___autoreleasing] = ACTIONS(4286), + [anon_sym___block] = ACTIONS(4286), + [anon_sym___bridge] = ACTIONS(4286), + [anon_sym___bridge_retained] = ACTIONS(4286), + [anon_sym___bridge_transfer] = ACTIONS(4286), + [anon_sym___complex] = ACTIONS(4286), + [anon_sym___const] = ACTIONS(4286), + [anon_sym___imag] = ACTIONS(4286), + [anon_sym___kindof] = ACTIONS(4286), + [anon_sym___nonnull] = ACTIONS(4286), + [anon_sym___nullable] = ACTIONS(4286), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4286), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4286), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4286), + [anon_sym___real] = ACTIONS(4286), + [anon_sym___strong] = ACTIONS(4286), + [anon_sym___unsafe_unretained] = ACTIONS(4286), + [anon_sym___unused] = ACTIONS(4286), + [anon_sym___weak] = ACTIONS(4286), + [anon_sym_alignas] = ACTIONS(4286), + [anon_sym__Alignas] = ACTIONS(4286), + [sym_primitive_type] = ACTIONS(4286), + [anon_sym_enum] = ACTIONS(4286), + [anon_sym_COLON] = ACTIONS(4288), + [anon_sym_struct] = ACTIONS(4286), + [anon_sym_union] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_LT_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_GT_EQ] = ACTIONS(4288), + [anon_sym_AMP_EQ] = ACTIONS(4288), + [anon_sym_CARET_EQ] = ACTIONS(4288), + [anon_sym_PIPE_EQ] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_DASH_GT] = ACTIONS(4288), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4286), + [anon_sym___typeof] = ACTIONS(4286), + [anon_sym_typeof] = ACTIONS(4286), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4286), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4286), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4286), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4286), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4286), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4286), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4286), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4286), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4286), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4286), + [anon_sym_NS_AVAILABLE] = ACTIONS(4286), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4286), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4286), + [anon_sym_API_AVAILABLE] = ACTIONS(4286), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4286), + [anon_sym_API_DEPRECATED] = ACTIONS(4286), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4286), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4286), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4286), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4286), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4286), + [anon_sym___deprecated_msg] = ACTIONS(4286), + [anon_sym___deprecated_enum_msg] = ACTIONS(4286), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4286), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4286), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4286), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4286), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4286), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4286), + [anon_sym_BOOL] = ACTIONS(4286), + [anon_sym_IMP] = ACTIONS(4286), + [anon_sym_SEL] = ACTIONS(4286), + [anon_sym_Class] = ACTIONS(4286), + [anon_sym_id] = ACTIONS(4286), + }, + [1522] = { + [sym_identifier] = ACTIONS(4290), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4292), + [anon_sym_COMMA] = ACTIONS(4292), + [anon_sym_RPAREN] = ACTIONS(4292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4292), + [anon_sym_LPAREN2] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4290), + [anon_sym_PERCENT] = ACTIONS(4290), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE] = ACTIONS(4290), + [anon_sym_CARET] = ACTIONS(4290), + [anon_sym_AMP] = ACTIONS(4290), + [anon_sym_EQ_EQ] = ACTIONS(4292), + [anon_sym_BANG_EQ] = ACTIONS(4292), + [anon_sym_GT] = ACTIONS(4290), + [anon_sym_GT_EQ] = ACTIONS(4292), + [anon_sym_LT_EQ] = ACTIONS(4292), + [anon_sym_LT] = ACTIONS(4290), + [anon_sym_LT_LT] = ACTIONS(4290), + [anon_sym_GT_GT] = ACTIONS(4290), + [anon_sym_SEMI] = ACTIONS(4292), + [anon_sym___extension__] = ACTIONS(4290), + [anon_sym_extern] = ACTIONS(4290), + [anon_sym___attribute__] = ACTIONS(4290), + [anon_sym___attribute] = ACTIONS(4290), + [anon_sym_noreturn] = ACTIONS(4290), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_RBRACK] = ACTIONS(4292), + [anon_sym___declspec] = ACTIONS(4290), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4292), + [anon_sym_signed] = ACTIONS(4290), + [anon_sym_unsigned] = ACTIONS(4290), + [anon_sym_long] = ACTIONS(4290), + [anon_sym_short] = ACTIONS(4290), + [anon_sym_static] = ACTIONS(4290), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_ATautoreleasepool] = ACTIONS(4292), + [anon_sym_auto] = ACTIONS(4290), + [anon_sym_register] = ACTIONS(4290), + [anon_sym_inline] = ACTIONS(4290), + [anon_sym___inline] = ACTIONS(4290), + [anon_sym___inline__] = ACTIONS(4290), + [anon_sym___forceinline] = ACTIONS(4290), + [anon_sym_thread_local] = ACTIONS(4290), + [anon_sym___thread] = ACTIONS(4290), + [anon_sym_CG_EXTERN] = ACTIONS(4290), + [anon_sym_CG_INLINE] = ACTIONS(4290), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4290), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4290), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4290), + [anon_sym_IBOutlet] = ACTIONS(4290), + [anon_sym_IBInspectable] = ACTIONS(4290), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4290), + [anon_sym_NS_INLINE] = ACTIONS(4290), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4290), + [anon_sym_OBJC_EXPORT] = ACTIONS(4290), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4290), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4290), + [anon_sym_const] = ACTIONS(4290), + [anon_sym_constexpr] = ACTIONS(4290), + [anon_sym_volatile] = ACTIONS(4290), + [anon_sym_restrict] = ACTIONS(4290), + [anon_sym___restrict__] = ACTIONS(4290), + [anon_sym__Atomic] = ACTIONS(4290), + [anon_sym__Noreturn] = ACTIONS(4290), + [anon_sym__Nonnull] = ACTIONS(4290), + [anon_sym_nullable] = ACTIONS(4290), + [anon_sym__Complex] = ACTIONS(4290), + [anon_sym__Nullable] = ACTIONS(4290), + [anon_sym__Nullable_result] = ACTIONS(4290), + [anon_sym__Null_unspecified] = ACTIONS(4290), + [anon_sym___autoreleasing] = ACTIONS(4290), + [anon_sym___block] = ACTIONS(4290), + [anon_sym___bridge] = ACTIONS(4290), + [anon_sym___bridge_retained] = ACTIONS(4290), + [anon_sym___bridge_transfer] = ACTIONS(4290), + [anon_sym___complex] = ACTIONS(4290), + [anon_sym___const] = ACTIONS(4290), + [anon_sym___imag] = ACTIONS(4290), + [anon_sym___kindof] = ACTIONS(4290), + [anon_sym___nonnull] = ACTIONS(4290), + [anon_sym___nullable] = ACTIONS(4290), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4290), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4290), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4290), + [anon_sym___real] = ACTIONS(4290), + [anon_sym___strong] = ACTIONS(4290), + [anon_sym___unsafe_unretained] = ACTIONS(4290), + [anon_sym___unused] = ACTIONS(4290), + [anon_sym___weak] = ACTIONS(4290), + [anon_sym_alignas] = ACTIONS(4290), + [anon_sym__Alignas] = ACTIONS(4290), + [sym_primitive_type] = ACTIONS(4290), + [anon_sym_enum] = ACTIONS(4290), + [anon_sym_COLON] = ACTIONS(4292), + [anon_sym_struct] = ACTIONS(4290), + [anon_sym_union] = ACTIONS(4290), + [anon_sym_QMARK] = ACTIONS(4292), + [anon_sym_STAR_EQ] = ACTIONS(4292), + [anon_sym_SLASH_EQ] = ACTIONS(4292), + [anon_sym_PERCENT_EQ] = ACTIONS(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4292), + [anon_sym_DASH_EQ] = ACTIONS(4292), + [anon_sym_LT_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_GT_EQ] = ACTIONS(4292), + [anon_sym_AMP_EQ] = ACTIONS(4292), + [anon_sym_CARET_EQ] = ACTIONS(4292), + [anon_sym_PIPE_EQ] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4290), + [anon_sym_DASH_GT] = ACTIONS(4292), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4290), + [anon_sym___typeof] = ACTIONS(4290), + [anon_sym_typeof] = ACTIONS(4290), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4290), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4290), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4290), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4290), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4290), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4290), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4290), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4290), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4290), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4290), + [anon_sym_NS_AVAILABLE] = ACTIONS(4290), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4290), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4290), + [anon_sym_API_AVAILABLE] = ACTIONS(4290), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4290), + [anon_sym_API_DEPRECATED] = ACTIONS(4290), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4290), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4290), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4290), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4290), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4290), + [anon_sym___deprecated_msg] = ACTIONS(4290), + [anon_sym___deprecated_enum_msg] = ACTIONS(4290), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4290), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4290), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4290), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4290), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4290), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4290), + [anon_sym_BOOL] = ACTIONS(4290), + [anon_sym_IMP] = ACTIONS(4290), + [anon_sym_SEL] = ACTIONS(4290), + [anon_sym_Class] = ACTIONS(4290), + [anon_sym_id] = ACTIONS(4290), + }, + [1523] = { + [sym_preproc_def] = STATE(1565), + [sym_preproc_function_def] = STATE(1565), + [sym_preproc_call] = STATE(1565), + [sym_preproc_if_in_field_declaration_list] = STATE(1565), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1565), + [sym_preproc_else_in_field_declaration_list] = STATE(5940), + [sym_preproc_elif_in_field_declaration_list] = STATE(5940), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(5940), + [sym__declaration_modifiers] = STATE(2246), + [sym__declaration_specifiers] = STATE(4626), + [sym_attribute_specifier] = STATE(2246), + [sym_attribute_declaration] = STATE(2246), + [sym_ms_declspec_modifier] = STATE(2246), + [sym_storage_class_specifier] = STATE(2246), + [sym_type_qualifier] = STATE(2246), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__field_declaration_list_item] = STATE(1565), + [sym_field_declaration] = STATE(1565), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2246), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_atdef_field] = STATE(1565), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1565), + [aux_sym__declaration_specifiers_repeat1] = STATE(2246), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(4294), + [aux_sym_preproc_if_token1] = ACTIONS(4296), + [aux_sym_preproc_if_token2] = ACTIONS(4298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4300), + [aux_sym_preproc_else_token1] = ACTIONS(4302), + [aux_sym_preproc_elif_token1] = ACTIONS(4304), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4306), + [sym_preproc_directive] = ACTIONS(4308), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4310), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + [anon_sym_ATdefs] = ACTIONS(4312), + }, + [1524] = { + [sym_preproc_def] = STATE(1565), + [sym_preproc_function_def] = STATE(1565), + [sym_preproc_call] = STATE(1565), + [sym_preproc_if_in_field_declaration_list] = STATE(1565), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1565), + [sym_preproc_else_in_field_declaration_list] = STATE(6063), + [sym_preproc_elif_in_field_declaration_list] = STATE(6063), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(6063), + [sym__declaration_modifiers] = STATE(2246), + [sym__declaration_specifiers] = STATE(4626), + [sym_attribute_specifier] = STATE(2246), + [sym_attribute_declaration] = STATE(2246), + [sym_ms_declspec_modifier] = STATE(2246), + [sym_storage_class_specifier] = STATE(2246), + [sym_type_qualifier] = STATE(2246), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__field_declaration_list_item] = STATE(1565), + [sym_field_declaration] = STATE(1565), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2246), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_atdef_field] = STATE(1565), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1565), + [aux_sym__declaration_specifiers_repeat1] = STATE(2246), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(4294), + [aux_sym_preproc_if_token1] = ACTIONS(4296), + [aux_sym_preproc_if_token2] = ACTIONS(4314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4300), + [aux_sym_preproc_else_token1] = ACTIONS(4302), + [aux_sym_preproc_elif_token1] = ACTIONS(4304), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4306), + [sym_preproc_directive] = ACTIONS(4308), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4310), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + [anon_sym_ATdefs] = ACTIONS(4312), + }, + [1525] = { + [sym_preproc_def] = STATE(1535), + [sym_preproc_function_def] = STATE(1535), + [sym_preproc_call] = STATE(1535), + [sym_preproc_if_in_field_declaration_list] = STATE(1535), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1535), + [sym_preproc_else_in_field_declaration_list] = STATE(6734), + [sym_preproc_elif_in_field_declaration_list] = STATE(6734), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(6734), + [sym__declaration_modifiers] = STATE(2246), + [sym__declaration_specifiers] = STATE(4626), + [sym_attribute_specifier] = STATE(2246), + [sym_attribute_declaration] = STATE(2246), + [sym_ms_declspec_modifier] = STATE(2246), + [sym_storage_class_specifier] = STATE(2246), + [sym_type_qualifier] = STATE(2246), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__field_declaration_list_item] = STATE(1535), + [sym_field_declaration] = STATE(1535), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2246), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_atdef_field] = STATE(1535), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1535), + [aux_sym__declaration_specifiers_repeat1] = STATE(2246), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(4294), + [aux_sym_preproc_if_token1] = ACTIONS(4296), + [aux_sym_preproc_if_token2] = ACTIONS(4316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4300), + [aux_sym_preproc_else_token1] = ACTIONS(4302), + [aux_sym_preproc_elif_token1] = ACTIONS(4304), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4306), + [sym_preproc_directive] = ACTIONS(4308), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4310), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + [anon_sym_ATdefs] = ACTIONS(4312), + }, + [1526] = { + [sym_preproc_def] = STATE(1565), + [sym_preproc_function_def] = STATE(1565), + [sym_preproc_call] = STATE(1565), + [sym_preproc_if_in_field_declaration_list] = STATE(1565), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1565), + [sym_preproc_else_in_field_declaration_list] = STATE(6573), + [sym_preproc_elif_in_field_declaration_list] = STATE(6573), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(6573), + [sym__declaration_modifiers] = STATE(2246), + [sym__declaration_specifiers] = STATE(4626), + [sym_attribute_specifier] = STATE(2246), + [sym_attribute_declaration] = STATE(2246), + [sym_ms_declspec_modifier] = STATE(2246), + [sym_storage_class_specifier] = STATE(2246), + [sym_type_qualifier] = STATE(2246), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__field_declaration_list_item] = STATE(1565), + [sym_field_declaration] = STATE(1565), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2246), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_atdef_field] = STATE(1565), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1565), + [aux_sym__declaration_specifiers_repeat1] = STATE(2246), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(4294), + [aux_sym_preproc_if_token1] = ACTIONS(4296), + [aux_sym_preproc_if_token2] = ACTIONS(4318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4300), + [aux_sym_preproc_else_token1] = ACTIONS(4302), + [aux_sym_preproc_elif_token1] = ACTIONS(4304), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4306), + [sym_preproc_directive] = ACTIONS(4308), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4310), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + [anon_sym_ATdefs] = ACTIONS(4312), + }, + [1527] = { + [sym_preproc_def] = STATE(1537), + [sym_preproc_function_def] = STATE(1537), + [sym_preproc_call] = STATE(1537), + [sym_preproc_if_in_field_declaration_list] = STATE(1537), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1537), + [sym_preproc_else_in_field_declaration_list] = STATE(6327), + [sym_preproc_elif_in_field_declaration_list] = STATE(6327), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(6327), + [sym__declaration_modifiers] = STATE(2246), + [sym__declaration_specifiers] = STATE(4626), + [sym_attribute_specifier] = STATE(2246), + [sym_attribute_declaration] = STATE(2246), + [sym_ms_declspec_modifier] = STATE(2246), + [sym_storage_class_specifier] = STATE(2246), + [sym_type_qualifier] = STATE(2246), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__field_declaration_list_item] = STATE(1537), + [sym_field_declaration] = STATE(1537), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2246), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_atdef_field] = STATE(1537), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1537), + [aux_sym__declaration_specifiers_repeat1] = STATE(2246), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(4294), + [aux_sym_preproc_if_token1] = ACTIONS(4296), + [aux_sym_preproc_if_token2] = ACTIONS(4320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4300), + [aux_sym_preproc_else_token1] = ACTIONS(4302), + [aux_sym_preproc_elif_token1] = ACTIONS(4304), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4306), + [sym_preproc_directive] = ACTIONS(4308), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4310), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + [anon_sym_ATdefs] = ACTIONS(4312), + }, + [1528] = { + [sym_preproc_def] = STATE(1565), + [sym_preproc_function_def] = STATE(1565), + [sym_preproc_call] = STATE(1565), + [sym_preproc_if_in_field_declaration_list] = STATE(1565), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1565), + [sym_preproc_else_in_field_declaration_list] = STATE(6736), + [sym_preproc_elif_in_field_declaration_list] = STATE(6736), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(6736), + [sym__declaration_modifiers] = STATE(2246), + [sym__declaration_specifiers] = STATE(4626), + [sym_attribute_specifier] = STATE(2246), + [sym_attribute_declaration] = STATE(2246), + [sym_ms_declspec_modifier] = STATE(2246), + [sym_storage_class_specifier] = STATE(2246), + [sym_type_qualifier] = STATE(2246), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__field_declaration_list_item] = STATE(1565), + [sym_field_declaration] = STATE(1565), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2246), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_atdef_field] = STATE(1565), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1565), + [aux_sym__declaration_specifiers_repeat1] = STATE(2246), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(4294), + [aux_sym_preproc_if_token1] = ACTIONS(4296), + [aux_sym_preproc_if_token2] = ACTIONS(4322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4300), + [aux_sym_preproc_else_token1] = ACTIONS(4302), + [aux_sym_preproc_elif_token1] = ACTIONS(4304), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4306), + [sym_preproc_directive] = ACTIONS(4308), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4310), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + [anon_sym_ATdefs] = ACTIONS(4312), + }, + [1529] = { + [sym_preproc_def] = STATE(1533), + [sym_preproc_function_def] = STATE(1533), + [sym_preproc_call] = STATE(1533), + [sym_preproc_if_in_field_declaration_list] = STATE(1533), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1533), + [sym_preproc_else_in_field_declaration_list] = STATE(6129), + [sym_preproc_elif_in_field_declaration_list] = STATE(6129), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(6129), + [sym__declaration_modifiers] = STATE(2246), + [sym__declaration_specifiers] = STATE(4626), + [sym_attribute_specifier] = STATE(2246), + [sym_attribute_declaration] = STATE(2246), + [sym_ms_declspec_modifier] = STATE(2246), + [sym_storage_class_specifier] = STATE(2246), + [sym_type_qualifier] = STATE(2246), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__field_declaration_list_item] = STATE(1533), + [sym_field_declaration] = STATE(1533), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2246), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_atdef_field] = STATE(1533), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1533), + [aux_sym__declaration_specifiers_repeat1] = STATE(2246), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(4294), + [aux_sym_preproc_if_token1] = ACTIONS(4296), + [aux_sym_preproc_if_token2] = ACTIONS(4324), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4300), + [aux_sym_preproc_else_token1] = ACTIONS(4302), + [aux_sym_preproc_elif_token1] = ACTIONS(4304), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4306), + [sym_preproc_directive] = ACTIONS(4308), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4310), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + [anon_sym_ATdefs] = ACTIONS(4312), + }, + [1530] = { + [sym_preproc_def] = STATE(1526), + [sym_preproc_function_def] = STATE(1526), + [sym_preproc_call] = STATE(1526), + [sym_preproc_if_in_field_declaration_list] = STATE(1526), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1526), + [sym_preproc_else_in_field_declaration_list] = STATE(6205), + [sym_preproc_elif_in_field_declaration_list] = STATE(6205), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(6205), + [sym__declaration_modifiers] = STATE(2246), + [sym__declaration_specifiers] = STATE(4626), + [sym_attribute_specifier] = STATE(2246), + [sym_attribute_declaration] = STATE(2246), + [sym_ms_declspec_modifier] = STATE(2246), + [sym_storage_class_specifier] = STATE(2246), + [sym_type_qualifier] = STATE(2246), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__field_declaration_list_item] = STATE(1526), + [sym_field_declaration] = STATE(1526), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2246), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_atdef_field] = STATE(1526), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1526), + [aux_sym__declaration_specifiers_repeat1] = STATE(2246), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(4294), + [aux_sym_preproc_if_token1] = ACTIONS(4296), + [aux_sym_preproc_if_token2] = ACTIONS(4326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4300), + [aux_sym_preproc_else_token1] = ACTIONS(4302), + [aux_sym_preproc_elif_token1] = ACTIONS(4304), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4306), + [sym_preproc_directive] = ACTIONS(4308), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4310), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + [anon_sym_ATdefs] = ACTIONS(4312), + }, + [1531] = { + [sym_preproc_def] = STATE(1523), + [sym_preproc_function_def] = STATE(1523), + [sym_preproc_call] = STATE(1523), + [sym_preproc_if_in_field_declaration_list] = STATE(1523), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1523), + [sym_preproc_else_in_field_declaration_list] = STATE(6559), + [sym_preproc_elif_in_field_declaration_list] = STATE(6559), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(6559), + [sym__declaration_modifiers] = STATE(2246), + [sym__declaration_specifiers] = STATE(4626), + [sym_attribute_specifier] = STATE(2246), + [sym_attribute_declaration] = STATE(2246), + [sym_ms_declspec_modifier] = STATE(2246), + [sym_storage_class_specifier] = STATE(2246), + [sym_type_qualifier] = STATE(2246), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__field_declaration_list_item] = STATE(1523), + [sym_field_declaration] = STATE(1523), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2246), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_atdef_field] = STATE(1523), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1523), + [aux_sym__declaration_specifiers_repeat1] = STATE(2246), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(4294), + [aux_sym_preproc_if_token1] = ACTIONS(4296), + [aux_sym_preproc_if_token2] = ACTIONS(4328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4300), + [aux_sym_preproc_else_token1] = ACTIONS(4302), + [aux_sym_preproc_elif_token1] = ACTIONS(4304), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4306), + [sym_preproc_directive] = ACTIONS(4308), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4310), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + [anon_sym_ATdefs] = ACTIONS(4312), + }, + [1532] = { + [sym_preproc_def] = STATE(1528), + [sym_preproc_function_def] = STATE(1528), + [sym_preproc_call] = STATE(1528), + [sym_preproc_if_in_field_declaration_list] = STATE(1528), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1528), + [sym_preproc_else_in_field_declaration_list] = STATE(6646), + [sym_preproc_elif_in_field_declaration_list] = STATE(6646), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(6646), + [sym__declaration_modifiers] = STATE(2246), + [sym__declaration_specifiers] = STATE(4626), + [sym_attribute_specifier] = STATE(2246), + [sym_attribute_declaration] = STATE(2246), + [sym_ms_declspec_modifier] = STATE(2246), + [sym_storage_class_specifier] = STATE(2246), + [sym_type_qualifier] = STATE(2246), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__field_declaration_list_item] = STATE(1528), + [sym_field_declaration] = STATE(1528), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2246), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_atdef_field] = STATE(1528), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1528), + [aux_sym__declaration_specifiers_repeat1] = STATE(2246), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(4294), + [aux_sym_preproc_if_token1] = ACTIONS(4296), + [aux_sym_preproc_if_token2] = ACTIONS(4330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4300), + [aux_sym_preproc_else_token1] = ACTIONS(4302), + [aux_sym_preproc_elif_token1] = ACTIONS(4304), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4306), + [sym_preproc_directive] = ACTIONS(4308), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4310), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + [anon_sym_ATdefs] = ACTIONS(4312), + }, + [1533] = { + [sym_preproc_def] = STATE(1565), + [sym_preproc_function_def] = STATE(1565), + [sym_preproc_call] = STATE(1565), + [sym_preproc_if_in_field_declaration_list] = STATE(1565), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1565), + [sym_preproc_else_in_field_declaration_list] = STATE(6216), + [sym_preproc_elif_in_field_declaration_list] = STATE(6216), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(6216), + [sym__declaration_modifiers] = STATE(2246), + [sym__declaration_specifiers] = STATE(4626), + [sym_attribute_specifier] = STATE(2246), + [sym_attribute_declaration] = STATE(2246), + [sym_ms_declspec_modifier] = STATE(2246), + [sym_storage_class_specifier] = STATE(2246), + [sym_type_qualifier] = STATE(2246), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__field_declaration_list_item] = STATE(1565), + [sym_field_declaration] = STATE(1565), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2246), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_atdef_field] = STATE(1565), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1565), + [aux_sym__declaration_specifiers_repeat1] = STATE(2246), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(4294), + [aux_sym_preproc_if_token1] = ACTIONS(4296), + [aux_sym_preproc_if_token2] = ACTIONS(4332), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4300), + [aux_sym_preproc_else_token1] = ACTIONS(4302), + [aux_sym_preproc_elif_token1] = ACTIONS(4304), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4306), + [sym_preproc_directive] = ACTIONS(4308), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4310), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + [anon_sym_ATdefs] = ACTIONS(4312), + }, + [1534] = { + [sym_preproc_def] = STATE(1538), + [sym_preproc_function_def] = STATE(1538), + [sym_preproc_call] = STATE(1538), + [sym_preproc_if_in_field_declaration_list] = STATE(1538), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1538), + [sym_preproc_else_in_field_declaration_list] = STATE(5936), + [sym_preproc_elif_in_field_declaration_list] = STATE(5936), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(5936), + [sym__declaration_modifiers] = STATE(2246), + [sym__declaration_specifiers] = STATE(4626), + [sym_attribute_specifier] = STATE(2246), + [sym_attribute_declaration] = STATE(2246), + [sym_ms_declspec_modifier] = STATE(2246), + [sym_storage_class_specifier] = STATE(2246), + [sym_type_qualifier] = STATE(2246), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__field_declaration_list_item] = STATE(1538), + [sym_field_declaration] = STATE(1538), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2246), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_atdef_field] = STATE(1538), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1538), + [aux_sym__declaration_specifiers_repeat1] = STATE(2246), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(4294), + [aux_sym_preproc_if_token1] = ACTIONS(4296), + [aux_sym_preproc_if_token2] = ACTIONS(4334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4300), + [aux_sym_preproc_else_token1] = ACTIONS(4302), + [aux_sym_preproc_elif_token1] = ACTIONS(4304), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4306), + [sym_preproc_directive] = ACTIONS(4308), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4310), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + [anon_sym_ATdefs] = ACTIONS(4312), + }, + [1535] = { + [sym_preproc_def] = STATE(1565), + [sym_preproc_function_def] = STATE(1565), + [sym_preproc_call] = STATE(1565), + [sym_preproc_if_in_field_declaration_list] = STATE(1565), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1565), + [sym_preproc_else_in_field_declaration_list] = STATE(5937), + [sym_preproc_elif_in_field_declaration_list] = STATE(5937), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(5937), + [sym__declaration_modifiers] = STATE(2246), + [sym__declaration_specifiers] = STATE(4626), + [sym_attribute_specifier] = STATE(2246), + [sym_attribute_declaration] = STATE(2246), + [sym_ms_declspec_modifier] = STATE(2246), + [sym_storage_class_specifier] = STATE(2246), + [sym_type_qualifier] = STATE(2246), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__field_declaration_list_item] = STATE(1565), + [sym_field_declaration] = STATE(1565), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2246), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_atdef_field] = STATE(1565), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1565), + [aux_sym__declaration_specifiers_repeat1] = STATE(2246), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(4294), + [aux_sym_preproc_if_token1] = ACTIONS(4296), + [aux_sym_preproc_if_token2] = ACTIONS(4336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4300), + [aux_sym_preproc_else_token1] = ACTIONS(4302), + [aux_sym_preproc_elif_token1] = ACTIONS(4304), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4306), + [sym_preproc_directive] = ACTIONS(4308), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4310), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + [anon_sym_ATdefs] = ACTIONS(4312), + }, + [1536] = { + [sym_preproc_def] = STATE(1524), + [sym_preproc_function_def] = STATE(1524), + [sym_preproc_call] = STATE(1524), + [sym_preproc_if_in_field_declaration_list] = STATE(1524), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1524), + [sym_preproc_else_in_field_declaration_list] = STATE(6464), + [sym_preproc_elif_in_field_declaration_list] = STATE(6464), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(6464), + [sym__declaration_modifiers] = STATE(2246), + [sym__declaration_specifiers] = STATE(4626), + [sym_attribute_specifier] = STATE(2246), + [sym_attribute_declaration] = STATE(2246), + [sym_ms_declspec_modifier] = STATE(2246), + [sym_storage_class_specifier] = STATE(2246), + [sym_type_qualifier] = STATE(2246), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__field_declaration_list_item] = STATE(1524), + [sym_field_declaration] = STATE(1524), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2246), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_atdef_field] = STATE(1524), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1524), + [aux_sym__declaration_specifiers_repeat1] = STATE(2246), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(4294), + [aux_sym_preproc_if_token1] = ACTIONS(4296), + [aux_sym_preproc_if_token2] = ACTIONS(4338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4300), + [aux_sym_preproc_else_token1] = ACTIONS(4302), + [aux_sym_preproc_elif_token1] = ACTIONS(4304), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4306), + [sym_preproc_directive] = ACTIONS(4308), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4310), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + [anon_sym_ATdefs] = ACTIONS(4312), + }, + [1537] = { + [sym_preproc_def] = STATE(1565), + [sym_preproc_function_def] = STATE(1565), + [sym_preproc_call] = STATE(1565), + [sym_preproc_if_in_field_declaration_list] = STATE(1565), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1565), + [sym_preproc_else_in_field_declaration_list] = STATE(6499), + [sym_preproc_elif_in_field_declaration_list] = STATE(6499), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(6499), + [sym__declaration_modifiers] = STATE(2246), + [sym__declaration_specifiers] = STATE(4626), + [sym_attribute_specifier] = STATE(2246), + [sym_attribute_declaration] = STATE(2246), + [sym_ms_declspec_modifier] = STATE(2246), + [sym_storage_class_specifier] = STATE(2246), + [sym_type_qualifier] = STATE(2246), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__field_declaration_list_item] = STATE(1565), + [sym_field_declaration] = STATE(1565), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2246), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_atdef_field] = STATE(1565), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1565), + [aux_sym__declaration_specifiers_repeat1] = STATE(2246), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(4294), + [aux_sym_preproc_if_token1] = ACTIONS(4296), + [aux_sym_preproc_if_token2] = ACTIONS(4340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4300), + [aux_sym_preproc_else_token1] = ACTIONS(4302), + [aux_sym_preproc_elif_token1] = ACTIONS(4304), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4306), + [sym_preproc_directive] = ACTIONS(4308), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4310), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + [anon_sym_ATdefs] = ACTIONS(4312), + }, + [1538] = { + [sym_preproc_def] = STATE(1565), + [sym_preproc_function_def] = STATE(1565), + [sym_preproc_call] = STATE(1565), + [sym_preproc_if_in_field_declaration_list] = STATE(1565), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1565), + [sym_preproc_else_in_field_declaration_list] = STATE(6029), + [sym_preproc_elif_in_field_declaration_list] = STATE(6029), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(6029), + [sym__declaration_modifiers] = STATE(2246), + [sym__declaration_specifiers] = STATE(4626), + [sym_attribute_specifier] = STATE(2246), + [sym_attribute_declaration] = STATE(2246), + [sym_ms_declspec_modifier] = STATE(2246), + [sym_storage_class_specifier] = STATE(2246), + [sym_type_qualifier] = STATE(2246), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__field_declaration_list_item] = STATE(1565), + [sym_field_declaration] = STATE(1565), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2246), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_atdef_field] = STATE(1565), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1565), + [aux_sym__declaration_specifiers_repeat1] = STATE(2246), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(4294), + [aux_sym_preproc_if_token1] = ACTIONS(4296), + [aux_sym_preproc_if_token2] = ACTIONS(4342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4300), + [aux_sym_preproc_else_token1] = ACTIONS(4302), + [aux_sym_preproc_elif_token1] = ACTIONS(4304), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4306), + [sym_preproc_directive] = ACTIONS(4308), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4310), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + [anon_sym_ATdefs] = ACTIONS(4312), + }, + [1539] = { + [sym_compound_statement] = STATE(6760), + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4454), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6676), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(4359), + [sym_parameterized_arguments] = STATE(6678), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1540] = { + [sym_compound_statement] = STATE(6760), + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4454), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6727), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(4367), + [sym_parameterized_arguments] = STATE(6729), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1541] = { + [sym_compound_statement] = STATE(6760), + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4454), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6329), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(4366), + [sym_parameterized_arguments] = STATE(6253), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1542] = { + [sym_compound_statement] = STATE(6760), + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4454), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6059), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(4363), + [sym_parameterized_arguments] = STATE(6225), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1543] = { + [sym_compound_statement] = STATE(6760), + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4454), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6047), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(4368), + [sym_parameterized_arguments] = STATE(6188), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1544] = { + [sym_compound_statement] = STATE(6760), + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4454), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6585), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(4362), + [sym_parameterized_arguments] = STATE(6587), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1545] = { + [sym_compound_statement] = STATE(6760), + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4454), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6456), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(4368), + [sym_parameterized_arguments] = STATE(6188), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1546] = { + [sym_compound_statement] = STATE(6760), + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4454), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6354), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(4358), + [sym_parameterized_arguments] = STATE(6183), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1547] = { + [sym_compound_statement] = STATE(6760), + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4454), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6175), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(4358), + [sym_parameterized_arguments] = STATE(6183), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1548] = { + [sym_compound_statement] = STATE(6760), + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4454), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6548), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(4356), + [sym_parameterized_arguments] = STATE(6310), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1549] = { + [sym_compound_statement] = STATE(6760), + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4454), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6652), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(4367), + [sym_parameterized_arguments] = STATE(6729), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1550] = { + [sym_compound_statement] = STATE(6760), + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4454), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(5968), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(4364), + [sym_parameterized_arguments] = STATE(6353), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1551] = { + [sym_compound_statement] = STATE(6760), + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4454), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6246), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(4366), + [sym_parameterized_arguments] = STATE(6253), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1552] = { + [sym_compound_statement] = STATE(6760), + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4454), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6418), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(4359), + [sym_parameterized_arguments] = STATE(6678), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1553] = { + [sym_compound_statement] = STATE(6760), + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4454), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6222), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(4363), + [sym_parameterized_arguments] = STATE(6225), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1554] = { + [sym_compound_statement] = STATE(6760), + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4454), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6262), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(4365), + [sym_parameterized_arguments] = STATE(6362), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1555] = { + [sym_compound_statement] = STATE(6760), + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4454), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6713), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(4360), + [sym_parameterized_arguments] = STATE(6715), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1556] = { + [sym_compound_statement] = STATE(6760), + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4454), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6308), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(4356), + [sym_parameterized_arguments] = STATE(6310), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1557] = { + [sym_compound_statement] = STATE(6760), + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4454), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6351), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(4364), + [sym_parameterized_arguments] = STATE(6353), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1558] = { + [sym_compound_statement] = STATE(6760), + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4454), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6360), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(4365), + [sym_parameterized_arguments] = STATE(6362), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1559] = { + [sym_compound_statement] = STATE(6760), + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4454), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6601), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(4362), + [sym_parameterized_arguments] = STATE(6587), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1560] = { + [sym_compound_statement] = STATE(6760), + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4454), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6663), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(4361), + [sym_parameterized_arguments] = STATE(6657), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1561] = { + [sym_compound_statement] = STATE(6760), + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4454), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6655), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(4361), + [sym_parameterized_arguments] = STATE(6657), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1562] = { + [sym_compound_statement] = STATE(6760), + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4454), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6130), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(4360), + [sym_parameterized_arguments] = STATE(6715), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1563] = { + [sym_identifier] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2348), + [anon_sym_COMMA] = ACTIONS(2348), + [anon_sym_RPAREN] = ACTIONS(2348), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2348), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2348), + [anon_sym_LPAREN2] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2346), + [anon_sym_PLUS] = ACTIONS(2346), + [anon_sym_STAR] = ACTIONS(2348), + [anon_sym_SLASH] = ACTIONS(2346), + [anon_sym_PERCENT] = ACTIONS(2348), + [anon_sym_PIPE_PIPE] = ACTIONS(2348), + [anon_sym_AMP_AMP] = ACTIONS(2348), + [anon_sym_PIPE] = ACTIONS(2346), + [anon_sym_CARET] = ACTIONS(2348), + [anon_sym_AMP] = ACTIONS(2346), + [anon_sym_EQ_EQ] = ACTIONS(2348), + [anon_sym_BANG_EQ] = ACTIONS(2348), + [anon_sym_GT] = ACTIONS(2346), + [anon_sym_GT_EQ] = ACTIONS(2348), + [anon_sym_LT_EQ] = ACTIONS(2348), + [anon_sym_LT] = ACTIONS(2346), + [anon_sym_LT_LT] = ACTIONS(2348), + [anon_sym_GT_GT] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym___extension__] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym___attribute__] = ACTIONS(2346), + [anon_sym___attribute] = ACTIONS(2346), + [anon_sym_noreturn] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym_RBRACK] = ACTIONS(2348), + [anon_sym___declspec] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_signed] = ACTIONS(2346), + [anon_sym_unsigned] = ACTIONS(2346), + [anon_sym_long] = ACTIONS(2346), + [anon_sym_short] = ACTIONS(2346), + [anon_sym_static] = ACTIONS(2346), + [anon_sym_ATautoreleasepool] = ACTIONS(2348), + [anon_sym_auto] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2346), + [anon_sym_inline] = ACTIONS(2346), + [anon_sym___inline] = ACTIONS(2346), + [anon_sym___inline__] = ACTIONS(2346), + [anon_sym___forceinline] = ACTIONS(2346), + [anon_sym_thread_local] = ACTIONS(2346), + [anon_sym___thread] = ACTIONS(2346), + [anon_sym_CG_EXTERN] = ACTIONS(2346), + [anon_sym_CG_INLINE] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2346), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2346), + [anon_sym_IBOutlet] = ACTIONS(2346), + [anon_sym_IBInspectable] = ACTIONS(2346), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2346), + [anon_sym_NS_INLINE] = ACTIONS(2346), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2346), + [anon_sym_OBJC_EXPORT] = ACTIONS(2346), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_constexpr] = ACTIONS(2346), + [anon_sym_volatile] = ACTIONS(2346), + [anon_sym_restrict] = ACTIONS(2346), + [anon_sym___restrict__] = ACTIONS(2346), + [anon_sym__Atomic] = ACTIONS(2346), + [anon_sym__Noreturn] = ACTIONS(2346), + [anon_sym__Nonnull] = ACTIONS(2346), + [anon_sym_nullable] = ACTIONS(2346), + [anon_sym__Complex] = ACTIONS(2346), + [anon_sym__Nullable] = ACTIONS(2346), + [anon_sym__Nullable_result] = ACTIONS(2346), + [anon_sym__Null_unspecified] = ACTIONS(2346), + [anon_sym___autoreleasing] = ACTIONS(2346), + [anon_sym___block] = ACTIONS(2346), + [anon_sym___bridge] = ACTIONS(2346), + [anon_sym___bridge_retained] = ACTIONS(2346), + [anon_sym___bridge_transfer] = ACTIONS(2346), + [anon_sym___complex] = ACTIONS(2346), + [anon_sym___const] = ACTIONS(2346), + [anon_sym___imag] = ACTIONS(2346), + [anon_sym___kindof] = ACTIONS(2346), + [anon_sym___nonnull] = ACTIONS(2346), + [anon_sym___nullable] = ACTIONS(2346), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2346), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2346), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2346), + [anon_sym___real] = ACTIONS(2346), + [anon_sym___strong] = ACTIONS(2346), + [anon_sym___unsafe_unretained] = ACTIONS(2346), + [anon_sym___unused] = ACTIONS(2346), + [anon_sym___weak] = ACTIONS(2346), + [anon_sym_alignas] = ACTIONS(2346), + [anon_sym__Alignas] = ACTIONS(2346), + [sym_primitive_type] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_COLON] = ACTIONS(2348), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_QMARK] = ACTIONS(2348), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_DOT] = ACTIONS(2346), + [anon_sym_DASH_GT] = ACTIONS(2348), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2346), + [anon_sym___typeof] = ACTIONS(2346), + [anon_sym_typeof] = ACTIONS(2346), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2346), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2346), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2346), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2346), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE] = ACTIONS(2346), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_API_AVAILABLE] = ACTIONS(2346), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_API_DEPRECATED] = ACTIONS(2346), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2346), + [anon_sym___deprecated_msg] = ACTIONS(2346), + [anon_sym___deprecated_enum_msg] = ACTIONS(2346), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2346), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2346), + [anon_sym_ATcatch] = ACTIONS(2348), + [anon_sym___catch] = ACTIONS(2346), + [anon_sym_ATfinally] = ACTIONS(2348), + [anon_sym___finally] = ACTIONS(2346), + [anon_sym_BOOL] = ACTIONS(2346), + [anon_sym_IMP] = ACTIONS(2346), + [anon_sym_SEL] = ACTIONS(2346), + [anon_sym_Class] = ACTIONS(2346), + [anon_sym_id] = ACTIONS(2346), + }, + [1564] = { + [sym_identifier] = ACTIONS(2364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2366), + [anon_sym_COMMA] = ACTIONS(2366), + [anon_sym_RPAREN] = ACTIONS(2366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2366), + [anon_sym_LPAREN2] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_PLUS] = ACTIONS(2364), + [anon_sym_STAR] = ACTIONS(2366), + [anon_sym_SLASH] = ACTIONS(2364), + [anon_sym_PERCENT] = ACTIONS(2366), + [anon_sym_PIPE_PIPE] = ACTIONS(2366), + [anon_sym_AMP_AMP] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_AMP] = ACTIONS(2364), + [anon_sym_EQ_EQ] = ACTIONS(2366), + [anon_sym_BANG_EQ] = ACTIONS(2366), + [anon_sym_GT] = ACTIONS(2364), + [anon_sym_GT_EQ] = ACTIONS(2366), + [anon_sym_LT_EQ] = ACTIONS(2366), + [anon_sym_LT] = ACTIONS(2364), + [anon_sym_LT_LT] = ACTIONS(2366), + [anon_sym_GT_GT] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym___attribute__] = ACTIONS(2364), + [anon_sym___attribute] = ACTIONS(2364), + [anon_sym_noreturn] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym_RBRACK] = ACTIONS(2366), + [anon_sym___declspec] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_signed] = ACTIONS(2364), + [anon_sym_unsigned] = ACTIONS(2364), + [anon_sym_long] = ACTIONS(2364), + [anon_sym_short] = ACTIONS(2364), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_ATautoreleasepool] = ACTIONS(2366), + [anon_sym_auto] = ACTIONS(2364), + [anon_sym_register] = ACTIONS(2364), + [anon_sym_inline] = ACTIONS(2364), + [anon_sym___inline] = ACTIONS(2364), + [anon_sym___inline__] = ACTIONS(2364), + [anon_sym___forceinline] = ACTIONS(2364), + [anon_sym_thread_local] = ACTIONS(2364), + [anon_sym___thread] = ACTIONS(2364), + [anon_sym_CG_EXTERN] = ACTIONS(2364), + [anon_sym_CG_INLINE] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2364), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2364), + [anon_sym_IBOutlet] = ACTIONS(2364), + [anon_sym_IBInspectable] = ACTIONS(2364), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2364), + [anon_sym_NS_INLINE] = ACTIONS(2364), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2364), + [anon_sym_OBJC_EXPORT] = ACTIONS(2364), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [anon_sym_constexpr] = ACTIONS(2364), + [anon_sym_volatile] = ACTIONS(2364), + [anon_sym_restrict] = ACTIONS(2364), + [anon_sym___restrict__] = ACTIONS(2364), + [anon_sym__Atomic] = ACTIONS(2364), + [anon_sym__Noreturn] = ACTIONS(2364), + [anon_sym__Nonnull] = ACTIONS(2364), + [anon_sym_nullable] = ACTIONS(2364), + [anon_sym__Complex] = ACTIONS(2364), + [anon_sym__Nullable] = ACTIONS(2364), + [anon_sym__Nullable_result] = ACTIONS(2364), + [anon_sym__Null_unspecified] = ACTIONS(2364), + [anon_sym___autoreleasing] = ACTIONS(2364), + [anon_sym___block] = ACTIONS(2364), + [anon_sym___bridge] = ACTIONS(2364), + [anon_sym___bridge_retained] = ACTIONS(2364), + [anon_sym___bridge_transfer] = ACTIONS(2364), + [anon_sym___complex] = ACTIONS(2364), + [anon_sym___const] = ACTIONS(2364), + [anon_sym___imag] = ACTIONS(2364), + [anon_sym___kindof] = ACTIONS(2364), + [anon_sym___nonnull] = ACTIONS(2364), + [anon_sym___nullable] = ACTIONS(2364), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2364), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2364), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2364), + [anon_sym___real] = ACTIONS(2364), + [anon_sym___strong] = ACTIONS(2364), + [anon_sym___unsafe_unretained] = ACTIONS(2364), + [anon_sym___unused] = ACTIONS(2364), + [anon_sym___weak] = ACTIONS(2364), + [anon_sym_alignas] = ACTIONS(2364), + [anon_sym__Alignas] = ACTIONS(2364), + [sym_primitive_type] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), + [anon_sym_COLON] = ACTIONS(2366), + [anon_sym_struct] = ACTIONS(2364), + [anon_sym_union] = ACTIONS(2364), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_QMARK] = ACTIONS(2366), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_DOT] = ACTIONS(2364), + [anon_sym_DASH_GT] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2364), + [anon_sym___typeof] = ACTIONS(2364), + [anon_sym_typeof] = ACTIONS(2364), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2364), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2364), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2364), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2364), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE] = ACTIONS(2364), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_API_AVAILABLE] = ACTIONS(2364), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_API_DEPRECATED] = ACTIONS(2364), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2364), + [anon_sym___deprecated_msg] = ACTIONS(2364), + [anon_sym___deprecated_enum_msg] = ACTIONS(2364), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2364), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2364), + [anon_sym_ATcatch] = ACTIONS(2366), + [anon_sym___catch] = ACTIONS(2364), + [anon_sym_ATfinally] = ACTIONS(2366), + [anon_sym___finally] = ACTIONS(2364), + [anon_sym_BOOL] = ACTIONS(2364), + [anon_sym_IMP] = ACTIONS(2364), + [anon_sym_SEL] = ACTIONS(2364), + [anon_sym_Class] = ACTIONS(2364), + [anon_sym_id] = ACTIONS(2364), + }, + [1565] = { + [sym_preproc_def] = STATE(1565), + [sym_preproc_function_def] = STATE(1565), + [sym_preproc_call] = STATE(1565), + [sym_preproc_if_in_field_declaration_list] = STATE(1565), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1565), + [sym__declaration_modifiers] = STATE(2246), + [sym__declaration_specifiers] = STATE(4626), + [sym_attribute_specifier] = STATE(2246), + [sym_attribute_declaration] = STATE(2246), + [sym_ms_declspec_modifier] = STATE(2246), + [sym_storage_class_specifier] = STATE(2246), + [sym_type_qualifier] = STATE(2246), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__field_declaration_list_item] = STATE(1565), + [sym_field_declaration] = STATE(1565), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2246), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_atdef_field] = STATE(1565), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1565), + [aux_sym__declaration_specifiers_repeat1] = STATE(2246), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(4372), + [aux_sym_preproc_def_token1] = ACTIONS(4375), + [aux_sym_preproc_if_token1] = ACTIONS(4378), + [aux_sym_preproc_if_token2] = ACTIONS(4381), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4383), + [aux_sym_preproc_else_token1] = ACTIONS(4381), + [aux_sym_preproc_elif_token1] = ACTIONS(4381), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4381), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4381), + [sym_preproc_directive] = ACTIONS(4386), + [anon_sym___extension__] = ACTIONS(4389), + [anon_sym_extern] = ACTIONS(4392), + [anon_sym___attribute__] = ACTIONS(4395), + [anon_sym___attribute] = ACTIONS(4395), + [anon_sym_noreturn] = ACTIONS(4389), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym___declspec] = ACTIONS(4401), + [anon_sym_signed] = ACTIONS(4404), + [anon_sym_unsigned] = ACTIONS(4404), + [anon_sym_long] = ACTIONS(4404), + [anon_sym_short] = ACTIONS(4404), + [anon_sym_static] = ACTIONS(4392), + [anon_sym_auto] = ACTIONS(4392), + [anon_sym_register] = ACTIONS(4392), + [anon_sym_inline] = ACTIONS(4392), + [anon_sym___inline] = ACTIONS(4392), + [anon_sym___inline__] = ACTIONS(4392), + [anon_sym___forceinline] = ACTIONS(4392), + [anon_sym_thread_local] = ACTIONS(4392), + [anon_sym___thread] = ACTIONS(4392), + [anon_sym_CG_EXTERN] = ACTIONS(4392), + [anon_sym_CG_INLINE] = ACTIONS(4392), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4392), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4392), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4392), + [anon_sym_IBOutlet] = ACTIONS(4392), + [anon_sym_IBInspectable] = ACTIONS(4392), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4392), + [anon_sym_NS_INLINE] = ACTIONS(4392), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4392), + [anon_sym_OBJC_EXPORT] = ACTIONS(4392), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4392), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4392), + [anon_sym_const] = ACTIONS(4389), + [anon_sym_constexpr] = ACTIONS(4389), + [anon_sym_volatile] = ACTIONS(4389), + [anon_sym_restrict] = ACTIONS(4389), + [anon_sym___restrict__] = ACTIONS(4389), + [anon_sym__Atomic] = ACTIONS(4389), + [anon_sym__Noreturn] = ACTIONS(4389), + [anon_sym__Nonnull] = ACTIONS(4389), + [anon_sym_nullable] = ACTIONS(4389), + [anon_sym__Complex] = ACTIONS(4389), + [anon_sym__Nullable] = ACTIONS(4389), + [anon_sym__Nullable_result] = ACTIONS(4389), + [anon_sym__Null_unspecified] = ACTIONS(4389), + [anon_sym___autoreleasing] = ACTIONS(4389), + [anon_sym___block] = ACTIONS(4389), + [anon_sym___bridge] = ACTIONS(4389), + [anon_sym___bridge_retained] = ACTIONS(4389), + [anon_sym___bridge_transfer] = ACTIONS(4389), + [anon_sym___complex] = ACTIONS(4389), + [anon_sym___const] = ACTIONS(4389), + [anon_sym___imag] = ACTIONS(4389), + [anon_sym___kindof] = ACTIONS(4389), + [anon_sym___nonnull] = ACTIONS(4389), + [anon_sym___nullable] = ACTIONS(4389), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4389), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4389), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4389), + [anon_sym___real] = ACTIONS(4389), + [anon_sym___strong] = ACTIONS(4389), + [anon_sym___unsafe_unretained] = ACTIONS(4389), + [anon_sym___unused] = ACTIONS(4389), + [anon_sym___weak] = ACTIONS(4389), + [anon_sym_alignas] = ACTIONS(4407), + [anon_sym__Alignas] = ACTIONS(4407), + [sym_primitive_type] = ACTIONS(4410), + [anon_sym_enum] = ACTIONS(4413), + [anon_sym_struct] = ACTIONS(4416), + [anon_sym_union] = ACTIONS(4419), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4422), + [anon_sym___typeof] = ACTIONS(4422), + [anon_sym_typeof] = ACTIONS(4422), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4425), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4425), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4425), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4425), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4425), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4425), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4425), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4425), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4425), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4428), + [anon_sym_NS_AVAILABLE] = ACTIONS(4428), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4428), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4428), + [anon_sym_API_AVAILABLE] = ACTIONS(4428), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4428), + [anon_sym_API_DEPRECATED] = ACTIONS(4428), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4428), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4428), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4428), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4428), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4428), + [anon_sym___deprecated_msg] = ACTIONS(4428), + [anon_sym___deprecated_enum_msg] = ACTIONS(4428), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4428), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4428), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4428), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4428), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4428), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4428), + [anon_sym_BOOL] = ACTIONS(4431), + [anon_sym_IMP] = ACTIONS(4431), + [anon_sym_SEL] = ACTIONS(4431), + [anon_sym_Class] = ACTIONS(4431), + [anon_sym_id] = ACTIONS(4431), + [anon_sym_ATdefs] = ACTIONS(4434), + }, + [1566] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4439), + [anon_sym_COMMA] = ACTIONS(4442), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_SLASH] = ACTIONS(4446), + [anon_sym_PERCENT] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4448), + [anon_sym_AMP_AMP] = ACTIONS(4450), + [anon_sym_PIPE] = ACTIONS(4452), + [anon_sym_CARET] = ACTIONS(4454), + [anon_sym_AMP] = ACTIONS(4456), + [anon_sym_EQ_EQ] = ACTIONS(4458), + [anon_sym_BANG_EQ] = ACTIONS(4458), + [anon_sym_GT] = ACTIONS(4460), + [anon_sym_GT_EQ] = ACTIONS(4462), + [anon_sym_LT_EQ] = ACTIONS(4462), + [anon_sym_LT] = ACTIONS(4460), + [anon_sym_LT_LT] = ACTIONS(4464), + [anon_sym_GT_GT] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4442), + [anon_sym___extension__] = ACTIONS(4437), + [anon_sym_extern] = ACTIONS(4437), + [anon_sym___attribute__] = ACTIONS(4437), + [anon_sym___attribute] = ACTIONS(4437), + [anon_sym_noreturn] = ACTIONS(4437), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4437), + [anon_sym_LBRACE] = ACTIONS(4442), + [anon_sym_signed] = ACTIONS(4437), + [anon_sym_unsigned] = ACTIONS(4437), + [anon_sym_long] = ACTIONS(4437), + [anon_sym_short] = ACTIONS(4437), + [anon_sym_static] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4437), + [anon_sym_ATautoreleasepool] = ACTIONS(4442), + [anon_sym_auto] = ACTIONS(4437), + [anon_sym_register] = ACTIONS(4437), + [anon_sym_inline] = ACTIONS(4437), + [anon_sym___inline] = ACTIONS(4437), + [anon_sym___inline__] = ACTIONS(4437), + [anon_sym___forceinline] = ACTIONS(4437), + [anon_sym_thread_local] = ACTIONS(4437), + [anon_sym___thread] = ACTIONS(4437), + [anon_sym_CG_EXTERN] = ACTIONS(4437), + [anon_sym_CG_INLINE] = ACTIONS(4437), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4437), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4437), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4437), + [anon_sym_IBOutlet] = ACTIONS(4437), + [anon_sym_IBInspectable] = ACTIONS(4437), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4437), + [anon_sym_NS_INLINE] = ACTIONS(4437), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4437), + [anon_sym_OBJC_EXPORT] = ACTIONS(4437), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4437), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4437), + [anon_sym_const] = ACTIONS(4437), + [anon_sym_constexpr] = ACTIONS(4437), + [anon_sym_volatile] = ACTIONS(4437), + [anon_sym_restrict] = ACTIONS(4437), + [anon_sym___restrict__] = ACTIONS(4437), + [anon_sym__Atomic] = ACTIONS(4437), + [anon_sym__Noreturn] = ACTIONS(4437), + [anon_sym__Nonnull] = ACTIONS(4437), + [anon_sym_nullable] = ACTIONS(4437), + [anon_sym__Complex] = ACTIONS(4437), + [anon_sym__Nullable] = ACTIONS(4437), + [anon_sym__Nullable_result] = ACTIONS(4437), + [anon_sym__Null_unspecified] = ACTIONS(4437), + [anon_sym___autoreleasing] = ACTIONS(4437), + [anon_sym___block] = ACTIONS(4437), + [anon_sym___bridge] = ACTIONS(4437), + [anon_sym___bridge_retained] = ACTIONS(4437), + [anon_sym___bridge_transfer] = ACTIONS(4437), + [anon_sym___complex] = ACTIONS(4437), + [anon_sym___const] = ACTIONS(4437), + [anon_sym___imag] = ACTIONS(4437), + [anon_sym___kindof] = ACTIONS(4437), + [anon_sym___nonnull] = ACTIONS(4437), + [anon_sym___nullable] = ACTIONS(4437), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4437), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4437), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4437), + [anon_sym___real] = ACTIONS(4437), + [anon_sym___strong] = ACTIONS(4437), + [anon_sym___unsafe_unretained] = ACTIONS(4437), + [anon_sym___unused] = ACTIONS(4437), + [anon_sym___weak] = ACTIONS(4437), + [anon_sym_alignas] = ACTIONS(4437), + [anon_sym__Alignas] = ACTIONS(4437), + [sym_primitive_type] = ACTIONS(4437), + [anon_sym_enum] = ACTIONS(4437), + [anon_sym_struct] = ACTIONS(4437), + [anon_sym_union] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_STAR_EQ] = ACTIONS(4442), + [anon_sym_SLASH_EQ] = ACTIONS(4442), + [anon_sym_PERCENT_EQ] = ACTIONS(4442), + [anon_sym_PLUS_EQ] = ACTIONS(4442), + [anon_sym_DASH_EQ] = ACTIONS(4442), + [anon_sym_LT_LT_EQ] = ACTIONS(4442), + [anon_sym_GT_GT_EQ] = ACTIONS(4442), + [anon_sym_AMP_EQ] = ACTIONS(4442), + [anon_sym_CARET_EQ] = ACTIONS(4442), + [anon_sym_PIPE_EQ] = ACTIONS(4442), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4437), + [anon_sym___typeof] = ACTIONS(4437), + [anon_sym_typeof] = ACTIONS(4437), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4437), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4437), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4437), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4437), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4437), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4437), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4437), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4437), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4437), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4437), + [anon_sym_NS_AVAILABLE] = ACTIONS(4437), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4437), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4437), + [anon_sym_API_AVAILABLE] = ACTIONS(4437), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4437), + [anon_sym_API_DEPRECATED] = ACTIONS(4437), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4437), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4437), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4437), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4437), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4437), + [anon_sym___deprecated_msg] = ACTIONS(4437), + [anon_sym___deprecated_enum_msg] = ACTIONS(4437), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4437), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4437), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4437), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4437), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4437), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4437), + [anon_sym_BOOL] = ACTIONS(4437), + [anon_sym_IMP] = ACTIONS(4437), + [anon_sym_SEL] = ACTIONS(4437), + [anon_sym_Class] = ACTIONS(4437), + [anon_sym_id] = ACTIONS(4437), + }, + [1567] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4466), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4468), + [anon_sym_COMMA] = ACTIONS(4470), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_SLASH] = ACTIONS(4446), + [anon_sym_PERCENT] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4448), + [anon_sym_AMP_AMP] = ACTIONS(4450), + [anon_sym_PIPE] = ACTIONS(4452), + [anon_sym_CARET] = ACTIONS(4454), + [anon_sym_AMP] = ACTIONS(4456), + [anon_sym_EQ_EQ] = ACTIONS(4458), + [anon_sym_BANG_EQ] = ACTIONS(4458), + [anon_sym_GT] = ACTIONS(4460), + [anon_sym_GT_EQ] = ACTIONS(4462), + [anon_sym_LT_EQ] = ACTIONS(4462), + [anon_sym_LT] = ACTIONS(4460), + [anon_sym_LT_LT] = ACTIONS(4464), + [anon_sym_GT_GT] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym___extension__] = ACTIONS(4466), + [anon_sym_extern] = ACTIONS(4466), + [anon_sym___attribute__] = ACTIONS(4466), + [anon_sym___attribute] = ACTIONS(4466), + [anon_sym_noreturn] = ACTIONS(4466), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4466), + [anon_sym_LBRACE] = ACTIONS(4470), + [anon_sym_signed] = ACTIONS(4466), + [anon_sym_unsigned] = ACTIONS(4466), + [anon_sym_long] = ACTIONS(4466), + [anon_sym_short] = ACTIONS(4466), + [anon_sym_static] = ACTIONS(4466), + [anon_sym_EQ] = ACTIONS(4466), + [anon_sym_ATautoreleasepool] = ACTIONS(4470), + [anon_sym_auto] = ACTIONS(4466), + [anon_sym_register] = ACTIONS(4466), + [anon_sym_inline] = ACTIONS(4466), + [anon_sym___inline] = ACTIONS(4466), + [anon_sym___inline__] = ACTIONS(4466), + [anon_sym___forceinline] = ACTIONS(4466), + [anon_sym_thread_local] = ACTIONS(4466), + [anon_sym___thread] = ACTIONS(4466), + [anon_sym_CG_EXTERN] = ACTIONS(4466), + [anon_sym_CG_INLINE] = ACTIONS(4466), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4466), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4466), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4466), + [anon_sym_IBOutlet] = ACTIONS(4466), + [anon_sym_IBInspectable] = ACTIONS(4466), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4466), + [anon_sym_NS_INLINE] = ACTIONS(4466), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4466), + [anon_sym_OBJC_EXPORT] = ACTIONS(4466), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4466), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4466), + [anon_sym_const] = ACTIONS(4466), + [anon_sym_constexpr] = ACTIONS(4466), + [anon_sym_volatile] = ACTIONS(4466), + [anon_sym_restrict] = ACTIONS(4466), + [anon_sym___restrict__] = ACTIONS(4466), + [anon_sym__Atomic] = ACTIONS(4466), + [anon_sym__Noreturn] = ACTIONS(4466), + [anon_sym__Nonnull] = ACTIONS(4466), + [anon_sym_nullable] = ACTIONS(4466), + [anon_sym__Complex] = ACTIONS(4466), + [anon_sym__Nullable] = ACTIONS(4466), + [anon_sym__Nullable_result] = ACTIONS(4466), + [anon_sym__Null_unspecified] = ACTIONS(4466), + [anon_sym___autoreleasing] = ACTIONS(4466), + [anon_sym___block] = ACTIONS(4466), + [anon_sym___bridge] = ACTIONS(4466), + [anon_sym___bridge_retained] = ACTIONS(4466), + [anon_sym___bridge_transfer] = ACTIONS(4466), + [anon_sym___complex] = ACTIONS(4466), + [anon_sym___const] = ACTIONS(4466), + [anon_sym___imag] = ACTIONS(4466), + [anon_sym___kindof] = ACTIONS(4466), + [anon_sym___nonnull] = ACTIONS(4466), + [anon_sym___nullable] = ACTIONS(4466), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4466), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4466), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4466), + [anon_sym___real] = ACTIONS(4466), + [anon_sym___strong] = ACTIONS(4466), + [anon_sym___unsafe_unretained] = ACTIONS(4466), + [anon_sym___unused] = ACTIONS(4466), + [anon_sym___weak] = ACTIONS(4466), + [anon_sym_alignas] = ACTIONS(4466), + [anon_sym__Alignas] = ACTIONS(4466), + [sym_primitive_type] = ACTIONS(4466), + [anon_sym_enum] = ACTIONS(4466), + [anon_sym_struct] = ACTIONS(4466), + [anon_sym_union] = ACTIONS(4466), + [anon_sym_QMARK] = ACTIONS(4472), + [anon_sym_STAR_EQ] = ACTIONS(4470), + [anon_sym_SLASH_EQ] = ACTIONS(4470), + [anon_sym_PERCENT_EQ] = ACTIONS(4470), + [anon_sym_PLUS_EQ] = ACTIONS(4470), + [anon_sym_DASH_EQ] = ACTIONS(4470), + [anon_sym_LT_LT_EQ] = ACTIONS(4470), + [anon_sym_GT_GT_EQ] = ACTIONS(4470), + [anon_sym_AMP_EQ] = ACTIONS(4470), + [anon_sym_CARET_EQ] = ACTIONS(4470), + [anon_sym_PIPE_EQ] = ACTIONS(4470), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4466), + [anon_sym___typeof] = ACTIONS(4466), + [anon_sym_typeof] = ACTIONS(4466), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4466), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4466), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4466), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4466), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4466), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4466), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4466), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4466), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4466), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4466), + [anon_sym_NS_AVAILABLE] = ACTIONS(4466), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4466), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4466), + [anon_sym_API_AVAILABLE] = ACTIONS(4466), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4466), + [anon_sym_API_DEPRECATED] = ACTIONS(4466), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4466), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4466), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4466), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4466), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4466), + [anon_sym___deprecated_msg] = ACTIONS(4466), + [anon_sym___deprecated_enum_msg] = ACTIONS(4466), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4466), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4466), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4466), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4466), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4466), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4466), + [anon_sym_BOOL] = ACTIONS(4466), + [anon_sym_IMP] = ACTIONS(4466), + [anon_sym_SEL] = ACTIONS(4466), + [anon_sym_Class] = ACTIONS(4466), + [anon_sym_id] = ACTIONS(4466), + }, + [1568] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4474), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4468), + [anon_sym_COMMA] = ACTIONS(4476), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_SLASH] = ACTIONS(4446), + [anon_sym_PERCENT] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4448), + [anon_sym_AMP_AMP] = ACTIONS(4450), + [anon_sym_PIPE] = ACTIONS(4452), + [anon_sym_CARET] = ACTIONS(4454), + [anon_sym_AMP] = ACTIONS(4456), + [anon_sym_EQ_EQ] = ACTIONS(4458), + [anon_sym_BANG_EQ] = ACTIONS(4458), + [anon_sym_GT] = ACTIONS(4460), + [anon_sym_GT_EQ] = ACTIONS(4462), + [anon_sym_LT_EQ] = ACTIONS(4462), + [anon_sym_LT] = ACTIONS(4460), + [anon_sym_LT_LT] = ACTIONS(4464), + [anon_sym_GT_GT] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4476), + [anon_sym___extension__] = ACTIONS(4474), + [anon_sym_extern] = ACTIONS(4474), + [anon_sym___attribute__] = ACTIONS(4474), + [anon_sym___attribute] = ACTIONS(4474), + [anon_sym_noreturn] = ACTIONS(4474), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4474), + [anon_sym_LBRACE] = ACTIONS(4476), + [anon_sym_signed] = ACTIONS(4474), + [anon_sym_unsigned] = ACTIONS(4474), + [anon_sym_long] = ACTIONS(4474), + [anon_sym_short] = ACTIONS(4474), + [anon_sym_static] = ACTIONS(4474), + [anon_sym_EQ] = ACTIONS(4474), + [anon_sym_ATautoreleasepool] = ACTIONS(4476), + [anon_sym_auto] = ACTIONS(4474), + [anon_sym_register] = ACTIONS(4474), + [anon_sym_inline] = ACTIONS(4474), + [anon_sym___inline] = ACTIONS(4474), + [anon_sym___inline__] = ACTIONS(4474), + [anon_sym___forceinline] = ACTIONS(4474), + [anon_sym_thread_local] = ACTIONS(4474), + [anon_sym___thread] = ACTIONS(4474), + [anon_sym_CG_EXTERN] = ACTIONS(4474), + [anon_sym_CG_INLINE] = ACTIONS(4474), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4474), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4474), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4474), + [anon_sym_IBOutlet] = ACTIONS(4474), + [anon_sym_IBInspectable] = ACTIONS(4474), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4474), + [anon_sym_NS_INLINE] = ACTIONS(4474), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4474), + [anon_sym_OBJC_EXPORT] = ACTIONS(4474), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4474), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4474), + [anon_sym_const] = ACTIONS(4474), + [anon_sym_constexpr] = ACTIONS(4474), + [anon_sym_volatile] = ACTIONS(4474), + [anon_sym_restrict] = ACTIONS(4474), + [anon_sym___restrict__] = ACTIONS(4474), + [anon_sym__Atomic] = ACTIONS(4474), + [anon_sym__Noreturn] = ACTIONS(4474), + [anon_sym__Nonnull] = ACTIONS(4474), + [anon_sym_nullable] = ACTIONS(4474), + [anon_sym__Complex] = ACTIONS(4474), + [anon_sym__Nullable] = ACTIONS(4474), + [anon_sym__Nullable_result] = ACTIONS(4474), + [anon_sym__Null_unspecified] = ACTIONS(4474), + [anon_sym___autoreleasing] = ACTIONS(4474), + [anon_sym___block] = ACTIONS(4474), + [anon_sym___bridge] = ACTIONS(4474), + [anon_sym___bridge_retained] = ACTIONS(4474), + [anon_sym___bridge_transfer] = ACTIONS(4474), + [anon_sym___complex] = ACTIONS(4474), + [anon_sym___const] = ACTIONS(4474), + [anon_sym___imag] = ACTIONS(4474), + [anon_sym___kindof] = ACTIONS(4474), + [anon_sym___nonnull] = ACTIONS(4474), + [anon_sym___nullable] = ACTIONS(4474), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4474), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4474), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4474), + [anon_sym___real] = ACTIONS(4474), + [anon_sym___strong] = ACTIONS(4474), + [anon_sym___unsafe_unretained] = ACTIONS(4474), + [anon_sym___unused] = ACTIONS(4474), + [anon_sym___weak] = ACTIONS(4474), + [anon_sym_alignas] = ACTIONS(4474), + [anon_sym__Alignas] = ACTIONS(4474), + [sym_primitive_type] = ACTIONS(4474), + [anon_sym_enum] = ACTIONS(4474), + [anon_sym_struct] = ACTIONS(4474), + [anon_sym_union] = ACTIONS(4474), + [anon_sym_QMARK] = ACTIONS(4472), + [anon_sym_STAR_EQ] = ACTIONS(4476), + [anon_sym_SLASH_EQ] = ACTIONS(4476), + [anon_sym_PERCENT_EQ] = ACTIONS(4476), + [anon_sym_PLUS_EQ] = ACTIONS(4476), + [anon_sym_DASH_EQ] = ACTIONS(4476), + [anon_sym_LT_LT_EQ] = ACTIONS(4476), + [anon_sym_GT_GT_EQ] = ACTIONS(4476), + [anon_sym_AMP_EQ] = ACTIONS(4476), + [anon_sym_CARET_EQ] = ACTIONS(4476), + [anon_sym_PIPE_EQ] = ACTIONS(4476), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4474), + [anon_sym___typeof] = ACTIONS(4474), + [anon_sym_typeof] = ACTIONS(4474), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4474), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4474), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4474), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4474), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4474), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4474), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4474), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4474), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4474), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4474), + [anon_sym_NS_AVAILABLE] = ACTIONS(4474), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4474), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4474), + [anon_sym_API_AVAILABLE] = ACTIONS(4474), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4474), + [anon_sym_API_DEPRECATED] = ACTIONS(4474), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4474), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4474), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4474), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4474), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4474), + [anon_sym___deprecated_msg] = ACTIONS(4474), + [anon_sym___deprecated_enum_msg] = ACTIONS(4474), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4474), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4474), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4474), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4474), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4474), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4474), + [anon_sym_BOOL] = ACTIONS(4474), + [anon_sym_IMP] = ACTIONS(4474), + [anon_sym_SEL] = ACTIONS(4474), + [anon_sym_Class] = ACTIONS(4474), + [anon_sym_id] = ACTIONS(4474), + }, + [1569] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4478), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4468), + [anon_sym_COMMA] = ACTIONS(4480), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_SLASH] = ACTIONS(4446), + [anon_sym_PERCENT] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4448), + [anon_sym_AMP_AMP] = ACTIONS(4450), + [anon_sym_PIPE] = ACTIONS(4452), + [anon_sym_CARET] = ACTIONS(4454), + [anon_sym_AMP] = ACTIONS(4456), + [anon_sym_EQ_EQ] = ACTIONS(4458), + [anon_sym_BANG_EQ] = ACTIONS(4458), + [anon_sym_GT] = ACTIONS(4460), + [anon_sym_GT_EQ] = ACTIONS(4462), + [anon_sym_LT_EQ] = ACTIONS(4462), + [anon_sym_LT] = ACTIONS(4460), + [anon_sym_LT_LT] = ACTIONS(4464), + [anon_sym_GT_GT] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4480), + [anon_sym___extension__] = ACTIONS(4478), + [anon_sym_extern] = ACTIONS(4478), + [anon_sym___attribute__] = ACTIONS(4478), + [anon_sym___attribute] = ACTIONS(4478), + [anon_sym_noreturn] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4478), + [anon_sym_LBRACE] = ACTIONS(4480), + [anon_sym_signed] = ACTIONS(4478), + [anon_sym_unsigned] = ACTIONS(4478), + [anon_sym_long] = ACTIONS(4478), + [anon_sym_short] = ACTIONS(4478), + [anon_sym_static] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4478), + [anon_sym_ATautoreleasepool] = ACTIONS(4480), + [anon_sym_auto] = ACTIONS(4478), + [anon_sym_register] = ACTIONS(4478), + [anon_sym_inline] = ACTIONS(4478), + [anon_sym___inline] = ACTIONS(4478), + [anon_sym___inline__] = ACTIONS(4478), + [anon_sym___forceinline] = ACTIONS(4478), + [anon_sym_thread_local] = ACTIONS(4478), + [anon_sym___thread] = ACTIONS(4478), + [anon_sym_CG_EXTERN] = ACTIONS(4478), + [anon_sym_CG_INLINE] = ACTIONS(4478), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4478), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4478), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4478), + [anon_sym_IBOutlet] = ACTIONS(4478), + [anon_sym_IBInspectable] = ACTIONS(4478), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4478), + [anon_sym_NS_INLINE] = ACTIONS(4478), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4478), + [anon_sym_OBJC_EXPORT] = ACTIONS(4478), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4478), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4478), + [anon_sym_const] = ACTIONS(4478), + [anon_sym_constexpr] = ACTIONS(4478), + [anon_sym_volatile] = ACTIONS(4478), + [anon_sym_restrict] = ACTIONS(4478), + [anon_sym___restrict__] = ACTIONS(4478), + [anon_sym__Atomic] = ACTIONS(4478), + [anon_sym__Noreturn] = ACTIONS(4478), + [anon_sym__Nonnull] = ACTIONS(4478), + [anon_sym_nullable] = ACTIONS(4478), + [anon_sym__Complex] = ACTIONS(4478), + [anon_sym__Nullable] = ACTIONS(4478), + [anon_sym__Nullable_result] = ACTIONS(4478), + [anon_sym__Null_unspecified] = ACTIONS(4478), + [anon_sym___autoreleasing] = ACTIONS(4478), + [anon_sym___block] = ACTIONS(4478), + [anon_sym___bridge] = ACTIONS(4478), + [anon_sym___bridge_retained] = ACTIONS(4478), + [anon_sym___bridge_transfer] = ACTIONS(4478), + [anon_sym___complex] = ACTIONS(4478), + [anon_sym___const] = ACTIONS(4478), + [anon_sym___imag] = ACTIONS(4478), + [anon_sym___kindof] = ACTIONS(4478), + [anon_sym___nonnull] = ACTIONS(4478), + [anon_sym___nullable] = ACTIONS(4478), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4478), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4478), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4478), + [anon_sym___real] = ACTIONS(4478), + [anon_sym___strong] = ACTIONS(4478), + [anon_sym___unsafe_unretained] = ACTIONS(4478), + [anon_sym___unused] = ACTIONS(4478), + [anon_sym___weak] = ACTIONS(4478), + [anon_sym_alignas] = ACTIONS(4478), + [anon_sym__Alignas] = ACTIONS(4478), + [sym_primitive_type] = ACTIONS(4478), + [anon_sym_enum] = ACTIONS(4478), + [anon_sym_struct] = ACTIONS(4478), + [anon_sym_union] = ACTIONS(4478), + [anon_sym_QMARK] = ACTIONS(4480), + [anon_sym_STAR_EQ] = ACTIONS(4480), + [anon_sym_SLASH_EQ] = ACTIONS(4480), + [anon_sym_PERCENT_EQ] = ACTIONS(4480), + [anon_sym_PLUS_EQ] = ACTIONS(4480), + [anon_sym_DASH_EQ] = ACTIONS(4480), + [anon_sym_LT_LT_EQ] = ACTIONS(4480), + [anon_sym_GT_GT_EQ] = ACTIONS(4480), + [anon_sym_AMP_EQ] = ACTIONS(4480), + [anon_sym_CARET_EQ] = ACTIONS(4480), + [anon_sym_PIPE_EQ] = ACTIONS(4480), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4478), + [anon_sym___typeof] = ACTIONS(4478), + [anon_sym_typeof] = ACTIONS(4478), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4478), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4478), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4478), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4478), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4478), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4478), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4478), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4478), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4478), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4478), + [anon_sym_NS_AVAILABLE] = ACTIONS(4478), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4478), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4478), + [anon_sym_API_AVAILABLE] = ACTIONS(4478), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4478), + [anon_sym_API_DEPRECATED] = ACTIONS(4478), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4478), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4478), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4478), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4478), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4478), + [anon_sym___deprecated_msg] = ACTIONS(4478), + [anon_sym___deprecated_enum_msg] = ACTIONS(4478), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4478), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4478), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4478), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4478), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4478), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4478), + [anon_sym_BOOL] = ACTIONS(4478), + [anon_sym_IMP] = ACTIONS(4478), + [anon_sym_SEL] = ACTIONS(4478), + [anon_sym_Class] = ACTIONS(4478), + [anon_sym_id] = ACTIONS(4478), + }, + [1570] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4482), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4468), + [anon_sym_COMMA] = ACTIONS(4484), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_SLASH] = ACTIONS(4446), + [anon_sym_PERCENT] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4448), + [anon_sym_AMP_AMP] = ACTIONS(4450), + [anon_sym_PIPE] = ACTIONS(4452), + [anon_sym_CARET] = ACTIONS(4454), + [anon_sym_AMP] = ACTIONS(4456), + [anon_sym_EQ_EQ] = ACTIONS(4458), + [anon_sym_BANG_EQ] = ACTIONS(4458), + [anon_sym_GT] = ACTIONS(4460), + [anon_sym_GT_EQ] = ACTIONS(4462), + [anon_sym_LT_EQ] = ACTIONS(4462), + [anon_sym_LT] = ACTIONS(4460), + [anon_sym_LT_LT] = ACTIONS(4464), + [anon_sym_GT_GT] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4484), + [anon_sym___extension__] = ACTIONS(4482), + [anon_sym_extern] = ACTIONS(4482), + [anon_sym___attribute__] = ACTIONS(4482), + [anon_sym___attribute] = ACTIONS(4482), + [anon_sym_noreturn] = ACTIONS(4482), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4482), + [anon_sym_LBRACE] = ACTIONS(4484), + [anon_sym_signed] = ACTIONS(4482), + [anon_sym_unsigned] = ACTIONS(4482), + [anon_sym_long] = ACTIONS(4482), + [anon_sym_short] = ACTIONS(4482), + [anon_sym_static] = ACTIONS(4482), + [anon_sym_EQ] = ACTIONS(4482), + [anon_sym_ATautoreleasepool] = ACTIONS(4484), + [anon_sym_auto] = ACTIONS(4482), + [anon_sym_register] = ACTIONS(4482), + [anon_sym_inline] = ACTIONS(4482), + [anon_sym___inline] = ACTIONS(4482), + [anon_sym___inline__] = ACTIONS(4482), + [anon_sym___forceinline] = ACTIONS(4482), + [anon_sym_thread_local] = ACTIONS(4482), + [anon_sym___thread] = ACTIONS(4482), + [anon_sym_CG_EXTERN] = ACTIONS(4482), + [anon_sym_CG_INLINE] = ACTIONS(4482), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4482), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4482), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4482), + [anon_sym_IBOutlet] = ACTIONS(4482), + [anon_sym_IBInspectable] = ACTIONS(4482), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4482), + [anon_sym_NS_INLINE] = ACTIONS(4482), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4482), + [anon_sym_OBJC_EXPORT] = ACTIONS(4482), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4482), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4482), + [anon_sym_const] = ACTIONS(4482), + [anon_sym_constexpr] = ACTIONS(4482), + [anon_sym_volatile] = ACTIONS(4482), + [anon_sym_restrict] = ACTIONS(4482), + [anon_sym___restrict__] = ACTIONS(4482), + [anon_sym__Atomic] = ACTIONS(4482), + [anon_sym__Noreturn] = ACTIONS(4482), + [anon_sym__Nonnull] = ACTIONS(4482), + [anon_sym_nullable] = ACTIONS(4482), + [anon_sym__Complex] = ACTIONS(4482), + [anon_sym__Nullable] = ACTIONS(4482), + [anon_sym__Nullable_result] = ACTIONS(4482), + [anon_sym__Null_unspecified] = ACTIONS(4482), + [anon_sym___autoreleasing] = ACTIONS(4482), + [anon_sym___block] = ACTIONS(4482), + [anon_sym___bridge] = ACTIONS(4482), + [anon_sym___bridge_retained] = ACTIONS(4482), + [anon_sym___bridge_transfer] = ACTIONS(4482), + [anon_sym___complex] = ACTIONS(4482), + [anon_sym___const] = ACTIONS(4482), + [anon_sym___imag] = ACTIONS(4482), + [anon_sym___kindof] = ACTIONS(4482), + [anon_sym___nonnull] = ACTIONS(4482), + [anon_sym___nullable] = ACTIONS(4482), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4482), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4482), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4482), + [anon_sym___real] = ACTIONS(4482), + [anon_sym___strong] = ACTIONS(4482), + [anon_sym___unsafe_unretained] = ACTIONS(4482), + [anon_sym___unused] = ACTIONS(4482), + [anon_sym___weak] = ACTIONS(4482), + [anon_sym_alignas] = ACTIONS(4482), + [anon_sym__Alignas] = ACTIONS(4482), + [sym_primitive_type] = ACTIONS(4482), + [anon_sym_enum] = ACTIONS(4482), + [anon_sym_struct] = ACTIONS(4482), + [anon_sym_union] = ACTIONS(4482), + [anon_sym_QMARK] = ACTIONS(4484), + [anon_sym_STAR_EQ] = ACTIONS(4484), + [anon_sym_SLASH_EQ] = ACTIONS(4484), + [anon_sym_PERCENT_EQ] = ACTIONS(4484), + [anon_sym_PLUS_EQ] = ACTIONS(4484), + [anon_sym_DASH_EQ] = ACTIONS(4484), + [anon_sym_LT_LT_EQ] = ACTIONS(4484), + [anon_sym_GT_GT_EQ] = ACTIONS(4484), + [anon_sym_AMP_EQ] = ACTIONS(4484), + [anon_sym_CARET_EQ] = ACTIONS(4484), + [anon_sym_PIPE_EQ] = ACTIONS(4484), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4482), + [anon_sym___typeof] = ACTIONS(4482), + [anon_sym_typeof] = ACTIONS(4482), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4482), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4482), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4482), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4482), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4482), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4482), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4482), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4482), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4482), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4482), + [anon_sym_NS_AVAILABLE] = ACTIONS(4482), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4482), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4482), + [anon_sym_API_AVAILABLE] = ACTIONS(4482), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4482), + [anon_sym_API_DEPRECATED] = ACTIONS(4482), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4482), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4482), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4482), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4482), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4482), + [anon_sym___deprecated_msg] = ACTIONS(4482), + [anon_sym___deprecated_enum_msg] = ACTIONS(4482), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4482), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4482), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4482), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4482), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4482), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4482), + [anon_sym_BOOL] = ACTIONS(4482), + [anon_sym_IMP] = ACTIONS(4482), + [anon_sym_SEL] = ACTIONS(4482), + [anon_sym_Class] = ACTIONS(4482), + [anon_sym_id] = ACTIONS(4482), + }, + [1571] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4025), + [anon_sym_PLUS] = ACTIONS(4025), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_SLASH] = ACTIONS(4446), + [anon_sym_PERCENT] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4025), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(4025), + [anon_sym_GT_EQ] = ACTIONS(4027), + [anon_sym_LT_EQ] = ACTIONS(4027), + [anon_sym_LT] = ACTIONS(4025), + [anon_sym_LT_LT] = ACTIONS(4025), + [anon_sym_GT_GT] = ACTIONS(4025), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4027), + [anon_sym_signed] = ACTIONS(4025), + [anon_sym_unsigned] = ACTIONS(4025), + [anon_sym_long] = ACTIONS(4025), + [anon_sym_short] = ACTIONS(4025), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_ATautoreleasepool] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [sym_primitive_type] = ACTIONS(4025), + [anon_sym_enum] = ACTIONS(4025), + [anon_sym_struct] = ACTIONS(4025), + [anon_sym_union] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4025), + [anon_sym___typeof] = ACTIONS(4025), + [anon_sym_typeof] = ACTIONS(4025), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + [anon_sym_BOOL] = ACTIONS(4025), + [anon_sym_IMP] = ACTIONS(4025), + [anon_sym_SEL] = ACTIONS(4025), + [anon_sym_Class] = ACTIONS(4025), + [anon_sym_id] = ACTIONS(4025), + }, + [1572] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_SLASH] = ACTIONS(4446), + [anon_sym_PERCENT] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4450), + [anon_sym_PIPE] = ACTIONS(4452), + [anon_sym_CARET] = ACTIONS(4454), + [anon_sym_AMP] = ACTIONS(4456), + [anon_sym_EQ_EQ] = ACTIONS(4458), + [anon_sym_BANG_EQ] = ACTIONS(4458), + [anon_sym_GT] = ACTIONS(4460), + [anon_sym_GT_EQ] = ACTIONS(4462), + [anon_sym_LT_EQ] = ACTIONS(4462), + [anon_sym_LT] = ACTIONS(4460), + [anon_sym_LT_LT] = ACTIONS(4464), + [anon_sym_GT_GT] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4027), + [anon_sym_signed] = ACTIONS(4025), + [anon_sym_unsigned] = ACTIONS(4025), + [anon_sym_long] = ACTIONS(4025), + [anon_sym_short] = ACTIONS(4025), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_ATautoreleasepool] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [sym_primitive_type] = ACTIONS(4025), + [anon_sym_enum] = ACTIONS(4025), + [anon_sym_struct] = ACTIONS(4025), + [anon_sym_union] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4025), + [anon_sym___typeof] = ACTIONS(4025), + [anon_sym_typeof] = ACTIONS(4025), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + [anon_sym_BOOL] = ACTIONS(4025), + [anon_sym_IMP] = ACTIONS(4025), + [anon_sym_SEL] = ACTIONS(4025), + [anon_sym_Class] = ACTIONS(4025), + [anon_sym_id] = ACTIONS(4025), + }, + [1573] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_SLASH] = ACTIONS(4446), + [anon_sym_PERCENT] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4452), + [anon_sym_CARET] = ACTIONS(4454), + [anon_sym_AMP] = ACTIONS(4456), + [anon_sym_EQ_EQ] = ACTIONS(4458), + [anon_sym_BANG_EQ] = ACTIONS(4458), + [anon_sym_GT] = ACTIONS(4460), + [anon_sym_GT_EQ] = ACTIONS(4462), + [anon_sym_LT_EQ] = ACTIONS(4462), + [anon_sym_LT] = ACTIONS(4460), + [anon_sym_LT_LT] = ACTIONS(4464), + [anon_sym_GT_GT] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4027), + [anon_sym_signed] = ACTIONS(4025), + [anon_sym_unsigned] = ACTIONS(4025), + [anon_sym_long] = ACTIONS(4025), + [anon_sym_short] = ACTIONS(4025), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_ATautoreleasepool] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [sym_primitive_type] = ACTIONS(4025), + [anon_sym_enum] = ACTIONS(4025), + [anon_sym_struct] = ACTIONS(4025), + [anon_sym_union] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4025), + [anon_sym___typeof] = ACTIONS(4025), + [anon_sym_typeof] = ACTIONS(4025), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + [anon_sym_BOOL] = ACTIONS(4025), + [anon_sym_IMP] = ACTIONS(4025), + [anon_sym_SEL] = ACTIONS(4025), + [anon_sym_Class] = ACTIONS(4025), + [anon_sym_id] = ACTIONS(4025), + }, + [1574] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_SLASH] = ACTIONS(4446), + [anon_sym_PERCENT] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4454), + [anon_sym_AMP] = ACTIONS(4456), + [anon_sym_EQ_EQ] = ACTIONS(4458), + [anon_sym_BANG_EQ] = ACTIONS(4458), + [anon_sym_GT] = ACTIONS(4460), + [anon_sym_GT_EQ] = ACTIONS(4462), + [anon_sym_LT_EQ] = ACTIONS(4462), + [anon_sym_LT] = ACTIONS(4460), + [anon_sym_LT_LT] = ACTIONS(4464), + [anon_sym_GT_GT] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4027), + [anon_sym_signed] = ACTIONS(4025), + [anon_sym_unsigned] = ACTIONS(4025), + [anon_sym_long] = ACTIONS(4025), + [anon_sym_short] = ACTIONS(4025), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_ATautoreleasepool] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [sym_primitive_type] = ACTIONS(4025), + [anon_sym_enum] = ACTIONS(4025), + [anon_sym_struct] = ACTIONS(4025), + [anon_sym_union] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4025), + [anon_sym___typeof] = ACTIONS(4025), + [anon_sym_typeof] = ACTIONS(4025), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + [anon_sym_BOOL] = ACTIONS(4025), + [anon_sym_IMP] = ACTIONS(4025), + [anon_sym_SEL] = ACTIONS(4025), + [anon_sym_Class] = ACTIONS(4025), + [anon_sym_id] = ACTIONS(4025), + }, + [1575] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_SLASH] = ACTIONS(4446), + [anon_sym_PERCENT] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4025), + [anon_sym_AMP] = ACTIONS(4456), + [anon_sym_EQ_EQ] = ACTIONS(4458), + [anon_sym_BANG_EQ] = ACTIONS(4458), + [anon_sym_GT] = ACTIONS(4460), + [anon_sym_GT_EQ] = ACTIONS(4462), + [anon_sym_LT_EQ] = ACTIONS(4462), + [anon_sym_LT] = ACTIONS(4460), + [anon_sym_LT_LT] = ACTIONS(4464), + [anon_sym_GT_GT] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4027), + [anon_sym_signed] = ACTIONS(4025), + [anon_sym_unsigned] = ACTIONS(4025), + [anon_sym_long] = ACTIONS(4025), + [anon_sym_short] = ACTIONS(4025), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_ATautoreleasepool] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [sym_primitive_type] = ACTIONS(4025), + [anon_sym_enum] = ACTIONS(4025), + [anon_sym_struct] = ACTIONS(4025), + [anon_sym_union] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4025), + [anon_sym___typeof] = ACTIONS(4025), + [anon_sym_typeof] = ACTIONS(4025), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + [anon_sym_BOOL] = ACTIONS(4025), + [anon_sym_IMP] = ACTIONS(4025), + [anon_sym_SEL] = ACTIONS(4025), + [anon_sym_Class] = ACTIONS(4025), + [anon_sym_id] = ACTIONS(4025), + }, + [1576] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_SLASH] = ACTIONS(4446), + [anon_sym_PERCENT] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4025), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4458), + [anon_sym_BANG_EQ] = ACTIONS(4458), + [anon_sym_GT] = ACTIONS(4460), + [anon_sym_GT_EQ] = ACTIONS(4462), + [anon_sym_LT_EQ] = ACTIONS(4462), + [anon_sym_LT] = ACTIONS(4460), + [anon_sym_LT_LT] = ACTIONS(4464), + [anon_sym_GT_GT] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4027), + [anon_sym_signed] = ACTIONS(4025), + [anon_sym_unsigned] = ACTIONS(4025), + [anon_sym_long] = ACTIONS(4025), + [anon_sym_short] = ACTIONS(4025), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_ATautoreleasepool] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [sym_primitive_type] = ACTIONS(4025), + [anon_sym_enum] = ACTIONS(4025), + [anon_sym_struct] = ACTIONS(4025), + [anon_sym_union] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4025), + [anon_sym___typeof] = ACTIONS(4025), + [anon_sym_typeof] = ACTIONS(4025), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + [anon_sym_BOOL] = ACTIONS(4025), + [anon_sym_IMP] = ACTIONS(4025), + [anon_sym_SEL] = ACTIONS(4025), + [anon_sym_Class] = ACTIONS(4025), + [anon_sym_id] = ACTIONS(4025), + }, + [1577] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_SLASH] = ACTIONS(4446), + [anon_sym_PERCENT] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4025), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(4460), + [anon_sym_GT_EQ] = ACTIONS(4462), + [anon_sym_LT_EQ] = ACTIONS(4462), + [anon_sym_LT] = ACTIONS(4460), + [anon_sym_LT_LT] = ACTIONS(4464), + [anon_sym_GT_GT] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4027), + [anon_sym_signed] = ACTIONS(4025), + [anon_sym_unsigned] = ACTIONS(4025), + [anon_sym_long] = ACTIONS(4025), + [anon_sym_short] = ACTIONS(4025), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_ATautoreleasepool] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [sym_primitive_type] = ACTIONS(4025), + [anon_sym_enum] = ACTIONS(4025), + [anon_sym_struct] = ACTIONS(4025), + [anon_sym_union] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4025), + [anon_sym___typeof] = ACTIONS(4025), + [anon_sym_typeof] = ACTIONS(4025), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + [anon_sym_BOOL] = ACTIONS(4025), + [anon_sym_IMP] = ACTIONS(4025), + [anon_sym_SEL] = ACTIONS(4025), + [anon_sym_Class] = ACTIONS(4025), + [anon_sym_id] = ACTIONS(4025), + }, + [1578] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_SLASH] = ACTIONS(4446), + [anon_sym_PERCENT] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4025), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(4025), + [anon_sym_GT_EQ] = ACTIONS(4027), + [anon_sym_LT_EQ] = ACTIONS(4027), + [anon_sym_LT] = ACTIONS(4025), + [anon_sym_LT_LT] = ACTIONS(4464), + [anon_sym_GT_GT] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4027), + [anon_sym_signed] = ACTIONS(4025), + [anon_sym_unsigned] = ACTIONS(4025), + [anon_sym_long] = ACTIONS(4025), + [anon_sym_short] = ACTIONS(4025), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_ATautoreleasepool] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [sym_primitive_type] = ACTIONS(4025), + [anon_sym_enum] = ACTIONS(4025), + [anon_sym_struct] = ACTIONS(4025), + [anon_sym_union] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4025), + [anon_sym___typeof] = ACTIONS(4025), + [anon_sym_typeof] = ACTIONS(4025), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + [anon_sym_BOOL] = ACTIONS(4025), + [anon_sym_IMP] = ACTIONS(4025), + [anon_sym_SEL] = ACTIONS(4025), + [anon_sym_Class] = ACTIONS(4025), + [anon_sym_id] = ACTIONS(4025), + }, + [1579] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_SLASH] = ACTIONS(4446), + [anon_sym_PERCENT] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4025), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(4025), + [anon_sym_GT_EQ] = ACTIONS(4027), + [anon_sym_LT_EQ] = ACTIONS(4027), + [anon_sym_LT] = ACTIONS(4025), + [anon_sym_LT_LT] = ACTIONS(4025), + [anon_sym_GT_GT] = ACTIONS(4025), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4027), + [anon_sym_signed] = ACTIONS(4025), + [anon_sym_unsigned] = ACTIONS(4025), + [anon_sym_long] = ACTIONS(4025), + [anon_sym_short] = ACTIONS(4025), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_ATautoreleasepool] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [sym_primitive_type] = ACTIONS(4025), + [anon_sym_enum] = ACTIONS(4025), + [anon_sym_struct] = ACTIONS(4025), + [anon_sym_union] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4025), + [anon_sym___typeof] = ACTIONS(4025), + [anon_sym_typeof] = ACTIONS(4025), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + [anon_sym_BOOL] = ACTIONS(4025), + [anon_sym_IMP] = ACTIONS(4025), + [anon_sym_SEL] = ACTIONS(4025), + [anon_sym_Class] = ACTIONS(4025), + [anon_sym_id] = ACTIONS(4025), + }, + [1580] = { + [sym_identifier] = ACTIONS(2350), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2352), + [anon_sym_COMMA] = ACTIONS(2352), + [anon_sym_RPAREN] = ACTIONS(2352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2352), + [anon_sym_LPAREN2] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2350), + [anon_sym_STAR] = ACTIONS(2352), + [anon_sym_SLASH] = ACTIONS(2350), + [anon_sym_PERCENT] = ACTIONS(2352), + [anon_sym_PIPE_PIPE] = ACTIONS(2352), + [anon_sym_AMP_AMP] = ACTIONS(2352), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_CARET] = ACTIONS(2352), + [anon_sym_AMP] = ACTIONS(2350), + [anon_sym_EQ_EQ] = ACTIONS(2352), + [anon_sym_BANG_EQ] = ACTIONS(2352), + [anon_sym_GT] = ACTIONS(2350), + [anon_sym_GT_EQ] = ACTIONS(2352), + [anon_sym_LT_EQ] = ACTIONS(2352), + [anon_sym_LT] = ACTIONS(2350), + [anon_sym_LT_LT] = ACTIONS(2352), + [anon_sym_GT_GT] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2352), + [anon_sym___extension__] = ACTIONS(2350), + [anon_sym_extern] = ACTIONS(2350), + [anon_sym___attribute__] = ACTIONS(2350), + [anon_sym___attribute] = ACTIONS(2350), + [anon_sym_noreturn] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2352), + [anon_sym_RBRACK] = ACTIONS(2352), + [anon_sym___declspec] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2352), + [anon_sym_RBRACE] = ACTIONS(2352), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(2350), + [anon_sym_ATautoreleasepool] = ACTIONS(2352), + [anon_sym_auto] = ACTIONS(2350), + [anon_sym_register] = ACTIONS(2350), + [anon_sym_inline] = ACTIONS(2350), + [anon_sym___inline] = ACTIONS(2350), + [anon_sym___inline__] = ACTIONS(2350), + [anon_sym___forceinline] = ACTIONS(2350), + [anon_sym_thread_local] = ACTIONS(2350), + [anon_sym___thread] = ACTIONS(2350), + [anon_sym_CG_EXTERN] = ACTIONS(2350), + [anon_sym_CG_INLINE] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2350), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2350), + [anon_sym_IBOutlet] = ACTIONS(2350), + [anon_sym_IBInspectable] = ACTIONS(2350), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2350), + [anon_sym_NS_INLINE] = ACTIONS(2350), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2350), + [anon_sym_OBJC_EXPORT] = ACTIONS(2350), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2350), + [anon_sym_const] = ACTIONS(2350), + [anon_sym_constexpr] = ACTIONS(2350), + [anon_sym_volatile] = ACTIONS(2350), + [anon_sym_restrict] = ACTIONS(2350), + [anon_sym___restrict__] = ACTIONS(2350), + [anon_sym__Atomic] = ACTIONS(2350), + [anon_sym__Noreturn] = ACTIONS(2350), + [anon_sym__Nonnull] = ACTIONS(2350), + [anon_sym_nullable] = ACTIONS(2350), + [anon_sym__Complex] = ACTIONS(2350), + [anon_sym__Nullable] = ACTIONS(2350), + [anon_sym__Nullable_result] = ACTIONS(2350), + [anon_sym__Null_unspecified] = ACTIONS(2350), + [anon_sym___autoreleasing] = ACTIONS(2350), + [anon_sym___block] = ACTIONS(2350), + [anon_sym___bridge] = ACTIONS(2350), + [anon_sym___bridge_retained] = ACTIONS(2350), + [anon_sym___bridge_transfer] = ACTIONS(2350), + [anon_sym___complex] = ACTIONS(2350), + [anon_sym___const] = ACTIONS(2350), + [anon_sym___imag] = ACTIONS(2350), + [anon_sym___kindof] = ACTIONS(2350), + [anon_sym___nonnull] = ACTIONS(2350), + [anon_sym___nullable] = ACTIONS(2350), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2350), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2350), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2350), + [anon_sym___real] = ACTIONS(2350), + [anon_sym___strong] = ACTIONS(2350), + [anon_sym___unsafe_unretained] = ACTIONS(2350), + [anon_sym___unused] = ACTIONS(2350), + [anon_sym___weak] = ACTIONS(2350), + [anon_sym_alignas] = ACTIONS(2350), + [anon_sym__Alignas] = ACTIONS(2350), + [sym_primitive_type] = ACTIONS(2350), + [anon_sym_enum] = ACTIONS(2350), + [anon_sym_COLON] = ACTIONS(2352), + [anon_sym_struct] = ACTIONS(2350), + [anon_sym_union] = ACTIONS(2350), + [anon_sym_else] = ACTIONS(2350), + [anon_sym_while] = ACTIONS(2350), + [anon_sym_QMARK] = ACTIONS(2352), + [anon_sym_DASH_DASH] = ACTIONS(2352), + [anon_sym_PLUS_PLUS] = ACTIONS(2352), + [anon_sym_DOT] = ACTIONS(2350), + [anon_sym_DASH_GT] = ACTIONS(2352), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2350), + [anon_sym___typeof] = ACTIONS(2350), + [anon_sym_typeof] = ACTIONS(2350), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2350), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2350), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2350), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2350), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE] = ACTIONS(2350), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_API_AVAILABLE] = ACTIONS(2350), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_API_DEPRECATED] = ACTIONS(2350), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2350), + [anon_sym___deprecated_msg] = ACTIONS(2350), + [anon_sym___deprecated_enum_msg] = ACTIONS(2350), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2350), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2350), + [anon_sym_ATcatch] = ACTIONS(2352), + [anon_sym___catch] = ACTIONS(2350), + [anon_sym_ATfinally] = ACTIONS(2352), + [anon_sym___finally] = ACTIONS(2350), + [anon_sym_BOOL] = ACTIONS(2350), + [anon_sym_IMP] = ACTIONS(2350), + [anon_sym_SEL] = ACTIONS(2350), + [anon_sym_Class] = ACTIONS(2350), + [anon_sym_id] = ACTIONS(2350), + }, + [1581] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4486), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4468), + [anon_sym_COMMA] = ACTIONS(4488), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_SLASH] = ACTIONS(4446), + [anon_sym_PERCENT] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4448), + [anon_sym_AMP_AMP] = ACTIONS(4450), + [anon_sym_PIPE] = ACTIONS(4452), + [anon_sym_CARET] = ACTIONS(4454), + [anon_sym_AMP] = ACTIONS(4456), + [anon_sym_EQ_EQ] = ACTIONS(4458), + [anon_sym_BANG_EQ] = ACTIONS(4458), + [anon_sym_GT] = ACTIONS(4460), + [anon_sym_GT_EQ] = ACTIONS(4462), + [anon_sym_LT_EQ] = ACTIONS(4462), + [anon_sym_LT] = ACTIONS(4460), + [anon_sym_LT_LT] = ACTIONS(4464), + [anon_sym_GT_GT] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4488), + [anon_sym___extension__] = ACTIONS(4486), + [anon_sym_extern] = ACTIONS(4486), + [anon_sym___attribute__] = ACTIONS(4486), + [anon_sym___attribute] = ACTIONS(4486), + [anon_sym_noreturn] = ACTIONS(4486), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4486), + [anon_sym_LBRACE] = ACTIONS(4488), + [anon_sym_signed] = ACTIONS(4486), + [anon_sym_unsigned] = ACTIONS(4486), + [anon_sym_long] = ACTIONS(4486), + [anon_sym_short] = ACTIONS(4486), + [anon_sym_static] = ACTIONS(4486), + [anon_sym_EQ] = ACTIONS(4486), + [anon_sym_ATautoreleasepool] = ACTIONS(4488), + [anon_sym_auto] = ACTIONS(4486), + [anon_sym_register] = ACTIONS(4486), + [anon_sym_inline] = ACTIONS(4486), + [anon_sym___inline] = ACTIONS(4486), + [anon_sym___inline__] = ACTIONS(4486), + [anon_sym___forceinline] = ACTIONS(4486), + [anon_sym_thread_local] = ACTIONS(4486), + [anon_sym___thread] = ACTIONS(4486), + [anon_sym_CG_EXTERN] = ACTIONS(4486), + [anon_sym_CG_INLINE] = ACTIONS(4486), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4486), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4486), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4486), + [anon_sym_IBOutlet] = ACTIONS(4486), + [anon_sym_IBInspectable] = ACTIONS(4486), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4486), + [anon_sym_NS_INLINE] = ACTIONS(4486), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4486), + [anon_sym_OBJC_EXPORT] = ACTIONS(4486), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4486), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4486), + [anon_sym_const] = ACTIONS(4486), + [anon_sym_constexpr] = ACTIONS(4486), + [anon_sym_volatile] = ACTIONS(4486), + [anon_sym_restrict] = ACTIONS(4486), + [anon_sym___restrict__] = ACTIONS(4486), + [anon_sym__Atomic] = ACTIONS(4486), + [anon_sym__Noreturn] = ACTIONS(4486), + [anon_sym__Nonnull] = ACTIONS(4486), + [anon_sym_nullable] = ACTIONS(4486), + [anon_sym__Complex] = ACTIONS(4486), + [anon_sym__Nullable] = ACTIONS(4486), + [anon_sym__Nullable_result] = ACTIONS(4486), + [anon_sym__Null_unspecified] = ACTIONS(4486), + [anon_sym___autoreleasing] = ACTIONS(4486), + [anon_sym___block] = ACTIONS(4486), + [anon_sym___bridge] = ACTIONS(4486), + [anon_sym___bridge_retained] = ACTIONS(4486), + [anon_sym___bridge_transfer] = ACTIONS(4486), + [anon_sym___complex] = ACTIONS(4486), + [anon_sym___const] = ACTIONS(4486), + [anon_sym___imag] = ACTIONS(4486), + [anon_sym___kindof] = ACTIONS(4486), + [anon_sym___nonnull] = ACTIONS(4486), + [anon_sym___nullable] = ACTIONS(4486), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4486), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4486), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4486), + [anon_sym___real] = ACTIONS(4486), + [anon_sym___strong] = ACTIONS(4486), + [anon_sym___unsafe_unretained] = ACTIONS(4486), + [anon_sym___unused] = ACTIONS(4486), + [anon_sym___weak] = ACTIONS(4486), + [anon_sym_alignas] = ACTIONS(4486), + [anon_sym__Alignas] = ACTIONS(4486), + [sym_primitive_type] = ACTIONS(4486), + [anon_sym_enum] = ACTIONS(4486), + [anon_sym_struct] = ACTIONS(4486), + [anon_sym_union] = ACTIONS(4486), + [anon_sym_QMARK] = ACTIONS(4472), + [anon_sym_STAR_EQ] = ACTIONS(4488), + [anon_sym_SLASH_EQ] = ACTIONS(4488), + [anon_sym_PERCENT_EQ] = ACTIONS(4488), + [anon_sym_PLUS_EQ] = ACTIONS(4488), + [anon_sym_DASH_EQ] = ACTIONS(4488), + [anon_sym_LT_LT_EQ] = ACTIONS(4488), + [anon_sym_GT_GT_EQ] = ACTIONS(4488), + [anon_sym_AMP_EQ] = ACTIONS(4488), + [anon_sym_CARET_EQ] = ACTIONS(4488), + [anon_sym_PIPE_EQ] = ACTIONS(4488), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4486), + [anon_sym___typeof] = ACTIONS(4486), + [anon_sym_typeof] = ACTIONS(4486), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4486), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4486), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4486), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4486), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4486), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4486), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4486), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4486), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4486), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4486), + [anon_sym_NS_AVAILABLE] = ACTIONS(4486), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4486), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4486), + [anon_sym_API_AVAILABLE] = ACTIONS(4486), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4486), + [anon_sym_API_DEPRECATED] = ACTIONS(4486), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4486), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4486), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4486), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4486), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4486), + [anon_sym___deprecated_msg] = ACTIONS(4486), + [anon_sym___deprecated_enum_msg] = ACTIONS(4486), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4486), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4486), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4486), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4486), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4486), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4486), + [anon_sym_BOOL] = ACTIONS(4486), + [anon_sym_IMP] = ACTIONS(4486), + [anon_sym_SEL] = ACTIONS(4486), + [anon_sym_Class] = ACTIONS(4486), + [anon_sym_id] = ACTIONS(4486), + }, + [1582] = { + [sym_identifier] = ACTIONS(3995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(3997), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(3995), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(3995), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(3995), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym___extension__] = ACTIONS(3995), + [anon_sym_extern] = ACTIONS(3995), + [anon_sym___attribute__] = ACTIONS(3995), + [anon_sym___attribute] = ACTIONS(3995), + [anon_sym_noreturn] = ACTIONS(3995), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym___declspec] = ACTIONS(3995), + [anon_sym_LBRACE] = ACTIONS(3997), + [anon_sym_signed] = ACTIONS(3995), + [anon_sym_unsigned] = ACTIONS(3995), + [anon_sym_long] = ACTIONS(3995), + [anon_sym_short] = ACTIONS(3995), + [anon_sym_static] = ACTIONS(3995), + [anon_sym_EQ] = ACTIONS(3999), + [anon_sym_ATautoreleasepool] = ACTIONS(3997), + [anon_sym_auto] = ACTIONS(3995), + [anon_sym_register] = ACTIONS(3995), + [anon_sym_inline] = ACTIONS(3995), + [anon_sym___inline] = ACTIONS(3995), + [anon_sym___inline__] = ACTIONS(3995), + [anon_sym___forceinline] = ACTIONS(3995), + [anon_sym_thread_local] = ACTIONS(3995), + [anon_sym___thread] = ACTIONS(3995), + [anon_sym_CG_EXTERN] = ACTIONS(3995), + [anon_sym_CG_INLINE] = ACTIONS(3995), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3995), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3995), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3995), + [anon_sym_IBOutlet] = ACTIONS(3995), + [anon_sym_IBInspectable] = ACTIONS(3995), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3995), + [anon_sym_NS_INLINE] = ACTIONS(3995), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3995), + [anon_sym_OBJC_EXPORT] = ACTIONS(3995), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3995), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3995), + [anon_sym_const] = ACTIONS(3995), + [anon_sym_constexpr] = ACTIONS(3995), + [anon_sym_volatile] = ACTIONS(3995), + [anon_sym_restrict] = ACTIONS(3995), + [anon_sym___restrict__] = ACTIONS(3995), + [anon_sym__Atomic] = ACTIONS(3995), + [anon_sym__Noreturn] = ACTIONS(3995), + [anon_sym__Nonnull] = ACTIONS(3995), + [anon_sym_nullable] = ACTIONS(3995), + [anon_sym__Complex] = ACTIONS(3995), + [anon_sym__Nullable] = ACTIONS(3995), + [anon_sym__Nullable_result] = ACTIONS(3995), + [anon_sym__Null_unspecified] = ACTIONS(3995), + [anon_sym___autoreleasing] = ACTIONS(3995), + [anon_sym___block] = ACTIONS(3995), + [anon_sym___bridge] = ACTIONS(3995), + [anon_sym___bridge_retained] = ACTIONS(3995), + [anon_sym___bridge_transfer] = ACTIONS(3995), + [anon_sym___complex] = ACTIONS(3995), + [anon_sym___const] = ACTIONS(3995), + [anon_sym___imag] = ACTIONS(3995), + [anon_sym___kindof] = ACTIONS(3995), + [anon_sym___nonnull] = ACTIONS(3995), + [anon_sym___nullable] = ACTIONS(3995), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3995), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3995), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3995), + [anon_sym___real] = ACTIONS(3995), + [anon_sym___strong] = ACTIONS(3995), + [anon_sym___unsafe_unretained] = ACTIONS(3995), + [anon_sym___unused] = ACTIONS(3995), + [anon_sym___weak] = ACTIONS(3995), + [anon_sym_alignas] = ACTIONS(3995), + [anon_sym__Alignas] = ACTIONS(3995), + [sym_primitive_type] = ACTIONS(3995), + [anon_sym_enum] = ACTIONS(3995), + [anon_sym_struct] = ACTIONS(3995), + [anon_sym_union] = ACTIONS(3995), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4001), + [anon_sym_SLASH_EQ] = ACTIONS(4001), + [anon_sym_PERCENT_EQ] = ACTIONS(4001), + [anon_sym_PLUS_EQ] = ACTIONS(4001), + [anon_sym_DASH_EQ] = ACTIONS(4001), + [anon_sym_LT_LT_EQ] = ACTIONS(4001), + [anon_sym_GT_GT_EQ] = ACTIONS(4001), + [anon_sym_AMP_EQ] = ACTIONS(4001), + [anon_sym_CARET_EQ] = ACTIONS(4001), + [anon_sym_PIPE_EQ] = ACTIONS(4001), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(3995), + [anon_sym___typeof] = ACTIONS(3995), + [anon_sym_typeof] = ACTIONS(3995), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3995), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3995), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3995), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3995), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3995), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3995), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3995), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3995), + [anon_sym_NS_AVAILABLE] = ACTIONS(3995), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3995), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_API_AVAILABLE] = ACTIONS(3995), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_API_DEPRECATED] = ACTIONS(3995), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3995), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3995), + [anon_sym___deprecated_msg] = ACTIONS(3995), + [anon_sym___deprecated_enum_msg] = ACTIONS(3995), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3995), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3995), + [anon_sym_BOOL] = ACTIONS(3995), + [anon_sym_IMP] = ACTIONS(3995), + [anon_sym_SEL] = ACTIONS(3995), + [anon_sym_Class] = ACTIONS(3995), + [anon_sym_id] = ACTIONS(3995), + }, + [1583] = { + [sym__declaration_modifiers] = STATE(1737), + [sym__declaration_specifiers] = STATE(4592), + [sym_attribute_specifier] = STATE(1737), + [sym_attribute_declaration] = STATE(1737), + [sym_ms_declspec_modifier] = STATE(1737), + [sym_ms_based_modifier] = STATE(6199), + [sym__declarator] = STATE(5214), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_compound_statement] = STATE(6423), + [sym_storage_class_specifier] = STATE(1737), + [sym_type_qualifier] = STATE(1737), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_variadic_parameter] = STATE(5365), + [sym_parameter_declaration] = STATE(5365), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1737), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(1737), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(4160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4164), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(4492), + [anon_sym_CARET] = ACTIONS(4494), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1584] = { + [sym__declaration_modifiers] = STATE(1761), + [sym__declaration_specifiers] = STATE(4592), + [sym_attribute_specifier] = STATE(1761), + [sym_attribute_declaration] = STATE(1761), + [sym_ms_declspec_modifier] = STATE(1761), + [sym__abstract_declarator] = STATE(5262), + [sym_abstract_parenthesized_declarator] = STATE(4894), + [sym_abstract_pointer_declarator] = STATE(4894), + [sym_abstract_function_declarator] = STATE(4894), + [sym_abstract_array_declarator] = STATE(4894), + [sym_compound_statement] = STATE(6423), + [sym_storage_class_specifier] = STATE(1761), + [sym_type_qualifier] = STATE(1761), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_variadic_parameter] = STATE(5365), + [sym_parameter_list] = STATE(4295), + [sym_parameter_declaration] = STATE(5365), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1761), + [sym_abstract_block_pointer_declarator] = STATE(4894), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(1761), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4164), + [anon_sym_LPAREN2] = ACTIONS(4496), + [anon_sym_STAR] = ACTIONS(4498), + [anon_sym_CARET] = ACTIONS(4500), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1585] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6199), + [sym__declarator] = STATE(5279), + [sym__abstract_declarator] = STATE(5208), + [sym_parenthesized_declarator] = STATE(4011), + [sym_abstract_parenthesized_declarator] = STATE(4894), + [sym_pointer_declarator] = STATE(4011), + [sym_abstract_pointer_declarator] = STATE(4894), + [sym_function_declarator] = STATE(4011), + [sym_abstract_function_declarator] = STATE(4894), + [sym_array_declarator] = STATE(4011), + [sym_abstract_array_declarator] = STATE(4894), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_parameter_list] = STATE(4295), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_declarator] = STATE(4011), + [sym_abstract_block_pointer_declarator] = STATE(4894), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(4160), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4170), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1586] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6199), + [sym__declarator] = STATE(5288), + [sym__abstract_declarator] = STATE(5208), + [sym_parenthesized_declarator] = STATE(4011), + [sym_abstract_parenthesized_declarator] = STATE(4894), + [sym_pointer_declarator] = STATE(4011), + [sym_abstract_pointer_declarator] = STATE(4894), + [sym_function_declarator] = STATE(4011), + [sym_abstract_function_declarator] = STATE(4894), + [sym_array_declarator] = STATE(4011), + [sym_abstract_array_declarator] = STATE(4894), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_parameter_list] = STATE(4295), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_declarator] = STATE(4011), + [sym_abstract_block_pointer_declarator] = STATE(4894), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(4160), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4170), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1587] = { + [sym_string_literal] = STATE(1924), + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(4504), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(4508), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(4508), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4523), + [anon_sym_SLASH_EQ] = ACTIONS(4523), + [anon_sym_PERCENT_EQ] = ACTIONS(4523), + [anon_sym_PLUS_EQ] = ACTIONS(4523), + [anon_sym_DASH_EQ] = ACTIONS(4523), + [anon_sym_LT_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_GT_EQ] = ACTIONS(4523), + [anon_sym_AMP_EQ] = ACTIONS(4523), + [anon_sym_CARET_EQ] = ACTIONS(4523), + [anon_sym_PIPE_EQ] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [1588] = { + [sym_string_literal] = STATE(1924), + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(4504), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(4508), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(4508), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [anon_sym_COLON] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4523), + [anon_sym_SLASH_EQ] = ACTIONS(4523), + [anon_sym_PERCENT_EQ] = ACTIONS(4523), + [anon_sym_PLUS_EQ] = ACTIONS(4523), + [anon_sym_DASH_EQ] = ACTIONS(4523), + [anon_sym_LT_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_GT_EQ] = ACTIONS(4523), + [anon_sym_AMP_EQ] = ACTIONS(4523), + [anon_sym_CARET_EQ] = ACTIONS(4523), + [anon_sym_PIPE_EQ] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [1589] = { + [sym_string_literal] = STATE(1924), + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(4504), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(4508), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(4508), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [anon_sym_COLON] = ACTIONS(4529), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4523), + [anon_sym_SLASH_EQ] = ACTIONS(4523), + [anon_sym_PERCENT_EQ] = ACTIONS(4523), + [anon_sym_PLUS_EQ] = ACTIONS(4523), + [anon_sym_DASH_EQ] = ACTIONS(4523), + [anon_sym_LT_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_GT_EQ] = ACTIONS(4523), + [anon_sym_AMP_EQ] = ACTIONS(4523), + [anon_sym_CARET_EQ] = ACTIONS(4523), + [anon_sym_PIPE_EQ] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [1590] = { + [sym_string_literal] = STATE(1924), + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(4504), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(4508), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(4508), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(4514), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4523), + [anon_sym_SLASH_EQ] = ACTIONS(4523), + [anon_sym_PERCENT_EQ] = ACTIONS(4523), + [anon_sym_PLUS_EQ] = ACTIONS(4523), + [anon_sym_DASH_EQ] = ACTIONS(4523), + [anon_sym_LT_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_GT_EQ] = ACTIONS(4523), + [anon_sym_AMP_EQ] = ACTIONS(4523), + [anon_sym_CARET_EQ] = ACTIONS(4523), + [anon_sym_PIPE_EQ] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [1591] = { + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4540), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6762), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1592] = { + [sym_string_literal] = STATE(1924), + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(4504), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(4508), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(4508), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [anon_sym_in] = ACTIONS(4533), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4523), + [anon_sym_SLASH_EQ] = ACTIONS(4523), + [anon_sym_PERCENT_EQ] = ACTIONS(4523), + [anon_sym_PLUS_EQ] = ACTIONS(4523), + [anon_sym_DASH_EQ] = ACTIONS(4523), + [anon_sym_LT_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_GT_EQ] = ACTIONS(4523), + [anon_sym_AMP_EQ] = ACTIONS(4523), + [anon_sym_CARET_EQ] = ACTIONS(4523), + [anon_sym_PIPE_EQ] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [1593] = { + [sym_preproc_def] = STATE(1621), + [sym_preproc_function_def] = STATE(1621), + [sym_preproc_call] = STATE(1621), + [sym_preproc_if_in_field_declaration_list] = STATE(1621), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1621), + [sym__declaration_modifiers] = STATE(2246), + [sym__declaration_specifiers] = STATE(4617), + [sym_attribute_specifier] = STATE(2246), + [sym_attribute_declaration] = STATE(2246), + [sym_ms_declspec_modifier] = STATE(2246), + [sym_storage_class_specifier] = STATE(2246), + [sym_type_qualifier] = STATE(2246), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__field_declaration_list_item] = STATE(1621), + [sym_field_declaration] = STATE(1621), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2246), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_atdef_field] = STATE(1621), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1621), + [aux_sym__declaration_specifiers_repeat1] = STATE(2246), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(4539), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4310), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + [anon_sym_ATdefs] = ACTIONS(4541), + }, + [1594] = { + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4531), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6068), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1595] = { + [sym_preproc_def] = STATE(1619), + [sym_preproc_function_def] = STATE(1619), + [sym_preproc_call] = STATE(1619), + [sym_preproc_if_in_field_declaration_list] = STATE(1619), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1619), + [sym__declaration_modifiers] = STATE(2246), + [sym__declaration_specifiers] = STATE(4617), + [sym_attribute_specifier] = STATE(2246), + [sym_attribute_declaration] = STATE(2246), + [sym_ms_declspec_modifier] = STATE(2246), + [sym_storage_class_specifier] = STATE(2246), + [sym_type_qualifier] = STATE(2246), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__field_declaration_list_item] = STATE(1619), + [sym_field_declaration] = STATE(1619), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2246), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_atdef_field] = STATE(1619), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1619), + [aux_sym__declaration_specifiers_repeat1] = STATE(2246), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(4543), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4310), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + [anon_sym_ATdefs] = ACTIONS(4541), + }, + [1596] = { + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4524), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6338), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1597] = { + [sym_string_literal] = STATE(1611), + [aux_sym_concatenated_string_repeat1] = STATE(1611), + [sym_identifier] = ACTIONS(4545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3965), + [anon_sym_COMMA] = ACTIONS(3965), + [anon_sym_LPAREN2] = ACTIONS(3965), + [anon_sym_DASH] = ACTIONS(3967), + [anon_sym_PLUS] = ACTIONS(3967), + [anon_sym_STAR] = ACTIONS(3965), + [anon_sym_SLASH] = ACTIONS(3967), + [anon_sym_PERCENT] = ACTIONS(3965), + [anon_sym_PIPE_PIPE] = ACTIONS(3965), + [anon_sym_AMP_AMP] = ACTIONS(3965), + [anon_sym_PIPE] = ACTIONS(3967), + [anon_sym_CARET] = ACTIONS(3965), + [anon_sym_AMP] = ACTIONS(3967), + [anon_sym_EQ_EQ] = ACTIONS(3965), + [anon_sym_BANG_EQ] = ACTIONS(3965), + [anon_sym_GT] = ACTIONS(3967), + [anon_sym_GT_EQ] = ACTIONS(3965), + [anon_sym_LT_EQ] = ACTIONS(3965), + [anon_sym_LT] = ACTIONS(3967), + [anon_sym_LT_LT] = ACTIONS(3965), + [anon_sym_GT_GT] = ACTIONS(3965), + [anon_sym_SEMI] = ACTIONS(3965), + [anon_sym___extension__] = ACTIONS(3967), + [anon_sym_extern] = ACTIONS(3967), + [anon_sym___attribute__] = ACTIONS(3967), + [anon_sym___attribute] = ACTIONS(3967), + [anon_sym_noreturn] = ACTIONS(3967), + [anon_sym_LBRACK] = ACTIONS(3965), + [anon_sym___declspec] = ACTIONS(3967), + [anon_sym_LBRACE] = ACTIONS(3965), + [anon_sym_signed] = ACTIONS(3967), + [anon_sym_unsigned] = ACTIONS(3967), + [anon_sym_long] = ACTIONS(3967), + [anon_sym_short] = ACTIONS(3967), + [anon_sym_static] = ACTIONS(3967), + [anon_sym_ATautoreleasepool] = ACTIONS(3965), + [anon_sym_auto] = ACTIONS(3967), + [anon_sym_register] = ACTIONS(3967), + [anon_sym_inline] = ACTIONS(3967), + [anon_sym___inline] = ACTIONS(3967), + [anon_sym___inline__] = ACTIONS(3967), + [anon_sym___forceinline] = ACTIONS(3967), + [anon_sym_thread_local] = ACTIONS(3967), + [anon_sym___thread] = ACTIONS(3967), + [anon_sym_CG_EXTERN] = ACTIONS(3967), + [anon_sym_CG_INLINE] = ACTIONS(3967), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3967), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3967), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3967), + [anon_sym_IBOutlet] = ACTIONS(3967), + [anon_sym_IBInspectable] = ACTIONS(3967), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3967), + [anon_sym_NS_INLINE] = ACTIONS(3967), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3967), + [anon_sym_OBJC_EXPORT] = ACTIONS(3967), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3967), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3967), + [anon_sym_const] = ACTIONS(3967), + [anon_sym_constexpr] = ACTIONS(3967), + [anon_sym_volatile] = ACTIONS(3967), + [anon_sym_restrict] = ACTIONS(3967), + [anon_sym___restrict__] = ACTIONS(3967), + [anon_sym__Atomic] = ACTIONS(3967), + [anon_sym__Noreturn] = ACTIONS(3967), + [anon_sym__Nonnull] = ACTIONS(3967), + [anon_sym_nullable] = ACTIONS(3967), + [anon_sym__Complex] = ACTIONS(3967), + [anon_sym__Nullable] = ACTIONS(3967), + [anon_sym__Nullable_result] = ACTIONS(3967), + [anon_sym__Null_unspecified] = ACTIONS(3967), + [anon_sym___autoreleasing] = ACTIONS(3967), + [anon_sym___block] = ACTIONS(3967), + [anon_sym___bridge] = ACTIONS(3967), + [anon_sym___bridge_retained] = ACTIONS(3967), + [anon_sym___bridge_transfer] = ACTIONS(3967), + [anon_sym___complex] = ACTIONS(3967), + [anon_sym___const] = ACTIONS(3967), + [anon_sym___imag] = ACTIONS(3967), + [anon_sym___kindof] = ACTIONS(3967), + [anon_sym___nonnull] = ACTIONS(3967), + [anon_sym___nullable] = ACTIONS(3967), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3967), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3967), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3967), + [anon_sym___real] = ACTIONS(3967), + [anon_sym___strong] = ACTIONS(3967), + [anon_sym___unsafe_unretained] = ACTIONS(3967), + [anon_sym___unused] = ACTIONS(3967), + [anon_sym___weak] = ACTIONS(3967), + [anon_sym_alignas] = ACTIONS(3967), + [anon_sym__Alignas] = ACTIONS(3967), + [sym_primitive_type] = ACTIONS(3967), + [anon_sym_enum] = ACTIONS(3967), + [anon_sym_struct] = ACTIONS(3967), + [anon_sym_union] = ACTIONS(3967), + [anon_sym_QMARK] = ACTIONS(3965), + [anon_sym_DASH_DASH] = ACTIONS(3965), + [anon_sym_PLUS_PLUS] = ACTIONS(3965), + [anon_sym_DOT] = ACTIONS(3967), + [anon_sym_DASH_GT] = ACTIONS(3965), + [anon_sym_AT] = ACTIONS(4003), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(3967), + [anon_sym___typeof] = ACTIONS(3967), + [anon_sym_typeof] = ACTIONS(3967), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3967), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3967), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3967), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3967), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3967), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3967), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3967), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3967), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3967), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3967), + [anon_sym_NS_AVAILABLE] = ACTIONS(3967), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3967), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3967), + [anon_sym_API_AVAILABLE] = ACTIONS(3967), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3967), + [anon_sym_API_DEPRECATED] = ACTIONS(3967), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3967), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3967), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3967), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3967), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3967), + [anon_sym___deprecated_msg] = ACTIONS(3967), + [anon_sym___deprecated_enum_msg] = ACTIONS(3967), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3967), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3967), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3967), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3967), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3967), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3967), + [anon_sym_BOOL] = ACTIONS(3967), + [anon_sym_IMP] = ACTIONS(3967), + [anon_sym_SEL] = ACTIONS(3967), + [anon_sym_Class] = ACTIONS(3967), + [anon_sym_id] = ACTIONS(3967), + }, + [1598] = { + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4530), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6371), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1599] = { + [sym_string_literal] = STATE(1924), + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(4504), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(4508), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(4508), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [anon_sym_COLON] = ACTIONS(4547), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4523), + [anon_sym_SLASH_EQ] = ACTIONS(4523), + [anon_sym_PERCENT_EQ] = ACTIONS(4523), + [anon_sym_PLUS_EQ] = ACTIONS(4523), + [anon_sym_DASH_EQ] = ACTIONS(4523), + [anon_sym_LT_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_GT_EQ] = ACTIONS(4523), + [anon_sym_AMP_EQ] = ACTIONS(4523), + [anon_sym_CARET_EQ] = ACTIONS(4523), + [anon_sym_PIPE_EQ] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [1600] = { + [sym_string_literal] = STATE(1924), + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(4504), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(4508), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(4508), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(4514), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [anon_sym_COLON] = ACTIONS(4549), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4523), + [anon_sym_SLASH_EQ] = ACTIONS(4523), + [anon_sym_PERCENT_EQ] = ACTIONS(4523), + [anon_sym_PLUS_EQ] = ACTIONS(4523), + [anon_sym_DASH_EQ] = ACTIONS(4523), + [anon_sym_LT_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_GT_EQ] = ACTIONS(4523), + [anon_sym_AMP_EQ] = ACTIONS(4523), + [anon_sym_CARET_EQ] = ACTIONS(4523), + [anon_sym_PIPE_EQ] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [1601] = { + [sym_string_literal] = STATE(1924), + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(4504), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(4508), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(4508), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(4514), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [anon_sym_COLON] = ACTIONS(4529), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4523), + [anon_sym_SLASH_EQ] = ACTIONS(4523), + [anon_sym_PERCENT_EQ] = ACTIONS(4523), + [anon_sym_PLUS_EQ] = ACTIONS(4523), + [anon_sym_DASH_EQ] = ACTIONS(4523), + [anon_sym_LT_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_GT_EQ] = ACTIONS(4523), + [anon_sym_AMP_EQ] = ACTIONS(4523), + [anon_sym_CARET_EQ] = ACTIONS(4523), + [anon_sym_PIPE_EQ] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [1602] = { + [sym_preproc_def] = STATE(1605), + [sym_preproc_function_def] = STATE(1605), + [sym_preproc_call] = STATE(1605), + [sym_preproc_if_in_field_declaration_list] = STATE(1605), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1605), + [sym__declaration_modifiers] = STATE(2246), + [sym__declaration_specifiers] = STATE(4598), + [sym_attribute_specifier] = STATE(2246), + [sym_attribute_declaration] = STATE(2246), + [sym_ms_declspec_modifier] = STATE(2246), + [sym_storage_class_specifier] = STATE(2246), + [sym_type_qualifier] = STATE(2246), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__field_declaration_list_item] = STATE(1605), + [sym_field_declaration] = STATE(1605), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2246), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_atdef_field] = STATE(1605), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1605), + [aux_sym__declaration_specifiers_repeat1] = STATE(2246), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3361), + [aux_sym_preproc_if_token1] = ACTIONS(4551), + [aux_sym_preproc_if_token2] = ACTIONS(4553), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4555), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4555), + [sym_preproc_directive] = ACTIONS(3369), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4310), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + [anon_sym_ATdefs] = ACTIONS(4557), + }, + [1603] = { + [sym_string_literal] = STATE(1924), + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(4504), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(4508), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(4508), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [anon_sym_COLON] = ACTIONS(4559), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4523), + [anon_sym_SLASH_EQ] = ACTIONS(4523), + [anon_sym_PERCENT_EQ] = ACTIONS(4523), + [anon_sym_PLUS_EQ] = ACTIONS(4523), + [anon_sym_DASH_EQ] = ACTIONS(4523), + [anon_sym_LT_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_GT_EQ] = ACTIONS(4523), + [anon_sym_AMP_EQ] = ACTIONS(4523), + [anon_sym_CARET_EQ] = ACTIONS(4523), + [anon_sym_PIPE_EQ] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [1604] = { + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4520), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6348), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1605] = { + [sym_preproc_def] = STATE(1605), + [sym_preproc_function_def] = STATE(1605), + [sym_preproc_call] = STATE(1605), + [sym_preproc_if_in_field_declaration_list] = STATE(1605), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1605), + [sym__declaration_modifiers] = STATE(2246), + [sym__declaration_specifiers] = STATE(4598), + [sym_attribute_specifier] = STATE(2246), + [sym_attribute_declaration] = STATE(2246), + [sym_ms_declspec_modifier] = STATE(2246), + [sym_storage_class_specifier] = STATE(2246), + [sym_type_qualifier] = STATE(2246), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__field_declaration_list_item] = STATE(1605), + [sym_field_declaration] = STATE(1605), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2246), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_atdef_field] = STATE(1605), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1605), + [aux_sym__declaration_specifiers_repeat1] = STATE(2246), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(4372), + [aux_sym_preproc_def_token1] = ACTIONS(4561), + [aux_sym_preproc_if_token1] = ACTIONS(4564), + [aux_sym_preproc_if_token2] = ACTIONS(4381), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), + [sym_preproc_directive] = ACTIONS(4570), + [anon_sym___extension__] = ACTIONS(4389), + [anon_sym_extern] = ACTIONS(4392), + [anon_sym___attribute__] = ACTIONS(4395), + [anon_sym___attribute] = ACTIONS(4395), + [anon_sym_noreturn] = ACTIONS(4389), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym___declspec] = ACTIONS(4401), + [anon_sym_signed] = ACTIONS(4404), + [anon_sym_unsigned] = ACTIONS(4404), + [anon_sym_long] = ACTIONS(4404), + [anon_sym_short] = ACTIONS(4404), + [anon_sym_static] = ACTIONS(4392), + [anon_sym_auto] = ACTIONS(4392), + [anon_sym_register] = ACTIONS(4392), + [anon_sym_inline] = ACTIONS(4392), + [anon_sym___inline] = ACTIONS(4392), + [anon_sym___inline__] = ACTIONS(4392), + [anon_sym___forceinline] = ACTIONS(4392), + [anon_sym_thread_local] = ACTIONS(4392), + [anon_sym___thread] = ACTIONS(4392), + [anon_sym_CG_EXTERN] = ACTIONS(4392), + [anon_sym_CG_INLINE] = ACTIONS(4392), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4392), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4392), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4392), + [anon_sym_IBOutlet] = ACTIONS(4392), + [anon_sym_IBInspectable] = ACTIONS(4392), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4392), + [anon_sym_NS_INLINE] = ACTIONS(4392), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4392), + [anon_sym_OBJC_EXPORT] = ACTIONS(4392), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4392), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4392), + [anon_sym_const] = ACTIONS(4389), + [anon_sym_constexpr] = ACTIONS(4389), + [anon_sym_volatile] = ACTIONS(4389), + [anon_sym_restrict] = ACTIONS(4389), + [anon_sym___restrict__] = ACTIONS(4389), + [anon_sym__Atomic] = ACTIONS(4389), + [anon_sym__Noreturn] = ACTIONS(4389), + [anon_sym__Nonnull] = ACTIONS(4389), + [anon_sym_nullable] = ACTIONS(4389), + [anon_sym__Complex] = ACTIONS(4389), + [anon_sym__Nullable] = ACTIONS(4389), + [anon_sym__Nullable_result] = ACTIONS(4389), + [anon_sym__Null_unspecified] = ACTIONS(4389), + [anon_sym___autoreleasing] = ACTIONS(4389), + [anon_sym___block] = ACTIONS(4389), + [anon_sym___bridge] = ACTIONS(4389), + [anon_sym___bridge_retained] = ACTIONS(4389), + [anon_sym___bridge_transfer] = ACTIONS(4389), + [anon_sym___complex] = ACTIONS(4389), + [anon_sym___const] = ACTIONS(4389), + [anon_sym___imag] = ACTIONS(4389), + [anon_sym___kindof] = ACTIONS(4389), + [anon_sym___nonnull] = ACTIONS(4389), + [anon_sym___nullable] = ACTIONS(4389), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4389), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4389), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4389), + [anon_sym___real] = ACTIONS(4389), + [anon_sym___strong] = ACTIONS(4389), + [anon_sym___unsafe_unretained] = ACTIONS(4389), + [anon_sym___unused] = ACTIONS(4389), + [anon_sym___weak] = ACTIONS(4389), + [anon_sym_alignas] = ACTIONS(4407), + [anon_sym__Alignas] = ACTIONS(4407), + [sym_primitive_type] = ACTIONS(4410), + [anon_sym_enum] = ACTIONS(4413), + [anon_sym_struct] = ACTIONS(4416), + [anon_sym_union] = ACTIONS(4419), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4422), + [anon_sym___typeof] = ACTIONS(4422), + [anon_sym_typeof] = ACTIONS(4422), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4425), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4425), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4425), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4425), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4425), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4425), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4425), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4425), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4425), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4428), + [anon_sym_NS_AVAILABLE] = ACTIONS(4428), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4428), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4428), + [anon_sym_API_AVAILABLE] = ACTIONS(4428), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4428), + [anon_sym_API_DEPRECATED] = ACTIONS(4428), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4428), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4428), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4428), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4428), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4428), + [anon_sym___deprecated_msg] = ACTIONS(4428), + [anon_sym___deprecated_enum_msg] = ACTIONS(4428), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4428), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4428), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4428), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4428), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4428), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4428), + [anon_sym_BOOL] = ACTIONS(4431), + [anon_sym_IMP] = ACTIONS(4431), + [anon_sym_SEL] = ACTIONS(4431), + [anon_sym_Class] = ACTIONS(4431), + [anon_sym_id] = ACTIONS(4431), + [anon_sym_ATdefs] = ACTIONS(4573), + }, + [1606] = { + [sym_preproc_def] = STATE(1602), + [sym_preproc_function_def] = STATE(1602), + [sym_preproc_call] = STATE(1602), + [sym_preproc_if_in_field_declaration_list] = STATE(1602), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1602), + [sym__declaration_modifiers] = STATE(2246), + [sym__declaration_specifiers] = STATE(4598), + [sym_attribute_specifier] = STATE(2246), + [sym_attribute_declaration] = STATE(2246), + [sym_ms_declspec_modifier] = STATE(2246), + [sym_storage_class_specifier] = STATE(2246), + [sym_type_qualifier] = STATE(2246), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__field_declaration_list_item] = STATE(1602), + [sym_field_declaration] = STATE(1602), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2246), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_atdef_field] = STATE(1602), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1602), + [aux_sym__declaration_specifiers_repeat1] = STATE(2246), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3361), + [aux_sym_preproc_if_token1] = ACTIONS(4551), + [aux_sym_preproc_if_token2] = ACTIONS(4576), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4555), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4555), + [sym_preproc_directive] = ACTIONS(3369), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4310), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + [anon_sym_ATdefs] = ACTIONS(4557), + }, + [1607] = { + [sym_string_literal] = STATE(1924), + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(4504), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(4508), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(4508), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(4514), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [anon_sym_COLON] = ACTIONS(4578), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4523), + [anon_sym_SLASH_EQ] = ACTIONS(4523), + [anon_sym_PERCENT_EQ] = ACTIONS(4523), + [anon_sym_PLUS_EQ] = ACTIONS(4523), + [anon_sym_DASH_EQ] = ACTIONS(4523), + [anon_sym_LT_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_GT_EQ] = ACTIONS(4523), + [anon_sym_AMP_EQ] = ACTIONS(4523), + [anon_sym_CARET_EQ] = ACTIONS(4523), + [anon_sym_PIPE_EQ] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [1608] = { + [sym_string_literal] = STATE(1608), + [aux_sym_concatenated_string_repeat1] = STATE(1608), + [sym_identifier] = ACTIONS(4580), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3953), + [anon_sym_LPAREN2] = ACTIONS(3953), + [anon_sym_DASH] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3953), + [anon_sym_SLASH] = ACTIONS(3955), + [anon_sym_PERCENT] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_PIPE] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3953), + [anon_sym_AMP] = ACTIONS(3955), + [anon_sym_EQ_EQ] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_GT_EQ] = ACTIONS(3953), + [anon_sym_LT_EQ] = ACTIONS(3953), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_LT_LT] = ACTIONS(3953), + [anon_sym_GT_GT] = ACTIONS(3953), + [anon_sym_SEMI] = ACTIONS(3953), + [anon_sym___extension__] = ACTIONS(3955), + [anon_sym_extern] = ACTIONS(3955), + [anon_sym___attribute__] = ACTIONS(3955), + [anon_sym___attribute] = ACTIONS(3955), + [anon_sym_noreturn] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym___declspec] = ACTIONS(3955), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_signed] = ACTIONS(3955), + [anon_sym_unsigned] = ACTIONS(3955), + [anon_sym_long] = ACTIONS(3955), + [anon_sym_short] = ACTIONS(3955), + [anon_sym_static] = ACTIONS(3955), + [anon_sym_ATautoreleasepool] = ACTIONS(3953), + [anon_sym_auto] = ACTIONS(3955), + [anon_sym_register] = ACTIONS(3955), + [anon_sym_inline] = ACTIONS(3955), + [anon_sym___inline] = ACTIONS(3955), + [anon_sym___inline__] = ACTIONS(3955), + [anon_sym___forceinline] = ACTIONS(3955), + [anon_sym_thread_local] = ACTIONS(3955), + [anon_sym___thread] = ACTIONS(3955), + [anon_sym_CG_EXTERN] = ACTIONS(3955), + [anon_sym_CG_INLINE] = ACTIONS(3955), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3955), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3955), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3955), + [anon_sym_IBOutlet] = ACTIONS(3955), + [anon_sym_IBInspectable] = ACTIONS(3955), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3955), + [anon_sym_NS_INLINE] = ACTIONS(3955), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3955), + [anon_sym_OBJC_EXPORT] = ACTIONS(3955), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3955), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3955), + [anon_sym_const] = ACTIONS(3955), + [anon_sym_constexpr] = ACTIONS(3955), + [anon_sym_volatile] = ACTIONS(3955), + [anon_sym_restrict] = ACTIONS(3955), + [anon_sym___restrict__] = ACTIONS(3955), + [anon_sym__Atomic] = ACTIONS(3955), + [anon_sym__Noreturn] = ACTIONS(3955), + [anon_sym__Nonnull] = ACTIONS(3955), + [anon_sym_nullable] = ACTIONS(3955), + [anon_sym__Complex] = ACTIONS(3955), + [anon_sym__Nullable] = ACTIONS(3955), + [anon_sym__Nullable_result] = ACTIONS(3955), + [anon_sym__Null_unspecified] = ACTIONS(3955), + [anon_sym___autoreleasing] = ACTIONS(3955), + [anon_sym___block] = ACTIONS(3955), + [anon_sym___bridge] = ACTIONS(3955), + [anon_sym___bridge_retained] = ACTIONS(3955), + [anon_sym___bridge_transfer] = ACTIONS(3955), + [anon_sym___complex] = ACTIONS(3955), + [anon_sym___const] = ACTIONS(3955), + [anon_sym___imag] = ACTIONS(3955), + [anon_sym___kindof] = ACTIONS(3955), + [anon_sym___nonnull] = ACTIONS(3955), + [anon_sym___nullable] = ACTIONS(3955), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3955), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3955), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3955), + [anon_sym___real] = ACTIONS(3955), + [anon_sym___strong] = ACTIONS(3955), + [anon_sym___unsafe_unretained] = ACTIONS(3955), + [anon_sym___unused] = ACTIONS(3955), + [anon_sym___weak] = ACTIONS(3955), + [anon_sym_alignas] = ACTIONS(3955), + [anon_sym__Alignas] = ACTIONS(3955), + [sym_primitive_type] = ACTIONS(3955), + [anon_sym_enum] = ACTIONS(3955), + [anon_sym_struct] = ACTIONS(3955), + [anon_sym_union] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3953), + [anon_sym_DASH_DASH] = ACTIONS(3953), + [anon_sym_PLUS_PLUS] = ACTIONS(3953), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3953), + [anon_sym_AT] = ACTIONS(4583), + [anon_sym_DQUOTE] = ACTIONS(4586), + [anon_sym_L_DQUOTE] = ACTIONS(4586), + [anon_sym_u_DQUOTE] = ACTIONS(4586), + [anon_sym_U_DQUOTE] = ACTIONS(4586), + [anon_sym_u8_DQUOTE] = ACTIONS(4586), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(3955), + [anon_sym___typeof] = ACTIONS(3955), + [anon_sym_typeof] = ACTIONS(3955), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3955), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3955), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3955), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3955), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3955), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3955), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3955), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3955), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3955), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3955), + [anon_sym_NS_AVAILABLE] = ACTIONS(3955), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3955), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3955), + [anon_sym_API_AVAILABLE] = ACTIONS(3955), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3955), + [anon_sym_API_DEPRECATED] = ACTIONS(3955), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3955), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3955), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3955), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3955), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3955), + [anon_sym___deprecated_msg] = ACTIONS(3955), + [anon_sym___deprecated_enum_msg] = ACTIONS(3955), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3955), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3955), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3955), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3955), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3955), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3955), + [anon_sym_BOOL] = ACTIONS(3955), + [anon_sym_IMP] = ACTIONS(3955), + [anon_sym_SEL] = ACTIONS(3955), + [anon_sym_Class] = ACTIONS(3955), + [anon_sym_id] = ACTIONS(3955), + }, + [1609] = { + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4572), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6321), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1610] = { + [sym_string_literal] = STATE(1924), + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(4504), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(4508), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(4508), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [anon_sym_COLON] = ACTIONS(4549), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4523), + [anon_sym_SLASH_EQ] = ACTIONS(4523), + [anon_sym_PERCENT_EQ] = ACTIONS(4523), + [anon_sym_PLUS_EQ] = ACTIONS(4523), + [anon_sym_DASH_EQ] = ACTIONS(4523), + [anon_sym_LT_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_GT_EQ] = ACTIONS(4523), + [anon_sym_AMP_EQ] = ACTIONS(4523), + [anon_sym_CARET_EQ] = ACTIONS(4523), + [anon_sym_PIPE_EQ] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [1611] = { + [sym_string_literal] = STATE(1608), + [aux_sym_concatenated_string_repeat1] = STATE(1608), + [sym_identifier] = ACTIONS(4589), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3973), + [anon_sym_COMMA] = ACTIONS(3973), + [anon_sym_LPAREN2] = ACTIONS(3973), + [anon_sym_DASH] = ACTIONS(3975), + [anon_sym_PLUS] = ACTIONS(3975), + [anon_sym_STAR] = ACTIONS(3973), + [anon_sym_SLASH] = ACTIONS(3975), + [anon_sym_PERCENT] = ACTIONS(3973), + [anon_sym_PIPE_PIPE] = ACTIONS(3973), + [anon_sym_AMP_AMP] = ACTIONS(3973), + [anon_sym_PIPE] = ACTIONS(3975), + [anon_sym_CARET] = ACTIONS(3973), + [anon_sym_AMP] = ACTIONS(3975), + [anon_sym_EQ_EQ] = ACTIONS(3973), + [anon_sym_BANG_EQ] = ACTIONS(3973), + [anon_sym_GT] = ACTIONS(3975), + [anon_sym_GT_EQ] = ACTIONS(3973), + [anon_sym_LT_EQ] = ACTIONS(3973), + [anon_sym_LT] = ACTIONS(3975), + [anon_sym_LT_LT] = ACTIONS(3973), + [anon_sym_GT_GT] = ACTIONS(3973), + [anon_sym_SEMI] = ACTIONS(3973), + [anon_sym___extension__] = ACTIONS(3975), + [anon_sym_extern] = ACTIONS(3975), + [anon_sym___attribute__] = ACTIONS(3975), + [anon_sym___attribute] = ACTIONS(3975), + [anon_sym_noreturn] = ACTIONS(3975), + [anon_sym_LBRACK] = ACTIONS(3973), + [anon_sym___declspec] = ACTIONS(3975), + [anon_sym_LBRACE] = ACTIONS(3973), + [anon_sym_signed] = ACTIONS(3975), + [anon_sym_unsigned] = ACTIONS(3975), + [anon_sym_long] = ACTIONS(3975), + [anon_sym_short] = ACTIONS(3975), + [anon_sym_static] = ACTIONS(3975), + [anon_sym_ATautoreleasepool] = ACTIONS(3973), + [anon_sym_auto] = ACTIONS(3975), + [anon_sym_register] = ACTIONS(3975), + [anon_sym_inline] = ACTIONS(3975), + [anon_sym___inline] = ACTIONS(3975), + [anon_sym___inline__] = ACTIONS(3975), + [anon_sym___forceinline] = ACTIONS(3975), + [anon_sym_thread_local] = ACTIONS(3975), + [anon_sym___thread] = ACTIONS(3975), + [anon_sym_CG_EXTERN] = ACTIONS(3975), + [anon_sym_CG_INLINE] = ACTIONS(3975), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3975), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3975), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3975), + [anon_sym_IBOutlet] = ACTIONS(3975), + [anon_sym_IBInspectable] = ACTIONS(3975), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3975), + [anon_sym_NS_INLINE] = ACTIONS(3975), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3975), + [anon_sym_OBJC_EXPORT] = ACTIONS(3975), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3975), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3975), + [anon_sym_const] = ACTIONS(3975), + [anon_sym_constexpr] = ACTIONS(3975), + [anon_sym_volatile] = ACTIONS(3975), + [anon_sym_restrict] = ACTIONS(3975), + [anon_sym___restrict__] = ACTIONS(3975), + [anon_sym__Atomic] = ACTIONS(3975), + [anon_sym__Noreturn] = ACTIONS(3975), + [anon_sym__Nonnull] = ACTIONS(3975), + [anon_sym_nullable] = ACTIONS(3975), + [anon_sym__Complex] = ACTIONS(3975), + [anon_sym__Nullable] = ACTIONS(3975), + [anon_sym__Nullable_result] = ACTIONS(3975), + [anon_sym__Null_unspecified] = ACTIONS(3975), + [anon_sym___autoreleasing] = ACTIONS(3975), + [anon_sym___block] = ACTIONS(3975), + [anon_sym___bridge] = ACTIONS(3975), + [anon_sym___bridge_retained] = ACTIONS(3975), + [anon_sym___bridge_transfer] = ACTIONS(3975), + [anon_sym___complex] = ACTIONS(3975), + [anon_sym___const] = ACTIONS(3975), + [anon_sym___imag] = ACTIONS(3975), + [anon_sym___kindof] = ACTIONS(3975), + [anon_sym___nonnull] = ACTIONS(3975), + [anon_sym___nullable] = ACTIONS(3975), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3975), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3975), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3975), + [anon_sym___real] = ACTIONS(3975), + [anon_sym___strong] = ACTIONS(3975), + [anon_sym___unsafe_unretained] = ACTIONS(3975), + [anon_sym___unused] = ACTIONS(3975), + [anon_sym___weak] = ACTIONS(3975), + [anon_sym_alignas] = ACTIONS(3975), + [anon_sym__Alignas] = ACTIONS(3975), + [sym_primitive_type] = ACTIONS(3975), + [anon_sym_enum] = ACTIONS(3975), + [anon_sym_struct] = ACTIONS(3975), + [anon_sym_union] = ACTIONS(3975), + [anon_sym_QMARK] = ACTIONS(3973), + [anon_sym_DASH_DASH] = ACTIONS(3973), + [anon_sym_PLUS_PLUS] = ACTIONS(3973), + [anon_sym_DOT] = ACTIONS(3975), + [anon_sym_DASH_GT] = ACTIONS(3973), + [anon_sym_AT] = ACTIONS(4003), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(3975), + [anon_sym___typeof] = ACTIONS(3975), + [anon_sym_typeof] = ACTIONS(3975), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3975), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3975), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3975), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3975), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3975), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3975), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3975), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3975), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3975), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3975), + [anon_sym_NS_AVAILABLE] = ACTIONS(3975), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3975), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3975), + [anon_sym_API_AVAILABLE] = ACTIONS(3975), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3975), + [anon_sym_API_DEPRECATED] = ACTIONS(3975), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3975), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3975), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3975), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3975), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3975), + [anon_sym___deprecated_msg] = ACTIONS(3975), + [anon_sym___deprecated_enum_msg] = ACTIONS(3975), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3975), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3975), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3975), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3975), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3975), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3975), + [anon_sym_BOOL] = ACTIONS(3975), + [anon_sym_IMP] = ACTIONS(3975), + [anon_sym_SEL] = ACTIONS(3975), + [anon_sym_Class] = ACTIONS(3975), + [anon_sym_id] = ACTIONS(3975), + }, + [1612] = { + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_expression] = STATE(4522), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_type_descriptor] = STATE(6288), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(4354), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(4360), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(4360), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(187), + [anon_sym_union] = ACTIONS(67), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(243), + }, + [1613] = { + [sym_string_literal] = STATE(1924), + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(4504), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(4508), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(4508), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [anon_sym_COLON] = ACTIONS(4578), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4523), + [anon_sym_SLASH_EQ] = ACTIONS(4523), + [anon_sym_PERCENT_EQ] = ACTIONS(4523), + [anon_sym_PLUS_EQ] = ACTIONS(4523), + [anon_sym_DASH_EQ] = ACTIONS(4523), + [anon_sym_LT_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_GT_EQ] = ACTIONS(4523), + [anon_sym_AMP_EQ] = ACTIONS(4523), + [anon_sym_CARET_EQ] = ACTIONS(4523), + [anon_sym_PIPE_EQ] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [1614] = { + [sym_string_literal] = STATE(1924), + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(4504), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(4508), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(4508), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [anon_sym_COLON] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4523), + [anon_sym_SLASH_EQ] = ACTIONS(4523), + [anon_sym_PERCENT_EQ] = ACTIONS(4523), + [anon_sym_PLUS_EQ] = ACTIONS(4523), + [anon_sym_DASH_EQ] = ACTIONS(4523), + [anon_sym_LT_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_GT_EQ] = ACTIONS(4523), + [anon_sym_AMP_EQ] = ACTIONS(4523), + [anon_sym_CARET_EQ] = ACTIONS(4523), + [anon_sym_PIPE_EQ] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [1615] = { + [sym_string_literal] = STATE(1924), + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(4504), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(4508), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(4508), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [anon_sym_in] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4523), + [anon_sym_SLASH_EQ] = ACTIONS(4523), + [anon_sym_PERCENT_EQ] = ACTIONS(4523), + [anon_sym_PLUS_EQ] = ACTIONS(4523), + [anon_sym_DASH_EQ] = ACTIONS(4523), + [anon_sym_LT_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_GT_EQ] = ACTIONS(4523), + [anon_sym_AMP_EQ] = ACTIONS(4523), + [anon_sym_CARET_EQ] = ACTIONS(4523), + [anon_sym_PIPE_EQ] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [1616] = { + [sym_string_literal] = STATE(1924), + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(4504), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(4508), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(4508), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [anon_sym_in] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4523), + [anon_sym_SLASH_EQ] = ACTIONS(4523), + [anon_sym_PERCENT_EQ] = ACTIONS(4523), + [anon_sym_PLUS_EQ] = ACTIONS(4523), + [anon_sym_DASH_EQ] = ACTIONS(4523), + [anon_sym_LT_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_GT_EQ] = ACTIONS(4523), + [anon_sym_AMP_EQ] = ACTIONS(4523), + [anon_sym_CARET_EQ] = ACTIONS(4523), + [anon_sym_PIPE_EQ] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [1617] = { + [sym_string_literal] = STATE(1924), + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(4504), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(4508), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(4508), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [anon_sym_in] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4523), + [anon_sym_SLASH_EQ] = ACTIONS(4523), + [anon_sym_PERCENT_EQ] = ACTIONS(4523), + [anon_sym_PLUS_EQ] = ACTIONS(4523), + [anon_sym_DASH_EQ] = ACTIONS(4523), + [anon_sym_LT_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_GT_EQ] = ACTIONS(4523), + [anon_sym_AMP_EQ] = ACTIONS(4523), + [anon_sym_CARET_EQ] = ACTIONS(4523), + [anon_sym_PIPE_EQ] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [1618] = { + [sym_preproc_def] = STATE(1618), + [sym_preproc_function_def] = STATE(1618), + [sym_preproc_call] = STATE(1618), + [sym_preproc_if_in_field_declaration_list] = STATE(1618), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1618), + [sym__declaration_modifiers] = STATE(2246), + [sym__declaration_specifiers] = STATE(4617), + [sym_attribute_specifier] = STATE(2246), + [sym_attribute_declaration] = STATE(2246), + [sym_ms_declspec_modifier] = STATE(2246), + [sym_storage_class_specifier] = STATE(2246), + [sym_type_qualifier] = STATE(2246), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__field_declaration_list_item] = STATE(1618), + [sym_field_declaration] = STATE(1618), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2246), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_atdef_field] = STATE(1618), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1618), + [aux_sym__declaration_specifiers_repeat1] = STATE(2246), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(4372), + [aux_sym_preproc_def_token1] = ACTIONS(4599), + [aux_sym_preproc_if_token1] = ACTIONS(4602), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4605), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4605), + [sym_preproc_directive] = ACTIONS(4608), + [anon_sym___extension__] = ACTIONS(4389), + [anon_sym_extern] = ACTIONS(4392), + [anon_sym___attribute__] = ACTIONS(4395), + [anon_sym___attribute] = ACTIONS(4395), + [anon_sym_noreturn] = ACTIONS(4389), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym___declspec] = ACTIONS(4401), + [anon_sym_RBRACE] = ACTIONS(4611), + [anon_sym_signed] = ACTIONS(4404), + [anon_sym_unsigned] = ACTIONS(4404), + [anon_sym_long] = ACTIONS(4404), + [anon_sym_short] = ACTIONS(4404), + [anon_sym_static] = ACTIONS(4392), + [anon_sym_auto] = ACTIONS(4392), + [anon_sym_register] = ACTIONS(4392), + [anon_sym_inline] = ACTIONS(4392), + [anon_sym___inline] = ACTIONS(4392), + [anon_sym___inline__] = ACTIONS(4392), + [anon_sym___forceinline] = ACTIONS(4392), + [anon_sym_thread_local] = ACTIONS(4392), + [anon_sym___thread] = ACTIONS(4392), + [anon_sym_CG_EXTERN] = ACTIONS(4392), + [anon_sym_CG_INLINE] = ACTIONS(4392), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4392), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4392), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4392), + [anon_sym_IBOutlet] = ACTIONS(4392), + [anon_sym_IBInspectable] = ACTIONS(4392), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4392), + [anon_sym_NS_INLINE] = ACTIONS(4392), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4392), + [anon_sym_OBJC_EXPORT] = ACTIONS(4392), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4392), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4392), + [anon_sym_const] = ACTIONS(4389), + [anon_sym_constexpr] = ACTIONS(4389), + [anon_sym_volatile] = ACTIONS(4389), + [anon_sym_restrict] = ACTIONS(4389), + [anon_sym___restrict__] = ACTIONS(4389), + [anon_sym__Atomic] = ACTIONS(4389), + [anon_sym__Noreturn] = ACTIONS(4389), + [anon_sym__Nonnull] = ACTIONS(4389), + [anon_sym_nullable] = ACTIONS(4389), + [anon_sym__Complex] = ACTIONS(4389), + [anon_sym__Nullable] = ACTIONS(4389), + [anon_sym__Nullable_result] = ACTIONS(4389), + [anon_sym__Null_unspecified] = ACTIONS(4389), + [anon_sym___autoreleasing] = ACTIONS(4389), + [anon_sym___block] = ACTIONS(4389), + [anon_sym___bridge] = ACTIONS(4389), + [anon_sym___bridge_retained] = ACTIONS(4389), + [anon_sym___bridge_transfer] = ACTIONS(4389), + [anon_sym___complex] = ACTIONS(4389), + [anon_sym___const] = ACTIONS(4389), + [anon_sym___imag] = ACTIONS(4389), + [anon_sym___kindof] = ACTIONS(4389), + [anon_sym___nonnull] = ACTIONS(4389), + [anon_sym___nullable] = ACTIONS(4389), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4389), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4389), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4389), + [anon_sym___real] = ACTIONS(4389), + [anon_sym___strong] = ACTIONS(4389), + [anon_sym___unsafe_unretained] = ACTIONS(4389), + [anon_sym___unused] = ACTIONS(4389), + [anon_sym___weak] = ACTIONS(4389), + [anon_sym_alignas] = ACTIONS(4407), + [anon_sym__Alignas] = ACTIONS(4407), + [sym_primitive_type] = ACTIONS(4410), + [anon_sym_enum] = ACTIONS(4413), + [anon_sym_struct] = ACTIONS(4416), + [anon_sym_union] = ACTIONS(4419), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4422), + [anon_sym___typeof] = ACTIONS(4422), + [anon_sym_typeof] = ACTIONS(4422), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4425), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4425), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4425), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4425), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4425), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4425), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4425), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4425), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4425), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4428), + [anon_sym_NS_AVAILABLE] = ACTIONS(4428), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4428), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4428), + [anon_sym_API_AVAILABLE] = ACTIONS(4428), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4428), + [anon_sym_API_DEPRECATED] = ACTIONS(4428), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4428), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4428), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4428), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4428), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4428), + [anon_sym___deprecated_msg] = ACTIONS(4428), + [anon_sym___deprecated_enum_msg] = ACTIONS(4428), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4428), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4428), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4428), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4428), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4428), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4428), + [anon_sym_BOOL] = ACTIONS(4431), + [anon_sym_IMP] = ACTIONS(4431), + [anon_sym_SEL] = ACTIONS(4431), + [anon_sym_Class] = ACTIONS(4431), + [anon_sym_id] = ACTIONS(4431), + [anon_sym_ATdefs] = ACTIONS(4613), + }, + [1619] = { + [sym_preproc_def] = STATE(1618), + [sym_preproc_function_def] = STATE(1618), + [sym_preproc_call] = STATE(1618), + [sym_preproc_if_in_field_declaration_list] = STATE(1618), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1618), + [sym__declaration_modifiers] = STATE(2246), + [sym__declaration_specifiers] = STATE(4617), + [sym_attribute_specifier] = STATE(2246), + [sym_attribute_declaration] = STATE(2246), + [sym_ms_declspec_modifier] = STATE(2246), + [sym_storage_class_specifier] = STATE(2246), + [sym_type_qualifier] = STATE(2246), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__field_declaration_list_item] = STATE(1618), + [sym_field_declaration] = STATE(1618), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2246), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_atdef_field] = STATE(1618), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1618), + [aux_sym__declaration_specifiers_repeat1] = STATE(2246), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(4616), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4310), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + [anon_sym_ATdefs] = ACTIONS(4541), + }, + [1620] = { + [sym_string_literal] = STATE(1924), + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(4504), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(4508), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(4508), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [anon_sym_in] = ACTIONS(4618), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4523), + [anon_sym_SLASH_EQ] = ACTIONS(4523), + [anon_sym_PERCENT_EQ] = ACTIONS(4523), + [anon_sym_PLUS_EQ] = ACTIONS(4523), + [anon_sym_DASH_EQ] = ACTIONS(4523), + [anon_sym_LT_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_GT_EQ] = ACTIONS(4523), + [anon_sym_AMP_EQ] = ACTIONS(4523), + [anon_sym_CARET_EQ] = ACTIONS(4523), + [anon_sym_PIPE_EQ] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [1621] = { + [sym_preproc_def] = STATE(1618), + [sym_preproc_function_def] = STATE(1618), + [sym_preproc_call] = STATE(1618), + [sym_preproc_if_in_field_declaration_list] = STATE(1618), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1618), + [sym__declaration_modifiers] = STATE(2246), + [sym__declaration_specifiers] = STATE(4617), + [sym_attribute_specifier] = STATE(2246), + [sym_attribute_declaration] = STATE(2246), + [sym_ms_declspec_modifier] = STATE(2246), + [sym_storage_class_specifier] = STATE(2246), + [sym_type_qualifier] = STATE(2246), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym__field_declaration_list_item] = STATE(1618), + [sym_field_declaration] = STATE(1618), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2246), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [sym_atdef_field] = STATE(1618), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1618), + [aux_sym__declaration_specifiers_repeat1] = STATE(2246), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(3010), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(4620), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4310), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + [anon_sym_ATdefs] = ACTIONS(4541), + }, + [1622] = { + [sym_string_literal] = STATE(1924), + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(4504), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(4508), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(4508), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [anon_sym_in] = ACTIONS(4622), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4523), + [anon_sym_SLASH_EQ] = ACTIONS(4523), + [anon_sym_PERCENT_EQ] = ACTIONS(4523), + [anon_sym_PLUS_EQ] = ACTIONS(4523), + [anon_sym_DASH_EQ] = ACTIONS(4523), + [anon_sym_LT_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_GT_EQ] = ACTIONS(4523), + [anon_sym_AMP_EQ] = ACTIONS(4523), + [anon_sym_CARET_EQ] = ACTIONS(4523), + [anon_sym_PIPE_EQ] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [1623] = { + [sym_string_literal] = STATE(1924), + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(4504), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(4508), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(4508), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [anon_sym_in] = ACTIONS(4624), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4523), + [anon_sym_SLASH_EQ] = ACTIONS(4523), + [anon_sym_PERCENT_EQ] = ACTIONS(4523), + [anon_sym_PLUS_EQ] = ACTIONS(4523), + [anon_sym_DASH_EQ] = ACTIONS(4523), + [anon_sym_LT_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_GT_EQ] = ACTIONS(4523), + [anon_sym_AMP_EQ] = ACTIONS(4523), + [anon_sym_CARET_EQ] = ACTIONS(4523), + [anon_sym_PIPE_EQ] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [1624] = { + [sym_string_literal] = STATE(1924), + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(4504), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(4508), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(4508), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4523), + [anon_sym_SLASH_EQ] = ACTIONS(4523), + [anon_sym_PERCENT_EQ] = ACTIONS(4523), + [anon_sym_PLUS_EQ] = ACTIONS(4523), + [anon_sym_DASH_EQ] = ACTIONS(4523), + [anon_sym_LT_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_GT_EQ] = ACTIONS(4523), + [anon_sym_AMP_EQ] = ACTIONS(4523), + [anon_sym_CARET_EQ] = ACTIONS(4523), + [anon_sym_PIPE_EQ] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [1625] = { + [aux_sym_selector_expression_repeat2] = STATE(1632), + [sym_identifier] = ACTIONS(4029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4031), + [anon_sym_COMMA] = ACTIONS(4031), + [anon_sym_RPAREN] = ACTIONS(4626), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4031), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4031), + [anon_sym_LPAREN2] = ACTIONS(4031), + [anon_sym_DASH] = ACTIONS(4029), + [anon_sym_PLUS] = ACTIONS(4029), + [anon_sym_STAR] = ACTIONS(4031), + [anon_sym_SLASH] = ACTIONS(4029), + [anon_sym_PERCENT] = ACTIONS(4031), + [anon_sym_PIPE_PIPE] = ACTIONS(4031), + [anon_sym_AMP_AMP] = ACTIONS(4031), + [anon_sym_PIPE] = ACTIONS(4029), + [anon_sym_CARET] = ACTIONS(4031), + [anon_sym_AMP] = ACTIONS(4029), + [anon_sym_EQ_EQ] = ACTIONS(4031), + [anon_sym_BANG_EQ] = ACTIONS(4031), + [anon_sym_GT] = ACTIONS(4029), + [anon_sym_GT_EQ] = ACTIONS(4031), + [anon_sym_LT_EQ] = ACTIONS(4031), + [anon_sym_LT] = ACTIONS(4029), + [anon_sym_LT_LT] = ACTIONS(4031), + [anon_sym_GT_GT] = ACTIONS(4031), + [anon_sym_SEMI] = ACTIONS(4031), + [anon_sym___extension__] = ACTIONS(4029), + [anon_sym_extern] = ACTIONS(4029), + [anon_sym___attribute__] = ACTIONS(4029), + [anon_sym___attribute] = ACTIONS(4029), + [anon_sym_noreturn] = ACTIONS(4029), + [anon_sym_LBRACK] = ACTIONS(4031), + [anon_sym_RBRACK] = ACTIONS(4031), + [anon_sym___declspec] = ACTIONS(4029), + [anon_sym_LBRACE] = ACTIONS(4031), + [anon_sym_RBRACE] = ACTIONS(4031), + [anon_sym_signed] = ACTIONS(4029), + [anon_sym_unsigned] = ACTIONS(4029), + [anon_sym_long] = ACTIONS(4029), + [anon_sym_short] = ACTIONS(4029), + [anon_sym_static] = ACTIONS(4029), + [anon_sym_ATautoreleasepool] = ACTIONS(4031), + [anon_sym_auto] = ACTIONS(4029), + [anon_sym_register] = ACTIONS(4029), + [anon_sym_inline] = ACTIONS(4029), + [anon_sym___inline] = ACTIONS(4029), + [anon_sym___inline__] = ACTIONS(4029), + [anon_sym___forceinline] = ACTIONS(4029), + [anon_sym_thread_local] = ACTIONS(4029), + [anon_sym___thread] = ACTIONS(4029), + [anon_sym_CG_EXTERN] = ACTIONS(4029), + [anon_sym_CG_INLINE] = ACTIONS(4029), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4029), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4029), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4029), + [anon_sym_IBOutlet] = ACTIONS(4029), + [anon_sym_IBInspectable] = ACTIONS(4029), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4029), + [anon_sym_NS_INLINE] = ACTIONS(4029), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4029), + [anon_sym_OBJC_EXPORT] = ACTIONS(4029), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4029), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4029), + [anon_sym_const] = ACTIONS(4029), + [anon_sym_constexpr] = ACTIONS(4029), + [anon_sym_volatile] = ACTIONS(4029), + [anon_sym_restrict] = ACTIONS(4029), + [anon_sym___restrict__] = ACTIONS(4029), + [anon_sym__Atomic] = ACTIONS(4029), + [anon_sym__Noreturn] = ACTIONS(4029), + [anon_sym__Nonnull] = ACTIONS(4029), + [anon_sym_nullable] = ACTIONS(4029), + [anon_sym__Complex] = ACTIONS(4029), + [anon_sym__Nullable] = ACTIONS(4029), + [anon_sym__Nullable_result] = ACTIONS(4029), + [anon_sym__Null_unspecified] = ACTIONS(4029), + [anon_sym___autoreleasing] = ACTIONS(4029), + [anon_sym___block] = ACTIONS(4029), + [anon_sym___bridge] = ACTIONS(4029), + [anon_sym___bridge_retained] = ACTIONS(4029), + [anon_sym___bridge_transfer] = ACTIONS(4029), + [anon_sym___complex] = ACTIONS(4029), + [anon_sym___const] = ACTIONS(4029), + [anon_sym___imag] = ACTIONS(4029), + [anon_sym___kindof] = ACTIONS(4029), + [anon_sym___nonnull] = ACTIONS(4029), + [anon_sym___nullable] = ACTIONS(4029), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4029), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4029), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4029), + [anon_sym___real] = ACTIONS(4029), + [anon_sym___strong] = ACTIONS(4029), + [anon_sym___unsafe_unretained] = ACTIONS(4029), + [anon_sym___unused] = ACTIONS(4029), + [anon_sym___weak] = ACTIONS(4029), + [anon_sym_alignas] = ACTIONS(4029), + [anon_sym__Alignas] = ACTIONS(4029), + [sym_primitive_type] = ACTIONS(4029), + [anon_sym_enum] = ACTIONS(4029), + [anon_sym_COLON] = ACTIONS(4031), + [anon_sym_struct] = ACTIONS(4029), + [anon_sym_union] = ACTIONS(4029), + [anon_sym_QMARK] = ACTIONS(4031), + [anon_sym_DASH_DASH] = ACTIONS(4031), + [anon_sym_PLUS_PLUS] = ACTIONS(4031), + [anon_sym_DOT] = ACTIONS(4029), + [anon_sym_DASH_GT] = ACTIONS(4031), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4029), + [anon_sym___typeof] = ACTIONS(4029), + [anon_sym_typeof] = ACTIONS(4029), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4029), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4029), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4029), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4029), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4029), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4029), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4029), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4029), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4029), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4029), + [anon_sym_NS_AVAILABLE] = ACTIONS(4029), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4029), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4029), + [anon_sym_API_AVAILABLE] = ACTIONS(4029), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4029), + [anon_sym_API_DEPRECATED] = ACTIONS(4029), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4029), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4029), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4029), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4029), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4029), + [anon_sym___deprecated_msg] = ACTIONS(4029), + [anon_sym___deprecated_enum_msg] = ACTIONS(4029), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4029), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4029), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4029), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4029), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4029), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4029), + [anon_sym_BOOL] = ACTIONS(4029), + [anon_sym_IMP] = ACTIONS(4029), + [anon_sym_SEL] = ACTIONS(4029), + [anon_sym_Class] = ACTIONS(4029), + [anon_sym_id] = ACTIONS(4029), + }, + [1626] = { + [sym_string_literal] = STATE(1634), + [aux_sym_concatenated_string_repeat1] = STATE(1634), + [sym_identifier] = ACTIONS(4628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3973), + [anon_sym_COMMA] = ACTIONS(3973), + [anon_sym_RPAREN] = ACTIONS(3973), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3973), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3973), + [anon_sym_LPAREN2] = ACTIONS(3973), + [anon_sym_DASH] = ACTIONS(3975), + [anon_sym_PLUS] = ACTIONS(3975), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_SLASH] = ACTIONS(3975), + [anon_sym_PERCENT] = ACTIONS(3975), + [anon_sym_PIPE_PIPE] = ACTIONS(3973), + [anon_sym_AMP_AMP] = ACTIONS(3973), + [anon_sym_PIPE] = ACTIONS(3975), + [anon_sym_CARET] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3975), + [anon_sym_EQ_EQ] = ACTIONS(3973), + [anon_sym_BANG_EQ] = ACTIONS(3973), + [anon_sym_GT] = ACTIONS(3975), + [anon_sym_GT_EQ] = ACTIONS(3973), + [anon_sym_LT_EQ] = ACTIONS(3973), + [anon_sym_LT] = ACTIONS(3975), + [anon_sym_LT_LT] = ACTIONS(3975), + [anon_sym_GT_GT] = ACTIONS(3975), + [anon_sym_SEMI] = ACTIONS(3973), + [anon_sym___extension__] = ACTIONS(3975), + [anon_sym_extern] = ACTIONS(3975), + [anon_sym___attribute__] = ACTIONS(3975), + [anon_sym___attribute] = ACTIONS(3975), + [anon_sym_noreturn] = ACTIONS(3975), + [anon_sym_LBRACK] = ACTIONS(3973), + [anon_sym_RBRACK] = ACTIONS(3973), + [anon_sym___declspec] = ACTIONS(3975), + [anon_sym_RBRACE] = ACTIONS(3973), + [anon_sym_static] = ACTIONS(3975), + [anon_sym_EQ] = ACTIONS(3975), + [anon_sym_auto] = ACTIONS(3975), + [anon_sym_register] = ACTIONS(3975), + [anon_sym_inline] = ACTIONS(3975), + [anon_sym___inline] = ACTIONS(3975), + [anon_sym___inline__] = ACTIONS(3975), + [anon_sym___forceinline] = ACTIONS(3975), + [anon_sym_thread_local] = ACTIONS(3975), + [anon_sym___thread] = ACTIONS(3975), + [anon_sym_CG_EXTERN] = ACTIONS(3975), + [anon_sym_CG_INLINE] = ACTIONS(3975), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3975), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3975), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3975), + [anon_sym_IBOutlet] = ACTIONS(3975), + [anon_sym_IBInspectable] = ACTIONS(3975), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3975), + [anon_sym_NS_INLINE] = ACTIONS(3975), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3975), + [anon_sym_OBJC_EXPORT] = ACTIONS(3975), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3975), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3975), + [anon_sym_const] = ACTIONS(3975), + [anon_sym_constexpr] = ACTIONS(3975), + [anon_sym_volatile] = ACTIONS(3975), + [anon_sym_restrict] = ACTIONS(3975), + [anon_sym___restrict__] = ACTIONS(3975), + [anon_sym__Atomic] = ACTIONS(3975), + [anon_sym__Noreturn] = ACTIONS(3975), + [anon_sym__Nonnull] = ACTIONS(3975), + [anon_sym_nullable] = ACTIONS(3975), + [anon_sym__Complex] = ACTIONS(3975), + [anon_sym__Nullable] = ACTIONS(3975), + [anon_sym__Nullable_result] = ACTIONS(3975), + [anon_sym__Null_unspecified] = ACTIONS(3975), + [anon_sym___autoreleasing] = ACTIONS(3975), + [anon_sym___block] = ACTIONS(3975), + [anon_sym___bridge] = ACTIONS(3975), + [anon_sym___bridge_retained] = ACTIONS(3975), + [anon_sym___bridge_transfer] = ACTIONS(3975), + [anon_sym___complex] = ACTIONS(3975), + [anon_sym___const] = ACTIONS(3975), + [anon_sym___imag] = ACTIONS(3975), + [anon_sym___kindof] = ACTIONS(3975), + [anon_sym___nonnull] = ACTIONS(3975), + [anon_sym___nullable] = ACTIONS(3975), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3975), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3975), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3975), + [anon_sym___real] = ACTIONS(3975), + [anon_sym___strong] = ACTIONS(3975), + [anon_sym___unsafe_unretained] = ACTIONS(3975), + [anon_sym___unused] = ACTIONS(3975), + [anon_sym___weak] = ACTIONS(3975), + [anon_sym_alignas] = ACTIONS(3975), + [anon_sym__Alignas] = ACTIONS(3975), + [anon_sym_COLON] = ACTIONS(3973), + [anon_sym_QMARK] = ACTIONS(3973), + [anon_sym_STAR_EQ] = ACTIONS(3973), + [anon_sym_SLASH_EQ] = ACTIONS(3973), + [anon_sym_PERCENT_EQ] = ACTIONS(3973), + [anon_sym_PLUS_EQ] = ACTIONS(3973), + [anon_sym_DASH_EQ] = ACTIONS(3973), + [anon_sym_LT_LT_EQ] = ACTIONS(3973), + [anon_sym_GT_GT_EQ] = ACTIONS(3973), + [anon_sym_AMP_EQ] = ACTIONS(3973), + [anon_sym_CARET_EQ] = ACTIONS(3973), + [anon_sym_PIPE_EQ] = ACTIONS(3973), + [anon_sym_DASH_DASH] = ACTIONS(3973), + [anon_sym_PLUS_PLUS] = ACTIONS(3973), + [anon_sym_DOT] = ACTIONS(3975), + [anon_sym_DASH_GT] = ACTIONS(3973), + [anon_sym_AT] = ACTIONS(4630), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3975), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3975), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3975), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3975), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3975), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3975), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3975), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3975), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3975), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3975), + [anon_sym_NS_AVAILABLE] = ACTIONS(3975), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3975), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3975), + [anon_sym_API_AVAILABLE] = ACTIONS(3975), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3975), + [anon_sym_API_DEPRECATED] = ACTIONS(3975), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3975), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3975), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3975), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3975), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3975), + [anon_sym___deprecated_msg] = ACTIONS(3975), + [anon_sym___deprecated_enum_msg] = ACTIONS(3975), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3975), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3975), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3975), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3975), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3975), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3975), + }, + [1627] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4019), + [anon_sym_COMMA] = ACTIONS(4019), + [anon_sym_RPAREN] = ACTIONS(4019), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4019), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4019), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4017), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_STAR] = ACTIONS(4019), + [anon_sym_SLASH] = ACTIONS(4017), + [anon_sym_PERCENT] = ACTIONS(4019), + [anon_sym_PIPE_PIPE] = ACTIONS(4019), + [anon_sym_AMP_AMP] = ACTIONS(4019), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_CARET] = ACTIONS(4019), + [anon_sym_AMP] = ACTIONS(4017), + [anon_sym_EQ_EQ] = ACTIONS(4019), + [anon_sym_BANG_EQ] = ACTIONS(4019), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_EQ] = ACTIONS(4019), + [anon_sym_LT_EQ] = ACTIONS(4019), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_LT_LT] = ACTIONS(4019), + [anon_sym_GT_GT] = ACTIONS(4019), + [anon_sym_SEMI] = ACTIONS(4019), + [anon_sym___extension__] = ACTIONS(4017), + [anon_sym_extern] = ACTIONS(4017), + [anon_sym___attribute__] = ACTIONS(4017), + [anon_sym___attribute] = ACTIONS(4017), + [anon_sym_noreturn] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym_RBRACK] = ACTIONS(4019), + [anon_sym___declspec] = ACTIONS(4017), + [anon_sym_LBRACE] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(4019), + [anon_sym_signed] = ACTIONS(4017), + [anon_sym_unsigned] = ACTIONS(4017), + [anon_sym_long] = ACTIONS(4017), + [anon_sym_short] = ACTIONS(4017), + [anon_sym_static] = ACTIONS(4017), + [anon_sym_ATautoreleasepool] = ACTIONS(4019), + [anon_sym_auto] = ACTIONS(4017), + [anon_sym_register] = ACTIONS(4017), + [anon_sym_inline] = ACTIONS(4017), + [anon_sym___inline] = ACTIONS(4017), + [anon_sym___inline__] = ACTIONS(4017), + [anon_sym___forceinline] = ACTIONS(4017), + [anon_sym_thread_local] = ACTIONS(4017), + [anon_sym___thread] = ACTIONS(4017), + [anon_sym_CG_EXTERN] = ACTIONS(4017), + [anon_sym_CG_INLINE] = ACTIONS(4017), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4017), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4017), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4017), + [anon_sym_IBOutlet] = ACTIONS(4017), + [anon_sym_IBInspectable] = ACTIONS(4017), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4017), + [anon_sym_NS_INLINE] = ACTIONS(4017), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4017), + [anon_sym_OBJC_EXPORT] = ACTIONS(4017), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4017), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4017), + [anon_sym_const] = ACTIONS(4017), + [anon_sym_constexpr] = ACTIONS(4017), + [anon_sym_volatile] = ACTIONS(4017), + [anon_sym_restrict] = ACTIONS(4017), + [anon_sym___restrict__] = ACTIONS(4017), + [anon_sym__Atomic] = ACTIONS(4017), + [anon_sym__Noreturn] = ACTIONS(4017), + [anon_sym__Nonnull] = ACTIONS(4017), + [anon_sym_nullable] = ACTIONS(4017), + [anon_sym__Complex] = ACTIONS(4017), + [anon_sym__Nullable] = ACTIONS(4017), + [anon_sym__Nullable_result] = ACTIONS(4017), + [anon_sym__Null_unspecified] = ACTIONS(4017), + [anon_sym___autoreleasing] = ACTIONS(4017), + [anon_sym___block] = ACTIONS(4017), + [anon_sym___bridge] = ACTIONS(4017), + [anon_sym___bridge_retained] = ACTIONS(4017), + [anon_sym___bridge_transfer] = ACTIONS(4017), + [anon_sym___complex] = ACTIONS(4017), + [anon_sym___const] = ACTIONS(4017), + [anon_sym___imag] = ACTIONS(4017), + [anon_sym___kindof] = ACTIONS(4017), + [anon_sym___nonnull] = ACTIONS(4017), + [anon_sym___nullable] = ACTIONS(4017), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4017), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4017), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4017), + [anon_sym___real] = ACTIONS(4017), + [anon_sym___strong] = ACTIONS(4017), + [anon_sym___unsafe_unretained] = ACTIONS(4017), + [anon_sym___unused] = ACTIONS(4017), + [anon_sym___weak] = ACTIONS(4017), + [anon_sym_alignas] = ACTIONS(4017), + [anon_sym__Alignas] = ACTIONS(4017), + [sym_primitive_type] = ACTIONS(4017), + [anon_sym_enum] = ACTIONS(4017), + [anon_sym_COLON] = ACTIONS(4019), + [anon_sym_struct] = ACTIONS(4017), + [anon_sym_union] = ACTIONS(4017), + [anon_sym_QMARK] = ACTIONS(4019), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4017), + [anon_sym___typeof] = ACTIONS(4017), + [anon_sym_typeof] = ACTIONS(4017), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4017), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4017), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4017), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4017), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4017), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4017), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4017), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4017), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4017), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4017), + [anon_sym_NS_AVAILABLE] = ACTIONS(4017), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4017), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4017), + [anon_sym_API_AVAILABLE] = ACTIONS(4017), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4017), + [anon_sym_API_DEPRECATED] = ACTIONS(4017), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4017), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4017), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4017), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4017), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4017), + [anon_sym___deprecated_msg] = ACTIONS(4017), + [anon_sym___deprecated_enum_msg] = ACTIONS(4017), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4017), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4017), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4017), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4017), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4017), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4017), + [anon_sym_BOOL] = ACTIONS(4017), + [anon_sym_IMP] = ACTIONS(4017), + [anon_sym_SEL] = ACTIONS(4017), + [anon_sym_Class] = ACTIONS(4017), + [anon_sym_id] = ACTIONS(4017), + }, + [1628] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4007), + [anon_sym_COMMA] = ACTIONS(4007), + [anon_sym_RPAREN] = ACTIONS(4007), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4007), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4007), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4005), + [anon_sym_PLUS] = ACTIONS(4005), + [anon_sym_STAR] = ACTIONS(4007), + [anon_sym_SLASH] = ACTIONS(4005), + [anon_sym_PERCENT] = ACTIONS(4007), + [anon_sym_PIPE_PIPE] = ACTIONS(4007), + [anon_sym_AMP_AMP] = ACTIONS(4007), + [anon_sym_PIPE] = ACTIONS(4005), + [anon_sym_CARET] = ACTIONS(4007), + [anon_sym_AMP] = ACTIONS(4005), + [anon_sym_EQ_EQ] = ACTIONS(4007), + [anon_sym_BANG_EQ] = ACTIONS(4007), + [anon_sym_GT] = ACTIONS(4005), + [anon_sym_GT_EQ] = ACTIONS(4007), + [anon_sym_LT_EQ] = ACTIONS(4007), + [anon_sym_LT] = ACTIONS(4005), + [anon_sym_LT_LT] = ACTIONS(4007), + [anon_sym_GT_GT] = ACTIONS(4007), + [anon_sym_SEMI] = ACTIONS(4007), + [anon_sym___extension__] = ACTIONS(4005), + [anon_sym_extern] = ACTIONS(4005), + [anon_sym___attribute__] = ACTIONS(4005), + [anon_sym___attribute] = ACTIONS(4005), + [anon_sym_noreturn] = ACTIONS(4005), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym_RBRACK] = ACTIONS(4007), + [anon_sym___declspec] = ACTIONS(4005), + [anon_sym_LBRACE] = ACTIONS(4007), + [anon_sym_RBRACE] = ACTIONS(4007), + [anon_sym_signed] = ACTIONS(4005), + [anon_sym_unsigned] = ACTIONS(4005), + [anon_sym_long] = ACTIONS(4005), + [anon_sym_short] = ACTIONS(4005), + [anon_sym_static] = ACTIONS(4005), + [anon_sym_ATautoreleasepool] = ACTIONS(4007), + [anon_sym_auto] = ACTIONS(4005), + [anon_sym_register] = ACTIONS(4005), + [anon_sym_inline] = ACTIONS(4005), + [anon_sym___inline] = ACTIONS(4005), + [anon_sym___inline__] = ACTIONS(4005), + [anon_sym___forceinline] = ACTIONS(4005), + [anon_sym_thread_local] = ACTIONS(4005), + [anon_sym___thread] = ACTIONS(4005), + [anon_sym_CG_EXTERN] = ACTIONS(4005), + [anon_sym_CG_INLINE] = ACTIONS(4005), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4005), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4005), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4005), + [anon_sym_IBOutlet] = ACTIONS(4005), + [anon_sym_IBInspectable] = ACTIONS(4005), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4005), + [anon_sym_NS_INLINE] = ACTIONS(4005), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4005), + [anon_sym_OBJC_EXPORT] = ACTIONS(4005), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4005), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4005), + [anon_sym_const] = ACTIONS(4005), + [anon_sym_constexpr] = ACTIONS(4005), + [anon_sym_volatile] = ACTIONS(4005), + [anon_sym_restrict] = ACTIONS(4005), + [anon_sym___restrict__] = ACTIONS(4005), + [anon_sym__Atomic] = ACTIONS(4005), + [anon_sym__Noreturn] = ACTIONS(4005), + [anon_sym__Nonnull] = ACTIONS(4005), + [anon_sym_nullable] = ACTIONS(4005), + [anon_sym__Complex] = ACTIONS(4005), + [anon_sym__Nullable] = ACTIONS(4005), + [anon_sym__Nullable_result] = ACTIONS(4005), + [anon_sym__Null_unspecified] = ACTIONS(4005), + [anon_sym___autoreleasing] = ACTIONS(4005), + [anon_sym___block] = ACTIONS(4005), + [anon_sym___bridge] = ACTIONS(4005), + [anon_sym___bridge_retained] = ACTIONS(4005), + [anon_sym___bridge_transfer] = ACTIONS(4005), + [anon_sym___complex] = ACTIONS(4005), + [anon_sym___const] = ACTIONS(4005), + [anon_sym___imag] = ACTIONS(4005), + [anon_sym___kindof] = ACTIONS(4005), + [anon_sym___nonnull] = ACTIONS(4005), + [anon_sym___nullable] = ACTIONS(4005), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4005), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4005), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4005), + [anon_sym___real] = ACTIONS(4005), + [anon_sym___strong] = ACTIONS(4005), + [anon_sym___unsafe_unretained] = ACTIONS(4005), + [anon_sym___unused] = ACTIONS(4005), + [anon_sym___weak] = ACTIONS(4005), + [anon_sym_alignas] = ACTIONS(4005), + [anon_sym__Alignas] = ACTIONS(4005), + [sym_primitive_type] = ACTIONS(4005), + [anon_sym_enum] = ACTIONS(4005), + [anon_sym_COLON] = ACTIONS(4007), + [anon_sym_struct] = ACTIONS(4005), + [anon_sym_union] = ACTIONS(4005), + [anon_sym_QMARK] = ACTIONS(4007), + [anon_sym_DASH_DASH] = ACTIONS(4007), + [anon_sym_PLUS_PLUS] = ACTIONS(4007), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4005), + [anon_sym___typeof] = ACTIONS(4005), + [anon_sym_typeof] = ACTIONS(4005), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4005), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4005), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4005), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4005), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4005), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4005), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4005), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4005), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4005), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4005), + [anon_sym_NS_AVAILABLE] = ACTIONS(4005), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4005), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4005), + [anon_sym_API_AVAILABLE] = ACTIONS(4005), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4005), + [anon_sym_API_DEPRECATED] = ACTIONS(4005), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4005), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4005), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4005), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4005), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4005), + [anon_sym___deprecated_msg] = ACTIONS(4005), + [anon_sym___deprecated_enum_msg] = ACTIONS(4005), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4005), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4005), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4005), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4005), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4005), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4005), + [anon_sym_BOOL] = ACTIONS(4005), + [anon_sym_IMP] = ACTIONS(4005), + [anon_sym_SEL] = ACTIONS(4005), + [anon_sym_Class] = ACTIONS(4005), + [anon_sym_id] = ACTIONS(4005), + }, + [1629] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4009), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4011), + [anon_sym_COMMA] = ACTIONS(4011), + [anon_sym_RPAREN] = ACTIONS(4011), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4011), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4011), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4009), + [anon_sym_STAR] = ACTIONS(4011), + [anon_sym_SLASH] = ACTIONS(4009), + [anon_sym_PERCENT] = ACTIONS(4011), + [anon_sym_PIPE_PIPE] = ACTIONS(4011), + [anon_sym_AMP_AMP] = ACTIONS(4011), + [anon_sym_PIPE] = ACTIONS(4009), + [anon_sym_CARET] = ACTIONS(4011), + [anon_sym_AMP] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4011), + [anon_sym_BANG_EQ] = ACTIONS(4011), + [anon_sym_GT] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4011), + [anon_sym_LT_EQ] = ACTIONS(4011), + [anon_sym_LT] = ACTIONS(4009), + [anon_sym_LT_LT] = ACTIONS(4011), + [anon_sym_GT_GT] = ACTIONS(4011), + [anon_sym_SEMI] = ACTIONS(4011), + [anon_sym___extension__] = ACTIONS(4009), + [anon_sym_extern] = ACTIONS(4009), + [anon_sym___attribute__] = ACTIONS(4009), + [anon_sym___attribute] = ACTIONS(4009), + [anon_sym_noreturn] = ACTIONS(4009), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym_RBRACK] = ACTIONS(4011), + [anon_sym___declspec] = ACTIONS(4009), + [anon_sym_LBRACE] = ACTIONS(4011), + [anon_sym_RBRACE] = ACTIONS(4011), + [anon_sym_signed] = ACTIONS(4009), + [anon_sym_unsigned] = ACTIONS(4009), + [anon_sym_long] = ACTIONS(4009), + [anon_sym_short] = ACTIONS(4009), + [anon_sym_static] = ACTIONS(4009), + [anon_sym_ATautoreleasepool] = ACTIONS(4011), + [anon_sym_auto] = ACTIONS(4009), + [anon_sym_register] = ACTIONS(4009), + [anon_sym_inline] = ACTIONS(4009), + [anon_sym___inline] = ACTIONS(4009), + [anon_sym___inline__] = ACTIONS(4009), + [anon_sym___forceinline] = ACTIONS(4009), + [anon_sym_thread_local] = ACTIONS(4009), + [anon_sym___thread] = ACTIONS(4009), + [anon_sym_CG_EXTERN] = ACTIONS(4009), + [anon_sym_CG_INLINE] = ACTIONS(4009), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4009), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4009), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4009), + [anon_sym_IBOutlet] = ACTIONS(4009), + [anon_sym_IBInspectable] = ACTIONS(4009), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4009), + [anon_sym_NS_INLINE] = ACTIONS(4009), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4009), + [anon_sym_OBJC_EXPORT] = ACTIONS(4009), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4009), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4009), + [anon_sym_const] = ACTIONS(4009), + [anon_sym_constexpr] = ACTIONS(4009), + [anon_sym_volatile] = ACTIONS(4009), + [anon_sym_restrict] = ACTIONS(4009), + [anon_sym___restrict__] = ACTIONS(4009), + [anon_sym__Atomic] = ACTIONS(4009), + [anon_sym__Noreturn] = ACTIONS(4009), + [anon_sym__Nonnull] = ACTIONS(4009), + [anon_sym_nullable] = ACTIONS(4009), + [anon_sym__Complex] = ACTIONS(4009), + [anon_sym__Nullable] = ACTIONS(4009), + [anon_sym__Nullable_result] = ACTIONS(4009), + [anon_sym__Null_unspecified] = ACTIONS(4009), + [anon_sym___autoreleasing] = ACTIONS(4009), + [anon_sym___block] = ACTIONS(4009), + [anon_sym___bridge] = ACTIONS(4009), + [anon_sym___bridge_retained] = ACTIONS(4009), + [anon_sym___bridge_transfer] = ACTIONS(4009), + [anon_sym___complex] = ACTIONS(4009), + [anon_sym___const] = ACTIONS(4009), + [anon_sym___imag] = ACTIONS(4009), + [anon_sym___kindof] = ACTIONS(4009), + [anon_sym___nonnull] = ACTIONS(4009), + [anon_sym___nullable] = ACTIONS(4009), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4009), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4009), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4009), + [anon_sym___real] = ACTIONS(4009), + [anon_sym___strong] = ACTIONS(4009), + [anon_sym___unsafe_unretained] = ACTIONS(4009), + [anon_sym___unused] = ACTIONS(4009), + [anon_sym___weak] = ACTIONS(4009), + [anon_sym_alignas] = ACTIONS(4009), + [anon_sym__Alignas] = ACTIONS(4009), + [sym_primitive_type] = ACTIONS(4009), + [anon_sym_enum] = ACTIONS(4009), + [anon_sym_COLON] = ACTIONS(4011), + [anon_sym_struct] = ACTIONS(4009), + [anon_sym_union] = ACTIONS(4009), + [anon_sym_QMARK] = ACTIONS(4011), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4009), + [anon_sym___typeof] = ACTIONS(4009), + [anon_sym_typeof] = ACTIONS(4009), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4009), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4009), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4009), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4009), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4009), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4009), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4009), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4009), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4009), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4009), + [anon_sym_NS_AVAILABLE] = ACTIONS(4009), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4009), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4009), + [anon_sym_API_AVAILABLE] = ACTIONS(4009), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4009), + [anon_sym_API_DEPRECATED] = ACTIONS(4009), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4009), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4009), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4009), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4009), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4009), + [anon_sym___deprecated_msg] = ACTIONS(4009), + [anon_sym___deprecated_enum_msg] = ACTIONS(4009), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4009), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4009), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4009), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4009), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4009), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4009), + [anon_sym_BOOL] = ACTIONS(4009), + [anon_sym_IMP] = ACTIONS(4009), + [anon_sym_SEL] = ACTIONS(4009), + [anon_sym_Class] = ACTIONS(4009), + [anon_sym_id] = ACTIONS(4009), + }, + [1630] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_RPAREN] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4025), + [anon_sym_PLUS] = ACTIONS(4025), + [anon_sym_STAR] = ACTIONS(4027), + [anon_sym_SLASH] = ACTIONS(4025), + [anon_sym_PERCENT] = ACTIONS(4027), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(4025), + [anon_sym_GT_EQ] = ACTIONS(4027), + [anon_sym_LT_EQ] = ACTIONS(4027), + [anon_sym_LT] = ACTIONS(4025), + [anon_sym_LT_LT] = ACTIONS(4027), + [anon_sym_GT_GT] = ACTIONS(4027), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym_RBRACK] = ACTIONS(4027), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4027), + [anon_sym_RBRACE] = ACTIONS(4027), + [anon_sym_signed] = ACTIONS(4025), + [anon_sym_unsigned] = ACTIONS(4025), + [anon_sym_long] = ACTIONS(4025), + [anon_sym_short] = ACTIONS(4025), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_ATautoreleasepool] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [sym_primitive_type] = ACTIONS(4025), + [anon_sym_enum] = ACTIONS(4025), + [anon_sym_COLON] = ACTIONS(4027), + [anon_sym_struct] = ACTIONS(4025), + [anon_sym_union] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4025), + [anon_sym___typeof] = ACTIONS(4025), + [anon_sym_typeof] = ACTIONS(4025), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + [anon_sym_BOOL] = ACTIONS(4025), + [anon_sym_IMP] = ACTIONS(4025), + [anon_sym_SEL] = ACTIONS(4025), + [anon_sym_Class] = ACTIONS(4025), + [anon_sym_id] = ACTIONS(4025), + }, + [1631] = { + [sym_string_literal] = STATE(1597), + [sym_identifier] = ACTIONS(3977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3979), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_LPAREN2] = ACTIONS(3979), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_STAR] = ACTIONS(3979), + [anon_sym_SLASH] = ACTIONS(3977), + [anon_sym_PERCENT] = ACTIONS(3979), + [anon_sym_PIPE_PIPE] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3979), + [anon_sym_PIPE] = ACTIONS(3977), + [anon_sym_CARET] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_EQ_EQ] = ACTIONS(3979), + [anon_sym_BANG_EQ] = ACTIONS(3979), + [anon_sym_GT] = ACTIONS(3977), + [anon_sym_GT_EQ] = ACTIONS(3979), + [anon_sym_LT_EQ] = ACTIONS(3979), + [anon_sym_LT] = ACTIONS(3977), + [anon_sym_LT_LT] = ACTIONS(3979), + [anon_sym_GT_GT] = ACTIONS(3979), + [anon_sym_SEMI] = ACTIONS(3979), + [anon_sym___extension__] = ACTIONS(3977), + [anon_sym_extern] = ACTIONS(3977), + [anon_sym___attribute__] = ACTIONS(3977), + [anon_sym___attribute] = ACTIONS(3977), + [anon_sym_noreturn] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3979), + [anon_sym___declspec] = ACTIONS(3977), + [anon_sym_LBRACE] = ACTIONS(3979), + [anon_sym_signed] = ACTIONS(3977), + [anon_sym_unsigned] = ACTIONS(3977), + [anon_sym_long] = ACTIONS(3977), + [anon_sym_short] = ACTIONS(3977), + [anon_sym_static] = ACTIONS(3977), + [anon_sym_ATautoreleasepool] = ACTIONS(3979), + [anon_sym_auto] = ACTIONS(3977), + [anon_sym_register] = ACTIONS(3977), + [anon_sym_inline] = ACTIONS(3977), + [anon_sym___inline] = ACTIONS(3977), + [anon_sym___inline__] = ACTIONS(3977), + [anon_sym___forceinline] = ACTIONS(3977), + [anon_sym_thread_local] = ACTIONS(3977), + [anon_sym___thread] = ACTIONS(3977), + [anon_sym_CG_EXTERN] = ACTIONS(3977), + [anon_sym_CG_INLINE] = ACTIONS(3977), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3977), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3977), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3977), + [anon_sym_IBOutlet] = ACTIONS(3977), + [anon_sym_IBInspectable] = ACTIONS(3977), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3977), + [anon_sym_NS_INLINE] = ACTIONS(3977), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3977), + [anon_sym_OBJC_EXPORT] = ACTIONS(3977), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3977), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(3977), + [anon_sym_constexpr] = ACTIONS(3977), + [anon_sym_volatile] = ACTIONS(3977), + [anon_sym_restrict] = ACTIONS(3977), + [anon_sym___restrict__] = ACTIONS(3977), + [anon_sym__Atomic] = ACTIONS(3977), + [anon_sym__Noreturn] = ACTIONS(3977), + [anon_sym__Nonnull] = ACTIONS(3977), + [anon_sym_nullable] = ACTIONS(3977), + [anon_sym__Complex] = ACTIONS(3977), + [anon_sym__Nullable] = ACTIONS(3977), + [anon_sym__Nullable_result] = ACTIONS(3977), + [anon_sym__Null_unspecified] = ACTIONS(3977), + [anon_sym___autoreleasing] = ACTIONS(3977), + [anon_sym___block] = ACTIONS(3977), + [anon_sym___bridge] = ACTIONS(3977), + [anon_sym___bridge_retained] = ACTIONS(3977), + [anon_sym___bridge_transfer] = ACTIONS(3977), + [anon_sym___complex] = ACTIONS(3977), + [anon_sym___const] = ACTIONS(3977), + [anon_sym___imag] = ACTIONS(3977), + [anon_sym___kindof] = ACTIONS(3977), + [anon_sym___nonnull] = ACTIONS(3977), + [anon_sym___nullable] = ACTIONS(3977), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3977), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3977), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3977), + [anon_sym___real] = ACTIONS(3977), + [anon_sym___strong] = ACTIONS(3977), + [anon_sym___unsafe_unretained] = ACTIONS(3977), + [anon_sym___unused] = ACTIONS(3977), + [anon_sym___weak] = ACTIONS(3977), + [anon_sym_alignas] = ACTIONS(3977), + [anon_sym__Alignas] = ACTIONS(3977), + [sym_primitive_type] = ACTIONS(3977), + [anon_sym_enum] = ACTIONS(3977), + [anon_sym_struct] = ACTIONS(3977), + [anon_sym_union] = ACTIONS(3977), + [anon_sym_QMARK] = ACTIONS(3979), + [anon_sym_DASH_DASH] = ACTIONS(3979), + [anon_sym_PLUS_PLUS] = ACTIONS(3979), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_DASH_GT] = ACTIONS(3979), + [anon_sym_AT] = ACTIONS(4003), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(3977), + [anon_sym___typeof] = ACTIONS(3977), + [anon_sym_typeof] = ACTIONS(3977), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3977), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3977), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3977), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3977), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3977), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3977), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3977), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3977), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3977), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3977), + [anon_sym_NS_AVAILABLE] = ACTIONS(3977), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3977), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3977), + [anon_sym_API_AVAILABLE] = ACTIONS(3977), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3977), + [anon_sym_API_DEPRECATED] = ACTIONS(3977), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3977), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3977), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3977), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3977), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3977), + [anon_sym___deprecated_msg] = ACTIONS(3977), + [anon_sym___deprecated_enum_msg] = ACTIONS(3977), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3977), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3977), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3977), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3977), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3977), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3977), + [anon_sym_BOOL] = ACTIONS(3977), + [anon_sym_IMP] = ACTIONS(3977), + [anon_sym_SEL] = ACTIONS(3977), + [anon_sym_Class] = ACTIONS(3977), + [anon_sym_id] = ACTIONS(3977), + }, + [1632] = { + [aux_sym_selector_expression_repeat2] = STATE(1632), + [sym_identifier] = ACTIONS(4035), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4037), + [anon_sym_COMMA] = ACTIONS(4037), + [anon_sym_RPAREN] = ACTIONS(4634), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4037), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4037), + [anon_sym_LPAREN2] = ACTIONS(4037), + [anon_sym_DASH] = ACTIONS(4035), + [anon_sym_PLUS] = ACTIONS(4035), + [anon_sym_STAR] = ACTIONS(4037), + [anon_sym_SLASH] = ACTIONS(4035), + [anon_sym_PERCENT] = ACTIONS(4037), + [anon_sym_PIPE_PIPE] = ACTIONS(4037), + [anon_sym_AMP_AMP] = ACTIONS(4037), + [anon_sym_PIPE] = ACTIONS(4035), + [anon_sym_CARET] = ACTIONS(4037), + [anon_sym_AMP] = ACTIONS(4035), + [anon_sym_EQ_EQ] = ACTIONS(4037), + [anon_sym_BANG_EQ] = ACTIONS(4037), + [anon_sym_GT] = ACTIONS(4035), + [anon_sym_GT_EQ] = ACTIONS(4037), + [anon_sym_LT_EQ] = ACTIONS(4037), + [anon_sym_LT] = ACTIONS(4035), + [anon_sym_LT_LT] = ACTIONS(4037), + [anon_sym_GT_GT] = ACTIONS(4037), + [anon_sym_SEMI] = ACTIONS(4037), + [anon_sym___extension__] = ACTIONS(4035), + [anon_sym_extern] = ACTIONS(4035), + [anon_sym___attribute__] = ACTIONS(4035), + [anon_sym___attribute] = ACTIONS(4035), + [anon_sym_noreturn] = ACTIONS(4035), + [anon_sym_LBRACK] = ACTIONS(4037), + [anon_sym_RBRACK] = ACTIONS(4037), + [anon_sym___declspec] = ACTIONS(4035), + [anon_sym_LBRACE] = ACTIONS(4037), + [anon_sym_RBRACE] = ACTIONS(4037), + [anon_sym_signed] = ACTIONS(4035), + [anon_sym_unsigned] = ACTIONS(4035), + [anon_sym_long] = ACTIONS(4035), + [anon_sym_short] = ACTIONS(4035), + [anon_sym_static] = ACTIONS(4035), + [anon_sym_ATautoreleasepool] = ACTIONS(4037), + [anon_sym_auto] = ACTIONS(4035), + [anon_sym_register] = ACTIONS(4035), + [anon_sym_inline] = ACTIONS(4035), + [anon_sym___inline] = ACTIONS(4035), + [anon_sym___inline__] = ACTIONS(4035), + [anon_sym___forceinline] = ACTIONS(4035), + [anon_sym_thread_local] = ACTIONS(4035), + [anon_sym___thread] = ACTIONS(4035), + [anon_sym_CG_EXTERN] = ACTIONS(4035), + [anon_sym_CG_INLINE] = ACTIONS(4035), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4035), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4035), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4035), + [anon_sym_IBOutlet] = ACTIONS(4035), + [anon_sym_IBInspectable] = ACTIONS(4035), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4035), + [anon_sym_NS_INLINE] = ACTIONS(4035), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4035), + [anon_sym_OBJC_EXPORT] = ACTIONS(4035), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4035), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4035), + [anon_sym_const] = ACTIONS(4035), + [anon_sym_constexpr] = ACTIONS(4035), + [anon_sym_volatile] = ACTIONS(4035), + [anon_sym_restrict] = ACTIONS(4035), + [anon_sym___restrict__] = ACTIONS(4035), + [anon_sym__Atomic] = ACTIONS(4035), + [anon_sym__Noreturn] = ACTIONS(4035), + [anon_sym__Nonnull] = ACTIONS(4035), + [anon_sym_nullable] = ACTIONS(4035), + [anon_sym__Complex] = ACTIONS(4035), + [anon_sym__Nullable] = ACTIONS(4035), + [anon_sym__Nullable_result] = ACTIONS(4035), + [anon_sym__Null_unspecified] = ACTIONS(4035), + [anon_sym___autoreleasing] = ACTIONS(4035), + [anon_sym___block] = ACTIONS(4035), + [anon_sym___bridge] = ACTIONS(4035), + [anon_sym___bridge_retained] = ACTIONS(4035), + [anon_sym___bridge_transfer] = ACTIONS(4035), + [anon_sym___complex] = ACTIONS(4035), + [anon_sym___const] = ACTIONS(4035), + [anon_sym___imag] = ACTIONS(4035), + [anon_sym___kindof] = ACTIONS(4035), + [anon_sym___nonnull] = ACTIONS(4035), + [anon_sym___nullable] = ACTIONS(4035), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4035), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4035), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4035), + [anon_sym___real] = ACTIONS(4035), + [anon_sym___strong] = ACTIONS(4035), + [anon_sym___unsafe_unretained] = ACTIONS(4035), + [anon_sym___unused] = ACTIONS(4035), + [anon_sym___weak] = ACTIONS(4035), + [anon_sym_alignas] = ACTIONS(4035), + [anon_sym__Alignas] = ACTIONS(4035), + [sym_primitive_type] = ACTIONS(4035), + [anon_sym_enum] = ACTIONS(4035), + [anon_sym_COLON] = ACTIONS(4037), + [anon_sym_struct] = ACTIONS(4035), + [anon_sym_union] = ACTIONS(4035), + [anon_sym_QMARK] = ACTIONS(4037), + [anon_sym_DASH_DASH] = ACTIONS(4037), + [anon_sym_PLUS_PLUS] = ACTIONS(4037), + [anon_sym_DOT] = ACTIONS(4035), + [anon_sym_DASH_GT] = ACTIONS(4037), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4035), + [anon_sym___typeof] = ACTIONS(4035), + [anon_sym_typeof] = ACTIONS(4035), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4035), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4035), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4035), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4035), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4035), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4035), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4035), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4035), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4035), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4035), + [anon_sym_NS_AVAILABLE] = ACTIONS(4035), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4035), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4035), + [anon_sym_API_AVAILABLE] = ACTIONS(4035), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4035), + [anon_sym_API_DEPRECATED] = ACTIONS(4035), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4035), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4035), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4035), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4035), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4035), + [anon_sym___deprecated_msg] = ACTIONS(4035), + [anon_sym___deprecated_enum_msg] = ACTIONS(4035), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4035), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4035), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4035), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4035), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4035), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4035), + [anon_sym_BOOL] = ACTIONS(4035), + [anon_sym_IMP] = ACTIONS(4035), + [anon_sym_SEL] = ACTIONS(4035), + [anon_sym_Class] = ACTIONS(4035), + [anon_sym_id] = ACTIONS(4035), + }, + [1633] = { + [sym_string_literal] = STATE(1626), + [aux_sym_concatenated_string_repeat1] = STATE(1626), + [sym_identifier] = ACTIONS(4637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3965), + [anon_sym_COMMA] = ACTIONS(3965), + [anon_sym_RPAREN] = ACTIONS(3965), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3965), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3965), + [anon_sym_LPAREN2] = ACTIONS(3965), + [anon_sym_DASH] = ACTIONS(3967), + [anon_sym_PLUS] = ACTIONS(3967), + [anon_sym_STAR] = ACTIONS(3967), + [anon_sym_SLASH] = ACTIONS(3967), + [anon_sym_PERCENT] = ACTIONS(3967), + [anon_sym_PIPE_PIPE] = ACTIONS(3965), + [anon_sym_AMP_AMP] = ACTIONS(3965), + [anon_sym_PIPE] = ACTIONS(3967), + [anon_sym_CARET] = ACTIONS(3967), + [anon_sym_AMP] = ACTIONS(3967), + [anon_sym_EQ_EQ] = ACTIONS(3965), + [anon_sym_BANG_EQ] = ACTIONS(3965), + [anon_sym_GT] = ACTIONS(3967), + [anon_sym_GT_EQ] = ACTIONS(3965), + [anon_sym_LT_EQ] = ACTIONS(3965), + [anon_sym_LT] = ACTIONS(3967), + [anon_sym_LT_LT] = ACTIONS(3967), + [anon_sym_GT_GT] = ACTIONS(3967), + [anon_sym_SEMI] = ACTIONS(3965), + [anon_sym___extension__] = ACTIONS(3967), + [anon_sym_extern] = ACTIONS(3967), + [anon_sym___attribute__] = ACTIONS(3967), + [anon_sym___attribute] = ACTIONS(3967), + [anon_sym_noreturn] = ACTIONS(3967), + [anon_sym_LBRACK] = ACTIONS(3965), + [anon_sym_RBRACK] = ACTIONS(3965), + [anon_sym___declspec] = ACTIONS(3967), + [anon_sym_RBRACE] = ACTIONS(3965), + [anon_sym_static] = ACTIONS(3967), + [anon_sym_EQ] = ACTIONS(3967), + [anon_sym_auto] = ACTIONS(3967), + [anon_sym_register] = ACTIONS(3967), + [anon_sym_inline] = ACTIONS(3967), + [anon_sym___inline] = ACTIONS(3967), + [anon_sym___inline__] = ACTIONS(3967), + [anon_sym___forceinline] = ACTIONS(3967), + [anon_sym_thread_local] = ACTIONS(3967), + [anon_sym___thread] = ACTIONS(3967), + [anon_sym_CG_EXTERN] = ACTIONS(3967), + [anon_sym_CG_INLINE] = ACTIONS(3967), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3967), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3967), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3967), + [anon_sym_IBOutlet] = ACTIONS(3967), + [anon_sym_IBInspectable] = ACTIONS(3967), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3967), + [anon_sym_NS_INLINE] = ACTIONS(3967), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3967), + [anon_sym_OBJC_EXPORT] = ACTIONS(3967), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3967), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3967), + [anon_sym_const] = ACTIONS(3967), + [anon_sym_constexpr] = ACTIONS(3967), + [anon_sym_volatile] = ACTIONS(3967), + [anon_sym_restrict] = ACTIONS(3967), + [anon_sym___restrict__] = ACTIONS(3967), + [anon_sym__Atomic] = ACTIONS(3967), + [anon_sym__Noreturn] = ACTIONS(3967), + [anon_sym__Nonnull] = ACTIONS(3967), + [anon_sym_nullable] = ACTIONS(3967), + [anon_sym__Complex] = ACTIONS(3967), + [anon_sym__Nullable] = ACTIONS(3967), + [anon_sym__Nullable_result] = ACTIONS(3967), + [anon_sym__Null_unspecified] = ACTIONS(3967), + [anon_sym___autoreleasing] = ACTIONS(3967), + [anon_sym___block] = ACTIONS(3967), + [anon_sym___bridge] = ACTIONS(3967), + [anon_sym___bridge_retained] = ACTIONS(3967), + [anon_sym___bridge_transfer] = ACTIONS(3967), + [anon_sym___complex] = ACTIONS(3967), + [anon_sym___const] = ACTIONS(3967), + [anon_sym___imag] = ACTIONS(3967), + [anon_sym___kindof] = ACTIONS(3967), + [anon_sym___nonnull] = ACTIONS(3967), + [anon_sym___nullable] = ACTIONS(3967), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3967), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3967), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3967), + [anon_sym___real] = ACTIONS(3967), + [anon_sym___strong] = ACTIONS(3967), + [anon_sym___unsafe_unretained] = ACTIONS(3967), + [anon_sym___unused] = ACTIONS(3967), + [anon_sym___weak] = ACTIONS(3967), + [anon_sym_alignas] = ACTIONS(3967), + [anon_sym__Alignas] = ACTIONS(3967), + [anon_sym_COLON] = ACTIONS(3965), + [anon_sym_QMARK] = ACTIONS(3965), + [anon_sym_STAR_EQ] = ACTIONS(3965), + [anon_sym_SLASH_EQ] = ACTIONS(3965), + [anon_sym_PERCENT_EQ] = ACTIONS(3965), + [anon_sym_PLUS_EQ] = ACTIONS(3965), + [anon_sym_DASH_EQ] = ACTIONS(3965), + [anon_sym_LT_LT_EQ] = ACTIONS(3965), + [anon_sym_GT_GT_EQ] = ACTIONS(3965), + [anon_sym_AMP_EQ] = ACTIONS(3965), + [anon_sym_CARET_EQ] = ACTIONS(3965), + [anon_sym_PIPE_EQ] = ACTIONS(3965), + [anon_sym_DASH_DASH] = ACTIONS(3965), + [anon_sym_PLUS_PLUS] = ACTIONS(3965), + [anon_sym_DOT] = ACTIONS(3967), + [anon_sym_DASH_GT] = ACTIONS(3965), + [anon_sym_AT] = ACTIONS(4630), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3967), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3967), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3967), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3967), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3967), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3967), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3967), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3967), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3967), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3967), + [anon_sym_NS_AVAILABLE] = ACTIONS(3967), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3967), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3967), + [anon_sym_API_AVAILABLE] = ACTIONS(3967), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3967), + [anon_sym_API_DEPRECATED] = ACTIONS(3967), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3967), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3967), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3967), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3967), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3967), + [anon_sym___deprecated_msg] = ACTIONS(3967), + [anon_sym___deprecated_enum_msg] = ACTIONS(3967), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3967), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3967), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3967), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3967), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3967), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3967), + }, + [1634] = { + [sym_string_literal] = STATE(1634), + [aux_sym_concatenated_string_repeat1] = STATE(1634), + [sym_identifier] = ACTIONS(4639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3953), + [anon_sym_RPAREN] = ACTIONS(3953), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3953), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3953), + [anon_sym_LPAREN2] = ACTIONS(3953), + [anon_sym_DASH] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_SLASH] = ACTIONS(3955), + [anon_sym_PERCENT] = ACTIONS(3955), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_PIPE] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3955), + [anon_sym_EQ_EQ] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_GT_EQ] = ACTIONS(3953), + [anon_sym_LT_EQ] = ACTIONS(3953), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_LT_LT] = ACTIONS(3955), + [anon_sym_GT_GT] = ACTIONS(3955), + [anon_sym_SEMI] = ACTIONS(3953), + [anon_sym___extension__] = ACTIONS(3955), + [anon_sym_extern] = ACTIONS(3955), + [anon_sym___attribute__] = ACTIONS(3955), + [anon_sym___attribute] = ACTIONS(3955), + [anon_sym_noreturn] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_RBRACK] = ACTIONS(3953), + [anon_sym___declspec] = ACTIONS(3955), + [anon_sym_RBRACE] = ACTIONS(3953), + [anon_sym_static] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_auto] = ACTIONS(3955), + [anon_sym_register] = ACTIONS(3955), + [anon_sym_inline] = ACTIONS(3955), + [anon_sym___inline] = ACTIONS(3955), + [anon_sym___inline__] = ACTIONS(3955), + [anon_sym___forceinline] = ACTIONS(3955), + [anon_sym_thread_local] = ACTIONS(3955), + [anon_sym___thread] = ACTIONS(3955), + [anon_sym_CG_EXTERN] = ACTIONS(3955), + [anon_sym_CG_INLINE] = ACTIONS(3955), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3955), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3955), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3955), + [anon_sym_IBOutlet] = ACTIONS(3955), + [anon_sym_IBInspectable] = ACTIONS(3955), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3955), + [anon_sym_NS_INLINE] = ACTIONS(3955), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3955), + [anon_sym_OBJC_EXPORT] = ACTIONS(3955), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3955), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3955), + [anon_sym_const] = ACTIONS(3955), + [anon_sym_constexpr] = ACTIONS(3955), + [anon_sym_volatile] = ACTIONS(3955), + [anon_sym_restrict] = ACTIONS(3955), + [anon_sym___restrict__] = ACTIONS(3955), + [anon_sym__Atomic] = ACTIONS(3955), + [anon_sym__Noreturn] = ACTIONS(3955), + [anon_sym__Nonnull] = ACTIONS(3955), + [anon_sym_nullable] = ACTIONS(3955), + [anon_sym__Complex] = ACTIONS(3955), + [anon_sym__Nullable] = ACTIONS(3955), + [anon_sym__Nullable_result] = ACTIONS(3955), + [anon_sym__Null_unspecified] = ACTIONS(3955), + [anon_sym___autoreleasing] = ACTIONS(3955), + [anon_sym___block] = ACTIONS(3955), + [anon_sym___bridge] = ACTIONS(3955), + [anon_sym___bridge_retained] = ACTIONS(3955), + [anon_sym___bridge_transfer] = ACTIONS(3955), + [anon_sym___complex] = ACTIONS(3955), + [anon_sym___const] = ACTIONS(3955), + [anon_sym___imag] = ACTIONS(3955), + [anon_sym___kindof] = ACTIONS(3955), + [anon_sym___nonnull] = ACTIONS(3955), + [anon_sym___nullable] = ACTIONS(3955), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3955), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3955), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3955), + [anon_sym___real] = ACTIONS(3955), + [anon_sym___strong] = ACTIONS(3955), + [anon_sym___unsafe_unretained] = ACTIONS(3955), + [anon_sym___unused] = ACTIONS(3955), + [anon_sym___weak] = ACTIONS(3955), + [anon_sym_alignas] = ACTIONS(3955), + [anon_sym__Alignas] = ACTIONS(3955), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_QMARK] = ACTIONS(3953), + [anon_sym_STAR_EQ] = ACTIONS(3953), + [anon_sym_SLASH_EQ] = ACTIONS(3953), + [anon_sym_PERCENT_EQ] = ACTIONS(3953), + [anon_sym_PLUS_EQ] = ACTIONS(3953), + [anon_sym_DASH_EQ] = ACTIONS(3953), + [anon_sym_LT_LT_EQ] = ACTIONS(3953), + [anon_sym_GT_GT_EQ] = ACTIONS(3953), + [anon_sym_AMP_EQ] = ACTIONS(3953), + [anon_sym_CARET_EQ] = ACTIONS(3953), + [anon_sym_PIPE_EQ] = ACTIONS(3953), + [anon_sym_DASH_DASH] = ACTIONS(3953), + [anon_sym_PLUS_PLUS] = ACTIONS(3953), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3953), + [anon_sym_AT] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4645), + [anon_sym_L_DQUOTE] = ACTIONS(4645), + [anon_sym_u_DQUOTE] = ACTIONS(4645), + [anon_sym_U_DQUOTE] = ACTIONS(4645), + [anon_sym_u8_DQUOTE] = ACTIONS(4645), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3955), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3955), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3955), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3955), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3955), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3955), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3955), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3955), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3955), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3955), + [anon_sym_NS_AVAILABLE] = ACTIONS(3955), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3955), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3955), + [anon_sym_API_AVAILABLE] = ACTIONS(3955), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3955), + [anon_sym_API_DEPRECATED] = ACTIONS(3955), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3955), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3955), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3955), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3955), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3955), + [anon_sym___deprecated_msg] = ACTIONS(3955), + [anon_sym___deprecated_enum_msg] = ACTIONS(3955), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3955), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3955), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3955), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3955), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3955), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3955), + }, + [1635] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4015), + [anon_sym_COMMA] = ACTIONS(4015), + [anon_sym_RPAREN] = ACTIONS(4015), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4015), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4015), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_STAR] = ACTIONS(4015), + [anon_sym_SLASH] = ACTIONS(4013), + [anon_sym_PERCENT] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4013), + [anon_sym_EQ_EQ] = ACTIONS(4015), + [anon_sym_BANG_EQ] = ACTIONS(4015), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_GT_EQ] = ACTIONS(4015), + [anon_sym_LT_EQ] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_LT_LT] = ACTIONS(4015), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4015), + [anon_sym___extension__] = ACTIONS(4013), + [anon_sym_extern] = ACTIONS(4013), + [anon_sym___attribute__] = ACTIONS(4013), + [anon_sym___attribute] = ACTIONS(4013), + [anon_sym_noreturn] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym_RBRACK] = ACTIONS(4015), + [anon_sym___declspec] = ACTIONS(4013), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_RBRACE] = ACTIONS(4015), + [anon_sym_signed] = ACTIONS(4013), + [anon_sym_unsigned] = ACTIONS(4013), + [anon_sym_long] = ACTIONS(4013), + [anon_sym_short] = ACTIONS(4013), + [anon_sym_static] = ACTIONS(4013), + [anon_sym_ATautoreleasepool] = ACTIONS(4015), + [anon_sym_auto] = ACTIONS(4013), + [anon_sym_register] = ACTIONS(4013), + [anon_sym_inline] = ACTIONS(4013), + [anon_sym___inline] = ACTIONS(4013), + [anon_sym___inline__] = ACTIONS(4013), + [anon_sym___forceinline] = ACTIONS(4013), + [anon_sym_thread_local] = ACTIONS(4013), + [anon_sym___thread] = ACTIONS(4013), + [anon_sym_CG_EXTERN] = ACTIONS(4013), + [anon_sym_CG_INLINE] = ACTIONS(4013), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4013), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4013), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4013), + [anon_sym_IBOutlet] = ACTIONS(4013), + [anon_sym_IBInspectable] = ACTIONS(4013), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4013), + [anon_sym_NS_INLINE] = ACTIONS(4013), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4013), + [anon_sym_OBJC_EXPORT] = ACTIONS(4013), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4013), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4013), + [anon_sym_const] = ACTIONS(4013), + [anon_sym_constexpr] = ACTIONS(4013), + [anon_sym_volatile] = ACTIONS(4013), + [anon_sym_restrict] = ACTIONS(4013), + [anon_sym___restrict__] = ACTIONS(4013), + [anon_sym__Atomic] = ACTIONS(4013), + [anon_sym__Noreturn] = ACTIONS(4013), + [anon_sym__Nonnull] = ACTIONS(4013), + [anon_sym_nullable] = ACTIONS(4013), + [anon_sym__Complex] = ACTIONS(4013), + [anon_sym__Nullable] = ACTIONS(4013), + [anon_sym__Nullable_result] = ACTIONS(4013), + [anon_sym__Null_unspecified] = ACTIONS(4013), + [anon_sym___autoreleasing] = ACTIONS(4013), + [anon_sym___block] = ACTIONS(4013), + [anon_sym___bridge] = ACTIONS(4013), + [anon_sym___bridge_retained] = ACTIONS(4013), + [anon_sym___bridge_transfer] = ACTIONS(4013), + [anon_sym___complex] = ACTIONS(4013), + [anon_sym___const] = ACTIONS(4013), + [anon_sym___imag] = ACTIONS(4013), + [anon_sym___kindof] = ACTIONS(4013), + [anon_sym___nonnull] = ACTIONS(4013), + [anon_sym___nullable] = ACTIONS(4013), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4013), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4013), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4013), + [anon_sym___real] = ACTIONS(4013), + [anon_sym___strong] = ACTIONS(4013), + [anon_sym___unsafe_unretained] = ACTIONS(4013), + [anon_sym___unused] = ACTIONS(4013), + [anon_sym___weak] = ACTIONS(4013), + [anon_sym_alignas] = ACTIONS(4013), + [anon_sym__Alignas] = ACTIONS(4013), + [sym_primitive_type] = ACTIONS(4013), + [anon_sym_enum] = ACTIONS(4013), + [anon_sym_COLON] = ACTIONS(4015), + [anon_sym_struct] = ACTIONS(4013), + [anon_sym_union] = ACTIONS(4013), + [anon_sym_QMARK] = ACTIONS(4015), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4013), + [anon_sym___typeof] = ACTIONS(4013), + [anon_sym_typeof] = ACTIONS(4013), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4013), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4013), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4013), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4013), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4013), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4013), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4013), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4013), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4013), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4013), + [anon_sym_NS_AVAILABLE] = ACTIONS(4013), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4013), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4013), + [anon_sym_API_AVAILABLE] = ACTIONS(4013), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4013), + [anon_sym_API_DEPRECATED] = ACTIONS(4013), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4013), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4013), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4013), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4013), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4013), + [anon_sym___deprecated_msg] = ACTIONS(4013), + [anon_sym___deprecated_enum_msg] = ACTIONS(4013), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4013), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4013), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4013), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4013), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4013), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4013), + [anon_sym_BOOL] = ACTIONS(4013), + [anon_sym_IMP] = ACTIONS(4013), + [anon_sym_SEL] = ACTIONS(4013), + [anon_sym_Class] = ACTIONS(4013), + [anon_sym_id] = ACTIONS(4013), + }, + [1636] = { + [sym_string_literal] = STATE(1924), + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(4504), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(4508), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(4508), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [anon_sym_COLON] = ACTIONS(4559), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4523), + [anon_sym_SLASH_EQ] = ACTIONS(4523), + [anon_sym_PERCENT_EQ] = ACTIONS(4523), + [anon_sym_PLUS_EQ] = ACTIONS(4523), + [anon_sym_DASH_EQ] = ACTIONS(4523), + [anon_sym_LT_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_GT_EQ] = ACTIONS(4523), + [anon_sym_AMP_EQ] = ACTIONS(4523), + [anon_sym_CARET_EQ] = ACTIONS(4523), + [anon_sym_PIPE_EQ] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [1637] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(3981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3983), + [anon_sym_COMMA] = ACTIONS(3983), + [anon_sym_RPAREN] = ACTIONS(3983), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3983), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3983), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(3981), + [anon_sym_PLUS] = ACTIONS(3981), + [anon_sym_STAR] = ACTIONS(3983), + [anon_sym_SLASH] = ACTIONS(3981), + [anon_sym_PERCENT] = ACTIONS(3983), + [anon_sym_PIPE_PIPE] = ACTIONS(3983), + [anon_sym_AMP_AMP] = ACTIONS(3983), + [anon_sym_PIPE] = ACTIONS(3981), + [anon_sym_CARET] = ACTIONS(3983), + [anon_sym_AMP] = ACTIONS(3981), + [anon_sym_EQ_EQ] = ACTIONS(3983), + [anon_sym_BANG_EQ] = ACTIONS(3983), + [anon_sym_GT] = ACTIONS(3981), + [anon_sym_GT_EQ] = ACTIONS(3983), + [anon_sym_LT_EQ] = ACTIONS(3983), + [anon_sym_LT] = ACTIONS(3981), + [anon_sym_LT_LT] = ACTIONS(3983), + [anon_sym_GT_GT] = ACTIONS(3983), + [anon_sym_SEMI] = ACTIONS(3983), + [anon_sym___extension__] = ACTIONS(3981), + [anon_sym_extern] = ACTIONS(3981), + [anon_sym___attribute__] = ACTIONS(3981), + [anon_sym___attribute] = ACTIONS(3981), + [anon_sym_noreturn] = ACTIONS(3981), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym_RBRACK] = ACTIONS(3983), + [anon_sym___declspec] = ACTIONS(3981), + [anon_sym_LBRACE] = ACTIONS(3983), + [anon_sym_RBRACE] = ACTIONS(3983), + [anon_sym_signed] = ACTIONS(3981), + [anon_sym_unsigned] = ACTIONS(3981), + [anon_sym_long] = ACTIONS(3981), + [anon_sym_short] = ACTIONS(3981), + [anon_sym_static] = ACTIONS(3981), + [anon_sym_ATautoreleasepool] = ACTIONS(3983), + [anon_sym_auto] = ACTIONS(3981), + [anon_sym_register] = ACTIONS(3981), + [anon_sym_inline] = ACTIONS(3981), + [anon_sym___inline] = ACTIONS(3981), + [anon_sym___inline__] = ACTIONS(3981), + [anon_sym___forceinline] = ACTIONS(3981), + [anon_sym_thread_local] = ACTIONS(3981), + [anon_sym___thread] = ACTIONS(3981), + [anon_sym_CG_EXTERN] = ACTIONS(3981), + [anon_sym_CG_INLINE] = ACTIONS(3981), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3981), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3981), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3981), + [anon_sym_IBOutlet] = ACTIONS(3981), + [anon_sym_IBInspectable] = ACTIONS(3981), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3981), + [anon_sym_NS_INLINE] = ACTIONS(3981), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3981), + [anon_sym_OBJC_EXPORT] = ACTIONS(3981), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3981), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3981), + [anon_sym_const] = ACTIONS(3981), + [anon_sym_constexpr] = ACTIONS(3981), + [anon_sym_volatile] = ACTIONS(3981), + [anon_sym_restrict] = ACTIONS(3981), + [anon_sym___restrict__] = ACTIONS(3981), + [anon_sym__Atomic] = ACTIONS(3981), + [anon_sym__Noreturn] = ACTIONS(3981), + [anon_sym__Nonnull] = ACTIONS(3981), + [anon_sym_nullable] = ACTIONS(3981), + [anon_sym__Complex] = ACTIONS(3981), + [anon_sym__Nullable] = ACTIONS(3981), + [anon_sym__Nullable_result] = ACTIONS(3981), + [anon_sym__Null_unspecified] = ACTIONS(3981), + [anon_sym___autoreleasing] = ACTIONS(3981), + [anon_sym___block] = ACTIONS(3981), + [anon_sym___bridge] = ACTIONS(3981), + [anon_sym___bridge_retained] = ACTIONS(3981), + [anon_sym___bridge_transfer] = ACTIONS(3981), + [anon_sym___complex] = ACTIONS(3981), + [anon_sym___const] = ACTIONS(3981), + [anon_sym___imag] = ACTIONS(3981), + [anon_sym___kindof] = ACTIONS(3981), + [anon_sym___nonnull] = ACTIONS(3981), + [anon_sym___nullable] = ACTIONS(3981), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3981), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3981), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3981), + [anon_sym___real] = ACTIONS(3981), + [anon_sym___strong] = ACTIONS(3981), + [anon_sym___unsafe_unretained] = ACTIONS(3981), + [anon_sym___unused] = ACTIONS(3981), + [anon_sym___weak] = ACTIONS(3981), + [anon_sym_alignas] = ACTIONS(3981), + [anon_sym__Alignas] = ACTIONS(3981), + [sym_primitive_type] = ACTIONS(3981), + [anon_sym_enum] = ACTIONS(3981), + [anon_sym_COLON] = ACTIONS(3983), + [anon_sym_struct] = ACTIONS(3981), + [anon_sym_union] = ACTIONS(3981), + [anon_sym_QMARK] = ACTIONS(3983), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(3981), + [anon_sym___typeof] = ACTIONS(3981), + [anon_sym_typeof] = ACTIONS(3981), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3981), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3981), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3981), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3981), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3981), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3981), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3981), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3981), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3981), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3981), + [anon_sym_NS_AVAILABLE] = ACTIONS(3981), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3981), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3981), + [anon_sym_API_AVAILABLE] = ACTIONS(3981), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3981), + [anon_sym_API_DEPRECATED] = ACTIONS(3981), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3981), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3981), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3981), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3981), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3981), + [anon_sym___deprecated_msg] = ACTIONS(3981), + [anon_sym___deprecated_enum_msg] = ACTIONS(3981), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3981), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3981), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3981), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3981), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3981), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3981), + [anon_sym_BOOL] = ACTIONS(3981), + [anon_sym_IMP] = ACTIONS(3981), + [anon_sym_SEL] = ACTIONS(3981), + [anon_sym_Class] = ACTIONS(3981), + [anon_sym_id] = ACTIONS(3981), + }, + [1638] = { + [sym_identifier] = ACTIONS(4120), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_RPAREN] = ACTIONS(4122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4122), + [anon_sym_LPAREN2] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE] = ACTIONS(4120), + [anon_sym_CARET] = ACTIONS(4122), + [anon_sym_AMP] = ACTIONS(4120), + [anon_sym_EQ_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4122), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_LT_LT] = ACTIONS(4122), + [anon_sym_GT_GT] = ACTIONS(4122), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym___extension__] = ACTIONS(4120), + [anon_sym_extern] = ACTIONS(4120), + [anon_sym___attribute__] = ACTIONS(4120), + [anon_sym___attribute] = ACTIONS(4120), + [anon_sym_noreturn] = ACTIONS(4120), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_RBRACK] = ACTIONS(4122), + [anon_sym___declspec] = ACTIONS(4120), + [anon_sym_LBRACE] = ACTIONS(4122), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_signed] = ACTIONS(4120), + [anon_sym_unsigned] = ACTIONS(4120), + [anon_sym_long] = ACTIONS(4120), + [anon_sym_short] = ACTIONS(4120), + [anon_sym_static] = ACTIONS(4120), + [anon_sym_ATautoreleasepool] = ACTIONS(4122), + [anon_sym_auto] = ACTIONS(4120), + [anon_sym_register] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym___inline] = ACTIONS(4120), + [anon_sym___inline__] = ACTIONS(4120), + [anon_sym___forceinline] = ACTIONS(4120), + [anon_sym_thread_local] = ACTIONS(4120), + [anon_sym___thread] = ACTIONS(4120), + [anon_sym_CG_EXTERN] = ACTIONS(4120), + [anon_sym_CG_INLINE] = ACTIONS(4120), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4120), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4120), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4120), + [anon_sym_IBOutlet] = ACTIONS(4120), + [anon_sym_IBInspectable] = ACTIONS(4120), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4120), + [anon_sym_NS_INLINE] = ACTIONS(4120), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4120), + [anon_sym_OBJC_EXPORT] = ACTIONS(4120), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4120), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4120), + [anon_sym_const] = ACTIONS(4120), + [anon_sym_constexpr] = ACTIONS(4120), + [anon_sym_volatile] = ACTIONS(4120), + [anon_sym_restrict] = ACTIONS(4120), + [anon_sym___restrict__] = ACTIONS(4120), + [anon_sym__Atomic] = ACTIONS(4120), + [anon_sym__Noreturn] = ACTIONS(4120), + [anon_sym__Nonnull] = ACTIONS(4120), + [anon_sym_nullable] = ACTIONS(4120), + [anon_sym__Complex] = ACTIONS(4120), + [anon_sym__Nullable] = ACTIONS(4120), + [anon_sym__Nullable_result] = ACTIONS(4120), + [anon_sym__Null_unspecified] = ACTIONS(4120), + [anon_sym___autoreleasing] = ACTIONS(4120), + [anon_sym___block] = ACTIONS(4120), + [anon_sym___bridge] = ACTIONS(4120), + [anon_sym___bridge_retained] = ACTIONS(4120), + [anon_sym___bridge_transfer] = ACTIONS(4120), + [anon_sym___complex] = ACTIONS(4120), + [anon_sym___const] = ACTIONS(4120), + [anon_sym___imag] = ACTIONS(4120), + [anon_sym___kindof] = ACTIONS(4120), + [anon_sym___nonnull] = ACTIONS(4120), + [anon_sym___nullable] = ACTIONS(4120), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4120), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4120), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4120), + [anon_sym___real] = ACTIONS(4120), + [anon_sym___strong] = ACTIONS(4120), + [anon_sym___unsafe_unretained] = ACTIONS(4120), + [anon_sym___unused] = ACTIONS(4120), + [anon_sym___weak] = ACTIONS(4120), + [anon_sym_alignas] = ACTIONS(4120), + [anon_sym__Alignas] = ACTIONS(4120), + [sym_primitive_type] = ACTIONS(4120), + [anon_sym_enum] = ACTIONS(4120), + [anon_sym_COLON] = ACTIONS(4122), + [anon_sym_struct] = ACTIONS(4120), + [anon_sym_union] = ACTIONS(4120), + [anon_sym_QMARK] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_DASH_GT] = ACTIONS(4122), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4120), + [anon_sym___typeof] = ACTIONS(4120), + [anon_sym_typeof] = ACTIONS(4120), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4120), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4120), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4120), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4120), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4120), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4120), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4120), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4120), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4120), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4120), + [anon_sym_NS_AVAILABLE] = ACTIONS(4120), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4120), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4120), + [anon_sym_API_AVAILABLE] = ACTIONS(4120), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4120), + [anon_sym_API_DEPRECATED] = ACTIONS(4120), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4120), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4120), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4120), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4120), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4120), + [anon_sym___deprecated_msg] = ACTIONS(4120), + [anon_sym___deprecated_enum_msg] = ACTIONS(4120), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4120), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4120), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4120), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4120), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4120), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4120), + [anon_sym_BOOL] = ACTIONS(4120), + [anon_sym_IMP] = ACTIONS(4120), + [anon_sym_SEL] = ACTIONS(4120), + [anon_sym_Class] = ACTIONS(4120), + [anon_sym_id] = ACTIONS(4120), + }, + [1639] = { + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4200), + [anon_sym_COMMA] = ACTIONS(4200), + [anon_sym_RPAREN] = ACTIONS(4200), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4200), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4198), + [anon_sym_STAR] = ACTIONS(4200), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4200), + [anon_sym_PIPE_PIPE] = ACTIONS(4200), + [anon_sym_AMP_AMP] = ACTIONS(4200), + [anon_sym_PIPE] = ACTIONS(4198), + [anon_sym_CARET] = ACTIONS(4200), + [anon_sym_AMP] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4200), + [anon_sym_BANG_EQ] = ACTIONS(4200), + [anon_sym_GT] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4200), + [anon_sym_LT_EQ] = ACTIONS(4200), + [anon_sym_LT] = ACTIONS(4198), + [anon_sym_LT_LT] = ACTIONS(4200), + [anon_sym_GT_GT] = ACTIONS(4200), + [anon_sym_SEMI] = ACTIONS(4200), + [anon_sym___extension__] = ACTIONS(4198), + [anon_sym_extern] = ACTIONS(4198), + [anon_sym___attribute__] = ACTIONS(4198), + [anon_sym___attribute] = ACTIONS(4198), + [anon_sym_noreturn] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(4200), + [anon_sym_RBRACK] = ACTIONS(4200), + [anon_sym___declspec] = ACTIONS(4198), + [anon_sym_LBRACE] = ACTIONS(4200), + [anon_sym_RBRACE] = ACTIONS(4200), + [anon_sym_signed] = ACTIONS(4198), + [anon_sym_unsigned] = ACTIONS(4198), + [anon_sym_long] = ACTIONS(4198), + [anon_sym_short] = ACTIONS(4198), + [anon_sym_static] = ACTIONS(4198), + [anon_sym_ATautoreleasepool] = ACTIONS(4200), + [anon_sym_auto] = ACTIONS(4198), + [anon_sym_register] = ACTIONS(4198), + [anon_sym_inline] = ACTIONS(4198), + [anon_sym___inline] = ACTIONS(4198), + [anon_sym___inline__] = ACTIONS(4198), + [anon_sym___forceinline] = ACTIONS(4198), + [anon_sym_thread_local] = ACTIONS(4198), + [anon_sym___thread] = ACTIONS(4198), + [anon_sym_CG_EXTERN] = ACTIONS(4198), + [anon_sym_CG_INLINE] = ACTIONS(4198), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4198), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4198), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4198), + [anon_sym_IBOutlet] = ACTIONS(4198), + [anon_sym_IBInspectable] = ACTIONS(4198), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4198), + [anon_sym_NS_INLINE] = ACTIONS(4198), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4198), + [anon_sym_OBJC_EXPORT] = ACTIONS(4198), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4198), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4198), + [anon_sym_const] = ACTIONS(4198), + [anon_sym_constexpr] = ACTIONS(4198), + [anon_sym_volatile] = ACTIONS(4198), + [anon_sym_restrict] = ACTIONS(4198), + [anon_sym___restrict__] = ACTIONS(4198), + [anon_sym__Atomic] = ACTIONS(4198), + [anon_sym__Noreturn] = ACTIONS(4198), + [anon_sym__Nonnull] = ACTIONS(4198), + [anon_sym_nullable] = ACTIONS(4198), + [anon_sym__Complex] = ACTIONS(4198), + [anon_sym__Nullable] = ACTIONS(4198), + [anon_sym__Nullable_result] = ACTIONS(4198), + [anon_sym__Null_unspecified] = ACTIONS(4198), + [anon_sym___autoreleasing] = ACTIONS(4198), + [anon_sym___block] = ACTIONS(4198), + [anon_sym___bridge] = ACTIONS(4198), + [anon_sym___bridge_retained] = ACTIONS(4198), + [anon_sym___bridge_transfer] = ACTIONS(4198), + [anon_sym___complex] = ACTIONS(4198), + [anon_sym___const] = ACTIONS(4198), + [anon_sym___imag] = ACTIONS(4198), + [anon_sym___kindof] = ACTIONS(4198), + [anon_sym___nonnull] = ACTIONS(4198), + [anon_sym___nullable] = ACTIONS(4198), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4198), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4198), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4198), + [anon_sym___real] = ACTIONS(4198), + [anon_sym___strong] = ACTIONS(4198), + [anon_sym___unsafe_unretained] = ACTIONS(4198), + [anon_sym___unused] = ACTIONS(4198), + [anon_sym___weak] = ACTIONS(4198), + [anon_sym_alignas] = ACTIONS(4198), + [anon_sym__Alignas] = ACTIONS(4198), + [sym_primitive_type] = ACTIONS(4198), + [anon_sym_enum] = ACTIONS(4198), + [anon_sym_COLON] = ACTIONS(4200), + [anon_sym_struct] = ACTIONS(4198), + [anon_sym_union] = ACTIONS(4198), + [anon_sym_QMARK] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4200), + [anon_sym_PLUS_PLUS] = ACTIONS(4200), + [anon_sym_DOT] = ACTIONS(4198), + [anon_sym_DASH_GT] = ACTIONS(4200), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4198), + [anon_sym___typeof] = ACTIONS(4198), + [anon_sym_typeof] = ACTIONS(4198), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4198), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4198), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4198), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4198), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4198), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4198), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4198), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4198), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4198), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4198), + [anon_sym_NS_AVAILABLE] = ACTIONS(4198), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4198), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4198), + [anon_sym_API_AVAILABLE] = ACTIONS(4198), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4198), + [anon_sym_API_DEPRECATED] = ACTIONS(4198), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4198), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4198), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4198), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4198), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4198), + [anon_sym___deprecated_msg] = ACTIONS(4198), + [anon_sym___deprecated_enum_msg] = ACTIONS(4198), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4198), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4198), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4198), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4198), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4198), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4198), + [anon_sym_BOOL] = ACTIONS(4198), + [anon_sym_IMP] = ACTIONS(4198), + [anon_sym_SEL] = ACTIONS(4198), + [anon_sym_Class] = ACTIONS(4198), + [anon_sym_id] = ACTIONS(4198), + }, + [1640] = { + [sym_identifier] = ACTIONS(4110), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4112), + [anon_sym_COMMA] = ACTIONS(4112), + [anon_sym_LPAREN2] = ACTIONS(4112), + [anon_sym_DASH] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4110), + [anon_sym_STAR] = ACTIONS(4112), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_PERCENT] = ACTIONS(4112), + [anon_sym_PIPE_PIPE] = ACTIONS(4112), + [anon_sym_AMP_AMP] = ACTIONS(4112), + [anon_sym_PIPE] = ACTIONS(4110), + [anon_sym_CARET] = ACTIONS(4112), + [anon_sym_AMP] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4112), + [anon_sym_BANG_EQ] = ACTIONS(4112), + [anon_sym_GT] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4112), + [anon_sym_LT_EQ] = ACTIONS(4112), + [anon_sym_LT] = ACTIONS(4110), + [anon_sym_LT_LT] = ACTIONS(4112), + [anon_sym_GT_GT] = ACTIONS(4112), + [anon_sym_SEMI] = ACTIONS(4112), + [anon_sym___extension__] = ACTIONS(4110), + [anon_sym_extern] = ACTIONS(4110), + [anon_sym___attribute__] = ACTIONS(4110), + [anon_sym___attribute] = ACTIONS(4110), + [anon_sym_noreturn] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4112), + [anon_sym___declspec] = ACTIONS(4110), + [anon_sym_LBRACE] = ACTIONS(4112), + [anon_sym_signed] = ACTIONS(4110), + [anon_sym_unsigned] = ACTIONS(4110), + [anon_sym_long] = ACTIONS(4110), + [anon_sym_short] = ACTIONS(4110), + [anon_sym_static] = ACTIONS(4110), + [anon_sym_ATautoreleasepool] = ACTIONS(4112), + [anon_sym_auto] = ACTIONS(4110), + [anon_sym_register] = ACTIONS(4110), + [anon_sym_inline] = ACTIONS(4110), + [anon_sym___inline] = ACTIONS(4110), + [anon_sym___inline__] = ACTIONS(4110), + [anon_sym___forceinline] = ACTIONS(4110), + [anon_sym_thread_local] = ACTIONS(4110), + [anon_sym___thread] = ACTIONS(4110), + [anon_sym_CG_EXTERN] = ACTIONS(4110), + [anon_sym_CG_INLINE] = ACTIONS(4110), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4110), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4110), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4110), + [anon_sym_IBOutlet] = ACTIONS(4110), + [anon_sym_IBInspectable] = ACTIONS(4110), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4110), + [anon_sym_NS_INLINE] = ACTIONS(4110), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4110), + [anon_sym_OBJC_EXPORT] = ACTIONS(4110), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4110), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4110), + [anon_sym_const] = ACTIONS(4110), + [anon_sym_constexpr] = ACTIONS(4110), + [anon_sym_volatile] = ACTIONS(4110), + [anon_sym_restrict] = ACTIONS(4110), + [anon_sym___restrict__] = ACTIONS(4110), + [anon_sym__Atomic] = ACTIONS(4110), + [anon_sym__Noreturn] = ACTIONS(4110), + [anon_sym__Nonnull] = ACTIONS(4110), + [anon_sym_nullable] = ACTIONS(4110), + [anon_sym__Complex] = ACTIONS(4110), + [anon_sym__Nullable] = ACTIONS(4110), + [anon_sym__Nullable_result] = ACTIONS(4110), + [anon_sym__Null_unspecified] = ACTIONS(4110), + [anon_sym___autoreleasing] = ACTIONS(4110), + [anon_sym___block] = ACTIONS(4110), + [anon_sym___bridge] = ACTIONS(4110), + [anon_sym___bridge_retained] = ACTIONS(4110), + [anon_sym___bridge_transfer] = ACTIONS(4110), + [anon_sym___complex] = ACTIONS(4110), + [anon_sym___const] = ACTIONS(4110), + [anon_sym___imag] = ACTIONS(4110), + [anon_sym___kindof] = ACTIONS(4110), + [anon_sym___nonnull] = ACTIONS(4110), + [anon_sym___nullable] = ACTIONS(4110), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4110), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4110), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4110), + [anon_sym___real] = ACTIONS(4110), + [anon_sym___strong] = ACTIONS(4110), + [anon_sym___unsafe_unretained] = ACTIONS(4110), + [anon_sym___unused] = ACTIONS(4110), + [anon_sym___weak] = ACTIONS(4110), + [anon_sym_alignas] = ACTIONS(4110), + [anon_sym__Alignas] = ACTIONS(4110), + [sym_primitive_type] = ACTIONS(4110), + [anon_sym_enum] = ACTIONS(4110), + [anon_sym_struct] = ACTIONS(4110), + [anon_sym_union] = ACTIONS(4110), + [anon_sym_QMARK] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_DASH_GT] = ACTIONS(4112), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_DQUOTE] = ACTIONS(4112), + [anon_sym_L_DQUOTE] = ACTIONS(4112), + [anon_sym_u_DQUOTE] = ACTIONS(4112), + [anon_sym_U_DQUOTE] = ACTIONS(4112), + [anon_sym_u8_DQUOTE] = ACTIONS(4112), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4110), + [anon_sym___typeof] = ACTIONS(4110), + [anon_sym_typeof] = ACTIONS(4110), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4110), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4110), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4110), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4110), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4110), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4110), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4110), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4110), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4110), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4110), + [anon_sym_NS_AVAILABLE] = ACTIONS(4110), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4110), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4110), + [anon_sym_API_AVAILABLE] = ACTIONS(4110), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4110), + [anon_sym_API_DEPRECATED] = ACTIONS(4110), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4110), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4110), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4110), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4110), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4110), + [anon_sym___deprecated_msg] = ACTIONS(4110), + [anon_sym___deprecated_enum_msg] = ACTIONS(4110), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4110), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4110), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4110), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4110), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4110), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4110), + [anon_sym_BOOL] = ACTIONS(4110), + [anon_sym_IMP] = ACTIONS(4110), + [anon_sym_SEL] = ACTIONS(4110), + [anon_sym_Class] = ACTIONS(4110), + [anon_sym_id] = ACTIONS(4110), + }, + [1641] = { + [sym_identifier] = ACTIONS(4202), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_RPAREN] = ACTIONS(4204), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4204), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE] = ACTIONS(4202), + [anon_sym_CARET] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_LT_LT] = ACTIONS(4204), + [anon_sym_GT_GT] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(4202), + [anon_sym_extern] = ACTIONS(4202), + [anon_sym___attribute__] = ACTIONS(4202), + [anon_sym___attribute] = ACTIONS(4202), + [anon_sym_noreturn] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_RBRACK] = ACTIONS(4204), + [anon_sym___declspec] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4204), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_signed] = ACTIONS(4202), + [anon_sym_unsigned] = ACTIONS(4202), + [anon_sym_long] = ACTIONS(4202), + [anon_sym_short] = ACTIONS(4202), + [anon_sym_static] = ACTIONS(4202), + [anon_sym_ATautoreleasepool] = ACTIONS(4204), + [anon_sym_auto] = ACTIONS(4202), + [anon_sym_register] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym___inline] = ACTIONS(4202), + [anon_sym___inline__] = ACTIONS(4202), + [anon_sym___forceinline] = ACTIONS(4202), + [anon_sym_thread_local] = ACTIONS(4202), + [anon_sym___thread] = ACTIONS(4202), + [anon_sym_CG_EXTERN] = ACTIONS(4202), + [anon_sym_CG_INLINE] = ACTIONS(4202), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4202), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4202), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4202), + [anon_sym_IBOutlet] = ACTIONS(4202), + [anon_sym_IBInspectable] = ACTIONS(4202), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4202), + [anon_sym_NS_INLINE] = ACTIONS(4202), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4202), + [anon_sym_OBJC_EXPORT] = ACTIONS(4202), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4202), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4202), + [anon_sym_const] = ACTIONS(4202), + [anon_sym_constexpr] = ACTIONS(4202), + [anon_sym_volatile] = ACTIONS(4202), + [anon_sym_restrict] = ACTIONS(4202), + [anon_sym___restrict__] = ACTIONS(4202), + [anon_sym__Atomic] = ACTIONS(4202), + [anon_sym__Noreturn] = ACTIONS(4202), + [anon_sym__Nonnull] = ACTIONS(4202), + [anon_sym_nullable] = ACTIONS(4202), + [anon_sym__Complex] = ACTIONS(4202), + [anon_sym__Nullable] = ACTIONS(4202), + [anon_sym__Nullable_result] = ACTIONS(4202), + [anon_sym__Null_unspecified] = ACTIONS(4202), + [anon_sym___autoreleasing] = ACTIONS(4202), + [anon_sym___block] = ACTIONS(4202), + [anon_sym___bridge] = ACTIONS(4202), + [anon_sym___bridge_retained] = ACTIONS(4202), + [anon_sym___bridge_transfer] = ACTIONS(4202), + [anon_sym___complex] = ACTIONS(4202), + [anon_sym___const] = ACTIONS(4202), + [anon_sym___imag] = ACTIONS(4202), + [anon_sym___kindof] = ACTIONS(4202), + [anon_sym___nonnull] = ACTIONS(4202), + [anon_sym___nullable] = ACTIONS(4202), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4202), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4202), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4202), + [anon_sym___real] = ACTIONS(4202), + [anon_sym___strong] = ACTIONS(4202), + [anon_sym___unsafe_unretained] = ACTIONS(4202), + [anon_sym___unused] = ACTIONS(4202), + [anon_sym___weak] = ACTIONS(4202), + [anon_sym_alignas] = ACTIONS(4202), + [anon_sym__Alignas] = ACTIONS(4202), + [sym_primitive_type] = ACTIONS(4202), + [anon_sym_enum] = ACTIONS(4202), + [anon_sym_COLON] = ACTIONS(4204), + [anon_sym_struct] = ACTIONS(4202), + [anon_sym_union] = ACTIONS(4202), + [anon_sym_QMARK] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_DASH_GT] = ACTIONS(4204), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4202), + [anon_sym___typeof] = ACTIONS(4202), + [anon_sym_typeof] = ACTIONS(4202), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4202), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4202), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4202), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4202), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4202), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4202), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4202), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4202), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4202), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4202), + [anon_sym_NS_AVAILABLE] = ACTIONS(4202), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4202), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4202), + [anon_sym_API_AVAILABLE] = ACTIONS(4202), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4202), + [anon_sym_API_DEPRECATED] = ACTIONS(4202), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4202), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4202), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4202), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4202), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4202), + [anon_sym___deprecated_msg] = ACTIONS(4202), + [anon_sym___deprecated_enum_msg] = ACTIONS(4202), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4202), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4202), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4202), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4202), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4202), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4202), + [anon_sym_BOOL] = ACTIONS(4202), + [anon_sym_IMP] = ACTIONS(4202), + [anon_sym_SEL] = ACTIONS(4202), + [anon_sym_Class] = ACTIONS(4202), + [anon_sym_id] = ACTIONS(4202), + }, + [1642] = { + [sym_identifier] = ACTIONS(4210), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4212), + [anon_sym_COMMA] = ACTIONS(4212), + [anon_sym_RPAREN] = ACTIONS(4212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4212), + [anon_sym_LPAREN2] = ACTIONS(4212), + [anon_sym_DASH] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4212), + [anon_sym_SLASH] = ACTIONS(4210), + [anon_sym_PERCENT] = ACTIONS(4212), + [anon_sym_PIPE_PIPE] = ACTIONS(4212), + [anon_sym_AMP_AMP] = ACTIONS(4212), + [anon_sym_PIPE] = ACTIONS(4210), + [anon_sym_CARET] = ACTIONS(4212), + [anon_sym_AMP] = ACTIONS(4210), + [anon_sym_EQ_EQ] = ACTIONS(4212), + [anon_sym_BANG_EQ] = ACTIONS(4212), + [anon_sym_GT] = ACTIONS(4210), + [anon_sym_GT_EQ] = ACTIONS(4212), + [anon_sym_LT_EQ] = ACTIONS(4212), + [anon_sym_LT] = ACTIONS(4210), + [anon_sym_LT_LT] = ACTIONS(4212), + [anon_sym_GT_GT] = ACTIONS(4212), + [anon_sym_SEMI] = ACTIONS(4212), + [anon_sym___extension__] = ACTIONS(4210), + [anon_sym_extern] = ACTIONS(4210), + [anon_sym___attribute__] = ACTIONS(4210), + [anon_sym___attribute] = ACTIONS(4210), + [anon_sym_noreturn] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_RBRACK] = ACTIONS(4212), + [anon_sym___declspec] = ACTIONS(4210), + [anon_sym_LBRACE] = ACTIONS(4212), + [anon_sym_RBRACE] = ACTIONS(4212), + [anon_sym_signed] = ACTIONS(4210), + [anon_sym_unsigned] = ACTIONS(4210), + [anon_sym_long] = ACTIONS(4210), + [anon_sym_short] = ACTIONS(4210), + [anon_sym_static] = ACTIONS(4210), + [anon_sym_ATautoreleasepool] = ACTIONS(4212), + [anon_sym_auto] = ACTIONS(4210), + [anon_sym_register] = ACTIONS(4210), + [anon_sym_inline] = ACTIONS(4210), + [anon_sym___inline] = ACTIONS(4210), + [anon_sym___inline__] = ACTIONS(4210), + [anon_sym___forceinline] = ACTIONS(4210), + [anon_sym_thread_local] = ACTIONS(4210), + [anon_sym___thread] = ACTIONS(4210), + [anon_sym_CG_EXTERN] = ACTIONS(4210), + [anon_sym_CG_INLINE] = ACTIONS(4210), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4210), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4210), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4210), + [anon_sym_IBOutlet] = ACTIONS(4210), + [anon_sym_IBInspectable] = ACTIONS(4210), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4210), + [anon_sym_NS_INLINE] = ACTIONS(4210), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4210), + [anon_sym_OBJC_EXPORT] = ACTIONS(4210), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4210), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4210), + [anon_sym_const] = ACTIONS(4210), + [anon_sym_constexpr] = ACTIONS(4210), + [anon_sym_volatile] = ACTIONS(4210), + [anon_sym_restrict] = ACTIONS(4210), + [anon_sym___restrict__] = ACTIONS(4210), + [anon_sym__Atomic] = ACTIONS(4210), + [anon_sym__Noreturn] = ACTIONS(4210), + [anon_sym__Nonnull] = ACTIONS(4210), + [anon_sym_nullable] = ACTIONS(4210), + [anon_sym__Complex] = ACTIONS(4210), + [anon_sym__Nullable] = ACTIONS(4210), + [anon_sym__Nullable_result] = ACTIONS(4210), + [anon_sym__Null_unspecified] = ACTIONS(4210), + [anon_sym___autoreleasing] = ACTIONS(4210), + [anon_sym___block] = ACTIONS(4210), + [anon_sym___bridge] = ACTIONS(4210), + [anon_sym___bridge_retained] = ACTIONS(4210), + [anon_sym___bridge_transfer] = ACTIONS(4210), + [anon_sym___complex] = ACTIONS(4210), + [anon_sym___const] = ACTIONS(4210), + [anon_sym___imag] = ACTIONS(4210), + [anon_sym___kindof] = ACTIONS(4210), + [anon_sym___nonnull] = ACTIONS(4210), + [anon_sym___nullable] = ACTIONS(4210), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4210), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4210), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4210), + [anon_sym___real] = ACTIONS(4210), + [anon_sym___strong] = ACTIONS(4210), + [anon_sym___unsafe_unretained] = ACTIONS(4210), + [anon_sym___unused] = ACTIONS(4210), + [anon_sym___weak] = ACTIONS(4210), + [anon_sym_alignas] = ACTIONS(4210), + [anon_sym__Alignas] = ACTIONS(4210), + [sym_primitive_type] = ACTIONS(4210), + [anon_sym_enum] = ACTIONS(4210), + [anon_sym_COLON] = ACTIONS(4212), + [anon_sym_struct] = ACTIONS(4210), + [anon_sym_union] = ACTIONS(4210), + [anon_sym_QMARK] = ACTIONS(4212), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_DOT] = ACTIONS(4210), + [anon_sym_DASH_GT] = ACTIONS(4212), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4210), + [anon_sym___typeof] = ACTIONS(4210), + [anon_sym_typeof] = ACTIONS(4210), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4210), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4210), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4210), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4210), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4210), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4210), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4210), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4210), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4210), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4210), + [anon_sym_NS_AVAILABLE] = ACTIONS(4210), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4210), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4210), + [anon_sym_API_AVAILABLE] = ACTIONS(4210), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4210), + [anon_sym_API_DEPRECATED] = ACTIONS(4210), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4210), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4210), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4210), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4210), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4210), + [anon_sym___deprecated_msg] = ACTIONS(4210), + [anon_sym___deprecated_enum_msg] = ACTIONS(4210), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4210), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4210), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4210), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4210), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4210), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4210), + [anon_sym_BOOL] = ACTIONS(4210), + [anon_sym_IMP] = ACTIONS(4210), + [anon_sym_SEL] = ACTIONS(4210), + [anon_sym_Class] = ACTIONS(4210), + [anon_sym_id] = ACTIONS(4210), + }, + [1643] = { + [sym_identifier] = ACTIONS(4286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4288), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_RPAREN] = ACTIONS(4288), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4288), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4288), + [anon_sym_LPAREN2] = ACTIONS(4288), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4288), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(4286), + [anon_sym_EQ_EQ] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4288), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_LT_LT] = ACTIONS(4288), + [anon_sym_GT_GT] = ACTIONS(4288), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym___extension__] = ACTIONS(4286), + [anon_sym_extern] = ACTIONS(4286), + [anon_sym___attribute__] = ACTIONS(4286), + [anon_sym___attribute] = ACTIONS(4286), + [anon_sym_noreturn] = ACTIONS(4286), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_RBRACK] = ACTIONS(4288), + [anon_sym___declspec] = ACTIONS(4286), + [anon_sym_LBRACE] = ACTIONS(4288), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_signed] = ACTIONS(4286), + [anon_sym_unsigned] = ACTIONS(4286), + [anon_sym_long] = ACTIONS(4286), + [anon_sym_short] = ACTIONS(4286), + [anon_sym_static] = ACTIONS(4286), + [anon_sym_ATautoreleasepool] = ACTIONS(4288), + [anon_sym_auto] = ACTIONS(4286), + [anon_sym_register] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym___inline] = ACTIONS(4286), + [anon_sym___inline__] = ACTIONS(4286), + [anon_sym___forceinline] = ACTIONS(4286), + [anon_sym_thread_local] = ACTIONS(4286), + [anon_sym___thread] = ACTIONS(4286), + [anon_sym_CG_EXTERN] = ACTIONS(4286), + [anon_sym_CG_INLINE] = ACTIONS(4286), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4286), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4286), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4286), + [anon_sym_IBOutlet] = ACTIONS(4286), + [anon_sym_IBInspectable] = ACTIONS(4286), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4286), + [anon_sym_NS_INLINE] = ACTIONS(4286), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4286), + [anon_sym_OBJC_EXPORT] = ACTIONS(4286), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4286), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4286), + [anon_sym_const] = ACTIONS(4286), + [anon_sym_constexpr] = ACTIONS(4286), + [anon_sym_volatile] = ACTIONS(4286), + [anon_sym_restrict] = ACTIONS(4286), + [anon_sym___restrict__] = ACTIONS(4286), + [anon_sym__Atomic] = ACTIONS(4286), + [anon_sym__Noreturn] = ACTIONS(4286), + [anon_sym__Nonnull] = ACTIONS(4286), + [anon_sym_nullable] = ACTIONS(4286), + [anon_sym__Complex] = ACTIONS(4286), + [anon_sym__Nullable] = ACTIONS(4286), + [anon_sym__Nullable_result] = ACTIONS(4286), + [anon_sym__Null_unspecified] = ACTIONS(4286), + [anon_sym___autoreleasing] = ACTIONS(4286), + [anon_sym___block] = ACTIONS(4286), + [anon_sym___bridge] = ACTIONS(4286), + [anon_sym___bridge_retained] = ACTIONS(4286), + [anon_sym___bridge_transfer] = ACTIONS(4286), + [anon_sym___complex] = ACTIONS(4286), + [anon_sym___const] = ACTIONS(4286), + [anon_sym___imag] = ACTIONS(4286), + [anon_sym___kindof] = ACTIONS(4286), + [anon_sym___nonnull] = ACTIONS(4286), + [anon_sym___nullable] = ACTIONS(4286), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4286), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4286), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4286), + [anon_sym___real] = ACTIONS(4286), + [anon_sym___strong] = ACTIONS(4286), + [anon_sym___unsafe_unretained] = ACTIONS(4286), + [anon_sym___unused] = ACTIONS(4286), + [anon_sym___weak] = ACTIONS(4286), + [anon_sym_alignas] = ACTIONS(4286), + [anon_sym__Alignas] = ACTIONS(4286), + [sym_primitive_type] = ACTIONS(4286), + [anon_sym_enum] = ACTIONS(4286), + [anon_sym_COLON] = ACTIONS(4288), + [anon_sym_struct] = ACTIONS(4286), + [anon_sym_union] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_DASH_GT] = ACTIONS(4288), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4286), + [anon_sym___typeof] = ACTIONS(4286), + [anon_sym_typeof] = ACTIONS(4286), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4286), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4286), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4286), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4286), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4286), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4286), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4286), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4286), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4286), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4286), + [anon_sym_NS_AVAILABLE] = ACTIONS(4286), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4286), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4286), + [anon_sym_API_AVAILABLE] = ACTIONS(4286), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4286), + [anon_sym_API_DEPRECATED] = ACTIONS(4286), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4286), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4286), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4286), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4286), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4286), + [anon_sym___deprecated_msg] = ACTIONS(4286), + [anon_sym___deprecated_enum_msg] = ACTIONS(4286), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4286), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4286), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4286), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4286), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4286), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4286), + [anon_sym_BOOL] = ACTIONS(4286), + [anon_sym_IMP] = ACTIONS(4286), + [anon_sym_SEL] = ACTIONS(4286), + [anon_sym_Class] = ACTIONS(4286), + [anon_sym_id] = ACTIONS(4286), + }, + [1644] = { + [sym_identifier] = ACTIONS(4214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4216), + [anon_sym_COMMA] = ACTIONS(4216), + [anon_sym_RPAREN] = ACTIONS(4216), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4216), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4216), + [anon_sym_LPAREN2] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_PIPE_PIPE] = ACTIONS(4216), + [anon_sym_AMP_AMP] = ACTIONS(4216), + [anon_sym_PIPE] = ACTIONS(4214), + [anon_sym_CARET] = ACTIONS(4216), + [anon_sym_AMP] = ACTIONS(4214), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4214), + [anon_sym_GT_EQ] = ACTIONS(4216), + [anon_sym_LT_EQ] = ACTIONS(4216), + [anon_sym_LT] = ACTIONS(4214), + [anon_sym_LT_LT] = ACTIONS(4216), + [anon_sym_GT_GT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4216), + [anon_sym___extension__] = ACTIONS(4214), + [anon_sym_extern] = ACTIONS(4214), + [anon_sym___attribute__] = ACTIONS(4214), + [anon_sym___attribute] = ACTIONS(4214), + [anon_sym_noreturn] = ACTIONS(4214), + [anon_sym_LBRACK] = ACTIONS(4216), + [anon_sym_RBRACK] = ACTIONS(4216), + [anon_sym___declspec] = ACTIONS(4214), + [anon_sym_LBRACE] = ACTIONS(4216), + [anon_sym_RBRACE] = ACTIONS(4216), + [anon_sym_signed] = ACTIONS(4214), + [anon_sym_unsigned] = ACTIONS(4214), + [anon_sym_long] = ACTIONS(4214), + [anon_sym_short] = ACTIONS(4214), + [anon_sym_static] = ACTIONS(4214), + [anon_sym_ATautoreleasepool] = ACTIONS(4216), + [anon_sym_auto] = ACTIONS(4214), + [anon_sym_register] = ACTIONS(4214), + [anon_sym_inline] = ACTIONS(4214), + [anon_sym___inline] = ACTIONS(4214), + [anon_sym___inline__] = ACTIONS(4214), + [anon_sym___forceinline] = ACTIONS(4214), + [anon_sym_thread_local] = ACTIONS(4214), + [anon_sym___thread] = ACTIONS(4214), + [anon_sym_CG_EXTERN] = ACTIONS(4214), + [anon_sym_CG_INLINE] = ACTIONS(4214), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4214), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4214), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4214), + [anon_sym_IBOutlet] = ACTIONS(4214), + [anon_sym_IBInspectable] = ACTIONS(4214), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4214), + [anon_sym_NS_INLINE] = ACTIONS(4214), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4214), + [anon_sym_OBJC_EXPORT] = ACTIONS(4214), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4214), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4214), + [anon_sym_const] = ACTIONS(4214), + [anon_sym_constexpr] = ACTIONS(4214), + [anon_sym_volatile] = ACTIONS(4214), + [anon_sym_restrict] = ACTIONS(4214), + [anon_sym___restrict__] = ACTIONS(4214), + [anon_sym__Atomic] = ACTIONS(4214), + [anon_sym__Noreturn] = ACTIONS(4214), + [anon_sym__Nonnull] = ACTIONS(4214), + [anon_sym_nullable] = ACTIONS(4214), + [anon_sym__Complex] = ACTIONS(4214), + [anon_sym__Nullable] = ACTIONS(4214), + [anon_sym__Nullable_result] = ACTIONS(4214), + [anon_sym__Null_unspecified] = ACTIONS(4214), + [anon_sym___autoreleasing] = ACTIONS(4214), + [anon_sym___block] = ACTIONS(4214), + [anon_sym___bridge] = ACTIONS(4214), + [anon_sym___bridge_retained] = ACTIONS(4214), + [anon_sym___bridge_transfer] = ACTIONS(4214), + [anon_sym___complex] = ACTIONS(4214), + [anon_sym___const] = ACTIONS(4214), + [anon_sym___imag] = ACTIONS(4214), + [anon_sym___kindof] = ACTIONS(4214), + [anon_sym___nonnull] = ACTIONS(4214), + [anon_sym___nullable] = ACTIONS(4214), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4214), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4214), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4214), + [anon_sym___real] = ACTIONS(4214), + [anon_sym___strong] = ACTIONS(4214), + [anon_sym___unsafe_unretained] = ACTIONS(4214), + [anon_sym___unused] = ACTIONS(4214), + [anon_sym___weak] = ACTIONS(4214), + [anon_sym_alignas] = ACTIONS(4214), + [anon_sym__Alignas] = ACTIONS(4214), + [sym_primitive_type] = ACTIONS(4214), + [anon_sym_enum] = ACTIONS(4214), + [anon_sym_COLON] = ACTIONS(4216), + [anon_sym_struct] = ACTIONS(4214), + [anon_sym_union] = ACTIONS(4214), + [anon_sym_QMARK] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_DASH_GT] = ACTIONS(4216), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4214), + [anon_sym___typeof] = ACTIONS(4214), + [anon_sym_typeof] = ACTIONS(4214), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4214), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4214), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4214), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4214), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4214), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4214), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4214), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4214), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4214), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4214), + [anon_sym_NS_AVAILABLE] = ACTIONS(4214), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4214), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4214), + [anon_sym_API_AVAILABLE] = ACTIONS(4214), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4214), + [anon_sym_API_DEPRECATED] = ACTIONS(4214), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4214), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4214), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4214), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4214), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4214), + [anon_sym___deprecated_msg] = ACTIONS(4214), + [anon_sym___deprecated_enum_msg] = ACTIONS(4214), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4214), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4214), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4214), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4214), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4214), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4214), + [anon_sym_BOOL] = ACTIONS(4214), + [anon_sym_IMP] = ACTIONS(4214), + [anon_sym_SEL] = ACTIONS(4214), + [anon_sym_Class] = ACTIONS(4214), + [anon_sym_id] = ACTIONS(4214), + }, + [1645] = { + [sym_identifier] = ACTIONS(4218), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4220), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_RPAREN] = ACTIONS(4220), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4220), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4220), + [anon_sym_LPAREN2] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_SLASH] = ACTIONS(4218), + [anon_sym_PERCENT] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE] = ACTIONS(4218), + [anon_sym_CARET] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_GT] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4218), + [anon_sym_LT_LT] = ACTIONS(4220), + [anon_sym_GT_GT] = ACTIONS(4220), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym___extension__] = ACTIONS(4218), + [anon_sym_extern] = ACTIONS(4218), + [anon_sym___attribute__] = ACTIONS(4218), + [anon_sym___attribute] = ACTIONS(4218), + [anon_sym_noreturn] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_RBRACK] = ACTIONS(4220), + [anon_sym___declspec] = ACTIONS(4218), + [anon_sym_LBRACE] = ACTIONS(4220), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_signed] = ACTIONS(4218), + [anon_sym_unsigned] = ACTIONS(4218), + [anon_sym_long] = ACTIONS(4218), + [anon_sym_short] = ACTIONS(4218), + [anon_sym_static] = ACTIONS(4218), + [anon_sym_ATautoreleasepool] = ACTIONS(4220), + [anon_sym_auto] = ACTIONS(4218), + [anon_sym_register] = ACTIONS(4218), + [anon_sym_inline] = ACTIONS(4218), + [anon_sym___inline] = ACTIONS(4218), + [anon_sym___inline__] = ACTIONS(4218), + [anon_sym___forceinline] = ACTIONS(4218), + [anon_sym_thread_local] = ACTIONS(4218), + [anon_sym___thread] = ACTIONS(4218), + [anon_sym_CG_EXTERN] = ACTIONS(4218), + [anon_sym_CG_INLINE] = ACTIONS(4218), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4218), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4218), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4218), + [anon_sym_IBOutlet] = ACTIONS(4218), + [anon_sym_IBInspectable] = ACTIONS(4218), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4218), + [anon_sym_NS_INLINE] = ACTIONS(4218), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4218), + [anon_sym_OBJC_EXPORT] = ACTIONS(4218), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4218), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4218), + [anon_sym_const] = ACTIONS(4218), + [anon_sym_constexpr] = ACTIONS(4218), + [anon_sym_volatile] = ACTIONS(4218), + [anon_sym_restrict] = ACTIONS(4218), + [anon_sym___restrict__] = ACTIONS(4218), + [anon_sym__Atomic] = ACTIONS(4218), + [anon_sym__Noreturn] = ACTIONS(4218), + [anon_sym__Nonnull] = ACTIONS(4218), + [anon_sym_nullable] = ACTIONS(4218), + [anon_sym__Complex] = ACTIONS(4218), + [anon_sym__Nullable] = ACTIONS(4218), + [anon_sym__Nullable_result] = ACTIONS(4218), + [anon_sym__Null_unspecified] = ACTIONS(4218), + [anon_sym___autoreleasing] = ACTIONS(4218), + [anon_sym___block] = ACTIONS(4218), + [anon_sym___bridge] = ACTIONS(4218), + [anon_sym___bridge_retained] = ACTIONS(4218), + [anon_sym___bridge_transfer] = ACTIONS(4218), + [anon_sym___complex] = ACTIONS(4218), + [anon_sym___const] = ACTIONS(4218), + [anon_sym___imag] = ACTIONS(4218), + [anon_sym___kindof] = ACTIONS(4218), + [anon_sym___nonnull] = ACTIONS(4218), + [anon_sym___nullable] = ACTIONS(4218), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4218), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4218), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4218), + [anon_sym___real] = ACTIONS(4218), + [anon_sym___strong] = ACTIONS(4218), + [anon_sym___unsafe_unretained] = ACTIONS(4218), + [anon_sym___unused] = ACTIONS(4218), + [anon_sym___weak] = ACTIONS(4218), + [anon_sym_alignas] = ACTIONS(4218), + [anon_sym__Alignas] = ACTIONS(4218), + [sym_primitive_type] = ACTIONS(4218), + [anon_sym_enum] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(4220), + [anon_sym_struct] = ACTIONS(4218), + [anon_sym_union] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4218), + [anon_sym_DASH_GT] = ACTIONS(4220), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4218), + [anon_sym___typeof] = ACTIONS(4218), + [anon_sym_typeof] = ACTIONS(4218), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4218), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4218), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4218), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4218), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4218), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4218), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4218), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4218), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4218), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4218), + [anon_sym_NS_AVAILABLE] = ACTIONS(4218), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4218), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4218), + [anon_sym_API_AVAILABLE] = ACTIONS(4218), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4218), + [anon_sym_API_DEPRECATED] = ACTIONS(4218), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4218), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4218), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4218), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4218), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4218), + [anon_sym___deprecated_msg] = ACTIONS(4218), + [anon_sym___deprecated_enum_msg] = ACTIONS(4218), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4218), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4218), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4218), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4218), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4218), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4218), + [anon_sym_BOOL] = ACTIONS(4218), + [anon_sym_IMP] = ACTIONS(4218), + [anon_sym_SEL] = ACTIONS(4218), + [anon_sym_Class] = ACTIONS(4218), + [anon_sym_id] = ACTIONS(4218), + }, + [1646] = { + [sym_identifier] = ACTIONS(4094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4096), + [anon_sym_COMMA] = ACTIONS(4096), + [anon_sym_RPAREN] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), + [anon_sym_LPAREN2] = ACTIONS(4096), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4094), + [anon_sym_STAR] = ACTIONS(4096), + [anon_sym_SLASH] = ACTIONS(4094), + [anon_sym_PERCENT] = ACTIONS(4096), + [anon_sym_PIPE_PIPE] = ACTIONS(4096), + [anon_sym_AMP_AMP] = ACTIONS(4096), + [anon_sym_PIPE] = ACTIONS(4094), + [anon_sym_CARET] = ACTIONS(4096), + [anon_sym_AMP] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4096), + [anon_sym_BANG_EQ] = ACTIONS(4096), + [anon_sym_GT] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4096), + [anon_sym_LT_EQ] = ACTIONS(4096), + [anon_sym_LT] = ACTIONS(4094), + [anon_sym_LT_LT] = ACTIONS(4096), + [anon_sym_GT_GT] = ACTIONS(4096), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym___extension__] = ACTIONS(4094), + [anon_sym_extern] = ACTIONS(4094), + [anon_sym___attribute__] = ACTIONS(4094), + [anon_sym___attribute] = ACTIONS(4094), + [anon_sym_noreturn] = ACTIONS(4094), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_RBRACK] = ACTIONS(4096), + [anon_sym___declspec] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(4096), + [anon_sym_RBRACE] = ACTIONS(4096), + [anon_sym_signed] = ACTIONS(4094), + [anon_sym_unsigned] = ACTIONS(4094), + [anon_sym_long] = ACTIONS(4094), + [anon_sym_short] = ACTIONS(4094), + [anon_sym_static] = ACTIONS(4094), + [anon_sym_ATautoreleasepool] = ACTIONS(4096), + [anon_sym_auto] = ACTIONS(4094), + [anon_sym_register] = ACTIONS(4094), + [anon_sym_inline] = ACTIONS(4094), + [anon_sym___inline] = ACTIONS(4094), + [anon_sym___inline__] = ACTIONS(4094), + [anon_sym___forceinline] = ACTIONS(4094), + [anon_sym_thread_local] = ACTIONS(4094), + [anon_sym___thread] = ACTIONS(4094), + [anon_sym_CG_EXTERN] = ACTIONS(4094), + [anon_sym_CG_INLINE] = ACTIONS(4094), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4094), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4094), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4094), + [anon_sym_IBOutlet] = ACTIONS(4094), + [anon_sym_IBInspectable] = ACTIONS(4094), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4094), + [anon_sym_NS_INLINE] = ACTIONS(4094), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4094), + [anon_sym_OBJC_EXPORT] = ACTIONS(4094), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4094), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4094), + [anon_sym_const] = ACTIONS(4094), + [anon_sym_constexpr] = ACTIONS(4094), + [anon_sym_volatile] = ACTIONS(4094), + [anon_sym_restrict] = ACTIONS(4094), + [anon_sym___restrict__] = ACTIONS(4094), + [anon_sym__Atomic] = ACTIONS(4094), + [anon_sym__Noreturn] = ACTIONS(4094), + [anon_sym__Nonnull] = ACTIONS(4094), + [anon_sym_nullable] = ACTIONS(4094), + [anon_sym__Complex] = ACTIONS(4094), + [anon_sym__Nullable] = ACTIONS(4094), + [anon_sym__Nullable_result] = ACTIONS(4094), + [anon_sym__Null_unspecified] = ACTIONS(4094), + [anon_sym___autoreleasing] = ACTIONS(4094), + [anon_sym___block] = ACTIONS(4094), + [anon_sym___bridge] = ACTIONS(4094), + [anon_sym___bridge_retained] = ACTIONS(4094), + [anon_sym___bridge_transfer] = ACTIONS(4094), + [anon_sym___complex] = ACTIONS(4094), + [anon_sym___const] = ACTIONS(4094), + [anon_sym___imag] = ACTIONS(4094), + [anon_sym___kindof] = ACTIONS(4094), + [anon_sym___nonnull] = ACTIONS(4094), + [anon_sym___nullable] = ACTIONS(4094), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4094), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4094), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4094), + [anon_sym___real] = ACTIONS(4094), + [anon_sym___strong] = ACTIONS(4094), + [anon_sym___unsafe_unretained] = ACTIONS(4094), + [anon_sym___unused] = ACTIONS(4094), + [anon_sym___weak] = ACTIONS(4094), + [anon_sym_alignas] = ACTIONS(4094), + [anon_sym__Alignas] = ACTIONS(4094), + [sym_primitive_type] = ACTIONS(4094), + [anon_sym_enum] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(4096), + [anon_sym_struct] = ACTIONS(4094), + [anon_sym_union] = ACTIONS(4094), + [anon_sym_QMARK] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4096), + [anon_sym_PLUS_PLUS] = ACTIONS(4096), + [anon_sym_DOT] = ACTIONS(4094), + [anon_sym_DASH_GT] = ACTIONS(4096), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4094), + [anon_sym___typeof] = ACTIONS(4094), + [anon_sym_typeof] = ACTIONS(4094), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4094), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4094), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4094), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4094), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4094), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4094), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4094), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4094), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4094), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4094), + [anon_sym_NS_AVAILABLE] = ACTIONS(4094), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4094), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4094), + [anon_sym_API_AVAILABLE] = ACTIONS(4094), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4094), + [anon_sym_API_DEPRECATED] = ACTIONS(4094), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4094), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4094), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4094), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4094), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4094), + [anon_sym___deprecated_msg] = ACTIONS(4094), + [anon_sym___deprecated_enum_msg] = ACTIONS(4094), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4094), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4094), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4094), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4094), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4094), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4094), + [anon_sym_BOOL] = ACTIONS(4094), + [anon_sym_IMP] = ACTIONS(4094), + [anon_sym_SEL] = ACTIONS(4094), + [anon_sym_Class] = ACTIONS(4094), + [anon_sym_id] = ACTIONS(4094), + }, + [1647] = { + [sym_identifier] = ACTIONS(4114), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4117), + [anon_sym_COMMA] = ACTIONS(4117), + [anon_sym_LPAREN2] = ACTIONS(4117), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4117), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4117), + [anon_sym_PIPE_PIPE] = ACTIONS(4117), + [anon_sym_AMP_AMP] = ACTIONS(4117), + [anon_sym_PIPE] = ACTIONS(4114), + [anon_sym_CARET] = ACTIONS(4117), + [anon_sym_AMP] = ACTIONS(4114), + [anon_sym_EQ_EQ] = ACTIONS(4117), + [anon_sym_BANG_EQ] = ACTIONS(4117), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_GT_EQ] = ACTIONS(4117), + [anon_sym_LT_EQ] = ACTIONS(4117), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_LT_LT] = ACTIONS(4117), + [anon_sym_GT_GT] = ACTIONS(4117), + [anon_sym_SEMI] = ACTIONS(4117), + [anon_sym___extension__] = ACTIONS(4114), + [anon_sym_extern] = ACTIONS(4114), + [anon_sym___attribute__] = ACTIONS(4114), + [anon_sym___attribute] = ACTIONS(4114), + [anon_sym_noreturn] = ACTIONS(4114), + [anon_sym_LBRACK] = ACTIONS(4117), + [anon_sym___declspec] = ACTIONS(4114), + [anon_sym_LBRACE] = ACTIONS(4117), + [anon_sym_signed] = ACTIONS(4114), + [anon_sym_unsigned] = ACTIONS(4114), + [anon_sym_long] = ACTIONS(4114), + [anon_sym_short] = ACTIONS(4114), + [anon_sym_static] = ACTIONS(4114), + [anon_sym_ATautoreleasepool] = ACTIONS(4117), + [anon_sym_auto] = ACTIONS(4114), + [anon_sym_register] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym___inline] = ACTIONS(4114), + [anon_sym___inline__] = ACTIONS(4114), + [anon_sym___forceinline] = ACTIONS(4114), + [anon_sym_thread_local] = ACTIONS(4114), + [anon_sym___thread] = ACTIONS(4114), + [anon_sym_CG_EXTERN] = ACTIONS(4114), + [anon_sym_CG_INLINE] = ACTIONS(4114), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4114), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4114), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4114), + [anon_sym_IBOutlet] = ACTIONS(4114), + [anon_sym_IBInspectable] = ACTIONS(4114), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4114), + [anon_sym_NS_INLINE] = ACTIONS(4114), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4114), + [anon_sym_OBJC_EXPORT] = ACTIONS(4114), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4114), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4114), + [anon_sym_const] = ACTIONS(4114), + [anon_sym_constexpr] = ACTIONS(4114), + [anon_sym_volatile] = ACTIONS(4114), + [anon_sym_restrict] = ACTIONS(4114), + [anon_sym___restrict__] = ACTIONS(4114), + [anon_sym__Atomic] = ACTIONS(4114), + [anon_sym__Noreturn] = ACTIONS(4114), + [anon_sym__Nonnull] = ACTIONS(4114), + [anon_sym_nullable] = ACTIONS(4114), + [anon_sym__Complex] = ACTIONS(4114), + [anon_sym__Nullable] = ACTIONS(4114), + [anon_sym__Nullable_result] = ACTIONS(4114), + [anon_sym__Null_unspecified] = ACTIONS(4114), + [anon_sym___autoreleasing] = ACTIONS(4114), + [anon_sym___block] = ACTIONS(4114), + [anon_sym___bridge] = ACTIONS(4114), + [anon_sym___bridge_retained] = ACTIONS(4114), + [anon_sym___bridge_transfer] = ACTIONS(4114), + [anon_sym___complex] = ACTIONS(4114), + [anon_sym___const] = ACTIONS(4114), + [anon_sym___imag] = ACTIONS(4114), + [anon_sym___kindof] = ACTIONS(4114), + [anon_sym___nonnull] = ACTIONS(4114), + [anon_sym___nullable] = ACTIONS(4114), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4114), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4114), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4114), + [anon_sym___real] = ACTIONS(4114), + [anon_sym___strong] = ACTIONS(4114), + [anon_sym___unsafe_unretained] = ACTIONS(4114), + [anon_sym___unused] = ACTIONS(4114), + [anon_sym___weak] = ACTIONS(4114), + [anon_sym_alignas] = ACTIONS(4114), + [anon_sym__Alignas] = ACTIONS(4114), + [sym_primitive_type] = ACTIONS(4114), + [anon_sym_enum] = ACTIONS(4114), + [anon_sym_struct] = ACTIONS(4114), + [anon_sym_union] = ACTIONS(4114), + [anon_sym_QMARK] = ACTIONS(4117), + [anon_sym_DASH_DASH] = ACTIONS(4117), + [anon_sym_PLUS_PLUS] = ACTIONS(4117), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_DASH_GT] = ACTIONS(4117), + [anon_sym_AT] = ACTIONS(4114), + [anon_sym_DQUOTE] = ACTIONS(4117), + [anon_sym_L_DQUOTE] = ACTIONS(4117), + [anon_sym_u_DQUOTE] = ACTIONS(4117), + [anon_sym_U_DQUOTE] = ACTIONS(4117), + [anon_sym_u8_DQUOTE] = ACTIONS(4117), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4114), + [anon_sym___typeof] = ACTIONS(4114), + [anon_sym_typeof] = ACTIONS(4114), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4114), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4114), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4114), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4114), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4114), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4114), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4114), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4114), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4114), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4114), + [anon_sym_NS_AVAILABLE] = ACTIONS(4114), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4114), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4114), + [anon_sym_API_AVAILABLE] = ACTIONS(4114), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4114), + [anon_sym_API_DEPRECATED] = ACTIONS(4114), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4114), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4114), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4114), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4114), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4114), + [anon_sym___deprecated_msg] = ACTIONS(4114), + [anon_sym___deprecated_enum_msg] = ACTIONS(4114), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4114), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4114), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4114), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4114), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4114), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4114), + [anon_sym_BOOL] = ACTIONS(4114), + [anon_sym_IMP] = ACTIONS(4114), + [anon_sym_SEL] = ACTIONS(4114), + [anon_sym_Class] = ACTIONS(4114), + [anon_sym_id] = ACTIONS(4114), + }, + [1648] = { + [sym_identifier] = ACTIONS(4226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4228), + [anon_sym_COMMA] = ACTIONS(4228), + [anon_sym_RPAREN] = ACTIONS(4228), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4228), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4228), + [anon_sym_LPAREN2] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE] = ACTIONS(4226), + [anon_sym_CARET] = ACTIONS(4228), + [anon_sym_AMP] = ACTIONS(4226), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_LT_LT] = ACTIONS(4228), + [anon_sym_GT_GT] = ACTIONS(4228), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym___extension__] = ACTIONS(4226), + [anon_sym_extern] = ACTIONS(4226), + [anon_sym___attribute__] = ACTIONS(4226), + [anon_sym___attribute] = ACTIONS(4226), + [anon_sym_noreturn] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_RBRACK] = ACTIONS(4228), + [anon_sym___declspec] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(4228), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_signed] = ACTIONS(4226), + [anon_sym_unsigned] = ACTIONS(4226), + [anon_sym_long] = ACTIONS(4226), + [anon_sym_short] = ACTIONS(4226), + [anon_sym_static] = ACTIONS(4226), + [anon_sym_ATautoreleasepool] = ACTIONS(4228), + [anon_sym_auto] = ACTIONS(4226), + [anon_sym_register] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym___inline] = ACTIONS(4226), + [anon_sym___inline__] = ACTIONS(4226), + [anon_sym___forceinline] = ACTIONS(4226), + [anon_sym_thread_local] = ACTIONS(4226), + [anon_sym___thread] = ACTIONS(4226), + [anon_sym_CG_EXTERN] = ACTIONS(4226), + [anon_sym_CG_INLINE] = ACTIONS(4226), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4226), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4226), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4226), + [anon_sym_IBOutlet] = ACTIONS(4226), + [anon_sym_IBInspectable] = ACTIONS(4226), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4226), + [anon_sym_NS_INLINE] = ACTIONS(4226), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4226), + [anon_sym_OBJC_EXPORT] = ACTIONS(4226), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4226), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4226), + [anon_sym_const] = ACTIONS(4226), + [anon_sym_constexpr] = ACTIONS(4226), + [anon_sym_volatile] = ACTIONS(4226), + [anon_sym_restrict] = ACTIONS(4226), + [anon_sym___restrict__] = ACTIONS(4226), + [anon_sym__Atomic] = ACTIONS(4226), + [anon_sym__Noreturn] = ACTIONS(4226), + [anon_sym__Nonnull] = ACTIONS(4226), + [anon_sym_nullable] = ACTIONS(4226), + [anon_sym__Complex] = ACTIONS(4226), + [anon_sym__Nullable] = ACTIONS(4226), + [anon_sym__Nullable_result] = ACTIONS(4226), + [anon_sym__Null_unspecified] = ACTIONS(4226), + [anon_sym___autoreleasing] = ACTIONS(4226), + [anon_sym___block] = ACTIONS(4226), + [anon_sym___bridge] = ACTIONS(4226), + [anon_sym___bridge_retained] = ACTIONS(4226), + [anon_sym___bridge_transfer] = ACTIONS(4226), + [anon_sym___complex] = ACTIONS(4226), + [anon_sym___const] = ACTIONS(4226), + [anon_sym___imag] = ACTIONS(4226), + [anon_sym___kindof] = ACTIONS(4226), + [anon_sym___nonnull] = ACTIONS(4226), + [anon_sym___nullable] = ACTIONS(4226), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4226), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4226), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4226), + [anon_sym___real] = ACTIONS(4226), + [anon_sym___strong] = ACTIONS(4226), + [anon_sym___unsafe_unretained] = ACTIONS(4226), + [anon_sym___unused] = ACTIONS(4226), + [anon_sym___weak] = ACTIONS(4226), + [anon_sym_alignas] = ACTIONS(4226), + [anon_sym__Alignas] = ACTIONS(4226), + [sym_primitive_type] = ACTIONS(4226), + [anon_sym_enum] = ACTIONS(4226), + [anon_sym_COLON] = ACTIONS(4228), + [anon_sym_struct] = ACTIONS(4226), + [anon_sym_union] = ACTIONS(4226), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_DASH_GT] = ACTIONS(4228), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4226), + [anon_sym___typeof] = ACTIONS(4226), + [anon_sym_typeof] = ACTIONS(4226), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4226), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4226), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4226), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4226), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4226), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4226), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4226), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4226), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4226), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4226), + [anon_sym_NS_AVAILABLE] = ACTIONS(4226), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4226), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4226), + [anon_sym_API_AVAILABLE] = ACTIONS(4226), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4226), + [anon_sym_API_DEPRECATED] = ACTIONS(4226), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4226), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4226), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4226), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4226), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4226), + [anon_sym___deprecated_msg] = ACTIONS(4226), + [anon_sym___deprecated_enum_msg] = ACTIONS(4226), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4226), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4226), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4226), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4226), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4226), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4226), + [anon_sym_BOOL] = ACTIONS(4226), + [anon_sym_IMP] = ACTIONS(4226), + [anon_sym_SEL] = ACTIONS(4226), + [anon_sym_Class] = ACTIONS(4226), + [anon_sym_id] = ACTIONS(4226), + }, + [1649] = { + [sym_identifier] = ACTIONS(4090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4092), + [anon_sym_COMMA] = ACTIONS(4092), + [anon_sym_LPAREN2] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4090), + [anon_sym_PLUS] = ACTIONS(4090), + [anon_sym_STAR] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4090), + [anon_sym_PERCENT] = ACTIONS(4092), + [anon_sym_PIPE_PIPE] = ACTIONS(4092), + [anon_sym_AMP_AMP] = ACTIONS(4092), + [anon_sym_PIPE] = ACTIONS(4090), + [anon_sym_CARET] = ACTIONS(4092), + [anon_sym_AMP] = ACTIONS(4090), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4090), + [anon_sym_GT_EQ] = ACTIONS(4092), + [anon_sym_LT_EQ] = ACTIONS(4092), + [anon_sym_LT] = ACTIONS(4090), + [anon_sym_LT_LT] = ACTIONS(4092), + [anon_sym_GT_GT] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4092), + [anon_sym___extension__] = ACTIONS(4090), + [anon_sym_extern] = ACTIONS(4090), + [anon_sym___attribute__] = ACTIONS(4090), + [anon_sym___attribute] = ACTIONS(4090), + [anon_sym_noreturn] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(4092), + [anon_sym___declspec] = ACTIONS(4090), + [anon_sym_LBRACE] = ACTIONS(4092), + [anon_sym_signed] = ACTIONS(4090), + [anon_sym_unsigned] = ACTIONS(4090), + [anon_sym_long] = ACTIONS(4090), + [anon_sym_short] = ACTIONS(4090), + [anon_sym_static] = ACTIONS(4090), + [anon_sym_ATautoreleasepool] = ACTIONS(4092), + [anon_sym_auto] = ACTIONS(4090), + [anon_sym_register] = ACTIONS(4090), + [anon_sym_inline] = ACTIONS(4090), + [anon_sym___inline] = ACTIONS(4090), + [anon_sym___inline__] = ACTIONS(4090), + [anon_sym___forceinline] = ACTIONS(4090), + [anon_sym_thread_local] = ACTIONS(4090), + [anon_sym___thread] = ACTIONS(4090), + [anon_sym_CG_EXTERN] = ACTIONS(4090), + [anon_sym_CG_INLINE] = ACTIONS(4090), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4090), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4090), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4090), + [anon_sym_IBOutlet] = ACTIONS(4090), + [anon_sym_IBInspectable] = ACTIONS(4090), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4090), + [anon_sym_NS_INLINE] = ACTIONS(4090), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4090), + [anon_sym_OBJC_EXPORT] = ACTIONS(4090), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4090), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4090), + [anon_sym_const] = ACTIONS(4090), + [anon_sym_constexpr] = ACTIONS(4090), + [anon_sym_volatile] = ACTIONS(4090), + [anon_sym_restrict] = ACTIONS(4090), + [anon_sym___restrict__] = ACTIONS(4090), + [anon_sym__Atomic] = ACTIONS(4090), + [anon_sym__Noreturn] = ACTIONS(4090), + [anon_sym__Nonnull] = ACTIONS(4090), + [anon_sym_nullable] = ACTIONS(4090), + [anon_sym__Complex] = ACTIONS(4090), + [anon_sym__Nullable] = ACTIONS(4090), + [anon_sym__Nullable_result] = ACTIONS(4090), + [anon_sym__Null_unspecified] = ACTIONS(4090), + [anon_sym___autoreleasing] = ACTIONS(4090), + [anon_sym___block] = ACTIONS(4090), + [anon_sym___bridge] = ACTIONS(4090), + [anon_sym___bridge_retained] = ACTIONS(4090), + [anon_sym___bridge_transfer] = ACTIONS(4090), + [anon_sym___complex] = ACTIONS(4090), + [anon_sym___const] = ACTIONS(4090), + [anon_sym___imag] = ACTIONS(4090), + [anon_sym___kindof] = ACTIONS(4090), + [anon_sym___nonnull] = ACTIONS(4090), + [anon_sym___nullable] = ACTIONS(4090), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4090), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4090), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4090), + [anon_sym___real] = ACTIONS(4090), + [anon_sym___strong] = ACTIONS(4090), + [anon_sym___unsafe_unretained] = ACTIONS(4090), + [anon_sym___unused] = ACTIONS(4090), + [anon_sym___weak] = ACTIONS(4090), + [anon_sym_alignas] = ACTIONS(4090), + [anon_sym__Alignas] = ACTIONS(4090), + [sym_primitive_type] = ACTIONS(4090), + [anon_sym_enum] = ACTIONS(4090), + [anon_sym_struct] = ACTIONS(4090), + [anon_sym_union] = ACTIONS(4090), + [anon_sym_QMARK] = ACTIONS(4092), + [anon_sym_DASH_DASH] = ACTIONS(4092), + [anon_sym_PLUS_PLUS] = ACTIONS(4092), + [anon_sym_DOT] = ACTIONS(4090), + [anon_sym_DASH_GT] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4090), + [anon_sym_DQUOTE] = ACTIONS(4092), + [anon_sym_L_DQUOTE] = ACTIONS(4092), + [anon_sym_u_DQUOTE] = ACTIONS(4092), + [anon_sym_U_DQUOTE] = ACTIONS(4092), + [anon_sym_u8_DQUOTE] = ACTIONS(4092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4090), + [anon_sym___typeof] = ACTIONS(4090), + [anon_sym_typeof] = ACTIONS(4090), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4090), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4090), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4090), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4090), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4090), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4090), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4090), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4090), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4090), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4090), + [anon_sym_NS_AVAILABLE] = ACTIONS(4090), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4090), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4090), + [anon_sym_API_AVAILABLE] = ACTIONS(4090), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4090), + [anon_sym_API_DEPRECATED] = ACTIONS(4090), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4090), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4090), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4090), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4090), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4090), + [anon_sym___deprecated_msg] = ACTIONS(4090), + [anon_sym___deprecated_enum_msg] = ACTIONS(4090), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4090), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4090), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4090), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4090), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4090), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4090), + [anon_sym_BOOL] = ACTIONS(4090), + [anon_sym_IMP] = ACTIONS(4090), + [anon_sym_SEL] = ACTIONS(4090), + [anon_sym_Class] = ACTIONS(4090), + [anon_sym_id] = ACTIONS(4090), + }, + [1650] = { + [sym_identifier] = ACTIONS(4230), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_RPAREN] = ACTIONS(4232), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4232), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4232), + [anon_sym_LPAREN2] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE] = ACTIONS(4230), + [anon_sym_CARET] = ACTIONS(4232), + [anon_sym_AMP] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_LT_LT] = ACTIONS(4232), + [anon_sym_GT_GT] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym___extension__] = ACTIONS(4230), + [anon_sym_extern] = ACTIONS(4230), + [anon_sym___attribute__] = ACTIONS(4230), + [anon_sym___attribute] = ACTIONS(4230), + [anon_sym_noreturn] = ACTIONS(4230), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_RBRACK] = ACTIONS(4232), + [anon_sym___declspec] = ACTIONS(4230), + [anon_sym_LBRACE] = ACTIONS(4232), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_signed] = ACTIONS(4230), + [anon_sym_unsigned] = ACTIONS(4230), + [anon_sym_long] = ACTIONS(4230), + [anon_sym_short] = ACTIONS(4230), + [anon_sym_static] = ACTIONS(4230), + [anon_sym_ATautoreleasepool] = ACTIONS(4232), + [anon_sym_auto] = ACTIONS(4230), + [anon_sym_register] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym___inline] = ACTIONS(4230), + [anon_sym___inline__] = ACTIONS(4230), + [anon_sym___forceinline] = ACTIONS(4230), + [anon_sym_thread_local] = ACTIONS(4230), + [anon_sym___thread] = ACTIONS(4230), + [anon_sym_CG_EXTERN] = ACTIONS(4230), + [anon_sym_CG_INLINE] = ACTIONS(4230), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4230), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4230), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4230), + [anon_sym_IBOutlet] = ACTIONS(4230), + [anon_sym_IBInspectable] = ACTIONS(4230), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4230), + [anon_sym_NS_INLINE] = ACTIONS(4230), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4230), + [anon_sym_OBJC_EXPORT] = ACTIONS(4230), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4230), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4230), + [anon_sym_const] = ACTIONS(4230), + [anon_sym_constexpr] = ACTIONS(4230), + [anon_sym_volatile] = ACTIONS(4230), + [anon_sym_restrict] = ACTIONS(4230), + [anon_sym___restrict__] = ACTIONS(4230), + [anon_sym__Atomic] = ACTIONS(4230), + [anon_sym__Noreturn] = ACTIONS(4230), + [anon_sym__Nonnull] = ACTIONS(4230), + [anon_sym_nullable] = ACTIONS(4230), + [anon_sym__Complex] = ACTIONS(4230), + [anon_sym__Nullable] = ACTIONS(4230), + [anon_sym__Nullable_result] = ACTIONS(4230), + [anon_sym__Null_unspecified] = ACTIONS(4230), + [anon_sym___autoreleasing] = ACTIONS(4230), + [anon_sym___block] = ACTIONS(4230), + [anon_sym___bridge] = ACTIONS(4230), + [anon_sym___bridge_retained] = ACTIONS(4230), + [anon_sym___bridge_transfer] = ACTIONS(4230), + [anon_sym___complex] = ACTIONS(4230), + [anon_sym___const] = ACTIONS(4230), + [anon_sym___imag] = ACTIONS(4230), + [anon_sym___kindof] = ACTIONS(4230), + [anon_sym___nonnull] = ACTIONS(4230), + [anon_sym___nullable] = ACTIONS(4230), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4230), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4230), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4230), + [anon_sym___real] = ACTIONS(4230), + [anon_sym___strong] = ACTIONS(4230), + [anon_sym___unsafe_unretained] = ACTIONS(4230), + [anon_sym___unused] = ACTIONS(4230), + [anon_sym___weak] = ACTIONS(4230), + [anon_sym_alignas] = ACTIONS(4230), + [anon_sym__Alignas] = ACTIONS(4230), + [sym_primitive_type] = ACTIONS(4230), + [anon_sym_enum] = ACTIONS(4230), + [anon_sym_COLON] = ACTIONS(4232), + [anon_sym_struct] = ACTIONS(4230), + [anon_sym_union] = ACTIONS(4230), + [anon_sym_QMARK] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_DASH_GT] = ACTIONS(4232), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4230), + [anon_sym___typeof] = ACTIONS(4230), + [anon_sym_typeof] = ACTIONS(4230), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4230), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4230), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4230), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4230), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4230), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4230), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4230), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4230), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4230), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4230), + [anon_sym_NS_AVAILABLE] = ACTIONS(4230), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4230), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4230), + [anon_sym_API_AVAILABLE] = ACTIONS(4230), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4230), + [anon_sym_API_DEPRECATED] = ACTIONS(4230), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4230), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4230), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4230), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4230), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4230), + [anon_sym___deprecated_msg] = ACTIONS(4230), + [anon_sym___deprecated_enum_msg] = ACTIONS(4230), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4230), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4230), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4230), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4230), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4230), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4230), + [anon_sym_BOOL] = ACTIONS(4230), + [anon_sym_IMP] = ACTIONS(4230), + [anon_sym_SEL] = ACTIONS(4230), + [anon_sym_Class] = ACTIONS(4230), + [anon_sym_id] = ACTIONS(4230), + }, + [1651] = { + [sym_identifier] = ACTIONS(4254), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4256), + [anon_sym_COMMA] = ACTIONS(4256), + [anon_sym_RPAREN] = ACTIONS(4256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4256), + [anon_sym_LPAREN2] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4254), + [anon_sym_STAR] = ACTIONS(4256), + [anon_sym_SLASH] = ACTIONS(4254), + [anon_sym_PERCENT] = ACTIONS(4256), + [anon_sym_PIPE_PIPE] = ACTIONS(4256), + [anon_sym_AMP_AMP] = ACTIONS(4256), + [anon_sym_PIPE] = ACTIONS(4254), + [anon_sym_CARET] = ACTIONS(4256), + [anon_sym_AMP] = ACTIONS(4254), + [anon_sym_EQ_EQ] = ACTIONS(4256), + [anon_sym_BANG_EQ] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4256), + [anon_sym_LT_EQ] = ACTIONS(4256), + [anon_sym_LT] = ACTIONS(4254), + [anon_sym_LT_LT] = ACTIONS(4256), + [anon_sym_GT_GT] = ACTIONS(4256), + [anon_sym_SEMI] = ACTIONS(4256), + [anon_sym___extension__] = ACTIONS(4254), + [anon_sym_extern] = ACTIONS(4254), + [anon_sym___attribute__] = ACTIONS(4254), + [anon_sym___attribute] = ACTIONS(4254), + [anon_sym_noreturn] = ACTIONS(4254), + [anon_sym_LBRACK] = ACTIONS(4256), + [anon_sym_RBRACK] = ACTIONS(4256), + [anon_sym___declspec] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_RBRACE] = ACTIONS(4256), + [anon_sym_signed] = ACTIONS(4254), + [anon_sym_unsigned] = ACTIONS(4254), + [anon_sym_long] = ACTIONS(4254), + [anon_sym_short] = ACTIONS(4254), + [anon_sym_static] = ACTIONS(4254), + [anon_sym_ATautoreleasepool] = ACTIONS(4256), + [anon_sym_auto] = ACTIONS(4254), + [anon_sym_register] = ACTIONS(4254), + [anon_sym_inline] = ACTIONS(4254), + [anon_sym___inline] = ACTIONS(4254), + [anon_sym___inline__] = ACTIONS(4254), + [anon_sym___forceinline] = ACTIONS(4254), + [anon_sym_thread_local] = ACTIONS(4254), + [anon_sym___thread] = ACTIONS(4254), + [anon_sym_CG_EXTERN] = ACTIONS(4254), + [anon_sym_CG_INLINE] = ACTIONS(4254), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4254), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4254), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4254), + [anon_sym_IBOutlet] = ACTIONS(4254), + [anon_sym_IBInspectable] = ACTIONS(4254), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4254), + [anon_sym_NS_INLINE] = ACTIONS(4254), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4254), + [anon_sym_OBJC_EXPORT] = ACTIONS(4254), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4254), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4254), + [anon_sym_const] = ACTIONS(4254), + [anon_sym_constexpr] = ACTIONS(4254), + [anon_sym_volatile] = ACTIONS(4254), + [anon_sym_restrict] = ACTIONS(4254), + [anon_sym___restrict__] = ACTIONS(4254), + [anon_sym__Atomic] = ACTIONS(4254), + [anon_sym__Noreturn] = ACTIONS(4254), + [anon_sym__Nonnull] = ACTIONS(4254), + [anon_sym_nullable] = ACTIONS(4254), + [anon_sym__Complex] = ACTIONS(4254), + [anon_sym__Nullable] = ACTIONS(4254), + [anon_sym__Nullable_result] = ACTIONS(4254), + [anon_sym__Null_unspecified] = ACTIONS(4254), + [anon_sym___autoreleasing] = ACTIONS(4254), + [anon_sym___block] = ACTIONS(4254), + [anon_sym___bridge] = ACTIONS(4254), + [anon_sym___bridge_retained] = ACTIONS(4254), + [anon_sym___bridge_transfer] = ACTIONS(4254), + [anon_sym___complex] = ACTIONS(4254), + [anon_sym___const] = ACTIONS(4254), + [anon_sym___imag] = ACTIONS(4254), + [anon_sym___kindof] = ACTIONS(4254), + [anon_sym___nonnull] = ACTIONS(4254), + [anon_sym___nullable] = ACTIONS(4254), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4254), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4254), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4254), + [anon_sym___real] = ACTIONS(4254), + [anon_sym___strong] = ACTIONS(4254), + [anon_sym___unsafe_unretained] = ACTIONS(4254), + [anon_sym___unused] = ACTIONS(4254), + [anon_sym___weak] = ACTIONS(4254), + [anon_sym_alignas] = ACTIONS(4254), + [anon_sym__Alignas] = ACTIONS(4254), + [sym_primitive_type] = ACTIONS(4254), + [anon_sym_enum] = ACTIONS(4254), + [anon_sym_COLON] = ACTIONS(4256), + [anon_sym_struct] = ACTIONS(4254), + [anon_sym_union] = ACTIONS(4254), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_DOT] = ACTIONS(4254), + [anon_sym_DASH_GT] = ACTIONS(4256), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4254), + [anon_sym___typeof] = ACTIONS(4254), + [anon_sym_typeof] = ACTIONS(4254), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4254), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4254), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4254), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4254), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4254), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4254), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4254), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4254), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4254), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4254), + [anon_sym_NS_AVAILABLE] = ACTIONS(4254), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4254), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4254), + [anon_sym_API_AVAILABLE] = ACTIONS(4254), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4254), + [anon_sym_API_DEPRECATED] = ACTIONS(4254), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4254), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4254), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4254), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4254), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4254), + [anon_sym___deprecated_msg] = ACTIONS(4254), + [anon_sym___deprecated_enum_msg] = ACTIONS(4254), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4254), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4254), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4254), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4254), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4254), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4254), + [anon_sym_BOOL] = ACTIONS(4254), + [anon_sym_IMP] = ACTIONS(4254), + [anon_sym_SEL] = ACTIONS(4254), + [anon_sym_Class] = ACTIONS(4254), + [anon_sym_id] = ACTIONS(4254), + }, + [1652] = { + [sym_identifier] = ACTIONS(4270), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4272), + [anon_sym_COMMA] = ACTIONS(4272), + [anon_sym_RPAREN] = ACTIONS(4272), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4272), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4272), + [anon_sym_LPAREN2] = ACTIONS(4272), + [anon_sym_DASH] = ACTIONS(4270), + [anon_sym_PLUS] = ACTIONS(4270), + [anon_sym_STAR] = ACTIONS(4272), + [anon_sym_SLASH] = ACTIONS(4270), + [anon_sym_PERCENT] = ACTIONS(4272), + [anon_sym_PIPE_PIPE] = ACTIONS(4272), + [anon_sym_AMP_AMP] = ACTIONS(4272), + [anon_sym_PIPE] = ACTIONS(4270), + [anon_sym_CARET] = ACTIONS(4272), + [anon_sym_AMP] = ACTIONS(4270), + [anon_sym_EQ_EQ] = ACTIONS(4272), + [anon_sym_BANG_EQ] = ACTIONS(4272), + [anon_sym_GT] = ACTIONS(4270), + [anon_sym_GT_EQ] = ACTIONS(4272), + [anon_sym_LT_EQ] = ACTIONS(4272), + [anon_sym_LT] = ACTIONS(4270), + [anon_sym_LT_LT] = ACTIONS(4272), + [anon_sym_GT_GT] = ACTIONS(4272), + [anon_sym_SEMI] = ACTIONS(4272), + [anon_sym___extension__] = ACTIONS(4270), + [anon_sym_extern] = ACTIONS(4270), + [anon_sym___attribute__] = ACTIONS(4270), + [anon_sym___attribute] = ACTIONS(4270), + [anon_sym_noreturn] = ACTIONS(4270), + [anon_sym_LBRACK] = ACTIONS(4272), + [anon_sym_RBRACK] = ACTIONS(4272), + [anon_sym___declspec] = ACTIONS(4270), + [anon_sym_LBRACE] = ACTIONS(4272), + [anon_sym_RBRACE] = ACTIONS(4272), + [anon_sym_signed] = ACTIONS(4270), + [anon_sym_unsigned] = ACTIONS(4270), + [anon_sym_long] = ACTIONS(4270), + [anon_sym_short] = ACTIONS(4270), + [anon_sym_static] = ACTIONS(4270), + [anon_sym_ATautoreleasepool] = ACTIONS(4272), + [anon_sym_auto] = ACTIONS(4270), + [anon_sym_register] = ACTIONS(4270), + [anon_sym_inline] = ACTIONS(4270), + [anon_sym___inline] = ACTIONS(4270), + [anon_sym___inline__] = ACTIONS(4270), + [anon_sym___forceinline] = ACTIONS(4270), + [anon_sym_thread_local] = ACTIONS(4270), + [anon_sym___thread] = ACTIONS(4270), + [anon_sym_CG_EXTERN] = ACTIONS(4270), + [anon_sym_CG_INLINE] = ACTIONS(4270), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4270), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4270), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4270), + [anon_sym_IBOutlet] = ACTIONS(4270), + [anon_sym_IBInspectable] = ACTIONS(4270), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4270), + [anon_sym_NS_INLINE] = ACTIONS(4270), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4270), + [anon_sym_OBJC_EXPORT] = ACTIONS(4270), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4270), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4270), + [anon_sym_const] = ACTIONS(4270), + [anon_sym_constexpr] = ACTIONS(4270), + [anon_sym_volatile] = ACTIONS(4270), + [anon_sym_restrict] = ACTIONS(4270), + [anon_sym___restrict__] = ACTIONS(4270), + [anon_sym__Atomic] = ACTIONS(4270), + [anon_sym__Noreturn] = ACTIONS(4270), + [anon_sym__Nonnull] = ACTIONS(4270), + [anon_sym_nullable] = ACTIONS(4270), + [anon_sym__Complex] = ACTIONS(4270), + [anon_sym__Nullable] = ACTIONS(4270), + [anon_sym__Nullable_result] = ACTIONS(4270), + [anon_sym__Null_unspecified] = ACTIONS(4270), + [anon_sym___autoreleasing] = ACTIONS(4270), + [anon_sym___block] = ACTIONS(4270), + [anon_sym___bridge] = ACTIONS(4270), + [anon_sym___bridge_retained] = ACTIONS(4270), + [anon_sym___bridge_transfer] = ACTIONS(4270), + [anon_sym___complex] = ACTIONS(4270), + [anon_sym___const] = ACTIONS(4270), + [anon_sym___imag] = ACTIONS(4270), + [anon_sym___kindof] = ACTIONS(4270), + [anon_sym___nonnull] = ACTIONS(4270), + [anon_sym___nullable] = ACTIONS(4270), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4270), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4270), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4270), + [anon_sym___real] = ACTIONS(4270), + [anon_sym___strong] = ACTIONS(4270), + [anon_sym___unsafe_unretained] = ACTIONS(4270), + [anon_sym___unused] = ACTIONS(4270), + [anon_sym___weak] = ACTIONS(4270), + [anon_sym_alignas] = ACTIONS(4270), + [anon_sym__Alignas] = ACTIONS(4270), + [sym_primitive_type] = ACTIONS(4270), + [anon_sym_enum] = ACTIONS(4270), + [anon_sym_COLON] = ACTIONS(4272), + [anon_sym_struct] = ACTIONS(4270), + [anon_sym_union] = ACTIONS(4270), + [anon_sym_QMARK] = ACTIONS(4272), + [anon_sym_DASH_DASH] = ACTIONS(4272), + [anon_sym_PLUS_PLUS] = ACTIONS(4272), + [anon_sym_DOT] = ACTIONS(4270), + [anon_sym_DASH_GT] = ACTIONS(4272), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4270), + [anon_sym___typeof] = ACTIONS(4270), + [anon_sym_typeof] = ACTIONS(4270), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4270), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4270), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4270), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4270), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4270), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4270), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4270), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4270), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4270), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4270), + [anon_sym_NS_AVAILABLE] = ACTIONS(4270), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4270), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4270), + [anon_sym_API_AVAILABLE] = ACTIONS(4270), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4270), + [anon_sym_API_DEPRECATED] = ACTIONS(4270), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4270), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4270), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4270), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4270), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4270), + [anon_sym___deprecated_msg] = ACTIONS(4270), + [anon_sym___deprecated_enum_msg] = ACTIONS(4270), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4270), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4270), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4270), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4270), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4270), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4270), + [anon_sym_BOOL] = ACTIONS(4270), + [anon_sym_IMP] = ACTIONS(4270), + [anon_sym_SEL] = ACTIONS(4270), + [anon_sym_Class] = ACTIONS(4270), + [anon_sym_id] = ACTIONS(4270), + }, + [1653] = { + [sym_identifier] = ACTIONS(4278), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4280), + [anon_sym_COMMA] = ACTIONS(4280), + [anon_sym_RPAREN] = ACTIONS(4280), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4280), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4280), + [anon_sym_LPAREN2] = ACTIONS(4280), + [anon_sym_DASH] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_STAR] = ACTIONS(4280), + [anon_sym_SLASH] = ACTIONS(4278), + [anon_sym_PERCENT] = ACTIONS(4280), + [anon_sym_PIPE_PIPE] = ACTIONS(4280), + [anon_sym_AMP_AMP] = ACTIONS(4280), + [anon_sym_PIPE] = ACTIONS(4278), + [anon_sym_CARET] = ACTIONS(4280), + [anon_sym_AMP] = ACTIONS(4278), + [anon_sym_EQ_EQ] = ACTIONS(4280), + [anon_sym_BANG_EQ] = ACTIONS(4280), + [anon_sym_GT] = ACTIONS(4278), + [anon_sym_GT_EQ] = ACTIONS(4280), + [anon_sym_LT_EQ] = ACTIONS(4280), + [anon_sym_LT] = ACTIONS(4278), + [anon_sym_LT_LT] = ACTIONS(4280), + [anon_sym_GT_GT] = ACTIONS(4280), + [anon_sym_SEMI] = ACTIONS(4280), + [anon_sym___extension__] = ACTIONS(4278), + [anon_sym_extern] = ACTIONS(4278), + [anon_sym___attribute__] = ACTIONS(4278), + [anon_sym___attribute] = ACTIONS(4278), + [anon_sym_noreturn] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_RBRACK] = ACTIONS(4280), + [anon_sym___declspec] = ACTIONS(4278), + [anon_sym_LBRACE] = ACTIONS(4280), + [anon_sym_RBRACE] = ACTIONS(4280), + [anon_sym_signed] = ACTIONS(4278), + [anon_sym_unsigned] = ACTIONS(4278), + [anon_sym_long] = ACTIONS(4278), + [anon_sym_short] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_ATautoreleasepool] = ACTIONS(4280), + [anon_sym_auto] = ACTIONS(4278), + [anon_sym_register] = ACTIONS(4278), + [anon_sym_inline] = ACTIONS(4278), + [anon_sym___inline] = ACTIONS(4278), + [anon_sym___inline__] = ACTIONS(4278), + [anon_sym___forceinline] = ACTIONS(4278), + [anon_sym_thread_local] = ACTIONS(4278), + [anon_sym___thread] = ACTIONS(4278), + [anon_sym_CG_EXTERN] = ACTIONS(4278), + [anon_sym_CG_INLINE] = ACTIONS(4278), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4278), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4278), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4278), + [anon_sym_IBOutlet] = ACTIONS(4278), + [anon_sym_IBInspectable] = ACTIONS(4278), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4278), + [anon_sym_NS_INLINE] = ACTIONS(4278), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4278), + [anon_sym_OBJC_EXPORT] = ACTIONS(4278), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4278), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4278), + [anon_sym_const] = ACTIONS(4278), + [anon_sym_constexpr] = ACTIONS(4278), + [anon_sym_volatile] = ACTIONS(4278), + [anon_sym_restrict] = ACTIONS(4278), + [anon_sym___restrict__] = ACTIONS(4278), + [anon_sym__Atomic] = ACTIONS(4278), + [anon_sym__Noreturn] = ACTIONS(4278), + [anon_sym__Nonnull] = ACTIONS(4278), + [anon_sym_nullable] = ACTIONS(4278), + [anon_sym__Complex] = ACTIONS(4278), + [anon_sym__Nullable] = ACTIONS(4278), + [anon_sym__Nullable_result] = ACTIONS(4278), + [anon_sym__Null_unspecified] = ACTIONS(4278), + [anon_sym___autoreleasing] = ACTIONS(4278), + [anon_sym___block] = ACTIONS(4278), + [anon_sym___bridge] = ACTIONS(4278), + [anon_sym___bridge_retained] = ACTIONS(4278), + [anon_sym___bridge_transfer] = ACTIONS(4278), + [anon_sym___complex] = ACTIONS(4278), + [anon_sym___const] = ACTIONS(4278), + [anon_sym___imag] = ACTIONS(4278), + [anon_sym___kindof] = ACTIONS(4278), + [anon_sym___nonnull] = ACTIONS(4278), + [anon_sym___nullable] = ACTIONS(4278), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4278), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4278), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4278), + [anon_sym___real] = ACTIONS(4278), + [anon_sym___strong] = ACTIONS(4278), + [anon_sym___unsafe_unretained] = ACTIONS(4278), + [anon_sym___unused] = ACTIONS(4278), + [anon_sym___weak] = ACTIONS(4278), + [anon_sym_alignas] = ACTIONS(4278), + [anon_sym__Alignas] = ACTIONS(4278), + [sym_primitive_type] = ACTIONS(4278), + [anon_sym_enum] = ACTIONS(4278), + [anon_sym_COLON] = ACTIONS(4280), + [anon_sym_struct] = ACTIONS(4278), + [anon_sym_union] = ACTIONS(4278), + [anon_sym_QMARK] = ACTIONS(4280), + [anon_sym_DASH_DASH] = ACTIONS(4280), + [anon_sym_PLUS_PLUS] = ACTIONS(4280), + [anon_sym_DOT] = ACTIONS(4278), + [anon_sym_DASH_GT] = ACTIONS(4280), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4278), + [anon_sym___typeof] = ACTIONS(4278), + [anon_sym_typeof] = ACTIONS(4278), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4278), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4278), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4278), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4278), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4278), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4278), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4278), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4278), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4278), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4278), + [anon_sym_NS_AVAILABLE] = ACTIONS(4278), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4278), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4278), + [anon_sym_API_AVAILABLE] = ACTIONS(4278), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4278), + [anon_sym_API_DEPRECATED] = ACTIONS(4278), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4278), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4278), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4278), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4278), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4278), + [anon_sym___deprecated_msg] = ACTIONS(4278), + [anon_sym___deprecated_enum_msg] = ACTIONS(4278), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4278), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4278), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4278), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4278), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4278), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4278), + [anon_sym_BOOL] = ACTIONS(4278), + [anon_sym_IMP] = ACTIONS(4278), + [anon_sym_SEL] = ACTIONS(4278), + [anon_sym_Class] = ACTIONS(4278), + [anon_sym_id] = ACTIONS(4278), + }, + [1654] = { + [sym_identifier] = ACTIONS(4282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4284), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_RPAREN] = ACTIONS(4284), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4284), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4284), + [anon_sym_LPAREN2] = ACTIONS(4284), + [anon_sym_DASH] = ACTIONS(4282), + [anon_sym_PLUS] = ACTIONS(4282), + [anon_sym_STAR] = ACTIONS(4284), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_PERCENT] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4282), + [anon_sym_CARET] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(4282), + [anon_sym_EQ_EQ] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4284), + [anon_sym_GT] = ACTIONS(4282), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_LT] = ACTIONS(4282), + [anon_sym_LT_LT] = ACTIONS(4284), + [anon_sym_GT_GT] = ACTIONS(4284), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym___extension__] = ACTIONS(4282), + [anon_sym_extern] = ACTIONS(4282), + [anon_sym___attribute__] = ACTIONS(4282), + [anon_sym___attribute] = ACTIONS(4282), + [anon_sym_noreturn] = ACTIONS(4282), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_RBRACK] = ACTIONS(4284), + [anon_sym___declspec] = ACTIONS(4282), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_signed] = ACTIONS(4282), + [anon_sym_unsigned] = ACTIONS(4282), + [anon_sym_long] = ACTIONS(4282), + [anon_sym_short] = ACTIONS(4282), + [anon_sym_static] = ACTIONS(4282), + [anon_sym_ATautoreleasepool] = ACTIONS(4284), + [anon_sym_auto] = ACTIONS(4282), + [anon_sym_register] = ACTIONS(4282), + [anon_sym_inline] = ACTIONS(4282), + [anon_sym___inline] = ACTIONS(4282), + [anon_sym___inline__] = ACTIONS(4282), + [anon_sym___forceinline] = ACTIONS(4282), + [anon_sym_thread_local] = ACTIONS(4282), + [anon_sym___thread] = ACTIONS(4282), + [anon_sym_CG_EXTERN] = ACTIONS(4282), + [anon_sym_CG_INLINE] = ACTIONS(4282), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4282), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4282), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4282), + [anon_sym_IBOutlet] = ACTIONS(4282), + [anon_sym_IBInspectable] = ACTIONS(4282), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4282), + [anon_sym_NS_INLINE] = ACTIONS(4282), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4282), + [anon_sym_OBJC_EXPORT] = ACTIONS(4282), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4282), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4282), + [anon_sym_const] = ACTIONS(4282), + [anon_sym_constexpr] = ACTIONS(4282), + [anon_sym_volatile] = ACTIONS(4282), + [anon_sym_restrict] = ACTIONS(4282), + [anon_sym___restrict__] = ACTIONS(4282), + [anon_sym__Atomic] = ACTIONS(4282), + [anon_sym__Noreturn] = ACTIONS(4282), + [anon_sym__Nonnull] = ACTIONS(4282), + [anon_sym_nullable] = ACTIONS(4282), + [anon_sym__Complex] = ACTIONS(4282), + [anon_sym__Nullable] = ACTIONS(4282), + [anon_sym__Nullable_result] = ACTIONS(4282), + [anon_sym__Null_unspecified] = ACTIONS(4282), + [anon_sym___autoreleasing] = ACTIONS(4282), + [anon_sym___block] = ACTIONS(4282), + [anon_sym___bridge] = ACTIONS(4282), + [anon_sym___bridge_retained] = ACTIONS(4282), + [anon_sym___bridge_transfer] = ACTIONS(4282), + [anon_sym___complex] = ACTIONS(4282), + [anon_sym___const] = ACTIONS(4282), + [anon_sym___imag] = ACTIONS(4282), + [anon_sym___kindof] = ACTIONS(4282), + [anon_sym___nonnull] = ACTIONS(4282), + [anon_sym___nullable] = ACTIONS(4282), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4282), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4282), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4282), + [anon_sym___real] = ACTIONS(4282), + [anon_sym___strong] = ACTIONS(4282), + [anon_sym___unsafe_unretained] = ACTIONS(4282), + [anon_sym___unused] = ACTIONS(4282), + [anon_sym___weak] = ACTIONS(4282), + [anon_sym_alignas] = ACTIONS(4282), + [anon_sym__Alignas] = ACTIONS(4282), + [sym_primitive_type] = ACTIONS(4282), + [anon_sym_enum] = ACTIONS(4282), + [anon_sym_COLON] = ACTIONS(4284), + [anon_sym_struct] = ACTIONS(4282), + [anon_sym_union] = ACTIONS(4282), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DOT] = ACTIONS(4282), + [anon_sym_DASH_GT] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4282), + [anon_sym___typeof] = ACTIONS(4282), + [anon_sym_typeof] = ACTIONS(4282), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4282), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4282), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4282), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4282), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4282), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4282), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4282), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4282), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4282), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4282), + [anon_sym_NS_AVAILABLE] = ACTIONS(4282), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4282), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4282), + [anon_sym_API_AVAILABLE] = ACTIONS(4282), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4282), + [anon_sym_API_DEPRECATED] = ACTIONS(4282), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4282), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4282), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4282), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4282), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4282), + [anon_sym___deprecated_msg] = ACTIONS(4282), + [anon_sym___deprecated_enum_msg] = ACTIONS(4282), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4282), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4282), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4282), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4282), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4282), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4282), + [anon_sym_BOOL] = ACTIONS(4282), + [anon_sym_IMP] = ACTIONS(4282), + [anon_sym_SEL] = ACTIONS(4282), + [anon_sym_Class] = ACTIONS(4282), + [anon_sym_id] = ACTIONS(4282), + }, + [1655] = { + [sym_identifier] = ACTIONS(4078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4080), + [anon_sym_COMMA] = ACTIONS(4080), + [anon_sym_RPAREN] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), + [anon_sym_LPAREN2] = ACTIONS(4080), + [anon_sym_DASH] = ACTIONS(4078), + [anon_sym_PLUS] = ACTIONS(4078), + [anon_sym_STAR] = ACTIONS(4080), + [anon_sym_SLASH] = ACTIONS(4078), + [anon_sym_PERCENT] = ACTIONS(4080), + [anon_sym_PIPE_PIPE] = ACTIONS(4080), + [anon_sym_AMP_AMP] = ACTIONS(4080), + [anon_sym_PIPE] = ACTIONS(4078), + [anon_sym_CARET] = ACTIONS(4080), + [anon_sym_AMP] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4080), + [anon_sym_BANG_EQ] = ACTIONS(4080), + [anon_sym_GT] = ACTIONS(4078), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_LT] = ACTIONS(4078), + [anon_sym_LT_LT] = ACTIONS(4080), + [anon_sym_GT_GT] = ACTIONS(4080), + [anon_sym_SEMI] = ACTIONS(4080), + [anon_sym___extension__] = ACTIONS(4078), + [anon_sym_extern] = ACTIONS(4078), + [anon_sym___attribute__] = ACTIONS(4078), + [anon_sym___attribute] = ACTIONS(4078), + [anon_sym_noreturn] = ACTIONS(4078), + [anon_sym_LBRACK] = ACTIONS(4080), + [anon_sym_RBRACK] = ACTIONS(4080), + [anon_sym___declspec] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4080), + [anon_sym_RBRACE] = ACTIONS(4080), + [anon_sym_signed] = ACTIONS(4078), + [anon_sym_unsigned] = ACTIONS(4078), + [anon_sym_long] = ACTIONS(4078), + [anon_sym_short] = ACTIONS(4078), + [anon_sym_static] = ACTIONS(4078), + [anon_sym_ATautoreleasepool] = ACTIONS(4080), + [anon_sym_auto] = ACTIONS(4078), + [anon_sym_register] = ACTIONS(4078), + [anon_sym_inline] = ACTIONS(4078), + [anon_sym___inline] = ACTIONS(4078), + [anon_sym___inline__] = ACTIONS(4078), + [anon_sym___forceinline] = ACTIONS(4078), + [anon_sym_thread_local] = ACTIONS(4078), + [anon_sym___thread] = ACTIONS(4078), + [anon_sym_CG_EXTERN] = ACTIONS(4078), + [anon_sym_CG_INLINE] = ACTIONS(4078), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4078), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4078), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4078), + [anon_sym_IBOutlet] = ACTIONS(4078), + [anon_sym_IBInspectable] = ACTIONS(4078), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4078), + [anon_sym_NS_INLINE] = ACTIONS(4078), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4078), + [anon_sym_OBJC_EXPORT] = ACTIONS(4078), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4078), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4078), + [anon_sym_const] = ACTIONS(4078), + [anon_sym_constexpr] = ACTIONS(4078), + [anon_sym_volatile] = ACTIONS(4078), + [anon_sym_restrict] = ACTIONS(4078), + [anon_sym___restrict__] = ACTIONS(4078), + [anon_sym__Atomic] = ACTIONS(4078), + [anon_sym__Noreturn] = ACTIONS(4078), + [anon_sym__Nonnull] = ACTIONS(4078), + [anon_sym_nullable] = ACTIONS(4078), + [anon_sym__Complex] = ACTIONS(4078), + [anon_sym__Nullable] = ACTIONS(4078), + [anon_sym__Nullable_result] = ACTIONS(4078), + [anon_sym__Null_unspecified] = ACTIONS(4078), + [anon_sym___autoreleasing] = ACTIONS(4078), + [anon_sym___block] = ACTIONS(4078), + [anon_sym___bridge] = ACTIONS(4078), + [anon_sym___bridge_retained] = ACTIONS(4078), + [anon_sym___bridge_transfer] = ACTIONS(4078), + [anon_sym___complex] = ACTIONS(4078), + [anon_sym___const] = ACTIONS(4078), + [anon_sym___imag] = ACTIONS(4078), + [anon_sym___kindof] = ACTIONS(4078), + [anon_sym___nonnull] = ACTIONS(4078), + [anon_sym___nullable] = ACTIONS(4078), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4078), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4078), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4078), + [anon_sym___real] = ACTIONS(4078), + [anon_sym___strong] = ACTIONS(4078), + [anon_sym___unsafe_unretained] = ACTIONS(4078), + [anon_sym___unused] = ACTIONS(4078), + [anon_sym___weak] = ACTIONS(4078), + [anon_sym_alignas] = ACTIONS(4078), + [anon_sym__Alignas] = ACTIONS(4078), + [sym_primitive_type] = ACTIONS(4078), + [anon_sym_enum] = ACTIONS(4078), + [anon_sym_COLON] = ACTIONS(4080), + [anon_sym_struct] = ACTIONS(4078), + [anon_sym_union] = ACTIONS(4078), + [anon_sym_QMARK] = ACTIONS(4080), + [anon_sym_DASH_DASH] = ACTIONS(4080), + [anon_sym_PLUS_PLUS] = ACTIONS(4080), + [anon_sym_DOT] = ACTIONS(4078), + [anon_sym_DASH_GT] = ACTIONS(4080), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4078), + [anon_sym___typeof] = ACTIONS(4078), + [anon_sym_typeof] = ACTIONS(4078), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4078), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4078), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4078), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4078), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4078), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4078), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4078), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4078), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4078), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4078), + [anon_sym_NS_AVAILABLE] = ACTIONS(4078), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4078), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4078), + [anon_sym_API_AVAILABLE] = ACTIONS(4078), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4078), + [anon_sym_API_DEPRECATED] = ACTIONS(4078), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4078), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4078), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4078), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4078), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4078), + [anon_sym___deprecated_msg] = ACTIONS(4078), + [anon_sym___deprecated_enum_msg] = ACTIONS(4078), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4078), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4078), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4078), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4078), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4078), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4078), + [anon_sym_BOOL] = ACTIONS(4078), + [anon_sym_IMP] = ACTIONS(4078), + [anon_sym_SEL] = ACTIONS(4078), + [anon_sym_Class] = ACTIONS(4078), + [anon_sym_id] = ACTIONS(4078), + }, + [1656] = { + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4244), + [anon_sym_COMMA] = ACTIONS(4244), + [anon_sym_RPAREN] = ACTIONS(4244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4244), + [anon_sym_LPAREN2] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4242), + [anon_sym_STAR] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4242), + [anon_sym_PERCENT] = ACTIONS(4244), + [anon_sym_PIPE_PIPE] = ACTIONS(4244), + [anon_sym_AMP_AMP] = ACTIONS(4244), + [anon_sym_PIPE] = ACTIONS(4242), + [anon_sym_CARET] = ACTIONS(4244), + [anon_sym_AMP] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4244), + [anon_sym_LT_EQ] = ACTIONS(4244), + [anon_sym_LT] = ACTIONS(4242), + [anon_sym_LT_LT] = ACTIONS(4244), + [anon_sym_GT_GT] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4244), + [anon_sym___extension__] = ACTIONS(4242), + [anon_sym_extern] = ACTIONS(4242), + [anon_sym___attribute__] = ACTIONS(4242), + [anon_sym___attribute] = ACTIONS(4242), + [anon_sym_noreturn] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4244), + [anon_sym_RBRACK] = ACTIONS(4244), + [anon_sym___declspec] = ACTIONS(4242), + [anon_sym_LBRACE] = ACTIONS(4244), + [anon_sym_RBRACE] = ACTIONS(4244), + [anon_sym_signed] = ACTIONS(4242), + [anon_sym_unsigned] = ACTIONS(4242), + [anon_sym_long] = ACTIONS(4242), + [anon_sym_short] = ACTIONS(4242), + [anon_sym_static] = ACTIONS(4242), + [anon_sym_ATautoreleasepool] = ACTIONS(4244), + [anon_sym_auto] = ACTIONS(4242), + [anon_sym_register] = ACTIONS(4242), + [anon_sym_inline] = ACTIONS(4242), + [anon_sym___inline] = ACTIONS(4242), + [anon_sym___inline__] = ACTIONS(4242), + [anon_sym___forceinline] = ACTIONS(4242), + [anon_sym_thread_local] = ACTIONS(4242), + [anon_sym___thread] = ACTIONS(4242), + [anon_sym_CG_EXTERN] = ACTIONS(4242), + [anon_sym_CG_INLINE] = ACTIONS(4242), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4242), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4242), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4242), + [anon_sym_IBOutlet] = ACTIONS(4242), + [anon_sym_IBInspectable] = ACTIONS(4242), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4242), + [anon_sym_NS_INLINE] = ACTIONS(4242), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4242), + [anon_sym_OBJC_EXPORT] = ACTIONS(4242), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4242), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4242), + [anon_sym_const] = ACTIONS(4242), + [anon_sym_constexpr] = ACTIONS(4242), + [anon_sym_volatile] = ACTIONS(4242), + [anon_sym_restrict] = ACTIONS(4242), + [anon_sym___restrict__] = ACTIONS(4242), + [anon_sym__Atomic] = ACTIONS(4242), + [anon_sym__Noreturn] = ACTIONS(4242), + [anon_sym__Nonnull] = ACTIONS(4242), + [anon_sym_nullable] = ACTIONS(4242), + [anon_sym__Complex] = ACTIONS(4242), + [anon_sym__Nullable] = ACTIONS(4242), + [anon_sym__Nullable_result] = ACTIONS(4242), + [anon_sym__Null_unspecified] = ACTIONS(4242), + [anon_sym___autoreleasing] = ACTIONS(4242), + [anon_sym___block] = ACTIONS(4242), + [anon_sym___bridge] = ACTIONS(4242), + [anon_sym___bridge_retained] = ACTIONS(4242), + [anon_sym___bridge_transfer] = ACTIONS(4242), + [anon_sym___complex] = ACTIONS(4242), + [anon_sym___const] = ACTIONS(4242), + [anon_sym___imag] = ACTIONS(4242), + [anon_sym___kindof] = ACTIONS(4242), + [anon_sym___nonnull] = ACTIONS(4242), + [anon_sym___nullable] = ACTIONS(4242), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4242), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4242), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4242), + [anon_sym___real] = ACTIONS(4242), + [anon_sym___strong] = ACTIONS(4242), + [anon_sym___unsafe_unretained] = ACTIONS(4242), + [anon_sym___unused] = ACTIONS(4242), + [anon_sym___weak] = ACTIONS(4242), + [anon_sym_alignas] = ACTIONS(4242), + [anon_sym__Alignas] = ACTIONS(4242), + [sym_primitive_type] = ACTIONS(4242), + [anon_sym_enum] = ACTIONS(4242), + [anon_sym_COLON] = ACTIONS(4244), + [anon_sym_struct] = ACTIONS(4242), + [anon_sym_union] = ACTIONS(4242), + [anon_sym_QMARK] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4244), + [anon_sym_PLUS_PLUS] = ACTIONS(4244), + [anon_sym_DOT] = ACTIONS(4242), + [anon_sym_DASH_GT] = ACTIONS(4244), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4242), + [anon_sym___typeof] = ACTIONS(4242), + [anon_sym_typeof] = ACTIONS(4242), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4242), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4242), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4242), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4242), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4242), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4242), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4242), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4242), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4242), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4242), + [anon_sym_NS_AVAILABLE] = ACTIONS(4242), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4242), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4242), + [anon_sym_API_AVAILABLE] = ACTIONS(4242), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4242), + [anon_sym_API_DEPRECATED] = ACTIONS(4242), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4242), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4242), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4242), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4242), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4242), + [anon_sym___deprecated_msg] = ACTIONS(4242), + [anon_sym___deprecated_enum_msg] = ACTIONS(4242), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4242), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4242), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4242), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4242), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4242), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4242), + [anon_sym_BOOL] = ACTIONS(4242), + [anon_sym_IMP] = ACTIONS(4242), + [anon_sym_SEL] = ACTIONS(4242), + [anon_sym_Class] = ACTIONS(4242), + [anon_sym_id] = ACTIONS(4242), + }, + [1657] = { + [sym_identifier] = ACTIONS(4188), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4191), + [anon_sym_COMMA] = ACTIONS(4191), + [anon_sym_LPAREN2] = ACTIONS(4191), + [anon_sym_DASH] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(4191), + [anon_sym_SLASH] = ACTIONS(4188), + [anon_sym_PERCENT] = ACTIONS(4191), + [anon_sym_PIPE_PIPE] = ACTIONS(4191), + [anon_sym_AMP_AMP] = ACTIONS(4191), + [anon_sym_PIPE] = ACTIONS(4188), + [anon_sym_CARET] = ACTIONS(4191), + [anon_sym_AMP] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4191), + [anon_sym_BANG_EQ] = ACTIONS(4191), + [anon_sym_GT] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4191), + [anon_sym_LT_EQ] = ACTIONS(4191), + [anon_sym_LT] = ACTIONS(4188), + [anon_sym_LT_LT] = ACTIONS(4191), + [anon_sym_GT_GT] = ACTIONS(4191), + [anon_sym_SEMI] = ACTIONS(4191), + [anon_sym___extension__] = ACTIONS(4188), + [anon_sym_extern] = ACTIONS(4188), + [anon_sym___attribute__] = ACTIONS(4188), + [anon_sym___attribute] = ACTIONS(4188), + [anon_sym_noreturn] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4191), + [anon_sym___declspec] = ACTIONS(4188), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_signed] = ACTIONS(4188), + [anon_sym_unsigned] = ACTIONS(4188), + [anon_sym_long] = ACTIONS(4188), + [anon_sym_short] = ACTIONS(4188), + [anon_sym_static] = ACTIONS(4188), + [anon_sym_ATautoreleasepool] = ACTIONS(4191), + [anon_sym_auto] = ACTIONS(4188), + [anon_sym_register] = ACTIONS(4188), + [anon_sym_inline] = ACTIONS(4188), + [anon_sym___inline] = ACTIONS(4188), + [anon_sym___inline__] = ACTIONS(4188), + [anon_sym___forceinline] = ACTIONS(4188), + [anon_sym_thread_local] = ACTIONS(4188), + [anon_sym___thread] = ACTIONS(4188), + [anon_sym_CG_EXTERN] = ACTIONS(4188), + [anon_sym_CG_INLINE] = ACTIONS(4188), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4188), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4188), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4188), + [anon_sym_IBOutlet] = ACTIONS(4188), + [anon_sym_IBInspectable] = ACTIONS(4188), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4188), + [anon_sym_NS_INLINE] = ACTIONS(4188), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4188), + [anon_sym_OBJC_EXPORT] = ACTIONS(4188), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4188), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4188), + [anon_sym_const] = ACTIONS(4188), + [anon_sym_constexpr] = ACTIONS(4188), + [anon_sym_volatile] = ACTIONS(4188), + [anon_sym_restrict] = ACTIONS(4188), + [anon_sym___restrict__] = ACTIONS(4188), + [anon_sym__Atomic] = ACTIONS(4188), + [anon_sym__Noreturn] = ACTIONS(4188), + [anon_sym__Nonnull] = ACTIONS(4188), + [anon_sym_nullable] = ACTIONS(4188), + [anon_sym__Complex] = ACTIONS(4188), + [anon_sym__Nullable] = ACTIONS(4188), + [anon_sym__Nullable_result] = ACTIONS(4188), + [anon_sym__Null_unspecified] = ACTIONS(4188), + [anon_sym___autoreleasing] = ACTIONS(4188), + [anon_sym___block] = ACTIONS(4188), + [anon_sym___bridge] = ACTIONS(4188), + [anon_sym___bridge_retained] = ACTIONS(4188), + [anon_sym___bridge_transfer] = ACTIONS(4188), + [anon_sym___complex] = ACTIONS(4188), + [anon_sym___const] = ACTIONS(4188), + [anon_sym___imag] = ACTIONS(4188), + [anon_sym___kindof] = ACTIONS(4188), + [anon_sym___nonnull] = ACTIONS(4188), + [anon_sym___nullable] = ACTIONS(4188), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4188), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4188), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4188), + [anon_sym___real] = ACTIONS(4188), + [anon_sym___strong] = ACTIONS(4188), + [anon_sym___unsafe_unretained] = ACTIONS(4188), + [anon_sym___unused] = ACTIONS(4188), + [anon_sym___weak] = ACTIONS(4188), + [anon_sym_alignas] = ACTIONS(4188), + [anon_sym__Alignas] = ACTIONS(4188), + [sym_primitive_type] = ACTIONS(4188), + [anon_sym_enum] = ACTIONS(4188), + [anon_sym_struct] = ACTIONS(4188), + [anon_sym_union] = ACTIONS(4188), + [anon_sym_QMARK] = ACTIONS(4191), + [anon_sym_DASH_DASH] = ACTIONS(4191), + [anon_sym_PLUS_PLUS] = ACTIONS(4191), + [anon_sym_DOT] = ACTIONS(4188), + [anon_sym_DASH_GT] = ACTIONS(4191), + [anon_sym_AT] = ACTIONS(4188), + [anon_sym_DQUOTE] = ACTIONS(4191), + [anon_sym_L_DQUOTE] = ACTIONS(4191), + [anon_sym_u_DQUOTE] = ACTIONS(4191), + [anon_sym_U_DQUOTE] = ACTIONS(4191), + [anon_sym_u8_DQUOTE] = ACTIONS(4191), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4188), + [anon_sym___typeof] = ACTIONS(4188), + [anon_sym_typeof] = ACTIONS(4188), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4188), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4188), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4188), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4188), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4188), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4188), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4188), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4188), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4188), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4188), + [anon_sym_NS_AVAILABLE] = ACTIONS(4188), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4188), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4188), + [anon_sym_API_AVAILABLE] = ACTIONS(4188), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4188), + [anon_sym_API_DEPRECATED] = ACTIONS(4188), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4188), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4188), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4188), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4188), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4188), + [anon_sym___deprecated_msg] = ACTIONS(4188), + [anon_sym___deprecated_enum_msg] = ACTIONS(4188), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4188), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4188), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4188), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4188), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4188), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4188), + [anon_sym_BOOL] = ACTIONS(4188), + [anon_sym_IMP] = ACTIONS(4188), + [anon_sym_SEL] = ACTIONS(4188), + [anon_sym_Class] = ACTIONS(4188), + [anon_sym_id] = ACTIONS(4188), + }, + [1658] = { + [sym_identifier] = ACTIONS(4152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4154), + [anon_sym_COMMA] = ACTIONS(4154), + [anon_sym_RPAREN] = ACTIONS(4154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4154), + [anon_sym_LPAREN2] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4154), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE] = ACTIONS(4152), + [anon_sym_CARET] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4154), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_LT_LT] = ACTIONS(4154), + [anon_sym_GT_GT] = ACTIONS(4154), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym___extension__] = ACTIONS(4152), + [anon_sym_extern] = ACTIONS(4152), + [anon_sym___attribute__] = ACTIONS(4152), + [anon_sym___attribute] = ACTIONS(4152), + [anon_sym_noreturn] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_RBRACK] = ACTIONS(4154), + [anon_sym___declspec] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(4154), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_signed] = ACTIONS(4152), + [anon_sym_unsigned] = ACTIONS(4152), + [anon_sym_long] = ACTIONS(4152), + [anon_sym_short] = ACTIONS(4152), + [anon_sym_static] = ACTIONS(4152), + [anon_sym_ATautoreleasepool] = ACTIONS(4154), + [anon_sym_auto] = ACTIONS(4152), + [anon_sym_register] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym___inline] = ACTIONS(4152), + [anon_sym___inline__] = ACTIONS(4152), + [anon_sym___forceinline] = ACTIONS(4152), + [anon_sym_thread_local] = ACTIONS(4152), + [anon_sym___thread] = ACTIONS(4152), + [anon_sym_CG_EXTERN] = ACTIONS(4152), + [anon_sym_CG_INLINE] = ACTIONS(4152), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4152), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4152), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4152), + [anon_sym_IBOutlet] = ACTIONS(4152), + [anon_sym_IBInspectable] = ACTIONS(4152), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4152), + [anon_sym_NS_INLINE] = ACTIONS(4152), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4152), + [anon_sym_OBJC_EXPORT] = ACTIONS(4152), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4152), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4152), + [anon_sym_const] = ACTIONS(4152), + [anon_sym_constexpr] = ACTIONS(4152), + [anon_sym_volatile] = ACTIONS(4152), + [anon_sym_restrict] = ACTIONS(4152), + [anon_sym___restrict__] = ACTIONS(4152), + [anon_sym__Atomic] = ACTIONS(4152), + [anon_sym__Noreturn] = ACTIONS(4152), + [anon_sym__Nonnull] = ACTIONS(4152), + [anon_sym_nullable] = ACTIONS(4152), + [anon_sym__Complex] = ACTIONS(4152), + [anon_sym__Nullable] = ACTIONS(4152), + [anon_sym__Nullable_result] = ACTIONS(4152), + [anon_sym__Null_unspecified] = ACTIONS(4152), + [anon_sym___autoreleasing] = ACTIONS(4152), + [anon_sym___block] = ACTIONS(4152), + [anon_sym___bridge] = ACTIONS(4152), + [anon_sym___bridge_retained] = ACTIONS(4152), + [anon_sym___bridge_transfer] = ACTIONS(4152), + [anon_sym___complex] = ACTIONS(4152), + [anon_sym___const] = ACTIONS(4152), + [anon_sym___imag] = ACTIONS(4152), + [anon_sym___kindof] = ACTIONS(4152), + [anon_sym___nonnull] = ACTIONS(4152), + [anon_sym___nullable] = ACTIONS(4152), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4152), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4152), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4152), + [anon_sym___real] = ACTIONS(4152), + [anon_sym___strong] = ACTIONS(4152), + [anon_sym___unsafe_unretained] = ACTIONS(4152), + [anon_sym___unused] = ACTIONS(4152), + [anon_sym___weak] = ACTIONS(4152), + [anon_sym_alignas] = ACTIONS(4152), + [anon_sym__Alignas] = ACTIONS(4152), + [sym_primitive_type] = ACTIONS(4152), + [anon_sym_enum] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(4154), + [anon_sym_struct] = ACTIONS(4152), + [anon_sym_union] = ACTIONS(4152), + [anon_sym_QMARK] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_DASH_GT] = ACTIONS(4154), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4152), + [anon_sym___typeof] = ACTIONS(4152), + [anon_sym_typeof] = ACTIONS(4152), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4152), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4152), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4152), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4152), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4152), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4152), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4152), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4152), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4152), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4152), + [anon_sym_NS_AVAILABLE] = ACTIONS(4152), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4152), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4152), + [anon_sym_API_AVAILABLE] = ACTIONS(4152), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4152), + [anon_sym_API_DEPRECATED] = ACTIONS(4152), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4152), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4152), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4152), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4152), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4152), + [anon_sym___deprecated_msg] = ACTIONS(4152), + [anon_sym___deprecated_enum_msg] = ACTIONS(4152), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4152), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4152), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4152), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4152), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4152), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4152), + [anon_sym_BOOL] = ACTIONS(4152), + [anon_sym_IMP] = ACTIONS(4152), + [anon_sym_SEL] = ACTIONS(4152), + [anon_sym_Class] = ACTIONS(4152), + [anon_sym_id] = ACTIONS(4152), + }, + [1659] = { + [sym_identifier] = ACTIONS(4074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4076), + [anon_sym_COMMA] = ACTIONS(4076), + [anon_sym_LPAREN2] = ACTIONS(4076), + [anon_sym_DASH] = ACTIONS(4074), + [anon_sym_PLUS] = ACTIONS(4074), + [anon_sym_STAR] = ACTIONS(4076), + [anon_sym_SLASH] = ACTIONS(4074), + [anon_sym_PERCENT] = ACTIONS(4076), + [anon_sym_PIPE_PIPE] = ACTIONS(4076), + [anon_sym_AMP_AMP] = ACTIONS(4076), + [anon_sym_PIPE] = ACTIONS(4074), + [anon_sym_CARET] = ACTIONS(4076), + [anon_sym_AMP] = ACTIONS(4074), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_GT] = ACTIONS(4074), + [anon_sym_GT_EQ] = ACTIONS(4076), + [anon_sym_LT_EQ] = ACTIONS(4076), + [anon_sym_LT] = ACTIONS(4074), + [anon_sym_LT_LT] = ACTIONS(4076), + [anon_sym_GT_GT] = ACTIONS(4076), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym___extension__] = ACTIONS(4074), + [anon_sym_extern] = ACTIONS(4074), + [anon_sym___attribute__] = ACTIONS(4074), + [anon_sym___attribute] = ACTIONS(4074), + [anon_sym_noreturn] = ACTIONS(4074), + [anon_sym_LBRACK] = ACTIONS(4076), + [anon_sym___declspec] = ACTIONS(4074), + [anon_sym_LBRACE] = ACTIONS(4076), + [anon_sym_signed] = ACTIONS(4074), + [anon_sym_unsigned] = ACTIONS(4074), + [anon_sym_long] = ACTIONS(4074), + [anon_sym_short] = ACTIONS(4074), + [anon_sym_static] = ACTIONS(4074), + [anon_sym_ATautoreleasepool] = ACTIONS(4076), + [anon_sym_auto] = ACTIONS(4074), + [anon_sym_register] = ACTIONS(4074), + [anon_sym_inline] = ACTIONS(4074), + [anon_sym___inline] = ACTIONS(4074), + [anon_sym___inline__] = ACTIONS(4074), + [anon_sym___forceinline] = ACTIONS(4074), + [anon_sym_thread_local] = ACTIONS(4074), + [anon_sym___thread] = ACTIONS(4074), + [anon_sym_CG_EXTERN] = ACTIONS(4074), + [anon_sym_CG_INLINE] = ACTIONS(4074), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4074), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4074), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4074), + [anon_sym_IBOutlet] = ACTIONS(4074), + [anon_sym_IBInspectable] = ACTIONS(4074), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4074), + [anon_sym_NS_INLINE] = ACTIONS(4074), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4074), + [anon_sym_OBJC_EXPORT] = ACTIONS(4074), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4074), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4074), + [anon_sym_const] = ACTIONS(4074), + [anon_sym_constexpr] = ACTIONS(4074), + [anon_sym_volatile] = ACTIONS(4074), + [anon_sym_restrict] = ACTIONS(4074), + [anon_sym___restrict__] = ACTIONS(4074), + [anon_sym__Atomic] = ACTIONS(4074), + [anon_sym__Noreturn] = ACTIONS(4074), + [anon_sym__Nonnull] = ACTIONS(4074), + [anon_sym_nullable] = ACTIONS(4074), + [anon_sym__Complex] = ACTIONS(4074), + [anon_sym__Nullable] = ACTIONS(4074), + [anon_sym__Nullable_result] = ACTIONS(4074), + [anon_sym__Null_unspecified] = ACTIONS(4074), + [anon_sym___autoreleasing] = ACTIONS(4074), + [anon_sym___block] = ACTIONS(4074), + [anon_sym___bridge] = ACTIONS(4074), + [anon_sym___bridge_retained] = ACTIONS(4074), + [anon_sym___bridge_transfer] = ACTIONS(4074), + [anon_sym___complex] = ACTIONS(4074), + [anon_sym___const] = ACTIONS(4074), + [anon_sym___imag] = ACTIONS(4074), + [anon_sym___kindof] = ACTIONS(4074), + [anon_sym___nonnull] = ACTIONS(4074), + [anon_sym___nullable] = ACTIONS(4074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4074), + [anon_sym___real] = ACTIONS(4074), + [anon_sym___strong] = ACTIONS(4074), + [anon_sym___unsafe_unretained] = ACTIONS(4074), + [anon_sym___unused] = ACTIONS(4074), + [anon_sym___weak] = ACTIONS(4074), + [anon_sym_alignas] = ACTIONS(4074), + [anon_sym__Alignas] = ACTIONS(4074), + [sym_primitive_type] = ACTIONS(4074), + [anon_sym_enum] = ACTIONS(4074), + [anon_sym_struct] = ACTIONS(4074), + [anon_sym_union] = ACTIONS(4074), + [anon_sym_QMARK] = ACTIONS(4076), + [anon_sym_DASH_DASH] = ACTIONS(4076), + [anon_sym_PLUS_PLUS] = ACTIONS(4076), + [anon_sym_DOT] = ACTIONS(4074), + [anon_sym_DASH_GT] = ACTIONS(4076), + [anon_sym_AT] = ACTIONS(4074), + [anon_sym_DQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4076), + [anon_sym_u_DQUOTE] = ACTIONS(4076), + [anon_sym_U_DQUOTE] = ACTIONS(4076), + [anon_sym_u8_DQUOTE] = ACTIONS(4076), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4074), + [anon_sym___typeof] = ACTIONS(4074), + [anon_sym_typeof] = ACTIONS(4074), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4074), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4074), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4074), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4074), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4074), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4074), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4074), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4074), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4074), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4074), + [anon_sym_NS_AVAILABLE] = ACTIONS(4074), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4074), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4074), + [anon_sym_API_AVAILABLE] = ACTIONS(4074), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4074), + [anon_sym_API_DEPRECATED] = ACTIONS(4074), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4074), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4074), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4074), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4074), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4074), + [anon_sym___deprecated_msg] = ACTIONS(4074), + [anon_sym___deprecated_enum_msg] = ACTIONS(4074), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4074), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4074), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4074), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4074), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4074), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4074), + [anon_sym_BOOL] = ACTIONS(4074), + [anon_sym_IMP] = ACTIONS(4074), + [anon_sym_SEL] = ACTIONS(4074), + [anon_sym_Class] = ACTIONS(4074), + [anon_sym_id] = ACTIONS(4074), + }, + [1660] = { + [sym_identifier] = ACTIONS(4046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4048), + [anon_sym_COMMA] = ACTIONS(4048), + [anon_sym_RPAREN] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4048), + [anon_sym_LPAREN2] = ACTIONS(4048), + [anon_sym_DASH] = ACTIONS(4046), + [anon_sym_PLUS] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(4048), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4048), + [anon_sym_PIPE_PIPE] = ACTIONS(4048), + [anon_sym_AMP_AMP] = ACTIONS(4048), + [anon_sym_PIPE] = ACTIONS(4046), + [anon_sym_CARET] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4046), + [anon_sym_EQ_EQ] = ACTIONS(4048), + [anon_sym_BANG_EQ] = ACTIONS(4048), + [anon_sym_GT] = ACTIONS(4046), + [anon_sym_GT_EQ] = ACTIONS(4048), + [anon_sym_LT_EQ] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(4046), + [anon_sym_LT_LT] = ACTIONS(4048), + [anon_sym_GT_GT] = ACTIONS(4048), + [anon_sym_SEMI] = ACTIONS(4048), + [anon_sym___extension__] = ACTIONS(4046), + [anon_sym_extern] = ACTIONS(4046), + [anon_sym___attribute__] = ACTIONS(4046), + [anon_sym___attribute] = ACTIONS(4046), + [anon_sym_noreturn] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_RBRACK] = ACTIONS(4048), + [anon_sym___declspec] = ACTIONS(4046), + [anon_sym_LBRACE] = ACTIONS(4048), + [anon_sym_RBRACE] = ACTIONS(4048), + [anon_sym_signed] = ACTIONS(4046), + [anon_sym_unsigned] = ACTIONS(4046), + [anon_sym_long] = ACTIONS(4046), + [anon_sym_short] = ACTIONS(4046), + [anon_sym_static] = ACTIONS(4046), + [anon_sym_ATautoreleasepool] = ACTIONS(4048), + [anon_sym_auto] = ACTIONS(4046), + [anon_sym_register] = ACTIONS(4046), + [anon_sym_inline] = ACTIONS(4046), + [anon_sym___inline] = ACTIONS(4046), + [anon_sym___inline__] = ACTIONS(4046), + [anon_sym___forceinline] = ACTIONS(4046), + [anon_sym_thread_local] = ACTIONS(4046), + [anon_sym___thread] = ACTIONS(4046), + [anon_sym_CG_EXTERN] = ACTIONS(4046), + [anon_sym_CG_INLINE] = ACTIONS(4046), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4046), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4046), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4046), + [anon_sym_IBOutlet] = ACTIONS(4046), + [anon_sym_IBInspectable] = ACTIONS(4046), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4046), + [anon_sym_NS_INLINE] = ACTIONS(4046), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4046), + [anon_sym_OBJC_EXPORT] = ACTIONS(4046), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4046), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4046), + [anon_sym_const] = ACTIONS(4046), + [anon_sym_constexpr] = ACTIONS(4046), + [anon_sym_volatile] = ACTIONS(4046), + [anon_sym_restrict] = ACTIONS(4046), + [anon_sym___restrict__] = ACTIONS(4046), + [anon_sym__Atomic] = ACTIONS(4046), + [anon_sym__Noreturn] = ACTIONS(4046), + [anon_sym__Nonnull] = ACTIONS(4046), + [anon_sym_nullable] = ACTIONS(4046), + [anon_sym__Complex] = ACTIONS(4046), + [anon_sym__Nullable] = ACTIONS(4046), + [anon_sym__Nullable_result] = ACTIONS(4046), + [anon_sym__Null_unspecified] = ACTIONS(4046), + [anon_sym___autoreleasing] = ACTIONS(4046), + [anon_sym___block] = ACTIONS(4046), + [anon_sym___bridge] = ACTIONS(4046), + [anon_sym___bridge_retained] = ACTIONS(4046), + [anon_sym___bridge_transfer] = ACTIONS(4046), + [anon_sym___complex] = ACTIONS(4046), + [anon_sym___const] = ACTIONS(4046), + [anon_sym___imag] = ACTIONS(4046), + [anon_sym___kindof] = ACTIONS(4046), + [anon_sym___nonnull] = ACTIONS(4046), + [anon_sym___nullable] = ACTIONS(4046), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4046), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4046), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4046), + [anon_sym___real] = ACTIONS(4046), + [anon_sym___strong] = ACTIONS(4046), + [anon_sym___unsafe_unretained] = ACTIONS(4046), + [anon_sym___unused] = ACTIONS(4046), + [anon_sym___weak] = ACTIONS(4046), + [anon_sym_alignas] = ACTIONS(4046), + [anon_sym__Alignas] = ACTIONS(4046), + [sym_primitive_type] = ACTIONS(4046), + [anon_sym_enum] = ACTIONS(4046), + [anon_sym_COLON] = ACTIONS(4048), + [anon_sym_struct] = ACTIONS(4046), + [anon_sym_union] = ACTIONS(4046), + [anon_sym_QMARK] = ACTIONS(4048), + [anon_sym_DASH_DASH] = ACTIONS(4048), + [anon_sym_PLUS_PLUS] = ACTIONS(4048), + [anon_sym_DOT] = ACTIONS(4046), + [anon_sym_DASH_GT] = ACTIONS(4048), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4046), + [anon_sym___typeof] = ACTIONS(4046), + [anon_sym_typeof] = ACTIONS(4046), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4046), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4046), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4046), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4046), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4046), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4046), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4046), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4046), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4046), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4046), + [anon_sym_NS_AVAILABLE] = ACTIONS(4046), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4046), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4046), + [anon_sym_API_AVAILABLE] = ACTIONS(4046), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4046), + [anon_sym_API_DEPRECATED] = ACTIONS(4046), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4046), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4046), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4046), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4046), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4046), + [anon_sym___deprecated_msg] = ACTIONS(4046), + [anon_sym___deprecated_enum_msg] = ACTIONS(4046), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4046), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4046), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4046), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4046), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4046), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4046), + [anon_sym_BOOL] = ACTIONS(4046), + [anon_sym_IMP] = ACTIONS(4046), + [anon_sym_SEL] = ACTIONS(4046), + [anon_sym_Class] = ACTIONS(4046), + [anon_sym_id] = ACTIONS(4046), + }, + [1661] = { + [sym_identifier] = ACTIONS(4050), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4052), + [anon_sym_COMMA] = ACTIONS(4052), + [anon_sym_RPAREN] = ACTIONS(4052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4052), + [anon_sym_LPAREN2] = ACTIONS(4052), + [anon_sym_DASH] = ACTIONS(4050), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(4052), + [anon_sym_SLASH] = ACTIONS(4050), + [anon_sym_PERCENT] = ACTIONS(4052), + [anon_sym_PIPE_PIPE] = ACTIONS(4052), + [anon_sym_AMP_AMP] = ACTIONS(4052), + [anon_sym_PIPE] = ACTIONS(4050), + [anon_sym_CARET] = ACTIONS(4052), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_EQ_EQ] = ACTIONS(4052), + [anon_sym_BANG_EQ] = ACTIONS(4052), + [anon_sym_GT] = ACTIONS(4050), + [anon_sym_GT_EQ] = ACTIONS(4052), + [anon_sym_LT_EQ] = ACTIONS(4052), + [anon_sym_LT] = ACTIONS(4050), + [anon_sym_LT_LT] = ACTIONS(4052), + [anon_sym_GT_GT] = ACTIONS(4052), + [anon_sym_SEMI] = ACTIONS(4052), + [anon_sym___extension__] = ACTIONS(4050), + [anon_sym_extern] = ACTIONS(4050), + [anon_sym___attribute__] = ACTIONS(4050), + [anon_sym___attribute] = ACTIONS(4050), + [anon_sym_noreturn] = ACTIONS(4050), + [anon_sym_LBRACK] = ACTIONS(4052), + [anon_sym_RBRACK] = ACTIONS(4052), + [anon_sym___declspec] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4052), + [anon_sym_RBRACE] = ACTIONS(4052), + [anon_sym_signed] = ACTIONS(4050), + [anon_sym_unsigned] = ACTIONS(4050), + [anon_sym_long] = ACTIONS(4050), + [anon_sym_short] = ACTIONS(4050), + [anon_sym_static] = ACTIONS(4050), + [anon_sym_ATautoreleasepool] = ACTIONS(4052), + [anon_sym_auto] = ACTIONS(4050), + [anon_sym_register] = ACTIONS(4050), + [anon_sym_inline] = ACTIONS(4050), + [anon_sym___inline] = ACTIONS(4050), + [anon_sym___inline__] = ACTIONS(4050), + [anon_sym___forceinline] = ACTIONS(4050), + [anon_sym_thread_local] = ACTIONS(4050), + [anon_sym___thread] = ACTIONS(4050), + [anon_sym_CG_EXTERN] = ACTIONS(4050), + [anon_sym_CG_INLINE] = ACTIONS(4050), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4050), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4050), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4050), + [anon_sym_IBOutlet] = ACTIONS(4050), + [anon_sym_IBInspectable] = ACTIONS(4050), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4050), + [anon_sym_NS_INLINE] = ACTIONS(4050), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4050), + [anon_sym_OBJC_EXPORT] = ACTIONS(4050), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4050), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4050), + [anon_sym_const] = ACTIONS(4050), + [anon_sym_constexpr] = ACTIONS(4050), + [anon_sym_volatile] = ACTIONS(4050), + [anon_sym_restrict] = ACTIONS(4050), + [anon_sym___restrict__] = ACTIONS(4050), + [anon_sym__Atomic] = ACTIONS(4050), + [anon_sym__Noreturn] = ACTIONS(4050), + [anon_sym__Nonnull] = ACTIONS(4050), + [anon_sym_nullable] = ACTIONS(4050), + [anon_sym__Complex] = ACTIONS(4050), + [anon_sym__Nullable] = ACTIONS(4050), + [anon_sym__Nullable_result] = ACTIONS(4050), + [anon_sym__Null_unspecified] = ACTIONS(4050), + [anon_sym___autoreleasing] = ACTIONS(4050), + [anon_sym___block] = ACTIONS(4050), + [anon_sym___bridge] = ACTIONS(4050), + [anon_sym___bridge_retained] = ACTIONS(4050), + [anon_sym___bridge_transfer] = ACTIONS(4050), + [anon_sym___complex] = ACTIONS(4050), + [anon_sym___const] = ACTIONS(4050), + [anon_sym___imag] = ACTIONS(4050), + [anon_sym___kindof] = ACTIONS(4050), + [anon_sym___nonnull] = ACTIONS(4050), + [anon_sym___nullable] = ACTIONS(4050), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4050), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4050), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4050), + [anon_sym___real] = ACTIONS(4050), + [anon_sym___strong] = ACTIONS(4050), + [anon_sym___unsafe_unretained] = ACTIONS(4050), + [anon_sym___unused] = ACTIONS(4050), + [anon_sym___weak] = ACTIONS(4050), + [anon_sym_alignas] = ACTIONS(4050), + [anon_sym__Alignas] = ACTIONS(4050), + [sym_primitive_type] = ACTIONS(4050), + [anon_sym_enum] = ACTIONS(4050), + [anon_sym_COLON] = ACTIONS(4052), + [anon_sym_struct] = ACTIONS(4050), + [anon_sym_union] = ACTIONS(4050), + [anon_sym_QMARK] = ACTIONS(4052), + [anon_sym_DASH_DASH] = ACTIONS(4052), + [anon_sym_PLUS_PLUS] = ACTIONS(4052), + [anon_sym_DOT] = ACTIONS(4050), + [anon_sym_DASH_GT] = ACTIONS(4052), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4050), + [anon_sym___typeof] = ACTIONS(4050), + [anon_sym_typeof] = ACTIONS(4050), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4050), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4050), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4050), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4050), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4050), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4050), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4050), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4050), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4050), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4050), + [anon_sym_NS_AVAILABLE] = ACTIONS(4050), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4050), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4050), + [anon_sym_API_AVAILABLE] = ACTIONS(4050), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4050), + [anon_sym_API_DEPRECATED] = ACTIONS(4050), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4050), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4050), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4050), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4050), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4050), + [anon_sym___deprecated_msg] = ACTIONS(4050), + [anon_sym___deprecated_enum_msg] = ACTIONS(4050), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4050), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4050), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4050), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4050), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4050), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4050), + [anon_sym_BOOL] = ACTIONS(4050), + [anon_sym_IMP] = ACTIONS(4050), + [anon_sym_SEL] = ACTIONS(4050), + [anon_sym_Class] = ACTIONS(4050), + [anon_sym_id] = ACTIONS(4050), + }, + [1662] = { + [sym_identifier] = ACTIONS(4234), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4236), + [anon_sym_COMMA] = ACTIONS(4236), + [anon_sym_RPAREN] = ACTIONS(4236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4236), + [anon_sym_LPAREN2] = ACTIONS(4236), + [anon_sym_DASH] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4234), + [anon_sym_STAR] = ACTIONS(4236), + [anon_sym_SLASH] = ACTIONS(4234), + [anon_sym_PERCENT] = ACTIONS(4236), + [anon_sym_PIPE_PIPE] = ACTIONS(4236), + [anon_sym_AMP_AMP] = ACTIONS(4236), + [anon_sym_PIPE] = ACTIONS(4234), + [anon_sym_CARET] = ACTIONS(4236), + [anon_sym_AMP] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4236), + [anon_sym_BANG_EQ] = ACTIONS(4236), + [anon_sym_GT] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4236), + [anon_sym_LT_EQ] = ACTIONS(4236), + [anon_sym_LT] = ACTIONS(4234), + [anon_sym_LT_LT] = ACTIONS(4236), + [anon_sym_GT_GT] = ACTIONS(4236), + [anon_sym_SEMI] = ACTIONS(4236), + [anon_sym___extension__] = ACTIONS(4234), + [anon_sym_extern] = ACTIONS(4234), + [anon_sym___attribute__] = ACTIONS(4234), + [anon_sym___attribute] = ACTIONS(4234), + [anon_sym_noreturn] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(4236), + [anon_sym_RBRACK] = ACTIONS(4236), + [anon_sym___declspec] = ACTIONS(4234), + [anon_sym_LBRACE] = ACTIONS(4236), + [anon_sym_RBRACE] = ACTIONS(4236), + [anon_sym_signed] = ACTIONS(4234), + [anon_sym_unsigned] = ACTIONS(4234), + [anon_sym_long] = ACTIONS(4234), + [anon_sym_short] = ACTIONS(4234), + [anon_sym_static] = ACTIONS(4234), + [anon_sym_ATautoreleasepool] = ACTIONS(4236), + [anon_sym_auto] = ACTIONS(4234), + [anon_sym_register] = ACTIONS(4234), + [anon_sym_inline] = ACTIONS(4234), + [anon_sym___inline] = ACTIONS(4234), + [anon_sym___inline__] = ACTIONS(4234), + [anon_sym___forceinline] = ACTIONS(4234), + [anon_sym_thread_local] = ACTIONS(4234), + [anon_sym___thread] = ACTIONS(4234), + [anon_sym_CG_EXTERN] = ACTIONS(4234), + [anon_sym_CG_INLINE] = ACTIONS(4234), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4234), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4234), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4234), + [anon_sym_IBOutlet] = ACTIONS(4234), + [anon_sym_IBInspectable] = ACTIONS(4234), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4234), + [anon_sym_NS_INLINE] = ACTIONS(4234), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4234), + [anon_sym_OBJC_EXPORT] = ACTIONS(4234), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4234), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4234), + [anon_sym_const] = ACTIONS(4234), + [anon_sym_constexpr] = ACTIONS(4234), + [anon_sym_volatile] = ACTIONS(4234), + [anon_sym_restrict] = ACTIONS(4234), + [anon_sym___restrict__] = ACTIONS(4234), + [anon_sym__Atomic] = ACTIONS(4234), + [anon_sym__Noreturn] = ACTIONS(4234), + [anon_sym__Nonnull] = ACTIONS(4234), + [anon_sym_nullable] = ACTIONS(4234), + [anon_sym__Complex] = ACTIONS(4234), + [anon_sym__Nullable] = ACTIONS(4234), + [anon_sym__Nullable_result] = ACTIONS(4234), + [anon_sym__Null_unspecified] = ACTIONS(4234), + [anon_sym___autoreleasing] = ACTIONS(4234), + [anon_sym___block] = ACTIONS(4234), + [anon_sym___bridge] = ACTIONS(4234), + [anon_sym___bridge_retained] = ACTIONS(4234), + [anon_sym___bridge_transfer] = ACTIONS(4234), + [anon_sym___complex] = ACTIONS(4234), + [anon_sym___const] = ACTIONS(4234), + [anon_sym___imag] = ACTIONS(4234), + [anon_sym___kindof] = ACTIONS(4234), + [anon_sym___nonnull] = ACTIONS(4234), + [anon_sym___nullable] = ACTIONS(4234), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4234), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4234), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4234), + [anon_sym___real] = ACTIONS(4234), + [anon_sym___strong] = ACTIONS(4234), + [anon_sym___unsafe_unretained] = ACTIONS(4234), + [anon_sym___unused] = ACTIONS(4234), + [anon_sym___weak] = ACTIONS(4234), + [anon_sym_alignas] = ACTIONS(4234), + [anon_sym__Alignas] = ACTIONS(4234), + [sym_primitive_type] = ACTIONS(4234), + [anon_sym_enum] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(4236), + [anon_sym_struct] = ACTIONS(4234), + [anon_sym_union] = ACTIONS(4234), + [anon_sym_QMARK] = ACTIONS(4236), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_DOT] = ACTIONS(4234), + [anon_sym_DASH_GT] = ACTIONS(4236), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4234), + [anon_sym___typeof] = ACTIONS(4234), + [anon_sym_typeof] = ACTIONS(4234), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4234), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4234), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4234), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4234), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4234), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4234), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4234), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4234), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4234), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4234), + [anon_sym_NS_AVAILABLE] = ACTIONS(4234), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4234), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4234), + [anon_sym_API_AVAILABLE] = ACTIONS(4234), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4234), + [anon_sym_API_DEPRECATED] = ACTIONS(4234), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4234), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4234), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4234), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4234), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4234), + [anon_sym___deprecated_msg] = ACTIONS(4234), + [anon_sym___deprecated_enum_msg] = ACTIONS(4234), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4234), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4234), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4234), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4234), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4234), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4234), + [anon_sym_BOOL] = ACTIONS(4234), + [anon_sym_IMP] = ACTIONS(4234), + [anon_sym_SEL] = ACTIONS(4234), + [anon_sym_Class] = ACTIONS(4234), + [anon_sym_id] = ACTIONS(4234), + }, + [1663] = { + [sym_identifier] = ACTIONS(4258), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4260), + [anon_sym_COMMA] = ACTIONS(4260), + [anon_sym_RPAREN] = ACTIONS(4260), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4260), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4260), + [anon_sym_LPAREN2] = ACTIONS(4260), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_STAR] = ACTIONS(4260), + [anon_sym_SLASH] = ACTIONS(4258), + [anon_sym_PERCENT] = ACTIONS(4260), + [anon_sym_PIPE_PIPE] = ACTIONS(4260), + [anon_sym_AMP_AMP] = ACTIONS(4260), + [anon_sym_PIPE] = ACTIONS(4258), + [anon_sym_CARET] = ACTIONS(4260), + [anon_sym_AMP] = ACTIONS(4258), + [anon_sym_EQ_EQ] = ACTIONS(4260), + [anon_sym_BANG_EQ] = ACTIONS(4260), + [anon_sym_GT] = ACTIONS(4258), + [anon_sym_GT_EQ] = ACTIONS(4260), + [anon_sym_LT_EQ] = ACTIONS(4260), + [anon_sym_LT] = ACTIONS(4258), + [anon_sym_LT_LT] = ACTIONS(4260), + [anon_sym_GT_GT] = ACTIONS(4260), + [anon_sym_SEMI] = ACTIONS(4260), + [anon_sym___extension__] = ACTIONS(4258), + [anon_sym_extern] = ACTIONS(4258), + [anon_sym___attribute__] = ACTIONS(4258), + [anon_sym___attribute] = ACTIONS(4258), + [anon_sym_noreturn] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(4260), + [anon_sym_RBRACK] = ACTIONS(4260), + [anon_sym___declspec] = ACTIONS(4258), + [anon_sym_LBRACE] = ACTIONS(4260), + [anon_sym_RBRACE] = ACTIONS(4260), + [anon_sym_signed] = ACTIONS(4258), + [anon_sym_unsigned] = ACTIONS(4258), + [anon_sym_long] = ACTIONS(4258), + [anon_sym_short] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_ATautoreleasepool] = ACTIONS(4260), + [anon_sym_auto] = ACTIONS(4258), + [anon_sym_register] = ACTIONS(4258), + [anon_sym_inline] = ACTIONS(4258), + [anon_sym___inline] = ACTIONS(4258), + [anon_sym___inline__] = ACTIONS(4258), + [anon_sym___forceinline] = ACTIONS(4258), + [anon_sym_thread_local] = ACTIONS(4258), + [anon_sym___thread] = ACTIONS(4258), + [anon_sym_CG_EXTERN] = ACTIONS(4258), + [anon_sym_CG_INLINE] = ACTIONS(4258), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4258), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4258), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4258), + [anon_sym_IBOutlet] = ACTIONS(4258), + [anon_sym_IBInspectable] = ACTIONS(4258), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4258), + [anon_sym_NS_INLINE] = ACTIONS(4258), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4258), + [anon_sym_OBJC_EXPORT] = ACTIONS(4258), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4258), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4258), + [anon_sym_const] = ACTIONS(4258), + [anon_sym_constexpr] = ACTIONS(4258), + [anon_sym_volatile] = ACTIONS(4258), + [anon_sym_restrict] = ACTIONS(4258), + [anon_sym___restrict__] = ACTIONS(4258), + [anon_sym__Atomic] = ACTIONS(4258), + [anon_sym__Noreturn] = ACTIONS(4258), + [anon_sym__Nonnull] = ACTIONS(4258), + [anon_sym_nullable] = ACTIONS(4258), + [anon_sym__Complex] = ACTIONS(4258), + [anon_sym__Nullable] = ACTIONS(4258), + [anon_sym__Nullable_result] = ACTIONS(4258), + [anon_sym__Null_unspecified] = ACTIONS(4258), + [anon_sym___autoreleasing] = ACTIONS(4258), + [anon_sym___block] = ACTIONS(4258), + [anon_sym___bridge] = ACTIONS(4258), + [anon_sym___bridge_retained] = ACTIONS(4258), + [anon_sym___bridge_transfer] = ACTIONS(4258), + [anon_sym___complex] = ACTIONS(4258), + [anon_sym___const] = ACTIONS(4258), + [anon_sym___imag] = ACTIONS(4258), + [anon_sym___kindof] = ACTIONS(4258), + [anon_sym___nonnull] = ACTIONS(4258), + [anon_sym___nullable] = ACTIONS(4258), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4258), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4258), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4258), + [anon_sym___real] = ACTIONS(4258), + [anon_sym___strong] = ACTIONS(4258), + [anon_sym___unsafe_unretained] = ACTIONS(4258), + [anon_sym___unused] = ACTIONS(4258), + [anon_sym___weak] = ACTIONS(4258), + [anon_sym_alignas] = ACTIONS(4258), + [anon_sym__Alignas] = ACTIONS(4258), + [sym_primitive_type] = ACTIONS(4258), + [anon_sym_enum] = ACTIONS(4258), + [anon_sym_COLON] = ACTIONS(4260), + [anon_sym_struct] = ACTIONS(4258), + [anon_sym_union] = ACTIONS(4258), + [anon_sym_QMARK] = ACTIONS(4260), + [anon_sym_DASH_DASH] = ACTIONS(4260), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_DOT] = ACTIONS(4258), + [anon_sym_DASH_GT] = ACTIONS(4260), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4258), + [anon_sym___typeof] = ACTIONS(4258), + [anon_sym_typeof] = ACTIONS(4258), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4258), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4258), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4258), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4258), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4258), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4258), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4258), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4258), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4258), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4258), + [anon_sym_NS_AVAILABLE] = ACTIONS(4258), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4258), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4258), + [anon_sym_API_AVAILABLE] = ACTIONS(4258), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4258), + [anon_sym_API_DEPRECATED] = ACTIONS(4258), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4258), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4258), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4258), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4258), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4258), + [anon_sym___deprecated_msg] = ACTIONS(4258), + [anon_sym___deprecated_enum_msg] = ACTIONS(4258), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4258), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4258), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4258), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4258), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4258), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4258), + [anon_sym_BOOL] = ACTIONS(4258), + [anon_sym_IMP] = ACTIONS(4258), + [anon_sym_SEL] = ACTIONS(4258), + [anon_sym_Class] = ACTIONS(4258), + [anon_sym_id] = ACTIONS(4258), + }, + [1664] = { + [sym_identifier] = ACTIONS(4194), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_RPAREN] = ACTIONS(4196), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4196), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4196), + [anon_sym_LPAREN2] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE] = ACTIONS(4194), + [anon_sym_CARET] = ACTIONS(4196), + [anon_sym_AMP] = ACTIONS(4194), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_LT_LT] = ACTIONS(4196), + [anon_sym_GT_GT] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym___extension__] = ACTIONS(4194), + [anon_sym_extern] = ACTIONS(4194), + [anon_sym___attribute__] = ACTIONS(4194), + [anon_sym___attribute] = ACTIONS(4194), + [anon_sym_noreturn] = ACTIONS(4194), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_RBRACK] = ACTIONS(4196), + [anon_sym___declspec] = ACTIONS(4194), + [anon_sym_LBRACE] = ACTIONS(4196), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_signed] = ACTIONS(4194), + [anon_sym_unsigned] = ACTIONS(4194), + [anon_sym_long] = ACTIONS(4194), + [anon_sym_short] = ACTIONS(4194), + [anon_sym_static] = ACTIONS(4194), + [anon_sym_ATautoreleasepool] = ACTIONS(4196), + [anon_sym_auto] = ACTIONS(4194), + [anon_sym_register] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym___inline] = ACTIONS(4194), + [anon_sym___inline__] = ACTIONS(4194), + [anon_sym___forceinline] = ACTIONS(4194), + [anon_sym_thread_local] = ACTIONS(4194), + [anon_sym___thread] = ACTIONS(4194), + [anon_sym_CG_EXTERN] = ACTIONS(4194), + [anon_sym_CG_INLINE] = ACTIONS(4194), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4194), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4194), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4194), + [anon_sym_IBOutlet] = ACTIONS(4194), + [anon_sym_IBInspectable] = ACTIONS(4194), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4194), + [anon_sym_NS_INLINE] = ACTIONS(4194), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4194), + [anon_sym_OBJC_EXPORT] = ACTIONS(4194), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4194), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4194), + [anon_sym_const] = ACTIONS(4194), + [anon_sym_constexpr] = ACTIONS(4194), + [anon_sym_volatile] = ACTIONS(4194), + [anon_sym_restrict] = ACTIONS(4194), + [anon_sym___restrict__] = ACTIONS(4194), + [anon_sym__Atomic] = ACTIONS(4194), + [anon_sym__Noreturn] = ACTIONS(4194), + [anon_sym__Nonnull] = ACTIONS(4194), + [anon_sym_nullable] = ACTIONS(4194), + [anon_sym__Complex] = ACTIONS(4194), + [anon_sym__Nullable] = ACTIONS(4194), + [anon_sym__Nullable_result] = ACTIONS(4194), + [anon_sym__Null_unspecified] = ACTIONS(4194), + [anon_sym___autoreleasing] = ACTIONS(4194), + [anon_sym___block] = ACTIONS(4194), + [anon_sym___bridge] = ACTIONS(4194), + [anon_sym___bridge_retained] = ACTIONS(4194), + [anon_sym___bridge_transfer] = ACTIONS(4194), + [anon_sym___complex] = ACTIONS(4194), + [anon_sym___const] = ACTIONS(4194), + [anon_sym___imag] = ACTIONS(4194), + [anon_sym___kindof] = ACTIONS(4194), + [anon_sym___nonnull] = ACTIONS(4194), + [anon_sym___nullable] = ACTIONS(4194), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4194), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4194), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4194), + [anon_sym___real] = ACTIONS(4194), + [anon_sym___strong] = ACTIONS(4194), + [anon_sym___unsafe_unretained] = ACTIONS(4194), + [anon_sym___unused] = ACTIONS(4194), + [anon_sym___weak] = ACTIONS(4194), + [anon_sym_alignas] = ACTIONS(4194), + [anon_sym__Alignas] = ACTIONS(4194), + [sym_primitive_type] = ACTIONS(4194), + [anon_sym_enum] = ACTIONS(4194), + [anon_sym_COLON] = ACTIONS(4196), + [anon_sym_struct] = ACTIONS(4194), + [anon_sym_union] = ACTIONS(4194), + [anon_sym_QMARK] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_DASH_GT] = ACTIONS(4196), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4194), + [anon_sym___typeof] = ACTIONS(4194), + [anon_sym_typeof] = ACTIONS(4194), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4194), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4194), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4194), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4194), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4194), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4194), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4194), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4194), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4194), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4194), + [anon_sym_NS_AVAILABLE] = ACTIONS(4194), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4194), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4194), + [anon_sym_API_AVAILABLE] = ACTIONS(4194), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4194), + [anon_sym_API_DEPRECATED] = ACTIONS(4194), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4194), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4194), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4194), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4194), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4194), + [anon_sym___deprecated_msg] = ACTIONS(4194), + [anon_sym___deprecated_enum_msg] = ACTIONS(4194), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4194), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4194), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4194), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4194), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4194), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4194), + [anon_sym_BOOL] = ACTIONS(4194), + [anon_sym_IMP] = ACTIONS(4194), + [anon_sym_SEL] = ACTIONS(4194), + [anon_sym_Class] = ACTIONS(4194), + [anon_sym_id] = ACTIONS(4194), + }, + [1665] = { + [sym_identifier] = ACTIONS(4144), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), + [anon_sym_COMMA] = ACTIONS(4146), + [anon_sym_RPAREN] = ACTIONS(4146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4146), + [anon_sym_LPAREN2] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4144), + [anon_sym_STAR] = ACTIONS(4146), + [anon_sym_SLASH] = ACTIONS(4144), + [anon_sym_PERCENT] = ACTIONS(4146), + [anon_sym_PIPE_PIPE] = ACTIONS(4146), + [anon_sym_AMP_AMP] = ACTIONS(4146), + [anon_sym_PIPE] = ACTIONS(4144), + [anon_sym_CARET] = ACTIONS(4146), + [anon_sym_AMP] = ACTIONS(4144), + [anon_sym_EQ_EQ] = ACTIONS(4146), + [anon_sym_BANG_EQ] = ACTIONS(4146), + [anon_sym_GT] = ACTIONS(4144), + [anon_sym_GT_EQ] = ACTIONS(4146), + [anon_sym_LT_EQ] = ACTIONS(4146), + [anon_sym_LT] = ACTIONS(4144), + [anon_sym_LT_LT] = ACTIONS(4146), + [anon_sym_GT_GT] = ACTIONS(4146), + [anon_sym_SEMI] = ACTIONS(4146), + [anon_sym___extension__] = ACTIONS(4144), + [anon_sym_extern] = ACTIONS(4144), + [anon_sym___attribute__] = ACTIONS(4144), + [anon_sym___attribute] = ACTIONS(4144), + [anon_sym_noreturn] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4146), + [anon_sym_RBRACK] = ACTIONS(4146), + [anon_sym___declspec] = ACTIONS(4144), + [anon_sym_LBRACE] = ACTIONS(4146), + [anon_sym_RBRACE] = ACTIONS(4146), + [anon_sym_signed] = ACTIONS(4144), + [anon_sym_unsigned] = ACTIONS(4144), + [anon_sym_long] = ACTIONS(4144), + [anon_sym_short] = ACTIONS(4144), + [anon_sym_static] = ACTIONS(4144), + [anon_sym_ATautoreleasepool] = ACTIONS(4146), + [anon_sym_auto] = ACTIONS(4144), + [anon_sym_register] = ACTIONS(4144), + [anon_sym_inline] = ACTIONS(4144), + [anon_sym___inline] = ACTIONS(4144), + [anon_sym___inline__] = ACTIONS(4144), + [anon_sym___forceinline] = ACTIONS(4144), + [anon_sym_thread_local] = ACTIONS(4144), + [anon_sym___thread] = ACTIONS(4144), + [anon_sym_CG_EXTERN] = ACTIONS(4144), + [anon_sym_CG_INLINE] = ACTIONS(4144), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4144), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4144), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4144), + [anon_sym_IBOutlet] = ACTIONS(4144), + [anon_sym_IBInspectable] = ACTIONS(4144), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4144), + [anon_sym_NS_INLINE] = ACTIONS(4144), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4144), + [anon_sym_OBJC_EXPORT] = ACTIONS(4144), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4144), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4144), + [anon_sym_const] = ACTIONS(4144), + [anon_sym_constexpr] = ACTIONS(4144), + [anon_sym_volatile] = ACTIONS(4144), + [anon_sym_restrict] = ACTIONS(4144), + [anon_sym___restrict__] = ACTIONS(4144), + [anon_sym__Atomic] = ACTIONS(4144), + [anon_sym__Noreturn] = ACTIONS(4144), + [anon_sym__Nonnull] = ACTIONS(4144), + [anon_sym_nullable] = ACTIONS(4144), + [anon_sym__Complex] = ACTIONS(4144), + [anon_sym__Nullable] = ACTIONS(4144), + [anon_sym__Nullable_result] = ACTIONS(4144), + [anon_sym__Null_unspecified] = ACTIONS(4144), + [anon_sym___autoreleasing] = ACTIONS(4144), + [anon_sym___block] = ACTIONS(4144), + [anon_sym___bridge] = ACTIONS(4144), + [anon_sym___bridge_retained] = ACTIONS(4144), + [anon_sym___bridge_transfer] = ACTIONS(4144), + [anon_sym___complex] = ACTIONS(4144), + [anon_sym___const] = ACTIONS(4144), + [anon_sym___imag] = ACTIONS(4144), + [anon_sym___kindof] = ACTIONS(4144), + [anon_sym___nonnull] = ACTIONS(4144), + [anon_sym___nullable] = ACTIONS(4144), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4144), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4144), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4144), + [anon_sym___real] = ACTIONS(4144), + [anon_sym___strong] = ACTIONS(4144), + [anon_sym___unsafe_unretained] = ACTIONS(4144), + [anon_sym___unused] = ACTIONS(4144), + [anon_sym___weak] = ACTIONS(4144), + [anon_sym_alignas] = ACTIONS(4144), + [anon_sym__Alignas] = ACTIONS(4144), + [sym_primitive_type] = ACTIONS(4144), + [anon_sym_enum] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(4146), + [anon_sym_struct] = ACTIONS(4144), + [anon_sym_union] = ACTIONS(4144), + [anon_sym_QMARK] = ACTIONS(4146), + [anon_sym_DASH_DASH] = ACTIONS(4146), + [anon_sym_PLUS_PLUS] = ACTIONS(4146), + [anon_sym_DOT] = ACTIONS(4144), + [anon_sym_DASH_GT] = ACTIONS(4146), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4144), + [anon_sym___typeof] = ACTIONS(4144), + [anon_sym_typeof] = ACTIONS(4144), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4144), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4144), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4144), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4144), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4144), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4144), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4144), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4144), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4144), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4144), + [anon_sym_NS_AVAILABLE] = ACTIONS(4144), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4144), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4144), + [anon_sym_API_AVAILABLE] = ACTIONS(4144), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4144), + [anon_sym_API_DEPRECATED] = ACTIONS(4144), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4144), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4144), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4144), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4144), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4144), + [anon_sym___deprecated_msg] = ACTIONS(4144), + [anon_sym___deprecated_enum_msg] = ACTIONS(4144), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4144), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4144), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4144), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4144), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4144), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4144), + [anon_sym_BOOL] = ACTIONS(4144), + [anon_sym_IMP] = ACTIONS(4144), + [anon_sym_SEL] = ACTIONS(4144), + [anon_sym_Class] = ACTIONS(4144), + [anon_sym_id] = ACTIONS(4144), + }, + [1666] = { + [sym_identifier] = ACTIONS(4148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4150), + [anon_sym_COMMA] = ACTIONS(4150), + [anon_sym_RPAREN] = ACTIONS(4150), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4150), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4150), + [anon_sym_LPAREN2] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4148), + [anon_sym_PLUS] = ACTIONS(4148), + [anon_sym_STAR] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4148), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_PIPE_PIPE] = ACTIONS(4150), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_PIPE] = ACTIONS(4148), + [anon_sym_CARET] = ACTIONS(4150), + [anon_sym_AMP] = ACTIONS(4148), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4148), + [anon_sym_GT_EQ] = ACTIONS(4150), + [anon_sym_LT_EQ] = ACTIONS(4150), + [anon_sym_LT] = ACTIONS(4148), + [anon_sym_LT_LT] = ACTIONS(4150), + [anon_sym_GT_GT] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4150), + [anon_sym___extension__] = ACTIONS(4148), + [anon_sym_extern] = ACTIONS(4148), + [anon_sym___attribute__] = ACTIONS(4148), + [anon_sym___attribute] = ACTIONS(4148), + [anon_sym_noreturn] = ACTIONS(4148), + [anon_sym_LBRACK] = ACTIONS(4150), + [anon_sym_RBRACK] = ACTIONS(4150), + [anon_sym___declspec] = ACTIONS(4148), + [anon_sym_LBRACE] = ACTIONS(4150), + [anon_sym_RBRACE] = ACTIONS(4150), + [anon_sym_signed] = ACTIONS(4148), + [anon_sym_unsigned] = ACTIONS(4148), + [anon_sym_long] = ACTIONS(4148), + [anon_sym_short] = ACTIONS(4148), + [anon_sym_static] = ACTIONS(4148), + [anon_sym_ATautoreleasepool] = ACTIONS(4150), + [anon_sym_auto] = ACTIONS(4148), + [anon_sym_register] = ACTIONS(4148), + [anon_sym_inline] = ACTIONS(4148), + [anon_sym___inline] = ACTIONS(4148), + [anon_sym___inline__] = ACTIONS(4148), + [anon_sym___forceinline] = ACTIONS(4148), + [anon_sym_thread_local] = ACTIONS(4148), + [anon_sym___thread] = ACTIONS(4148), + [anon_sym_CG_EXTERN] = ACTIONS(4148), + [anon_sym_CG_INLINE] = ACTIONS(4148), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4148), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4148), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4148), + [anon_sym_IBOutlet] = ACTIONS(4148), + [anon_sym_IBInspectable] = ACTIONS(4148), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4148), + [anon_sym_NS_INLINE] = ACTIONS(4148), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4148), + [anon_sym_OBJC_EXPORT] = ACTIONS(4148), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4148), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4148), + [anon_sym_const] = ACTIONS(4148), + [anon_sym_constexpr] = ACTIONS(4148), + [anon_sym_volatile] = ACTIONS(4148), + [anon_sym_restrict] = ACTIONS(4148), + [anon_sym___restrict__] = ACTIONS(4148), + [anon_sym__Atomic] = ACTIONS(4148), + [anon_sym__Noreturn] = ACTIONS(4148), + [anon_sym__Nonnull] = ACTIONS(4148), + [anon_sym_nullable] = ACTIONS(4148), + [anon_sym__Complex] = ACTIONS(4148), + [anon_sym__Nullable] = ACTIONS(4148), + [anon_sym__Nullable_result] = ACTIONS(4148), + [anon_sym__Null_unspecified] = ACTIONS(4148), + [anon_sym___autoreleasing] = ACTIONS(4148), + [anon_sym___block] = ACTIONS(4148), + [anon_sym___bridge] = ACTIONS(4148), + [anon_sym___bridge_retained] = ACTIONS(4148), + [anon_sym___bridge_transfer] = ACTIONS(4148), + [anon_sym___complex] = ACTIONS(4148), + [anon_sym___const] = ACTIONS(4148), + [anon_sym___imag] = ACTIONS(4148), + [anon_sym___kindof] = ACTIONS(4148), + [anon_sym___nonnull] = ACTIONS(4148), + [anon_sym___nullable] = ACTIONS(4148), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4148), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4148), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4148), + [anon_sym___real] = ACTIONS(4148), + [anon_sym___strong] = ACTIONS(4148), + [anon_sym___unsafe_unretained] = ACTIONS(4148), + [anon_sym___unused] = ACTIONS(4148), + [anon_sym___weak] = ACTIONS(4148), + [anon_sym_alignas] = ACTIONS(4148), + [anon_sym__Alignas] = ACTIONS(4148), + [sym_primitive_type] = ACTIONS(4148), + [anon_sym_enum] = ACTIONS(4148), + [anon_sym_COLON] = ACTIONS(4150), + [anon_sym_struct] = ACTIONS(4148), + [anon_sym_union] = ACTIONS(4148), + [anon_sym_QMARK] = ACTIONS(4150), + [anon_sym_DASH_DASH] = ACTIONS(4150), + [anon_sym_PLUS_PLUS] = ACTIONS(4150), + [anon_sym_DOT] = ACTIONS(4148), + [anon_sym_DASH_GT] = ACTIONS(4150), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4148), + [anon_sym___typeof] = ACTIONS(4148), + [anon_sym_typeof] = ACTIONS(4148), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4148), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4148), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4148), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4148), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4148), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4148), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4148), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4148), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4148), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4148), + [anon_sym_NS_AVAILABLE] = ACTIONS(4148), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4148), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4148), + [anon_sym_API_AVAILABLE] = ACTIONS(4148), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4148), + [anon_sym_API_DEPRECATED] = ACTIONS(4148), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4148), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4148), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4148), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4148), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4148), + [anon_sym___deprecated_msg] = ACTIONS(4148), + [anon_sym___deprecated_enum_msg] = ACTIONS(4148), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4148), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4148), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4148), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4148), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4148), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4148), + [anon_sym_BOOL] = ACTIONS(4148), + [anon_sym_IMP] = ACTIONS(4148), + [anon_sym_SEL] = ACTIONS(4148), + [anon_sym_Class] = ACTIONS(4148), + [anon_sym_id] = ACTIONS(4148), + }, + [1667] = { + [sym_string_literal] = STATE(1633), + [sym_identifier] = ACTIONS(3995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_RPAREN] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(3997), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(3995), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(3995), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(3995), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym___extension__] = ACTIONS(3995), + [anon_sym_extern] = ACTIONS(3995), + [anon_sym___attribute__] = ACTIONS(3995), + [anon_sym___attribute] = ACTIONS(3995), + [anon_sym_noreturn] = ACTIONS(3995), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_RBRACK] = ACTIONS(3997), + [anon_sym___declspec] = ACTIONS(3995), + [anon_sym_RBRACE] = ACTIONS(3997), + [anon_sym_static] = ACTIONS(3995), + [anon_sym_EQ] = ACTIONS(3995), + [anon_sym_auto] = ACTIONS(3995), + [anon_sym_register] = ACTIONS(3995), + [anon_sym_inline] = ACTIONS(3995), + [anon_sym___inline] = ACTIONS(3995), + [anon_sym___inline__] = ACTIONS(3995), + [anon_sym___forceinline] = ACTIONS(3995), + [anon_sym_thread_local] = ACTIONS(3995), + [anon_sym___thread] = ACTIONS(3995), + [anon_sym_CG_EXTERN] = ACTIONS(3995), + [anon_sym_CG_INLINE] = ACTIONS(3995), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3995), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3995), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3995), + [anon_sym_IBOutlet] = ACTIONS(3995), + [anon_sym_IBInspectable] = ACTIONS(3995), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3995), + [anon_sym_NS_INLINE] = ACTIONS(3995), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3995), + [anon_sym_OBJC_EXPORT] = ACTIONS(3995), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3995), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3995), + [anon_sym_const] = ACTIONS(3995), + [anon_sym_constexpr] = ACTIONS(3995), + [anon_sym_volatile] = ACTIONS(3995), + [anon_sym_restrict] = ACTIONS(3995), + [anon_sym___restrict__] = ACTIONS(3995), + [anon_sym__Atomic] = ACTIONS(3995), + [anon_sym__Noreturn] = ACTIONS(3995), + [anon_sym__Nonnull] = ACTIONS(3995), + [anon_sym_nullable] = ACTIONS(3995), + [anon_sym__Complex] = ACTIONS(3995), + [anon_sym__Nullable] = ACTIONS(3995), + [anon_sym__Nullable_result] = ACTIONS(3995), + [anon_sym__Null_unspecified] = ACTIONS(3995), + [anon_sym___autoreleasing] = ACTIONS(3995), + [anon_sym___block] = ACTIONS(3995), + [anon_sym___bridge] = ACTIONS(3995), + [anon_sym___bridge_retained] = ACTIONS(3995), + [anon_sym___bridge_transfer] = ACTIONS(3995), + [anon_sym___complex] = ACTIONS(3995), + [anon_sym___const] = ACTIONS(3995), + [anon_sym___imag] = ACTIONS(3995), + [anon_sym___kindof] = ACTIONS(3995), + [anon_sym___nonnull] = ACTIONS(3995), + [anon_sym___nullable] = ACTIONS(3995), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3995), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3995), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3995), + [anon_sym___real] = ACTIONS(3995), + [anon_sym___strong] = ACTIONS(3995), + [anon_sym___unsafe_unretained] = ACTIONS(3995), + [anon_sym___unused] = ACTIONS(3995), + [anon_sym___weak] = ACTIONS(3995), + [anon_sym_alignas] = ACTIONS(3995), + [anon_sym__Alignas] = ACTIONS(3995), + [anon_sym_COLON] = ACTIONS(3997), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(3997), + [anon_sym_SLASH_EQ] = ACTIONS(3997), + [anon_sym_PERCENT_EQ] = ACTIONS(3997), + [anon_sym_PLUS_EQ] = ACTIONS(3997), + [anon_sym_DASH_EQ] = ACTIONS(3997), + [anon_sym_LT_LT_EQ] = ACTIONS(3997), + [anon_sym_GT_GT_EQ] = ACTIONS(3997), + [anon_sym_AMP_EQ] = ACTIONS(3997), + [anon_sym_CARET_EQ] = ACTIONS(3997), + [anon_sym_PIPE_EQ] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(4630), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3995), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3995), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3995), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3995), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3995), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3995), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3995), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3995), + [anon_sym_NS_AVAILABLE] = ACTIONS(3995), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3995), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_API_AVAILABLE] = ACTIONS(3995), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_API_DEPRECATED] = ACTIONS(3995), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3995), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3995), + [anon_sym___deprecated_msg] = ACTIONS(3995), + [anon_sym___deprecated_enum_msg] = ACTIONS(3995), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3995), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3995), + }, + [1668] = { + [sym_identifier] = ACTIONS(4194), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_RPAREN] = ACTIONS(4196), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4196), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4196), + [anon_sym_LPAREN2] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE] = ACTIONS(4194), + [anon_sym_CARET] = ACTIONS(4196), + [anon_sym_AMP] = ACTIONS(4194), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_LT_LT] = ACTIONS(4196), + [anon_sym_GT_GT] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym___extension__] = ACTIONS(4194), + [anon_sym_extern] = ACTIONS(4194), + [anon_sym___attribute__] = ACTIONS(4194), + [anon_sym___attribute] = ACTIONS(4194), + [anon_sym_noreturn] = ACTIONS(4194), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_RBRACK] = ACTIONS(4196), + [anon_sym___declspec] = ACTIONS(4194), + [anon_sym_LBRACE] = ACTIONS(4196), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_signed] = ACTIONS(4194), + [anon_sym_unsigned] = ACTIONS(4194), + [anon_sym_long] = ACTIONS(4194), + [anon_sym_short] = ACTIONS(4194), + [anon_sym_static] = ACTIONS(4194), + [anon_sym_ATautoreleasepool] = ACTIONS(4196), + [anon_sym_auto] = ACTIONS(4194), + [anon_sym_register] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym___inline] = ACTIONS(4194), + [anon_sym___inline__] = ACTIONS(4194), + [anon_sym___forceinline] = ACTIONS(4194), + [anon_sym_thread_local] = ACTIONS(4194), + [anon_sym___thread] = ACTIONS(4194), + [anon_sym_CG_EXTERN] = ACTIONS(4194), + [anon_sym_CG_INLINE] = ACTIONS(4194), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4194), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4194), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4194), + [anon_sym_IBOutlet] = ACTIONS(4194), + [anon_sym_IBInspectable] = ACTIONS(4194), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4194), + [anon_sym_NS_INLINE] = ACTIONS(4194), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4194), + [anon_sym_OBJC_EXPORT] = ACTIONS(4194), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4194), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4194), + [anon_sym_const] = ACTIONS(4194), + [anon_sym_constexpr] = ACTIONS(4194), + [anon_sym_volatile] = ACTIONS(4194), + [anon_sym_restrict] = ACTIONS(4194), + [anon_sym___restrict__] = ACTIONS(4194), + [anon_sym__Atomic] = ACTIONS(4194), + [anon_sym__Noreturn] = ACTIONS(4194), + [anon_sym__Nonnull] = ACTIONS(4194), + [anon_sym_nullable] = ACTIONS(4194), + [anon_sym__Complex] = ACTIONS(4194), + [anon_sym__Nullable] = ACTIONS(4194), + [anon_sym__Nullable_result] = ACTIONS(4194), + [anon_sym__Null_unspecified] = ACTIONS(4194), + [anon_sym___autoreleasing] = ACTIONS(4194), + [anon_sym___block] = ACTIONS(4194), + [anon_sym___bridge] = ACTIONS(4194), + [anon_sym___bridge_retained] = ACTIONS(4194), + [anon_sym___bridge_transfer] = ACTIONS(4194), + [anon_sym___complex] = ACTIONS(4194), + [anon_sym___const] = ACTIONS(4194), + [anon_sym___imag] = ACTIONS(4194), + [anon_sym___kindof] = ACTIONS(4194), + [anon_sym___nonnull] = ACTIONS(4194), + [anon_sym___nullable] = ACTIONS(4194), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4194), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4194), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4194), + [anon_sym___real] = ACTIONS(4194), + [anon_sym___strong] = ACTIONS(4194), + [anon_sym___unsafe_unretained] = ACTIONS(4194), + [anon_sym___unused] = ACTIONS(4194), + [anon_sym___weak] = ACTIONS(4194), + [anon_sym_alignas] = ACTIONS(4194), + [anon_sym__Alignas] = ACTIONS(4194), + [sym_primitive_type] = ACTIONS(4194), + [anon_sym_enum] = ACTIONS(4194), + [anon_sym_COLON] = ACTIONS(4196), + [anon_sym_struct] = ACTIONS(4194), + [anon_sym_union] = ACTIONS(4194), + [anon_sym_QMARK] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_DASH_GT] = ACTIONS(4196), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4194), + [anon_sym___typeof] = ACTIONS(4194), + [anon_sym_typeof] = ACTIONS(4194), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4194), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4194), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4194), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4194), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4194), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4194), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4194), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4194), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4194), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4194), + [anon_sym_NS_AVAILABLE] = ACTIONS(4194), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4194), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4194), + [anon_sym_API_AVAILABLE] = ACTIONS(4194), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4194), + [anon_sym_API_DEPRECATED] = ACTIONS(4194), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4194), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4194), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4194), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4194), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4194), + [anon_sym___deprecated_msg] = ACTIONS(4194), + [anon_sym___deprecated_enum_msg] = ACTIONS(4194), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4194), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4194), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4194), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4194), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4194), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4194), + [anon_sym_BOOL] = ACTIONS(4194), + [anon_sym_IMP] = ACTIONS(4194), + [anon_sym_SEL] = ACTIONS(4194), + [anon_sym_Class] = ACTIONS(4194), + [anon_sym_id] = ACTIONS(4194), + }, + [1669] = { + [sym_identifier] = ACTIONS(4058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4060), + [anon_sym_COMMA] = ACTIONS(4060), + [anon_sym_RPAREN] = ACTIONS(4060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4060), + [anon_sym_LPAREN2] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4058), + [anon_sym_PLUS] = ACTIONS(4058), + [anon_sym_STAR] = ACTIONS(4060), + [anon_sym_SLASH] = ACTIONS(4058), + [anon_sym_PERCENT] = ACTIONS(4060), + [anon_sym_PIPE_PIPE] = ACTIONS(4060), + [anon_sym_AMP_AMP] = ACTIONS(4060), + [anon_sym_PIPE] = ACTIONS(4058), + [anon_sym_CARET] = ACTIONS(4060), + [anon_sym_AMP] = ACTIONS(4058), + [anon_sym_EQ_EQ] = ACTIONS(4060), + [anon_sym_BANG_EQ] = ACTIONS(4060), + [anon_sym_GT] = ACTIONS(4058), + [anon_sym_GT_EQ] = ACTIONS(4060), + [anon_sym_LT_EQ] = ACTIONS(4060), + [anon_sym_LT] = ACTIONS(4058), + [anon_sym_LT_LT] = ACTIONS(4060), + [anon_sym_GT_GT] = ACTIONS(4060), + [anon_sym_SEMI] = ACTIONS(4060), + [anon_sym___extension__] = ACTIONS(4058), + [anon_sym_extern] = ACTIONS(4058), + [anon_sym___attribute__] = ACTIONS(4058), + [anon_sym___attribute] = ACTIONS(4058), + [anon_sym_noreturn] = ACTIONS(4058), + [anon_sym_LBRACK] = ACTIONS(4060), + [anon_sym_RBRACK] = ACTIONS(4060), + [anon_sym___declspec] = ACTIONS(4058), + [anon_sym_LBRACE] = ACTIONS(4060), + [anon_sym_RBRACE] = ACTIONS(4060), + [anon_sym_signed] = ACTIONS(4058), + [anon_sym_unsigned] = ACTIONS(4058), + [anon_sym_long] = ACTIONS(4058), + [anon_sym_short] = ACTIONS(4058), + [anon_sym_static] = ACTIONS(4058), + [anon_sym_ATautoreleasepool] = ACTIONS(4060), + [anon_sym_auto] = ACTIONS(4058), + [anon_sym_register] = ACTIONS(4058), + [anon_sym_inline] = ACTIONS(4058), + [anon_sym___inline] = ACTIONS(4058), + [anon_sym___inline__] = ACTIONS(4058), + [anon_sym___forceinline] = ACTIONS(4058), + [anon_sym_thread_local] = ACTIONS(4058), + [anon_sym___thread] = ACTIONS(4058), + [anon_sym_CG_EXTERN] = ACTIONS(4058), + [anon_sym_CG_INLINE] = ACTIONS(4058), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4058), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4058), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4058), + [anon_sym_IBOutlet] = ACTIONS(4058), + [anon_sym_IBInspectable] = ACTIONS(4058), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4058), + [anon_sym_NS_INLINE] = ACTIONS(4058), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4058), + [anon_sym_OBJC_EXPORT] = ACTIONS(4058), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4058), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4058), + [anon_sym_const] = ACTIONS(4058), + [anon_sym_constexpr] = ACTIONS(4058), + [anon_sym_volatile] = ACTIONS(4058), + [anon_sym_restrict] = ACTIONS(4058), + [anon_sym___restrict__] = ACTIONS(4058), + [anon_sym__Atomic] = ACTIONS(4058), + [anon_sym__Noreturn] = ACTIONS(4058), + [anon_sym__Nonnull] = ACTIONS(4058), + [anon_sym_nullable] = ACTIONS(4058), + [anon_sym__Complex] = ACTIONS(4058), + [anon_sym__Nullable] = ACTIONS(4058), + [anon_sym__Nullable_result] = ACTIONS(4058), + [anon_sym__Null_unspecified] = ACTIONS(4058), + [anon_sym___autoreleasing] = ACTIONS(4058), + [anon_sym___block] = ACTIONS(4058), + [anon_sym___bridge] = ACTIONS(4058), + [anon_sym___bridge_retained] = ACTIONS(4058), + [anon_sym___bridge_transfer] = ACTIONS(4058), + [anon_sym___complex] = ACTIONS(4058), + [anon_sym___const] = ACTIONS(4058), + [anon_sym___imag] = ACTIONS(4058), + [anon_sym___kindof] = ACTIONS(4058), + [anon_sym___nonnull] = ACTIONS(4058), + [anon_sym___nullable] = ACTIONS(4058), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4058), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4058), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4058), + [anon_sym___real] = ACTIONS(4058), + [anon_sym___strong] = ACTIONS(4058), + [anon_sym___unsafe_unretained] = ACTIONS(4058), + [anon_sym___unused] = ACTIONS(4058), + [anon_sym___weak] = ACTIONS(4058), + [anon_sym_alignas] = ACTIONS(4058), + [anon_sym__Alignas] = ACTIONS(4058), + [sym_primitive_type] = ACTIONS(4058), + [anon_sym_enum] = ACTIONS(4058), + [anon_sym_COLON] = ACTIONS(4060), + [anon_sym_struct] = ACTIONS(4058), + [anon_sym_union] = ACTIONS(4058), + [anon_sym_QMARK] = ACTIONS(4060), + [anon_sym_DASH_DASH] = ACTIONS(4060), + [anon_sym_PLUS_PLUS] = ACTIONS(4060), + [anon_sym_DOT] = ACTIONS(4058), + [anon_sym_DASH_GT] = ACTIONS(4060), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4058), + [anon_sym___typeof] = ACTIONS(4058), + [anon_sym_typeof] = ACTIONS(4058), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4058), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4058), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4058), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4058), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4058), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4058), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4058), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4058), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4058), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4058), + [anon_sym_NS_AVAILABLE] = ACTIONS(4058), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4058), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4058), + [anon_sym_API_AVAILABLE] = ACTIONS(4058), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4058), + [anon_sym_API_DEPRECATED] = ACTIONS(4058), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4058), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4058), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4058), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4058), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4058), + [anon_sym___deprecated_msg] = ACTIONS(4058), + [anon_sym___deprecated_enum_msg] = ACTIONS(4058), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4058), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4058), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4058), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4058), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4058), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4058), + [anon_sym_BOOL] = ACTIONS(4058), + [anon_sym_IMP] = ACTIONS(4058), + [anon_sym_SEL] = ACTIONS(4058), + [anon_sym_Class] = ACTIONS(4058), + [anon_sym_id] = ACTIONS(4058), + }, + [1670] = { + [sym_identifier] = ACTIONS(4062), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4064), + [anon_sym_COMMA] = ACTIONS(4064), + [anon_sym_RPAREN] = ACTIONS(4064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4064), + [anon_sym_LPAREN2] = ACTIONS(4064), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_SLASH] = ACTIONS(4062), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_PIPE_PIPE] = ACTIONS(4064), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_PIPE] = ACTIONS(4062), + [anon_sym_CARET] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4062), + [anon_sym_EQ_EQ] = ACTIONS(4064), + [anon_sym_BANG_EQ] = ACTIONS(4064), + [anon_sym_GT] = ACTIONS(4062), + [anon_sym_GT_EQ] = ACTIONS(4064), + [anon_sym_LT_EQ] = ACTIONS(4064), + [anon_sym_LT] = ACTIONS(4062), + [anon_sym_LT_LT] = ACTIONS(4064), + [anon_sym_GT_GT] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4062), + [anon_sym_extern] = ACTIONS(4062), + [anon_sym___attribute__] = ACTIONS(4062), + [anon_sym___attribute] = ACTIONS(4062), + [anon_sym_noreturn] = ACTIONS(4062), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_RBRACK] = ACTIONS(4064), + [anon_sym___declspec] = ACTIONS(4062), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_RBRACE] = ACTIONS(4064), + [anon_sym_signed] = ACTIONS(4062), + [anon_sym_unsigned] = ACTIONS(4062), + [anon_sym_long] = ACTIONS(4062), + [anon_sym_short] = ACTIONS(4062), + [anon_sym_static] = ACTIONS(4062), + [anon_sym_ATautoreleasepool] = ACTIONS(4064), + [anon_sym_auto] = ACTIONS(4062), + [anon_sym_register] = ACTIONS(4062), + [anon_sym_inline] = ACTIONS(4062), + [anon_sym___inline] = ACTIONS(4062), + [anon_sym___inline__] = ACTIONS(4062), + [anon_sym___forceinline] = ACTIONS(4062), + [anon_sym_thread_local] = ACTIONS(4062), + [anon_sym___thread] = ACTIONS(4062), + [anon_sym_CG_EXTERN] = ACTIONS(4062), + [anon_sym_CG_INLINE] = ACTIONS(4062), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4062), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4062), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4062), + [anon_sym_IBOutlet] = ACTIONS(4062), + [anon_sym_IBInspectable] = ACTIONS(4062), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4062), + [anon_sym_NS_INLINE] = ACTIONS(4062), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4062), + [anon_sym_OBJC_EXPORT] = ACTIONS(4062), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4062), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4062), + [anon_sym_const] = ACTIONS(4062), + [anon_sym_constexpr] = ACTIONS(4062), + [anon_sym_volatile] = ACTIONS(4062), + [anon_sym_restrict] = ACTIONS(4062), + [anon_sym___restrict__] = ACTIONS(4062), + [anon_sym__Atomic] = ACTIONS(4062), + [anon_sym__Noreturn] = ACTIONS(4062), + [anon_sym__Nonnull] = ACTIONS(4062), + [anon_sym_nullable] = ACTIONS(4062), + [anon_sym__Complex] = ACTIONS(4062), + [anon_sym__Nullable] = ACTIONS(4062), + [anon_sym__Nullable_result] = ACTIONS(4062), + [anon_sym__Null_unspecified] = ACTIONS(4062), + [anon_sym___autoreleasing] = ACTIONS(4062), + [anon_sym___block] = ACTIONS(4062), + [anon_sym___bridge] = ACTIONS(4062), + [anon_sym___bridge_retained] = ACTIONS(4062), + [anon_sym___bridge_transfer] = ACTIONS(4062), + [anon_sym___complex] = ACTIONS(4062), + [anon_sym___const] = ACTIONS(4062), + [anon_sym___imag] = ACTIONS(4062), + [anon_sym___kindof] = ACTIONS(4062), + [anon_sym___nonnull] = ACTIONS(4062), + [anon_sym___nullable] = ACTIONS(4062), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4062), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4062), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4062), + [anon_sym___real] = ACTIONS(4062), + [anon_sym___strong] = ACTIONS(4062), + [anon_sym___unsafe_unretained] = ACTIONS(4062), + [anon_sym___unused] = ACTIONS(4062), + [anon_sym___weak] = ACTIONS(4062), + [anon_sym_alignas] = ACTIONS(4062), + [anon_sym__Alignas] = ACTIONS(4062), + [sym_primitive_type] = ACTIONS(4062), + [anon_sym_enum] = ACTIONS(4062), + [anon_sym_COLON] = ACTIONS(4064), + [anon_sym_struct] = ACTIONS(4062), + [anon_sym_union] = ACTIONS(4062), + [anon_sym_QMARK] = ACTIONS(4064), + [anon_sym_DASH_DASH] = ACTIONS(4064), + [anon_sym_PLUS_PLUS] = ACTIONS(4064), + [anon_sym_DOT] = ACTIONS(4062), + [anon_sym_DASH_GT] = ACTIONS(4064), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4062), + [anon_sym___typeof] = ACTIONS(4062), + [anon_sym_typeof] = ACTIONS(4062), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4062), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4062), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4062), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4062), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4062), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4062), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4062), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4062), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4062), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4062), + [anon_sym_NS_AVAILABLE] = ACTIONS(4062), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4062), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4062), + [anon_sym_API_AVAILABLE] = ACTIONS(4062), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4062), + [anon_sym_API_DEPRECATED] = ACTIONS(4062), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4062), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4062), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4062), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4062), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4062), + [anon_sym___deprecated_msg] = ACTIONS(4062), + [anon_sym___deprecated_enum_msg] = ACTIONS(4062), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4062), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4062), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4062), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4062), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4062), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4062), + [anon_sym_BOOL] = ACTIONS(4062), + [anon_sym_IMP] = ACTIONS(4062), + [anon_sym_SEL] = ACTIONS(4062), + [anon_sym_Class] = ACTIONS(4062), + [anon_sym_id] = ACTIONS(4062), + }, + [1671] = { + [sym_identifier] = ACTIONS(4136), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4138), + [anon_sym_COMMA] = ACTIONS(4138), + [anon_sym_RPAREN] = ACTIONS(4138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4138), + [anon_sym_LPAREN2] = ACTIONS(4138), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4136), + [anon_sym_STAR] = ACTIONS(4138), + [anon_sym_SLASH] = ACTIONS(4136), + [anon_sym_PERCENT] = ACTIONS(4138), + [anon_sym_PIPE_PIPE] = ACTIONS(4138), + [anon_sym_AMP_AMP] = ACTIONS(4138), + [anon_sym_PIPE] = ACTIONS(4136), + [anon_sym_CARET] = ACTIONS(4138), + [anon_sym_AMP] = ACTIONS(4136), + [anon_sym_EQ_EQ] = ACTIONS(4138), + [anon_sym_BANG_EQ] = ACTIONS(4138), + [anon_sym_GT] = ACTIONS(4136), + [anon_sym_GT_EQ] = ACTIONS(4138), + [anon_sym_LT_EQ] = ACTIONS(4138), + [anon_sym_LT] = ACTIONS(4136), + [anon_sym_LT_LT] = ACTIONS(4138), + [anon_sym_GT_GT] = ACTIONS(4138), + [anon_sym_SEMI] = ACTIONS(4138), + [anon_sym___extension__] = ACTIONS(4136), + [anon_sym_extern] = ACTIONS(4136), + [anon_sym___attribute__] = ACTIONS(4136), + [anon_sym___attribute] = ACTIONS(4136), + [anon_sym_noreturn] = ACTIONS(4136), + [anon_sym_LBRACK] = ACTIONS(4138), + [anon_sym_RBRACK] = ACTIONS(4138), + [anon_sym___declspec] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(4138), + [anon_sym_RBRACE] = ACTIONS(4138), + [anon_sym_signed] = ACTIONS(4136), + [anon_sym_unsigned] = ACTIONS(4136), + [anon_sym_long] = ACTIONS(4136), + [anon_sym_short] = ACTIONS(4136), + [anon_sym_static] = ACTIONS(4136), + [anon_sym_ATautoreleasepool] = ACTIONS(4138), + [anon_sym_auto] = ACTIONS(4136), + [anon_sym_register] = ACTIONS(4136), + [anon_sym_inline] = ACTIONS(4136), + [anon_sym___inline] = ACTIONS(4136), + [anon_sym___inline__] = ACTIONS(4136), + [anon_sym___forceinline] = ACTIONS(4136), + [anon_sym_thread_local] = ACTIONS(4136), + [anon_sym___thread] = ACTIONS(4136), + [anon_sym_CG_EXTERN] = ACTIONS(4136), + [anon_sym_CG_INLINE] = ACTIONS(4136), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4136), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4136), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4136), + [anon_sym_IBOutlet] = ACTIONS(4136), + [anon_sym_IBInspectable] = ACTIONS(4136), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4136), + [anon_sym_NS_INLINE] = ACTIONS(4136), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4136), + [anon_sym_OBJC_EXPORT] = ACTIONS(4136), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4136), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4136), + [anon_sym_const] = ACTIONS(4136), + [anon_sym_constexpr] = ACTIONS(4136), + [anon_sym_volatile] = ACTIONS(4136), + [anon_sym_restrict] = ACTIONS(4136), + [anon_sym___restrict__] = ACTIONS(4136), + [anon_sym__Atomic] = ACTIONS(4136), + [anon_sym__Noreturn] = ACTIONS(4136), + [anon_sym__Nonnull] = ACTIONS(4136), + [anon_sym_nullable] = ACTIONS(4136), + [anon_sym__Complex] = ACTIONS(4136), + [anon_sym__Nullable] = ACTIONS(4136), + [anon_sym__Nullable_result] = ACTIONS(4136), + [anon_sym__Null_unspecified] = ACTIONS(4136), + [anon_sym___autoreleasing] = ACTIONS(4136), + [anon_sym___block] = ACTIONS(4136), + [anon_sym___bridge] = ACTIONS(4136), + [anon_sym___bridge_retained] = ACTIONS(4136), + [anon_sym___bridge_transfer] = ACTIONS(4136), + [anon_sym___complex] = ACTIONS(4136), + [anon_sym___const] = ACTIONS(4136), + [anon_sym___imag] = ACTIONS(4136), + [anon_sym___kindof] = ACTIONS(4136), + [anon_sym___nonnull] = ACTIONS(4136), + [anon_sym___nullable] = ACTIONS(4136), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4136), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4136), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4136), + [anon_sym___real] = ACTIONS(4136), + [anon_sym___strong] = ACTIONS(4136), + [anon_sym___unsafe_unretained] = ACTIONS(4136), + [anon_sym___unused] = ACTIONS(4136), + [anon_sym___weak] = ACTIONS(4136), + [anon_sym_alignas] = ACTIONS(4136), + [anon_sym__Alignas] = ACTIONS(4136), + [sym_primitive_type] = ACTIONS(4136), + [anon_sym_enum] = ACTIONS(4136), + [anon_sym_COLON] = ACTIONS(4138), + [anon_sym_struct] = ACTIONS(4136), + [anon_sym_union] = ACTIONS(4136), + [anon_sym_QMARK] = ACTIONS(4138), + [anon_sym_DASH_DASH] = ACTIONS(4138), + [anon_sym_PLUS_PLUS] = ACTIONS(4138), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_DASH_GT] = ACTIONS(4138), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4136), + [anon_sym___typeof] = ACTIONS(4136), + [anon_sym_typeof] = ACTIONS(4136), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4136), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4136), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4136), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4136), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4136), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4136), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4136), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4136), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4136), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4136), + [anon_sym_NS_AVAILABLE] = ACTIONS(4136), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4136), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4136), + [anon_sym_API_AVAILABLE] = ACTIONS(4136), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4136), + [anon_sym_API_DEPRECATED] = ACTIONS(4136), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4136), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4136), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4136), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4136), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4136), + [anon_sym___deprecated_msg] = ACTIONS(4136), + [anon_sym___deprecated_enum_msg] = ACTIONS(4136), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4136), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4136), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4136), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4136), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4136), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4136), + [anon_sym_BOOL] = ACTIONS(4136), + [anon_sym_IMP] = ACTIONS(4136), + [anon_sym_SEL] = ACTIONS(4136), + [anon_sym_Class] = ACTIONS(4136), + [anon_sym_id] = ACTIONS(4136), + }, + [1672] = { + [sym_identifier] = ACTIONS(4042), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4044), + [anon_sym_COMMA] = ACTIONS(4044), + [anon_sym_RPAREN] = ACTIONS(4044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4044), + [anon_sym_LPAREN2] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4042), + [anon_sym_PLUS] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4042), + [anon_sym_PERCENT] = ACTIONS(4044), + [anon_sym_PIPE_PIPE] = ACTIONS(4044), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_PIPE] = ACTIONS(4042), + [anon_sym_CARET] = ACTIONS(4044), + [anon_sym_AMP] = ACTIONS(4042), + [anon_sym_EQ_EQ] = ACTIONS(4044), + [anon_sym_BANG_EQ] = ACTIONS(4044), + [anon_sym_GT] = ACTIONS(4042), + [anon_sym_GT_EQ] = ACTIONS(4044), + [anon_sym_LT_EQ] = ACTIONS(4044), + [anon_sym_LT] = ACTIONS(4042), + [anon_sym_LT_LT] = ACTIONS(4044), + [anon_sym_GT_GT] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym___extension__] = ACTIONS(4042), + [anon_sym_extern] = ACTIONS(4042), + [anon_sym___attribute__] = ACTIONS(4042), + [anon_sym___attribute] = ACTIONS(4042), + [anon_sym_noreturn] = ACTIONS(4042), + [anon_sym_LBRACK] = ACTIONS(4044), + [anon_sym_RBRACK] = ACTIONS(4044), + [anon_sym___declspec] = ACTIONS(4042), + [anon_sym_LBRACE] = ACTIONS(4044), + [anon_sym_RBRACE] = ACTIONS(4044), + [anon_sym_signed] = ACTIONS(4042), + [anon_sym_unsigned] = ACTIONS(4042), + [anon_sym_long] = ACTIONS(4042), + [anon_sym_short] = ACTIONS(4042), + [anon_sym_static] = ACTIONS(4042), + [anon_sym_ATautoreleasepool] = ACTIONS(4044), + [anon_sym_auto] = ACTIONS(4042), + [anon_sym_register] = ACTIONS(4042), + [anon_sym_inline] = ACTIONS(4042), + [anon_sym___inline] = ACTIONS(4042), + [anon_sym___inline__] = ACTIONS(4042), + [anon_sym___forceinline] = ACTIONS(4042), + [anon_sym_thread_local] = ACTIONS(4042), + [anon_sym___thread] = ACTIONS(4042), + [anon_sym_CG_EXTERN] = ACTIONS(4042), + [anon_sym_CG_INLINE] = ACTIONS(4042), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4042), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4042), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4042), + [anon_sym_IBOutlet] = ACTIONS(4042), + [anon_sym_IBInspectable] = ACTIONS(4042), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4042), + [anon_sym_NS_INLINE] = ACTIONS(4042), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4042), + [anon_sym_OBJC_EXPORT] = ACTIONS(4042), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4042), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4042), + [anon_sym_const] = ACTIONS(4042), + [anon_sym_constexpr] = ACTIONS(4042), + [anon_sym_volatile] = ACTIONS(4042), + [anon_sym_restrict] = ACTIONS(4042), + [anon_sym___restrict__] = ACTIONS(4042), + [anon_sym__Atomic] = ACTIONS(4042), + [anon_sym__Noreturn] = ACTIONS(4042), + [anon_sym__Nonnull] = ACTIONS(4042), + [anon_sym_nullable] = ACTIONS(4042), + [anon_sym__Complex] = ACTIONS(4042), + [anon_sym__Nullable] = ACTIONS(4042), + [anon_sym__Nullable_result] = ACTIONS(4042), + [anon_sym__Null_unspecified] = ACTIONS(4042), + [anon_sym___autoreleasing] = ACTIONS(4042), + [anon_sym___block] = ACTIONS(4042), + [anon_sym___bridge] = ACTIONS(4042), + [anon_sym___bridge_retained] = ACTIONS(4042), + [anon_sym___bridge_transfer] = ACTIONS(4042), + [anon_sym___complex] = ACTIONS(4042), + [anon_sym___const] = ACTIONS(4042), + [anon_sym___imag] = ACTIONS(4042), + [anon_sym___kindof] = ACTIONS(4042), + [anon_sym___nonnull] = ACTIONS(4042), + [anon_sym___nullable] = ACTIONS(4042), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4042), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4042), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4042), + [anon_sym___real] = ACTIONS(4042), + [anon_sym___strong] = ACTIONS(4042), + [anon_sym___unsafe_unretained] = ACTIONS(4042), + [anon_sym___unused] = ACTIONS(4042), + [anon_sym___weak] = ACTIONS(4042), + [anon_sym_alignas] = ACTIONS(4042), + [anon_sym__Alignas] = ACTIONS(4042), + [sym_primitive_type] = ACTIONS(4042), + [anon_sym_enum] = ACTIONS(4042), + [anon_sym_COLON] = ACTIONS(4044), + [anon_sym_struct] = ACTIONS(4042), + [anon_sym_union] = ACTIONS(4042), + [anon_sym_QMARK] = ACTIONS(4044), + [anon_sym_DASH_DASH] = ACTIONS(4044), + [anon_sym_PLUS_PLUS] = ACTIONS(4044), + [anon_sym_DOT] = ACTIONS(4042), + [anon_sym_DASH_GT] = ACTIONS(4044), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4042), + [anon_sym___typeof] = ACTIONS(4042), + [anon_sym_typeof] = ACTIONS(4042), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4042), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4042), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4042), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4042), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4042), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4042), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4042), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4042), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4042), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4042), + [anon_sym_NS_AVAILABLE] = ACTIONS(4042), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4042), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4042), + [anon_sym_API_AVAILABLE] = ACTIONS(4042), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4042), + [anon_sym_API_DEPRECATED] = ACTIONS(4042), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4042), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4042), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4042), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4042), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4042), + [anon_sym___deprecated_msg] = ACTIONS(4042), + [anon_sym___deprecated_enum_msg] = ACTIONS(4042), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4042), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4042), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4042), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4042), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4042), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4042), + [anon_sym_BOOL] = ACTIONS(4042), + [anon_sym_IMP] = ACTIONS(4042), + [anon_sym_SEL] = ACTIONS(4042), + [anon_sym_Class] = ACTIONS(4042), + [anon_sym_id] = ACTIONS(4042), + }, + [1673] = { + [sym_identifier] = ACTIONS(4082), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_RPAREN] = ACTIONS(4084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4084), + [anon_sym_LPAREN2] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE] = ACTIONS(4082), + [anon_sym_CARET] = ACTIONS(4084), + [anon_sym_AMP] = ACTIONS(4082), + [anon_sym_EQ_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4084), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_LT_LT] = ACTIONS(4084), + [anon_sym_GT_GT] = ACTIONS(4084), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym___extension__] = ACTIONS(4082), + [anon_sym_extern] = ACTIONS(4082), + [anon_sym___attribute__] = ACTIONS(4082), + [anon_sym___attribute] = ACTIONS(4082), + [anon_sym_noreturn] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_RBRACK] = ACTIONS(4084), + [anon_sym___declspec] = ACTIONS(4082), + [anon_sym_LBRACE] = ACTIONS(4084), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_signed] = ACTIONS(4082), + [anon_sym_unsigned] = ACTIONS(4082), + [anon_sym_long] = ACTIONS(4082), + [anon_sym_short] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_ATautoreleasepool] = ACTIONS(4084), + [anon_sym_auto] = ACTIONS(4082), + [anon_sym_register] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym___inline] = ACTIONS(4082), + [anon_sym___inline__] = ACTIONS(4082), + [anon_sym___forceinline] = ACTIONS(4082), + [anon_sym_thread_local] = ACTIONS(4082), + [anon_sym___thread] = ACTIONS(4082), + [anon_sym_CG_EXTERN] = ACTIONS(4082), + [anon_sym_CG_INLINE] = ACTIONS(4082), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4082), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4082), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4082), + [anon_sym_IBOutlet] = ACTIONS(4082), + [anon_sym_IBInspectable] = ACTIONS(4082), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4082), + [anon_sym_NS_INLINE] = ACTIONS(4082), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4082), + [anon_sym_OBJC_EXPORT] = ACTIONS(4082), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4082), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4082), + [anon_sym_const] = ACTIONS(4082), + [anon_sym_constexpr] = ACTIONS(4082), + [anon_sym_volatile] = ACTIONS(4082), + [anon_sym_restrict] = ACTIONS(4082), + [anon_sym___restrict__] = ACTIONS(4082), + [anon_sym__Atomic] = ACTIONS(4082), + [anon_sym__Noreturn] = ACTIONS(4082), + [anon_sym__Nonnull] = ACTIONS(4082), + [anon_sym_nullable] = ACTIONS(4082), + [anon_sym__Complex] = ACTIONS(4082), + [anon_sym__Nullable] = ACTIONS(4082), + [anon_sym__Nullable_result] = ACTIONS(4082), + [anon_sym__Null_unspecified] = ACTIONS(4082), + [anon_sym___autoreleasing] = ACTIONS(4082), + [anon_sym___block] = ACTIONS(4082), + [anon_sym___bridge] = ACTIONS(4082), + [anon_sym___bridge_retained] = ACTIONS(4082), + [anon_sym___bridge_transfer] = ACTIONS(4082), + [anon_sym___complex] = ACTIONS(4082), + [anon_sym___const] = ACTIONS(4082), + [anon_sym___imag] = ACTIONS(4082), + [anon_sym___kindof] = ACTIONS(4082), + [anon_sym___nonnull] = ACTIONS(4082), + [anon_sym___nullable] = ACTIONS(4082), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4082), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4082), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4082), + [anon_sym___real] = ACTIONS(4082), + [anon_sym___strong] = ACTIONS(4082), + [anon_sym___unsafe_unretained] = ACTIONS(4082), + [anon_sym___unused] = ACTIONS(4082), + [anon_sym___weak] = ACTIONS(4082), + [anon_sym_alignas] = ACTIONS(4082), + [anon_sym__Alignas] = ACTIONS(4082), + [sym_primitive_type] = ACTIONS(4082), + [anon_sym_enum] = ACTIONS(4082), + [anon_sym_COLON] = ACTIONS(4084), + [anon_sym_struct] = ACTIONS(4082), + [anon_sym_union] = ACTIONS(4082), + [anon_sym_QMARK] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_DASH_GT] = ACTIONS(4084), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4082), + [anon_sym___typeof] = ACTIONS(4082), + [anon_sym_typeof] = ACTIONS(4082), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4082), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4082), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4082), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4082), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4082), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4082), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4082), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4082), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4082), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4082), + [anon_sym_NS_AVAILABLE] = ACTIONS(4082), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4082), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4082), + [anon_sym_API_AVAILABLE] = ACTIONS(4082), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4082), + [anon_sym_API_DEPRECATED] = ACTIONS(4082), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4082), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4082), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4082), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4082), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4082), + [anon_sym___deprecated_msg] = ACTIONS(4082), + [anon_sym___deprecated_enum_msg] = ACTIONS(4082), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4082), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4082), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4082), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4082), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4082), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4082), + [anon_sym_BOOL] = ACTIONS(4082), + [anon_sym_IMP] = ACTIONS(4082), + [anon_sym_SEL] = ACTIONS(4082), + [anon_sym_Class] = ACTIONS(4082), + [anon_sym_id] = ACTIONS(4082), + }, + [1674] = { + [sym_identifier] = ACTIONS(4274), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_RPAREN] = ACTIONS(4276), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4276), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4276), + [anon_sym_LPAREN2] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4276), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE] = ACTIONS(4274), + [anon_sym_CARET] = ACTIONS(4276), + [anon_sym_AMP] = ACTIONS(4274), + [anon_sym_EQ_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4276), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_LT_LT] = ACTIONS(4276), + [anon_sym_GT_GT] = ACTIONS(4276), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym___extension__] = ACTIONS(4274), + [anon_sym_extern] = ACTIONS(4274), + [anon_sym___attribute__] = ACTIONS(4274), + [anon_sym___attribute] = ACTIONS(4274), + [anon_sym_noreturn] = ACTIONS(4274), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_RBRACK] = ACTIONS(4276), + [anon_sym___declspec] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(4276), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_signed] = ACTIONS(4274), + [anon_sym_unsigned] = ACTIONS(4274), + [anon_sym_long] = ACTIONS(4274), + [anon_sym_short] = ACTIONS(4274), + [anon_sym_static] = ACTIONS(4274), + [anon_sym_ATautoreleasepool] = ACTIONS(4276), + [anon_sym_auto] = ACTIONS(4274), + [anon_sym_register] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym___inline] = ACTIONS(4274), + [anon_sym___inline__] = ACTIONS(4274), + [anon_sym___forceinline] = ACTIONS(4274), + [anon_sym_thread_local] = ACTIONS(4274), + [anon_sym___thread] = ACTIONS(4274), + [anon_sym_CG_EXTERN] = ACTIONS(4274), + [anon_sym_CG_INLINE] = ACTIONS(4274), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4274), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4274), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4274), + [anon_sym_IBOutlet] = ACTIONS(4274), + [anon_sym_IBInspectable] = ACTIONS(4274), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4274), + [anon_sym_NS_INLINE] = ACTIONS(4274), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4274), + [anon_sym_OBJC_EXPORT] = ACTIONS(4274), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4274), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4274), + [anon_sym_const] = ACTIONS(4274), + [anon_sym_constexpr] = ACTIONS(4274), + [anon_sym_volatile] = ACTIONS(4274), + [anon_sym_restrict] = ACTIONS(4274), + [anon_sym___restrict__] = ACTIONS(4274), + [anon_sym__Atomic] = ACTIONS(4274), + [anon_sym__Noreturn] = ACTIONS(4274), + [anon_sym__Nonnull] = ACTIONS(4274), + [anon_sym_nullable] = ACTIONS(4274), + [anon_sym__Complex] = ACTIONS(4274), + [anon_sym__Nullable] = ACTIONS(4274), + [anon_sym__Nullable_result] = ACTIONS(4274), + [anon_sym__Null_unspecified] = ACTIONS(4274), + [anon_sym___autoreleasing] = ACTIONS(4274), + [anon_sym___block] = ACTIONS(4274), + [anon_sym___bridge] = ACTIONS(4274), + [anon_sym___bridge_retained] = ACTIONS(4274), + [anon_sym___bridge_transfer] = ACTIONS(4274), + [anon_sym___complex] = ACTIONS(4274), + [anon_sym___const] = ACTIONS(4274), + [anon_sym___imag] = ACTIONS(4274), + [anon_sym___kindof] = ACTIONS(4274), + [anon_sym___nonnull] = ACTIONS(4274), + [anon_sym___nullable] = ACTIONS(4274), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4274), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4274), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4274), + [anon_sym___real] = ACTIONS(4274), + [anon_sym___strong] = ACTIONS(4274), + [anon_sym___unsafe_unretained] = ACTIONS(4274), + [anon_sym___unused] = ACTIONS(4274), + [anon_sym___weak] = ACTIONS(4274), + [anon_sym_alignas] = ACTIONS(4274), + [anon_sym__Alignas] = ACTIONS(4274), + [sym_primitive_type] = ACTIONS(4274), + [anon_sym_enum] = ACTIONS(4274), + [anon_sym_COLON] = ACTIONS(4276), + [anon_sym_struct] = ACTIONS(4274), + [anon_sym_union] = ACTIONS(4274), + [anon_sym_QMARK] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_DASH_GT] = ACTIONS(4276), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4274), + [anon_sym___typeof] = ACTIONS(4274), + [anon_sym_typeof] = ACTIONS(4274), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4274), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4274), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4274), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4274), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4274), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4274), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4274), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4274), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4274), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4274), + [anon_sym_NS_AVAILABLE] = ACTIONS(4274), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4274), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4274), + [anon_sym_API_AVAILABLE] = ACTIONS(4274), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4274), + [anon_sym_API_DEPRECATED] = ACTIONS(4274), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4274), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4274), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4274), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4274), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4274), + [anon_sym___deprecated_msg] = ACTIONS(4274), + [anon_sym___deprecated_enum_msg] = ACTIONS(4274), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4274), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4274), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4274), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4274), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4274), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4274), + [anon_sym_BOOL] = ACTIONS(4274), + [anon_sym_IMP] = ACTIONS(4274), + [anon_sym_SEL] = ACTIONS(4274), + [anon_sym_Class] = ACTIONS(4274), + [anon_sym_id] = ACTIONS(4274), + }, + [1675] = { + [sym_identifier] = ACTIONS(4184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4186), + [anon_sym_COMMA] = ACTIONS(4186), + [anon_sym_RPAREN] = ACTIONS(4186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4186), + [anon_sym_LPAREN2] = ACTIONS(4186), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4186), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4186), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_AMP_AMP] = ACTIONS(4186), + [anon_sym_PIPE] = ACTIONS(4184), + [anon_sym_CARET] = ACTIONS(4186), + [anon_sym_AMP] = ACTIONS(4184), + [anon_sym_EQ_EQ] = ACTIONS(4186), + [anon_sym_BANG_EQ] = ACTIONS(4186), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_GT_EQ] = ACTIONS(4186), + [anon_sym_LT_EQ] = ACTIONS(4186), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_LT_LT] = ACTIONS(4186), + [anon_sym_GT_GT] = ACTIONS(4186), + [anon_sym_SEMI] = ACTIONS(4186), + [anon_sym___extension__] = ACTIONS(4184), + [anon_sym_extern] = ACTIONS(4184), + [anon_sym___attribute__] = ACTIONS(4184), + [anon_sym___attribute] = ACTIONS(4184), + [anon_sym_noreturn] = ACTIONS(4184), + [anon_sym_LBRACK] = ACTIONS(4186), + [anon_sym_RBRACK] = ACTIONS(4186), + [anon_sym___declspec] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4186), + [anon_sym_RBRACE] = ACTIONS(4186), + [anon_sym_signed] = ACTIONS(4184), + [anon_sym_unsigned] = ACTIONS(4184), + [anon_sym_long] = ACTIONS(4184), + [anon_sym_short] = ACTIONS(4184), + [anon_sym_static] = ACTIONS(4184), + [anon_sym_ATautoreleasepool] = ACTIONS(4186), + [anon_sym_auto] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym___inline] = ACTIONS(4184), + [anon_sym___inline__] = ACTIONS(4184), + [anon_sym___forceinline] = ACTIONS(4184), + [anon_sym_thread_local] = ACTIONS(4184), + [anon_sym___thread] = ACTIONS(4184), + [anon_sym_CG_EXTERN] = ACTIONS(4184), + [anon_sym_CG_INLINE] = ACTIONS(4184), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4184), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4184), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4184), + [anon_sym_IBOutlet] = ACTIONS(4184), + [anon_sym_IBInspectable] = ACTIONS(4184), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4184), + [anon_sym_NS_INLINE] = ACTIONS(4184), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4184), + [anon_sym_OBJC_EXPORT] = ACTIONS(4184), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4184), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4184), + [anon_sym_const] = ACTIONS(4184), + [anon_sym_constexpr] = ACTIONS(4184), + [anon_sym_volatile] = ACTIONS(4184), + [anon_sym_restrict] = ACTIONS(4184), + [anon_sym___restrict__] = ACTIONS(4184), + [anon_sym__Atomic] = ACTIONS(4184), + [anon_sym__Noreturn] = ACTIONS(4184), + [anon_sym__Nonnull] = ACTIONS(4184), + [anon_sym_nullable] = ACTIONS(4184), + [anon_sym__Complex] = ACTIONS(4184), + [anon_sym__Nullable] = ACTIONS(4184), + [anon_sym__Nullable_result] = ACTIONS(4184), + [anon_sym__Null_unspecified] = ACTIONS(4184), + [anon_sym___autoreleasing] = ACTIONS(4184), + [anon_sym___block] = ACTIONS(4184), + [anon_sym___bridge] = ACTIONS(4184), + [anon_sym___bridge_retained] = ACTIONS(4184), + [anon_sym___bridge_transfer] = ACTIONS(4184), + [anon_sym___complex] = ACTIONS(4184), + [anon_sym___const] = ACTIONS(4184), + [anon_sym___imag] = ACTIONS(4184), + [anon_sym___kindof] = ACTIONS(4184), + [anon_sym___nonnull] = ACTIONS(4184), + [anon_sym___nullable] = ACTIONS(4184), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4184), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4184), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4184), + [anon_sym___real] = ACTIONS(4184), + [anon_sym___strong] = ACTIONS(4184), + [anon_sym___unsafe_unretained] = ACTIONS(4184), + [anon_sym___unused] = ACTIONS(4184), + [anon_sym___weak] = ACTIONS(4184), + [anon_sym_alignas] = ACTIONS(4184), + [anon_sym__Alignas] = ACTIONS(4184), + [sym_primitive_type] = ACTIONS(4184), + [anon_sym_enum] = ACTIONS(4184), + [anon_sym_COLON] = ACTIONS(4186), + [anon_sym_struct] = ACTIONS(4184), + [anon_sym_union] = ACTIONS(4184), + [anon_sym_QMARK] = ACTIONS(4186), + [anon_sym_DASH_DASH] = ACTIONS(4186), + [anon_sym_PLUS_PLUS] = ACTIONS(4186), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_DASH_GT] = ACTIONS(4186), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4184), + [anon_sym___typeof] = ACTIONS(4184), + [anon_sym_typeof] = ACTIONS(4184), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4184), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4184), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4184), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4184), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4184), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4184), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4184), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4184), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4184), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4184), + [anon_sym_NS_AVAILABLE] = ACTIONS(4184), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4184), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4184), + [anon_sym_API_AVAILABLE] = ACTIONS(4184), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4184), + [anon_sym_API_DEPRECATED] = ACTIONS(4184), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4184), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4184), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4184), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4184), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4184), + [anon_sym___deprecated_msg] = ACTIONS(4184), + [anon_sym___deprecated_enum_msg] = ACTIONS(4184), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4184), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4184), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4184), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4184), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4184), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4184), + [anon_sym_BOOL] = ACTIONS(4184), + [anon_sym_IMP] = ACTIONS(4184), + [anon_sym_SEL] = ACTIONS(4184), + [anon_sym_Class] = ACTIONS(4184), + [anon_sym_id] = ACTIONS(4184), + }, + [1676] = { + [sym_identifier] = ACTIONS(4290), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4292), + [anon_sym_COMMA] = ACTIONS(4292), + [anon_sym_RPAREN] = ACTIONS(4292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4292), + [anon_sym_LPAREN2] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4292), + [anon_sym_SLASH] = ACTIONS(4290), + [anon_sym_PERCENT] = ACTIONS(4292), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE] = ACTIONS(4290), + [anon_sym_CARET] = ACTIONS(4292), + [anon_sym_AMP] = ACTIONS(4290), + [anon_sym_EQ_EQ] = ACTIONS(4292), + [anon_sym_BANG_EQ] = ACTIONS(4292), + [anon_sym_GT] = ACTIONS(4290), + [anon_sym_GT_EQ] = ACTIONS(4292), + [anon_sym_LT_EQ] = ACTIONS(4292), + [anon_sym_LT] = ACTIONS(4290), + [anon_sym_LT_LT] = ACTIONS(4292), + [anon_sym_GT_GT] = ACTIONS(4292), + [anon_sym_SEMI] = ACTIONS(4292), + [anon_sym___extension__] = ACTIONS(4290), + [anon_sym_extern] = ACTIONS(4290), + [anon_sym___attribute__] = ACTIONS(4290), + [anon_sym___attribute] = ACTIONS(4290), + [anon_sym_noreturn] = ACTIONS(4290), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_RBRACK] = ACTIONS(4292), + [anon_sym___declspec] = ACTIONS(4290), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4292), + [anon_sym_signed] = ACTIONS(4290), + [anon_sym_unsigned] = ACTIONS(4290), + [anon_sym_long] = ACTIONS(4290), + [anon_sym_short] = ACTIONS(4290), + [anon_sym_static] = ACTIONS(4290), + [anon_sym_ATautoreleasepool] = ACTIONS(4292), + [anon_sym_auto] = ACTIONS(4290), + [anon_sym_register] = ACTIONS(4290), + [anon_sym_inline] = ACTIONS(4290), + [anon_sym___inline] = ACTIONS(4290), + [anon_sym___inline__] = ACTIONS(4290), + [anon_sym___forceinline] = ACTIONS(4290), + [anon_sym_thread_local] = ACTIONS(4290), + [anon_sym___thread] = ACTIONS(4290), + [anon_sym_CG_EXTERN] = ACTIONS(4290), + [anon_sym_CG_INLINE] = ACTIONS(4290), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4290), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4290), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4290), + [anon_sym_IBOutlet] = ACTIONS(4290), + [anon_sym_IBInspectable] = ACTIONS(4290), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4290), + [anon_sym_NS_INLINE] = ACTIONS(4290), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4290), + [anon_sym_OBJC_EXPORT] = ACTIONS(4290), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4290), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4290), + [anon_sym_const] = ACTIONS(4290), + [anon_sym_constexpr] = ACTIONS(4290), + [anon_sym_volatile] = ACTIONS(4290), + [anon_sym_restrict] = ACTIONS(4290), + [anon_sym___restrict__] = ACTIONS(4290), + [anon_sym__Atomic] = ACTIONS(4290), + [anon_sym__Noreturn] = ACTIONS(4290), + [anon_sym__Nonnull] = ACTIONS(4290), + [anon_sym_nullable] = ACTIONS(4290), + [anon_sym__Complex] = ACTIONS(4290), + [anon_sym__Nullable] = ACTIONS(4290), + [anon_sym__Nullable_result] = ACTIONS(4290), + [anon_sym__Null_unspecified] = ACTIONS(4290), + [anon_sym___autoreleasing] = ACTIONS(4290), + [anon_sym___block] = ACTIONS(4290), + [anon_sym___bridge] = ACTIONS(4290), + [anon_sym___bridge_retained] = ACTIONS(4290), + [anon_sym___bridge_transfer] = ACTIONS(4290), + [anon_sym___complex] = ACTIONS(4290), + [anon_sym___const] = ACTIONS(4290), + [anon_sym___imag] = ACTIONS(4290), + [anon_sym___kindof] = ACTIONS(4290), + [anon_sym___nonnull] = ACTIONS(4290), + [anon_sym___nullable] = ACTIONS(4290), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4290), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4290), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4290), + [anon_sym___real] = ACTIONS(4290), + [anon_sym___strong] = ACTIONS(4290), + [anon_sym___unsafe_unretained] = ACTIONS(4290), + [anon_sym___unused] = ACTIONS(4290), + [anon_sym___weak] = ACTIONS(4290), + [anon_sym_alignas] = ACTIONS(4290), + [anon_sym__Alignas] = ACTIONS(4290), + [sym_primitive_type] = ACTIONS(4290), + [anon_sym_enum] = ACTIONS(4290), + [anon_sym_COLON] = ACTIONS(4292), + [anon_sym_struct] = ACTIONS(4290), + [anon_sym_union] = ACTIONS(4290), + [anon_sym_QMARK] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4290), + [anon_sym_DASH_GT] = ACTIONS(4292), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4290), + [anon_sym___typeof] = ACTIONS(4290), + [anon_sym_typeof] = ACTIONS(4290), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4290), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4290), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4290), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4290), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4290), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4290), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4290), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4290), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4290), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4290), + [anon_sym_NS_AVAILABLE] = ACTIONS(4290), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4290), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4290), + [anon_sym_API_AVAILABLE] = ACTIONS(4290), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4290), + [anon_sym_API_DEPRECATED] = ACTIONS(4290), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4290), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4290), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4290), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4290), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4290), + [anon_sym___deprecated_msg] = ACTIONS(4290), + [anon_sym___deprecated_enum_msg] = ACTIONS(4290), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4290), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4290), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4290), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4290), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4290), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4290), + [anon_sym_BOOL] = ACTIONS(4290), + [anon_sym_IMP] = ACTIONS(4290), + [anon_sym_SEL] = ACTIONS(4290), + [anon_sym_Class] = ACTIONS(4290), + [anon_sym_id] = ACTIONS(4290), + }, + [1677] = { + [sym_identifier] = ACTIONS(3995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_RPAREN] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(3997), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(3997), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3997), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(3997), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(3995), + [anon_sym_LT_LT] = ACTIONS(3997), + [anon_sym_GT_GT] = ACTIONS(3997), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym___extension__] = ACTIONS(3995), + [anon_sym_extern] = ACTIONS(3995), + [anon_sym___attribute__] = ACTIONS(3995), + [anon_sym___attribute] = ACTIONS(3995), + [anon_sym_noreturn] = ACTIONS(3995), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_RBRACK] = ACTIONS(3997), + [anon_sym___declspec] = ACTIONS(3995), + [anon_sym_LBRACE] = ACTIONS(3997), + [anon_sym_RBRACE] = ACTIONS(3997), + [anon_sym_signed] = ACTIONS(3995), + [anon_sym_unsigned] = ACTIONS(3995), + [anon_sym_long] = ACTIONS(3995), + [anon_sym_short] = ACTIONS(3995), + [anon_sym_static] = ACTIONS(3995), + [anon_sym_ATautoreleasepool] = ACTIONS(3997), + [anon_sym_auto] = ACTIONS(3995), + [anon_sym_register] = ACTIONS(3995), + [anon_sym_inline] = ACTIONS(3995), + [anon_sym___inline] = ACTIONS(3995), + [anon_sym___inline__] = ACTIONS(3995), + [anon_sym___forceinline] = ACTIONS(3995), + [anon_sym_thread_local] = ACTIONS(3995), + [anon_sym___thread] = ACTIONS(3995), + [anon_sym_CG_EXTERN] = ACTIONS(3995), + [anon_sym_CG_INLINE] = ACTIONS(3995), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3995), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3995), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3995), + [anon_sym_IBOutlet] = ACTIONS(3995), + [anon_sym_IBInspectable] = ACTIONS(3995), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3995), + [anon_sym_NS_INLINE] = ACTIONS(3995), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3995), + [anon_sym_OBJC_EXPORT] = ACTIONS(3995), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3995), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3995), + [anon_sym_const] = ACTIONS(3995), + [anon_sym_constexpr] = ACTIONS(3995), + [anon_sym_volatile] = ACTIONS(3995), + [anon_sym_restrict] = ACTIONS(3995), + [anon_sym___restrict__] = ACTIONS(3995), + [anon_sym__Atomic] = ACTIONS(3995), + [anon_sym__Noreturn] = ACTIONS(3995), + [anon_sym__Nonnull] = ACTIONS(3995), + [anon_sym_nullable] = ACTIONS(3995), + [anon_sym__Complex] = ACTIONS(3995), + [anon_sym__Nullable] = ACTIONS(3995), + [anon_sym__Nullable_result] = ACTIONS(3995), + [anon_sym__Null_unspecified] = ACTIONS(3995), + [anon_sym___autoreleasing] = ACTIONS(3995), + [anon_sym___block] = ACTIONS(3995), + [anon_sym___bridge] = ACTIONS(3995), + [anon_sym___bridge_retained] = ACTIONS(3995), + [anon_sym___bridge_transfer] = ACTIONS(3995), + [anon_sym___complex] = ACTIONS(3995), + [anon_sym___const] = ACTIONS(3995), + [anon_sym___imag] = ACTIONS(3995), + [anon_sym___kindof] = ACTIONS(3995), + [anon_sym___nonnull] = ACTIONS(3995), + [anon_sym___nullable] = ACTIONS(3995), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3995), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3995), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3995), + [anon_sym___real] = ACTIONS(3995), + [anon_sym___strong] = ACTIONS(3995), + [anon_sym___unsafe_unretained] = ACTIONS(3995), + [anon_sym___unused] = ACTIONS(3995), + [anon_sym___weak] = ACTIONS(3995), + [anon_sym_alignas] = ACTIONS(3995), + [anon_sym__Alignas] = ACTIONS(3995), + [sym_primitive_type] = ACTIONS(3995), + [anon_sym_enum] = ACTIONS(3995), + [anon_sym_COLON] = ACTIONS(3997), + [anon_sym_struct] = ACTIONS(3995), + [anon_sym_union] = ACTIONS(3995), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(3995), + [anon_sym___typeof] = ACTIONS(3995), + [anon_sym_typeof] = ACTIONS(3995), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3995), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3995), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3995), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3995), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3995), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3995), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3995), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3995), + [anon_sym_NS_AVAILABLE] = ACTIONS(3995), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3995), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_API_AVAILABLE] = ACTIONS(3995), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_API_DEPRECATED] = ACTIONS(3995), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3995), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3995), + [anon_sym___deprecated_msg] = ACTIONS(3995), + [anon_sym___deprecated_enum_msg] = ACTIONS(3995), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3995), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3995), + [anon_sym_BOOL] = ACTIONS(3995), + [anon_sym_IMP] = ACTIONS(3995), + [anon_sym_SEL] = ACTIONS(3995), + [anon_sym_Class] = ACTIONS(3995), + [anon_sym_id] = ACTIONS(3995), + }, + [1678] = { + [sym_identifier] = ACTIONS(4250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4252), + [anon_sym_COMMA] = ACTIONS(4252), + [anon_sym_RPAREN] = ACTIONS(4252), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4252), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4252), + [anon_sym_LPAREN2] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4250), + [anon_sym_STAR] = ACTIONS(4252), + [anon_sym_SLASH] = ACTIONS(4250), + [anon_sym_PERCENT] = ACTIONS(4252), + [anon_sym_PIPE_PIPE] = ACTIONS(4252), + [anon_sym_AMP_AMP] = ACTIONS(4252), + [anon_sym_PIPE] = ACTIONS(4250), + [anon_sym_CARET] = ACTIONS(4252), + [anon_sym_AMP] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4252), + [anon_sym_BANG_EQ] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4252), + [anon_sym_LT_EQ] = ACTIONS(4252), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_LT_LT] = ACTIONS(4252), + [anon_sym_GT_GT] = ACTIONS(4252), + [anon_sym_SEMI] = ACTIONS(4252), + [anon_sym___extension__] = ACTIONS(4250), + [anon_sym_extern] = ACTIONS(4250), + [anon_sym___attribute__] = ACTIONS(4250), + [anon_sym___attribute] = ACTIONS(4250), + [anon_sym_noreturn] = ACTIONS(4250), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_RBRACK] = ACTIONS(4252), + [anon_sym___declspec] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(4252), + [anon_sym_RBRACE] = ACTIONS(4252), + [anon_sym_signed] = ACTIONS(4250), + [anon_sym_unsigned] = ACTIONS(4250), + [anon_sym_long] = ACTIONS(4250), + [anon_sym_short] = ACTIONS(4250), + [anon_sym_static] = ACTIONS(4250), + [anon_sym_ATautoreleasepool] = ACTIONS(4252), + [anon_sym_auto] = ACTIONS(4250), + [anon_sym_register] = ACTIONS(4250), + [anon_sym_inline] = ACTIONS(4250), + [anon_sym___inline] = ACTIONS(4250), + [anon_sym___inline__] = ACTIONS(4250), + [anon_sym___forceinline] = ACTIONS(4250), + [anon_sym_thread_local] = ACTIONS(4250), + [anon_sym___thread] = ACTIONS(4250), + [anon_sym_CG_EXTERN] = ACTIONS(4250), + [anon_sym_CG_INLINE] = ACTIONS(4250), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4250), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4250), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4250), + [anon_sym_IBOutlet] = ACTIONS(4250), + [anon_sym_IBInspectable] = ACTIONS(4250), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4250), + [anon_sym_NS_INLINE] = ACTIONS(4250), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4250), + [anon_sym_OBJC_EXPORT] = ACTIONS(4250), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4250), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4250), + [anon_sym_const] = ACTIONS(4250), + [anon_sym_constexpr] = ACTIONS(4250), + [anon_sym_volatile] = ACTIONS(4250), + [anon_sym_restrict] = ACTIONS(4250), + [anon_sym___restrict__] = ACTIONS(4250), + [anon_sym__Atomic] = ACTIONS(4250), + [anon_sym__Noreturn] = ACTIONS(4250), + [anon_sym__Nonnull] = ACTIONS(4250), + [anon_sym_nullable] = ACTIONS(4250), + [anon_sym__Complex] = ACTIONS(4250), + [anon_sym__Nullable] = ACTIONS(4250), + [anon_sym__Nullable_result] = ACTIONS(4250), + [anon_sym__Null_unspecified] = ACTIONS(4250), + [anon_sym___autoreleasing] = ACTIONS(4250), + [anon_sym___block] = ACTIONS(4250), + [anon_sym___bridge] = ACTIONS(4250), + [anon_sym___bridge_retained] = ACTIONS(4250), + [anon_sym___bridge_transfer] = ACTIONS(4250), + [anon_sym___complex] = ACTIONS(4250), + [anon_sym___const] = ACTIONS(4250), + [anon_sym___imag] = ACTIONS(4250), + [anon_sym___kindof] = ACTIONS(4250), + [anon_sym___nonnull] = ACTIONS(4250), + [anon_sym___nullable] = ACTIONS(4250), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4250), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4250), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4250), + [anon_sym___real] = ACTIONS(4250), + [anon_sym___strong] = ACTIONS(4250), + [anon_sym___unsafe_unretained] = ACTIONS(4250), + [anon_sym___unused] = ACTIONS(4250), + [anon_sym___weak] = ACTIONS(4250), + [anon_sym_alignas] = ACTIONS(4250), + [anon_sym__Alignas] = ACTIONS(4250), + [sym_primitive_type] = ACTIONS(4250), + [anon_sym_enum] = ACTIONS(4250), + [anon_sym_COLON] = ACTIONS(4252), + [anon_sym_struct] = ACTIONS(4250), + [anon_sym_union] = ACTIONS(4250), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_DASH_DASH] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4252), + [anon_sym_DOT] = ACTIONS(4250), + [anon_sym_DASH_GT] = ACTIONS(4252), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4250), + [anon_sym___typeof] = ACTIONS(4250), + [anon_sym_typeof] = ACTIONS(4250), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4250), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4250), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4250), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4250), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4250), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4250), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4250), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4250), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4250), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4250), + [anon_sym_NS_AVAILABLE] = ACTIONS(4250), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4250), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4250), + [anon_sym_API_AVAILABLE] = ACTIONS(4250), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4250), + [anon_sym_API_DEPRECATED] = ACTIONS(4250), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4250), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4250), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4250), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4250), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4250), + [anon_sym___deprecated_msg] = ACTIONS(4250), + [anon_sym___deprecated_enum_msg] = ACTIONS(4250), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4250), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4250), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4250), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4250), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4250), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4250), + [anon_sym_BOOL] = ACTIONS(4250), + [anon_sym_IMP] = ACTIONS(4250), + [anon_sym_SEL] = ACTIONS(4250), + [anon_sym_Class] = ACTIONS(4250), + [anon_sym_id] = ACTIONS(4250), + }, + [1679] = { + [sym_identifier] = ACTIONS(4188), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4191), + [anon_sym_COMMA] = ACTIONS(4191), + [anon_sym_RPAREN] = ACTIONS(4191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4191), + [anon_sym_LPAREN2] = ACTIONS(4191), + [anon_sym_DASH] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(4188), + [anon_sym_SLASH] = ACTIONS(4188), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4191), + [anon_sym_AMP_AMP] = ACTIONS(4191), + [anon_sym_PIPE] = ACTIONS(4188), + [anon_sym_CARET] = ACTIONS(4188), + [anon_sym_AMP] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4191), + [anon_sym_BANG_EQ] = ACTIONS(4191), + [anon_sym_GT] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4191), + [anon_sym_LT_EQ] = ACTIONS(4191), + [anon_sym_LT] = ACTIONS(4188), + [anon_sym_LT_LT] = ACTIONS(4188), + [anon_sym_GT_GT] = ACTIONS(4188), + [anon_sym_SEMI] = ACTIONS(4191), + [anon_sym___extension__] = ACTIONS(4188), + [anon_sym_extern] = ACTIONS(4188), + [anon_sym___attribute__] = ACTIONS(4188), + [anon_sym___attribute] = ACTIONS(4188), + [anon_sym_noreturn] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4191), + [anon_sym_RBRACK] = ACTIONS(4191), + [anon_sym___declspec] = ACTIONS(4188), + [anon_sym_RBRACE] = ACTIONS(4191), + [anon_sym_static] = ACTIONS(4188), + [anon_sym_EQ] = ACTIONS(4188), + [anon_sym_auto] = ACTIONS(4188), + [anon_sym_register] = ACTIONS(4188), + [anon_sym_inline] = ACTIONS(4188), + [anon_sym___inline] = ACTIONS(4188), + [anon_sym___inline__] = ACTIONS(4188), + [anon_sym___forceinline] = ACTIONS(4188), + [anon_sym_thread_local] = ACTIONS(4188), + [anon_sym___thread] = ACTIONS(4188), + [anon_sym_CG_EXTERN] = ACTIONS(4188), + [anon_sym_CG_INLINE] = ACTIONS(4188), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4188), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4188), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4188), + [anon_sym_IBOutlet] = ACTIONS(4188), + [anon_sym_IBInspectable] = ACTIONS(4188), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4188), + [anon_sym_NS_INLINE] = ACTIONS(4188), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4188), + [anon_sym_OBJC_EXPORT] = ACTIONS(4188), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4188), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4188), + [anon_sym_const] = ACTIONS(4188), + [anon_sym_constexpr] = ACTIONS(4188), + [anon_sym_volatile] = ACTIONS(4188), + [anon_sym_restrict] = ACTIONS(4188), + [anon_sym___restrict__] = ACTIONS(4188), + [anon_sym__Atomic] = ACTIONS(4188), + [anon_sym__Noreturn] = ACTIONS(4188), + [anon_sym__Nonnull] = ACTIONS(4188), + [anon_sym_nullable] = ACTIONS(4188), + [anon_sym__Complex] = ACTIONS(4188), + [anon_sym__Nullable] = ACTIONS(4188), + [anon_sym__Nullable_result] = ACTIONS(4188), + [anon_sym__Null_unspecified] = ACTIONS(4188), + [anon_sym___autoreleasing] = ACTIONS(4188), + [anon_sym___block] = ACTIONS(4188), + [anon_sym___bridge] = ACTIONS(4188), + [anon_sym___bridge_retained] = ACTIONS(4188), + [anon_sym___bridge_transfer] = ACTIONS(4188), + [anon_sym___complex] = ACTIONS(4188), + [anon_sym___const] = ACTIONS(4188), + [anon_sym___imag] = ACTIONS(4188), + [anon_sym___kindof] = ACTIONS(4188), + [anon_sym___nonnull] = ACTIONS(4188), + [anon_sym___nullable] = ACTIONS(4188), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4188), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4188), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4188), + [anon_sym___real] = ACTIONS(4188), + [anon_sym___strong] = ACTIONS(4188), + [anon_sym___unsafe_unretained] = ACTIONS(4188), + [anon_sym___unused] = ACTIONS(4188), + [anon_sym___weak] = ACTIONS(4188), + [anon_sym_alignas] = ACTIONS(4188), + [anon_sym__Alignas] = ACTIONS(4188), + [anon_sym_COLON] = ACTIONS(4191), + [anon_sym_QMARK] = ACTIONS(4191), + [anon_sym_STAR_EQ] = ACTIONS(4191), + [anon_sym_SLASH_EQ] = ACTIONS(4191), + [anon_sym_PERCENT_EQ] = ACTIONS(4191), + [anon_sym_PLUS_EQ] = ACTIONS(4191), + [anon_sym_DASH_EQ] = ACTIONS(4191), + [anon_sym_LT_LT_EQ] = ACTIONS(4191), + [anon_sym_GT_GT_EQ] = ACTIONS(4191), + [anon_sym_AMP_EQ] = ACTIONS(4191), + [anon_sym_CARET_EQ] = ACTIONS(4191), + [anon_sym_PIPE_EQ] = ACTIONS(4191), + [anon_sym_DASH_DASH] = ACTIONS(4191), + [anon_sym_PLUS_PLUS] = ACTIONS(4191), + [anon_sym_DOT] = ACTIONS(4188), + [anon_sym_DASH_GT] = ACTIONS(4191), + [anon_sym_AT] = ACTIONS(4191), + [anon_sym_DQUOTE] = ACTIONS(4191), + [anon_sym_L_DQUOTE] = ACTIONS(4191), + [anon_sym_u_DQUOTE] = ACTIONS(4191), + [anon_sym_U_DQUOTE] = ACTIONS(4191), + [anon_sym_u8_DQUOTE] = ACTIONS(4191), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4188), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4188), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4188), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4188), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4188), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4188), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4188), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4188), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4188), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4188), + [anon_sym_NS_AVAILABLE] = ACTIONS(4188), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4188), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4188), + [anon_sym_API_AVAILABLE] = ACTIONS(4188), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4188), + [anon_sym_API_DEPRECATED] = ACTIONS(4188), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4188), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4188), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4188), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4188), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4188), + [anon_sym___deprecated_msg] = ACTIONS(4188), + [anon_sym___deprecated_enum_msg] = ACTIONS(4188), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4188), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4188), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4188), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4188), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4188), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4188), + }, + [1680] = { + [sym_identifier] = ACTIONS(4074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4076), + [anon_sym_COMMA] = ACTIONS(4076), + [anon_sym_RPAREN] = ACTIONS(4076), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4076), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4076), + [anon_sym_LPAREN2] = ACTIONS(4076), + [anon_sym_DASH] = ACTIONS(4074), + [anon_sym_PLUS] = ACTIONS(4074), + [anon_sym_STAR] = ACTIONS(4074), + [anon_sym_SLASH] = ACTIONS(4074), + [anon_sym_PERCENT] = ACTIONS(4074), + [anon_sym_PIPE_PIPE] = ACTIONS(4076), + [anon_sym_AMP_AMP] = ACTIONS(4076), + [anon_sym_PIPE] = ACTIONS(4074), + [anon_sym_CARET] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4074), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_GT] = ACTIONS(4074), + [anon_sym_GT_EQ] = ACTIONS(4076), + [anon_sym_LT_EQ] = ACTIONS(4076), + [anon_sym_LT] = ACTIONS(4074), + [anon_sym_LT_LT] = ACTIONS(4074), + [anon_sym_GT_GT] = ACTIONS(4074), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym___extension__] = ACTIONS(4074), + [anon_sym_extern] = ACTIONS(4074), + [anon_sym___attribute__] = ACTIONS(4074), + [anon_sym___attribute] = ACTIONS(4074), + [anon_sym_noreturn] = ACTIONS(4074), + [anon_sym_LBRACK] = ACTIONS(4076), + [anon_sym_RBRACK] = ACTIONS(4076), + [anon_sym___declspec] = ACTIONS(4074), + [anon_sym_RBRACE] = ACTIONS(4076), + [anon_sym_static] = ACTIONS(4074), + [anon_sym_EQ] = ACTIONS(4074), + [anon_sym_auto] = ACTIONS(4074), + [anon_sym_register] = ACTIONS(4074), + [anon_sym_inline] = ACTIONS(4074), + [anon_sym___inline] = ACTIONS(4074), + [anon_sym___inline__] = ACTIONS(4074), + [anon_sym___forceinline] = ACTIONS(4074), + [anon_sym_thread_local] = ACTIONS(4074), + [anon_sym___thread] = ACTIONS(4074), + [anon_sym_CG_EXTERN] = ACTIONS(4074), + [anon_sym_CG_INLINE] = ACTIONS(4074), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4074), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4074), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4074), + [anon_sym_IBOutlet] = ACTIONS(4074), + [anon_sym_IBInspectable] = ACTIONS(4074), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4074), + [anon_sym_NS_INLINE] = ACTIONS(4074), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4074), + [anon_sym_OBJC_EXPORT] = ACTIONS(4074), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4074), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4074), + [anon_sym_const] = ACTIONS(4074), + [anon_sym_constexpr] = ACTIONS(4074), + [anon_sym_volatile] = ACTIONS(4074), + [anon_sym_restrict] = ACTIONS(4074), + [anon_sym___restrict__] = ACTIONS(4074), + [anon_sym__Atomic] = ACTIONS(4074), + [anon_sym__Noreturn] = ACTIONS(4074), + [anon_sym__Nonnull] = ACTIONS(4074), + [anon_sym_nullable] = ACTIONS(4074), + [anon_sym__Complex] = ACTIONS(4074), + [anon_sym__Nullable] = ACTIONS(4074), + [anon_sym__Nullable_result] = ACTIONS(4074), + [anon_sym__Null_unspecified] = ACTIONS(4074), + [anon_sym___autoreleasing] = ACTIONS(4074), + [anon_sym___block] = ACTIONS(4074), + [anon_sym___bridge] = ACTIONS(4074), + [anon_sym___bridge_retained] = ACTIONS(4074), + [anon_sym___bridge_transfer] = ACTIONS(4074), + [anon_sym___complex] = ACTIONS(4074), + [anon_sym___const] = ACTIONS(4074), + [anon_sym___imag] = ACTIONS(4074), + [anon_sym___kindof] = ACTIONS(4074), + [anon_sym___nonnull] = ACTIONS(4074), + [anon_sym___nullable] = ACTIONS(4074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4074), + [anon_sym___real] = ACTIONS(4074), + [anon_sym___strong] = ACTIONS(4074), + [anon_sym___unsafe_unretained] = ACTIONS(4074), + [anon_sym___unused] = ACTIONS(4074), + [anon_sym___weak] = ACTIONS(4074), + [anon_sym_alignas] = ACTIONS(4074), + [anon_sym__Alignas] = ACTIONS(4074), + [anon_sym_COLON] = ACTIONS(4076), + [anon_sym_QMARK] = ACTIONS(4076), + [anon_sym_STAR_EQ] = ACTIONS(4076), + [anon_sym_SLASH_EQ] = ACTIONS(4076), + [anon_sym_PERCENT_EQ] = ACTIONS(4076), + [anon_sym_PLUS_EQ] = ACTIONS(4076), + [anon_sym_DASH_EQ] = ACTIONS(4076), + [anon_sym_LT_LT_EQ] = ACTIONS(4076), + [anon_sym_GT_GT_EQ] = ACTIONS(4076), + [anon_sym_AMP_EQ] = ACTIONS(4076), + [anon_sym_CARET_EQ] = ACTIONS(4076), + [anon_sym_PIPE_EQ] = ACTIONS(4076), + [anon_sym_DASH_DASH] = ACTIONS(4076), + [anon_sym_PLUS_PLUS] = ACTIONS(4076), + [anon_sym_DOT] = ACTIONS(4074), + [anon_sym_DASH_GT] = ACTIONS(4076), + [anon_sym_AT] = ACTIONS(4076), + [anon_sym_DQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4076), + [anon_sym_u_DQUOTE] = ACTIONS(4076), + [anon_sym_U_DQUOTE] = ACTIONS(4076), + [anon_sym_u8_DQUOTE] = ACTIONS(4076), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4074), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4074), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4074), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4074), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4074), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4074), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4074), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4074), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4074), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4074), + [anon_sym_NS_AVAILABLE] = ACTIONS(4074), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4074), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4074), + [anon_sym_API_AVAILABLE] = ACTIONS(4074), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4074), + [anon_sym_API_DEPRECATED] = ACTIONS(4074), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4074), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4074), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4074), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4074), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4074), + [anon_sym___deprecated_msg] = ACTIONS(4074), + [anon_sym___deprecated_enum_msg] = ACTIONS(4074), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4074), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4074), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4074), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4074), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4074), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4074), + }, + [1681] = { + [sym_identifier] = ACTIONS(4090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4092), + [anon_sym_COMMA] = ACTIONS(4092), + [anon_sym_RPAREN] = ACTIONS(4092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4092), + [anon_sym_LPAREN2] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4090), + [anon_sym_PLUS] = ACTIONS(4090), + [anon_sym_STAR] = ACTIONS(4090), + [anon_sym_SLASH] = ACTIONS(4090), + [anon_sym_PERCENT] = ACTIONS(4090), + [anon_sym_PIPE_PIPE] = ACTIONS(4092), + [anon_sym_AMP_AMP] = ACTIONS(4092), + [anon_sym_PIPE] = ACTIONS(4090), + [anon_sym_CARET] = ACTIONS(4090), + [anon_sym_AMP] = ACTIONS(4090), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4090), + [anon_sym_GT_EQ] = ACTIONS(4092), + [anon_sym_LT_EQ] = ACTIONS(4092), + [anon_sym_LT] = ACTIONS(4090), + [anon_sym_LT_LT] = ACTIONS(4090), + [anon_sym_GT_GT] = ACTIONS(4090), + [anon_sym_SEMI] = ACTIONS(4092), + [anon_sym___extension__] = ACTIONS(4090), + [anon_sym_extern] = ACTIONS(4090), + [anon_sym___attribute__] = ACTIONS(4090), + [anon_sym___attribute] = ACTIONS(4090), + [anon_sym_noreturn] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(4092), + [anon_sym_RBRACK] = ACTIONS(4092), + [anon_sym___declspec] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4092), + [anon_sym_static] = ACTIONS(4090), + [anon_sym_EQ] = ACTIONS(4090), + [anon_sym_auto] = ACTIONS(4090), + [anon_sym_register] = ACTIONS(4090), + [anon_sym_inline] = ACTIONS(4090), + [anon_sym___inline] = ACTIONS(4090), + [anon_sym___inline__] = ACTIONS(4090), + [anon_sym___forceinline] = ACTIONS(4090), + [anon_sym_thread_local] = ACTIONS(4090), + [anon_sym___thread] = ACTIONS(4090), + [anon_sym_CG_EXTERN] = ACTIONS(4090), + [anon_sym_CG_INLINE] = ACTIONS(4090), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4090), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4090), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4090), + [anon_sym_IBOutlet] = ACTIONS(4090), + [anon_sym_IBInspectable] = ACTIONS(4090), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4090), + [anon_sym_NS_INLINE] = ACTIONS(4090), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4090), + [anon_sym_OBJC_EXPORT] = ACTIONS(4090), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4090), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4090), + [anon_sym_const] = ACTIONS(4090), + [anon_sym_constexpr] = ACTIONS(4090), + [anon_sym_volatile] = ACTIONS(4090), + [anon_sym_restrict] = ACTIONS(4090), + [anon_sym___restrict__] = ACTIONS(4090), + [anon_sym__Atomic] = ACTIONS(4090), + [anon_sym__Noreturn] = ACTIONS(4090), + [anon_sym__Nonnull] = ACTIONS(4090), + [anon_sym_nullable] = ACTIONS(4090), + [anon_sym__Complex] = ACTIONS(4090), + [anon_sym__Nullable] = ACTIONS(4090), + [anon_sym__Nullable_result] = ACTIONS(4090), + [anon_sym__Null_unspecified] = ACTIONS(4090), + [anon_sym___autoreleasing] = ACTIONS(4090), + [anon_sym___block] = ACTIONS(4090), + [anon_sym___bridge] = ACTIONS(4090), + [anon_sym___bridge_retained] = ACTIONS(4090), + [anon_sym___bridge_transfer] = ACTIONS(4090), + [anon_sym___complex] = ACTIONS(4090), + [anon_sym___const] = ACTIONS(4090), + [anon_sym___imag] = ACTIONS(4090), + [anon_sym___kindof] = ACTIONS(4090), + [anon_sym___nonnull] = ACTIONS(4090), + [anon_sym___nullable] = ACTIONS(4090), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4090), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4090), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4090), + [anon_sym___real] = ACTIONS(4090), + [anon_sym___strong] = ACTIONS(4090), + [anon_sym___unsafe_unretained] = ACTIONS(4090), + [anon_sym___unused] = ACTIONS(4090), + [anon_sym___weak] = ACTIONS(4090), + [anon_sym_alignas] = ACTIONS(4090), + [anon_sym__Alignas] = ACTIONS(4090), + [anon_sym_COLON] = ACTIONS(4092), + [anon_sym_QMARK] = ACTIONS(4092), + [anon_sym_STAR_EQ] = ACTIONS(4092), + [anon_sym_SLASH_EQ] = ACTIONS(4092), + [anon_sym_PERCENT_EQ] = ACTIONS(4092), + [anon_sym_PLUS_EQ] = ACTIONS(4092), + [anon_sym_DASH_EQ] = ACTIONS(4092), + [anon_sym_LT_LT_EQ] = ACTIONS(4092), + [anon_sym_GT_GT_EQ] = ACTIONS(4092), + [anon_sym_AMP_EQ] = ACTIONS(4092), + [anon_sym_CARET_EQ] = ACTIONS(4092), + [anon_sym_PIPE_EQ] = ACTIONS(4092), + [anon_sym_DASH_DASH] = ACTIONS(4092), + [anon_sym_PLUS_PLUS] = ACTIONS(4092), + [anon_sym_DOT] = ACTIONS(4090), + [anon_sym_DASH_GT] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4092), + [anon_sym_DQUOTE] = ACTIONS(4092), + [anon_sym_L_DQUOTE] = ACTIONS(4092), + [anon_sym_u_DQUOTE] = ACTIONS(4092), + [anon_sym_U_DQUOTE] = ACTIONS(4092), + [anon_sym_u8_DQUOTE] = ACTIONS(4092), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4090), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4090), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4090), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4090), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4090), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4090), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4090), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4090), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4090), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4090), + [anon_sym_NS_AVAILABLE] = ACTIONS(4090), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4090), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4090), + [anon_sym_API_AVAILABLE] = ACTIONS(4090), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4090), + [anon_sym_API_DEPRECATED] = ACTIONS(4090), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4090), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4090), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4090), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4090), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4090), + [anon_sym___deprecated_msg] = ACTIONS(4090), + [anon_sym___deprecated_enum_msg] = ACTIONS(4090), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4090), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4090), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4090), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4090), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4090), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4090), + }, + [1682] = { + [sym_identifier] = ACTIONS(4110), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4112), + [anon_sym_COMMA] = ACTIONS(4112), + [anon_sym_RPAREN] = ACTIONS(4112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4112), + [anon_sym_LPAREN2] = ACTIONS(4112), + [anon_sym_DASH] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4110), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4112), + [anon_sym_AMP_AMP] = ACTIONS(4112), + [anon_sym_PIPE] = ACTIONS(4110), + [anon_sym_CARET] = ACTIONS(4110), + [anon_sym_AMP] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4112), + [anon_sym_BANG_EQ] = ACTIONS(4112), + [anon_sym_GT] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4112), + [anon_sym_LT_EQ] = ACTIONS(4112), + [anon_sym_LT] = ACTIONS(4110), + [anon_sym_LT_LT] = ACTIONS(4110), + [anon_sym_GT_GT] = ACTIONS(4110), + [anon_sym_SEMI] = ACTIONS(4112), + [anon_sym___extension__] = ACTIONS(4110), + [anon_sym_extern] = ACTIONS(4110), + [anon_sym___attribute__] = ACTIONS(4110), + [anon_sym___attribute] = ACTIONS(4110), + [anon_sym_noreturn] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4112), + [anon_sym_RBRACK] = ACTIONS(4112), + [anon_sym___declspec] = ACTIONS(4110), + [anon_sym_RBRACE] = ACTIONS(4112), + [anon_sym_static] = ACTIONS(4110), + [anon_sym_EQ] = ACTIONS(4110), + [anon_sym_auto] = ACTIONS(4110), + [anon_sym_register] = ACTIONS(4110), + [anon_sym_inline] = ACTIONS(4110), + [anon_sym___inline] = ACTIONS(4110), + [anon_sym___inline__] = ACTIONS(4110), + [anon_sym___forceinline] = ACTIONS(4110), + [anon_sym_thread_local] = ACTIONS(4110), + [anon_sym___thread] = ACTIONS(4110), + [anon_sym_CG_EXTERN] = ACTIONS(4110), + [anon_sym_CG_INLINE] = ACTIONS(4110), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4110), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4110), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4110), + [anon_sym_IBOutlet] = ACTIONS(4110), + [anon_sym_IBInspectable] = ACTIONS(4110), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4110), + [anon_sym_NS_INLINE] = ACTIONS(4110), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4110), + [anon_sym_OBJC_EXPORT] = ACTIONS(4110), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4110), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4110), + [anon_sym_const] = ACTIONS(4110), + [anon_sym_constexpr] = ACTIONS(4110), + [anon_sym_volatile] = ACTIONS(4110), + [anon_sym_restrict] = ACTIONS(4110), + [anon_sym___restrict__] = ACTIONS(4110), + [anon_sym__Atomic] = ACTIONS(4110), + [anon_sym__Noreturn] = ACTIONS(4110), + [anon_sym__Nonnull] = ACTIONS(4110), + [anon_sym_nullable] = ACTIONS(4110), + [anon_sym__Complex] = ACTIONS(4110), + [anon_sym__Nullable] = ACTIONS(4110), + [anon_sym__Nullable_result] = ACTIONS(4110), + [anon_sym__Null_unspecified] = ACTIONS(4110), + [anon_sym___autoreleasing] = ACTIONS(4110), + [anon_sym___block] = ACTIONS(4110), + [anon_sym___bridge] = ACTIONS(4110), + [anon_sym___bridge_retained] = ACTIONS(4110), + [anon_sym___bridge_transfer] = ACTIONS(4110), + [anon_sym___complex] = ACTIONS(4110), + [anon_sym___const] = ACTIONS(4110), + [anon_sym___imag] = ACTIONS(4110), + [anon_sym___kindof] = ACTIONS(4110), + [anon_sym___nonnull] = ACTIONS(4110), + [anon_sym___nullable] = ACTIONS(4110), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4110), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4110), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4110), + [anon_sym___real] = ACTIONS(4110), + [anon_sym___strong] = ACTIONS(4110), + [anon_sym___unsafe_unretained] = ACTIONS(4110), + [anon_sym___unused] = ACTIONS(4110), + [anon_sym___weak] = ACTIONS(4110), + [anon_sym_alignas] = ACTIONS(4110), + [anon_sym__Alignas] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4112), + [anon_sym_STAR_EQ] = ACTIONS(4112), + [anon_sym_SLASH_EQ] = ACTIONS(4112), + [anon_sym_PERCENT_EQ] = ACTIONS(4112), + [anon_sym_PLUS_EQ] = ACTIONS(4112), + [anon_sym_DASH_EQ] = ACTIONS(4112), + [anon_sym_LT_LT_EQ] = ACTIONS(4112), + [anon_sym_GT_GT_EQ] = ACTIONS(4112), + [anon_sym_AMP_EQ] = ACTIONS(4112), + [anon_sym_CARET_EQ] = ACTIONS(4112), + [anon_sym_PIPE_EQ] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_DASH_GT] = ACTIONS(4112), + [anon_sym_AT] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4112), + [anon_sym_L_DQUOTE] = ACTIONS(4112), + [anon_sym_u_DQUOTE] = ACTIONS(4112), + [anon_sym_U_DQUOTE] = ACTIONS(4112), + [anon_sym_u8_DQUOTE] = ACTIONS(4112), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4110), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4110), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4110), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4110), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4110), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4110), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4110), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4110), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4110), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4110), + [anon_sym_NS_AVAILABLE] = ACTIONS(4110), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4110), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4110), + [anon_sym_API_AVAILABLE] = ACTIONS(4110), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4110), + [anon_sym_API_DEPRECATED] = ACTIONS(4110), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4110), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4110), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4110), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4110), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4110), + [anon_sym___deprecated_msg] = ACTIONS(4110), + [anon_sym___deprecated_enum_msg] = ACTIONS(4110), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4110), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4110), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4110), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4110), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4110), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4110), + }, + [1683] = { + [sym_identifier] = ACTIONS(4114), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4117), + [anon_sym_COMMA] = ACTIONS(4117), + [anon_sym_RPAREN] = ACTIONS(4117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4117), + [anon_sym_LPAREN2] = ACTIONS(4117), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4114), + [anon_sym_PIPE_PIPE] = ACTIONS(4117), + [anon_sym_AMP_AMP] = ACTIONS(4117), + [anon_sym_PIPE] = ACTIONS(4114), + [anon_sym_CARET] = ACTIONS(4114), + [anon_sym_AMP] = ACTIONS(4114), + [anon_sym_EQ_EQ] = ACTIONS(4117), + [anon_sym_BANG_EQ] = ACTIONS(4117), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_GT_EQ] = ACTIONS(4117), + [anon_sym_LT_EQ] = ACTIONS(4117), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_LT_LT] = ACTIONS(4114), + [anon_sym_GT_GT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4117), + [anon_sym___extension__] = ACTIONS(4114), + [anon_sym_extern] = ACTIONS(4114), + [anon_sym___attribute__] = ACTIONS(4114), + [anon_sym___attribute] = ACTIONS(4114), + [anon_sym_noreturn] = ACTIONS(4114), + [anon_sym_LBRACK] = ACTIONS(4117), + [anon_sym_RBRACK] = ACTIONS(4117), + [anon_sym___declspec] = ACTIONS(4114), + [anon_sym_RBRACE] = ACTIONS(4117), + [anon_sym_static] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(4114), + [anon_sym_auto] = ACTIONS(4114), + [anon_sym_register] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym___inline] = ACTIONS(4114), + [anon_sym___inline__] = ACTIONS(4114), + [anon_sym___forceinline] = ACTIONS(4114), + [anon_sym_thread_local] = ACTIONS(4114), + [anon_sym___thread] = ACTIONS(4114), + [anon_sym_CG_EXTERN] = ACTIONS(4114), + [anon_sym_CG_INLINE] = ACTIONS(4114), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4114), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4114), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4114), + [anon_sym_IBOutlet] = ACTIONS(4114), + [anon_sym_IBInspectable] = ACTIONS(4114), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4114), + [anon_sym_NS_INLINE] = ACTIONS(4114), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4114), + [anon_sym_OBJC_EXPORT] = ACTIONS(4114), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4114), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4114), + [anon_sym_const] = ACTIONS(4114), + [anon_sym_constexpr] = ACTIONS(4114), + [anon_sym_volatile] = ACTIONS(4114), + [anon_sym_restrict] = ACTIONS(4114), + [anon_sym___restrict__] = ACTIONS(4114), + [anon_sym__Atomic] = ACTIONS(4114), + [anon_sym__Noreturn] = ACTIONS(4114), + [anon_sym__Nonnull] = ACTIONS(4114), + [anon_sym_nullable] = ACTIONS(4114), + [anon_sym__Complex] = ACTIONS(4114), + [anon_sym__Nullable] = ACTIONS(4114), + [anon_sym__Nullable_result] = ACTIONS(4114), + [anon_sym__Null_unspecified] = ACTIONS(4114), + [anon_sym___autoreleasing] = ACTIONS(4114), + [anon_sym___block] = ACTIONS(4114), + [anon_sym___bridge] = ACTIONS(4114), + [anon_sym___bridge_retained] = ACTIONS(4114), + [anon_sym___bridge_transfer] = ACTIONS(4114), + [anon_sym___complex] = ACTIONS(4114), + [anon_sym___const] = ACTIONS(4114), + [anon_sym___imag] = ACTIONS(4114), + [anon_sym___kindof] = ACTIONS(4114), + [anon_sym___nonnull] = ACTIONS(4114), + [anon_sym___nullable] = ACTIONS(4114), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4114), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4114), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4114), + [anon_sym___real] = ACTIONS(4114), + [anon_sym___strong] = ACTIONS(4114), + [anon_sym___unsafe_unretained] = ACTIONS(4114), + [anon_sym___unused] = ACTIONS(4114), + [anon_sym___weak] = ACTIONS(4114), + [anon_sym_alignas] = ACTIONS(4114), + [anon_sym__Alignas] = ACTIONS(4114), + [anon_sym_COLON] = ACTIONS(4117), + [anon_sym_QMARK] = ACTIONS(4117), + [anon_sym_STAR_EQ] = ACTIONS(4117), + [anon_sym_SLASH_EQ] = ACTIONS(4117), + [anon_sym_PERCENT_EQ] = ACTIONS(4117), + [anon_sym_PLUS_EQ] = ACTIONS(4117), + [anon_sym_DASH_EQ] = ACTIONS(4117), + [anon_sym_LT_LT_EQ] = ACTIONS(4117), + [anon_sym_GT_GT_EQ] = ACTIONS(4117), + [anon_sym_AMP_EQ] = ACTIONS(4117), + [anon_sym_CARET_EQ] = ACTIONS(4117), + [anon_sym_PIPE_EQ] = ACTIONS(4117), + [anon_sym_DASH_DASH] = ACTIONS(4117), + [anon_sym_PLUS_PLUS] = ACTIONS(4117), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_DASH_GT] = ACTIONS(4117), + [anon_sym_AT] = ACTIONS(4117), + [anon_sym_DQUOTE] = ACTIONS(4117), + [anon_sym_L_DQUOTE] = ACTIONS(4117), + [anon_sym_u_DQUOTE] = ACTIONS(4117), + [anon_sym_U_DQUOTE] = ACTIONS(4117), + [anon_sym_u8_DQUOTE] = ACTIONS(4117), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4114), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4114), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4114), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4114), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4114), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4114), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4114), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4114), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4114), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4114), + [anon_sym_NS_AVAILABLE] = ACTIONS(4114), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4114), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4114), + [anon_sym_API_AVAILABLE] = ACTIONS(4114), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4114), + [anon_sym_API_DEPRECATED] = ACTIONS(4114), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4114), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4114), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4114), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4114), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4114), + [anon_sym___deprecated_msg] = ACTIONS(4114), + [anon_sym___deprecated_enum_msg] = ACTIONS(4114), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4114), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4114), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4114), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4114), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4114), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4114), + }, + [1684] = { + [sym_declaration] = STATE(1855), + [sym__declaration_modifiers] = STATE(1956), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1956), + [sym_attribute_declaration] = STATE(1956), + [sym_ms_declspec_modifier] = STATE(1956), + [sym_compound_statement] = STATE(2341), + [sym_storage_class_specifier] = STATE(1956), + [sym_type_qualifier] = STATE(1956), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1956), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(2689), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1855), + [aux_sym__declaration_specifiers_repeat1] = STATE(1956), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(2689), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4653), + [anon_sym_SEMI] = ACTIONS(4655), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1685] = { + [sym_declaration] = STATE(1879), + [sym__declaration_modifiers] = STATE(1985), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1985), + [sym_attribute_declaration] = STATE(1985), + [sym_ms_declspec_modifier] = STATE(1985), + [sym_compound_statement] = STATE(2315), + [sym_storage_class_specifier] = STATE(1985), + [sym_type_qualifier] = STATE(1985), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1985), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(1694), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1879), + [aux_sym__declaration_specifiers_repeat1] = STATE(1985), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(1694), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4663), + [anon_sym_SEMI] = ACTIONS(4665), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1686] = { + [sym_declaration] = STATE(1885), + [sym__declaration_modifiers] = STATE(1951), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1951), + [sym_attribute_declaration] = STATE(1951), + [sym_ms_declspec_modifier] = STATE(1951), + [sym_compound_statement] = STATE(2321), + [sym_storage_class_specifier] = STATE(1951), + [sym_type_qualifier] = STATE(1951), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1951), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(1684), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1885), + [aux_sym__declaration_specifiers_repeat1] = STATE(1951), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(1684), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4671), + [anon_sym_SEMI] = ACTIONS(4673), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1687] = { + [sym_declaration] = STATE(1885), + [sym__declaration_modifiers] = STATE(1951), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1951), + [sym_attribute_declaration] = STATE(1951), + [sym_ms_declspec_modifier] = STATE(1951), + [sym_compound_statement] = STATE(2321), + [sym_storage_class_specifier] = STATE(1951), + [sym_type_qualifier] = STATE(1951), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1951), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(2689), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1885), + [aux_sym__declaration_specifiers_repeat1] = STATE(1951), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(2689), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4671), + [anon_sym_SEMI] = ACTIONS(4673), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1688] = { + [sym_declaration] = STATE(1879), + [sym__declaration_modifiers] = STATE(1985), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1985), + [sym_attribute_declaration] = STATE(1985), + [sym_ms_declspec_modifier] = STATE(1985), + [sym_compound_statement] = STATE(2315), + [sym_storage_class_specifier] = STATE(1985), + [sym_type_qualifier] = STATE(1985), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1985), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(2689), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1879), + [aux_sym__declaration_specifiers_repeat1] = STATE(1985), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(2689), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4663), + [anon_sym_SEMI] = ACTIONS(4665), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1689] = { + [sym_declaration] = STATE(1865), + [sym__declaration_modifiers] = STATE(1972), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1972), + [sym_attribute_declaration] = STATE(1972), + [sym_ms_declspec_modifier] = STATE(1972), + [sym_compound_statement] = STATE(2113), + [sym_storage_class_specifier] = STATE(1972), + [sym_type_qualifier] = STATE(1972), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1972), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(1691), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1865), + [aux_sym__declaration_specifiers_repeat1] = STATE(1972), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(1691), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4675), + [anon_sym_SEMI] = ACTIONS(4677), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1690] = { + [sym_declaration] = STATE(1866), + [sym__declaration_modifiers] = STATE(1960), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1960), + [sym_attribute_declaration] = STATE(1960), + [sym_ms_declspec_modifier] = STATE(1960), + [sym_compound_statement] = STATE(2257), + [sym_storage_class_specifier] = STATE(1960), + [sym_type_qualifier] = STATE(1960), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1960), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(2689), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1866), + [aux_sym__declaration_specifiers_repeat1] = STATE(1960), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(2689), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4683), + [anon_sym_SEMI] = ACTIONS(4685), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1691] = { + [sym_declaration] = STATE(1860), + [sym__declaration_modifiers] = STATE(1976), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1976), + [sym_attribute_declaration] = STATE(1976), + [sym_ms_declspec_modifier] = STATE(1976), + [sym_compound_statement] = STATE(2146), + [sym_storage_class_specifier] = STATE(1976), + [sym_type_qualifier] = STATE(1976), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1976), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(2689), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1860), + [aux_sym__declaration_specifiers_repeat1] = STATE(1976), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(2689), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4687), + [anon_sym_SEMI] = ACTIONS(4689), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1692] = { + [sym_string_literal] = STATE(1633), + [sym_identifier] = ACTIONS(3977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3979), + [anon_sym_COMMA] = ACTIONS(3979), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3979), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3979), + [anon_sym_LPAREN2] = ACTIONS(3979), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_STAR] = ACTIONS(3977), + [anon_sym_SLASH] = ACTIONS(3977), + [anon_sym_PERCENT] = ACTIONS(3977), + [anon_sym_PIPE_PIPE] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3979), + [anon_sym_PIPE] = ACTIONS(3977), + [anon_sym_CARET] = ACTIONS(3977), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_EQ_EQ] = ACTIONS(3979), + [anon_sym_BANG_EQ] = ACTIONS(3979), + [anon_sym_GT] = ACTIONS(3977), + [anon_sym_GT_EQ] = ACTIONS(3979), + [anon_sym_LT_EQ] = ACTIONS(3979), + [anon_sym_LT] = ACTIONS(3977), + [anon_sym_LT_LT] = ACTIONS(3977), + [anon_sym_GT_GT] = ACTIONS(3977), + [anon_sym___extension__] = ACTIONS(3977), + [anon_sym_extern] = ACTIONS(3977), + [anon_sym___attribute__] = ACTIONS(3977), + [anon_sym___attribute] = ACTIONS(3977), + [anon_sym_noreturn] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3979), + [anon_sym_RBRACK] = ACTIONS(3979), + [anon_sym___declspec] = ACTIONS(3977), + [anon_sym_RBRACE] = ACTIONS(3979), + [anon_sym_static] = ACTIONS(3977), + [anon_sym_EQ] = ACTIONS(3977), + [anon_sym_auto] = ACTIONS(3977), + [anon_sym_register] = ACTIONS(3977), + [anon_sym_inline] = ACTIONS(3977), + [anon_sym___inline] = ACTIONS(3977), + [anon_sym___inline__] = ACTIONS(3977), + [anon_sym___forceinline] = ACTIONS(3977), + [anon_sym_thread_local] = ACTIONS(3977), + [anon_sym___thread] = ACTIONS(3977), + [anon_sym_CG_EXTERN] = ACTIONS(3977), + [anon_sym_CG_INLINE] = ACTIONS(3977), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3977), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3977), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3977), + [anon_sym_IBOutlet] = ACTIONS(3977), + [anon_sym_IBInspectable] = ACTIONS(3977), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3977), + [anon_sym_NS_INLINE] = ACTIONS(3977), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3977), + [anon_sym_OBJC_EXPORT] = ACTIONS(3977), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3977), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(3977), + [anon_sym_constexpr] = ACTIONS(3977), + [anon_sym_volatile] = ACTIONS(3977), + [anon_sym_restrict] = ACTIONS(3977), + [anon_sym___restrict__] = ACTIONS(3977), + [anon_sym__Atomic] = ACTIONS(3977), + [anon_sym__Noreturn] = ACTIONS(3977), + [anon_sym__Nonnull] = ACTIONS(3977), + [anon_sym_nullable] = ACTIONS(3977), + [anon_sym__Complex] = ACTIONS(3977), + [anon_sym__Nullable] = ACTIONS(3977), + [anon_sym__Nullable_result] = ACTIONS(3977), + [anon_sym__Null_unspecified] = ACTIONS(3977), + [anon_sym___autoreleasing] = ACTIONS(3977), + [anon_sym___block] = ACTIONS(3977), + [anon_sym___bridge] = ACTIONS(3977), + [anon_sym___bridge_retained] = ACTIONS(3977), + [anon_sym___bridge_transfer] = ACTIONS(3977), + [anon_sym___complex] = ACTIONS(3977), + [anon_sym___const] = ACTIONS(3977), + [anon_sym___imag] = ACTIONS(3977), + [anon_sym___kindof] = ACTIONS(3977), + [anon_sym___nonnull] = ACTIONS(3977), + [anon_sym___nullable] = ACTIONS(3977), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3977), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3977), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3977), + [anon_sym___real] = ACTIONS(3977), + [anon_sym___strong] = ACTIONS(3977), + [anon_sym___unsafe_unretained] = ACTIONS(3977), + [anon_sym___unused] = ACTIONS(3977), + [anon_sym___weak] = ACTIONS(3977), + [anon_sym_alignas] = ACTIONS(3977), + [anon_sym__Alignas] = ACTIONS(3977), + [anon_sym_COLON] = ACTIONS(3979), + [anon_sym_QMARK] = ACTIONS(3979), + [anon_sym_STAR_EQ] = ACTIONS(3979), + [anon_sym_SLASH_EQ] = ACTIONS(3979), + [anon_sym_PERCENT_EQ] = ACTIONS(3979), + [anon_sym_PLUS_EQ] = ACTIONS(3979), + [anon_sym_DASH_EQ] = ACTIONS(3979), + [anon_sym_LT_LT_EQ] = ACTIONS(3979), + [anon_sym_GT_GT_EQ] = ACTIONS(3979), + [anon_sym_AMP_EQ] = ACTIONS(3979), + [anon_sym_CARET_EQ] = ACTIONS(3979), + [anon_sym_PIPE_EQ] = ACTIONS(3979), + [anon_sym_DASH_DASH] = ACTIONS(3979), + [anon_sym_PLUS_PLUS] = ACTIONS(3979), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_DASH_GT] = ACTIONS(3979), + [anon_sym_AT] = ACTIONS(4630), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3977), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3977), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3977), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3977), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3977), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3977), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3977), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3977), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3977), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3977), + [anon_sym_NS_AVAILABLE] = ACTIONS(3977), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3977), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3977), + [anon_sym_API_AVAILABLE] = ACTIONS(3977), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3977), + [anon_sym_API_DEPRECATED] = ACTIONS(3977), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3977), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3977), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3977), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3977), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3977), + [anon_sym___deprecated_msg] = ACTIONS(3977), + [anon_sym___deprecated_enum_msg] = ACTIONS(3977), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3977), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3977), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3977), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3977), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3977), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3977), + }, + [1693] = { + [sym_declaration] = STATE(1860), + [sym__declaration_modifiers] = STATE(1976), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1976), + [sym_attribute_declaration] = STATE(1976), + [sym_ms_declspec_modifier] = STATE(1976), + [sym_compound_statement] = STATE(2146), + [sym_storage_class_specifier] = STATE(1976), + [sym_type_qualifier] = STATE(1976), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1976), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(1701), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1860), + [aux_sym__declaration_specifiers_repeat1] = STATE(1976), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(1701), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4687), + [anon_sym_SEMI] = ACTIONS(4689), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1694] = { + [sym_declaration] = STATE(1846), + [sym__declaration_modifiers] = STATE(1988), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1988), + [sym_attribute_declaration] = STATE(1988), + [sym_ms_declspec_modifier] = STATE(1988), + [sym_compound_statement] = STATE(2272), + [sym_storage_class_specifier] = STATE(1988), + [sym_type_qualifier] = STATE(1988), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1988), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(2689), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1846), + [aux_sym__declaration_specifiers_repeat1] = STATE(1988), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(2689), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4691), + [anon_sym_SEMI] = ACTIONS(4693), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1695] = { + [sym_declaration] = STATE(1873), + [sym__declaration_modifiers] = STATE(1959), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1959), + [sym_attribute_declaration] = STATE(1959), + [sym_ms_declspec_modifier] = STATE(1959), + [sym_compound_statement] = STATE(2351), + [sym_storage_class_specifier] = STATE(1959), + [sym_type_qualifier] = STATE(1959), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1959), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(2689), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1873), + [aux_sym__declaration_specifiers_repeat1] = STATE(1959), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(2689), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4695), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1696] = { + [sym_declaration] = STATE(1873), + [sym__declaration_modifiers] = STATE(1959), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1959), + [sym_attribute_declaration] = STATE(1959), + [sym_ms_declspec_modifier] = STATE(1959), + [sym_compound_statement] = STATE(2351), + [sym_storage_class_specifier] = STATE(1959), + [sym_type_qualifier] = STATE(1959), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1959), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(1687), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1873), + [aux_sym__declaration_specifiers_repeat1] = STATE(1959), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(1687), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4695), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1697] = { + [sym_declaration] = STATE(1846), + [sym__declaration_modifiers] = STATE(1988), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1988), + [sym_attribute_declaration] = STATE(1988), + [sym_ms_declspec_modifier] = STATE(1988), + [sym_compound_statement] = STATE(2272), + [sym_storage_class_specifier] = STATE(1988), + [sym_type_qualifier] = STATE(1988), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1988), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(1699), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1846), + [aux_sym__declaration_specifiers_repeat1] = STATE(1988), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(1699), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4691), + [anon_sym_SEMI] = ACTIONS(4693), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1698] = { + [sym_string_literal] = STATE(1633), + [sym_identifier] = ACTIONS(4699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3979), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_RPAREN] = ACTIONS(3979), + [anon_sym_LPAREN2] = ACTIONS(3979), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_STAR] = ACTIONS(3977), + [anon_sym_SLASH] = ACTIONS(3977), + [anon_sym_PERCENT] = ACTIONS(3977), + [anon_sym_PIPE_PIPE] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3979), + [anon_sym_PIPE] = ACTIONS(3977), + [anon_sym_CARET] = ACTIONS(3977), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_EQ_EQ] = ACTIONS(3979), + [anon_sym_BANG_EQ] = ACTIONS(3979), + [anon_sym_GT] = ACTIONS(3977), + [anon_sym_GT_EQ] = ACTIONS(3979), + [anon_sym_LT_EQ] = ACTIONS(3979), + [anon_sym_LT] = ACTIONS(3977), + [anon_sym_LT_LT] = ACTIONS(3977), + [anon_sym_GT_GT] = ACTIONS(3977), + [anon_sym_SEMI] = ACTIONS(3979), + [anon_sym___extension__] = ACTIONS(3977), + [anon_sym_extern] = ACTIONS(3977), + [anon_sym___attribute__] = ACTIONS(3977), + [anon_sym___attribute] = ACTIONS(3977), + [anon_sym_noreturn] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3979), + [anon_sym_RBRACK] = ACTIONS(3979), + [anon_sym___declspec] = ACTIONS(3977), + [anon_sym_RBRACE] = ACTIONS(3979), + [anon_sym_static] = ACTIONS(3977), + [anon_sym_EQ] = ACTIONS(3977), + [anon_sym_auto] = ACTIONS(3977), + [anon_sym_register] = ACTIONS(3977), + [anon_sym_inline] = ACTIONS(3977), + [anon_sym___inline] = ACTIONS(3977), + [anon_sym___inline__] = ACTIONS(3977), + [anon_sym___forceinline] = ACTIONS(3977), + [anon_sym_thread_local] = ACTIONS(3977), + [anon_sym___thread] = ACTIONS(3977), + [anon_sym_CG_EXTERN] = ACTIONS(3977), + [anon_sym_CG_INLINE] = ACTIONS(3977), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3977), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3977), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3977), + [anon_sym_IBOutlet] = ACTIONS(3977), + [anon_sym_IBInspectable] = ACTIONS(3977), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3977), + [anon_sym_NS_INLINE] = ACTIONS(3977), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3977), + [anon_sym_OBJC_EXPORT] = ACTIONS(3977), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3977), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(3977), + [anon_sym_constexpr] = ACTIONS(3977), + [anon_sym_volatile] = ACTIONS(3977), + [anon_sym_restrict] = ACTIONS(3977), + [anon_sym___restrict__] = ACTIONS(3977), + [anon_sym__Atomic] = ACTIONS(3977), + [anon_sym__Noreturn] = ACTIONS(3977), + [anon_sym__Nonnull] = ACTIONS(3977), + [anon_sym_nullable] = ACTIONS(3977), + [anon_sym__Complex] = ACTIONS(3977), + [anon_sym__Nullable] = ACTIONS(3977), + [anon_sym__Nullable_result] = ACTIONS(3977), + [anon_sym__Null_unspecified] = ACTIONS(3977), + [anon_sym___autoreleasing] = ACTIONS(3977), + [anon_sym___block] = ACTIONS(3977), + [anon_sym___bridge] = ACTIONS(3977), + [anon_sym___bridge_retained] = ACTIONS(3977), + [anon_sym___bridge_transfer] = ACTIONS(3977), + [anon_sym___complex] = ACTIONS(3977), + [anon_sym___const] = ACTIONS(3977), + [anon_sym___imag] = ACTIONS(3977), + [anon_sym___kindof] = ACTIONS(3977), + [anon_sym___nonnull] = ACTIONS(3977), + [anon_sym___nullable] = ACTIONS(3977), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3977), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3977), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3977), + [anon_sym___real] = ACTIONS(3977), + [anon_sym___strong] = ACTIONS(3977), + [anon_sym___unsafe_unretained] = ACTIONS(3977), + [anon_sym___unused] = ACTIONS(3977), + [anon_sym___weak] = ACTIONS(3977), + [anon_sym_alignas] = ACTIONS(3977), + [anon_sym__Alignas] = ACTIONS(3977), + [anon_sym_COLON] = ACTIONS(3979), + [anon_sym_QMARK] = ACTIONS(3979), + [anon_sym_STAR_EQ] = ACTIONS(3979), + [anon_sym_SLASH_EQ] = ACTIONS(3979), + [anon_sym_PERCENT_EQ] = ACTIONS(3979), + [anon_sym_PLUS_EQ] = ACTIONS(3979), + [anon_sym_DASH_EQ] = ACTIONS(3979), + [anon_sym_LT_LT_EQ] = ACTIONS(3979), + [anon_sym_GT_GT_EQ] = ACTIONS(3979), + [anon_sym_AMP_EQ] = ACTIONS(3979), + [anon_sym_CARET_EQ] = ACTIONS(3979), + [anon_sym_PIPE_EQ] = ACTIONS(3979), + [anon_sym_DASH_DASH] = ACTIONS(3979), + [anon_sym_PLUS_PLUS] = ACTIONS(3979), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_DASH_GT] = ACTIONS(3979), + [anon_sym_AT] = ACTIONS(4630), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3977), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3977), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3977), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3977), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3977), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3977), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3977), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3977), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3977), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3977), + [anon_sym_NS_AVAILABLE] = ACTIONS(3977), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3977), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3977), + [anon_sym_API_AVAILABLE] = ACTIONS(3977), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3977), + [anon_sym_API_DEPRECATED] = ACTIONS(3977), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3977), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3977), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3977), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3977), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3977), + [anon_sym___deprecated_msg] = ACTIONS(3977), + [anon_sym___deprecated_enum_msg] = ACTIONS(3977), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3977), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3977), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3977), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3977), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3977), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3977), + }, + [1699] = { + [sym_declaration] = STATE(1884), + [sym__declaration_modifiers] = STATE(1990), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1990), + [sym_attribute_declaration] = STATE(1990), + [sym_ms_declspec_modifier] = STATE(1990), + [sym_compound_statement] = STATE(2346), + [sym_storage_class_specifier] = STATE(1990), + [sym_type_qualifier] = STATE(1990), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1990), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(2689), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1884), + [aux_sym__declaration_specifiers_repeat1] = STATE(1990), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(2689), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4701), + [anon_sym_SEMI] = ACTIONS(4703), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1700] = { + [sym_declaration] = STATE(1865), + [sym__declaration_modifiers] = STATE(1972), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1972), + [sym_attribute_declaration] = STATE(1972), + [sym_ms_declspec_modifier] = STATE(1972), + [sym_compound_statement] = STATE(2113), + [sym_storage_class_specifier] = STATE(1972), + [sym_type_qualifier] = STATE(1972), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1972), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(2689), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1865), + [aux_sym__declaration_specifiers_repeat1] = STATE(1972), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(2689), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4675), + [anon_sym_SEMI] = ACTIONS(4677), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1701] = { + [sym_declaration] = STATE(1861), + [sym__declaration_modifiers] = STATE(1979), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1979), + [sym_attribute_declaration] = STATE(1979), + [sym_ms_declspec_modifier] = STATE(1979), + [sym_compound_statement] = STATE(2189), + [sym_storage_class_specifier] = STATE(1979), + [sym_type_qualifier] = STATE(1979), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1979), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(2689), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1861), + [aux_sym__declaration_specifiers_repeat1] = STATE(1979), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(2689), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4705), + [anon_sym_SEMI] = ACTIONS(4707), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1702] = { + [sym_declaration] = STATE(1841), + [sym__declaration_modifiers] = STATE(1992), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1992), + [sym_attribute_declaration] = STATE(1992), + [sym_ms_declspec_modifier] = STATE(1992), + [sym_compound_statement] = STATE(2326), + [sym_storage_class_specifier] = STATE(1992), + [sym_type_qualifier] = STATE(1992), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1992), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(1707), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1841), + [aux_sym__declaration_specifiers_repeat1] = STATE(1992), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(1707), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4709), + [anon_sym_SEMI] = ACTIONS(4711), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1703] = { + [sym_declaration] = STATE(1841), + [sym__declaration_modifiers] = STATE(1992), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1992), + [sym_attribute_declaration] = STATE(1992), + [sym_ms_declspec_modifier] = STATE(1992), + [sym_compound_statement] = STATE(2326), + [sym_storage_class_specifier] = STATE(1992), + [sym_type_qualifier] = STATE(1992), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1992), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(2689), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1841), + [aux_sym__declaration_specifiers_repeat1] = STATE(1992), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(2689), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4709), + [anon_sym_SEMI] = ACTIONS(4711), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1704] = { + [sym_declaration] = STATE(1861), + [sym__declaration_modifiers] = STATE(1979), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1979), + [sym_attribute_declaration] = STATE(1979), + [sym_ms_declspec_modifier] = STATE(1979), + [sym_compound_statement] = STATE(2189), + [sym_storage_class_specifier] = STATE(1979), + [sym_type_qualifier] = STATE(1979), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1979), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(1706), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1861), + [aux_sym__declaration_specifiers_repeat1] = STATE(1979), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(1706), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4705), + [anon_sym_SEMI] = ACTIONS(4707), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1705] = { + [sym_declaration] = STATE(1836), + [sym__declaration_modifiers] = STATE(1989), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1989), + [sym_attribute_declaration] = STATE(1989), + [sym_ms_declspec_modifier] = STATE(1989), + [sym_compound_statement] = STATE(2158), + [sym_storage_class_specifier] = STATE(1989), + [sym_type_qualifier] = STATE(1989), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1989), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(1708), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1836), + [aux_sym__declaration_specifiers_repeat1] = STATE(1989), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(1708), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4713), + [anon_sym_SEMI] = ACTIONS(4715), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1706] = { + [sym_declaration] = STATE(1836), + [sym__declaration_modifiers] = STATE(1989), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1989), + [sym_attribute_declaration] = STATE(1989), + [sym_ms_declspec_modifier] = STATE(1989), + [sym_compound_statement] = STATE(2158), + [sym_storage_class_specifier] = STATE(1989), + [sym_type_qualifier] = STATE(1989), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1989), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(2689), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1836), + [aux_sym__declaration_specifiers_repeat1] = STATE(1989), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(2689), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4713), + [anon_sym_SEMI] = ACTIONS(4715), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1707] = { + [sym_declaration] = STATE(1878), + [sym__declaration_modifiers] = STATE(1994), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1994), + [sym_attribute_declaration] = STATE(1994), + [sym_ms_declspec_modifier] = STATE(1994), + [sym_compound_statement] = STATE(2332), + [sym_storage_class_specifier] = STATE(1994), + [sym_type_qualifier] = STATE(1994), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1994), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(2689), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1878), + [aux_sym__declaration_specifiers_repeat1] = STATE(1994), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(2689), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4717), + [anon_sym_SEMI] = ACTIONS(4719), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1708] = { + [sym_declaration] = STATE(1842), + [sym__declaration_modifiers] = STATE(1982), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1982), + [sym_attribute_declaration] = STATE(1982), + [sym_ms_declspec_modifier] = STATE(1982), + [sym_compound_statement] = STATE(2176), + [sym_storage_class_specifier] = STATE(1982), + [sym_type_qualifier] = STATE(1982), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1982), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(2689), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1842), + [aux_sym__declaration_specifiers_repeat1] = STATE(1982), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(2689), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4721), + [anon_sym_SEMI] = ACTIONS(4723), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1709] = { + [sym_declaration] = STATE(1842), + [sym__declaration_modifiers] = STATE(1982), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1982), + [sym_attribute_declaration] = STATE(1982), + [sym_ms_declspec_modifier] = STATE(1982), + [sym_compound_statement] = STATE(2176), + [sym_storage_class_specifier] = STATE(1982), + [sym_type_qualifier] = STATE(1982), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1982), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(1710), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1842), + [aux_sym__declaration_specifiers_repeat1] = STATE(1982), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(1710), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4721), + [anon_sym_SEMI] = ACTIONS(4723), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1710] = { + [sym_declaration] = STATE(1847), + [sym__declaration_modifiers] = STATE(1984), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1984), + [sym_attribute_declaration] = STATE(1984), + [sym_ms_declspec_modifier] = STATE(1984), + [sym_compound_statement] = STATE(2207), + [sym_storage_class_specifier] = STATE(1984), + [sym_type_qualifier] = STATE(1984), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1984), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(2689), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1847), + [aux_sym__declaration_specifiers_repeat1] = STATE(1984), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(2689), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4725), + [anon_sym_SEMI] = ACTIONS(4727), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1711] = { + [sym_declaration] = STATE(1867), + [sym__declaration_modifiers] = STATE(1954), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1954), + [sym_attribute_declaration] = STATE(1954), + [sym_ms_declspec_modifier] = STATE(1954), + [sym_compound_statement] = STATE(2265), + [sym_storage_class_specifier] = STATE(1954), + [sym_type_qualifier] = STATE(1954), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1954), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(2689), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1867), + [aux_sym__declaration_specifiers_repeat1] = STATE(1954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(2689), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4729), + [anon_sym_SEMI] = ACTIONS(4731), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1712] = { + [sym_declaration] = STATE(1867), + [sym__declaration_modifiers] = STATE(1954), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1954), + [sym_attribute_declaration] = STATE(1954), + [sym_ms_declspec_modifier] = STATE(1954), + [sym_compound_statement] = STATE(2265), + [sym_storage_class_specifier] = STATE(1954), + [sym_type_qualifier] = STATE(1954), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1954), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(1715), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1867), + [aux_sym__declaration_specifiers_repeat1] = STATE(1954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(1715), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4729), + [anon_sym_SEMI] = ACTIONS(4731), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1713] = { + [sym_declaration] = STATE(1855), + [sym__declaration_modifiers] = STATE(1956), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1956), + [sym_attribute_declaration] = STATE(1956), + [sym_ms_declspec_modifier] = STATE(1956), + [sym_compound_statement] = STATE(2341), + [sym_storage_class_specifier] = STATE(1956), + [sym_type_qualifier] = STATE(1956), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1956), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(1690), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1855), + [aux_sym__declaration_specifiers_repeat1] = STATE(1956), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(1690), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4653), + [anon_sym_SEMI] = ACTIONS(4655), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1714] = { + [sym_declaration] = STATE(1878), + [sym__declaration_modifiers] = STATE(1994), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1994), + [sym_attribute_declaration] = STATE(1994), + [sym_ms_declspec_modifier] = STATE(1994), + [sym_compound_statement] = STATE(2332), + [sym_storage_class_specifier] = STATE(1994), + [sym_type_qualifier] = STATE(1994), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1994), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(1716), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1878), + [aux_sym__declaration_specifiers_repeat1] = STATE(1994), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(1716), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4717), + [anon_sym_SEMI] = ACTIONS(4719), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1715] = { + [sym_declaration] = STATE(1863), + [sym__declaration_modifiers] = STATE(1958), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1958), + [sym_attribute_declaration] = STATE(1958), + [sym_ms_declspec_modifier] = STATE(1958), + [sym_compound_statement] = STATE(2348), + [sym_storage_class_specifier] = STATE(1958), + [sym_type_qualifier] = STATE(1958), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1958), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(2689), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1863), + [aux_sym__declaration_specifiers_repeat1] = STATE(1958), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(2689), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4733), + [anon_sym_SEMI] = ACTIONS(4735), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1716] = { + [sym_declaration] = STATE(1853), + [sym__declaration_modifiers] = STATE(1997), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1997), + [sym_attribute_declaration] = STATE(1997), + [sym_ms_declspec_modifier] = STATE(1997), + [sym_compound_statement] = STATE(2339), + [sym_storage_class_specifier] = STATE(1997), + [sym_type_qualifier] = STATE(1997), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1997), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(2689), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1853), + [aux_sym__declaration_specifiers_repeat1] = STATE(1997), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(2689), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4737), + [anon_sym_SEMI] = ACTIONS(4739), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1717] = { + [sym_declaration] = STATE(1863), + [sym__declaration_modifiers] = STATE(1958), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1958), + [sym_attribute_declaration] = STATE(1958), + [sym_ms_declspec_modifier] = STATE(1958), + [sym_compound_statement] = STATE(2348), + [sym_storage_class_specifier] = STATE(1958), + [sym_type_qualifier] = STATE(1958), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1958), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(1695), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1863), + [aux_sym__declaration_specifiers_repeat1] = STATE(1958), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(1695), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4733), + [anon_sym_SEMI] = ACTIONS(4735), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1718] = { + [sym_declaration] = STATE(1883), + [sym__declaration_modifiers] = STATE(2002), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(2002), + [sym_attribute_declaration] = STATE(2002), + [sym_ms_declspec_modifier] = STATE(2002), + [sym_compound_statement] = STATE(2112), + [sym_storage_class_specifier] = STATE(2002), + [sym_type_qualifier] = STATE(2002), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2002), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(1700), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1883), + [aux_sym__declaration_specifiers_repeat1] = STATE(2002), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(1700), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4741), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1719] = { + [sym_declaration] = STATE(1876), + [sym__declaration_modifiers] = STATE(1983), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1983), + [sym_attribute_declaration] = STATE(1983), + [sym_ms_declspec_modifier] = STATE(1983), + [sym_compound_statement] = STATE(2344), + [sym_storage_class_specifier] = STATE(1983), + [sym_type_qualifier] = STATE(1983), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1983), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(1711), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1876), + [aux_sym__declaration_specifiers_repeat1] = STATE(1983), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(1711), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4745), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1720] = { + [sym_declaration] = STATE(1882), + [sym__declaration_modifiers] = STATE(1974), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1974), + [sym_attribute_declaration] = STATE(1974), + [sym_ms_declspec_modifier] = STATE(1974), + [sym_compound_statement] = STATE(2334), + [sym_storage_class_specifier] = STATE(1974), + [sym_type_qualifier] = STATE(1974), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1974), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(1688), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1882), + [aux_sym__declaration_specifiers_repeat1] = STATE(1974), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(1688), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4749), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1721] = { + [sym_declaration] = STATE(1884), + [sym__declaration_modifiers] = STATE(1990), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1990), + [sym_attribute_declaration] = STATE(1990), + [sym_ms_declspec_modifier] = STATE(1990), + [sym_compound_statement] = STATE(2346), + [sym_storage_class_specifier] = STATE(1990), + [sym_type_qualifier] = STATE(1990), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1990), + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(1703), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1884), + [aux_sym__declaration_specifiers_repeat1] = STATE(1990), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat1] = STATE(1703), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4701), + [anon_sym_SEMI] = ACTIONS(4703), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1722] = { + [sym_declaration] = STATE(1876), + [sym__declaration_modifiers] = STATE(1983), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1983), + [sym_attribute_declaration] = STATE(1983), + [sym_ms_declspec_modifier] = STATE(1983), + [sym_compound_statement] = STATE(2344), + [sym_storage_class_specifier] = STATE(1983), + [sym_type_qualifier] = STATE(1983), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1983), + [sym_keyword_declarator] = STATE(2790), + [sym_method_parameter] = STATE(1712), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1876), + [aux_sym__declaration_specifiers_repeat1] = STATE(1983), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_keyword_selector_repeat1] = STATE(2790), + [sym_identifier] = ACTIONS(4753), + [anon_sym_COMMA] = ACTIONS(4755), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4757), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1723] = { + [sym_function_definition] = STATE(516), + [sym_declaration] = STATE(516), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4245), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_ms_call_modifier] = STATE(2188), + [sym_declaration_list] = STATE(516), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4759), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1724] = { + [sym_declaration] = STATE(1846), + [sym__declaration_modifiers] = STATE(1988), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1988), + [sym_attribute_declaration] = STATE(1988), + [sym_ms_declspec_modifier] = STATE(1988), + [sym_compound_statement] = STATE(2272), + [sym_storage_class_specifier] = STATE(1988), + [sym_type_qualifier] = STATE(1988), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1988), + [sym_keyword_declarator] = STATE(2790), + [sym_method_parameter] = STATE(1721), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1846), + [aux_sym__declaration_specifiers_repeat1] = STATE(1988), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_keyword_selector_repeat1] = STATE(2790), + [sym_identifier] = ACTIONS(4753), + [anon_sym_COMMA] = ACTIONS(4761), + [anon_sym_SEMI] = ACTIONS(4693), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4757), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1725] = { + [sym_declaration] = STATE(1865), + [sym__declaration_modifiers] = STATE(1972), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1972), + [sym_attribute_declaration] = STATE(1972), + [sym_ms_declspec_modifier] = STATE(1972), + [sym_compound_statement] = STATE(2113), + [sym_storage_class_specifier] = STATE(1972), + [sym_type_qualifier] = STATE(1972), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1972), + [sym_keyword_declarator] = STATE(2790), + [sym_method_parameter] = STATE(1693), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1865), + [aux_sym__declaration_specifiers_repeat1] = STATE(1972), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_keyword_selector_repeat1] = STATE(2790), + [sym_identifier] = ACTIONS(4753), + [anon_sym_COMMA] = ACTIONS(4763), + [anon_sym_SEMI] = ACTIONS(4677), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4757), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1726] = { + [sym_declaration] = STATE(1879), + [sym__declaration_modifiers] = STATE(1985), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1985), + [sym_attribute_declaration] = STATE(1985), + [sym_ms_declspec_modifier] = STATE(1985), + [sym_compound_statement] = STATE(2315), + [sym_storage_class_specifier] = STATE(1985), + [sym_type_qualifier] = STATE(1985), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1985), + [sym_keyword_declarator] = STATE(2790), + [sym_method_parameter] = STATE(1697), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1879), + [aux_sym__declaration_specifiers_repeat1] = STATE(1985), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_keyword_selector_repeat1] = STATE(2790), + [sym_identifier] = ACTIONS(4753), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_SEMI] = ACTIONS(4665), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4757), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1727] = { + [sym_declaration] = STATE(1863), + [sym__declaration_modifiers] = STATE(1958), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1958), + [sym_attribute_declaration] = STATE(1958), + [sym_ms_declspec_modifier] = STATE(1958), + [sym_compound_statement] = STATE(2348), + [sym_storage_class_specifier] = STATE(1958), + [sym_type_qualifier] = STATE(1958), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1958), + [sym_keyword_declarator] = STATE(2790), + [sym_method_parameter] = STATE(1696), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1863), + [aux_sym__declaration_specifiers_repeat1] = STATE(1958), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_keyword_selector_repeat1] = STATE(2790), + [sym_identifier] = ACTIONS(4753), + [anon_sym_COMMA] = ACTIONS(4767), + [anon_sym_SEMI] = ACTIONS(4735), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4757), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1728] = { + [sym_function_definition] = STATE(614), + [sym_declaration] = STATE(614), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4249), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_ms_call_modifier] = STATE(2190), + [sym_declaration_list] = STATE(614), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4769), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1729] = { + [sym_declaration] = STATE(1883), + [sym__declaration_modifiers] = STATE(2002), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(2002), + [sym_attribute_declaration] = STATE(2002), + [sym_ms_declspec_modifier] = STATE(2002), + [sym_compound_statement] = STATE(2112), + [sym_storage_class_specifier] = STATE(2002), + [sym_type_qualifier] = STATE(2002), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2002), + [sym_keyword_declarator] = STATE(2790), + [sym_method_parameter] = STATE(1689), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1883), + [aux_sym__declaration_specifiers_repeat1] = STATE(2002), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_keyword_selector_repeat1] = STATE(2790), + [sym_identifier] = ACTIONS(4753), + [anon_sym_COMMA] = ACTIONS(4771), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4757), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1730] = { + [sym_function_definition] = STATE(993), + [sym_declaration] = STATE(993), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4243), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_ms_call_modifier] = STATE(2163), + [sym_declaration_list] = STATE(993), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4773), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1731] = { + [sym_function_definition] = STATE(284), + [sym_declaration] = STATE(284), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4235), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_ms_call_modifier] = STATE(2183), + [sym_declaration_list] = STATE(284), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4775), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1732] = { + [sym_declaration] = STATE(1867), + [sym__declaration_modifiers] = STATE(1954), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1954), + [sym_attribute_declaration] = STATE(1954), + [sym_ms_declspec_modifier] = STATE(1954), + [sym_compound_statement] = STATE(2265), + [sym_storage_class_specifier] = STATE(1954), + [sym_type_qualifier] = STATE(1954), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1954), + [sym_keyword_declarator] = STATE(2790), + [sym_method_parameter] = STATE(1717), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1867), + [aux_sym__declaration_specifiers_repeat1] = STATE(1954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_keyword_selector_repeat1] = STATE(2790), + [sym_identifier] = ACTIONS(4753), + [anon_sym_COMMA] = ACTIONS(4777), + [anon_sym_SEMI] = ACTIONS(4731), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4757), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1733] = { + [sym_declaration] = STATE(1860), + [sym__declaration_modifiers] = STATE(1976), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1976), + [sym_attribute_declaration] = STATE(1976), + [sym_ms_declspec_modifier] = STATE(1976), + [sym_compound_statement] = STATE(2146), + [sym_storage_class_specifier] = STATE(1976), + [sym_type_qualifier] = STATE(1976), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1976), + [sym_keyword_declarator] = STATE(2790), + [sym_method_parameter] = STATE(1704), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1860), + [aux_sym__declaration_specifiers_repeat1] = STATE(1976), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_keyword_selector_repeat1] = STATE(2790), + [sym_identifier] = ACTIONS(4753), + [anon_sym_COMMA] = ACTIONS(4779), + [anon_sym_SEMI] = ACTIONS(4689), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4757), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1734] = { + [sym_declaration] = STATE(1882), + [sym__declaration_modifiers] = STATE(1974), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1974), + [sym_attribute_declaration] = STATE(1974), + [sym_ms_declspec_modifier] = STATE(1974), + [sym_compound_statement] = STATE(2334), + [sym_storage_class_specifier] = STATE(1974), + [sym_type_qualifier] = STATE(1974), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1974), + [sym_keyword_declarator] = STATE(2790), + [sym_method_parameter] = STATE(1685), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1882), + [aux_sym__declaration_specifiers_repeat1] = STATE(1974), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_keyword_selector_repeat1] = STATE(2790), + [sym_identifier] = ACTIONS(4753), + [anon_sym_COMMA] = ACTIONS(4781), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4757), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1735] = { + [sym_function_definition] = STATE(850), + [sym_declaration] = STATE(850), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4238), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_ms_call_modifier] = STATE(2179), + [sym_declaration_list] = STATE(850), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4783), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1736] = { + [sym_string_literal] = STATE(1924), + [sym_identifier] = ACTIONS(3995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(3997), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(3995), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(3995), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(3995), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym___extension__] = ACTIONS(3995), + [anon_sym_extern] = ACTIONS(3995), + [anon_sym___attribute__] = ACTIONS(3995), + [anon_sym___attribute] = ACTIONS(3995), + [anon_sym_noreturn] = ACTIONS(3995), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym___declspec] = ACTIONS(3995), + [anon_sym_RBRACE] = ACTIONS(3997), + [anon_sym_static] = ACTIONS(3995), + [anon_sym_EQ] = ACTIONS(4785), + [anon_sym_auto] = ACTIONS(3995), + [anon_sym_register] = ACTIONS(3995), + [anon_sym_inline] = ACTIONS(3995), + [anon_sym___inline] = ACTIONS(3995), + [anon_sym___inline__] = ACTIONS(3995), + [anon_sym___forceinline] = ACTIONS(3995), + [anon_sym_thread_local] = ACTIONS(3995), + [anon_sym___thread] = ACTIONS(3995), + [anon_sym_CG_EXTERN] = ACTIONS(3995), + [anon_sym_CG_INLINE] = ACTIONS(3995), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3995), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3995), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3995), + [anon_sym_IBOutlet] = ACTIONS(3995), + [anon_sym_IBInspectable] = ACTIONS(3995), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3995), + [anon_sym_NS_INLINE] = ACTIONS(3995), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3995), + [anon_sym_OBJC_EXPORT] = ACTIONS(3995), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3995), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3995), + [anon_sym_const] = ACTIONS(3995), + [anon_sym_constexpr] = ACTIONS(3995), + [anon_sym_volatile] = ACTIONS(3995), + [anon_sym_restrict] = ACTIONS(3995), + [anon_sym___restrict__] = ACTIONS(3995), + [anon_sym__Atomic] = ACTIONS(3995), + [anon_sym__Noreturn] = ACTIONS(3995), + [anon_sym__Nonnull] = ACTIONS(3995), + [anon_sym_nullable] = ACTIONS(3995), + [anon_sym__Complex] = ACTIONS(3995), + [anon_sym__Nullable] = ACTIONS(3995), + [anon_sym__Nullable_result] = ACTIONS(3995), + [anon_sym__Null_unspecified] = ACTIONS(3995), + [anon_sym___autoreleasing] = ACTIONS(3995), + [anon_sym___block] = ACTIONS(3995), + [anon_sym___bridge] = ACTIONS(3995), + [anon_sym___bridge_retained] = ACTIONS(3995), + [anon_sym___bridge_transfer] = ACTIONS(3995), + [anon_sym___complex] = ACTIONS(3995), + [anon_sym___const] = ACTIONS(3995), + [anon_sym___imag] = ACTIONS(3995), + [anon_sym___kindof] = ACTIONS(3995), + [anon_sym___nonnull] = ACTIONS(3995), + [anon_sym___nullable] = ACTIONS(3995), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3995), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3995), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3995), + [anon_sym___real] = ACTIONS(3995), + [anon_sym___strong] = ACTIONS(3995), + [anon_sym___unsafe_unretained] = ACTIONS(3995), + [anon_sym___unused] = ACTIONS(3995), + [anon_sym___weak] = ACTIONS(3995), + [anon_sym_alignas] = ACTIONS(3995), + [anon_sym__Alignas] = ACTIONS(3995), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4787), + [anon_sym_SLASH_EQ] = ACTIONS(4787), + [anon_sym_PERCENT_EQ] = ACTIONS(4787), + [anon_sym_PLUS_EQ] = ACTIONS(4787), + [anon_sym_DASH_EQ] = ACTIONS(4787), + [anon_sym_LT_LT_EQ] = ACTIONS(4787), + [anon_sym_GT_GT_EQ] = ACTIONS(4787), + [anon_sym_AMP_EQ] = ACTIONS(4787), + [anon_sym_CARET_EQ] = ACTIONS(4787), + [anon_sym_PIPE_EQ] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3995), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3995), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3995), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3995), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3995), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3995), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3995), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3995), + [anon_sym_NS_AVAILABLE] = ACTIONS(3995), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3995), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_API_AVAILABLE] = ACTIONS(3995), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_API_DEPRECATED] = ACTIONS(3995), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3995), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3995), + [anon_sym___deprecated_msg] = ACTIONS(3995), + [anon_sym___deprecated_enum_msg] = ACTIONS(3995), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3995), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3995), + }, + [1737] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6199), + [sym__declarator] = STATE(5288), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(4160), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(4492), + [anon_sym_CARET] = ACTIONS(4494), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1738] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4789), + [anon_sym_PLUS] = ACTIONS(4789), + [anon_sym_STAR] = ACTIONS(4791), + [anon_sym_SLASH] = ACTIONS(4793), + [anon_sym_PERCENT] = ACTIONS(4791), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(4025), + [anon_sym_GT_EQ] = ACTIONS(4027), + [anon_sym_LT_EQ] = ACTIONS(4027), + [anon_sym_LT] = ACTIONS(4025), + [anon_sym_LT_LT] = ACTIONS(4795), + [anon_sym_GT_GT] = ACTIONS(4795), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4027), + [anon_sym_signed] = ACTIONS(4025), + [anon_sym_unsigned] = ACTIONS(4025), + [anon_sym_long] = ACTIONS(4025), + [anon_sym_short] = ACTIONS(4025), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_ATautoreleasepool] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [sym_primitive_type] = ACTIONS(4025), + [anon_sym_enum] = ACTIONS(4025), + [anon_sym_struct] = ACTIONS(4025), + [anon_sym_union] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4025), + [anon_sym___typeof] = ACTIONS(4025), + [anon_sym_typeof] = ACTIONS(4025), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + [anon_sym_BOOL] = ACTIONS(4025), + [anon_sym_IMP] = ACTIONS(4025), + [anon_sym_SEL] = ACTIONS(4025), + [anon_sym_Class] = ACTIONS(4025), + [anon_sym_id] = ACTIONS(4025), + }, + [1739] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4797), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4799), + [anon_sym_COMMA] = ACTIONS(4801), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4789), + [anon_sym_PLUS] = ACTIONS(4789), + [anon_sym_STAR] = ACTIONS(4791), + [anon_sym_SLASH] = ACTIONS(4793), + [anon_sym_PERCENT] = ACTIONS(4791), + [anon_sym_PIPE_PIPE] = ACTIONS(4803), + [anon_sym_AMP_AMP] = ACTIONS(4805), + [anon_sym_PIPE] = ACTIONS(4807), + [anon_sym_CARET] = ACTIONS(4809), + [anon_sym_AMP] = ACTIONS(4811), + [anon_sym_EQ_EQ] = ACTIONS(4813), + [anon_sym_BANG_EQ] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4815), + [anon_sym_GT_EQ] = ACTIONS(4817), + [anon_sym_LT_EQ] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4815), + [anon_sym_LT_LT] = ACTIONS(4795), + [anon_sym_GT_GT] = ACTIONS(4795), + [anon_sym_SEMI] = ACTIONS(4801), + [anon_sym___extension__] = ACTIONS(4797), + [anon_sym_extern] = ACTIONS(4797), + [anon_sym___attribute__] = ACTIONS(4797), + [anon_sym___attribute] = ACTIONS(4797), + [anon_sym_noreturn] = ACTIONS(4797), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4797), + [anon_sym_LBRACE] = ACTIONS(4801), + [anon_sym_signed] = ACTIONS(4797), + [anon_sym_unsigned] = ACTIONS(4797), + [anon_sym_long] = ACTIONS(4797), + [anon_sym_short] = ACTIONS(4797), + [anon_sym_static] = ACTIONS(4797), + [anon_sym_ATautoreleasepool] = ACTIONS(4801), + [anon_sym_auto] = ACTIONS(4797), + [anon_sym_register] = ACTIONS(4797), + [anon_sym_inline] = ACTIONS(4797), + [anon_sym___inline] = ACTIONS(4797), + [anon_sym___inline__] = ACTIONS(4797), + [anon_sym___forceinline] = ACTIONS(4797), + [anon_sym_thread_local] = ACTIONS(4797), + [anon_sym___thread] = ACTIONS(4797), + [anon_sym_CG_EXTERN] = ACTIONS(4797), + [anon_sym_CG_INLINE] = ACTIONS(4797), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4797), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4797), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4797), + [anon_sym_IBOutlet] = ACTIONS(4797), + [anon_sym_IBInspectable] = ACTIONS(4797), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4797), + [anon_sym_NS_INLINE] = ACTIONS(4797), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4797), + [anon_sym_OBJC_EXPORT] = ACTIONS(4797), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4797), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4797), + [anon_sym_const] = ACTIONS(4797), + [anon_sym_constexpr] = ACTIONS(4797), + [anon_sym_volatile] = ACTIONS(4797), + [anon_sym_restrict] = ACTIONS(4797), + [anon_sym___restrict__] = ACTIONS(4797), + [anon_sym__Atomic] = ACTIONS(4797), + [anon_sym__Noreturn] = ACTIONS(4797), + [anon_sym__Nonnull] = ACTIONS(4797), + [anon_sym_nullable] = ACTIONS(4797), + [anon_sym__Complex] = ACTIONS(4797), + [anon_sym__Nullable] = ACTIONS(4797), + [anon_sym__Nullable_result] = ACTIONS(4797), + [anon_sym__Null_unspecified] = ACTIONS(4797), + [anon_sym___autoreleasing] = ACTIONS(4797), + [anon_sym___block] = ACTIONS(4797), + [anon_sym___bridge] = ACTIONS(4797), + [anon_sym___bridge_retained] = ACTIONS(4797), + [anon_sym___bridge_transfer] = ACTIONS(4797), + [anon_sym___complex] = ACTIONS(4797), + [anon_sym___const] = ACTIONS(4797), + [anon_sym___imag] = ACTIONS(4797), + [anon_sym___kindof] = ACTIONS(4797), + [anon_sym___nonnull] = ACTIONS(4797), + [anon_sym___nullable] = ACTIONS(4797), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4797), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4797), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4797), + [anon_sym___real] = ACTIONS(4797), + [anon_sym___strong] = ACTIONS(4797), + [anon_sym___unsafe_unretained] = ACTIONS(4797), + [anon_sym___unused] = ACTIONS(4797), + [anon_sym___weak] = ACTIONS(4797), + [anon_sym_alignas] = ACTIONS(4797), + [anon_sym__Alignas] = ACTIONS(4797), + [sym_primitive_type] = ACTIONS(4797), + [anon_sym_enum] = ACTIONS(4797), + [anon_sym_struct] = ACTIONS(4797), + [anon_sym_union] = ACTIONS(4797), + [anon_sym_QMARK] = ACTIONS(4819), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4797), + [anon_sym___typeof] = ACTIONS(4797), + [anon_sym_typeof] = ACTIONS(4797), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4797), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4797), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4797), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4797), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4797), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4797), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4797), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4797), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4797), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4797), + [anon_sym_NS_AVAILABLE] = ACTIONS(4797), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4797), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4797), + [anon_sym_API_AVAILABLE] = ACTIONS(4797), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4797), + [anon_sym_API_DEPRECATED] = ACTIONS(4797), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4797), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4797), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4797), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4797), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4797), + [anon_sym___deprecated_msg] = ACTIONS(4797), + [anon_sym___deprecated_enum_msg] = ACTIONS(4797), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4797), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4797), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4797), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4797), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4797), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4797), + [anon_sym_BOOL] = ACTIONS(4797), + [anon_sym_IMP] = ACTIONS(4797), + [anon_sym_SEL] = ACTIONS(4797), + [anon_sym_Class] = ACTIONS(4797), + [anon_sym_id] = ACTIONS(4797), + }, + [1740] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4789), + [anon_sym_PLUS] = ACTIONS(4789), + [anon_sym_STAR] = ACTIONS(4791), + [anon_sym_SLASH] = ACTIONS(4793), + [anon_sym_PERCENT] = ACTIONS(4791), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4805), + [anon_sym_PIPE] = ACTIONS(4807), + [anon_sym_CARET] = ACTIONS(4809), + [anon_sym_AMP] = ACTIONS(4811), + [anon_sym_EQ_EQ] = ACTIONS(4813), + [anon_sym_BANG_EQ] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4815), + [anon_sym_GT_EQ] = ACTIONS(4817), + [anon_sym_LT_EQ] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4815), + [anon_sym_LT_LT] = ACTIONS(4795), + [anon_sym_GT_GT] = ACTIONS(4795), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4027), + [anon_sym_signed] = ACTIONS(4025), + [anon_sym_unsigned] = ACTIONS(4025), + [anon_sym_long] = ACTIONS(4025), + [anon_sym_short] = ACTIONS(4025), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_ATautoreleasepool] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [sym_primitive_type] = ACTIONS(4025), + [anon_sym_enum] = ACTIONS(4025), + [anon_sym_struct] = ACTIONS(4025), + [anon_sym_union] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4025), + [anon_sym___typeof] = ACTIONS(4025), + [anon_sym_typeof] = ACTIONS(4025), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + [anon_sym_BOOL] = ACTIONS(4025), + [anon_sym_IMP] = ACTIONS(4025), + [anon_sym_SEL] = ACTIONS(4025), + [anon_sym_Class] = ACTIONS(4025), + [anon_sym_id] = ACTIONS(4025), + }, + [1741] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4789), + [anon_sym_PLUS] = ACTIONS(4789), + [anon_sym_STAR] = ACTIONS(4791), + [anon_sym_SLASH] = ACTIONS(4793), + [anon_sym_PERCENT] = ACTIONS(4791), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(4025), + [anon_sym_GT_EQ] = ACTIONS(4027), + [anon_sym_LT_EQ] = ACTIONS(4027), + [anon_sym_LT] = ACTIONS(4025), + [anon_sym_LT_LT] = ACTIONS(4027), + [anon_sym_GT_GT] = ACTIONS(4027), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4027), + [anon_sym_signed] = ACTIONS(4025), + [anon_sym_unsigned] = ACTIONS(4025), + [anon_sym_long] = ACTIONS(4025), + [anon_sym_short] = ACTIONS(4025), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_ATautoreleasepool] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [sym_primitive_type] = ACTIONS(4025), + [anon_sym_enum] = ACTIONS(4025), + [anon_sym_struct] = ACTIONS(4025), + [anon_sym_union] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4025), + [anon_sym___typeof] = ACTIONS(4025), + [anon_sym_typeof] = ACTIONS(4025), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + [anon_sym_BOOL] = ACTIONS(4025), + [anon_sym_IMP] = ACTIONS(4025), + [anon_sym_SEL] = ACTIONS(4025), + [anon_sym_Class] = ACTIONS(4025), + [anon_sym_id] = ACTIONS(4025), + }, + [1742] = { + [sym_declaration] = STATE(1861), + [sym__declaration_modifiers] = STATE(1979), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1979), + [sym_attribute_declaration] = STATE(1979), + [sym_ms_declspec_modifier] = STATE(1979), + [sym_compound_statement] = STATE(2189), + [sym_storage_class_specifier] = STATE(1979), + [sym_type_qualifier] = STATE(1979), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1979), + [sym_method_parameter] = STATE(1705), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1861), + [aux_sym__declaration_specifiers_repeat1] = STATE(1979), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4705), + [anon_sym_SEMI] = ACTIONS(4707), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4821), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1743] = { + [sym_identifier] = ACTIONS(4823), + [aux_sym_preproc_def_token1] = ACTIONS(4823), + [anon_sym_COMMA] = ACTIONS(4825), + [anon_sym_RPAREN] = ACTIONS(4825), + [aux_sym_preproc_if_token1] = ACTIONS(4823), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4823), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4823), + [sym_preproc_directive] = ACTIONS(4823), + [anon_sym_LPAREN2] = ACTIONS(4825), + [anon_sym_DASH] = ACTIONS(4825), + [anon_sym_PLUS] = ACTIONS(4825), + [anon_sym_STAR] = ACTIONS(4825), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym_GT] = ACTIONS(4825), + [anon_sym_SEMI] = ACTIONS(4825), + [anon_sym___extension__] = ACTIONS(4823), + [anon_sym_typedef] = ACTIONS(4823), + [anon_sym_extern] = ACTIONS(4823), + [anon_sym___attribute__] = ACTIONS(4823), + [anon_sym___attribute] = ACTIONS(4823), + [anon_sym_noreturn] = ACTIONS(4823), + [anon_sym_LBRACK] = ACTIONS(4825), + [anon_sym___declspec] = ACTIONS(4823), + [anon_sym___based] = ACTIONS(4823), + [anon_sym___cdecl] = ACTIONS(4823), + [anon_sym___clrcall] = ACTIONS(4823), + [anon_sym___stdcall] = ACTIONS(4823), + [anon_sym___fastcall] = ACTIONS(4823), + [anon_sym___thiscall] = ACTIONS(4823), + [anon_sym___vectorcall] = ACTIONS(4823), + [anon_sym_LBRACE] = ACTIONS(4825), + [anon_sym_signed] = ACTIONS(4823), + [anon_sym_unsigned] = ACTIONS(4823), + [anon_sym_long] = ACTIONS(4823), + [anon_sym_short] = ACTIONS(4823), + [anon_sym_static] = ACTIONS(4823), + [anon_sym_ATautoreleasepool] = ACTIONS(4825), + [anon_sym_auto] = ACTIONS(4823), + [anon_sym_register] = ACTIONS(4823), + [anon_sym_inline] = ACTIONS(4823), + [anon_sym___inline] = ACTIONS(4823), + [anon_sym___inline__] = ACTIONS(4823), + [anon_sym___forceinline] = ACTIONS(4823), + [anon_sym_thread_local] = ACTIONS(4823), + [anon_sym___thread] = ACTIONS(4823), + [anon_sym_CG_EXTERN] = ACTIONS(4823), + [anon_sym_CG_INLINE] = ACTIONS(4823), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4823), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4823), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4823), + [anon_sym_IBOutlet] = ACTIONS(4823), + [anon_sym_IBInspectable] = ACTIONS(4823), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4823), + [anon_sym_NS_INLINE] = ACTIONS(4823), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4823), + [anon_sym_OBJC_EXPORT] = ACTIONS(4823), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4823), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4823), + [anon_sym_const] = ACTIONS(4823), + [anon_sym_constexpr] = ACTIONS(4823), + [anon_sym_volatile] = ACTIONS(4823), + [anon_sym_restrict] = ACTIONS(4823), + [anon_sym___restrict__] = ACTIONS(4823), + [anon_sym__Atomic] = ACTIONS(4823), + [anon_sym__Noreturn] = ACTIONS(4823), + [anon_sym__Nonnull] = ACTIONS(4823), + [anon_sym_nullable] = ACTIONS(4823), + [anon_sym__Complex] = ACTIONS(4823), + [anon_sym__Nullable] = ACTIONS(4823), + [anon_sym__Nullable_result] = ACTIONS(4823), + [anon_sym__Null_unspecified] = ACTIONS(4823), + [anon_sym___autoreleasing] = ACTIONS(4823), + [anon_sym___block] = ACTIONS(4823), + [anon_sym___bridge] = ACTIONS(4823), + [anon_sym___bridge_retained] = ACTIONS(4823), + [anon_sym___bridge_transfer] = ACTIONS(4823), + [anon_sym___complex] = ACTIONS(4823), + [anon_sym___const] = ACTIONS(4823), + [anon_sym___imag] = ACTIONS(4823), + [anon_sym___kindof] = ACTIONS(4823), + [anon_sym___nonnull] = ACTIONS(4823), + [anon_sym___nullable] = ACTIONS(4823), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4823), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4823), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4823), + [anon_sym___real] = ACTIONS(4823), + [anon_sym___strong] = ACTIONS(4823), + [anon_sym___unsafe_unretained] = ACTIONS(4823), + [anon_sym___unused] = ACTIONS(4823), + [anon_sym___weak] = ACTIONS(4823), + [anon_sym_alignas] = ACTIONS(4823), + [anon_sym__Alignas] = ACTIONS(4823), + [sym_primitive_type] = ACTIONS(4823), + [anon_sym_enum] = ACTIONS(4823), + [anon_sym_COLON] = ACTIONS(4825), + [anon_sym_struct] = ACTIONS(4823), + [anon_sym_union] = ACTIONS(4823), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4823), + [anon_sym___typeof] = ACTIONS(4823), + [anon_sym_typeof] = ACTIONS(4823), + [aux_sym_preproc_undef_token1] = ACTIONS(4823), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4823), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4823), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4823), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4823), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4823), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4823), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4823), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4823), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4823), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4823), + [anon_sym_NS_AVAILABLE] = ACTIONS(4823), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4823), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4823), + [anon_sym_API_AVAILABLE] = ACTIONS(4823), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4823), + [anon_sym_API_DEPRECATED] = ACTIONS(4823), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4823), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4823), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4823), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4823), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4823), + [anon_sym___deprecated_msg] = ACTIONS(4823), + [anon_sym___deprecated_enum_msg] = ACTIONS(4823), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4823), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4823), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4823), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4823), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4823), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4823), + [anon_sym_ATend] = ACTIONS(4825), + [anon_sym_AToptional] = ACTIONS(4825), + [anon_sym_ATrequired] = ACTIONS(4825), + [anon_sym_ATproperty] = ACTIONS(4825), + [anon_sym_BOOL] = ACTIONS(4823), + [anon_sym_IMP] = ACTIONS(4823), + [anon_sym_SEL] = ACTIONS(4823), + [anon_sym_Class] = ACTIONS(4823), + [anon_sym_id] = ACTIONS(4823), + }, + [1744] = { + [sym_identifier] = ACTIONS(4827), + [aux_sym_preproc_def_token1] = ACTIONS(4827), + [anon_sym_COMMA] = ACTIONS(4829), + [anon_sym_RPAREN] = ACTIONS(4829), + [aux_sym_preproc_if_token1] = ACTIONS(4827), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), + [sym_preproc_directive] = ACTIONS(4827), + [anon_sym_LPAREN2] = ACTIONS(4829), + [anon_sym_DASH] = ACTIONS(4829), + [anon_sym_PLUS] = ACTIONS(4829), + [anon_sym_STAR] = ACTIONS(4829), + [anon_sym_CARET] = ACTIONS(4829), + [anon_sym_GT] = ACTIONS(4829), + [anon_sym_SEMI] = ACTIONS(4829), + [anon_sym___extension__] = ACTIONS(4827), + [anon_sym_typedef] = ACTIONS(4827), + [anon_sym_extern] = ACTIONS(4827), + [anon_sym___attribute__] = ACTIONS(4827), + [anon_sym___attribute] = ACTIONS(4827), + [anon_sym_noreturn] = ACTIONS(4827), + [anon_sym_LBRACK] = ACTIONS(4829), + [anon_sym___declspec] = ACTIONS(4827), + [anon_sym___based] = ACTIONS(4827), + [anon_sym___cdecl] = ACTIONS(4827), + [anon_sym___clrcall] = ACTIONS(4827), + [anon_sym___stdcall] = ACTIONS(4827), + [anon_sym___fastcall] = ACTIONS(4827), + [anon_sym___thiscall] = ACTIONS(4827), + [anon_sym___vectorcall] = ACTIONS(4827), + [anon_sym_LBRACE] = ACTIONS(4829), + [anon_sym_signed] = ACTIONS(4827), + [anon_sym_unsigned] = ACTIONS(4827), + [anon_sym_long] = ACTIONS(4827), + [anon_sym_short] = ACTIONS(4827), + [anon_sym_static] = ACTIONS(4827), + [anon_sym_ATautoreleasepool] = ACTIONS(4829), + [anon_sym_auto] = ACTIONS(4827), + [anon_sym_register] = ACTIONS(4827), + [anon_sym_inline] = ACTIONS(4827), + [anon_sym___inline] = ACTIONS(4827), + [anon_sym___inline__] = ACTIONS(4827), + [anon_sym___forceinline] = ACTIONS(4827), + [anon_sym_thread_local] = ACTIONS(4827), + [anon_sym___thread] = ACTIONS(4827), + [anon_sym_CG_EXTERN] = ACTIONS(4827), + [anon_sym_CG_INLINE] = ACTIONS(4827), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4827), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4827), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4827), + [anon_sym_IBOutlet] = ACTIONS(4827), + [anon_sym_IBInspectable] = ACTIONS(4827), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4827), + [anon_sym_NS_INLINE] = ACTIONS(4827), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4827), + [anon_sym_OBJC_EXPORT] = ACTIONS(4827), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4827), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4827), + [anon_sym_const] = ACTIONS(4827), + [anon_sym_constexpr] = ACTIONS(4827), + [anon_sym_volatile] = ACTIONS(4827), + [anon_sym_restrict] = ACTIONS(4827), + [anon_sym___restrict__] = ACTIONS(4827), + [anon_sym__Atomic] = ACTIONS(4827), + [anon_sym__Noreturn] = ACTIONS(4827), + [anon_sym__Nonnull] = ACTIONS(4827), + [anon_sym_nullable] = ACTIONS(4827), + [anon_sym__Complex] = ACTIONS(4827), + [anon_sym__Nullable] = ACTIONS(4827), + [anon_sym__Nullable_result] = ACTIONS(4827), + [anon_sym__Null_unspecified] = ACTIONS(4827), + [anon_sym___autoreleasing] = ACTIONS(4827), + [anon_sym___block] = ACTIONS(4827), + [anon_sym___bridge] = ACTIONS(4827), + [anon_sym___bridge_retained] = ACTIONS(4827), + [anon_sym___bridge_transfer] = ACTIONS(4827), + [anon_sym___complex] = ACTIONS(4827), + [anon_sym___const] = ACTIONS(4827), + [anon_sym___imag] = ACTIONS(4827), + [anon_sym___kindof] = ACTIONS(4827), + [anon_sym___nonnull] = ACTIONS(4827), + [anon_sym___nullable] = ACTIONS(4827), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4827), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4827), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4827), + [anon_sym___real] = ACTIONS(4827), + [anon_sym___strong] = ACTIONS(4827), + [anon_sym___unsafe_unretained] = ACTIONS(4827), + [anon_sym___unused] = ACTIONS(4827), + [anon_sym___weak] = ACTIONS(4827), + [anon_sym_alignas] = ACTIONS(4827), + [anon_sym__Alignas] = ACTIONS(4827), + [sym_primitive_type] = ACTIONS(4827), + [anon_sym_enum] = ACTIONS(4827), + [anon_sym_COLON] = ACTIONS(4829), + [anon_sym_struct] = ACTIONS(4827), + [anon_sym_union] = ACTIONS(4827), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4827), + [anon_sym___typeof] = ACTIONS(4827), + [anon_sym_typeof] = ACTIONS(4827), + [aux_sym_preproc_undef_token1] = ACTIONS(4827), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4827), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4827), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4827), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4827), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4827), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4827), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4827), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4827), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4827), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4827), + [anon_sym_NS_AVAILABLE] = ACTIONS(4827), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4827), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4827), + [anon_sym_API_AVAILABLE] = ACTIONS(4827), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4827), + [anon_sym_API_DEPRECATED] = ACTIONS(4827), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4827), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4827), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4827), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4827), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4827), + [anon_sym___deprecated_msg] = ACTIONS(4827), + [anon_sym___deprecated_enum_msg] = ACTIONS(4827), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4827), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4827), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4827), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4827), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4827), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4827), + [anon_sym_ATend] = ACTIONS(4829), + [anon_sym_AToptional] = ACTIONS(4829), + [anon_sym_ATrequired] = ACTIONS(4829), + [anon_sym_ATproperty] = ACTIONS(4829), + [anon_sym_BOOL] = ACTIONS(4827), + [anon_sym_IMP] = ACTIONS(4827), + [anon_sym_SEL] = ACTIONS(4827), + [anon_sym_Class] = ACTIONS(4827), + [anon_sym_id] = ACTIONS(4827), + }, + [1745] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4831), + [anon_sym_COMMA] = ACTIONS(4442), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4789), + [anon_sym_PLUS] = ACTIONS(4789), + [anon_sym_STAR] = ACTIONS(4791), + [anon_sym_SLASH] = ACTIONS(4793), + [anon_sym_PERCENT] = ACTIONS(4791), + [anon_sym_PIPE_PIPE] = ACTIONS(4803), + [anon_sym_AMP_AMP] = ACTIONS(4805), + [anon_sym_PIPE] = ACTIONS(4807), + [anon_sym_CARET] = ACTIONS(4809), + [anon_sym_AMP] = ACTIONS(4811), + [anon_sym_EQ_EQ] = ACTIONS(4813), + [anon_sym_BANG_EQ] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4815), + [anon_sym_GT_EQ] = ACTIONS(4817), + [anon_sym_LT_EQ] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4815), + [anon_sym_LT_LT] = ACTIONS(4795), + [anon_sym_GT_GT] = ACTIONS(4795), + [anon_sym_SEMI] = ACTIONS(4442), + [anon_sym___extension__] = ACTIONS(4437), + [anon_sym_extern] = ACTIONS(4437), + [anon_sym___attribute__] = ACTIONS(4437), + [anon_sym___attribute] = ACTIONS(4437), + [anon_sym_noreturn] = ACTIONS(4437), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4437), + [anon_sym_LBRACE] = ACTIONS(4442), + [anon_sym_signed] = ACTIONS(4437), + [anon_sym_unsigned] = ACTIONS(4437), + [anon_sym_long] = ACTIONS(4437), + [anon_sym_short] = ACTIONS(4437), + [anon_sym_static] = ACTIONS(4437), + [anon_sym_ATautoreleasepool] = ACTIONS(4442), + [anon_sym_auto] = ACTIONS(4437), + [anon_sym_register] = ACTIONS(4437), + [anon_sym_inline] = ACTIONS(4437), + [anon_sym___inline] = ACTIONS(4437), + [anon_sym___inline__] = ACTIONS(4437), + [anon_sym___forceinline] = ACTIONS(4437), + [anon_sym_thread_local] = ACTIONS(4437), + [anon_sym___thread] = ACTIONS(4437), + [anon_sym_CG_EXTERN] = ACTIONS(4437), + [anon_sym_CG_INLINE] = ACTIONS(4437), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4437), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4437), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4437), + [anon_sym_IBOutlet] = ACTIONS(4437), + [anon_sym_IBInspectable] = ACTIONS(4437), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4437), + [anon_sym_NS_INLINE] = ACTIONS(4437), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4437), + [anon_sym_OBJC_EXPORT] = ACTIONS(4437), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4437), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4437), + [anon_sym_const] = ACTIONS(4437), + [anon_sym_constexpr] = ACTIONS(4437), + [anon_sym_volatile] = ACTIONS(4437), + [anon_sym_restrict] = ACTIONS(4437), + [anon_sym___restrict__] = ACTIONS(4437), + [anon_sym__Atomic] = ACTIONS(4437), + [anon_sym__Noreturn] = ACTIONS(4437), + [anon_sym__Nonnull] = ACTIONS(4437), + [anon_sym_nullable] = ACTIONS(4437), + [anon_sym__Complex] = ACTIONS(4437), + [anon_sym__Nullable] = ACTIONS(4437), + [anon_sym__Nullable_result] = ACTIONS(4437), + [anon_sym__Null_unspecified] = ACTIONS(4437), + [anon_sym___autoreleasing] = ACTIONS(4437), + [anon_sym___block] = ACTIONS(4437), + [anon_sym___bridge] = ACTIONS(4437), + [anon_sym___bridge_retained] = ACTIONS(4437), + [anon_sym___bridge_transfer] = ACTIONS(4437), + [anon_sym___complex] = ACTIONS(4437), + [anon_sym___const] = ACTIONS(4437), + [anon_sym___imag] = ACTIONS(4437), + [anon_sym___kindof] = ACTIONS(4437), + [anon_sym___nonnull] = ACTIONS(4437), + [anon_sym___nullable] = ACTIONS(4437), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4437), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4437), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4437), + [anon_sym___real] = ACTIONS(4437), + [anon_sym___strong] = ACTIONS(4437), + [anon_sym___unsafe_unretained] = ACTIONS(4437), + [anon_sym___unused] = ACTIONS(4437), + [anon_sym___weak] = ACTIONS(4437), + [anon_sym_alignas] = ACTIONS(4437), + [anon_sym__Alignas] = ACTIONS(4437), + [sym_primitive_type] = ACTIONS(4437), + [anon_sym_enum] = ACTIONS(4437), + [anon_sym_struct] = ACTIONS(4437), + [anon_sym_union] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4437), + [anon_sym___typeof] = ACTIONS(4437), + [anon_sym_typeof] = ACTIONS(4437), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4437), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4437), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4437), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4437), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4437), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4437), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4437), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4437), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4437), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4437), + [anon_sym_NS_AVAILABLE] = ACTIONS(4437), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4437), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4437), + [anon_sym_API_AVAILABLE] = ACTIONS(4437), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4437), + [anon_sym_API_DEPRECATED] = ACTIONS(4437), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4437), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4437), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4437), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4437), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4437), + [anon_sym___deprecated_msg] = ACTIONS(4437), + [anon_sym___deprecated_enum_msg] = ACTIONS(4437), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4437), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4437), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4437), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4437), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4437), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4437), + [anon_sym_BOOL] = ACTIONS(4437), + [anon_sym_IMP] = ACTIONS(4437), + [anon_sym_SEL] = ACTIONS(4437), + [anon_sym_Class] = ACTIONS(4437), + [anon_sym_id] = ACTIONS(4437), + }, + [1746] = { + [sym_declaration] = STATE(1860), + [sym__declaration_modifiers] = STATE(1976), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1976), + [sym_attribute_declaration] = STATE(1976), + [sym_ms_declspec_modifier] = STATE(1976), + [sym_compound_statement] = STATE(2146), + [sym_storage_class_specifier] = STATE(1976), + [sym_type_qualifier] = STATE(1976), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1976), + [sym_method_parameter] = STATE(1704), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1860), + [aux_sym__declaration_specifiers_repeat1] = STATE(1976), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4687), + [anon_sym_SEMI] = ACTIONS(4689), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4821), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1747] = { + [sym_declaration] = STATE(1863), + [sym__declaration_modifiers] = STATE(1958), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1958), + [sym_attribute_declaration] = STATE(1958), + [sym_ms_declspec_modifier] = STATE(1958), + [sym_compound_statement] = STATE(2348), + [sym_storage_class_specifier] = STATE(1958), + [sym_type_qualifier] = STATE(1958), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1958), + [sym_method_parameter] = STATE(1696), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1863), + [aux_sym__declaration_specifiers_repeat1] = STATE(1958), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4733), + [anon_sym_SEMI] = ACTIONS(4735), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4821), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1748] = { + [sym_declaration] = STATE(1867), + [sym__declaration_modifiers] = STATE(1954), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1954), + [sym_attribute_declaration] = STATE(1954), + [sym_ms_declspec_modifier] = STATE(1954), + [sym_compound_statement] = STATE(2265), + [sym_storage_class_specifier] = STATE(1954), + [sym_type_qualifier] = STATE(1954), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1954), + [sym_method_parameter] = STATE(1717), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1867), + [aux_sym__declaration_specifiers_repeat1] = STATE(1954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4729), + [anon_sym_SEMI] = ACTIONS(4731), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4834), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1749] = { + [sym_declaration] = STATE(1841), + [sym__declaration_modifiers] = STATE(1992), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1992), + [sym_attribute_declaration] = STATE(1992), + [sym_ms_declspec_modifier] = STATE(1992), + [sym_compound_statement] = STATE(2326), + [sym_storage_class_specifier] = STATE(1992), + [sym_type_qualifier] = STATE(1992), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1992), + [sym_method_parameter] = STATE(1714), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1841), + [aux_sym__declaration_specifiers_repeat1] = STATE(1992), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4709), + [anon_sym_SEMI] = ACTIONS(4711), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4821), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1750] = { + [sym_declaration] = STATE(1836), + [sym__declaration_modifiers] = STATE(1989), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1989), + [sym_attribute_declaration] = STATE(1989), + [sym_ms_declspec_modifier] = STATE(1989), + [sym_compound_statement] = STATE(2158), + [sym_storage_class_specifier] = STATE(1989), + [sym_type_qualifier] = STATE(1989), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1989), + [sym_method_parameter] = STATE(1709), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1836), + [aux_sym__declaration_specifiers_repeat1] = STATE(1989), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4713), + [anon_sym_SEMI] = ACTIONS(4715), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4821), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1751] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4478), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4799), + [anon_sym_COMMA] = ACTIONS(4480), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4789), + [anon_sym_PLUS] = ACTIONS(4789), + [anon_sym_STAR] = ACTIONS(4791), + [anon_sym_SLASH] = ACTIONS(4793), + [anon_sym_PERCENT] = ACTIONS(4791), + [anon_sym_PIPE_PIPE] = ACTIONS(4803), + [anon_sym_AMP_AMP] = ACTIONS(4805), + [anon_sym_PIPE] = ACTIONS(4807), + [anon_sym_CARET] = ACTIONS(4809), + [anon_sym_AMP] = ACTIONS(4811), + [anon_sym_EQ_EQ] = ACTIONS(4813), + [anon_sym_BANG_EQ] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4815), + [anon_sym_GT_EQ] = ACTIONS(4817), + [anon_sym_LT_EQ] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4815), + [anon_sym_LT_LT] = ACTIONS(4795), + [anon_sym_GT_GT] = ACTIONS(4795), + [anon_sym_SEMI] = ACTIONS(4480), + [anon_sym___extension__] = ACTIONS(4478), + [anon_sym_extern] = ACTIONS(4478), + [anon_sym___attribute__] = ACTIONS(4478), + [anon_sym___attribute] = ACTIONS(4478), + [anon_sym_noreturn] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4478), + [anon_sym_LBRACE] = ACTIONS(4480), + [anon_sym_signed] = ACTIONS(4478), + [anon_sym_unsigned] = ACTIONS(4478), + [anon_sym_long] = ACTIONS(4478), + [anon_sym_short] = ACTIONS(4478), + [anon_sym_static] = ACTIONS(4478), + [anon_sym_ATautoreleasepool] = ACTIONS(4480), + [anon_sym_auto] = ACTIONS(4478), + [anon_sym_register] = ACTIONS(4478), + [anon_sym_inline] = ACTIONS(4478), + [anon_sym___inline] = ACTIONS(4478), + [anon_sym___inline__] = ACTIONS(4478), + [anon_sym___forceinline] = ACTIONS(4478), + [anon_sym_thread_local] = ACTIONS(4478), + [anon_sym___thread] = ACTIONS(4478), + [anon_sym_CG_EXTERN] = ACTIONS(4478), + [anon_sym_CG_INLINE] = ACTIONS(4478), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4478), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4478), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4478), + [anon_sym_IBOutlet] = ACTIONS(4478), + [anon_sym_IBInspectable] = ACTIONS(4478), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4478), + [anon_sym_NS_INLINE] = ACTIONS(4478), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4478), + [anon_sym_OBJC_EXPORT] = ACTIONS(4478), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4478), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4478), + [anon_sym_const] = ACTIONS(4478), + [anon_sym_constexpr] = ACTIONS(4478), + [anon_sym_volatile] = ACTIONS(4478), + [anon_sym_restrict] = ACTIONS(4478), + [anon_sym___restrict__] = ACTIONS(4478), + [anon_sym__Atomic] = ACTIONS(4478), + [anon_sym__Noreturn] = ACTIONS(4478), + [anon_sym__Nonnull] = ACTIONS(4478), + [anon_sym_nullable] = ACTIONS(4478), + [anon_sym__Complex] = ACTIONS(4478), + [anon_sym__Nullable] = ACTIONS(4478), + [anon_sym__Nullable_result] = ACTIONS(4478), + [anon_sym__Null_unspecified] = ACTIONS(4478), + [anon_sym___autoreleasing] = ACTIONS(4478), + [anon_sym___block] = ACTIONS(4478), + [anon_sym___bridge] = ACTIONS(4478), + [anon_sym___bridge_retained] = ACTIONS(4478), + [anon_sym___bridge_transfer] = ACTIONS(4478), + [anon_sym___complex] = ACTIONS(4478), + [anon_sym___const] = ACTIONS(4478), + [anon_sym___imag] = ACTIONS(4478), + [anon_sym___kindof] = ACTIONS(4478), + [anon_sym___nonnull] = ACTIONS(4478), + [anon_sym___nullable] = ACTIONS(4478), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4478), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4478), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4478), + [anon_sym___real] = ACTIONS(4478), + [anon_sym___strong] = ACTIONS(4478), + [anon_sym___unsafe_unretained] = ACTIONS(4478), + [anon_sym___unused] = ACTIONS(4478), + [anon_sym___weak] = ACTIONS(4478), + [anon_sym_alignas] = ACTIONS(4478), + [anon_sym__Alignas] = ACTIONS(4478), + [sym_primitive_type] = ACTIONS(4478), + [anon_sym_enum] = ACTIONS(4478), + [anon_sym_struct] = ACTIONS(4478), + [anon_sym_union] = ACTIONS(4478), + [anon_sym_QMARK] = ACTIONS(4480), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4478), + [anon_sym___typeof] = ACTIONS(4478), + [anon_sym_typeof] = ACTIONS(4478), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4478), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4478), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4478), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4478), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4478), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4478), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4478), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4478), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4478), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4478), + [anon_sym_NS_AVAILABLE] = ACTIONS(4478), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4478), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4478), + [anon_sym_API_AVAILABLE] = ACTIONS(4478), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4478), + [anon_sym_API_DEPRECATED] = ACTIONS(4478), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4478), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4478), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4478), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4478), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4478), + [anon_sym___deprecated_msg] = ACTIONS(4478), + [anon_sym___deprecated_enum_msg] = ACTIONS(4478), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4478), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4478), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4478), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4478), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4478), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4478), + [anon_sym_BOOL] = ACTIONS(4478), + [anon_sym_IMP] = ACTIONS(4478), + [anon_sym_SEL] = ACTIONS(4478), + [anon_sym_Class] = ACTIONS(4478), + [anon_sym_id] = ACTIONS(4478), + }, + [1752] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4482), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4799), + [anon_sym_COMMA] = ACTIONS(4484), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4789), + [anon_sym_PLUS] = ACTIONS(4789), + [anon_sym_STAR] = ACTIONS(4791), + [anon_sym_SLASH] = ACTIONS(4793), + [anon_sym_PERCENT] = ACTIONS(4791), + [anon_sym_PIPE_PIPE] = ACTIONS(4803), + [anon_sym_AMP_AMP] = ACTIONS(4805), + [anon_sym_PIPE] = ACTIONS(4807), + [anon_sym_CARET] = ACTIONS(4809), + [anon_sym_AMP] = ACTIONS(4811), + [anon_sym_EQ_EQ] = ACTIONS(4813), + [anon_sym_BANG_EQ] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4815), + [anon_sym_GT_EQ] = ACTIONS(4817), + [anon_sym_LT_EQ] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4815), + [anon_sym_LT_LT] = ACTIONS(4795), + [anon_sym_GT_GT] = ACTIONS(4795), + [anon_sym_SEMI] = ACTIONS(4484), + [anon_sym___extension__] = ACTIONS(4482), + [anon_sym_extern] = ACTIONS(4482), + [anon_sym___attribute__] = ACTIONS(4482), + [anon_sym___attribute] = ACTIONS(4482), + [anon_sym_noreturn] = ACTIONS(4482), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4482), + [anon_sym_LBRACE] = ACTIONS(4484), + [anon_sym_signed] = ACTIONS(4482), + [anon_sym_unsigned] = ACTIONS(4482), + [anon_sym_long] = ACTIONS(4482), + [anon_sym_short] = ACTIONS(4482), + [anon_sym_static] = ACTIONS(4482), + [anon_sym_ATautoreleasepool] = ACTIONS(4484), + [anon_sym_auto] = ACTIONS(4482), + [anon_sym_register] = ACTIONS(4482), + [anon_sym_inline] = ACTIONS(4482), + [anon_sym___inline] = ACTIONS(4482), + [anon_sym___inline__] = ACTIONS(4482), + [anon_sym___forceinline] = ACTIONS(4482), + [anon_sym_thread_local] = ACTIONS(4482), + [anon_sym___thread] = ACTIONS(4482), + [anon_sym_CG_EXTERN] = ACTIONS(4482), + [anon_sym_CG_INLINE] = ACTIONS(4482), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4482), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4482), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4482), + [anon_sym_IBOutlet] = ACTIONS(4482), + [anon_sym_IBInspectable] = ACTIONS(4482), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4482), + [anon_sym_NS_INLINE] = ACTIONS(4482), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4482), + [anon_sym_OBJC_EXPORT] = ACTIONS(4482), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4482), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4482), + [anon_sym_const] = ACTIONS(4482), + [anon_sym_constexpr] = ACTIONS(4482), + [anon_sym_volatile] = ACTIONS(4482), + [anon_sym_restrict] = ACTIONS(4482), + [anon_sym___restrict__] = ACTIONS(4482), + [anon_sym__Atomic] = ACTIONS(4482), + [anon_sym__Noreturn] = ACTIONS(4482), + [anon_sym__Nonnull] = ACTIONS(4482), + [anon_sym_nullable] = ACTIONS(4482), + [anon_sym__Complex] = ACTIONS(4482), + [anon_sym__Nullable] = ACTIONS(4482), + [anon_sym__Nullable_result] = ACTIONS(4482), + [anon_sym__Null_unspecified] = ACTIONS(4482), + [anon_sym___autoreleasing] = ACTIONS(4482), + [anon_sym___block] = ACTIONS(4482), + [anon_sym___bridge] = ACTIONS(4482), + [anon_sym___bridge_retained] = ACTIONS(4482), + [anon_sym___bridge_transfer] = ACTIONS(4482), + [anon_sym___complex] = ACTIONS(4482), + [anon_sym___const] = ACTIONS(4482), + [anon_sym___imag] = ACTIONS(4482), + [anon_sym___kindof] = ACTIONS(4482), + [anon_sym___nonnull] = ACTIONS(4482), + [anon_sym___nullable] = ACTIONS(4482), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4482), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4482), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4482), + [anon_sym___real] = ACTIONS(4482), + [anon_sym___strong] = ACTIONS(4482), + [anon_sym___unsafe_unretained] = ACTIONS(4482), + [anon_sym___unused] = ACTIONS(4482), + [anon_sym___weak] = ACTIONS(4482), + [anon_sym_alignas] = ACTIONS(4482), + [anon_sym__Alignas] = ACTIONS(4482), + [sym_primitive_type] = ACTIONS(4482), + [anon_sym_enum] = ACTIONS(4482), + [anon_sym_struct] = ACTIONS(4482), + [anon_sym_union] = ACTIONS(4482), + [anon_sym_QMARK] = ACTIONS(4484), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4482), + [anon_sym___typeof] = ACTIONS(4482), + [anon_sym_typeof] = ACTIONS(4482), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4482), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4482), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4482), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4482), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4482), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4482), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4482), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4482), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4482), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4482), + [anon_sym_NS_AVAILABLE] = ACTIONS(4482), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4482), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4482), + [anon_sym_API_AVAILABLE] = ACTIONS(4482), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4482), + [anon_sym_API_DEPRECATED] = ACTIONS(4482), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4482), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4482), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4482), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4482), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4482), + [anon_sym___deprecated_msg] = ACTIONS(4482), + [anon_sym___deprecated_enum_msg] = ACTIONS(4482), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4482), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4482), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4482), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4482), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4482), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4482), + [anon_sym_BOOL] = ACTIONS(4482), + [anon_sym_IMP] = ACTIONS(4482), + [anon_sym_SEL] = ACTIONS(4482), + [anon_sym_Class] = ACTIONS(4482), + [anon_sym_id] = ACTIONS(4482), + }, + [1753] = { + [sym_declaration] = STATE(1846), + [sym__declaration_modifiers] = STATE(1988), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1988), + [sym_attribute_declaration] = STATE(1988), + [sym_ms_declspec_modifier] = STATE(1988), + [sym_compound_statement] = STATE(2272), + [sym_storage_class_specifier] = STATE(1988), + [sym_type_qualifier] = STATE(1988), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1988), + [sym_method_parameter] = STATE(1721), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1846), + [aux_sym__declaration_specifiers_repeat1] = STATE(1988), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4691), + [anon_sym_SEMI] = ACTIONS(4693), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4834), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1754] = { + [sym_declaration] = STATE(1885), + [sym__declaration_modifiers] = STATE(1951), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1951), + [sym_attribute_declaration] = STATE(1951), + [sym_ms_declspec_modifier] = STATE(1951), + [sym_compound_statement] = STATE(2321), + [sym_storage_class_specifier] = STATE(1951), + [sym_type_qualifier] = STATE(1951), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1951), + [sym_method_parameter] = STATE(1713), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1885), + [aux_sym__declaration_specifiers_repeat1] = STATE(1951), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4671), + [anon_sym_SEMI] = ACTIONS(4673), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4821), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1755] = { + [sym_declaration] = STATE(1873), + [sym__declaration_modifiers] = STATE(1959), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1959), + [sym_attribute_declaration] = STATE(1959), + [sym_ms_declspec_modifier] = STATE(1959), + [sym_compound_statement] = STATE(2351), + [sym_storage_class_specifier] = STATE(1959), + [sym_type_qualifier] = STATE(1959), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1959), + [sym_method_parameter] = STATE(1686), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1873), + [aux_sym__declaration_specifiers_repeat1] = STATE(1959), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4695), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4821), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1756] = { + [sym_declaration] = STATE(1846), + [sym__declaration_modifiers] = STATE(1988), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1988), + [sym_attribute_declaration] = STATE(1988), + [sym_ms_declspec_modifier] = STATE(1988), + [sym_compound_statement] = STATE(2272), + [sym_storage_class_specifier] = STATE(1988), + [sym_type_qualifier] = STATE(1988), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1988), + [sym_method_parameter] = STATE(1721), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1846), + [aux_sym__declaration_specifiers_repeat1] = STATE(1988), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4691), + [anon_sym_SEMI] = ACTIONS(4693), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4821), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1757] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4789), + [anon_sym_PLUS] = ACTIONS(4789), + [anon_sym_STAR] = ACTIONS(4791), + [anon_sym_SLASH] = ACTIONS(4793), + [anon_sym_PERCENT] = ACTIONS(4791), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4807), + [anon_sym_CARET] = ACTIONS(4809), + [anon_sym_AMP] = ACTIONS(4811), + [anon_sym_EQ_EQ] = ACTIONS(4813), + [anon_sym_BANG_EQ] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4815), + [anon_sym_GT_EQ] = ACTIONS(4817), + [anon_sym_LT_EQ] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4815), + [anon_sym_LT_LT] = ACTIONS(4795), + [anon_sym_GT_GT] = ACTIONS(4795), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4027), + [anon_sym_signed] = ACTIONS(4025), + [anon_sym_unsigned] = ACTIONS(4025), + [anon_sym_long] = ACTIONS(4025), + [anon_sym_short] = ACTIONS(4025), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_ATautoreleasepool] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [sym_primitive_type] = ACTIONS(4025), + [anon_sym_enum] = ACTIONS(4025), + [anon_sym_struct] = ACTIONS(4025), + [anon_sym_union] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4025), + [anon_sym___typeof] = ACTIONS(4025), + [anon_sym_typeof] = ACTIONS(4025), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + [anon_sym_BOOL] = ACTIONS(4025), + [anon_sym_IMP] = ACTIONS(4025), + [anon_sym_SEL] = ACTIONS(4025), + [anon_sym_Class] = ACTIONS(4025), + [anon_sym_id] = ACTIONS(4025), + }, + [1758] = { + [sym_declaration] = STATE(1884), + [sym__declaration_modifiers] = STATE(1990), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1990), + [sym_attribute_declaration] = STATE(1990), + [sym_ms_declspec_modifier] = STATE(1990), + [sym_compound_statement] = STATE(2346), + [sym_storage_class_specifier] = STATE(1990), + [sym_type_qualifier] = STATE(1990), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1990), + [sym_method_parameter] = STATE(1702), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1884), + [aux_sym__declaration_specifiers_repeat1] = STATE(1990), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4701), + [anon_sym_SEMI] = ACTIONS(4703), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4821), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1759] = { + [sym_declaration] = STATE(1883), + [sym__declaration_modifiers] = STATE(2002), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(2002), + [sym_attribute_declaration] = STATE(2002), + [sym_ms_declspec_modifier] = STATE(2002), + [sym_compound_statement] = STATE(2112), + [sym_storage_class_specifier] = STATE(2002), + [sym_type_qualifier] = STATE(2002), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2002), + [sym_method_parameter] = STATE(1689), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1883), + [aux_sym__declaration_specifiers_repeat1] = STATE(2002), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4741), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4834), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1760] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4789), + [anon_sym_PLUS] = ACTIONS(4789), + [anon_sym_STAR] = ACTIONS(4791), + [anon_sym_SLASH] = ACTIONS(4793), + [anon_sym_PERCENT] = ACTIONS(4791), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4809), + [anon_sym_AMP] = ACTIONS(4811), + [anon_sym_EQ_EQ] = ACTIONS(4813), + [anon_sym_BANG_EQ] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4815), + [anon_sym_GT_EQ] = ACTIONS(4817), + [anon_sym_LT_EQ] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4815), + [anon_sym_LT_LT] = ACTIONS(4795), + [anon_sym_GT_GT] = ACTIONS(4795), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4027), + [anon_sym_signed] = ACTIONS(4025), + [anon_sym_unsigned] = ACTIONS(4025), + [anon_sym_long] = ACTIONS(4025), + [anon_sym_short] = ACTIONS(4025), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_ATautoreleasepool] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [sym_primitive_type] = ACTIONS(4025), + [anon_sym_enum] = ACTIONS(4025), + [anon_sym_struct] = ACTIONS(4025), + [anon_sym_union] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4025), + [anon_sym___typeof] = ACTIONS(4025), + [anon_sym_typeof] = ACTIONS(4025), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + [anon_sym_BOOL] = ACTIONS(4025), + [anon_sym_IMP] = ACTIONS(4025), + [anon_sym_SEL] = ACTIONS(4025), + [anon_sym_Class] = ACTIONS(4025), + [anon_sym_id] = ACTIONS(4025), + }, + [1761] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym__abstract_declarator] = STATE(5208), + [sym_abstract_parenthesized_declarator] = STATE(4894), + [sym_abstract_pointer_declarator] = STATE(4894), + [sym_abstract_function_declarator] = STATE(4894), + [sym_abstract_array_declarator] = STATE(4894), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_parameter_list] = STATE(4295), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_abstract_block_pointer_declarator] = STATE(4894), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_LPAREN2] = ACTIONS(4496), + [anon_sym_STAR] = ACTIONS(4498), + [anon_sym_CARET] = ACTIONS(4500), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1762] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4789), + [anon_sym_PLUS] = ACTIONS(4789), + [anon_sym_STAR] = ACTIONS(4791), + [anon_sym_SLASH] = ACTIONS(4793), + [anon_sym_PERCENT] = ACTIONS(4791), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4811), + [anon_sym_EQ_EQ] = ACTIONS(4813), + [anon_sym_BANG_EQ] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4815), + [anon_sym_GT_EQ] = ACTIONS(4817), + [anon_sym_LT_EQ] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4815), + [anon_sym_LT_LT] = ACTIONS(4795), + [anon_sym_GT_GT] = ACTIONS(4795), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4027), + [anon_sym_signed] = ACTIONS(4025), + [anon_sym_unsigned] = ACTIONS(4025), + [anon_sym_long] = ACTIONS(4025), + [anon_sym_short] = ACTIONS(4025), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_ATautoreleasepool] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [sym_primitive_type] = ACTIONS(4025), + [anon_sym_enum] = ACTIONS(4025), + [anon_sym_struct] = ACTIONS(4025), + [anon_sym_union] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4025), + [anon_sym___typeof] = ACTIONS(4025), + [anon_sym_typeof] = ACTIONS(4025), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + [anon_sym_BOOL] = ACTIONS(4025), + [anon_sym_IMP] = ACTIONS(4025), + [anon_sym_SEL] = ACTIONS(4025), + [anon_sym_Class] = ACTIONS(4025), + [anon_sym_id] = ACTIONS(4025), + }, + [1763] = { + [sym_declaration] = STATE(1860), + [sym__declaration_modifiers] = STATE(1976), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1976), + [sym_attribute_declaration] = STATE(1976), + [sym_ms_declspec_modifier] = STATE(1976), + [sym_compound_statement] = STATE(2146), + [sym_storage_class_specifier] = STATE(1976), + [sym_type_qualifier] = STATE(1976), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1976), + [sym_method_parameter] = STATE(1704), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1860), + [aux_sym__declaration_specifiers_repeat1] = STATE(1976), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4687), + [anon_sym_SEMI] = ACTIONS(4689), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4834), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1764] = { + [sym_declaration] = STATE(1876), + [sym__declaration_modifiers] = STATE(1983), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1983), + [sym_attribute_declaration] = STATE(1983), + [sym_ms_declspec_modifier] = STATE(1983), + [sym_compound_statement] = STATE(2344), + [sym_storage_class_specifier] = STATE(1983), + [sym_type_qualifier] = STATE(1983), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1983), + [sym_method_parameter] = STATE(1712), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1876), + [aux_sym__declaration_specifiers_repeat1] = STATE(1983), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4745), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4834), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1765] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4486), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4799), + [anon_sym_COMMA] = ACTIONS(4488), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4789), + [anon_sym_PLUS] = ACTIONS(4789), + [anon_sym_STAR] = ACTIONS(4791), + [anon_sym_SLASH] = ACTIONS(4793), + [anon_sym_PERCENT] = ACTIONS(4791), + [anon_sym_PIPE_PIPE] = ACTIONS(4803), + [anon_sym_AMP_AMP] = ACTIONS(4805), + [anon_sym_PIPE] = ACTIONS(4807), + [anon_sym_CARET] = ACTIONS(4809), + [anon_sym_AMP] = ACTIONS(4811), + [anon_sym_EQ_EQ] = ACTIONS(4813), + [anon_sym_BANG_EQ] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4815), + [anon_sym_GT_EQ] = ACTIONS(4817), + [anon_sym_LT_EQ] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4815), + [anon_sym_LT_LT] = ACTIONS(4795), + [anon_sym_GT_GT] = ACTIONS(4795), + [anon_sym_SEMI] = ACTIONS(4488), + [anon_sym___extension__] = ACTIONS(4486), + [anon_sym_extern] = ACTIONS(4486), + [anon_sym___attribute__] = ACTIONS(4486), + [anon_sym___attribute] = ACTIONS(4486), + [anon_sym_noreturn] = ACTIONS(4486), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4486), + [anon_sym_LBRACE] = ACTIONS(4488), + [anon_sym_signed] = ACTIONS(4486), + [anon_sym_unsigned] = ACTIONS(4486), + [anon_sym_long] = ACTIONS(4486), + [anon_sym_short] = ACTIONS(4486), + [anon_sym_static] = ACTIONS(4486), + [anon_sym_ATautoreleasepool] = ACTIONS(4488), + [anon_sym_auto] = ACTIONS(4486), + [anon_sym_register] = ACTIONS(4486), + [anon_sym_inline] = ACTIONS(4486), + [anon_sym___inline] = ACTIONS(4486), + [anon_sym___inline__] = ACTIONS(4486), + [anon_sym___forceinline] = ACTIONS(4486), + [anon_sym_thread_local] = ACTIONS(4486), + [anon_sym___thread] = ACTIONS(4486), + [anon_sym_CG_EXTERN] = ACTIONS(4486), + [anon_sym_CG_INLINE] = ACTIONS(4486), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4486), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4486), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4486), + [anon_sym_IBOutlet] = ACTIONS(4486), + [anon_sym_IBInspectable] = ACTIONS(4486), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4486), + [anon_sym_NS_INLINE] = ACTIONS(4486), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4486), + [anon_sym_OBJC_EXPORT] = ACTIONS(4486), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4486), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4486), + [anon_sym_const] = ACTIONS(4486), + [anon_sym_constexpr] = ACTIONS(4486), + [anon_sym_volatile] = ACTIONS(4486), + [anon_sym_restrict] = ACTIONS(4486), + [anon_sym___restrict__] = ACTIONS(4486), + [anon_sym__Atomic] = ACTIONS(4486), + [anon_sym__Noreturn] = ACTIONS(4486), + [anon_sym__Nonnull] = ACTIONS(4486), + [anon_sym_nullable] = ACTIONS(4486), + [anon_sym__Complex] = ACTIONS(4486), + [anon_sym__Nullable] = ACTIONS(4486), + [anon_sym__Nullable_result] = ACTIONS(4486), + [anon_sym__Null_unspecified] = ACTIONS(4486), + [anon_sym___autoreleasing] = ACTIONS(4486), + [anon_sym___block] = ACTIONS(4486), + [anon_sym___bridge] = ACTIONS(4486), + [anon_sym___bridge_retained] = ACTIONS(4486), + [anon_sym___bridge_transfer] = ACTIONS(4486), + [anon_sym___complex] = ACTIONS(4486), + [anon_sym___const] = ACTIONS(4486), + [anon_sym___imag] = ACTIONS(4486), + [anon_sym___kindof] = ACTIONS(4486), + [anon_sym___nonnull] = ACTIONS(4486), + [anon_sym___nullable] = ACTIONS(4486), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4486), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4486), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4486), + [anon_sym___real] = ACTIONS(4486), + [anon_sym___strong] = ACTIONS(4486), + [anon_sym___unsafe_unretained] = ACTIONS(4486), + [anon_sym___unused] = ACTIONS(4486), + [anon_sym___weak] = ACTIONS(4486), + [anon_sym_alignas] = ACTIONS(4486), + [anon_sym__Alignas] = ACTIONS(4486), + [sym_primitive_type] = ACTIONS(4486), + [anon_sym_enum] = ACTIONS(4486), + [anon_sym_struct] = ACTIONS(4486), + [anon_sym_union] = ACTIONS(4486), + [anon_sym_QMARK] = ACTIONS(4819), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4486), + [anon_sym___typeof] = ACTIONS(4486), + [anon_sym_typeof] = ACTIONS(4486), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4486), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4486), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4486), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4486), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4486), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4486), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4486), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4486), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4486), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4486), + [anon_sym_NS_AVAILABLE] = ACTIONS(4486), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4486), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4486), + [anon_sym_API_AVAILABLE] = ACTIONS(4486), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4486), + [anon_sym_API_DEPRECATED] = ACTIONS(4486), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4486), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4486), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4486), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4486), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4486), + [anon_sym___deprecated_msg] = ACTIONS(4486), + [anon_sym___deprecated_enum_msg] = ACTIONS(4486), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4486), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4486), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4486), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4486), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4486), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4486), + [anon_sym_BOOL] = ACTIONS(4486), + [anon_sym_IMP] = ACTIONS(4486), + [anon_sym_SEL] = ACTIONS(4486), + [anon_sym_Class] = ACTIONS(4486), + [anon_sym_id] = ACTIONS(4486), + }, + [1766] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4466), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4799), + [anon_sym_COMMA] = ACTIONS(4470), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4789), + [anon_sym_PLUS] = ACTIONS(4789), + [anon_sym_STAR] = ACTIONS(4791), + [anon_sym_SLASH] = ACTIONS(4793), + [anon_sym_PERCENT] = ACTIONS(4791), + [anon_sym_PIPE_PIPE] = ACTIONS(4803), + [anon_sym_AMP_AMP] = ACTIONS(4805), + [anon_sym_PIPE] = ACTIONS(4807), + [anon_sym_CARET] = ACTIONS(4809), + [anon_sym_AMP] = ACTIONS(4811), + [anon_sym_EQ_EQ] = ACTIONS(4813), + [anon_sym_BANG_EQ] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4815), + [anon_sym_GT_EQ] = ACTIONS(4817), + [anon_sym_LT_EQ] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4815), + [anon_sym_LT_LT] = ACTIONS(4795), + [anon_sym_GT_GT] = ACTIONS(4795), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym___extension__] = ACTIONS(4466), + [anon_sym_extern] = ACTIONS(4466), + [anon_sym___attribute__] = ACTIONS(4466), + [anon_sym___attribute] = ACTIONS(4466), + [anon_sym_noreturn] = ACTIONS(4466), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4466), + [anon_sym_LBRACE] = ACTIONS(4470), + [anon_sym_signed] = ACTIONS(4466), + [anon_sym_unsigned] = ACTIONS(4466), + [anon_sym_long] = ACTIONS(4466), + [anon_sym_short] = ACTIONS(4466), + [anon_sym_static] = ACTIONS(4466), + [anon_sym_ATautoreleasepool] = ACTIONS(4470), + [anon_sym_auto] = ACTIONS(4466), + [anon_sym_register] = ACTIONS(4466), + [anon_sym_inline] = ACTIONS(4466), + [anon_sym___inline] = ACTIONS(4466), + [anon_sym___inline__] = ACTIONS(4466), + [anon_sym___forceinline] = ACTIONS(4466), + [anon_sym_thread_local] = ACTIONS(4466), + [anon_sym___thread] = ACTIONS(4466), + [anon_sym_CG_EXTERN] = ACTIONS(4466), + [anon_sym_CG_INLINE] = ACTIONS(4466), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4466), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4466), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4466), + [anon_sym_IBOutlet] = ACTIONS(4466), + [anon_sym_IBInspectable] = ACTIONS(4466), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4466), + [anon_sym_NS_INLINE] = ACTIONS(4466), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4466), + [anon_sym_OBJC_EXPORT] = ACTIONS(4466), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4466), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4466), + [anon_sym_const] = ACTIONS(4466), + [anon_sym_constexpr] = ACTIONS(4466), + [anon_sym_volatile] = ACTIONS(4466), + [anon_sym_restrict] = ACTIONS(4466), + [anon_sym___restrict__] = ACTIONS(4466), + [anon_sym__Atomic] = ACTIONS(4466), + [anon_sym__Noreturn] = ACTIONS(4466), + [anon_sym__Nonnull] = ACTIONS(4466), + [anon_sym_nullable] = ACTIONS(4466), + [anon_sym__Complex] = ACTIONS(4466), + [anon_sym__Nullable] = ACTIONS(4466), + [anon_sym__Nullable_result] = ACTIONS(4466), + [anon_sym__Null_unspecified] = ACTIONS(4466), + [anon_sym___autoreleasing] = ACTIONS(4466), + [anon_sym___block] = ACTIONS(4466), + [anon_sym___bridge] = ACTIONS(4466), + [anon_sym___bridge_retained] = ACTIONS(4466), + [anon_sym___bridge_transfer] = ACTIONS(4466), + [anon_sym___complex] = ACTIONS(4466), + [anon_sym___const] = ACTIONS(4466), + [anon_sym___imag] = ACTIONS(4466), + [anon_sym___kindof] = ACTIONS(4466), + [anon_sym___nonnull] = ACTIONS(4466), + [anon_sym___nullable] = ACTIONS(4466), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4466), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4466), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4466), + [anon_sym___real] = ACTIONS(4466), + [anon_sym___strong] = ACTIONS(4466), + [anon_sym___unsafe_unretained] = ACTIONS(4466), + [anon_sym___unused] = ACTIONS(4466), + [anon_sym___weak] = ACTIONS(4466), + [anon_sym_alignas] = ACTIONS(4466), + [anon_sym__Alignas] = ACTIONS(4466), + [sym_primitive_type] = ACTIONS(4466), + [anon_sym_enum] = ACTIONS(4466), + [anon_sym_struct] = ACTIONS(4466), + [anon_sym_union] = ACTIONS(4466), + [anon_sym_QMARK] = ACTIONS(4819), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4466), + [anon_sym___typeof] = ACTIONS(4466), + [anon_sym_typeof] = ACTIONS(4466), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4466), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4466), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4466), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4466), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4466), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4466), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4466), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4466), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4466), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4466), + [anon_sym_NS_AVAILABLE] = ACTIONS(4466), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4466), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4466), + [anon_sym_API_AVAILABLE] = ACTIONS(4466), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4466), + [anon_sym_API_DEPRECATED] = ACTIONS(4466), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4466), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4466), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4466), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4466), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4466), + [anon_sym___deprecated_msg] = ACTIONS(4466), + [anon_sym___deprecated_enum_msg] = ACTIONS(4466), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4466), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4466), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4466), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4466), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4466), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4466), + [anon_sym_BOOL] = ACTIONS(4466), + [anon_sym_IMP] = ACTIONS(4466), + [anon_sym_SEL] = ACTIONS(4466), + [anon_sym_Class] = ACTIONS(4466), + [anon_sym_id] = ACTIONS(4466), + }, + [1767] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4789), + [anon_sym_PLUS] = ACTIONS(4789), + [anon_sym_STAR] = ACTIONS(4791), + [anon_sym_SLASH] = ACTIONS(4793), + [anon_sym_PERCENT] = ACTIONS(4791), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4813), + [anon_sym_BANG_EQ] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4815), + [anon_sym_GT_EQ] = ACTIONS(4817), + [anon_sym_LT_EQ] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4815), + [anon_sym_LT_LT] = ACTIONS(4795), + [anon_sym_GT_GT] = ACTIONS(4795), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4027), + [anon_sym_signed] = ACTIONS(4025), + [anon_sym_unsigned] = ACTIONS(4025), + [anon_sym_long] = ACTIONS(4025), + [anon_sym_short] = ACTIONS(4025), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_ATautoreleasepool] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [sym_primitive_type] = ACTIONS(4025), + [anon_sym_enum] = ACTIONS(4025), + [anon_sym_struct] = ACTIONS(4025), + [anon_sym_union] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4025), + [anon_sym___typeof] = ACTIONS(4025), + [anon_sym_typeof] = ACTIONS(4025), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + [anon_sym_BOOL] = ACTIONS(4025), + [anon_sym_IMP] = ACTIONS(4025), + [anon_sym_SEL] = ACTIONS(4025), + [anon_sym_Class] = ACTIONS(4025), + [anon_sym_id] = ACTIONS(4025), + }, + [1768] = { + [sym_declaration] = STATE(1863), + [sym__declaration_modifiers] = STATE(1958), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1958), + [sym_attribute_declaration] = STATE(1958), + [sym_ms_declspec_modifier] = STATE(1958), + [sym_compound_statement] = STATE(2348), + [sym_storage_class_specifier] = STATE(1958), + [sym_type_qualifier] = STATE(1958), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1958), + [sym_method_parameter] = STATE(1696), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1863), + [aux_sym__declaration_specifiers_repeat1] = STATE(1958), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4733), + [anon_sym_SEMI] = ACTIONS(4735), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4834), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1769] = { + [sym_declaration] = STATE(1879), + [sym__declaration_modifiers] = STATE(1985), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1985), + [sym_attribute_declaration] = STATE(1985), + [sym_ms_declspec_modifier] = STATE(1985), + [sym_compound_statement] = STATE(2315), + [sym_storage_class_specifier] = STATE(1985), + [sym_type_qualifier] = STATE(1985), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1985), + [sym_method_parameter] = STATE(1697), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1879), + [aux_sym__declaration_specifiers_repeat1] = STATE(1985), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4663), + [anon_sym_SEMI] = ACTIONS(4665), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4834), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1770] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4474), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4799), + [anon_sym_COMMA] = ACTIONS(4476), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4789), + [anon_sym_PLUS] = ACTIONS(4789), + [anon_sym_STAR] = ACTIONS(4791), + [anon_sym_SLASH] = ACTIONS(4793), + [anon_sym_PERCENT] = ACTIONS(4791), + [anon_sym_PIPE_PIPE] = ACTIONS(4803), + [anon_sym_AMP_AMP] = ACTIONS(4805), + [anon_sym_PIPE] = ACTIONS(4807), + [anon_sym_CARET] = ACTIONS(4809), + [anon_sym_AMP] = ACTIONS(4811), + [anon_sym_EQ_EQ] = ACTIONS(4813), + [anon_sym_BANG_EQ] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4815), + [anon_sym_GT_EQ] = ACTIONS(4817), + [anon_sym_LT_EQ] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4815), + [anon_sym_LT_LT] = ACTIONS(4795), + [anon_sym_GT_GT] = ACTIONS(4795), + [anon_sym_SEMI] = ACTIONS(4476), + [anon_sym___extension__] = ACTIONS(4474), + [anon_sym_extern] = ACTIONS(4474), + [anon_sym___attribute__] = ACTIONS(4474), + [anon_sym___attribute] = ACTIONS(4474), + [anon_sym_noreturn] = ACTIONS(4474), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4474), + [anon_sym_LBRACE] = ACTIONS(4476), + [anon_sym_signed] = ACTIONS(4474), + [anon_sym_unsigned] = ACTIONS(4474), + [anon_sym_long] = ACTIONS(4474), + [anon_sym_short] = ACTIONS(4474), + [anon_sym_static] = ACTIONS(4474), + [anon_sym_ATautoreleasepool] = ACTIONS(4476), + [anon_sym_auto] = ACTIONS(4474), + [anon_sym_register] = ACTIONS(4474), + [anon_sym_inline] = ACTIONS(4474), + [anon_sym___inline] = ACTIONS(4474), + [anon_sym___inline__] = ACTIONS(4474), + [anon_sym___forceinline] = ACTIONS(4474), + [anon_sym_thread_local] = ACTIONS(4474), + [anon_sym___thread] = ACTIONS(4474), + [anon_sym_CG_EXTERN] = ACTIONS(4474), + [anon_sym_CG_INLINE] = ACTIONS(4474), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4474), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4474), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4474), + [anon_sym_IBOutlet] = ACTIONS(4474), + [anon_sym_IBInspectable] = ACTIONS(4474), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4474), + [anon_sym_NS_INLINE] = ACTIONS(4474), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4474), + [anon_sym_OBJC_EXPORT] = ACTIONS(4474), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4474), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4474), + [anon_sym_const] = ACTIONS(4474), + [anon_sym_constexpr] = ACTIONS(4474), + [anon_sym_volatile] = ACTIONS(4474), + [anon_sym_restrict] = ACTIONS(4474), + [anon_sym___restrict__] = ACTIONS(4474), + [anon_sym__Atomic] = ACTIONS(4474), + [anon_sym__Noreturn] = ACTIONS(4474), + [anon_sym__Nonnull] = ACTIONS(4474), + [anon_sym_nullable] = ACTIONS(4474), + [anon_sym__Complex] = ACTIONS(4474), + [anon_sym__Nullable] = ACTIONS(4474), + [anon_sym__Nullable_result] = ACTIONS(4474), + [anon_sym__Null_unspecified] = ACTIONS(4474), + [anon_sym___autoreleasing] = ACTIONS(4474), + [anon_sym___block] = ACTIONS(4474), + [anon_sym___bridge] = ACTIONS(4474), + [anon_sym___bridge_retained] = ACTIONS(4474), + [anon_sym___bridge_transfer] = ACTIONS(4474), + [anon_sym___complex] = ACTIONS(4474), + [anon_sym___const] = ACTIONS(4474), + [anon_sym___imag] = ACTIONS(4474), + [anon_sym___kindof] = ACTIONS(4474), + [anon_sym___nonnull] = ACTIONS(4474), + [anon_sym___nullable] = ACTIONS(4474), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4474), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4474), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4474), + [anon_sym___real] = ACTIONS(4474), + [anon_sym___strong] = ACTIONS(4474), + [anon_sym___unsafe_unretained] = ACTIONS(4474), + [anon_sym___unused] = ACTIONS(4474), + [anon_sym___weak] = ACTIONS(4474), + [anon_sym_alignas] = ACTIONS(4474), + [anon_sym__Alignas] = ACTIONS(4474), + [sym_primitive_type] = ACTIONS(4474), + [anon_sym_enum] = ACTIONS(4474), + [anon_sym_struct] = ACTIONS(4474), + [anon_sym_union] = ACTIONS(4474), + [anon_sym_QMARK] = ACTIONS(4819), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4474), + [anon_sym___typeof] = ACTIONS(4474), + [anon_sym_typeof] = ACTIONS(4474), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4474), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4474), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4474), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4474), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4474), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4474), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4474), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4474), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4474), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4474), + [anon_sym_NS_AVAILABLE] = ACTIONS(4474), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4474), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4474), + [anon_sym_API_AVAILABLE] = ACTIONS(4474), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4474), + [anon_sym_API_DEPRECATED] = ACTIONS(4474), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4474), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4474), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4474), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4474), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4474), + [anon_sym___deprecated_msg] = ACTIONS(4474), + [anon_sym___deprecated_enum_msg] = ACTIONS(4474), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4474), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4474), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4474), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4474), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4474), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4474), + [anon_sym_BOOL] = ACTIONS(4474), + [anon_sym_IMP] = ACTIONS(4474), + [anon_sym_SEL] = ACTIONS(4474), + [anon_sym_Class] = ACTIONS(4474), + [anon_sym_id] = ACTIONS(4474), + }, + [1771] = { + [sym_identifier] = ACTIONS(2922), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4236), + [anon_sym_COMMA] = ACTIONS(4236), + [anon_sym_LPAREN2] = ACTIONS(4236), + [anon_sym_DASH] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4234), + [anon_sym_STAR] = ACTIONS(4236), + [anon_sym_SLASH] = ACTIONS(4234), + [anon_sym_PERCENT] = ACTIONS(4236), + [anon_sym_PIPE_PIPE] = ACTIONS(4236), + [anon_sym_AMP_AMP] = ACTIONS(4236), + [anon_sym_PIPE] = ACTIONS(4234), + [anon_sym_CARET] = ACTIONS(4236), + [anon_sym_AMP] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4236), + [anon_sym_BANG_EQ] = ACTIONS(4236), + [anon_sym_GT] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4236), + [anon_sym_LT_EQ] = ACTIONS(4236), + [anon_sym_LT] = ACTIONS(4234), + [anon_sym_LT_LT] = ACTIONS(4236), + [anon_sym_GT_GT] = ACTIONS(4236), + [anon_sym_SEMI] = ACTIONS(4236), + [anon_sym___extension__] = ACTIONS(2922), + [anon_sym_extern] = ACTIONS(2922), + [anon_sym___attribute__] = ACTIONS(2922), + [anon_sym___attribute] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2928), + [anon_sym___declspec] = ACTIONS(2922), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_auto] = ACTIONS(2922), + [anon_sym_register] = ACTIONS(2922), + [anon_sym_inline] = ACTIONS(2922), + [anon_sym___inline] = ACTIONS(2922), + [anon_sym___inline__] = ACTIONS(2922), + [anon_sym___forceinline] = ACTIONS(2922), + [anon_sym_thread_local] = ACTIONS(2922), + [anon_sym___thread] = ACTIONS(2922), + [anon_sym_CG_EXTERN] = ACTIONS(2922), + [anon_sym_CG_INLINE] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2922), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2922), + [anon_sym_IBOutlet] = ACTIONS(2922), + [anon_sym_IBInspectable] = ACTIONS(2922), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2922), + [anon_sym_NS_INLINE] = ACTIONS(2922), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2922), + [anon_sym_OBJC_EXPORT] = ACTIONS(2922), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2922), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2922), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_QMARK] = ACTIONS(4236), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_DOT] = ACTIONS(4234), + [anon_sym_DASH_GT] = ACTIONS(4236), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2922), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2922), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2922), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2922), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE] = ACTIONS(2922), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_API_AVAILABLE] = ACTIONS(2922), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_API_DEPRECATED] = ACTIONS(2922), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2922), + [anon_sym___deprecated_msg] = ACTIONS(2922), + [anon_sym___deprecated_enum_msg] = ACTIONS(2922), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2922), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2922), + [anon_sym_ATprotocol] = ACTIONS(2928), + [anon_sym_ATinterface] = ACTIONS(2928), + [anon_sym_ATimplementation] = ACTIONS(2928), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(2922), + }, + [1772] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4836), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4799), + [anon_sym_COMMA] = ACTIONS(4838), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4789), + [anon_sym_PLUS] = ACTIONS(4789), + [anon_sym_STAR] = ACTIONS(4791), + [anon_sym_SLASH] = ACTIONS(4793), + [anon_sym_PERCENT] = ACTIONS(4791), + [anon_sym_PIPE_PIPE] = ACTIONS(4803), + [anon_sym_AMP_AMP] = ACTIONS(4805), + [anon_sym_PIPE] = ACTIONS(4807), + [anon_sym_CARET] = ACTIONS(4809), + [anon_sym_AMP] = ACTIONS(4811), + [anon_sym_EQ_EQ] = ACTIONS(4813), + [anon_sym_BANG_EQ] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4815), + [anon_sym_GT_EQ] = ACTIONS(4817), + [anon_sym_LT_EQ] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4815), + [anon_sym_LT_LT] = ACTIONS(4795), + [anon_sym_GT_GT] = ACTIONS(4795), + [anon_sym_SEMI] = ACTIONS(4838), + [anon_sym___extension__] = ACTIONS(4836), + [anon_sym_extern] = ACTIONS(4836), + [anon_sym___attribute__] = ACTIONS(4836), + [anon_sym___attribute] = ACTIONS(4836), + [anon_sym_noreturn] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4836), + [anon_sym_LBRACE] = ACTIONS(4838), + [anon_sym_signed] = ACTIONS(4836), + [anon_sym_unsigned] = ACTIONS(4836), + [anon_sym_long] = ACTIONS(4836), + [anon_sym_short] = ACTIONS(4836), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_ATautoreleasepool] = ACTIONS(4838), + [anon_sym_auto] = ACTIONS(4836), + [anon_sym_register] = ACTIONS(4836), + [anon_sym_inline] = ACTIONS(4836), + [anon_sym___inline] = ACTIONS(4836), + [anon_sym___inline__] = ACTIONS(4836), + [anon_sym___forceinline] = ACTIONS(4836), + [anon_sym_thread_local] = ACTIONS(4836), + [anon_sym___thread] = ACTIONS(4836), + [anon_sym_CG_EXTERN] = ACTIONS(4836), + [anon_sym_CG_INLINE] = ACTIONS(4836), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4836), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4836), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4836), + [anon_sym_IBOutlet] = ACTIONS(4836), + [anon_sym_IBInspectable] = ACTIONS(4836), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4836), + [anon_sym_NS_INLINE] = ACTIONS(4836), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4836), + [anon_sym_OBJC_EXPORT] = ACTIONS(4836), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4836), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4836), + [anon_sym_const] = ACTIONS(4836), + [anon_sym_constexpr] = ACTIONS(4836), + [anon_sym_volatile] = ACTIONS(4836), + [anon_sym_restrict] = ACTIONS(4836), + [anon_sym___restrict__] = ACTIONS(4836), + [anon_sym__Atomic] = ACTIONS(4836), + [anon_sym__Noreturn] = ACTIONS(4836), + [anon_sym__Nonnull] = ACTIONS(4836), + [anon_sym_nullable] = ACTIONS(4836), + [anon_sym__Complex] = ACTIONS(4836), + [anon_sym__Nullable] = ACTIONS(4836), + [anon_sym__Nullable_result] = ACTIONS(4836), + [anon_sym__Null_unspecified] = ACTIONS(4836), + [anon_sym___autoreleasing] = ACTIONS(4836), + [anon_sym___block] = ACTIONS(4836), + [anon_sym___bridge] = ACTIONS(4836), + [anon_sym___bridge_retained] = ACTIONS(4836), + [anon_sym___bridge_transfer] = ACTIONS(4836), + [anon_sym___complex] = ACTIONS(4836), + [anon_sym___const] = ACTIONS(4836), + [anon_sym___imag] = ACTIONS(4836), + [anon_sym___kindof] = ACTIONS(4836), + [anon_sym___nonnull] = ACTIONS(4836), + [anon_sym___nullable] = ACTIONS(4836), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4836), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4836), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4836), + [anon_sym___real] = ACTIONS(4836), + [anon_sym___strong] = ACTIONS(4836), + [anon_sym___unsafe_unretained] = ACTIONS(4836), + [anon_sym___unused] = ACTIONS(4836), + [anon_sym___weak] = ACTIONS(4836), + [anon_sym_alignas] = ACTIONS(4836), + [anon_sym__Alignas] = ACTIONS(4836), + [sym_primitive_type] = ACTIONS(4836), + [anon_sym_enum] = ACTIONS(4836), + [anon_sym_struct] = ACTIONS(4836), + [anon_sym_union] = ACTIONS(4836), + [anon_sym_QMARK] = ACTIONS(4819), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4836), + [anon_sym___typeof] = ACTIONS(4836), + [anon_sym_typeof] = ACTIONS(4836), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4836), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4836), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4836), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4836), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4836), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4836), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4836), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4836), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4836), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4836), + [anon_sym_NS_AVAILABLE] = ACTIONS(4836), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4836), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4836), + [anon_sym_API_AVAILABLE] = ACTIONS(4836), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4836), + [anon_sym_API_DEPRECATED] = ACTIONS(4836), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4836), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4836), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4836), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4836), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4836), + [anon_sym___deprecated_msg] = ACTIONS(4836), + [anon_sym___deprecated_enum_msg] = ACTIONS(4836), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4836), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4836), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4836), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4836), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4836), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4836), + [anon_sym_BOOL] = ACTIONS(4836), + [anon_sym_IMP] = ACTIONS(4836), + [anon_sym_SEL] = ACTIONS(4836), + [anon_sym_Class] = ACTIONS(4836), + [anon_sym_id] = ACTIONS(4836), + }, + [1773] = { + [sym_declaration] = STATE(1865), + [sym__declaration_modifiers] = STATE(1972), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1972), + [sym_attribute_declaration] = STATE(1972), + [sym_ms_declspec_modifier] = STATE(1972), + [sym_compound_statement] = STATE(2113), + [sym_storage_class_specifier] = STATE(1972), + [sym_type_qualifier] = STATE(1972), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1972), + [sym_method_parameter] = STATE(1693), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1865), + [aux_sym__declaration_specifiers_repeat1] = STATE(1972), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4675), + [anon_sym_SEMI] = ACTIONS(4677), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4834), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1774] = { + [sym_declaration] = STATE(1882), + [sym__declaration_modifiers] = STATE(1974), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1974), + [sym_attribute_declaration] = STATE(1974), + [sym_ms_declspec_modifier] = STATE(1974), + [sym_compound_statement] = STATE(2334), + [sym_storage_class_specifier] = STATE(1974), + [sym_type_qualifier] = STATE(1974), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1974), + [sym_method_parameter] = STATE(1685), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1882), + [aux_sym__declaration_specifiers_repeat1] = STATE(1974), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4749), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(4834), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1775] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4789), + [anon_sym_PLUS] = ACTIONS(4789), + [anon_sym_STAR] = ACTIONS(4791), + [anon_sym_SLASH] = ACTIONS(4793), + [anon_sym_PERCENT] = ACTIONS(4791), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(4815), + [anon_sym_GT_EQ] = ACTIONS(4817), + [anon_sym_LT_EQ] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4815), + [anon_sym_LT_LT] = ACTIONS(4795), + [anon_sym_GT_GT] = ACTIONS(4795), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4027), + [anon_sym_signed] = ACTIONS(4025), + [anon_sym_unsigned] = ACTIONS(4025), + [anon_sym_long] = ACTIONS(4025), + [anon_sym_short] = ACTIONS(4025), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_ATautoreleasepool] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [sym_primitive_type] = ACTIONS(4025), + [anon_sym_enum] = ACTIONS(4025), + [anon_sym_struct] = ACTIONS(4025), + [anon_sym_union] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4025), + [anon_sym___typeof] = ACTIONS(4025), + [anon_sym_typeof] = ACTIONS(4025), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + [anon_sym_BOOL] = ACTIONS(4025), + [anon_sym_IMP] = ACTIONS(4025), + [anon_sym_SEL] = ACTIONS(4025), + [anon_sym_Class] = ACTIONS(4025), + [anon_sym_id] = ACTIONS(4025), + }, + [1776] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4025), + [anon_sym_PLUS] = ACTIONS(4025), + [anon_sym_STAR] = ACTIONS(4791), + [anon_sym_SLASH] = ACTIONS(4793), + [anon_sym_PERCENT] = ACTIONS(4791), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(4025), + [anon_sym_GT_EQ] = ACTIONS(4027), + [anon_sym_LT_EQ] = ACTIONS(4027), + [anon_sym_LT] = ACTIONS(4025), + [anon_sym_LT_LT] = ACTIONS(4027), + [anon_sym_GT_GT] = ACTIONS(4027), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4027), + [anon_sym_signed] = ACTIONS(4025), + [anon_sym_unsigned] = ACTIONS(4025), + [anon_sym_long] = ACTIONS(4025), + [anon_sym_short] = ACTIONS(4025), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_ATautoreleasepool] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [sym_primitive_type] = ACTIONS(4025), + [anon_sym_enum] = ACTIONS(4025), + [anon_sym_struct] = ACTIONS(4025), + [anon_sym_union] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4025), + [anon_sym___typeof] = ACTIONS(4025), + [anon_sym_typeof] = ACTIONS(4025), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + [anon_sym_BOOL] = ACTIONS(4025), + [anon_sym_IMP] = ACTIONS(4025), + [anon_sym_SEL] = ACTIONS(4025), + [anon_sym_Class] = ACTIONS(4025), + [anon_sym_id] = ACTIONS(4025), + }, + [1777] = { + [sym_identifier] = ACTIONS(4066), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4068), + [anon_sym_COMMA] = ACTIONS(4068), + [anon_sym_LPAREN2] = ACTIONS(4068), + [anon_sym_DASH] = ACTIONS(4066), + [anon_sym_PLUS] = ACTIONS(4066), + [anon_sym_STAR] = ACTIONS(4068), + [anon_sym_SLASH] = ACTIONS(4066), + [anon_sym_PERCENT] = ACTIONS(4068), + [anon_sym_PIPE_PIPE] = ACTIONS(4068), + [anon_sym_AMP_AMP] = ACTIONS(4068), + [anon_sym_PIPE] = ACTIONS(4066), + [anon_sym_CARET] = ACTIONS(4068), + [anon_sym_AMP] = ACTIONS(4066), + [anon_sym_EQ_EQ] = ACTIONS(4068), + [anon_sym_BANG_EQ] = ACTIONS(4068), + [anon_sym_GT] = ACTIONS(4066), + [anon_sym_GT_EQ] = ACTIONS(4068), + [anon_sym_LT_EQ] = ACTIONS(4068), + [anon_sym_LT] = ACTIONS(4066), + [anon_sym_LT_LT] = ACTIONS(4068), + [anon_sym_GT_GT] = ACTIONS(4068), + [anon_sym_SEMI] = ACTIONS(4068), + [anon_sym___extension__] = ACTIONS(4066), + [anon_sym_extern] = ACTIONS(4066), + [anon_sym___attribute__] = ACTIONS(4066), + [anon_sym___attribute] = ACTIONS(4066), + [anon_sym_noreturn] = ACTIONS(4066), + [anon_sym_LBRACK] = ACTIONS(4068), + [anon_sym___declspec] = ACTIONS(4066), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_signed] = ACTIONS(4066), + [anon_sym_unsigned] = ACTIONS(4066), + [anon_sym_long] = ACTIONS(4066), + [anon_sym_short] = ACTIONS(4066), + [anon_sym_static] = ACTIONS(4066), + [anon_sym_ATautoreleasepool] = ACTIONS(4068), + [anon_sym_auto] = ACTIONS(4066), + [anon_sym_register] = ACTIONS(4066), + [anon_sym_inline] = ACTIONS(4066), + [anon_sym___inline] = ACTIONS(4066), + [anon_sym___inline__] = ACTIONS(4066), + [anon_sym___forceinline] = ACTIONS(4066), + [anon_sym_thread_local] = ACTIONS(4066), + [anon_sym___thread] = ACTIONS(4066), + [anon_sym_CG_EXTERN] = ACTIONS(4066), + [anon_sym_CG_INLINE] = ACTIONS(4066), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4066), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4066), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4066), + [anon_sym_IBOutlet] = ACTIONS(4066), + [anon_sym_IBInspectable] = ACTIONS(4066), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4066), + [anon_sym_NS_INLINE] = ACTIONS(4066), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4066), + [anon_sym_OBJC_EXPORT] = ACTIONS(4066), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4066), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4066), + [anon_sym_const] = ACTIONS(4066), + [anon_sym_constexpr] = ACTIONS(4066), + [anon_sym_volatile] = ACTIONS(4066), + [anon_sym_restrict] = ACTIONS(4066), + [anon_sym___restrict__] = ACTIONS(4066), + [anon_sym__Atomic] = ACTIONS(4066), + [anon_sym__Noreturn] = ACTIONS(4066), + [anon_sym__Nonnull] = ACTIONS(4066), + [anon_sym_nullable] = ACTIONS(4066), + [anon_sym__Complex] = ACTIONS(4066), + [anon_sym__Nullable] = ACTIONS(4066), + [anon_sym__Nullable_result] = ACTIONS(4066), + [anon_sym__Null_unspecified] = ACTIONS(4066), + [anon_sym___autoreleasing] = ACTIONS(4066), + [anon_sym___block] = ACTIONS(4066), + [anon_sym___bridge] = ACTIONS(4066), + [anon_sym___bridge_retained] = ACTIONS(4066), + [anon_sym___bridge_transfer] = ACTIONS(4066), + [anon_sym___complex] = ACTIONS(4066), + [anon_sym___const] = ACTIONS(4066), + [anon_sym___imag] = ACTIONS(4066), + [anon_sym___kindof] = ACTIONS(4066), + [anon_sym___nonnull] = ACTIONS(4066), + [anon_sym___nullable] = ACTIONS(4066), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4066), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4066), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4066), + [anon_sym___real] = ACTIONS(4066), + [anon_sym___strong] = ACTIONS(4066), + [anon_sym___unsafe_unretained] = ACTIONS(4066), + [anon_sym___unused] = ACTIONS(4066), + [anon_sym___weak] = ACTIONS(4066), + [anon_sym_alignas] = ACTIONS(4066), + [anon_sym__Alignas] = ACTIONS(4066), + [sym_primitive_type] = ACTIONS(4066), + [anon_sym_enum] = ACTIONS(4066), + [anon_sym_struct] = ACTIONS(4066), + [anon_sym_union] = ACTIONS(4066), + [anon_sym_QMARK] = ACTIONS(4068), + [anon_sym_DASH_DASH] = ACTIONS(4068), + [anon_sym_PLUS_PLUS] = ACTIONS(4068), + [anon_sym_DOT] = ACTIONS(4066), + [anon_sym_DASH_GT] = ACTIONS(4068), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4066), + [anon_sym___typeof] = ACTIONS(4066), + [anon_sym_typeof] = ACTIONS(4066), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4066), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4066), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4066), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4066), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4066), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4066), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4066), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4066), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4066), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4066), + [anon_sym_NS_AVAILABLE] = ACTIONS(4066), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4066), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4066), + [anon_sym_API_AVAILABLE] = ACTIONS(4066), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4066), + [anon_sym_API_DEPRECATED] = ACTIONS(4066), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4066), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4066), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4066), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4066), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4066), + [anon_sym___deprecated_msg] = ACTIONS(4066), + [anon_sym___deprecated_enum_msg] = ACTIONS(4066), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4066), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4066), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4066), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4066), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4066), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4066), + [anon_sym_BOOL] = ACTIONS(4066), + [anon_sym_IMP] = ACTIONS(4066), + [anon_sym_SEL] = ACTIONS(4066), + [anon_sym_Class] = ACTIONS(4066), + [anon_sym_id] = ACTIONS(4066), + }, + [1778] = { + [sym_declaration] = STATE(1877), + [sym__declaration_modifiers] = STATE(1971), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1971), + [sym_attribute_declaration] = STATE(1971), + [sym_ms_declspec_modifier] = STATE(1971), + [sym_compound_statement] = STATE(2268), + [sym_storage_class_specifier] = STATE(1971), + [sym_type_qualifier] = STATE(1971), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1971), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1877), + [aux_sym__declaration_specifiers_repeat1] = STATE(1971), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(2819), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1779] = { + [sym_declaration] = STATE(1855), + [sym__declaration_modifiers] = STATE(1956), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1956), + [sym_attribute_declaration] = STATE(1956), + [sym_ms_declspec_modifier] = STATE(1956), + [sym_compound_statement] = STATE(2341), + [sym_storage_class_specifier] = STATE(1956), + [sym_type_qualifier] = STATE(1956), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1956), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1855), + [aux_sym__declaration_specifiers_repeat1] = STATE(1956), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(1786), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4655), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1780] = { + [sym_declaration] = STATE(1873), + [sym__declaration_modifiers] = STATE(1959), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1959), + [sym_attribute_declaration] = STATE(1959), + [sym_ms_declspec_modifier] = STATE(1959), + [sym_compound_statement] = STATE(2351), + [sym_storage_class_specifier] = STATE(1959), + [sym_type_qualifier] = STATE(1959), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1959), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1873), + [aux_sym__declaration_specifiers_repeat1] = STATE(1959), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(2819), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1781] = { + [sym_declaration] = STATE(1873), + [sym__declaration_modifiers] = STATE(1959), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1959), + [sym_attribute_declaration] = STATE(1959), + [sym_ms_declspec_modifier] = STATE(1959), + [sym_compound_statement] = STATE(2351), + [sym_storage_class_specifier] = STATE(1959), + [sym_type_qualifier] = STATE(1959), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1959), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1873), + [aux_sym__declaration_specifiers_repeat1] = STATE(1959), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(1819), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1782] = { + [sym_declaration] = STATE(1841), + [sym__declaration_modifiers] = STATE(1992), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1992), + [sym_attribute_declaration] = STATE(1992), + [sym_ms_declspec_modifier] = STATE(1992), + [sym_compound_statement] = STATE(2326), + [sym_storage_class_specifier] = STATE(1992), + [sym_type_qualifier] = STATE(1992), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1992), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1841), + [aux_sym__declaration_specifiers_repeat1] = STATE(1992), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(2819), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4711), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1783] = { + [sym_declaration] = STATE(1841), + [sym__declaration_modifiers] = STATE(1992), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1992), + [sym_attribute_declaration] = STATE(1992), + [sym_ms_declspec_modifier] = STATE(1992), + [sym_compound_statement] = STATE(2326), + [sym_storage_class_specifier] = STATE(1992), + [sym_type_qualifier] = STATE(1992), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1992), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1841), + [aux_sym__declaration_specifiers_repeat1] = STATE(1992), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(1785), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4711), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1784] = { + [sym_declaration] = STATE(1885), + [sym__declaration_modifiers] = STATE(1951), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1951), + [sym_attribute_declaration] = STATE(1951), + [sym_ms_declspec_modifier] = STATE(1951), + [sym_compound_statement] = STATE(2321), + [sym_storage_class_specifier] = STATE(1951), + [sym_type_qualifier] = STATE(1951), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1951), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1885), + [aux_sym__declaration_specifiers_repeat1] = STATE(1951), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(1804), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4673), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1785] = { + [sym_declaration] = STATE(1878), + [sym__declaration_modifiers] = STATE(1994), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1994), + [sym_attribute_declaration] = STATE(1994), + [sym_ms_declspec_modifier] = STATE(1994), + [sym_compound_statement] = STATE(2332), + [sym_storage_class_specifier] = STATE(1994), + [sym_type_qualifier] = STATE(1994), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1994), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1878), + [aux_sym__declaration_specifiers_repeat1] = STATE(1994), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(2819), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4719), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1786] = { + [sym_declaration] = STATE(1866), + [sym__declaration_modifiers] = STATE(1960), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1960), + [sym_attribute_declaration] = STATE(1960), + [sym_ms_declspec_modifier] = STATE(1960), + [sym_compound_statement] = STATE(2257), + [sym_storage_class_specifier] = STATE(1960), + [sym_type_qualifier] = STATE(1960), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1960), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1866), + [aux_sym__declaration_specifiers_repeat1] = STATE(1960), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(2819), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4685), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1787] = { + [sym_declaration] = STATE(1878), + [sym__declaration_modifiers] = STATE(1994), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1994), + [sym_attribute_declaration] = STATE(1994), + [sym_ms_declspec_modifier] = STATE(1994), + [sym_compound_statement] = STATE(2332), + [sym_storage_class_specifier] = STATE(1994), + [sym_type_qualifier] = STATE(1994), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1994), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1878), + [aux_sym__declaration_specifiers_repeat1] = STATE(1994), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(1791), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4719), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1788] = { + [sym_declaration] = STATE(1863), + [sym__declaration_modifiers] = STATE(1958), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1958), + [sym_attribute_declaration] = STATE(1958), + [sym_ms_declspec_modifier] = STATE(1958), + [sym_compound_statement] = STATE(2348), + [sym_storage_class_specifier] = STATE(1958), + [sym_type_qualifier] = STATE(1958), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1958), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1863), + [aux_sym__declaration_specifiers_repeat1] = STATE(1958), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(1780), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4735), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1789] = { + [sym_identifier] = ACTIONS(4106), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4108), + [anon_sym_COMMA] = ACTIONS(4108), + [anon_sym_LPAREN2] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4106), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_PIPE_PIPE] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4108), + [anon_sym_PIPE] = ACTIONS(4106), + [anon_sym_CARET] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4106), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4106), + [anon_sym_GT_EQ] = ACTIONS(4108), + [anon_sym_LT_EQ] = ACTIONS(4108), + [anon_sym_LT] = ACTIONS(4106), + [anon_sym_LT_LT] = ACTIONS(4108), + [anon_sym_GT_GT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym___extension__] = ACTIONS(4106), + [anon_sym_extern] = ACTIONS(4106), + [anon_sym___attribute__] = ACTIONS(4106), + [anon_sym___attribute] = ACTIONS(4106), + [anon_sym_noreturn] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym___declspec] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_signed] = ACTIONS(4106), + [anon_sym_unsigned] = ACTIONS(4106), + [anon_sym_long] = ACTIONS(4106), + [anon_sym_short] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_ATautoreleasepool] = ACTIONS(4108), + [anon_sym_auto] = ACTIONS(4106), + [anon_sym_register] = ACTIONS(4106), + [anon_sym_inline] = ACTIONS(4106), + [anon_sym___inline] = ACTIONS(4106), + [anon_sym___inline__] = ACTIONS(4106), + [anon_sym___forceinline] = ACTIONS(4106), + [anon_sym_thread_local] = ACTIONS(4106), + [anon_sym___thread] = ACTIONS(4106), + [anon_sym_CG_EXTERN] = ACTIONS(4106), + [anon_sym_CG_INLINE] = ACTIONS(4106), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4106), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4106), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4106), + [anon_sym_IBOutlet] = ACTIONS(4106), + [anon_sym_IBInspectable] = ACTIONS(4106), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4106), + [anon_sym_NS_INLINE] = ACTIONS(4106), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4106), + [anon_sym_OBJC_EXPORT] = ACTIONS(4106), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4106), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4106), + [anon_sym_const] = ACTIONS(4106), + [anon_sym_constexpr] = ACTIONS(4106), + [anon_sym_volatile] = ACTIONS(4106), + [anon_sym_restrict] = ACTIONS(4106), + [anon_sym___restrict__] = ACTIONS(4106), + [anon_sym__Atomic] = ACTIONS(4106), + [anon_sym__Noreturn] = ACTIONS(4106), + [anon_sym__Nonnull] = ACTIONS(4106), + [anon_sym_nullable] = ACTIONS(4106), + [anon_sym__Complex] = ACTIONS(4106), + [anon_sym__Nullable] = ACTIONS(4106), + [anon_sym__Nullable_result] = ACTIONS(4106), + [anon_sym__Null_unspecified] = ACTIONS(4106), + [anon_sym___autoreleasing] = ACTIONS(4106), + [anon_sym___block] = ACTIONS(4106), + [anon_sym___bridge] = ACTIONS(4106), + [anon_sym___bridge_retained] = ACTIONS(4106), + [anon_sym___bridge_transfer] = ACTIONS(4106), + [anon_sym___complex] = ACTIONS(4106), + [anon_sym___const] = ACTIONS(4106), + [anon_sym___imag] = ACTIONS(4106), + [anon_sym___kindof] = ACTIONS(4106), + [anon_sym___nonnull] = ACTIONS(4106), + [anon_sym___nullable] = ACTIONS(4106), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4106), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4106), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4106), + [anon_sym___real] = ACTIONS(4106), + [anon_sym___strong] = ACTIONS(4106), + [anon_sym___unsafe_unretained] = ACTIONS(4106), + [anon_sym___unused] = ACTIONS(4106), + [anon_sym___weak] = ACTIONS(4106), + [anon_sym_alignas] = ACTIONS(4106), + [anon_sym__Alignas] = ACTIONS(4106), + [sym_primitive_type] = ACTIONS(4106), + [anon_sym_enum] = ACTIONS(4106), + [anon_sym_struct] = ACTIONS(4106), + [anon_sym_union] = ACTIONS(4106), + [anon_sym_QMARK] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4108), + [anon_sym_PLUS_PLUS] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_DASH_GT] = ACTIONS(4108), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4106), + [anon_sym___typeof] = ACTIONS(4106), + [anon_sym_typeof] = ACTIONS(4106), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4106), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4106), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4106), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4106), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4106), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4106), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4106), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4106), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4106), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4106), + [anon_sym_NS_AVAILABLE] = ACTIONS(4106), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4106), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4106), + [anon_sym_API_AVAILABLE] = ACTIONS(4106), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4106), + [anon_sym_API_DEPRECATED] = ACTIONS(4106), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4106), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4106), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4106), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4106), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4106), + [anon_sym___deprecated_msg] = ACTIONS(4106), + [anon_sym___deprecated_enum_msg] = ACTIONS(4106), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4106), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4106), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4106), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4106), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4106), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4106), + [anon_sym_BOOL] = ACTIONS(4106), + [anon_sym_IMP] = ACTIONS(4106), + [anon_sym_SEL] = ACTIONS(4106), + [anon_sym_Class] = ACTIONS(4106), + [anon_sym_id] = ACTIONS(4106), + }, + [1790] = { + [sym_declaration] = STATE(1846), + [sym__declaration_modifiers] = STATE(1988), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1988), + [sym_attribute_declaration] = STATE(1988), + [sym_ms_declspec_modifier] = STATE(1988), + [sym_compound_statement] = STATE(2272), + [sym_storage_class_specifier] = STATE(1988), + [sym_type_qualifier] = STATE(1988), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1988), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1846), + [aux_sym__declaration_specifiers_repeat1] = STATE(1988), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(1820), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4693), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1791] = { + [sym_declaration] = STATE(1853), + [sym__declaration_modifiers] = STATE(1997), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1997), + [sym_attribute_declaration] = STATE(1997), + [sym_ms_declspec_modifier] = STATE(1997), + [sym_compound_statement] = STATE(2339), + [sym_storage_class_specifier] = STATE(1997), + [sym_type_qualifier] = STATE(1997), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1997), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1853), + [aux_sym__declaration_specifiers_repeat1] = STATE(1997), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(2819), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4739), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1792] = { + [sym_declaration] = STATE(1861), + [sym__declaration_modifiers] = STATE(1979), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1979), + [sym_attribute_declaration] = STATE(1979), + [sym_ms_declspec_modifier] = STATE(1979), + [sym_compound_statement] = STATE(2189), + [sym_storage_class_specifier] = STATE(1979), + [sym_type_qualifier] = STATE(1979), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1979), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1861), + [aux_sym__declaration_specifiers_repeat1] = STATE(1979), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(2819), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4707), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1793] = { + [sym_declaration] = STATE(1861), + [sym__declaration_modifiers] = STATE(1979), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1979), + [sym_attribute_declaration] = STATE(1979), + [sym_ms_declspec_modifier] = STATE(1979), + [sym_compound_statement] = STATE(2189), + [sym_storage_class_specifier] = STATE(1979), + [sym_type_qualifier] = STATE(1979), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1979), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1861), + [aux_sym__declaration_specifiers_repeat1] = STATE(1979), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(1800), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4707), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1794] = { + [sym_declaration] = STATE(1853), + [sym__declaration_modifiers] = STATE(1997), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1997), + [sym_attribute_declaration] = STATE(1997), + [sym_ms_declspec_modifier] = STATE(1997), + [sym_compound_statement] = STATE(2339), + [sym_storage_class_specifier] = STATE(1997), + [sym_type_qualifier] = STATE(1997), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1997), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1853), + [aux_sym__declaration_specifiers_repeat1] = STATE(1997), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(1797), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4739), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1795] = { + [sym_identifier] = ACTIONS(4176), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4178), + [anon_sym_COMMA] = ACTIONS(4178), + [anon_sym_LPAREN2] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4176), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_PIPE_PIPE] = ACTIONS(4178), + [anon_sym_AMP_AMP] = ACTIONS(4178), + [anon_sym_PIPE] = ACTIONS(4176), + [anon_sym_CARET] = ACTIONS(4178), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4176), + [anon_sym_GT_EQ] = ACTIONS(4178), + [anon_sym_LT_EQ] = ACTIONS(4178), + [anon_sym_LT] = ACTIONS(4176), + [anon_sym_LT_LT] = ACTIONS(4178), + [anon_sym_GT_GT] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4178), + [anon_sym___extension__] = ACTIONS(4176), + [anon_sym_extern] = ACTIONS(4176), + [anon_sym___attribute__] = ACTIONS(4176), + [anon_sym___attribute] = ACTIONS(4176), + [anon_sym_noreturn] = ACTIONS(4176), + [anon_sym_LBRACK] = ACTIONS(4178), + [anon_sym___declspec] = ACTIONS(4176), + [anon_sym_LBRACE] = ACTIONS(4178), + [anon_sym_signed] = ACTIONS(4176), + [anon_sym_unsigned] = ACTIONS(4176), + [anon_sym_long] = ACTIONS(4176), + [anon_sym_short] = ACTIONS(4176), + [anon_sym_static] = ACTIONS(4176), + [anon_sym_ATautoreleasepool] = ACTIONS(4178), + [anon_sym_auto] = ACTIONS(4176), + [anon_sym_register] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym___inline] = ACTIONS(4176), + [anon_sym___inline__] = ACTIONS(4176), + [anon_sym___forceinline] = ACTIONS(4176), + [anon_sym_thread_local] = ACTIONS(4176), + [anon_sym___thread] = ACTIONS(4176), + [anon_sym_CG_EXTERN] = ACTIONS(4176), + [anon_sym_CG_INLINE] = ACTIONS(4176), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4176), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4176), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4176), + [anon_sym_IBOutlet] = ACTIONS(4176), + [anon_sym_IBInspectable] = ACTIONS(4176), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4176), + [anon_sym_NS_INLINE] = ACTIONS(4176), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4176), + [anon_sym_OBJC_EXPORT] = ACTIONS(4176), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4176), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4176), + [anon_sym_const] = ACTIONS(4176), + [anon_sym_constexpr] = ACTIONS(4176), + [anon_sym_volatile] = ACTIONS(4176), + [anon_sym_restrict] = ACTIONS(4176), + [anon_sym___restrict__] = ACTIONS(4176), + [anon_sym__Atomic] = ACTIONS(4176), + [anon_sym__Noreturn] = ACTIONS(4176), + [anon_sym__Nonnull] = ACTIONS(4176), + [anon_sym_nullable] = ACTIONS(4176), + [anon_sym__Complex] = ACTIONS(4176), + [anon_sym__Nullable] = ACTIONS(4176), + [anon_sym__Nullable_result] = ACTIONS(4176), + [anon_sym__Null_unspecified] = ACTIONS(4176), + [anon_sym___autoreleasing] = ACTIONS(4176), + [anon_sym___block] = ACTIONS(4176), + [anon_sym___bridge] = ACTIONS(4176), + [anon_sym___bridge_retained] = ACTIONS(4176), + [anon_sym___bridge_transfer] = ACTIONS(4176), + [anon_sym___complex] = ACTIONS(4176), + [anon_sym___const] = ACTIONS(4176), + [anon_sym___imag] = ACTIONS(4176), + [anon_sym___kindof] = ACTIONS(4176), + [anon_sym___nonnull] = ACTIONS(4176), + [anon_sym___nullable] = ACTIONS(4176), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4176), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4176), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4176), + [anon_sym___real] = ACTIONS(4176), + [anon_sym___strong] = ACTIONS(4176), + [anon_sym___unsafe_unretained] = ACTIONS(4176), + [anon_sym___unused] = ACTIONS(4176), + [anon_sym___weak] = ACTIONS(4176), + [anon_sym_alignas] = ACTIONS(4176), + [anon_sym__Alignas] = ACTIONS(4176), + [sym_primitive_type] = ACTIONS(4176), + [anon_sym_enum] = ACTIONS(4176), + [anon_sym_struct] = ACTIONS(4176), + [anon_sym_union] = ACTIONS(4176), + [anon_sym_QMARK] = ACTIONS(4178), + [anon_sym_DASH_DASH] = ACTIONS(4178), + [anon_sym_PLUS_PLUS] = ACTIONS(4178), + [anon_sym_DOT] = ACTIONS(4176), + [anon_sym_DASH_GT] = ACTIONS(4178), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4176), + [anon_sym___typeof] = ACTIONS(4176), + [anon_sym_typeof] = ACTIONS(4176), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4176), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4176), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4176), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4176), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4176), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4176), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4176), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4176), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4176), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4176), + [anon_sym_NS_AVAILABLE] = ACTIONS(4176), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4176), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4176), + [anon_sym_API_AVAILABLE] = ACTIONS(4176), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4176), + [anon_sym_API_DEPRECATED] = ACTIONS(4176), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4176), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4176), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4176), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4176), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4176), + [anon_sym___deprecated_msg] = ACTIONS(4176), + [anon_sym___deprecated_enum_msg] = ACTIONS(4176), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4176), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4176), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4176), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4176), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4176), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4176), + [anon_sym_BOOL] = ACTIONS(4176), + [anon_sym_IMP] = ACTIONS(4176), + [anon_sym_SEL] = ACTIONS(4176), + [anon_sym_Class] = ACTIONS(4176), + [anon_sym_id] = ACTIONS(4176), + }, + [1796] = { + [sym_identifier] = ACTIONS(4180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4182), + [anon_sym_COMMA] = ACTIONS(4182), + [anon_sym_LPAREN2] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4180), + [anon_sym_STAR] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4180), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE] = ACTIONS(4180), + [anon_sym_CARET] = ACTIONS(4182), + [anon_sym_AMP] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4182), + [anon_sym_GT] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4180), + [anon_sym_LT_LT] = ACTIONS(4182), + [anon_sym_GT_GT] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym___extension__] = ACTIONS(4180), + [anon_sym_extern] = ACTIONS(4180), + [anon_sym___attribute__] = ACTIONS(4180), + [anon_sym___attribute] = ACTIONS(4180), + [anon_sym_noreturn] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4182), + [anon_sym___declspec] = ACTIONS(4180), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_signed] = ACTIONS(4180), + [anon_sym_unsigned] = ACTIONS(4180), + [anon_sym_long] = ACTIONS(4180), + [anon_sym_short] = ACTIONS(4180), + [anon_sym_static] = ACTIONS(4180), + [anon_sym_ATautoreleasepool] = ACTIONS(4182), + [anon_sym_auto] = ACTIONS(4180), + [anon_sym_register] = ACTIONS(4180), + [anon_sym_inline] = ACTIONS(4180), + [anon_sym___inline] = ACTIONS(4180), + [anon_sym___inline__] = ACTIONS(4180), + [anon_sym___forceinline] = ACTIONS(4180), + [anon_sym_thread_local] = ACTIONS(4180), + [anon_sym___thread] = ACTIONS(4180), + [anon_sym_CG_EXTERN] = ACTIONS(4180), + [anon_sym_CG_INLINE] = ACTIONS(4180), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4180), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4180), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4180), + [anon_sym_IBOutlet] = ACTIONS(4180), + [anon_sym_IBInspectable] = ACTIONS(4180), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4180), + [anon_sym_NS_INLINE] = ACTIONS(4180), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4180), + [anon_sym_OBJC_EXPORT] = ACTIONS(4180), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4180), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4180), + [anon_sym_const] = ACTIONS(4180), + [anon_sym_constexpr] = ACTIONS(4180), + [anon_sym_volatile] = ACTIONS(4180), + [anon_sym_restrict] = ACTIONS(4180), + [anon_sym___restrict__] = ACTIONS(4180), + [anon_sym__Atomic] = ACTIONS(4180), + [anon_sym__Noreturn] = ACTIONS(4180), + [anon_sym__Nonnull] = ACTIONS(4180), + [anon_sym_nullable] = ACTIONS(4180), + [anon_sym__Complex] = ACTIONS(4180), + [anon_sym__Nullable] = ACTIONS(4180), + [anon_sym__Nullable_result] = ACTIONS(4180), + [anon_sym__Null_unspecified] = ACTIONS(4180), + [anon_sym___autoreleasing] = ACTIONS(4180), + [anon_sym___block] = ACTIONS(4180), + [anon_sym___bridge] = ACTIONS(4180), + [anon_sym___bridge_retained] = ACTIONS(4180), + [anon_sym___bridge_transfer] = ACTIONS(4180), + [anon_sym___complex] = ACTIONS(4180), + [anon_sym___const] = ACTIONS(4180), + [anon_sym___imag] = ACTIONS(4180), + [anon_sym___kindof] = ACTIONS(4180), + [anon_sym___nonnull] = ACTIONS(4180), + [anon_sym___nullable] = ACTIONS(4180), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4180), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4180), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4180), + [anon_sym___real] = ACTIONS(4180), + [anon_sym___strong] = ACTIONS(4180), + [anon_sym___unsafe_unretained] = ACTIONS(4180), + [anon_sym___unused] = ACTIONS(4180), + [anon_sym___weak] = ACTIONS(4180), + [anon_sym_alignas] = ACTIONS(4180), + [anon_sym__Alignas] = ACTIONS(4180), + [sym_primitive_type] = ACTIONS(4180), + [anon_sym_enum] = ACTIONS(4180), + [anon_sym_struct] = ACTIONS(4180), + [anon_sym_union] = ACTIONS(4180), + [anon_sym_QMARK] = ACTIONS(4182), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_DOT] = ACTIONS(4180), + [anon_sym_DASH_GT] = ACTIONS(4182), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4180), + [anon_sym___typeof] = ACTIONS(4180), + [anon_sym_typeof] = ACTIONS(4180), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4180), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4180), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4180), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4180), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4180), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4180), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4180), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4180), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4180), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4180), + [anon_sym_NS_AVAILABLE] = ACTIONS(4180), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4180), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4180), + [anon_sym_API_AVAILABLE] = ACTIONS(4180), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4180), + [anon_sym_API_DEPRECATED] = ACTIONS(4180), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4180), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4180), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4180), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4180), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4180), + [anon_sym___deprecated_msg] = ACTIONS(4180), + [anon_sym___deprecated_enum_msg] = ACTIONS(4180), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4180), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4180), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4180), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4180), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4180), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4180), + [anon_sym_BOOL] = ACTIONS(4180), + [anon_sym_IMP] = ACTIONS(4180), + [anon_sym_SEL] = ACTIONS(4180), + [anon_sym_Class] = ACTIONS(4180), + [anon_sym_id] = ACTIONS(4180), + }, + [1797] = { + [sym_declaration] = STATE(1869), + [sym__declaration_modifiers] = STATE(1942), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1942), + [sym_attribute_declaration] = STATE(1942), + [sym_ms_declspec_modifier] = STATE(1942), + [sym_compound_statement] = STATE(2345), + [sym_storage_class_specifier] = STATE(1942), + [sym_type_qualifier] = STATE(1942), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1942), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1869), + [aux_sym__declaration_specifiers_repeat1] = STATE(1942), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(2819), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1798] = { + [sym_identifier] = ACTIONS(2922), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4236), + [anon_sym_LPAREN2] = ACTIONS(4236), + [anon_sym_DASH] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4234), + [anon_sym_STAR] = ACTIONS(4236), + [anon_sym_SLASH] = ACTIONS(4234), + [anon_sym_PERCENT] = ACTIONS(4236), + [anon_sym_PIPE_PIPE] = ACTIONS(4236), + [anon_sym_AMP_AMP] = ACTIONS(4236), + [anon_sym_PIPE] = ACTIONS(4234), + [anon_sym_CARET] = ACTIONS(4236), + [anon_sym_AMP] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4236), + [anon_sym_BANG_EQ] = ACTIONS(4236), + [anon_sym_GT] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4236), + [anon_sym_LT_EQ] = ACTIONS(4236), + [anon_sym_LT] = ACTIONS(4234), + [anon_sym_LT_LT] = ACTIONS(4236), + [anon_sym_GT_GT] = ACTIONS(4236), + [anon_sym_SEMI] = ACTIONS(4846), + [anon_sym___extension__] = ACTIONS(2922), + [anon_sym_extern] = ACTIONS(2922), + [anon_sym___attribute__] = ACTIONS(2922), + [anon_sym___attribute] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2928), + [anon_sym___declspec] = ACTIONS(2922), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_auto] = ACTIONS(2922), + [anon_sym_register] = ACTIONS(2922), + [anon_sym_inline] = ACTIONS(2922), + [anon_sym___inline] = ACTIONS(2922), + [anon_sym___inline__] = ACTIONS(2922), + [anon_sym___forceinline] = ACTIONS(2922), + [anon_sym_thread_local] = ACTIONS(2922), + [anon_sym___thread] = ACTIONS(2922), + [anon_sym_CG_EXTERN] = ACTIONS(2922), + [anon_sym_CG_INLINE] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2922), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2922), + [anon_sym_IBOutlet] = ACTIONS(2922), + [anon_sym_IBInspectable] = ACTIONS(2922), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2922), + [anon_sym_NS_INLINE] = ACTIONS(2922), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2922), + [anon_sym_OBJC_EXPORT] = ACTIONS(2922), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2922), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2922), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_QMARK] = ACTIONS(4236), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_DOT] = ACTIONS(4234), + [anon_sym_DASH_GT] = ACTIONS(4236), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2922), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2922), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2922), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2922), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE] = ACTIONS(2922), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_API_AVAILABLE] = ACTIONS(2922), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_API_DEPRECATED] = ACTIONS(2922), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2922), + [anon_sym___deprecated_msg] = ACTIONS(2922), + [anon_sym___deprecated_enum_msg] = ACTIONS(2922), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2922), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2922), + [anon_sym_ATprotocol] = ACTIONS(2928), + [anon_sym_ATinterface] = ACTIONS(2928), + [anon_sym_ATimplementation] = ACTIONS(2928), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(2922), + }, + [1799] = { + [sym_declaration] = STATE(1869), + [sym__declaration_modifiers] = STATE(1942), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1942), + [sym_attribute_declaration] = STATE(1942), + [sym_ms_declspec_modifier] = STATE(1942), + [sym_compound_statement] = STATE(2345), + [sym_storage_class_specifier] = STATE(1942), + [sym_type_qualifier] = STATE(1942), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1942), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1869), + [aux_sym__declaration_specifiers_repeat1] = STATE(1942), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(1802), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1800] = { + [sym_declaration] = STATE(1836), + [sym__declaration_modifiers] = STATE(1989), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1989), + [sym_attribute_declaration] = STATE(1989), + [sym_ms_declspec_modifier] = STATE(1989), + [sym_compound_statement] = STATE(2158), + [sym_storage_class_specifier] = STATE(1989), + [sym_type_qualifier] = STATE(1989), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1989), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1836), + [aux_sym__declaration_specifiers_repeat1] = STATE(1989), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(2819), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4715), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1801] = { + [sym_declaration] = STATE(1836), + [sym__declaration_modifiers] = STATE(1989), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1989), + [sym_attribute_declaration] = STATE(1989), + [sym_ms_declspec_modifier] = STATE(1989), + [sym_compound_statement] = STATE(2158), + [sym_storage_class_specifier] = STATE(1989), + [sym_type_qualifier] = STATE(1989), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1989), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1836), + [aux_sym__declaration_specifiers_repeat1] = STATE(1989), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(1807), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4715), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1802] = { + [sym_declaration] = STATE(1881), + [sym__declaration_modifiers] = STATE(1945), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1945), + [sym_attribute_declaration] = STATE(1945), + [sym_ms_declspec_modifier] = STATE(1945), + [sym_compound_statement] = STATE(2347), + [sym_storage_class_specifier] = STATE(1945), + [sym_type_qualifier] = STATE(1945), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1945), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1881), + [aux_sym__declaration_specifiers_repeat1] = STATE(1945), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(2819), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1803] = { + [sym_declaration] = STATE(1857), + [sym__declaration_modifiers] = STATE(1970), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1970), + [sym_attribute_declaration] = STATE(1970), + [sym_ms_declspec_modifier] = STATE(1970), + [sym_compound_statement] = STATE(2266), + [sym_storage_class_specifier] = STATE(1970), + [sym_type_qualifier] = STATE(1970), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1970), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1857), + [aux_sym__declaration_specifiers_repeat1] = STATE(1970), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(1778), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4850), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1804] = { + [sym_declaration] = STATE(1855), + [sym__declaration_modifiers] = STATE(1956), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1956), + [sym_attribute_declaration] = STATE(1956), + [sym_ms_declspec_modifier] = STATE(1956), + [sym_compound_statement] = STATE(2341), + [sym_storage_class_specifier] = STATE(1956), + [sym_type_qualifier] = STATE(1956), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1956), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1855), + [aux_sym__declaration_specifiers_repeat1] = STATE(1956), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(2819), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4655), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1805] = { + [sym_identifier] = ACTIONS(4238), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4240), + [anon_sym_COMMA] = ACTIONS(4240), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_PLUS] = ACTIONS(4238), + [anon_sym_STAR] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4238), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_PIPE_PIPE] = ACTIONS(4240), + [anon_sym_AMP_AMP] = ACTIONS(4240), + [anon_sym_PIPE] = ACTIONS(4238), + [anon_sym_CARET] = ACTIONS(4240), + [anon_sym_AMP] = ACTIONS(4238), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4238), + [anon_sym_GT_EQ] = ACTIONS(4240), + [anon_sym_LT_EQ] = ACTIONS(4240), + [anon_sym_LT] = ACTIONS(4238), + [anon_sym_LT_LT] = ACTIONS(4240), + [anon_sym_GT_GT] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4240), + [anon_sym___extension__] = ACTIONS(4238), + [anon_sym_extern] = ACTIONS(4238), + [anon_sym___attribute__] = ACTIONS(4238), + [anon_sym___attribute] = ACTIONS(4238), + [anon_sym_noreturn] = ACTIONS(4238), + [anon_sym_LBRACK] = ACTIONS(4240), + [anon_sym___declspec] = ACTIONS(4238), + [anon_sym_LBRACE] = ACTIONS(4240), + [anon_sym_signed] = ACTIONS(4238), + [anon_sym_unsigned] = ACTIONS(4238), + [anon_sym_long] = ACTIONS(4238), + [anon_sym_short] = ACTIONS(4238), + [anon_sym_static] = ACTIONS(4238), + [anon_sym_ATautoreleasepool] = ACTIONS(4240), + [anon_sym_auto] = ACTIONS(4238), + [anon_sym_register] = ACTIONS(4238), + [anon_sym_inline] = ACTIONS(4238), + [anon_sym___inline] = ACTIONS(4238), + [anon_sym___inline__] = ACTIONS(4238), + [anon_sym___forceinline] = ACTIONS(4238), + [anon_sym_thread_local] = ACTIONS(4238), + [anon_sym___thread] = ACTIONS(4238), + [anon_sym_CG_EXTERN] = ACTIONS(4238), + [anon_sym_CG_INLINE] = ACTIONS(4238), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4238), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4238), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4238), + [anon_sym_IBOutlet] = ACTIONS(4238), + [anon_sym_IBInspectable] = ACTIONS(4238), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4238), + [anon_sym_NS_INLINE] = ACTIONS(4238), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4238), + [anon_sym_OBJC_EXPORT] = ACTIONS(4238), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4238), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4238), + [anon_sym_const] = ACTIONS(4238), + [anon_sym_constexpr] = ACTIONS(4238), + [anon_sym_volatile] = ACTIONS(4238), + [anon_sym_restrict] = ACTIONS(4238), + [anon_sym___restrict__] = ACTIONS(4238), + [anon_sym__Atomic] = ACTIONS(4238), + [anon_sym__Noreturn] = ACTIONS(4238), + [anon_sym__Nonnull] = ACTIONS(4238), + [anon_sym_nullable] = ACTIONS(4238), + [anon_sym__Complex] = ACTIONS(4238), + [anon_sym__Nullable] = ACTIONS(4238), + [anon_sym__Nullable_result] = ACTIONS(4238), + [anon_sym__Null_unspecified] = ACTIONS(4238), + [anon_sym___autoreleasing] = ACTIONS(4238), + [anon_sym___block] = ACTIONS(4238), + [anon_sym___bridge] = ACTIONS(4238), + [anon_sym___bridge_retained] = ACTIONS(4238), + [anon_sym___bridge_transfer] = ACTIONS(4238), + [anon_sym___complex] = ACTIONS(4238), + [anon_sym___const] = ACTIONS(4238), + [anon_sym___imag] = ACTIONS(4238), + [anon_sym___kindof] = ACTIONS(4238), + [anon_sym___nonnull] = ACTIONS(4238), + [anon_sym___nullable] = ACTIONS(4238), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4238), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4238), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4238), + [anon_sym___real] = ACTIONS(4238), + [anon_sym___strong] = ACTIONS(4238), + [anon_sym___unsafe_unretained] = ACTIONS(4238), + [anon_sym___unused] = ACTIONS(4238), + [anon_sym___weak] = ACTIONS(4238), + [anon_sym_alignas] = ACTIONS(4238), + [anon_sym__Alignas] = ACTIONS(4238), + [sym_primitive_type] = ACTIONS(4238), + [anon_sym_enum] = ACTIONS(4238), + [anon_sym_struct] = ACTIONS(4238), + [anon_sym_union] = ACTIONS(4238), + [anon_sym_QMARK] = ACTIONS(4240), + [anon_sym_DASH_DASH] = ACTIONS(4240), + [anon_sym_PLUS_PLUS] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_DASH_GT] = ACTIONS(4240), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4238), + [anon_sym___typeof] = ACTIONS(4238), + [anon_sym_typeof] = ACTIONS(4238), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4238), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4238), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4238), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4238), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4238), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4238), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4238), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4238), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4238), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4238), + [anon_sym_NS_AVAILABLE] = ACTIONS(4238), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4238), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4238), + [anon_sym_API_AVAILABLE] = ACTIONS(4238), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4238), + [anon_sym_API_DEPRECATED] = ACTIONS(4238), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4238), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4238), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4238), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4238), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4238), + [anon_sym___deprecated_msg] = ACTIONS(4238), + [anon_sym___deprecated_enum_msg] = ACTIONS(4238), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4238), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4238), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4238), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4238), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4238), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4238), + [anon_sym_BOOL] = ACTIONS(4238), + [anon_sym_IMP] = ACTIONS(4238), + [anon_sym_SEL] = ACTIONS(4238), + [anon_sym_Class] = ACTIONS(4238), + [anon_sym_id] = ACTIONS(4238), + }, + [1806] = { + [sym_identifier] = ACTIONS(4246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4248), + [anon_sym_COMMA] = ACTIONS(4248), + [anon_sym_LPAREN2] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4246), + [anon_sym_STAR] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4246), + [anon_sym_PERCENT] = ACTIONS(4248), + [anon_sym_PIPE_PIPE] = ACTIONS(4248), + [anon_sym_AMP_AMP] = ACTIONS(4248), + [anon_sym_PIPE] = ACTIONS(4246), + [anon_sym_CARET] = ACTIONS(4248), + [anon_sym_AMP] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4248), + [anon_sym_LT_EQ] = ACTIONS(4248), + [anon_sym_LT] = ACTIONS(4246), + [anon_sym_LT_LT] = ACTIONS(4248), + [anon_sym_GT_GT] = ACTIONS(4248), + [anon_sym_SEMI] = ACTIONS(4248), + [anon_sym___extension__] = ACTIONS(4246), + [anon_sym_extern] = ACTIONS(4246), + [anon_sym___attribute__] = ACTIONS(4246), + [anon_sym___attribute] = ACTIONS(4246), + [anon_sym_noreturn] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4248), + [anon_sym___declspec] = ACTIONS(4246), + [anon_sym_LBRACE] = ACTIONS(4248), + [anon_sym_signed] = ACTIONS(4246), + [anon_sym_unsigned] = ACTIONS(4246), + [anon_sym_long] = ACTIONS(4246), + [anon_sym_short] = ACTIONS(4246), + [anon_sym_static] = ACTIONS(4246), + [anon_sym_ATautoreleasepool] = ACTIONS(4248), + [anon_sym_auto] = ACTIONS(4246), + [anon_sym_register] = ACTIONS(4246), + [anon_sym_inline] = ACTIONS(4246), + [anon_sym___inline] = ACTIONS(4246), + [anon_sym___inline__] = ACTIONS(4246), + [anon_sym___forceinline] = ACTIONS(4246), + [anon_sym_thread_local] = ACTIONS(4246), + [anon_sym___thread] = ACTIONS(4246), + [anon_sym_CG_EXTERN] = ACTIONS(4246), + [anon_sym_CG_INLINE] = ACTIONS(4246), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4246), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4246), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4246), + [anon_sym_IBOutlet] = ACTIONS(4246), + [anon_sym_IBInspectable] = ACTIONS(4246), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4246), + [anon_sym_NS_INLINE] = ACTIONS(4246), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4246), + [anon_sym_OBJC_EXPORT] = ACTIONS(4246), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4246), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4246), + [anon_sym_const] = ACTIONS(4246), + [anon_sym_constexpr] = ACTIONS(4246), + [anon_sym_volatile] = ACTIONS(4246), + [anon_sym_restrict] = ACTIONS(4246), + [anon_sym___restrict__] = ACTIONS(4246), + [anon_sym__Atomic] = ACTIONS(4246), + [anon_sym__Noreturn] = ACTIONS(4246), + [anon_sym__Nonnull] = ACTIONS(4246), + [anon_sym_nullable] = ACTIONS(4246), + [anon_sym__Complex] = ACTIONS(4246), + [anon_sym__Nullable] = ACTIONS(4246), + [anon_sym__Nullable_result] = ACTIONS(4246), + [anon_sym__Null_unspecified] = ACTIONS(4246), + [anon_sym___autoreleasing] = ACTIONS(4246), + [anon_sym___block] = ACTIONS(4246), + [anon_sym___bridge] = ACTIONS(4246), + [anon_sym___bridge_retained] = ACTIONS(4246), + [anon_sym___bridge_transfer] = ACTIONS(4246), + [anon_sym___complex] = ACTIONS(4246), + [anon_sym___const] = ACTIONS(4246), + [anon_sym___imag] = ACTIONS(4246), + [anon_sym___kindof] = ACTIONS(4246), + [anon_sym___nonnull] = ACTIONS(4246), + [anon_sym___nullable] = ACTIONS(4246), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4246), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4246), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4246), + [anon_sym___real] = ACTIONS(4246), + [anon_sym___strong] = ACTIONS(4246), + [anon_sym___unsafe_unretained] = ACTIONS(4246), + [anon_sym___unused] = ACTIONS(4246), + [anon_sym___weak] = ACTIONS(4246), + [anon_sym_alignas] = ACTIONS(4246), + [anon_sym__Alignas] = ACTIONS(4246), + [sym_primitive_type] = ACTIONS(4246), + [anon_sym_enum] = ACTIONS(4246), + [anon_sym_struct] = ACTIONS(4246), + [anon_sym_union] = ACTIONS(4246), + [anon_sym_QMARK] = ACTIONS(4248), + [anon_sym_DASH_DASH] = ACTIONS(4248), + [anon_sym_PLUS_PLUS] = ACTIONS(4248), + [anon_sym_DOT] = ACTIONS(4246), + [anon_sym_DASH_GT] = ACTIONS(4248), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4246), + [anon_sym___typeof] = ACTIONS(4246), + [anon_sym_typeof] = ACTIONS(4246), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4246), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4246), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4246), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4246), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4246), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4246), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4246), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4246), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4246), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4246), + [anon_sym_NS_AVAILABLE] = ACTIONS(4246), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4246), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4246), + [anon_sym_API_AVAILABLE] = ACTIONS(4246), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4246), + [anon_sym_API_DEPRECATED] = ACTIONS(4246), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4246), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4246), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4246), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4246), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4246), + [anon_sym___deprecated_msg] = ACTIONS(4246), + [anon_sym___deprecated_enum_msg] = ACTIONS(4246), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4246), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4246), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4246), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4246), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4246), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4246), + [anon_sym_BOOL] = ACTIONS(4246), + [anon_sym_IMP] = ACTIONS(4246), + [anon_sym_SEL] = ACTIONS(4246), + [anon_sym_Class] = ACTIONS(4246), + [anon_sym_id] = ACTIONS(4246), + }, + [1807] = { + [sym_declaration] = STATE(1842), + [sym__declaration_modifiers] = STATE(1982), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1982), + [sym_attribute_declaration] = STATE(1982), + [sym_ms_declspec_modifier] = STATE(1982), + [sym_compound_statement] = STATE(2176), + [sym_storage_class_specifier] = STATE(1982), + [sym_type_qualifier] = STATE(1982), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1982), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1842), + [aux_sym__declaration_specifiers_repeat1] = STATE(1982), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(2819), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4723), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1808] = { + [sym_declaration] = STATE(1842), + [sym__declaration_modifiers] = STATE(1982), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1982), + [sym_attribute_declaration] = STATE(1982), + [sym_ms_declspec_modifier] = STATE(1982), + [sym_compound_statement] = STATE(2176), + [sym_storage_class_specifier] = STATE(1982), + [sym_type_qualifier] = STATE(1982), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1982), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1842), + [aux_sym__declaration_specifiers_repeat1] = STATE(1982), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(1810), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4723), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1809] = { + [sym_declaration] = STATE(1862), + [sym__declaration_modifiers] = STATE(1946), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1946), + [sym_attribute_declaration] = STATE(1946), + [sym_ms_declspec_modifier] = STATE(1946), + [sym_compound_statement] = STATE(2252), + [sym_storage_class_specifier] = STATE(1946), + [sym_type_qualifier] = STATE(1946), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1946), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1862), + [aux_sym__declaration_specifiers_repeat1] = STATE(1946), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(2819), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1810] = { + [sym_declaration] = STATE(1847), + [sym__declaration_modifiers] = STATE(1984), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1984), + [sym_attribute_declaration] = STATE(1984), + [sym_ms_declspec_modifier] = STATE(1984), + [sym_compound_statement] = STATE(2207), + [sym_storage_class_specifier] = STATE(1984), + [sym_type_qualifier] = STATE(1984), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1984), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1847), + [aux_sym__declaration_specifiers_repeat1] = STATE(1984), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(2819), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4727), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1811] = { + [sym_declaration] = STATE(1847), + [sym__declaration_modifiers] = STATE(1984), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1984), + [sym_attribute_declaration] = STATE(1984), + [sym_ms_declspec_modifier] = STATE(1984), + [sym_compound_statement] = STATE(2207), + [sym_storage_class_specifier] = STATE(1984), + [sym_type_qualifier] = STATE(1984), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1984), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1847), + [aux_sym__declaration_specifiers_repeat1] = STATE(1984), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(1813), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4727), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1812] = { + [sym_declaration] = STATE(1860), + [sym__declaration_modifiers] = STATE(1976), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1976), + [sym_attribute_declaration] = STATE(1976), + [sym_ms_declspec_modifier] = STATE(1976), + [sym_compound_statement] = STATE(2146), + [sym_storage_class_specifier] = STATE(1976), + [sym_type_qualifier] = STATE(1976), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1976), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1860), + [aux_sym__declaration_specifiers_repeat1] = STATE(1976), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(1792), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4689), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1813] = { + [sym_declaration] = STATE(1852), + [sym__declaration_modifiers] = STATE(1986), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1986), + [sym_attribute_declaration] = STATE(1986), + [sym_ms_declspec_modifier] = STATE(1986), + [sym_compound_statement] = STATE(2160), + [sym_storage_class_specifier] = STATE(1986), + [sym_type_qualifier] = STATE(1986), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1986), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1852), + [aux_sym__declaration_specifiers_repeat1] = STATE(1986), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(2819), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4854), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1814] = { + [sym_declaration] = STATE(1852), + [sym__declaration_modifiers] = STATE(1986), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1986), + [sym_attribute_declaration] = STATE(1986), + [sym_ms_declspec_modifier] = STATE(1986), + [sym_compound_statement] = STATE(2160), + [sym_storage_class_specifier] = STATE(1986), + [sym_type_qualifier] = STATE(1986), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1986), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1852), + [aux_sym__declaration_specifiers_repeat1] = STATE(1986), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(1815), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4854), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1815] = { + [sym_declaration] = STATE(1856), + [sym__declaration_modifiers] = STATE(1950), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1950), + [sym_attribute_declaration] = STATE(1950), + [sym_ms_declspec_modifier] = STATE(1950), + [sym_compound_statement] = STATE(2196), + [sym_storage_class_specifier] = STATE(1950), + [sym_type_qualifier] = STATE(1950), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1950), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1856), + [aux_sym__declaration_specifiers_repeat1] = STATE(1950), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(2819), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1816] = { + [sym_declaration] = STATE(1856), + [sym__declaration_modifiers] = STATE(1950), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1950), + [sym_attribute_declaration] = STATE(1950), + [sym_ms_declspec_modifier] = STATE(1950), + [sym_compound_statement] = STATE(2196), + [sym_storage_class_specifier] = STATE(1950), + [sym_type_qualifier] = STATE(1950), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1950), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1856), + [aux_sym__declaration_specifiers_repeat1] = STATE(1950), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(1817), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1817] = { + [sym_declaration] = STATE(1858), + [sym__declaration_modifiers] = STATE(1952), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1952), + [sym_attribute_declaration] = STATE(1952), + [sym_ms_declspec_modifier] = STATE(1952), + [sym_compound_statement] = STATE(2200), + [sym_storage_class_specifier] = STATE(1952), + [sym_type_qualifier] = STATE(1952), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1952), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1858), + [aux_sym__declaration_specifiers_repeat1] = STATE(1952), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(2819), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4858), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1818] = { + [sym_declaration] = STATE(1866), + [sym__declaration_modifiers] = STATE(1960), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1960), + [sym_attribute_declaration] = STATE(1960), + [sym_ms_declspec_modifier] = STATE(1960), + [sym_compound_statement] = STATE(2257), + [sym_storage_class_specifier] = STATE(1960), + [sym_type_qualifier] = STATE(1960), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1960), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1866), + [aux_sym__declaration_specifiers_repeat1] = STATE(1960), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(1822), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4685), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1819] = { + [sym_declaration] = STATE(1885), + [sym__declaration_modifiers] = STATE(1951), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1951), + [sym_attribute_declaration] = STATE(1951), + [sym_ms_declspec_modifier] = STATE(1951), + [sym_compound_statement] = STATE(2321), + [sym_storage_class_specifier] = STATE(1951), + [sym_type_qualifier] = STATE(1951), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1951), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1885), + [aux_sym__declaration_specifiers_repeat1] = STATE(1951), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(2819), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4673), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1820] = { + [sym_declaration] = STATE(1884), + [sym__declaration_modifiers] = STATE(1990), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1990), + [sym_attribute_declaration] = STATE(1990), + [sym_ms_declspec_modifier] = STATE(1990), + [sym_compound_statement] = STATE(2346), + [sym_storage_class_specifier] = STATE(1990), + [sym_type_qualifier] = STATE(1990), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1990), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1884), + [aux_sym__declaration_specifiers_repeat1] = STATE(1990), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(2819), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4703), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1821] = { + [sym_identifier] = ACTIONS(4098), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4100), + [anon_sym_COMMA] = ACTIONS(4100), + [anon_sym_LPAREN2] = ACTIONS(4100), + [anon_sym_DASH] = ACTIONS(4098), + [anon_sym_PLUS] = ACTIONS(4098), + [anon_sym_STAR] = ACTIONS(4100), + [anon_sym_SLASH] = ACTIONS(4098), + [anon_sym_PERCENT] = ACTIONS(4100), + [anon_sym_PIPE_PIPE] = ACTIONS(4100), + [anon_sym_AMP_AMP] = ACTIONS(4100), + [anon_sym_PIPE] = ACTIONS(4098), + [anon_sym_CARET] = ACTIONS(4100), + [anon_sym_AMP] = ACTIONS(4098), + [anon_sym_EQ_EQ] = ACTIONS(4100), + [anon_sym_BANG_EQ] = ACTIONS(4100), + [anon_sym_GT] = ACTIONS(4098), + [anon_sym_GT_EQ] = ACTIONS(4100), + [anon_sym_LT_EQ] = ACTIONS(4100), + [anon_sym_LT] = ACTIONS(4098), + [anon_sym_LT_LT] = ACTIONS(4100), + [anon_sym_GT_GT] = ACTIONS(4100), + [anon_sym_SEMI] = ACTIONS(4100), + [anon_sym___extension__] = ACTIONS(4098), + [anon_sym_extern] = ACTIONS(4098), + [anon_sym___attribute__] = ACTIONS(4098), + [anon_sym___attribute] = ACTIONS(4098), + [anon_sym_noreturn] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym___declspec] = ACTIONS(4098), + [anon_sym_LBRACE] = ACTIONS(4100), + [anon_sym_signed] = ACTIONS(4098), + [anon_sym_unsigned] = ACTIONS(4098), + [anon_sym_long] = ACTIONS(4098), + [anon_sym_short] = ACTIONS(4098), + [anon_sym_static] = ACTIONS(4098), + [anon_sym_ATautoreleasepool] = ACTIONS(4100), + [anon_sym_auto] = ACTIONS(4098), + [anon_sym_register] = ACTIONS(4098), + [anon_sym_inline] = ACTIONS(4098), + [anon_sym___inline] = ACTIONS(4098), + [anon_sym___inline__] = ACTIONS(4098), + [anon_sym___forceinline] = ACTIONS(4098), + [anon_sym_thread_local] = ACTIONS(4098), + [anon_sym___thread] = ACTIONS(4098), + [anon_sym_CG_EXTERN] = ACTIONS(4098), + [anon_sym_CG_INLINE] = ACTIONS(4098), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4098), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4098), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4098), + [anon_sym_IBOutlet] = ACTIONS(4098), + [anon_sym_IBInspectable] = ACTIONS(4098), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4098), + [anon_sym_NS_INLINE] = ACTIONS(4098), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4098), + [anon_sym_OBJC_EXPORT] = ACTIONS(4098), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4098), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4098), + [anon_sym_const] = ACTIONS(4098), + [anon_sym_constexpr] = ACTIONS(4098), + [anon_sym_volatile] = ACTIONS(4098), + [anon_sym_restrict] = ACTIONS(4098), + [anon_sym___restrict__] = ACTIONS(4098), + [anon_sym__Atomic] = ACTIONS(4098), + [anon_sym__Noreturn] = ACTIONS(4098), + [anon_sym__Nonnull] = ACTIONS(4098), + [anon_sym_nullable] = ACTIONS(4098), + [anon_sym__Complex] = ACTIONS(4098), + [anon_sym__Nullable] = ACTIONS(4098), + [anon_sym__Nullable_result] = ACTIONS(4098), + [anon_sym__Null_unspecified] = ACTIONS(4098), + [anon_sym___autoreleasing] = ACTIONS(4098), + [anon_sym___block] = ACTIONS(4098), + [anon_sym___bridge] = ACTIONS(4098), + [anon_sym___bridge_retained] = ACTIONS(4098), + [anon_sym___bridge_transfer] = ACTIONS(4098), + [anon_sym___complex] = ACTIONS(4098), + [anon_sym___const] = ACTIONS(4098), + [anon_sym___imag] = ACTIONS(4098), + [anon_sym___kindof] = ACTIONS(4098), + [anon_sym___nonnull] = ACTIONS(4098), + [anon_sym___nullable] = ACTIONS(4098), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4098), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4098), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4098), + [anon_sym___real] = ACTIONS(4098), + [anon_sym___strong] = ACTIONS(4098), + [anon_sym___unsafe_unretained] = ACTIONS(4098), + [anon_sym___unused] = ACTIONS(4098), + [anon_sym___weak] = ACTIONS(4098), + [anon_sym_alignas] = ACTIONS(4098), + [anon_sym__Alignas] = ACTIONS(4098), + [sym_primitive_type] = ACTIONS(4098), + [anon_sym_enum] = ACTIONS(4098), + [anon_sym_struct] = ACTIONS(4098), + [anon_sym_union] = ACTIONS(4098), + [anon_sym_QMARK] = ACTIONS(4100), + [anon_sym_DASH_DASH] = ACTIONS(4100), + [anon_sym_PLUS_PLUS] = ACTIONS(4100), + [anon_sym_DOT] = ACTIONS(4098), + [anon_sym_DASH_GT] = ACTIONS(4100), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4098), + [anon_sym___typeof] = ACTIONS(4098), + [anon_sym_typeof] = ACTIONS(4098), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4098), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4098), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4098), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4098), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4098), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4098), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4098), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4098), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4098), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4098), + [anon_sym_NS_AVAILABLE] = ACTIONS(4098), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4098), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4098), + [anon_sym_API_AVAILABLE] = ACTIONS(4098), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4098), + [anon_sym_API_DEPRECATED] = ACTIONS(4098), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4098), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4098), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4098), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4098), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4098), + [anon_sym___deprecated_msg] = ACTIONS(4098), + [anon_sym___deprecated_enum_msg] = ACTIONS(4098), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4098), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4098), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4098), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4098), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4098), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4098), + [anon_sym_BOOL] = ACTIONS(4098), + [anon_sym_IMP] = ACTIONS(4098), + [anon_sym_SEL] = ACTIONS(4098), + [anon_sym_Class] = ACTIONS(4098), + [anon_sym_id] = ACTIONS(4098), + }, + [1822] = { + [sym_declaration] = STATE(1872), + [sym__declaration_modifiers] = STATE(1938), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1938), + [sym_attribute_declaration] = STATE(1938), + [sym_ms_declspec_modifier] = STATE(1938), + [sym_compound_statement] = STATE(2261), + [sym_storage_class_specifier] = STATE(1938), + [sym_type_qualifier] = STATE(1938), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1938), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1872), + [aux_sym__declaration_specifiers_repeat1] = STATE(1938), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(2819), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4860), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1823] = { + [sym_declaration] = STATE(1884), + [sym__declaration_modifiers] = STATE(1990), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1990), + [sym_attribute_declaration] = STATE(1990), + [sym_ms_declspec_modifier] = STATE(1990), + [sym_compound_statement] = STATE(2346), + [sym_storage_class_specifier] = STATE(1990), + [sym_type_qualifier] = STATE(1990), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1990), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1884), + [aux_sym__declaration_specifiers_repeat1] = STATE(1990), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(1782), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4703), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1824] = { + [sym_declaration] = STATE(1872), + [sym__declaration_modifiers] = STATE(1938), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1938), + [sym_attribute_declaration] = STATE(1938), + [sym_ms_declspec_modifier] = STATE(1938), + [sym_compound_statement] = STATE(2261), + [sym_storage_class_specifier] = STATE(1938), + [sym_type_qualifier] = STATE(1938), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1938), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1872), + [aux_sym__declaration_specifiers_repeat1] = STATE(1938), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(1826), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4860), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1825] = { + [sym_identifier] = ACTIONS(4124), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4126), + [anon_sym_COMMA] = ACTIONS(4126), + [anon_sym_LPAREN2] = ACTIONS(4126), + [anon_sym_DASH] = ACTIONS(4124), + [anon_sym_PLUS] = ACTIONS(4124), + [anon_sym_STAR] = ACTIONS(4126), + [anon_sym_SLASH] = ACTIONS(4124), + [anon_sym_PERCENT] = ACTIONS(4126), + [anon_sym_PIPE_PIPE] = ACTIONS(4126), + [anon_sym_AMP_AMP] = ACTIONS(4126), + [anon_sym_PIPE] = ACTIONS(4124), + [anon_sym_CARET] = ACTIONS(4126), + [anon_sym_AMP] = ACTIONS(4124), + [anon_sym_EQ_EQ] = ACTIONS(4126), + [anon_sym_BANG_EQ] = ACTIONS(4126), + [anon_sym_GT] = ACTIONS(4124), + [anon_sym_GT_EQ] = ACTIONS(4126), + [anon_sym_LT_EQ] = ACTIONS(4126), + [anon_sym_LT] = ACTIONS(4124), + [anon_sym_LT_LT] = ACTIONS(4126), + [anon_sym_GT_GT] = ACTIONS(4126), + [anon_sym_SEMI] = ACTIONS(4126), + [anon_sym___extension__] = ACTIONS(4124), + [anon_sym_extern] = ACTIONS(4124), + [anon_sym___attribute__] = ACTIONS(4124), + [anon_sym___attribute] = ACTIONS(4124), + [anon_sym_noreturn] = ACTIONS(4124), + [anon_sym_LBRACK] = ACTIONS(4126), + [anon_sym___declspec] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4126), + [anon_sym_signed] = ACTIONS(4124), + [anon_sym_unsigned] = ACTIONS(4124), + [anon_sym_long] = ACTIONS(4124), + [anon_sym_short] = ACTIONS(4124), + [anon_sym_static] = ACTIONS(4124), + [anon_sym_ATautoreleasepool] = ACTIONS(4126), + [anon_sym_auto] = ACTIONS(4124), + [anon_sym_register] = ACTIONS(4124), + [anon_sym_inline] = ACTIONS(4124), + [anon_sym___inline] = ACTIONS(4124), + [anon_sym___inline__] = ACTIONS(4124), + [anon_sym___forceinline] = ACTIONS(4124), + [anon_sym_thread_local] = ACTIONS(4124), + [anon_sym___thread] = ACTIONS(4124), + [anon_sym_CG_EXTERN] = ACTIONS(4124), + [anon_sym_CG_INLINE] = ACTIONS(4124), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4124), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4124), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4124), + [anon_sym_IBOutlet] = ACTIONS(4124), + [anon_sym_IBInspectable] = ACTIONS(4124), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4124), + [anon_sym_NS_INLINE] = ACTIONS(4124), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4124), + [anon_sym_OBJC_EXPORT] = ACTIONS(4124), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4124), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4124), + [anon_sym_const] = ACTIONS(4124), + [anon_sym_constexpr] = ACTIONS(4124), + [anon_sym_volatile] = ACTIONS(4124), + [anon_sym_restrict] = ACTIONS(4124), + [anon_sym___restrict__] = ACTIONS(4124), + [anon_sym__Atomic] = ACTIONS(4124), + [anon_sym__Noreturn] = ACTIONS(4124), + [anon_sym__Nonnull] = ACTIONS(4124), + [anon_sym_nullable] = ACTIONS(4124), + [anon_sym__Complex] = ACTIONS(4124), + [anon_sym__Nullable] = ACTIONS(4124), + [anon_sym__Nullable_result] = ACTIONS(4124), + [anon_sym__Null_unspecified] = ACTIONS(4124), + [anon_sym___autoreleasing] = ACTIONS(4124), + [anon_sym___block] = ACTIONS(4124), + [anon_sym___bridge] = ACTIONS(4124), + [anon_sym___bridge_retained] = ACTIONS(4124), + [anon_sym___bridge_transfer] = ACTIONS(4124), + [anon_sym___complex] = ACTIONS(4124), + [anon_sym___const] = ACTIONS(4124), + [anon_sym___imag] = ACTIONS(4124), + [anon_sym___kindof] = ACTIONS(4124), + [anon_sym___nonnull] = ACTIONS(4124), + [anon_sym___nullable] = ACTIONS(4124), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4124), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4124), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4124), + [anon_sym___real] = ACTIONS(4124), + [anon_sym___strong] = ACTIONS(4124), + [anon_sym___unsafe_unretained] = ACTIONS(4124), + [anon_sym___unused] = ACTIONS(4124), + [anon_sym___weak] = ACTIONS(4124), + [anon_sym_alignas] = ACTIONS(4124), + [anon_sym__Alignas] = ACTIONS(4124), + [sym_primitive_type] = ACTIONS(4124), + [anon_sym_enum] = ACTIONS(4124), + [anon_sym_struct] = ACTIONS(4124), + [anon_sym_union] = ACTIONS(4124), + [anon_sym_QMARK] = ACTIONS(4126), + [anon_sym_DASH_DASH] = ACTIONS(4126), + [anon_sym_PLUS_PLUS] = ACTIONS(4126), + [anon_sym_DOT] = ACTIONS(4124), + [anon_sym_DASH_GT] = ACTIONS(4126), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4124), + [anon_sym___typeof] = ACTIONS(4124), + [anon_sym_typeof] = ACTIONS(4124), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4124), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4124), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4124), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4124), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4124), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4124), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4124), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4124), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4124), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4124), + [anon_sym_NS_AVAILABLE] = ACTIONS(4124), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4124), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4124), + [anon_sym_API_AVAILABLE] = ACTIONS(4124), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4124), + [anon_sym_API_DEPRECATED] = ACTIONS(4124), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4124), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4124), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4124), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4124), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4124), + [anon_sym___deprecated_msg] = ACTIONS(4124), + [anon_sym___deprecated_enum_msg] = ACTIONS(4124), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4124), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4124), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4124), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4124), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4124), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4124), + [anon_sym_BOOL] = ACTIONS(4124), + [anon_sym_IMP] = ACTIONS(4124), + [anon_sym_SEL] = ACTIONS(4124), + [anon_sym_Class] = ACTIONS(4124), + [anon_sym_id] = ACTIONS(4124), + }, + [1826] = { + [sym_declaration] = STATE(1857), + [sym__declaration_modifiers] = STATE(1970), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1970), + [sym_attribute_declaration] = STATE(1970), + [sym_ms_declspec_modifier] = STATE(1970), + [sym_compound_statement] = STATE(2266), + [sym_storage_class_specifier] = STATE(1970), + [sym_type_qualifier] = STATE(1970), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1970), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1857), + [aux_sym__declaration_specifiers_repeat1] = STATE(1970), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(2819), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4850), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1827] = { + [sym_identifier] = ACTIONS(4206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4208), + [anon_sym_COMMA] = ACTIONS(4208), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_DASH] = ACTIONS(4206), + [anon_sym_PLUS] = ACTIONS(4206), + [anon_sym_STAR] = ACTIONS(4208), + [anon_sym_SLASH] = ACTIONS(4206), + [anon_sym_PERCENT] = ACTIONS(4208), + [anon_sym_PIPE_PIPE] = ACTIONS(4208), + [anon_sym_AMP_AMP] = ACTIONS(4208), + [anon_sym_PIPE] = ACTIONS(4206), + [anon_sym_CARET] = ACTIONS(4208), + [anon_sym_AMP] = ACTIONS(4206), + [anon_sym_EQ_EQ] = ACTIONS(4208), + [anon_sym_BANG_EQ] = ACTIONS(4208), + [anon_sym_GT] = ACTIONS(4206), + [anon_sym_GT_EQ] = ACTIONS(4208), + [anon_sym_LT_EQ] = ACTIONS(4208), + [anon_sym_LT] = ACTIONS(4206), + [anon_sym_LT_LT] = ACTIONS(4208), + [anon_sym_GT_GT] = ACTIONS(4208), + [anon_sym_SEMI] = ACTIONS(4208), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_extern] = ACTIONS(4206), + [anon_sym___attribute__] = ACTIONS(4206), + [anon_sym___attribute] = ACTIONS(4206), + [anon_sym_noreturn] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4208), + [anon_sym___declspec] = ACTIONS(4206), + [anon_sym_LBRACE] = ACTIONS(4208), + [anon_sym_signed] = ACTIONS(4206), + [anon_sym_unsigned] = ACTIONS(4206), + [anon_sym_long] = ACTIONS(4206), + [anon_sym_short] = ACTIONS(4206), + [anon_sym_static] = ACTIONS(4206), + [anon_sym_ATautoreleasepool] = ACTIONS(4208), + [anon_sym_auto] = ACTIONS(4206), + [anon_sym_register] = ACTIONS(4206), + [anon_sym_inline] = ACTIONS(4206), + [anon_sym___inline] = ACTIONS(4206), + [anon_sym___inline__] = ACTIONS(4206), + [anon_sym___forceinline] = ACTIONS(4206), + [anon_sym_thread_local] = ACTIONS(4206), + [anon_sym___thread] = ACTIONS(4206), + [anon_sym_CG_EXTERN] = ACTIONS(4206), + [anon_sym_CG_INLINE] = ACTIONS(4206), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4206), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4206), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4206), + [anon_sym_IBOutlet] = ACTIONS(4206), + [anon_sym_IBInspectable] = ACTIONS(4206), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4206), + [anon_sym_NS_INLINE] = ACTIONS(4206), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4206), + [anon_sym_OBJC_EXPORT] = ACTIONS(4206), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4206), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4206), + [anon_sym_const] = ACTIONS(4206), + [anon_sym_constexpr] = ACTIONS(4206), + [anon_sym_volatile] = ACTIONS(4206), + [anon_sym_restrict] = ACTIONS(4206), + [anon_sym___restrict__] = ACTIONS(4206), + [anon_sym__Atomic] = ACTIONS(4206), + [anon_sym__Noreturn] = ACTIONS(4206), + [anon_sym__Nonnull] = ACTIONS(4206), + [anon_sym_nullable] = ACTIONS(4206), + [anon_sym__Complex] = ACTIONS(4206), + [anon_sym__Nullable] = ACTIONS(4206), + [anon_sym__Nullable_result] = ACTIONS(4206), + [anon_sym__Null_unspecified] = ACTIONS(4206), + [anon_sym___autoreleasing] = ACTIONS(4206), + [anon_sym___block] = ACTIONS(4206), + [anon_sym___bridge] = ACTIONS(4206), + [anon_sym___bridge_retained] = ACTIONS(4206), + [anon_sym___bridge_transfer] = ACTIONS(4206), + [anon_sym___complex] = ACTIONS(4206), + [anon_sym___const] = ACTIONS(4206), + [anon_sym___imag] = ACTIONS(4206), + [anon_sym___kindof] = ACTIONS(4206), + [anon_sym___nonnull] = ACTIONS(4206), + [anon_sym___nullable] = ACTIONS(4206), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4206), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4206), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4206), + [anon_sym___real] = ACTIONS(4206), + [anon_sym___strong] = ACTIONS(4206), + [anon_sym___unsafe_unretained] = ACTIONS(4206), + [anon_sym___unused] = ACTIONS(4206), + [anon_sym___weak] = ACTIONS(4206), + [anon_sym_alignas] = ACTIONS(4206), + [anon_sym__Alignas] = ACTIONS(4206), + [sym_primitive_type] = ACTIONS(4206), + [anon_sym_enum] = ACTIONS(4206), + [anon_sym_struct] = ACTIONS(4206), + [anon_sym_union] = ACTIONS(4206), + [anon_sym_QMARK] = ACTIONS(4208), + [anon_sym_DASH_DASH] = ACTIONS(4208), + [anon_sym_PLUS_PLUS] = ACTIONS(4208), + [anon_sym_DOT] = ACTIONS(4206), + [anon_sym_DASH_GT] = ACTIONS(4208), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4206), + [anon_sym___typeof] = ACTIONS(4206), + [anon_sym_typeof] = ACTIONS(4206), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4206), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4206), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4206), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4206), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4206), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4206), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4206), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4206), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4206), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4206), + [anon_sym_NS_AVAILABLE] = ACTIONS(4206), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4206), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4206), + [anon_sym_API_AVAILABLE] = ACTIONS(4206), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4206), + [anon_sym_API_DEPRECATED] = ACTIONS(4206), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4206), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4206), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4206), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4206), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4206), + [anon_sym___deprecated_msg] = ACTIONS(4206), + [anon_sym___deprecated_enum_msg] = ACTIONS(4206), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4206), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4206), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4206), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4206), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4206), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4206), + [anon_sym_BOOL] = ACTIONS(4206), + [anon_sym_IMP] = ACTIONS(4206), + [anon_sym_SEL] = ACTIONS(4206), + [anon_sym_Class] = ACTIONS(4206), + [anon_sym_id] = ACTIONS(4206), + }, + [1828] = { + [sym_identifier] = ACTIONS(4070), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4072), + [anon_sym_LPAREN2] = ACTIONS(4072), + [anon_sym_DASH] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(4070), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_SLASH] = ACTIONS(4070), + [anon_sym_PERCENT] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4072), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE] = ACTIONS(4070), + [anon_sym_CARET] = ACTIONS(4072), + [anon_sym_AMP] = ACTIONS(4070), + [anon_sym_EQ_EQ] = ACTIONS(4072), + [anon_sym_BANG_EQ] = ACTIONS(4072), + [anon_sym_GT] = ACTIONS(4070), + [anon_sym_GT_EQ] = ACTIONS(4072), + [anon_sym_LT_EQ] = ACTIONS(4072), + [anon_sym_LT] = ACTIONS(4070), + [anon_sym_LT_LT] = ACTIONS(4072), + [anon_sym_GT_GT] = ACTIONS(4072), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym___extension__] = ACTIONS(4070), + [anon_sym_extern] = ACTIONS(4070), + [anon_sym___attribute__] = ACTIONS(4070), + [anon_sym___attribute] = ACTIONS(4070), + [anon_sym_noreturn] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym___declspec] = ACTIONS(4070), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_signed] = ACTIONS(4070), + [anon_sym_unsigned] = ACTIONS(4070), + [anon_sym_long] = ACTIONS(4070), + [anon_sym_short] = ACTIONS(4070), + [anon_sym_static] = ACTIONS(4070), + [anon_sym_ATautoreleasepool] = ACTIONS(4072), + [anon_sym_auto] = ACTIONS(4070), + [anon_sym_register] = ACTIONS(4070), + [anon_sym_inline] = ACTIONS(4070), + [anon_sym___inline] = ACTIONS(4070), + [anon_sym___inline__] = ACTIONS(4070), + [anon_sym___forceinline] = ACTIONS(4070), + [anon_sym_thread_local] = ACTIONS(4070), + [anon_sym___thread] = ACTIONS(4070), + [anon_sym_CG_EXTERN] = ACTIONS(4070), + [anon_sym_CG_INLINE] = ACTIONS(4070), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4070), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4070), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4070), + [anon_sym_IBOutlet] = ACTIONS(4070), + [anon_sym_IBInspectable] = ACTIONS(4070), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4070), + [anon_sym_NS_INLINE] = ACTIONS(4070), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4070), + [anon_sym_OBJC_EXPORT] = ACTIONS(4070), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4070), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4070), + [anon_sym_const] = ACTIONS(4070), + [anon_sym_constexpr] = ACTIONS(4070), + [anon_sym_volatile] = ACTIONS(4070), + [anon_sym_restrict] = ACTIONS(4070), + [anon_sym___restrict__] = ACTIONS(4070), + [anon_sym__Atomic] = ACTIONS(4070), + [anon_sym__Noreturn] = ACTIONS(4070), + [anon_sym__Nonnull] = ACTIONS(4070), + [anon_sym_nullable] = ACTIONS(4070), + [anon_sym__Complex] = ACTIONS(4070), + [anon_sym__Nullable] = ACTIONS(4070), + [anon_sym__Nullable_result] = ACTIONS(4070), + [anon_sym__Null_unspecified] = ACTIONS(4070), + [anon_sym___autoreleasing] = ACTIONS(4070), + [anon_sym___block] = ACTIONS(4070), + [anon_sym___bridge] = ACTIONS(4070), + [anon_sym___bridge_retained] = ACTIONS(4070), + [anon_sym___bridge_transfer] = ACTIONS(4070), + [anon_sym___complex] = ACTIONS(4070), + [anon_sym___const] = ACTIONS(4070), + [anon_sym___imag] = ACTIONS(4070), + [anon_sym___kindof] = ACTIONS(4070), + [anon_sym___nonnull] = ACTIONS(4070), + [anon_sym___nullable] = ACTIONS(4070), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4070), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4070), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4070), + [anon_sym___real] = ACTIONS(4070), + [anon_sym___strong] = ACTIONS(4070), + [anon_sym___unsafe_unretained] = ACTIONS(4070), + [anon_sym___unused] = ACTIONS(4070), + [anon_sym___weak] = ACTIONS(4070), + [anon_sym_alignas] = ACTIONS(4070), + [anon_sym__Alignas] = ACTIONS(4070), + [sym_primitive_type] = ACTIONS(4070), + [anon_sym_enum] = ACTIONS(4070), + [anon_sym_struct] = ACTIONS(4070), + [anon_sym_union] = ACTIONS(4070), + [anon_sym_QMARK] = ACTIONS(4072), + [anon_sym_DASH_DASH] = ACTIONS(4072), + [anon_sym_PLUS_PLUS] = ACTIONS(4072), + [anon_sym_DOT] = ACTIONS(4070), + [anon_sym_DASH_GT] = ACTIONS(4072), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4070), + [anon_sym___typeof] = ACTIONS(4070), + [anon_sym_typeof] = ACTIONS(4070), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4070), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4070), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4070), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4070), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4070), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4070), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4070), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4070), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4070), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4070), + [anon_sym_NS_AVAILABLE] = ACTIONS(4070), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4070), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4070), + [anon_sym_API_AVAILABLE] = ACTIONS(4070), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4070), + [anon_sym_API_DEPRECATED] = ACTIONS(4070), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4070), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4070), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4070), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4070), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4070), + [anon_sym___deprecated_msg] = ACTIONS(4070), + [anon_sym___deprecated_enum_msg] = ACTIONS(4070), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4070), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4070), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4070), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4070), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4070), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4070), + [anon_sym_BOOL] = ACTIONS(4070), + [anon_sym_IMP] = ACTIONS(4070), + [anon_sym_SEL] = ACTIONS(4070), + [anon_sym_Class] = ACTIONS(4070), + [anon_sym_id] = ACTIONS(4070), + }, + [1829] = { + [sym_declaration] = STATE(1881), + [sym__declaration_modifiers] = STATE(1945), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1945), + [sym_attribute_declaration] = STATE(1945), + [sym_ms_declspec_modifier] = STATE(1945), + [sym_compound_statement] = STATE(2347), + [sym_storage_class_specifier] = STATE(1945), + [sym_type_qualifier] = STATE(1945), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1945), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1881), + [aux_sym__declaration_specifiers_repeat1] = STATE(1945), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [aux_sym_method_definition_repeat2] = STATE(1809), + [sym_identifier] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1830] = { + [sym_string_literal] = STATE(1924), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(3997), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(3995), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(3995), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(3995), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym___extension__] = ACTIONS(3997), + [anon_sym_extern] = ACTIONS(3997), + [anon_sym___attribute__] = ACTIONS(3997), + [anon_sym___attribute] = ACTIONS(3995), + [anon_sym_noreturn] = ACTIONS(3997), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym___declspec] = ACTIONS(3997), + [anon_sym_static] = ACTIONS(3997), + [anon_sym_EQ] = ACTIONS(4862), + [anon_sym_auto] = ACTIONS(3997), + [anon_sym_register] = ACTIONS(3997), + [anon_sym_inline] = ACTIONS(3997), + [anon_sym___inline] = ACTIONS(3995), + [anon_sym___inline__] = ACTIONS(3997), + [anon_sym___forceinline] = ACTIONS(3997), + [anon_sym_thread_local] = ACTIONS(3997), + [anon_sym___thread] = ACTIONS(3997), + [anon_sym_CG_EXTERN] = ACTIONS(3997), + [anon_sym_CG_INLINE] = ACTIONS(3997), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3997), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3997), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3997), + [anon_sym_IBOutlet] = ACTIONS(3997), + [anon_sym_IBInspectable] = ACTIONS(3997), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3997), + [anon_sym_NS_INLINE] = ACTIONS(3997), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3997), + [anon_sym_OBJC_EXPORT] = ACTIONS(3997), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3997), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3997), + [anon_sym_const] = ACTIONS(3995), + [anon_sym_constexpr] = ACTIONS(3997), + [anon_sym_volatile] = ACTIONS(3997), + [anon_sym_restrict] = ACTIONS(3997), + [anon_sym___restrict__] = ACTIONS(3997), + [anon_sym__Atomic] = ACTIONS(3997), + [anon_sym__Noreturn] = ACTIONS(3997), + [anon_sym__Nonnull] = ACTIONS(3997), + [anon_sym_nullable] = ACTIONS(3997), + [anon_sym__Complex] = ACTIONS(3997), + [anon_sym__Nullable] = ACTIONS(3995), + [anon_sym__Nullable_result] = ACTIONS(3997), + [anon_sym__Null_unspecified] = ACTIONS(3997), + [anon_sym___autoreleasing] = ACTIONS(3997), + [anon_sym___block] = ACTIONS(3997), + [anon_sym___bridge] = ACTIONS(3995), + [anon_sym___bridge_retained] = ACTIONS(3997), + [anon_sym___bridge_transfer] = ACTIONS(3997), + [anon_sym___complex] = ACTIONS(3997), + [anon_sym___const] = ACTIONS(3997), + [anon_sym___imag] = ACTIONS(3997), + [anon_sym___kindof] = ACTIONS(3997), + [anon_sym___nonnull] = ACTIONS(3997), + [anon_sym___nullable] = ACTIONS(3997), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3997), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3997), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3997), + [anon_sym___real] = ACTIONS(3997), + [anon_sym___strong] = ACTIONS(3997), + [anon_sym___unsafe_unretained] = ACTIONS(3997), + [anon_sym___unused] = ACTIONS(3997), + [anon_sym___weak] = ACTIONS(3997), + [anon_sym_alignas] = ACTIONS(3997), + [anon_sym__Alignas] = ACTIONS(3997), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4864), + [anon_sym_SLASH_EQ] = ACTIONS(4864), + [anon_sym_PERCENT_EQ] = ACTIONS(4864), + [anon_sym_PLUS_EQ] = ACTIONS(4864), + [anon_sym_DASH_EQ] = ACTIONS(4864), + [anon_sym_LT_LT_EQ] = ACTIONS(4864), + [anon_sym_GT_GT_EQ] = ACTIONS(4864), + [anon_sym_AMP_EQ] = ACTIONS(4864), + [anon_sym_CARET_EQ] = ACTIONS(4864), + [anon_sym_PIPE_EQ] = ACTIONS(4864), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3997), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3997), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3997), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3997), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3997), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3997), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3997), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3997), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3997), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3997), + [anon_sym_NS_AVAILABLE] = ACTIONS(3995), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3997), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3997), + [anon_sym_API_AVAILABLE] = ACTIONS(3997), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3997), + [anon_sym_API_DEPRECATED] = ACTIONS(3997), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3997), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3997), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3997), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3997), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3997), + [anon_sym___deprecated_msg] = ACTIONS(3997), + [anon_sym___deprecated_enum_msg] = ACTIONS(3997), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3997), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3997), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3997), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3997), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3997), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3997), + }, + [1831] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4592), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(6312), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_variadic_parameter] = STATE(5545), + [sym_parameter_declaration] = STATE(5545), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4866), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1832] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4592), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(6423), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_variadic_parameter] = STATE(5365), + [sym_parameter_declaration] = STATE(5365), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4164), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1833] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4592), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(6312), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_variadic_parameter] = STATE(5259), + [sym_parameter_declaration] = STATE(5545), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(4868), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4870), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1834] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4592), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(6788), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_variadic_parameter] = STATE(5476), + [sym_parameter_declaration] = STATE(5476), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4872), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1835] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4592), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(6423), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_variadic_parameter] = STATE(5289), + [sym_parameter_declaration] = STATE(5365), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(4868), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4874), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1836] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1982), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1982), + [sym_attribute_declaration] = STATE(1982), + [sym_ms_declspec_modifier] = STATE(1982), + [sym_compound_statement] = STATE(2176), + [sym_storage_class_specifier] = STATE(1982), + [sym_type_qualifier] = STATE(1982), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1982), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1982), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4723), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1837] = { + [sym_declaration] = STATE(1873), + [sym__declaration_modifiers] = STATE(1959), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1959), + [sym_attribute_declaration] = STATE(1959), + [sym_ms_declspec_modifier] = STATE(1959), + [sym_compound_statement] = STATE(2351), + [sym_storage_class_specifier] = STATE(1959), + [sym_type_qualifier] = STATE(1959), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1959), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1873), + [aux_sym__declaration_specifiers_repeat1] = STATE(1959), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1838] = { + [sym_declaration] = STATE(1842), + [sym__declaration_modifiers] = STATE(1982), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1982), + [sym_attribute_declaration] = STATE(1982), + [sym_ms_declspec_modifier] = STATE(1982), + [sym_compound_statement] = STATE(2176), + [sym_storage_class_specifier] = STATE(1982), + [sym_type_qualifier] = STATE(1982), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1982), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1842), + [aux_sym__declaration_specifiers_repeat1] = STATE(1982), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4723), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1839] = { + [sym_declaration] = STATE(1861), + [sym__declaration_modifiers] = STATE(1979), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1979), + [sym_attribute_declaration] = STATE(1979), + [sym_ms_declspec_modifier] = STATE(1979), + [sym_compound_statement] = STATE(2189), + [sym_storage_class_specifier] = STATE(1979), + [sym_type_qualifier] = STATE(1979), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1979), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1861), + [aux_sym__declaration_specifiers_repeat1] = STATE(1979), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4707), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1840] = { + [sym_declaration] = STATE(1860), + [sym__declaration_modifiers] = STATE(1976), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1976), + [sym_attribute_declaration] = STATE(1976), + [sym_ms_declspec_modifier] = STATE(1976), + [sym_compound_statement] = STATE(2146), + [sym_storage_class_specifier] = STATE(1976), + [sym_type_qualifier] = STATE(1976), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1976), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1860), + [aux_sym__declaration_specifiers_repeat1] = STATE(1976), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4689), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1841] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1994), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1994), + [sym_attribute_declaration] = STATE(1994), + [sym_ms_declspec_modifier] = STATE(1994), + [sym_compound_statement] = STATE(2332), + [sym_storage_class_specifier] = STATE(1994), + [sym_type_qualifier] = STATE(1994), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1994), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1994), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4719), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1842] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1984), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1984), + [sym_attribute_declaration] = STATE(1984), + [sym_ms_declspec_modifier] = STATE(1984), + [sym_compound_statement] = STATE(2207), + [sym_storage_class_specifier] = STATE(1984), + [sym_type_qualifier] = STATE(1984), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1984), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1984), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4727), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1843] = { + [sym_declaration] = STATE(1853), + [sym__declaration_modifiers] = STATE(1997), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1997), + [sym_attribute_declaration] = STATE(1997), + [sym_ms_declspec_modifier] = STATE(1997), + [sym_compound_statement] = STATE(2339), + [sym_storage_class_specifier] = STATE(1997), + [sym_type_qualifier] = STATE(1997), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1997), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1853), + [aux_sym__declaration_specifiers_repeat1] = STATE(1997), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4739), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1844] = { + [sym_declaration] = STATE(1847), + [sym__declaration_modifiers] = STATE(1984), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1984), + [sym_attribute_declaration] = STATE(1984), + [sym_ms_declspec_modifier] = STATE(1984), + [sym_compound_statement] = STATE(2207), + [sym_storage_class_specifier] = STATE(1984), + [sym_type_qualifier] = STATE(1984), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1984), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1847), + [aux_sym__declaration_specifiers_repeat1] = STATE(1984), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4727), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1845] = { + [sym_declaration] = STATE(1855), + [sym__declaration_modifiers] = STATE(1956), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1956), + [sym_attribute_declaration] = STATE(1956), + [sym_ms_declspec_modifier] = STATE(1956), + [sym_compound_statement] = STATE(2341), + [sym_storage_class_specifier] = STATE(1956), + [sym_type_qualifier] = STATE(1956), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1956), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1855), + [aux_sym__declaration_specifiers_repeat1] = STATE(1956), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4655), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1846] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1990), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1990), + [sym_attribute_declaration] = STATE(1990), + [sym_ms_declspec_modifier] = STATE(1990), + [sym_compound_statement] = STATE(2346), + [sym_storage_class_specifier] = STATE(1990), + [sym_type_qualifier] = STATE(1990), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1990), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1990), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4703), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1847] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1986), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1986), + [sym_attribute_declaration] = STATE(1986), + [sym_ms_declspec_modifier] = STATE(1986), + [sym_compound_statement] = STATE(2160), + [sym_storage_class_specifier] = STATE(1986), + [sym_type_qualifier] = STATE(1986), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1986), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1986), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4854), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1848] = { + [sym_declaration] = STATE(1866), + [sym__declaration_modifiers] = STATE(1960), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1960), + [sym_attribute_declaration] = STATE(1960), + [sym_ms_declspec_modifier] = STATE(1960), + [sym_compound_statement] = STATE(2257), + [sym_storage_class_specifier] = STATE(1960), + [sym_type_qualifier] = STATE(1960), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1960), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1866), + [aux_sym__declaration_specifiers_repeat1] = STATE(1960), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4685), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1849] = { + [sym_declaration] = STATE(1878), + [sym__declaration_modifiers] = STATE(1994), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1994), + [sym_attribute_declaration] = STATE(1994), + [sym_ms_declspec_modifier] = STATE(1994), + [sym_compound_statement] = STATE(2332), + [sym_storage_class_specifier] = STATE(1994), + [sym_type_qualifier] = STATE(1994), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1994), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1878), + [aux_sym__declaration_specifiers_repeat1] = STATE(1994), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4719), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1850] = { + [sym_declaration] = STATE(1852), + [sym__declaration_modifiers] = STATE(1986), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1986), + [sym_attribute_declaration] = STATE(1986), + [sym_ms_declspec_modifier] = STATE(1986), + [sym_compound_statement] = STATE(2160), + [sym_storage_class_specifier] = STATE(1986), + [sym_type_qualifier] = STATE(1986), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1986), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1852), + [aux_sym__declaration_specifiers_repeat1] = STATE(1986), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4854), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1851] = { + [sym_declaration] = STATE(1863), + [sym__declaration_modifiers] = STATE(1958), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1958), + [sym_attribute_declaration] = STATE(1958), + [sym_ms_declspec_modifier] = STATE(1958), + [sym_compound_statement] = STATE(2348), + [sym_storage_class_specifier] = STATE(1958), + [sym_type_qualifier] = STATE(1958), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1958), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1863), + [aux_sym__declaration_specifiers_repeat1] = STATE(1958), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4735), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1852] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1950), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1950), + [sym_attribute_declaration] = STATE(1950), + [sym_ms_declspec_modifier] = STATE(1950), + [sym_compound_statement] = STATE(2196), + [sym_storage_class_specifier] = STATE(1950), + [sym_type_qualifier] = STATE(1950), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1950), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1950), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1853] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1942), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1942), + [sym_attribute_declaration] = STATE(1942), + [sym_ms_declspec_modifier] = STATE(1942), + [sym_compound_statement] = STATE(2345), + [sym_storage_class_specifier] = STATE(1942), + [sym_type_qualifier] = STATE(1942), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1942), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1942), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1854] = { + [sym_declaration] = STATE(1856), + [sym__declaration_modifiers] = STATE(1950), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1950), + [sym_attribute_declaration] = STATE(1950), + [sym_ms_declspec_modifier] = STATE(1950), + [sym_compound_statement] = STATE(2196), + [sym_storage_class_specifier] = STATE(1950), + [sym_type_qualifier] = STATE(1950), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1950), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1856), + [aux_sym__declaration_specifiers_repeat1] = STATE(1950), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1855] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1960), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1960), + [sym_attribute_declaration] = STATE(1960), + [sym_ms_declspec_modifier] = STATE(1960), + [sym_compound_statement] = STATE(2257), + [sym_storage_class_specifier] = STATE(1960), + [sym_type_qualifier] = STATE(1960), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1960), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1960), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4685), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1856] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1952), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1952), + [sym_attribute_declaration] = STATE(1952), + [sym_ms_declspec_modifier] = STATE(1952), + [sym_compound_statement] = STATE(2200), + [sym_storage_class_specifier] = STATE(1952), + [sym_type_qualifier] = STATE(1952), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1952), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1952), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4858), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1857] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1971), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1971), + [sym_attribute_declaration] = STATE(1971), + [sym_ms_declspec_modifier] = STATE(1971), + [sym_compound_statement] = STATE(2268), + [sym_storage_class_specifier] = STATE(1971), + [sym_type_qualifier] = STATE(1971), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1971), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1971), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1858] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1953), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1953), + [sym_attribute_declaration] = STATE(1953), + [sym_ms_declspec_modifier] = STATE(1953), + [sym_compound_statement] = STATE(2204), + [sym_storage_class_specifier] = STATE(1953), + [sym_type_qualifier] = STATE(1953), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1953), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1953), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1859] = { + [sym_declaration] = STATE(1869), + [sym__declaration_modifiers] = STATE(1942), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1942), + [sym_attribute_declaration] = STATE(1942), + [sym_ms_declspec_modifier] = STATE(1942), + [sym_compound_statement] = STATE(2345), + [sym_storage_class_specifier] = STATE(1942), + [sym_type_qualifier] = STATE(1942), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1942), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1869), + [aux_sym__declaration_specifiers_repeat1] = STATE(1942), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1860] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1979), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1979), + [sym_attribute_declaration] = STATE(1979), + [sym_ms_declspec_modifier] = STATE(1979), + [sym_compound_statement] = STATE(2189), + [sym_storage_class_specifier] = STATE(1979), + [sym_type_qualifier] = STATE(1979), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1979), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1979), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4707), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1861] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1989), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1989), + [sym_attribute_declaration] = STATE(1989), + [sym_ms_declspec_modifier] = STATE(1989), + [sym_compound_statement] = STATE(2158), + [sym_storage_class_specifier] = STATE(1989), + [sym_type_qualifier] = STATE(1989), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1989), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1989), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4715), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1862] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1947), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1947), + [sym_attribute_declaration] = STATE(1947), + [sym_ms_declspec_modifier] = STATE(1947), + [sym_compound_statement] = STATE(2352), + [sym_storage_class_specifier] = STATE(1947), + [sym_type_qualifier] = STATE(1947), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1947), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1947), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4878), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1863] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1959), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1959), + [sym_attribute_declaration] = STATE(1959), + [sym_ms_declspec_modifier] = STATE(1959), + [sym_compound_statement] = STATE(2351), + [sym_storage_class_specifier] = STATE(1959), + [sym_type_qualifier] = STATE(1959), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1959), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1959), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1864] = { + [sym_declaration] = STATE(1836), + [sym__declaration_modifiers] = STATE(1989), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1989), + [sym_attribute_declaration] = STATE(1989), + [sym_ms_declspec_modifier] = STATE(1989), + [sym_compound_statement] = STATE(2158), + [sym_storage_class_specifier] = STATE(1989), + [sym_type_qualifier] = STATE(1989), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1989), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1836), + [aux_sym__declaration_specifiers_repeat1] = STATE(1989), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4715), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1865] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1976), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1976), + [sym_attribute_declaration] = STATE(1976), + [sym_ms_declspec_modifier] = STATE(1976), + [sym_compound_statement] = STATE(2146), + [sym_storage_class_specifier] = STATE(1976), + [sym_type_qualifier] = STATE(1976), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1976), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1976), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4689), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1866] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1938), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1938), + [sym_attribute_declaration] = STATE(1938), + [sym_ms_declspec_modifier] = STATE(1938), + [sym_compound_statement] = STATE(2261), + [sym_storage_class_specifier] = STATE(1938), + [sym_type_qualifier] = STATE(1938), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1938), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1938), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4860), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1867] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1958), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1958), + [sym_attribute_declaration] = STATE(1958), + [sym_ms_declspec_modifier] = STATE(1958), + [sym_compound_statement] = STATE(2348), + [sym_storage_class_specifier] = STATE(1958), + [sym_type_qualifier] = STATE(1958), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1958), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1958), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4735), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1868] = { + [sym_declaration] = STATE(1884), + [sym__declaration_modifiers] = STATE(1990), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1990), + [sym_attribute_declaration] = STATE(1990), + [sym_ms_declspec_modifier] = STATE(1990), + [sym_compound_statement] = STATE(2346), + [sym_storage_class_specifier] = STATE(1990), + [sym_type_qualifier] = STATE(1990), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1990), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1884), + [aux_sym__declaration_specifiers_repeat1] = STATE(1990), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4703), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1869] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1945), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1945), + [sym_attribute_declaration] = STATE(1945), + [sym_ms_declspec_modifier] = STATE(1945), + [sym_compound_statement] = STATE(2347), + [sym_storage_class_specifier] = STATE(1945), + [sym_type_qualifier] = STATE(1945), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1945), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1945), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1870] = { + [sym_declaration] = STATE(1872), + [sym__declaration_modifiers] = STATE(1938), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1938), + [sym_attribute_declaration] = STATE(1938), + [sym_ms_declspec_modifier] = STATE(1938), + [sym_compound_statement] = STATE(2261), + [sym_storage_class_specifier] = STATE(1938), + [sym_type_qualifier] = STATE(1938), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1938), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1872), + [aux_sym__declaration_specifiers_repeat1] = STATE(1938), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4860), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1871] = { + [sym_declaration] = STATE(1885), + [sym__declaration_modifiers] = STATE(1951), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1951), + [sym_attribute_declaration] = STATE(1951), + [sym_ms_declspec_modifier] = STATE(1951), + [sym_compound_statement] = STATE(2321), + [sym_storage_class_specifier] = STATE(1951), + [sym_type_qualifier] = STATE(1951), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1951), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1885), + [aux_sym__declaration_specifiers_repeat1] = STATE(1951), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4673), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1872] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1970), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1970), + [sym_attribute_declaration] = STATE(1970), + [sym_ms_declspec_modifier] = STATE(1970), + [sym_compound_statement] = STATE(2266), + [sym_storage_class_specifier] = STATE(1970), + [sym_type_qualifier] = STATE(1970), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1970), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1970), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4850), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1873] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1951), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1951), + [sym_attribute_declaration] = STATE(1951), + [sym_ms_declspec_modifier] = STATE(1951), + [sym_compound_statement] = STATE(2321), + [sym_storage_class_specifier] = STATE(1951), + [sym_type_qualifier] = STATE(1951), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1951), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1951), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4673), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1874] = { + [sym_declaration] = STATE(1881), + [sym__declaration_modifiers] = STATE(1945), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1945), + [sym_attribute_declaration] = STATE(1945), + [sym_ms_declspec_modifier] = STATE(1945), + [sym_compound_statement] = STATE(2347), + [sym_storage_class_specifier] = STATE(1945), + [sym_type_qualifier] = STATE(1945), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1945), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1881), + [aux_sym__declaration_specifiers_repeat1] = STATE(1945), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1875] = { + [sym_declaration] = STATE(1846), + [sym__declaration_modifiers] = STATE(1988), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1988), + [sym_attribute_declaration] = STATE(1988), + [sym_ms_declspec_modifier] = STATE(1988), + [sym_compound_statement] = STATE(2272), + [sym_storage_class_specifier] = STATE(1988), + [sym_type_qualifier] = STATE(1988), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1988), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1846), + [aux_sym__declaration_specifiers_repeat1] = STATE(1988), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4693), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1876] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1954), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1954), + [sym_attribute_declaration] = STATE(1954), + [sym_ms_declspec_modifier] = STATE(1954), + [sym_compound_statement] = STATE(2265), + [sym_storage_class_specifier] = STATE(1954), + [sym_type_qualifier] = STATE(1954), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1954), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4731), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1877] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1973), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1973), + [sym_attribute_declaration] = STATE(1973), + [sym_ms_declspec_modifier] = STATE(1973), + [sym_compound_statement] = STATE(2271), + [sym_storage_class_specifier] = STATE(1973), + [sym_type_qualifier] = STATE(1973), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1973), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1973), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4880), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1878] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1997), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1997), + [sym_attribute_declaration] = STATE(1997), + [sym_ms_declspec_modifier] = STATE(1997), + [sym_compound_statement] = STATE(2339), + [sym_storage_class_specifier] = STATE(1997), + [sym_type_qualifier] = STATE(1997), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1997), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1997), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4739), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1879] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1988), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1988), + [sym_attribute_declaration] = STATE(1988), + [sym_ms_declspec_modifier] = STATE(1988), + [sym_compound_statement] = STATE(2272), + [sym_storage_class_specifier] = STATE(1988), + [sym_type_qualifier] = STATE(1988), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1988), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1988), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4693), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1880] = { + [sym_declaration] = STATE(1857), + [sym__declaration_modifiers] = STATE(1970), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1970), + [sym_attribute_declaration] = STATE(1970), + [sym_ms_declspec_modifier] = STATE(1970), + [sym_compound_statement] = STATE(2266), + [sym_storage_class_specifier] = STATE(1970), + [sym_type_qualifier] = STATE(1970), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1970), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1857), + [aux_sym__declaration_specifiers_repeat1] = STATE(1970), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4850), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1881] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1946), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1946), + [sym_attribute_declaration] = STATE(1946), + [sym_ms_declspec_modifier] = STATE(1946), + [sym_compound_statement] = STATE(2252), + [sym_storage_class_specifier] = STATE(1946), + [sym_type_qualifier] = STATE(1946), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1946), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1946), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1882] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1985), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1985), + [sym_attribute_declaration] = STATE(1985), + [sym_ms_declspec_modifier] = STATE(1985), + [sym_compound_statement] = STATE(2315), + [sym_storage_class_specifier] = STATE(1985), + [sym_type_qualifier] = STATE(1985), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1985), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1985), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4665), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1883] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1972), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1972), + [sym_attribute_declaration] = STATE(1972), + [sym_ms_declspec_modifier] = STATE(1972), + [sym_compound_statement] = STATE(2113), + [sym_storage_class_specifier] = STATE(1972), + [sym_type_qualifier] = STATE(1972), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1972), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1972), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4677), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1884] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1992), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1992), + [sym_attribute_declaration] = STATE(1992), + [sym_ms_declspec_modifier] = STATE(1992), + [sym_compound_statement] = STATE(2326), + [sym_storage_class_specifier] = STATE(1992), + [sym_type_qualifier] = STATE(1992), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1992), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1992), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4711), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1885] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(1956), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1956), + [sym_attribute_declaration] = STATE(1956), + [sym_ms_declspec_modifier] = STATE(1956), + [sym_compound_statement] = STATE(2341), + [sym_storage_class_specifier] = STATE(1956), + [sym_type_qualifier] = STATE(1956), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1956), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(1956), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4655), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1886] = { + [sym_declaration] = STATE(1841), + [sym__declaration_modifiers] = STATE(1992), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(1992), + [sym_attribute_declaration] = STATE(1992), + [sym_ms_declspec_modifier] = STATE(1992), + [sym_compound_statement] = STATE(2326), + [sym_storage_class_specifier] = STATE(1992), + [sym_type_qualifier] = STATE(1992), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(1992), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1841), + [aux_sym__declaration_specifiers_repeat1] = STATE(1992), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4711), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1887] = { + [sym_identifier] = ACTIONS(4882), + [aux_sym_preproc_def_token1] = ACTIONS(4882), + [anon_sym_COMMA] = ACTIONS(4884), + [anon_sym_RPAREN] = ACTIONS(4884), + [aux_sym_preproc_if_token1] = ACTIONS(4882), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4882), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4882), + [sym_preproc_directive] = ACTIONS(4882), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_LT] = ACTIONS(4884), + [anon_sym_SEMI] = ACTIONS(4884), + [anon_sym___extension__] = ACTIONS(4882), + [anon_sym_typedef] = ACTIONS(4882), + [anon_sym_extern] = ACTIONS(4882), + [anon_sym___attribute__] = ACTIONS(4882), + [anon_sym___attribute] = ACTIONS(4882), + [anon_sym_noreturn] = ACTIONS(4882), + [anon_sym_LBRACK] = ACTIONS(4884), + [anon_sym___declspec] = ACTIONS(4882), + [anon_sym___cdecl] = ACTIONS(4882), + [anon_sym___clrcall] = ACTIONS(4882), + [anon_sym___stdcall] = ACTIONS(4882), + [anon_sym___fastcall] = ACTIONS(4882), + [anon_sym___thiscall] = ACTIONS(4882), + [anon_sym___vectorcall] = ACTIONS(4882), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_signed] = ACTIONS(4882), + [anon_sym_unsigned] = ACTIONS(4882), + [anon_sym_long] = ACTIONS(4882), + [anon_sym_short] = ACTIONS(4882), + [anon_sym_static] = ACTIONS(4882), + [anon_sym_auto] = ACTIONS(4882), + [anon_sym_register] = ACTIONS(4882), + [anon_sym_inline] = ACTIONS(4882), + [anon_sym___inline] = ACTIONS(4882), + [anon_sym___inline__] = ACTIONS(4882), + [anon_sym___forceinline] = ACTIONS(4882), + [anon_sym_thread_local] = ACTIONS(4882), + [anon_sym___thread] = ACTIONS(4882), + [anon_sym_CG_EXTERN] = ACTIONS(4882), + [anon_sym_CG_INLINE] = ACTIONS(4882), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4882), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4882), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4882), + [anon_sym_IBOutlet] = ACTIONS(4882), + [anon_sym_IBInspectable] = ACTIONS(4882), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4882), + [anon_sym_NS_INLINE] = ACTIONS(4882), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4882), + [anon_sym_OBJC_EXPORT] = ACTIONS(4882), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4882), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4882), + [anon_sym_const] = ACTIONS(4882), + [anon_sym_constexpr] = ACTIONS(4882), + [anon_sym_volatile] = ACTIONS(4882), + [anon_sym_restrict] = ACTIONS(4882), + [anon_sym___restrict__] = ACTIONS(4882), + [anon_sym__Atomic] = ACTIONS(4882), + [anon_sym__Noreturn] = ACTIONS(4882), + [anon_sym__Nonnull] = ACTIONS(4882), + [anon_sym_nullable] = ACTIONS(4882), + [anon_sym__Complex] = ACTIONS(4882), + [anon_sym__Nullable] = ACTIONS(4882), + [anon_sym__Nullable_result] = ACTIONS(4882), + [anon_sym__Null_unspecified] = ACTIONS(4882), + [anon_sym___autoreleasing] = ACTIONS(4882), + [anon_sym___block] = ACTIONS(4882), + [anon_sym___bridge] = ACTIONS(4882), + [anon_sym___bridge_retained] = ACTIONS(4882), + [anon_sym___bridge_transfer] = ACTIONS(4882), + [anon_sym___complex] = ACTIONS(4882), + [anon_sym___const] = ACTIONS(4882), + [anon_sym___imag] = ACTIONS(4882), + [anon_sym___kindof] = ACTIONS(4882), + [anon_sym___nonnull] = ACTIONS(4882), + [anon_sym___nullable] = ACTIONS(4882), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4882), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4882), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4882), + [anon_sym___real] = ACTIONS(4882), + [anon_sym___strong] = ACTIONS(4882), + [anon_sym___unsafe_unretained] = ACTIONS(4882), + [anon_sym___unused] = ACTIONS(4882), + [anon_sym___weak] = ACTIONS(4882), + [anon_sym_alignas] = ACTIONS(4882), + [anon_sym__Alignas] = ACTIONS(4882), + [sym_primitive_type] = ACTIONS(4882), + [anon_sym_enum] = ACTIONS(4882), + [anon_sym_COLON] = ACTIONS(4884), + [anon_sym_struct] = ACTIONS(4882), + [anon_sym_union] = ACTIONS(4882), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4882), + [anon_sym___typeof] = ACTIONS(4882), + [anon_sym_typeof] = ACTIONS(4882), + [aux_sym_preproc_undef_token1] = ACTIONS(4882), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4882), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4882), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4882), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4882), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4882), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4882), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4882), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4882), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4882), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4882), + [anon_sym_NS_AVAILABLE] = ACTIONS(4882), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4882), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4882), + [anon_sym_API_AVAILABLE] = ACTIONS(4882), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4882), + [anon_sym_API_DEPRECATED] = ACTIONS(4882), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4882), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4882), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4882), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4882), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4882), + [anon_sym___deprecated_msg] = ACTIONS(4882), + [anon_sym___deprecated_enum_msg] = ACTIONS(4882), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4882), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4882), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4882), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4882), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4882), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4882), + [anon_sym_ATend] = ACTIONS(4884), + [anon_sym_ATsynthesize] = ACTIONS(4884), + [anon_sym_ATdynamic] = ACTIONS(4884), + [anon_sym_ATproperty] = ACTIONS(4884), + [anon_sym_BOOL] = ACTIONS(4882), + [anon_sym_IMP] = ACTIONS(4882), + [anon_sym_SEL] = ACTIONS(4882), + [anon_sym_Class] = ACTIONS(4882), + [anon_sym_id] = ACTIONS(4882), + }, + [1888] = { + [sym_declaration] = STATE(1889), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(867), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1889), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1889] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(899), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1890] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(1008), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1891] = { + [sym_identifier] = ACTIONS(4886), + [aux_sym_preproc_def_token1] = ACTIONS(4886), + [anon_sym_COMMA] = ACTIONS(4888), + [anon_sym_RPAREN] = ACTIONS(4888), + [aux_sym_preproc_if_token1] = ACTIONS(4886), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4886), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4886), + [sym_preproc_directive] = ACTIONS(4886), + [anon_sym_LPAREN2] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4888), + [anon_sym_SEMI] = ACTIONS(4888), + [anon_sym___extension__] = ACTIONS(4886), + [anon_sym_typedef] = ACTIONS(4886), + [anon_sym_extern] = ACTIONS(4886), + [anon_sym___attribute__] = ACTIONS(4886), + [anon_sym___attribute] = ACTIONS(4886), + [anon_sym_noreturn] = ACTIONS(4886), + [anon_sym_LBRACK] = ACTIONS(4888), + [anon_sym___declspec] = ACTIONS(4886), + [anon_sym___cdecl] = ACTIONS(4886), + [anon_sym___clrcall] = ACTIONS(4886), + [anon_sym___stdcall] = ACTIONS(4886), + [anon_sym___fastcall] = ACTIONS(4886), + [anon_sym___thiscall] = ACTIONS(4886), + [anon_sym___vectorcall] = ACTIONS(4886), + [anon_sym_LBRACE] = ACTIONS(4888), + [anon_sym_signed] = ACTIONS(4886), + [anon_sym_unsigned] = ACTIONS(4886), + [anon_sym_long] = ACTIONS(4886), + [anon_sym_short] = ACTIONS(4886), + [anon_sym_static] = ACTIONS(4886), + [anon_sym_auto] = ACTIONS(4886), + [anon_sym_register] = ACTIONS(4886), + [anon_sym_inline] = ACTIONS(4886), + [anon_sym___inline] = ACTIONS(4886), + [anon_sym___inline__] = ACTIONS(4886), + [anon_sym___forceinline] = ACTIONS(4886), + [anon_sym_thread_local] = ACTIONS(4886), + [anon_sym___thread] = ACTIONS(4886), + [anon_sym_CG_EXTERN] = ACTIONS(4886), + [anon_sym_CG_INLINE] = ACTIONS(4886), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4886), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4886), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4886), + [anon_sym_IBOutlet] = ACTIONS(4886), + [anon_sym_IBInspectable] = ACTIONS(4886), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4886), + [anon_sym_NS_INLINE] = ACTIONS(4886), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4886), + [anon_sym_OBJC_EXPORT] = ACTIONS(4886), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4886), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4886), + [anon_sym_const] = ACTIONS(4886), + [anon_sym_constexpr] = ACTIONS(4886), + [anon_sym_volatile] = ACTIONS(4886), + [anon_sym_restrict] = ACTIONS(4886), + [anon_sym___restrict__] = ACTIONS(4886), + [anon_sym__Atomic] = ACTIONS(4886), + [anon_sym__Noreturn] = ACTIONS(4886), + [anon_sym__Nonnull] = ACTIONS(4886), + [anon_sym_nullable] = ACTIONS(4886), + [anon_sym__Complex] = ACTIONS(4886), + [anon_sym__Nullable] = ACTIONS(4886), + [anon_sym__Nullable_result] = ACTIONS(4886), + [anon_sym__Null_unspecified] = ACTIONS(4886), + [anon_sym___autoreleasing] = ACTIONS(4886), + [anon_sym___block] = ACTIONS(4886), + [anon_sym___bridge] = ACTIONS(4886), + [anon_sym___bridge_retained] = ACTIONS(4886), + [anon_sym___bridge_transfer] = ACTIONS(4886), + [anon_sym___complex] = ACTIONS(4886), + [anon_sym___const] = ACTIONS(4886), + [anon_sym___imag] = ACTIONS(4886), + [anon_sym___kindof] = ACTIONS(4886), + [anon_sym___nonnull] = ACTIONS(4886), + [anon_sym___nullable] = ACTIONS(4886), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4886), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4886), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4886), + [anon_sym___real] = ACTIONS(4886), + [anon_sym___strong] = ACTIONS(4886), + [anon_sym___unsafe_unretained] = ACTIONS(4886), + [anon_sym___unused] = ACTIONS(4886), + [anon_sym___weak] = ACTIONS(4886), + [anon_sym_alignas] = ACTIONS(4886), + [anon_sym__Alignas] = ACTIONS(4886), + [sym_primitive_type] = ACTIONS(4886), + [anon_sym_enum] = ACTIONS(4886), + [anon_sym_COLON] = ACTIONS(4888), + [anon_sym_struct] = ACTIONS(4886), + [anon_sym_union] = ACTIONS(4886), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4886), + [anon_sym___typeof] = ACTIONS(4886), + [anon_sym_typeof] = ACTIONS(4886), + [aux_sym_preproc_undef_token1] = ACTIONS(4886), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4886), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4886), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4886), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4886), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4886), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4886), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4886), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4886), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4886), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4886), + [anon_sym_NS_AVAILABLE] = ACTIONS(4886), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4886), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4886), + [anon_sym_API_AVAILABLE] = ACTIONS(4886), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4886), + [anon_sym_API_DEPRECATED] = ACTIONS(4886), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4886), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4886), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4886), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4886), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4886), + [anon_sym___deprecated_msg] = ACTIONS(4886), + [anon_sym___deprecated_enum_msg] = ACTIONS(4886), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4886), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4886), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4886), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4886), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4886), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4886), + [anon_sym_ATend] = ACTIONS(4888), + [anon_sym_ATsynthesize] = ACTIONS(4888), + [anon_sym_ATdynamic] = ACTIONS(4888), + [anon_sym_ATproperty] = ACTIONS(4888), + [anon_sym_BOOL] = ACTIONS(4886), + [anon_sym_IMP] = ACTIONS(4886), + [anon_sym_SEL] = ACTIONS(4886), + [anon_sym_Class] = ACTIONS(4886), + [anon_sym_id] = ACTIONS(4886), + }, + [1892] = { + [sym_identifier] = ACTIONS(4890), + [aux_sym_preproc_def_token1] = ACTIONS(4890), + [anon_sym_COMMA] = ACTIONS(4892), + [anon_sym_RPAREN] = ACTIONS(4892), + [aux_sym_preproc_if_token1] = ACTIONS(4890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4890), + [sym_preproc_directive] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4892), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_typedef] = ACTIONS(4890), + [anon_sym_extern] = ACTIONS(4890), + [anon_sym___attribute__] = ACTIONS(4890), + [anon_sym___attribute] = ACTIONS(4890), + [anon_sym_noreturn] = ACTIONS(4890), + [anon_sym_LBRACK] = ACTIONS(4892), + [anon_sym___declspec] = ACTIONS(4890), + [anon_sym___cdecl] = ACTIONS(4890), + [anon_sym___clrcall] = ACTIONS(4890), + [anon_sym___stdcall] = ACTIONS(4890), + [anon_sym___fastcall] = ACTIONS(4890), + [anon_sym___thiscall] = ACTIONS(4890), + [anon_sym___vectorcall] = ACTIONS(4890), + [anon_sym_LBRACE] = ACTIONS(4892), + [anon_sym_signed] = ACTIONS(4890), + [anon_sym_unsigned] = ACTIONS(4890), + [anon_sym_long] = ACTIONS(4890), + [anon_sym_short] = ACTIONS(4890), + [anon_sym_static] = ACTIONS(4890), + [anon_sym_auto] = ACTIONS(4890), + [anon_sym_register] = ACTIONS(4890), + [anon_sym_inline] = ACTIONS(4890), + [anon_sym___inline] = ACTIONS(4890), + [anon_sym___inline__] = ACTIONS(4890), + [anon_sym___forceinline] = ACTIONS(4890), + [anon_sym_thread_local] = ACTIONS(4890), + [anon_sym___thread] = ACTIONS(4890), + [anon_sym_CG_EXTERN] = ACTIONS(4890), + [anon_sym_CG_INLINE] = ACTIONS(4890), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4890), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4890), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4890), + [anon_sym_IBOutlet] = ACTIONS(4890), + [anon_sym_IBInspectable] = ACTIONS(4890), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4890), + [anon_sym_NS_INLINE] = ACTIONS(4890), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4890), + [anon_sym_OBJC_EXPORT] = ACTIONS(4890), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4890), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4890), + [anon_sym_const] = ACTIONS(4890), + [anon_sym_constexpr] = ACTIONS(4890), + [anon_sym_volatile] = ACTIONS(4890), + [anon_sym_restrict] = ACTIONS(4890), + [anon_sym___restrict__] = ACTIONS(4890), + [anon_sym__Atomic] = ACTIONS(4890), + [anon_sym__Noreturn] = ACTIONS(4890), + [anon_sym__Nonnull] = ACTIONS(4890), + [anon_sym_nullable] = ACTIONS(4890), + [anon_sym__Complex] = ACTIONS(4890), + [anon_sym__Nullable] = ACTIONS(4890), + [anon_sym__Nullable_result] = ACTIONS(4890), + [anon_sym__Null_unspecified] = ACTIONS(4890), + [anon_sym___autoreleasing] = ACTIONS(4890), + [anon_sym___block] = ACTIONS(4890), + [anon_sym___bridge] = ACTIONS(4890), + [anon_sym___bridge_retained] = ACTIONS(4890), + [anon_sym___bridge_transfer] = ACTIONS(4890), + [anon_sym___complex] = ACTIONS(4890), + [anon_sym___const] = ACTIONS(4890), + [anon_sym___imag] = ACTIONS(4890), + [anon_sym___kindof] = ACTIONS(4890), + [anon_sym___nonnull] = ACTIONS(4890), + [anon_sym___nullable] = ACTIONS(4890), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4890), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4890), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4890), + [anon_sym___real] = ACTIONS(4890), + [anon_sym___strong] = ACTIONS(4890), + [anon_sym___unsafe_unretained] = ACTIONS(4890), + [anon_sym___unused] = ACTIONS(4890), + [anon_sym___weak] = ACTIONS(4890), + [anon_sym_alignas] = ACTIONS(4890), + [anon_sym__Alignas] = ACTIONS(4890), + [sym_primitive_type] = ACTIONS(4890), + [anon_sym_enum] = ACTIONS(4890), + [anon_sym_COLON] = ACTIONS(4892), + [anon_sym_struct] = ACTIONS(4890), + [anon_sym_union] = ACTIONS(4890), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4890), + [anon_sym___typeof] = ACTIONS(4890), + [anon_sym_typeof] = ACTIONS(4890), + [aux_sym_preproc_undef_token1] = ACTIONS(4890), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4890), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4890), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4890), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4890), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4890), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4890), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4890), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4890), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4890), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4890), + [anon_sym_NS_AVAILABLE] = ACTIONS(4890), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4890), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4890), + [anon_sym_API_AVAILABLE] = ACTIONS(4890), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4890), + [anon_sym_API_DEPRECATED] = ACTIONS(4890), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4890), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4890), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4890), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4890), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4890), + [anon_sym___deprecated_msg] = ACTIONS(4890), + [anon_sym___deprecated_enum_msg] = ACTIONS(4890), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4890), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4890), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4890), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4890), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4890), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4890), + [anon_sym_ATend] = ACTIONS(4892), + [anon_sym_ATsynthesize] = ACTIONS(4892), + [anon_sym_ATdynamic] = ACTIONS(4892), + [anon_sym_ATproperty] = ACTIONS(4892), + [anon_sym_BOOL] = ACTIONS(4890), + [anon_sym_IMP] = ACTIONS(4890), + [anon_sym_SEL] = ACTIONS(4890), + [anon_sym_Class] = ACTIONS(4890), + [anon_sym_id] = ACTIONS(4890), + }, + [1893] = { + [sym_identifier] = ACTIONS(4894), + [aux_sym_preproc_def_token1] = ACTIONS(4894), + [anon_sym_COMMA] = ACTIONS(4896), + [anon_sym_RPAREN] = ACTIONS(4896), + [aux_sym_preproc_if_token1] = ACTIONS(4894), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4894), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4894), + [sym_preproc_directive] = ACTIONS(4894), + [anon_sym_LPAREN2] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4896), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_LT] = ACTIONS(4896), + [anon_sym_SEMI] = ACTIONS(4896), + [anon_sym___extension__] = ACTIONS(4894), + [anon_sym_typedef] = ACTIONS(4894), + [anon_sym_extern] = ACTIONS(4894), + [anon_sym___attribute__] = ACTIONS(4894), + [anon_sym___attribute] = ACTIONS(4894), + [anon_sym_noreturn] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4896), + [anon_sym___declspec] = ACTIONS(4894), + [anon_sym___cdecl] = ACTIONS(4894), + [anon_sym___clrcall] = ACTIONS(4894), + [anon_sym___stdcall] = ACTIONS(4894), + [anon_sym___fastcall] = ACTIONS(4894), + [anon_sym___thiscall] = ACTIONS(4894), + [anon_sym___vectorcall] = ACTIONS(4894), + [anon_sym_LBRACE] = ACTIONS(4896), + [anon_sym_signed] = ACTIONS(4894), + [anon_sym_unsigned] = ACTIONS(4894), + [anon_sym_long] = ACTIONS(4894), + [anon_sym_short] = ACTIONS(4894), + [anon_sym_static] = ACTIONS(4894), + [anon_sym_auto] = ACTIONS(4894), + [anon_sym_register] = ACTIONS(4894), + [anon_sym_inline] = ACTIONS(4894), + [anon_sym___inline] = ACTIONS(4894), + [anon_sym___inline__] = ACTIONS(4894), + [anon_sym___forceinline] = ACTIONS(4894), + [anon_sym_thread_local] = ACTIONS(4894), + [anon_sym___thread] = ACTIONS(4894), + [anon_sym_CG_EXTERN] = ACTIONS(4894), + [anon_sym_CG_INLINE] = ACTIONS(4894), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4894), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4894), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4894), + [anon_sym_IBOutlet] = ACTIONS(4894), + [anon_sym_IBInspectable] = ACTIONS(4894), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4894), + [anon_sym_NS_INLINE] = ACTIONS(4894), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4894), + [anon_sym_OBJC_EXPORT] = ACTIONS(4894), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4894), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4894), + [anon_sym_const] = ACTIONS(4894), + [anon_sym_constexpr] = ACTIONS(4894), + [anon_sym_volatile] = ACTIONS(4894), + [anon_sym_restrict] = ACTIONS(4894), + [anon_sym___restrict__] = ACTIONS(4894), + [anon_sym__Atomic] = ACTIONS(4894), + [anon_sym__Noreturn] = ACTIONS(4894), + [anon_sym__Nonnull] = ACTIONS(4894), + [anon_sym_nullable] = ACTIONS(4894), + [anon_sym__Complex] = ACTIONS(4894), + [anon_sym__Nullable] = ACTIONS(4894), + [anon_sym__Nullable_result] = ACTIONS(4894), + [anon_sym__Null_unspecified] = ACTIONS(4894), + [anon_sym___autoreleasing] = ACTIONS(4894), + [anon_sym___block] = ACTIONS(4894), + [anon_sym___bridge] = ACTIONS(4894), + [anon_sym___bridge_retained] = ACTIONS(4894), + [anon_sym___bridge_transfer] = ACTIONS(4894), + [anon_sym___complex] = ACTIONS(4894), + [anon_sym___const] = ACTIONS(4894), + [anon_sym___imag] = ACTIONS(4894), + [anon_sym___kindof] = ACTIONS(4894), + [anon_sym___nonnull] = ACTIONS(4894), + [anon_sym___nullable] = ACTIONS(4894), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4894), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4894), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4894), + [anon_sym___real] = ACTIONS(4894), + [anon_sym___strong] = ACTIONS(4894), + [anon_sym___unsafe_unretained] = ACTIONS(4894), + [anon_sym___unused] = ACTIONS(4894), + [anon_sym___weak] = ACTIONS(4894), + [anon_sym_alignas] = ACTIONS(4894), + [anon_sym__Alignas] = ACTIONS(4894), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_enum] = ACTIONS(4894), + [anon_sym_COLON] = ACTIONS(4896), + [anon_sym_struct] = ACTIONS(4894), + [anon_sym_union] = ACTIONS(4894), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4894), + [anon_sym___typeof] = ACTIONS(4894), + [anon_sym_typeof] = ACTIONS(4894), + [aux_sym_preproc_undef_token1] = ACTIONS(4894), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4894), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4894), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4894), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4894), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4894), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4894), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4894), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4894), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4894), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4894), + [anon_sym_NS_AVAILABLE] = ACTIONS(4894), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4894), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4894), + [anon_sym_API_AVAILABLE] = ACTIONS(4894), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4894), + [anon_sym_API_DEPRECATED] = ACTIONS(4894), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4894), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4894), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4894), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4894), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4894), + [anon_sym___deprecated_msg] = ACTIONS(4894), + [anon_sym___deprecated_enum_msg] = ACTIONS(4894), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4894), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4894), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4894), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4894), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4894), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4894), + [anon_sym_ATend] = ACTIONS(4896), + [anon_sym_ATsynthesize] = ACTIONS(4896), + [anon_sym_ATdynamic] = ACTIONS(4896), + [anon_sym_ATproperty] = ACTIONS(4896), + [anon_sym_BOOL] = ACTIONS(4894), + [anon_sym_IMP] = ACTIONS(4894), + [anon_sym_SEL] = ACTIONS(4894), + [anon_sym_Class] = ACTIONS(4894), + [anon_sym_id] = ACTIONS(4894), + }, + [1894] = { + [sym_identifier] = ACTIONS(4898), + [aux_sym_preproc_def_token1] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_RPAREN] = ACTIONS(4900), + [aux_sym_preproc_if_token1] = ACTIONS(4898), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4898), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4898), + [sym_preproc_directive] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym___extension__] = ACTIONS(4898), + [anon_sym_typedef] = ACTIONS(4898), + [anon_sym_extern] = ACTIONS(4898), + [anon_sym___attribute__] = ACTIONS(4898), + [anon_sym___attribute] = ACTIONS(4898), + [anon_sym_noreturn] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(4900), + [anon_sym___declspec] = ACTIONS(4898), + [anon_sym___cdecl] = ACTIONS(4898), + [anon_sym___clrcall] = ACTIONS(4898), + [anon_sym___stdcall] = ACTIONS(4898), + [anon_sym___fastcall] = ACTIONS(4898), + [anon_sym___thiscall] = ACTIONS(4898), + [anon_sym___vectorcall] = ACTIONS(4898), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_signed] = ACTIONS(4898), + [anon_sym_unsigned] = ACTIONS(4898), + [anon_sym_long] = ACTIONS(4898), + [anon_sym_short] = ACTIONS(4898), + [anon_sym_static] = ACTIONS(4898), + [anon_sym_auto] = ACTIONS(4898), + [anon_sym_register] = ACTIONS(4898), + [anon_sym_inline] = ACTIONS(4898), + [anon_sym___inline] = ACTIONS(4898), + [anon_sym___inline__] = ACTIONS(4898), + [anon_sym___forceinline] = ACTIONS(4898), + [anon_sym_thread_local] = ACTIONS(4898), + [anon_sym___thread] = ACTIONS(4898), + [anon_sym_CG_EXTERN] = ACTIONS(4898), + [anon_sym_CG_INLINE] = ACTIONS(4898), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4898), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4898), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4898), + [anon_sym_IBOutlet] = ACTIONS(4898), + [anon_sym_IBInspectable] = ACTIONS(4898), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4898), + [anon_sym_NS_INLINE] = ACTIONS(4898), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4898), + [anon_sym_OBJC_EXPORT] = ACTIONS(4898), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4898), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4898), + [anon_sym_const] = ACTIONS(4898), + [anon_sym_constexpr] = ACTIONS(4898), + [anon_sym_volatile] = ACTIONS(4898), + [anon_sym_restrict] = ACTIONS(4898), + [anon_sym___restrict__] = ACTIONS(4898), + [anon_sym__Atomic] = ACTIONS(4898), + [anon_sym__Noreturn] = ACTIONS(4898), + [anon_sym__Nonnull] = ACTIONS(4898), + [anon_sym_nullable] = ACTIONS(4898), + [anon_sym__Complex] = ACTIONS(4898), + [anon_sym__Nullable] = ACTIONS(4898), + [anon_sym__Nullable_result] = ACTIONS(4898), + [anon_sym__Null_unspecified] = ACTIONS(4898), + [anon_sym___autoreleasing] = ACTIONS(4898), + [anon_sym___block] = ACTIONS(4898), + [anon_sym___bridge] = ACTIONS(4898), + [anon_sym___bridge_retained] = ACTIONS(4898), + [anon_sym___bridge_transfer] = ACTIONS(4898), + [anon_sym___complex] = ACTIONS(4898), + [anon_sym___const] = ACTIONS(4898), + [anon_sym___imag] = ACTIONS(4898), + [anon_sym___kindof] = ACTIONS(4898), + [anon_sym___nonnull] = ACTIONS(4898), + [anon_sym___nullable] = ACTIONS(4898), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4898), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4898), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4898), + [anon_sym___real] = ACTIONS(4898), + [anon_sym___strong] = ACTIONS(4898), + [anon_sym___unsafe_unretained] = ACTIONS(4898), + [anon_sym___unused] = ACTIONS(4898), + [anon_sym___weak] = ACTIONS(4898), + [anon_sym_alignas] = ACTIONS(4898), + [anon_sym__Alignas] = ACTIONS(4898), + [sym_primitive_type] = ACTIONS(4898), + [anon_sym_enum] = ACTIONS(4898), + [anon_sym_COLON] = ACTIONS(4900), + [anon_sym_struct] = ACTIONS(4898), + [anon_sym_union] = ACTIONS(4898), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4898), + [anon_sym___typeof] = ACTIONS(4898), + [anon_sym_typeof] = ACTIONS(4898), + [aux_sym_preproc_undef_token1] = ACTIONS(4898), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4898), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4898), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4898), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4898), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4898), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4898), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4898), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4898), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4898), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4898), + [anon_sym_NS_AVAILABLE] = ACTIONS(4898), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4898), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4898), + [anon_sym_API_AVAILABLE] = ACTIONS(4898), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4898), + [anon_sym_API_DEPRECATED] = ACTIONS(4898), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4898), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4898), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4898), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4898), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4898), + [anon_sym___deprecated_msg] = ACTIONS(4898), + [anon_sym___deprecated_enum_msg] = ACTIONS(4898), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4898), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4898), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4898), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4898), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4898), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4898), + [anon_sym_ATend] = ACTIONS(4900), + [anon_sym_ATsynthesize] = ACTIONS(4900), + [anon_sym_ATdynamic] = ACTIONS(4900), + [anon_sym_ATproperty] = ACTIONS(4900), + [anon_sym_BOOL] = ACTIONS(4898), + [anon_sym_IMP] = ACTIONS(4898), + [anon_sym_SEL] = ACTIONS(4898), + [anon_sym_Class] = ACTIONS(4898), + [anon_sym_id] = ACTIONS(4898), + }, + [1895] = { + [sym_declaration] = STATE(1897), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(292), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1897), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1896] = { + [sym_identifier] = ACTIONS(4902), + [aux_sym_preproc_def_token1] = ACTIONS(4902), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_RPAREN] = ACTIONS(4904), + [aux_sym_preproc_if_token1] = ACTIONS(4902), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4902), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4902), + [sym_preproc_directive] = ACTIONS(4902), + [anon_sym_LPAREN2] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4904), + [anon_sym_PLUS] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4904), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_typedef] = ACTIONS(4902), + [anon_sym_extern] = ACTIONS(4902), + [anon_sym___attribute__] = ACTIONS(4902), + [anon_sym___attribute] = ACTIONS(4902), + [anon_sym_noreturn] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(4904), + [anon_sym___declspec] = ACTIONS(4902), + [anon_sym___cdecl] = ACTIONS(4902), + [anon_sym___clrcall] = ACTIONS(4902), + [anon_sym___stdcall] = ACTIONS(4902), + [anon_sym___fastcall] = ACTIONS(4902), + [anon_sym___thiscall] = ACTIONS(4902), + [anon_sym___vectorcall] = ACTIONS(4902), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_signed] = ACTIONS(4902), + [anon_sym_unsigned] = ACTIONS(4902), + [anon_sym_long] = ACTIONS(4902), + [anon_sym_short] = ACTIONS(4902), + [anon_sym_static] = ACTIONS(4902), + [anon_sym_auto] = ACTIONS(4902), + [anon_sym_register] = ACTIONS(4902), + [anon_sym_inline] = ACTIONS(4902), + [anon_sym___inline] = ACTIONS(4902), + [anon_sym___inline__] = ACTIONS(4902), + [anon_sym___forceinline] = ACTIONS(4902), + [anon_sym_thread_local] = ACTIONS(4902), + [anon_sym___thread] = ACTIONS(4902), + [anon_sym_CG_EXTERN] = ACTIONS(4902), + [anon_sym_CG_INLINE] = ACTIONS(4902), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4902), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4902), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4902), + [anon_sym_IBOutlet] = ACTIONS(4902), + [anon_sym_IBInspectable] = ACTIONS(4902), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4902), + [anon_sym_NS_INLINE] = ACTIONS(4902), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4902), + [anon_sym_OBJC_EXPORT] = ACTIONS(4902), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4902), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4902), + [anon_sym_const] = ACTIONS(4902), + [anon_sym_constexpr] = ACTIONS(4902), + [anon_sym_volatile] = ACTIONS(4902), + [anon_sym_restrict] = ACTIONS(4902), + [anon_sym___restrict__] = ACTIONS(4902), + [anon_sym__Atomic] = ACTIONS(4902), + [anon_sym__Noreturn] = ACTIONS(4902), + [anon_sym__Nonnull] = ACTIONS(4902), + [anon_sym_nullable] = ACTIONS(4902), + [anon_sym__Complex] = ACTIONS(4902), + [anon_sym__Nullable] = ACTIONS(4902), + [anon_sym__Nullable_result] = ACTIONS(4902), + [anon_sym__Null_unspecified] = ACTIONS(4902), + [anon_sym___autoreleasing] = ACTIONS(4902), + [anon_sym___block] = ACTIONS(4902), + [anon_sym___bridge] = ACTIONS(4902), + [anon_sym___bridge_retained] = ACTIONS(4902), + [anon_sym___bridge_transfer] = ACTIONS(4902), + [anon_sym___complex] = ACTIONS(4902), + [anon_sym___const] = ACTIONS(4902), + [anon_sym___imag] = ACTIONS(4902), + [anon_sym___kindof] = ACTIONS(4902), + [anon_sym___nonnull] = ACTIONS(4902), + [anon_sym___nullable] = ACTIONS(4902), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4902), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4902), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4902), + [anon_sym___real] = ACTIONS(4902), + [anon_sym___strong] = ACTIONS(4902), + [anon_sym___unsafe_unretained] = ACTIONS(4902), + [anon_sym___unused] = ACTIONS(4902), + [anon_sym___weak] = ACTIONS(4902), + [anon_sym_alignas] = ACTIONS(4902), + [anon_sym__Alignas] = ACTIONS(4902), + [sym_primitive_type] = ACTIONS(4902), + [anon_sym_enum] = ACTIONS(4902), + [anon_sym_COLON] = ACTIONS(4904), + [anon_sym_struct] = ACTIONS(4902), + [anon_sym_union] = ACTIONS(4902), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4902), + [anon_sym___typeof] = ACTIONS(4902), + [anon_sym_typeof] = ACTIONS(4902), + [aux_sym_preproc_undef_token1] = ACTIONS(4902), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4902), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4902), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4902), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4902), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4902), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4902), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4902), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4902), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4902), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4902), + [anon_sym_NS_AVAILABLE] = ACTIONS(4902), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4902), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4902), + [anon_sym_API_AVAILABLE] = ACTIONS(4902), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4902), + [anon_sym_API_DEPRECATED] = ACTIONS(4902), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4902), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4902), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4902), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4902), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4902), + [anon_sym___deprecated_msg] = ACTIONS(4902), + [anon_sym___deprecated_enum_msg] = ACTIONS(4902), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4902), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4902), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4902), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4902), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4902), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4902), + [anon_sym_ATend] = ACTIONS(4904), + [anon_sym_ATsynthesize] = ACTIONS(4904), + [anon_sym_ATdynamic] = ACTIONS(4904), + [anon_sym_ATproperty] = ACTIONS(4904), + [anon_sym_BOOL] = ACTIONS(4902), + [anon_sym_IMP] = ACTIONS(4902), + [anon_sym_SEL] = ACTIONS(4902), + [anon_sym_Class] = ACTIONS(4902), + [anon_sym_id] = ACTIONS(4902), + }, + [1897] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(308), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1898] = { + [sym_declaration] = STATE(1900), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(309), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1900), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1899] = { + [sym_declaration] = STATE(1916), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(1011), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1916), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1900] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(329), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1901] = { + [sym_identifier] = ACTIONS(4906), + [aux_sym_preproc_def_token1] = ACTIONS(4906), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_RPAREN] = ACTIONS(4908), + [aux_sym_preproc_if_token1] = ACTIONS(4906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4906), + [sym_preproc_directive] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4908), + [anon_sym_PLUS] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4908), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym___extension__] = ACTIONS(4906), + [anon_sym_typedef] = ACTIONS(4906), + [anon_sym_extern] = ACTIONS(4906), + [anon_sym___attribute__] = ACTIONS(4906), + [anon_sym___attribute] = ACTIONS(4906), + [anon_sym_noreturn] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(4908), + [anon_sym___declspec] = ACTIONS(4906), + [anon_sym___cdecl] = ACTIONS(4906), + [anon_sym___clrcall] = ACTIONS(4906), + [anon_sym___stdcall] = ACTIONS(4906), + [anon_sym___fastcall] = ACTIONS(4906), + [anon_sym___thiscall] = ACTIONS(4906), + [anon_sym___vectorcall] = ACTIONS(4906), + [anon_sym_LBRACE] = ACTIONS(4908), + [anon_sym_signed] = ACTIONS(4906), + [anon_sym_unsigned] = ACTIONS(4906), + [anon_sym_long] = ACTIONS(4906), + [anon_sym_short] = ACTIONS(4906), + [anon_sym_static] = ACTIONS(4906), + [anon_sym_auto] = ACTIONS(4906), + [anon_sym_register] = ACTIONS(4906), + [anon_sym_inline] = ACTIONS(4906), + [anon_sym___inline] = ACTIONS(4906), + [anon_sym___inline__] = ACTIONS(4906), + [anon_sym___forceinline] = ACTIONS(4906), + [anon_sym_thread_local] = ACTIONS(4906), + [anon_sym___thread] = ACTIONS(4906), + [anon_sym_CG_EXTERN] = ACTIONS(4906), + [anon_sym_CG_INLINE] = ACTIONS(4906), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4906), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4906), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4906), + [anon_sym_IBOutlet] = ACTIONS(4906), + [anon_sym_IBInspectable] = ACTIONS(4906), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4906), + [anon_sym_NS_INLINE] = ACTIONS(4906), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4906), + [anon_sym_OBJC_EXPORT] = ACTIONS(4906), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4906), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4906), + [anon_sym_const] = ACTIONS(4906), + [anon_sym_constexpr] = ACTIONS(4906), + [anon_sym_volatile] = ACTIONS(4906), + [anon_sym_restrict] = ACTIONS(4906), + [anon_sym___restrict__] = ACTIONS(4906), + [anon_sym__Atomic] = ACTIONS(4906), + [anon_sym__Noreturn] = ACTIONS(4906), + [anon_sym__Nonnull] = ACTIONS(4906), + [anon_sym_nullable] = ACTIONS(4906), + [anon_sym__Complex] = ACTIONS(4906), + [anon_sym__Nullable] = ACTIONS(4906), + [anon_sym__Nullable_result] = ACTIONS(4906), + [anon_sym__Null_unspecified] = ACTIONS(4906), + [anon_sym___autoreleasing] = ACTIONS(4906), + [anon_sym___block] = ACTIONS(4906), + [anon_sym___bridge] = ACTIONS(4906), + [anon_sym___bridge_retained] = ACTIONS(4906), + [anon_sym___bridge_transfer] = ACTIONS(4906), + [anon_sym___complex] = ACTIONS(4906), + [anon_sym___const] = ACTIONS(4906), + [anon_sym___imag] = ACTIONS(4906), + [anon_sym___kindof] = ACTIONS(4906), + [anon_sym___nonnull] = ACTIONS(4906), + [anon_sym___nullable] = ACTIONS(4906), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4906), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4906), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4906), + [anon_sym___real] = ACTIONS(4906), + [anon_sym___strong] = ACTIONS(4906), + [anon_sym___unsafe_unretained] = ACTIONS(4906), + [anon_sym___unused] = ACTIONS(4906), + [anon_sym___weak] = ACTIONS(4906), + [anon_sym_alignas] = ACTIONS(4906), + [anon_sym__Alignas] = ACTIONS(4906), + [sym_primitive_type] = ACTIONS(4906), + [anon_sym_enum] = ACTIONS(4906), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_struct] = ACTIONS(4906), + [anon_sym_union] = ACTIONS(4906), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4906), + [anon_sym___typeof] = ACTIONS(4906), + [anon_sym_typeof] = ACTIONS(4906), + [aux_sym_preproc_undef_token1] = ACTIONS(4906), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4906), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4906), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4906), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4906), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4906), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4906), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4906), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4906), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4906), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4906), + [anon_sym_NS_AVAILABLE] = ACTIONS(4906), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4906), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4906), + [anon_sym_API_AVAILABLE] = ACTIONS(4906), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4906), + [anon_sym_API_DEPRECATED] = ACTIONS(4906), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4906), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4906), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4906), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4906), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4906), + [anon_sym___deprecated_msg] = ACTIONS(4906), + [anon_sym___deprecated_enum_msg] = ACTIONS(4906), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4906), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4906), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4906), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4906), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4906), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4906), + [anon_sym_ATend] = ACTIONS(4908), + [anon_sym_ATsynthesize] = ACTIONS(4908), + [anon_sym_ATdynamic] = ACTIONS(4908), + [anon_sym_ATproperty] = ACTIONS(4908), + [anon_sym_BOOL] = ACTIONS(4906), + [anon_sym_IMP] = ACTIONS(4906), + [anon_sym_SEL] = ACTIONS(4906), + [anon_sym_Class] = ACTIONS(4906), + [anon_sym_id] = ACTIONS(4906), + }, + [1902] = { + [sym_identifier] = ACTIONS(4910), + [aux_sym_preproc_def_token1] = ACTIONS(4910), + [anon_sym_COMMA] = ACTIONS(4912), + [anon_sym_RPAREN] = ACTIONS(4912), + [aux_sym_preproc_if_token1] = ACTIONS(4910), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4910), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4910), + [sym_preproc_directive] = ACTIONS(4910), + [anon_sym_LPAREN2] = ACTIONS(4912), + [anon_sym_DASH] = ACTIONS(4912), + [anon_sym_PLUS] = ACTIONS(4912), + [anon_sym_LT] = ACTIONS(4912), + [anon_sym_SEMI] = ACTIONS(4912), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_typedef] = ACTIONS(4910), + [anon_sym_extern] = ACTIONS(4910), + [anon_sym___attribute__] = ACTIONS(4910), + [anon_sym___attribute] = ACTIONS(4910), + [anon_sym_noreturn] = ACTIONS(4910), + [anon_sym_LBRACK] = ACTIONS(4912), + [anon_sym___declspec] = ACTIONS(4910), + [anon_sym___cdecl] = ACTIONS(4910), + [anon_sym___clrcall] = ACTIONS(4910), + [anon_sym___stdcall] = ACTIONS(4910), + [anon_sym___fastcall] = ACTIONS(4910), + [anon_sym___thiscall] = ACTIONS(4910), + [anon_sym___vectorcall] = ACTIONS(4910), + [anon_sym_LBRACE] = ACTIONS(4912), + [anon_sym_signed] = ACTIONS(4910), + [anon_sym_unsigned] = ACTIONS(4910), + [anon_sym_long] = ACTIONS(4910), + [anon_sym_short] = ACTIONS(4910), + [anon_sym_static] = ACTIONS(4910), + [anon_sym_auto] = ACTIONS(4910), + [anon_sym_register] = ACTIONS(4910), + [anon_sym_inline] = ACTIONS(4910), + [anon_sym___inline] = ACTIONS(4910), + [anon_sym___inline__] = ACTIONS(4910), + [anon_sym___forceinline] = ACTIONS(4910), + [anon_sym_thread_local] = ACTIONS(4910), + [anon_sym___thread] = ACTIONS(4910), + [anon_sym_CG_EXTERN] = ACTIONS(4910), + [anon_sym_CG_INLINE] = ACTIONS(4910), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4910), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4910), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4910), + [anon_sym_IBOutlet] = ACTIONS(4910), + [anon_sym_IBInspectable] = ACTIONS(4910), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4910), + [anon_sym_NS_INLINE] = ACTIONS(4910), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4910), + [anon_sym_OBJC_EXPORT] = ACTIONS(4910), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4910), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4910), + [anon_sym_const] = ACTIONS(4910), + [anon_sym_constexpr] = ACTIONS(4910), + [anon_sym_volatile] = ACTIONS(4910), + [anon_sym_restrict] = ACTIONS(4910), + [anon_sym___restrict__] = ACTIONS(4910), + [anon_sym__Atomic] = ACTIONS(4910), + [anon_sym__Noreturn] = ACTIONS(4910), + [anon_sym__Nonnull] = ACTIONS(4910), + [anon_sym_nullable] = ACTIONS(4910), + [anon_sym__Complex] = ACTIONS(4910), + [anon_sym__Nullable] = ACTIONS(4910), + [anon_sym__Nullable_result] = ACTIONS(4910), + [anon_sym__Null_unspecified] = ACTIONS(4910), + [anon_sym___autoreleasing] = ACTIONS(4910), + [anon_sym___block] = ACTIONS(4910), + [anon_sym___bridge] = ACTIONS(4910), + [anon_sym___bridge_retained] = ACTIONS(4910), + [anon_sym___bridge_transfer] = ACTIONS(4910), + [anon_sym___complex] = ACTIONS(4910), + [anon_sym___const] = ACTIONS(4910), + [anon_sym___imag] = ACTIONS(4910), + [anon_sym___kindof] = ACTIONS(4910), + [anon_sym___nonnull] = ACTIONS(4910), + [anon_sym___nullable] = ACTIONS(4910), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4910), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4910), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4910), + [anon_sym___real] = ACTIONS(4910), + [anon_sym___strong] = ACTIONS(4910), + [anon_sym___unsafe_unretained] = ACTIONS(4910), + [anon_sym___unused] = ACTIONS(4910), + [anon_sym___weak] = ACTIONS(4910), + [anon_sym_alignas] = ACTIONS(4910), + [anon_sym__Alignas] = ACTIONS(4910), + [sym_primitive_type] = ACTIONS(4910), + [anon_sym_enum] = ACTIONS(4910), + [anon_sym_COLON] = ACTIONS(4912), + [anon_sym_struct] = ACTIONS(4910), + [anon_sym_union] = ACTIONS(4910), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4910), + [anon_sym___typeof] = ACTIONS(4910), + [anon_sym_typeof] = ACTIONS(4910), + [aux_sym_preproc_undef_token1] = ACTIONS(4910), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4910), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4910), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4910), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4910), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4910), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4910), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4910), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4910), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4910), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4910), + [anon_sym_NS_AVAILABLE] = ACTIONS(4910), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4910), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4910), + [anon_sym_API_AVAILABLE] = ACTIONS(4910), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4910), + [anon_sym_API_DEPRECATED] = ACTIONS(4910), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4910), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4910), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4910), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4910), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4910), + [anon_sym___deprecated_msg] = ACTIONS(4910), + [anon_sym___deprecated_enum_msg] = ACTIONS(4910), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4910), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4910), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4910), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4910), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4910), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4910), + [anon_sym_ATend] = ACTIONS(4912), + [anon_sym_ATsynthesize] = ACTIONS(4912), + [anon_sym_ATdynamic] = ACTIONS(4912), + [anon_sym_ATproperty] = ACTIONS(4912), + [anon_sym_BOOL] = ACTIONS(4910), + [anon_sym_IMP] = ACTIONS(4910), + [anon_sym_SEL] = ACTIONS(4910), + [anon_sym_Class] = ACTIONS(4910), + [anon_sym_id] = ACTIONS(4910), + }, + [1903] = { + [sym_declaration] = STATE(1890), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(1060), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1890), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1904] = { + [sym_identifier] = ACTIONS(4914), + [aux_sym_preproc_def_token1] = ACTIONS(4914), + [anon_sym_COMMA] = ACTIONS(4916), + [anon_sym_RPAREN] = ACTIONS(4916), + [aux_sym_preproc_if_token1] = ACTIONS(4914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4914), + [sym_preproc_directive] = ACTIONS(4914), + [anon_sym_LPAREN2] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4916), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_CARET] = ACTIONS(4916), + [anon_sym_SEMI] = ACTIONS(4916), + [anon_sym___extension__] = ACTIONS(4914), + [anon_sym_typedef] = ACTIONS(4914), + [anon_sym_extern] = ACTIONS(4914), + [anon_sym___attribute__] = ACTIONS(4914), + [anon_sym___attribute] = ACTIONS(4914), + [anon_sym_noreturn] = ACTIONS(4914), + [anon_sym_LBRACK] = ACTIONS(4916), + [anon_sym___declspec] = ACTIONS(4914), + [anon_sym___based] = ACTIONS(4914), + [anon_sym___cdecl] = ACTIONS(4914), + [anon_sym___clrcall] = ACTIONS(4914), + [anon_sym___stdcall] = ACTIONS(4914), + [anon_sym___fastcall] = ACTIONS(4914), + [anon_sym___thiscall] = ACTIONS(4914), + [anon_sym___vectorcall] = ACTIONS(4914), + [anon_sym_signed] = ACTIONS(4914), + [anon_sym_unsigned] = ACTIONS(4914), + [anon_sym_long] = ACTIONS(4914), + [anon_sym_short] = ACTIONS(4914), + [anon_sym_static] = ACTIONS(4914), + [anon_sym_auto] = ACTIONS(4914), + [anon_sym_register] = ACTIONS(4914), + [anon_sym_inline] = ACTIONS(4914), + [anon_sym___inline] = ACTIONS(4914), + [anon_sym___inline__] = ACTIONS(4914), + [anon_sym___forceinline] = ACTIONS(4914), + [anon_sym_thread_local] = ACTIONS(4914), + [anon_sym___thread] = ACTIONS(4914), + [anon_sym_CG_EXTERN] = ACTIONS(4914), + [anon_sym_CG_INLINE] = ACTIONS(4914), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4914), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4914), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4914), + [anon_sym_IBOutlet] = ACTIONS(4914), + [anon_sym_IBInspectable] = ACTIONS(4914), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4914), + [anon_sym_NS_INLINE] = ACTIONS(4914), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4914), + [anon_sym_OBJC_EXPORT] = ACTIONS(4914), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4914), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4914), + [anon_sym_const] = ACTIONS(4914), + [anon_sym_constexpr] = ACTIONS(4914), + [anon_sym_volatile] = ACTIONS(4914), + [anon_sym_restrict] = ACTIONS(4914), + [anon_sym___restrict__] = ACTIONS(4914), + [anon_sym__Atomic] = ACTIONS(4914), + [anon_sym__Noreturn] = ACTIONS(4914), + [anon_sym__Nonnull] = ACTIONS(4914), + [anon_sym_nullable] = ACTIONS(4914), + [anon_sym__Complex] = ACTIONS(4914), + [anon_sym__Nullable] = ACTIONS(4914), + [anon_sym__Nullable_result] = ACTIONS(4914), + [anon_sym__Null_unspecified] = ACTIONS(4914), + [anon_sym___autoreleasing] = ACTIONS(4914), + [anon_sym___block] = ACTIONS(4914), + [anon_sym___bridge] = ACTIONS(4914), + [anon_sym___bridge_retained] = ACTIONS(4914), + [anon_sym___bridge_transfer] = ACTIONS(4914), + [anon_sym___complex] = ACTIONS(4914), + [anon_sym___const] = ACTIONS(4914), + [anon_sym___imag] = ACTIONS(4914), + [anon_sym___kindof] = ACTIONS(4914), + [anon_sym___nonnull] = ACTIONS(4914), + [anon_sym___nullable] = ACTIONS(4914), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4914), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4914), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4914), + [anon_sym___real] = ACTIONS(4914), + [anon_sym___strong] = ACTIONS(4914), + [anon_sym___unsafe_unretained] = ACTIONS(4914), + [anon_sym___unused] = ACTIONS(4914), + [anon_sym___weak] = ACTIONS(4914), + [anon_sym_alignas] = ACTIONS(4914), + [anon_sym__Alignas] = ACTIONS(4914), + [sym_primitive_type] = ACTIONS(4914), + [anon_sym_enum] = ACTIONS(4914), + [anon_sym_COLON] = ACTIONS(4916), + [anon_sym_struct] = ACTIONS(4914), + [anon_sym_union] = ACTIONS(4914), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4914), + [anon_sym___typeof] = ACTIONS(4914), + [anon_sym_typeof] = ACTIONS(4914), + [aux_sym_preproc_undef_token1] = ACTIONS(4914), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4914), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4914), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4914), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4914), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4914), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4914), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4914), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4914), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4914), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4914), + [anon_sym_NS_AVAILABLE] = ACTIONS(4914), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4914), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4914), + [anon_sym_API_AVAILABLE] = ACTIONS(4914), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4914), + [anon_sym_API_DEPRECATED] = ACTIONS(4914), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4914), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4914), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4914), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4914), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4914), + [anon_sym___deprecated_msg] = ACTIONS(4914), + [anon_sym___deprecated_enum_msg] = ACTIONS(4914), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4914), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4914), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4914), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4914), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4914), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4914), + [anon_sym_ATend] = ACTIONS(4916), + [anon_sym_ATsynthesize] = ACTIONS(4916), + [anon_sym_ATdynamic] = ACTIONS(4916), + [anon_sym_BOOL] = ACTIONS(4914), + [anon_sym_IMP] = ACTIONS(4914), + [anon_sym_SEL] = ACTIONS(4914), + [anon_sym_Class] = ACTIONS(4914), + [anon_sym_id] = ACTIONS(4914), + }, + [1905] = { + [sym_declaration] = STATE(1906), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(525), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1906), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1906] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(474), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1907] = { + [sym_declaration] = STATE(1909), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(506), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1909), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1908] = { + [sym_identifier] = ACTIONS(4918), + [aux_sym_preproc_def_token1] = ACTIONS(4918), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_RPAREN] = ACTIONS(4920), + [aux_sym_preproc_if_token1] = ACTIONS(4918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4918), + [sym_preproc_directive] = ACTIONS(4918), + [anon_sym_LPAREN2] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4920), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_typedef] = ACTIONS(4918), + [anon_sym_extern] = ACTIONS(4918), + [anon_sym___attribute__] = ACTIONS(4918), + [anon_sym___attribute] = ACTIONS(4918), + [anon_sym_noreturn] = ACTIONS(4918), + [anon_sym_LBRACK] = ACTIONS(4920), + [anon_sym___declspec] = ACTIONS(4918), + [anon_sym___cdecl] = ACTIONS(4918), + [anon_sym___clrcall] = ACTIONS(4918), + [anon_sym___stdcall] = ACTIONS(4918), + [anon_sym___fastcall] = ACTIONS(4918), + [anon_sym___thiscall] = ACTIONS(4918), + [anon_sym___vectorcall] = ACTIONS(4918), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_signed] = ACTIONS(4918), + [anon_sym_unsigned] = ACTIONS(4918), + [anon_sym_long] = ACTIONS(4918), + [anon_sym_short] = ACTIONS(4918), + [anon_sym_static] = ACTIONS(4918), + [anon_sym_auto] = ACTIONS(4918), + [anon_sym_register] = ACTIONS(4918), + [anon_sym_inline] = ACTIONS(4918), + [anon_sym___inline] = ACTIONS(4918), + [anon_sym___inline__] = ACTIONS(4918), + [anon_sym___forceinline] = ACTIONS(4918), + [anon_sym_thread_local] = ACTIONS(4918), + [anon_sym___thread] = ACTIONS(4918), + [anon_sym_CG_EXTERN] = ACTIONS(4918), + [anon_sym_CG_INLINE] = ACTIONS(4918), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4918), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4918), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4918), + [anon_sym_IBOutlet] = ACTIONS(4918), + [anon_sym_IBInspectable] = ACTIONS(4918), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4918), + [anon_sym_NS_INLINE] = ACTIONS(4918), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4918), + [anon_sym_OBJC_EXPORT] = ACTIONS(4918), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4918), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4918), + [anon_sym_const] = ACTIONS(4918), + [anon_sym_constexpr] = ACTIONS(4918), + [anon_sym_volatile] = ACTIONS(4918), + [anon_sym_restrict] = ACTIONS(4918), + [anon_sym___restrict__] = ACTIONS(4918), + [anon_sym__Atomic] = ACTIONS(4918), + [anon_sym__Noreturn] = ACTIONS(4918), + [anon_sym__Nonnull] = ACTIONS(4918), + [anon_sym_nullable] = ACTIONS(4918), + [anon_sym__Complex] = ACTIONS(4918), + [anon_sym__Nullable] = ACTIONS(4918), + [anon_sym__Nullable_result] = ACTIONS(4918), + [anon_sym__Null_unspecified] = ACTIONS(4918), + [anon_sym___autoreleasing] = ACTIONS(4918), + [anon_sym___block] = ACTIONS(4918), + [anon_sym___bridge] = ACTIONS(4918), + [anon_sym___bridge_retained] = ACTIONS(4918), + [anon_sym___bridge_transfer] = ACTIONS(4918), + [anon_sym___complex] = ACTIONS(4918), + [anon_sym___const] = ACTIONS(4918), + [anon_sym___imag] = ACTIONS(4918), + [anon_sym___kindof] = ACTIONS(4918), + [anon_sym___nonnull] = ACTIONS(4918), + [anon_sym___nullable] = ACTIONS(4918), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4918), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4918), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4918), + [anon_sym___real] = ACTIONS(4918), + [anon_sym___strong] = ACTIONS(4918), + [anon_sym___unsafe_unretained] = ACTIONS(4918), + [anon_sym___unused] = ACTIONS(4918), + [anon_sym___weak] = ACTIONS(4918), + [anon_sym_alignas] = ACTIONS(4918), + [anon_sym__Alignas] = ACTIONS(4918), + [sym_primitive_type] = ACTIONS(4918), + [anon_sym_enum] = ACTIONS(4918), + [anon_sym_COLON] = ACTIONS(4920), + [anon_sym_struct] = ACTIONS(4918), + [anon_sym_union] = ACTIONS(4918), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4918), + [anon_sym___typeof] = ACTIONS(4918), + [anon_sym_typeof] = ACTIONS(4918), + [aux_sym_preproc_undef_token1] = ACTIONS(4918), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4918), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4918), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4918), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4918), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4918), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4918), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4918), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4918), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4918), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4918), + [anon_sym_NS_AVAILABLE] = ACTIONS(4918), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4918), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4918), + [anon_sym_API_AVAILABLE] = ACTIONS(4918), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4918), + [anon_sym_API_DEPRECATED] = ACTIONS(4918), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4918), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4918), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4918), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4918), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4918), + [anon_sym___deprecated_msg] = ACTIONS(4918), + [anon_sym___deprecated_enum_msg] = ACTIONS(4918), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4918), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4918), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4918), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4918), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4918), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4918), + [anon_sym_ATend] = ACTIONS(4920), + [anon_sym_ATsynthesize] = ACTIONS(4920), + [anon_sym_ATdynamic] = ACTIONS(4920), + [anon_sym_ATproperty] = ACTIONS(4920), + [anon_sym_BOOL] = ACTIONS(4918), + [anon_sym_IMP] = ACTIONS(4918), + [anon_sym_SEL] = ACTIONS(4918), + [anon_sym_Class] = ACTIONS(4918), + [anon_sym_id] = ACTIONS(4918), + }, + [1909] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(476), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1910] = { + [sym_declaration] = STATE(1911), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(618), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1911), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(761), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1911] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(631), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(761), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1912] = { + [sym_declaration] = STATE(1913), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(632), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1913), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(761), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1913] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(645), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(761), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1914] = { + [sym_identifier] = ACTIONS(4922), + [aux_sym_preproc_def_token1] = ACTIONS(4922), + [anon_sym_COMMA] = ACTIONS(4924), + [anon_sym_RPAREN] = ACTIONS(4924), + [aux_sym_preproc_if_token1] = ACTIONS(4922), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4922), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4922), + [sym_preproc_directive] = ACTIONS(4922), + [anon_sym_LPAREN2] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4924), + [anon_sym_SEMI] = ACTIONS(4924), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_typedef] = ACTIONS(4922), + [anon_sym_extern] = ACTIONS(4922), + [anon_sym___attribute__] = ACTIONS(4922), + [anon_sym___attribute] = ACTIONS(4922), + [anon_sym_noreturn] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(4924), + [anon_sym___declspec] = ACTIONS(4922), + [anon_sym___cdecl] = ACTIONS(4922), + [anon_sym___clrcall] = ACTIONS(4922), + [anon_sym___stdcall] = ACTIONS(4922), + [anon_sym___fastcall] = ACTIONS(4922), + [anon_sym___thiscall] = ACTIONS(4922), + [anon_sym___vectorcall] = ACTIONS(4922), + [anon_sym_LBRACE] = ACTIONS(4924), + [anon_sym_signed] = ACTIONS(4922), + [anon_sym_unsigned] = ACTIONS(4922), + [anon_sym_long] = ACTIONS(4922), + [anon_sym_short] = ACTIONS(4922), + [anon_sym_static] = ACTIONS(4922), + [anon_sym_auto] = ACTIONS(4922), + [anon_sym_register] = ACTIONS(4922), + [anon_sym_inline] = ACTIONS(4922), + [anon_sym___inline] = ACTIONS(4922), + [anon_sym___inline__] = ACTIONS(4922), + [anon_sym___forceinline] = ACTIONS(4922), + [anon_sym_thread_local] = ACTIONS(4922), + [anon_sym___thread] = ACTIONS(4922), + [anon_sym_CG_EXTERN] = ACTIONS(4922), + [anon_sym_CG_INLINE] = ACTIONS(4922), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4922), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4922), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4922), + [anon_sym_IBOutlet] = ACTIONS(4922), + [anon_sym_IBInspectable] = ACTIONS(4922), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4922), + [anon_sym_NS_INLINE] = ACTIONS(4922), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4922), + [anon_sym_OBJC_EXPORT] = ACTIONS(4922), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4922), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4922), + [anon_sym_const] = ACTIONS(4922), + [anon_sym_constexpr] = ACTIONS(4922), + [anon_sym_volatile] = ACTIONS(4922), + [anon_sym_restrict] = ACTIONS(4922), + [anon_sym___restrict__] = ACTIONS(4922), + [anon_sym__Atomic] = ACTIONS(4922), + [anon_sym__Noreturn] = ACTIONS(4922), + [anon_sym__Nonnull] = ACTIONS(4922), + [anon_sym_nullable] = ACTIONS(4922), + [anon_sym__Complex] = ACTIONS(4922), + [anon_sym__Nullable] = ACTIONS(4922), + [anon_sym__Nullable_result] = ACTIONS(4922), + [anon_sym__Null_unspecified] = ACTIONS(4922), + [anon_sym___autoreleasing] = ACTIONS(4922), + [anon_sym___block] = ACTIONS(4922), + [anon_sym___bridge] = ACTIONS(4922), + [anon_sym___bridge_retained] = ACTIONS(4922), + [anon_sym___bridge_transfer] = ACTIONS(4922), + [anon_sym___complex] = ACTIONS(4922), + [anon_sym___const] = ACTIONS(4922), + [anon_sym___imag] = ACTIONS(4922), + [anon_sym___kindof] = ACTIONS(4922), + [anon_sym___nonnull] = ACTIONS(4922), + [anon_sym___nullable] = ACTIONS(4922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4922), + [anon_sym___real] = ACTIONS(4922), + [anon_sym___strong] = ACTIONS(4922), + [anon_sym___unsafe_unretained] = ACTIONS(4922), + [anon_sym___unused] = ACTIONS(4922), + [anon_sym___weak] = ACTIONS(4922), + [anon_sym_alignas] = ACTIONS(4922), + [anon_sym__Alignas] = ACTIONS(4922), + [sym_primitive_type] = ACTIONS(4922), + [anon_sym_enum] = ACTIONS(4922), + [anon_sym_COLON] = ACTIONS(4924), + [anon_sym_struct] = ACTIONS(4922), + [anon_sym_union] = ACTIONS(4922), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4922), + [anon_sym___typeof] = ACTIONS(4922), + [anon_sym_typeof] = ACTIONS(4922), + [aux_sym_preproc_undef_token1] = ACTIONS(4922), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4922), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4922), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4922), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4922), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4922), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4922), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4922), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4922), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4922), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4922), + [anon_sym_NS_AVAILABLE] = ACTIONS(4922), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4922), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4922), + [anon_sym_API_AVAILABLE] = ACTIONS(4922), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4922), + [anon_sym_API_DEPRECATED] = ACTIONS(4922), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4922), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4922), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4922), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4922), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4922), + [anon_sym___deprecated_msg] = ACTIONS(4922), + [anon_sym___deprecated_enum_msg] = ACTIONS(4922), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4922), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4922), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4922), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4922), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4922), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4922), + [anon_sym_ATend] = ACTIONS(4924), + [anon_sym_ATsynthesize] = ACTIONS(4924), + [anon_sym_ATdynamic] = ACTIONS(4924), + [anon_sym_ATproperty] = ACTIONS(4924), + [anon_sym_BOOL] = ACTIONS(4922), + [anon_sym_IMP] = ACTIONS(4922), + [anon_sym_SEL] = ACTIONS(4922), + [anon_sym_Class] = ACTIONS(4922), + [anon_sym_id] = ACTIONS(4922), + }, + [1915] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(4926), + [anon_sym_SEMI] = ACTIONS(4929), + [anon_sym___extension__] = ACTIONS(4931), + [anon_sym_extern] = ACTIONS(4934), + [anon_sym___attribute__] = ACTIONS(4937), + [anon_sym___attribute] = ACTIONS(4937), + [anon_sym_noreturn] = ACTIONS(4931), + [anon_sym_LBRACK] = ACTIONS(4940), + [anon_sym___declspec] = ACTIONS(4943), + [anon_sym_LBRACE] = ACTIONS(4929), + [anon_sym_signed] = ACTIONS(4946), + [anon_sym_unsigned] = ACTIONS(4946), + [anon_sym_long] = ACTIONS(4946), + [anon_sym_short] = ACTIONS(4946), + [anon_sym_static] = ACTIONS(4934), + [anon_sym_ATautoreleasepool] = ACTIONS(4929), + [anon_sym_auto] = ACTIONS(4934), + [anon_sym_register] = ACTIONS(4934), + [anon_sym_inline] = ACTIONS(4934), + [anon_sym___inline] = ACTIONS(4934), + [anon_sym___inline__] = ACTIONS(4934), + [anon_sym___forceinline] = ACTIONS(4934), + [anon_sym_thread_local] = ACTIONS(4934), + [anon_sym___thread] = ACTIONS(4934), + [anon_sym_CG_EXTERN] = ACTIONS(4934), + [anon_sym_CG_INLINE] = ACTIONS(4934), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4934), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4934), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4934), + [anon_sym_IBOutlet] = ACTIONS(4934), + [anon_sym_IBInspectable] = ACTIONS(4934), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4934), + [anon_sym_NS_INLINE] = ACTIONS(4934), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4934), + [anon_sym_OBJC_EXPORT] = ACTIONS(4934), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4934), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4934), + [anon_sym_const] = ACTIONS(4931), + [anon_sym_constexpr] = ACTIONS(4931), + [anon_sym_volatile] = ACTIONS(4931), + [anon_sym_restrict] = ACTIONS(4931), + [anon_sym___restrict__] = ACTIONS(4931), + [anon_sym__Atomic] = ACTIONS(4931), + [anon_sym__Noreturn] = ACTIONS(4931), + [anon_sym__Nonnull] = ACTIONS(4931), + [anon_sym_nullable] = ACTIONS(4931), + [anon_sym__Complex] = ACTIONS(4931), + [anon_sym__Nullable] = ACTIONS(4931), + [anon_sym__Nullable_result] = ACTIONS(4931), + [anon_sym__Null_unspecified] = ACTIONS(4931), + [anon_sym___autoreleasing] = ACTIONS(4931), + [anon_sym___block] = ACTIONS(4931), + [anon_sym___bridge] = ACTIONS(4931), + [anon_sym___bridge_retained] = ACTIONS(4931), + [anon_sym___bridge_transfer] = ACTIONS(4931), + [anon_sym___complex] = ACTIONS(4931), + [anon_sym___const] = ACTIONS(4931), + [anon_sym___imag] = ACTIONS(4931), + [anon_sym___kindof] = ACTIONS(4931), + [anon_sym___nonnull] = ACTIONS(4931), + [anon_sym___nullable] = ACTIONS(4931), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4931), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4931), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4931), + [anon_sym___real] = ACTIONS(4931), + [anon_sym___strong] = ACTIONS(4931), + [anon_sym___unsafe_unretained] = ACTIONS(4931), + [anon_sym___unused] = ACTIONS(4931), + [anon_sym___weak] = ACTIONS(4931), + [anon_sym_alignas] = ACTIONS(4949), + [anon_sym__Alignas] = ACTIONS(4949), + [sym_primitive_type] = ACTIONS(4952), + [anon_sym_enum] = ACTIONS(4955), + [anon_sym_struct] = ACTIONS(4958), + [anon_sym_union] = ACTIONS(4961), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4964), + [anon_sym___typeof] = ACTIONS(4964), + [anon_sym_typeof] = ACTIONS(4964), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4967), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4967), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4967), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4967), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4967), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4967), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4967), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4967), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4967), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4970), + [anon_sym_NS_AVAILABLE] = ACTIONS(4970), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4970), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4970), + [anon_sym_API_AVAILABLE] = ACTIONS(4970), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4970), + [anon_sym_API_DEPRECATED] = ACTIONS(4970), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4970), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4970), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4970), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4970), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4970), + [anon_sym___deprecated_msg] = ACTIONS(4970), + [anon_sym___deprecated_enum_msg] = ACTIONS(4970), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4970), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4970), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4970), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4970), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4970), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4970), + [anon_sym_BOOL] = ACTIONS(4973), + [anon_sym_IMP] = ACTIONS(4973), + [anon_sym_SEL] = ACTIONS(4973), + [anon_sym_Class] = ACTIONS(4973), + [anon_sym_id] = ACTIONS(4973), + }, + [1916] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(1035), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1917] = { + [sym_identifier] = ACTIONS(4976), + [aux_sym_preproc_def_token1] = ACTIONS(4976), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_RPAREN] = ACTIONS(4978), + [aux_sym_preproc_if_token1] = ACTIONS(4976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4976), + [sym_preproc_directive] = ACTIONS(4976), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_DASH] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4978), + [anon_sym_LT] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(4978), + [anon_sym___extension__] = ACTIONS(4976), + [anon_sym_typedef] = ACTIONS(4976), + [anon_sym_extern] = ACTIONS(4976), + [anon_sym___attribute__] = ACTIONS(4976), + [anon_sym___attribute] = ACTIONS(4976), + [anon_sym_noreturn] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym___declspec] = ACTIONS(4976), + [anon_sym___cdecl] = ACTIONS(4976), + [anon_sym___clrcall] = ACTIONS(4976), + [anon_sym___stdcall] = ACTIONS(4976), + [anon_sym___fastcall] = ACTIONS(4976), + [anon_sym___thiscall] = ACTIONS(4976), + [anon_sym___vectorcall] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4978), + [anon_sym_signed] = ACTIONS(4976), + [anon_sym_unsigned] = ACTIONS(4976), + [anon_sym_long] = ACTIONS(4976), + [anon_sym_short] = ACTIONS(4976), + [anon_sym_static] = ACTIONS(4976), + [anon_sym_auto] = ACTIONS(4976), + [anon_sym_register] = ACTIONS(4976), + [anon_sym_inline] = ACTIONS(4976), + [anon_sym___inline] = ACTIONS(4976), + [anon_sym___inline__] = ACTIONS(4976), + [anon_sym___forceinline] = ACTIONS(4976), + [anon_sym_thread_local] = ACTIONS(4976), + [anon_sym___thread] = ACTIONS(4976), + [anon_sym_CG_EXTERN] = ACTIONS(4976), + [anon_sym_CG_INLINE] = ACTIONS(4976), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4976), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4976), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4976), + [anon_sym_IBOutlet] = ACTIONS(4976), + [anon_sym_IBInspectable] = ACTIONS(4976), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4976), + [anon_sym_NS_INLINE] = ACTIONS(4976), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4976), + [anon_sym_OBJC_EXPORT] = ACTIONS(4976), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4976), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4976), + [anon_sym_const] = ACTIONS(4976), + [anon_sym_constexpr] = ACTIONS(4976), + [anon_sym_volatile] = ACTIONS(4976), + [anon_sym_restrict] = ACTIONS(4976), + [anon_sym___restrict__] = ACTIONS(4976), + [anon_sym__Atomic] = ACTIONS(4976), + [anon_sym__Noreturn] = ACTIONS(4976), + [anon_sym__Nonnull] = ACTIONS(4976), + [anon_sym_nullable] = ACTIONS(4976), + [anon_sym__Complex] = ACTIONS(4976), + [anon_sym__Nullable] = ACTIONS(4976), + [anon_sym__Nullable_result] = ACTIONS(4976), + [anon_sym__Null_unspecified] = ACTIONS(4976), + [anon_sym___autoreleasing] = ACTIONS(4976), + [anon_sym___block] = ACTIONS(4976), + [anon_sym___bridge] = ACTIONS(4976), + [anon_sym___bridge_retained] = ACTIONS(4976), + [anon_sym___bridge_transfer] = ACTIONS(4976), + [anon_sym___complex] = ACTIONS(4976), + [anon_sym___const] = ACTIONS(4976), + [anon_sym___imag] = ACTIONS(4976), + [anon_sym___kindof] = ACTIONS(4976), + [anon_sym___nonnull] = ACTIONS(4976), + [anon_sym___nullable] = ACTIONS(4976), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4976), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4976), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4976), + [anon_sym___real] = ACTIONS(4976), + [anon_sym___strong] = ACTIONS(4976), + [anon_sym___unsafe_unretained] = ACTIONS(4976), + [anon_sym___unused] = ACTIONS(4976), + [anon_sym___weak] = ACTIONS(4976), + [anon_sym_alignas] = ACTIONS(4976), + [anon_sym__Alignas] = ACTIONS(4976), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_enum] = ACTIONS(4976), + [anon_sym_COLON] = ACTIONS(4978), + [anon_sym_struct] = ACTIONS(4976), + [anon_sym_union] = ACTIONS(4976), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4976), + [anon_sym___typeof] = ACTIONS(4976), + [anon_sym_typeof] = ACTIONS(4976), + [aux_sym_preproc_undef_token1] = ACTIONS(4976), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4976), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4976), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4976), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4976), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4976), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4976), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4976), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4976), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4976), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4976), + [anon_sym_NS_AVAILABLE] = ACTIONS(4976), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4976), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4976), + [anon_sym_API_AVAILABLE] = ACTIONS(4976), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4976), + [anon_sym_API_DEPRECATED] = ACTIONS(4976), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4976), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4976), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4976), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4976), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4976), + [anon_sym___deprecated_msg] = ACTIONS(4976), + [anon_sym___deprecated_enum_msg] = ACTIONS(4976), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4976), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4976), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4976), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4976), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4976), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4976), + [anon_sym_ATend] = ACTIONS(4978), + [anon_sym_ATsynthesize] = ACTIONS(4978), + [anon_sym_ATdynamic] = ACTIONS(4978), + [anon_sym_ATproperty] = ACTIONS(4978), + [anon_sym_BOOL] = ACTIONS(4976), + [anon_sym_IMP] = ACTIONS(4976), + [anon_sym_SEL] = ACTIONS(4976), + [anon_sym_Class] = ACTIONS(4976), + [anon_sym_id] = ACTIONS(4976), + }, + [1918] = { + [sym_declaration] = STATE(1915), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(845), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1915), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1919] = { + [sym_declaration] = STATE(1918), + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4240), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_compound_statement] = STATE(852), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__old_style_function_definition_repeat1] = STATE(1918), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1920] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4982), + [anon_sym_PERCENT] = ACTIONS(4982), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4025), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4984), + [anon_sym_BANG_EQ] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4986), + [anon_sym_GT_EQ] = ACTIONS(4988), + [anon_sym_LT_EQ] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4986), + [anon_sym_LT_LT] = ACTIONS(4990), + [anon_sym_GT_GT] = ACTIONS(4990), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_RBRACE] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + }, + [1921] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4478), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4992), + [anon_sym_COMMA] = ACTIONS(4480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4480), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4982), + [anon_sym_PERCENT] = ACTIONS(4982), + [anon_sym_PIPE_PIPE] = ACTIONS(4994), + [anon_sym_AMP_AMP] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4998), + [anon_sym_CARET] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_EQ_EQ] = ACTIONS(4984), + [anon_sym_BANG_EQ] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4986), + [anon_sym_GT_EQ] = ACTIONS(4988), + [anon_sym_LT_EQ] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4986), + [anon_sym_LT_LT] = ACTIONS(4990), + [anon_sym_GT_GT] = ACTIONS(4990), + [anon_sym___extension__] = ACTIONS(4478), + [anon_sym_extern] = ACTIONS(4478), + [anon_sym___attribute__] = ACTIONS(4478), + [anon_sym___attribute] = ACTIONS(4478), + [anon_sym_noreturn] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4478), + [anon_sym_RBRACE] = ACTIONS(4480), + [anon_sym_static] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4478), + [anon_sym_auto] = ACTIONS(4478), + [anon_sym_register] = ACTIONS(4478), + [anon_sym_inline] = ACTIONS(4478), + [anon_sym___inline] = ACTIONS(4478), + [anon_sym___inline__] = ACTIONS(4478), + [anon_sym___forceinline] = ACTIONS(4478), + [anon_sym_thread_local] = ACTIONS(4478), + [anon_sym___thread] = ACTIONS(4478), + [anon_sym_CG_EXTERN] = ACTIONS(4478), + [anon_sym_CG_INLINE] = ACTIONS(4478), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4478), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4478), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4478), + [anon_sym_IBOutlet] = ACTIONS(4478), + [anon_sym_IBInspectable] = ACTIONS(4478), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4478), + [anon_sym_NS_INLINE] = ACTIONS(4478), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4478), + [anon_sym_OBJC_EXPORT] = ACTIONS(4478), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4478), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4478), + [anon_sym_const] = ACTIONS(4478), + [anon_sym_constexpr] = ACTIONS(4478), + [anon_sym_volatile] = ACTIONS(4478), + [anon_sym_restrict] = ACTIONS(4478), + [anon_sym___restrict__] = ACTIONS(4478), + [anon_sym__Atomic] = ACTIONS(4478), + [anon_sym__Noreturn] = ACTIONS(4478), + [anon_sym__Nonnull] = ACTIONS(4478), + [anon_sym_nullable] = ACTIONS(4478), + [anon_sym__Complex] = ACTIONS(4478), + [anon_sym__Nullable] = ACTIONS(4478), + [anon_sym__Nullable_result] = ACTIONS(4478), + [anon_sym__Null_unspecified] = ACTIONS(4478), + [anon_sym___autoreleasing] = ACTIONS(4478), + [anon_sym___block] = ACTIONS(4478), + [anon_sym___bridge] = ACTIONS(4478), + [anon_sym___bridge_retained] = ACTIONS(4478), + [anon_sym___bridge_transfer] = ACTIONS(4478), + [anon_sym___complex] = ACTIONS(4478), + [anon_sym___const] = ACTIONS(4478), + [anon_sym___imag] = ACTIONS(4478), + [anon_sym___kindof] = ACTIONS(4478), + [anon_sym___nonnull] = ACTIONS(4478), + [anon_sym___nullable] = ACTIONS(4478), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4478), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4478), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4478), + [anon_sym___real] = ACTIONS(4478), + [anon_sym___strong] = ACTIONS(4478), + [anon_sym___unsafe_unretained] = ACTIONS(4478), + [anon_sym___unused] = ACTIONS(4478), + [anon_sym___weak] = ACTIONS(4478), + [anon_sym_alignas] = ACTIONS(4478), + [anon_sym__Alignas] = ACTIONS(4478), + [anon_sym_QMARK] = ACTIONS(4480), + [anon_sym_STAR_EQ] = ACTIONS(4480), + [anon_sym_SLASH_EQ] = ACTIONS(4480), + [anon_sym_PERCENT_EQ] = ACTIONS(4480), + [anon_sym_PLUS_EQ] = ACTIONS(4480), + [anon_sym_DASH_EQ] = ACTIONS(4480), + [anon_sym_LT_LT_EQ] = ACTIONS(4480), + [anon_sym_GT_GT_EQ] = ACTIONS(4480), + [anon_sym_AMP_EQ] = ACTIONS(4480), + [anon_sym_CARET_EQ] = ACTIONS(4480), + [anon_sym_PIPE_EQ] = ACTIONS(4480), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4478), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4478), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4478), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4478), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4478), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4478), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4478), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4478), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4478), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4478), + [anon_sym_NS_AVAILABLE] = ACTIONS(4478), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4478), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4478), + [anon_sym_API_AVAILABLE] = ACTIONS(4478), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4478), + [anon_sym_API_DEPRECATED] = ACTIONS(4478), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4478), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4478), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4478), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4478), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4478), + [anon_sym___deprecated_msg] = ACTIONS(4478), + [anon_sym___deprecated_enum_msg] = ACTIONS(4478), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4478), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4478), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4478), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4478), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4478), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4478), + }, + [1922] = { + [sym_string_literal] = STATE(1922), + [aux_sym_concatenated_string_repeat1] = STATE(1922), + [sym_identifier] = ACTIONS(5004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3953), + [anon_sym_RPAREN] = ACTIONS(3953), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3953), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3953), + [anon_sym_LPAREN2] = ACTIONS(3953), + [anon_sym_DASH] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3953), + [anon_sym_SLASH] = ACTIONS(3955), + [anon_sym_PERCENT] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_PIPE] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3953), + [anon_sym_AMP] = ACTIONS(3955), + [anon_sym_EQ_EQ] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_GT_EQ] = ACTIONS(3953), + [anon_sym_LT_EQ] = ACTIONS(3953), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_LT_LT] = ACTIONS(3953), + [anon_sym_GT_GT] = ACTIONS(3953), + [anon_sym_SEMI] = ACTIONS(3953), + [anon_sym___extension__] = ACTIONS(3955), + [anon_sym_extern] = ACTIONS(3955), + [anon_sym___attribute__] = ACTIONS(3955), + [anon_sym___attribute] = ACTIONS(3955), + [anon_sym_noreturn] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_RBRACK] = ACTIONS(3953), + [anon_sym___declspec] = ACTIONS(3955), + [anon_sym_RBRACE] = ACTIONS(3953), + [anon_sym_static] = ACTIONS(3955), + [anon_sym_auto] = ACTIONS(3955), + [anon_sym_register] = ACTIONS(3955), + [anon_sym_inline] = ACTIONS(3955), + [anon_sym___inline] = ACTIONS(3955), + [anon_sym___inline__] = ACTIONS(3955), + [anon_sym___forceinline] = ACTIONS(3955), + [anon_sym_thread_local] = ACTIONS(3955), + [anon_sym___thread] = ACTIONS(3955), + [anon_sym_CG_EXTERN] = ACTIONS(3955), + [anon_sym_CG_INLINE] = ACTIONS(3955), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3955), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3955), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3955), + [anon_sym_IBOutlet] = ACTIONS(3955), + [anon_sym_IBInspectable] = ACTIONS(3955), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3955), + [anon_sym_NS_INLINE] = ACTIONS(3955), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3955), + [anon_sym_OBJC_EXPORT] = ACTIONS(3955), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3955), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3955), + [anon_sym_const] = ACTIONS(3955), + [anon_sym_constexpr] = ACTIONS(3955), + [anon_sym_volatile] = ACTIONS(3955), + [anon_sym_restrict] = ACTIONS(3955), + [anon_sym___restrict__] = ACTIONS(3955), + [anon_sym__Atomic] = ACTIONS(3955), + [anon_sym__Noreturn] = ACTIONS(3955), + [anon_sym__Nonnull] = ACTIONS(3955), + [anon_sym_nullable] = ACTIONS(3955), + [anon_sym__Complex] = ACTIONS(3955), + [anon_sym__Nullable] = ACTIONS(3955), + [anon_sym__Nullable_result] = ACTIONS(3955), + [anon_sym__Null_unspecified] = ACTIONS(3955), + [anon_sym___autoreleasing] = ACTIONS(3955), + [anon_sym___block] = ACTIONS(3955), + [anon_sym___bridge] = ACTIONS(3955), + [anon_sym___bridge_retained] = ACTIONS(3955), + [anon_sym___bridge_transfer] = ACTIONS(3955), + [anon_sym___complex] = ACTIONS(3955), + [anon_sym___const] = ACTIONS(3955), + [anon_sym___imag] = ACTIONS(3955), + [anon_sym___kindof] = ACTIONS(3955), + [anon_sym___nonnull] = ACTIONS(3955), + [anon_sym___nullable] = ACTIONS(3955), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3955), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3955), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3955), + [anon_sym___real] = ACTIONS(3955), + [anon_sym___strong] = ACTIONS(3955), + [anon_sym___unsafe_unretained] = ACTIONS(3955), + [anon_sym___unused] = ACTIONS(3955), + [anon_sym___weak] = ACTIONS(3955), + [anon_sym_alignas] = ACTIONS(3955), + [anon_sym__Alignas] = ACTIONS(3955), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_QMARK] = ACTIONS(3953), + [anon_sym_DASH_DASH] = ACTIONS(3953), + [anon_sym_PLUS_PLUS] = ACTIONS(3953), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3953), + [anon_sym_AT] = ACTIONS(5007), + [anon_sym_DQUOTE] = ACTIONS(5010), + [anon_sym_L_DQUOTE] = ACTIONS(5010), + [anon_sym_u_DQUOTE] = ACTIONS(5010), + [anon_sym_U_DQUOTE] = ACTIONS(5010), + [anon_sym_u8_DQUOTE] = ACTIONS(5010), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3955), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3955), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3955), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3955), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3955), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3955), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3955), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3955), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3955), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3955), + [anon_sym_NS_AVAILABLE] = ACTIONS(3955), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3955), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3955), + [anon_sym_API_AVAILABLE] = ACTIONS(3955), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3955), + [anon_sym_API_DEPRECATED] = ACTIONS(3955), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3955), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3955), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3955), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3955), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3955), + [anon_sym___deprecated_msg] = ACTIONS(3955), + [anon_sym___deprecated_enum_msg] = ACTIONS(3955), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3955), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3955), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3955), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3955), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3955), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3955), + }, + [1923] = { + [sym_string_literal] = STATE(1922), + [aux_sym_concatenated_string_repeat1] = STATE(1922), + [sym_identifier] = ACTIONS(5013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3973), + [anon_sym_COMMA] = ACTIONS(3973), + [anon_sym_RPAREN] = ACTIONS(3973), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3973), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3973), + [anon_sym_LPAREN2] = ACTIONS(3973), + [anon_sym_DASH] = ACTIONS(3975), + [anon_sym_PLUS] = ACTIONS(3975), + [anon_sym_STAR] = ACTIONS(3973), + [anon_sym_SLASH] = ACTIONS(3975), + [anon_sym_PERCENT] = ACTIONS(3973), + [anon_sym_PIPE_PIPE] = ACTIONS(3973), + [anon_sym_AMP_AMP] = ACTIONS(3973), + [anon_sym_PIPE] = ACTIONS(3975), + [anon_sym_CARET] = ACTIONS(3973), + [anon_sym_AMP] = ACTIONS(3975), + [anon_sym_EQ_EQ] = ACTIONS(3973), + [anon_sym_BANG_EQ] = ACTIONS(3973), + [anon_sym_GT] = ACTIONS(3975), + [anon_sym_GT_EQ] = ACTIONS(3973), + [anon_sym_LT_EQ] = ACTIONS(3973), + [anon_sym_LT] = ACTIONS(3975), + [anon_sym_LT_LT] = ACTIONS(3973), + [anon_sym_GT_GT] = ACTIONS(3973), + [anon_sym_SEMI] = ACTIONS(3973), + [anon_sym___extension__] = ACTIONS(3975), + [anon_sym_extern] = ACTIONS(3975), + [anon_sym___attribute__] = ACTIONS(3975), + [anon_sym___attribute] = ACTIONS(3975), + [anon_sym_noreturn] = ACTIONS(3975), + [anon_sym_LBRACK] = ACTIONS(3973), + [anon_sym_RBRACK] = ACTIONS(3973), + [anon_sym___declspec] = ACTIONS(3975), + [anon_sym_RBRACE] = ACTIONS(3973), + [anon_sym_static] = ACTIONS(3975), + [anon_sym_auto] = ACTIONS(3975), + [anon_sym_register] = ACTIONS(3975), + [anon_sym_inline] = ACTIONS(3975), + [anon_sym___inline] = ACTIONS(3975), + [anon_sym___inline__] = ACTIONS(3975), + [anon_sym___forceinline] = ACTIONS(3975), + [anon_sym_thread_local] = ACTIONS(3975), + [anon_sym___thread] = ACTIONS(3975), + [anon_sym_CG_EXTERN] = ACTIONS(3975), + [anon_sym_CG_INLINE] = ACTIONS(3975), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3975), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3975), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3975), + [anon_sym_IBOutlet] = ACTIONS(3975), + [anon_sym_IBInspectable] = ACTIONS(3975), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3975), + [anon_sym_NS_INLINE] = ACTIONS(3975), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3975), + [anon_sym_OBJC_EXPORT] = ACTIONS(3975), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3975), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3975), + [anon_sym_const] = ACTIONS(3975), + [anon_sym_constexpr] = ACTIONS(3975), + [anon_sym_volatile] = ACTIONS(3975), + [anon_sym_restrict] = ACTIONS(3975), + [anon_sym___restrict__] = ACTIONS(3975), + [anon_sym__Atomic] = ACTIONS(3975), + [anon_sym__Noreturn] = ACTIONS(3975), + [anon_sym__Nonnull] = ACTIONS(3975), + [anon_sym_nullable] = ACTIONS(3975), + [anon_sym__Complex] = ACTIONS(3975), + [anon_sym__Nullable] = ACTIONS(3975), + [anon_sym__Nullable_result] = ACTIONS(3975), + [anon_sym__Null_unspecified] = ACTIONS(3975), + [anon_sym___autoreleasing] = ACTIONS(3975), + [anon_sym___block] = ACTIONS(3975), + [anon_sym___bridge] = ACTIONS(3975), + [anon_sym___bridge_retained] = ACTIONS(3975), + [anon_sym___bridge_transfer] = ACTIONS(3975), + [anon_sym___complex] = ACTIONS(3975), + [anon_sym___const] = ACTIONS(3975), + [anon_sym___imag] = ACTIONS(3975), + [anon_sym___kindof] = ACTIONS(3975), + [anon_sym___nonnull] = ACTIONS(3975), + [anon_sym___nullable] = ACTIONS(3975), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3975), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3975), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3975), + [anon_sym___real] = ACTIONS(3975), + [anon_sym___strong] = ACTIONS(3975), + [anon_sym___unsafe_unretained] = ACTIONS(3975), + [anon_sym___unused] = ACTIONS(3975), + [anon_sym___weak] = ACTIONS(3975), + [anon_sym_alignas] = ACTIONS(3975), + [anon_sym__Alignas] = ACTIONS(3975), + [anon_sym_COLON] = ACTIONS(3973), + [anon_sym_QMARK] = ACTIONS(3973), + [anon_sym_DASH_DASH] = ACTIONS(3973), + [anon_sym_PLUS_PLUS] = ACTIONS(3973), + [anon_sym_DOT] = ACTIONS(3975), + [anon_sym_DASH_GT] = ACTIONS(3973), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3975), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3975), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3975), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3975), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3975), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3975), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3975), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3975), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3975), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3975), + [anon_sym_NS_AVAILABLE] = ACTIONS(3975), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3975), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3975), + [anon_sym_API_AVAILABLE] = ACTIONS(3975), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3975), + [anon_sym_API_DEPRECATED] = ACTIONS(3975), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3975), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3975), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3975), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3975), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3975), + [anon_sym___deprecated_msg] = ACTIONS(3975), + [anon_sym___deprecated_enum_msg] = ACTIONS(3975), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3975), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3975), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3975), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3975), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3975), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3975), + }, + [1924] = { + [sym_string_literal] = STATE(1923), + [aux_sym_concatenated_string_repeat1] = STATE(1923), + [sym_identifier] = ACTIONS(5015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3965), + [anon_sym_COMMA] = ACTIONS(3965), + [anon_sym_RPAREN] = ACTIONS(3965), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3965), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3965), + [anon_sym_LPAREN2] = ACTIONS(3965), + [anon_sym_DASH] = ACTIONS(3967), + [anon_sym_PLUS] = ACTIONS(3967), + [anon_sym_STAR] = ACTIONS(3965), + [anon_sym_SLASH] = ACTIONS(3967), + [anon_sym_PERCENT] = ACTIONS(3965), + [anon_sym_PIPE_PIPE] = ACTIONS(3965), + [anon_sym_AMP_AMP] = ACTIONS(3965), + [anon_sym_PIPE] = ACTIONS(3967), + [anon_sym_CARET] = ACTIONS(3965), + [anon_sym_AMP] = ACTIONS(3967), + [anon_sym_EQ_EQ] = ACTIONS(3965), + [anon_sym_BANG_EQ] = ACTIONS(3965), + [anon_sym_GT] = ACTIONS(3967), + [anon_sym_GT_EQ] = ACTIONS(3965), + [anon_sym_LT_EQ] = ACTIONS(3965), + [anon_sym_LT] = ACTIONS(3967), + [anon_sym_LT_LT] = ACTIONS(3965), + [anon_sym_GT_GT] = ACTIONS(3965), + [anon_sym_SEMI] = ACTIONS(3965), + [anon_sym___extension__] = ACTIONS(3967), + [anon_sym_extern] = ACTIONS(3967), + [anon_sym___attribute__] = ACTIONS(3967), + [anon_sym___attribute] = ACTIONS(3967), + [anon_sym_noreturn] = ACTIONS(3967), + [anon_sym_LBRACK] = ACTIONS(3965), + [anon_sym_RBRACK] = ACTIONS(3965), + [anon_sym___declspec] = ACTIONS(3967), + [anon_sym_RBRACE] = ACTIONS(3965), + [anon_sym_static] = ACTIONS(3967), + [anon_sym_auto] = ACTIONS(3967), + [anon_sym_register] = ACTIONS(3967), + [anon_sym_inline] = ACTIONS(3967), + [anon_sym___inline] = ACTIONS(3967), + [anon_sym___inline__] = ACTIONS(3967), + [anon_sym___forceinline] = ACTIONS(3967), + [anon_sym_thread_local] = ACTIONS(3967), + [anon_sym___thread] = ACTIONS(3967), + [anon_sym_CG_EXTERN] = ACTIONS(3967), + [anon_sym_CG_INLINE] = ACTIONS(3967), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3967), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3967), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3967), + [anon_sym_IBOutlet] = ACTIONS(3967), + [anon_sym_IBInspectable] = ACTIONS(3967), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3967), + [anon_sym_NS_INLINE] = ACTIONS(3967), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3967), + [anon_sym_OBJC_EXPORT] = ACTIONS(3967), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3967), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3967), + [anon_sym_const] = ACTIONS(3967), + [anon_sym_constexpr] = ACTIONS(3967), + [anon_sym_volatile] = ACTIONS(3967), + [anon_sym_restrict] = ACTIONS(3967), + [anon_sym___restrict__] = ACTIONS(3967), + [anon_sym__Atomic] = ACTIONS(3967), + [anon_sym__Noreturn] = ACTIONS(3967), + [anon_sym__Nonnull] = ACTIONS(3967), + [anon_sym_nullable] = ACTIONS(3967), + [anon_sym__Complex] = ACTIONS(3967), + [anon_sym__Nullable] = ACTIONS(3967), + [anon_sym__Nullable_result] = ACTIONS(3967), + [anon_sym__Null_unspecified] = ACTIONS(3967), + [anon_sym___autoreleasing] = ACTIONS(3967), + [anon_sym___block] = ACTIONS(3967), + [anon_sym___bridge] = ACTIONS(3967), + [anon_sym___bridge_retained] = ACTIONS(3967), + [anon_sym___bridge_transfer] = ACTIONS(3967), + [anon_sym___complex] = ACTIONS(3967), + [anon_sym___const] = ACTIONS(3967), + [anon_sym___imag] = ACTIONS(3967), + [anon_sym___kindof] = ACTIONS(3967), + [anon_sym___nonnull] = ACTIONS(3967), + [anon_sym___nullable] = ACTIONS(3967), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3967), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3967), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3967), + [anon_sym___real] = ACTIONS(3967), + [anon_sym___strong] = ACTIONS(3967), + [anon_sym___unsafe_unretained] = ACTIONS(3967), + [anon_sym___unused] = ACTIONS(3967), + [anon_sym___weak] = ACTIONS(3967), + [anon_sym_alignas] = ACTIONS(3967), + [anon_sym__Alignas] = ACTIONS(3967), + [anon_sym_COLON] = ACTIONS(3965), + [anon_sym_QMARK] = ACTIONS(3965), + [anon_sym_DASH_DASH] = ACTIONS(3965), + [anon_sym_PLUS_PLUS] = ACTIONS(3965), + [anon_sym_DOT] = ACTIONS(3967), + [anon_sym_DASH_GT] = ACTIONS(3965), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3967), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3967), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3967), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3967), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3967), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3967), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3967), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3967), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3967), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3967), + [anon_sym_NS_AVAILABLE] = ACTIONS(3967), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3967), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3967), + [anon_sym_API_AVAILABLE] = ACTIONS(3967), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3967), + [anon_sym_API_DEPRECATED] = ACTIONS(3967), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3967), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3967), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3967), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3967), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3967), + [anon_sym___deprecated_msg] = ACTIONS(3967), + [anon_sym___deprecated_enum_msg] = ACTIONS(3967), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3967), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3967), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3967), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3967), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3967), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3967), + }, + [1925] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4466), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4992), + [anon_sym_COMMA] = ACTIONS(4470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4470), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4982), + [anon_sym_PERCENT] = ACTIONS(4982), + [anon_sym_PIPE_PIPE] = ACTIONS(4994), + [anon_sym_AMP_AMP] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4998), + [anon_sym_CARET] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_EQ_EQ] = ACTIONS(4984), + [anon_sym_BANG_EQ] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4986), + [anon_sym_GT_EQ] = ACTIONS(4988), + [anon_sym_LT_EQ] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4986), + [anon_sym_LT_LT] = ACTIONS(4990), + [anon_sym_GT_GT] = ACTIONS(4990), + [anon_sym___extension__] = ACTIONS(4466), + [anon_sym_extern] = ACTIONS(4466), + [anon_sym___attribute__] = ACTIONS(4466), + [anon_sym___attribute] = ACTIONS(4466), + [anon_sym_noreturn] = ACTIONS(4466), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4466), + [anon_sym_RBRACE] = ACTIONS(4470), + [anon_sym_static] = ACTIONS(4466), + [anon_sym_EQ] = ACTIONS(4466), + [anon_sym_auto] = ACTIONS(4466), + [anon_sym_register] = ACTIONS(4466), + [anon_sym_inline] = ACTIONS(4466), + [anon_sym___inline] = ACTIONS(4466), + [anon_sym___inline__] = ACTIONS(4466), + [anon_sym___forceinline] = ACTIONS(4466), + [anon_sym_thread_local] = ACTIONS(4466), + [anon_sym___thread] = ACTIONS(4466), + [anon_sym_CG_EXTERN] = ACTIONS(4466), + [anon_sym_CG_INLINE] = ACTIONS(4466), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4466), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4466), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4466), + [anon_sym_IBOutlet] = ACTIONS(4466), + [anon_sym_IBInspectable] = ACTIONS(4466), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4466), + [anon_sym_NS_INLINE] = ACTIONS(4466), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4466), + [anon_sym_OBJC_EXPORT] = ACTIONS(4466), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4466), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4466), + [anon_sym_const] = ACTIONS(4466), + [anon_sym_constexpr] = ACTIONS(4466), + [anon_sym_volatile] = ACTIONS(4466), + [anon_sym_restrict] = ACTIONS(4466), + [anon_sym___restrict__] = ACTIONS(4466), + [anon_sym__Atomic] = ACTIONS(4466), + [anon_sym__Noreturn] = ACTIONS(4466), + [anon_sym__Nonnull] = ACTIONS(4466), + [anon_sym_nullable] = ACTIONS(4466), + [anon_sym__Complex] = ACTIONS(4466), + [anon_sym__Nullable] = ACTIONS(4466), + [anon_sym__Nullable_result] = ACTIONS(4466), + [anon_sym__Null_unspecified] = ACTIONS(4466), + [anon_sym___autoreleasing] = ACTIONS(4466), + [anon_sym___block] = ACTIONS(4466), + [anon_sym___bridge] = ACTIONS(4466), + [anon_sym___bridge_retained] = ACTIONS(4466), + [anon_sym___bridge_transfer] = ACTIONS(4466), + [anon_sym___complex] = ACTIONS(4466), + [anon_sym___const] = ACTIONS(4466), + [anon_sym___imag] = ACTIONS(4466), + [anon_sym___kindof] = ACTIONS(4466), + [anon_sym___nonnull] = ACTIONS(4466), + [anon_sym___nullable] = ACTIONS(4466), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4466), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4466), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4466), + [anon_sym___real] = ACTIONS(4466), + [anon_sym___strong] = ACTIONS(4466), + [anon_sym___unsafe_unretained] = ACTIONS(4466), + [anon_sym___unused] = ACTIONS(4466), + [anon_sym___weak] = ACTIONS(4466), + [anon_sym_alignas] = ACTIONS(4466), + [anon_sym__Alignas] = ACTIONS(4466), + [anon_sym_QMARK] = ACTIONS(5017), + [anon_sym_STAR_EQ] = ACTIONS(4470), + [anon_sym_SLASH_EQ] = ACTIONS(4470), + [anon_sym_PERCENT_EQ] = ACTIONS(4470), + [anon_sym_PLUS_EQ] = ACTIONS(4470), + [anon_sym_DASH_EQ] = ACTIONS(4470), + [anon_sym_LT_LT_EQ] = ACTIONS(4470), + [anon_sym_GT_GT_EQ] = ACTIONS(4470), + [anon_sym_AMP_EQ] = ACTIONS(4470), + [anon_sym_CARET_EQ] = ACTIONS(4470), + [anon_sym_PIPE_EQ] = ACTIONS(4470), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4466), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4466), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4466), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4466), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4466), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4466), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4466), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4466), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4466), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4466), + [anon_sym_NS_AVAILABLE] = ACTIONS(4466), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4466), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4466), + [anon_sym_API_AVAILABLE] = ACTIONS(4466), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4466), + [anon_sym_API_DEPRECATED] = ACTIONS(4466), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4466), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4466), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4466), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4466), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4466), + [anon_sym___deprecated_msg] = ACTIONS(4466), + [anon_sym___deprecated_enum_msg] = ACTIONS(4466), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4466), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4466), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4466), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4466), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4466), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4466), + }, + [1926] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4482), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4992), + [anon_sym_COMMA] = ACTIONS(4484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4484), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4982), + [anon_sym_PERCENT] = ACTIONS(4982), + [anon_sym_PIPE_PIPE] = ACTIONS(4994), + [anon_sym_AMP_AMP] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4998), + [anon_sym_CARET] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_EQ_EQ] = ACTIONS(4984), + [anon_sym_BANG_EQ] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4986), + [anon_sym_GT_EQ] = ACTIONS(4988), + [anon_sym_LT_EQ] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4986), + [anon_sym_LT_LT] = ACTIONS(4990), + [anon_sym_GT_GT] = ACTIONS(4990), + [anon_sym___extension__] = ACTIONS(4482), + [anon_sym_extern] = ACTIONS(4482), + [anon_sym___attribute__] = ACTIONS(4482), + [anon_sym___attribute] = ACTIONS(4482), + [anon_sym_noreturn] = ACTIONS(4482), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4482), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_static] = ACTIONS(4482), + [anon_sym_EQ] = ACTIONS(4482), + [anon_sym_auto] = ACTIONS(4482), + [anon_sym_register] = ACTIONS(4482), + [anon_sym_inline] = ACTIONS(4482), + [anon_sym___inline] = ACTIONS(4482), + [anon_sym___inline__] = ACTIONS(4482), + [anon_sym___forceinline] = ACTIONS(4482), + [anon_sym_thread_local] = ACTIONS(4482), + [anon_sym___thread] = ACTIONS(4482), + [anon_sym_CG_EXTERN] = ACTIONS(4482), + [anon_sym_CG_INLINE] = ACTIONS(4482), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4482), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4482), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4482), + [anon_sym_IBOutlet] = ACTIONS(4482), + [anon_sym_IBInspectable] = ACTIONS(4482), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4482), + [anon_sym_NS_INLINE] = ACTIONS(4482), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4482), + [anon_sym_OBJC_EXPORT] = ACTIONS(4482), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4482), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4482), + [anon_sym_const] = ACTIONS(4482), + [anon_sym_constexpr] = ACTIONS(4482), + [anon_sym_volatile] = ACTIONS(4482), + [anon_sym_restrict] = ACTIONS(4482), + [anon_sym___restrict__] = ACTIONS(4482), + [anon_sym__Atomic] = ACTIONS(4482), + [anon_sym__Noreturn] = ACTIONS(4482), + [anon_sym__Nonnull] = ACTIONS(4482), + [anon_sym_nullable] = ACTIONS(4482), + [anon_sym__Complex] = ACTIONS(4482), + [anon_sym__Nullable] = ACTIONS(4482), + [anon_sym__Nullable_result] = ACTIONS(4482), + [anon_sym__Null_unspecified] = ACTIONS(4482), + [anon_sym___autoreleasing] = ACTIONS(4482), + [anon_sym___block] = ACTIONS(4482), + [anon_sym___bridge] = ACTIONS(4482), + [anon_sym___bridge_retained] = ACTIONS(4482), + [anon_sym___bridge_transfer] = ACTIONS(4482), + [anon_sym___complex] = ACTIONS(4482), + [anon_sym___const] = ACTIONS(4482), + [anon_sym___imag] = ACTIONS(4482), + [anon_sym___kindof] = ACTIONS(4482), + [anon_sym___nonnull] = ACTIONS(4482), + [anon_sym___nullable] = ACTIONS(4482), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4482), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4482), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4482), + [anon_sym___real] = ACTIONS(4482), + [anon_sym___strong] = ACTIONS(4482), + [anon_sym___unsafe_unretained] = ACTIONS(4482), + [anon_sym___unused] = ACTIONS(4482), + [anon_sym___weak] = ACTIONS(4482), + [anon_sym_alignas] = ACTIONS(4482), + [anon_sym__Alignas] = ACTIONS(4482), + [anon_sym_QMARK] = ACTIONS(4484), + [anon_sym_STAR_EQ] = ACTIONS(4484), + [anon_sym_SLASH_EQ] = ACTIONS(4484), + [anon_sym_PERCENT_EQ] = ACTIONS(4484), + [anon_sym_PLUS_EQ] = ACTIONS(4484), + [anon_sym_DASH_EQ] = ACTIONS(4484), + [anon_sym_LT_LT_EQ] = ACTIONS(4484), + [anon_sym_GT_GT_EQ] = ACTIONS(4484), + [anon_sym_AMP_EQ] = ACTIONS(4484), + [anon_sym_CARET_EQ] = ACTIONS(4484), + [anon_sym_PIPE_EQ] = ACTIONS(4484), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4482), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4482), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4482), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4482), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4482), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4482), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4482), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4482), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4482), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4482), + [anon_sym_NS_AVAILABLE] = ACTIONS(4482), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4482), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4482), + [anon_sym_API_AVAILABLE] = ACTIONS(4482), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4482), + [anon_sym_API_DEPRECATED] = ACTIONS(4482), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4482), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4482), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4482), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4482), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4482), + [anon_sym___deprecated_msg] = ACTIONS(4482), + [anon_sym___deprecated_enum_msg] = ACTIONS(4482), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4482), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4482), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4482), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4482), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4482), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4482), + }, + [1927] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4025), + [anon_sym_PLUS] = ACTIONS(4025), + [anon_sym_STAR] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4982), + [anon_sym_PERCENT] = ACTIONS(4982), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4025), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(4025), + [anon_sym_GT_EQ] = ACTIONS(4027), + [anon_sym_LT_EQ] = ACTIONS(4027), + [anon_sym_LT] = ACTIONS(4025), + [anon_sym_LT_LT] = ACTIONS(4025), + [anon_sym_GT_GT] = ACTIONS(4025), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_RBRACE] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + }, + [1928] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4982), + [anon_sym_PERCENT] = ACTIONS(4982), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4998), + [anon_sym_CARET] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_EQ_EQ] = ACTIONS(4984), + [anon_sym_BANG_EQ] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4986), + [anon_sym_GT_EQ] = ACTIONS(4988), + [anon_sym_LT_EQ] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4986), + [anon_sym_LT_LT] = ACTIONS(4990), + [anon_sym_GT_GT] = ACTIONS(4990), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_RBRACE] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + }, + [1929] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4982), + [anon_sym_PERCENT] = ACTIONS(4982), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4998), + [anon_sym_CARET] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_EQ_EQ] = ACTIONS(4984), + [anon_sym_BANG_EQ] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4986), + [anon_sym_GT_EQ] = ACTIONS(4988), + [anon_sym_LT_EQ] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4986), + [anon_sym_LT_LT] = ACTIONS(4990), + [anon_sym_GT_GT] = ACTIONS(4990), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_RBRACE] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + }, + [1930] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4982), + [anon_sym_PERCENT] = ACTIONS(4982), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_EQ_EQ] = ACTIONS(4984), + [anon_sym_BANG_EQ] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4986), + [anon_sym_GT_EQ] = ACTIONS(4988), + [anon_sym_LT_EQ] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4986), + [anon_sym_LT_LT] = ACTIONS(4990), + [anon_sym_GT_GT] = ACTIONS(4990), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_RBRACE] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + }, + [1931] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4982), + [anon_sym_PERCENT] = ACTIONS(4982), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4025), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_EQ_EQ] = ACTIONS(4984), + [anon_sym_BANG_EQ] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4986), + [anon_sym_GT_EQ] = ACTIONS(4988), + [anon_sym_LT_EQ] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4986), + [anon_sym_LT_LT] = ACTIONS(4990), + [anon_sym_GT_GT] = ACTIONS(4990), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_RBRACE] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + }, + [1932] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4982), + [anon_sym_PERCENT] = ACTIONS(4982), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4025), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(4986), + [anon_sym_GT_EQ] = ACTIONS(4988), + [anon_sym_LT_EQ] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4986), + [anon_sym_LT_LT] = ACTIONS(4990), + [anon_sym_GT_GT] = ACTIONS(4990), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_RBRACE] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + }, + [1933] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4982), + [anon_sym_PERCENT] = ACTIONS(4982), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4025), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(4025), + [anon_sym_GT_EQ] = ACTIONS(4027), + [anon_sym_LT_EQ] = ACTIONS(4027), + [anon_sym_LT] = ACTIONS(4025), + [anon_sym_LT_LT] = ACTIONS(4990), + [anon_sym_GT_GT] = ACTIONS(4990), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_RBRACE] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + }, + [1934] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4982), + [anon_sym_PERCENT] = ACTIONS(4982), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4025), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(4025), + [anon_sym_GT_EQ] = ACTIONS(4027), + [anon_sym_LT_EQ] = ACTIONS(4027), + [anon_sym_LT] = ACTIONS(4025), + [anon_sym_LT_LT] = ACTIONS(4025), + [anon_sym_GT_GT] = ACTIONS(4025), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_RBRACE] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + }, + [1935] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4486), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4992), + [anon_sym_COMMA] = ACTIONS(4488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4488), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4982), + [anon_sym_PERCENT] = ACTIONS(4982), + [anon_sym_PIPE_PIPE] = ACTIONS(4994), + [anon_sym_AMP_AMP] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4998), + [anon_sym_CARET] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_EQ_EQ] = ACTIONS(4984), + [anon_sym_BANG_EQ] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4986), + [anon_sym_GT_EQ] = ACTIONS(4988), + [anon_sym_LT_EQ] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4986), + [anon_sym_LT_LT] = ACTIONS(4990), + [anon_sym_GT_GT] = ACTIONS(4990), + [anon_sym___extension__] = ACTIONS(4486), + [anon_sym_extern] = ACTIONS(4486), + [anon_sym___attribute__] = ACTIONS(4486), + [anon_sym___attribute] = ACTIONS(4486), + [anon_sym_noreturn] = ACTIONS(4486), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4486), + [anon_sym_RBRACE] = ACTIONS(4488), + [anon_sym_static] = ACTIONS(4486), + [anon_sym_EQ] = ACTIONS(4486), + [anon_sym_auto] = ACTIONS(4486), + [anon_sym_register] = ACTIONS(4486), + [anon_sym_inline] = ACTIONS(4486), + [anon_sym___inline] = ACTIONS(4486), + [anon_sym___inline__] = ACTIONS(4486), + [anon_sym___forceinline] = ACTIONS(4486), + [anon_sym_thread_local] = ACTIONS(4486), + [anon_sym___thread] = ACTIONS(4486), + [anon_sym_CG_EXTERN] = ACTIONS(4486), + [anon_sym_CG_INLINE] = ACTIONS(4486), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4486), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4486), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4486), + [anon_sym_IBOutlet] = ACTIONS(4486), + [anon_sym_IBInspectable] = ACTIONS(4486), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4486), + [anon_sym_NS_INLINE] = ACTIONS(4486), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4486), + [anon_sym_OBJC_EXPORT] = ACTIONS(4486), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4486), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4486), + [anon_sym_const] = ACTIONS(4486), + [anon_sym_constexpr] = ACTIONS(4486), + [anon_sym_volatile] = ACTIONS(4486), + [anon_sym_restrict] = ACTIONS(4486), + [anon_sym___restrict__] = ACTIONS(4486), + [anon_sym__Atomic] = ACTIONS(4486), + [anon_sym__Noreturn] = ACTIONS(4486), + [anon_sym__Nonnull] = ACTIONS(4486), + [anon_sym_nullable] = ACTIONS(4486), + [anon_sym__Complex] = ACTIONS(4486), + [anon_sym__Nullable] = ACTIONS(4486), + [anon_sym__Nullable_result] = ACTIONS(4486), + [anon_sym__Null_unspecified] = ACTIONS(4486), + [anon_sym___autoreleasing] = ACTIONS(4486), + [anon_sym___block] = ACTIONS(4486), + [anon_sym___bridge] = ACTIONS(4486), + [anon_sym___bridge_retained] = ACTIONS(4486), + [anon_sym___bridge_transfer] = ACTIONS(4486), + [anon_sym___complex] = ACTIONS(4486), + [anon_sym___const] = ACTIONS(4486), + [anon_sym___imag] = ACTIONS(4486), + [anon_sym___kindof] = ACTIONS(4486), + [anon_sym___nonnull] = ACTIONS(4486), + [anon_sym___nullable] = ACTIONS(4486), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4486), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4486), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4486), + [anon_sym___real] = ACTIONS(4486), + [anon_sym___strong] = ACTIONS(4486), + [anon_sym___unsafe_unretained] = ACTIONS(4486), + [anon_sym___unused] = ACTIONS(4486), + [anon_sym___weak] = ACTIONS(4486), + [anon_sym_alignas] = ACTIONS(4486), + [anon_sym__Alignas] = ACTIONS(4486), + [anon_sym_QMARK] = ACTIONS(5017), + [anon_sym_STAR_EQ] = ACTIONS(4488), + [anon_sym_SLASH_EQ] = ACTIONS(4488), + [anon_sym_PERCENT_EQ] = ACTIONS(4488), + [anon_sym_PLUS_EQ] = ACTIONS(4488), + [anon_sym_DASH_EQ] = ACTIONS(4488), + [anon_sym_LT_LT_EQ] = ACTIONS(4488), + [anon_sym_GT_GT_EQ] = ACTIONS(4488), + [anon_sym_AMP_EQ] = ACTIONS(4488), + [anon_sym_CARET_EQ] = ACTIONS(4488), + [anon_sym_PIPE_EQ] = ACTIONS(4488), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4486), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4486), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4486), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4486), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4486), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4486), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4486), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4486), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4486), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4486), + [anon_sym_NS_AVAILABLE] = ACTIONS(4486), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4486), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4486), + [anon_sym_API_AVAILABLE] = ACTIONS(4486), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4486), + [anon_sym_API_DEPRECATED] = ACTIONS(4486), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4486), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4486), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4486), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4486), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4486), + [anon_sym___deprecated_msg] = ACTIONS(4486), + [anon_sym___deprecated_enum_msg] = ACTIONS(4486), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4486), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4486), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4486), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4486), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4486), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4486), + }, + [1936] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4474), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4992), + [anon_sym_COMMA] = ACTIONS(4476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4476), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4982), + [anon_sym_PERCENT] = ACTIONS(4982), + [anon_sym_PIPE_PIPE] = ACTIONS(4994), + [anon_sym_AMP_AMP] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4998), + [anon_sym_CARET] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_EQ_EQ] = ACTIONS(4984), + [anon_sym_BANG_EQ] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4986), + [anon_sym_GT_EQ] = ACTIONS(4988), + [anon_sym_LT_EQ] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4986), + [anon_sym_LT_LT] = ACTIONS(4990), + [anon_sym_GT_GT] = ACTIONS(4990), + [anon_sym___extension__] = ACTIONS(4474), + [anon_sym_extern] = ACTIONS(4474), + [anon_sym___attribute__] = ACTIONS(4474), + [anon_sym___attribute] = ACTIONS(4474), + [anon_sym_noreturn] = ACTIONS(4474), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4474), + [anon_sym_RBRACE] = ACTIONS(4476), + [anon_sym_static] = ACTIONS(4474), + [anon_sym_EQ] = ACTIONS(4474), + [anon_sym_auto] = ACTIONS(4474), + [anon_sym_register] = ACTIONS(4474), + [anon_sym_inline] = ACTIONS(4474), + [anon_sym___inline] = ACTIONS(4474), + [anon_sym___inline__] = ACTIONS(4474), + [anon_sym___forceinline] = ACTIONS(4474), + [anon_sym_thread_local] = ACTIONS(4474), + [anon_sym___thread] = ACTIONS(4474), + [anon_sym_CG_EXTERN] = ACTIONS(4474), + [anon_sym_CG_INLINE] = ACTIONS(4474), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4474), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4474), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4474), + [anon_sym_IBOutlet] = ACTIONS(4474), + [anon_sym_IBInspectable] = ACTIONS(4474), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4474), + [anon_sym_NS_INLINE] = ACTIONS(4474), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4474), + [anon_sym_OBJC_EXPORT] = ACTIONS(4474), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4474), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4474), + [anon_sym_const] = ACTIONS(4474), + [anon_sym_constexpr] = ACTIONS(4474), + [anon_sym_volatile] = ACTIONS(4474), + [anon_sym_restrict] = ACTIONS(4474), + [anon_sym___restrict__] = ACTIONS(4474), + [anon_sym__Atomic] = ACTIONS(4474), + [anon_sym__Noreturn] = ACTIONS(4474), + [anon_sym__Nonnull] = ACTIONS(4474), + [anon_sym_nullable] = ACTIONS(4474), + [anon_sym__Complex] = ACTIONS(4474), + [anon_sym__Nullable] = ACTIONS(4474), + [anon_sym__Nullable_result] = ACTIONS(4474), + [anon_sym__Null_unspecified] = ACTIONS(4474), + [anon_sym___autoreleasing] = ACTIONS(4474), + [anon_sym___block] = ACTIONS(4474), + [anon_sym___bridge] = ACTIONS(4474), + [anon_sym___bridge_retained] = ACTIONS(4474), + [anon_sym___bridge_transfer] = ACTIONS(4474), + [anon_sym___complex] = ACTIONS(4474), + [anon_sym___const] = ACTIONS(4474), + [anon_sym___imag] = ACTIONS(4474), + [anon_sym___kindof] = ACTIONS(4474), + [anon_sym___nonnull] = ACTIONS(4474), + [anon_sym___nullable] = ACTIONS(4474), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4474), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4474), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4474), + [anon_sym___real] = ACTIONS(4474), + [anon_sym___strong] = ACTIONS(4474), + [anon_sym___unsafe_unretained] = ACTIONS(4474), + [anon_sym___unused] = ACTIONS(4474), + [anon_sym___weak] = ACTIONS(4474), + [anon_sym_alignas] = ACTIONS(4474), + [anon_sym__Alignas] = ACTIONS(4474), + [anon_sym_QMARK] = ACTIONS(5017), + [anon_sym_STAR_EQ] = ACTIONS(4476), + [anon_sym_SLASH_EQ] = ACTIONS(4476), + [anon_sym_PERCENT_EQ] = ACTIONS(4476), + [anon_sym_PLUS_EQ] = ACTIONS(4476), + [anon_sym_DASH_EQ] = ACTIONS(4476), + [anon_sym_LT_LT_EQ] = ACTIONS(4476), + [anon_sym_GT_GT_EQ] = ACTIONS(4476), + [anon_sym_AMP_EQ] = ACTIONS(4476), + [anon_sym_CARET_EQ] = ACTIONS(4476), + [anon_sym_PIPE_EQ] = ACTIONS(4476), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4474), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4474), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4474), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4474), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4474), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4474), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4474), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4474), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4474), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4474), + [anon_sym_NS_AVAILABLE] = ACTIONS(4474), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4474), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4474), + [anon_sym_API_AVAILABLE] = ACTIONS(4474), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4474), + [anon_sym_API_DEPRECATED] = ACTIONS(4474), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4474), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4474), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4474), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4474), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4474), + [anon_sym___deprecated_msg] = ACTIONS(4474), + [anon_sym___deprecated_enum_msg] = ACTIONS(4474), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4474), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4474), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4474), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4474), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4474), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4474), + }, + [1937] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5019), + [anon_sym_COMMA] = ACTIONS(4442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4442), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4982), + [anon_sym_PERCENT] = ACTIONS(4982), + [anon_sym_PIPE_PIPE] = ACTIONS(4994), + [anon_sym_AMP_AMP] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4998), + [anon_sym_CARET] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_EQ_EQ] = ACTIONS(4984), + [anon_sym_BANG_EQ] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4986), + [anon_sym_GT_EQ] = ACTIONS(4988), + [anon_sym_LT_EQ] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4986), + [anon_sym_LT_LT] = ACTIONS(4990), + [anon_sym_GT_GT] = ACTIONS(4990), + [anon_sym___extension__] = ACTIONS(4437), + [anon_sym_extern] = ACTIONS(4437), + [anon_sym___attribute__] = ACTIONS(4437), + [anon_sym___attribute] = ACTIONS(4437), + [anon_sym_noreturn] = ACTIONS(4437), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4437), + [anon_sym_RBRACE] = ACTIONS(4442), + [anon_sym_static] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4437), + [anon_sym_auto] = ACTIONS(4437), + [anon_sym_register] = ACTIONS(4437), + [anon_sym_inline] = ACTIONS(4437), + [anon_sym___inline] = ACTIONS(4437), + [anon_sym___inline__] = ACTIONS(4437), + [anon_sym___forceinline] = ACTIONS(4437), + [anon_sym_thread_local] = ACTIONS(4437), + [anon_sym___thread] = ACTIONS(4437), + [anon_sym_CG_EXTERN] = ACTIONS(4437), + [anon_sym_CG_INLINE] = ACTIONS(4437), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4437), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4437), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4437), + [anon_sym_IBOutlet] = ACTIONS(4437), + [anon_sym_IBInspectable] = ACTIONS(4437), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4437), + [anon_sym_NS_INLINE] = ACTIONS(4437), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4437), + [anon_sym_OBJC_EXPORT] = ACTIONS(4437), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4437), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4437), + [anon_sym_const] = ACTIONS(4437), + [anon_sym_constexpr] = ACTIONS(4437), + [anon_sym_volatile] = ACTIONS(4437), + [anon_sym_restrict] = ACTIONS(4437), + [anon_sym___restrict__] = ACTIONS(4437), + [anon_sym__Atomic] = ACTIONS(4437), + [anon_sym__Noreturn] = ACTIONS(4437), + [anon_sym__Nonnull] = ACTIONS(4437), + [anon_sym_nullable] = ACTIONS(4437), + [anon_sym__Complex] = ACTIONS(4437), + [anon_sym__Nullable] = ACTIONS(4437), + [anon_sym__Nullable_result] = ACTIONS(4437), + [anon_sym__Null_unspecified] = ACTIONS(4437), + [anon_sym___autoreleasing] = ACTIONS(4437), + [anon_sym___block] = ACTIONS(4437), + [anon_sym___bridge] = ACTIONS(4437), + [anon_sym___bridge_retained] = ACTIONS(4437), + [anon_sym___bridge_transfer] = ACTIONS(4437), + [anon_sym___complex] = ACTIONS(4437), + [anon_sym___const] = ACTIONS(4437), + [anon_sym___imag] = ACTIONS(4437), + [anon_sym___kindof] = ACTIONS(4437), + [anon_sym___nonnull] = ACTIONS(4437), + [anon_sym___nullable] = ACTIONS(4437), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4437), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4437), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4437), + [anon_sym___real] = ACTIONS(4437), + [anon_sym___strong] = ACTIONS(4437), + [anon_sym___unsafe_unretained] = ACTIONS(4437), + [anon_sym___unused] = ACTIONS(4437), + [anon_sym___weak] = ACTIONS(4437), + [anon_sym_alignas] = ACTIONS(4437), + [anon_sym__Alignas] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_STAR_EQ] = ACTIONS(4442), + [anon_sym_SLASH_EQ] = ACTIONS(4442), + [anon_sym_PERCENT_EQ] = ACTIONS(4442), + [anon_sym_PLUS_EQ] = ACTIONS(4442), + [anon_sym_DASH_EQ] = ACTIONS(4442), + [anon_sym_LT_LT_EQ] = ACTIONS(4442), + [anon_sym_GT_GT_EQ] = ACTIONS(4442), + [anon_sym_AMP_EQ] = ACTIONS(4442), + [anon_sym_CARET_EQ] = ACTIONS(4442), + [anon_sym_PIPE_EQ] = ACTIONS(4442), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4437), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4437), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4437), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4437), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4437), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4437), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4437), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4437), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4437), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4437), + [anon_sym_NS_AVAILABLE] = ACTIONS(4437), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4437), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4437), + [anon_sym_API_AVAILABLE] = ACTIONS(4437), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4437), + [anon_sym_API_DEPRECATED] = ACTIONS(4437), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4437), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4437), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4437), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4437), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4437), + [anon_sym___deprecated_msg] = ACTIONS(4437), + [anon_sym___deprecated_enum_msg] = ACTIONS(4437), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4437), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4437), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4437), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4437), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4437), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4437), + }, + [1938] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2266), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4850), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1939] = { + [sym_identifier] = ACTIONS(2428), + [aux_sym_preproc_def_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2428), + [sym_preproc_directive] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2430), + [anon_sym_PLUS] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym___cdecl] = ACTIONS(2428), + [anon_sym___clrcall] = ACTIONS(2428), + [anon_sym___stdcall] = ACTIONS(2428), + [anon_sym___fastcall] = ACTIONS(2428), + [anon_sym___thiscall] = ACTIONS(2428), + [anon_sym___vectorcall] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_ATautoreleasepool] = ACTIONS(2430), + [anon_sym_auto] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_CG_EXTERN] = ACTIONS(2428), + [anon_sym_CG_INLINE] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2428), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2428), + [anon_sym_IBOutlet] = ACTIONS(2428), + [anon_sym_IBInspectable] = ACTIONS(2428), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2428), + [anon_sym_NS_INLINE] = ACTIONS(2428), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2428), + [anon_sym_OBJC_EXPORT] = ACTIONS(2428), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_nullable] = ACTIONS(2428), + [anon_sym__Complex] = ACTIONS(2428), + [anon_sym__Nullable] = ACTIONS(2428), + [anon_sym__Nullable_result] = ACTIONS(2428), + [anon_sym__Null_unspecified] = ACTIONS(2428), + [anon_sym___autoreleasing] = ACTIONS(2428), + [anon_sym___block] = ACTIONS(2428), + [anon_sym___bridge] = ACTIONS(2428), + [anon_sym___bridge_retained] = ACTIONS(2428), + [anon_sym___bridge_transfer] = ACTIONS(2428), + [anon_sym___complex] = ACTIONS(2428), + [anon_sym___const] = ACTIONS(2428), + [anon_sym___imag] = ACTIONS(2428), + [anon_sym___kindof] = ACTIONS(2428), + [anon_sym___nonnull] = ACTIONS(2428), + [anon_sym___nullable] = ACTIONS(2428), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2428), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2428), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2428), + [anon_sym___real] = ACTIONS(2428), + [anon_sym___strong] = ACTIONS(2428), + [anon_sym___unsafe_unretained] = ACTIONS(2428), + [anon_sym___unused] = ACTIONS(2428), + [anon_sym___weak] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2428), + [anon_sym___typeof] = ACTIONS(2428), + [anon_sym_typeof] = ACTIONS(2428), + [aux_sym_preproc_undef_token1] = ACTIONS(2428), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2428), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2428), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2428), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2428), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE] = ACTIONS(2428), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_API_AVAILABLE] = ACTIONS(2428), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_API_DEPRECATED] = ACTIONS(2428), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2428), + [anon_sym___deprecated_msg] = ACTIONS(2428), + [anon_sym___deprecated_enum_msg] = ACTIONS(2428), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2428), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2428), + [anon_sym_ATend] = ACTIONS(2430), + [anon_sym_AToptional] = ACTIONS(2430), + [anon_sym_ATrequired] = ACTIONS(2430), + [anon_sym_ATsynthesize] = ACTIONS(2430), + [anon_sym_ATdynamic] = ACTIONS(2430), + [anon_sym_ATproperty] = ACTIONS(2430), + [anon_sym_BOOL] = ACTIONS(2428), + [anon_sym_IMP] = ACTIONS(2428), + [anon_sym_SEL] = ACTIONS(2428), + [anon_sym_Class] = ACTIONS(2428), + [anon_sym_id] = ACTIONS(2428), + }, + [1940] = { + [sym_identifier] = ACTIONS(2432), + [aux_sym_preproc_def_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2432), + [sym_preproc_directive] = ACTIONS(2432), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym___extension__] = ACTIONS(2432), + [anon_sym_typedef] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym___attribute__] = ACTIONS(2432), + [anon_sym___attribute] = ACTIONS(2432), + [anon_sym_noreturn] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym___declspec] = ACTIONS(2432), + [anon_sym___cdecl] = ACTIONS(2432), + [anon_sym___clrcall] = ACTIONS(2432), + [anon_sym___stdcall] = ACTIONS(2432), + [anon_sym___fastcall] = ACTIONS(2432), + [anon_sym___thiscall] = ACTIONS(2432), + [anon_sym___vectorcall] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_signed] = ACTIONS(2432), + [anon_sym_unsigned] = ACTIONS(2432), + [anon_sym_long] = ACTIONS(2432), + [anon_sym_short] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_ATautoreleasepool] = ACTIONS(2434), + [anon_sym_auto] = ACTIONS(2432), + [anon_sym_register] = ACTIONS(2432), + [anon_sym_inline] = ACTIONS(2432), + [anon_sym___inline] = ACTIONS(2432), + [anon_sym___inline__] = ACTIONS(2432), + [anon_sym___forceinline] = ACTIONS(2432), + [anon_sym_thread_local] = ACTIONS(2432), + [anon_sym___thread] = ACTIONS(2432), + [anon_sym_CG_EXTERN] = ACTIONS(2432), + [anon_sym_CG_INLINE] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2432), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2432), + [anon_sym_IBOutlet] = ACTIONS(2432), + [anon_sym_IBInspectable] = ACTIONS(2432), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2432), + [anon_sym_NS_INLINE] = ACTIONS(2432), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2432), + [anon_sym_OBJC_EXPORT] = ACTIONS(2432), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_constexpr] = ACTIONS(2432), + [anon_sym_volatile] = ACTIONS(2432), + [anon_sym_restrict] = ACTIONS(2432), + [anon_sym___restrict__] = ACTIONS(2432), + [anon_sym__Atomic] = ACTIONS(2432), + [anon_sym__Noreturn] = ACTIONS(2432), + [anon_sym__Nonnull] = ACTIONS(2432), + [anon_sym_nullable] = ACTIONS(2432), + [anon_sym__Complex] = ACTIONS(2432), + [anon_sym__Nullable] = ACTIONS(2432), + [anon_sym__Nullable_result] = ACTIONS(2432), + [anon_sym__Null_unspecified] = ACTIONS(2432), + [anon_sym___autoreleasing] = ACTIONS(2432), + [anon_sym___block] = ACTIONS(2432), + [anon_sym___bridge] = ACTIONS(2432), + [anon_sym___bridge_retained] = ACTIONS(2432), + [anon_sym___bridge_transfer] = ACTIONS(2432), + [anon_sym___complex] = ACTIONS(2432), + [anon_sym___const] = ACTIONS(2432), + [anon_sym___imag] = ACTIONS(2432), + [anon_sym___kindof] = ACTIONS(2432), + [anon_sym___nonnull] = ACTIONS(2432), + [anon_sym___nullable] = ACTIONS(2432), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2432), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2432), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2432), + [anon_sym___real] = ACTIONS(2432), + [anon_sym___strong] = ACTIONS(2432), + [anon_sym___unsafe_unretained] = ACTIONS(2432), + [anon_sym___unused] = ACTIONS(2432), + [anon_sym___weak] = ACTIONS(2432), + [anon_sym_alignas] = ACTIONS(2432), + [anon_sym__Alignas] = ACTIONS(2432), + [sym_primitive_type] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2432), + [anon_sym___typeof] = ACTIONS(2432), + [anon_sym_typeof] = ACTIONS(2432), + [aux_sym_preproc_undef_token1] = ACTIONS(2432), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2432), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2432), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2432), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2432), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE] = ACTIONS(2432), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_API_AVAILABLE] = ACTIONS(2432), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_API_DEPRECATED] = ACTIONS(2432), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2432), + [anon_sym___deprecated_msg] = ACTIONS(2432), + [anon_sym___deprecated_enum_msg] = ACTIONS(2432), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2432), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2432), + [anon_sym_ATend] = ACTIONS(2434), + [anon_sym_AToptional] = ACTIONS(2434), + [anon_sym_ATrequired] = ACTIONS(2434), + [anon_sym_ATsynthesize] = ACTIONS(2434), + [anon_sym_ATdynamic] = ACTIONS(2434), + [anon_sym_ATproperty] = ACTIONS(2434), + [anon_sym_BOOL] = ACTIONS(2432), + [anon_sym_IMP] = ACTIONS(2432), + [anon_sym_SEL] = ACTIONS(2432), + [anon_sym_Class] = ACTIONS(2432), + [anon_sym_id] = ACTIONS(2432), + }, + [1941] = { + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_DASH] = ACTIONS(2426), + [anon_sym_PLUS] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_ATautoreleasepool] = ACTIONS(2426), + [anon_sym_auto] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_CG_EXTERN] = ACTIONS(2424), + [anon_sym_CG_INLINE] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2424), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2424), + [anon_sym_IBOutlet] = ACTIONS(2424), + [anon_sym_IBInspectable] = ACTIONS(2424), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2424), + [anon_sym_NS_INLINE] = ACTIONS(2424), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2424), + [anon_sym_OBJC_EXPORT] = ACTIONS(2424), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_nullable] = ACTIONS(2424), + [anon_sym__Complex] = ACTIONS(2424), + [anon_sym__Nullable] = ACTIONS(2424), + [anon_sym__Nullable_result] = ACTIONS(2424), + [anon_sym__Null_unspecified] = ACTIONS(2424), + [anon_sym___autoreleasing] = ACTIONS(2424), + [anon_sym___block] = ACTIONS(2424), + [anon_sym___bridge] = ACTIONS(2424), + [anon_sym___bridge_retained] = ACTIONS(2424), + [anon_sym___bridge_transfer] = ACTIONS(2424), + [anon_sym___complex] = ACTIONS(2424), + [anon_sym___const] = ACTIONS(2424), + [anon_sym___imag] = ACTIONS(2424), + [anon_sym___kindof] = ACTIONS(2424), + [anon_sym___nonnull] = ACTIONS(2424), + [anon_sym___nullable] = ACTIONS(2424), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2424), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2424), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2424), + [anon_sym___real] = ACTIONS(2424), + [anon_sym___strong] = ACTIONS(2424), + [anon_sym___unsafe_unretained] = ACTIONS(2424), + [anon_sym___unused] = ACTIONS(2424), + [anon_sym___weak] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2424), + [anon_sym___typeof] = ACTIONS(2424), + [anon_sym_typeof] = ACTIONS(2424), + [aux_sym_preproc_undef_token1] = ACTIONS(2424), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2424), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2424), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2424), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2424), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE] = ACTIONS(2424), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_API_AVAILABLE] = ACTIONS(2424), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_API_DEPRECATED] = ACTIONS(2424), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2424), + [anon_sym___deprecated_msg] = ACTIONS(2424), + [anon_sym___deprecated_enum_msg] = ACTIONS(2424), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2424), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2424), + [anon_sym_ATend] = ACTIONS(2426), + [anon_sym_AToptional] = ACTIONS(2426), + [anon_sym_ATrequired] = ACTIONS(2426), + [anon_sym_ATsynthesize] = ACTIONS(2426), + [anon_sym_ATdynamic] = ACTIONS(2426), + [anon_sym_ATproperty] = ACTIONS(2426), + [anon_sym_BOOL] = ACTIONS(2424), + [anon_sym_IMP] = ACTIONS(2424), + [anon_sym_SEL] = ACTIONS(2424), + [anon_sym_Class] = ACTIONS(2424), + [anon_sym_id] = ACTIONS(2424), + }, + [1942] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2347), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1943] = { + [sym_identifier] = ACTIONS(2432), + [aux_sym_preproc_def_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2432), + [sym_preproc_directive] = ACTIONS(2432), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym___extension__] = ACTIONS(2432), + [anon_sym_typedef] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym___attribute__] = ACTIONS(2432), + [anon_sym___attribute] = ACTIONS(2432), + [anon_sym_noreturn] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym___declspec] = ACTIONS(2432), + [anon_sym___cdecl] = ACTIONS(2432), + [anon_sym___clrcall] = ACTIONS(2432), + [anon_sym___stdcall] = ACTIONS(2432), + [anon_sym___fastcall] = ACTIONS(2432), + [anon_sym___thiscall] = ACTIONS(2432), + [anon_sym___vectorcall] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_signed] = ACTIONS(2432), + [anon_sym_unsigned] = ACTIONS(2432), + [anon_sym_long] = ACTIONS(2432), + [anon_sym_short] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_ATautoreleasepool] = ACTIONS(2434), + [anon_sym_auto] = ACTIONS(2432), + [anon_sym_register] = ACTIONS(2432), + [anon_sym_inline] = ACTIONS(2432), + [anon_sym___inline] = ACTIONS(2432), + [anon_sym___inline__] = ACTIONS(2432), + [anon_sym___forceinline] = ACTIONS(2432), + [anon_sym_thread_local] = ACTIONS(2432), + [anon_sym___thread] = ACTIONS(2432), + [anon_sym_CG_EXTERN] = ACTIONS(2432), + [anon_sym_CG_INLINE] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2432), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2432), + [anon_sym_IBOutlet] = ACTIONS(2432), + [anon_sym_IBInspectable] = ACTIONS(2432), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2432), + [anon_sym_NS_INLINE] = ACTIONS(2432), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2432), + [anon_sym_OBJC_EXPORT] = ACTIONS(2432), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_constexpr] = ACTIONS(2432), + [anon_sym_volatile] = ACTIONS(2432), + [anon_sym_restrict] = ACTIONS(2432), + [anon_sym___restrict__] = ACTIONS(2432), + [anon_sym__Atomic] = ACTIONS(2432), + [anon_sym__Noreturn] = ACTIONS(2432), + [anon_sym__Nonnull] = ACTIONS(2432), + [anon_sym_nullable] = ACTIONS(2432), + [anon_sym__Complex] = ACTIONS(2432), + [anon_sym__Nullable] = ACTIONS(2432), + [anon_sym__Nullable_result] = ACTIONS(2432), + [anon_sym__Null_unspecified] = ACTIONS(2432), + [anon_sym___autoreleasing] = ACTIONS(2432), + [anon_sym___block] = ACTIONS(2432), + [anon_sym___bridge] = ACTIONS(2432), + [anon_sym___bridge_retained] = ACTIONS(2432), + [anon_sym___bridge_transfer] = ACTIONS(2432), + [anon_sym___complex] = ACTIONS(2432), + [anon_sym___const] = ACTIONS(2432), + [anon_sym___imag] = ACTIONS(2432), + [anon_sym___kindof] = ACTIONS(2432), + [anon_sym___nonnull] = ACTIONS(2432), + [anon_sym___nullable] = ACTIONS(2432), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2432), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2432), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2432), + [anon_sym___real] = ACTIONS(2432), + [anon_sym___strong] = ACTIONS(2432), + [anon_sym___unsafe_unretained] = ACTIONS(2432), + [anon_sym___unused] = ACTIONS(2432), + [anon_sym___weak] = ACTIONS(2432), + [anon_sym_alignas] = ACTIONS(2432), + [anon_sym__Alignas] = ACTIONS(2432), + [sym_primitive_type] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2432), + [anon_sym___typeof] = ACTIONS(2432), + [anon_sym_typeof] = ACTIONS(2432), + [aux_sym_preproc_undef_token1] = ACTIONS(2432), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2432), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2432), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2432), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2432), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE] = ACTIONS(2432), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_API_AVAILABLE] = ACTIONS(2432), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_API_DEPRECATED] = ACTIONS(2432), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2432), + [anon_sym___deprecated_msg] = ACTIONS(2432), + [anon_sym___deprecated_enum_msg] = ACTIONS(2432), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2432), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2432), + [anon_sym_ATend] = ACTIONS(2434), + [anon_sym_AToptional] = ACTIONS(2434), + [anon_sym_ATrequired] = ACTIONS(2434), + [anon_sym_ATsynthesize] = ACTIONS(2434), + [anon_sym_ATdynamic] = ACTIONS(2434), + [anon_sym_ATproperty] = ACTIONS(2434), + [anon_sym_BOOL] = ACTIONS(2432), + [anon_sym_IMP] = ACTIONS(2432), + [anon_sym_SEL] = ACTIONS(2432), + [anon_sym_Class] = ACTIONS(2432), + [anon_sym_id] = ACTIONS(2432), + }, + [1944] = { + [sym_identifier] = ACTIONS(2428), + [aux_sym_preproc_def_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2428), + [sym_preproc_directive] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2430), + [anon_sym_PLUS] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym___cdecl] = ACTIONS(2428), + [anon_sym___clrcall] = ACTIONS(2428), + [anon_sym___stdcall] = ACTIONS(2428), + [anon_sym___fastcall] = ACTIONS(2428), + [anon_sym___thiscall] = ACTIONS(2428), + [anon_sym___vectorcall] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_ATautoreleasepool] = ACTIONS(2430), + [anon_sym_auto] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_CG_EXTERN] = ACTIONS(2428), + [anon_sym_CG_INLINE] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2428), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2428), + [anon_sym_IBOutlet] = ACTIONS(2428), + [anon_sym_IBInspectable] = ACTIONS(2428), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2428), + [anon_sym_NS_INLINE] = ACTIONS(2428), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2428), + [anon_sym_OBJC_EXPORT] = ACTIONS(2428), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_nullable] = ACTIONS(2428), + [anon_sym__Complex] = ACTIONS(2428), + [anon_sym__Nullable] = ACTIONS(2428), + [anon_sym__Nullable_result] = ACTIONS(2428), + [anon_sym__Null_unspecified] = ACTIONS(2428), + [anon_sym___autoreleasing] = ACTIONS(2428), + [anon_sym___block] = ACTIONS(2428), + [anon_sym___bridge] = ACTIONS(2428), + [anon_sym___bridge_retained] = ACTIONS(2428), + [anon_sym___bridge_transfer] = ACTIONS(2428), + [anon_sym___complex] = ACTIONS(2428), + [anon_sym___const] = ACTIONS(2428), + [anon_sym___imag] = ACTIONS(2428), + [anon_sym___kindof] = ACTIONS(2428), + [anon_sym___nonnull] = ACTIONS(2428), + [anon_sym___nullable] = ACTIONS(2428), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2428), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2428), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2428), + [anon_sym___real] = ACTIONS(2428), + [anon_sym___strong] = ACTIONS(2428), + [anon_sym___unsafe_unretained] = ACTIONS(2428), + [anon_sym___unused] = ACTIONS(2428), + [anon_sym___weak] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2428), + [anon_sym___typeof] = ACTIONS(2428), + [anon_sym_typeof] = ACTIONS(2428), + [aux_sym_preproc_undef_token1] = ACTIONS(2428), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2428), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2428), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2428), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2428), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE] = ACTIONS(2428), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_API_AVAILABLE] = ACTIONS(2428), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_API_DEPRECATED] = ACTIONS(2428), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2428), + [anon_sym___deprecated_msg] = ACTIONS(2428), + [anon_sym___deprecated_enum_msg] = ACTIONS(2428), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2428), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2428), + [anon_sym_ATend] = ACTIONS(2430), + [anon_sym_AToptional] = ACTIONS(2430), + [anon_sym_ATrequired] = ACTIONS(2430), + [anon_sym_ATsynthesize] = ACTIONS(2430), + [anon_sym_ATdynamic] = ACTIONS(2430), + [anon_sym_ATproperty] = ACTIONS(2430), + [anon_sym_BOOL] = ACTIONS(2428), + [anon_sym_IMP] = ACTIONS(2428), + [anon_sym_SEL] = ACTIONS(2428), + [anon_sym_Class] = ACTIONS(2428), + [anon_sym_id] = ACTIONS(2428), + }, + [1945] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2252), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1946] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2352), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4878), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1947] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2256), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(5022), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1948] = { + [sym_identifier] = ACTIONS(4098), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4100), + [anon_sym_COMMA] = ACTIONS(4100), + [anon_sym_RPAREN] = ACTIONS(4100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4100), + [anon_sym_LPAREN2] = ACTIONS(4100), + [anon_sym_DASH] = ACTIONS(4098), + [anon_sym_PLUS] = ACTIONS(4098), + [anon_sym_STAR] = ACTIONS(4100), + [anon_sym_SLASH] = ACTIONS(4098), + [anon_sym_PERCENT] = ACTIONS(4100), + [anon_sym_PIPE_PIPE] = ACTIONS(4100), + [anon_sym_AMP_AMP] = ACTIONS(4100), + [anon_sym_PIPE] = ACTIONS(4098), + [anon_sym_CARET] = ACTIONS(4100), + [anon_sym_AMP] = ACTIONS(4098), + [anon_sym_EQ_EQ] = ACTIONS(4100), + [anon_sym_BANG_EQ] = ACTIONS(4100), + [anon_sym_GT] = ACTIONS(4098), + [anon_sym_GT_EQ] = ACTIONS(4100), + [anon_sym_LT_EQ] = ACTIONS(4100), + [anon_sym_LT] = ACTIONS(4098), + [anon_sym_LT_LT] = ACTIONS(4100), + [anon_sym_GT_GT] = ACTIONS(4100), + [anon_sym_SEMI] = ACTIONS(4100), + [anon_sym___extension__] = ACTIONS(4098), + [anon_sym_extern] = ACTIONS(4098), + [anon_sym___attribute__] = ACTIONS(4098), + [anon_sym___attribute] = ACTIONS(4098), + [anon_sym_noreturn] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_RBRACK] = ACTIONS(4100), + [anon_sym___declspec] = ACTIONS(4098), + [anon_sym_LBRACE] = ACTIONS(4100), + [anon_sym_RBRACE] = ACTIONS(4100), + [anon_sym_static] = ACTIONS(4098), + [anon_sym_EQ] = ACTIONS(4098), + [anon_sym_ATautoreleasepool] = ACTIONS(4100), + [anon_sym_auto] = ACTIONS(4098), + [anon_sym_register] = ACTIONS(4098), + [anon_sym_inline] = ACTIONS(4098), + [anon_sym___inline] = ACTIONS(4098), + [anon_sym___inline__] = ACTIONS(4098), + [anon_sym___forceinline] = ACTIONS(4098), + [anon_sym_thread_local] = ACTIONS(4098), + [anon_sym___thread] = ACTIONS(4098), + [anon_sym_CG_EXTERN] = ACTIONS(4098), + [anon_sym_CG_INLINE] = ACTIONS(4098), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4098), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4098), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4098), + [anon_sym_IBOutlet] = ACTIONS(4098), + [anon_sym_IBInspectable] = ACTIONS(4098), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4098), + [anon_sym_NS_INLINE] = ACTIONS(4098), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4098), + [anon_sym_OBJC_EXPORT] = ACTIONS(4098), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4098), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4098), + [anon_sym_const] = ACTIONS(4098), + [anon_sym_constexpr] = ACTIONS(4098), + [anon_sym_volatile] = ACTIONS(4098), + [anon_sym_restrict] = ACTIONS(4098), + [anon_sym___restrict__] = ACTIONS(4098), + [anon_sym__Atomic] = ACTIONS(4098), + [anon_sym__Noreturn] = ACTIONS(4098), + [anon_sym__Nonnull] = ACTIONS(4098), + [anon_sym_nullable] = ACTIONS(4098), + [anon_sym__Complex] = ACTIONS(4098), + [anon_sym__Nullable] = ACTIONS(4098), + [anon_sym__Nullable_result] = ACTIONS(4098), + [anon_sym__Null_unspecified] = ACTIONS(4098), + [anon_sym___autoreleasing] = ACTIONS(4098), + [anon_sym___block] = ACTIONS(4098), + [anon_sym___bridge] = ACTIONS(4098), + [anon_sym___bridge_retained] = ACTIONS(4098), + [anon_sym___bridge_transfer] = ACTIONS(4098), + [anon_sym___complex] = ACTIONS(4098), + [anon_sym___const] = ACTIONS(4098), + [anon_sym___imag] = ACTIONS(4098), + [anon_sym___kindof] = ACTIONS(4098), + [anon_sym___nonnull] = ACTIONS(4098), + [anon_sym___nullable] = ACTIONS(4098), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4098), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4098), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4098), + [anon_sym___real] = ACTIONS(4098), + [anon_sym___strong] = ACTIONS(4098), + [anon_sym___unsafe_unretained] = ACTIONS(4098), + [anon_sym___unused] = ACTIONS(4098), + [anon_sym___weak] = ACTIONS(4098), + [anon_sym_alignas] = ACTIONS(4098), + [anon_sym__Alignas] = ACTIONS(4098), + [anon_sym_COLON] = ACTIONS(4100), + [anon_sym_in] = ACTIONS(4098), + [anon_sym_QMARK] = ACTIONS(4100), + [anon_sym_DASH_DASH] = ACTIONS(4100), + [anon_sym_PLUS_PLUS] = ACTIONS(4100), + [anon_sym_asm] = ACTIONS(4098), + [anon_sym___asm__] = ACTIONS(4098), + [anon_sym___asm] = ACTIONS(4098), + [anon_sym_DOT] = ACTIONS(4098), + [anon_sym_DASH_GT] = ACTIONS(4100), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4098), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4098), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4098), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4098), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4098), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4098), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4098), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4098), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4098), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4098), + [anon_sym_NS_AVAILABLE] = ACTIONS(4098), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4098), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4098), + [anon_sym_API_AVAILABLE] = ACTIONS(4098), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4098), + [anon_sym_API_DEPRECATED] = ACTIONS(4098), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4098), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4098), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4098), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4098), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4098), + [anon_sym___deprecated_msg] = ACTIONS(4098), + [anon_sym___deprecated_enum_msg] = ACTIONS(4098), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4098), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4098), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4098), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4098), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4098), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4098), + }, + [1949] = { + [sym_identifier] = ACTIONS(4106), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4108), + [anon_sym_COMMA] = ACTIONS(4108), + [anon_sym_RPAREN] = ACTIONS(4108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4108), + [anon_sym_LPAREN2] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4106), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_PIPE_PIPE] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4108), + [anon_sym_PIPE] = ACTIONS(4106), + [anon_sym_CARET] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4106), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4106), + [anon_sym_GT_EQ] = ACTIONS(4108), + [anon_sym_LT_EQ] = ACTIONS(4108), + [anon_sym_LT] = ACTIONS(4106), + [anon_sym_LT_LT] = ACTIONS(4108), + [anon_sym_GT_GT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym___extension__] = ACTIONS(4106), + [anon_sym_extern] = ACTIONS(4106), + [anon_sym___attribute__] = ACTIONS(4106), + [anon_sym___attribute] = ACTIONS(4106), + [anon_sym_noreturn] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_RBRACK] = ACTIONS(4108), + [anon_sym___declspec] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4108), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_EQ] = ACTIONS(4106), + [anon_sym_ATautoreleasepool] = ACTIONS(4108), + [anon_sym_auto] = ACTIONS(4106), + [anon_sym_register] = ACTIONS(4106), + [anon_sym_inline] = ACTIONS(4106), + [anon_sym___inline] = ACTIONS(4106), + [anon_sym___inline__] = ACTIONS(4106), + [anon_sym___forceinline] = ACTIONS(4106), + [anon_sym_thread_local] = ACTIONS(4106), + [anon_sym___thread] = ACTIONS(4106), + [anon_sym_CG_EXTERN] = ACTIONS(4106), + [anon_sym_CG_INLINE] = ACTIONS(4106), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4106), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4106), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4106), + [anon_sym_IBOutlet] = ACTIONS(4106), + [anon_sym_IBInspectable] = ACTIONS(4106), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4106), + [anon_sym_NS_INLINE] = ACTIONS(4106), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4106), + [anon_sym_OBJC_EXPORT] = ACTIONS(4106), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4106), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4106), + [anon_sym_const] = ACTIONS(4106), + [anon_sym_constexpr] = ACTIONS(4106), + [anon_sym_volatile] = ACTIONS(4106), + [anon_sym_restrict] = ACTIONS(4106), + [anon_sym___restrict__] = ACTIONS(4106), + [anon_sym__Atomic] = ACTIONS(4106), + [anon_sym__Noreturn] = ACTIONS(4106), + [anon_sym__Nonnull] = ACTIONS(4106), + [anon_sym_nullable] = ACTIONS(4106), + [anon_sym__Complex] = ACTIONS(4106), + [anon_sym__Nullable] = ACTIONS(4106), + [anon_sym__Nullable_result] = ACTIONS(4106), + [anon_sym__Null_unspecified] = ACTIONS(4106), + [anon_sym___autoreleasing] = ACTIONS(4106), + [anon_sym___block] = ACTIONS(4106), + [anon_sym___bridge] = ACTIONS(4106), + [anon_sym___bridge_retained] = ACTIONS(4106), + [anon_sym___bridge_transfer] = ACTIONS(4106), + [anon_sym___complex] = ACTIONS(4106), + [anon_sym___const] = ACTIONS(4106), + [anon_sym___imag] = ACTIONS(4106), + [anon_sym___kindof] = ACTIONS(4106), + [anon_sym___nonnull] = ACTIONS(4106), + [anon_sym___nullable] = ACTIONS(4106), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4106), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4106), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4106), + [anon_sym___real] = ACTIONS(4106), + [anon_sym___strong] = ACTIONS(4106), + [anon_sym___unsafe_unretained] = ACTIONS(4106), + [anon_sym___unused] = ACTIONS(4106), + [anon_sym___weak] = ACTIONS(4106), + [anon_sym_alignas] = ACTIONS(4106), + [anon_sym__Alignas] = ACTIONS(4106), + [anon_sym_COLON] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4106), + [anon_sym_QMARK] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4108), + [anon_sym_PLUS_PLUS] = ACTIONS(4108), + [anon_sym_asm] = ACTIONS(4106), + [anon_sym___asm__] = ACTIONS(4106), + [anon_sym___asm] = ACTIONS(4106), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_DASH_GT] = ACTIONS(4108), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4106), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4106), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4106), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4106), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4106), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4106), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4106), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4106), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4106), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4106), + [anon_sym_NS_AVAILABLE] = ACTIONS(4106), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4106), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4106), + [anon_sym_API_AVAILABLE] = ACTIONS(4106), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4106), + [anon_sym_API_DEPRECATED] = ACTIONS(4106), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4106), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4106), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4106), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4106), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4106), + [anon_sym___deprecated_msg] = ACTIONS(4106), + [anon_sym___deprecated_enum_msg] = ACTIONS(4106), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4106), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4106), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4106), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4106), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4106), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4106), + }, + [1950] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2200), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4858), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1951] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2341), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4655), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1952] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2204), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1953] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2130), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(5024), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1954] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2348), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4735), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1955] = { + [sym_identifier] = ACTIONS(4124), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4126), + [anon_sym_COMMA] = ACTIONS(4126), + [anon_sym_RPAREN] = ACTIONS(4126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4126), + [anon_sym_LPAREN2] = ACTIONS(4126), + [anon_sym_DASH] = ACTIONS(4124), + [anon_sym_PLUS] = ACTIONS(4124), + [anon_sym_STAR] = ACTIONS(4126), + [anon_sym_SLASH] = ACTIONS(4124), + [anon_sym_PERCENT] = ACTIONS(4126), + [anon_sym_PIPE_PIPE] = ACTIONS(4126), + [anon_sym_AMP_AMP] = ACTIONS(4126), + [anon_sym_PIPE] = ACTIONS(4124), + [anon_sym_CARET] = ACTIONS(4126), + [anon_sym_AMP] = ACTIONS(4124), + [anon_sym_EQ_EQ] = ACTIONS(4126), + [anon_sym_BANG_EQ] = ACTIONS(4126), + [anon_sym_GT] = ACTIONS(4124), + [anon_sym_GT_EQ] = ACTIONS(4126), + [anon_sym_LT_EQ] = ACTIONS(4126), + [anon_sym_LT] = ACTIONS(4124), + [anon_sym_LT_LT] = ACTIONS(4126), + [anon_sym_GT_GT] = ACTIONS(4126), + [anon_sym_SEMI] = ACTIONS(4126), + [anon_sym___extension__] = ACTIONS(4124), + [anon_sym_extern] = ACTIONS(4124), + [anon_sym___attribute__] = ACTIONS(4124), + [anon_sym___attribute] = ACTIONS(4124), + [anon_sym_noreturn] = ACTIONS(4124), + [anon_sym_LBRACK] = ACTIONS(4126), + [anon_sym_RBRACK] = ACTIONS(4126), + [anon_sym___declspec] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4126), + [anon_sym_RBRACE] = ACTIONS(4126), + [anon_sym_static] = ACTIONS(4124), + [anon_sym_EQ] = ACTIONS(4124), + [anon_sym_ATautoreleasepool] = ACTIONS(4126), + [anon_sym_auto] = ACTIONS(4124), + [anon_sym_register] = ACTIONS(4124), + [anon_sym_inline] = ACTIONS(4124), + [anon_sym___inline] = ACTIONS(4124), + [anon_sym___inline__] = ACTIONS(4124), + [anon_sym___forceinline] = ACTIONS(4124), + [anon_sym_thread_local] = ACTIONS(4124), + [anon_sym___thread] = ACTIONS(4124), + [anon_sym_CG_EXTERN] = ACTIONS(4124), + [anon_sym_CG_INLINE] = ACTIONS(4124), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4124), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4124), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4124), + [anon_sym_IBOutlet] = ACTIONS(4124), + [anon_sym_IBInspectable] = ACTIONS(4124), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4124), + [anon_sym_NS_INLINE] = ACTIONS(4124), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4124), + [anon_sym_OBJC_EXPORT] = ACTIONS(4124), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4124), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4124), + [anon_sym_const] = ACTIONS(4124), + [anon_sym_constexpr] = ACTIONS(4124), + [anon_sym_volatile] = ACTIONS(4124), + [anon_sym_restrict] = ACTIONS(4124), + [anon_sym___restrict__] = ACTIONS(4124), + [anon_sym__Atomic] = ACTIONS(4124), + [anon_sym__Noreturn] = ACTIONS(4124), + [anon_sym__Nonnull] = ACTIONS(4124), + [anon_sym_nullable] = ACTIONS(4124), + [anon_sym__Complex] = ACTIONS(4124), + [anon_sym__Nullable] = ACTIONS(4124), + [anon_sym__Nullable_result] = ACTIONS(4124), + [anon_sym__Null_unspecified] = ACTIONS(4124), + [anon_sym___autoreleasing] = ACTIONS(4124), + [anon_sym___block] = ACTIONS(4124), + [anon_sym___bridge] = ACTIONS(4124), + [anon_sym___bridge_retained] = ACTIONS(4124), + [anon_sym___bridge_transfer] = ACTIONS(4124), + [anon_sym___complex] = ACTIONS(4124), + [anon_sym___const] = ACTIONS(4124), + [anon_sym___imag] = ACTIONS(4124), + [anon_sym___kindof] = ACTIONS(4124), + [anon_sym___nonnull] = ACTIONS(4124), + [anon_sym___nullable] = ACTIONS(4124), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4124), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4124), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4124), + [anon_sym___real] = ACTIONS(4124), + [anon_sym___strong] = ACTIONS(4124), + [anon_sym___unsafe_unretained] = ACTIONS(4124), + [anon_sym___unused] = ACTIONS(4124), + [anon_sym___weak] = ACTIONS(4124), + [anon_sym_alignas] = ACTIONS(4124), + [anon_sym__Alignas] = ACTIONS(4124), + [anon_sym_COLON] = ACTIONS(4126), + [anon_sym_in] = ACTIONS(4124), + [anon_sym_QMARK] = ACTIONS(4126), + [anon_sym_DASH_DASH] = ACTIONS(4126), + [anon_sym_PLUS_PLUS] = ACTIONS(4126), + [anon_sym_asm] = ACTIONS(4124), + [anon_sym___asm__] = ACTIONS(4124), + [anon_sym___asm] = ACTIONS(4124), + [anon_sym_DOT] = ACTIONS(4124), + [anon_sym_DASH_GT] = ACTIONS(4126), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4124), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4124), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4124), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4124), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4124), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4124), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4124), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4124), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4124), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4124), + [anon_sym_NS_AVAILABLE] = ACTIONS(4124), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4124), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4124), + [anon_sym_API_AVAILABLE] = ACTIONS(4124), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4124), + [anon_sym_API_DEPRECATED] = ACTIONS(4124), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4124), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4124), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4124), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4124), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4124), + [anon_sym___deprecated_msg] = ACTIONS(4124), + [anon_sym___deprecated_enum_msg] = ACTIONS(4124), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4124), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4124), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4124), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4124), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4124), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4124), + }, + [1956] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2257), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4685), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1957] = { + [sym_identifier] = ACTIONS(2512), + [aux_sym_preproc_def_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token1] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2512), + [sym_preproc_directive] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2514), + [anon_sym_PLUS] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym___extension__] = ACTIONS(2512), + [anon_sym_typedef] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym___attribute__] = ACTIONS(2512), + [anon_sym___attribute] = ACTIONS(2512), + [anon_sym_noreturn] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym___declspec] = ACTIONS(2512), + [anon_sym___cdecl] = ACTIONS(2512), + [anon_sym___clrcall] = ACTIONS(2512), + [anon_sym___stdcall] = ACTIONS(2512), + [anon_sym___fastcall] = ACTIONS(2512), + [anon_sym___thiscall] = ACTIONS(2512), + [anon_sym___vectorcall] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_signed] = ACTIONS(2512), + [anon_sym_unsigned] = ACTIONS(2512), + [anon_sym_long] = ACTIONS(2512), + [anon_sym_short] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_ATautoreleasepool] = ACTIONS(2514), + [anon_sym_auto] = ACTIONS(2512), + [anon_sym_register] = ACTIONS(2512), + [anon_sym_inline] = ACTIONS(2512), + [anon_sym___inline] = ACTIONS(2512), + [anon_sym___inline__] = ACTIONS(2512), + [anon_sym___forceinline] = ACTIONS(2512), + [anon_sym_thread_local] = ACTIONS(2512), + [anon_sym___thread] = ACTIONS(2512), + [anon_sym_CG_EXTERN] = ACTIONS(2512), + [anon_sym_CG_INLINE] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2512), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2512), + [anon_sym_IBOutlet] = ACTIONS(2512), + [anon_sym_IBInspectable] = ACTIONS(2512), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2512), + [anon_sym_NS_INLINE] = ACTIONS(2512), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2512), + [anon_sym_OBJC_EXPORT] = ACTIONS(2512), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_constexpr] = ACTIONS(2512), + [anon_sym_volatile] = ACTIONS(2512), + [anon_sym_restrict] = ACTIONS(2512), + [anon_sym___restrict__] = ACTIONS(2512), + [anon_sym__Atomic] = ACTIONS(2512), + [anon_sym__Noreturn] = ACTIONS(2512), + [anon_sym__Nonnull] = ACTIONS(2512), + [anon_sym_nullable] = ACTIONS(2512), + [anon_sym__Complex] = ACTIONS(2512), + [anon_sym__Nullable] = ACTIONS(2512), + [anon_sym__Nullable_result] = ACTIONS(2512), + [anon_sym__Null_unspecified] = ACTIONS(2512), + [anon_sym___autoreleasing] = ACTIONS(2512), + [anon_sym___block] = ACTIONS(2512), + [anon_sym___bridge] = ACTIONS(2512), + [anon_sym___bridge_retained] = ACTIONS(2512), + [anon_sym___bridge_transfer] = ACTIONS(2512), + [anon_sym___complex] = ACTIONS(2512), + [anon_sym___const] = ACTIONS(2512), + [anon_sym___imag] = ACTIONS(2512), + [anon_sym___kindof] = ACTIONS(2512), + [anon_sym___nonnull] = ACTIONS(2512), + [anon_sym___nullable] = ACTIONS(2512), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2512), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2512), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2512), + [anon_sym___real] = ACTIONS(2512), + [anon_sym___strong] = ACTIONS(2512), + [anon_sym___unsafe_unretained] = ACTIONS(2512), + [anon_sym___unused] = ACTIONS(2512), + [anon_sym___weak] = ACTIONS(2512), + [anon_sym_alignas] = ACTIONS(2512), + [anon_sym__Alignas] = ACTIONS(2512), + [sym_primitive_type] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [anon_sym_struct] = ACTIONS(2512), + [anon_sym_union] = ACTIONS(2512), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2512), + [anon_sym___typeof] = ACTIONS(2512), + [anon_sym_typeof] = ACTIONS(2512), + [aux_sym_preproc_undef_token1] = ACTIONS(2512), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2512), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2512), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2512), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2512), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE] = ACTIONS(2512), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_API_AVAILABLE] = ACTIONS(2512), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_API_DEPRECATED] = ACTIONS(2512), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2512), + [anon_sym___deprecated_msg] = ACTIONS(2512), + [anon_sym___deprecated_enum_msg] = ACTIONS(2512), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2512), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2512), + [anon_sym_ATend] = ACTIONS(2514), + [anon_sym_AToptional] = ACTIONS(2514), + [anon_sym_ATrequired] = ACTIONS(2514), + [anon_sym_ATsynthesize] = ACTIONS(2514), + [anon_sym_ATdynamic] = ACTIONS(2514), + [anon_sym_ATproperty] = ACTIONS(2514), + [anon_sym_BOOL] = ACTIONS(2512), + [anon_sym_IMP] = ACTIONS(2512), + [anon_sym_SEL] = ACTIONS(2512), + [anon_sym_Class] = ACTIONS(2512), + [anon_sym_id] = ACTIONS(2512), + }, + [1958] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2351), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1959] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2321), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4673), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1960] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2261), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4860), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1961] = { + [sym_identifier] = ACTIONS(2446), + [aux_sym_preproc_def_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token1] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2446), + [sym_preproc_directive] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2448), + [anon_sym_PLUS] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym___extension__] = ACTIONS(2446), + [anon_sym_typedef] = ACTIONS(2446), + [anon_sym_extern] = ACTIONS(2446), + [anon_sym___attribute__] = ACTIONS(2446), + [anon_sym___attribute] = ACTIONS(2446), + [anon_sym_noreturn] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym___declspec] = ACTIONS(2446), + [anon_sym___cdecl] = ACTIONS(2446), + [anon_sym___clrcall] = ACTIONS(2446), + [anon_sym___stdcall] = ACTIONS(2446), + [anon_sym___fastcall] = ACTIONS(2446), + [anon_sym___thiscall] = ACTIONS(2446), + [anon_sym___vectorcall] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_signed] = ACTIONS(2446), + [anon_sym_unsigned] = ACTIONS(2446), + [anon_sym_long] = ACTIONS(2446), + [anon_sym_short] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_ATautoreleasepool] = ACTIONS(2448), + [anon_sym_auto] = ACTIONS(2446), + [anon_sym_register] = ACTIONS(2446), + [anon_sym_inline] = ACTIONS(2446), + [anon_sym___inline] = ACTIONS(2446), + [anon_sym___inline__] = ACTIONS(2446), + [anon_sym___forceinline] = ACTIONS(2446), + [anon_sym_thread_local] = ACTIONS(2446), + [anon_sym___thread] = ACTIONS(2446), + [anon_sym_CG_EXTERN] = ACTIONS(2446), + [anon_sym_CG_INLINE] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2446), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2446), + [anon_sym_IBOutlet] = ACTIONS(2446), + [anon_sym_IBInspectable] = ACTIONS(2446), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2446), + [anon_sym_NS_INLINE] = ACTIONS(2446), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2446), + [anon_sym_OBJC_EXPORT] = ACTIONS(2446), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [anon_sym_constexpr] = ACTIONS(2446), + [anon_sym_volatile] = ACTIONS(2446), + [anon_sym_restrict] = ACTIONS(2446), + [anon_sym___restrict__] = ACTIONS(2446), + [anon_sym__Atomic] = ACTIONS(2446), + [anon_sym__Noreturn] = ACTIONS(2446), + [anon_sym__Nonnull] = ACTIONS(2446), + [anon_sym_nullable] = ACTIONS(2446), + [anon_sym__Complex] = ACTIONS(2446), + [anon_sym__Nullable] = ACTIONS(2446), + [anon_sym__Nullable_result] = ACTIONS(2446), + [anon_sym__Null_unspecified] = ACTIONS(2446), + [anon_sym___autoreleasing] = ACTIONS(2446), + [anon_sym___block] = ACTIONS(2446), + [anon_sym___bridge] = ACTIONS(2446), + [anon_sym___bridge_retained] = ACTIONS(2446), + [anon_sym___bridge_transfer] = ACTIONS(2446), + [anon_sym___complex] = ACTIONS(2446), + [anon_sym___const] = ACTIONS(2446), + [anon_sym___imag] = ACTIONS(2446), + [anon_sym___kindof] = ACTIONS(2446), + [anon_sym___nonnull] = ACTIONS(2446), + [anon_sym___nullable] = ACTIONS(2446), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2446), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2446), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2446), + [anon_sym___real] = ACTIONS(2446), + [anon_sym___strong] = ACTIONS(2446), + [anon_sym___unsafe_unretained] = ACTIONS(2446), + [anon_sym___unused] = ACTIONS(2446), + [anon_sym___weak] = ACTIONS(2446), + [anon_sym_alignas] = ACTIONS(2446), + [anon_sym__Alignas] = ACTIONS(2446), + [sym_primitive_type] = ACTIONS(2446), + [anon_sym_enum] = ACTIONS(2446), + [anon_sym_struct] = ACTIONS(2446), + [anon_sym_union] = ACTIONS(2446), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2446), + [anon_sym___typeof] = ACTIONS(2446), + [anon_sym_typeof] = ACTIONS(2446), + [aux_sym_preproc_undef_token1] = ACTIONS(2446), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2446), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2446), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2446), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2446), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE] = ACTIONS(2446), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_API_AVAILABLE] = ACTIONS(2446), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_API_DEPRECATED] = ACTIONS(2446), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2446), + [anon_sym___deprecated_msg] = ACTIONS(2446), + [anon_sym___deprecated_enum_msg] = ACTIONS(2446), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2446), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2446), + [anon_sym_ATend] = ACTIONS(2448), + [anon_sym_AToptional] = ACTIONS(2448), + [anon_sym_ATrequired] = ACTIONS(2448), + [anon_sym_ATsynthesize] = ACTIONS(2448), + [anon_sym_ATdynamic] = ACTIONS(2448), + [anon_sym_ATproperty] = ACTIONS(2448), + [anon_sym_BOOL] = ACTIONS(2446), + [anon_sym_IMP] = ACTIONS(2446), + [anon_sym_SEL] = ACTIONS(2446), + [anon_sym_Class] = ACTIONS(2446), + [anon_sym_id] = ACTIONS(2446), + }, + [1962] = { + [sym_identifier] = ACTIONS(2450), + [aux_sym_preproc_def_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2450), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym___cdecl] = ACTIONS(2450), + [anon_sym___clrcall] = ACTIONS(2450), + [anon_sym___stdcall] = ACTIONS(2450), + [anon_sym___fastcall] = ACTIONS(2450), + [anon_sym___thiscall] = ACTIONS(2450), + [anon_sym___vectorcall] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2452), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_ATautoreleasepool] = ACTIONS(2452), + [anon_sym_auto] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_CG_EXTERN] = ACTIONS(2450), + [anon_sym_CG_INLINE] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2450), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2450), + [anon_sym_IBOutlet] = ACTIONS(2450), + [anon_sym_IBInspectable] = ACTIONS(2450), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2450), + [anon_sym_NS_INLINE] = ACTIONS(2450), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2450), + [anon_sym_OBJC_EXPORT] = ACTIONS(2450), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_nullable] = ACTIONS(2450), + [anon_sym__Complex] = ACTIONS(2450), + [anon_sym__Nullable] = ACTIONS(2450), + [anon_sym__Nullable_result] = ACTIONS(2450), + [anon_sym__Null_unspecified] = ACTIONS(2450), + [anon_sym___autoreleasing] = ACTIONS(2450), + [anon_sym___block] = ACTIONS(2450), + [anon_sym___bridge] = ACTIONS(2450), + [anon_sym___bridge_retained] = ACTIONS(2450), + [anon_sym___bridge_transfer] = ACTIONS(2450), + [anon_sym___complex] = ACTIONS(2450), + [anon_sym___const] = ACTIONS(2450), + [anon_sym___imag] = ACTIONS(2450), + [anon_sym___kindof] = ACTIONS(2450), + [anon_sym___nonnull] = ACTIONS(2450), + [anon_sym___nullable] = ACTIONS(2450), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2450), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2450), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2450), + [anon_sym___real] = ACTIONS(2450), + [anon_sym___strong] = ACTIONS(2450), + [anon_sym___unsafe_unretained] = ACTIONS(2450), + [anon_sym___unused] = ACTIONS(2450), + [anon_sym___weak] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2450), + [anon_sym___typeof] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [aux_sym_preproc_undef_token1] = ACTIONS(2450), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2450), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2450), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2450), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2450), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE] = ACTIONS(2450), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_API_AVAILABLE] = ACTIONS(2450), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_API_DEPRECATED] = ACTIONS(2450), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2450), + [anon_sym___deprecated_msg] = ACTIONS(2450), + [anon_sym___deprecated_enum_msg] = ACTIONS(2450), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2450), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2450), + [anon_sym_ATend] = ACTIONS(2452), + [anon_sym_AToptional] = ACTIONS(2452), + [anon_sym_ATrequired] = ACTIONS(2452), + [anon_sym_ATsynthesize] = ACTIONS(2452), + [anon_sym_ATdynamic] = ACTIONS(2452), + [anon_sym_ATproperty] = ACTIONS(2452), + [anon_sym_BOOL] = ACTIONS(2450), + [anon_sym_IMP] = ACTIONS(2450), + [anon_sym_SEL] = ACTIONS(2450), + [anon_sym_Class] = ACTIONS(2450), + [anon_sym_id] = ACTIONS(2450), + }, + [1963] = { + [sym_identifier] = ACTIONS(2454), + [aux_sym_preproc_def_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2454), + [sym_preproc_directive] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym___extension__] = ACTIONS(2454), + [anon_sym_typedef] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym___attribute__] = ACTIONS(2454), + [anon_sym___attribute] = ACTIONS(2454), + [anon_sym_noreturn] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym___declspec] = ACTIONS(2454), + [anon_sym___cdecl] = ACTIONS(2454), + [anon_sym___clrcall] = ACTIONS(2454), + [anon_sym___stdcall] = ACTIONS(2454), + [anon_sym___fastcall] = ACTIONS(2454), + [anon_sym___thiscall] = ACTIONS(2454), + [anon_sym___vectorcall] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_signed] = ACTIONS(2454), + [anon_sym_unsigned] = ACTIONS(2454), + [anon_sym_long] = ACTIONS(2454), + [anon_sym_short] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_ATautoreleasepool] = ACTIONS(2456), + [anon_sym_auto] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_inline] = ACTIONS(2454), + [anon_sym___inline] = ACTIONS(2454), + [anon_sym___inline__] = ACTIONS(2454), + [anon_sym___forceinline] = ACTIONS(2454), + [anon_sym_thread_local] = ACTIONS(2454), + [anon_sym___thread] = ACTIONS(2454), + [anon_sym_CG_EXTERN] = ACTIONS(2454), + [anon_sym_CG_INLINE] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2454), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2454), + [anon_sym_IBOutlet] = ACTIONS(2454), + [anon_sym_IBInspectable] = ACTIONS(2454), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2454), + [anon_sym_NS_INLINE] = ACTIONS(2454), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2454), + [anon_sym_OBJC_EXPORT] = ACTIONS(2454), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_constexpr] = ACTIONS(2454), + [anon_sym_volatile] = ACTIONS(2454), + [anon_sym_restrict] = ACTIONS(2454), + [anon_sym___restrict__] = ACTIONS(2454), + [anon_sym__Atomic] = ACTIONS(2454), + [anon_sym__Noreturn] = ACTIONS(2454), + [anon_sym__Nonnull] = ACTIONS(2454), + [anon_sym_nullable] = ACTIONS(2454), + [anon_sym__Complex] = ACTIONS(2454), + [anon_sym__Nullable] = ACTIONS(2454), + [anon_sym__Nullable_result] = ACTIONS(2454), + [anon_sym__Null_unspecified] = ACTIONS(2454), + [anon_sym___autoreleasing] = ACTIONS(2454), + [anon_sym___block] = ACTIONS(2454), + [anon_sym___bridge] = ACTIONS(2454), + [anon_sym___bridge_retained] = ACTIONS(2454), + [anon_sym___bridge_transfer] = ACTIONS(2454), + [anon_sym___complex] = ACTIONS(2454), + [anon_sym___const] = ACTIONS(2454), + [anon_sym___imag] = ACTIONS(2454), + [anon_sym___kindof] = ACTIONS(2454), + [anon_sym___nonnull] = ACTIONS(2454), + [anon_sym___nullable] = ACTIONS(2454), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2454), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2454), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2454), + [anon_sym___real] = ACTIONS(2454), + [anon_sym___strong] = ACTIONS(2454), + [anon_sym___unsafe_unretained] = ACTIONS(2454), + [anon_sym___unused] = ACTIONS(2454), + [anon_sym___weak] = ACTIONS(2454), + [anon_sym_alignas] = ACTIONS(2454), + [anon_sym__Alignas] = ACTIONS(2454), + [sym_primitive_type] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2454), + [anon_sym___typeof] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(2454), + [aux_sym_preproc_undef_token1] = ACTIONS(2454), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2454), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2454), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2454), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2454), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE] = ACTIONS(2454), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_API_AVAILABLE] = ACTIONS(2454), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_API_DEPRECATED] = ACTIONS(2454), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2454), + [anon_sym___deprecated_msg] = ACTIONS(2454), + [anon_sym___deprecated_enum_msg] = ACTIONS(2454), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2454), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2454), + [anon_sym_ATend] = ACTIONS(2456), + [anon_sym_AToptional] = ACTIONS(2456), + [anon_sym_ATrequired] = ACTIONS(2456), + [anon_sym_ATsynthesize] = ACTIONS(2456), + [anon_sym_ATdynamic] = ACTIONS(2456), + [anon_sym_ATproperty] = ACTIONS(2456), + [anon_sym_BOOL] = ACTIONS(2454), + [anon_sym_IMP] = ACTIONS(2454), + [anon_sym_SEL] = ACTIONS(2454), + [anon_sym_Class] = ACTIONS(2454), + [anon_sym_id] = ACTIONS(2454), + }, + [1964] = { + [sym_identifier] = ACTIONS(2512), + [aux_sym_preproc_def_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token1] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2512), + [sym_preproc_directive] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2514), + [anon_sym_PLUS] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym___extension__] = ACTIONS(2512), + [anon_sym_typedef] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym___attribute__] = ACTIONS(2512), + [anon_sym___attribute] = ACTIONS(2512), + [anon_sym_noreturn] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym___declspec] = ACTIONS(2512), + [anon_sym___cdecl] = ACTIONS(2512), + [anon_sym___clrcall] = ACTIONS(2512), + [anon_sym___stdcall] = ACTIONS(2512), + [anon_sym___fastcall] = ACTIONS(2512), + [anon_sym___thiscall] = ACTIONS(2512), + [anon_sym___vectorcall] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_signed] = ACTIONS(2512), + [anon_sym_unsigned] = ACTIONS(2512), + [anon_sym_long] = ACTIONS(2512), + [anon_sym_short] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_ATautoreleasepool] = ACTIONS(2514), + [anon_sym_auto] = ACTIONS(2512), + [anon_sym_register] = ACTIONS(2512), + [anon_sym_inline] = ACTIONS(2512), + [anon_sym___inline] = ACTIONS(2512), + [anon_sym___inline__] = ACTIONS(2512), + [anon_sym___forceinline] = ACTIONS(2512), + [anon_sym_thread_local] = ACTIONS(2512), + [anon_sym___thread] = ACTIONS(2512), + [anon_sym_CG_EXTERN] = ACTIONS(2512), + [anon_sym_CG_INLINE] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2512), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2512), + [anon_sym_IBOutlet] = ACTIONS(2512), + [anon_sym_IBInspectable] = ACTIONS(2512), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2512), + [anon_sym_NS_INLINE] = ACTIONS(2512), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2512), + [anon_sym_OBJC_EXPORT] = ACTIONS(2512), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_constexpr] = ACTIONS(2512), + [anon_sym_volatile] = ACTIONS(2512), + [anon_sym_restrict] = ACTIONS(2512), + [anon_sym___restrict__] = ACTIONS(2512), + [anon_sym__Atomic] = ACTIONS(2512), + [anon_sym__Noreturn] = ACTIONS(2512), + [anon_sym__Nonnull] = ACTIONS(2512), + [anon_sym_nullable] = ACTIONS(2512), + [anon_sym__Complex] = ACTIONS(2512), + [anon_sym__Nullable] = ACTIONS(2512), + [anon_sym__Nullable_result] = ACTIONS(2512), + [anon_sym__Null_unspecified] = ACTIONS(2512), + [anon_sym___autoreleasing] = ACTIONS(2512), + [anon_sym___block] = ACTIONS(2512), + [anon_sym___bridge] = ACTIONS(2512), + [anon_sym___bridge_retained] = ACTIONS(2512), + [anon_sym___bridge_transfer] = ACTIONS(2512), + [anon_sym___complex] = ACTIONS(2512), + [anon_sym___const] = ACTIONS(2512), + [anon_sym___imag] = ACTIONS(2512), + [anon_sym___kindof] = ACTIONS(2512), + [anon_sym___nonnull] = ACTIONS(2512), + [anon_sym___nullable] = ACTIONS(2512), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2512), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2512), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2512), + [anon_sym___real] = ACTIONS(2512), + [anon_sym___strong] = ACTIONS(2512), + [anon_sym___unsafe_unretained] = ACTIONS(2512), + [anon_sym___unused] = ACTIONS(2512), + [anon_sym___weak] = ACTIONS(2512), + [anon_sym_alignas] = ACTIONS(2512), + [anon_sym__Alignas] = ACTIONS(2512), + [sym_primitive_type] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [anon_sym_struct] = ACTIONS(2512), + [anon_sym_union] = ACTIONS(2512), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2512), + [anon_sym___typeof] = ACTIONS(2512), + [anon_sym_typeof] = ACTIONS(2512), + [aux_sym_preproc_undef_token1] = ACTIONS(2512), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2512), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2512), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2512), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2512), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE] = ACTIONS(2512), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_API_AVAILABLE] = ACTIONS(2512), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_API_DEPRECATED] = ACTIONS(2512), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2512), + [anon_sym___deprecated_msg] = ACTIONS(2512), + [anon_sym___deprecated_enum_msg] = ACTIONS(2512), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2512), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2512), + [anon_sym_ATend] = ACTIONS(2514), + [anon_sym_AToptional] = ACTIONS(2514), + [anon_sym_ATrequired] = ACTIONS(2514), + [anon_sym_ATsynthesize] = ACTIONS(2514), + [anon_sym_ATdynamic] = ACTIONS(2514), + [anon_sym_ATproperty] = ACTIONS(2514), + [anon_sym_BOOL] = ACTIONS(2512), + [anon_sym_IMP] = ACTIONS(2512), + [anon_sym_SEL] = ACTIONS(2512), + [anon_sym_Class] = ACTIONS(2512), + [anon_sym_id] = ACTIONS(2512), + }, + [1965] = { + [sym_identifier] = ACTIONS(2454), + [aux_sym_preproc_def_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2454), + [sym_preproc_directive] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym___extension__] = ACTIONS(2454), + [anon_sym_typedef] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym___attribute__] = ACTIONS(2454), + [anon_sym___attribute] = ACTIONS(2454), + [anon_sym_noreturn] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym___declspec] = ACTIONS(2454), + [anon_sym___cdecl] = ACTIONS(2454), + [anon_sym___clrcall] = ACTIONS(2454), + [anon_sym___stdcall] = ACTIONS(2454), + [anon_sym___fastcall] = ACTIONS(2454), + [anon_sym___thiscall] = ACTIONS(2454), + [anon_sym___vectorcall] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_signed] = ACTIONS(2454), + [anon_sym_unsigned] = ACTIONS(2454), + [anon_sym_long] = ACTIONS(2454), + [anon_sym_short] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_ATautoreleasepool] = ACTIONS(2456), + [anon_sym_auto] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_inline] = ACTIONS(2454), + [anon_sym___inline] = ACTIONS(2454), + [anon_sym___inline__] = ACTIONS(2454), + [anon_sym___forceinline] = ACTIONS(2454), + [anon_sym_thread_local] = ACTIONS(2454), + [anon_sym___thread] = ACTIONS(2454), + [anon_sym_CG_EXTERN] = ACTIONS(2454), + [anon_sym_CG_INLINE] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2454), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2454), + [anon_sym_IBOutlet] = ACTIONS(2454), + [anon_sym_IBInspectable] = ACTIONS(2454), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2454), + [anon_sym_NS_INLINE] = ACTIONS(2454), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2454), + [anon_sym_OBJC_EXPORT] = ACTIONS(2454), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_constexpr] = ACTIONS(2454), + [anon_sym_volatile] = ACTIONS(2454), + [anon_sym_restrict] = ACTIONS(2454), + [anon_sym___restrict__] = ACTIONS(2454), + [anon_sym__Atomic] = ACTIONS(2454), + [anon_sym__Noreturn] = ACTIONS(2454), + [anon_sym__Nonnull] = ACTIONS(2454), + [anon_sym_nullable] = ACTIONS(2454), + [anon_sym__Complex] = ACTIONS(2454), + [anon_sym__Nullable] = ACTIONS(2454), + [anon_sym__Nullable_result] = ACTIONS(2454), + [anon_sym__Null_unspecified] = ACTIONS(2454), + [anon_sym___autoreleasing] = ACTIONS(2454), + [anon_sym___block] = ACTIONS(2454), + [anon_sym___bridge] = ACTIONS(2454), + [anon_sym___bridge_retained] = ACTIONS(2454), + [anon_sym___bridge_transfer] = ACTIONS(2454), + [anon_sym___complex] = ACTIONS(2454), + [anon_sym___const] = ACTIONS(2454), + [anon_sym___imag] = ACTIONS(2454), + [anon_sym___kindof] = ACTIONS(2454), + [anon_sym___nonnull] = ACTIONS(2454), + [anon_sym___nullable] = ACTIONS(2454), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2454), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2454), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2454), + [anon_sym___real] = ACTIONS(2454), + [anon_sym___strong] = ACTIONS(2454), + [anon_sym___unsafe_unretained] = ACTIONS(2454), + [anon_sym___unused] = ACTIONS(2454), + [anon_sym___weak] = ACTIONS(2454), + [anon_sym_alignas] = ACTIONS(2454), + [anon_sym__Alignas] = ACTIONS(2454), + [sym_primitive_type] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2454), + [anon_sym___typeof] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(2454), + [aux_sym_preproc_undef_token1] = ACTIONS(2454), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2454), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2454), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2454), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2454), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE] = ACTIONS(2454), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_API_AVAILABLE] = ACTIONS(2454), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_API_DEPRECATED] = ACTIONS(2454), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2454), + [anon_sym___deprecated_msg] = ACTIONS(2454), + [anon_sym___deprecated_enum_msg] = ACTIONS(2454), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2454), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2454), + [anon_sym_ATend] = ACTIONS(2456), + [anon_sym_AToptional] = ACTIONS(2456), + [anon_sym_ATrequired] = ACTIONS(2456), + [anon_sym_ATsynthesize] = ACTIONS(2456), + [anon_sym_ATdynamic] = ACTIONS(2456), + [anon_sym_ATproperty] = ACTIONS(2456), + [anon_sym_BOOL] = ACTIONS(2454), + [anon_sym_IMP] = ACTIONS(2454), + [anon_sym_SEL] = ACTIONS(2454), + [anon_sym_Class] = ACTIONS(2454), + [anon_sym_id] = ACTIONS(2454), + }, + [1966] = { + [sym_identifier] = ACTIONS(4176), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4178), + [anon_sym_COMMA] = ACTIONS(4178), + [anon_sym_RPAREN] = ACTIONS(4178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4178), + [anon_sym_LPAREN2] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4176), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_PIPE_PIPE] = ACTIONS(4178), + [anon_sym_AMP_AMP] = ACTIONS(4178), + [anon_sym_PIPE] = ACTIONS(4176), + [anon_sym_CARET] = ACTIONS(4178), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4176), + [anon_sym_GT_EQ] = ACTIONS(4178), + [anon_sym_LT_EQ] = ACTIONS(4178), + [anon_sym_LT] = ACTIONS(4176), + [anon_sym_LT_LT] = ACTIONS(4178), + [anon_sym_GT_GT] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4178), + [anon_sym___extension__] = ACTIONS(4176), + [anon_sym_extern] = ACTIONS(4176), + [anon_sym___attribute__] = ACTIONS(4176), + [anon_sym___attribute] = ACTIONS(4176), + [anon_sym_noreturn] = ACTIONS(4176), + [anon_sym_LBRACK] = ACTIONS(4178), + [anon_sym_RBRACK] = ACTIONS(4178), + [anon_sym___declspec] = ACTIONS(4176), + [anon_sym_LBRACE] = ACTIONS(4178), + [anon_sym_RBRACE] = ACTIONS(4178), + [anon_sym_static] = ACTIONS(4176), + [anon_sym_EQ] = ACTIONS(4176), + [anon_sym_ATautoreleasepool] = ACTIONS(4178), + [anon_sym_auto] = ACTIONS(4176), + [anon_sym_register] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym___inline] = ACTIONS(4176), + [anon_sym___inline__] = ACTIONS(4176), + [anon_sym___forceinline] = ACTIONS(4176), + [anon_sym_thread_local] = ACTIONS(4176), + [anon_sym___thread] = ACTIONS(4176), + [anon_sym_CG_EXTERN] = ACTIONS(4176), + [anon_sym_CG_INLINE] = ACTIONS(4176), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4176), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4176), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4176), + [anon_sym_IBOutlet] = ACTIONS(4176), + [anon_sym_IBInspectable] = ACTIONS(4176), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4176), + [anon_sym_NS_INLINE] = ACTIONS(4176), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4176), + [anon_sym_OBJC_EXPORT] = ACTIONS(4176), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4176), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4176), + [anon_sym_const] = ACTIONS(4176), + [anon_sym_constexpr] = ACTIONS(4176), + [anon_sym_volatile] = ACTIONS(4176), + [anon_sym_restrict] = ACTIONS(4176), + [anon_sym___restrict__] = ACTIONS(4176), + [anon_sym__Atomic] = ACTIONS(4176), + [anon_sym__Noreturn] = ACTIONS(4176), + [anon_sym__Nonnull] = ACTIONS(4176), + [anon_sym_nullable] = ACTIONS(4176), + [anon_sym__Complex] = ACTIONS(4176), + [anon_sym__Nullable] = ACTIONS(4176), + [anon_sym__Nullable_result] = ACTIONS(4176), + [anon_sym__Null_unspecified] = ACTIONS(4176), + [anon_sym___autoreleasing] = ACTIONS(4176), + [anon_sym___block] = ACTIONS(4176), + [anon_sym___bridge] = ACTIONS(4176), + [anon_sym___bridge_retained] = ACTIONS(4176), + [anon_sym___bridge_transfer] = ACTIONS(4176), + [anon_sym___complex] = ACTIONS(4176), + [anon_sym___const] = ACTIONS(4176), + [anon_sym___imag] = ACTIONS(4176), + [anon_sym___kindof] = ACTIONS(4176), + [anon_sym___nonnull] = ACTIONS(4176), + [anon_sym___nullable] = ACTIONS(4176), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4176), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4176), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4176), + [anon_sym___real] = ACTIONS(4176), + [anon_sym___strong] = ACTIONS(4176), + [anon_sym___unsafe_unretained] = ACTIONS(4176), + [anon_sym___unused] = ACTIONS(4176), + [anon_sym___weak] = ACTIONS(4176), + [anon_sym_alignas] = ACTIONS(4176), + [anon_sym__Alignas] = ACTIONS(4176), + [anon_sym_COLON] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4176), + [anon_sym_QMARK] = ACTIONS(4178), + [anon_sym_DASH_DASH] = ACTIONS(4178), + [anon_sym_PLUS_PLUS] = ACTIONS(4178), + [anon_sym_asm] = ACTIONS(4176), + [anon_sym___asm__] = ACTIONS(4176), + [anon_sym___asm] = ACTIONS(4176), + [anon_sym_DOT] = ACTIONS(4176), + [anon_sym_DASH_GT] = ACTIONS(4178), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4176), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4176), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4176), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4176), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4176), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4176), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4176), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4176), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4176), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4176), + [anon_sym_NS_AVAILABLE] = ACTIONS(4176), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4176), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4176), + [anon_sym_API_AVAILABLE] = ACTIONS(4176), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4176), + [anon_sym_API_DEPRECATED] = ACTIONS(4176), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4176), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4176), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4176), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4176), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4176), + [anon_sym___deprecated_msg] = ACTIONS(4176), + [anon_sym___deprecated_enum_msg] = ACTIONS(4176), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4176), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4176), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4176), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4176), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4176), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4176), + }, + [1967] = { + [sym_identifier] = ACTIONS(4180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4182), + [anon_sym_COMMA] = ACTIONS(4182), + [anon_sym_RPAREN] = ACTIONS(4182), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4182), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4182), + [anon_sym_LPAREN2] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4180), + [anon_sym_STAR] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4180), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE] = ACTIONS(4180), + [anon_sym_CARET] = ACTIONS(4182), + [anon_sym_AMP] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4182), + [anon_sym_GT] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4180), + [anon_sym_LT_LT] = ACTIONS(4182), + [anon_sym_GT_GT] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym___extension__] = ACTIONS(4180), + [anon_sym_extern] = ACTIONS(4180), + [anon_sym___attribute__] = ACTIONS(4180), + [anon_sym___attribute] = ACTIONS(4180), + [anon_sym_noreturn] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4182), + [anon_sym_RBRACK] = ACTIONS(4182), + [anon_sym___declspec] = ACTIONS(4180), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_static] = ACTIONS(4180), + [anon_sym_EQ] = ACTIONS(4180), + [anon_sym_ATautoreleasepool] = ACTIONS(4182), + [anon_sym_auto] = ACTIONS(4180), + [anon_sym_register] = ACTIONS(4180), + [anon_sym_inline] = ACTIONS(4180), + [anon_sym___inline] = ACTIONS(4180), + [anon_sym___inline__] = ACTIONS(4180), + [anon_sym___forceinline] = ACTIONS(4180), + [anon_sym_thread_local] = ACTIONS(4180), + [anon_sym___thread] = ACTIONS(4180), + [anon_sym_CG_EXTERN] = ACTIONS(4180), + [anon_sym_CG_INLINE] = ACTIONS(4180), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4180), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4180), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4180), + [anon_sym_IBOutlet] = ACTIONS(4180), + [anon_sym_IBInspectable] = ACTIONS(4180), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4180), + [anon_sym_NS_INLINE] = ACTIONS(4180), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4180), + [anon_sym_OBJC_EXPORT] = ACTIONS(4180), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4180), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4180), + [anon_sym_const] = ACTIONS(4180), + [anon_sym_constexpr] = ACTIONS(4180), + [anon_sym_volatile] = ACTIONS(4180), + [anon_sym_restrict] = ACTIONS(4180), + [anon_sym___restrict__] = ACTIONS(4180), + [anon_sym__Atomic] = ACTIONS(4180), + [anon_sym__Noreturn] = ACTIONS(4180), + [anon_sym__Nonnull] = ACTIONS(4180), + [anon_sym_nullable] = ACTIONS(4180), + [anon_sym__Complex] = ACTIONS(4180), + [anon_sym__Nullable] = ACTIONS(4180), + [anon_sym__Nullable_result] = ACTIONS(4180), + [anon_sym__Null_unspecified] = ACTIONS(4180), + [anon_sym___autoreleasing] = ACTIONS(4180), + [anon_sym___block] = ACTIONS(4180), + [anon_sym___bridge] = ACTIONS(4180), + [anon_sym___bridge_retained] = ACTIONS(4180), + [anon_sym___bridge_transfer] = ACTIONS(4180), + [anon_sym___complex] = ACTIONS(4180), + [anon_sym___const] = ACTIONS(4180), + [anon_sym___imag] = ACTIONS(4180), + [anon_sym___kindof] = ACTIONS(4180), + [anon_sym___nonnull] = ACTIONS(4180), + [anon_sym___nullable] = ACTIONS(4180), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4180), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4180), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4180), + [anon_sym___real] = ACTIONS(4180), + [anon_sym___strong] = ACTIONS(4180), + [anon_sym___unsafe_unretained] = ACTIONS(4180), + [anon_sym___unused] = ACTIONS(4180), + [anon_sym___weak] = ACTIONS(4180), + [anon_sym_alignas] = ACTIONS(4180), + [anon_sym__Alignas] = ACTIONS(4180), + [anon_sym_COLON] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4180), + [anon_sym_QMARK] = ACTIONS(4182), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_asm] = ACTIONS(4180), + [anon_sym___asm__] = ACTIONS(4180), + [anon_sym___asm] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4180), + [anon_sym_DASH_GT] = ACTIONS(4182), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4180), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4180), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4180), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4180), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4180), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4180), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4180), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4180), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4180), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4180), + [anon_sym_NS_AVAILABLE] = ACTIONS(4180), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4180), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4180), + [anon_sym_API_AVAILABLE] = ACTIONS(4180), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4180), + [anon_sym_API_DEPRECATED] = ACTIONS(4180), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4180), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4180), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4180), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4180), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4180), + [anon_sym___deprecated_msg] = ACTIONS(4180), + [anon_sym___deprecated_enum_msg] = ACTIONS(4180), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4180), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4180), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4180), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4180), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4180), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4180), + }, + [1968] = { + [sym_identifier] = ACTIONS(2446), + [aux_sym_preproc_def_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token1] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2446), + [sym_preproc_directive] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2448), + [anon_sym_PLUS] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym___extension__] = ACTIONS(2446), + [anon_sym_typedef] = ACTIONS(2446), + [anon_sym_extern] = ACTIONS(2446), + [anon_sym___attribute__] = ACTIONS(2446), + [anon_sym___attribute] = ACTIONS(2446), + [anon_sym_noreturn] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym___declspec] = ACTIONS(2446), + [anon_sym___cdecl] = ACTIONS(2446), + [anon_sym___clrcall] = ACTIONS(2446), + [anon_sym___stdcall] = ACTIONS(2446), + [anon_sym___fastcall] = ACTIONS(2446), + [anon_sym___thiscall] = ACTIONS(2446), + [anon_sym___vectorcall] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_signed] = ACTIONS(2446), + [anon_sym_unsigned] = ACTIONS(2446), + [anon_sym_long] = ACTIONS(2446), + [anon_sym_short] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_ATautoreleasepool] = ACTIONS(2448), + [anon_sym_auto] = ACTIONS(2446), + [anon_sym_register] = ACTIONS(2446), + [anon_sym_inline] = ACTIONS(2446), + [anon_sym___inline] = ACTIONS(2446), + [anon_sym___inline__] = ACTIONS(2446), + [anon_sym___forceinline] = ACTIONS(2446), + [anon_sym_thread_local] = ACTIONS(2446), + [anon_sym___thread] = ACTIONS(2446), + [anon_sym_CG_EXTERN] = ACTIONS(2446), + [anon_sym_CG_INLINE] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2446), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2446), + [anon_sym_IBOutlet] = ACTIONS(2446), + [anon_sym_IBInspectable] = ACTIONS(2446), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2446), + [anon_sym_NS_INLINE] = ACTIONS(2446), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2446), + [anon_sym_OBJC_EXPORT] = ACTIONS(2446), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [anon_sym_constexpr] = ACTIONS(2446), + [anon_sym_volatile] = ACTIONS(2446), + [anon_sym_restrict] = ACTIONS(2446), + [anon_sym___restrict__] = ACTIONS(2446), + [anon_sym__Atomic] = ACTIONS(2446), + [anon_sym__Noreturn] = ACTIONS(2446), + [anon_sym__Nonnull] = ACTIONS(2446), + [anon_sym_nullable] = ACTIONS(2446), + [anon_sym__Complex] = ACTIONS(2446), + [anon_sym__Nullable] = ACTIONS(2446), + [anon_sym__Nullable_result] = ACTIONS(2446), + [anon_sym__Null_unspecified] = ACTIONS(2446), + [anon_sym___autoreleasing] = ACTIONS(2446), + [anon_sym___block] = ACTIONS(2446), + [anon_sym___bridge] = ACTIONS(2446), + [anon_sym___bridge_retained] = ACTIONS(2446), + [anon_sym___bridge_transfer] = ACTIONS(2446), + [anon_sym___complex] = ACTIONS(2446), + [anon_sym___const] = ACTIONS(2446), + [anon_sym___imag] = ACTIONS(2446), + [anon_sym___kindof] = ACTIONS(2446), + [anon_sym___nonnull] = ACTIONS(2446), + [anon_sym___nullable] = ACTIONS(2446), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2446), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2446), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2446), + [anon_sym___real] = ACTIONS(2446), + [anon_sym___strong] = ACTIONS(2446), + [anon_sym___unsafe_unretained] = ACTIONS(2446), + [anon_sym___unused] = ACTIONS(2446), + [anon_sym___weak] = ACTIONS(2446), + [anon_sym_alignas] = ACTIONS(2446), + [anon_sym__Alignas] = ACTIONS(2446), + [sym_primitive_type] = ACTIONS(2446), + [anon_sym_enum] = ACTIONS(2446), + [anon_sym_struct] = ACTIONS(2446), + [anon_sym_union] = ACTIONS(2446), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2446), + [anon_sym___typeof] = ACTIONS(2446), + [anon_sym_typeof] = ACTIONS(2446), + [aux_sym_preproc_undef_token1] = ACTIONS(2446), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2446), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2446), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2446), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2446), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE] = ACTIONS(2446), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_API_AVAILABLE] = ACTIONS(2446), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_API_DEPRECATED] = ACTIONS(2446), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2446), + [anon_sym___deprecated_msg] = ACTIONS(2446), + [anon_sym___deprecated_enum_msg] = ACTIONS(2446), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2446), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2446), + [anon_sym_ATend] = ACTIONS(2448), + [anon_sym_AToptional] = ACTIONS(2448), + [anon_sym_ATrequired] = ACTIONS(2448), + [anon_sym_ATsynthesize] = ACTIONS(2448), + [anon_sym_ATdynamic] = ACTIONS(2448), + [anon_sym_ATproperty] = ACTIONS(2448), + [anon_sym_BOOL] = ACTIONS(2446), + [anon_sym_IMP] = ACTIONS(2446), + [anon_sym_SEL] = ACTIONS(2446), + [anon_sym_Class] = ACTIONS(2446), + [anon_sym_id] = ACTIONS(2446), + }, + [1969] = { + [sym_identifier] = ACTIONS(2450), + [aux_sym_preproc_def_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2450), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym___cdecl] = ACTIONS(2450), + [anon_sym___clrcall] = ACTIONS(2450), + [anon_sym___stdcall] = ACTIONS(2450), + [anon_sym___fastcall] = ACTIONS(2450), + [anon_sym___thiscall] = ACTIONS(2450), + [anon_sym___vectorcall] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2452), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_ATautoreleasepool] = ACTIONS(2452), + [anon_sym_auto] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_CG_EXTERN] = ACTIONS(2450), + [anon_sym_CG_INLINE] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2450), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2450), + [anon_sym_IBOutlet] = ACTIONS(2450), + [anon_sym_IBInspectable] = ACTIONS(2450), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2450), + [anon_sym_NS_INLINE] = ACTIONS(2450), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2450), + [anon_sym_OBJC_EXPORT] = ACTIONS(2450), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_nullable] = ACTIONS(2450), + [anon_sym__Complex] = ACTIONS(2450), + [anon_sym__Nullable] = ACTIONS(2450), + [anon_sym__Nullable_result] = ACTIONS(2450), + [anon_sym__Null_unspecified] = ACTIONS(2450), + [anon_sym___autoreleasing] = ACTIONS(2450), + [anon_sym___block] = ACTIONS(2450), + [anon_sym___bridge] = ACTIONS(2450), + [anon_sym___bridge_retained] = ACTIONS(2450), + [anon_sym___bridge_transfer] = ACTIONS(2450), + [anon_sym___complex] = ACTIONS(2450), + [anon_sym___const] = ACTIONS(2450), + [anon_sym___imag] = ACTIONS(2450), + [anon_sym___kindof] = ACTIONS(2450), + [anon_sym___nonnull] = ACTIONS(2450), + [anon_sym___nullable] = ACTIONS(2450), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2450), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2450), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2450), + [anon_sym___real] = ACTIONS(2450), + [anon_sym___strong] = ACTIONS(2450), + [anon_sym___unsafe_unretained] = ACTIONS(2450), + [anon_sym___unused] = ACTIONS(2450), + [anon_sym___weak] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2450), + [anon_sym___typeof] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [aux_sym_preproc_undef_token1] = ACTIONS(2450), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2450), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2450), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2450), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2450), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE] = ACTIONS(2450), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_API_AVAILABLE] = ACTIONS(2450), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_API_DEPRECATED] = ACTIONS(2450), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2450), + [anon_sym___deprecated_msg] = ACTIONS(2450), + [anon_sym___deprecated_enum_msg] = ACTIONS(2450), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2450), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2450), + [anon_sym_ATend] = ACTIONS(2452), + [anon_sym_AToptional] = ACTIONS(2452), + [anon_sym_ATrequired] = ACTIONS(2452), + [anon_sym_ATsynthesize] = ACTIONS(2452), + [anon_sym_ATdynamic] = ACTIONS(2452), + [anon_sym_ATproperty] = ACTIONS(2452), + [anon_sym_BOOL] = ACTIONS(2450), + [anon_sym_IMP] = ACTIONS(2450), + [anon_sym_SEL] = ACTIONS(2450), + [anon_sym_Class] = ACTIONS(2450), + [anon_sym_id] = ACTIONS(2450), + }, + [1970] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2268), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1971] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2271), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4880), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1972] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2146), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4689), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1973] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2275), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(5026), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1974] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2315), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4665), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1975] = { + [sym_identifier] = ACTIONS(4206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4208), + [anon_sym_COMMA] = ACTIONS(4208), + [anon_sym_RPAREN] = ACTIONS(4208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4208), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4208), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_DASH] = ACTIONS(4206), + [anon_sym_PLUS] = ACTIONS(4206), + [anon_sym_STAR] = ACTIONS(4208), + [anon_sym_SLASH] = ACTIONS(4206), + [anon_sym_PERCENT] = ACTIONS(4208), + [anon_sym_PIPE_PIPE] = ACTIONS(4208), + [anon_sym_AMP_AMP] = ACTIONS(4208), + [anon_sym_PIPE] = ACTIONS(4206), + [anon_sym_CARET] = ACTIONS(4208), + [anon_sym_AMP] = ACTIONS(4206), + [anon_sym_EQ_EQ] = ACTIONS(4208), + [anon_sym_BANG_EQ] = ACTIONS(4208), + [anon_sym_GT] = ACTIONS(4206), + [anon_sym_GT_EQ] = ACTIONS(4208), + [anon_sym_LT_EQ] = ACTIONS(4208), + [anon_sym_LT] = ACTIONS(4206), + [anon_sym_LT_LT] = ACTIONS(4208), + [anon_sym_GT_GT] = ACTIONS(4208), + [anon_sym_SEMI] = ACTIONS(4208), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_extern] = ACTIONS(4206), + [anon_sym___attribute__] = ACTIONS(4206), + [anon_sym___attribute] = ACTIONS(4206), + [anon_sym_noreturn] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4208), + [anon_sym_RBRACK] = ACTIONS(4208), + [anon_sym___declspec] = ACTIONS(4206), + [anon_sym_LBRACE] = ACTIONS(4208), + [anon_sym_RBRACE] = ACTIONS(4208), + [anon_sym_static] = ACTIONS(4206), + [anon_sym_EQ] = ACTIONS(4206), + [anon_sym_ATautoreleasepool] = ACTIONS(4208), + [anon_sym_auto] = ACTIONS(4206), + [anon_sym_register] = ACTIONS(4206), + [anon_sym_inline] = ACTIONS(4206), + [anon_sym___inline] = ACTIONS(4206), + [anon_sym___inline__] = ACTIONS(4206), + [anon_sym___forceinline] = ACTIONS(4206), + [anon_sym_thread_local] = ACTIONS(4206), + [anon_sym___thread] = ACTIONS(4206), + [anon_sym_CG_EXTERN] = ACTIONS(4206), + [anon_sym_CG_INLINE] = ACTIONS(4206), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4206), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4206), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4206), + [anon_sym_IBOutlet] = ACTIONS(4206), + [anon_sym_IBInspectable] = ACTIONS(4206), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4206), + [anon_sym_NS_INLINE] = ACTIONS(4206), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4206), + [anon_sym_OBJC_EXPORT] = ACTIONS(4206), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4206), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4206), + [anon_sym_const] = ACTIONS(4206), + [anon_sym_constexpr] = ACTIONS(4206), + [anon_sym_volatile] = ACTIONS(4206), + [anon_sym_restrict] = ACTIONS(4206), + [anon_sym___restrict__] = ACTIONS(4206), + [anon_sym__Atomic] = ACTIONS(4206), + [anon_sym__Noreturn] = ACTIONS(4206), + [anon_sym__Nonnull] = ACTIONS(4206), + [anon_sym_nullable] = ACTIONS(4206), + [anon_sym__Complex] = ACTIONS(4206), + [anon_sym__Nullable] = ACTIONS(4206), + [anon_sym__Nullable_result] = ACTIONS(4206), + [anon_sym__Null_unspecified] = ACTIONS(4206), + [anon_sym___autoreleasing] = ACTIONS(4206), + [anon_sym___block] = ACTIONS(4206), + [anon_sym___bridge] = ACTIONS(4206), + [anon_sym___bridge_retained] = ACTIONS(4206), + [anon_sym___bridge_transfer] = ACTIONS(4206), + [anon_sym___complex] = ACTIONS(4206), + [anon_sym___const] = ACTIONS(4206), + [anon_sym___imag] = ACTIONS(4206), + [anon_sym___kindof] = ACTIONS(4206), + [anon_sym___nonnull] = ACTIONS(4206), + [anon_sym___nullable] = ACTIONS(4206), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4206), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4206), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4206), + [anon_sym___real] = ACTIONS(4206), + [anon_sym___strong] = ACTIONS(4206), + [anon_sym___unsafe_unretained] = ACTIONS(4206), + [anon_sym___unused] = ACTIONS(4206), + [anon_sym___weak] = ACTIONS(4206), + [anon_sym_alignas] = ACTIONS(4206), + [anon_sym__Alignas] = ACTIONS(4206), + [anon_sym_COLON] = ACTIONS(4208), + [anon_sym_in] = ACTIONS(4206), + [anon_sym_QMARK] = ACTIONS(4208), + [anon_sym_DASH_DASH] = ACTIONS(4208), + [anon_sym_PLUS_PLUS] = ACTIONS(4208), + [anon_sym_asm] = ACTIONS(4206), + [anon_sym___asm__] = ACTIONS(4206), + [anon_sym___asm] = ACTIONS(4206), + [anon_sym_DOT] = ACTIONS(4206), + [anon_sym_DASH_GT] = ACTIONS(4208), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4206), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4206), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4206), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4206), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4206), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4206), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4206), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4206), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4206), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4206), + [anon_sym_NS_AVAILABLE] = ACTIONS(4206), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4206), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4206), + [anon_sym_API_AVAILABLE] = ACTIONS(4206), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4206), + [anon_sym_API_DEPRECATED] = ACTIONS(4206), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4206), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4206), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4206), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4206), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4206), + [anon_sym___deprecated_msg] = ACTIONS(4206), + [anon_sym___deprecated_enum_msg] = ACTIONS(4206), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4206), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4206), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4206), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4206), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4206), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4206), + }, + [1976] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2189), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4707), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1977] = { + [sym_identifier] = ACTIONS(5028), + [aux_sym_preproc_def_token1] = ACTIONS(5028), + [aux_sym_preproc_if_token1] = ACTIONS(5028), + [aux_sym_preproc_if_token2] = ACTIONS(5028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5028), + [aux_sym_preproc_else_token1] = ACTIONS(5028), + [aux_sym_preproc_elif_token1] = ACTIONS(5028), + [sym_preproc_directive] = ACTIONS(5028), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5032), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym___extension__] = ACTIONS(5028), + [anon_sym_typedef] = ACTIONS(5028), + [anon_sym_extern] = ACTIONS(5028), + [anon_sym___attribute__] = ACTIONS(5028), + [anon_sym___attribute] = ACTIONS(5028), + [anon_sym_noreturn] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5032), + [anon_sym___declspec] = ACTIONS(5028), + [anon_sym___based] = ACTIONS(5034), + [anon_sym___cdecl] = ACTIONS(5028), + [anon_sym___clrcall] = ACTIONS(5028), + [anon_sym___stdcall] = ACTIONS(5028), + [anon_sym___fastcall] = ACTIONS(5028), + [anon_sym___thiscall] = ACTIONS(5028), + [anon_sym___vectorcall] = ACTIONS(5028), + [anon_sym_signed] = ACTIONS(5028), + [anon_sym_unsigned] = ACTIONS(5028), + [anon_sym_long] = ACTIONS(5028), + [anon_sym_short] = ACTIONS(5028), + [anon_sym_static] = ACTIONS(5028), + [anon_sym_auto] = ACTIONS(5028), + [anon_sym_register] = ACTIONS(5028), + [anon_sym_inline] = ACTIONS(5028), + [anon_sym___inline] = ACTIONS(5028), + [anon_sym___inline__] = ACTIONS(5028), + [anon_sym___forceinline] = ACTIONS(5028), + [anon_sym_thread_local] = ACTIONS(5028), + [anon_sym___thread] = ACTIONS(5028), + [anon_sym_CG_EXTERN] = ACTIONS(5028), + [anon_sym_CG_INLINE] = ACTIONS(5028), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5028), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5028), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5028), + [anon_sym_IBOutlet] = ACTIONS(5028), + [anon_sym_IBInspectable] = ACTIONS(5028), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5028), + [anon_sym_NS_INLINE] = ACTIONS(5028), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5028), + [anon_sym_OBJC_EXPORT] = ACTIONS(5028), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5028), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5028), + [anon_sym_const] = ACTIONS(5028), + [anon_sym_constexpr] = ACTIONS(5028), + [anon_sym_volatile] = ACTIONS(5028), + [anon_sym_restrict] = ACTIONS(5028), + [anon_sym___restrict__] = ACTIONS(5028), + [anon_sym__Atomic] = ACTIONS(5028), + [anon_sym__Noreturn] = ACTIONS(5028), + [anon_sym__Nonnull] = ACTIONS(5028), + [anon_sym_nullable] = ACTIONS(5028), + [anon_sym__Complex] = ACTIONS(5028), + [anon_sym__Nullable] = ACTIONS(5028), + [anon_sym__Nullable_result] = ACTIONS(5028), + [anon_sym__Null_unspecified] = ACTIONS(5028), + [anon_sym___autoreleasing] = ACTIONS(5028), + [anon_sym___block] = ACTIONS(5028), + [anon_sym___bridge] = ACTIONS(5028), + [anon_sym___bridge_retained] = ACTIONS(5028), + [anon_sym___bridge_transfer] = ACTIONS(5028), + [anon_sym___complex] = ACTIONS(5028), + [anon_sym___const] = ACTIONS(5028), + [anon_sym___imag] = ACTIONS(5028), + [anon_sym___kindof] = ACTIONS(5028), + [anon_sym___nonnull] = ACTIONS(5028), + [anon_sym___nullable] = ACTIONS(5028), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5028), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5028), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5028), + [anon_sym___real] = ACTIONS(5028), + [anon_sym___strong] = ACTIONS(5028), + [anon_sym___unsafe_unretained] = ACTIONS(5028), + [anon_sym___unused] = ACTIONS(5028), + [anon_sym___weak] = ACTIONS(5028), + [anon_sym_alignas] = ACTIONS(5028), + [anon_sym__Alignas] = ACTIONS(5028), + [sym_primitive_type] = ACTIONS(5028), + [anon_sym_enum] = ACTIONS(5028), + [anon_sym_struct] = ACTIONS(5028), + [anon_sym_union] = ACTIONS(5028), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5028), + [anon_sym___typeof] = ACTIONS(5028), + [anon_sym_typeof] = ACTIONS(5028), + [aux_sym_preproc_undef_token1] = ACTIONS(5028), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5028), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5028), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5028), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5028), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5028), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5028), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5028), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5028), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5028), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5028), + [anon_sym_NS_AVAILABLE] = ACTIONS(5028), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5028), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5028), + [anon_sym_API_AVAILABLE] = ACTIONS(5028), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5028), + [anon_sym_API_DEPRECATED] = ACTIONS(5028), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5028), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5028), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5028), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5028), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5028), + [anon_sym___deprecated_msg] = ACTIONS(5028), + [anon_sym___deprecated_enum_msg] = ACTIONS(5028), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5028), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5028), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5028), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5028), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5028), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5028), + [anon_sym_ATsynthesize] = ACTIONS(5032), + [anon_sym_ATdynamic] = ACTIONS(5032), + [anon_sym_BOOL] = ACTIONS(5028), + [anon_sym_IMP] = ACTIONS(5028), + [anon_sym_SEL] = ACTIONS(5028), + [anon_sym_Class] = ACTIONS(5028), + [anon_sym_id] = ACTIONS(5028), + }, + [1978] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4592), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_variadic_parameter] = STATE(5774), + [sym_parameter_declaration] = STATE(5897), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(5036), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4162), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1979] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2158), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4715), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1980] = { + [sym_identifier] = ACTIONS(4066), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4068), + [anon_sym_COMMA] = ACTIONS(4068), + [anon_sym_RPAREN] = ACTIONS(4068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4068), + [anon_sym_LPAREN2] = ACTIONS(4068), + [anon_sym_DASH] = ACTIONS(4066), + [anon_sym_PLUS] = ACTIONS(4066), + [anon_sym_STAR] = ACTIONS(4068), + [anon_sym_SLASH] = ACTIONS(4066), + [anon_sym_PERCENT] = ACTIONS(4068), + [anon_sym_PIPE_PIPE] = ACTIONS(4068), + [anon_sym_AMP_AMP] = ACTIONS(4068), + [anon_sym_PIPE] = ACTIONS(4066), + [anon_sym_CARET] = ACTIONS(4068), + [anon_sym_AMP] = ACTIONS(4066), + [anon_sym_EQ_EQ] = ACTIONS(4068), + [anon_sym_BANG_EQ] = ACTIONS(4068), + [anon_sym_GT] = ACTIONS(4066), + [anon_sym_GT_EQ] = ACTIONS(4068), + [anon_sym_LT_EQ] = ACTIONS(4068), + [anon_sym_LT] = ACTIONS(4066), + [anon_sym_LT_LT] = ACTIONS(4068), + [anon_sym_GT_GT] = ACTIONS(4068), + [anon_sym_SEMI] = ACTIONS(4068), + [anon_sym___extension__] = ACTIONS(4066), + [anon_sym_extern] = ACTIONS(4066), + [anon_sym___attribute__] = ACTIONS(4066), + [anon_sym___attribute] = ACTIONS(4066), + [anon_sym_noreturn] = ACTIONS(4066), + [anon_sym_LBRACK] = ACTIONS(4068), + [anon_sym_RBRACK] = ACTIONS(4068), + [anon_sym___declspec] = ACTIONS(4066), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_RBRACE] = ACTIONS(4068), + [anon_sym_static] = ACTIONS(4066), + [anon_sym_EQ] = ACTIONS(4066), + [anon_sym_ATautoreleasepool] = ACTIONS(4068), + [anon_sym_auto] = ACTIONS(4066), + [anon_sym_register] = ACTIONS(4066), + [anon_sym_inline] = ACTIONS(4066), + [anon_sym___inline] = ACTIONS(4066), + [anon_sym___inline__] = ACTIONS(4066), + [anon_sym___forceinline] = ACTIONS(4066), + [anon_sym_thread_local] = ACTIONS(4066), + [anon_sym___thread] = ACTIONS(4066), + [anon_sym_CG_EXTERN] = ACTIONS(4066), + [anon_sym_CG_INLINE] = ACTIONS(4066), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4066), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4066), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4066), + [anon_sym_IBOutlet] = ACTIONS(4066), + [anon_sym_IBInspectable] = ACTIONS(4066), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4066), + [anon_sym_NS_INLINE] = ACTIONS(4066), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4066), + [anon_sym_OBJC_EXPORT] = ACTIONS(4066), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4066), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4066), + [anon_sym_const] = ACTIONS(4066), + [anon_sym_constexpr] = ACTIONS(4066), + [anon_sym_volatile] = ACTIONS(4066), + [anon_sym_restrict] = ACTIONS(4066), + [anon_sym___restrict__] = ACTIONS(4066), + [anon_sym__Atomic] = ACTIONS(4066), + [anon_sym__Noreturn] = ACTIONS(4066), + [anon_sym__Nonnull] = ACTIONS(4066), + [anon_sym_nullable] = ACTIONS(4066), + [anon_sym__Complex] = ACTIONS(4066), + [anon_sym__Nullable] = ACTIONS(4066), + [anon_sym__Nullable_result] = ACTIONS(4066), + [anon_sym__Null_unspecified] = ACTIONS(4066), + [anon_sym___autoreleasing] = ACTIONS(4066), + [anon_sym___block] = ACTIONS(4066), + [anon_sym___bridge] = ACTIONS(4066), + [anon_sym___bridge_retained] = ACTIONS(4066), + [anon_sym___bridge_transfer] = ACTIONS(4066), + [anon_sym___complex] = ACTIONS(4066), + [anon_sym___const] = ACTIONS(4066), + [anon_sym___imag] = ACTIONS(4066), + [anon_sym___kindof] = ACTIONS(4066), + [anon_sym___nonnull] = ACTIONS(4066), + [anon_sym___nullable] = ACTIONS(4066), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4066), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4066), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4066), + [anon_sym___real] = ACTIONS(4066), + [anon_sym___strong] = ACTIONS(4066), + [anon_sym___unsafe_unretained] = ACTIONS(4066), + [anon_sym___unused] = ACTIONS(4066), + [anon_sym___weak] = ACTIONS(4066), + [anon_sym_alignas] = ACTIONS(4066), + [anon_sym__Alignas] = ACTIONS(4066), + [anon_sym_COLON] = ACTIONS(4068), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_QMARK] = ACTIONS(4068), + [anon_sym_DASH_DASH] = ACTIONS(4068), + [anon_sym_PLUS_PLUS] = ACTIONS(4068), + [anon_sym_asm] = ACTIONS(4066), + [anon_sym___asm__] = ACTIONS(4066), + [anon_sym___asm] = ACTIONS(4066), + [anon_sym_DOT] = ACTIONS(4066), + [anon_sym_DASH_GT] = ACTIONS(4068), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4066), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4066), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4066), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4066), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4066), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4066), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4066), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4066), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4066), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4066), + [anon_sym_NS_AVAILABLE] = ACTIONS(4066), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4066), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4066), + [anon_sym_API_AVAILABLE] = ACTIONS(4066), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4066), + [anon_sym_API_DEPRECATED] = ACTIONS(4066), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4066), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4066), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4066), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4066), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4066), + [anon_sym___deprecated_msg] = ACTIONS(4066), + [anon_sym___deprecated_enum_msg] = ACTIONS(4066), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4066), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4066), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4066), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4066), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4066), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4066), + }, + [1981] = { + [sym_identifier] = ACTIONS(4070), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4072), + [anon_sym_RPAREN] = ACTIONS(4072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4072), + [anon_sym_LPAREN2] = ACTIONS(4072), + [anon_sym_DASH] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(4070), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_SLASH] = ACTIONS(4070), + [anon_sym_PERCENT] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4072), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE] = ACTIONS(4070), + [anon_sym_CARET] = ACTIONS(4072), + [anon_sym_AMP] = ACTIONS(4070), + [anon_sym_EQ_EQ] = ACTIONS(4072), + [anon_sym_BANG_EQ] = ACTIONS(4072), + [anon_sym_GT] = ACTIONS(4070), + [anon_sym_GT_EQ] = ACTIONS(4072), + [anon_sym_LT_EQ] = ACTIONS(4072), + [anon_sym_LT] = ACTIONS(4070), + [anon_sym_LT_LT] = ACTIONS(4072), + [anon_sym_GT_GT] = ACTIONS(4072), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym___extension__] = ACTIONS(4070), + [anon_sym_extern] = ACTIONS(4070), + [anon_sym___attribute__] = ACTIONS(4070), + [anon_sym___attribute] = ACTIONS(4070), + [anon_sym_noreturn] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_RBRACK] = ACTIONS(4072), + [anon_sym___declspec] = ACTIONS(4070), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_RBRACE] = ACTIONS(4072), + [anon_sym_static] = ACTIONS(4070), + [anon_sym_EQ] = ACTIONS(4070), + [anon_sym_ATautoreleasepool] = ACTIONS(4072), + [anon_sym_auto] = ACTIONS(4070), + [anon_sym_register] = ACTIONS(4070), + [anon_sym_inline] = ACTIONS(4070), + [anon_sym___inline] = ACTIONS(4070), + [anon_sym___inline__] = ACTIONS(4070), + [anon_sym___forceinline] = ACTIONS(4070), + [anon_sym_thread_local] = ACTIONS(4070), + [anon_sym___thread] = ACTIONS(4070), + [anon_sym_CG_EXTERN] = ACTIONS(4070), + [anon_sym_CG_INLINE] = ACTIONS(4070), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4070), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4070), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4070), + [anon_sym_IBOutlet] = ACTIONS(4070), + [anon_sym_IBInspectable] = ACTIONS(4070), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4070), + [anon_sym_NS_INLINE] = ACTIONS(4070), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4070), + [anon_sym_OBJC_EXPORT] = ACTIONS(4070), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4070), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4070), + [anon_sym_const] = ACTIONS(4070), + [anon_sym_constexpr] = ACTIONS(4070), + [anon_sym_volatile] = ACTIONS(4070), + [anon_sym_restrict] = ACTIONS(4070), + [anon_sym___restrict__] = ACTIONS(4070), + [anon_sym__Atomic] = ACTIONS(4070), + [anon_sym__Noreturn] = ACTIONS(4070), + [anon_sym__Nonnull] = ACTIONS(4070), + [anon_sym_nullable] = ACTIONS(4070), + [anon_sym__Complex] = ACTIONS(4070), + [anon_sym__Nullable] = ACTIONS(4070), + [anon_sym__Nullable_result] = ACTIONS(4070), + [anon_sym__Null_unspecified] = ACTIONS(4070), + [anon_sym___autoreleasing] = ACTIONS(4070), + [anon_sym___block] = ACTIONS(4070), + [anon_sym___bridge] = ACTIONS(4070), + [anon_sym___bridge_retained] = ACTIONS(4070), + [anon_sym___bridge_transfer] = ACTIONS(4070), + [anon_sym___complex] = ACTIONS(4070), + [anon_sym___const] = ACTIONS(4070), + [anon_sym___imag] = ACTIONS(4070), + [anon_sym___kindof] = ACTIONS(4070), + [anon_sym___nonnull] = ACTIONS(4070), + [anon_sym___nullable] = ACTIONS(4070), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4070), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4070), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4070), + [anon_sym___real] = ACTIONS(4070), + [anon_sym___strong] = ACTIONS(4070), + [anon_sym___unsafe_unretained] = ACTIONS(4070), + [anon_sym___unused] = ACTIONS(4070), + [anon_sym___weak] = ACTIONS(4070), + [anon_sym_alignas] = ACTIONS(4070), + [anon_sym__Alignas] = ACTIONS(4070), + [anon_sym_COLON] = ACTIONS(4072), + [anon_sym_in] = ACTIONS(4070), + [anon_sym_QMARK] = ACTIONS(4072), + [anon_sym_DASH_DASH] = ACTIONS(4072), + [anon_sym_PLUS_PLUS] = ACTIONS(4072), + [anon_sym_asm] = ACTIONS(4070), + [anon_sym___asm__] = ACTIONS(4070), + [anon_sym___asm] = ACTIONS(4070), + [anon_sym_DOT] = ACTIONS(4070), + [anon_sym_DASH_GT] = ACTIONS(4072), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4070), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4070), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4070), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4070), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4070), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4070), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4070), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4070), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4070), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4070), + [anon_sym_NS_AVAILABLE] = ACTIONS(4070), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4070), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4070), + [anon_sym_API_AVAILABLE] = ACTIONS(4070), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4070), + [anon_sym_API_DEPRECATED] = ACTIONS(4070), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4070), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4070), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4070), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4070), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4070), + [anon_sym___deprecated_msg] = ACTIONS(4070), + [anon_sym___deprecated_enum_msg] = ACTIONS(4070), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4070), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4070), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4070), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4070), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4070), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4070), + }, + [1982] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2207), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4727), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1983] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2265), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4731), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1984] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2160), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4854), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1985] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2272), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4693), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1986] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2196), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1987] = { + [sym_identifier] = ACTIONS(4246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4248), + [anon_sym_COMMA] = ACTIONS(4248), + [anon_sym_RPAREN] = ACTIONS(4248), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4248), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4248), + [anon_sym_LPAREN2] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4246), + [anon_sym_STAR] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4246), + [anon_sym_PERCENT] = ACTIONS(4248), + [anon_sym_PIPE_PIPE] = ACTIONS(4248), + [anon_sym_AMP_AMP] = ACTIONS(4248), + [anon_sym_PIPE] = ACTIONS(4246), + [anon_sym_CARET] = ACTIONS(4248), + [anon_sym_AMP] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4248), + [anon_sym_LT_EQ] = ACTIONS(4248), + [anon_sym_LT] = ACTIONS(4246), + [anon_sym_LT_LT] = ACTIONS(4248), + [anon_sym_GT_GT] = ACTIONS(4248), + [anon_sym_SEMI] = ACTIONS(4248), + [anon_sym___extension__] = ACTIONS(4246), + [anon_sym_extern] = ACTIONS(4246), + [anon_sym___attribute__] = ACTIONS(4246), + [anon_sym___attribute] = ACTIONS(4246), + [anon_sym_noreturn] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4248), + [anon_sym_RBRACK] = ACTIONS(4248), + [anon_sym___declspec] = ACTIONS(4246), + [anon_sym_LBRACE] = ACTIONS(4248), + [anon_sym_RBRACE] = ACTIONS(4248), + [anon_sym_static] = ACTIONS(4246), + [anon_sym_EQ] = ACTIONS(4246), + [anon_sym_ATautoreleasepool] = ACTIONS(4248), + [anon_sym_auto] = ACTIONS(4246), + [anon_sym_register] = ACTIONS(4246), + [anon_sym_inline] = ACTIONS(4246), + [anon_sym___inline] = ACTIONS(4246), + [anon_sym___inline__] = ACTIONS(4246), + [anon_sym___forceinline] = ACTIONS(4246), + [anon_sym_thread_local] = ACTIONS(4246), + [anon_sym___thread] = ACTIONS(4246), + [anon_sym_CG_EXTERN] = ACTIONS(4246), + [anon_sym_CG_INLINE] = ACTIONS(4246), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4246), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4246), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4246), + [anon_sym_IBOutlet] = ACTIONS(4246), + [anon_sym_IBInspectable] = ACTIONS(4246), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4246), + [anon_sym_NS_INLINE] = ACTIONS(4246), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4246), + [anon_sym_OBJC_EXPORT] = ACTIONS(4246), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4246), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4246), + [anon_sym_const] = ACTIONS(4246), + [anon_sym_constexpr] = ACTIONS(4246), + [anon_sym_volatile] = ACTIONS(4246), + [anon_sym_restrict] = ACTIONS(4246), + [anon_sym___restrict__] = ACTIONS(4246), + [anon_sym__Atomic] = ACTIONS(4246), + [anon_sym__Noreturn] = ACTIONS(4246), + [anon_sym__Nonnull] = ACTIONS(4246), + [anon_sym_nullable] = ACTIONS(4246), + [anon_sym__Complex] = ACTIONS(4246), + [anon_sym__Nullable] = ACTIONS(4246), + [anon_sym__Nullable_result] = ACTIONS(4246), + [anon_sym__Null_unspecified] = ACTIONS(4246), + [anon_sym___autoreleasing] = ACTIONS(4246), + [anon_sym___block] = ACTIONS(4246), + [anon_sym___bridge] = ACTIONS(4246), + [anon_sym___bridge_retained] = ACTIONS(4246), + [anon_sym___bridge_transfer] = ACTIONS(4246), + [anon_sym___complex] = ACTIONS(4246), + [anon_sym___const] = ACTIONS(4246), + [anon_sym___imag] = ACTIONS(4246), + [anon_sym___kindof] = ACTIONS(4246), + [anon_sym___nonnull] = ACTIONS(4246), + [anon_sym___nullable] = ACTIONS(4246), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4246), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4246), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4246), + [anon_sym___real] = ACTIONS(4246), + [anon_sym___strong] = ACTIONS(4246), + [anon_sym___unsafe_unretained] = ACTIONS(4246), + [anon_sym___unused] = ACTIONS(4246), + [anon_sym___weak] = ACTIONS(4246), + [anon_sym_alignas] = ACTIONS(4246), + [anon_sym__Alignas] = ACTIONS(4246), + [anon_sym_COLON] = ACTIONS(4248), + [anon_sym_in] = ACTIONS(4246), + [anon_sym_QMARK] = ACTIONS(4248), + [anon_sym_DASH_DASH] = ACTIONS(4248), + [anon_sym_PLUS_PLUS] = ACTIONS(4248), + [anon_sym_asm] = ACTIONS(4246), + [anon_sym___asm__] = ACTIONS(4246), + [anon_sym___asm] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4246), + [anon_sym_DASH_GT] = ACTIONS(4248), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4246), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4246), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4246), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4246), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4246), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4246), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4246), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4246), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4246), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4246), + [anon_sym_NS_AVAILABLE] = ACTIONS(4246), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4246), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4246), + [anon_sym_API_AVAILABLE] = ACTIONS(4246), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4246), + [anon_sym_API_DEPRECATED] = ACTIONS(4246), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4246), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4246), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4246), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4246), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4246), + [anon_sym___deprecated_msg] = ACTIONS(4246), + [anon_sym___deprecated_enum_msg] = ACTIONS(4246), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4246), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4246), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4246), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4246), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4246), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4246), + }, + [1988] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2346), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4703), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1989] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2176), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4723), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1990] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2326), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4711), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1991] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4592), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_variadic_parameter] = STATE(5897), + [sym_parameter_declaration] = STATE(5897), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4162), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1992] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2332), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4719), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1993] = { + [sym_identifier] = ACTIONS(4914), + [aux_sym_preproc_def_token1] = ACTIONS(4914), + [aux_sym_preproc_if_token1] = ACTIONS(4914), + [aux_sym_preproc_if_token2] = ACTIONS(4914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4914), + [aux_sym_preproc_else_token1] = ACTIONS(4914), + [aux_sym_preproc_elif_token1] = ACTIONS(4914), + [sym_preproc_directive] = ACTIONS(4914), + [anon_sym_LPAREN2] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4916), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_CARET] = ACTIONS(4916), + [anon_sym___extension__] = ACTIONS(4914), + [anon_sym_typedef] = ACTIONS(4914), + [anon_sym_extern] = ACTIONS(4914), + [anon_sym___attribute__] = ACTIONS(4914), + [anon_sym___attribute] = ACTIONS(4914), + [anon_sym_noreturn] = ACTIONS(4914), + [anon_sym_LBRACK] = ACTIONS(4916), + [anon_sym___declspec] = ACTIONS(4914), + [anon_sym___based] = ACTIONS(4914), + [anon_sym___cdecl] = ACTIONS(4914), + [anon_sym___clrcall] = ACTIONS(4914), + [anon_sym___stdcall] = ACTIONS(4914), + [anon_sym___fastcall] = ACTIONS(4914), + [anon_sym___thiscall] = ACTIONS(4914), + [anon_sym___vectorcall] = ACTIONS(4914), + [anon_sym_signed] = ACTIONS(4914), + [anon_sym_unsigned] = ACTIONS(4914), + [anon_sym_long] = ACTIONS(4914), + [anon_sym_short] = ACTIONS(4914), + [anon_sym_static] = ACTIONS(4914), + [anon_sym_auto] = ACTIONS(4914), + [anon_sym_register] = ACTIONS(4914), + [anon_sym_inline] = ACTIONS(4914), + [anon_sym___inline] = ACTIONS(4914), + [anon_sym___inline__] = ACTIONS(4914), + [anon_sym___forceinline] = ACTIONS(4914), + [anon_sym_thread_local] = ACTIONS(4914), + [anon_sym___thread] = ACTIONS(4914), + [anon_sym_CG_EXTERN] = ACTIONS(4914), + [anon_sym_CG_INLINE] = ACTIONS(4914), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4914), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4914), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4914), + [anon_sym_IBOutlet] = ACTIONS(4914), + [anon_sym_IBInspectable] = ACTIONS(4914), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4914), + [anon_sym_NS_INLINE] = ACTIONS(4914), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4914), + [anon_sym_OBJC_EXPORT] = ACTIONS(4914), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4914), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4914), + [anon_sym_const] = ACTIONS(4914), + [anon_sym_constexpr] = ACTIONS(4914), + [anon_sym_volatile] = ACTIONS(4914), + [anon_sym_restrict] = ACTIONS(4914), + [anon_sym___restrict__] = ACTIONS(4914), + [anon_sym__Atomic] = ACTIONS(4914), + [anon_sym__Noreturn] = ACTIONS(4914), + [anon_sym__Nonnull] = ACTIONS(4914), + [anon_sym_nullable] = ACTIONS(4914), + [anon_sym__Complex] = ACTIONS(4914), + [anon_sym__Nullable] = ACTIONS(4914), + [anon_sym__Nullable_result] = ACTIONS(4914), + [anon_sym__Null_unspecified] = ACTIONS(4914), + [anon_sym___autoreleasing] = ACTIONS(4914), + [anon_sym___block] = ACTIONS(4914), + [anon_sym___bridge] = ACTIONS(4914), + [anon_sym___bridge_retained] = ACTIONS(4914), + [anon_sym___bridge_transfer] = ACTIONS(4914), + [anon_sym___complex] = ACTIONS(4914), + [anon_sym___const] = ACTIONS(4914), + [anon_sym___imag] = ACTIONS(4914), + [anon_sym___kindof] = ACTIONS(4914), + [anon_sym___nonnull] = ACTIONS(4914), + [anon_sym___nullable] = ACTIONS(4914), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4914), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4914), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4914), + [anon_sym___real] = ACTIONS(4914), + [anon_sym___strong] = ACTIONS(4914), + [anon_sym___unsafe_unretained] = ACTIONS(4914), + [anon_sym___unused] = ACTIONS(4914), + [anon_sym___weak] = ACTIONS(4914), + [anon_sym_alignas] = ACTIONS(4914), + [anon_sym__Alignas] = ACTIONS(4914), + [sym_primitive_type] = ACTIONS(4914), + [anon_sym_enum] = ACTIONS(4914), + [anon_sym_struct] = ACTIONS(4914), + [anon_sym_union] = ACTIONS(4914), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4914), + [anon_sym___typeof] = ACTIONS(4914), + [anon_sym_typeof] = ACTIONS(4914), + [aux_sym_preproc_undef_token1] = ACTIONS(4914), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4914), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4914), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4914), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4914), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4914), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4914), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4914), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4914), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4914), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4914), + [anon_sym_NS_AVAILABLE] = ACTIONS(4914), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4914), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4914), + [anon_sym_API_AVAILABLE] = ACTIONS(4914), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4914), + [anon_sym_API_DEPRECATED] = ACTIONS(4914), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4914), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4914), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4914), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4914), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4914), + [anon_sym___deprecated_msg] = ACTIONS(4914), + [anon_sym___deprecated_enum_msg] = ACTIONS(4914), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4914), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4914), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4914), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4914), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4914), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4914), + [anon_sym_ATsynthesize] = ACTIONS(4916), + [anon_sym_ATdynamic] = ACTIONS(4916), + [anon_sym_BOOL] = ACTIONS(4914), + [anon_sym_IMP] = ACTIONS(4914), + [anon_sym_SEL] = ACTIONS(4914), + [anon_sym_Class] = ACTIONS(4914), + [anon_sym_id] = ACTIONS(4914), + }, + [1994] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2339), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4739), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1995] = { + [sym_identifier] = ACTIONS(3995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(3997), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(3995), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(3995), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(3995), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym___extension__] = ACTIONS(3995), + [anon_sym_extern] = ACTIONS(3995), + [anon_sym___attribute__] = ACTIONS(3995), + [anon_sym___attribute] = ACTIONS(3995), + [anon_sym_noreturn] = ACTIONS(3995), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym___declspec] = ACTIONS(3995), + [anon_sym_RBRACE] = ACTIONS(3997), + [anon_sym_static] = ACTIONS(3995), + [anon_sym_EQ] = ACTIONS(4785), + [anon_sym_auto] = ACTIONS(3995), + [anon_sym_register] = ACTIONS(3995), + [anon_sym_inline] = ACTIONS(3995), + [anon_sym___inline] = ACTIONS(3995), + [anon_sym___inline__] = ACTIONS(3995), + [anon_sym___forceinline] = ACTIONS(3995), + [anon_sym_thread_local] = ACTIONS(3995), + [anon_sym___thread] = ACTIONS(3995), + [anon_sym_CG_EXTERN] = ACTIONS(3995), + [anon_sym_CG_INLINE] = ACTIONS(3995), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3995), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3995), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3995), + [anon_sym_IBOutlet] = ACTIONS(3995), + [anon_sym_IBInspectable] = ACTIONS(3995), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3995), + [anon_sym_NS_INLINE] = ACTIONS(3995), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3995), + [anon_sym_OBJC_EXPORT] = ACTIONS(3995), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3995), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3995), + [anon_sym_const] = ACTIONS(3995), + [anon_sym_constexpr] = ACTIONS(3995), + [anon_sym_volatile] = ACTIONS(3995), + [anon_sym_restrict] = ACTIONS(3995), + [anon_sym___restrict__] = ACTIONS(3995), + [anon_sym__Atomic] = ACTIONS(3995), + [anon_sym__Noreturn] = ACTIONS(3995), + [anon_sym__Nonnull] = ACTIONS(3995), + [anon_sym_nullable] = ACTIONS(3995), + [anon_sym__Complex] = ACTIONS(3995), + [anon_sym__Nullable] = ACTIONS(3995), + [anon_sym__Nullable_result] = ACTIONS(3995), + [anon_sym__Null_unspecified] = ACTIONS(3995), + [anon_sym___autoreleasing] = ACTIONS(3995), + [anon_sym___block] = ACTIONS(3995), + [anon_sym___bridge] = ACTIONS(3995), + [anon_sym___bridge_retained] = ACTIONS(3995), + [anon_sym___bridge_transfer] = ACTIONS(3995), + [anon_sym___complex] = ACTIONS(3995), + [anon_sym___const] = ACTIONS(3995), + [anon_sym___imag] = ACTIONS(3995), + [anon_sym___kindof] = ACTIONS(3995), + [anon_sym___nonnull] = ACTIONS(3995), + [anon_sym___nullable] = ACTIONS(3995), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3995), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3995), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3995), + [anon_sym___real] = ACTIONS(3995), + [anon_sym___strong] = ACTIONS(3995), + [anon_sym___unsafe_unretained] = ACTIONS(3995), + [anon_sym___unused] = ACTIONS(3995), + [anon_sym___weak] = ACTIONS(3995), + [anon_sym_alignas] = ACTIONS(3995), + [anon_sym__Alignas] = ACTIONS(3995), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4787), + [anon_sym_SLASH_EQ] = ACTIONS(4787), + [anon_sym_PERCENT_EQ] = ACTIONS(4787), + [anon_sym_PLUS_EQ] = ACTIONS(4787), + [anon_sym_DASH_EQ] = ACTIONS(4787), + [anon_sym_LT_LT_EQ] = ACTIONS(4787), + [anon_sym_GT_GT_EQ] = ACTIONS(4787), + [anon_sym_AMP_EQ] = ACTIONS(4787), + [anon_sym_CARET_EQ] = ACTIONS(4787), + [anon_sym_PIPE_EQ] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3995), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3995), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3995), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3995), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3995), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3995), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3995), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3995), + [anon_sym_NS_AVAILABLE] = ACTIONS(3995), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3995), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_API_AVAILABLE] = ACTIONS(3995), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_API_DEPRECATED] = ACTIONS(3995), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3995), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3995), + [anon_sym___deprecated_msg] = ACTIONS(3995), + [anon_sym___deprecated_enum_msg] = ACTIONS(3995), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3995), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3995), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3995), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3995), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3995), + }, + [1996] = { + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_DASH] = ACTIONS(2426), + [anon_sym_PLUS] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_ATautoreleasepool] = ACTIONS(2426), + [anon_sym_auto] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_CG_EXTERN] = ACTIONS(2424), + [anon_sym_CG_INLINE] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2424), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2424), + [anon_sym_IBOutlet] = ACTIONS(2424), + [anon_sym_IBInspectable] = ACTIONS(2424), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2424), + [anon_sym_NS_INLINE] = ACTIONS(2424), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2424), + [anon_sym_OBJC_EXPORT] = ACTIONS(2424), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_nullable] = ACTIONS(2424), + [anon_sym__Complex] = ACTIONS(2424), + [anon_sym__Nullable] = ACTIONS(2424), + [anon_sym__Nullable_result] = ACTIONS(2424), + [anon_sym__Null_unspecified] = ACTIONS(2424), + [anon_sym___autoreleasing] = ACTIONS(2424), + [anon_sym___block] = ACTIONS(2424), + [anon_sym___bridge] = ACTIONS(2424), + [anon_sym___bridge_retained] = ACTIONS(2424), + [anon_sym___bridge_transfer] = ACTIONS(2424), + [anon_sym___complex] = ACTIONS(2424), + [anon_sym___const] = ACTIONS(2424), + [anon_sym___imag] = ACTIONS(2424), + [anon_sym___kindof] = ACTIONS(2424), + [anon_sym___nonnull] = ACTIONS(2424), + [anon_sym___nullable] = ACTIONS(2424), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2424), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2424), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2424), + [anon_sym___real] = ACTIONS(2424), + [anon_sym___strong] = ACTIONS(2424), + [anon_sym___unsafe_unretained] = ACTIONS(2424), + [anon_sym___unused] = ACTIONS(2424), + [anon_sym___weak] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2424), + [anon_sym___typeof] = ACTIONS(2424), + [anon_sym_typeof] = ACTIONS(2424), + [aux_sym_preproc_undef_token1] = ACTIONS(2424), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2424), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2424), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2424), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2424), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE] = ACTIONS(2424), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_API_AVAILABLE] = ACTIONS(2424), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_API_DEPRECATED] = ACTIONS(2424), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2424), + [anon_sym___deprecated_msg] = ACTIONS(2424), + [anon_sym___deprecated_enum_msg] = ACTIONS(2424), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2424), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2424), + [anon_sym_ATend] = ACTIONS(2426), + [anon_sym_AToptional] = ACTIONS(2426), + [anon_sym_ATrequired] = ACTIONS(2426), + [anon_sym_ATsynthesize] = ACTIONS(2426), + [anon_sym_ATdynamic] = ACTIONS(2426), + [anon_sym_ATproperty] = ACTIONS(2426), + [anon_sym_BOOL] = ACTIONS(2424), + [anon_sym_IMP] = ACTIONS(2424), + [anon_sym_SEL] = ACTIONS(2424), + [anon_sym_Class] = ACTIONS(2424), + [anon_sym_id] = ACTIONS(2424), + }, + [1997] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2345), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [1998] = { + [sym_identifier] = ACTIONS(2462), + [aux_sym_preproc_def_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2462), + [sym_preproc_directive] = ACTIONS(2462), + [anon_sym_DASH] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym___extension__] = ACTIONS(2462), + [anon_sym_typedef] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym___attribute__] = ACTIONS(2462), + [anon_sym___attribute] = ACTIONS(2462), + [anon_sym_noreturn] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2464), + [anon_sym___declspec] = ACTIONS(2462), + [anon_sym___cdecl] = ACTIONS(2462), + [anon_sym___clrcall] = ACTIONS(2462), + [anon_sym___stdcall] = ACTIONS(2462), + [anon_sym___fastcall] = ACTIONS(2462), + [anon_sym___thiscall] = ACTIONS(2462), + [anon_sym___vectorcall] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_signed] = ACTIONS(2462), + [anon_sym_unsigned] = ACTIONS(2462), + [anon_sym_long] = ACTIONS(2462), + [anon_sym_short] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_ATautoreleasepool] = ACTIONS(2464), + [anon_sym_auto] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_inline] = ACTIONS(2462), + [anon_sym___inline] = ACTIONS(2462), + [anon_sym___inline__] = ACTIONS(2462), + [anon_sym___forceinline] = ACTIONS(2462), + [anon_sym_thread_local] = ACTIONS(2462), + [anon_sym___thread] = ACTIONS(2462), + [anon_sym_CG_EXTERN] = ACTIONS(2462), + [anon_sym_CG_INLINE] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2462), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2462), + [anon_sym_IBOutlet] = ACTIONS(2462), + [anon_sym_IBInspectable] = ACTIONS(2462), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2462), + [anon_sym_NS_INLINE] = ACTIONS(2462), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2462), + [anon_sym_OBJC_EXPORT] = ACTIONS(2462), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_constexpr] = ACTIONS(2462), + [anon_sym_volatile] = ACTIONS(2462), + [anon_sym_restrict] = ACTIONS(2462), + [anon_sym___restrict__] = ACTIONS(2462), + [anon_sym__Atomic] = ACTIONS(2462), + [anon_sym__Noreturn] = ACTIONS(2462), + [anon_sym__Nonnull] = ACTIONS(2462), + [anon_sym_nullable] = ACTIONS(2462), + [anon_sym__Complex] = ACTIONS(2462), + [anon_sym__Nullable] = ACTIONS(2462), + [anon_sym__Nullable_result] = ACTIONS(2462), + [anon_sym__Null_unspecified] = ACTIONS(2462), + [anon_sym___autoreleasing] = ACTIONS(2462), + [anon_sym___block] = ACTIONS(2462), + [anon_sym___bridge] = ACTIONS(2462), + [anon_sym___bridge_retained] = ACTIONS(2462), + [anon_sym___bridge_transfer] = ACTIONS(2462), + [anon_sym___complex] = ACTIONS(2462), + [anon_sym___const] = ACTIONS(2462), + [anon_sym___imag] = ACTIONS(2462), + [anon_sym___kindof] = ACTIONS(2462), + [anon_sym___nonnull] = ACTIONS(2462), + [anon_sym___nullable] = ACTIONS(2462), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2462), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2462), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2462), + [anon_sym___real] = ACTIONS(2462), + [anon_sym___strong] = ACTIONS(2462), + [anon_sym___unsafe_unretained] = ACTIONS(2462), + [anon_sym___unused] = ACTIONS(2462), + [anon_sym___weak] = ACTIONS(2462), + [anon_sym_alignas] = ACTIONS(2462), + [anon_sym__Alignas] = ACTIONS(2462), + [sym_primitive_type] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2462), + [anon_sym___typeof] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [aux_sym_preproc_undef_token1] = ACTIONS(2462), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2462), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2462), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2462), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2462), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE] = ACTIONS(2462), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_API_AVAILABLE] = ACTIONS(2462), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_API_DEPRECATED] = ACTIONS(2462), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2462), + [anon_sym___deprecated_msg] = ACTIONS(2462), + [anon_sym___deprecated_enum_msg] = ACTIONS(2462), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2462), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2462), + [anon_sym_ATend] = ACTIONS(2464), + [anon_sym_AToptional] = ACTIONS(2464), + [anon_sym_ATrequired] = ACTIONS(2464), + [anon_sym_ATsynthesize] = ACTIONS(2464), + [anon_sym_ATdynamic] = ACTIONS(2464), + [anon_sym_ATproperty] = ACTIONS(2464), + [anon_sym_BOOL] = ACTIONS(2462), + [anon_sym_IMP] = ACTIONS(2462), + [anon_sym_SEL] = ACTIONS(2462), + [anon_sym_Class] = ACTIONS(2462), + [anon_sym_id] = ACTIONS(2462), + }, + [1999] = { + [sym_parameterized_arguments] = STATE(2012), + [sym_identifier] = ACTIONS(5038), + [aux_sym_preproc_def_token1] = ACTIONS(5038), + [aux_sym_preproc_if_token1] = ACTIONS(5038), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5038), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5038), + [sym_preproc_directive] = ACTIONS(5038), + [anon_sym_LPAREN2] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(5038), + [anon_sym_typedef] = ACTIONS(5038), + [anon_sym_extern] = ACTIONS(5038), + [anon_sym___attribute__] = ACTIONS(5038), + [anon_sym___attribute] = ACTIONS(5038), + [anon_sym_noreturn] = ACTIONS(5038), + [anon_sym_LBRACK] = ACTIONS(3190), + [anon_sym___declspec] = ACTIONS(5038), + [anon_sym___cdecl] = ACTIONS(5038), + [anon_sym___clrcall] = ACTIONS(5038), + [anon_sym___stdcall] = ACTIONS(5038), + [anon_sym___fastcall] = ACTIONS(5038), + [anon_sym___thiscall] = ACTIONS(5038), + [anon_sym___vectorcall] = ACTIONS(5038), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_signed] = ACTIONS(5038), + [anon_sym_unsigned] = ACTIONS(5038), + [anon_sym_long] = ACTIONS(5038), + [anon_sym_short] = ACTIONS(5038), + [anon_sym_static] = ACTIONS(5038), + [anon_sym_auto] = ACTIONS(5038), + [anon_sym_register] = ACTIONS(5038), + [anon_sym_inline] = ACTIONS(5038), + [anon_sym___inline] = ACTIONS(5038), + [anon_sym___inline__] = ACTIONS(5038), + [anon_sym___forceinline] = ACTIONS(5038), + [anon_sym_thread_local] = ACTIONS(5038), + [anon_sym___thread] = ACTIONS(5038), + [anon_sym_CG_EXTERN] = ACTIONS(5038), + [anon_sym_CG_INLINE] = ACTIONS(5038), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5038), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5038), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5038), + [anon_sym_IBOutlet] = ACTIONS(5038), + [anon_sym_IBInspectable] = ACTIONS(5038), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5038), + [anon_sym_NS_INLINE] = ACTIONS(5038), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5038), + [anon_sym_OBJC_EXPORT] = ACTIONS(5038), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5038), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5038), + [anon_sym_const] = ACTIONS(5038), + [anon_sym_constexpr] = ACTIONS(5038), + [anon_sym_volatile] = ACTIONS(5038), + [anon_sym_restrict] = ACTIONS(5038), + [anon_sym___restrict__] = ACTIONS(5038), + [anon_sym__Atomic] = ACTIONS(5038), + [anon_sym__Noreturn] = ACTIONS(5038), + [anon_sym__Nonnull] = ACTIONS(5038), + [anon_sym_nullable] = ACTIONS(5038), + [anon_sym__Complex] = ACTIONS(5038), + [anon_sym__Nullable] = ACTIONS(5038), + [anon_sym__Nullable_result] = ACTIONS(5038), + [anon_sym__Null_unspecified] = ACTIONS(5038), + [anon_sym___autoreleasing] = ACTIONS(5038), + [anon_sym___block] = ACTIONS(5038), + [anon_sym___bridge] = ACTIONS(5038), + [anon_sym___bridge_retained] = ACTIONS(5038), + [anon_sym___bridge_transfer] = ACTIONS(5038), + [anon_sym___complex] = ACTIONS(5038), + [anon_sym___const] = ACTIONS(5038), + [anon_sym___imag] = ACTIONS(5038), + [anon_sym___kindof] = ACTIONS(5038), + [anon_sym___nonnull] = ACTIONS(5038), + [anon_sym___nullable] = ACTIONS(5038), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5038), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5038), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5038), + [anon_sym___real] = ACTIONS(5038), + [anon_sym___strong] = ACTIONS(5038), + [anon_sym___unsafe_unretained] = ACTIONS(5038), + [anon_sym___unused] = ACTIONS(5038), + [anon_sym___weak] = ACTIONS(5038), + [anon_sym_alignas] = ACTIONS(5038), + [anon_sym__Alignas] = ACTIONS(5038), + [sym_primitive_type] = ACTIONS(5038), + [anon_sym_enum] = ACTIONS(5038), + [anon_sym_COLON] = ACTIONS(3190), + [anon_sym_struct] = ACTIONS(5038), + [anon_sym_union] = ACTIONS(5038), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5038), + [anon_sym___typeof] = ACTIONS(5038), + [anon_sym_typeof] = ACTIONS(5038), + [aux_sym_preproc_undef_token1] = ACTIONS(5038), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5038), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5038), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5038), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5038), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5038), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5038), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5038), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5038), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5038), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5038), + [anon_sym_NS_AVAILABLE] = ACTIONS(5038), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5038), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5038), + [anon_sym_API_AVAILABLE] = ACTIONS(5038), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5038), + [anon_sym_API_DEPRECATED] = ACTIONS(5038), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5038), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5038), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5038), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5038), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5038), + [anon_sym___deprecated_msg] = ACTIONS(5038), + [anon_sym___deprecated_enum_msg] = ACTIONS(5038), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5038), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5038), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5038), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5038), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5038), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5038), + [anon_sym_ATend] = ACTIONS(3190), + [anon_sym_ATsynthesize] = ACTIONS(3190), + [anon_sym_ATdynamic] = ACTIONS(3190), + [anon_sym_ATproperty] = ACTIONS(3190), + [anon_sym_BOOL] = ACTIONS(5038), + [anon_sym_IMP] = ACTIONS(5038), + [anon_sym_SEL] = ACTIONS(5038), + [anon_sym_Class] = ACTIONS(5038), + [anon_sym_id] = ACTIONS(5038), + }, + [2000] = { + [sym_identifier] = ACTIONS(2462), + [aux_sym_preproc_def_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2462), + [sym_preproc_directive] = ACTIONS(2462), + [anon_sym_DASH] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym___extension__] = ACTIONS(2462), + [anon_sym_typedef] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym___attribute__] = ACTIONS(2462), + [anon_sym___attribute] = ACTIONS(2462), + [anon_sym_noreturn] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2464), + [anon_sym___declspec] = ACTIONS(2462), + [anon_sym___cdecl] = ACTIONS(2462), + [anon_sym___clrcall] = ACTIONS(2462), + [anon_sym___stdcall] = ACTIONS(2462), + [anon_sym___fastcall] = ACTIONS(2462), + [anon_sym___thiscall] = ACTIONS(2462), + [anon_sym___vectorcall] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_signed] = ACTIONS(2462), + [anon_sym_unsigned] = ACTIONS(2462), + [anon_sym_long] = ACTIONS(2462), + [anon_sym_short] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_ATautoreleasepool] = ACTIONS(2464), + [anon_sym_auto] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_inline] = ACTIONS(2462), + [anon_sym___inline] = ACTIONS(2462), + [anon_sym___inline__] = ACTIONS(2462), + [anon_sym___forceinline] = ACTIONS(2462), + [anon_sym_thread_local] = ACTIONS(2462), + [anon_sym___thread] = ACTIONS(2462), + [anon_sym_CG_EXTERN] = ACTIONS(2462), + [anon_sym_CG_INLINE] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2462), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2462), + [anon_sym_IBOutlet] = ACTIONS(2462), + [anon_sym_IBInspectable] = ACTIONS(2462), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2462), + [anon_sym_NS_INLINE] = ACTIONS(2462), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2462), + [anon_sym_OBJC_EXPORT] = ACTIONS(2462), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_constexpr] = ACTIONS(2462), + [anon_sym_volatile] = ACTIONS(2462), + [anon_sym_restrict] = ACTIONS(2462), + [anon_sym___restrict__] = ACTIONS(2462), + [anon_sym__Atomic] = ACTIONS(2462), + [anon_sym__Noreturn] = ACTIONS(2462), + [anon_sym__Nonnull] = ACTIONS(2462), + [anon_sym_nullable] = ACTIONS(2462), + [anon_sym__Complex] = ACTIONS(2462), + [anon_sym__Nullable] = ACTIONS(2462), + [anon_sym__Nullable_result] = ACTIONS(2462), + [anon_sym__Null_unspecified] = ACTIONS(2462), + [anon_sym___autoreleasing] = ACTIONS(2462), + [anon_sym___block] = ACTIONS(2462), + [anon_sym___bridge] = ACTIONS(2462), + [anon_sym___bridge_retained] = ACTIONS(2462), + [anon_sym___bridge_transfer] = ACTIONS(2462), + [anon_sym___complex] = ACTIONS(2462), + [anon_sym___const] = ACTIONS(2462), + [anon_sym___imag] = ACTIONS(2462), + [anon_sym___kindof] = ACTIONS(2462), + [anon_sym___nonnull] = ACTIONS(2462), + [anon_sym___nullable] = ACTIONS(2462), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2462), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2462), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2462), + [anon_sym___real] = ACTIONS(2462), + [anon_sym___strong] = ACTIONS(2462), + [anon_sym___unsafe_unretained] = ACTIONS(2462), + [anon_sym___unused] = ACTIONS(2462), + [anon_sym___weak] = ACTIONS(2462), + [anon_sym_alignas] = ACTIONS(2462), + [anon_sym__Alignas] = ACTIONS(2462), + [sym_primitive_type] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2462), + [anon_sym___typeof] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [aux_sym_preproc_undef_token1] = ACTIONS(2462), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2462), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2462), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2462), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2462), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE] = ACTIONS(2462), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_API_AVAILABLE] = ACTIONS(2462), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_API_DEPRECATED] = ACTIONS(2462), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2462), + [anon_sym___deprecated_msg] = ACTIONS(2462), + [anon_sym___deprecated_enum_msg] = ACTIONS(2462), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2462), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2462), + [anon_sym_ATend] = ACTIONS(2464), + [anon_sym_AToptional] = ACTIONS(2464), + [anon_sym_ATrequired] = ACTIONS(2464), + [anon_sym_ATsynthesize] = ACTIONS(2464), + [anon_sym_ATdynamic] = ACTIONS(2464), + [anon_sym_ATproperty] = ACTIONS(2464), + [anon_sym_BOOL] = ACTIONS(2462), + [anon_sym_IMP] = ACTIONS(2462), + [anon_sym_SEL] = ACTIONS(2462), + [anon_sym_Class] = ACTIONS(2462), + [anon_sym_id] = ACTIONS(2462), + }, + [2001] = { + [sym_identifier] = ACTIONS(4238), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4240), + [anon_sym_COMMA] = ACTIONS(4240), + [anon_sym_RPAREN] = ACTIONS(4240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4240), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_PLUS] = ACTIONS(4238), + [anon_sym_STAR] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4238), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_PIPE_PIPE] = ACTIONS(4240), + [anon_sym_AMP_AMP] = ACTIONS(4240), + [anon_sym_PIPE] = ACTIONS(4238), + [anon_sym_CARET] = ACTIONS(4240), + [anon_sym_AMP] = ACTIONS(4238), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4238), + [anon_sym_GT_EQ] = ACTIONS(4240), + [anon_sym_LT_EQ] = ACTIONS(4240), + [anon_sym_LT] = ACTIONS(4238), + [anon_sym_LT_LT] = ACTIONS(4240), + [anon_sym_GT_GT] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4240), + [anon_sym___extension__] = ACTIONS(4238), + [anon_sym_extern] = ACTIONS(4238), + [anon_sym___attribute__] = ACTIONS(4238), + [anon_sym___attribute] = ACTIONS(4238), + [anon_sym_noreturn] = ACTIONS(4238), + [anon_sym_LBRACK] = ACTIONS(4240), + [anon_sym_RBRACK] = ACTIONS(4240), + [anon_sym___declspec] = ACTIONS(4238), + [anon_sym_LBRACE] = ACTIONS(4240), + [anon_sym_RBRACE] = ACTIONS(4240), + [anon_sym_static] = ACTIONS(4238), + [anon_sym_EQ] = ACTIONS(4238), + [anon_sym_ATautoreleasepool] = ACTIONS(4240), + [anon_sym_auto] = ACTIONS(4238), + [anon_sym_register] = ACTIONS(4238), + [anon_sym_inline] = ACTIONS(4238), + [anon_sym___inline] = ACTIONS(4238), + [anon_sym___inline__] = ACTIONS(4238), + [anon_sym___forceinline] = ACTIONS(4238), + [anon_sym_thread_local] = ACTIONS(4238), + [anon_sym___thread] = ACTIONS(4238), + [anon_sym_CG_EXTERN] = ACTIONS(4238), + [anon_sym_CG_INLINE] = ACTIONS(4238), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4238), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4238), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4238), + [anon_sym_IBOutlet] = ACTIONS(4238), + [anon_sym_IBInspectable] = ACTIONS(4238), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4238), + [anon_sym_NS_INLINE] = ACTIONS(4238), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4238), + [anon_sym_OBJC_EXPORT] = ACTIONS(4238), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4238), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4238), + [anon_sym_const] = ACTIONS(4238), + [anon_sym_constexpr] = ACTIONS(4238), + [anon_sym_volatile] = ACTIONS(4238), + [anon_sym_restrict] = ACTIONS(4238), + [anon_sym___restrict__] = ACTIONS(4238), + [anon_sym__Atomic] = ACTIONS(4238), + [anon_sym__Noreturn] = ACTIONS(4238), + [anon_sym__Nonnull] = ACTIONS(4238), + [anon_sym_nullable] = ACTIONS(4238), + [anon_sym__Complex] = ACTIONS(4238), + [anon_sym__Nullable] = ACTIONS(4238), + [anon_sym__Nullable_result] = ACTIONS(4238), + [anon_sym__Null_unspecified] = ACTIONS(4238), + [anon_sym___autoreleasing] = ACTIONS(4238), + [anon_sym___block] = ACTIONS(4238), + [anon_sym___bridge] = ACTIONS(4238), + [anon_sym___bridge_retained] = ACTIONS(4238), + [anon_sym___bridge_transfer] = ACTIONS(4238), + [anon_sym___complex] = ACTIONS(4238), + [anon_sym___const] = ACTIONS(4238), + [anon_sym___imag] = ACTIONS(4238), + [anon_sym___kindof] = ACTIONS(4238), + [anon_sym___nonnull] = ACTIONS(4238), + [anon_sym___nullable] = ACTIONS(4238), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4238), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4238), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4238), + [anon_sym___real] = ACTIONS(4238), + [anon_sym___strong] = ACTIONS(4238), + [anon_sym___unsafe_unretained] = ACTIONS(4238), + [anon_sym___unused] = ACTIONS(4238), + [anon_sym___weak] = ACTIONS(4238), + [anon_sym_alignas] = ACTIONS(4238), + [anon_sym__Alignas] = ACTIONS(4238), + [anon_sym_COLON] = ACTIONS(4240), + [anon_sym_in] = ACTIONS(4238), + [anon_sym_QMARK] = ACTIONS(4240), + [anon_sym_DASH_DASH] = ACTIONS(4240), + [anon_sym_PLUS_PLUS] = ACTIONS(4240), + [anon_sym_asm] = ACTIONS(4238), + [anon_sym___asm__] = ACTIONS(4238), + [anon_sym___asm] = ACTIONS(4238), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_DASH_GT] = ACTIONS(4240), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4238), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4238), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4238), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4238), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4238), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4238), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4238), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4238), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4238), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4238), + [anon_sym_NS_AVAILABLE] = ACTIONS(4238), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4238), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4238), + [anon_sym_API_AVAILABLE] = ACTIONS(4238), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4238), + [anon_sym_API_DEPRECATED] = ACTIONS(4238), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4238), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4238), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4238), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4238), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4238), + [anon_sym___deprecated_msg] = ACTIONS(4238), + [anon_sym___deprecated_enum_msg] = ACTIONS(4238), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4238), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4238), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4238), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4238), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4238), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4238), + }, + [2002] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_compound_statement] = STATE(2113), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(4677), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2003] = { + [sym_identifier] = ACTIONS(4110), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4112), + [anon_sym_COMMA] = ACTIONS(4112), + [anon_sym_RPAREN] = ACTIONS(4112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4112), + [anon_sym_LPAREN2] = ACTIONS(4112), + [anon_sym_DASH] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4110), + [anon_sym_STAR] = ACTIONS(4112), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_PERCENT] = ACTIONS(4112), + [anon_sym_PIPE_PIPE] = ACTIONS(4112), + [anon_sym_AMP_AMP] = ACTIONS(4112), + [anon_sym_PIPE] = ACTIONS(4110), + [anon_sym_CARET] = ACTIONS(4112), + [anon_sym_AMP] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4112), + [anon_sym_BANG_EQ] = ACTIONS(4112), + [anon_sym_GT] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4112), + [anon_sym_LT_EQ] = ACTIONS(4112), + [anon_sym_LT] = ACTIONS(4110), + [anon_sym_LT_LT] = ACTIONS(4112), + [anon_sym_GT_GT] = ACTIONS(4112), + [anon_sym_SEMI] = ACTIONS(4112), + [anon_sym___extension__] = ACTIONS(4110), + [anon_sym_extern] = ACTIONS(4110), + [anon_sym___attribute__] = ACTIONS(4110), + [anon_sym___attribute] = ACTIONS(4110), + [anon_sym_noreturn] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4112), + [anon_sym_RBRACK] = ACTIONS(4112), + [anon_sym___declspec] = ACTIONS(4110), + [anon_sym_RBRACE] = ACTIONS(4112), + [anon_sym_static] = ACTIONS(4110), + [anon_sym_auto] = ACTIONS(4110), + [anon_sym_register] = ACTIONS(4110), + [anon_sym_inline] = ACTIONS(4110), + [anon_sym___inline] = ACTIONS(4110), + [anon_sym___inline__] = ACTIONS(4110), + [anon_sym___forceinline] = ACTIONS(4110), + [anon_sym_thread_local] = ACTIONS(4110), + [anon_sym___thread] = ACTIONS(4110), + [anon_sym_CG_EXTERN] = ACTIONS(4110), + [anon_sym_CG_INLINE] = ACTIONS(4110), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4110), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4110), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4110), + [anon_sym_IBOutlet] = ACTIONS(4110), + [anon_sym_IBInspectable] = ACTIONS(4110), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4110), + [anon_sym_NS_INLINE] = ACTIONS(4110), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4110), + [anon_sym_OBJC_EXPORT] = ACTIONS(4110), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4110), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4110), + [anon_sym_const] = ACTIONS(4110), + [anon_sym_constexpr] = ACTIONS(4110), + [anon_sym_volatile] = ACTIONS(4110), + [anon_sym_restrict] = ACTIONS(4110), + [anon_sym___restrict__] = ACTIONS(4110), + [anon_sym__Atomic] = ACTIONS(4110), + [anon_sym__Noreturn] = ACTIONS(4110), + [anon_sym__Nonnull] = ACTIONS(4110), + [anon_sym_nullable] = ACTIONS(4110), + [anon_sym__Complex] = ACTIONS(4110), + [anon_sym__Nullable] = ACTIONS(4110), + [anon_sym__Nullable_result] = ACTIONS(4110), + [anon_sym__Null_unspecified] = ACTIONS(4110), + [anon_sym___autoreleasing] = ACTIONS(4110), + [anon_sym___block] = ACTIONS(4110), + [anon_sym___bridge] = ACTIONS(4110), + [anon_sym___bridge_retained] = ACTIONS(4110), + [anon_sym___bridge_transfer] = ACTIONS(4110), + [anon_sym___complex] = ACTIONS(4110), + [anon_sym___const] = ACTIONS(4110), + [anon_sym___imag] = ACTIONS(4110), + [anon_sym___kindof] = ACTIONS(4110), + [anon_sym___nonnull] = ACTIONS(4110), + [anon_sym___nullable] = ACTIONS(4110), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4110), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4110), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4110), + [anon_sym___real] = ACTIONS(4110), + [anon_sym___strong] = ACTIONS(4110), + [anon_sym___unsafe_unretained] = ACTIONS(4110), + [anon_sym___unused] = ACTIONS(4110), + [anon_sym___weak] = ACTIONS(4110), + [anon_sym_alignas] = ACTIONS(4110), + [anon_sym__Alignas] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_DASH_GT] = ACTIONS(4112), + [anon_sym_AT] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4112), + [anon_sym_L_DQUOTE] = ACTIONS(4112), + [anon_sym_u_DQUOTE] = ACTIONS(4112), + [anon_sym_U_DQUOTE] = ACTIONS(4112), + [anon_sym_u8_DQUOTE] = ACTIONS(4112), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4110), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4110), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4110), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4110), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4110), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4110), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4110), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4110), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4110), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4110), + [anon_sym_NS_AVAILABLE] = ACTIONS(4110), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4110), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4110), + [anon_sym_API_AVAILABLE] = ACTIONS(4110), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4110), + [anon_sym_API_DEPRECATED] = ACTIONS(4110), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4110), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4110), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4110), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4110), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4110), + [anon_sym___deprecated_msg] = ACTIONS(4110), + [anon_sym___deprecated_enum_msg] = ACTIONS(4110), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4110), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4110), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4110), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4110), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4110), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4110), + }, + [2004] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1781), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5040), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2005] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4826), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(3061), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5042), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2006] = { + [sym_identifier] = ACTIONS(4074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4076), + [anon_sym_COMMA] = ACTIONS(4076), + [anon_sym_RPAREN] = ACTIONS(4076), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4076), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4076), + [anon_sym_LPAREN2] = ACTIONS(4076), + [anon_sym_DASH] = ACTIONS(4074), + [anon_sym_PLUS] = ACTIONS(4074), + [anon_sym_STAR] = ACTIONS(4076), + [anon_sym_SLASH] = ACTIONS(4074), + [anon_sym_PERCENT] = ACTIONS(4076), + [anon_sym_PIPE_PIPE] = ACTIONS(4076), + [anon_sym_AMP_AMP] = ACTIONS(4076), + [anon_sym_PIPE] = ACTIONS(4074), + [anon_sym_CARET] = ACTIONS(4076), + [anon_sym_AMP] = ACTIONS(4074), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_GT] = ACTIONS(4074), + [anon_sym_GT_EQ] = ACTIONS(4076), + [anon_sym_LT_EQ] = ACTIONS(4076), + [anon_sym_LT] = ACTIONS(4074), + [anon_sym_LT_LT] = ACTIONS(4076), + [anon_sym_GT_GT] = ACTIONS(4076), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym___extension__] = ACTIONS(4074), + [anon_sym_extern] = ACTIONS(4074), + [anon_sym___attribute__] = ACTIONS(4074), + [anon_sym___attribute] = ACTIONS(4074), + [anon_sym_noreturn] = ACTIONS(4074), + [anon_sym_LBRACK] = ACTIONS(4076), + [anon_sym_RBRACK] = ACTIONS(4076), + [anon_sym___declspec] = ACTIONS(4074), + [anon_sym_RBRACE] = ACTIONS(4076), + [anon_sym_static] = ACTIONS(4074), + [anon_sym_auto] = ACTIONS(4074), + [anon_sym_register] = ACTIONS(4074), + [anon_sym_inline] = ACTIONS(4074), + [anon_sym___inline] = ACTIONS(4074), + [anon_sym___inline__] = ACTIONS(4074), + [anon_sym___forceinline] = ACTIONS(4074), + [anon_sym_thread_local] = ACTIONS(4074), + [anon_sym___thread] = ACTIONS(4074), + [anon_sym_CG_EXTERN] = ACTIONS(4074), + [anon_sym_CG_INLINE] = ACTIONS(4074), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4074), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4074), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4074), + [anon_sym_IBOutlet] = ACTIONS(4074), + [anon_sym_IBInspectable] = ACTIONS(4074), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4074), + [anon_sym_NS_INLINE] = ACTIONS(4074), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4074), + [anon_sym_OBJC_EXPORT] = ACTIONS(4074), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4074), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4074), + [anon_sym_const] = ACTIONS(4074), + [anon_sym_constexpr] = ACTIONS(4074), + [anon_sym_volatile] = ACTIONS(4074), + [anon_sym_restrict] = ACTIONS(4074), + [anon_sym___restrict__] = ACTIONS(4074), + [anon_sym__Atomic] = ACTIONS(4074), + [anon_sym__Noreturn] = ACTIONS(4074), + [anon_sym__Nonnull] = ACTIONS(4074), + [anon_sym_nullable] = ACTIONS(4074), + [anon_sym__Complex] = ACTIONS(4074), + [anon_sym__Nullable] = ACTIONS(4074), + [anon_sym__Nullable_result] = ACTIONS(4074), + [anon_sym__Null_unspecified] = ACTIONS(4074), + [anon_sym___autoreleasing] = ACTIONS(4074), + [anon_sym___block] = ACTIONS(4074), + [anon_sym___bridge] = ACTIONS(4074), + [anon_sym___bridge_retained] = ACTIONS(4074), + [anon_sym___bridge_transfer] = ACTIONS(4074), + [anon_sym___complex] = ACTIONS(4074), + [anon_sym___const] = ACTIONS(4074), + [anon_sym___imag] = ACTIONS(4074), + [anon_sym___kindof] = ACTIONS(4074), + [anon_sym___nonnull] = ACTIONS(4074), + [anon_sym___nullable] = ACTIONS(4074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4074), + [anon_sym___real] = ACTIONS(4074), + [anon_sym___strong] = ACTIONS(4074), + [anon_sym___unsafe_unretained] = ACTIONS(4074), + [anon_sym___unused] = ACTIONS(4074), + [anon_sym___weak] = ACTIONS(4074), + [anon_sym_alignas] = ACTIONS(4074), + [anon_sym__Alignas] = ACTIONS(4074), + [anon_sym_COLON] = ACTIONS(4076), + [anon_sym_QMARK] = ACTIONS(4076), + [anon_sym_DASH_DASH] = ACTIONS(4076), + [anon_sym_PLUS_PLUS] = ACTIONS(4076), + [anon_sym_DOT] = ACTIONS(4074), + [anon_sym_DASH_GT] = ACTIONS(4076), + [anon_sym_AT] = ACTIONS(4076), + [anon_sym_DQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4076), + [anon_sym_u_DQUOTE] = ACTIONS(4076), + [anon_sym_U_DQUOTE] = ACTIONS(4076), + [anon_sym_u8_DQUOTE] = ACTIONS(4076), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4074), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4074), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4074), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4074), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4074), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4074), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4074), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4074), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4074), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4074), + [anon_sym_NS_AVAILABLE] = ACTIONS(4074), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4074), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4074), + [anon_sym_API_AVAILABLE] = ACTIONS(4074), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4074), + [anon_sym_API_DEPRECATED] = ACTIONS(4074), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4074), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4074), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4074), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4074), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4074), + [anon_sym___deprecated_msg] = ACTIONS(4074), + [anon_sym___deprecated_enum_msg] = ACTIONS(4074), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4074), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4074), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4074), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4074), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4074), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4074), + }, + [2007] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4826), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(3039), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5044), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2008] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1818), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5046), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2009] = { + [sym_identifier] = ACTIONS(5048), + [aux_sym_preproc_def_token1] = ACTIONS(5048), + [aux_sym_preproc_if_token1] = ACTIONS(5048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5048), + [sym_preproc_directive] = ACTIONS(5048), + [anon_sym_LPAREN2] = ACTIONS(5050), + [anon_sym_DASH] = ACTIONS(5050), + [anon_sym_PLUS] = ACTIONS(5050), + [anon_sym_LT] = ACTIONS(5050), + [anon_sym___extension__] = ACTIONS(5048), + [anon_sym_typedef] = ACTIONS(5048), + [anon_sym_extern] = ACTIONS(5048), + [anon_sym___attribute__] = ACTIONS(5048), + [anon_sym___attribute] = ACTIONS(5048), + [anon_sym_noreturn] = ACTIONS(5048), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym___declspec] = ACTIONS(5048), + [anon_sym___cdecl] = ACTIONS(5048), + [anon_sym___clrcall] = ACTIONS(5048), + [anon_sym___stdcall] = ACTIONS(5048), + [anon_sym___fastcall] = ACTIONS(5048), + [anon_sym___thiscall] = ACTIONS(5048), + [anon_sym___vectorcall] = ACTIONS(5048), + [anon_sym_LBRACE] = ACTIONS(5050), + [anon_sym_signed] = ACTIONS(5048), + [anon_sym_unsigned] = ACTIONS(5048), + [anon_sym_long] = ACTIONS(5048), + [anon_sym_short] = ACTIONS(5048), + [anon_sym_static] = ACTIONS(5048), + [anon_sym_auto] = ACTIONS(5048), + [anon_sym_register] = ACTIONS(5048), + [anon_sym_inline] = ACTIONS(5048), + [anon_sym___inline] = ACTIONS(5048), + [anon_sym___inline__] = ACTIONS(5048), + [anon_sym___forceinline] = ACTIONS(5048), + [anon_sym_thread_local] = ACTIONS(5048), + [anon_sym___thread] = ACTIONS(5048), + [anon_sym_CG_EXTERN] = ACTIONS(5048), + [anon_sym_CG_INLINE] = ACTIONS(5048), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5048), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5048), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5048), + [anon_sym_IBOutlet] = ACTIONS(5048), + [anon_sym_IBInspectable] = ACTIONS(5048), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5048), + [anon_sym_NS_INLINE] = ACTIONS(5048), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5048), + [anon_sym_OBJC_EXPORT] = ACTIONS(5048), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5048), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5048), + [anon_sym_const] = ACTIONS(5048), + [anon_sym_constexpr] = ACTIONS(5048), + [anon_sym_volatile] = ACTIONS(5048), + [anon_sym_restrict] = ACTIONS(5048), + [anon_sym___restrict__] = ACTIONS(5048), + [anon_sym__Atomic] = ACTIONS(5048), + [anon_sym__Noreturn] = ACTIONS(5048), + [anon_sym__Nonnull] = ACTIONS(5048), + [anon_sym_nullable] = ACTIONS(5048), + [anon_sym__Complex] = ACTIONS(5048), + [anon_sym__Nullable] = ACTIONS(5048), + [anon_sym__Nullable_result] = ACTIONS(5048), + [anon_sym__Null_unspecified] = ACTIONS(5048), + [anon_sym___autoreleasing] = ACTIONS(5048), + [anon_sym___block] = ACTIONS(5048), + [anon_sym___bridge] = ACTIONS(5048), + [anon_sym___bridge_retained] = ACTIONS(5048), + [anon_sym___bridge_transfer] = ACTIONS(5048), + [anon_sym___complex] = ACTIONS(5048), + [anon_sym___const] = ACTIONS(5048), + [anon_sym___imag] = ACTIONS(5048), + [anon_sym___kindof] = ACTIONS(5048), + [anon_sym___nonnull] = ACTIONS(5048), + [anon_sym___nullable] = ACTIONS(5048), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5048), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5048), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5048), + [anon_sym___real] = ACTIONS(5048), + [anon_sym___strong] = ACTIONS(5048), + [anon_sym___unsafe_unretained] = ACTIONS(5048), + [anon_sym___unused] = ACTIONS(5048), + [anon_sym___weak] = ACTIONS(5048), + [anon_sym_alignas] = ACTIONS(5048), + [anon_sym__Alignas] = ACTIONS(5048), + [sym_primitive_type] = ACTIONS(5048), + [anon_sym_enum] = ACTIONS(5048), + [anon_sym_COLON] = ACTIONS(5050), + [anon_sym_struct] = ACTIONS(5048), + [anon_sym_union] = ACTIONS(5048), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5048), + [anon_sym___typeof] = ACTIONS(5048), + [anon_sym_typeof] = ACTIONS(5048), + [aux_sym_preproc_undef_token1] = ACTIONS(5048), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5048), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5048), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5048), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5048), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5048), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5048), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5048), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5048), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5048), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5048), + [anon_sym_NS_AVAILABLE] = ACTIONS(5048), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5048), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5048), + [anon_sym_API_AVAILABLE] = ACTIONS(5048), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5048), + [anon_sym_API_DEPRECATED] = ACTIONS(5048), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5048), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5048), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5048), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5048), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5048), + [anon_sym___deprecated_msg] = ACTIONS(5048), + [anon_sym___deprecated_enum_msg] = ACTIONS(5048), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5048), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5048), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5048), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5048), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5048), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5048), + [anon_sym_ATend] = ACTIONS(5050), + [anon_sym_ATsynthesize] = ACTIONS(5050), + [anon_sym_ATdynamic] = ACTIONS(5050), + [anon_sym_ATproperty] = ACTIONS(5050), + [anon_sym_BOOL] = ACTIONS(5048), + [anon_sym_IMP] = ACTIONS(5048), + [anon_sym_SEL] = ACTIONS(5048), + [anon_sym_Class] = ACTIONS(5048), + [anon_sym_id] = ACTIONS(5048), + }, + [2010] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4826), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(3044), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5052), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2011] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4826), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(3040), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2012] = { + [sym_identifier] = ACTIONS(5056), + [aux_sym_preproc_def_token1] = ACTIONS(5056), + [aux_sym_preproc_if_token1] = ACTIONS(5056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5056), + [sym_preproc_directive] = ACTIONS(5056), + [anon_sym_LPAREN2] = ACTIONS(5058), + [anon_sym_DASH] = ACTIONS(5058), + [anon_sym_PLUS] = ACTIONS(5058), + [anon_sym_LT] = ACTIONS(5058), + [anon_sym___extension__] = ACTIONS(5056), + [anon_sym_typedef] = ACTIONS(5056), + [anon_sym_extern] = ACTIONS(5056), + [anon_sym___attribute__] = ACTIONS(5056), + [anon_sym___attribute] = ACTIONS(5056), + [anon_sym_noreturn] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5058), + [anon_sym___declspec] = ACTIONS(5056), + [anon_sym___cdecl] = ACTIONS(5056), + [anon_sym___clrcall] = ACTIONS(5056), + [anon_sym___stdcall] = ACTIONS(5056), + [anon_sym___fastcall] = ACTIONS(5056), + [anon_sym___thiscall] = ACTIONS(5056), + [anon_sym___vectorcall] = ACTIONS(5056), + [anon_sym_LBRACE] = ACTIONS(5058), + [anon_sym_signed] = ACTIONS(5056), + [anon_sym_unsigned] = ACTIONS(5056), + [anon_sym_long] = ACTIONS(5056), + [anon_sym_short] = ACTIONS(5056), + [anon_sym_static] = ACTIONS(5056), + [anon_sym_auto] = ACTIONS(5056), + [anon_sym_register] = ACTIONS(5056), + [anon_sym_inline] = ACTIONS(5056), + [anon_sym___inline] = ACTIONS(5056), + [anon_sym___inline__] = ACTIONS(5056), + [anon_sym___forceinline] = ACTIONS(5056), + [anon_sym_thread_local] = ACTIONS(5056), + [anon_sym___thread] = ACTIONS(5056), + [anon_sym_CG_EXTERN] = ACTIONS(5056), + [anon_sym_CG_INLINE] = ACTIONS(5056), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5056), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5056), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5056), + [anon_sym_IBOutlet] = ACTIONS(5056), + [anon_sym_IBInspectable] = ACTIONS(5056), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5056), + [anon_sym_NS_INLINE] = ACTIONS(5056), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5056), + [anon_sym_OBJC_EXPORT] = ACTIONS(5056), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5056), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5056), + [anon_sym_const] = ACTIONS(5056), + [anon_sym_constexpr] = ACTIONS(5056), + [anon_sym_volatile] = ACTIONS(5056), + [anon_sym_restrict] = ACTIONS(5056), + [anon_sym___restrict__] = ACTIONS(5056), + [anon_sym__Atomic] = ACTIONS(5056), + [anon_sym__Noreturn] = ACTIONS(5056), + [anon_sym__Nonnull] = ACTIONS(5056), + [anon_sym_nullable] = ACTIONS(5056), + [anon_sym__Complex] = ACTIONS(5056), + [anon_sym__Nullable] = ACTIONS(5056), + [anon_sym__Nullable_result] = ACTIONS(5056), + [anon_sym__Null_unspecified] = ACTIONS(5056), + [anon_sym___autoreleasing] = ACTIONS(5056), + [anon_sym___block] = ACTIONS(5056), + [anon_sym___bridge] = ACTIONS(5056), + [anon_sym___bridge_retained] = ACTIONS(5056), + [anon_sym___bridge_transfer] = ACTIONS(5056), + [anon_sym___complex] = ACTIONS(5056), + [anon_sym___const] = ACTIONS(5056), + [anon_sym___imag] = ACTIONS(5056), + [anon_sym___kindof] = ACTIONS(5056), + [anon_sym___nonnull] = ACTIONS(5056), + [anon_sym___nullable] = ACTIONS(5056), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5056), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5056), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5056), + [anon_sym___real] = ACTIONS(5056), + [anon_sym___strong] = ACTIONS(5056), + [anon_sym___unsafe_unretained] = ACTIONS(5056), + [anon_sym___unused] = ACTIONS(5056), + [anon_sym___weak] = ACTIONS(5056), + [anon_sym_alignas] = ACTIONS(5056), + [anon_sym__Alignas] = ACTIONS(5056), + [sym_primitive_type] = ACTIONS(5056), + [anon_sym_enum] = ACTIONS(5056), + [anon_sym_COLON] = ACTIONS(5058), + [anon_sym_struct] = ACTIONS(5056), + [anon_sym_union] = ACTIONS(5056), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5056), + [anon_sym___typeof] = ACTIONS(5056), + [anon_sym_typeof] = ACTIONS(5056), + [aux_sym_preproc_undef_token1] = ACTIONS(5056), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5056), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5056), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5056), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5056), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5056), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5056), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5056), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5056), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5056), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5056), + [anon_sym_NS_AVAILABLE] = ACTIONS(5056), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5056), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5056), + [anon_sym_API_AVAILABLE] = ACTIONS(5056), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5056), + [anon_sym_API_DEPRECATED] = ACTIONS(5056), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5056), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5056), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5056), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5056), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5056), + [anon_sym___deprecated_msg] = ACTIONS(5056), + [anon_sym___deprecated_enum_msg] = ACTIONS(5056), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5056), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5056), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5056), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5056), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5056), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5056), + [anon_sym_ATend] = ACTIONS(5058), + [anon_sym_ATsynthesize] = ACTIONS(5058), + [anon_sym_ATdynamic] = ACTIONS(5058), + [anon_sym_ATproperty] = ACTIONS(5058), + [anon_sym_BOOL] = ACTIONS(5056), + [anon_sym_IMP] = ACTIONS(5056), + [anon_sym_SEL] = ACTIONS(5056), + [anon_sym_Class] = ACTIONS(5056), + [anon_sym_id] = ACTIONS(5056), + }, + [2013] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4826), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(3048), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5060), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2014] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1812), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5062), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2015] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1812), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2016] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1793), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5066), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2017] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1793), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2018] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1801), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5070), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2019] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1801), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5072), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2020] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1808), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5074), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2021] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1811), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5076), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2022] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1814), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5078), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2023] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1816), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5080), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2024] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1790), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5082), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2025] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1790), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5084), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2026] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1823), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5086), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2027] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1823), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5088), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2028] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1783), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5090), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2029] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1783), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5092), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2030] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1787), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5094), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2031] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1794), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5096), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2032] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1799), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5098), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2033] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1829), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5100), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2034] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1779), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5102), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2035] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4826), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(3055), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5104), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2036] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(5106), + [anon_sym_ATinterface] = ACTIONS(5108), + [anon_sym_ATimplementation] = ACTIONS(5110), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2037] = { + [sym_compound_statement] = STATE(5347), + [sym_type_qualifier] = STATE(3347), + [sym_alignas_qualifier] = STATE(4177), + [sym_expression] = STATE(4426), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_objc_bridge] = STATE(6300), + [sym_typeof_specifier] = STATE(5347), + [sym_availability] = STATE(6300), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5112), + [anon_sym_RPAREN] = ACTIONS(5114), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5116), + [anon_sym_noreturn] = ACTIONS(5118), + [anon_sym_nothrow] = ACTIONS(5120), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(5122), + [anon_sym_constexpr] = ACTIONS(5124), + [anon_sym_volatile] = ACTIONS(5124), + [anon_sym_restrict] = ACTIONS(5124), + [anon_sym___restrict__] = ACTIONS(5124), + [anon_sym__Atomic] = ACTIONS(5124), + [anon_sym__Noreturn] = ACTIONS(5124), + [anon_sym__Nonnull] = ACTIONS(5124), + [anon_sym_nullable] = ACTIONS(5124), + [anon_sym__Complex] = ACTIONS(5124), + [anon_sym__Nullable] = ACTIONS(5124), + [anon_sym__Nullable_result] = ACTIONS(5124), + [anon_sym__Null_unspecified] = ACTIONS(5124), + [anon_sym___autoreleasing] = ACTIONS(5124), + [anon_sym___block] = ACTIONS(5124), + [anon_sym___bridge] = ACTIONS(5124), + [anon_sym___bridge_retained] = ACTIONS(5124), + [anon_sym___bridge_transfer] = ACTIONS(5124), + [anon_sym___complex] = ACTIONS(5124), + [anon_sym___const] = ACTIONS(5124), + [anon_sym___imag] = ACTIONS(5126), + [anon_sym___kindof] = ACTIONS(5124), + [anon_sym___nonnull] = ACTIONS(5124), + [anon_sym___nullable] = ACTIONS(5124), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5124), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5124), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5124), + [anon_sym___real] = ACTIONS(5126), + [anon_sym___strong] = ACTIONS(5124), + [anon_sym___unsafe_unretained] = ACTIONS(5124), + [anon_sym___unused] = ACTIONS(5124), + [anon_sym___weak] = ACTIONS(5124), + [anon_sym_alignas] = ACTIONS(5128), + [anon_sym__Alignas] = ACTIONS(5128), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_objc_bridge_related] = ACTIONS(5130), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_availability] = ACTIONS(5132), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2038] = { + [sym_identifier] = ACTIONS(4090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4092), + [anon_sym_COMMA] = ACTIONS(4092), + [anon_sym_RPAREN] = ACTIONS(4092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4092), + [anon_sym_LPAREN2] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4090), + [anon_sym_PLUS] = ACTIONS(4090), + [anon_sym_STAR] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4090), + [anon_sym_PERCENT] = ACTIONS(4092), + [anon_sym_PIPE_PIPE] = ACTIONS(4092), + [anon_sym_AMP_AMP] = ACTIONS(4092), + [anon_sym_PIPE] = ACTIONS(4090), + [anon_sym_CARET] = ACTIONS(4092), + [anon_sym_AMP] = ACTIONS(4090), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4090), + [anon_sym_GT_EQ] = ACTIONS(4092), + [anon_sym_LT_EQ] = ACTIONS(4092), + [anon_sym_LT] = ACTIONS(4090), + [anon_sym_LT_LT] = ACTIONS(4092), + [anon_sym_GT_GT] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4092), + [anon_sym___extension__] = ACTIONS(4090), + [anon_sym_extern] = ACTIONS(4090), + [anon_sym___attribute__] = ACTIONS(4090), + [anon_sym___attribute] = ACTIONS(4090), + [anon_sym_noreturn] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(4092), + [anon_sym_RBRACK] = ACTIONS(4092), + [anon_sym___declspec] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4092), + [anon_sym_static] = ACTIONS(4090), + [anon_sym_auto] = ACTIONS(4090), + [anon_sym_register] = ACTIONS(4090), + [anon_sym_inline] = ACTIONS(4090), + [anon_sym___inline] = ACTIONS(4090), + [anon_sym___inline__] = ACTIONS(4090), + [anon_sym___forceinline] = ACTIONS(4090), + [anon_sym_thread_local] = ACTIONS(4090), + [anon_sym___thread] = ACTIONS(4090), + [anon_sym_CG_EXTERN] = ACTIONS(4090), + [anon_sym_CG_INLINE] = ACTIONS(4090), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4090), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4090), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4090), + [anon_sym_IBOutlet] = ACTIONS(4090), + [anon_sym_IBInspectable] = ACTIONS(4090), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4090), + [anon_sym_NS_INLINE] = ACTIONS(4090), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4090), + [anon_sym_OBJC_EXPORT] = ACTIONS(4090), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4090), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4090), + [anon_sym_const] = ACTIONS(4090), + [anon_sym_constexpr] = ACTIONS(4090), + [anon_sym_volatile] = ACTIONS(4090), + [anon_sym_restrict] = ACTIONS(4090), + [anon_sym___restrict__] = ACTIONS(4090), + [anon_sym__Atomic] = ACTIONS(4090), + [anon_sym__Noreturn] = ACTIONS(4090), + [anon_sym__Nonnull] = ACTIONS(4090), + [anon_sym_nullable] = ACTIONS(4090), + [anon_sym__Complex] = ACTIONS(4090), + [anon_sym__Nullable] = ACTIONS(4090), + [anon_sym__Nullable_result] = ACTIONS(4090), + [anon_sym__Null_unspecified] = ACTIONS(4090), + [anon_sym___autoreleasing] = ACTIONS(4090), + [anon_sym___block] = ACTIONS(4090), + [anon_sym___bridge] = ACTIONS(4090), + [anon_sym___bridge_retained] = ACTIONS(4090), + [anon_sym___bridge_transfer] = ACTIONS(4090), + [anon_sym___complex] = ACTIONS(4090), + [anon_sym___const] = ACTIONS(4090), + [anon_sym___imag] = ACTIONS(4090), + [anon_sym___kindof] = ACTIONS(4090), + [anon_sym___nonnull] = ACTIONS(4090), + [anon_sym___nullable] = ACTIONS(4090), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4090), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4090), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4090), + [anon_sym___real] = ACTIONS(4090), + [anon_sym___strong] = ACTIONS(4090), + [anon_sym___unsafe_unretained] = ACTIONS(4090), + [anon_sym___unused] = ACTIONS(4090), + [anon_sym___weak] = ACTIONS(4090), + [anon_sym_alignas] = ACTIONS(4090), + [anon_sym__Alignas] = ACTIONS(4090), + [anon_sym_COLON] = ACTIONS(4092), + [anon_sym_QMARK] = ACTIONS(4092), + [anon_sym_DASH_DASH] = ACTIONS(4092), + [anon_sym_PLUS_PLUS] = ACTIONS(4092), + [anon_sym_DOT] = ACTIONS(4090), + [anon_sym_DASH_GT] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4092), + [anon_sym_DQUOTE] = ACTIONS(4092), + [anon_sym_L_DQUOTE] = ACTIONS(4092), + [anon_sym_u_DQUOTE] = ACTIONS(4092), + [anon_sym_U_DQUOTE] = ACTIONS(4092), + [anon_sym_u8_DQUOTE] = ACTIONS(4092), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4090), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4090), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4090), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4090), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4090), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4090), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4090), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4090), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4090), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4090), + [anon_sym_NS_AVAILABLE] = ACTIONS(4090), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4090), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4090), + [anon_sym_API_AVAILABLE] = ACTIONS(4090), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4090), + [anon_sym_API_DEPRECATED] = ACTIONS(4090), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4090), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4090), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4090), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4090), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4090), + [anon_sym___deprecated_msg] = ACTIONS(4090), + [anon_sym___deprecated_enum_msg] = ACTIONS(4090), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4090), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4090), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4090), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4090), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4090), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4090), + }, + [2039] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4826), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(3050), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5134), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2040] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1788), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5136), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2041] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1824), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5138), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2042] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1784), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5140), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2043] = { + [sym_identifier] = ACTIONS(5142), + [aux_sym_preproc_def_token1] = ACTIONS(5142), + [aux_sym_preproc_if_token1] = ACTIONS(5142), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5142), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5142), + [sym_preproc_directive] = ACTIONS(5142), + [anon_sym_LPAREN2] = ACTIONS(5144), + [anon_sym_DASH] = ACTIONS(5144), + [anon_sym_PLUS] = ACTIONS(5144), + [anon_sym_LT] = ACTIONS(5144), + [anon_sym_SEMI] = ACTIONS(5146), + [anon_sym___extension__] = ACTIONS(5142), + [anon_sym_typedef] = ACTIONS(5142), + [anon_sym_extern] = ACTIONS(5142), + [anon_sym___attribute__] = ACTIONS(5142), + [anon_sym___attribute] = ACTIONS(5142), + [anon_sym_noreturn] = ACTIONS(5142), + [anon_sym_LBRACK] = ACTIONS(5144), + [anon_sym___declspec] = ACTIONS(5142), + [anon_sym___cdecl] = ACTIONS(5142), + [anon_sym___clrcall] = ACTIONS(5142), + [anon_sym___stdcall] = ACTIONS(5142), + [anon_sym___fastcall] = ACTIONS(5142), + [anon_sym___thiscall] = ACTIONS(5142), + [anon_sym___vectorcall] = ACTIONS(5142), + [anon_sym_LBRACE] = ACTIONS(5144), + [anon_sym_signed] = ACTIONS(5142), + [anon_sym_unsigned] = ACTIONS(5142), + [anon_sym_long] = ACTIONS(5142), + [anon_sym_short] = ACTIONS(5142), + [anon_sym_static] = ACTIONS(5142), + [anon_sym_auto] = ACTIONS(5142), + [anon_sym_register] = ACTIONS(5142), + [anon_sym_inline] = ACTIONS(5142), + [anon_sym___inline] = ACTIONS(5142), + [anon_sym___inline__] = ACTIONS(5142), + [anon_sym___forceinline] = ACTIONS(5142), + [anon_sym_thread_local] = ACTIONS(5142), + [anon_sym___thread] = ACTIONS(5142), + [anon_sym_CG_EXTERN] = ACTIONS(5142), + [anon_sym_CG_INLINE] = ACTIONS(5142), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5142), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5142), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5142), + [anon_sym_IBOutlet] = ACTIONS(5142), + [anon_sym_IBInspectable] = ACTIONS(5142), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5142), + [anon_sym_NS_INLINE] = ACTIONS(5142), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5142), + [anon_sym_OBJC_EXPORT] = ACTIONS(5142), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5142), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5142), + [anon_sym_const] = ACTIONS(5142), + [anon_sym_constexpr] = ACTIONS(5142), + [anon_sym_volatile] = ACTIONS(5142), + [anon_sym_restrict] = ACTIONS(5142), + [anon_sym___restrict__] = ACTIONS(5142), + [anon_sym__Atomic] = ACTIONS(5142), + [anon_sym__Noreturn] = ACTIONS(5142), + [anon_sym__Nonnull] = ACTIONS(5142), + [anon_sym_nullable] = ACTIONS(5142), + [anon_sym__Complex] = ACTIONS(5142), + [anon_sym__Nullable] = ACTIONS(5142), + [anon_sym__Nullable_result] = ACTIONS(5142), + [anon_sym__Null_unspecified] = ACTIONS(5142), + [anon_sym___autoreleasing] = ACTIONS(5142), + [anon_sym___block] = ACTIONS(5142), + [anon_sym___bridge] = ACTIONS(5142), + [anon_sym___bridge_retained] = ACTIONS(5142), + [anon_sym___bridge_transfer] = ACTIONS(5142), + [anon_sym___complex] = ACTIONS(5142), + [anon_sym___const] = ACTIONS(5142), + [anon_sym___imag] = ACTIONS(5142), + [anon_sym___kindof] = ACTIONS(5142), + [anon_sym___nonnull] = ACTIONS(5142), + [anon_sym___nullable] = ACTIONS(5142), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5142), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5142), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5142), + [anon_sym___real] = ACTIONS(5142), + [anon_sym___strong] = ACTIONS(5142), + [anon_sym___unsafe_unretained] = ACTIONS(5142), + [anon_sym___unused] = ACTIONS(5142), + [anon_sym___weak] = ACTIONS(5142), + [anon_sym_alignas] = ACTIONS(5142), + [anon_sym__Alignas] = ACTIONS(5142), + [sym_primitive_type] = ACTIONS(5142), + [anon_sym_enum] = ACTIONS(5142), + [anon_sym_COLON] = ACTIONS(5144), + [anon_sym_struct] = ACTIONS(5142), + [anon_sym_union] = ACTIONS(5142), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5142), + [anon_sym___typeof] = ACTIONS(5142), + [anon_sym_typeof] = ACTIONS(5142), + [aux_sym_preproc_undef_token1] = ACTIONS(5142), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5142), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5142), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5142), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5142), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5142), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5142), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5142), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5142), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5142), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5142), + [anon_sym_NS_AVAILABLE] = ACTIONS(5142), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5142), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5142), + [anon_sym_API_AVAILABLE] = ACTIONS(5142), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5142), + [anon_sym_API_DEPRECATED] = ACTIONS(5142), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5142), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5142), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5142), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5142), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5142), + [anon_sym___deprecated_msg] = ACTIONS(5142), + [anon_sym___deprecated_enum_msg] = ACTIONS(5142), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5142), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5142), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5142), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5142), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5142), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5142), + [anon_sym_ATend] = ACTIONS(5144), + [anon_sym_ATsynthesize] = ACTIONS(5144), + [anon_sym_ATdynamic] = ACTIONS(5144), + [anon_sym_BOOL] = ACTIONS(5142), + [anon_sym_IMP] = ACTIONS(5142), + [anon_sym_SEL] = ACTIONS(5142), + [anon_sym_Class] = ACTIONS(5142), + [anon_sym_id] = ACTIONS(5142), + }, + [2044] = { + [sym_identifier] = ACTIONS(2856), + [aux_sym_preproc_def_token1] = ACTIONS(2856), + [aux_sym_preproc_if_token1] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2856), + [sym_preproc_directive] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2858), + [anon_sym_PLUS] = ACTIONS(2858), + [anon_sym___extension__] = ACTIONS(2856), + [anon_sym_typedef] = ACTIONS(2856), + [anon_sym_extern] = ACTIONS(2856), + [anon_sym___attribute__] = ACTIONS(2856), + [anon_sym___attribute] = ACTIONS(2856), + [anon_sym_noreturn] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2858), + [anon_sym___declspec] = ACTIONS(2856), + [anon_sym___cdecl] = ACTIONS(2856), + [anon_sym___clrcall] = ACTIONS(2856), + [anon_sym___stdcall] = ACTIONS(2856), + [anon_sym___fastcall] = ACTIONS(2856), + [anon_sym___thiscall] = ACTIONS(2856), + [anon_sym___vectorcall] = ACTIONS(2856), + [anon_sym_RBRACE] = ACTIONS(2858), + [anon_sym_signed] = ACTIONS(2856), + [anon_sym_unsigned] = ACTIONS(2856), + [anon_sym_long] = ACTIONS(2856), + [anon_sym_short] = ACTIONS(2856), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_auto] = ACTIONS(2856), + [anon_sym_register] = ACTIONS(2856), + [anon_sym_inline] = ACTIONS(2856), + [anon_sym___inline] = ACTIONS(2856), + [anon_sym___inline__] = ACTIONS(2856), + [anon_sym___forceinline] = ACTIONS(2856), + [anon_sym_thread_local] = ACTIONS(2856), + [anon_sym___thread] = ACTIONS(2856), + [anon_sym_CG_EXTERN] = ACTIONS(2856), + [anon_sym_CG_INLINE] = ACTIONS(2856), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2856), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2856), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2856), + [anon_sym_IBOutlet] = ACTIONS(2856), + [anon_sym_IBInspectable] = ACTIONS(2856), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2856), + [anon_sym_NS_INLINE] = ACTIONS(2856), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2856), + [anon_sym_OBJC_EXPORT] = ACTIONS(2856), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2856), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2856), + [anon_sym_constexpr] = ACTIONS(2856), + [anon_sym_volatile] = ACTIONS(2856), + [anon_sym_restrict] = ACTIONS(2856), + [anon_sym___restrict__] = ACTIONS(2856), + [anon_sym__Atomic] = ACTIONS(2856), + [anon_sym__Noreturn] = ACTIONS(2856), + [anon_sym__Nonnull] = ACTIONS(2856), + [anon_sym_nullable] = ACTIONS(2856), + [anon_sym__Complex] = ACTIONS(2856), + [anon_sym__Nullable] = ACTIONS(2856), + [anon_sym__Nullable_result] = ACTIONS(2856), + [anon_sym__Null_unspecified] = ACTIONS(2856), + [anon_sym___autoreleasing] = ACTIONS(2856), + [anon_sym___block] = ACTIONS(2856), + [anon_sym___bridge] = ACTIONS(2856), + [anon_sym___bridge_retained] = ACTIONS(2856), + [anon_sym___bridge_transfer] = ACTIONS(2856), + [anon_sym___complex] = ACTIONS(2856), + [anon_sym___const] = ACTIONS(2856), + [anon_sym___imag] = ACTIONS(2856), + [anon_sym___kindof] = ACTIONS(2856), + [anon_sym___nonnull] = ACTIONS(2856), + [anon_sym___nullable] = ACTIONS(2856), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2856), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2856), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2856), + [anon_sym___real] = ACTIONS(2856), + [anon_sym___strong] = ACTIONS(2856), + [anon_sym___unsafe_unretained] = ACTIONS(2856), + [anon_sym___unused] = ACTIONS(2856), + [anon_sym___weak] = ACTIONS(2856), + [anon_sym_alignas] = ACTIONS(2856), + [anon_sym__Alignas] = ACTIONS(2856), + [sym_primitive_type] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2856), + [anon_sym_union] = ACTIONS(2856), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2856), + [anon_sym___typeof] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2856), + [aux_sym_preproc_undef_token1] = ACTIONS(2856), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2856), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2856), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2856), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2856), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2856), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2856), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2856), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2856), + [anon_sym_NS_AVAILABLE] = ACTIONS(2856), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2856), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_API_AVAILABLE] = ACTIONS(2856), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_API_DEPRECATED] = ACTIONS(2856), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2856), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2856), + [anon_sym___deprecated_msg] = ACTIONS(2856), + [anon_sym___deprecated_enum_msg] = ACTIONS(2856), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2856), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2856), + [anon_sym_ATend] = ACTIONS(2858), + [anon_sym_AToptional] = ACTIONS(2858), + [anon_sym_ATrequired] = ACTIONS(2858), + [anon_sym_ATsynthesize] = ACTIONS(2858), + [anon_sym_ATdynamic] = ACTIONS(2858), + [anon_sym_ATproperty] = ACTIONS(2858), + [anon_sym_BOOL] = ACTIONS(2856), + [anon_sym_IMP] = ACTIONS(2856), + [anon_sym_SEL] = ACTIONS(2856), + [anon_sym_Class] = ACTIONS(2856), + [anon_sym_id] = ACTIONS(2856), + [anon_sym_ATdefs] = ACTIONS(2858), + }, + [2045] = { + [sym_identifier] = ACTIONS(2864), + [aux_sym_preproc_def_token1] = ACTIONS(2864), + [aux_sym_preproc_if_token1] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2864), + [sym_preproc_directive] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2866), + [anon_sym_PLUS] = ACTIONS(2866), + [anon_sym___extension__] = ACTIONS(2864), + [anon_sym_typedef] = ACTIONS(2864), + [anon_sym_extern] = ACTIONS(2864), + [anon_sym___attribute__] = ACTIONS(2864), + [anon_sym___attribute] = ACTIONS(2864), + [anon_sym_noreturn] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2866), + [anon_sym___declspec] = ACTIONS(2864), + [anon_sym___cdecl] = ACTIONS(2864), + [anon_sym___clrcall] = ACTIONS(2864), + [anon_sym___stdcall] = ACTIONS(2864), + [anon_sym___fastcall] = ACTIONS(2864), + [anon_sym___thiscall] = ACTIONS(2864), + [anon_sym___vectorcall] = ACTIONS(2864), + [anon_sym_RBRACE] = ACTIONS(2866), + [anon_sym_signed] = ACTIONS(2864), + [anon_sym_unsigned] = ACTIONS(2864), + [anon_sym_long] = ACTIONS(2864), + [anon_sym_short] = ACTIONS(2864), + [anon_sym_static] = ACTIONS(2864), + [anon_sym_auto] = ACTIONS(2864), + [anon_sym_register] = ACTIONS(2864), + [anon_sym_inline] = ACTIONS(2864), + [anon_sym___inline] = ACTIONS(2864), + [anon_sym___inline__] = ACTIONS(2864), + [anon_sym___forceinline] = ACTIONS(2864), + [anon_sym_thread_local] = ACTIONS(2864), + [anon_sym___thread] = ACTIONS(2864), + [anon_sym_CG_EXTERN] = ACTIONS(2864), + [anon_sym_CG_INLINE] = ACTIONS(2864), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2864), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2864), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2864), + [anon_sym_IBOutlet] = ACTIONS(2864), + [anon_sym_IBInspectable] = ACTIONS(2864), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2864), + [anon_sym_NS_INLINE] = ACTIONS(2864), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2864), + [anon_sym_OBJC_EXPORT] = ACTIONS(2864), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2864), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2864), + [anon_sym_const] = ACTIONS(2864), + [anon_sym_constexpr] = ACTIONS(2864), + [anon_sym_volatile] = ACTIONS(2864), + [anon_sym_restrict] = ACTIONS(2864), + [anon_sym___restrict__] = ACTIONS(2864), + [anon_sym__Atomic] = ACTIONS(2864), + [anon_sym__Noreturn] = ACTIONS(2864), + [anon_sym__Nonnull] = ACTIONS(2864), + [anon_sym_nullable] = ACTIONS(2864), + [anon_sym__Complex] = ACTIONS(2864), + [anon_sym__Nullable] = ACTIONS(2864), + [anon_sym__Nullable_result] = ACTIONS(2864), + [anon_sym__Null_unspecified] = ACTIONS(2864), + [anon_sym___autoreleasing] = ACTIONS(2864), + [anon_sym___block] = ACTIONS(2864), + [anon_sym___bridge] = ACTIONS(2864), + [anon_sym___bridge_retained] = ACTIONS(2864), + [anon_sym___bridge_transfer] = ACTIONS(2864), + [anon_sym___complex] = ACTIONS(2864), + [anon_sym___const] = ACTIONS(2864), + [anon_sym___imag] = ACTIONS(2864), + [anon_sym___kindof] = ACTIONS(2864), + [anon_sym___nonnull] = ACTIONS(2864), + [anon_sym___nullable] = ACTIONS(2864), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2864), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2864), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2864), + [anon_sym___real] = ACTIONS(2864), + [anon_sym___strong] = ACTIONS(2864), + [anon_sym___unsafe_unretained] = ACTIONS(2864), + [anon_sym___unused] = ACTIONS(2864), + [anon_sym___weak] = ACTIONS(2864), + [anon_sym_alignas] = ACTIONS(2864), + [anon_sym__Alignas] = ACTIONS(2864), + [sym_primitive_type] = ACTIONS(2864), + [anon_sym_enum] = ACTIONS(2864), + [anon_sym_struct] = ACTIONS(2864), + [anon_sym_union] = ACTIONS(2864), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2864), + [anon_sym___typeof] = ACTIONS(2864), + [anon_sym_typeof] = ACTIONS(2864), + [aux_sym_preproc_undef_token1] = ACTIONS(2864), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2864), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2864), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2864), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2864), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2864), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2864), + [anon_sym_NS_AVAILABLE] = ACTIONS(2864), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2864), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_API_AVAILABLE] = ACTIONS(2864), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_API_DEPRECATED] = ACTIONS(2864), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2864), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2864), + [anon_sym___deprecated_msg] = ACTIONS(2864), + [anon_sym___deprecated_enum_msg] = ACTIONS(2864), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2864), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2864), + [anon_sym_ATend] = ACTIONS(2866), + [anon_sym_AToptional] = ACTIONS(2866), + [anon_sym_ATrequired] = ACTIONS(2866), + [anon_sym_ATsynthesize] = ACTIONS(2866), + [anon_sym_ATdynamic] = ACTIONS(2866), + [anon_sym_ATproperty] = ACTIONS(2866), + [anon_sym_BOOL] = ACTIONS(2864), + [anon_sym_IMP] = ACTIONS(2864), + [anon_sym_SEL] = ACTIONS(2864), + [anon_sym_Class] = ACTIONS(2864), + [anon_sym_id] = ACTIONS(2864), + [anon_sym_ATdefs] = ACTIONS(2866), + }, + [2046] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5148), + [anon_sym_COMMA] = ACTIONS(5150), + [anon_sym_RPAREN] = ACTIONS(5150), + [anon_sym_LPAREN2] = ACTIONS(5150), + [anon_sym_STAR] = ACTIONS(5150), + [anon_sym_CARET] = ACTIONS(5150), + [anon_sym_GT] = ACTIONS(5150), + [anon_sym_SEMI] = ACTIONS(5150), + [anon_sym___extension__] = ACTIONS(5152), + [anon_sym_extern] = ACTIONS(5155), + [anon_sym___attribute__] = ACTIONS(5158), + [anon_sym___attribute] = ACTIONS(5158), + [anon_sym_noreturn] = ACTIONS(5152), + [anon_sym_LBRACK] = ACTIONS(5161), + [anon_sym___declspec] = ACTIONS(5164), + [anon_sym___based] = ACTIONS(5148), + [anon_sym_LBRACE] = ACTIONS(5150), + [anon_sym_signed] = ACTIONS(5148), + [anon_sym_unsigned] = ACTIONS(5148), + [anon_sym_long] = ACTIONS(5148), + [anon_sym_short] = ACTIONS(5148), + [anon_sym_static] = ACTIONS(5155), + [anon_sym_ATautoreleasepool] = ACTIONS(5150), + [anon_sym_auto] = ACTIONS(5155), + [anon_sym_register] = ACTIONS(5155), + [anon_sym_inline] = ACTIONS(5155), + [anon_sym___inline] = ACTIONS(5155), + [anon_sym___inline__] = ACTIONS(5155), + [anon_sym___forceinline] = ACTIONS(5155), + [anon_sym_thread_local] = ACTIONS(5155), + [anon_sym___thread] = ACTIONS(5155), + [anon_sym_CG_EXTERN] = ACTIONS(5155), + [anon_sym_CG_INLINE] = ACTIONS(5155), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5155), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5155), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5155), + [anon_sym_IBOutlet] = ACTIONS(5155), + [anon_sym_IBInspectable] = ACTIONS(5155), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5155), + [anon_sym_NS_INLINE] = ACTIONS(5155), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5155), + [anon_sym_OBJC_EXPORT] = ACTIONS(5155), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5155), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5155), + [anon_sym_const] = ACTIONS(5152), + [anon_sym_constexpr] = ACTIONS(5152), + [anon_sym_volatile] = ACTIONS(5152), + [anon_sym_restrict] = ACTIONS(5152), + [anon_sym___restrict__] = ACTIONS(5152), + [anon_sym__Atomic] = ACTIONS(5152), + [anon_sym__Noreturn] = ACTIONS(5152), + [anon_sym__Nonnull] = ACTIONS(5152), + [anon_sym_nullable] = ACTIONS(5152), + [anon_sym__Complex] = ACTIONS(5152), + [anon_sym__Nullable] = ACTIONS(5152), + [anon_sym__Nullable_result] = ACTIONS(5152), + [anon_sym__Null_unspecified] = ACTIONS(5152), + [anon_sym___autoreleasing] = ACTIONS(5152), + [anon_sym___block] = ACTIONS(5152), + [anon_sym___bridge] = ACTIONS(5152), + [anon_sym___bridge_retained] = ACTIONS(5152), + [anon_sym___bridge_transfer] = ACTIONS(5152), + [anon_sym___complex] = ACTIONS(5152), + [anon_sym___const] = ACTIONS(5152), + [anon_sym___imag] = ACTIONS(5152), + [anon_sym___kindof] = ACTIONS(5152), + [anon_sym___nonnull] = ACTIONS(5152), + [anon_sym___nullable] = ACTIONS(5152), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5152), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5152), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5152), + [anon_sym___real] = ACTIONS(5152), + [anon_sym___strong] = ACTIONS(5152), + [anon_sym___unsafe_unretained] = ACTIONS(5152), + [anon_sym___unused] = ACTIONS(5152), + [anon_sym___weak] = ACTIONS(5152), + [anon_sym_alignas] = ACTIONS(5167), + [anon_sym__Alignas] = ACTIONS(5167), + [sym_primitive_type] = ACTIONS(5148), + [anon_sym_enum] = ACTIONS(5148), + [anon_sym_COLON] = ACTIONS(5150), + [anon_sym_struct] = ACTIONS(5148), + [anon_sym_union] = ACTIONS(5148), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5148), + [anon_sym___typeof] = ACTIONS(5148), + [anon_sym_typeof] = ACTIONS(5148), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5170), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5170), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5170), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5170), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5170), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5170), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5170), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5170), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5170), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5173), + [anon_sym_NS_AVAILABLE] = ACTIONS(5173), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5173), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5173), + [anon_sym_API_AVAILABLE] = ACTIONS(5173), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5173), + [anon_sym_API_DEPRECATED] = ACTIONS(5173), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5173), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5173), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5173), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5173), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5173), + [anon_sym___deprecated_msg] = ACTIONS(5173), + [anon_sym___deprecated_enum_msg] = ACTIONS(5173), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5173), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5173), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5173), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5173), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5173), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5173), + [anon_sym_ATprotocol] = ACTIONS(5150), + [anon_sym_ATinterface] = ACTIONS(5150), + [anon_sym_ATimplementation] = ACTIONS(5150), + [anon_sym_BOOL] = ACTIONS(5148), + [anon_sym_IMP] = ACTIONS(5148), + [anon_sym_SEL] = ACTIONS(5148), + [anon_sym_Class] = ACTIONS(5148), + [anon_sym_id] = ACTIONS(5148), + }, + [2047] = { + [sym_identifier] = ACTIONS(4188), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4191), + [anon_sym_COMMA] = ACTIONS(4191), + [anon_sym_RPAREN] = ACTIONS(4191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4191), + [anon_sym_LPAREN2] = ACTIONS(4191), + [anon_sym_DASH] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(4191), + [anon_sym_SLASH] = ACTIONS(4188), + [anon_sym_PERCENT] = ACTIONS(4191), + [anon_sym_PIPE_PIPE] = ACTIONS(4191), + [anon_sym_AMP_AMP] = ACTIONS(4191), + [anon_sym_PIPE] = ACTIONS(4188), + [anon_sym_CARET] = ACTIONS(4191), + [anon_sym_AMP] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4191), + [anon_sym_BANG_EQ] = ACTIONS(4191), + [anon_sym_GT] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4191), + [anon_sym_LT_EQ] = ACTIONS(4191), + [anon_sym_LT] = ACTIONS(4188), + [anon_sym_LT_LT] = ACTIONS(4191), + [anon_sym_GT_GT] = ACTIONS(4191), + [anon_sym_SEMI] = ACTIONS(4191), + [anon_sym___extension__] = ACTIONS(4188), + [anon_sym_extern] = ACTIONS(4188), + [anon_sym___attribute__] = ACTIONS(4188), + [anon_sym___attribute] = ACTIONS(4188), + [anon_sym_noreturn] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4191), + [anon_sym_RBRACK] = ACTIONS(4191), + [anon_sym___declspec] = ACTIONS(4188), + [anon_sym_RBRACE] = ACTIONS(4191), + [anon_sym_static] = ACTIONS(4188), + [anon_sym_auto] = ACTIONS(4188), + [anon_sym_register] = ACTIONS(4188), + [anon_sym_inline] = ACTIONS(4188), + [anon_sym___inline] = ACTIONS(4188), + [anon_sym___inline__] = ACTIONS(4188), + [anon_sym___forceinline] = ACTIONS(4188), + [anon_sym_thread_local] = ACTIONS(4188), + [anon_sym___thread] = ACTIONS(4188), + [anon_sym_CG_EXTERN] = ACTIONS(4188), + [anon_sym_CG_INLINE] = ACTIONS(4188), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4188), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4188), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4188), + [anon_sym_IBOutlet] = ACTIONS(4188), + [anon_sym_IBInspectable] = ACTIONS(4188), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4188), + [anon_sym_NS_INLINE] = ACTIONS(4188), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4188), + [anon_sym_OBJC_EXPORT] = ACTIONS(4188), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4188), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4188), + [anon_sym_const] = ACTIONS(4188), + [anon_sym_constexpr] = ACTIONS(4188), + [anon_sym_volatile] = ACTIONS(4188), + [anon_sym_restrict] = ACTIONS(4188), + [anon_sym___restrict__] = ACTIONS(4188), + [anon_sym__Atomic] = ACTIONS(4188), + [anon_sym__Noreturn] = ACTIONS(4188), + [anon_sym__Nonnull] = ACTIONS(4188), + [anon_sym_nullable] = ACTIONS(4188), + [anon_sym__Complex] = ACTIONS(4188), + [anon_sym__Nullable] = ACTIONS(4188), + [anon_sym__Nullable_result] = ACTIONS(4188), + [anon_sym__Null_unspecified] = ACTIONS(4188), + [anon_sym___autoreleasing] = ACTIONS(4188), + [anon_sym___block] = ACTIONS(4188), + [anon_sym___bridge] = ACTIONS(4188), + [anon_sym___bridge_retained] = ACTIONS(4188), + [anon_sym___bridge_transfer] = ACTIONS(4188), + [anon_sym___complex] = ACTIONS(4188), + [anon_sym___const] = ACTIONS(4188), + [anon_sym___imag] = ACTIONS(4188), + [anon_sym___kindof] = ACTIONS(4188), + [anon_sym___nonnull] = ACTIONS(4188), + [anon_sym___nullable] = ACTIONS(4188), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4188), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4188), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4188), + [anon_sym___real] = ACTIONS(4188), + [anon_sym___strong] = ACTIONS(4188), + [anon_sym___unsafe_unretained] = ACTIONS(4188), + [anon_sym___unused] = ACTIONS(4188), + [anon_sym___weak] = ACTIONS(4188), + [anon_sym_alignas] = ACTIONS(4188), + [anon_sym__Alignas] = ACTIONS(4188), + [anon_sym_COLON] = ACTIONS(4191), + [anon_sym_QMARK] = ACTIONS(4191), + [anon_sym_DASH_DASH] = ACTIONS(4191), + [anon_sym_PLUS_PLUS] = ACTIONS(4191), + [anon_sym_DOT] = ACTIONS(4188), + [anon_sym_DASH_GT] = ACTIONS(4191), + [anon_sym_AT] = ACTIONS(4191), + [anon_sym_DQUOTE] = ACTIONS(4191), + [anon_sym_L_DQUOTE] = ACTIONS(4191), + [anon_sym_u_DQUOTE] = ACTIONS(4191), + [anon_sym_U_DQUOTE] = ACTIONS(4191), + [anon_sym_u8_DQUOTE] = ACTIONS(4191), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4188), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4188), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4188), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4188), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4188), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4188), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4188), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4188), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4188), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4188), + [anon_sym_NS_AVAILABLE] = ACTIONS(4188), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4188), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4188), + [anon_sym_API_AVAILABLE] = ACTIONS(4188), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4188), + [anon_sym_API_DEPRECATED] = ACTIONS(4188), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4188), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4188), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4188), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4188), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4188), + [anon_sym___deprecated_msg] = ACTIONS(4188), + [anon_sym___deprecated_enum_msg] = ACTIONS(4188), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4188), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4188), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4188), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4188), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4188), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4188), + }, + [2048] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1803), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5176), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2049] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4826), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(3037), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5178), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2050] = { + [sym_identifier] = ACTIONS(2852), + [aux_sym_preproc_def_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token1] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2852), + [sym_preproc_directive] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2854), + [anon_sym_PLUS] = ACTIONS(2854), + [anon_sym___extension__] = ACTIONS(2852), + [anon_sym_typedef] = ACTIONS(2852), + [anon_sym_extern] = ACTIONS(2852), + [anon_sym___attribute__] = ACTIONS(2852), + [anon_sym___attribute] = ACTIONS(2852), + [anon_sym_noreturn] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2854), + [anon_sym___declspec] = ACTIONS(2852), + [anon_sym___cdecl] = ACTIONS(2852), + [anon_sym___clrcall] = ACTIONS(2852), + [anon_sym___stdcall] = ACTIONS(2852), + [anon_sym___fastcall] = ACTIONS(2852), + [anon_sym___thiscall] = ACTIONS(2852), + [anon_sym___vectorcall] = ACTIONS(2852), + [anon_sym_RBRACE] = ACTIONS(2854), + [anon_sym_signed] = ACTIONS(2852), + [anon_sym_unsigned] = ACTIONS(2852), + [anon_sym_long] = ACTIONS(2852), + [anon_sym_short] = ACTIONS(2852), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_auto] = ACTIONS(2852), + [anon_sym_register] = ACTIONS(2852), + [anon_sym_inline] = ACTIONS(2852), + [anon_sym___inline] = ACTIONS(2852), + [anon_sym___inline__] = ACTIONS(2852), + [anon_sym___forceinline] = ACTIONS(2852), + [anon_sym_thread_local] = ACTIONS(2852), + [anon_sym___thread] = ACTIONS(2852), + [anon_sym_CG_EXTERN] = ACTIONS(2852), + [anon_sym_CG_INLINE] = ACTIONS(2852), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2852), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2852), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2852), + [anon_sym_IBOutlet] = ACTIONS(2852), + [anon_sym_IBInspectable] = ACTIONS(2852), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2852), + [anon_sym_NS_INLINE] = ACTIONS(2852), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2852), + [anon_sym_OBJC_EXPORT] = ACTIONS(2852), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2852), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2852), + [anon_sym_const] = ACTIONS(2852), + [anon_sym_constexpr] = ACTIONS(2852), + [anon_sym_volatile] = ACTIONS(2852), + [anon_sym_restrict] = ACTIONS(2852), + [anon_sym___restrict__] = ACTIONS(2852), + [anon_sym__Atomic] = ACTIONS(2852), + [anon_sym__Noreturn] = ACTIONS(2852), + [anon_sym__Nonnull] = ACTIONS(2852), + [anon_sym_nullable] = ACTIONS(2852), + [anon_sym__Complex] = ACTIONS(2852), + [anon_sym__Nullable] = ACTIONS(2852), + [anon_sym__Nullable_result] = ACTIONS(2852), + [anon_sym__Null_unspecified] = ACTIONS(2852), + [anon_sym___autoreleasing] = ACTIONS(2852), + [anon_sym___block] = ACTIONS(2852), + [anon_sym___bridge] = ACTIONS(2852), + [anon_sym___bridge_retained] = ACTIONS(2852), + [anon_sym___bridge_transfer] = ACTIONS(2852), + [anon_sym___complex] = ACTIONS(2852), + [anon_sym___const] = ACTIONS(2852), + [anon_sym___imag] = ACTIONS(2852), + [anon_sym___kindof] = ACTIONS(2852), + [anon_sym___nonnull] = ACTIONS(2852), + [anon_sym___nullable] = ACTIONS(2852), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2852), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2852), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2852), + [anon_sym___real] = ACTIONS(2852), + [anon_sym___strong] = ACTIONS(2852), + [anon_sym___unsafe_unretained] = ACTIONS(2852), + [anon_sym___unused] = ACTIONS(2852), + [anon_sym___weak] = ACTIONS(2852), + [anon_sym_alignas] = ACTIONS(2852), + [anon_sym__Alignas] = ACTIONS(2852), + [sym_primitive_type] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2852), + [anon_sym_union] = ACTIONS(2852), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2852), + [anon_sym___typeof] = ACTIONS(2852), + [anon_sym_typeof] = ACTIONS(2852), + [aux_sym_preproc_undef_token1] = ACTIONS(2852), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2852), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2852), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2852), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2852), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2852), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2852), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2852), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2852), + [anon_sym_NS_AVAILABLE] = ACTIONS(2852), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2852), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_API_AVAILABLE] = ACTIONS(2852), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_API_DEPRECATED] = ACTIONS(2852), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2852), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2852), + [anon_sym___deprecated_msg] = ACTIONS(2852), + [anon_sym___deprecated_enum_msg] = ACTIONS(2852), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2852), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2852), + [anon_sym_ATend] = ACTIONS(2854), + [anon_sym_AToptional] = ACTIONS(2854), + [anon_sym_ATrequired] = ACTIONS(2854), + [anon_sym_ATsynthesize] = ACTIONS(2854), + [anon_sym_ATdynamic] = ACTIONS(2854), + [anon_sym_ATproperty] = ACTIONS(2854), + [anon_sym_BOOL] = ACTIONS(2852), + [anon_sym_IMP] = ACTIONS(2852), + [anon_sym_SEL] = ACTIONS(2852), + [anon_sym_Class] = ACTIONS(2852), + [anon_sym_id] = ACTIONS(2852), + [anon_sym_ATdefs] = ACTIONS(2854), + }, + [2051] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4826), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(3045), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5180), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2052] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(5182), + [anon_sym_ATinterface] = ACTIONS(5108), + [anon_sym_ATimplementation] = ACTIONS(5110), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2053] = { + [sym_identifier] = ACTIONS(2828), + [aux_sym_preproc_def_token1] = ACTIONS(2828), + [aux_sym_preproc_if_token1] = ACTIONS(2828), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2828), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2828), + [sym_preproc_directive] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(2830), + [anon_sym_PLUS] = ACTIONS(2830), + [anon_sym___extension__] = ACTIONS(2828), + [anon_sym_typedef] = ACTIONS(2828), + [anon_sym_extern] = ACTIONS(2828), + [anon_sym___attribute__] = ACTIONS(2828), + [anon_sym___attribute] = ACTIONS(2828), + [anon_sym_noreturn] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym___declspec] = ACTIONS(2828), + [anon_sym___cdecl] = ACTIONS(2828), + [anon_sym___clrcall] = ACTIONS(2828), + [anon_sym___stdcall] = ACTIONS(2828), + [anon_sym___fastcall] = ACTIONS(2828), + [anon_sym___thiscall] = ACTIONS(2828), + [anon_sym___vectorcall] = ACTIONS(2828), + [anon_sym_RBRACE] = ACTIONS(2830), + [anon_sym_signed] = ACTIONS(2828), + [anon_sym_unsigned] = ACTIONS(2828), + [anon_sym_long] = ACTIONS(2828), + [anon_sym_short] = ACTIONS(2828), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_auto] = ACTIONS(2828), + [anon_sym_register] = ACTIONS(2828), + [anon_sym_inline] = ACTIONS(2828), + [anon_sym___inline] = ACTIONS(2828), + [anon_sym___inline__] = ACTIONS(2828), + [anon_sym___forceinline] = ACTIONS(2828), + [anon_sym_thread_local] = ACTIONS(2828), + [anon_sym___thread] = ACTIONS(2828), + [anon_sym_CG_EXTERN] = ACTIONS(2828), + [anon_sym_CG_INLINE] = ACTIONS(2828), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2828), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2828), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2828), + [anon_sym_IBOutlet] = ACTIONS(2828), + [anon_sym_IBInspectable] = ACTIONS(2828), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2828), + [anon_sym_NS_INLINE] = ACTIONS(2828), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2828), + [anon_sym_OBJC_EXPORT] = ACTIONS(2828), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2828), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2828), + [anon_sym_const] = ACTIONS(2828), + [anon_sym_constexpr] = ACTIONS(2828), + [anon_sym_volatile] = ACTIONS(2828), + [anon_sym_restrict] = ACTIONS(2828), + [anon_sym___restrict__] = ACTIONS(2828), + [anon_sym__Atomic] = ACTIONS(2828), + [anon_sym__Noreturn] = ACTIONS(2828), + [anon_sym__Nonnull] = ACTIONS(2828), + [anon_sym_nullable] = ACTIONS(2828), + [anon_sym__Complex] = ACTIONS(2828), + [anon_sym__Nullable] = ACTIONS(2828), + [anon_sym__Nullable_result] = ACTIONS(2828), + [anon_sym__Null_unspecified] = ACTIONS(2828), + [anon_sym___autoreleasing] = ACTIONS(2828), + [anon_sym___block] = ACTIONS(2828), + [anon_sym___bridge] = ACTIONS(2828), + [anon_sym___bridge_retained] = ACTIONS(2828), + [anon_sym___bridge_transfer] = ACTIONS(2828), + [anon_sym___complex] = ACTIONS(2828), + [anon_sym___const] = ACTIONS(2828), + [anon_sym___imag] = ACTIONS(2828), + [anon_sym___kindof] = ACTIONS(2828), + [anon_sym___nonnull] = ACTIONS(2828), + [anon_sym___nullable] = ACTIONS(2828), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2828), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2828), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2828), + [anon_sym___real] = ACTIONS(2828), + [anon_sym___strong] = ACTIONS(2828), + [anon_sym___unsafe_unretained] = ACTIONS(2828), + [anon_sym___unused] = ACTIONS(2828), + [anon_sym___weak] = ACTIONS(2828), + [anon_sym_alignas] = ACTIONS(2828), + [anon_sym__Alignas] = ACTIONS(2828), + [sym_primitive_type] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [anon_sym_struct] = ACTIONS(2828), + [anon_sym_union] = ACTIONS(2828), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2828), + [anon_sym___typeof] = ACTIONS(2828), + [anon_sym_typeof] = ACTIONS(2828), + [aux_sym_preproc_undef_token1] = ACTIONS(2828), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2828), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2828), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2828), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2828), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2828), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2828), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2828), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2828), + [anon_sym_NS_AVAILABLE] = ACTIONS(2828), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2828), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_API_AVAILABLE] = ACTIONS(2828), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_API_DEPRECATED] = ACTIONS(2828), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2828), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2828), + [anon_sym___deprecated_msg] = ACTIONS(2828), + [anon_sym___deprecated_enum_msg] = ACTIONS(2828), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2828), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2828), + [anon_sym_ATend] = ACTIONS(2830), + [anon_sym_AToptional] = ACTIONS(2830), + [anon_sym_ATrequired] = ACTIONS(2830), + [anon_sym_ATsynthesize] = ACTIONS(2830), + [anon_sym_ATdynamic] = ACTIONS(2830), + [anon_sym_ATproperty] = ACTIONS(2830), + [anon_sym_BOOL] = ACTIONS(2828), + [anon_sym_IMP] = ACTIONS(2828), + [anon_sym_SEL] = ACTIONS(2828), + [anon_sym_Class] = ACTIONS(2828), + [anon_sym_id] = ACTIONS(2828), + [anon_sym_ATdefs] = ACTIONS(2830), + }, + [2054] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(5184), + [anon_sym_ATinterface] = ACTIONS(5108), + [anon_sym_ATimplementation] = ACTIONS(5110), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2055] = { + [sym_compound_statement] = STATE(5347), + [sym_type_qualifier] = STATE(3347), + [sym_alignas_qualifier] = STATE(4177), + [sym_expression] = STATE(4426), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_objc_bridge] = STATE(6300), + [sym_typeof_specifier] = STATE(5347), + [sym_availability] = STATE(6300), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5112), + [anon_sym_RPAREN] = ACTIONS(5114), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5116), + [anon_sym_noreturn] = ACTIONS(5186), + [anon_sym_nothrow] = ACTIONS(5188), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(5122), + [anon_sym_constexpr] = ACTIONS(5124), + [anon_sym_volatile] = ACTIONS(5124), + [anon_sym_restrict] = ACTIONS(5124), + [anon_sym___restrict__] = ACTIONS(5124), + [anon_sym__Atomic] = ACTIONS(5124), + [anon_sym__Noreturn] = ACTIONS(5124), + [anon_sym__Nonnull] = ACTIONS(5124), + [anon_sym_nullable] = ACTIONS(5124), + [anon_sym__Complex] = ACTIONS(5124), + [anon_sym__Nullable] = ACTIONS(5124), + [anon_sym__Nullable_result] = ACTIONS(5124), + [anon_sym__Null_unspecified] = ACTIONS(5124), + [anon_sym___autoreleasing] = ACTIONS(5124), + [anon_sym___block] = ACTIONS(5124), + [anon_sym___bridge] = ACTIONS(5124), + [anon_sym___bridge_retained] = ACTIONS(5124), + [anon_sym___bridge_transfer] = ACTIONS(5124), + [anon_sym___complex] = ACTIONS(5124), + [anon_sym___const] = ACTIONS(5124), + [anon_sym___imag] = ACTIONS(5126), + [anon_sym___kindof] = ACTIONS(5124), + [anon_sym___nonnull] = ACTIONS(5124), + [anon_sym___nullable] = ACTIONS(5124), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5124), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5124), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5124), + [anon_sym___real] = ACTIONS(5126), + [anon_sym___strong] = ACTIONS(5124), + [anon_sym___unsafe_unretained] = ACTIONS(5124), + [anon_sym___unused] = ACTIONS(5124), + [anon_sym___weak] = ACTIONS(5124), + [anon_sym_alignas] = ACTIONS(5128), + [anon_sym__Alignas] = ACTIONS(5128), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_objc_bridge_related] = ACTIONS(5130), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_availability] = ACTIONS(5132), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2056] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(5190), + [anon_sym_ATinterface] = ACTIONS(5108), + [anon_sym_ATimplementation] = ACTIONS(5110), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2057] = { + [sym_compound_statement] = STATE(5347), + [sym_type_qualifier] = STATE(3347), + [sym_alignas_qualifier] = STATE(4177), + [sym_expression] = STATE(4426), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_objc_bridge] = STATE(6300), + [sym_typeof_specifier] = STATE(5347), + [sym_availability] = STATE(6300), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5112), + [anon_sym_RPAREN] = ACTIONS(5114), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5116), + [anon_sym_noreturn] = ACTIONS(5192), + [anon_sym_nothrow] = ACTIONS(5194), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(5122), + [anon_sym_constexpr] = ACTIONS(5124), + [anon_sym_volatile] = ACTIONS(5124), + [anon_sym_restrict] = ACTIONS(5124), + [anon_sym___restrict__] = ACTIONS(5124), + [anon_sym__Atomic] = ACTIONS(5124), + [anon_sym__Noreturn] = ACTIONS(5124), + [anon_sym__Nonnull] = ACTIONS(5124), + [anon_sym_nullable] = ACTIONS(5124), + [anon_sym__Complex] = ACTIONS(5124), + [anon_sym__Nullable] = ACTIONS(5124), + [anon_sym__Nullable_result] = ACTIONS(5124), + [anon_sym__Null_unspecified] = ACTIONS(5124), + [anon_sym___autoreleasing] = ACTIONS(5124), + [anon_sym___block] = ACTIONS(5124), + [anon_sym___bridge] = ACTIONS(5124), + [anon_sym___bridge_retained] = ACTIONS(5124), + [anon_sym___bridge_transfer] = ACTIONS(5124), + [anon_sym___complex] = ACTIONS(5124), + [anon_sym___const] = ACTIONS(5124), + [anon_sym___imag] = ACTIONS(5126), + [anon_sym___kindof] = ACTIONS(5124), + [anon_sym___nonnull] = ACTIONS(5124), + [anon_sym___nullable] = ACTIONS(5124), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5124), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5124), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5124), + [anon_sym___real] = ACTIONS(5126), + [anon_sym___strong] = ACTIONS(5124), + [anon_sym___unsafe_unretained] = ACTIONS(5124), + [anon_sym___unused] = ACTIONS(5124), + [anon_sym___weak] = ACTIONS(5124), + [anon_sym_alignas] = ACTIONS(5128), + [anon_sym__Alignas] = ACTIONS(5128), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_objc_bridge_related] = ACTIONS(5130), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_availability] = ACTIONS(5132), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2058] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_ATprotocol] = ACTIONS(5196), + [anon_sym_ATinterface] = ACTIONS(5108), + [anon_sym_ATimplementation] = ACTIONS(5110), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2059] = { + [sym_compound_statement] = STATE(5347), + [sym_type_qualifier] = STATE(3347), + [sym_alignas_qualifier] = STATE(4177), + [sym_expression] = STATE(4426), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_objc_bridge] = STATE(6300), + [sym_typeof_specifier] = STATE(5347), + [sym_availability] = STATE(6300), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5112), + [anon_sym_RPAREN] = ACTIONS(5114), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5116), + [anon_sym_noreturn] = ACTIONS(5198), + [anon_sym_nothrow] = ACTIONS(5200), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(5122), + [anon_sym_constexpr] = ACTIONS(5124), + [anon_sym_volatile] = ACTIONS(5124), + [anon_sym_restrict] = ACTIONS(5124), + [anon_sym___restrict__] = ACTIONS(5124), + [anon_sym__Atomic] = ACTIONS(5124), + [anon_sym__Noreturn] = ACTIONS(5124), + [anon_sym__Nonnull] = ACTIONS(5124), + [anon_sym_nullable] = ACTIONS(5124), + [anon_sym__Complex] = ACTIONS(5124), + [anon_sym__Nullable] = ACTIONS(5124), + [anon_sym__Nullable_result] = ACTIONS(5124), + [anon_sym__Null_unspecified] = ACTIONS(5124), + [anon_sym___autoreleasing] = ACTIONS(5124), + [anon_sym___block] = ACTIONS(5124), + [anon_sym___bridge] = ACTIONS(5124), + [anon_sym___bridge_retained] = ACTIONS(5124), + [anon_sym___bridge_transfer] = ACTIONS(5124), + [anon_sym___complex] = ACTIONS(5124), + [anon_sym___const] = ACTIONS(5124), + [anon_sym___imag] = ACTIONS(5126), + [anon_sym___kindof] = ACTIONS(5124), + [anon_sym___nonnull] = ACTIONS(5124), + [anon_sym___nullable] = ACTIONS(5124), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5124), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5124), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5124), + [anon_sym___real] = ACTIONS(5126), + [anon_sym___strong] = ACTIONS(5124), + [anon_sym___unsafe_unretained] = ACTIONS(5124), + [anon_sym___unused] = ACTIONS(5124), + [anon_sym___weak] = ACTIONS(5124), + [anon_sym_alignas] = ACTIONS(5128), + [anon_sym__Alignas] = ACTIONS(5128), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_objc_bridge_related] = ACTIONS(5130), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_availability] = ACTIONS(5132), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2060] = { + [sym_compound_statement] = STATE(5347), + [sym_type_qualifier] = STATE(3347), + [sym_alignas_qualifier] = STATE(4177), + [sym_expression] = STATE(4426), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_objc_bridge] = STATE(6300), + [sym_typeof_specifier] = STATE(5347), + [sym_availability] = STATE(6300), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5112), + [anon_sym_RPAREN] = ACTIONS(5114), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5116), + [anon_sym_noreturn] = ACTIONS(5202), + [anon_sym_nothrow] = ACTIONS(5204), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(5122), + [anon_sym_constexpr] = ACTIONS(5124), + [anon_sym_volatile] = ACTIONS(5124), + [anon_sym_restrict] = ACTIONS(5124), + [anon_sym___restrict__] = ACTIONS(5124), + [anon_sym__Atomic] = ACTIONS(5124), + [anon_sym__Noreturn] = ACTIONS(5124), + [anon_sym__Nonnull] = ACTIONS(5124), + [anon_sym_nullable] = ACTIONS(5124), + [anon_sym__Complex] = ACTIONS(5124), + [anon_sym__Nullable] = ACTIONS(5124), + [anon_sym__Nullable_result] = ACTIONS(5124), + [anon_sym__Null_unspecified] = ACTIONS(5124), + [anon_sym___autoreleasing] = ACTIONS(5124), + [anon_sym___block] = ACTIONS(5124), + [anon_sym___bridge] = ACTIONS(5124), + [anon_sym___bridge_retained] = ACTIONS(5124), + [anon_sym___bridge_transfer] = ACTIONS(5124), + [anon_sym___complex] = ACTIONS(5124), + [anon_sym___const] = ACTIONS(5124), + [anon_sym___imag] = ACTIONS(5126), + [anon_sym___kindof] = ACTIONS(5124), + [anon_sym___nonnull] = ACTIONS(5124), + [anon_sym___nullable] = ACTIONS(5124), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5124), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5124), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5124), + [anon_sym___real] = ACTIONS(5126), + [anon_sym___strong] = ACTIONS(5124), + [anon_sym___unsafe_unretained] = ACTIONS(5124), + [anon_sym___unused] = ACTIONS(5124), + [anon_sym___weak] = ACTIONS(5124), + [anon_sym_alignas] = ACTIONS(5128), + [anon_sym__Alignas] = ACTIONS(5128), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_objc_bridge_related] = ACTIONS(5130), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_availability] = ACTIONS(5132), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2061] = { + [sym_compound_statement] = STATE(5347), + [sym_type_qualifier] = STATE(3347), + [sym_alignas_qualifier] = STATE(4177), + [sym_expression] = STATE(4426), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_objc_bridge] = STATE(6300), + [sym_typeof_specifier] = STATE(5347), + [sym_availability] = STATE(6300), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5112), + [anon_sym_RPAREN] = ACTIONS(5114), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5116), + [anon_sym_noreturn] = ACTIONS(5206), + [anon_sym_nothrow] = ACTIONS(5208), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(5122), + [anon_sym_constexpr] = ACTIONS(5124), + [anon_sym_volatile] = ACTIONS(5124), + [anon_sym_restrict] = ACTIONS(5124), + [anon_sym___restrict__] = ACTIONS(5124), + [anon_sym__Atomic] = ACTIONS(5124), + [anon_sym__Noreturn] = ACTIONS(5124), + [anon_sym__Nonnull] = ACTIONS(5124), + [anon_sym_nullable] = ACTIONS(5124), + [anon_sym__Complex] = ACTIONS(5124), + [anon_sym__Nullable] = ACTIONS(5124), + [anon_sym__Nullable_result] = ACTIONS(5124), + [anon_sym__Null_unspecified] = ACTIONS(5124), + [anon_sym___autoreleasing] = ACTIONS(5124), + [anon_sym___block] = ACTIONS(5124), + [anon_sym___bridge] = ACTIONS(5124), + [anon_sym___bridge_retained] = ACTIONS(5124), + [anon_sym___bridge_transfer] = ACTIONS(5124), + [anon_sym___complex] = ACTIONS(5124), + [anon_sym___const] = ACTIONS(5124), + [anon_sym___imag] = ACTIONS(5126), + [anon_sym___kindof] = ACTIONS(5124), + [anon_sym___nonnull] = ACTIONS(5124), + [anon_sym___nullable] = ACTIONS(5124), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5124), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5124), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5124), + [anon_sym___real] = ACTIONS(5126), + [anon_sym___strong] = ACTIONS(5124), + [anon_sym___unsafe_unretained] = ACTIONS(5124), + [anon_sym___unused] = ACTIONS(5124), + [anon_sym___weak] = ACTIONS(5124), + [anon_sym_alignas] = ACTIONS(5128), + [anon_sym__Alignas] = ACTIONS(5128), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_objc_bridge_related] = ACTIONS(5130), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_availability] = ACTIONS(5132), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2062] = { + [sym_identifier] = ACTIONS(4114), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4117), + [anon_sym_COMMA] = ACTIONS(4117), + [anon_sym_RPAREN] = ACTIONS(4117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4117), + [anon_sym_LPAREN2] = ACTIONS(4117), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4117), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4117), + [anon_sym_PIPE_PIPE] = ACTIONS(4117), + [anon_sym_AMP_AMP] = ACTIONS(4117), + [anon_sym_PIPE] = ACTIONS(4114), + [anon_sym_CARET] = ACTIONS(4117), + [anon_sym_AMP] = ACTIONS(4114), + [anon_sym_EQ_EQ] = ACTIONS(4117), + [anon_sym_BANG_EQ] = ACTIONS(4117), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_GT_EQ] = ACTIONS(4117), + [anon_sym_LT_EQ] = ACTIONS(4117), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_LT_LT] = ACTIONS(4117), + [anon_sym_GT_GT] = ACTIONS(4117), + [anon_sym_SEMI] = ACTIONS(4117), + [anon_sym___extension__] = ACTIONS(4114), + [anon_sym_extern] = ACTIONS(4114), + [anon_sym___attribute__] = ACTIONS(4114), + [anon_sym___attribute] = ACTIONS(4114), + [anon_sym_noreturn] = ACTIONS(4114), + [anon_sym_LBRACK] = ACTIONS(4117), + [anon_sym_RBRACK] = ACTIONS(4117), + [anon_sym___declspec] = ACTIONS(4114), + [anon_sym_RBRACE] = ACTIONS(4117), + [anon_sym_static] = ACTIONS(4114), + [anon_sym_auto] = ACTIONS(4114), + [anon_sym_register] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym___inline] = ACTIONS(4114), + [anon_sym___inline__] = ACTIONS(4114), + [anon_sym___forceinline] = ACTIONS(4114), + [anon_sym_thread_local] = ACTIONS(4114), + [anon_sym___thread] = ACTIONS(4114), + [anon_sym_CG_EXTERN] = ACTIONS(4114), + [anon_sym_CG_INLINE] = ACTIONS(4114), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4114), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4114), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4114), + [anon_sym_IBOutlet] = ACTIONS(4114), + [anon_sym_IBInspectable] = ACTIONS(4114), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4114), + [anon_sym_NS_INLINE] = ACTIONS(4114), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4114), + [anon_sym_OBJC_EXPORT] = ACTIONS(4114), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4114), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4114), + [anon_sym_const] = ACTIONS(4114), + [anon_sym_constexpr] = ACTIONS(4114), + [anon_sym_volatile] = ACTIONS(4114), + [anon_sym_restrict] = ACTIONS(4114), + [anon_sym___restrict__] = ACTIONS(4114), + [anon_sym__Atomic] = ACTIONS(4114), + [anon_sym__Noreturn] = ACTIONS(4114), + [anon_sym__Nonnull] = ACTIONS(4114), + [anon_sym_nullable] = ACTIONS(4114), + [anon_sym__Complex] = ACTIONS(4114), + [anon_sym__Nullable] = ACTIONS(4114), + [anon_sym__Nullable_result] = ACTIONS(4114), + [anon_sym__Null_unspecified] = ACTIONS(4114), + [anon_sym___autoreleasing] = ACTIONS(4114), + [anon_sym___block] = ACTIONS(4114), + [anon_sym___bridge] = ACTIONS(4114), + [anon_sym___bridge_retained] = ACTIONS(4114), + [anon_sym___bridge_transfer] = ACTIONS(4114), + [anon_sym___complex] = ACTIONS(4114), + [anon_sym___const] = ACTIONS(4114), + [anon_sym___imag] = ACTIONS(4114), + [anon_sym___kindof] = ACTIONS(4114), + [anon_sym___nonnull] = ACTIONS(4114), + [anon_sym___nullable] = ACTIONS(4114), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4114), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4114), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4114), + [anon_sym___real] = ACTIONS(4114), + [anon_sym___strong] = ACTIONS(4114), + [anon_sym___unsafe_unretained] = ACTIONS(4114), + [anon_sym___unused] = ACTIONS(4114), + [anon_sym___weak] = ACTIONS(4114), + [anon_sym_alignas] = ACTIONS(4114), + [anon_sym__Alignas] = ACTIONS(4114), + [anon_sym_COLON] = ACTIONS(4117), + [anon_sym_QMARK] = ACTIONS(4117), + [anon_sym_DASH_DASH] = ACTIONS(4117), + [anon_sym_PLUS_PLUS] = ACTIONS(4117), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_DASH_GT] = ACTIONS(4117), + [anon_sym_AT] = ACTIONS(4117), + [anon_sym_DQUOTE] = ACTIONS(4117), + [anon_sym_L_DQUOTE] = ACTIONS(4117), + [anon_sym_u_DQUOTE] = ACTIONS(4117), + [anon_sym_U_DQUOTE] = ACTIONS(4117), + [anon_sym_u8_DQUOTE] = ACTIONS(4117), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4114), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4114), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4114), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4114), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4114), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4114), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4114), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4114), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4114), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4114), + [anon_sym_NS_AVAILABLE] = ACTIONS(4114), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4114), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4114), + [anon_sym_API_AVAILABLE] = ACTIONS(4114), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4114), + [anon_sym_API_DEPRECATED] = ACTIONS(4114), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4114), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4114), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4114), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4114), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4114), + [anon_sym___deprecated_msg] = ACTIONS(4114), + [anon_sym___deprecated_enum_msg] = ACTIONS(4114), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4114), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4114), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4114), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4114), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4114), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4114), + }, + [2063] = { + [sym_compound_statement] = STATE(5347), + [sym_type_qualifier] = STATE(3347), + [sym_alignas_qualifier] = STATE(4177), + [sym_expression] = STATE(4426), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_objc_bridge] = STATE(6300), + [sym_typeof_specifier] = STATE(5347), + [sym_availability] = STATE(6300), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5112), + [anon_sym_RPAREN] = ACTIONS(5114), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5116), + [anon_sym_noreturn] = ACTIONS(5210), + [anon_sym_nothrow] = ACTIONS(5212), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(5122), + [anon_sym_constexpr] = ACTIONS(5124), + [anon_sym_volatile] = ACTIONS(5124), + [anon_sym_restrict] = ACTIONS(5124), + [anon_sym___restrict__] = ACTIONS(5124), + [anon_sym__Atomic] = ACTIONS(5124), + [anon_sym__Noreturn] = ACTIONS(5124), + [anon_sym__Nonnull] = ACTIONS(5124), + [anon_sym_nullable] = ACTIONS(5124), + [anon_sym__Complex] = ACTIONS(5124), + [anon_sym__Nullable] = ACTIONS(5124), + [anon_sym__Nullable_result] = ACTIONS(5124), + [anon_sym__Null_unspecified] = ACTIONS(5124), + [anon_sym___autoreleasing] = ACTIONS(5124), + [anon_sym___block] = ACTIONS(5124), + [anon_sym___bridge] = ACTIONS(5124), + [anon_sym___bridge_retained] = ACTIONS(5124), + [anon_sym___bridge_transfer] = ACTIONS(5124), + [anon_sym___complex] = ACTIONS(5124), + [anon_sym___const] = ACTIONS(5124), + [anon_sym___imag] = ACTIONS(5126), + [anon_sym___kindof] = ACTIONS(5124), + [anon_sym___nonnull] = ACTIONS(5124), + [anon_sym___nullable] = ACTIONS(5124), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5124), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5124), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5124), + [anon_sym___real] = ACTIONS(5126), + [anon_sym___strong] = ACTIONS(5124), + [anon_sym___unsafe_unretained] = ACTIONS(5124), + [anon_sym___unused] = ACTIONS(5124), + [anon_sym___weak] = ACTIONS(5124), + [anon_sym_alignas] = ACTIONS(5128), + [anon_sym__Alignas] = ACTIONS(5128), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_objc_bridge_related] = ACTIONS(5130), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_availability] = ACTIONS(5132), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2064] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1784), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5214), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2065] = { + [sym_identifier] = ACTIONS(5216), + [aux_sym_preproc_def_token1] = ACTIONS(5216), + [aux_sym_preproc_if_token1] = ACTIONS(5216), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5216), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5216), + [sym_preproc_directive] = ACTIONS(5216), + [anon_sym_LPAREN2] = ACTIONS(5218), + [anon_sym_DASH] = ACTIONS(5218), + [anon_sym_PLUS] = ACTIONS(5218), + [anon_sym_LT] = ACTIONS(5218), + [anon_sym_SEMI] = ACTIONS(5220), + [anon_sym___extension__] = ACTIONS(5216), + [anon_sym_typedef] = ACTIONS(5216), + [anon_sym_extern] = ACTIONS(5216), + [anon_sym___attribute__] = ACTIONS(5216), + [anon_sym___attribute] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym_LBRACK] = ACTIONS(5218), + [anon_sym___declspec] = ACTIONS(5216), + [anon_sym___cdecl] = ACTIONS(5216), + [anon_sym___clrcall] = ACTIONS(5216), + [anon_sym___stdcall] = ACTIONS(5216), + [anon_sym___fastcall] = ACTIONS(5216), + [anon_sym___thiscall] = ACTIONS(5216), + [anon_sym___vectorcall] = ACTIONS(5216), + [anon_sym_LBRACE] = ACTIONS(5218), + [anon_sym_signed] = ACTIONS(5216), + [anon_sym_unsigned] = ACTIONS(5216), + [anon_sym_long] = ACTIONS(5216), + [anon_sym_short] = ACTIONS(5216), + [anon_sym_static] = ACTIONS(5216), + [anon_sym_auto] = ACTIONS(5216), + [anon_sym_register] = ACTIONS(5216), + [anon_sym_inline] = ACTIONS(5216), + [anon_sym___inline] = ACTIONS(5216), + [anon_sym___inline__] = ACTIONS(5216), + [anon_sym___forceinline] = ACTIONS(5216), + [anon_sym_thread_local] = ACTIONS(5216), + [anon_sym___thread] = ACTIONS(5216), + [anon_sym_CG_EXTERN] = ACTIONS(5216), + [anon_sym_CG_INLINE] = ACTIONS(5216), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5216), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5216), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5216), + [anon_sym_IBOutlet] = ACTIONS(5216), + [anon_sym_IBInspectable] = ACTIONS(5216), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5216), + [anon_sym_NS_INLINE] = ACTIONS(5216), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5216), + [anon_sym_OBJC_EXPORT] = ACTIONS(5216), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5216), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5216), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_nullable] = ACTIONS(5216), + [anon_sym__Complex] = ACTIONS(5216), + [anon_sym__Nullable] = ACTIONS(5216), + [anon_sym__Nullable_result] = ACTIONS(5216), + [anon_sym__Null_unspecified] = ACTIONS(5216), + [anon_sym___autoreleasing] = ACTIONS(5216), + [anon_sym___block] = ACTIONS(5216), + [anon_sym___bridge] = ACTIONS(5216), + [anon_sym___bridge_retained] = ACTIONS(5216), + [anon_sym___bridge_transfer] = ACTIONS(5216), + [anon_sym___complex] = ACTIONS(5216), + [anon_sym___const] = ACTIONS(5216), + [anon_sym___imag] = ACTIONS(5216), + [anon_sym___kindof] = ACTIONS(5216), + [anon_sym___nonnull] = ACTIONS(5216), + [anon_sym___nullable] = ACTIONS(5216), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5216), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5216), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5216), + [anon_sym___real] = ACTIONS(5216), + [anon_sym___strong] = ACTIONS(5216), + [anon_sym___unsafe_unretained] = ACTIONS(5216), + [anon_sym___unused] = ACTIONS(5216), + [anon_sym___weak] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5216), + [anon_sym__Alignas] = ACTIONS(5216), + [sym_primitive_type] = ACTIONS(5216), + [anon_sym_enum] = ACTIONS(5216), + [anon_sym_COLON] = ACTIONS(5218), + [anon_sym_struct] = ACTIONS(5216), + [anon_sym_union] = ACTIONS(5216), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5216), + [anon_sym___typeof] = ACTIONS(5216), + [anon_sym_typeof] = ACTIONS(5216), + [aux_sym_preproc_undef_token1] = ACTIONS(5216), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5216), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5216), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5216), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5216), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5216), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5216), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5216), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5216), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5216), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5216), + [anon_sym_NS_AVAILABLE] = ACTIONS(5216), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5216), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5216), + [anon_sym_API_AVAILABLE] = ACTIONS(5216), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5216), + [anon_sym_API_DEPRECATED] = ACTIONS(5216), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5216), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5216), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5216), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5216), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5216), + [anon_sym___deprecated_msg] = ACTIONS(5216), + [anon_sym___deprecated_enum_msg] = ACTIONS(5216), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5216), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5216), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5216), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5216), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5216), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5216), + [anon_sym_ATend] = ACTIONS(5218), + [anon_sym_ATsynthesize] = ACTIONS(5218), + [anon_sym_ATdynamic] = ACTIONS(5218), + [anon_sym_BOOL] = ACTIONS(5216), + [anon_sym_IMP] = ACTIONS(5216), + [anon_sym_SEL] = ACTIONS(5216), + [anon_sym_Class] = ACTIONS(5216), + [anon_sym_id] = ACTIONS(5216), + }, + [2066] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1788), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5222), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2067] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(1781), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5224), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2068] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5226), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_PERCENT] = ACTIONS(5228), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4025), + [anon_sym_AMP] = ACTIONS(5230), + [anon_sym_EQ_EQ] = ACTIONS(5232), + [anon_sym_BANG_EQ] = ACTIONS(5232), + [anon_sym_GT] = ACTIONS(5234), + [anon_sym_GT_EQ] = ACTIONS(5236), + [anon_sym_LT_EQ] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5234), + [anon_sym_LT_LT] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5238), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_extern] = ACTIONS(4027), + [anon_sym___attribute__] = ACTIONS(4027), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4027), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4027), + [anon_sym_register] = ACTIONS(4027), + [anon_sym_inline] = ACTIONS(4027), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4027), + [anon_sym___forceinline] = ACTIONS(4027), + [anon_sym_thread_local] = ACTIONS(4027), + [anon_sym___thread] = ACTIONS(4027), + [anon_sym_CG_EXTERN] = ACTIONS(4027), + [anon_sym_CG_INLINE] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4027), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4027), + [anon_sym_IBOutlet] = ACTIONS(4027), + [anon_sym_IBInspectable] = ACTIONS(4027), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4027), + [anon_sym_NS_INLINE] = ACTIONS(4027), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4027), + [anon_sym_OBJC_EXPORT] = ACTIONS(4027), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4027), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4027), + [anon_sym_volatile] = ACTIONS(4027), + [anon_sym_restrict] = ACTIONS(4027), + [anon_sym___restrict__] = ACTIONS(4027), + [anon_sym__Atomic] = ACTIONS(4027), + [anon_sym__Noreturn] = ACTIONS(4027), + [anon_sym__Nonnull] = ACTIONS(4027), + [anon_sym_nullable] = ACTIONS(4027), + [anon_sym__Complex] = ACTIONS(4027), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4027), + [anon_sym__Null_unspecified] = ACTIONS(4027), + [anon_sym___autoreleasing] = ACTIONS(4027), + [anon_sym___block] = ACTIONS(4027), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4027), + [anon_sym___bridge_transfer] = ACTIONS(4027), + [anon_sym___complex] = ACTIONS(4027), + [anon_sym___const] = ACTIONS(4027), + [anon_sym___imag] = ACTIONS(4027), + [anon_sym___kindof] = ACTIONS(4027), + [anon_sym___nonnull] = ACTIONS(4027), + [anon_sym___nullable] = ACTIONS(4027), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4027), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4027), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4027), + [anon_sym___real] = ACTIONS(4027), + [anon_sym___strong] = ACTIONS(4027), + [anon_sym___unsafe_unretained] = ACTIONS(4027), + [anon_sym___unused] = ACTIONS(4027), + [anon_sym___weak] = ACTIONS(4027), + [anon_sym_alignas] = ACTIONS(4027), + [anon_sym__Alignas] = ACTIONS(4027), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4027), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4027), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4027), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4027), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_API_AVAILABLE] = ACTIONS(4027), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_API_DEPRECATED] = ACTIONS(4027), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4027), + [anon_sym___deprecated_msg] = ACTIONS(4027), + [anon_sym___deprecated_enum_msg] = ACTIONS(4027), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4027), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4027), + }, + [2069] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(2857), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2070] = { + [sym_identifier] = ACTIONS(5028), + [aux_sym_preproc_def_token1] = ACTIONS(5028), + [aux_sym_preproc_if_token1] = ACTIONS(5028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5028), + [sym_preproc_directive] = ACTIONS(5028), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5032), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym___extension__] = ACTIONS(5028), + [anon_sym_typedef] = ACTIONS(5028), + [anon_sym_extern] = ACTIONS(5028), + [anon_sym___attribute__] = ACTIONS(5028), + [anon_sym___attribute] = ACTIONS(5028), + [anon_sym_noreturn] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5032), + [anon_sym___declspec] = ACTIONS(5028), + [anon_sym___based] = ACTIONS(5034), + [anon_sym___cdecl] = ACTIONS(5028), + [anon_sym___clrcall] = ACTIONS(5028), + [anon_sym___stdcall] = ACTIONS(5028), + [anon_sym___fastcall] = ACTIONS(5028), + [anon_sym___thiscall] = ACTIONS(5028), + [anon_sym___vectorcall] = ACTIONS(5028), + [anon_sym_signed] = ACTIONS(5028), + [anon_sym_unsigned] = ACTIONS(5028), + [anon_sym_long] = ACTIONS(5028), + [anon_sym_short] = ACTIONS(5028), + [anon_sym_static] = ACTIONS(5028), + [anon_sym_auto] = ACTIONS(5028), + [anon_sym_register] = ACTIONS(5028), + [anon_sym_inline] = ACTIONS(5028), + [anon_sym___inline] = ACTIONS(5028), + [anon_sym___inline__] = ACTIONS(5028), + [anon_sym___forceinline] = ACTIONS(5028), + [anon_sym_thread_local] = ACTIONS(5028), + [anon_sym___thread] = ACTIONS(5028), + [anon_sym_CG_EXTERN] = ACTIONS(5028), + [anon_sym_CG_INLINE] = ACTIONS(5028), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5028), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5028), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5028), + [anon_sym_IBOutlet] = ACTIONS(5028), + [anon_sym_IBInspectable] = ACTIONS(5028), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5028), + [anon_sym_NS_INLINE] = ACTIONS(5028), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5028), + [anon_sym_OBJC_EXPORT] = ACTIONS(5028), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5028), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5028), + [anon_sym_const] = ACTIONS(5028), + [anon_sym_constexpr] = ACTIONS(5028), + [anon_sym_volatile] = ACTIONS(5028), + [anon_sym_restrict] = ACTIONS(5028), + [anon_sym___restrict__] = ACTIONS(5028), + [anon_sym__Atomic] = ACTIONS(5028), + [anon_sym__Noreturn] = ACTIONS(5028), + [anon_sym__Nonnull] = ACTIONS(5028), + [anon_sym_nullable] = ACTIONS(5028), + [anon_sym__Complex] = ACTIONS(5028), + [anon_sym__Nullable] = ACTIONS(5028), + [anon_sym__Nullable_result] = ACTIONS(5028), + [anon_sym__Null_unspecified] = ACTIONS(5028), + [anon_sym___autoreleasing] = ACTIONS(5028), + [anon_sym___block] = ACTIONS(5028), + [anon_sym___bridge] = ACTIONS(5028), + [anon_sym___bridge_retained] = ACTIONS(5028), + [anon_sym___bridge_transfer] = ACTIONS(5028), + [anon_sym___complex] = ACTIONS(5028), + [anon_sym___const] = ACTIONS(5028), + [anon_sym___imag] = ACTIONS(5028), + [anon_sym___kindof] = ACTIONS(5028), + [anon_sym___nonnull] = ACTIONS(5028), + [anon_sym___nullable] = ACTIONS(5028), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5028), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5028), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5028), + [anon_sym___real] = ACTIONS(5028), + [anon_sym___strong] = ACTIONS(5028), + [anon_sym___unsafe_unretained] = ACTIONS(5028), + [anon_sym___unused] = ACTIONS(5028), + [anon_sym___weak] = ACTIONS(5028), + [anon_sym_alignas] = ACTIONS(5028), + [anon_sym__Alignas] = ACTIONS(5028), + [sym_primitive_type] = ACTIONS(5028), + [anon_sym_enum] = ACTIONS(5028), + [anon_sym_struct] = ACTIONS(5028), + [anon_sym_union] = ACTIONS(5028), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5028), + [anon_sym___typeof] = ACTIONS(5028), + [anon_sym_typeof] = ACTIONS(5028), + [aux_sym_preproc_undef_token1] = ACTIONS(5028), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5028), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5028), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5028), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5028), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5028), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5028), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5028), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5028), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5028), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5028), + [anon_sym_NS_AVAILABLE] = ACTIONS(5028), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5028), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5028), + [anon_sym_API_AVAILABLE] = ACTIONS(5028), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5028), + [anon_sym_API_DEPRECATED] = ACTIONS(5028), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5028), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5028), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5028), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5028), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5028), + [anon_sym___deprecated_msg] = ACTIONS(5028), + [anon_sym___deprecated_enum_msg] = ACTIONS(5028), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5028), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5028), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5028), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5028), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5028), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5028), + [anon_sym_ATend] = ACTIONS(5032), + [anon_sym_ATsynthesize] = ACTIONS(5032), + [anon_sym_ATdynamic] = ACTIONS(5032), + [anon_sym_BOOL] = ACTIONS(5028), + [anon_sym_IMP] = ACTIONS(5028), + [anon_sym_SEL] = ACTIONS(5028), + [anon_sym_Class] = ACTIONS(5028), + [anon_sym_id] = ACTIONS(5028), + }, + [2071] = { + [sym_string_literal] = STATE(1924), + [sym_identifier] = ACTIONS(5240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3979), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_RPAREN] = ACTIONS(3979), + [anon_sym_LPAREN2] = ACTIONS(3979), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_STAR] = ACTIONS(3979), + [anon_sym_SLASH] = ACTIONS(3977), + [anon_sym_PERCENT] = ACTIONS(3979), + [anon_sym_PIPE_PIPE] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3979), + [anon_sym_PIPE] = ACTIONS(3977), + [anon_sym_CARET] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_EQ_EQ] = ACTIONS(3979), + [anon_sym_BANG_EQ] = ACTIONS(3979), + [anon_sym_GT] = ACTIONS(3977), + [anon_sym_GT_EQ] = ACTIONS(3979), + [anon_sym_LT_EQ] = ACTIONS(3979), + [anon_sym_LT] = ACTIONS(3977), + [anon_sym_LT_LT] = ACTIONS(3979), + [anon_sym_GT_GT] = ACTIONS(3979), + [anon_sym_SEMI] = ACTIONS(3979), + [anon_sym___extension__] = ACTIONS(3977), + [anon_sym_extern] = ACTIONS(3977), + [anon_sym___attribute__] = ACTIONS(3977), + [anon_sym___attribute] = ACTIONS(3977), + [anon_sym_noreturn] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3979), + [anon_sym_RBRACK] = ACTIONS(3979), + [anon_sym___declspec] = ACTIONS(3977), + [anon_sym_RBRACE] = ACTIONS(3979), + [anon_sym_static] = ACTIONS(3977), + [anon_sym_auto] = ACTIONS(3977), + [anon_sym_register] = ACTIONS(3977), + [anon_sym_inline] = ACTIONS(3977), + [anon_sym___inline] = ACTIONS(3977), + [anon_sym___inline__] = ACTIONS(3977), + [anon_sym___forceinline] = ACTIONS(3977), + [anon_sym_thread_local] = ACTIONS(3977), + [anon_sym___thread] = ACTIONS(3977), + [anon_sym_CG_EXTERN] = ACTIONS(3977), + [anon_sym_CG_INLINE] = ACTIONS(3977), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3977), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3977), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3977), + [anon_sym_IBOutlet] = ACTIONS(3977), + [anon_sym_IBInspectable] = ACTIONS(3977), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3977), + [anon_sym_NS_INLINE] = ACTIONS(3977), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3977), + [anon_sym_OBJC_EXPORT] = ACTIONS(3977), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3977), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(3977), + [anon_sym_constexpr] = ACTIONS(3977), + [anon_sym_volatile] = ACTIONS(3977), + [anon_sym_restrict] = ACTIONS(3977), + [anon_sym___restrict__] = ACTIONS(3977), + [anon_sym__Atomic] = ACTIONS(3977), + [anon_sym__Noreturn] = ACTIONS(3977), + [anon_sym__Nonnull] = ACTIONS(3977), + [anon_sym_nullable] = ACTIONS(3977), + [anon_sym__Complex] = ACTIONS(3977), + [anon_sym__Nullable] = ACTIONS(3977), + [anon_sym__Nullable_result] = ACTIONS(3977), + [anon_sym__Null_unspecified] = ACTIONS(3977), + [anon_sym___autoreleasing] = ACTIONS(3977), + [anon_sym___block] = ACTIONS(3977), + [anon_sym___bridge] = ACTIONS(3977), + [anon_sym___bridge_retained] = ACTIONS(3977), + [anon_sym___bridge_transfer] = ACTIONS(3977), + [anon_sym___complex] = ACTIONS(3977), + [anon_sym___const] = ACTIONS(3977), + [anon_sym___imag] = ACTIONS(3977), + [anon_sym___kindof] = ACTIONS(3977), + [anon_sym___nonnull] = ACTIONS(3977), + [anon_sym___nullable] = ACTIONS(3977), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3977), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3977), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3977), + [anon_sym___real] = ACTIONS(3977), + [anon_sym___strong] = ACTIONS(3977), + [anon_sym___unsafe_unretained] = ACTIONS(3977), + [anon_sym___unused] = ACTIONS(3977), + [anon_sym___weak] = ACTIONS(3977), + [anon_sym_alignas] = ACTIONS(3977), + [anon_sym__Alignas] = ACTIONS(3977), + [anon_sym_COLON] = ACTIONS(3979), + [anon_sym_QMARK] = ACTIONS(3979), + [anon_sym_DASH_DASH] = ACTIONS(3979), + [anon_sym_PLUS_PLUS] = ACTIONS(3979), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_DASH_GT] = ACTIONS(3979), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3977), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3977), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3977), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3977), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3977), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3977), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3977), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3977), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3977), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3977), + [anon_sym_NS_AVAILABLE] = ACTIONS(3977), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3977), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3977), + [anon_sym_API_AVAILABLE] = ACTIONS(3977), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3977), + [anon_sym_API_DEPRECATED] = ACTIONS(3977), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3977), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3977), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3977), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3977), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3977), + [anon_sym___deprecated_msg] = ACTIONS(3977), + [anon_sym___deprecated_enum_msg] = ACTIONS(3977), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3977), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3977), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3977), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3977), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3977), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3977), + }, + [2072] = { + [sym_identifier] = ACTIONS(4914), + [aux_sym_preproc_def_token1] = ACTIONS(4914), + [aux_sym_preproc_if_token1] = ACTIONS(4914), + [aux_sym_preproc_if_token2] = ACTIONS(4914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4914), + [sym_preproc_directive] = ACTIONS(4914), + [anon_sym_LPAREN2] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4916), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_CARET] = ACTIONS(4916), + [anon_sym___extension__] = ACTIONS(4914), + [anon_sym_typedef] = ACTIONS(4914), + [anon_sym_extern] = ACTIONS(4914), + [anon_sym___attribute__] = ACTIONS(4914), + [anon_sym___attribute] = ACTIONS(4914), + [anon_sym_noreturn] = ACTIONS(4914), + [anon_sym_LBRACK] = ACTIONS(4916), + [anon_sym___declspec] = ACTIONS(4914), + [anon_sym___based] = ACTIONS(4914), + [anon_sym___cdecl] = ACTIONS(4914), + [anon_sym___clrcall] = ACTIONS(4914), + [anon_sym___stdcall] = ACTIONS(4914), + [anon_sym___fastcall] = ACTIONS(4914), + [anon_sym___thiscall] = ACTIONS(4914), + [anon_sym___vectorcall] = ACTIONS(4914), + [anon_sym_signed] = ACTIONS(4914), + [anon_sym_unsigned] = ACTIONS(4914), + [anon_sym_long] = ACTIONS(4914), + [anon_sym_short] = ACTIONS(4914), + [anon_sym_static] = ACTIONS(4914), + [anon_sym_auto] = ACTIONS(4914), + [anon_sym_register] = ACTIONS(4914), + [anon_sym_inline] = ACTIONS(4914), + [anon_sym___inline] = ACTIONS(4914), + [anon_sym___inline__] = ACTIONS(4914), + [anon_sym___forceinline] = ACTIONS(4914), + [anon_sym_thread_local] = ACTIONS(4914), + [anon_sym___thread] = ACTIONS(4914), + [anon_sym_CG_EXTERN] = ACTIONS(4914), + [anon_sym_CG_INLINE] = ACTIONS(4914), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4914), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4914), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4914), + [anon_sym_IBOutlet] = ACTIONS(4914), + [anon_sym_IBInspectable] = ACTIONS(4914), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4914), + [anon_sym_NS_INLINE] = ACTIONS(4914), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4914), + [anon_sym_OBJC_EXPORT] = ACTIONS(4914), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4914), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4914), + [anon_sym_const] = ACTIONS(4914), + [anon_sym_constexpr] = ACTIONS(4914), + [anon_sym_volatile] = ACTIONS(4914), + [anon_sym_restrict] = ACTIONS(4914), + [anon_sym___restrict__] = ACTIONS(4914), + [anon_sym__Atomic] = ACTIONS(4914), + [anon_sym__Noreturn] = ACTIONS(4914), + [anon_sym__Nonnull] = ACTIONS(4914), + [anon_sym_nullable] = ACTIONS(4914), + [anon_sym__Complex] = ACTIONS(4914), + [anon_sym__Nullable] = ACTIONS(4914), + [anon_sym__Nullable_result] = ACTIONS(4914), + [anon_sym__Null_unspecified] = ACTIONS(4914), + [anon_sym___autoreleasing] = ACTIONS(4914), + [anon_sym___block] = ACTIONS(4914), + [anon_sym___bridge] = ACTIONS(4914), + [anon_sym___bridge_retained] = ACTIONS(4914), + [anon_sym___bridge_transfer] = ACTIONS(4914), + [anon_sym___complex] = ACTIONS(4914), + [anon_sym___const] = ACTIONS(4914), + [anon_sym___imag] = ACTIONS(4914), + [anon_sym___kindof] = ACTIONS(4914), + [anon_sym___nonnull] = ACTIONS(4914), + [anon_sym___nullable] = ACTIONS(4914), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4914), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4914), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4914), + [anon_sym___real] = ACTIONS(4914), + [anon_sym___strong] = ACTIONS(4914), + [anon_sym___unsafe_unretained] = ACTIONS(4914), + [anon_sym___unused] = ACTIONS(4914), + [anon_sym___weak] = ACTIONS(4914), + [anon_sym_alignas] = ACTIONS(4914), + [anon_sym__Alignas] = ACTIONS(4914), + [sym_primitive_type] = ACTIONS(4914), + [anon_sym_enum] = ACTIONS(4914), + [anon_sym_struct] = ACTIONS(4914), + [anon_sym_union] = ACTIONS(4914), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4914), + [anon_sym___typeof] = ACTIONS(4914), + [anon_sym_typeof] = ACTIONS(4914), + [aux_sym_preproc_undef_token1] = ACTIONS(4914), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4914), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4914), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4914), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4914), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4914), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4914), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4914), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4914), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4914), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4914), + [anon_sym_NS_AVAILABLE] = ACTIONS(4914), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4914), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4914), + [anon_sym_API_AVAILABLE] = ACTIONS(4914), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4914), + [anon_sym_API_DEPRECATED] = ACTIONS(4914), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4914), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4914), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4914), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4914), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4914), + [anon_sym___deprecated_msg] = ACTIONS(4914), + [anon_sym___deprecated_enum_msg] = ACTIONS(4914), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4914), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4914), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4914), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4914), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4914), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4914), + [anon_sym_ATsynthesize] = ACTIONS(4916), + [anon_sym_ATdynamic] = ACTIONS(4916), + [anon_sym_BOOL] = ACTIONS(4914), + [anon_sym_IMP] = ACTIONS(4914), + [anon_sym_SEL] = ACTIONS(4914), + [anon_sym_Class] = ACTIONS(4914), + [anon_sym_id] = ACTIONS(4914), + }, + [2073] = { + [sym_identifier] = ACTIONS(2346), + [aux_sym_preproc_def_token1] = ACTIONS(2346), + [aux_sym_preproc_if_token1] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2346), + [sym_preproc_directive] = ACTIONS(2346), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_PLUS] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym___extension__] = ACTIONS(2346), + [anon_sym_typedef] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym___attribute__] = ACTIONS(2346), + [anon_sym___attribute] = ACTIONS(2346), + [anon_sym_noreturn] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym___declspec] = ACTIONS(2346), + [anon_sym___cdecl] = ACTIONS(2346), + [anon_sym___clrcall] = ACTIONS(2346), + [anon_sym___stdcall] = ACTIONS(2346), + [anon_sym___fastcall] = ACTIONS(2346), + [anon_sym___thiscall] = ACTIONS(2346), + [anon_sym___vectorcall] = ACTIONS(2346), + [anon_sym_signed] = ACTIONS(2346), + [anon_sym_unsigned] = ACTIONS(2346), + [anon_sym_long] = ACTIONS(2346), + [anon_sym_short] = ACTIONS(2346), + [anon_sym_static] = ACTIONS(2346), + [anon_sym_auto] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2346), + [anon_sym_inline] = ACTIONS(2346), + [anon_sym___inline] = ACTIONS(2346), + [anon_sym___inline__] = ACTIONS(2346), + [anon_sym___forceinline] = ACTIONS(2346), + [anon_sym_thread_local] = ACTIONS(2346), + [anon_sym___thread] = ACTIONS(2346), + [anon_sym_CG_EXTERN] = ACTIONS(2346), + [anon_sym_CG_INLINE] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2346), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2346), + [anon_sym_IBOutlet] = ACTIONS(2346), + [anon_sym_IBInspectable] = ACTIONS(2346), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2346), + [anon_sym_NS_INLINE] = ACTIONS(2346), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2346), + [anon_sym_OBJC_EXPORT] = ACTIONS(2346), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_constexpr] = ACTIONS(2346), + [anon_sym_volatile] = ACTIONS(2346), + [anon_sym_restrict] = ACTIONS(2346), + [anon_sym___restrict__] = ACTIONS(2346), + [anon_sym__Atomic] = ACTIONS(2346), + [anon_sym__Noreturn] = ACTIONS(2346), + [anon_sym__Nonnull] = ACTIONS(2346), + [anon_sym_nullable] = ACTIONS(2346), + [anon_sym__Complex] = ACTIONS(2346), + [anon_sym__Nullable] = ACTIONS(2346), + [anon_sym__Nullable_result] = ACTIONS(2346), + [anon_sym__Null_unspecified] = ACTIONS(2346), + [anon_sym___autoreleasing] = ACTIONS(2346), + [anon_sym___block] = ACTIONS(2346), + [anon_sym___bridge] = ACTIONS(2346), + [anon_sym___bridge_retained] = ACTIONS(2346), + [anon_sym___bridge_transfer] = ACTIONS(2346), + [anon_sym___complex] = ACTIONS(2346), + [anon_sym___const] = ACTIONS(2346), + [anon_sym___imag] = ACTIONS(2346), + [anon_sym___kindof] = ACTIONS(2346), + [anon_sym___nonnull] = ACTIONS(2346), + [anon_sym___nullable] = ACTIONS(2346), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2346), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2346), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2346), + [anon_sym___real] = ACTIONS(2346), + [anon_sym___strong] = ACTIONS(2346), + [anon_sym___unsafe_unretained] = ACTIONS(2346), + [anon_sym___unused] = ACTIONS(2346), + [anon_sym___weak] = ACTIONS(2346), + [anon_sym_alignas] = ACTIONS(2346), + [anon_sym__Alignas] = ACTIONS(2346), + [sym_primitive_type] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2346), + [anon_sym___typeof] = ACTIONS(2346), + [anon_sym_typeof] = ACTIONS(2346), + [aux_sym_preproc_undef_token1] = ACTIONS(2346), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2346), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2346), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2346), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2346), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE] = ACTIONS(2346), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_API_AVAILABLE] = ACTIONS(2346), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_API_DEPRECATED] = ACTIONS(2346), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2346), + [anon_sym___deprecated_msg] = ACTIONS(2346), + [anon_sym___deprecated_enum_msg] = ACTIONS(2346), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2346), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2346), + [anon_sym_ATend] = ACTIONS(2348), + [anon_sym_AToptional] = ACTIONS(2348), + [anon_sym_ATrequired] = ACTIONS(2348), + [anon_sym_ATsynthesize] = ACTIONS(2348), + [anon_sym_ATdynamic] = ACTIONS(2348), + [anon_sym_ATproperty] = ACTIONS(2348), + [anon_sym_BOOL] = ACTIONS(2346), + [anon_sym_IMP] = ACTIONS(2346), + [anon_sym_SEL] = ACTIONS(2346), + [anon_sym_Class] = ACTIONS(2346), + [anon_sym_id] = ACTIONS(2346), + }, + [2074] = { + [sym_identifier] = ACTIONS(2364), + [aux_sym_preproc_def_token1] = ACTIONS(2364), + [aux_sym_preproc_if_token1] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2364), + [sym_preproc_directive] = ACTIONS(2364), + [anon_sym_DASH] = ACTIONS(2366), + [anon_sym_PLUS] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_typedef] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym___attribute__] = ACTIONS(2364), + [anon_sym___attribute] = ACTIONS(2364), + [anon_sym_noreturn] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym___declspec] = ACTIONS(2364), + [anon_sym___cdecl] = ACTIONS(2364), + [anon_sym___clrcall] = ACTIONS(2364), + [anon_sym___stdcall] = ACTIONS(2364), + [anon_sym___fastcall] = ACTIONS(2364), + [anon_sym___thiscall] = ACTIONS(2364), + [anon_sym___vectorcall] = ACTIONS(2364), + [anon_sym_signed] = ACTIONS(2364), + [anon_sym_unsigned] = ACTIONS(2364), + [anon_sym_long] = ACTIONS(2364), + [anon_sym_short] = ACTIONS(2364), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_auto] = ACTIONS(2364), + [anon_sym_register] = ACTIONS(2364), + [anon_sym_inline] = ACTIONS(2364), + [anon_sym___inline] = ACTIONS(2364), + [anon_sym___inline__] = ACTIONS(2364), + [anon_sym___forceinline] = ACTIONS(2364), + [anon_sym_thread_local] = ACTIONS(2364), + [anon_sym___thread] = ACTIONS(2364), + [anon_sym_CG_EXTERN] = ACTIONS(2364), + [anon_sym_CG_INLINE] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2364), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2364), + [anon_sym_IBOutlet] = ACTIONS(2364), + [anon_sym_IBInspectable] = ACTIONS(2364), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2364), + [anon_sym_NS_INLINE] = ACTIONS(2364), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2364), + [anon_sym_OBJC_EXPORT] = ACTIONS(2364), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [anon_sym_constexpr] = ACTIONS(2364), + [anon_sym_volatile] = ACTIONS(2364), + [anon_sym_restrict] = ACTIONS(2364), + [anon_sym___restrict__] = ACTIONS(2364), + [anon_sym__Atomic] = ACTIONS(2364), + [anon_sym__Noreturn] = ACTIONS(2364), + [anon_sym__Nonnull] = ACTIONS(2364), + [anon_sym_nullable] = ACTIONS(2364), + [anon_sym__Complex] = ACTIONS(2364), + [anon_sym__Nullable] = ACTIONS(2364), + [anon_sym__Nullable_result] = ACTIONS(2364), + [anon_sym__Null_unspecified] = ACTIONS(2364), + [anon_sym___autoreleasing] = ACTIONS(2364), + [anon_sym___block] = ACTIONS(2364), + [anon_sym___bridge] = ACTIONS(2364), + [anon_sym___bridge_retained] = ACTIONS(2364), + [anon_sym___bridge_transfer] = ACTIONS(2364), + [anon_sym___complex] = ACTIONS(2364), + [anon_sym___const] = ACTIONS(2364), + [anon_sym___imag] = ACTIONS(2364), + [anon_sym___kindof] = ACTIONS(2364), + [anon_sym___nonnull] = ACTIONS(2364), + [anon_sym___nullable] = ACTIONS(2364), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2364), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2364), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2364), + [anon_sym___real] = ACTIONS(2364), + [anon_sym___strong] = ACTIONS(2364), + [anon_sym___unsafe_unretained] = ACTIONS(2364), + [anon_sym___unused] = ACTIONS(2364), + [anon_sym___weak] = ACTIONS(2364), + [anon_sym_alignas] = ACTIONS(2364), + [anon_sym__Alignas] = ACTIONS(2364), + [sym_primitive_type] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(2364), + [anon_sym_union] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2364), + [anon_sym___typeof] = ACTIONS(2364), + [anon_sym_typeof] = ACTIONS(2364), + [aux_sym_preproc_undef_token1] = ACTIONS(2364), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2364), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2364), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2364), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2364), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE] = ACTIONS(2364), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_API_AVAILABLE] = ACTIONS(2364), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_API_DEPRECATED] = ACTIONS(2364), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2364), + [anon_sym___deprecated_msg] = ACTIONS(2364), + [anon_sym___deprecated_enum_msg] = ACTIONS(2364), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2364), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2364), + [anon_sym_ATend] = ACTIONS(2366), + [anon_sym_AToptional] = ACTIONS(2366), + [anon_sym_ATrequired] = ACTIONS(2366), + [anon_sym_ATsynthesize] = ACTIONS(2366), + [anon_sym_ATdynamic] = ACTIONS(2366), + [anon_sym_ATproperty] = ACTIONS(2366), + [anon_sym_BOOL] = ACTIONS(2364), + [anon_sym_IMP] = ACTIONS(2364), + [anon_sym_SEL] = ACTIONS(2364), + [anon_sym_Class] = ACTIONS(2364), + [anon_sym_id] = ACTIONS(2364), + }, + [2075] = { + [sym_identifier] = ACTIONS(2350), + [aux_sym_preproc_def_token1] = ACTIONS(2350), + [aux_sym_preproc_if_token1] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2350), + [sym_preproc_directive] = ACTIONS(2350), + [anon_sym_DASH] = ACTIONS(2352), + [anon_sym_PLUS] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2352), + [anon_sym___extension__] = ACTIONS(2350), + [anon_sym_typedef] = ACTIONS(2350), + [anon_sym_extern] = ACTIONS(2350), + [anon_sym___attribute__] = ACTIONS(2350), + [anon_sym___attribute] = ACTIONS(2350), + [anon_sym_noreturn] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2352), + [anon_sym___declspec] = ACTIONS(2350), + [anon_sym___cdecl] = ACTIONS(2350), + [anon_sym___clrcall] = ACTIONS(2350), + [anon_sym___stdcall] = ACTIONS(2350), + [anon_sym___fastcall] = ACTIONS(2350), + [anon_sym___thiscall] = ACTIONS(2350), + [anon_sym___vectorcall] = ACTIONS(2350), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(2350), + [anon_sym_auto] = ACTIONS(2350), + [anon_sym_register] = ACTIONS(2350), + [anon_sym_inline] = ACTIONS(2350), + [anon_sym___inline] = ACTIONS(2350), + [anon_sym___inline__] = ACTIONS(2350), + [anon_sym___forceinline] = ACTIONS(2350), + [anon_sym_thread_local] = ACTIONS(2350), + [anon_sym___thread] = ACTIONS(2350), + [anon_sym_CG_EXTERN] = ACTIONS(2350), + [anon_sym_CG_INLINE] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2350), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2350), + [anon_sym_IBOutlet] = ACTIONS(2350), + [anon_sym_IBInspectable] = ACTIONS(2350), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2350), + [anon_sym_NS_INLINE] = ACTIONS(2350), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2350), + [anon_sym_OBJC_EXPORT] = ACTIONS(2350), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2350), + [anon_sym_const] = ACTIONS(2350), + [anon_sym_constexpr] = ACTIONS(2350), + [anon_sym_volatile] = ACTIONS(2350), + [anon_sym_restrict] = ACTIONS(2350), + [anon_sym___restrict__] = ACTIONS(2350), + [anon_sym__Atomic] = ACTIONS(2350), + [anon_sym__Noreturn] = ACTIONS(2350), + [anon_sym__Nonnull] = ACTIONS(2350), + [anon_sym_nullable] = ACTIONS(2350), + [anon_sym__Complex] = ACTIONS(2350), + [anon_sym__Nullable] = ACTIONS(2350), + [anon_sym__Nullable_result] = ACTIONS(2350), + [anon_sym__Null_unspecified] = ACTIONS(2350), + [anon_sym___autoreleasing] = ACTIONS(2350), + [anon_sym___block] = ACTIONS(2350), + [anon_sym___bridge] = ACTIONS(2350), + [anon_sym___bridge_retained] = ACTIONS(2350), + [anon_sym___bridge_transfer] = ACTIONS(2350), + [anon_sym___complex] = ACTIONS(2350), + [anon_sym___const] = ACTIONS(2350), + [anon_sym___imag] = ACTIONS(2350), + [anon_sym___kindof] = ACTIONS(2350), + [anon_sym___nonnull] = ACTIONS(2350), + [anon_sym___nullable] = ACTIONS(2350), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2350), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2350), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2350), + [anon_sym___real] = ACTIONS(2350), + [anon_sym___strong] = ACTIONS(2350), + [anon_sym___unsafe_unretained] = ACTIONS(2350), + [anon_sym___unused] = ACTIONS(2350), + [anon_sym___weak] = ACTIONS(2350), + [anon_sym_alignas] = ACTIONS(2350), + [anon_sym__Alignas] = ACTIONS(2350), + [sym_primitive_type] = ACTIONS(2350), + [anon_sym_enum] = ACTIONS(2350), + [anon_sym_struct] = ACTIONS(2350), + [anon_sym_union] = ACTIONS(2350), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2350), + [anon_sym___typeof] = ACTIONS(2350), + [anon_sym_typeof] = ACTIONS(2350), + [aux_sym_preproc_undef_token1] = ACTIONS(2350), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2350), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2350), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2350), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2350), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE] = ACTIONS(2350), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_API_AVAILABLE] = ACTIONS(2350), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_API_DEPRECATED] = ACTIONS(2350), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2350), + [anon_sym___deprecated_msg] = ACTIONS(2350), + [anon_sym___deprecated_enum_msg] = ACTIONS(2350), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2350), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2350), + [anon_sym_ATend] = ACTIONS(2352), + [anon_sym_AToptional] = ACTIONS(2352), + [anon_sym_ATrequired] = ACTIONS(2352), + [anon_sym_ATsynthesize] = ACTIONS(2352), + [anon_sym_ATdynamic] = ACTIONS(2352), + [anon_sym_ATproperty] = ACTIONS(2352), + [anon_sym_BOOL] = ACTIONS(2350), + [anon_sym_IMP] = ACTIONS(2350), + [anon_sym_SEL] = ACTIONS(2350), + [anon_sym_Class] = ACTIONS(2350), + [anon_sym_id] = ACTIONS(2350), + }, + [2076] = { + [sym_expression] = STATE(1629), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(203), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(5246), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(203), + }, + [2077] = { + [sym_identifier] = ACTIONS(5248), + [aux_sym_preproc_def_token1] = ACTIONS(5248), + [aux_sym_preproc_if_token1] = ACTIONS(5248), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5248), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5248), + [sym_preproc_directive] = ACTIONS(5248), + [anon_sym_LPAREN2] = ACTIONS(5250), + [anon_sym_DASH] = ACTIONS(5250), + [anon_sym_PLUS] = ACTIONS(5250), + [anon_sym_LT] = ACTIONS(5250), + [anon_sym_SEMI] = ACTIONS(5252), + [anon_sym___extension__] = ACTIONS(5248), + [anon_sym_typedef] = ACTIONS(5248), + [anon_sym_extern] = ACTIONS(5248), + [anon_sym___attribute__] = ACTIONS(5248), + [anon_sym___attribute] = ACTIONS(5248), + [anon_sym_noreturn] = ACTIONS(5248), + [anon_sym_LBRACK] = ACTIONS(5250), + [anon_sym___declspec] = ACTIONS(5248), + [anon_sym___cdecl] = ACTIONS(5248), + [anon_sym___clrcall] = ACTIONS(5248), + [anon_sym___stdcall] = ACTIONS(5248), + [anon_sym___fastcall] = ACTIONS(5248), + [anon_sym___thiscall] = ACTIONS(5248), + [anon_sym___vectorcall] = ACTIONS(5248), + [anon_sym_LBRACE] = ACTIONS(5250), + [anon_sym_signed] = ACTIONS(5248), + [anon_sym_unsigned] = ACTIONS(5248), + [anon_sym_long] = ACTIONS(5248), + [anon_sym_short] = ACTIONS(5248), + [anon_sym_static] = ACTIONS(5248), + [anon_sym_auto] = ACTIONS(5248), + [anon_sym_register] = ACTIONS(5248), + [anon_sym_inline] = ACTIONS(5248), + [anon_sym___inline] = ACTIONS(5248), + [anon_sym___inline__] = ACTIONS(5248), + [anon_sym___forceinline] = ACTIONS(5248), + [anon_sym_thread_local] = ACTIONS(5248), + [anon_sym___thread] = ACTIONS(5248), + [anon_sym_CG_EXTERN] = ACTIONS(5248), + [anon_sym_CG_INLINE] = ACTIONS(5248), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5248), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5248), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5248), + [anon_sym_IBOutlet] = ACTIONS(5248), + [anon_sym_IBInspectable] = ACTIONS(5248), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5248), + [anon_sym_NS_INLINE] = ACTIONS(5248), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5248), + [anon_sym_OBJC_EXPORT] = ACTIONS(5248), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5248), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5248), + [anon_sym_const] = ACTIONS(5248), + [anon_sym_constexpr] = ACTIONS(5248), + [anon_sym_volatile] = ACTIONS(5248), + [anon_sym_restrict] = ACTIONS(5248), + [anon_sym___restrict__] = ACTIONS(5248), + [anon_sym__Atomic] = ACTIONS(5248), + [anon_sym__Noreturn] = ACTIONS(5248), + [anon_sym__Nonnull] = ACTIONS(5248), + [anon_sym_nullable] = ACTIONS(5248), + [anon_sym__Complex] = ACTIONS(5248), + [anon_sym__Nullable] = ACTIONS(5248), + [anon_sym__Nullable_result] = ACTIONS(5248), + [anon_sym__Null_unspecified] = ACTIONS(5248), + [anon_sym___autoreleasing] = ACTIONS(5248), + [anon_sym___block] = ACTIONS(5248), + [anon_sym___bridge] = ACTIONS(5248), + [anon_sym___bridge_retained] = ACTIONS(5248), + [anon_sym___bridge_transfer] = ACTIONS(5248), + [anon_sym___complex] = ACTIONS(5248), + [anon_sym___const] = ACTIONS(5248), + [anon_sym___imag] = ACTIONS(5248), + [anon_sym___kindof] = ACTIONS(5248), + [anon_sym___nonnull] = ACTIONS(5248), + [anon_sym___nullable] = ACTIONS(5248), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5248), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5248), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5248), + [anon_sym___real] = ACTIONS(5248), + [anon_sym___strong] = ACTIONS(5248), + [anon_sym___unsafe_unretained] = ACTIONS(5248), + [anon_sym___unused] = ACTIONS(5248), + [anon_sym___weak] = ACTIONS(5248), + [anon_sym_alignas] = ACTIONS(5248), + [anon_sym__Alignas] = ACTIONS(5248), + [sym_primitive_type] = ACTIONS(5248), + [anon_sym_enum] = ACTIONS(5248), + [anon_sym_COLON] = ACTIONS(5250), + [anon_sym_struct] = ACTIONS(5248), + [anon_sym_union] = ACTIONS(5248), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5248), + [anon_sym___typeof] = ACTIONS(5248), + [anon_sym_typeof] = ACTIONS(5248), + [aux_sym_preproc_undef_token1] = ACTIONS(5248), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5248), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5248), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5248), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5248), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5248), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5248), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5248), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5248), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5248), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5248), + [anon_sym_NS_AVAILABLE] = ACTIONS(5248), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5248), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5248), + [anon_sym_API_AVAILABLE] = ACTIONS(5248), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5248), + [anon_sym_API_DEPRECATED] = ACTIONS(5248), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5248), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5248), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5248), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5248), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5248), + [anon_sym___deprecated_msg] = ACTIONS(5248), + [anon_sym___deprecated_enum_msg] = ACTIONS(5248), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5248), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5248), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5248), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5248), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5248), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5248), + [anon_sym_ATend] = ACTIONS(5250), + [anon_sym_ATproperty] = ACTIONS(5250), + [anon_sym_BOOL] = ACTIONS(5248), + [anon_sym_IMP] = ACTIONS(5248), + [anon_sym_SEL] = ACTIONS(5248), + [anon_sym_Class] = ACTIONS(5248), + [anon_sym_id] = ACTIONS(5248), + }, + [2078] = { + [sym_string_literal] = STATE(1924), + [sym_identifier] = ACTIONS(3977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3979), + [anon_sym_COMMA] = ACTIONS(3979), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3979), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3979), + [anon_sym_LPAREN2] = ACTIONS(3979), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_STAR] = ACTIONS(3979), + [anon_sym_SLASH] = ACTIONS(3977), + [anon_sym_PERCENT] = ACTIONS(3979), + [anon_sym_PIPE_PIPE] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3979), + [anon_sym_PIPE] = ACTIONS(3977), + [anon_sym_CARET] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_EQ_EQ] = ACTIONS(3979), + [anon_sym_BANG_EQ] = ACTIONS(3979), + [anon_sym_GT] = ACTIONS(3977), + [anon_sym_GT_EQ] = ACTIONS(3979), + [anon_sym_LT_EQ] = ACTIONS(3979), + [anon_sym_LT] = ACTIONS(3977), + [anon_sym_LT_LT] = ACTIONS(3979), + [anon_sym_GT_GT] = ACTIONS(3979), + [anon_sym___extension__] = ACTIONS(3977), + [anon_sym_extern] = ACTIONS(3977), + [anon_sym___attribute__] = ACTIONS(3977), + [anon_sym___attribute] = ACTIONS(3977), + [anon_sym_noreturn] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3979), + [anon_sym_RBRACK] = ACTIONS(3979), + [anon_sym___declspec] = ACTIONS(3977), + [anon_sym_RBRACE] = ACTIONS(3979), + [anon_sym_static] = ACTIONS(3977), + [anon_sym_auto] = ACTIONS(3977), + [anon_sym_register] = ACTIONS(3977), + [anon_sym_inline] = ACTIONS(3977), + [anon_sym___inline] = ACTIONS(3977), + [anon_sym___inline__] = ACTIONS(3977), + [anon_sym___forceinline] = ACTIONS(3977), + [anon_sym_thread_local] = ACTIONS(3977), + [anon_sym___thread] = ACTIONS(3977), + [anon_sym_CG_EXTERN] = ACTIONS(3977), + [anon_sym_CG_INLINE] = ACTIONS(3977), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3977), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3977), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3977), + [anon_sym_IBOutlet] = ACTIONS(3977), + [anon_sym_IBInspectable] = ACTIONS(3977), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3977), + [anon_sym_NS_INLINE] = ACTIONS(3977), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3977), + [anon_sym_OBJC_EXPORT] = ACTIONS(3977), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3977), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(3977), + [anon_sym_constexpr] = ACTIONS(3977), + [anon_sym_volatile] = ACTIONS(3977), + [anon_sym_restrict] = ACTIONS(3977), + [anon_sym___restrict__] = ACTIONS(3977), + [anon_sym__Atomic] = ACTIONS(3977), + [anon_sym__Noreturn] = ACTIONS(3977), + [anon_sym__Nonnull] = ACTIONS(3977), + [anon_sym_nullable] = ACTIONS(3977), + [anon_sym__Complex] = ACTIONS(3977), + [anon_sym__Nullable] = ACTIONS(3977), + [anon_sym__Nullable_result] = ACTIONS(3977), + [anon_sym__Null_unspecified] = ACTIONS(3977), + [anon_sym___autoreleasing] = ACTIONS(3977), + [anon_sym___block] = ACTIONS(3977), + [anon_sym___bridge] = ACTIONS(3977), + [anon_sym___bridge_retained] = ACTIONS(3977), + [anon_sym___bridge_transfer] = ACTIONS(3977), + [anon_sym___complex] = ACTIONS(3977), + [anon_sym___const] = ACTIONS(3977), + [anon_sym___imag] = ACTIONS(3977), + [anon_sym___kindof] = ACTIONS(3977), + [anon_sym___nonnull] = ACTIONS(3977), + [anon_sym___nullable] = ACTIONS(3977), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3977), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3977), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3977), + [anon_sym___real] = ACTIONS(3977), + [anon_sym___strong] = ACTIONS(3977), + [anon_sym___unsafe_unretained] = ACTIONS(3977), + [anon_sym___unused] = ACTIONS(3977), + [anon_sym___weak] = ACTIONS(3977), + [anon_sym_alignas] = ACTIONS(3977), + [anon_sym__Alignas] = ACTIONS(3977), + [anon_sym_COLON] = ACTIONS(3979), + [anon_sym_QMARK] = ACTIONS(3979), + [anon_sym_DASH_DASH] = ACTIONS(3979), + [anon_sym_PLUS_PLUS] = ACTIONS(3979), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_DASH_GT] = ACTIONS(3979), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3977), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3977), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3977), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3977), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3977), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3977), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3977), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3977), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3977), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3977), + [anon_sym_NS_AVAILABLE] = ACTIONS(3977), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3977), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3977), + [anon_sym_API_AVAILABLE] = ACTIONS(3977), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3977), + [anon_sym_API_DEPRECATED] = ACTIONS(3977), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3977), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3977), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3977), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3977), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3977), + [anon_sym___deprecated_msg] = ACTIONS(3977), + [anon_sym___deprecated_enum_msg] = ACTIONS(3977), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3977), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3977), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3977), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3977), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3977), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3977), + }, + [2079] = { + [sym_identifier] = ACTIONS(5254), + [aux_sym_preproc_def_token1] = ACTIONS(5254), + [aux_sym_preproc_if_token1] = ACTIONS(5254), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5254), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5254), + [sym_preproc_directive] = ACTIONS(5254), + [anon_sym_LPAREN2] = ACTIONS(5256), + [anon_sym_DASH] = ACTIONS(5258), + [anon_sym_PLUS] = ACTIONS(5258), + [anon_sym_LT] = ACTIONS(5256), + [anon_sym___extension__] = ACTIONS(5254), + [anon_sym_typedef] = ACTIONS(5254), + [anon_sym_extern] = ACTIONS(5254), + [anon_sym___attribute__] = ACTIONS(5254), + [anon_sym___attribute] = ACTIONS(5254), + [anon_sym_noreturn] = ACTIONS(5254), + [anon_sym_LBRACK] = ACTIONS(5258), + [anon_sym___declspec] = ACTIONS(5254), + [anon_sym___cdecl] = ACTIONS(5254), + [anon_sym___clrcall] = ACTIONS(5254), + [anon_sym___stdcall] = ACTIONS(5254), + [anon_sym___fastcall] = ACTIONS(5254), + [anon_sym___thiscall] = ACTIONS(5254), + [anon_sym___vectorcall] = ACTIONS(5254), + [anon_sym_LBRACE] = ACTIONS(5258), + [anon_sym_signed] = ACTIONS(5254), + [anon_sym_unsigned] = ACTIONS(5254), + [anon_sym_long] = ACTIONS(5254), + [anon_sym_short] = ACTIONS(5254), + [anon_sym_static] = ACTIONS(5254), + [anon_sym_auto] = ACTIONS(5254), + [anon_sym_register] = ACTIONS(5254), + [anon_sym_inline] = ACTIONS(5254), + [anon_sym___inline] = ACTIONS(5254), + [anon_sym___inline__] = ACTIONS(5254), + [anon_sym___forceinline] = ACTIONS(5254), + [anon_sym_thread_local] = ACTIONS(5254), + [anon_sym___thread] = ACTIONS(5254), + [anon_sym_CG_EXTERN] = ACTIONS(5254), + [anon_sym_CG_INLINE] = ACTIONS(5254), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5254), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5254), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5254), + [anon_sym_IBOutlet] = ACTIONS(5254), + [anon_sym_IBInspectable] = ACTIONS(5254), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5254), + [anon_sym_NS_INLINE] = ACTIONS(5254), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5254), + [anon_sym_OBJC_EXPORT] = ACTIONS(5254), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5254), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5254), + [anon_sym_const] = ACTIONS(5254), + [anon_sym_constexpr] = ACTIONS(5254), + [anon_sym_volatile] = ACTIONS(5254), + [anon_sym_restrict] = ACTIONS(5254), + [anon_sym___restrict__] = ACTIONS(5254), + [anon_sym__Atomic] = ACTIONS(5254), + [anon_sym__Noreturn] = ACTIONS(5254), + [anon_sym__Nonnull] = ACTIONS(5254), + [anon_sym_nullable] = ACTIONS(5254), + [anon_sym__Complex] = ACTIONS(5254), + [anon_sym__Nullable] = ACTIONS(5254), + [anon_sym__Nullable_result] = ACTIONS(5254), + [anon_sym__Null_unspecified] = ACTIONS(5254), + [anon_sym___autoreleasing] = ACTIONS(5254), + [anon_sym___block] = ACTIONS(5254), + [anon_sym___bridge] = ACTIONS(5254), + [anon_sym___bridge_retained] = ACTIONS(5254), + [anon_sym___bridge_transfer] = ACTIONS(5254), + [anon_sym___complex] = ACTIONS(5254), + [anon_sym___const] = ACTIONS(5254), + [anon_sym___imag] = ACTIONS(5254), + [anon_sym___kindof] = ACTIONS(5254), + [anon_sym___nonnull] = ACTIONS(5254), + [anon_sym___nullable] = ACTIONS(5254), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5254), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5254), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5254), + [anon_sym___real] = ACTIONS(5254), + [anon_sym___strong] = ACTIONS(5254), + [anon_sym___unsafe_unretained] = ACTIONS(5254), + [anon_sym___unused] = ACTIONS(5254), + [anon_sym___weak] = ACTIONS(5254), + [anon_sym_alignas] = ACTIONS(5254), + [anon_sym__Alignas] = ACTIONS(5254), + [sym_primitive_type] = ACTIONS(5254), + [anon_sym_enum] = ACTIONS(5254), + [anon_sym_COLON] = ACTIONS(5256), + [anon_sym_struct] = ACTIONS(5254), + [anon_sym_union] = ACTIONS(5254), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5254), + [anon_sym___typeof] = ACTIONS(5254), + [anon_sym_typeof] = ACTIONS(5254), + [aux_sym_preproc_undef_token1] = ACTIONS(5254), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5254), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5254), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5254), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5254), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5254), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5254), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5254), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5254), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5254), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5254), + [anon_sym_NS_AVAILABLE] = ACTIONS(5254), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5254), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5254), + [anon_sym_API_AVAILABLE] = ACTIONS(5254), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5254), + [anon_sym_API_DEPRECATED] = ACTIONS(5254), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5254), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5254), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5254), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5254), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5254), + [anon_sym___deprecated_msg] = ACTIONS(5254), + [anon_sym___deprecated_enum_msg] = ACTIONS(5254), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5254), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5254), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5254), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5254), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5254), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5254), + [anon_sym_ATend] = ACTIONS(5258), + [anon_sym_ATsynthesize] = ACTIONS(5258), + [anon_sym_ATdynamic] = ACTIONS(5258), + [anon_sym_BOOL] = ACTIONS(5254), + [anon_sym_IMP] = ACTIONS(5254), + [anon_sym_SEL] = ACTIONS(5254), + [anon_sym_Class] = ACTIONS(5254), + [anon_sym_id] = ACTIONS(5254), + }, + [2080] = { + [sym_identifier] = ACTIONS(5260), + [aux_sym_preproc_def_token1] = ACTIONS(5260), + [aux_sym_preproc_if_token1] = ACTIONS(5260), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5260), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5260), + [sym_preproc_directive] = ACTIONS(5260), + [anon_sym_LPAREN2] = ACTIONS(5262), + [anon_sym_DASH] = ACTIONS(5262), + [anon_sym_PLUS] = ACTIONS(5262), + [anon_sym_LT] = ACTIONS(5262), + [anon_sym___extension__] = ACTIONS(5260), + [anon_sym_typedef] = ACTIONS(5260), + [anon_sym_extern] = ACTIONS(5260), + [anon_sym___attribute__] = ACTIONS(5260), + [anon_sym___attribute] = ACTIONS(5260), + [anon_sym_noreturn] = ACTIONS(5260), + [anon_sym_LBRACK] = ACTIONS(5262), + [anon_sym___declspec] = ACTIONS(5260), + [anon_sym___cdecl] = ACTIONS(5260), + [anon_sym___clrcall] = ACTIONS(5260), + [anon_sym___stdcall] = ACTIONS(5260), + [anon_sym___fastcall] = ACTIONS(5260), + [anon_sym___thiscall] = ACTIONS(5260), + [anon_sym___vectorcall] = ACTIONS(5260), + [anon_sym_LBRACE] = ACTIONS(5262), + [anon_sym_signed] = ACTIONS(5260), + [anon_sym_unsigned] = ACTIONS(5260), + [anon_sym_long] = ACTIONS(5260), + [anon_sym_short] = ACTIONS(5260), + [anon_sym_static] = ACTIONS(5260), + [anon_sym_auto] = ACTIONS(5260), + [anon_sym_register] = ACTIONS(5260), + [anon_sym_inline] = ACTIONS(5260), + [anon_sym___inline] = ACTIONS(5260), + [anon_sym___inline__] = ACTIONS(5260), + [anon_sym___forceinline] = ACTIONS(5260), + [anon_sym_thread_local] = ACTIONS(5260), + [anon_sym___thread] = ACTIONS(5260), + [anon_sym_CG_EXTERN] = ACTIONS(5260), + [anon_sym_CG_INLINE] = ACTIONS(5260), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5260), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5260), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5260), + [anon_sym_IBOutlet] = ACTIONS(5260), + [anon_sym_IBInspectable] = ACTIONS(5260), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5260), + [anon_sym_NS_INLINE] = ACTIONS(5260), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5260), + [anon_sym_OBJC_EXPORT] = ACTIONS(5260), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5260), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5260), + [anon_sym_const] = ACTIONS(5260), + [anon_sym_constexpr] = ACTIONS(5260), + [anon_sym_volatile] = ACTIONS(5260), + [anon_sym_restrict] = ACTIONS(5260), + [anon_sym___restrict__] = ACTIONS(5260), + [anon_sym__Atomic] = ACTIONS(5260), + [anon_sym__Noreturn] = ACTIONS(5260), + [anon_sym__Nonnull] = ACTIONS(5260), + [anon_sym_nullable] = ACTIONS(5260), + [anon_sym__Complex] = ACTIONS(5260), + [anon_sym__Nullable] = ACTIONS(5260), + [anon_sym__Nullable_result] = ACTIONS(5260), + [anon_sym__Null_unspecified] = ACTIONS(5260), + [anon_sym___autoreleasing] = ACTIONS(5260), + [anon_sym___block] = ACTIONS(5260), + [anon_sym___bridge] = ACTIONS(5260), + [anon_sym___bridge_retained] = ACTIONS(5260), + [anon_sym___bridge_transfer] = ACTIONS(5260), + [anon_sym___complex] = ACTIONS(5260), + [anon_sym___const] = ACTIONS(5260), + [anon_sym___imag] = ACTIONS(5260), + [anon_sym___kindof] = ACTIONS(5260), + [anon_sym___nonnull] = ACTIONS(5260), + [anon_sym___nullable] = ACTIONS(5260), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5260), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5260), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5260), + [anon_sym___real] = ACTIONS(5260), + [anon_sym___strong] = ACTIONS(5260), + [anon_sym___unsafe_unretained] = ACTIONS(5260), + [anon_sym___unused] = ACTIONS(5260), + [anon_sym___weak] = ACTIONS(5260), + [anon_sym_alignas] = ACTIONS(5260), + [anon_sym__Alignas] = ACTIONS(5260), + [sym_primitive_type] = ACTIONS(5260), + [anon_sym_enum] = ACTIONS(5260), + [anon_sym_COLON] = ACTIONS(5262), + [anon_sym_struct] = ACTIONS(5260), + [anon_sym_union] = ACTIONS(5260), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5260), + [anon_sym___typeof] = ACTIONS(5260), + [anon_sym_typeof] = ACTIONS(5260), + [aux_sym_preproc_undef_token1] = ACTIONS(5260), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5260), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5260), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5260), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5260), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5260), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5260), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5260), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5260), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5260), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5260), + [anon_sym_NS_AVAILABLE] = ACTIONS(5260), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5260), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5260), + [anon_sym_API_AVAILABLE] = ACTIONS(5260), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5260), + [anon_sym_API_DEPRECATED] = ACTIONS(5260), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5260), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5260), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5260), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5260), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5260), + [anon_sym___deprecated_msg] = ACTIONS(5260), + [anon_sym___deprecated_enum_msg] = ACTIONS(5260), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5260), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5260), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5260), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5260), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5260), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5260), + [anon_sym_ATend] = ACTIONS(5262), + [anon_sym_ATsynthesize] = ACTIONS(5262), + [anon_sym_ATdynamic] = ACTIONS(5262), + [anon_sym_BOOL] = ACTIONS(5260), + [anon_sym_IMP] = ACTIONS(5260), + [anon_sym_SEL] = ACTIONS(5260), + [anon_sym_Class] = ACTIONS(5260), + [anon_sym_id] = ACTIONS(5260), + }, + [2081] = { + [sym_identifier] = ACTIONS(5264), + [aux_sym_preproc_def_token1] = ACTIONS(5264), + [aux_sym_preproc_if_token1] = ACTIONS(5264), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5264), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5264), + [sym_preproc_directive] = ACTIONS(5264), + [anon_sym_LPAREN2] = ACTIONS(5266), + [anon_sym_DASH] = ACTIONS(5266), + [anon_sym_PLUS] = ACTIONS(5266), + [anon_sym_LT] = ACTIONS(5266), + [anon_sym_SEMI] = ACTIONS(5268), + [anon_sym___extension__] = ACTIONS(5264), + [anon_sym_typedef] = ACTIONS(5264), + [anon_sym_extern] = ACTIONS(5264), + [anon_sym___attribute__] = ACTIONS(5264), + [anon_sym___attribute] = ACTIONS(5264), + [anon_sym_noreturn] = ACTIONS(5264), + [anon_sym_LBRACK] = ACTIONS(5266), + [anon_sym___declspec] = ACTIONS(5264), + [anon_sym___cdecl] = ACTIONS(5264), + [anon_sym___clrcall] = ACTIONS(5264), + [anon_sym___stdcall] = ACTIONS(5264), + [anon_sym___fastcall] = ACTIONS(5264), + [anon_sym___thiscall] = ACTIONS(5264), + [anon_sym___vectorcall] = ACTIONS(5264), + [anon_sym_LBRACE] = ACTIONS(5266), + [anon_sym_signed] = ACTIONS(5264), + [anon_sym_unsigned] = ACTIONS(5264), + [anon_sym_long] = ACTIONS(5264), + [anon_sym_short] = ACTIONS(5264), + [anon_sym_static] = ACTIONS(5264), + [anon_sym_auto] = ACTIONS(5264), + [anon_sym_register] = ACTIONS(5264), + [anon_sym_inline] = ACTIONS(5264), + [anon_sym___inline] = ACTIONS(5264), + [anon_sym___inline__] = ACTIONS(5264), + [anon_sym___forceinline] = ACTIONS(5264), + [anon_sym_thread_local] = ACTIONS(5264), + [anon_sym___thread] = ACTIONS(5264), + [anon_sym_CG_EXTERN] = ACTIONS(5264), + [anon_sym_CG_INLINE] = ACTIONS(5264), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5264), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5264), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5264), + [anon_sym_IBOutlet] = ACTIONS(5264), + [anon_sym_IBInspectable] = ACTIONS(5264), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5264), + [anon_sym_NS_INLINE] = ACTIONS(5264), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5264), + [anon_sym_OBJC_EXPORT] = ACTIONS(5264), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5264), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5264), + [anon_sym_const] = ACTIONS(5264), + [anon_sym_constexpr] = ACTIONS(5264), + [anon_sym_volatile] = ACTIONS(5264), + [anon_sym_restrict] = ACTIONS(5264), + [anon_sym___restrict__] = ACTIONS(5264), + [anon_sym__Atomic] = ACTIONS(5264), + [anon_sym__Noreturn] = ACTIONS(5264), + [anon_sym__Nonnull] = ACTIONS(5264), + [anon_sym_nullable] = ACTIONS(5264), + [anon_sym__Complex] = ACTIONS(5264), + [anon_sym__Nullable] = ACTIONS(5264), + [anon_sym__Nullable_result] = ACTIONS(5264), + [anon_sym__Null_unspecified] = ACTIONS(5264), + [anon_sym___autoreleasing] = ACTIONS(5264), + [anon_sym___block] = ACTIONS(5264), + [anon_sym___bridge] = ACTIONS(5264), + [anon_sym___bridge_retained] = ACTIONS(5264), + [anon_sym___bridge_transfer] = ACTIONS(5264), + [anon_sym___complex] = ACTIONS(5264), + [anon_sym___const] = ACTIONS(5264), + [anon_sym___imag] = ACTIONS(5264), + [anon_sym___kindof] = ACTIONS(5264), + [anon_sym___nonnull] = ACTIONS(5264), + [anon_sym___nullable] = ACTIONS(5264), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5264), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5264), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5264), + [anon_sym___real] = ACTIONS(5264), + [anon_sym___strong] = ACTIONS(5264), + [anon_sym___unsafe_unretained] = ACTIONS(5264), + [anon_sym___unused] = ACTIONS(5264), + [anon_sym___weak] = ACTIONS(5264), + [anon_sym_alignas] = ACTIONS(5264), + [anon_sym__Alignas] = ACTIONS(5264), + [sym_primitive_type] = ACTIONS(5264), + [anon_sym_enum] = ACTIONS(5264), + [anon_sym_COLON] = ACTIONS(5266), + [anon_sym_struct] = ACTIONS(5264), + [anon_sym_union] = ACTIONS(5264), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5264), + [anon_sym___typeof] = ACTIONS(5264), + [anon_sym_typeof] = ACTIONS(5264), + [aux_sym_preproc_undef_token1] = ACTIONS(5264), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5264), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5264), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5264), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5264), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5264), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5264), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5264), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5264), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5264), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5264), + [anon_sym_NS_AVAILABLE] = ACTIONS(5264), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5264), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5264), + [anon_sym_API_AVAILABLE] = ACTIONS(5264), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5264), + [anon_sym_API_DEPRECATED] = ACTIONS(5264), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5264), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5264), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5264), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5264), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5264), + [anon_sym___deprecated_msg] = ACTIONS(5264), + [anon_sym___deprecated_enum_msg] = ACTIONS(5264), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5264), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5264), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5264), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5264), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5264), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5264), + [anon_sym_ATend] = ACTIONS(5266), + [anon_sym_ATproperty] = ACTIONS(5266), + [anon_sym_BOOL] = ACTIONS(5264), + [anon_sym_IMP] = ACTIONS(5264), + [anon_sym_SEL] = ACTIONS(5264), + [anon_sym_Class] = ACTIONS(5264), + [anon_sym_id] = ACTIONS(5264), + }, + [2082] = { + [sym_identifier] = ACTIONS(2660), + [anon_sym_COMMA] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2662), + [anon_sym_LPAREN2] = ACTIONS(2662), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_CARET] = ACTIONS(2662), + [anon_sym_GT] = ACTIONS(2662), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym___extension__] = ACTIONS(2660), + [anon_sym_extern] = ACTIONS(2660), + [anon_sym___attribute__] = ACTIONS(2660), + [anon_sym___attribute] = ACTIONS(2660), + [anon_sym_noreturn] = ACTIONS(2660), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym___declspec] = ACTIONS(2660), + [anon_sym___based] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_RBRACE] = ACTIONS(2662), + [anon_sym_signed] = ACTIONS(2660), + [anon_sym_unsigned] = ACTIONS(2660), + [anon_sym_long] = ACTIONS(2660), + [anon_sym_short] = ACTIONS(2660), + [anon_sym_static] = ACTIONS(2660), + [anon_sym_EQ] = ACTIONS(2662), + [anon_sym_ATautoreleasepool] = ACTIONS(2662), + [anon_sym_auto] = ACTIONS(2660), + [anon_sym_register] = ACTIONS(2660), + [anon_sym_inline] = ACTIONS(2660), + [anon_sym___inline] = ACTIONS(2660), + [anon_sym___inline__] = ACTIONS(2660), + [anon_sym___forceinline] = ACTIONS(2660), + [anon_sym_thread_local] = ACTIONS(2660), + [anon_sym___thread] = ACTIONS(2660), + [anon_sym_CG_EXTERN] = ACTIONS(2660), + [anon_sym_CG_INLINE] = ACTIONS(2660), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2660), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2660), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2660), + [anon_sym_IBOutlet] = ACTIONS(2660), + [anon_sym_IBInspectable] = ACTIONS(2660), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2660), + [anon_sym_NS_INLINE] = ACTIONS(2660), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2660), + [anon_sym_OBJC_EXPORT] = ACTIONS(2660), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2660), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2660), + [anon_sym_const] = ACTIONS(2660), + [anon_sym_constexpr] = ACTIONS(2660), + [anon_sym_volatile] = ACTIONS(2660), + [anon_sym_restrict] = ACTIONS(2660), + [anon_sym___restrict__] = ACTIONS(2660), + [anon_sym__Atomic] = ACTIONS(2660), + [anon_sym__Noreturn] = ACTIONS(2660), + [anon_sym__Nonnull] = ACTIONS(2660), + [anon_sym_nullable] = ACTIONS(2660), + [anon_sym__Complex] = ACTIONS(2660), + [anon_sym__Nullable] = ACTIONS(2660), + [anon_sym__Nullable_result] = ACTIONS(2660), + [anon_sym__Null_unspecified] = ACTIONS(2660), + [anon_sym___autoreleasing] = ACTIONS(2660), + [anon_sym___block] = ACTIONS(2660), + [anon_sym___bridge] = ACTIONS(2660), + [anon_sym___bridge_retained] = ACTIONS(2660), + [anon_sym___bridge_transfer] = ACTIONS(2660), + [anon_sym___complex] = ACTIONS(2660), + [anon_sym___const] = ACTIONS(2660), + [anon_sym___imag] = ACTIONS(2660), + [anon_sym___kindof] = ACTIONS(2660), + [anon_sym___nonnull] = ACTIONS(2660), + [anon_sym___nullable] = ACTIONS(2660), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2660), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2660), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2660), + [anon_sym___real] = ACTIONS(2660), + [anon_sym___strong] = ACTIONS(2660), + [anon_sym___unsafe_unretained] = ACTIONS(2660), + [anon_sym___unused] = ACTIONS(2660), + [anon_sym___weak] = ACTIONS(2660), + [anon_sym_alignas] = ACTIONS(2660), + [anon_sym__Alignas] = ACTIONS(2660), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_enum] = ACTIONS(2660), + [anon_sym_COLON] = ACTIONS(2662), + [anon_sym_struct] = ACTIONS(2660), + [anon_sym_union] = ACTIONS(2660), + [anon_sym_asm] = ACTIONS(2660), + [anon_sym___asm__] = ACTIONS(2660), + [anon_sym___asm] = ACTIONS(2660), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2660), + [anon_sym___typeof] = ACTIONS(2660), + [anon_sym_typeof] = ACTIONS(2660), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2660), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2660), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2660), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2660), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2660), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2660), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2660), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2660), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2660), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2660), + [anon_sym_NS_AVAILABLE] = ACTIONS(2660), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2660), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2660), + [anon_sym_API_AVAILABLE] = ACTIONS(2660), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2660), + [anon_sym_API_DEPRECATED] = ACTIONS(2660), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2660), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2660), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2660), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2660), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2660), + [anon_sym___deprecated_msg] = ACTIONS(2660), + [anon_sym___deprecated_enum_msg] = ACTIONS(2660), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2660), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2660), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2660), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2660), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2660), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2660), + [anon_sym_ATprotocol] = ACTIONS(2662), + [anon_sym_ATinterface] = ACTIONS(2662), + [anon_sym_ATimplementation] = ACTIONS(2662), + [anon_sym_ATproperty] = ACTIONS(2662), + [anon_sym_BOOL] = ACTIONS(2660), + [anon_sym_IMP] = ACTIONS(2660), + [anon_sym_SEL] = ACTIONS(2660), + [anon_sym_Class] = ACTIONS(2660), + [anon_sym_id] = ACTIONS(2660), + }, + [2083] = { + [sym_identifier] = ACTIONS(2836), + [anon_sym_COMMA] = ACTIONS(2838), + [anon_sym_RPAREN] = ACTIONS(2838), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2838), + [anon_sym_LPAREN2] = ACTIONS(2838), + [anon_sym_STAR] = ACTIONS(2838), + [anon_sym_CARET] = ACTIONS(2838), + [anon_sym_GT] = ACTIONS(2838), + [anon_sym_SEMI] = ACTIONS(2838), + [anon_sym___extension__] = ACTIONS(2836), + [anon_sym_extern] = ACTIONS(2836), + [anon_sym___attribute__] = ACTIONS(2836), + [anon_sym___attribute] = ACTIONS(2836), + [anon_sym_noreturn] = ACTIONS(2836), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym___declspec] = ACTIONS(2836), + [anon_sym___based] = ACTIONS(2836), + [anon_sym_LBRACE] = ACTIONS(2838), + [anon_sym_RBRACE] = ACTIONS(2838), + [anon_sym_signed] = ACTIONS(2836), + [anon_sym_unsigned] = ACTIONS(2836), + [anon_sym_long] = ACTIONS(2836), + [anon_sym_short] = ACTIONS(2836), + [anon_sym_static] = ACTIONS(2836), + [anon_sym_EQ] = ACTIONS(2838), + [anon_sym_ATautoreleasepool] = ACTIONS(2838), + [anon_sym_auto] = ACTIONS(2836), + [anon_sym_register] = ACTIONS(2836), + [anon_sym_inline] = ACTIONS(2836), + [anon_sym___inline] = ACTIONS(2836), + [anon_sym___inline__] = ACTIONS(2836), + [anon_sym___forceinline] = ACTIONS(2836), + [anon_sym_thread_local] = ACTIONS(2836), + [anon_sym___thread] = ACTIONS(2836), + [anon_sym_CG_EXTERN] = ACTIONS(2836), + [anon_sym_CG_INLINE] = ACTIONS(2836), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2836), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2836), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2836), + [anon_sym_IBOutlet] = ACTIONS(2836), + [anon_sym_IBInspectable] = ACTIONS(2836), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2836), + [anon_sym_NS_INLINE] = ACTIONS(2836), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2836), + [anon_sym_OBJC_EXPORT] = ACTIONS(2836), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2836), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2836), + [anon_sym_const] = ACTIONS(2836), + [anon_sym_constexpr] = ACTIONS(2836), + [anon_sym_volatile] = ACTIONS(2836), + [anon_sym_restrict] = ACTIONS(2836), + [anon_sym___restrict__] = ACTIONS(2836), + [anon_sym__Atomic] = ACTIONS(2836), + [anon_sym__Noreturn] = ACTIONS(2836), + [anon_sym__Nonnull] = ACTIONS(2836), + [anon_sym_nullable] = ACTIONS(2836), + [anon_sym__Complex] = ACTIONS(2836), + [anon_sym__Nullable] = ACTIONS(2836), + [anon_sym__Nullable_result] = ACTIONS(2836), + [anon_sym__Null_unspecified] = ACTIONS(2836), + [anon_sym___autoreleasing] = ACTIONS(2836), + [anon_sym___block] = ACTIONS(2836), + [anon_sym___bridge] = ACTIONS(2836), + [anon_sym___bridge_retained] = ACTIONS(2836), + [anon_sym___bridge_transfer] = ACTIONS(2836), + [anon_sym___complex] = ACTIONS(2836), + [anon_sym___const] = ACTIONS(2836), + [anon_sym___imag] = ACTIONS(2836), + [anon_sym___kindof] = ACTIONS(2836), + [anon_sym___nonnull] = ACTIONS(2836), + [anon_sym___nullable] = ACTIONS(2836), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2836), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2836), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2836), + [anon_sym___real] = ACTIONS(2836), + [anon_sym___strong] = ACTIONS(2836), + [anon_sym___unsafe_unretained] = ACTIONS(2836), + [anon_sym___unused] = ACTIONS(2836), + [anon_sym___weak] = ACTIONS(2836), + [anon_sym_alignas] = ACTIONS(2836), + [anon_sym__Alignas] = ACTIONS(2836), + [sym_primitive_type] = ACTIONS(2836), + [anon_sym_enum] = ACTIONS(2836), + [anon_sym_COLON] = ACTIONS(2838), + [anon_sym_struct] = ACTIONS(2836), + [anon_sym_union] = ACTIONS(2836), + [anon_sym_asm] = ACTIONS(2836), + [anon_sym___asm__] = ACTIONS(2836), + [anon_sym___asm] = ACTIONS(2836), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2836), + [anon_sym___typeof] = ACTIONS(2836), + [anon_sym_typeof] = ACTIONS(2836), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2836), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2836), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2836), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2836), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2836), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2836), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2836), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2836), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2836), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2836), + [anon_sym_NS_AVAILABLE] = ACTIONS(2836), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2836), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2836), + [anon_sym_API_AVAILABLE] = ACTIONS(2836), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2836), + [anon_sym_API_DEPRECATED] = ACTIONS(2836), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2836), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2836), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2836), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2836), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2836), + [anon_sym___deprecated_msg] = ACTIONS(2836), + [anon_sym___deprecated_enum_msg] = ACTIONS(2836), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2836), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2836), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2836), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2836), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2836), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2836), + [anon_sym_ATprotocol] = ACTIONS(2838), + [anon_sym_ATinterface] = ACTIONS(2838), + [anon_sym_ATimplementation] = ACTIONS(2838), + [anon_sym_ATproperty] = ACTIONS(2838), + [anon_sym_BOOL] = ACTIONS(2836), + [anon_sym_IMP] = ACTIONS(2836), + [anon_sym_SEL] = ACTIONS(2836), + [anon_sym_Class] = ACTIONS(2836), + [anon_sym_id] = ACTIONS(2836), + }, + [2084] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5270), + [anon_sym_COMMA] = ACTIONS(4442), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5226), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_PERCENT] = ACTIONS(5228), + [anon_sym_PIPE_PIPE] = ACTIONS(5273), + [anon_sym_AMP_AMP] = ACTIONS(5275), + [anon_sym_PIPE] = ACTIONS(5277), + [anon_sym_CARET] = ACTIONS(5279), + [anon_sym_AMP] = ACTIONS(5230), + [anon_sym_EQ_EQ] = ACTIONS(5232), + [anon_sym_BANG_EQ] = ACTIONS(5232), + [anon_sym_GT] = ACTIONS(5234), + [anon_sym_GT_EQ] = ACTIONS(5236), + [anon_sym_LT_EQ] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5234), + [anon_sym_LT_LT] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5238), + [anon_sym_SEMI] = ACTIONS(4442), + [anon_sym___extension__] = ACTIONS(4442), + [anon_sym_extern] = ACTIONS(4442), + [anon_sym___attribute__] = ACTIONS(4442), + [anon_sym___attribute] = ACTIONS(4437), + [anon_sym_noreturn] = ACTIONS(4442), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4442), + [anon_sym_static] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(4437), + [anon_sym_auto] = ACTIONS(4442), + [anon_sym_register] = ACTIONS(4442), + [anon_sym_inline] = ACTIONS(4442), + [anon_sym___inline] = ACTIONS(4437), + [anon_sym___inline__] = ACTIONS(4442), + [anon_sym___forceinline] = ACTIONS(4442), + [anon_sym_thread_local] = ACTIONS(4442), + [anon_sym___thread] = ACTIONS(4442), + [anon_sym_CG_EXTERN] = ACTIONS(4442), + [anon_sym_CG_INLINE] = ACTIONS(4442), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4442), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4442), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4442), + [anon_sym_IBOutlet] = ACTIONS(4442), + [anon_sym_IBInspectable] = ACTIONS(4442), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4442), + [anon_sym_NS_INLINE] = ACTIONS(4442), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4442), + [anon_sym_OBJC_EXPORT] = ACTIONS(4442), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4442), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4442), + [anon_sym_const] = ACTIONS(4437), + [anon_sym_constexpr] = ACTIONS(4442), + [anon_sym_volatile] = ACTIONS(4442), + [anon_sym_restrict] = ACTIONS(4442), + [anon_sym___restrict__] = ACTIONS(4442), + [anon_sym__Atomic] = ACTIONS(4442), + [anon_sym__Noreturn] = ACTIONS(4442), + [anon_sym__Nonnull] = ACTIONS(4442), + [anon_sym_nullable] = ACTIONS(4442), + [anon_sym__Complex] = ACTIONS(4442), + [anon_sym__Nullable] = ACTIONS(4437), + [anon_sym__Nullable_result] = ACTIONS(4442), + [anon_sym__Null_unspecified] = ACTIONS(4442), + [anon_sym___autoreleasing] = ACTIONS(4442), + [anon_sym___block] = ACTIONS(4442), + [anon_sym___bridge] = ACTIONS(4437), + [anon_sym___bridge_retained] = ACTIONS(4442), + [anon_sym___bridge_transfer] = ACTIONS(4442), + [anon_sym___complex] = ACTIONS(4442), + [anon_sym___const] = ACTIONS(4442), + [anon_sym___imag] = ACTIONS(4442), + [anon_sym___kindof] = ACTIONS(4442), + [anon_sym___nonnull] = ACTIONS(4442), + [anon_sym___nullable] = ACTIONS(4442), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4442), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4442), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4442), + [anon_sym___real] = ACTIONS(4442), + [anon_sym___strong] = ACTIONS(4442), + [anon_sym___unsafe_unretained] = ACTIONS(4442), + [anon_sym___unused] = ACTIONS(4442), + [anon_sym___weak] = ACTIONS(4442), + [anon_sym_alignas] = ACTIONS(4442), + [anon_sym__Alignas] = ACTIONS(4442), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_STAR_EQ] = ACTIONS(4442), + [anon_sym_SLASH_EQ] = ACTIONS(4442), + [anon_sym_PERCENT_EQ] = ACTIONS(4442), + [anon_sym_PLUS_EQ] = ACTIONS(4442), + [anon_sym_DASH_EQ] = ACTIONS(4442), + [anon_sym_LT_LT_EQ] = ACTIONS(4442), + [anon_sym_GT_GT_EQ] = ACTIONS(4442), + [anon_sym_AMP_EQ] = ACTIONS(4442), + [anon_sym_CARET_EQ] = ACTIONS(4442), + [anon_sym_PIPE_EQ] = ACTIONS(4442), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4442), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4442), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4442), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4442), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4442), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4442), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4442), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4442), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4442), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4442), + [anon_sym_NS_AVAILABLE] = ACTIONS(4437), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4442), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4442), + [anon_sym_API_AVAILABLE] = ACTIONS(4442), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4442), + [anon_sym_API_DEPRECATED] = ACTIONS(4442), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4442), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4442), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4442), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4442), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4442), + [anon_sym___deprecated_msg] = ACTIONS(4442), + [anon_sym___deprecated_enum_msg] = ACTIONS(4442), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4442), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4442), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4442), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4442), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4442), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4442), + }, + [2085] = { + [sym__declaration_modifiers] = STATE(2511), + [sym_attribute_specifier] = STATE(2511), + [sym_attribute_declaration] = STATE(2511), + [sym_ms_declspec_modifier] = STATE(2511), + [sym_ms_based_modifier] = STATE(6323), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2565), + [sym__declarator] = STATE(3914), + [sym__abstract_declarator] = STATE(5020), + [sym_parenthesized_declarator] = STATE(4011), + [sym_abstract_parenthesized_declarator] = STATE(4894), + [sym_pointer_declarator] = STATE(4011), + [sym_abstract_pointer_declarator] = STATE(4894), + [sym_function_declarator] = STATE(4011), + [sym_abstract_function_declarator] = STATE(4894), + [sym_array_declarator] = STATE(4011), + [sym_abstract_array_declarator] = STATE(4894), + [sym_storage_class_specifier] = STATE(2511), + [sym_type_qualifier] = STATE(2511), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(4295), + [sym_availability_attribute_specifier] = STATE(2511), + [sym_block_pointer_declarator] = STATE(4011), + [sym_abstract_block_pointer_declarator] = STATE(4894), + [aux_sym__declaration_specifiers_repeat1] = STATE(2511), + [aux_sym_pointer_declarator_repeat1] = STATE(2565), + [sym_identifier] = ACTIONS(5281), + [anon_sym_COMMA] = ACTIONS(5283), + [anon_sym_RPAREN] = ACTIONS(5283), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(5285), + [anon_sym_CARET] = ACTIONS(5287), + [anon_sym_GT] = ACTIONS(5283), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2086] = { + [sym_identifier] = ACTIONS(5028), + [aux_sym_preproc_def_token1] = ACTIONS(5028), + [aux_sym_preproc_if_token1] = ACTIONS(5028), + [aux_sym_preproc_if_token2] = ACTIONS(5028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5028), + [sym_preproc_directive] = ACTIONS(5028), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5032), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym___extension__] = ACTIONS(5028), + [anon_sym_typedef] = ACTIONS(5028), + [anon_sym_extern] = ACTIONS(5028), + [anon_sym___attribute__] = ACTIONS(5028), + [anon_sym___attribute] = ACTIONS(5028), + [anon_sym_noreturn] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5032), + [anon_sym___declspec] = ACTIONS(5028), + [anon_sym___based] = ACTIONS(5034), + [anon_sym___cdecl] = ACTIONS(5028), + [anon_sym___clrcall] = ACTIONS(5028), + [anon_sym___stdcall] = ACTIONS(5028), + [anon_sym___fastcall] = ACTIONS(5028), + [anon_sym___thiscall] = ACTIONS(5028), + [anon_sym___vectorcall] = ACTIONS(5028), + [anon_sym_signed] = ACTIONS(5028), + [anon_sym_unsigned] = ACTIONS(5028), + [anon_sym_long] = ACTIONS(5028), + [anon_sym_short] = ACTIONS(5028), + [anon_sym_static] = ACTIONS(5028), + [anon_sym_auto] = ACTIONS(5028), + [anon_sym_register] = ACTIONS(5028), + [anon_sym_inline] = ACTIONS(5028), + [anon_sym___inline] = ACTIONS(5028), + [anon_sym___inline__] = ACTIONS(5028), + [anon_sym___forceinline] = ACTIONS(5028), + [anon_sym_thread_local] = ACTIONS(5028), + [anon_sym___thread] = ACTIONS(5028), + [anon_sym_CG_EXTERN] = ACTIONS(5028), + [anon_sym_CG_INLINE] = ACTIONS(5028), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5028), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5028), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5028), + [anon_sym_IBOutlet] = ACTIONS(5028), + [anon_sym_IBInspectable] = ACTIONS(5028), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5028), + [anon_sym_NS_INLINE] = ACTIONS(5028), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5028), + [anon_sym_OBJC_EXPORT] = ACTIONS(5028), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5028), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5028), + [anon_sym_const] = ACTIONS(5028), + [anon_sym_constexpr] = ACTIONS(5028), + [anon_sym_volatile] = ACTIONS(5028), + [anon_sym_restrict] = ACTIONS(5028), + [anon_sym___restrict__] = ACTIONS(5028), + [anon_sym__Atomic] = ACTIONS(5028), + [anon_sym__Noreturn] = ACTIONS(5028), + [anon_sym__Nonnull] = ACTIONS(5028), + [anon_sym_nullable] = ACTIONS(5028), + [anon_sym__Complex] = ACTIONS(5028), + [anon_sym__Nullable] = ACTIONS(5028), + [anon_sym__Nullable_result] = ACTIONS(5028), + [anon_sym__Null_unspecified] = ACTIONS(5028), + [anon_sym___autoreleasing] = ACTIONS(5028), + [anon_sym___block] = ACTIONS(5028), + [anon_sym___bridge] = ACTIONS(5028), + [anon_sym___bridge_retained] = ACTIONS(5028), + [anon_sym___bridge_transfer] = ACTIONS(5028), + [anon_sym___complex] = ACTIONS(5028), + [anon_sym___const] = ACTIONS(5028), + [anon_sym___imag] = ACTIONS(5028), + [anon_sym___kindof] = ACTIONS(5028), + [anon_sym___nonnull] = ACTIONS(5028), + [anon_sym___nullable] = ACTIONS(5028), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5028), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5028), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5028), + [anon_sym___real] = ACTIONS(5028), + [anon_sym___strong] = ACTIONS(5028), + [anon_sym___unsafe_unretained] = ACTIONS(5028), + [anon_sym___unused] = ACTIONS(5028), + [anon_sym___weak] = ACTIONS(5028), + [anon_sym_alignas] = ACTIONS(5028), + [anon_sym__Alignas] = ACTIONS(5028), + [sym_primitive_type] = ACTIONS(5028), + [anon_sym_enum] = ACTIONS(5028), + [anon_sym_struct] = ACTIONS(5028), + [anon_sym_union] = ACTIONS(5028), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5028), + [anon_sym___typeof] = ACTIONS(5028), + [anon_sym_typeof] = ACTIONS(5028), + [aux_sym_preproc_undef_token1] = ACTIONS(5028), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5028), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5028), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5028), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5028), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5028), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5028), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5028), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5028), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5028), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5028), + [anon_sym_NS_AVAILABLE] = ACTIONS(5028), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5028), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5028), + [anon_sym_API_AVAILABLE] = ACTIONS(5028), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5028), + [anon_sym_API_DEPRECATED] = ACTIONS(5028), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5028), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5028), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5028), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5028), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5028), + [anon_sym___deprecated_msg] = ACTIONS(5028), + [anon_sym___deprecated_enum_msg] = ACTIONS(5028), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5028), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5028), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5028), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5028), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5028), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5028), + [anon_sym_ATsynthesize] = ACTIONS(5032), + [anon_sym_ATdynamic] = ACTIONS(5032), + [anon_sym_BOOL] = ACTIONS(5028), + [anon_sym_IMP] = ACTIONS(5028), + [anon_sym_SEL] = ACTIONS(5028), + [anon_sym_Class] = ACTIONS(5028), + [anon_sym_id] = ACTIONS(5028), + }, + [2087] = { + [sym_identifier] = ACTIONS(5216), + [aux_sym_preproc_def_token1] = ACTIONS(5216), + [aux_sym_preproc_if_token1] = ACTIONS(5216), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5216), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5216), + [sym_preproc_directive] = ACTIONS(5216), + [anon_sym_LPAREN2] = ACTIONS(5218), + [anon_sym_DASH] = ACTIONS(5218), + [anon_sym_PLUS] = ACTIONS(5218), + [anon_sym_LT] = ACTIONS(5218), + [anon_sym___extension__] = ACTIONS(5216), + [anon_sym_typedef] = ACTIONS(5216), + [anon_sym_extern] = ACTIONS(5216), + [anon_sym___attribute__] = ACTIONS(5216), + [anon_sym___attribute] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym_LBRACK] = ACTIONS(5218), + [anon_sym___declspec] = ACTIONS(5216), + [anon_sym___cdecl] = ACTIONS(5216), + [anon_sym___clrcall] = ACTIONS(5216), + [anon_sym___stdcall] = ACTIONS(5216), + [anon_sym___fastcall] = ACTIONS(5216), + [anon_sym___thiscall] = ACTIONS(5216), + [anon_sym___vectorcall] = ACTIONS(5216), + [anon_sym_LBRACE] = ACTIONS(5218), + [anon_sym_signed] = ACTIONS(5216), + [anon_sym_unsigned] = ACTIONS(5216), + [anon_sym_long] = ACTIONS(5216), + [anon_sym_short] = ACTIONS(5216), + [anon_sym_static] = ACTIONS(5216), + [anon_sym_auto] = ACTIONS(5216), + [anon_sym_register] = ACTIONS(5216), + [anon_sym_inline] = ACTIONS(5216), + [anon_sym___inline] = ACTIONS(5216), + [anon_sym___inline__] = ACTIONS(5216), + [anon_sym___forceinline] = ACTIONS(5216), + [anon_sym_thread_local] = ACTIONS(5216), + [anon_sym___thread] = ACTIONS(5216), + [anon_sym_CG_EXTERN] = ACTIONS(5216), + [anon_sym_CG_INLINE] = ACTIONS(5216), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5216), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5216), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5216), + [anon_sym_IBOutlet] = ACTIONS(5216), + [anon_sym_IBInspectable] = ACTIONS(5216), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5216), + [anon_sym_NS_INLINE] = ACTIONS(5216), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5216), + [anon_sym_OBJC_EXPORT] = ACTIONS(5216), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5216), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5216), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_nullable] = ACTIONS(5216), + [anon_sym__Complex] = ACTIONS(5216), + [anon_sym__Nullable] = ACTIONS(5216), + [anon_sym__Nullable_result] = ACTIONS(5216), + [anon_sym__Null_unspecified] = ACTIONS(5216), + [anon_sym___autoreleasing] = ACTIONS(5216), + [anon_sym___block] = ACTIONS(5216), + [anon_sym___bridge] = ACTIONS(5216), + [anon_sym___bridge_retained] = ACTIONS(5216), + [anon_sym___bridge_transfer] = ACTIONS(5216), + [anon_sym___complex] = ACTIONS(5216), + [anon_sym___const] = ACTIONS(5216), + [anon_sym___imag] = ACTIONS(5216), + [anon_sym___kindof] = ACTIONS(5216), + [anon_sym___nonnull] = ACTIONS(5216), + [anon_sym___nullable] = ACTIONS(5216), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5216), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5216), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5216), + [anon_sym___real] = ACTIONS(5216), + [anon_sym___strong] = ACTIONS(5216), + [anon_sym___unsafe_unretained] = ACTIONS(5216), + [anon_sym___unused] = ACTIONS(5216), + [anon_sym___weak] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5216), + [anon_sym__Alignas] = ACTIONS(5216), + [sym_primitive_type] = ACTIONS(5216), + [anon_sym_enum] = ACTIONS(5216), + [anon_sym_COLON] = ACTIONS(5218), + [anon_sym_struct] = ACTIONS(5216), + [anon_sym_union] = ACTIONS(5216), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5216), + [anon_sym___typeof] = ACTIONS(5216), + [anon_sym_typeof] = ACTIONS(5216), + [aux_sym_preproc_undef_token1] = ACTIONS(5216), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5216), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5216), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5216), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5216), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5216), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5216), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5216), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5216), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5216), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5216), + [anon_sym_NS_AVAILABLE] = ACTIONS(5216), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5216), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5216), + [anon_sym_API_AVAILABLE] = ACTIONS(5216), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5216), + [anon_sym_API_DEPRECATED] = ACTIONS(5216), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5216), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5216), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5216), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5216), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5216), + [anon_sym___deprecated_msg] = ACTIONS(5216), + [anon_sym___deprecated_enum_msg] = ACTIONS(5216), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5216), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5216), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5216), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5216), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5216), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5216), + [anon_sym_ATend] = ACTIONS(5218), + [anon_sym_ATsynthesize] = ACTIONS(5218), + [anon_sym_ATdynamic] = ACTIONS(5218), + [anon_sym_BOOL] = ACTIONS(5216), + [anon_sym_IMP] = ACTIONS(5216), + [anon_sym_SEL] = ACTIONS(5216), + [anon_sym_Class] = ACTIONS(5216), + [anon_sym_id] = ACTIONS(5216), + }, + [2088] = { + [sym_identifier] = ACTIONS(2346), + [aux_sym_preproc_def_token1] = ACTIONS(2346), + [aux_sym_preproc_if_token1] = ACTIONS(2346), + [aux_sym_preproc_if_token2] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2346), + [aux_sym_preproc_else_token1] = ACTIONS(2346), + [aux_sym_preproc_elif_token1] = ACTIONS(2346), + [sym_preproc_directive] = ACTIONS(2346), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_PLUS] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym___extension__] = ACTIONS(2346), + [anon_sym_typedef] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym___attribute__] = ACTIONS(2346), + [anon_sym___attribute] = ACTIONS(2346), + [anon_sym_noreturn] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym___declspec] = ACTIONS(2346), + [anon_sym___cdecl] = ACTIONS(2346), + [anon_sym___clrcall] = ACTIONS(2346), + [anon_sym___stdcall] = ACTIONS(2346), + [anon_sym___fastcall] = ACTIONS(2346), + [anon_sym___thiscall] = ACTIONS(2346), + [anon_sym___vectorcall] = ACTIONS(2346), + [anon_sym_signed] = ACTIONS(2346), + [anon_sym_unsigned] = ACTIONS(2346), + [anon_sym_long] = ACTIONS(2346), + [anon_sym_short] = ACTIONS(2346), + [anon_sym_static] = ACTIONS(2346), + [anon_sym_auto] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2346), + [anon_sym_inline] = ACTIONS(2346), + [anon_sym___inline] = ACTIONS(2346), + [anon_sym___inline__] = ACTIONS(2346), + [anon_sym___forceinline] = ACTIONS(2346), + [anon_sym_thread_local] = ACTIONS(2346), + [anon_sym___thread] = ACTIONS(2346), + [anon_sym_CG_EXTERN] = ACTIONS(2346), + [anon_sym_CG_INLINE] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2346), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2346), + [anon_sym_IBOutlet] = ACTIONS(2346), + [anon_sym_IBInspectable] = ACTIONS(2346), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2346), + [anon_sym_NS_INLINE] = ACTIONS(2346), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2346), + [anon_sym_OBJC_EXPORT] = ACTIONS(2346), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_constexpr] = ACTIONS(2346), + [anon_sym_volatile] = ACTIONS(2346), + [anon_sym_restrict] = ACTIONS(2346), + [anon_sym___restrict__] = ACTIONS(2346), + [anon_sym__Atomic] = ACTIONS(2346), + [anon_sym__Noreturn] = ACTIONS(2346), + [anon_sym__Nonnull] = ACTIONS(2346), + [anon_sym_nullable] = ACTIONS(2346), + [anon_sym__Complex] = ACTIONS(2346), + [anon_sym__Nullable] = ACTIONS(2346), + [anon_sym__Nullable_result] = ACTIONS(2346), + [anon_sym__Null_unspecified] = ACTIONS(2346), + [anon_sym___autoreleasing] = ACTIONS(2346), + [anon_sym___block] = ACTIONS(2346), + [anon_sym___bridge] = ACTIONS(2346), + [anon_sym___bridge_retained] = ACTIONS(2346), + [anon_sym___bridge_transfer] = ACTIONS(2346), + [anon_sym___complex] = ACTIONS(2346), + [anon_sym___const] = ACTIONS(2346), + [anon_sym___imag] = ACTIONS(2346), + [anon_sym___kindof] = ACTIONS(2346), + [anon_sym___nonnull] = ACTIONS(2346), + [anon_sym___nullable] = ACTIONS(2346), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2346), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2346), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2346), + [anon_sym___real] = ACTIONS(2346), + [anon_sym___strong] = ACTIONS(2346), + [anon_sym___unsafe_unretained] = ACTIONS(2346), + [anon_sym___unused] = ACTIONS(2346), + [anon_sym___weak] = ACTIONS(2346), + [anon_sym_alignas] = ACTIONS(2346), + [anon_sym__Alignas] = ACTIONS(2346), + [sym_primitive_type] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2346), + [anon_sym___typeof] = ACTIONS(2346), + [anon_sym_typeof] = ACTIONS(2346), + [aux_sym_preproc_undef_token1] = ACTIONS(2346), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2346), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2346), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2346), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2346), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE] = ACTIONS(2346), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_API_AVAILABLE] = ACTIONS(2346), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_API_DEPRECATED] = ACTIONS(2346), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2346), + [anon_sym___deprecated_msg] = ACTIONS(2346), + [anon_sym___deprecated_enum_msg] = ACTIONS(2346), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2346), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2346), + [anon_sym_ATsynthesize] = ACTIONS(2348), + [anon_sym_ATdynamic] = ACTIONS(2348), + [anon_sym_ATproperty] = ACTIONS(2348), + [anon_sym_BOOL] = ACTIONS(2346), + [anon_sym_IMP] = ACTIONS(2346), + [anon_sym_SEL] = ACTIONS(2346), + [anon_sym_Class] = ACTIONS(2346), + [anon_sym_id] = ACTIONS(2346), + }, + [2089] = { + [sym_identifier] = ACTIONS(2364), + [aux_sym_preproc_def_token1] = ACTIONS(2364), + [aux_sym_preproc_if_token1] = ACTIONS(2364), + [aux_sym_preproc_if_token2] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2364), + [aux_sym_preproc_else_token1] = ACTIONS(2364), + [aux_sym_preproc_elif_token1] = ACTIONS(2364), + [sym_preproc_directive] = ACTIONS(2364), + [anon_sym_DASH] = ACTIONS(2366), + [anon_sym_PLUS] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_typedef] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym___attribute__] = ACTIONS(2364), + [anon_sym___attribute] = ACTIONS(2364), + [anon_sym_noreturn] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym___declspec] = ACTIONS(2364), + [anon_sym___cdecl] = ACTIONS(2364), + [anon_sym___clrcall] = ACTIONS(2364), + [anon_sym___stdcall] = ACTIONS(2364), + [anon_sym___fastcall] = ACTIONS(2364), + [anon_sym___thiscall] = ACTIONS(2364), + [anon_sym___vectorcall] = ACTIONS(2364), + [anon_sym_signed] = ACTIONS(2364), + [anon_sym_unsigned] = ACTIONS(2364), + [anon_sym_long] = ACTIONS(2364), + [anon_sym_short] = ACTIONS(2364), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_auto] = ACTIONS(2364), + [anon_sym_register] = ACTIONS(2364), + [anon_sym_inline] = ACTIONS(2364), + [anon_sym___inline] = ACTIONS(2364), + [anon_sym___inline__] = ACTIONS(2364), + [anon_sym___forceinline] = ACTIONS(2364), + [anon_sym_thread_local] = ACTIONS(2364), + [anon_sym___thread] = ACTIONS(2364), + [anon_sym_CG_EXTERN] = ACTIONS(2364), + [anon_sym_CG_INLINE] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2364), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2364), + [anon_sym_IBOutlet] = ACTIONS(2364), + [anon_sym_IBInspectable] = ACTIONS(2364), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2364), + [anon_sym_NS_INLINE] = ACTIONS(2364), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2364), + [anon_sym_OBJC_EXPORT] = ACTIONS(2364), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [anon_sym_constexpr] = ACTIONS(2364), + [anon_sym_volatile] = ACTIONS(2364), + [anon_sym_restrict] = ACTIONS(2364), + [anon_sym___restrict__] = ACTIONS(2364), + [anon_sym__Atomic] = ACTIONS(2364), + [anon_sym__Noreturn] = ACTIONS(2364), + [anon_sym__Nonnull] = ACTIONS(2364), + [anon_sym_nullable] = ACTIONS(2364), + [anon_sym__Complex] = ACTIONS(2364), + [anon_sym__Nullable] = ACTIONS(2364), + [anon_sym__Nullable_result] = ACTIONS(2364), + [anon_sym__Null_unspecified] = ACTIONS(2364), + [anon_sym___autoreleasing] = ACTIONS(2364), + [anon_sym___block] = ACTIONS(2364), + [anon_sym___bridge] = ACTIONS(2364), + [anon_sym___bridge_retained] = ACTIONS(2364), + [anon_sym___bridge_transfer] = ACTIONS(2364), + [anon_sym___complex] = ACTIONS(2364), + [anon_sym___const] = ACTIONS(2364), + [anon_sym___imag] = ACTIONS(2364), + [anon_sym___kindof] = ACTIONS(2364), + [anon_sym___nonnull] = ACTIONS(2364), + [anon_sym___nullable] = ACTIONS(2364), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2364), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2364), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2364), + [anon_sym___real] = ACTIONS(2364), + [anon_sym___strong] = ACTIONS(2364), + [anon_sym___unsafe_unretained] = ACTIONS(2364), + [anon_sym___unused] = ACTIONS(2364), + [anon_sym___weak] = ACTIONS(2364), + [anon_sym_alignas] = ACTIONS(2364), + [anon_sym__Alignas] = ACTIONS(2364), + [sym_primitive_type] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(2364), + [anon_sym_union] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2364), + [anon_sym___typeof] = ACTIONS(2364), + [anon_sym_typeof] = ACTIONS(2364), + [aux_sym_preproc_undef_token1] = ACTIONS(2364), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2364), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2364), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2364), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2364), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE] = ACTIONS(2364), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_API_AVAILABLE] = ACTIONS(2364), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_API_DEPRECATED] = ACTIONS(2364), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2364), + [anon_sym___deprecated_msg] = ACTIONS(2364), + [anon_sym___deprecated_enum_msg] = ACTIONS(2364), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2364), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2364), + [anon_sym_ATsynthesize] = ACTIONS(2366), + [anon_sym_ATdynamic] = ACTIONS(2366), + [anon_sym_ATproperty] = ACTIONS(2366), + [anon_sym_BOOL] = ACTIONS(2364), + [anon_sym_IMP] = ACTIONS(2364), + [anon_sym_SEL] = ACTIONS(2364), + [anon_sym_Class] = ACTIONS(2364), + [anon_sym_id] = ACTIONS(2364), + }, + [2090] = { + [sym_identifier] = ACTIONS(2350), + [aux_sym_preproc_def_token1] = ACTIONS(2350), + [aux_sym_preproc_if_token1] = ACTIONS(2350), + [aux_sym_preproc_if_token2] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2350), + [aux_sym_preproc_else_token1] = ACTIONS(2350), + [aux_sym_preproc_elif_token1] = ACTIONS(2350), + [sym_preproc_directive] = ACTIONS(2350), + [anon_sym_DASH] = ACTIONS(2352), + [anon_sym_PLUS] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2352), + [anon_sym___extension__] = ACTIONS(2350), + [anon_sym_typedef] = ACTIONS(2350), + [anon_sym_extern] = ACTIONS(2350), + [anon_sym___attribute__] = ACTIONS(2350), + [anon_sym___attribute] = ACTIONS(2350), + [anon_sym_noreturn] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2352), + [anon_sym___declspec] = ACTIONS(2350), + [anon_sym___cdecl] = ACTIONS(2350), + [anon_sym___clrcall] = ACTIONS(2350), + [anon_sym___stdcall] = ACTIONS(2350), + [anon_sym___fastcall] = ACTIONS(2350), + [anon_sym___thiscall] = ACTIONS(2350), + [anon_sym___vectorcall] = ACTIONS(2350), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(2350), + [anon_sym_auto] = ACTIONS(2350), + [anon_sym_register] = ACTIONS(2350), + [anon_sym_inline] = ACTIONS(2350), + [anon_sym___inline] = ACTIONS(2350), + [anon_sym___inline__] = ACTIONS(2350), + [anon_sym___forceinline] = ACTIONS(2350), + [anon_sym_thread_local] = ACTIONS(2350), + [anon_sym___thread] = ACTIONS(2350), + [anon_sym_CG_EXTERN] = ACTIONS(2350), + [anon_sym_CG_INLINE] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2350), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2350), + [anon_sym_IBOutlet] = ACTIONS(2350), + [anon_sym_IBInspectable] = ACTIONS(2350), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2350), + [anon_sym_NS_INLINE] = ACTIONS(2350), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2350), + [anon_sym_OBJC_EXPORT] = ACTIONS(2350), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2350), + [anon_sym_const] = ACTIONS(2350), + [anon_sym_constexpr] = ACTIONS(2350), + [anon_sym_volatile] = ACTIONS(2350), + [anon_sym_restrict] = ACTIONS(2350), + [anon_sym___restrict__] = ACTIONS(2350), + [anon_sym__Atomic] = ACTIONS(2350), + [anon_sym__Noreturn] = ACTIONS(2350), + [anon_sym__Nonnull] = ACTIONS(2350), + [anon_sym_nullable] = ACTIONS(2350), + [anon_sym__Complex] = ACTIONS(2350), + [anon_sym__Nullable] = ACTIONS(2350), + [anon_sym__Nullable_result] = ACTIONS(2350), + [anon_sym__Null_unspecified] = ACTIONS(2350), + [anon_sym___autoreleasing] = ACTIONS(2350), + [anon_sym___block] = ACTIONS(2350), + [anon_sym___bridge] = ACTIONS(2350), + [anon_sym___bridge_retained] = ACTIONS(2350), + [anon_sym___bridge_transfer] = ACTIONS(2350), + [anon_sym___complex] = ACTIONS(2350), + [anon_sym___const] = ACTIONS(2350), + [anon_sym___imag] = ACTIONS(2350), + [anon_sym___kindof] = ACTIONS(2350), + [anon_sym___nonnull] = ACTIONS(2350), + [anon_sym___nullable] = ACTIONS(2350), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2350), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2350), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2350), + [anon_sym___real] = ACTIONS(2350), + [anon_sym___strong] = ACTIONS(2350), + [anon_sym___unsafe_unretained] = ACTIONS(2350), + [anon_sym___unused] = ACTIONS(2350), + [anon_sym___weak] = ACTIONS(2350), + [anon_sym_alignas] = ACTIONS(2350), + [anon_sym__Alignas] = ACTIONS(2350), + [sym_primitive_type] = ACTIONS(2350), + [anon_sym_enum] = ACTIONS(2350), + [anon_sym_struct] = ACTIONS(2350), + [anon_sym_union] = ACTIONS(2350), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2350), + [anon_sym___typeof] = ACTIONS(2350), + [anon_sym_typeof] = ACTIONS(2350), + [aux_sym_preproc_undef_token1] = ACTIONS(2350), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2350), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2350), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2350), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2350), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE] = ACTIONS(2350), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_API_AVAILABLE] = ACTIONS(2350), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_API_DEPRECATED] = ACTIONS(2350), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2350), + [anon_sym___deprecated_msg] = ACTIONS(2350), + [anon_sym___deprecated_enum_msg] = ACTIONS(2350), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2350), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2350), + [anon_sym_ATsynthesize] = ACTIONS(2352), + [anon_sym_ATdynamic] = ACTIONS(2352), + [anon_sym_ATproperty] = ACTIONS(2352), + [anon_sym_BOOL] = ACTIONS(2350), + [anon_sym_IMP] = ACTIONS(2350), + [anon_sym_SEL] = ACTIONS(2350), + [anon_sym_Class] = ACTIONS(2350), + [anon_sym_id] = ACTIONS(2350), + }, + [2091] = { + [sym_expression] = STATE(4497), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(203), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(5246), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(203), + }, + [2092] = { + [sym_identifier] = ACTIONS(2804), + [anon_sym_COMMA] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2806), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2806), + [anon_sym_LPAREN2] = ACTIONS(2806), + [anon_sym_STAR] = ACTIONS(2806), + [anon_sym_CARET] = ACTIONS(2806), + [anon_sym_GT] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym___extension__] = ACTIONS(2804), + [anon_sym_extern] = ACTIONS(2804), + [anon_sym___attribute__] = ACTIONS(2804), + [anon_sym___attribute] = ACTIONS(2804), + [anon_sym_noreturn] = ACTIONS(2804), + [anon_sym_LBRACK] = ACTIONS(2806), + [anon_sym___declspec] = ACTIONS(2804), + [anon_sym___based] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_RBRACE] = ACTIONS(2806), + [anon_sym_signed] = ACTIONS(2804), + [anon_sym_unsigned] = ACTIONS(2804), + [anon_sym_long] = ACTIONS(2804), + [anon_sym_short] = ACTIONS(2804), + [anon_sym_static] = ACTIONS(2804), + [anon_sym_EQ] = ACTIONS(2806), + [anon_sym_ATautoreleasepool] = ACTIONS(2806), + [anon_sym_auto] = ACTIONS(2804), + [anon_sym_register] = ACTIONS(2804), + [anon_sym_inline] = ACTIONS(2804), + [anon_sym___inline] = ACTIONS(2804), + [anon_sym___inline__] = ACTIONS(2804), + [anon_sym___forceinline] = ACTIONS(2804), + [anon_sym_thread_local] = ACTIONS(2804), + [anon_sym___thread] = ACTIONS(2804), + [anon_sym_CG_EXTERN] = ACTIONS(2804), + [anon_sym_CG_INLINE] = ACTIONS(2804), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2804), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2804), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2804), + [anon_sym_IBOutlet] = ACTIONS(2804), + [anon_sym_IBInspectable] = ACTIONS(2804), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2804), + [anon_sym_NS_INLINE] = ACTIONS(2804), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2804), + [anon_sym_OBJC_EXPORT] = ACTIONS(2804), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2804), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2804), + [anon_sym_const] = ACTIONS(2804), + [anon_sym_constexpr] = ACTIONS(2804), + [anon_sym_volatile] = ACTIONS(2804), + [anon_sym_restrict] = ACTIONS(2804), + [anon_sym___restrict__] = ACTIONS(2804), + [anon_sym__Atomic] = ACTIONS(2804), + [anon_sym__Noreturn] = ACTIONS(2804), + [anon_sym__Nonnull] = ACTIONS(2804), + [anon_sym_nullable] = ACTIONS(2804), + [anon_sym__Complex] = ACTIONS(2804), + [anon_sym__Nullable] = ACTIONS(2804), + [anon_sym__Nullable_result] = ACTIONS(2804), + [anon_sym__Null_unspecified] = ACTIONS(2804), + [anon_sym___autoreleasing] = ACTIONS(2804), + [anon_sym___block] = ACTIONS(2804), + [anon_sym___bridge] = ACTIONS(2804), + [anon_sym___bridge_retained] = ACTIONS(2804), + [anon_sym___bridge_transfer] = ACTIONS(2804), + [anon_sym___complex] = ACTIONS(2804), + [anon_sym___const] = ACTIONS(2804), + [anon_sym___imag] = ACTIONS(2804), + [anon_sym___kindof] = ACTIONS(2804), + [anon_sym___nonnull] = ACTIONS(2804), + [anon_sym___nullable] = ACTIONS(2804), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2804), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2804), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2804), + [anon_sym___real] = ACTIONS(2804), + [anon_sym___strong] = ACTIONS(2804), + [anon_sym___unsafe_unretained] = ACTIONS(2804), + [anon_sym___unused] = ACTIONS(2804), + [anon_sym___weak] = ACTIONS(2804), + [anon_sym_alignas] = ACTIONS(2804), + [anon_sym__Alignas] = ACTIONS(2804), + [sym_primitive_type] = ACTIONS(2804), + [anon_sym_enum] = ACTIONS(2804), + [anon_sym_COLON] = ACTIONS(2806), + [anon_sym_struct] = ACTIONS(2804), + [anon_sym_union] = ACTIONS(2804), + [anon_sym_asm] = ACTIONS(2804), + [anon_sym___asm__] = ACTIONS(2804), + [anon_sym___asm] = ACTIONS(2804), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2804), + [anon_sym___typeof] = ACTIONS(2804), + [anon_sym_typeof] = ACTIONS(2804), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2804), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2804), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2804), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2804), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2804), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2804), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2804), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2804), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2804), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2804), + [anon_sym_NS_AVAILABLE] = ACTIONS(2804), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2804), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2804), + [anon_sym_API_AVAILABLE] = ACTIONS(2804), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2804), + [anon_sym_API_DEPRECATED] = ACTIONS(2804), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2804), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2804), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2804), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2804), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2804), + [anon_sym___deprecated_msg] = ACTIONS(2804), + [anon_sym___deprecated_enum_msg] = ACTIONS(2804), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2804), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2804), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2804), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2804), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2804), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2804), + [anon_sym_ATprotocol] = ACTIONS(2806), + [anon_sym_ATinterface] = ACTIONS(2806), + [anon_sym_ATimplementation] = ACTIONS(2806), + [anon_sym_ATproperty] = ACTIONS(2806), + [anon_sym_BOOL] = ACTIONS(2804), + [anon_sym_IMP] = ACTIONS(2804), + [anon_sym_SEL] = ACTIONS(2804), + [anon_sym_Class] = ACTIONS(2804), + [anon_sym_id] = ACTIONS(2804), + }, + [2093] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4826), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_c_method_parameter] = STATE(2857), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2094] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5293), + [anon_sym_COMMA] = ACTIONS(4470), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5226), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_PERCENT] = ACTIONS(5228), + [anon_sym_PIPE_PIPE] = ACTIONS(5273), + [anon_sym_AMP_AMP] = ACTIONS(5275), + [anon_sym_PIPE] = ACTIONS(5277), + [anon_sym_CARET] = ACTIONS(5279), + [anon_sym_AMP] = ACTIONS(5230), + [anon_sym_EQ_EQ] = ACTIONS(5232), + [anon_sym_BANG_EQ] = ACTIONS(5232), + [anon_sym_GT] = ACTIONS(5234), + [anon_sym_GT_EQ] = ACTIONS(5236), + [anon_sym_LT_EQ] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5234), + [anon_sym_LT_LT] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5238), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym___extension__] = ACTIONS(4470), + [anon_sym_extern] = ACTIONS(4470), + [anon_sym___attribute__] = ACTIONS(4470), + [anon_sym___attribute] = ACTIONS(4466), + [anon_sym_noreturn] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4470), + [anon_sym_static] = ACTIONS(4470), + [anon_sym_EQ] = ACTIONS(4466), + [anon_sym_auto] = ACTIONS(4470), + [anon_sym_register] = ACTIONS(4470), + [anon_sym_inline] = ACTIONS(4470), + [anon_sym___inline] = ACTIONS(4466), + [anon_sym___inline__] = ACTIONS(4470), + [anon_sym___forceinline] = ACTIONS(4470), + [anon_sym_thread_local] = ACTIONS(4470), + [anon_sym___thread] = ACTIONS(4470), + [anon_sym_CG_EXTERN] = ACTIONS(4470), + [anon_sym_CG_INLINE] = ACTIONS(4470), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4470), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4470), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4470), + [anon_sym_IBOutlet] = ACTIONS(4470), + [anon_sym_IBInspectable] = ACTIONS(4470), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4470), + [anon_sym_NS_INLINE] = ACTIONS(4470), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4470), + [anon_sym_OBJC_EXPORT] = ACTIONS(4470), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4470), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4470), + [anon_sym_const] = ACTIONS(4466), + [anon_sym_constexpr] = ACTIONS(4470), + [anon_sym_volatile] = ACTIONS(4470), + [anon_sym_restrict] = ACTIONS(4470), + [anon_sym___restrict__] = ACTIONS(4470), + [anon_sym__Atomic] = ACTIONS(4470), + [anon_sym__Noreturn] = ACTIONS(4470), + [anon_sym__Nonnull] = ACTIONS(4470), + [anon_sym_nullable] = ACTIONS(4470), + [anon_sym__Complex] = ACTIONS(4470), + [anon_sym__Nullable] = ACTIONS(4466), + [anon_sym__Nullable_result] = ACTIONS(4470), + [anon_sym__Null_unspecified] = ACTIONS(4470), + [anon_sym___autoreleasing] = ACTIONS(4470), + [anon_sym___block] = ACTIONS(4470), + [anon_sym___bridge] = ACTIONS(4466), + [anon_sym___bridge_retained] = ACTIONS(4470), + [anon_sym___bridge_transfer] = ACTIONS(4470), + [anon_sym___complex] = ACTIONS(4470), + [anon_sym___const] = ACTIONS(4470), + [anon_sym___imag] = ACTIONS(4470), + [anon_sym___kindof] = ACTIONS(4470), + [anon_sym___nonnull] = ACTIONS(4470), + [anon_sym___nullable] = ACTIONS(4470), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4470), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4470), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4470), + [anon_sym___real] = ACTIONS(4470), + [anon_sym___strong] = ACTIONS(4470), + [anon_sym___unsafe_unretained] = ACTIONS(4470), + [anon_sym___unused] = ACTIONS(4470), + [anon_sym___weak] = ACTIONS(4470), + [anon_sym_alignas] = ACTIONS(4470), + [anon_sym__Alignas] = ACTIONS(4470), + [anon_sym_QMARK] = ACTIONS(5295), + [anon_sym_STAR_EQ] = ACTIONS(4470), + [anon_sym_SLASH_EQ] = ACTIONS(4470), + [anon_sym_PERCENT_EQ] = ACTIONS(4470), + [anon_sym_PLUS_EQ] = ACTIONS(4470), + [anon_sym_DASH_EQ] = ACTIONS(4470), + [anon_sym_LT_LT_EQ] = ACTIONS(4470), + [anon_sym_GT_GT_EQ] = ACTIONS(4470), + [anon_sym_AMP_EQ] = ACTIONS(4470), + [anon_sym_CARET_EQ] = ACTIONS(4470), + [anon_sym_PIPE_EQ] = ACTIONS(4470), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4470), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4470), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4470), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4470), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4470), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4470), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4470), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4470), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4470), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4470), + [anon_sym_NS_AVAILABLE] = ACTIONS(4466), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4470), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4470), + [anon_sym_API_AVAILABLE] = ACTIONS(4470), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4470), + [anon_sym_API_DEPRECATED] = ACTIONS(4470), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4470), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4470), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4470), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4470), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4470), + [anon_sym___deprecated_msg] = ACTIONS(4470), + [anon_sym___deprecated_enum_msg] = ACTIONS(4470), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4470), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4470), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4470), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4470), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4470), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4470), + }, + [2095] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5293), + [anon_sym_COMMA] = ACTIONS(4484), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5226), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_PERCENT] = ACTIONS(5228), + [anon_sym_PIPE_PIPE] = ACTIONS(5273), + [anon_sym_AMP_AMP] = ACTIONS(5275), + [anon_sym_PIPE] = ACTIONS(5277), + [anon_sym_CARET] = ACTIONS(5279), + [anon_sym_AMP] = ACTIONS(5230), + [anon_sym_EQ_EQ] = ACTIONS(5232), + [anon_sym_BANG_EQ] = ACTIONS(5232), + [anon_sym_GT] = ACTIONS(5234), + [anon_sym_GT_EQ] = ACTIONS(5236), + [anon_sym_LT_EQ] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5234), + [anon_sym_LT_LT] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5238), + [anon_sym_SEMI] = ACTIONS(4484), + [anon_sym___extension__] = ACTIONS(4484), + [anon_sym_extern] = ACTIONS(4484), + [anon_sym___attribute__] = ACTIONS(4484), + [anon_sym___attribute] = ACTIONS(4482), + [anon_sym_noreturn] = ACTIONS(4484), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4484), + [anon_sym_static] = ACTIONS(4484), + [anon_sym_EQ] = ACTIONS(4482), + [anon_sym_auto] = ACTIONS(4484), + [anon_sym_register] = ACTIONS(4484), + [anon_sym_inline] = ACTIONS(4484), + [anon_sym___inline] = ACTIONS(4482), + [anon_sym___inline__] = ACTIONS(4484), + [anon_sym___forceinline] = ACTIONS(4484), + [anon_sym_thread_local] = ACTIONS(4484), + [anon_sym___thread] = ACTIONS(4484), + [anon_sym_CG_EXTERN] = ACTIONS(4484), + [anon_sym_CG_INLINE] = ACTIONS(4484), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4484), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4484), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4484), + [anon_sym_IBOutlet] = ACTIONS(4484), + [anon_sym_IBInspectable] = ACTIONS(4484), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4484), + [anon_sym_NS_INLINE] = ACTIONS(4484), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4484), + [anon_sym_OBJC_EXPORT] = ACTIONS(4484), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4484), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4484), + [anon_sym_const] = ACTIONS(4482), + [anon_sym_constexpr] = ACTIONS(4484), + [anon_sym_volatile] = ACTIONS(4484), + [anon_sym_restrict] = ACTIONS(4484), + [anon_sym___restrict__] = ACTIONS(4484), + [anon_sym__Atomic] = ACTIONS(4484), + [anon_sym__Noreturn] = ACTIONS(4484), + [anon_sym__Nonnull] = ACTIONS(4484), + [anon_sym_nullable] = ACTIONS(4484), + [anon_sym__Complex] = ACTIONS(4484), + [anon_sym__Nullable] = ACTIONS(4482), + [anon_sym__Nullable_result] = ACTIONS(4484), + [anon_sym__Null_unspecified] = ACTIONS(4484), + [anon_sym___autoreleasing] = ACTIONS(4484), + [anon_sym___block] = ACTIONS(4484), + [anon_sym___bridge] = ACTIONS(4482), + [anon_sym___bridge_retained] = ACTIONS(4484), + [anon_sym___bridge_transfer] = ACTIONS(4484), + [anon_sym___complex] = ACTIONS(4484), + [anon_sym___const] = ACTIONS(4484), + [anon_sym___imag] = ACTIONS(4484), + [anon_sym___kindof] = ACTIONS(4484), + [anon_sym___nonnull] = ACTIONS(4484), + [anon_sym___nullable] = ACTIONS(4484), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4484), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4484), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4484), + [anon_sym___real] = ACTIONS(4484), + [anon_sym___strong] = ACTIONS(4484), + [anon_sym___unsafe_unretained] = ACTIONS(4484), + [anon_sym___unused] = ACTIONS(4484), + [anon_sym___weak] = ACTIONS(4484), + [anon_sym_alignas] = ACTIONS(4484), + [anon_sym__Alignas] = ACTIONS(4484), + [anon_sym_QMARK] = ACTIONS(4484), + [anon_sym_STAR_EQ] = ACTIONS(4484), + [anon_sym_SLASH_EQ] = ACTIONS(4484), + [anon_sym_PERCENT_EQ] = ACTIONS(4484), + [anon_sym_PLUS_EQ] = ACTIONS(4484), + [anon_sym_DASH_EQ] = ACTIONS(4484), + [anon_sym_LT_LT_EQ] = ACTIONS(4484), + [anon_sym_GT_GT_EQ] = ACTIONS(4484), + [anon_sym_AMP_EQ] = ACTIONS(4484), + [anon_sym_CARET_EQ] = ACTIONS(4484), + [anon_sym_PIPE_EQ] = ACTIONS(4484), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4484), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4484), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4484), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4484), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4484), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4484), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4484), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4484), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4484), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4484), + [anon_sym_NS_AVAILABLE] = ACTIONS(4482), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4484), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4484), + [anon_sym_API_AVAILABLE] = ACTIONS(4484), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4484), + [anon_sym_API_DEPRECATED] = ACTIONS(4484), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4484), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4484), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4484), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4484), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4484), + [anon_sym___deprecated_msg] = ACTIONS(4484), + [anon_sym___deprecated_enum_msg] = ACTIONS(4484), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4484), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4484), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4484), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4484), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4484), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4484), + }, + [2096] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4025), + [anon_sym_PLUS] = ACTIONS(4025), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_PERCENT] = ACTIONS(5228), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4025), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(4025), + [anon_sym_GT_EQ] = ACTIONS(4027), + [anon_sym_LT_EQ] = ACTIONS(4027), + [anon_sym_LT] = ACTIONS(4025), + [anon_sym_LT_LT] = ACTIONS(4025), + [anon_sym_GT_GT] = ACTIONS(4025), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_extern] = ACTIONS(4027), + [anon_sym___attribute__] = ACTIONS(4027), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4027), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4027), + [anon_sym_register] = ACTIONS(4027), + [anon_sym_inline] = ACTIONS(4027), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4027), + [anon_sym___forceinline] = ACTIONS(4027), + [anon_sym_thread_local] = ACTIONS(4027), + [anon_sym___thread] = ACTIONS(4027), + [anon_sym_CG_EXTERN] = ACTIONS(4027), + [anon_sym_CG_INLINE] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4027), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4027), + [anon_sym_IBOutlet] = ACTIONS(4027), + [anon_sym_IBInspectable] = ACTIONS(4027), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4027), + [anon_sym_NS_INLINE] = ACTIONS(4027), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4027), + [anon_sym_OBJC_EXPORT] = ACTIONS(4027), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4027), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4027), + [anon_sym_volatile] = ACTIONS(4027), + [anon_sym_restrict] = ACTIONS(4027), + [anon_sym___restrict__] = ACTIONS(4027), + [anon_sym__Atomic] = ACTIONS(4027), + [anon_sym__Noreturn] = ACTIONS(4027), + [anon_sym__Nonnull] = ACTIONS(4027), + [anon_sym_nullable] = ACTIONS(4027), + [anon_sym__Complex] = ACTIONS(4027), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4027), + [anon_sym__Null_unspecified] = ACTIONS(4027), + [anon_sym___autoreleasing] = ACTIONS(4027), + [anon_sym___block] = ACTIONS(4027), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4027), + [anon_sym___bridge_transfer] = ACTIONS(4027), + [anon_sym___complex] = ACTIONS(4027), + [anon_sym___const] = ACTIONS(4027), + [anon_sym___imag] = ACTIONS(4027), + [anon_sym___kindof] = ACTIONS(4027), + [anon_sym___nonnull] = ACTIONS(4027), + [anon_sym___nullable] = ACTIONS(4027), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4027), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4027), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4027), + [anon_sym___real] = ACTIONS(4027), + [anon_sym___strong] = ACTIONS(4027), + [anon_sym___unsafe_unretained] = ACTIONS(4027), + [anon_sym___unused] = ACTIONS(4027), + [anon_sym___weak] = ACTIONS(4027), + [anon_sym_alignas] = ACTIONS(4027), + [anon_sym__Alignas] = ACTIONS(4027), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4027), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4027), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4027), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4027), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_API_AVAILABLE] = ACTIONS(4027), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_API_DEPRECATED] = ACTIONS(4027), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4027), + [anon_sym___deprecated_msg] = ACTIONS(4027), + [anon_sym___deprecated_enum_msg] = ACTIONS(4027), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4027), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4027), + }, + [2097] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5226), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_PERCENT] = ACTIONS(5228), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(5275), + [anon_sym_PIPE] = ACTIONS(5277), + [anon_sym_CARET] = ACTIONS(5279), + [anon_sym_AMP] = ACTIONS(5230), + [anon_sym_EQ_EQ] = ACTIONS(5232), + [anon_sym_BANG_EQ] = ACTIONS(5232), + [anon_sym_GT] = ACTIONS(5234), + [anon_sym_GT_EQ] = ACTIONS(5236), + [anon_sym_LT_EQ] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5234), + [anon_sym_LT_LT] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5238), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_extern] = ACTIONS(4027), + [anon_sym___attribute__] = ACTIONS(4027), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4027), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4027), + [anon_sym_register] = ACTIONS(4027), + [anon_sym_inline] = ACTIONS(4027), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4027), + [anon_sym___forceinline] = ACTIONS(4027), + [anon_sym_thread_local] = ACTIONS(4027), + [anon_sym___thread] = ACTIONS(4027), + [anon_sym_CG_EXTERN] = ACTIONS(4027), + [anon_sym_CG_INLINE] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4027), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4027), + [anon_sym_IBOutlet] = ACTIONS(4027), + [anon_sym_IBInspectable] = ACTIONS(4027), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4027), + [anon_sym_NS_INLINE] = ACTIONS(4027), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4027), + [anon_sym_OBJC_EXPORT] = ACTIONS(4027), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4027), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4027), + [anon_sym_volatile] = ACTIONS(4027), + [anon_sym_restrict] = ACTIONS(4027), + [anon_sym___restrict__] = ACTIONS(4027), + [anon_sym__Atomic] = ACTIONS(4027), + [anon_sym__Noreturn] = ACTIONS(4027), + [anon_sym__Nonnull] = ACTIONS(4027), + [anon_sym_nullable] = ACTIONS(4027), + [anon_sym__Complex] = ACTIONS(4027), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4027), + [anon_sym__Null_unspecified] = ACTIONS(4027), + [anon_sym___autoreleasing] = ACTIONS(4027), + [anon_sym___block] = ACTIONS(4027), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4027), + [anon_sym___bridge_transfer] = ACTIONS(4027), + [anon_sym___complex] = ACTIONS(4027), + [anon_sym___const] = ACTIONS(4027), + [anon_sym___imag] = ACTIONS(4027), + [anon_sym___kindof] = ACTIONS(4027), + [anon_sym___nonnull] = ACTIONS(4027), + [anon_sym___nullable] = ACTIONS(4027), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4027), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4027), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4027), + [anon_sym___real] = ACTIONS(4027), + [anon_sym___strong] = ACTIONS(4027), + [anon_sym___unsafe_unretained] = ACTIONS(4027), + [anon_sym___unused] = ACTIONS(4027), + [anon_sym___weak] = ACTIONS(4027), + [anon_sym_alignas] = ACTIONS(4027), + [anon_sym__Alignas] = ACTIONS(4027), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4027), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4027), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4027), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4027), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_API_AVAILABLE] = ACTIONS(4027), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_API_DEPRECATED] = ACTIONS(4027), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4027), + [anon_sym___deprecated_msg] = ACTIONS(4027), + [anon_sym___deprecated_enum_msg] = ACTIONS(4027), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4027), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4027), + }, + [2098] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5226), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_PERCENT] = ACTIONS(5228), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(5277), + [anon_sym_CARET] = ACTIONS(5279), + [anon_sym_AMP] = ACTIONS(5230), + [anon_sym_EQ_EQ] = ACTIONS(5232), + [anon_sym_BANG_EQ] = ACTIONS(5232), + [anon_sym_GT] = ACTIONS(5234), + [anon_sym_GT_EQ] = ACTIONS(5236), + [anon_sym_LT_EQ] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5234), + [anon_sym_LT_LT] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5238), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_extern] = ACTIONS(4027), + [anon_sym___attribute__] = ACTIONS(4027), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4027), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4027), + [anon_sym_register] = ACTIONS(4027), + [anon_sym_inline] = ACTIONS(4027), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4027), + [anon_sym___forceinline] = ACTIONS(4027), + [anon_sym_thread_local] = ACTIONS(4027), + [anon_sym___thread] = ACTIONS(4027), + [anon_sym_CG_EXTERN] = ACTIONS(4027), + [anon_sym_CG_INLINE] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4027), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4027), + [anon_sym_IBOutlet] = ACTIONS(4027), + [anon_sym_IBInspectable] = ACTIONS(4027), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4027), + [anon_sym_NS_INLINE] = ACTIONS(4027), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4027), + [anon_sym_OBJC_EXPORT] = ACTIONS(4027), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4027), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4027), + [anon_sym_volatile] = ACTIONS(4027), + [anon_sym_restrict] = ACTIONS(4027), + [anon_sym___restrict__] = ACTIONS(4027), + [anon_sym__Atomic] = ACTIONS(4027), + [anon_sym__Noreturn] = ACTIONS(4027), + [anon_sym__Nonnull] = ACTIONS(4027), + [anon_sym_nullable] = ACTIONS(4027), + [anon_sym__Complex] = ACTIONS(4027), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4027), + [anon_sym__Null_unspecified] = ACTIONS(4027), + [anon_sym___autoreleasing] = ACTIONS(4027), + [anon_sym___block] = ACTIONS(4027), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4027), + [anon_sym___bridge_transfer] = ACTIONS(4027), + [anon_sym___complex] = ACTIONS(4027), + [anon_sym___const] = ACTIONS(4027), + [anon_sym___imag] = ACTIONS(4027), + [anon_sym___kindof] = ACTIONS(4027), + [anon_sym___nonnull] = ACTIONS(4027), + [anon_sym___nullable] = ACTIONS(4027), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4027), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4027), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4027), + [anon_sym___real] = ACTIONS(4027), + [anon_sym___strong] = ACTIONS(4027), + [anon_sym___unsafe_unretained] = ACTIONS(4027), + [anon_sym___unused] = ACTIONS(4027), + [anon_sym___weak] = ACTIONS(4027), + [anon_sym_alignas] = ACTIONS(4027), + [anon_sym__Alignas] = ACTIONS(4027), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4027), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4027), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4027), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4027), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_API_AVAILABLE] = ACTIONS(4027), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_API_DEPRECATED] = ACTIONS(4027), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4027), + [anon_sym___deprecated_msg] = ACTIONS(4027), + [anon_sym___deprecated_enum_msg] = ACTIONS(4027), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4027), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4027), + }, + [2099] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5226), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_PERCENT] = ACTIONS(5228), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(5279), + [anon_sym_AMP] = ACTIONS(5230), + [anon_sym_EQ_EQ] = ACTIONS(5232), + [anon_sym_BANG_EQ] = ACTIONS(5232), + [anon_sym_GT] = ACTIONS(5234), + [anon_sym_GT_EQ] = ACTIONS(5236), + [anon_sym_LT_EQ] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5234), + [anon_sym_LT_LT] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5238), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_extern] = ACTIONS(4027), + [anon_sym___attribute__] = ACTIONS(4027), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4027), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4027), + [anon_sym_register] = ACTIONS(4027), + [anon_sym_inline] = ACTIONS(4027), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4027), + [anon_sym___forceinline] = ACTIONS(4027), + [anon_sym_thread_local] = ACTIONS(4027), + [anon_sym___thread] = ACTIONS(4027), + [anon_sym_CG_EXTERN] = ACTIONS(4027), + [anon_sym_CG_INLINE] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4027), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4027), + [anon_sym_IBOutlet] = ACTIONS(4027), + [anon_sym_IBInspectable] = ACTIONS(4027), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4027), + [anon_sym_NS_INLINE] = ACTIONS(4027), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4027), + [anon_sym_OBJC_EXPORT] = ACTIONS(4027), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4027), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4027), + [anon_sym_volatile] = ACTIONS(4027), + [anon_sym_restrict] = ACTIONS(4027), + [anon_sym___restrict__] = ACTIONS(4027), + [anon_sym__Atomic] = ACTIONS(4027), + [anon_sym__Noreturn] = ACTIONS(4027), + [anon_sym__Nonnull] = ACTIONS(4027), + [anon_sym_nullable] = ACTIONS(4027), + [anon_sym__Complex] = ACTIONS(4027), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4027), + [anon_sym__Null_unspecified] = ACTIONS(4027), + [anon_sym___autoreleasing] = ACTIONS(4027), + [anon_sym___block] = ACTIONS(4027), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4027), + [anon_sym___bridge_transfer] = ACTIONS(4027), + [anon_sym___complex] = ACTIONS(4027), + [anon_sym___const] = ACTIONS(4027), + [anon_sym___imag] = ACTIONS(4027), + [anon_sym___kindof] = ACTIONS(4027), + [anon_sym___nonnull] = ACTIONS(4027), + [anon_sym___nullable] = ACTIONS(4027), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4027), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4027), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4027), + [anon_sym___real] = ACTIONS(4027), + [anon_sym___strong] = ACTIONS(4027), + [anon_sym___unsafe_unretained] = ACTIONS(4027), + [anon_sym___unused] = ACTIONS(4027), + [anon_sym___weak] = ACTIONS(4027), + [anon_sym_alignas] = ACTIONS(4027), + [anon_sym__Alignas] = ACTIONS(4027), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4027), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4027), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4027), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4027), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_API_AVAILABLE] = ACTIONS(4027), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_API_DEPRECATED] = ACTIONS(4027), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4027), + [anon_sym___deprecated_msg] = ACTIONS(4027), + [anon_sym___deprecated_enum_msg] = ACTIONS(4027), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4027), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4027), + }, + [2100] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5293), + [anon_sym_COMMA] = ACTIONS(4480), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5226), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_PERCENT] = ACTIONS(5228), + [anon_sym_PIPE_PIPE] = ACTIONS(5273), + [anon_sym_AMP_AMP] = ACTIONS(5275), + [anon_sym_PIPE] = ACTIONS(5277), + [anon_sym_CARET] = ACTIONS(5279), + [anon_sym_AMP] = ACTIONS(5230), + [anon_sym_EQ_EQ] = ACTIONS(5232), + [anon_sym_BANG_EQ] = ACTIONS(5232), + [anon_sym_GT] = ACTIONS(5234), + [anon_sym_GT_EQ] = ACTIONS(5236), + [anon_sym_LT_EQ] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5234), + [anon_sym_LT_LT] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5238), + [anon_sym_SEMI] = ACTIONS(4480), + [anon_sym___extension__] = ACTIONS(4480), + [anon_sym_extern] = ACTIONS(4480), + [anon_sym___attribute__] = ACTIONS(4480), + [anon_sym___attribute] = ACTIONS(4478), + [anon_sym_noreturn] = ACTIONS(4480), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4480), + [anon_sym_static] = ACTIONS(4480), + [anon_sym_EQ] = ACTIONS(4478), + [anon_sym_auto] = ACTIONS(4480), + [anon_sym_register] = ACTIONS(4480), + [anon_sym_inline] = ACTIONS(4480), + [anon_sym___inline] = ACTIONS(4478), + [anon_sym___inline__] = ACTIONS(4480), + [anon_sym___forceinline] = ACTIONS(4480), + [anon_sym_thread_local] = ACTIONS(4480), + [anon_sym___thread] = ACTIONS(4480), + [anon_sym_CG_EXTERN] = ACTIONS(4480), + [anon_sym_CG_INLINE] = ACTIONS(4480), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4480), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4480), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4480), + [anon_sym_IBOutlet] = ACTIONS(4480), + [anon_sym_IBInspectable] = ACTIONS(4480), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4480), + [anon_sym_NS_INLINE] = ACTIONS(4480), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4480), + [anon_sym_OBJC_EXPORT] = ACTIONS(4480), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4480), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4480), + [anon_sym_const] = ACTIONS(4478), + [anon_sym_constexpr] = ACTIONS(4480), + [anon_sym_volatile] = ACTIONS(4480), + [anon_sym_restrict] = ACTIONS(4480), + [anon_sym___restrict__] = ACTIONS(4480), + [anon_sym__Atomic] = ACTIONS(4480), + [anon_sym__Noreturn] = ACTIONS(4480), + [anon_sym__Nonnull] = ACTIONS(4480), + [anon_sym_nullable] = ACTIONS(4480), + [anon_sym__Complex] = ACTIONS(4480), + [anon_sym__Nullable] = ACTIONS(4478), + [anon_sym__Nullable_result] = ACTIONS(4480), + [anon_sym__Null_unspecified] = ACTIONS(4480), + [anon_sym___autoreleasing] = ACTIONS(4480), + [anon_sym___block] = ACTIONS(4480), + [anon_sym___bridge] = ACTIONS(4478), + [anon_sym___bridge_retained] = ACTIONS(4480), + [anon_sym___bridge_transfer] = ACTIONS(4480), + [anon_sym___complex] = ACTIONS(4480), + [anon_sym___const] = ACTIONS(4480), + [anon_sym___imag] = ACTIONS(4480), + [anon_sym___kindof] = ACTIONS(4480), + [anon_sym___nonnull] = ACTIONS(4480), + [anon_sym___nullable] = ACTIONS(4480), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4480), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4480), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4480), + [anon_sym___real] = ACTIONS(4480), + [anon_sym___strong] = ACTIONS(4480), + [anon_sym___unsafe_unretained] = ACTIONS(4480), + [anon_sym___unused] = ACTIONS(4480), + [anon_sym___weak] = ACTIONS(4480), + [anon_sym_alignas] = ACTIONS(4480), + [anon_sym__Alignas] = ACTIONS(4480), + [anon_sym_QMARK] = ACTIONS(4480), + [anon_sym_STAR_EQ] = ACTIONS(4480), + [anon_sym_SLASH_EQ] = ACTIONS(4480), + [anon_sym_PERCENT_EQ] = ACTIONS(4480), + [anon_sym_PLUS_EQ] = ACTIONS(4480), + [anon_sym_DASH_EQ] = ACTIONS(4480), + [anon_sym_LT_LT_EQ] = ACTIONS(4480), + [anon_sym_GT_GT_EQ] = ACTIONS(4480), + [anon_sym_AMP_EQ] = ACTIONS(4480), + [anon_sym_CARET_EQ] = ACTIONS(4480), + [anon_sym_PIPE_EQ] = ACTIONS(4480), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4480), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4480), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4480), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4480), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4480), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4480), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4480), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4480), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4480), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4480), + [anon_sym_NS_AVAILABLE] = ACTIONS(4478), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4480), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4480), + [anon_sym_API_AVAILABLE] = ACTIONS(4480), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4480), + [anon_sym_API_DEPRECATED] = ACTIONS(4480), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4480), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4480), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4480), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4480), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4480), + [anon_sym___deprecated_msg] = ACTIONS(4480), + [anon_sym___deprecated_enum_msg] = ACTIONS(4480), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4480), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4480), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4480), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4480), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4480), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4480), + }, + [2101] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5226), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_PERCENT] = ACTIONS(5228), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4025), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(5232), + [anon_sym_BANG_EQ] = ACTIONS(5232), + [anon_sym_GT] = ACTIONS(5234), + [anon_sym_GT_EQ] = ACTIONS(5236), + [anon_sym_LT_EQ] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5234), + [anon_sym_LT_LT] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5238), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_extern] = ACTIONS(4027), + [anon_sym___attribute__] = ACTIONS(4027), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4027), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4027), + [anon_sym_register] = ACTIONS(4027), + [anon_sym_inline] = ACTIONS(4027), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4027), + [anon_sym___forceinline] = ACTIONS(4027), + [anon_sym_thread_local] = ACTIONS(4027), + [anon_sym___thread] = ACTIONS(4027), + [anon_sym_CG_EXTERN] = ACTIONS(4027), + [anon_sym_CG_INLINE] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4027), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4027), + [anon_sym_IBOutlet] = ACTIONS(4027), + [anon_sym_IBInspectable] = ACTIONS(4027), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4027), + [anon_sym_NS_INLINE] = ACTIONS(4027), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4027), + [anon_sym_OBJC_EXPORT] = ACTIONS(4027), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4027), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4027), + [anon_sym_volatile] = ACTIONS(4027), + [anon_sym_restrict] = ACTIONS(4027), + [anon_sym___restrict__] = ACTIONS(4027), + [anon_sym__Atomic] = ACTIONS(4027), + [anon_sym__Noreturn] = ACTIONS(4027), + [anon_sym__Nonnull] = ACTIONS(4027), + [anon_sym_nullable] = ACTIONS(4027), + [anon_sym__Complex] = ACTIONS(4027), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4027), + [anon_sym__Null_unspecified] = ACTIONS(4027), + [anon_sym___autoreleasing] = ACTIONS(4027), + [anon_sym___block] = ACTIONS(4027), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4027), + [anon_sym___bridge_transfer] = ACTIONS(4027), + [anon_sym___complex] = ACTIONS(4027), + [anon_sym___const] = ACTIONS(4027), + [anon_sym___imag] = ACTIONS(4027), + [anon_sym___kindof] = ACTIONS(4027), + [anon_sym___nonnull] = ACTIONS(4027), + [anon_sym___nullable] = ACTIONS(4027), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4027), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4027), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4027), + [anon_sym___real] = ACTIONS(4027), + [anon_sym___strong] = ACTIONS(4027), + [anon_sym___unsafe_unretained] = ACTIONS(4027), + [anon_sym___unused] = ACTIONS(4027), + [anon_sym___weak] = ACTIONS(4027), + [anon_sym_alignas] = ACTIONS(4027), + [anon_sym__Alignas] = ACTIONS(4027), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4027), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4027), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4027), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4027), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_API_AVAILABLE] = ACTIONS(4027), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_API_DEPRECATED] = ACTIONS(4027), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4027), + [anon_sym___deprecated_msg] = ACTIONS(4027), + [anon_sym___deprecated_enum_msg] = ACTIONS(4027), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4027), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4027), + }, + [2102] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5226), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_PERCENT] = ACTIONS(5228), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4025), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(5234), + [anon_sym_GT_EQ] = ACTIONS(5236), + [anon_sym_LT_EQ] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5234), + [anon_sym_LT_LT] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5238), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_extern] = ACTIONS(4027), + [anon_sym___attribute__] = ACTIONS(4027), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4027), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4027), + [anon_sym_register] = ACTIONS(4027), + [anon_sym_inline] = ACTIONS(4027), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4027), + [anon_sym___forceinline] = ACTIONS(4027), + [anon_sym_thread_local] = ACTIONS(4027), + [anon_sym___thread] = ACTIONS(4027), + [anon_sym_CG_EXTERN] = ACTIONS(4027), + [anon_sym_CG_INLINE] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4027), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4027), + [anon_sym_IBOutlet] = ACTIONS(4027), + [anon_sym_IBInspectable] = ACTIONS(4027), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4027), + [anon_sym_NS_INLINE] = ACTIONS(4027), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4027), + [anon_sym_OBJC_EXPORT] = ACTIONS(4027), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4027), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4027), + [anon_sym_volatile] = ACTIONS(4027), + [anon_sym_restrict] = ACTIONS(4027), + [anon_sym___restrict__] = ACTIONS(4027), + [anon_sym__Atomic] = ACTIONS(4027), + [anon_sym__Noreturn] = ACTIONS(4027), + [anon_sym__Nonnull] = ACTIONS(4027), + [anon_sym_nullable] = ACTIONS(4027), + [anon_sym__Complex] = ACTIONS(4027), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4027), + [anon_sym__Null_unspecified] = ACTIONS(4027), + [anon_sym___autoreleasing] = ACTIONS(4027), + [anon_sym___block] = ACTIONS(4027), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4027), + [anon_sym___bridge_transfer] = ACTIONS(4027), + [anon_sym___complex] = ACTIONS(4027), + [anon_sym___const] = ACTIONS(4027), + [anon_sym___imag] = ACTIONS(4027), + [anon_sym___kindof] = ACTIONS(4027), + [anon_sym___nonnull] = ACTIONS(4027), + [anon_sym___nullable] = ACTIONS(4027), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4027), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4027), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4027), + [anon_sym___real] = ACTIONS(4027), + [anon_sym___strong] = ACTIONS(4027), + [anon_sym___unsafe_unretained] = ACTIONS(4027), + [anon_sym___unused] = ACTIONS(4027), + [anon_sym___weak] = ACTIONS(4027), + [anon_sym_alignas] = ACTIONS(4027), + [anon_sym__Alignas] = ACTIONS(4027), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4027), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4027), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4027), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4027), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_API_AVAILABLE] = ACTIONS(4027), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_API_DEPRECATED] = ACTIONS(4027), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4027), + [anon_sym___deprecated_msg] = ACTIONS(4027), + [anon_sym___deprecated_enum_msg] = ACTIONS(4027), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4027), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4027), + }, + [2103] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5226), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_PERCENT] = ACTIONS(5228), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4025), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(4025), + [anon_sym_GT_EQ] = ACTIONS(4027), + [anon_sym_LT_EQ] = ACTIONS(4027), + [anon_sym_LT] = ACTIONS(4025), + [anon_sym_LT_LT] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5238), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_extern] = ACTIONS(4027), + [anon_sym___attribute__] = ACTIONS(4027), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4027), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4027), + [anon_sym_register] = ACTIONS(4027), + [anon_sym_inline] = ACTIONS(4027), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4027), + [anon_sym___forceinline] = ACTIONS(4027), + [anon_sym_thread_local] = ACTIONS(4027), + [anon_sym___thread] = ACTIONS(4027), + [anon_sym_CG_EXTERN] = ACTIONS(4027), + [anon_sym_CG_INLINE] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4027), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4027), + [anon_sym_IBOutlet] = ACTIONS(4027), + [anon_sym_IBInspectable] = ACTIONS(4027), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4027), + [anon_sym_NS_INLINE] = ACTIONS(4027), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4027), + [anon_sym_OBJC_EXPORT] = ACTIONS(4027), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4027), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4027), + [anon_sym_volatile] = ACTIONS(4027), + [anon_sym_restrict] = ACTIONS(4027), + [anon_sym___restrict__] = ACTIONS(4027), + [anon_sym__Atomic] = ACTIONS(4027), + [anon_sym__Noreturn] = ACTIONS(4027), + [anon_sym__Nonnull] = ACTIONS(4027), + [anon_sym_nullable] = ACTIONS(4027), + [anon_sym__Complex] = ACTIONS(4027), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4027), + [anon_sym__Null_unspecified] = ACTIONS(4027), + [anon_sym___autoreleasing] = ACTIONS(4027), + [anon_sym___block] = ACTIONS(4027), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4027), + [anon_sym___bridge_transfer] = ACTIONS(4027), + [anon_sym___complex] = ACTIONS(4027), + [anon_sym___const] = ACTIONS(4027), + [anon_sym___imag] = ACTIONS(4027), + [anon_sym___kindof] = ACTIONS(4027), + [anon_sym___nonnull] = ACTIONS(4027), + [anon_sym___nullable] = ACTIONS(4027), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4027), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4027), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4027), + [anon_sym___real] = ACTIONS(4027), + [anon_sym___strong] = ACTIONS(4027), + [anon_sym___unsafe_unretained] = ACTIONS(4027), + [anon_sym___unused] = ACTIONS(4027), + [anon_sym___weak] = ACTIONS(4027), + [anon_sym_alignas] = ACTIONS(4027), + [anon_sym__Alignas] = ACTIONS(4027), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4027), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4027), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4027), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4027), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_API_AVAILABLE] = ACTIONS(4027), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_API_DEPRECATED] = ACTIONS(4027), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4027), + [anon_sym___deprecated_msg] = ACTIONS(4027), + [anon_sym___deprecated_enum_msg] = ACTIONS(4027), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4027), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4027), + }, + [2104] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5226), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_PERCENT] = ACTIONS(5228), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4025), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(4025), + [anon_sym_GT_EQ] = ACTIONS(4027), + [anon_sym_LT_EQ] = ACTIONS(4027), + [anon_sym_LT] = ACTIONS(4025), + [anon_sym_LT_LT] = ACTIONS(4025), + [anon_sym_GT_GT] = ACTIONS(4025), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_extern] = ACTIONS(4027), + [anon_sym___attribute__] = ACTIONS(4027), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4027), + [anon_sym_EQ] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4027), + [anon_sym_register] = ACTIONS(4027), + [anon_sym_inline] = ACTIONS(4027), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4027), + [anon_sym___forceinline] = ACTIONS(4027), + [anon_sym_thread_local] = ACTIONS(4027), + [anon_sym___thread] = ACTIONS(4027), + [anon_sym_CG_EXTERN] = ACTIONS(4027), + [anon_sym_CG_INLINE] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4027), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4027), + [anon_sym_IBOutlet] = ACTIONS(4027), + [anon_sym_IBInspectable] = ACTIONS(4027), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4027), + [anon_sym_NS_INLINE] = ACTIONS(4027), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4027), + [anon_sym_OBJC_EXPORT] = ACTIONS(4027), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4027), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4027), + [anon_sym_volatile] = ACTIONS(4027), + [anon_sym_restrict] = ACTIONS(4027), + [anon_sym___restrict__] = ACTIONS(4027), + [anon_sym__Atomic] = ACTIONS(4027), + [anon_sym__Noreturn] = ACTIONS(4027), + [anon_sym__Nonnull] = ACTIONS(4027), + [anon_sym_nullable] = ACTIONS(4027), + [anon_sym__Complex] = ACTIONS(4027), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4027), + [anon_sym__Null_unspecified] = ACTIONS(4027), + [anon_sym___autoreleasing] = ACTIONS(4027), + [anon_sym___block] = ACTIONS(4027), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4027), + [anon_sym___bridge_transfer] = ACTIONS(4027), + [anon_sym___complex] = ACTIONS(4027), + [anon_sym___const] = ACTIONS(4027), + [anon_sym___imag] = ACTIONS(4027), + [anon_sym___kindof] = ACTIONS(4027), + [anon_sym___nonnull] = ACTIONS(4027), + [anon_sym___nullable] = ACTIONS(4027), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4027), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4027), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4027), + [anon_sym___real] = ACTIONS(4027), + [anon_sym___strong] = ACTIONS(4027), + [anon_sym___unsafe_unretained] = ACTIONS(4027), + [anon_sym___unused] = ACTIONS(4027), + [anon_sym___weak] = ACTIONS(4027), + [anon_sym_alignas] = ACTIONS(4027), + [anon_sym__Alignas] = ACTIONS(4027), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_LT_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_GT_EQ] = ACTIONS(4027), + [anon_sym_AMP_EQ] = ACTIONS(4027), + [anon_sym_CARET_EQ] = ACTIONS(4027), + [anon_sym_PIPE_EQ] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4027), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4027), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4027), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4027), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_API_AVAILABLE] = ACTIONS(4027), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_API_DEPRECATED] = ACTIONS(4027), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4027), + [anon_sym___deprecated_msg] = ACTIONS(4027), + [anon_sym___deprecated_enum_msg] = ACTIONS(4027), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4027), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4027), + }, + [2105] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5293), + [anon_sym_COMMA] = ACTIONS(4488), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5226), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_PERCENT] = ACTIONS(5228), + [anon_sym_PIPE_PIPE] = ACTIONS(5273), + [anon_sym_AMP_AMP] = ACTIONS(5275), + [anon_sym_PIPE] = ACTIONS(5277), + [anon_sym_CARET] = ACTIONS(5279), + [anon_sym_AMP] = ACTIONS(5230), + [anon_sym_EQ_EQ] = ACTIONS(5232), + [anon_sym_BANG_EQ] = ACTIONS(5232), + [anon_sym_GT] = ACTIONS(5234), + [anon_sym_GT_EQ] = ACTIONS(5236), + [anon_sym_LT_EQ] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5234), + [anon_sym_LT_LT] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5238), + [anon_sym_SEMI] = ACTIONS(4488), + [anon_sym___extension__] = ACTIONS(4488), + [anon_sym_extern] = ACTIONS(4488), + [anon_sym___attribute__] = ACTIONS(4488), + [anon_sym___attribute] = ACTIONS(4486), + [anon_sym_noreturn] = ACTIONS(4488), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4488), + [anon_sym_static] = ACTIONS(4488), + [anon_sym_EQ] = ACTIONS(4486), + [anon_sym_auto] = ACTIONS(4488), + [anon_sym_register] = ACTIONS(4488), + [anon_sym_inline] = ACTIONS(4488), + [anon_sym___inline] = ACTIONS(4486), + [anon_sym___inline__] = ACTIONS(4488), + [anon_sym___forceinline] = ACTIONS(4488), + [anon_sym_thread_local] = ACTIONS(4488), + [anon_sym___thread] = ACTIONS(4488), + [anon_sym_CG_EXTERN] = ACTIONS(4488), + [anon_sym_CG_INLINE] = ACTIONS(4488), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4488), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4488), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4488), + [anon_sym_IBOutlet] = ACTIONS(4488), + [anon_sym_IBInspectable] = ACTIONS(4488), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4488), + [anon_sym_NS_INLINE] = ACTIONS(4488), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4488), + [anon_sym_OBJC_EXPORT] = ACTIONS(4488), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4488), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4488), + [anon_sym_const] = ACTIONS(4486), + [anon_sym_constexpr] = ACTIONS(4488), + [anon_sym_volatile] = ACTIONS(4488), + [anon_sym_restrict] = ACTIONS(4488), + [anon_sym___restrict__] = ACTIONS(4488), + [anon_sym__Atomic] = ACTIONS(4488), + [anon_sym__Noreturn] = ACTIONS(4488), + [anon_sym__Nonnull] = ACTIONS(4488), + [anon_sym_nullable] = ACTIONS(4488), + [anon_sym__Complex] = ACTIONS(4488), + [anon_sym__Nullable] = ACTIONS(4486), + [anon_sym__Nullable_result] = ACTIONS(4488), + [anon_sym__Null_unspecified] = ACTIONS(4488), + [anon_sym___autoreleasing] = ACTIONS(4488), + [anon_sym___block] = ACTIONS(4488), + [anon_sym___bridge] = ACTIONS(4486), + [anon_sym___bridge_retained] = ACTIONS(4488), + [anon_sym___bridge_transfer] = ACTIONS(4488), + [anon_sym___complex] = ACTIONS(4488), + [anon_sym___const] = ACTIONS(4488), + [anon_sym___imag] = ACTIONS(4488), + [anon_sym___kindof] = ACTIONS(4488), + [anon_sym___nonnull] = ACTIONS(4488), + [anon_sym___nullable] = ACTIONS(4488), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4488), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4488), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4488), + [anon_sym___real] = ACTIONS(4488), + [anon_sym___strong] = ACTIONS(4488), + [anon_sym___unsafe_unretained] = ACTIONS(4488), + [anon_sym___unused] = ACTIONS(4488), + [anon_sym___weak] = ACTIONS(4488), + [anon_sym_alignas] = ACTIONS(4488), + [anon_sym__Alignas] = ACTIONS(4488), + [anon_sym_QMARK] = ACTIONS(5295), + [anon_sym_STAR_EQ] = ACTIONS(4488), + [anon_sym_SLASH_EQ] = ACTIONS(4488), + [anon_sym_PERCENT_EQ] = ACTIONS(4488), + [anon_sym_PLUS_EQ] = ACTIONS(4488), + [anon_sym_DASH_EQ] = ACTIONS(4488), + [anon_sym_LT_LT_EQ] = ACTIONS(4488), + [anon_sym_GT_GT_EQ] = ACTIONS(4488), + [anon_sym_AMP_EQ] = ACTIONS(4488), + [anon_sym_CARET_EQ] = ACTIONS(4488), + [anon_sym_PIPE_EQ] = ACTIONS(4488), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4488), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4488), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4488), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4488), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4488), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4488), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4488), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4488), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4488), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4488), + [anon_sym_NS_AVAILABLE] = ACTIONS(4486), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4488), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4488), + [anon_sym_API_AVAILABLE] = ACTIONS(4488), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4488), + [anon_sym_API_DEPRECATED] = ACTIONS(4488), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4488), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4488), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4488), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4488), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4488), + [anon_sym___deprecated_msg] = ACTIONS(4488), + [anon_sym___deprecated_enum_msg] = ACTIONS(4488), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4488), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4488), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4488), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4488), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4488), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4488), + }, + [2106] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5293), + [anon_sym_COMMA] = ACTIONS(4476), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5226), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_PERCENT] = ACTIONS(5228), + [anon_sym_PIPE_PIPE] = ACTIONS(5273), + [anon_sym_AMP_AMP] = ACTIONS(5275), + [anon_sym_PIPE] = ACTIONS(5277), + [anon_sym_CARET] = ACTIONS(5279), + [anon_sym_AMP] = ACTIONS(5230), + [anon_sym_EQ_EQ] = ACTIONS(5232), + [anon_sym_BANG_EQ] = ACTIONS(5232), + [anon_sym_GT] = ACTIONS(5234), + [anon_sym_GT_EQ] = ACTIONS(5236), + [anon_sym_LT_EQ] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5234), + [anon_sym_LT_LT] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5238), + [anon_sym_SEMI] = ACTIONS(4476), + [anon_sym___extension__] = ACTIONS(4476), + [anon_sym_extern] = ACTIONS(4476), + [anon_sym___attribute__] = ACTIONS(4476), + [anon_sym___attribute] = ACTIONS(4474), + [anon_sym_noreturn] = ACTIONS(4476), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4476), + [anon_sym_static] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4474), + [anon_sym_auto] = ACTIONS(4476), + [anon_sym_register] = ACTIONS(4476), + [anon_sym_inline] = ACTIONS(4476), + [anon_sym___inline] = ACTIONS(4474), + [anon_sym___inline__] = ACTIONS(4476), + [anon_sym___forceinline] = ACTIONS(4476), + [anon_sym_thread_local] = ACTIONS(4476), + [anon_sym___thread] = ACTIONS(4476), + [anon_sym_CG_EXTERN] = ACTIONS(4476), + [anon_sym_CG_INLINE] = ACTIONS(4476), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4476), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4476), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4476), + [anon_sym_IBOutlet] = ACTIONS(4476), + [anon_sym_IBInspectable] = ACTIONS(4476), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4476), + [anon_sym_NS_INLINE] = ACTIONS(4476), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4476), + [anon_sym_OBJC_EXPORT] = ACTIONS(4476), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4476), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4476), + [anon_sym_const] = ACTIONS(4474), + [anon_sym_constexpr] = ACTIONS(4476), + [anon_sym_volatile] = ACTIONS(4476), + [anon_sym_restrict] = ACTIONS(4476), + [anon_sym___restrict__] = ACTIONS(4476), + [anon_sym__Atomic] = ACTIONS(4476), + [anon_sym__Noreturn] = ACTIONS(4476), + [anon_sym__Nonnull] = ACTIONS(4476), + [anon_sym_nullable] = ACTIONS(4476), + [anon_sym__Complex] = ACTIONS(4476), + [anon_sym__Nullable] = ACTIONS(4474), + [anon_sym__Nullable_result] = ACTIONS(4476), + [anon_sym__Null_unspecified] = ACTIONS(4476), + [anon_sym___autoreleasing] = ACTIONS(4476), + [anon_sym___block] = ACTIONS(4476), + [anon_sym___bridge] = ACTIONS(4474), + [anon_sym___bridge_retained] = ACTIONS(4476), + [anon_sym___bridge_transfer] = ACTIONS(4476), + [anon_sym___complex] = ACTIONS(4476), + [anon_sym___const] = ACTIONS(4476), + [anon_sym___imag] = ACTIONS(4476), + [anon_sym___kindof] = ACTIONS(4476), + [anon_sym___nonnull] = ACTIONS(4476), + [anon_sym___nullable] = ACTIONS(4476), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4476), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4476), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4476), + [anon_sym___real] = ACTIONS(4476), + [anon_sym___strong] = ACTIONS(4476), + [anon_sym___unsafe_unretained] = ACTIONS(4476), + [anon_sym___unused] = ACTIONS(4476), + [anon_sym___weak] = ACTIONS(4476), + [anon_sym_alignas] = ACTIONS(4476), + [anon_sym__Alignas] = ACTIONS(4476), + [anon_sym_QMARK] = ACTIONS(5295), + [anon_sym_STAR_EQ] = ACTIONS(4476), + [anon_sym_SLASH_EQ] = ACTIONS(4476), + [anon_sym_PERCENT_EQ] = ACTIONS(4476), + [anon_sym_PLUS_EQ] = ACTIONS(4476), + [anon_sym_DASH_EQ] = ACTIONS(4476), + [anon_sym_LT_LT_EQ] = ACTIONS(4476), + [anon_sym_GT_GT_EQ] = ACTIONS(4476), + [anon_sym_AMP_EQ] = ACTIONS(4476), + [anon_sym_CARET_EQ] = ACTIONS(4476), + [anon_sym_PIPE_EQ] = ACTIONS(4476), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4476), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4476), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4476), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4476), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4476), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4476), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4476), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4476), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4476), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4476), + [anon_sym_NS_AVAILABLE] = ACTIONS(4474), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4476), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4476), + [anon_sym_API_AVAILABLE] = ACTIONS(4476), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4476), + [anon_sym_API_DEPRECATED] = ACTIONS(4476), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4476), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4476), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4476), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4476), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4476), + [anon_sym___deprecated_msg] = ACTIONS(4476), + [anon_sym___deprecated_enum_msg] = ACTIONS(4476), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4476), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4476), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4476), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4476), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4476), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4476), + }, + [2107] = { + [sym_compound_statement] = STATE(5347), + [sym_type_qualifier] = STATE(3347), + [sym_alignas_qualifier] = STATE(4177), + [sym_expression] = STATE(4426), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_objc_bridge] = STATE(6300), + [sym_typeof_specifier] = STATE(5347), + [sym_availability] = STATE(6300), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5112), + [anon_sym_RPAREN] = ACTIONS(5114), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5116), + [anon_sym_noreturn] = ACTIONS(5124), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(5122), + [anon_sym_constexpr] = ACTIONS(5124), + [anon_sym_volatile] = ACTIONS(5124), + [anon_sym_restrict] = ACTIONS(5124), + [anon_sym___restrict__] = ACTIONS(5124), + [anon_sym__Atomic] = ACTIONS(5124), + [anon_sym__Noreturn] = ACTIONS(5124), + [anon_sym__Nonnull] = ACTIONS(5124), + [anon_sym_nullable] = ACTIONS(5124), + [anon_sym__Complex] = ACTIONS(5124), + [anon_sym__Nullable] = ACTIONS(5124), + [anon_sym__Nullable_result] = ACTIONS(5124), + [anon_sym__Null_unspecified] = ACTIONS(5124), + [anon_sym___autoreleasing] = ACTIONS(5124), + [anon_sym___block] = ACTIONS(5124), + [anon_sym___bridge] = ACTIONS(5124), + [anon_sym___bridge_retained] = ACTIONS(5124), + [anon_sym___bridge_transfer] = ACTIONS(5124), + [anon_sym___complex] = ACTIONS(5124), + [anon_sym___const] = ACTIONS(5124), + [anon_sym___imag] = ACTIONS(5126), + [anon_sym___kindof] = ACTIONS(5124), + [anon_sym___nonnull] = ACTIONS(5124), + [anon_sym___nullable] = ACTIONS(5124), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5124), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5124), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5124), + [anon_sym___real] = ACTIONS(5126), + [anon_sym___strong] = ACTIONS(5124), + [anon_sym___unsafe_unretained] = ACTIONS(5124), + [anon_sym___unused] = ACTIONS(5124), + [anon_sym___weak] = ACTIONS(5124), + [anon_sym_alignas] = ACTIONS(5128), + [anon_sym__Alignas] = ACTIONS(5128), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_objc_bridge_related] = ACTIONS(5130), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_availability] = ACTIONS(5132), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2108] = { + [aux_sym_method_declaration_repeat2] = STATE(2108), + [sym_identifier] = ACTIONS(5297), + [aux_sym_preproc_def_token1] = ACTIONS(5297), + [aux_sym_preproc_if_token1] = ACTIONS(5297), + [aux_sym_preproc_if_token2] = ACTIONS(5297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5297), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5297), + [aux_sym_preproc_else_token1] = ACTIONS(5297), + [aux_sym_preproc_elif_token1] = ACTIONS(5297), + [sym_preproc_directive] = ACTIONS(5297), + [anon_sym_DASH] = ACTIONS(5299), + [anon_sym_PLUS] = ACTIONS(5299), + [anon_sym_SEMI] = ACTIONS(5301), + [anon_sym___extension__] = ACTIONS(5297), + [anon_sym_typedef] = ACTIONS(5297), + [anon_sym_extern] = ACTIONS(5297), + [anon_sym___attribute__] = ACTIONS(5297), + [anon_sym___attribute] = ACTIONS(5297), + [anon_sym_noreturn] = ACTIONS(5297), + [anon_sym_LBRACK] = ACTIONS(5299), + [anon_sym___declspec] = ACTIONS(5297), + [anon_sym___cdecl] = ACTIONS(5297), + [anon_sym___clrcall] = ACTIONS(5297), + [anon_sym___stdcall] = ACTIONS(5297), + [anon_sym___fastcall] = ACTIONS(5297), + [anon_sym___thiscall] = ACTIONS(5297), + [anon_sym___vectorcall] = ACTIONS(5297), + [anon_sym_signed] = ACTIONS(5297), + [anon_sym_unsigned] = ACTIONS(5297), + [anon_sym_long] = ACTIONS(5297), + [anon_sym_short] = ACTIONS(5297), + [anon_sym_static] = ACTIONS(5297), + [anon_sym_auto] = ACTIONS(5297), + [anon_sym_register] = ACTIONS(5297), + [anon_sym_inline] = ACTIONS(5297), + [anon_sym___inline] = ACTIONS(5297), + [anon_sym___inline__] = ACTIONS(5297), + [anon_sym___forceinline] = ACTIONS(5297), + [anon_sym_thread_local] = ACTIONS(5297), + [anon_sym___thread] = ACTIONS(5297), + [anon_sym_CG_EXTERN] = ACTIONS(5297), + [anon_sym_CG_INLINE] = ACTIONS(5297), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5297), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5297), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5297), + [anon_sym_IBOutlet] = ACTIONS(5297), + [anon_sym_IBInspectable] = ACTIONS(5297), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5297), + [anon_sym_NS_INLINE] = ACTIONS(5297), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5297), + [anon_sym_OBJC_EXPORT] = ACTIONS(5297), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5297), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5297), + [anon_sym_const] = ACTIONS(5297), + [anon_sym_constexpr] = ACTIONS(5297), + [anon_sym_volatile] = ACTIONS(5297), + [anon_sym_restrict] = ACTIONS(5297), + [anon_sym___restrict__] = ACTIONS(5297), + [anon_sym__Atomic] = ACTIONS(5297), + [anon_sym__Noreturn] = ACTIONS(5297), + [anon_sym__Nonnull] = ACTIONS(5297), + [anon_sym_nullable] = ACTIONS(5297), + [anon_sym__Complex] = ACTIONS(5297), + [anon_sym__Nullable] = ACTIONS(5297), + [anon_sym__Nullable_result] = ACTIONS(5297), + [anon_sym__Null_unspecified] = ACTIONS(5297), + [anon_sym___autoreleasing] = ACTIONS(5297), + [anon_sym___block] = ACTIONS(5297), + [anon_sym___bridge] = ACTIONS(5297), + [anon_sym___bridge_retained] = ACTIONS(5297), + [anon_sym___bridge_transfer] = ACTIONS(5297), + [anon_sym___complex] = ACTIONS(5297), + [anon_sym___const] = ACTIONS(5297), + [anon_sym___imag] = ACTIONS(5297), + [anon_sym___kindof] = ACTIONS(5297), + [anon_sym___nonnull] = ACTIONS(5297), + [anon_sym___nullable] = ACTIONS(5297), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5297), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5297), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5297), + [anon_sym___real] = ACTIONS(5297), + [anon_sym___strong] = ACTIONS(5297), + [anon_sym___unsafe_unretained] = ACTIONS(5297), + [anon_sym___unused] = ACTIONS(5297), + [anon_sym___weak] = ACTIONS(5297), + [anon_sym_alignas] = ACTIONS(5297), + [anon_sym__Alignas] = ACTIONS(5297), + [sym_primitive_type] = ACTIONS(5297), + [anon_sym_enum] = ACTIONS(5297), + [anon_sym_struct] = ACTIONS(5297), + [anon_sym_union] = ACTIONS(5297), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5297), + [anon_sym___typeof] = ACTIONS(5297), + [anon_sym_typeof] = ACTIONS(5297), + [aux_sym_preproc_undef_token1] = ACTIONS(5297), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5297), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5297), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5297), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5297), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5297), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5297), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5297), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5297), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5297), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5297), + [anon_sym_NS_AVAILABLE] = ACTIONS(5297), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5297), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5297), + [anon_sym_API_AVAILABLE] = ACTIONS(5297), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5297), + [anon_sym_API_DEPRECATED] = ACTIONS(5297), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5297), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5297), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5297), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5297), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5297), + [anon_sym___deprecated_msg] = ACTIONS(5297), + [anon_sym___deprecated_enum_msg] = ACTIONS(5297), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5297), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5297), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5297), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5297), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5297), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5297), + [anon_sym_ATproperty] = ACTIONS(5299), + [anon_sym_BOOL] = ACTIONS(5297), + [anon_sym_IMP] = ACTIONS(5297), + [anon_sym_SEL] = ACTIONS(5297), + [anon_sym_Class] = ACTIONS(5297), + [anon_sym_id] = ACTIONS(5297), + }, + [2109] = { + [sym_identifier] = ACTIONS(2466), + [aux_sym_preproc_def_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token2] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2466), + [aux_sym_preproc_else_token1] = ACTIONS(2466), + [aux_sym_preproc_elif_token1] = ACTIONS(2466), + [sym_preproc_directive] = ACTIONS(2466), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym___extension__] = ACTIONS(2466), + [anon_sym_typedef] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym___attribute__] = ACTIONS(2466), + [anon_sym___attribute] = ACTIONS(2466), + [anon_sym_noreturn] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2468), + [anon_sym___declspec] = ACTIONS(2466), + [anon_sym___cdecl] = ACTIONS(2466), + [anon_sym___clrcall] = ACTIONS(2466), + [anon_sym___stdcall] = ACTIONS(2466), + [anon_sym___fastcall] = ACTIONS(2466), + [anon_sym___thiscall] = ACTIONS(2466), + [anon_sym___vectorcall] = ACTIONS(2466), + [anon_sym_signed] = ACTIONS(2466), + [anon_sym_unsigned] = ACTIONS(2466), + [anon_sym_long] = ACTIONS(2466), + [anon_sym_short] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_auto] = ACTIONS(2466), + [anon_sym_register] = ACTIONS(2466), + [anon_sym_inline] = ACTIONS(2466), + [anon_sym___inline] = ACTIONS(2466), + [anon_sym___inline__] = ACTIONS(2466), + [anon_sym___forceinline] = ACTIONS(2466), + [anon_sym_thread_local] = ACTIONS(2466), + [anon_sym___thread] = ACTIONS(2466), + [anon_sym_CG_EXTERN] = ACTIONS(2466), + [anon_sym_CG_INLINE] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2466), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2466), + [anon_sym_IBOutlet] = ACTIONS(2466), + [anon_sym_IBInspectable] = ACTIONS(2466), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2466), + [anon_sym_NS_INLINE] = ACTIONS(2466), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2466), + [anon_sym_OBJC_EXPORT] = ACTIONS(2466), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_constexpr] = ACTIONS(2466), + [anon_sym_volatile] = ACTIONS(2466), + [anon_sym_restrict] = ACTIONS(2466), + [anon_sym___restrict__] = ACTIONS(2466), + [anon_sym__Atomic] = ACTIONS(2466), + [anon_sym__Noreturn] = ACTIONS(2466), + [anon_sym__Nonnull] = ACTIONS(2466), + [anon_sym_nullable] = ACTIONS(2466), + [anon_sym__Complex] = ACTIONS(2466), + [anon_sym__Nullable] = ACTIONS(2466), + [anon_sym__Nullable_result] = ACTIONS(2466), + [anon_sym__Null_unspecified] = ACTIONS(2466), + [anon_sym___autoreleasing] = ACTIONS(2466), + [anon_sym___block] = ACTIONS(2466), + [anon_sym___bridge] = ACTIONS(2466), + [anon_sym___bridge_retained] = ACTIONS(2466), + [anon_sym___bridge_transfer] = ACTIONS(2466), + [anon_sym___complex] = ACTIONS(2466), + [anon_sym___const] = ACTIONS(2466), + [anon_sym___imag] = ACTIONS(2466), + [anon_sym___kindof] = ACTIONS(2466), + [anon_sym___nonnull] = ACTIONS(2466), + [anon_sym___nullable] = ACTIONS(2466), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2466), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2466), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2466), + [anon_sym___real] = ACTIONS(2466), + [anon_sym___strong] = ACTIONS(2466), + [anon_sym___unsafe_unretained] = ACTIONS(2466), + [anon_sym___unused] = ACTIONS(2466), + [anon_sym___weak] = ACTIONS(2466), + [anon_sym_alignas] = ACTIONS(2466), + [anon_sym__Alignas] = ACTIONS(2466), + [sym_primitive_type] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), + [anon_sym_struct] = ACTIONS(2466), + [anon_sym_union] = ACTIONS(2466), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2466), + [anon_sym___typeof] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2466), + [aux_sym_preproc_undef_token1] = ACTIONS(2466), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2466), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2466), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2466), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2466), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE] = ACTIONS(2466), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_API_AVAILABLE] = ACTIONS(2466), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_API_DEPRECATED] = ACTIONS(2466), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2466), + [anon_sym___deprecated_msg] = ACTIONS(2466), + [anon_sym___deprecated_enum_msg] = ACTIONS(2466), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2466), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2466), + [anon_sym_ATsynthesize] = ACTIONS(2468), + [anon_sym_ATdynamic] = ACTIONS(2468), + [anon_sym_ATproperty] = ACTIONS(2468), + [anon_sym_BOOL] = ACTIONS(2466), + [anon_sym_IMP] = ACTIONS(2466), + [anon_sym_SEL] = ACTIONS(2466), + [anon_sym_Class] = ACTIONS(2466), + [anon_sym_id] = ACTIONS(2466), + }, + [2110] = { + [sym_identifier] = ACTIONS(2466), + [aux_sym_preproc_def_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token2] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2466), + [aux_sym_preproc_else_token1] = ACTIONS(2466), + [aux_sym_preproc_elif_token1] = ACTIONS(2466), + [sym_preproc_directive] = ACTIONS(2466), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym___extension__] = ACTIONS(2466), + [anon_sym_typedef] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym___attribute__] = ACTIONS(2466), + [anon_sym___attribute] = ACTIONS(2466), + [anon_sym_noreturn] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2468), + [anon_sym___declspec] = ACTIONS(2466), + [anon_sym___cdecl] = ACTIONS(2466), + [anon_sym___clrcall] = ACTIONS(2466), + [anon_sym___stdcall] = ACTIONS(2466), + [anon_sym___fastcall] = ACTIONS(2466), + [anon_sym___thiscall] = ACTIONS(2466), + [anon_sym___vectorcall] = ACTIONS(2466), + [anon_sym_signed] = ACTIONS(2466), + [anon_sym_unsigned] = ACTIONS(2466), + [anon_sym_long] = ACTIONS(2466), + [anon_sym_short] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_auto] = ACTIONS(2466), + [anon_sym_register] = ACTIONS(2466), + [anon_sym_inline] = ACTIONS(2466), + [anon_sym___inline] = ACTIONS(2466), + [anon_sym___inline__] = ACTIONS(2466), + [anon_sym___forceinline] = ACTIONS(2466), + [anon_sym_thread_local] = ACTIONS(2466), + [anon_sym___thread] = ACTIONS(2466), + [anon_sym_CG_EXTERN] = ACTIONS(2466), + [anon_sym_CG_INLINE] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2466), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2466), + [anon_sym_IBOutlet] = ACTIONS(2466), + [anon_sym_IBInspectable] = ACTIONS(2466), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2466), + [anon_sym_NS_INLINE] = ACTIONS(2466), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2466), + [anon_sym_OBJC_EXPORT] = ACTIONS(2466), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_constexpr] = ACTIONS(2466), + [anon_sym_volatile] = ACTIONS(2466), + [anon_sym_restrict] = ACTIONS(2466), + [anon_sym___restrict__] = ACTIONS(2466), + [anon_sym__Atomic] = ACTIONS(2466), + [anon_sym__Noreturn] = ACTIONS(2466), + [anon_sym__Nonnull] = ACTIONS(2466), + [anon_sym_nullable] = ACTIONS(2466), + [anon_sym__Complex] = ACTIONS(2466), + [anon_sym__Nullable] = ACTIONS(2466), + [anon_sym__Nullable_result] = ACTIONS(2466), + [anon_sym__Null_unspecified] = ACTIONS(2466), + [anon_sym___autoreleasing] = ACTIONS(2466), + [anon_sym___block] = ACTIONS(2466), + [anon_sym___bridge] = ACTIONS(2466), + [anon_sym___bridge_retained] = ACTIONS(2466), + [anon_sym___bridge_transfer] = ACTIONS(2466), + [anon_sym___complex] = ACTIONS(2466), + [anon_sym___const] = ACTIONS(2466), + [anon_sym___imag] = ACTIONS(2466), + [anon_sym___kindof] = ACTIONS(2466), + [anon_sym___nonnull] = ACTIONS(2466), + [anon_sym___nullable] = ACTIONS(2466), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2466), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2466), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2466), + [anon_sym___real] = ACTIONS(2466), + [anon_sym___strong] = ACTIONS(2466), + [anon_sym___unsafe_unretained] = ACTIONS(2466), + [anon_sym___unused] = ACTIONS(2466), + [anon_sym___weak] = ACTIONS(2466), + [anon_sym_alignas] = ACTIONS(2466), + [anon_sym__Alignas] = ACTIONS(2466), + [sym_primitive_type] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), + [anon_sym_struct] = ACTIONS(2466), + [anon_sym_union] = ACTIONS(2466), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2466), + [anon_sym___typeof] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2466), + [aux_sym_preproc_undef_token1] = ACTIONS(2466), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2466), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2466), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2466), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2466), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE] = ACTIONS(2466), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_API_AVAILABLE] = ACTIONS(2466), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_API_DEPRECATED] = ACTIONS(2466), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2466), + [anon_sym___deprecated_msg] = ACTIONS(2466), + [anon_sym___deprecated_enum_msg] = ACTIONS(2466), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2466), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2466), + [anon_sym_ATsynthesize] = ACTIONS(2468), + [anon_sym_ATdynamic] = ACTIONS(2468), + [anon_sym_ATproperty] = ACTIONS(2468), + [anon_sym_BOOL] = ACTIONS(2466), + [anon_sym_IMP] = ACTIONS(2466), + [anon_sym_SEL] = ACTIONS(2466), + [anon_sym_Class] = ACTIONS(2466), + [anon_sym_id] = ACTIONS(2466), + }, + [2111] = { + [sym_identifier] = ACTIONS(2470), + [aux_sym_preproc_def_token1] = ACTIONS(2470), + [aux_sym_preproc_if_token1] = ACTIONS(2470), + [aux_sym_preproc_if_token2] = ACTIONS(2470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2470), + [aux_sym_preproc_else_token1] = ACTIONS(2470), + [aux_sym_preproc_elif_token1] = ACTIONS(2470), + [sym_preproc_directive] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2472), + [anon_sym_PLUS] = ACTIONS(2472), + [anon_sym___extension__] = ACTIONS(2470), + [anon_sym_typedef] = ACTIONS(2470), + [anon_sym_extern] = ACTIONS(2470), + [anon_sym___attribute__] = ACTIONS(2470), + [anon_sym___attribute] = ACTIONS(2470), + [anon_sym_noreturn] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2472), + [anon_sym___declspec] = ACTIONS(2470), + [anon_sym___cdecl] = ACTIONS(2470), + [anon_sym___clrcall] = ACTIONS(2470), + [anon_sym___stdcall] = ACTIONS(2470), + [anon_sym___fastcall] = ACTIONS(2470), + [anon_sym___thiscall] = ACTIONS(2470), + [anon_sym___vectorcall] = ACTIONS(2470), + [anon_sym_signed] = ACTIONS(2470), + [anon_sym_unsigned] = ACTIONS(2470), + [anon_sym_long] = ACTIONS(2470), + [anon_sym_short] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_auto] = ACTIONS(2470), + [anon_sym_register] = ACTIONS(2470), + [anon_sym_inline] = ACTIONS(2470), + [anon_sym___inline] = ACTIONS(2470), + [anon_sym___inline__] = ACTIONS(2470), + [anon_sym___forceinline] = ACTIONS(2470), + [anon_sym_thread_local] = ACTIONS(2470), + [anon_sym___thread] = ACTIONS(2470), + [anon_sym_CG_EXTERN] = ACTIONS(2470), + [anon_sym_CG_INLINE] = ACTIONS(2470), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2470), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2470), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2470), + [anon_sym_IBOutlet] = ACTIONS(2470), + [anon_sym_IBInspectable] = ACTIONS(2470), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2470), + [anon_sym_NS_INLINE] = ACTIONS(2470), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2470), + [anon_sym_OBJC_EXPORT] = ACTIONS(2470), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2470), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_constexpr] = ACTIONS(2470), + [anon_sym_volatile] = ACTIONS(2470), + [anon_sym_restrict] = ACTIONS(2470), + [anon_sym___restrict__] = ACTIONS(2470), + [anon_sym__Atomic] = ACTIONS(2470), + [anon_sym__Noreturn] = ACTIONS(2470), + [anon_sym__Nonnull] = ACTIONS(2470), + [anon_sym_nullable] = ACTIONS(2470), + [anon_sym__Complex] = ACTIONS(2470), + [anon_sym__Nullable] = ACTIONS(2470), + [anon_sym__Nullable_result] = ACTIONS(2470), + [anon_sym__Null_unspecified] = ACTIONS(2470), + [anon_sym___autoreleasing] = ACTIONS(2470), + [anon_sym___block] = ACTIONS(2470), + [anon_sym___bridge] = ACTIONS(2470), + [anon_sym___bridge_retained] = ACTIONS(2470), + [anon_sym___bridge_transfer] = ACTIONS(2470), + [anon_sym___complex] = ACTIONS(2470), + [anon_sym___const] = ACTIONS(2470), + [anon_sym___imag] = ACTIONS(2470), + [anon_sym___kindof] = ACTIONS(2470), + [anon_sym___nonnull] = ACTIONS(2470), + [anon_sym___nullable] = ACTIONS(2470), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2470), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2470), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2470), + [anon_sym___real] = ACTIONS(2470), + [anon_sym___strong] = ACTIONS(2470), + [anon_sym___unsafe_unretained] = ACTIONS(2470), + [anon_sym___unused] = ACTIONS(2470), + [anon_sym___weak] = ACTIONS(2470), + [anon_sym_alignas] = ACTIONS(2470), + [anon_sym__Alignas] = ACTIONS(2470), + [sym_primitive_type] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [anon_sym_struct] = ACTIONS(2470), + [anon_sym_union] = ACTIONS(2470), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2470), + [anon_sym___typeof] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [aux_sym_preproc_undef_token1] = ACTIONS(2470), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2470), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2470), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2470), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2470), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2470), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2470), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2470), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2470), + [anon_sym_NS_AVAILABLE] = ACTIONS(2470), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2470), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_API_AVAILABLE] = ACTIONS(2470), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_API_DEPRECATED] = ACTIONS(2470), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2470), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2470), + [anon_sym___deprecated_msg] = ACTIONS(2470), + [anon_sym___deprecated_enum_msg] = ACTIONS(2470), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2470), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2470), + [anon_sym_ATsynthesize] = ACTIONS(2472), + [anon_sym_ATdynamic] = ACTIONS(2472), + [anon_sym_ATproperty] = ACTIONS(2472), + [anon_sym_BOOL] = ACTIONS(2470), + [anon_sym_IMP] = ACTIONS(2470), + [anon_sym_SEL] = ACTIONS(2470), + [anon_sym_Class] = ACTIONS(2470), + [anon_sym_id] = ACTIONS(2470), + }, + [2112] = { + [sym_identifier] = ACTIONS(5304), + [aux_sym_preproc_def_token1] = ACTIONS(5304), + [aux_sym_preproc_if_token1] = ACTIONS(5304), + [aux_sym_preproc_if_token2] = ACTIONS(5304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5304), + [aux_sym_preproc_else_token1] = ACTIONS(5304), + [aux_sym_preproc_elif_token1] = ACTIONS(5304), + [sym_preproc_directive] = ACTIONS(5304), + [anon_sym_DASH] = ACTIONS(5306), + [anon_sym_PLUS] = ACTIONS(5306), + [anon_sym_SEMI] = ACTIONS(5308), + [anon_sym___extension__] = ACTIONS(5304), + [anon_sym_typedef] = ACTIONS(5304), + [anon_sym_extern] = ACTIONS(5304), + [anon_sym___attribute__] = ACTIONS(5304), + [anon_sym___attribute] = ACTIONS(5304), + [anon_sym_noreturn] = ACTIONS(5304), + [anon_sym_LBRACK] = ACTIONS(5306), + [anon_sym___declspec] = ACTIONS(5304), + [anon_sym___cdecl] = ACTIONS(5304), + [anon_sym___clrcall] = ACTIONS(5304), + [anon_sym___stdcall] = ACTIONS(5304), + [anon_sym___fastcall] = ACTIONS(5304), + [anon_sym___thiscall] = ACTIONS(5304), + [anon_sym___vectorcall] = ACTIONS(5304), + [anon_sym_signed] = ACTIONS(5304), + [anon_sym_unsigned] = ACTIONS(5304), + [anon_sym_long] = ACTIONS(5304), + [anon_sym_short] = ACTIONS(5304), + [anon_sym_static] = ACTIONS(5304), + [anon_sym_auto] = ACTIONS(5304), + [anon_sym_register] = ACTIONS(5304), + [anon_sym_inline] = ACTIONS(5304), + [anon_sym___inline] = ACTIONS(5304), + [anon_sym___inline__] = ACTIONS(5304), + [anon_sym___forceinline] = ACTIONS(5304), + [anon_sym_thread_local] = ACTIONS(5304), + [anon_sym___thread] = ACTIONS(5304), + [anon_sym_CG_EXTERN] = ACTIONS(5304), + [anon_sym_CG_INLINE] = ACTIONS(5304), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5304), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5304), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5304), + [anon_sym_IBOutlet] = ACTIONS(5304), + [anon_sym_IBInspectable] = ACTIONS(5304), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5304), + [anon_sym_NS_INLINE] = ACTIONS(5304), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5304), + [anon_sym_OBJC_EXPORT] = ACTIONS(5304), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5304), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5304), + [anon_sym_const] = ACTIONS(5304), + [anon_sym_constexpr] = ACTIONS(5304), + [anon_sym_volatile] = ACTIONS(5304), + [anon_sym_restrict] = ACTIONS(5304), + [anon_sym___restrict__] = ACTIONS(5304), + [anon_sym__Atomic] = ACTIONS(5304), + [anon_sym__Noreturn] = ACTIONS(5304), + [anon_sym__Nonnull] = ACTIONS(5304), + [anon_sym_nullable] = ACTIONS(5304), + [anon_sym__Complex] = ACTIONS(5304), + [anon_sym__Nullable] = ACTIONS(5304), + [anon_sym__Nullable_result] = ACTIONS(5304), + [anon_sym__Null_unspecified] = ACTIONS(5304), + [anon_sym___autoreleasing] = ACTIONS(5304), + [anon_sym___block] = ACTIONS(5304), + [anon_sym___bridge] = ACTIONS(5304), + [anon_sym___bridge_retained] = ACTIONS(5304), + [anon_sym___bridge_transfer] = ACTIONS(5304), + [anon_sym___complex] = ACTIONS(5304), + [anon_sym___const] = ACTIONS(5304), + [anon_sym___imag] = ACTIONS(5304), + [anon_sym___kindof] = ACTIONS(5304), + [anon_sym___nonnull] = ACTIONS(5304), + [anon_sym___nullable] = ACTIONS(5304), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5304), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5304), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5304), + [anon_sym___real] = ACTIONS(5304), + [anon_sym___strong] = ACTIONS(5304), + [anon_sym___unsafe_unretained] = ACTIONS(5304), + [anon_sym___unused] = ACTIONS(5304), + [anon_sym___weak] = ACTIONS(5304), + [anon_sym_alignas] = ACTIONS(5304), + [anon_sym__Alignas] = ACTIONS(5304), + [sym_primitive_type] = ACTIONS(5304), + [anon_sym_enum] = ACTIONS(5304), + [anon_sym_struct] = ACTIONS(5304), + [anon_sym_union] = ACTIONS(5304), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5304), + [anon_sym___typeof] = ACTIONS(5304), + [anon_sym_typeof] = ACTIONS(5304), + [aux_sym_preproc_undef_token1] = ACTIONS(5304), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5304), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5304), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5304), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5304), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5304), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5304), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5304), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5304), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5304), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5304), + [anon_sym_NS_AVAILABLE] = ACTIONS(5304), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5304), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5304), + [anon_sym_API_AVAILABLE] = ACTIONS(5304), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5304), + [anon_sym_API_DEPRECATED] = ACTIONS(5304), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5304), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5304), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5304), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5304), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5304), + [anon_sym___deprecated_msg] = ACTIONS(5304), + [anon_sym___deprecated_enum_msg] = ACTIONS(5304), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5304), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5304), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5304), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5304), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5304), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5304), + [anon_sym_ATsynthesize] = ACTIONS(5306), + [anon_sym_ATdynamic] = ACTIONS(5306), + [anon_sym_BOOL] = ACTIONS(5304), + [anon_sym_IMP] = ACTIONS(5304), + [anon_sym_SEL] = ACTIONS(5304), + [anon_sym_Class] = ACTIONS(5304), + [anon_sym_id] = ACTIONS(5304), + }, + [2113] = { + [sym_identifier] = ACTIONS(5310), + [aux_sym_preproc_def_token1] = ACTIONS(5310), + [aux_sym_preproc_if_token1] = ACTIONS(5310), + [aux_sym_preproc_if_token2] = ACTIONS(5310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5310), + [aux_sym_preproc_else_token1] = ACTIONS(5310), + [aux_sym_preproc_elif_token1] = ACTIONS(5310), + [sym_preproc_directive] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5312), + [anon_sym_PLUS] = ACTIONS(5312), + [anon_sym_SEMI] = ACTIONS(5314), + [anon_sym___extension__] = ACTIONS(5310), + [anon_sym_typedef] = ACTIONS(5310), + [anon_sym_extern] = ACTIONS(5310), + [anon_sym___attribute__] = ACTIONS(5310), + [anon_sym___attribute] = ACTIONS(5310), + [anon_sym_noreturn] = ACTIONS(5310), + [anon_sym_LBRACK] = ACTIONS(5312), + [anon_sym___declspec] = ACTIONS(5310), + [anon_sym___cdecl] = ACTIONS(5310), + [anon_sym___clrcall] = ACTIONS(5310), + [anon_sym___stdcall] = ACTIONS(5310), + [anon_sym___fastcall] = ACTIONS(5310), + [anon_sym___thiscall] = ACTIONS(5310), + [anon_sym___vectorcall] = ACTIONS(5310), + [anon_sym_signed] = ACTIONS(5310), + [anon_sym_unsigned] = ACTIONS(5310), + [anon_sym_long] = ACTIONS(5310), + [anon_sym_short] = ACTIONS(5310), + [anon_sym_static] = ACTIONS(5310), + [anon_sym_auto] = ACTIONS(5310), + [anon_sym_register] = ACTIONS(5310), + [anon_sym_inline] = ACTIONS(5310), + [anon_sym___inline] = ACTIONS(5310), + [anon_sym___inline__] = ACTIONS(5310), + [anon_sym___forceinline] = ACTIONS(5310), + [anon_sym_thread_local] = ACTIONS(5310), + [anon_sym___thread] = ACTIONS(5310), + [anon_sym_CG_EXTERN] = ACTIONS(5310), + [anon_sym_CG_INLINE] = ACTIONS(5310), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5310), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5310), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5310), + [anon_sym_IBOutlet] = ACTIONS(5310), + [anon_sym_IBInspectable] = ACTIONS(5310), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5310), + [anon_sym_NS_INLINE] = ACTIONS(5310), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5310), + [anon_sym_OBJC_EXPORT] = ACTIONS(5310), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5310), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5310), + [anon_sym_const] = ACTIONS(5310), + [anon_sym_constexpr] = ACTIONS(5310), + [anon_sym_volatile] = ACTIONS(5310), + [anon_sym_restrict] = ACTIONS(5310), + [anon_sym___restrict__] = ACTIONS(5310), + [anon_sym__Atomic] = ACTIONS(5310), + [anon_sym__Noreturn] = ACTIONS(5310), + [anon_sym__Nonnull] = ACTIONS(5310), + [anon_sym_nullable] = ACTIONS(5310), + [anon_sym__Complex] = ACTIONS(5310), + [anon_sym__Nullable] = ACTIONS(5310), + [anon_sym__Nullable_result] = ACTIONS(5310), + [anon_sym__Null_unspecified] = ACTIONS(5310), + [anon_sym___autoreleasing] = ACTIONS(5310), + [anon_sym___block] = ACTIONS(5310), + [anon_sym___bridge] = ACTIONS(5310), + [anon_sym___bridge_retained] = ACTIONS(5310), + [anon_sym___bridge_transfer] = ACTIONS(5310), + [anon_sym___complex] = ACTIONS(5310), + [anon_sym___const] = ACTIONS(5310), + [anon_sym___imag] = ACTIONS(5310), + [anon_sym___kindof] = ACTIONS(5310), + [anon_sym___nonnull] = ACTIONS(5310), + [anon_sym___nullable] = ACTIONS(5310), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5310), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5310), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5310), + [anon_sym___real] = ACTIONS(5310), + [anon_sym___strong] = ACTIONS(5310), + [anon_sym___unsafe_unretained] = ACTIONS(5310), + [anon_sym___unused] = ACTIONS(5310), + [anon_sym___weak] = ACTIONS(5310), + [anon_sym_alignas] = ACTIONS(5310), + [anon_sym__Alignas] = ACTIONS(5310), + [sym_primitive_type] = ACTIONS(5310), + [anon_sym_enum] = ACTIONS(5310), + [anon_sym_struct] = ACTIONS(5310), + [anon_sym_union] = ACTIONS(5310), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5310), + [anon_sym___typeof] = ACTIONS(5310), + [anon_sym_typeof] = ACTIONS(5310), + [aux_sym_preproc_undef_token1] = ACTIONS(5310), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5310), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5310), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5310), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5310), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5310), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5310), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5310), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5310), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5310), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5310), + [anon_sym_NS_AVAILABLE] = ACTIONS(5310), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5310), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5310), + [anon_sym_API_AVAILABLE] = ACTIONS(5310), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5310), + [anon_sym_API_DEPRECATED] = ACTIONS(5310), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5310), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5310), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5310), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5310), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5310), + [anon_sym___deprecated_msg] = ACTIONS(5310), + [anon_sym___deprecated_enum_msg] = ACTIONS(5310), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5310), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5310), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5310), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5310), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5310), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5310), + [anon_sym_ATsynthesize] = ACTIONS(5312), + [anon_sym_ATdynamic] = ACTIONS(5312), + [anon_sym_BOOL] = ACTIONS(5310), + [anon_sym_IMP] = ACTIONS(5310), + [anon_sym_SEL] = ACTIONS(5310), + [anon_sym_Class] = ACTIONS(5310), + [anon_sym_id] = ACTIONS(5310), + }, + [2114] = { + [sym_identifier] = ACTIONS(2512), + [aux_sym_preproc_def_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token2] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2512), + [aux_sym_preproc_else_token1] = ACTIONS(2512), + [aux_sym_preproc_elif_token1] = ACTIONS(2512), + [sym_preproc_directive] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2514), + [anon_sym_PLUS] = ACTIONS(2514), + [anon_sym___extension__] = ACTIONS(2512), + [anon_sym_typedef] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym___attribute__] = ACTIONS(2512), + [anon_sym___attribute] = ACTIONS(2512), + [anon_sym_noreturn] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym___declspec] = ACTIONS(2512), + [anon_sym___cdecl] = ACTIONS(2512), + [anon_sym___clrcall] = ACTIONS(2512), + [anon_sym___stdcall] = ACTIONS(2512), + [anon_sym___fastcall] = ACTIONS(2512), + [anon_sym___thiscall] = ACTIONS(2512), + [anon_sym___vectorcall] = ACTIONS(2512), + [anon_sym_signed] = ACTIONS(2512), + [anon_sym_unsigned] = ACTIONS(2512), + [anon_sym_long] = ACTIONS(2512), + [anon_sym_short] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_auto] = ACTIONS(2512), + [anon_sym_register] = ACTIONS(2512), + [anon_sym_inline] = ACTIONS(2512), + [anon_sym___inline] = ACTIONS(2512), + [anon_sym___inline__] = ACTIONS(2512), + [anon_sym___forceinline] = ACTIONS(2512), + [anon_sym_thread_local] = ACTIONS(2512), + [anon_sym___thread] = ACTIONS(2512), + [anon_sym_CG_EXTERN] = ACTIONS(2512), + [anon_sym_CG_INLINE] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2512), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2512), + [anon_sym_IBOutlet] = ACTIONS(2512), + [anon_sym_IBInspectable] = ACTIONS(2512), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2512), + [anon_sym_NS_INLINE] = ACTIONS(2512), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2512), + [anon_sym_OBJC_EXPORT] = ACTIONS(2512), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_constexpr] = ACTIONS(2512), + [anon_sym_volatile] = ACTIONS(2512), + [anon_sym_restrict] = ACTIONS(2512), + [anon_sym___restrict__] = ACTIONS(2512), + [anon_sym__Atomic] = ACTIONS(2512), + [anon_sym__Noreturn] = ACTIONS(2512), + [anon_sym__Nonnull] = ACTIONS(2512), + [anon_sym_nullable] = ACTIONS(2512), + [anon_sym__Complex] = ACTIONS(2512), + [anon_sym__Nullable] = ACTIONS(2512), + [anon_sym__Nullable_result] = ACTIONS(2512), + [anon_sym__Null_unspecified] = ACTIONS(2512), + [anon_sym___autoreleasing] = ACTIONS(2512), + [anon_sym___block] = ACTIONS(2512), + [anon_sym___bridge] = ACTIONS(2512), + [anon_sym___bridge_retained] = ACTIONS(2512), + [anon_sym___bridge_transfer] = ACTIONS(2512), + [anon_sym___complex] = ACTIONS(2512), + [anon_sym___const] = ACTIONS(2512), + [anon_sym___imag] = ACTIONS(2512), + [anon_sym___kindof] = ACTIONS(2512), + [anon_sym___nonnull] = ACTIONS(2512), + [anon_sym___nullable] = ACTIONS(2512), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2512), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2512), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2512), + [anon_sym___real] = ACTIONS(2512), + [anon_sym___strong] = ACTIONS(2512), + [anon_sym___unsafe_unretained] = ACTIONS(2512), + [anon_sym___unused] = ACTIONS(2512), + [anon_sym___weak] = ACTIONS(2512), + [anon_sym_alignas] = ACTIONS(2512), + [anon_sym__Alignas] = ACTIONS(2512), + [sym_primitive_type] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [anon_sym_struct] = ACTIONS(2512), + [anon_sym_union] = ACTIONS(2512), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2512), + [anon_sym___typeof] = ACTIONS(2512), + [anon_sym_typeof] = ACTIONS(2512), + [aux_sym_preproc_undef_token1] = ACTIONS(2512), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2512), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2512), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2512), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2512), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE] = ACTIONS(2512), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_API_AVAILABLE] = ACTIONS(2512), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_API_DEPRECATED] = ACTIONS(2512), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2512), + [anon_sym___deprecated_msg] = ACTIONS(2512), + [anon_sym___deprecated_enum_msg] = ACTIONS(2512), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2512), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2512), + [anon_sym_ATsynthesize] = ACTIONS(2514), + [anon_sym_ATdynamic] = ACTIONS(2514), + [anon_sym_ATproperty] = ACTIONS(2514), + [anon_sym_BOOL] = ACTIONS(2512), + [anon_sym_IMP] = ACTIONS(2512), + [anon_sym_SEL] = ACTIONS(2512), + [anon_sym_Class] = ACTIONS(2512), + [anon_sym_id] = ACTIONS(2512), + }, + [2115] = { + [sym_identifier] = ACTIONS(2512), + [aux_sym_preproc_def_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token2] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2512), + [aux_sym_preproc_else_token1] = ACTIONS(2512), + [aux_sym_preproc_elif_token1] = ACTIONS(2512), + [sym_preproc_directive] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2514), + [anon_sym_PLUS] = ACTIONS(2514), + [anon_sym___extension__] = ACTIONS(2512), + [anon_sym_typedef] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym___attribute__] = ACTIONS(2512), + [anon_sym___attribute] = ACTIONS(2512), + [anon_sym_noreturn] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym___declspec] = ACTIONS(2512), + [anon_sym___cdecl] = ACTIONS(2512), + [anon_sym___clrcall] = ACTIONS(2512), + [anon_sym___stdcall] = ACTIONS(2512), + [anon_sym___fastcall] = ACTIONS(2512), + [anon_sym___thiscall] = ACTIONS(2512), + [anon_sym___vectorcall] = ACTIONS(2512), + [anon_sym_signed] = ACTIONS(2512), + [anon_sym_unsigned] = ACTIONS(2512), + [anon_sym_long] = ACTIONS(2512), + [anon_sym_short] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_auto] = ACTIONS(2512), + [anon_sym_register] = ACTIONS(2512), + [anon_sym_inline] = ACTIONS(2512), + [anon_sym___inline] = ACTIONS(2512), + [anon_sym___inline__] = ACTIONS(2512), + [anon_sym___forceinline] = ACTIONS(2512), + [anon_sym_thread_local] = ACTIONS(2512), + [anon_sym___thread] = ACTIONS(2512), + [anon_sym_CG_EXTERN] = ACTIONS(2512), + [anon_sym_CG_INLINE] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2512), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2512), + [anon_sym_IBOutlet] = ACTIONS(2512), + [anon_sym_IBInspectable] = ACTIONS(2512), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2512), + [anon_sym_NS_INLINE] = ACTIONS(2512), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2512), + [anon_sym_OBJC_EXPORT] = ACTIONS(2512), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_constexpr] = ACTIONS(2512), + [anon_sym_volatile] = ACTIONS(2512), + [anon_sym_restrict] = ACTIONS(2512), + [anon_sym___restrict__] = ACTIONS(2512), + [anon_sym__Atomic] = ACTIONS(2512), + [anon_sym__Noreturn] = ACTIONS(2512), + [anon_sym__Nonnull] = ACTIONS(2512), + [anon_sym_nullable] = ACTIONS(2512), + [anon_sym__Complex] = ACTIONS(2512), + [anon_sym__Nullable] = ACTIONS(2512), + [anon_sym__Nullable_result] = ACTIONS(2512), + [anon_sym__Null_unspecified] = ACTIONS(2512), + [anon_sym___autoreleasing] = ACTIONS(2512), + [anon_sym___block] = ACTIONS(2512), + [anon_sym___bridge] = ACTIONS(2512), + [anon_sym___bridge_retained] = ACTIONS(2512), + [anon_sym___bridge_transfer] = ACTIONS(2512), + [anon_sym___complex] = ACTIONS(2512), + [anon_sym___const] = ACTIONS(2512), + [anon_sym___imag] = ACTIONS(2512), + [anon_sym___kindof] = ACTIONS(2512), + [anon_sym___nonnull] = ACTIONS(2512), + [anon_sym___nullable] = ACTIONS(2512), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2512), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2512), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2512), + [anon_sym___real] = ACTIONS(2512), + [anon_sym___strong] = ACTIONS(2512), + [anon_sym___unsafe_unretained] = ACTIONS(2512), + [anon_sym___unused] = ACTIONS(2512), + [anon_sym___weak] = ACTIONS(2512), + [anon_sym_alignas] = ACTIONS(2512), + [anon_sym__Alignas] = ACTIONS(2512), + [sym_primitive_type] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [anon_sym_struct] = ACTIONS(2512), + [anon_sym_union] = ACTIONS(2512), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2512), + [anon_sym___typeof] = ACTIONS(2512), + [anon_sym_typeof] = ACTIONS(2512), + [aux_sym_preproc_undef_token1] = ACTIONS(2512), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2512), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2512), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2512), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2512), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE] = ACTIONS(2512), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_API_AVAILABLE] = ACTIONS(2512), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_API_DEPRECATED] = ACTIONS(2512), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2512), + [anon_sym___deprecated_msg] = ACTIONS(2512), + [anon_sym___deprecated_enum_msg] = ACTIONS(2512), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2512), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2512), + [anon_sym_ATsynthesize] = ACTIONS(2514), + [anon_sym_ATdynamic] = ACTIONS(2514), + [anon_sym_ATproperty] = ACTIONS(2514), + [anon_sym_BOOL] = ACTIONS(2512), + [anon_sym_IMP] = ACTIONS(2512), + [anon_sym_SEL] = ACTIONS(2512), + [anon_sym_Class] = ACTIONS(2512), + [anon_sym_id] = ACTIONS(2512), + }, + [2116] = { + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token2] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [aux_sym_preproc_else_token1] = ACTIONS(2424), + [aux_sym_preproc_elif_token1] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_DASH] = ACTIONS(2426), + [anon_sym_PLUS] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_auto] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_CG_EXTERN] = ACTIONS(2424), + [anon_sym_CG_INLINE] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2424), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2424), + [anon_sym_IBOutlet] = ACTIONS(2424), + [anon_sym_IBInspectable] = ACTIONS(2424), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2424), + [anon_sym_NS_INLINE] = ACTIONS(2424), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2424), + [anon_sym_OBJC_EXPORT] = ACTIONS(2424), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_nullable] = ACTIONS(2424), + [anon_sym__Complex] = ACTIONS(2424), + [anon_sym__Nullable] = ACTIONS(2424), + [anon_sym__Nullable_result] = ACTIONS(2424), + [anon_sym__Null_unspecified] = ACTIONS(2424), + [anon_sym___autoreleasing] = ACTIONS(2424), + [anon_sym___block] = ACTIONS(2424), + [anon_sym___bridge] = ACTIONS(2424), + [anon_sym___bridge_retained] = ACTIONS(2424), + [anon_sym___bridge_transfer] = ACTIONS(2424), + [anon_sym___complex] = ACTIONS(2424), + [anon_sym___const] = ACTIONS(2424), + [anon_sym___imag] = ACTIONS(2424), + [anon_sym___kindof] = ACTIONS(2424), + [anon_sym___nonnull] = ACTIONS(2424), + [anon_sym___nullable] = ACTIONS(2424), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2424), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2424), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2424), + [anon_sym___real] = ACTIONS(2424), + [anon_sym___strong] = ACTIONS(2424), + [anon_sym___unsafe_unretained] = ACTIONS(2424), + [anon_sym___unused] = ACTIONS(2424), + [anon_sym___weak] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2424), + [anon_sym___typeof] = ACTIONS(2424), + [anon_sym_typeof] = ACTIONS(2424), + [aux_sym_preproc_undef_token1] = ACTIONS(2424), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2424), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2424), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2424), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2424), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE] = ACTIONS(2424), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_API_AVAILABLE] = ACTIONS(2424), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_API_DEPRECATED] = ACTIONS(2424), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2424), + [anon_sym___deprecated_msg] = ACTIONS(2424), + [anon_sym___deprecated_enum_msg] = ACTIONS(2424), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2424), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2424), + [anon_sym_ATsynthesize] = ACTIONS(2426), + [anon_sym_ATdynamic] = ACTIONS(2426), + [anon_sym_ATproperty] = ACTIONS(2426), + [anon_sym_BOOL] = ACTIONS(2424), + [anon_sym_IMP] = ACTIONS(2424), + [anon_sym_SEL] = ACTIONS(2424), + [anon_sym_Class] = ACTIONS(2424), + [anon_sym_id] = ACTIONS(2424), + }, + [2117] = { + [sym_identifier] = ACTIONS(2428), + [aux_sym_preproc_def_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token2] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2428), + [aux_sym_preproc_else_token1] = ACTIONS(2428), + [aux_sym_preproc_elif_token1] = ACTIONS(2428), + [sym_preproc_directive] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2430), + [anon_sym_PLUS] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym___cdecl] = ACTIONS(2428), + [anon_sym___clrcall] = ACTIONS(2428), + [anon_sym___stdcall] = ACTIONS(2428), + [anon_sym___fastcall] = ACTIONS(2428), + [anon_sym___thiscall] = ACTIONS(2428), + [anon_sym___vectorcall] = ACTIONS(2428), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_auto] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_CG_EXTERN] = ACTIONS(2428), + [anon_sym_CG_INLINE] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2428), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2428), + [anon_sym_IBOutlet] = ACTIONS(2428), + [anon_sym_IBInspectable] = ACTIONS(2428), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2428), + [anon_sym_NS_INLINE] = ACTIONS(2428), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2428), + [anon_sym_OBJC_EXPORT] = ACTIONS(2428), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_nullable] = ACTIONS(2428), + [anon_sym__Complex] = ACTIONS(2428), + [anon_sym__Nullable] = ACTIONS(2428), + [anon_sym__Nullable_result] = ACTIONS(2428), + [anon_sym__Null_unspecified] = ACTIONS(2428), + [anon_sym___autoreleasing] = ACTIONS(2428), + [anon_sym___block] = ACTIONS(2428), + [anon_sym___bridge] = ACTIONS(2428), + [anon_sym___bridge_retained] = ACTIONS(2428), + [anon_sym___bridge_transfer] = ACTIONS(2428), + [anon_sym___complex] = ACTIONS(2428), + [anon_sym___const] = ACTIONS(2428), + [anon_sym___imag] = ACTIONS(2428), + [anon_sym___kindof] = ACTIONS(2428), + [anon_sym___nonnull] = ACTIONS(2428), + [anon_sym___nullable] = ACTIONS(2428), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2428), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2428), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2428), + [anon_sym___real] = ACTIONS(2428), + [anon_sym___strong] = ACTIONS(2428), + [anon_sym___unsafe_unretained] = ACTIONS(2428), + [anon_sym___unused] = ACTIONS(2428), + [anon_sym___weak] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2428), + [anon_sym___typeof] = ACTIONS(2428), + [anon_sym_typeof] = ACTIONS(2428), + [aux_sym_preproc_undef_token1] = ACTIONS(2428), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2428), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2428), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2428), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2428), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE] = ACTIONS(2428), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_API_AVAILABLE] = ACTIONS(2428), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_API_DEPRECATED] = ACTIONS(2428), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2428), + [anon_sym___deprecated_msg] = ACTIONS(2428), + [anon_sym___deprecated_enum_msg] = ACTIONS(2428), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2428), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2428), + [anon_sym_ATsynthesize] = ACTIONS(2430), + [anon_sym_ATdynamic] = ACTIONS(2430), + [anon_sym_ATproperty] = ACTIONS(2430), + [anon_sym_BOOL] = ACTIONS(2428), + [anon_sym_IMP] = ACTIONS(2428), + [anon_sym_SEL] = ACTIONS(2428), + [anon_sym_Class] = ACTIONS(2428), + [anon_sym_id] = ACTIONS(2428), + }, + [2118] = { + [sym_identifier] = ACTIONS(2432), + [aux_sym_preproc_def_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token2] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2432), + [aux_sym_preproc_else_token1] = ACTIONS(2432), + [aux_sym_preproc_elif_token1] = ACTIONS(2432), + [sym_preproc_directive] = ACTIONS(2432), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym___extension__] = ACTIONS(2432), + [anon_sym_typedef] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym___attribute__] = ACTIONS(2432), + [anon_sym___attribute] = ACTIONS(2432), + [anon_sym_noreturn] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym___declspec] = ACTIONS(2432), + [anon_sym___cdecl] = ACTIONS(2432), + [anon_sym___clrcall] = ACTIONS(2432), + [anon_sym___stdcall] = ACTIONS(2432), + [anon_sym___fastcall] = ACTIONS(2432), + [anon_sym___thiscall] = ACTIONS(2432), + [anon_sym___vectorcall] = ACTIONS(2432), + [anon_sym_signed] = ACTIONS(2432), + [anon_sym_unsigned] = ACTIONS(2432), + [anon_sym_long] = ACTIONS(2432), + [anon_sym_short] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_auto] = ACTIONS(2432), + [anon_sym_register] = ACTIONS(2432), + [anon_sym_inline] = ACTIONS(2432), + [anon_sym___inline] = ACTIONS(2432), + [anon_sym___inline__] = ACTIONS(2432), + [anon_sym___forceinline] = ACTIONS(2432), + [anon_sym_thread_local] = ACTIONS(2432), + [anon_sym___thread] = ACTIONS(2432), + [anon_sym_CG_EXTERN] = ACTIONS(2432), + [anon_sym_CG_INLINE] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2432), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2432), + [anon_sym_IBOutlet] = ACTIONS(2432), + [anon_sym_IBInspectable] = ACTIONS(2432), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2432), + [anon_sym_NS_INLINE] = ACTIONS(2432), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2432), + [anon_sym_OBJC_EXPORT] = ACTIONS(2432), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_constexpr] = ACTIONS(2432), + [anon_sym_volatile] = ACTIONS(2432), + [anon_sym_restrict] = ACTIONS(2432), + [anon_sym___restrict__] = ACTIONS(2432), + [anon_sym__Atomic] = ACTIONS(2432), + [anon_sym__Noreturn] = ACTIONS(2432), + [anon_sym__Nonnull] = ACTIONS(2432), + [anon_sym_nullable] = ACTIONS(2432), + [anon_sym__Complex] = ACTIONS(2432), + [anon_sym__Nullable] = ACTIONS(2432), + [anon_sym__Nullable_result] = ACTIONS(2432), + [anon_sym__Null_unspecified] = ACTIONS(2432), + [anon_sym___autoreleasing] = ACTIONS(2432), + [anon_sym___block] = ACTIONS(2432), + [anon_sym___bridge] = ACTIONS(2432), + [anon_sym___bridge_retained] = ACTIONS(2432), + [anon_sym___bridge_transfer] = ACTIONS(2432), + [anon_sym___complex] = ACTIONS(2432), + [anon_sym___const] = ACTIONS(2432), + [anon_sym___imag] = ACTIONS(2432), + [anon_sym___kindof] = ACTIONS(2432), + [anon_sym___nonnull] = ACTIONS(2432), + [anon_sym___nullable] = ACTIONS(2432), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2432), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2432), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2432), + [anon_sym___real] = ACTIONS(2432), + [anon_sym___strong] = ACTIONS(2432), + [anon_sym___unsafe_unretained] = ACTIONS(2432), + [anon_sym___unused] = ACTIONS(2432), + [anon_sym___weak] = ACTIONS(2432), + [anon_sym_alignas] = ACTIONS(2432), + [anon_sym__Alignas] = ACTIONS(2432), + [sym_primitive_type] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2432), + [anon_sym___typeof] = ACTIONS(2432), + [anon_sym_typeof] = ACTIONS(2432), + [aux_sym_preproc_undef_token1] = ACTIONS(2432), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2432), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2432), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2432), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2432), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE] = ACTIONS(2432), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_API_AVAILABLE] = ACTIONS(2432), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_API_DEPRECATED] = ACTIONS(2432), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2432), + [anon_sym___deprecated_msg] = ACTIONS(2432), + [anon_sym___deprecated_enum_msg] = ACTIONS(2432), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2432), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2432), + [anon_sym_ATsynthesize] = ACTIONS(2434), + [anon_sym_ATdynamic] = ACTIONS(2434), + [anon_sym_ATproperty] = ACTIONS(2434), + [anon_sym_BOOL] = ACTIONS(2432), + [anon_sym_IMP] = ACTIONS(2432), + [anon_sym_SEL] = ACTIONS(2432), + [anon_sym_Class] = ACTIONS(2432), + [anon_sym_id] = ACTIONS(2432), + }, + [2119] = { + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token2] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [aux_sym_preproc_else_token1] = ACTIONS(2424), + [aux_sym_preproc_elif_token1] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_DASH] = ACTIONS(2426), + [anon_sym_PLUS] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_auto] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_CG_EXTERN] = ACTIONS(2424), + [anon_sym_CG_INLINE] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2424), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2424), + [anon_sym_IBOutlet] = ACTIONS(2424), + [anon_sym_IBInspectable] = ACTIONS(2424), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2424), + [anon_sym_NS_INLINE] = ACTIONS(2424), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2424), + [anon_sym_OBJC_EXPORT] = ACTIONS(2424), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_nullable] = ACTIONS(2424), + [anon_sym__Complex] = ACTIONS(2424), + [anon_sym__Nullable] = ACTIONS(2424), + [anon_sym__Nullable_result] = ACTIONS(2424), + [anon_sym__Null_unspecified] = ACTIONS(2424), + [anon_sym___autoreleasing] = ACTIONS(2424), + [anon_sym___block] = ACTIONS(2424), + [anon_sym___bridge] = ACTIONS(2424), + [anon_sym___bridge_retained] = ACTIONS(2424), + [anon_sym___bridge_transfer] = ACTIONS(2424), + [anon_sym___complex] = ACTIONS(2424), + [anon_sym___const] = ACTIONS(2424), + [anon_sym___imag] = ACTIONS(2424), + [anon_sym___kindof] = ACTIONS(2424), + [anon_sym___nonnull] = ACTIONS(2424), + [anon_sym___nullable] = ACTIONS(2424), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2424), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2424), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2424), + [anon_sym___real] = ACTIONS(2424), + [anon_sym___strong] = ACTIONS(2424), + [anon_sym___unsafe_unretained] = ACTIONS(2424), + [anon_sym___unused] = ACTIONS(2424), + [anon_sym___weak] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2424), + [anon_sym___typeof] = ACTIONS(2424), + [anon_sym_typeof] = ACTIONS(2424), + [aux_sym_preproc_undef_token1] = ACTIONS(2424), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2424), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2424), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2424), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2424), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE] = ACTIONS(2424), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_API_AVAILABLE] = ACTIONS(2424), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_API_DEPRECATED] = ACTIONS(2424), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2424), + [anon_sym___deprecated_msg] = ACTIONS(2424), + [anon_sym___deprecated_enum_msg] = ACTIONS(2424), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2424), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2424), + [anon_sym_ATsynthesize] = ACTIONS(2426), + [anon_sym_ATdynamic] = ACTIONS(2426), + [anon_sym_ATproperty] = ACTIONS(2426), + [anon_sym_BOOL] = ACTIONS(2424), + [anon_sym_IMP] = ACTIONS(2424), + [anon_sym_SEL] = ACTIONS(2424), + [anon_sym_Class] = ACTIONS(2424), + [anon_sym_id] = ACTIONS(2424), + }, + [2120] = { + [sym_identifier] = ACTIONS(2432), + [aux_sym_preproc_def_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token2] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2432), + [aux_sym_preproc_else_token1] = ACTIONS(2432), + [aux_sym_preproc_elif_token1] = ACTIONS(2432), + [sym_preproc_directive] = ACTIONS(2432), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym___extension__] = ACTIONS(2432), + [anon_sym_typedef] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym___attribute__] = ACTIONS(2432), + [anon_sym___attribute] = ACTIONS(2432), + [anon_sym_noreturn] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym___declspec] = ACTIONS(2432), + [anon_sym___cdecl] = ACTIONS(2432), + [anon_sym___clrcall] = ACTIONS(2432), + [anon_sym___stdcall] = ACTIONS(2432), + [anon_sym___fastcall] = ACTIONS(2432), + [anon_sym___thiscall] = ACTIONS(2432), + [anon_sym___vectorcall] = ACTIONS(2432), + [anon_sym_signed] = ACTIONS(2432), + [anon_sym_unsigned] = ACTIONS(2432), + [anon_sym_long] = ACTIONS(2432), + [anon_sym_short] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_auto] = ACTIONS(2432), + [anon_sym_register] = ACTIONS(2432), + [anon_sym_inline] = ACTIONS(2432), + [anon_sym___inline] = ACTIONS(2432), + [anon_sym___inline__] = ACTIONS(2432), + [anon_sym___forceinline] = ACTIONS(2432), + [anon_sym_thread_local] = ACTIONS(2432), + [anon_sym___thread] = ACTIONS(2432), + [anon_sym_CG_EXTERN] = ACTIONS(2432), + [anon_sym_CG_INLINE] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2432), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2432), + [anon_sym_IBOutlet] = ACTIONS(2432), + [anon_sym_IBInspectable] = ACTIONS(2432), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2432), + [anon_sym_NS_INLINE] = ACTIONS(2432), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2432), + [anon_sym_OBJC_EXPORT] = ACTIONS(2432), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_constexpr] = ACTIONS(2432), + [anon_sym_volatile] = ACTIONS(2432), + [anon_sym_restrict] = ACTIONS(2432), + [anon_sym___restrict__] = ACTIONS(2432), + [anon_sym__Atomic] = ACTIONS(2432), + [anon_sym__Noreturn] = ACTIONS(2432), + [anon_sym__Nonnull] = ACTIONS(2432), + [anon_sym_nullable] = ACTIONS(2432), + [anon_sym__Complex] = ACTIONS(2432), + [anon_sym__Nullable] = ACTIONS(2432), + [anon_sym__Nullable_result] = ACTIONS(2432), + [anon_sym__Null_unspecified] = ACTIONS(2432), + [anon_sym___autoreleasing] = ACTIONS(2432), + [anon_sym___block] = ACTIONS(2432), + [anon_sym___bridge] = ACTIONS(2432), + [anon_sym___bridge_retained] = ACTIONS(2432), + [anon_sym___bridge_transfer] = ACTIONS(2432), + [anon_sym___complex] = ACTIONS(2432), + [anon_sym___const] = ACTIONS(2432), + [anon_sym___imag] = ACTIONS(2432), + [anon_sym___kindof] = ACTIONS(2432), + [anon_sym___nonnull] = ACTIONS(2432), + [anon_sym___nullable] = ACTIONS(2432), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2432), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2432), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2432), + [anon_sym___real] = ACTIONS(2432), + [anon_sym___strong] = ACTIONS(2432), + [anon_sym___unsafe_unretained] = ACTIONS(2432), + [anon_sym___unused] = ACTIONS(2432), + [anon_sym___weak] = ACTIONS(2432), + [anon_sym_alignas] = ACTIONS(2432), + [anon_sym__Alignas] = ACTIONS(2432), + [sym_primitive_type] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2432), + [anon_sym___typeof] = ACTIONS(2432), + [anon_sym_typeof] = ACTIONS(2432), + [aux_sym_preproc_undef_token1] = ACTIONS(2432), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2432), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2432), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2432), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2432), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE] = ACTIONS(2432), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_API_AVAILABLE] = ACTIONS(2432), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_API_DEPRECATED] = ACTIONS(2432), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2432), + [anon_sym___deprecated_msg] = ACTIONS(2432), + [anon_sym___deprecated_enum_msg] = ACTIONS(2432), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2432), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2432), + [anon_sym_ATsynthesize] = ACTIONS(2434), + [anon_sym_ATdynamic] = ACTIONS(2434), + [anon_sym_ATproperty] = ACTIONS(2434), + [anon_sym_BOOL] = ACTIONS(2432), + [anon_sym_IMP] = ACTIONS(2432), + [anon_sym_SEL] = ACTIONS(2432), + [anon_sym_Class] = ACTIONS(2432), + [anon_sym_id] = ACTIONS(2432), + }, + [2121] = { + [sym_identifier] = ACTIONS(2428), + [aux_sym_preproc_def_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token2] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2428), + [aux_sym_preproc_else_token1] = ACTIONS(2428), + [aux_sym_preproc_elif_token1] = ACTIONS(2428), + [sym_preproc_directive] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2430), + [anon_sym_PLUS] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym___cdecl] = ACTIONS(2428), + [anon_sym___clrcall] = ACTIONS(2428), + [anon_sym___stdcall] = ACTIONS(2428), + [anon_sym___fastcall] = ACTIONS(2428), + [anon_sym___thiscall] = ACTIONS(2428), + [anon_sym___vectorcall] = ACTIONS(2428), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_auto] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_CG_EXTERN] = ACTIONS(2428), + [anon_sym_CG_INLINE] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2428), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2428), + [anon_sym_IBOutlet] = ACTIONS(2428), + [anon_sym_IBInspectable] = ACTIONS(2428), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2428), + [anon_sym_NS_INLINE] = ACTIONS(2428), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2428), + [anon_sym_OBJC_EXPORT] = ACTIONS(2428), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_nullable] = ACTIONS(2428), + [anon_sym__Complex] = ACTIONS(2428), + [anon_sym__Nullable] = ACTIONS(2428), + [anon_sym__Nullable_result] = ACTIONS(2428), + [anon_sym__Null_unspecified] = ACTIONS(2428), + [anon_sym___autoreleasing] = ACTIONS(2428), + [anon_sym___block] = ACTIONS(2428), + [anon_sym___bridge] = ACTIONS(2428), + [anon_sym___bridge_retained] = ACTIONS(2428), + [anon_sym___bridge_transfer] = ACTIONS(2428), + [anon_sym___complex] = ACTIONS(2428), + [anon_sym___const] = ACTIONS(2428), + [anon_sym___imag] = ACTIONS(2428), + [anon_sym___kindof] = ACTIONS(2428), + [anon_sym___nonnull] = ACTIONS(2428), + [anon_sym___nullable] = ACTIONS(2428), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2428), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2428), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2428), + [anon_sym___real] = ACTIONS(2428), + [anon_sym___strong] = ACTIONS(2428), + [anon_sym___unsafe_unretained] = ACTIONS(2428), + [anon_sym___unused] = ACTIONS(2428), + [anon_sym___weak] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2428), + [anon_sym___typeof] = ACTIONS(2428), + [anon_sym_typeof] = ACTIONS(2428), + [aux_sym_preproc_undef_token1] = ACTIONS(2428), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2428), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2428), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2428), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2428), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE] = ACTIONS(2428), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_API_AVAILABLE] = ACTIONS(2428), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_API_DEPRECATED] = ACTIONS(2428), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2428), + [anon_sym___deprecated_msg] = ACTIONS(2428), + [anon_sym___deprecated_enum_msg] = ACTIONS(2428), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2428), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2428), + [anon_sym_ATsynthesize] = ACTIONS(2430), + [anon_sym_ATdynamic] = ACTIONS(2430), + [anon_sym_ATproperty] = ACTIONS(2430), + [anon_sym_BOOL] = ACTIONS(2428), + [anon_sym_IMP] = ACTIONS(2428), + [anon_sym_SEL] = ACTIONS(2428), + [anon_sym_Class] = ACTIONS(2428), + [anon_sym_id] = ACTIONS(2428), + }, + [2122] = { + [sym_identifier] = ACTIONS(2446), + [aux_sym_preproc_def_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token2] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2446), + [aux_sym_preproc_else_token1] = ACTIONS(2446), + [aux_sym_preproc_elif_token1] = ACTIONS(2446), + [sym_preproc_directive] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2448), + [anon_sym_PLUS] = ACTIONS(2448), + [anon_sym___extension__] = ACTIONS(2446), + [anon_sym_typedef] = ACTIONS(2446), + [anon_sym_extern] = ACTIONS(2446), + [anon_sym___attribute__] = ACTIONS(2446), + [anon_sym___attribute] = ACTIONS(2446), + [anon_sym_noreturn] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym___declspec] = ACTIONS(2446), + [anon_sym___cdecl] = ACTIONS(2446), + [anon_sym___clrcall] = ACTIONS(2446), + [anon_sym___stdcall] = ACTIONS(2446), + [anon_sym___fastcall] = ACTIONS(2446), + [anon_sym___thiscall] = ACTIONS(2446), + [anon_sym___vectorcall] = ACTIONS(2446), + [anon_sym_signed] = ACTIONS(2446), + [anon_sym_unsigned] = ACTIONS(2446), + [anon_sym_long] = ACTIONS(2446), + [anon_sym_short] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_auto] = ACTIONS(2446), + [anon_sym_register] = ACTIONS(2446), + [anon_sym_inline] = ACTIONS(2446), + [anon_sym___inline] = ACTIONS(2446), + [anon_sym___inline__] = ACTIONS(2446), + [anon_sym___forceinline] = ACTIONS(2446), + [anon_sym_thread_local] = ACTIONS(2446), + [anon_sym___thread] = ACTIONS(2446), + [anon_sym_CG_EXTERN] = ACTIONS(2446), + [anon_sym_CG_INLINE] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2446), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2446), + [anon_sym_IBOutlet] = ACTIONS(2446), + [anon_sym_IBInspectable] = ACTIONS(2446), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2446), + [anon_sym_NS_INLINE] = ACTIONS(2446), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2446), + [anon_sym_OBJC_EXPORT] = ACTIONS(2446), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [anon_sym_constexpr] = ACTIONS(2446), + [anon_sym_volatile] = ACTIONS(2446), + [anon_sym_restrict] = ACTIONS(2446), + [anon_sym___restrict__] = ACTIONS(2446), + [anon_sym__Atomic] = ACTIONS(2446), + [anon_sym__Noreturn] = ACTIONS(2446), + [anon_sym__Nonnull] = ACTIONS(2446), + [anon_sym_nullable] = ACTIONS(2446), + [anon_sym__Complex] = ACTIONS(2446), + [anon_sym__Nullable] = ACTIONS(2446), + [anon_sym__Nullable_result] = ACTIONS(2446), + [anon_sym__Null_unspecified] = ACTIONS(2446), + [anon_sym___autoreleasing] = ACTIONS(2446), + [anon_sym___block] = ACTIONS(2446), + [anon_sym___bridge] = ACTIONS(2446), + [anon_sym___bridge_retained] = ACTIONS(2446), + [anon_sym___bridge_transfer] = ACTIONS(2446), + [anon_sym___complex] = ACTIONS(2446), + [anon_sym___const] = ACTIONS(2446), + [anon_sym___imag] = ACTIONS(2446), + [anon_sym___kindof] = ACTIONS(2446), + [anon_sym___nonnull] = ACTIONS(2446), + [anon_sym___nullable] = ACTIONS(2446), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2446), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2446), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2446), + [anon_sym___real] = ACTIONS(2446), + [anon_sym___strong] = ACTIONS(2446), + [anon_sym___unsafe_unretained] = ACTIONS(2446), + [anon_sym___unused] = ACTIONS(2446), + [anon_sym___weak] = ACTIONS(2446), + [anon_sym_alignas] = ACTIONS(2446), + [anon_sym__Alignas] = ACTIONS(2446), + [sym_primitive_type] = ACTIONS(2446), + [anon_sym_enum] = ACTIONS(2446), + [anon_sym_struct] = ACTIONS(2446), + [anon_sym_union] = ACTIONS(2446), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2446), + [anon_sym___typeof] = ACTIONS(2446), + [anon_sym_typeof] = ACTIONS(2446), + [aux_sym_preproc_undef_token1] = ACTIONS(2446), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2446), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2446), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2446), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2446), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE] = ACTIONS(2446), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_API_AVAILABLE] = ACTIONS(2446), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_API_DEPRECATED] = ACTIONS(2446), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2446), + [anon_sym___deprecated_msg] = ACTIONS(2446), + [anon_sym___deprecated_enum_msg] = ACTIONS(2446), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2446), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2446), + [anon_sym_ATsynthesize] = ACTIONS(2448), + [anon_sym_ATdynamic] = ACTIONS(2448), + [anon_sym_ATproperty] = ACTIONS(2448), + [anon_sym_BOOL] = ACTIONS(2446), + [anon_sym_IMP] = ACTIONS(2446), + [anon_sym_SEL] = ACTIONS(2446), + [anon_sym_Class] = ACTIONS(2446), + [anon_sym_id] = ACTIONS(2446), + }, + [2123] = { + [sym_identifier] = ACTIONS(2450), + [aux_sym_preproc_def_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token2] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2450), + [aux_sym_preproc_else_token1] = ACTIONS(2450), + [aux_sym_preproc_elif_token1] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2450), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym___cdecl] = ACTIONS(2450), + [anon_sym___clrcall] = ACTIONS(2450), + [anon_sym___stdcall] = ACTIONS(2450), + [anon_sym___fastcall] = ACTIONS(2450), + [anon_sym___thiscall] = ACTIONS(2450), + [anon_sym___vectorcall] = ACTIONS(2450), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_auto] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_CG_EXTERN] = ACTIONS(2450), + [anon_sym_CG_INLINE] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2450), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2450), + [anon_sym_IBOutlet] = ACTIONS(2450), + [anon_sym_IBInspectable] = ACTIONS(2450), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2450), + [anon_sym_NS_INLINE] = ACTIONS(2450), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2450), + [anon_sym_OBJC_EXPORT] = ACTIONS(2450), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_nullable] = ACTIONS(2450), + [anon_sym__Complex] = ACTIONS(2450), + [anon_sym__Nullable] = ACTIONS(2450), + [anon_sym__Nullable_result] = ACTIONS(2450), + [anon_sym__Null_unspecified] = ACTIONS(2450), + [anon_sym___autoreleasing] = ACTIONS(2450), + [anon_sym___block] = ACTIONS(2450), + [anon_sym___bridge] = ACTIONS(2450), + [anon_sym___bridge_retained] = ACTIONS(2450), + [anon_sym___bridge_transfer] = ACTIONS(2450), + [anon_sym___complex] = ACTIONS(2450), + [anon_sym___const] = ACTIONS(2450), + [anon_sym___imag] = ACTIONS(2450), + [anon_sym___kindof] = ACTIONS(2450), + [anon_sym___nonnull] = ACTIONS(2450), + [anon_sym___nullable] = ACTIONS(2450), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2450), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2450), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2450), + [anon_sym___real] = ACTIONS(2450), + [anon_sym___strong] = ACTIONS(2450), + [anon_sym___unsafe_unretained] = ACTIONS(2450), + [anon_sym___unused] = ACTIONS(2450), + [anon_sym___weak] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2450), + [anon_sym___typeof] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [aux_sym_preproc_undef_token1] = ACTIONS(2450), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2450), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2450), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2450), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2450), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE] = ACTIONS(2450), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_API_AVAILABLE] = ACTIONS(2450), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_API_DEPRECATED] = ACTIONS(2450), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2450), + [anon_sym___deprecated_msg] = ACTIONS(2450), + [anon_sym___deprecated_enum_msg] = ACTIONS(2450), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2450), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2450), + [anon_sym_ATsynthesize] = ACTIONS(2452), + [anon_sym_ATdynamic] = ACTIONS(2452), + [anon_sym_ATproperty] = ACTIONS(2452), + [anon_sym_BOOL] = ACTIONS(2450), + [anon_sym_IMP] = ACTIONS(2450), + [anon_sym_SEL] = ACTIONS(2450), + [anon_sym_Class] = ACTIONS(2450), + [anon_sym_id] = ACTIONS(2450), + }, + [2124] = { + [sym_identifier] = ACTIONS(2454), + [aux_sym_preproc_def_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token2] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2454), + [aux_sym_preproc_else_token1] = ACTIONS(2454), + [aux_sym_preproc_elif_token1] = ACTIONS(2454), + [sym_preproc_directive] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym___extension__] = ACTIONS(2454), + [anon_sym_typedef] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym___attribute__] = ACTIONS(2454), + [anon_sym___attribute] = ACTIONS(2454), + [anon_sym_noreturn] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym___declspec] = ACTIONS(2454), + [anon_sym___cdecl] = ACTIONS(2454), + [anon_sym___clrcall] = ACTIONS(2454), + [anon_sym___stdcall] = ACTIONS(2454), + [anon_sym___fastcall] = ACTIONS(2454), + [anon_sym___thiscall] = ACTIONS(2454), + [anon_sym___vectorcall] = ACTIONS(2454), + [anon_sym_signed] = ACTIONS(2454), + [anon_sym_unsigned] = ACTIONS(2454), + [anon_sym_long] = ACTIONS(2454), + [anon_sym_short] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_auto] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_inline] = ACTIONS(2454), + [anon_sym___inline] = ACTIONS(2454), + [anon_sym___inline__] = ACTIONS(2454), + [anon_sym___forceinline] = ACTIONS(2454), + [anon_sym_thread_local] = ACTIONS(2454), + [anon_sym___thread] = ACTIONS(2454), + [anon_sym_CG_EXTERN] = ACTIONS(2454), + [anon_sym_CG_INLINE] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2454), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2454), + [anon_sym_IBOutlet] = ACTIONS(2454), + [anon_sym_IBInspectable] = ACTIONS(2454), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2454), + [anon_sym_NS_INLINE] = ACTIONS(2454), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2454), + [anon_sym_OBJC_EXPORT] = ACTIONS(2454), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_constexpr] = ACTIONS(2454), + [anon_sym_volatile] = ACTIONS(2454), + [anon_sym_restrict] = ACTIONS(2454), + [anon_sym___restrict__] = ACTIONS(2454), + [anon_sym__Atomic] = ACTIONS(2454), + [anon_sym__Noreturn] = ACTIONS(2454), + [anon_sym__Nonnull] = ACTIONS(2454), + [anon_sym_nullable] = ACTIONS(2454), + [anon_sym__Complex] = ACTIONS(2454), + [anon_sym__Nullable] = ACTIONS(2454), + [anon_sym__Nullable_result] = ACTIONS(2454), + [anon_sym__Null_unspecified] = ACTIONS(2454), + [anon_sym___autoreleasing] = ACTIONS(2454), + [anon_sym___block] = ACTIONS(2454), + [anon_sym___bridge] = ACTIONS(2454), + [anon_sym___bridge_retained] = ACTIONS(2454), + [anon_sym___bridge_transfer] = ACTIONS(2454), + [anon_sym___complex] = ACTIONS(2454), + [anon_sym___const] = ACTIONS(2454), + [anon_sym___imag] = ACTIONS(2454), + [anon_sym___kindof] = ACTIONS(2454), + [anon_sym___nonnull] = ACTIONS(2454), + [anon_sym___nullable] = ACTIONS(2454), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2454), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2454), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2454), + [anon_sym___real] = ACTIONS(2454), + [anon_sym___strong] = ACTIONS(2454), + [anon_sym___unsafe_unretained] = ACTIONS(2454), + [anon_sym___unused] = ACTIONS(2454), + [anon_sym___weak] = ACTIONS(2454), + [anon_sym_alignas] = ACTIONS(2454), + [anon_sym__Alignas] = ACTIONS(2454), + [sym_primitive_type] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2454), + [anon_sym___typeof] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(2454), + [aux_sym_preproc_undef_token1] = ACTIONS(2454), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2454), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2454), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2454), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2454), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE] = ACTIONS(2454), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_API_AVAILABLE] = ACTIONS(2454), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_API_DEPRECATED] = ACTIONS(2454), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2454), + [anon_sym___deprecated_msg] = ACTIONS(2454), + [anon_sym___deprecated_enum_msg] = ACTIONS(2454), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2454), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2454), + [anon_sym_ATsynthesize] = ACTIONS(2456), + [anon_sym_ATdynamic] = ACTIONS(2456), + [anon_sym_ATproperty] = ACTIONS(2456), + [anon_sym_BOOL] = ACTIONS(2454), + [anon_sym_IMP] = ACTIONS(2454), + [anon_sym_SEL] = ACTIONS(2454), + [anon_sym_Class] = ACTIONS(2454), + [anon_sym_id] = ACTIONS(2454), + }, + [2125] = { + [sym_identifier] = ACTIONS(2454), + [aux_sym_preproc_def_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token2] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2454), + [aux_sym_preproc_else_token1] = ACTIONS(2454), + [aux_sym_preproc_elif_token1] = ACTIONS(2454), + [sym_preproc_directive] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym___extension__] = ACTIONS(2454), + [anon_sym_typedef] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym___attribute__] = ACTIONS(2454), + [anon_sym___attribute] = ACTIONS(2454), + [anon_sym_noreturn] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym___declspec] = ACTIONS(2454), + [anon_sym___cdecl] = ACTIONS(2454), + [anon_sym___clrcall] = ACTIONS(2454), + [anon_sym___stdcall] = ACTIONS(2454), + [anon_sym___fastcall] = ACTIONS(2454), + [anon_sym___thiscall] = ACTIONS(2454), + [anon_sym___vectorcall] = ACTIONS(2454), + [anon_sym_signed] = ACTIONS(2454), + [anon_sym_unsigned] = ACTIONS(2454), + [anon_sym_long] = ACTIONS(2454), + [anon_sym_short] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_auto] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_inline] = ACTIONS(2454), + [anon_sym___inline] = ACTIONS(2454), + [anon_sym___inline__] = ACTIONS(2454), + [anon_sym___forceinline] = ACTIONS(2454), + [anon_sym_thread_local] = ACTIONS(2454), + [anon_sym___thread] = ACTIONS(2454), + [anon_sym_CG_EXTERN] = ACTIONS(2454), + [anon_sym_CG_INLINE] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2454), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2454), + [anon_sym_IBOutlet] = ACTIONS(2454), + [anon_sym_IBInspectable] = ACTIONS(2454), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2454), + [anon_sym_NS_INLINE] = ACTIONS(2454), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2454), + [anon_sym_OBJC_EXPORT] = ACTIONS(2454), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_constexpr] = ACTIONS(2454), + [anon_sym_volatile] = ACTIONS(2454), + [anon_sym_restrict] = ACTIONS(2454), + [anon_sym___restrict__] = ACTIONS(2454), + [anon_sym__Atomic] = ACTIONS(2454), + [anon_sym__Noreturn] = ACTIONS(2454), + [anon_sym__Nonnull] = ACTIONS(2454), + [anon_sym_nullable] = ACTIONS(2454), + [anon_sym__Complex] = ACTIONS(2454), + [anon_sym__Nullable] = ACTIONS(2454), + [anon_sym__Nullable_result] = ACTIONS(2454), + [anon_sym__Null_unspecified] = ACTIONS(2454), + [anon_sym___autoreleasing] = ACTIONS(2454), + [anon_sym___block] = ACTIONS(2454), + [anon_sym___bridge] = ACTIONS(2454), + [anon_sym___bridge_retained] = ACTIONS(2454), + [anon_sym___bridge_transfer] = ACTIONS(2454), + [anon_sym___complex] = ACTIONS(2454), + [anon_sym___const] = ACTIONS(2454), + [anon_sym___imag] = ACTIONS(2454), + [anon_sym___kindof] = ACTIONS(2454), + [anon_sym___nonnull] = ACTIONS(2454), + [anon_sym___nullable] = ACTIONS(2454), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2454), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2454), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2454), + [anon_sym___real] = ACTIONS(2454), + [anon_sym___strong] = ACTIONS(2454), + [anon_sym___unsafe_unretained] = ACTIONS(2454), + [anon_sym___unused] = ACTIONS(2454), + [anon_sym___weak] = ACTIONS(2454), + [anon_sym_alignas] = ACTIONS(2454), + [anon_sym__Alignas] = ACTIONS(2454), + [sym_primitive_type] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2454), + [anon_sym___typeof] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(2454), + [aux_sym_preproc_undef_token1] = ACTIONS(2454), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2454), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2454), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2454), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2454), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE] = ACTIONS(2454), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_API_AVAILABLE] = ACTIONS(2454), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_API_DEPRECATED] = ACTIONS(2454), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2454), + [anon_sym___deprecated_msg] = ACTIONS(2454), + [anon_sym___deprecated_enum_msg] = ACTIONS(2454), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2454), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2454), + [anon_sym_ATsynthesize] = ACTIONS(2456), + [anon_sym_ATdynamic] = ACTIONS(2456), + [anon_sym_ATproperty] = ACTIONS(2456), + [anon_sym_BOOL] = ACTIONS(2454), + [anon_sym_IMP] = ACTIONS(2454), + [anon_sym_SEL] = ACTIONS(2454), + [anon_sym_Class] = ACTIONS(2454), + [anon_sym_id] = ACTIONS(2454), + }, + [2126] = { + [sym_identifier] = ACTIONS(2446), + [aux_sym_preproc_def_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token2] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2446), + [aux_sym_preproc_else_token1] = ACTIONS(2446), + [aux_sym_preproc_elif_token1] = ACTIONS(2446), + [sym_preproc_directive] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2448), + [anon_sym_PLUS] = ACTIONS(2448), + [anon_sym___extension__] = ACTIONS(2446), + [anon_sym_typedef] = ACTIONS(2446), + [anon_sym_extern] = ACTIONS(2446), + [anon_sym___attribute__] = ACTIONS(2446), + [anon_sym___attribute] = ACTIONS(2446), + [anon_sym_noreturn] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym___declspec] = ACTIONS(2446), + [anon_sym___cdecl] = ACTIONS(2446), + [anon_sym___clrcall] = ACTIONS(2446), + [anon_sym___stdcall] = ACTIONS(2446), + [anon_sym___fastcall] = ACTIONS(2446), + [anon_sym___thiscall] = ACTIONS(2446), + [anon_sym___vectorcall] = ACTIONS(2446), + [anon_sym_signed] = ACTIONS(2446), + [anon_sym_unsigned] = ACTIONS(2446), + [anon_sym_long] = ACTIONS(2446), + [anon_sym_short] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_auto] = ACTIONS(2446), + [anon_sym_register] = ACTIONS(2446), + [anon_sym_inline] = ACTIONS(2446), + [anon_sym___inline] = ACTIONS(2446), + [anon_sym___inline__] = ACTIONS(2446), + [anon_sym___forceinline] = ACTIONS(2446), + [anon_sym_thread_local] = ACTIONS(2446), + [anon_sym___thread] = ACTIONS(2446), + [anon_sym_CG_EXTERN] = ACTIONS(2446), + [anon_sym_CG_INLINE] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2446), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2446), + [anon_sym_IBOutlet] = ACTIONS(2446), + [anon_sym_IBInspectable] = ACTIONS(2446), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2446), + [anon_sym_NS_INLINE] = ACTIONS(2446), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2446), + [anon_sym_OBJC_EXPORT] = ACTIONS(2446), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [anon_sym_constexpr] = ACTIONS(2446), + [anon_sym_volatile] = ACTIONS(2446), + [anon_sym_restrict] = ACTIONS(2446), + [anon_sym___restrict__] = ACTIONS(2446), + [anon_sym__Atomic] = ACTIONS(2446), + [anon_sym__Noreturn] = ACTIONS(2446), + [anon_sym__Nonnull] = ACTIONS(2446), + [anon_sym_nullable] = ACTIONS(2446), + [anon_sym__Complex] = ACTIONS(2446), + [anon_sym__Nullable] = ACTIONS(2446), + [anon_sym__Nullable_result] = ACTIONS(2446), + [anon_sym__Null_unspecified] = ACTIONS(2446), + [anon_sym___autoreleasing] = ACTIONS(2446), + [anon_sym___block] = ACTIONS(2446), + [anon_sym___bridge] = ACTIONS(2446), + [anon_sym___bridge_retained] = ACTIONS(2446), + [anon_sym___bridge_transfer] = ACTIONS(2446), + [anon_sym___complex] = ACTIONS(2446), + [anon_sym___const] = ACTIONS(2446), + [anon_sym___imag] = ACTIONS(2446), + [anon_sym___kindof] = ACTIONS(2446), + [anon_sym___nonnull] = ACTIONS(2446), + [anon_sym___nullable] = ACTIONS(2446), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2446), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2446), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2446), + [anon_sym___real] = ACTIONS(2446), + [anon_sym___strong] = ACTIONS(2446), + [anon_sym___unsafe_unretained] = ACTIONS(2446), + [anon_sym___unused] = ACTIONS(2446), + [anon_sym___weak] = ACTIONS(2446), + [anon_sym_alignas] = ACTIONS(2446), + [anon_sym__Alignas] = ACTIONS(2446), + [sym_primitive_type] = ACTIONS(2446), + [anon_sym_enum] = ACTIONS(2446), + [anon_sym_struct] = ACTIONS(2446), + [anon_sym_union] = ACTIONS(2446), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2446), + [anon_sym___typeof] = ACTIONS(2446), + [anon_sym_typeof] = ACTIONS(2446), + [aux_sym_preproc_undef_token1] = ACTIONS(2446), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2446), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2446), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2446), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2446), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE] = ACTIONS(2446), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_API_AVAILABLE] = ACTIONS(2446), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_API_DEPRECATED] = ACTIONS(2446), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2446), + [anon_sym___deprecated_msg] = ACTIONS(2446), + [anon_sym___deprecated_enum_msg] = ACTIONS(2446), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2446), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2446), + [anon_sym_ATsynthesize] = ACTIONS(2448), + [anon_sym_ATdynamic] = ACTIONS(2448), + [anon_sym_ATproperty] = ACTIONS(2448), + [anon_sym_BOOL] = ACTIONS(2446), + [anon_sym_IMP] = ACTIONS(2446), + [anon_sym_SEL] = ACTIONS(2446), + [anon_sym_Class] = ACTIONS(2446), + [anon_sym_id] = ACTIONS(2446), + }, + [2127] = { + [sym_identifier] = ACTIONS(2450), + [aux_sym_preproc_def_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token2] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2450), + [aux_sym_preproc_else_token1] = ACTIONS(2450), + [aux_sym_preproc_elif_token1] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2450), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym___cdecl] = ACTIONS(2450), + [anon_sym___clrcall] = ACTIONS(2450), + [anon_sym___stdcall] = ACTIONS(2450), + [anon_sym___fastcall] = ACTIONS(2450), + [anon_sym___thiscall] = ACTIONS(2450), + [anon_sym___vectorcall] = ACTIONS(2450), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_auto] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_CG_EXTERN] = ACTIONS(2450), + [anon_sym_CG_INLINE] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2450), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2450), + [anon_sym_IBOutlet] = ACTIONS(2450), + [anon_sym_IBInspectable] = ACTIONS(2450), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2450), + [anon_sym_NS_INLINE] = ACTIONS(2450), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2450), + [anon_sym_OBJC_EXPORT] = ACTIONS(2450), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_nullable] = ACTIONS(2450), + [anon_sym__Complex] = ACTIONS(2450), + [anon_sym__Nullable] = ACTIONS(2450), + [anon_sym__Nullable_result] = ACTIONS(2450), + [anon_sym__Null_unspecified] = ACTIONS(2450), + [anon_sym___autoreleasing] = ACTIONS(2450), + [anon_sym___block] = ACTIONS(2450), + [anon_sym___bridge] = ACTIONS(2450), + [anon_sym___bridge_retained] = ACTIONS(2450), + [anon_sym___bridge_transfer] = ACTIONS(2450), + [anon_sym___complex] = ACTIONS(2450), + [anon_sym___const] = ACTIONS(2450), + [anon_sym___imag] = ACTIONS(2450), + [anon_sym___kindof] = ACTIONS(2450), + [anon_sym___nonnull] = ACTIONS(2450), + [anon_sym___nullable] = ACTIONS(2450), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2450), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2450), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2450), + [anon_sym___real] = ACTIONS(2450), + [anon_sym___strong] = ACTIONS(2450), + [anon_sym___unsafe_unretained] = ACTIONS(2450), + [anon_sym___unused] = ACTIONS(2450), + [anon_sym___weak] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2450), + [anon_sym___typeof] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [aux_sym_preproc_undef_token1] = ACTIONS(2450), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2450), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2450), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2450), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2450), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE] = ACTIONS(2450), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_API_AVAILABLE] = ACTIONS(2450), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_API_DEPRECATED] = ACTIONS(2450), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2450), + [anon_sym___deprecated_msg] = ACTIONS(2450), + [anon_sym___deprecated_enum_msg] = ACTIONS(2450), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2450), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2450), + [anon_sym_ATsynthesize] = ACTIONS(2452), + [anon_sym_ATdynamic] = ACTIONS(2452), + [anon_sym_ATproperty] = ACTIONS(2452), + [anon_sym_BOOL] = ACTIONS(2450), + [anon_sym_IMP] = ACTIONS(2450), + [anon_sym_SEL] = ACTIONS(2450), + [anon_sym_Class] = ACTIONS(2450), + [anon_sym_id] = ACTIONS(2450), + }, + [2128] = { + [sym_identifier] = ACTIONS(2462), + [aux_sym_preproc_def_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token2] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2462), + [aux_sym_preproc_else_token1] = ACTIONS(2462), + [aux_sym_preproc_elif_token1] = ACTIONS(2462), + [sym_preproc_directive] = ACTIONS(2462), + [anon_sym_DASH] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(2464), + [anon_sym___extension__] = ACTIONS(2462), + [anon_sym_typedef] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym___attribute__] = ACTIONS(2462), + [anon_sym___attribute] = ACTIONS(2462), + [anon_sym_noreturn] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2464), + [anon_sym___declspec] = ACTIONS(2462), + [anon_sym___cdecl] = ACTIONS(2462), + [anon_sym___clrcall] = ACTIONS(2462), + [anon_sym___stdcall] = ACTIONS(2462), + [anon_sym___fastcall] = ACTIONS(2462), + [anon_sym___thiscall] = ACTIONS(2462), + [anon_sym___vectorcall] = ACTIONS(2462), + [anon_sym_signed] = ACTIONS(2462), + [anon_sym_unsigned] = ACTIONS(2462), + [anon_sym_long] = ACTIONS(2462), + [anon_sym_short] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_auto] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_inline] = ACTIONS(2462), + [anon_sym___inline] = ACTIONS(2462), + [anon_sym___inline__] = ACTIONS(2462), + [anon_sym___forceinline] = ACTIONS(2462), + [anon_sym_thread_local] = ACTIONS(2462), + [anon_sym___thread] = ACTIONS(2462), + [anon_sym_CG_EXTERN] = ACTIONS(2462), + [anon_sym_CG_INLINE] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2462), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2462), + [anon_sym_IBOutlet] = ACTIONS(2462), + [anon_sym_IBInspectable] = ACTIONS(2462), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2462), + [anon_sym_NS_INLINE] = ACTIONS(2462), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2462), + [anon_sym_OBJC_EXPORT] = ACTIONS(2462), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_constexpr] = ACTIONS(2462), + [anon_sym_volatile] = ACTIONS(2462), + [anon_sym_restrict] = ACTIONS(2462), + [anon_sym___restrict__] = ACTIONS(2462), + [anon_sym__Atomic] = ACTIONS(2462), + [anon_sym__Noreturn] = ACTIONS(2462), + [anon_sym__Nonnull] = ACTIONS(2462), + [anon_sym_nullable] = ACTIONS(2462), + [anon_sym__Complex] = ACTIONS(2462), + [anon_sym__Nullable] = ACTIONS(2462), + [anon_sym__Nullable_result] = ACTIONS(2462), + [anon_sym__Null_unspecified] = ACTIONS(2462), + [anon_sym___autoreleasing] = ACTIONS(2462), + [anon_sym___block] = ACTIONS(2462), + [anon_sym___bridge] = ACTIONS(2462), + [anon_sym___bridge_retained] = ACTIONS(2462), + [anon_sym___bridge_transfer] = ACTIONS(2462), + [anon_sym___complex] = ACTIONS(2462), + [anon_sym___const] = ACTIONS(2462), + [anon_sym___imag] = ACTIONS(2462), + [anon_sym___kindof] = ACTIONS(2462), + [anon_sym___nonnull] = ACTIONS(2462), + [anon_sym___nullable] = ACTIONS(2462), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2462), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2462), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2462), + [anon_sym___real] = ACTIONS(2462), + [anon_sym___strong] = ACTIONS(2462), + [anon_sym___unsafe_unretained] = ACTIONS(2462), + [anon_sym___unused] = ACTIONS(2462), + [anon_sym___weak] = ACTIONS(2462), + [anon_sym_alignas] = ACTIONS(2462), + [anon_sym__Alignas] = ACTIONS(2462), + [sym_primitive_type] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2462), + [anon_sym___typeof] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [aux_sym_preproc_undef_token1] = ACTIONS(2462), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2462), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2462), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2462), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2462), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE] = ACTIONS(2462), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_API_AVAILABLE] = ACTIONS(2462), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_API_DEPRECATED] = ACTIONS(2462), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2462), + [anon_sym___deprecated_msg] = ACTIONS(2462), + [anon_sym___deprecated_enum_msg] = ACTIONS(2462), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2462), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2462), + [anon_sym_ATsynthesize] = ACTIONS(2464), + [anon_sym_ATdynamic] = ACTIONS(2464), + [anon_sym_ATproperty] = ACTIONS(2464), + [anon_sym_BOOL] = ACTIONS(2462), + [anon_sym_IMP] = ACTIONS(2462), + [anon_sym_SEL] = ACTIONS(2462), + [anon_sym_Class] = ACTIONS(2462), + [anon_sym_id] = ACTIONS(2462), + }, + [2129] = { + [sym_identifier] = ACTIONS(2462), + [aux_sym_preproc_def_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token2] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2462), + [aux_sym_preproc_else_token1] = ACTIONS(2462), + [aux_sym_preproc_elif_token1] = ACTIONS(2462), + [sym_preproc_directive] = ACTIONS(2462), + [anon_sym_DASH] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(2464), + [anon_sym___extension__] = ACTIONS(2462), + [anon_sym_typedef] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym___attribute__] = ACTIONS(2462), + [anon_sym___attribute] = ACTIONS(2462), + [anon_sym_noreturn] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2464), + [anon_sym___declspec] = ACTIONS(2462), + [anon_sym___cdecl] = ACTIONS(2462), + [anon_sym___clrcall] = ACTIONS(2462), + [anon_sym___stdcall] = ACTIONS(2462), + [anon_sym___fastcall] = ACTIONS(2462), + [anon_sym___thiscall] = ACTIONS(2462), + [anon_sym___vectorcall] = ACTIONS(2462), + [anon_sym_signed] = ACTIONS(2462), + [anon_sym_unsigned] = ACTIONS(2462), + [anon_sym_long] = ACTIONS(2462), + [anon_sym_short] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_auto] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_inline] = ACTIONS(2462), + [anon_sym___inline] = ACTIONS(2462), + [anon_sym___inline__] = ACTIONS(2462), + [anon_sym___forceinline] = ACTIONS(2462), + [anon_sym_thread_local] = ACTIONS(2462), + [anon_sym___thread] = ACTIONS(2462), + [anon_sym_CG_EXTERN] = ACTIONS(2462), + [anon_sym_CG_INLINE] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2462), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2462), + [anon_sym_IBOutlet] = ACTIONS(2462), + [anon_sym_IBInspectable] = ACTIONS(2462), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2462), + [anon_sym_NS_INLINE] = ACTIONS(2462), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2462), + [anon_sym_OBJC_EXPORT] = ACTIONS(2462), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_constexpr] = ACTIONS(2462), + [anon_sym_volatile] = ACTIONS(2462), + [anon_sym_restrict] = ACTIONS(2462), + [anon_sym___restrict__] = ACTIONS(2462), + [anon_sym__Atomic] = ACTIONS(2462), + [anon_sym__Noreturn] = ACTIONS(2462), + [anon_sym__Nonnull] = ACTIONS(2462), + [anon_sym_nullable] = ACTIONS(2462), + [anon_sym__Complex] = ACTIONS(2462), + [anon_sym__Nullable] = ACTIONS(2462), + [anon_sym__Nullable_result] = ACTIONS(2462), + [anon_sym__Null_unspecified] = ACTIONS(2462), + [anon_sym___autoreleasing] = ACTIONS(2462), + [anon_sym___block] = ACTIONS(2462), + [anon_sym___bridge] = ACTIONS(2462), + [anon_sym___bridge_retained] = ACTIONS(2462), + [anon_sym___bridge_transfer] = ACTIONS(2462), + [anon_sym___complex] = ACTIONS(2462), + [anon_sym___const] = ACTIONS(2462), + [anon_sym___imag] = ACTIONS(2462), + [anon_sym___kindof] = ACTIONS(2462), + [anon_sym___nonnull] = ACTIONS(2462), + [anon_sym___nullable] = ACTIONS(2462), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2462), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2462), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2462), + [anon_sym___real] = ACTIONS(2462), + [anon_sym___strong] = ACTIONS(2462), + [anon_sym___unsafe_unretained] = ACTIONS(2462), + [anon_sym___unused] = ACTIONS(2462), + [anon_sym___weak] = ACTIONS(2462), + [anon_sym_alignas] = ACTIONS(2462), + [anon_sym__Alignas] = ACTIONS(2462), + [sym_primitive_type] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2462), + [anon_sym___typeof] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [aux_sym_preproc_undef_token1] = ACTIONS(2462), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2462), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2462), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2462), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2462), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE] = ACTIONS(2462), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_API_AVAILABLE] = ACTIONS(2462), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_API_DEPRECATED] = ACTIONS(2462), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2462), + [anon_sym___deprecated_msg] = ACTIONS(2462), + [anon_sym___deprecated_enum_msg] = ACTIONS(2462), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2462), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2462), + [anon_sym_ATsynthesize] = ACTIONS(2464), + [anon_sym_ATdynamic] = ACTIONS(2464), + [anon_sym_ATproperty] = ACTIONS(2464), + [anon_sym_BOOL] = ACTIONS(2462), + [anon_sym_IMP] = ACTIONS(2462), + [anon_sym_SEL] = ACTIONS(2462), + [anon_sym_Class] = ACTIONS(2462), + [anon_sym_id] = ACTIONS(2462), + }, + [2130] = { + [sym_identifier] = ACTIONS(5316), + [aux_sym_preproc_def_token1] = ACTIONS(5316), + [aux_sym_preproc_if_token1] = ACTIONS(5316), + [aux_sym_preproc_if_token2] = ACTIONS(5316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5316), + [aux_sym_preproc_else_token1] = ACTIONS(5316), + [aux_sym_preproc_elif_token1] = ACTIONS(5316), + [sym_preproc_directive] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5318), + [anon_sym_PLUS] = ACTIONS(5318), + [anon_sym_SEMI] = ACTIONS(5320), + [anon_sym___extension__] = ACTIONS(5316), + [anon_sym_typedef] = ACTIONS(5316), + [anon_sym_extern] = ACTIONS(5316), + [anon_sym___attribute__] = ACTIONS(5316), + [anon_sym___attribute] = ACTIONS(5316), + [anon_sym_noreturn] = ACTIONS(5316), + [anon_sym_LBRACK] = ACTIONS(5318), + [anon_sym___declspec] = ACTIONS(5316), + [anon_sym___cdecl] = ACTIONS(5316), + [anon_sym___clrcall] = ACTIONS(5316), + [anon_sym___stdcall] = ACTIONS(5316), + [anon_sym___fastcall] = ACTIONS(5316), + [anon_sym___thiscall] = ACTIONS(5316), + [anon_sym___vectorcall] = ACTIONS(5316), + [anon_sym_signed] = ACTIONS(5316), + [anon_sym_unsigned] = ACTIONS(5316), + [anon_sym_long] = ACTIONS(5316), + [anon_sym_short] = ACTIONS(5316), + [anon_sym_static] = ACTIONS(5316), + [anon_sym_auto] = ACTIONS(5316), + [anon_sym_register] = ACTIONS(5316), + [anon_sym_inline] = ACTIONS(5316), + [anon_sym___inline] = ACTIONS(5316), + [anon_sym___inline__] = ACTIONS(5316), + [anon_sym___forceinline] = ACTIONS(5316), + [anon_sym_thread_local] = ACTIONS(5316), + [anon_sym___thread] = ACTIONS(5316), + [anon_sym_CG_EXTERN] = ACTIONS(5316), + [anon_sym_CG_INLINE] = ACTIONS(5316), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5316), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5316), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5316), + [anon_sym_IBOutlet] = ACTIONS(5316), + [anon_sym_IBInspectable] = ACTIONS(5316), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5316), + [anon_sym_NS_INLINE] = ACTIONS(5316), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5316), + [anon_sym_OBJC_EXPORT] = ACTIONS(5316), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5316), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5316), + [anon_sym_const] = ACTIONS(5316), + [anon_sym_constexpr] = ACTIONS(5316), + [anon_sym_volatile] = ACTIONS(5316), + [anon_sym_restrict] = ACTIONS(5316), + [anon_sym___restrict__] = ACTIONS(5316), + [anon_sym__Atomic] = ACTIONS(5316), + [anon_sym__Noreturn] = ACTIONS(5316), + [anon_sym__Nonnull] = ACTIONS(5316), + [anon_sym_nullable] = ACTIONS(5316), + [anon_sym__Complex] = ACTIONS(5316), + [anon_sym__Nullable] = ACTIONS(5316), + [anon_sym__Nullable_result] = ACTIONS(5316), + [anon_sym__Null_unspecified] = ACTIONS(5316), + [anon_sym___autoreleasing] = ACTIONS(5316), + [anon_sym___block] = ACTIONS(5316), + [anon_sym___bridge] = ACTIONS(5316), + [anon_sym___bridge_retained] = ACTIONS(5316), + [anon_sym___bridge_transfer] = ACTIONS(5316), + [anon_sym___complex] = ACTIONS(5316), + [anon_sym___const] = ACTIONS(5316), + [anon_sym___imag] = ACTIONS(5316), + [anon_sym___kindof] = ACTIONS(5316), + [anon_sym___nonnull] = ACTIONS(5316), + [anon_sym___nullable] = ACTIONS(5316), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5316), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5316), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5316), + [anon_sym___real] = ACTIONS(5316), + [anon_sym___strong] = ACTIONS(5316), + [anon_sym___unsafe_unretained] = ACTIONS(5316), + [anon_sym___unused] = ACTIONS(5316), + [anon_sym___weak] = ACTIONS(5316), + [anon_sym_alignas] = ACTIONS(5316), + [anon_sym__Alignas] = ACTIONS(5316), + [sym_primitive_type] = ACTIONS(5316), + [anon_sym_enum] = ACTIONS(5316), + [anon_sym_struct] = ACTIONS(5316), + [anon_sym_union] = ACTIONS(5316), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5316), + [anon_sym___typeof] = ACTIONS(5316), + [anon_sym_typeof] = ACTIONS(5316), + [aux_sym_preproc_undef_token1] = ACTIONS(5316), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5316), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5316), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5316), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5316), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5316), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5316), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5316), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5316), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5316), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5316), + [anon_sym_NS_AVAILABLE] = ACTIONS(5316), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5316), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5316), + [anon_sym_API_AVAILABLE] = ACTIONS(5316), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5316), + [anon_sym_API_DEPRECATED] = ACTIONS(5316), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5316), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5316), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5316), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5316), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5316), + [anon_sym___deprecated_msg] = ACTIONS(5316), + [anon_sym___deprecated_enum_msg] = ACTIONS(5316), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5316), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5316), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5316), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5316), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5316), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5316), + [anon_sym_ATsynthesize] = ACTIONS(5318), + [anon_sym_ATdynamic] = ACTIONS(5318), + [anon_sym_BOOL] = ACTIONS(5316), + [anon_sym_IMP] = ACTIONS(5316), + [anon_sym_SEL] = ACTIONS(5316), + [anon_sym_Class] = ACTIONS(5316), + [anon_sym_id] = ACTIONS(5316), + }, + [2131] = { + [sym_identifier] = ACTIONS(5322), + [aux_sym_preproc_def_token1] = ACTIONS(5322), + [aux_sym_preproc_if_token1] = ACTIONS(5322), + [aux_sym_preproc_if_token2] = ACTIONS(5322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5322), + [aux_sym_preproc_else_token1] = ACTIONS(5322), + [aux_sym_preproc_elif_token1] = ACTIONS(5322), + [sym_preproc_directive] = ACTIONS(5322), + [anon_sym_DASH] = ACTIONS(5324), + [anon_sym_PLUS] = ACTIONS(5324), + [anon_sym_SEMI] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(5322), + [anon_sym_typedef] = ACTIONS(5322), + [anon_sym_extern] = ACTIONS(5322), + [anon_sym___attribute__] = ACTIONS(5322), + [anon_sym___attribute] = ACTIONS(5322), + [anon_sym_noreturn] = ACTIONS(5322), + [anon_sym_LBRACK] = ACTIONS(5324), + [anon_sym___declspec] = ACTIONS(5322), + [anon_sym___cdecl] = ACTIONS(5322), + [anon_sym___clrcall] = ACTIONS(5322), + [anon_sym___stdcall] = ACTIONS(5322), + [anon_sym___fastcall] = ACTIONS(5322), + [anon_sym___thiscall] = ACTIONS(5322), + [anon_sym___vectorcall] = ACTIONS(5322), + [anon_sym_signed] = ACTIONS(5322), + [anon_sym_unsigned] = ACTIONS(5322), + [anon_sym_long] = ACTIONS(5322), + [anon_sym_short] = ACTIONS(5322), + [anon_sym_static] = ACTIONS(5322), + [anon_sym_auto] = ACTIONS(5322), + [anon_sym_register] = ACTIONS(5322), + [anon_sym_inline] = ACTIONS(5322), + [anon_sym___inline] = ACTIONS(5322), + [anon_sym___inline__] = ACTIONS(5322), + [anon_sym___forceinline] = ACTIONS(5322), + [anon_sym_thread_local] = ACTIONS(5322), + [anon_sym___thread] = ACTIONS(5322), + [anon_sym_CG_EXTERN] = ACTIONS(5322), + [anon_sym_CG_INLINE] = ACTIONS(5322), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5322), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5322), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5322), + [anon_sym_IBOutlet] = ACTIONS(5322), + [anon_sym_IBInspectable] = ACTIONS(5322), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5322), + [anon_sym_NS_INLINE] = ACTIONS(5322), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5322), + [anon_sym_OBJC_EXPORT] = ACTIONS(5322), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5322), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5322), + [anon_sym_const] = ACTIONS(5322), + [anon_sym_constexpr] = ACTIONS(5322), + [anon_sym_volatile] = ACTIONS(5322), + [anon_sym_restrict] = ACTIONS(5322), + [anon_sym___restrict__] = ACTIONS(5322), + [anon_sym__Atomic] = ACTIONS(5322), + [anon_sym__Noreturn] = ACTIONS(5322), + [anon_sym__Nonnull] = ACTIONS(5322), + [anon_sym_nullable] = ACTIONS(5322), + [anon_sym__Complex] = ACTIONS(5322), + [anon_sym__Nullable] = ACTIONS(5322), + [anon_sym__Nullable_result] = ACTIONS(5322), + [anon_sym__Null_unspecified] = ACTIONS(5322), + [anon_sym___autoreleasing] = ACTIONS(5322), + [anon_sym___block] = ACTIONS(5322), + [anon_sym___bridge] = ACTIONS(5322), + [anon_sym___bridge_retained] = ACTIONS(5322), + [anon_sym___bridge_transfer] = ACTIONS(5322), + [anon_sym___complex] = ACTIONS(5322), + [anon_sym___const] = ACTIONS(5322), + [anon_sym___imag] = ACTIONS(5322), + [anon_sym___kindof] = ACTIONS(5322), + [anon_sym___nonnull] = ACTIONS(5322), + [anon_sym___nullable] = ACTIONS(5322), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5322), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5322), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5322), + [anon_sym___real] = ACTIONS(5322), + [anon_sym___strong] = ACTIONS(5322), + [anon_sym___unsafe_unretained] = ACTIONS(5322), + [anon_sym___unused] = ACTIONS(5322), + [anon_sym___weak] = ACTIONS(5322), + [anon_sym_alignas] = ACTIONS(5322), + [anon_sym__Alignas] = ACTIONS(5322), + [sym_primitive_type] = ACTIONS(5322), + [anon_sym_enum] = ACTIONS(5322), + [anon_sym_struct] = ACTIONS(5322), + [anon_sym_union] = ACTIONS(5322), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5322), + [anon_sym___typeof] = ACTIONS(5322), + [anon_sym_typeof] = ACTIONS(5322), + [aux_sym_preproc_undef_token1] = ACTIONS(5322), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5322), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5322), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5322), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5322), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5322), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5322), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5322), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5322), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5322), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5322), + [anon_sym_NS_AVAILABLE] = ACTIONS(5322), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5322), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5322), + [anon_sym_API_AVAILABLE] = ACTIONS(5322), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5322), + [anon_sym_API_DEPRECATED] = ACTIONS(5322), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5322), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5322), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5322), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5322), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5322), + [anon_sym___deprecated_msg] = ACTIONS(5322), + [anon_sym___deprecated_enum_msg] = ACTIONS(5322), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5322), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5322), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5322), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5322), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5322), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5322), + [anon_sym_ATsynthesize] = ACTIONS(5324), + [anon_sym_ATdynamic] = ACTIONS(5324), + [anon_sym_BOOL] = ACTIONS(5322), + [anon_sym_IMP] = ACTIONS(5322), + [anon_sym_SEL] = ACTIONS(5322), + [anon_sym_Class] = ACTIONS(5322), + [anon_sym_id] = ACTIONS(5322), + }, + [2132] = { + [sym_identifier] = ACTIONS(2470), + [aux_sym_preproc_def_token1] = ACTIONS(2470), + [aux_sym_preproc_if_token1] = ACTIONS(2470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2470), + [sym_preproc_directive] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2472), + [anon_sym_PLUS] = ACTIONS(2472), + [anon_sym___extension__] = ACTIONS(2470), + [anon_sym_typedef] = ACTIONS(2470), + [anon_sym_extern] = ACTIONS(2470), + [anon_sym___attribute__] = ACTIONS(2470), + [anon_sym___attribute] = ACTIONS(2470), + [anon_sym_noreturn] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2472), + [anon_sym___declspec] = ACTIONS(2470), + [anon_sym___cdecl] = ACTIONS(2470), + [anon_sym___clrcall] = ACTIONS(2470), + [anon_sym___stdcall] = ACTIONS(2470), + [anon_sym___fastcall] = ACTIONS(2470), + [anon_sym___thiscall] = ACTIONS(2470), + [anon_sym___vectorcall] = ACTIONS(2470), + [anon_sym_signed] = ACTIONS(2470), + [anon_sym_unsigned] = ACTIONS(2470), + [anon_sym_long] = ACTIONS(2470), + [anon_sym_short] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_auto] = ACTIONS(2470), + [anon_sym_register] = ACTIONS(2470), + [anon_sym_inline] = ACTIONS(2470), + [anon_sym___inline] = ACTIONS(2470), + [anon_sym___inline__] = ACTIONS(2470), + [anon_sym___forceinline] = ACTIONS(2470), + [anon_sym_thread_local] = ACTIONS(2470), + [anon_sym___thread] = ACTIONS(2470), + [anon_sym_CG_EXTERN] = ACTIONS(2470), + [anon_sym_CG_INLINE] = ACTIONS(2470), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2470), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2470), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2470), + [anon_sym_IBOutlet] = ACTIONS(2470), + [anon_sym_IBInspectable] = ACTIONS(2470), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2470), + [anon_sym_NS_INLINE] = ACTIONS(2470), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2470), + [anon_sym_OBJC_EXPORT] = ACTIONS(2470), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2470), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_constexpr] = ACTIONS(2470), + [anon_sym_volatile] = ACTIONS(2470), + [anon_sym_restrict] = ACTIONS(2470), + [anon_sym___restrict__] = ACTIONS(2470), + [anon_sym__Atomic] = ACTIONS(2470), + [anon_sym__Noreturn] = ACTIONS(2470), + [anon_sym__Nonnull] = ACTIONS(2470), + [anon_sym_nullable] = ACTIONS(2470), + [anon_sym__Complex] = ACTIONS(2470), + [anon_sym__Nullable] = ACTIONS(2470), + [anon_sym__Nullable_result] = ACTIONS(2470), + [anon_sym__Null_unspecified] = ACTIONS(2470), + [anon_sym___autoreleasing] = ACTIONS(2470), + [anon_sym___block] = ACTIONS(2470), + [anon_sym___bridge] = ACTIONS(2470), + [anon_sym___bridge_retained] = ACTIONS(2470), + [anon_sym___bridge_transfer] = ACTIONS(2470), + [anon_sym___complex] = ACTIONS(2470), + [anon_sym___const] = ACTIONS(2470), + [anon_sym___imag] = ACTIONS(2470), + [anon_sym___kindof] = ACTIONS(2470), + [anon_sym___nonnull] = ACTIONS(2470), + [anon_sym___nullable] = ACTIONS(2470), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2470), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2470), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2470), + [anon_sym___real] = ACTIONS(2470), + [anon_sym___strong] = ACTIONS(2470), + [anon_sym___unsafe_unretained] = ACTIONS(2470), + [anon_sym___unused] = ACTIONS(2470), + [anon_sym___weak] = ACTIONS(2470), + [anon_sym_alignas] = ACTIONS(2470), + [anon_sym__Alignas] = ACTIONS(2470), + [sym_primitive_type] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [anon_sym_struct] = ACTIONS(2470), + [anon_sym_union] = ACTIONS(2470), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2470), + [anon_sym___typeof] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [aux_sym_preproc_undef_token1] = ACTIONS(2470), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2470), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2470), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2470), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2470), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2470), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2470), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2470), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2470), + [anon_sym_NS_AVAILABLE] = ACTIONS(2470), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2470), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_API_AVAILABLE] = ACTIONS(2470), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_API_DEPRECATED] = ACTIONS(2470), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2470), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2470), + [anon_sym___deprecated_msg] = ACTIONS(2470), + [anon_sym___deprecated_enum_msg] = ACTIONS(2470), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2470), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2470), + [anon_sym_ATend] = ACTIONS(2472), + [anon_sym_AToptional] = ACTIONS(2472), + [anon_sym_ATrequired] = ACTIONS(2472), + [anon_sym_ATsynthesize] = ACTIONS(2472), + [anon_sym_ATdynamic] = ACTIONS(2472), + [anon_sym_ATproperty] = ACTIONS(2472), + [anon_sym_BOOL] = ACTIONS(2470), + [anon_sym_IMP] = ACTIONS(2470), + [anon_sym_SEL] = ACTIONS(2470), + [anon_sym_Class] = ACTIONS(2470), + [anon_sym_id] = ACTIONS(2470), + }, + [2133] = { + [sym__declaration_modifiers] = STATE(2544), + [sym_attribute_specifier] = STATE(2544), + [sym_attribute_declaration] = STATE(2544), + [sym_ms_declspec_modifier] = STATE(2544), + [sym_ms_based_modifier] = STATE(6197), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2587), + [sym__declarator] = STATE(3081), + [sym__abstract_declarator] = STATE(5020), + [sym_parenthesized_declarator] = STATE(3076), + [sym_abstract_parenthesized_declarator] = STATE(4894), + [sym_pointer_declarator] = STATE(3076), + [sym_abstract_pointer_declarator] = STATE(4894), + [sym_function_declarator] = STATE(3076), + [sym_abstract_function_declarator] = STATE(4894), + [sym_array_declarator] = STATE(3076), + [sym_abstract_array_declarator] = STATE(4894), + [sym_storage_class_specifier] = STATE(2544), + [sym_type_qualifier] = STATE(2544), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(4295), + [sym_availability_attribute_specifier] = STATE(2544), + [sym_block_pointer_declarator] = STATE(3076), + [sym_abstract_block_pointer_declarator] = STATE(4894), + [aux_sym__declaration_specifiers_repeat1] = STATE(2544), + [aux_sym_pointer_declarator_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(5328), + [anon_sym_COMMA] = ACTIONS(5283), + [anon_sym_RPAREN] = ACTIONS(5283), + [anon_sym_LPAREN2] = ACTIONS(5330), + [anon_sym_STAR] = ACTIONS(5332), + [anon_sym_CARET] = ACTIONS(5334), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2134] = { + [sym_identifier] = ACTIONS(5336), + [aux_sym_preproc_def_token1] = ACTIONS(5336), + [aux_sym_preproc_if_token1] = ACTIONS(5336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5336), + [sym_preproc_directive] = ACTIONS(5336), + [anon_sym_LPAREN2] = ACTIONS(5256), + [anon_sym_DASH] = ACTIONS(5338), + [anon_sym_PLUS] = ACTIONS(5338), + [anon_sym_LT] = ACTIONS(5338), + [anon_sym___extension__] = ACTIONS(5336), + [anon_sym_typedef] = ACTIONS(5336), + [anon_sym_extern] = ACTIONS(5336), + [anon_sym___attribute__] = ACTIONS(5336), + [anon_sym___attribute] = ACTIONS(5336), + [anon_sym_noreturn] = ACTIONS(5336), + [anon_sym_LBRACK] = ACTIONS(5338), + [anon_sym___declspec] = ACTIONS(5336), + [anon_sym___cdecl] = ACTIONS(5336), + [anon_sym___clrcall] = ACTIONS(5336), + [anon_sym___stdcall] = ACTIONS(5336), + [anon_sym___fastcall] = ACTIONS(5336), + [anon_sym___thiscall] = ACTIONS(5336), + [anon_sym___vectorcall] = ACTIONS(5336), + [anon_sym_LBRACE] = ACTIONS(5338), + [anon_sym_signed] = ACTIONS(5336), + [anon_sym_unsigned] = ACTIONS(5336), + [anon_sym_long] = ACTIONS(5336), + [anon_sym_short] = ACTIONS(5336), + [anon_sym_static] = ACTIONS(5336), + [anon_sym_auto] = ACTIONS(5336), + [anon_sym_register] = ACTIONS(5336), + [anon_sym_inline] = ACTIONS(5336), + [anon_sym___inline] = ACTIONS(5336), + [anon_sym___inline__] = ACTIONS(5336), + [anon_sym___forceinline] = ACTIONS(5336), + [anon_sym_thread_local] = ACTIONS(5336), + [anon_sym___thread] = ACTIONS(5336), + [anon_sym_CG_EXTERN] = ACTIONS(5336), + [anon_sym_CG_INLINE] = ACTIONS(5336), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5336), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5336), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5336), + [anon_sym_IBOutlet] = ACTIONS(5336), + [anon_sym_IBInspectable] = ACTIONS(5336), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5336), + [anon_sym_NS_INLINE] = ACTIONS(5336), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5336), + [anon_sym_OBJC_EXPORT] = ACTIONS(5336), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5336), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5336), + [anon_sym_const] = ACTIONS(5336), + [anon_sym_constexpr] = ACTIONS(5336), + [anon_sym_volatile] = ACTIONS(5336), + [anon_sym_restrict] = ACTIONS(5336), + [anon_sym___restrict__] = ACTIONS(5336), + [anon_sym__Atomic] = ACTIONS(5336), + [anon_sym__Noreturn] = ACTIONS(5336), + [anon_sym__Nonnull] = ACTIONS(5336), + [anon_sym_nullable] = ACTIONS(5336), + [anon_sym__Complex] = ACTIONS(5336), + [anon_sym__Nullable] = ACTIONS(5336), + [anon_sym__Nullable_result] = ACTIONS(5336), + [anon_sym__Null_unspecified] = ACTIONS(5336), + [anon_sym___autoreleasing] = ACTIONS(5336), + [anon_sym___block] = ACTIONS(5336), + [anon_sym___bridge] = ACTIONS(5336), + [anon_sym___bridge_retained] = ACTIONS(5336), + [anon_sym___bridge_transfer] = ACTIONS(5336), + [anon_sym___complex] = ACTIONS(5336), + [anon_sym___const] = ACTIONS(5336), + [anon_sym___imag] = ACTIONS(5336), + [anon_sym___kindof] = ACTIONS(5336), + [anon_sym___nonnull] = ACTIONS(5336), + [anon_sym___nullable] = ACTIONS(5336), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5336), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5336), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5336), + [anon_sym___real] = ACTIONS(5336), + [anon_sym___strong] = ACTIONS(5336), + [anon_sym___unsafe_unretained] = ACTIONS(5336), + [anon_sym___unused] = ACTIONS(5336), + [anon_sym___weak] = ACTIONS(5336), + [anon_sym_alignas] = ACTIONS(5336), + [anon_sym__Alignas] = ACTIONS(5336), + [sym_primitive_type] = ACTIONS(5336), + [anon_sym_enum] = ACTIONS(5336), + [anon_sym_COLON] = ACTIONS(5256), + [anon_sym_struct] = ACTIONS(5336), + [anon_sym_union] = ACTIONS(5336), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5336), + [anon_sym___typeof] = ACTIONS(5336), + [anon_sym_typeof] = ACTIONS(5336), + [aux_sym_preproc_undef_token1] = ACTIONS(5336), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5336), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5336), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5336), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5336), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5336), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5336), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5336), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5336), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5336), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5336), + [anon_sym_NS_AVAILABLE] = ACTIONS(5336), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5336), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5336), + [anon_sym_API_AVAILABLE] = ACTIONS(5336), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5336), + [anon_sym_API_DEPRECATED] = ACTIONS(5336), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5336), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5336), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5336), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5336), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5336), + [anon_sym___deprecated_msg] = ACTIONS(5336), + [anon_sym___deprecated_enum_msg] = ACTIONS(5336), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5336), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5336), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5336), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5336), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5336), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5336), + [anon_sym_ATend] = ACTIONS(5338), + [anon_sym_ATproperty] = ACTIONS(5338), + [anon_sym_BOOL] = ACTIONS(5336), + [anon_sym_IMP] = ACTIONS(5336), + [anon_sym_SEL] = ACTIONS(5336), + [anon_sym_Class] = ACTIONS(5336), + [anon_sym_id] = ACTIONS(5336), + }, + [2135] = { + [aux_sym_method_declaration_repeat2] = STATE(2137), + [sym_identifier] = ACTIONS(5340), + [aux_sym_preproc_def_token1] = ACTIONS(5340), + [aux_sym_preproc_if_token1] = ACTIONS(5340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5340), + [sym_preproc_directive] = ACTIONS(5340), + [anon_sym_DASH] = ACTIONS(5342), + [anon_sym_PLUS] = ACTIONS(5342), + [anon_sym_SEMI] = ACTIONS(5344), + [anon_sym___extension__] = ACTIONS(5340), + [anon_sym_typedef] = ACTIONS(5340), + [anon_sym_extern] = ACTIONS(5340), + [anon_sym___attribute__] = ACTIONS(5340), + [anon_sym___attribute] = ACTIONS(5340), + [anon_sym_noreturn] = ACTIONS(5340), + [anon_sym_LBRACK] = ACTIONS(5342), + [anon_sym___declspec] = ACTIONS(5340), + [anon_sym___cdecl] = ACTIONS(5340), + [anon_sym___clrcall] = ACTIONS(5340), + [anon_sym___stdcall] = ACTIONS(5340), + [anon_sym___fastcall] = ACTIONS(5340), + [anon_sym___thiscall] = ACTIONS(5340), + [anon_sym___vectorcall] = ACTIONS(5340), + [anon_sym_signed] = ACTIONS(5340), + [anon_sym_unsigned] = ACTIONS(5340), + [anon_sym_long] = ACTIONS(5340), + [anon_sym_short] = ACTIONS(5340), + [anon_sym_static] = ACTIONS(5340), + [anon_sym_auto] = ACTIONS(5340), + [anon_sym_register] = ACTIONS(5340), + [anon_sym_inline] = ACTIONS(5340), + [anon_sym___inline] = ACTIONS(5340), + [anon_sym___inline__] = ACTIONS(5340), + [anon_sym___forceinline] = ACTIONS(5340), + [anon_sym_thread_local] = ACTIONS(5340), + [anon_sym___thread] = ACTIONS(5340), + [anon_sym_CG_EXTERN] = ACTIONS(5340), + [anon_sym_CG_INLINE] = ACTIONS(5340), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5340), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5340), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5340), + [anon_sym_IBOutlet] = ACTIONS(5340), + [anon_sym_IBInspectable] = ACTIONS(5340), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5340), + [anon_sym_NS_INLINE] = ACTIONS(5340), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5340), + [anon_sym_OBJC_EXPORT] = ACTIONS(5340), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5340), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5340), + [anon_sym_const] = ACTIONS(5340), + [anon_sym_constexpr] = ACTIONS(5340), + [anon_sym_volatile] = ACTIONS(5340), + [anon_sym_restrict] = ACTIONS(5340), + [anon_sym___restrict__] = ACTIONS(5340), + [anon_sym__Atomic] = ACTIONS(5340), + [anon_sym__Noreturn] = ACTIONS(5340), + [anon_sym__Nonnull] = ACTIONS(5340), + [anon_sym_nullable] = ACTIONS(5340), + [anon_sym__Complex] = ACTIONS(5340), + [anon_sym__Nullable] = ACTIONS(5340), + [anon_sym__Nullable_result] = ACTIONS(5340), + [anon_sym__Null_unspecified] = ACTIONS(5340), + [anon_sym___autoreleasing] = ACTIONS(5340), + [anon_sym___block] = ACTIONS(5340), + [anon_sym___bridge] = ACTIONS(5340), + [anon_sym___bridge_retained] = ACTIONS(5340), + [anon_sym___bridge_transfer] = ACTIONS(5340), + [anon_sym___complex] = ACTIONS(5340), + [anon_sym___const] = ACTIONS(5340), + [anon_sym___imag] = ACTIONS(5340), + [anon_sym___kindof] = ACTIONS(5340), + [anon_sym___nonnull] = ACTIONS(5340), + [anon_sym___nullable] = ACTIONS(5340), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5340), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5340), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5340), + [anon_sym___real] = ACTIONS(5340), + [anon_sym___strong] = ACTIONS(5340), + [anon_sym___unsafe_unretained] = ACTIONS(5340), + [anon_sym___unused] = ACTIONS(5340), + [anon_sym___weak] = ACTIONS(5340), + [anon_sym_alignas] = ACTIONS(5340), + [anon_sym__Alignas] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(5340), + [anon_sym_enum] = ACTIONS(5340), + [anon_sym_struct] = ACTIONS(5340), + [anon_sym_union] = ACTIONS(5340), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5340), + [anon_sym___typeof] = ACTIONS(5340), + [anon_sym_typeof] = ACTIONS(5340), + [aux_sym_preproc_undef_token1] = ACTIONS(5340), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5340), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5340), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5340), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5340), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5340), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5340), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5340), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5340), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5340), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5340), + [anon_sym_NS_AVAILABLE] = ACTIONS(5340), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5340), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5340), + [anon_sym_API_AVAILABLE] = ACTIONS(5340), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5340), + [anon_sym_API_DEPRECATED] = ACTIONS(5340), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5340), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5340), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5340), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5340), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5340), + [anon_sym___deprecated_msg] = ACTIONS(5340), + [anon_sym___deprecated_enum_msg] = ACTIONS(5340), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5340), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5340), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5340), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5340), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5340), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5340), + [anon_sym_ATend] = ACTIONS(5342), + [anon_sym_AToptional] = ACTIONS(5342), + [anon_sym_ATrequired] = ACTIONS(5342), + [anon_sym_ATproperty] = ACTIONS(5342), + [anon_sym_BOOL] = ACTIONS(5340), + [anon_sym_IMP] = ACTIONS(5340), + [anon_sym_SEL] = ACTIONS(5340), + [anon_sym_Class] = ACTIONS(5340), + [anon_sym_id] = ACTIONS(5340), + }, + [2136] = { + [aux_sym_method_declaration_repeat2] = STATE(2137), + [sym_identifier] = ACTIONS(5346), + [aux_sym_preproc_def_token1] = ACTIONS(5346), + [aux_sym_preproc_if_token1] = ACTIONS(5346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5346), + [sym_preproc_directive] = ACTIONS(5346), + [anon_sym_DASH] = ACTIONS(5348), + [anon_sym_PLUS] = ACTIONS(5348), + [anon_sym_SEMI] = ACTIONS(5344), + [anon_sym___extension__] = ACTIONS(5346), + [anon_sym_typedef] = ACTIONS(5346), + [anon_sym_extern] = ACTIONS(5346), + [anon_sym___attribute__] = ACTIONS(5346), + [anon_sym___attribute] = ACTIONS(5346), + [anon_sym_noreturn] = ACTIONS(5346), + [anon_sym_LBRACK] = ACTIONS(5348), + [anon_sym___declspec] = ACTIONS(5346), + [anon_sym___cdecl] = ACTIONS(5346), + [anon_sym___clrcall] = ACTIONS(5346), + [anon_sym___stdcall] = ACTIONS(5346), + [anon_sym___fastcall] = ACTIONS(5346), + [anon_sym___thiscall] = ACTIONS(5346), + [anon_sym___vectorcall] = ACTIONS(5346), + [anon_sym_signed] = ACTIONS(5346), + [anon_sym_unsigned] = ACTIONS(5346), + [anon_sym_long] = ACTIONS(5346), + [anon_sym_short] = ACTIONS(5346), + [anon_sym_static] = ACTIONS(5346), + [anon_sym_auto] = ACTIONS(5346), + [anon_sym_register] = ACTIONS(5346), + [anon_sym_inline] = ACTIONS(5346), + [anon_sym___inline] = ACTIONS(5346), + [anon_sym___inline__] = ACTIONS(5346), + [anon_sym___forceinline] = ACTIONS(5346), + [anon_sym_thread_local] = ACTIONS(5346), + [anon_sym___thread] = ACTIONS(5346), + [anon_sym_CG_EXTERN] = ACTIONS(5346), + [anon_sym_CG_INLINE] = ACTIONS(5346), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5346), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5346), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5346), + [anon_sym_IBOutlet] = ACTIONS(5346), + [anon_sym_IBInspectable] = ACTIONS(5346), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5346), + [anon_sym_NS_INLINE] = ACTIONS(5346), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5346), + [anon_sym_OBJC_EXPORT] = ACTIONS(5346), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5346), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5346), + [anon_sym_const] = ACTIONS(5346), + [anon_sym_constexpr] = ACTIONS(5346), + [anon_sym_volatile] = ACTIONS(5346), + [anon_sym_restrict] = ACTIONS(5346), + [anon_sym___restrict__] = ACTIONS(5346), + [anon_sym__Atomic] = ACTIONS(5346), + [anon_sym__Noreturn] = ACTIONS(5346), + [anon_sym__Nonnull] = ACTIONS(5346), + [anon_sym_nullable] = ACTIONS(5346), + [anon_sym__Complex] = ACTIONS(5346), + [anon_sym__Nullable] = ACTIONS(5346), + [anon_sym__Nullable_result] = ACTIONS(5346), + [anon_sym__Null_unspecified] = ACTIONS(5346), + [anon_sym___autoreleasing] = ACTIONS(5346), + [anon_sym___block] = ACTIONS(5346), + [anon_sym___bridge] = ACTIONS(5346), + [anon_sym___bridge_retained] = ACTIONS(5346), + [anon_sym___bridge_transfer] = ACTIONS(5346), + [anon_sym___complex] = ACTIONS(5346), + [anon_sym___const] = ACTIONS(5346), + [anon_sym___imag] = ACTIONS(5346), + [anon_sym___kindof] = ACTIONS(5346), + [anon_sym___nonnull] = ACTIONS(5346), + [anon_sym___nullable] = ACTIONS(5346), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5346), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5346), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5346), + [anon_sym___real] = ACTIONS(5346), + [anon_sym___strong] = ACTIONS(5346), + [anon_sym___unsafe_unretained] = ACTIONS(5346), + [anon_sym___unused] = ACTIONS(5346), + [anon_sym___weak] = ACTIONS(5346), + [anon_sym_alignas] = ACTIONS(5346), + [anon_sym__Alignas] = ACTIONS(5346), + [sym_primitive_type] = ACTIONS(5346), + [anon_sym_enum] = ACTIONS(5346), + [anon_sym_struct] = ACTIONS(5346), + [anon_sym_union] = ACTIONS(5346), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5346), + [anon_sym___typeof] = ACTIONS(5346), + [anon_sym_typeof] = ACTIONS(5346), + [aux_sym_preproc_undef_token1] = ACTIONS(5346), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5346), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5346), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5346), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5346), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5346), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5346), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5346), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5346), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5346), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5346), + [anon_sym_NS_AVAILABLE] = ACTIONS(5346), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5346), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5346), + [anon_sym_API_AVAILABLE] = ACTIONS(5346), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5346), + [anon_sym_API_DEPRECATED] = ACTIONS(5346), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5346), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5346), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5346), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5346), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5346), + [anon_sym___deprecated_msg] = ACTIONS(5346), + [anon_sym___deprecated_enum_msg] = ACTIONS(5346), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5346), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5346), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5346), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5346), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5346), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5346), + [anon_sym_ATend] = ACTIONS(5348), + [anon_sym_AToptional] = ACTIONS(5348), + [anon_sym_ATrequired] = ACTIONS(5348), + [anon_sym_ATproperty] = ACTIONS(5348), + [anon_sym_BOOL] = ACTIONS(5346), + [anon_sym_IMP] = ACTIONS(5346), + [anon_sym_SEL] = ACTIONS(5346), + [anon_sym_Class] = ACTIONS(5346), + [anon_sym_id] = ACTIONS(5346), + }, + [2137] = { + [aux_sym_method_declaration_repeat2] = STATE(2137), + [sym_identifier] = ACTIONS(5297), + [aux_sym_preproc_def_token1] = ACTIONS(5297), + [aux_sym_preproc_if_token1] = ACTIONS(5297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5297), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5297), + [sym_preproc_directive] = ACTIONS(5297), + [anon_sym_DASH] = ACTIONS(5299), + [anon_sym_PLUS] = ACTIONS(5299), + [anon_sym_SEMI] = ACTIONS(5350), + [anon_sym___extension__] = ACTIONS(5297), + [anon_sym_typedef] = ACTIONS(5297), + [anon_sym_extern] = ACTIONS(5297), + [anon_sym___attribute__] = ACTIONS(5297), + [anon_sym___attribute] = ACTIONS(5297), + [anon_sym_noreturn] = ACTIONS(5297), + [anon_sym_LBRACK] = ACTIONS(5299), + [anon_sym___declspec] = ACTIONS(5297), + [anon_sym___cdecl] = ACTIONS(5297), + [anon_sym___clrcall] = ACTIONS(5297), + [anon_sym___stdcall] = ACTIONS(5297), + [anon_sym___fastcall] = ACTIONS(5297), + [anon_sym___thiscall] = ACTIONS(5297), + [anon_sym___vectorcall] = ACTIONS(5297), + [anon_sym_signed] = ACTIONS(5297), + [anon_sym_unsigned] = ACTIONS(5297), + [anon_sym_long] = ACTIONS(5297), + [anon_sym_short] = ACTIONS(5297), + [anon_sym_static] = ACTIONS(5297), + [anon_sym_auto] = ACTIONS(5297), + [anon_sym_register] = ACTIONS(5297), + [anon_sym_inline] = ACTIONS(5297), + [anon_sym___inline] = ACTIONS(5297), + [anon_sym___inline__] = ACTIONS(5297), + [anon_sym___forceinline] = ACTIONS(5297), + [anon_sym_thread_local] = ACTIONS(5297), + [anon_sym___thread] = ACTIONS(5297), + [anon_sym_CG_EXTERN] = ACTIONS(5297), + [anon_sym_CG_INLINE] = ACTIONS(5297), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5297), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5297), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5297), + [anon_sym_IBOutlet] = ACTIONS(5297), + [anon_sym_IBInspectable] = ACTIONS(5297), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5297), + [anon_sym_NS_INLINE] = ACTIONS(5297), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5297), + [anon_sym_OBJC_EXPORT] = ACTIONS(5297), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5297), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5297), + [anon_sym_const] = ACTIONS(5297), + [anon_sym_constexpr] = ACTIONS(5297), + [anon_sym_volatile] = ACTIONS(5297), + [anon_sym_restrict] = ACTIONS(5297), + [anon_sym___restrict__] = ACTIONS(5297), + [anon_sym__Atomic] = ACTIONS(5297), + [anon_sym__Noreturn] = ACTIONS(5297), + [anon_sym__Nonnull] = ACTIONS(5297), + [anon_sym_nullable] = ACTIONS(5297), + [anon_sym__Complex] = ACTIONS(5297), + [anon_sym__Nullable] = ACTIONS(5297), + [anon_sym__Nullable_result] = ACTIONS(5297), + [anon_sym__Null_unspecified] = ACTIONS(5297), + [anon_sym___autoreleasing] = ACTIONS(5297), + [anon_sym___block] = ACTIONS(5297), + [anon_sym___bridge] = ACTIONS(5297), + [anon_sym___bridge_retained] = ACTIONS(5297), + [anon_sym___bridge_transfer] = ACTIONS(5297), + [anon_sym___complex] = ACTIONS(5297), + [anon_sym___const] = ACTIONS(5297), + [anon_sym___imag] = ACTIONS(5297), + [anon_sym___kindof] = ACTIONS(5297), + [anon_sym___nonnull] = ACTIONS(5297), + [anon_sym___nullable] = ACTIONS(5297), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5297), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5297), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5297), + [anon_sym___real] = ACTIONS(5297), + [anon_sym___strong] = ACTIONS(5297), + [anon_sym___unsafe_unretained] = ACTIONS(5297), + [anon_sym___unused] = ACTIONS(5297), + [anon_sym___weak] = ACTIONS(5297), + [anon_sym_alignas] = ACTIONS(5297), + [anon_sym__Alignas] = ACTIONS(5297), + [sym_primitive_type] = ACTIONS(5297), + [anon_sym_enum] = ACTIONS(5297), + [anon_sym_struct] = ACTIONS(5297), + [anon_sym_union] = ACTIONS(5297), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5297), + [anon_sym___typeof] = ACTIONS(5297), + [anon_sym_typeof] = ACTIONS(5297), + [aux_sym_preproc_undef_token1] = ACTIONS(5297), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5297), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5297), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5297), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5297), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5297), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5297), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5297), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5297), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5297), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5297), + [anon_sym_NS_AVAILABLE] = ACTIONS(5297), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5297), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5297), + [anon_sym_API_AVAILABLE] = ACTIONS(5297), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5297), + [anon_sym_API_DEPRECATED] = ACTIONS(5297), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5297), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5297), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5297), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5297), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5297), + [anon_sym___deprecated_msg] = ACTIONS(5297), + [anon_sym___deprecated_enum_msg] = ACTIONS(5297), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5297), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5297), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5297), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5297), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5297), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5297), + [anon_sym_ATend] = ACTIONS(5299), + [anon_sym_AToptional] = ACTIONS(5299), + [anon_sym_ATrequired] = ACTIONS(5299), + [anon_sym_ATproperty] = ACTIONS(5299), + [anon_sym_BOOL] = ACTIONS(5297), + [anon_sym_IMP] = ACTIONS(5297), + [anon_sym_SEL] = ACTIONS(5297), + [anon_sym_Class] = ACTIONS(5297), + [anon_sym_id] = ACTIONS(5297), + }, + [2138] = { + [sym_identifier] = ACTIONS(2752), + [aux_sym_preproc_def_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token1] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2752), + [sym_preproc_directive] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_PLUS] = ACTIONS(2754), + [anon_sym___extension__] = ACTIONS(2752), + [anon_sym_typedef] = ACTIONS(2752), + [anon_sym_extern] = ACTIONS(2752), + [anon_sym___attribute__] = ACTIONS(2752), + [anon_sym___attribute] = ACTIONS(2752), + [anon_sym_noreturn] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym___declspec] = ACTIONS(2752), + [anon_sym___cdecl] = ACTIONS(2752), + [anon_sym___clrcall] = ACTIONS(2752), + [anon_sym___stdcall] = ACTIONS(2752), + [anon_sym___fastcall] = ACTIONS(2752), + [anon_sym___thiscall] = ACTIONS(2752), + [anon_sym___vectorcall] = ACTIONS(2752), + [anon_sym_signed] = ACTIONS(2752), + [anon_sym_unsigned] = ACTIONS(2752), + [anon_sym_long] = ACTIONS(2752), + [anon_sym_short] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_auto] = ACTIONS(2752), + [anon_sym_register] = ACTIONS(2752), + [anon_sym_inline] = ACTIONS(2752), + [anon_sym___inline] = ACTIONS(2752), + [anon_sym___inline__] = ACTIONS(2752), + [anon_sym___forceinline] = ACTIONS(2752), + [anon_sym_thread_local] = ACTIONS(2752), + [anon_sym___thread] = ACTIONS(2752), + [anon_sym_CG_EXTERN] = ACTIONS(2752), + [anon_sym_CG_INLINE] = ACTIONS(2752), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2752), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2752), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2752), + [anon_sym_IBOutlet] = ACTIONS(2752), + [anon_sym_IBInspectable] = ACTIONS(2752), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2752), + [anon_sym_NS_INLINE] = ACTIONS(2752), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2752), + [anon_sym_OBJC_EXPORT] = ACTIONS(2752), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2752), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2752), + [anon_sym_const] = ACTIONS(2752), + [anon_sym_constexpr] = ACTIONS(2752), + [anon_sym_volatile] = ACTIONS(2752), + [anon_sym_restrict] = ACTIONS(2752), + [anon_sym___restrict__] = ACTIONS(2752), + [anon_sym__Atomic] = ACTIONS(2752), + [anon_sym__Noreturn] = ACTIONS(2752), + [anon_sym__Nonnull] = ACTIONS(2752), + [anon_sym_nullable] = ACTIONS(2752), + [anon_sym__Complex] = ACTIONS(2752), + [anon_sym__Nullable] = ACTIONS(2752), + [anon_sym__Nullable_result] = ACTIONS(2752), + [anon_sym__Null_unspecified] = ACTIONS(2752), + [anon_sym___autoreleasing] = ACTIONS(2752), + [anon_sym___block] = ACTIONS(2752), + [anon_sym___bridge] = ACTIONS(2752), + [anon_sym___bridge_retained] = ACTIONS(2752), + [anon_sym___bridge_transfer] = ACTIONS(2752), + [anon_sym___complex] = ACTIONS(2752), + [anon_sym___const] = ACTIONS(2752), + [anon_sym___imag] = ACTIONS(2752), + [anon_sym___kindof] = ACTIONS(2752), + [anon_sym___nonnull] = ACTIONS(2752), + [anon_sym___nullable] = ACTIONS(2752), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2752), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2752), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2752), + [anon_sym___real] = ACTIONS(2752), + [anon_sym___strong] = ACTIONS(2752), + [anon_sym___unsafe_unretained] = ACTIONS(2752), + [anon_sym___unused] = ACTIONS(2752), + [anon_sym___weak] = ACTIONS(2752), + [anon_sym_alignas] = ACTIONS(2752), + [anon_sym__Alignas] = ACTIONS(2752), + [sym_primitive_type] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2752), + [anon_sym_union] = ACTIONS(2752), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2752), + [anon_sym___typeof] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(2752), + [aux_sym_preproc_undef_token1] = ACTIONS(2752), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2752), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2752), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2752), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2752), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2752), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2752), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2752), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2752), + [anon_sym_NS_AVAILABLE] = ACTIONS(2752), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2752), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_API_AVAILABLE] = ACTIONS(2752), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_API_DEPRECATED] = ACTIONS(2752), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2752), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2752), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2752), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2752), + [anon_sym___deprecated_msg] = ACTIONS(2752), + [anon_sym___deprecated_enum_msg] = ACTIONS(2752), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2752), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2752), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2752), + [anon_sym_ATend] = ACTIONS(2754), + [anon_sym_AToptional] = ACTIONS(2754), + [anon_sym_ATrequired] = ACTIONS(2754), + [anon_sym_ATsynthesize] = ACTIONS(2754), + [anon_sym_ATdynamic] = ACTIONS(2754), + [anon_sym_ATproperty] = ACTIONS(2754), + [anon_sym_BOOL] = ACTIONS(2752), + [anon_sym_IMP] = ACTIONS(2752), + [anon_sym_SEL] = ACTIONS(2752), + [anon_sym_Class] = ACTIONS(2752), + [anon_sym_id] = ACTIONS(2752), + }, + [2139] = { + [sym_identifier] = ACTIONS(2466), + [aux_sym_preproc_def_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token1] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2466), + [sym_preproc_directive] = ACTIONS(2466), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym___extension__] = ACTIONS(2466), + [anon_sym_typedef] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym___attribute__] = ACTIONS(2466), + [anon_sym___attribute] = ACTIONS(2466), + [anon_sym_noreturn] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2468), + [anon_sym___declspec] = ACTIONS(2466), + [anon_sym___cdecl] = ACTIONS(2466), + [anon_sym___clrcall] = ACTIONS(2466), + [anon_sym___stdcall] = ACTIONS(2466), + [anon_sym___fastcall] = ACTIONS(2466), + [anon_sym___thiscall] = ACTIONS(2466), + [anon_sym___vectorcall] = ACTIONS(2466), + [anon_sym_signed] = ACTIONS(2466), + [anon_sym_unsigned] = ACTIONS(2466), + [anon_sym_long] = ACTIONS(2466), + [anon_sym_short] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_auto] = ACTIONS(2466), + [anon_sym_register] = ACTIONS(2466), + [anon_sym_inline] = ACTIONS(2466), + [anon_sym___inline] = ACTIONS(2466), + [anon_sym___inline__] = ACTIONS(2466), + [anon_sym___forceinline] = ACTIONS(2466), + [anon_sym_thread_local] = ACTIONS(2466), + [anon_sym___thread] = ACTIONS(2466), + [anon_sym_CG_EXTERN] = ACTIONS(2466), + [anon_sym_CG_INLINE] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2466), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2466), + [anon_sym_IBOutlet] = ACTIONS(2466), + [anon_sym_IBInspectable] = ACTIONS(2466), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2466), + [anon_sym_NS_INLINE] = ACTIONS(2466), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2466), + [anon_sym_OBJC_EXPORT] = ACTIONS(2466), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_constexpr] = ACTIONS(2466), + [anon_sym_volatile] = ACTIONS(2466), + [anon_sym_restrict] = ACTIONS(2466), + [anon_sym___restrict__] = ACTIONS(2466), + [anon_sym__Atomic] = ACTIONS(2466), + [anon_sym__Noreturn] = ACTIONS(2466), + [anon_sym__Nonnull] = ACTIONS(2466), + [anon_sym_nullable] = ACTIONS(2466), + [anon_sym__Complex] = ACTIONS(2466), + [anon_sym__Nullable] = ACTIONS(2466), + [anon_sym__Nullable_result] = ACTIONS(2466), + [anon_sym__Null_unspecified] = ACTIONS(2466), + [anon_sym___autoreleasing] = ACTIONS(2466), + [anon_sym___block] = ACTIONS(2466), + [anon_sym___bridge] = ACTIONS(2466), + [anon_sym___bridge_retained] = ACTIONS(2466), + [anon_sym___bridge_transfer] = ACTIONS(2466), + [anon_sym___complex] = ACTIONS(2466), + [anon_sym___const] = ACTIONS(2466), + [anon_sym___imag] = ACTIONS(2466), + [anon_sym___kindof] = ACTIONS(2466), + [anon_sym___nonnull] = ACTIONS(2466), + [anon_sym___nullable] = ACTIONS(2466), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2466), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2466), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2466), + [anon_sym___real] = ACTIONS(2466), + [anon_sym___strong] = ACTIONS(2466), + [anon_sym___unsafe_unretained] = ACTIONS(2466), + [anon_sym___unused] = ACTIONS(2466), + [anon_sym___weak] = ACTIONS(2466), + [anon_sym_alignas] = ACTIONS(2466), + [anon_sym__Alignas] = ACTIONS(2466), + [sym_primitive_type] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), + [anon_sym_struct] = ACTIONS(2466), + [anon_sym_union] = ACTIONS(2466), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2466), + [anon_sym___typeof] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2466), + [aux_sym_preproc_undef_token1] = ACTIONS(2466), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2466), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2466), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2466), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2466), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE] = ACTIONS(2466), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_API_AVAILABLE] = ACTIONS(2466), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_API_DEPRECATED] = ACTIONS(2466), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2466), + [anon_sym___deprecated_msg] = ACTIONS(2466), + [anon_sym___deprecated_enum_msg] = ACTIONS(2466), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2466), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2466), + [anon_sym_ATend] = ACTIONS(2468), + [anon_sym_AToptional] = ACTIONS(2468), + [anon_sym_ATrequired] = ACTIONS(2468), + [anon_sym_ATsynthesize] = ACTIONS(2468), + [anon_sym_ATdynamic] = ACTIONS(2468), + [anon_sym_ATproperty] = ACTIONS(2468), + [anon_sym_BOOL] = ACTIONS(2466), + [anon_sym_IMP] = ACTIONS(2466), + [anon_sym_SEL] = ACTIONS(2466), + [anon_sym_Class] = ACTIONS(2466), + [anon_sym_id] = ACTIONS(2466), + }, + [2140] = { + [sym_identifier] = ACTIONS(2744), + [aux_sym_preproc_def_token1] = ACTIONS(2744), + [aux_sym_preproc_if_token1] = ACTIONS(2744), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2744), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2744), + [sym_preproc_directive] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2746), + [anon_sym_PLUS] = ACTIONS(2746), + [anon_sym___extension__] = ACTIONS(2744), + [anon_sym_typedef] = ACTIONS(2744), + [anon_sym_extern] = ACTIONS(2744), + [anon_sym___attribute__] = ACTIONS(2744), + [anon_sym___attribute] = ACTIONS(2744), + [anon_sym_noreturn] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym___declspec] = ACTIONS(2744), + [anon_sym___cdecl] = ACTIONS(2744), + [anon_sym___clrcall] = ACTIONS(2744), + [anon_sym___stdcall] = ACTIONS(2744), + [anon_sym___fastcall] = ACTIONS(2744), + [anon_sym___thiscall] = ACTIONS(2744), + [anon_sym___vectorcall] = ACTIONS(2744), + [anon_sym_signed] = ACTIONS(2744), + [anon_sym_unsigned] = ACTIONS(2744), + [anon_sym_long] = ACTIONS(2744), + [anon_sym_short] = ACTIONS(2744), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_auto] = ACTIONS(2744), + [anon_sym_register] = ACTIONS(2744), + [anon_sym_inline] = ACTIONS(2744), + [anon_sym___inline] = ACTIONS(2744), + [anon_sym___inline__] = ACTIONS(2744), + [anon_sym___forceinline] = ACTIONS(2744), + [anon_sym_thread_local] = ACTIONS(2744), + [anon_sym___thread] = ACTIONS(2744), + [anon_sym_CG_EXTERN] = ACTIONS(2744), + [anon_sym_CG_INLINE] = ACTIONS(2744), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2744), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2744), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2744), + [anon_sym_IBOutlet] = ACTIONS(2744), + [anon_sym_IBInspectable] = ACTIONS(2744), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2744), + [anon_sym_NS_INLINE] = ACTIONS(2744), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2744), + [anon_sym_OBJC_EXPORT] = ACTIONS(2744), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2744), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2744), + [anon_sym_const] = ACTIONS(2744), + [anon_sym_constexpr] = ACTIONS(2744), + [anon_sym_volatile] = ACTIONS(2744), + [anon_sym_restrict] = ACTIONS(2744), + [anon_sym___restrict__] = ACTIONS(2744), + [anon_sym__Atomic] = ACTIONS(2744), + [anon_sym__Noreturn] = ACTIONS(2744), + [anon_sym__Nonnull] = ACTIONS(2744), + [anon_sym_nullable] = ACTIONS(2744), + [anon_sym__Complex] = ACTIONS(2744), + [anon_sym__Nullable] = ACTIONS(2744), + [anon_sym__Nullable_result] = ACTIONS(2744), + [anon_sym__Null_unspecified] = ACTIONS(2744), + [anon_sym___autoreleasing] = ACTIONS(2744), + [anon_sym___block] = ACTIONS(2744), + [anon_sym___bridge] = ACTIONS(2744), + [anon_sym___bridge_retained] = ACTIONS(2744), + [anon_sym___bridge_transfer] = ACTIONS(2744), + [anon_sym___complex] = ACTIONS(2744), + [anon_sym___const] = ACTIONS(2744), + [anon_sym___imag] = ACTIONS(2744), + [anon_sym___kindof] = ACTIONS(2744), + [anon_sym___nonnull] = ACTIONS(2744), + [anon_sym___nullable] = ACTIONS(2744), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2744), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2744), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2744), + [anon_sym___real] = ACTIONS(2744), + [anon_sym___strong] = ACTIONS(2744), + [anon_sym___unsafe_unretained] = ACTIONS(2744), + [anon_sym___unused] = ACTIONS(2744), + [anon_sym___weak] = ACTIONS(2744), + [anon_sym_alignas] = ACTIONS(2744), + [anon_sym__Alignas] = ACTIONS(2744), + [sym_primitive_type] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), + [anon_sym_struct] = ACTIONS(2744), + [anon_sym_union] = ACTIONS(2744), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2744), + [anon_sym___typeof] = ACTIONS(2744), + [anon_sym_typeof] = ACTIONS(2744), + [aux_sym_preproc_undef_token1] = ACTIONS(2744), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2744), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2744), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2744), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2744), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2744), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2744), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2744), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2744), + [anon_sym_NS_AVAILABLE] = ACTIONS(2744), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2744), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_API_AVAILABLE] = ACTIONS(2744), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_API_DEPRECATED] = ACTIONS(2744), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2744), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2744), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2744), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2744), + [anon_sym___deprecated_msg] = ACTIONS(2744), + [anon_sym___deprecated_enum_msg] = ACTIONS(2744), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2744), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2744), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2744), + [anon_sym_ATend] = ACTIONS(2746), + [anon_sym_AToptional] = ACTIONS(2746), + [anon_sym_ATrequired] = ACTIONS(2746), + [anon_sym_ATsynthesize] = ACTIONS(2746), + [anon_sym_ATdynamic] = ACTIONS(2746), + [anon_sym_ATproperty] = ACTIONS(2746), + [anon_sym_BOOL] = ACTIONS(2744), + [anon_sym_IMP] = ACTIONS(2744), + [anon_sym_SEL] = ACTIONS(2744), + [anon_sym_Class] = ACTIONS(2744), + [anon_sym_id] = ACTIONS(2744), + }, + [2141] = { + [sym_identifier] = ACTIONS(2412), + [aux_sym_preproc_def_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2412), + [sym_preproc_directive] = ACTIONS(2412), + [anon_sym_DASH] = ACTIONS(2414), + [anon_sym_PLUS] = ACTIONS(2414), + [anon_sym___extension__] = ACTIONS(2412), + [anon_sym_typedef] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym___attribute__] = ACTIONS(2412), + [anon_sym___attribute] = ACTIONS(2412), + [anon_sym_noreturn] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym___declspec] = ACTIONS(2412), + [anon_sym___cdecl] = ACTIONS(2412), + [anon_sym___clrcall] = ACTIONS(2412), + [anon_sym___stdcall] = ACTIONS(2412), + [anon_sym___fastcall] = ACTIONS(2412), + [anon_sym___thiscall] = ACTIONS(2412), + [anon_sym___vectorcall] = ACTIONS(2412), + [anon_sym_signed] = ACTIONS(2412), + [anon_sym_unsigned] = ACTIONS(2412), + [anon_sym_long] = ACTIONS(2412), + [anon_sym_short] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_auto] = ACTIONS(2412), + [anon_sym_register] = ACTIONS(2412), + [anon_sym_inline] = ACTIONS(2412), + [anon_sym___inline] = ACTIONS(2412), + [anon_sym___inline__] = ACTIONS(2412), + [anon_sym___forceinline] = ACTIONS(2412), + [anon_sym_thread_local] = ACTIONS(2412), + [anon_sym___thread] = ACTIONS(2412), + [anon_sym_CG_EXTERN] = ACTIONS(2412), + [anon_sym_CG_INLINE] = ACTIONS(2412), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2412), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2412), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2412), + [anon_sym_IBOutlet] = ACTIONS(2412), + [anon_sym_IBInspectable] = ACTIONS(2412), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2412), + [anon_sym_NS_INLINE] = ACTIONS(2412), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2412), + [anon_sym_OBJC_EXPORT] = ACTIONS(2412), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2412), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_constexpr] = ACTIONS(2412), + [anon_sym_volatile] = ACTIONS(2412), + [anon_sym_restrict] = ACTIONS(2412), + [anon_sym___restrict__] = ACTIONS(2412), + [anon_sym__Atomic] = ACTIONS(2412), + [anon_sym__Noreturn] = ACTIONS(2412), + [anon_sym__Nonnull] = ACTIONS(2412), + [anon_sym_nullable] = ACTIONS(2412), + [anon_sym__Complex] = ACTIONS(2412), + [anon_sym__Nullable] = ACTIONS(2412), + [anon_sym__Nullable_result] = ACTIONS(2412), + [anon_sym__Null_unspecified] = ACTIONS(2412), + [anon_sym___autoreleasing] = ACTIONS(2412), + [anon_sym___block] = ACTIONS(2412), + [anon_sym___bridge] = ACTIONS(2412), + [anon_sym___bridge_retained] = ACTIONS(2412), + [anon_sym___bridge_transfer] = ACTIONS(2412), + [anon_sym___complex] = ACTIONS(2412), + [anon_sym___const] = ACTIONS(2412), + [anon_sym___imag] = ACTIONS(2412), + [anon_sym___kindof] = ACTIONS(2412), + [anon_sym___nonnull] = ACTIONS(2412), + [anon_sym___nullable] = ACTIONS(2412), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2412), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2412), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2412), + [anon_sym___real] = ACTIONS(2412), + [anon_sym___strong] = ACTIONS(2412), + [anon_sym___unsafe_unretained] = ACTIONS(2412), + [anon_sym___unused] = ACTIONS(2412), + [anon_sym___weak] = ACTIONS(2412), + [anon_sym_alignas] = ACTIONS(2412), + [anon_sym__Alignas] = ACTIONS(2412), + [sym_primitive_type] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [anon_sym_struct] = ACTIONS(2412), + [anon_sym_union] = ACTIONS(2412), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2412), + [anon_sym___typeof] = ACTIONS(2412), + [anon_sym_typeof] = ACTIONS(2412), + [aux_sym_preproc_undef_token1] = ACTIONS(2412), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2412), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2412), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2412), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2412), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2412), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2412), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2412), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2412), + [anon_sym_NS_AVAILABLE] = ACTIONS(2412), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2412), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_API_AVAILABLE] = ACTIONS(2412), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_API_DEPRECATED] = ACTIONS(2412), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2412), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2412), + [anon_sym___deprecated_msg] = ACTIONS(2412), + [anon_sym___deprecated_enum_msg] = ACTIONS(2412), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2412), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2412), + [anon_sym_ATend] = ACTIONS(2414), + [anon_sym_AToptional] = ACTIONS(2414), + [anon_sym_ATrequired] = ACTIONS(2414), + [anon_sym_ATsynthesize] = ACTIONS(2414), + [anon_sym_ATdynamic] = ACTIONS(2414), + [anon_sym_ATproperty] = ACTIONS(2414), + [anon_sym_BOOL] = ACTIONS(2412), + [anon_sym_IMP] = ACTIONS(2412), + [anon_sym_SEL] = ACTIONS(2412), + [anon_sym_Class] = ACTIONS(2412), + [anon_sym_id] = ACTIONS(2412), + }, + [2142] = { + [aux_sym_method_declaration_repeat2] = STATE(2108), + [sym_identifier] = ACTIONS(5353), + [aux_sym_preproc_def_token1] = ACTIONS(5353), + [aux_sym_preproc_if_token1] = ACTIONS(5353), + [aux_sym_preproc_if_token2] = ACTIONS(5353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5353), + [aux_sym_preproc_else_token1] = ACTIONS(5353), + [aux_sym_preproc_elif_token1] = ACTIONS(5353), + [sym_preproc_directive] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(5355), + [anon_sym_PLUS] = ACTIONS(5355), + [anon_sym_SEMI] = ACTIONS(5357), + [anon_sym___extension__] = ACTIONS(5353), + [anon_sym_typedef] = ACTIONS(5353), + [anon_sym_extern] = ACTIONS(5353), + [anon_sym___attribute__] = ACTIONS(5353), + [anon_sym___attribute] = ACTIONS(5353), + [anon_sym_noreturn] = ACTIONS(5353), + [anon_sym_LBRACK] = ACTIONS(5355), + [anon_sym___declspec] = ACTIONS(5353), + [anon_sym___cdecl] = ACTIONS(5353), + [anon_sym___clrcall] = ACTIONS(5353), + [anon_sym___stdcall] = ACTIONS(5353), + [anon_sym___fastcall] = ACTIONS(5353), + [anon_sym___thiscall] = ACTIONS(5353), + [anon_sym___vectorcall] = ACTIONS(5353), + [anon_sym_signed] = ACTIONS(5353), + [anon_sym_unsigned] = ACTIONS(5353), + [anon_sym_long] = ACTIONS(5353), + [anon_sym_short] = ACTIONS(5353), + [anon_sym_static] = ACTIONS(5353), + [anon_sym_auto] = ACTIONS(5353), + [anon_sym_register] = ACTIONS(5353), + [anon_sym_inline] = ACTIONS(5353), + [anon_sym___inline] = ACTIONS(5353), + [anon_sym___inline__] = ACTIONS(5353), + [anon_sym___forceinline] = ACTIONS(5353), + [anon_sym_thread_local] = ACTIONS(5353), + [anon_sym___thread] = ACTIONS(5353), + [anon_sym_CG_EXTERN] = ACTIONS(5353), + [anon_sym_CG_INLINE] = ACTIONS(5353), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5353), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5353), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5353), + [anon_sym_IBOutlet] = ACTIONS(5353), + [anon_sym_IBInspectable] = ACTIONS(5353), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5353), + [anon_sym_NS_INLINE] = ACTIONS(5353), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5353), + [anon_sym_OBJC_EXPORT] = ACTIONS(5353), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5353), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5353), + [anon_sym_const] = ACTIONS(5353), + [anon_sym_constexpr] = ACTIONS(5353), + [anon_sym_volatile] = ACTIONS(5353), + [anon_sym_restrict] = ACTIONS(5353), + [anon_sym___restrict__] = ACTIONS(5353), + [anon_sym__Atomic] = ACTIONS(5353), + [anon_sym__Noreturn] = ACTIONS(5353), + [anon_sym__Nonnull] = ACTIONS(5353), + [anon_sym_nullable] = ACTIONS(5353), + [anon_sym__Complex] = ACTIONS(5353), + [anon_sym__Nullable] = ACTIONS(5353), + [anon_sym__Nullable_result] = ACTIONS(5353), + [anon_sym__Null_unspecified] = ACTIONS(5353), + [anon_sym___autoreleasing] = ACTIONS(5353), + [anon_sym___block] = ACTIONS(5353), + [anon_sym___bridge] = ACTIONS(5353), + [anon_sym___bridge_retained] = ACTIONS(5353), + [anon_sym___bridge_transfer] = ACTIONS(5353), + [anon_sym___complex] = ACTIONS(5353), + [anon_sym___const] = ACTIONS(5353), + [anon_sym___imag] = ACTIONS(5353), + [anon_sym___kindof] = ACTIONS(5353), + [anon_sym___nonnull] = ACTIONS(5353), + [anon_sym___nullable] = ACTIONS(5353), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5353), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5353), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5353), + [anon_sym___real] = ACTIONS(5353), + [anon_sym___strong] = ACTIONS(5353), + [anon_sym___unsafe_unretained] = ACTIONS(5353), + [anon_sym___unused] = ACTIONS(5353), + [anon_sym___weak] = ACTIONS(5353), + [anon_sym_alignas] = ACTIONS(5353), + [anon_sym__Alignas] = ACTIONS(5353), + [sym_primitive_type] = ACTIONS(5353), + [anon_sym_enum] = ACTIONS(5353), + [anon_sym_struct] = ACTIONS(5353), + [anon_sym_union] = ACTIONS(5353), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5353), + [anon_sym___typeof] = ACTIONS(5353), + [anon_sym_typeof] = ACTIONS(5353), + [aux_sym_preproc_undef_token1] = ACTIONS(5353), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5353), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5353), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5353), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5353), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5353), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5353), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5353), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5353), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5353), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5353), + [anon_sym_NS_AVAILABLE] = ACTIONS(5353), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5353), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5353), + [anon_sym_API_AVAILABLE] = ACTIONS(5353), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5353), + [anon_sym_API_DEPRECATED] = ACTIONS(5353), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5353), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5353), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5353), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5353), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5353), + [anon_sym___deprecated_msg] = ACTIONS(5353), + [anon_sym___deprecated_enum_msg] = ACTIONS(5353), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5353), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5353), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5353), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5353), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5353), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5353), + [anon_sym_ATproperty] = ACTIONS(5355), + [anon_sym_BOOL] = ACTIONS(5353), + [anon_sym_IMP] = ACTIONS(5353), + [anon_sym_SEL] = ACTIONS(5353), + [anon_sym_Class] = ACTIONS(5353), + [anon_sym_id] = ACTIONS(5353), + }, + [2143] = { + [aux_sym_method_declaration_repeat2] = STATE(2108), + [sym_identifier] = ACTIONS(5359), + [aux_sym_preproc_def_token1] = ACTIONS(5359), + [aux_sym_preproc_if_token1] = ACTIONS(5359), + [aux_sym_preproc_if_token2] = ACTIONS(5359), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5359), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5359), + [aux_sym_preproc_else_token1] = ACTIONS(5359), + [aux_sym_preproc_elif_token1] = ACTIONS(5359), + [sym_preproc_directive] = ACTIONS(5359), + [anon_sym_DASH] = ACTIONS(5361), + [anon_sym_PLUS] = ACTIONS(5361), + [anon_sym_SEMI] = ACTIONS(5357), + [anon_sym___extension__] = ACTIONS(5359), + [anon_sym_typedef] = ACTIONS(5359), + [anon_sym_extern] = ACTIONS(5359), + [anon_sym___attribute__] = ACTIONS(5359), + [anon_sym___attribute] = ACTIONS(5359), + [anon_sym_noreturn] = ACTIONS(5359), + [anon_sym_LBRACK] = ACTIONS(5361), + [anon_sym___declspec] = ACTIONS(5359), + [anon_sym___cdecl] = ACTIONS(5359), + [anon_sym___clrcall] = ACTIONS(5359), + [anon_sym___stdcall] = ACTIONS(5359), + [anon_sym___fastcall] = ACTIONS(5359), + [anon_sym___thiscall] = ACTIONS(5359), + [anon_sym___vectorcall] = ACTIONS(5359), + [anon_sym_signed] = ACTIONS(5359), + [anon_sym_unsigned] = ACTIONS(5359), + [anon_sym_long] = ACTIONS(5359), + [anon_sym_short] = ACTIONS(5359), + [anon_sym_static] = ACTIONS(5359), + [anon_sym_auto] = ACTIONS(5359), + [anon_sym_register] = ACTIONS(5359), + [anon_sym_inline] = ACTIONS(5359), + [anon_sym___inline] = ACTIONS(5359), + [anon_sym___inline__] = ACTIONS(5359), + [anon_sym___forceinline] = ACTIONS(5359), + [anon_sym_thread_local] = ACTIONS(5359), + [anon_sym___thread] = ACTIONS(5359), + [anon_sym_CG_EXTERN] = ACTIONS(5359), + [anon_sym_CG_INLINE] = ACTIONS(5359), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5359), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5359), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5359), + [anon_sym_IBOutlet] = ACTIONS(5359), + [anon_sym_IBInspectable] = ACTIONS(5359), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5359), + [anon_sym_NS_INLINE] = ACTIONS(5359), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5359), + [anon_sym_OBJC_EXPORT] = ACTIONS(5359), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5359), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5359), + [anon_sym_const] = ACTIONS(5359), + [anon_sym_constexpr] = ACTIONS(5359), + [anon_sym_volatile] = ACTIONS(5359), + [anon_sym_restrict] = ACTIONS(5359), + [anon_sym___restrict__] = ACTIONS(5359), + [anon_sym__Atomic] = ACTIONS(5359), + [anon_sym__Noreturn] = ACTIONS(5359), + [anon_sym__Nonnull] = ACTIONS(5359), + [anon_sym_nullable] = ACTIONS(5359), + [anon_sym__Complex] = ACTIONS(5359), + [anon_sym__Nullable] = ACTIONS(5359), + [anon_sym__Nullable_result] = ACTIONS(5359), + [anon_sym__Null_unspecified] = ACTIONS(5359), + [anon_sym___autoreleasing] = ACTIONS(5359), + [anon_sym___block] = ACTIONS(5359), + [anon_sym___bridge] = ACTIONS(5359), + [anon_sym___bridge_retained] = ACTIONS(5359), + [anon_sym___bridge_transfer] = ACTIONS(5359), + [anon_sym___complex] = ACTIONS(5359), + [anon_sym___const] = ACTIONS(5359), + [anon_sym___imag] = ACTIONS(5359), + [anon_sym___kindof] = ACTIONS(5359), + [anon_sym___nonnull] = ACTIONS(5359), + [anon_sym___nullable] = ACTIONS(5359), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5359), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5359), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5359), + [anon_sym___real] = ACTIONS(5359), + [anon_sym___strong] = ACTIONS(5359), + [anon_sym___unsafe_unretained] = ACTIONS(5359), + [anon_sym___unused] = ACTIONS(5359), + [anon_sym___weak] = ACTIONS(5359), + [anon_sym_alignas] = ACTIONS(5359), + [anon_sym__Alignas] = ACTIONS(5359), + [sym_primitive_type] = ACTIONS(5359), + [anon_sym_enum] = ACTIONS(5359), + [anon_sym_struct] = ACTIONS(5359), + [anon_sym_union] = ACTIONS(5359), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5359), + [anon_sym___typeof] = ACTIONS(5359), + [anon_sym_typeof] = ACTIONS(5359), + [aux_sym_preproc_undef_token1] = ACTIONS(5359), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5359), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5359), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5359), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5359), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5359), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5359), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5359), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5359), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5359), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5359), + [anon_sym_NS_AVAILABLE] = ACTIONS(5359), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5359), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5359), + [anon_sym_API_AVAILABLE] = ACTIONS(5359), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5359), + [anon_sym_API_DEPRECATED] = ACTIONS(5359), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5359), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5359), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5359), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5359), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5359), + [anon_sym___deprecated_msg] = ACTIONS(5359), + [anon_sym___deprecated_enum_msg] = ACTIONS(5359), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5359), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5359), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5359), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5359), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5359), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5359), + [anon_sym_ATproperty] = ACTIONS(5361), + [anon_sym_BOOL] = ACTIONS(5359), + [anon_sym_IMP] = ACTIONS(5359), + [anon_sym_SEL] = ACTIONS(5359), + [anon_sym_Class] = ACTIONS(5359), + [anon_sym_id] = ACTIONS(5359), + }, + [2144] = { + [sym_identifier] = ACTIONS(2412), + [aux_sym_preproc_def_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token2] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2412), + [aux_sym_preproc_else_token1] = ACTIONS(2412), + [aux_sym_preproc_elif_token1] = ACTIONS(2412), + [sym_preproc_directive] = ACTIONS(2412), + [anon_sym_DASH] = ACTIONS(2414), + [anon_sym_PLUS] = ACTIONS(2414), + [anon_sym___extension__] = ACTIONS(2412), + [anon_sym_typedef] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym___attribute__] = ACTIONS(2412), + [anon_sym___attribute] = ACTIONS(2412), + [anon_sym_noreturn] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym___declspec] = ACTIONS(2412), + [anon_sym___cdecl] = ACTIONS(2412), + [anon_sym___clrcall] = ACTIONS(2412), + [anon_sym___stdcall] = ACTIONS(2412), + [anon_sym___fastcall] = ACTIONS(2412), + [anon_sym___thiscall] = ACTIONS(2412), + [anon_sym___vectorcall] = ACTIONS(2412), + [anon_sym_signed] = ACTIONS(2412), + [anon_sym_unsigned] = ACTIONS(2412), + [anon_sym_long] = ACTIONS(2412), + [anon_sym_short] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_auto] = ACTIONS(2412), + [anon_sym_register] = ACTIONS(2412), + [anon_sym_inline] = ACTIONS(2412), + [anon_sym___inline] = ACTIONS(2412), + [anon_sym___inline__] = ACTIONS(2412), + [anon_sym___forceinline] = ACTIONS(2412), + [anon_sym_thread_local] = ACTIONS(2412), + [anon_sym___thread] = ACTIONS(2412), + [anon_sym_CG_EXTERN] = ACTIONS(2412), + [anon_sym_CG_INLINE] = ACTIONS(2412), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2412), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2412), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2412), + [anon_sym_IBOutlet] = ACTIONS(2412), + [anon_sym_IBInspectable] = ACTIONS(2412), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2412), + [anon_sym_NS_INLINE] = ACTIONS(2412), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2412), + [anon_sym_OBJC_EXPORT] = ACTIONS(2412), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2412), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_constexpr] = ACTIONS(2412), + [anon_sym_volatile] = ACTIONS(2412), + [anon_sym_restrict] = ACTIONS(2412), + [anon_sym___restrict__] = ACTIONS(2412), + [anon_sym__Atomic] = ACTIONS(2412), + [anon_sym__Noreturn] = ACTIONS(2412), + [anon_sym__Nonnull] = ACTIONS(2412), + [anon_sym_nullable] = ACTIONS(2412), + [anon_sym__Complex] = ACTIONS(2412), + [anon_sym__Nullable] = ACTIONS(2412), + [anon_sym__Nullable_result] = ACTIONS(2412), + [anon_sym__Null_unspecified] = ACTIONS(2412), + [anon_sym___autoreleasing] = ACTIONS(2412), + [anon_sym___block] = ACTIONS(2412), + [anon_sym___bridge] = ACTIONS(2412), + [anon_sym___bridge_retained] = ACTIONS(2412), + [anon_sym___bridge_transfer] = ACTIONS(2412), + [anon_sym___complex] = ACTIONS(2412), + [anon_sym___const] = ACTIONS(2412), + [anon_sym___imag] = ACTIONS(2412), + [anon_sym___kindof] = ACTIONS(2412), + [anon_sym___nonnull] = ACTIONS(2412), + [anon_sym___nullable] = ACTIONS(2412), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2412), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2412), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2412), + [anon_sym___real] = ACTIONS(2412), + [anon_sym___strong] = ACTIONS(2412), + [anon_sym___unsafe_unretained] = ACTIONS(2412), + [anon_sym___unused] = ACTIONS(2412), + [anon_sym___weak] = ACTIONS(2412), + [anon_sym_alignas] = ACTIONS(2412), + [anon_sym__Alignas] = ACTIONS(2412), + [sym_primitive_type] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [anon_sym_struct] = ACTIONS(2412), + [anon_sym_union] = ACTIONS(2412), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2412), + [anon_sym___typeof] = ACTIONS(2412), + [anon_sym_typeof] = ACTIONS(2412), + [aux_sym_preproc_undef_token1] = ACTIONS(2412), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2412), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2412), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2412), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2412), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2412), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2412), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2412), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2412), + [anon_sym_NS_AVAILABLE] = ACTIONS(2412), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2412), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_API_AVAILABLE] = ACTIONS(2412), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_API_DEPRECATED] = ACTIONS(2412), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2412), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2412), + [anon_sym___deprecated_msg] = ACTIONS(2412), + [anon_sym___deprecated_enum_msg] = ACTIONS(2412), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2412), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2412), + [anon_sym_ATsynthesize] = ACTIONS(2414), + [anon_sym_ATdynamic] = ACTIONS(2414), + [anon_sym_ATproperty] = ACTIONS(2414), + [anon_sym_BOOL] = ACTIONS(2412), + [anon_sym_IMP] = ACTIONS(2412), + [anon_sym_SEL] = ACTIONS(2412), + [anon_sym_Class] = ACTIONS(2412), + [anon_sym_id] = ACTIONS(2412), + }, + [2145] = { + [aux_sym_method_declaration_repeat2] = STATE(2137), + [sym_identifier] = ACTIONS(5363), + [aux_sym_preproc_def_token1] = ACTIONS(5363), + [aux_sym_preproc_if_token1] = ACTIONS(5363), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5363), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5363), + [sym_preproc_directive] = ACTIONS(5363), + [anon_sym_DASH] = ACTIONS(5365), + [anon_sym_PLUS] = ACTIONS(5365), + [anon_sym_SEMI] = ACTIONS(5344), + [anon_sym___extension__] = ACTIONS(5363), + [anon_sym_typedef] = ACTIONS(5363), + [anon_sym_extern] = ACTIONS(5363), + [anon_sym___attribute__] = ACTIONS(5363), + [anon_sym___attribute] = ACTIONS(5363), + [anon_sym_noreturn] = ACTIONS(5363), + [anon_sym_LBRACK] = ACTIONS(5365), + [anon_sym___declspec] = ACTIONS(5363), + [anon_sym___cdecl] = ACTIONS(5363), + [anon_sym___clrcall] = ACTIONS(5363), + [anon_sym___stdcall] = ACTIONS(5363), + [anon_sym___fastcall] = ACTIONS(5363), + [anon_sym___thiscall] = ACTIONS(5363), + [anon_sym___vectorcall] = ACTIONS(5363), + [anon_sym_signed] = ACTIONS(5363), + [anon_sym_unsigned] = ACTIONS(5363), + [anon_sym_long] = ACTIONS(5363), + [anon_sym_short] = ACTIONS(5363), + [anon_sym_static] = ACTIONS(5363), + [anon_sym_auto] = ACTIONS(5363), + [anon_sym_register] = ACTIONS(5363), + [anon_sym_inline] = ACTIONS(5363), + [anon_sym___inline] = ACTIONS(5363), + [anon_sym___inline__] = ACTIONS(5363), + [anon_sym___forceinline] = ACTIONS(5363), + [anon_sym_thread_local] = ACTIONS(5363), + [anon_sym___thread] = ACTIONS(5363), + [anon_sym_CG_EXTERN] = ACTIONS(5363), + [anon_sym_CG_INLINE] = ACTIONS(5363), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5363), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5363), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5363), + [anon_sym_IBOutlet] = ACTIONS(5363), + [anon_sym_IBInspectable] = ACTIONS(5363), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5363), + [anon_sym_NS_INLINE] = ACTIONS(5363), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5363), + [anon_sym_OBJC_EXPORT] = ACTIONS(5363), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5363), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5363), + [anon_sym_const] = ACTIONS(5363), + [anon_sym_constexpr] = ACTIONS(5363), + [anon_sym_volatile] = ACTIONS(5363), + [anon_sym_restrict] = ACTIONS(5363), + [anon_sym___restrict__] = ACTIONS(5363), + [anon_sym__Atomic] = ACTIONS(5363), + [anon_sym__Noreturn] = ACTIONS(5363), + [anon_sym__Nonnull] = ACTIONS(5363), + [anon_sym_nullable] = ACTIONS(5363), + [anon_sym__Complex] = ACTIONS(5363), + [anon_sym__Nullable] = ACTIONS(5363), + [anon_sym__Nullable_result] = ACTIONS(5363), + [anon_sym__Null_unspecified] = ACTIONS(5363), + [anon_sym___autoreleasing] = ACTIONS(5363), + [anon_sym___block] = ACTIONS(5363), + [anon_sym___bridge] = ACTIONS(5363), + [anon_sym___bridge_retained] = ACTIONS(5363), + [anon_sym___bridge_transfer] = ACTIONS(5363), + [anon_sym___complex] = ACTIONS(5363), + [anon_sym___const] = ACTIONS(5363), + [anon_sym___imag] = ACTIONS(5363), + [anon_sym___kindof] = ACTIONS(5363), + [anon_sym___nonnull] = ACTIONS(5363), + [anon_sym___nullable] = ACTIONS(5363), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5363), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5363), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5363), + [anon_sym___real] = ACTIONS(5363), + [anon_sym___strong] = ACTIONS(5363), + [anon_sym___unsafe_unretained] = ACTIONS(5363), + [anon_sym___unused] = ACTIONS(5363), + [anon_sym___weak] = ACTIONS(5363), + [anon_sym_alignas] = ACTIONS(5363), + [anon_sym__Alignas] = ACTIONS(5363), + [sym_primitive_type] = ACTIONS(5363), + [anon_sym_enum] = ACTIONS(5363), + [anon_sym_struct] = ACTIONS(5363), + [anon_sym_union] = ACTIONS(5363), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5363), + [anon_sym___typeof] = ACTIONS(5363), + [anon_sym_typeof] = ACTIONS(5363), + [aux_sym_preproc_undef_token1] = ACTIONS(5363), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5363), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5363), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5363), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5363), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5363), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5363), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5363), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5363), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5363), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5363), + [anon_sym_NS_AVAILABLE] = ACTIONS(5363), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5363), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5363), + [anon_sym_API_AVAILABLE] = ACTIONS(5363), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5363), + [anon_sym_API_DEPRECATED] = ACTIONS(5363), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5363), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5363), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5363), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5363), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5363), + [anon_sym___deprecated_msg] = ACTIONS(5363), + [anon_sym___deprecated_enum_msg] = ACTIONS(5363), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5363), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5363), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5363), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5363), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5363), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5363), + [anon_sym_ATend] = ACTIONS(5365), + [anon_sym_AToptional] = ACTIONS(5365), + [anon_sym_ATrequired] = ACTIONS(5365), + [anon_sym_ATproperty] = ACTIONS(5365), + [anon_sym_BOOL] = ACTIONS(5363), + [anon_sym_IMP] = ACTIONS(5363), + [anon_sym_SEL] = ACTIONS(5363), + [anon_sym_Class] = ACTIONS(5363), + [anon_sym_id] = ACTIONS(5363), + }, + [2146] = { + [sym_identifier] = ACTIONS(5367), + [aux_sym_preproc_def_token1] = ACTIONS(5367), + [aux_sym_preproc_if_token1] = ACTIONS(5367), + [aux_sym_preproc_if_token2] = ACTIONS(5367), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5367), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5367), + [aux_sym_preproc_else_token1] = ACTIONS(5367), + [aux_sym_preproc_elif_token1] = ACTIONS(5367), + [sym_preproc_directive] = ACTIONS(5367), + [anon_sym_DASH] = ACTIONS(5369), + [anon_sym_PLUS] = ACTIONS(5369), + [anon_sym_SEMI] = ACTIONS(5371), + [anon_sym___extension__] = ACTIONS(5367), + [anon_sym_typedef] = ACTIONS(5367), + [anon_sym_extern] = ACTIONS(5367), + [anon_sym___attribute__] = ACTIONS(5367), + [anon_sym___attribute] = ACTIONS(5367), + [anon_sym_noreturn] = ACTIONS(5367), + [anon_sym_LBRACK] = ACTIONS(5369), + [anon_sym___declspec] = ACTIONS(5367), + [anon_sym___cdecl] = ACTIONS(5367), + [anon_sym___clrcall] = ACTIONS(5367), + [anon_sym___stdcall] = ACTIONS(5367), + [anon_sym___fastcall] = ACTIONS(5367), + [anon_sym___thiscall] = ACTIONS(5367), + [anon_sym___vectorcall] = ACTIONS(5367), + [anon_sym_signed] = ACTIONS(5367), + [anon_sym_unsigned] = ACTIONS(5367), + [anon_sym_long] = ACTIONS(5367), + [anon_sym_short] = ACTIONS(5367), + [anon_sym_static] = ACTIONS(5367), + [anon_sym_auto] = ACTIONS(5367), + [anon_sym_register] = ACTIONS(5367), + [anon_sym_inline] = ACTIONS(5367), + [anon_sym___inline] = ACTIONS(5367), + [anon_sym___inline__] = ACTIONS(5367), + [anon_sym___forceinline] = ACTIONS(5367), + [anon_sym_thread_local] = ACTIONS(5367), + [anon_sym___thread] = ACTIONS(5367), + [anon_sym_CG_EXTERN] = ACTIONS(5367), + [anon_sym_CG_INLINE] = ACTIONS(5367), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5367), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5367), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5367), + [anon_sym_IBOutlet] = ACTIONS(5367), + [anon_sym_IBInspectable] = ACTIONS(5367), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5367), + [anon_sym_NS_INLINE] = ACTIONS(5367), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5367), + [anon_sym_OBJC_EXPORT] = ACTIONS(5367), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5367), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5367), + [anon_sym_const] = ACTIONS(5367), + [anon_sym_constexpr] = ACTIONS(5367), + [anon_sym_volatile] = ACTIONS(5367), + [anon_sym_restrict] = ACTIONS(5367), + [anon_sym___restrict__] = ACTIONS(5367), + [anon_sym__Atomic] = ACTIONS(5367), + [anon_sym__Noreturn] = ACTIONS(5367), + [anon_sym__Nonnull] = ACTIONS(5367), + [anon_sym_nullable] = ACTIONS(5367), + [anon_sym__Complex] = ACTIONS(5367), + [anon_sym__Nullable] = ACTIONS(5367), + [anon_sym__Nullable_result] = ACTIONS(5367), + [anon_sym__Null_unspecified] = ACTIONS(5367), + [anon_sym___autoreleasing] = ACTIONS(5367), + [anon_sym___block] = ACTIONS(5367), + [anon_sym___bridge] = ACTIONS(5367), + [anon_sym___bridge_retained] = ACTIONS(5367), + [anon_sym___bridge_transfer] = ACTIONS(5367), + [anon_sym___complex] = ACTIONS(5367), + [anon_sym___const] = ACTIONS(5367), + [anon_sym___imag] = ACTIONS(5367), + [anon_sym___kindof] = ACTIONS(5367), + [anon_sym___nonnull] = ACTIONS(5367), + [anon_sym___nullable] = ACTIONS(5367), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5367), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5367), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5367), + [anon_sym___real] = ACTIONS(5367), + [anon_sym___strong] = ACTIONS(5367), + [anon_sym___unsafe_unretained] = ACTIONS(5367), + [anon_sym___unused] = ACTIONS(5367), + [anon_sym___weak] = ACTIONS(5367), + [anon_sym_alignas] = ACTIONS(5367), + [anon_sym__Alignas] = ACTIONS(5367), + [sym_primitive_type] = ACTIONS(5367), + [anon_sym_enum] = ACTIONS(5367), + [anon_sym_struct] = ACTIONS(5367), + [anon_sym_union] = ACTIONS(5367), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5367), + [anon_sym___typeof] = ACTIONS(5367), + [anon_sym_typeof] = ACTIONS(5367), + [aux_sym_preproc_undef_token1] = ACTIONS(5367), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5367), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5367), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5367), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5367), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5367), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5367), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5367), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5367), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5367), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5367), + [anon_sym_NS_AVAILABLE] = ACTIONS(5367), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5367), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5367), + [anon_sym_API_AVAILABLE] = ACTIONS(5367), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5367), + [anon_sym_API_DEPRECATED] = ACTIONS(5367), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5367), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5367), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5367), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5367), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5367), + [anon_sym___deprecated_msg] = ACTIONS(5367), + [anon_sym___deprecated_enum_msg] = ACTIONS(5367), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5367), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5367), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5367), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5367), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5367), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5367), + [anon_sym_ATsynthesize] = ACTIONS(5369), + [anon_sym_ATdynamic] = ACTIONS(5369), + [anon_sym_BOOL] = ACTIONS(5367), + [anon_sym_IMP] = ACTIONS(5367), + [anon_sym_SEL] = ACTIONS(5367), + [anon_sym_Class] = ACTIONS(5367), + [anon_sym_id] = ACTIONS(5367), + }, + [2147] = { + [aux_sym_method_declaration_repeat2] = STATE(2108), + [sym_identifier] = ACTIONS(5346), + [aux_sym_preproc_def_token1] = ACTIONS(5346), + [aux_sym_preproc_if_token1] = ACTIONS(5346), + [aux_sym_preproc_if_token2] = ACTIONS(5346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5346), + [aux_sym_preproc_else_token1] = ACTIONS(5346), + [aux_sym_preproc_elif_token1] = ACTIONS(5346), + [sym_preproc_directive] = ACTIONS(5346), + [anon_sym_DASH] = ACTIONS(5348), + [anon_sym_PLUS] = ACTIONS(5348), + [anon_sym_SEMI] = ACTIONS(5357), + [anon_sym___extension__] = ACTIONS(5346), + [anon_sym_typedef] = ACTIONS(5346), + [anon_sym_extern] = ACTIONS(5346), + [anon_sym___attribute__] = ACTIONS(5346), + [anon_sym___attribute] = ACTIONS(5346), + [anon_sym_noreturn] = ACTIONS(5346), + [anon_sym_LBRACK] = ACTIONS(5348), + [anon_sym___declspec] = ACTIONS(5346), + [anon_sym___cdecl] = ACTIONS(5346), + [anon_sym___clrcall] = ACTIONS(5346), + [anon_sym___stdcall] = ACTIONS(5346), + [anon_sym___fastcall] = ACTIONS(5346), + [anon_sym___thiscall] = ACTIONS(5346), + [anon_sym___vectorcall] = ACTIONS(5346), + [anon_sym_signed] = ACTIONS(5346), + [anon_sym_unsigned] = ACTIONS(5346), + [anon_sym_long] = ACTIONS(5346), + [anon_sym_short] = ACTIONS(5346), + [anon_sym_static] = ACTIONS(5346), + [anon_sym_auto] = ACTIONS(5346), + [anon_sym_register] = ACTIONS(5346), + [anon_sym_inline] = ACTIONS(5346), + [anon_sym___inline] = ACTIONS(5346), + [anon_sym___inline__] = ACTIONS(5346), + [anon_sym___forceinline] = ACTIONS(5346), + [anon_sym_thread_local] = ACTIONS(5346), + [anon_sym___thread] = ACTIONS(5346), + [anon_sym_CG_EXTERN] = ACTIONS(5346), + [anon_sym_CG_INLINE] = ACTIONS(5346), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5346), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5346), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5346), + [anon_sym_IBOutlet] = ACTIONS(5346), + [anon_sym_IBInspectable] = ACTIONS(5346), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5346), + [anon_sym_NS_INLINE] = ACTIONS(5346), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5346), + [anon_sym_OBJC_EXPORT] = ACTIONS(5346), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5346), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5346), + [anon_sym_const] = ACTIONS(5346), + [anon_sym_constexpr] = ACTIONS(5346), + [anon_sym_volatile] = ACTIONS(5346), + [anon_sym_restrict] = ACTIONS(5346), + [anon_sym___restrict__] = ACTIONS(5346), + [anon_sym__Atomic] = ACTIONS(5346), + [anon_sym__Noreturn] = ACTIONS(5346), + [anon_sym__Nonnull] = ACTIONS(5346), + [anon_sym_nullable] = ACTIONS(5346), + [anon_sym__Complex] = ACTIONS(5346), + [anon_sym__Nullable] = ACTIONS(5346), + [anon_sym__Nullable_result] = ACTIONS(5346), + [anon_sym__Null_unspecified] = ACTIONS(5346), + [anon_sym___autoreleasing] = ACTIONS(5346), + [anon_sym___block] = ACTIONS(5346), + [anon_sym___bridge] = ACTIONS(5346), + [anon_sym___bridge_retained] = ACTIONS(5346), + [anon_sym___bridge_transfer] = ACTIONS(5346), + [anon_sym___complex] = ACTIONS(5346), + [anon_sym___const] = ACTIONS(5346), + [anon_sym___imag] = ACTIONS(5346), + [anon_sym___kindof] = ACTIONS(5346), + [anon_sym___nonnull] = ACTIONS(5346), + [anon_sym___nullable] = ACTIONS(5346), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5346), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5346), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5346), + [anon_sym___real] = ACTIONS(5346), + [anon_sym___strong] = ACTIONS(5346), + [anon_sym___unsafe_unretained] = ACTIONS(5346), + [anon_sym___unused] = ACTIONS(5346), + [anon_sym___weak] = ACTIONS(5346), + [anon_sym_alignas] = ACTIONS(5346), + [anon_sym__Alignas] = ACTIONS(5346), + [sym_primitive_type] = ACTIONS(5346), + [anon_sym_enum] = ACTIONS(5346), + [anon_sym_struct] = ACTIONS(5346), + [anon_sym_union] = ACTIONS(5346), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5346), + [anon_sym___typeof] = ACTIONS(5346), + [anon_sym_typeof] = ACTIONS(5346), + [aux_sym_preproc_undef_token1] = ACTIONS(5346), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5346), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5346), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5346), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5346), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5346), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5346), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5346), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5346), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5346), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5346), + [anon_sym_NS_AVAILABLE] = ACTIONS(5346), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5346), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5346), + [anon_sym_API_AVAILABLE] = ACTIONS(5346), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5346), + [anon_sym_API_DEPRECATED] = ACTIONS(5346), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5346), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5346), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5346), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5346), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5346), + [anon_sym___deprecated_msg] = ACTIONS(5346), + [anon_sym___deprecated_enum_msg] = ACTIONS(5346), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5346), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5346), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5346), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5346), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5346), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5346), + [anon_sym_ATproperty] = ACTIONS(5348), + [anon_sym_BOOL] = ACTIONS(5346), + [anon_sym_IMP] = ACTIONS(5346), + [anon_sym_SEL] = ACTIONS(5346), + [anon_sym_Class] = ACTIONS(5346), + [anon_sym_id] = ACTIONS(5346), + }, + [2148] = { + [sym_identifier] = ACTIONS(5264), + [aux_sym_preproc_def_token1] = ACTIONS(5264), + [aux_sym_preproc_if_token1] = ACTIONS(5264), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5264), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5264), + [sym_preproc_directive] = ACTIONS(5264), + [anon_sym_LPAREN2] = ACTIONS(5266), + [anon_sym_DASH] = ACTIONS(5266), + [anon_sym_PLUS] = ACTIONS(5266), + [anon_sym_LT] = ACTIONS(5266), + [anon_sym___extension__] = ACTIONS(5264), + [anon_sym_typedef] = ACTIONS(5264), + [anon_sym_extern] = ACTIONS(5264), + [anon_sym___attribute__] = ACTIONS(5264), + [anon_sym___attribute] = ACTIONS(5264), + [anon_sym_noreturn] = ACTIONS(5264), + [anon_sym_LBRACK] = ACTIONS(5266), + [anon_sym___declspec] = ACTIONS(5264), + [anon_sym___cdecl] = ACTIONS(5264), + [anon_sym___clrcall] = ACTIONS(5264), + [anon_sym___stdcall] = ACTIONS(5264), + [anon_sym___fastcall] = ACTIONS(5264), + [anon_sym___thiscall] = ACTIONS(5264), + [anon_sym___vectorcall] = ACTIONS(5264), + [anon_sym_LBRACE] = ACTIONS(5266), + [anon_sym_signed] = ACTIONS(5264), + [anon_sym_unsigned] = ACTIONS(5264), + [anon_sym_long] = ACTIONS(5264), + [anon_sym_short] = ACTIONS(5264), + [anon_sym_static] = ACTIONS(5264), + [anon_sym_auto] = ACTIONS(5264), + [anon_sym_register] = ACTIONS(5264), + [anon_sym_inline] = ACTIONS(5264), + [anon_sym___inline] = ACTIONS(5264), + [anon_sym___inline__] = ACTIONS(5264), + [anon_sym___forceinline] = ACTIONS(5264), + [anon_sym_thread_local] = ACTIONS(5264), + [anon_sym___thread] = ACTIONS(5264), + [anon_sym_CG_EXTERN] = ACTIONS(5264), + [anon_sym_CG_INLINE] = ACTIONS(5264), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5264), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5264), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5264), + [anon_sym_IBOutlet] = ACTIONS(5264), + [anon_sym_IBInspectable] = ACTIONS(5264), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5264), + [anon_sym_NS_INLINE] = ACTIONS(5264), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5264), + [anon_sym_OBJC_EXPORT] = ACTIONS(5264), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5264), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5264), + [anon_sym_const] = ACTIONS(5264), + [anon_sym_constexpr] = ACTIONS(5264), + [anon_sym_volatile] = ACTIONS(5264), + [anon_sym_restrict] = ACTIONS(5264), + [anon_sym___restrict__] = ACTIONS(5264), + [anon_sym__Atomic] = ACTIONS(5264), + [anon_sym__Noreturn] = ACTIONS(5264), + [anon_sym__Nonnull] = ACTIONS(5264), + [anon_sym_nullable] = ACTIONS(5264), + [anon_sym__Complex] = ACTIONS(5264), + [anon_sym__Nullable] = ACTIONS(5264), + [anon_sym__Nullable_result] = ACTIONS(5264), + [anon_sym__Null_unspecified] = ACTIONS(5264), + [anon_sym___autoreleasing] = ACTIONS(5264), + [anon_sym___block] = ACTIONS(5264), + [anon_sym___bridge] = ACTIONS(5264), + [anon_sym___bridge_retained] = ACTIONS(5264), + [anon_sym___bridge_transfer] = ACTIONS(5264), + [anon_sym___complex] = ACTIONS(5264), + [anon_sym___const] = ACTIONS(5264), + [anon_sym___imag] = ACTIONS(5264), + [anon_sym___kindof] = ACTIONS(5264), + [anon_sym___nonnull] = ACTIONS(5264), + [anon_sym___nullable] = ACTIONS(5264), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5264), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5264), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5264), + [anon_sym___real] = ACTIONS(5264), + [anon_sym___strong] = ACTIONS(5264), + [anon_sym___unsafe_unretained] = ACTIONS(5264), + [anon_sym___unused] = ACTIONS(5264), + [anon_sym___weak] = ACTIONS(5264), + [anon_sym_alignas] = ACTIONS(5264), + [anon_sym__Alignas] = ACTIONS(5264), + [sym_primitive_type] = ACTIONS(5264), + [anon_sym_enum] = ACTIONS(5264), + [anon_sym_COLON] = ACTIONS(5266), + [anon_sym_struct] = ACTIONS(5264), + [anon_sym_union] = ACTIONS(5264), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5264), + [anon_sym___typeof] = ACTIONS(5264), + [anon_sym_typeof] = ACTIONS(5264), + [aux_sym_preproc_undef_token1] = ACTIONS(5264), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5264), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5264), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5264), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5264), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5264), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5264), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5264), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5264), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5264), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5264), + [anon_sym_NS_AVAILABLE] = ACTIONS(5264), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5264), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5264), + [anon_sym_API_AVAILABLE] = ACTIONS(5264), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5264), + [anon_sym_API_DEPRECATED] = ACTIONS(5264), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5264), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5264), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5264), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5264), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5264), + [anon_sym___deprecated_msg] = ACTIONS(5264), + [anon_sym___deprecated_enum_msg] = ACTIONS(5264), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5264), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5264), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5264), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5264), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5264), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5264), + [anon_sym_ATend] = ACTIONS(5266), + [anon_sym_ATproperty] = ACTIONS(5266), + [anon_sym_BOOL] = ACTIONS(5264), + [anon_sym_IMP] = ACTIONS(5264), + [anon_sym_SEL] = ACTIONS(5264), + [anon_sym_Class] = ACTIONS(5264), + [anon_sym_id] = ACTIONS(5264), + }, + [2149] = { + [aux_sym_method_declaration_repeat2] = STATE(2137), + [sym_identifier] = ACTIONS(5359), + [aux_sym_preproc_def_token1] = ACTIONS(5359), + [aux_sym_preproc_if_token1] = ACTIONS(5359), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5359), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5359), + [sym_preproc_directive] = ACTIONS(5359), + [anon_sym_DASH] = ACTIONS(5361), + [anon_sym_PLUS] = ACTIONS(5361), + [anon_sym_SEMI] = ACTIONS(5344), + [anon_sym___extension__] = ACTIONS(5359), + [anon_sym_typedef] = ACTIONS(5359), + [anon_sym_extern] = ACTIONS(5359), + [anon_sym___attribute__] = ACTIONS(5359), + [anon_sym___attribute] = ACTIONS(5359), + [anon_sym_noreturn] = ACTIONS(5359), + [anon_sym_LBRACK] = ACTIONS(5361), + [anon_sym___declspec] = ACTIONS(5359), + [anon_sym___cdecl] = ACTIONS(5359), + [anon_sym___clrcall] = ACTIONS(5359), + [anon_sym___stdcall] = ACTIONS(5359), + [anon_sym___fastcall] = ACTIONS(5359), + [anon_sym___thiscall] = ACTIONS(5359), + [anon_sym___vectorcall] = ACTIONS(5359), + [anon_sym_signed] = ACTIONS(5359), + [anon_sym_unsigned] = ACTIONS(5359), + [anon_sym_long] = ACTIONS(5359), + [anon_sym_short] = ACTIONS(5359), + [anon_sym_static] = ACTIONS(5359), + [anon_sym_auto] = ACTIONS(5359), + [anon_sym_register] = ACTIONS(5359), + [anon_sym_inline] = ACTIONS(5359), + [anon_sym___inline] = ACTIONS(5359), + [anon_sym___inline__] = ACTIONS(5359), + [anon_sym___forceinline] = ACTIONS(5359), + [anon_sym_thread_local] = ACTIONS(5359), + [anon_sym___thread] = ACTIONS(5359), + [anon_sym_CG_EXTERN] = ACTIONS(5359), + [anon_sym_CG_INLINE] = ACTIONS(5359), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5359), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5359), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5359), + [anon_sym_IBOutlet] = ACTIONS(5359), + [anon_sym_IBInspectable] = ACTIONS(5359), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5359), + [anon_sym_NS_INLINE] = ACTIONS(5359), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5359), + [anon_sym_OBJC_EXPORT] = ACTIONS(5359), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5359), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5359), + [anon_sym_const] = ACTIONS(5359), + [anon_sym_constexpr] = ACTIONS(5359), + [anon_sym_volatile] = ACTIONS(5359), + [anon_sym_restrict] = ACTIONS(5359), + [anon_sym___restrict__] = ACTIONS(5359), + [anon_sym__Atomic] = ACTIONS(5359), + [anon_sym__Noreturn] = ACTIONS(5359), + [anon_sym__Nonnull] = ACTIONS(5359), + [anon_sym_nullable] = ACTIONS(5359), + [anon_sym__Complex] = ACTIONS(5359), + [anon_sym__Nullable] = ACTIONS(5359), + [anon_sym__Nullable_result] = ACTIONS(5359), + [anon_sym__Null_unspecified] = ACTIONS(5359), + [anon_sym___autoreleasing] = ACTIONS(5359), + [anon_sym___block] = ACTIONS(5359), + [anon_sym___bridge] = ACTIONS(5359), + [anon_sym___bridge_retained] = ACTIONS(5359), + [anon_sym___bridge_transfer] = ACTIONS(5359), + [anon_sym___complex] = ACTIONS(5359), + [anon_sym___const] = ACTIONS(5359), + [anon_sym___imag] = ACTIONS(5359), + [anon_sym___kindof] = ACTIONS(5359), + [anon_sym___nonnull] = ACTIONS(5359), + [anon_sym___nullable] = ACTIONS(5359), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5359), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5359), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5359), + [anon_sym___real] = ACTIONS(5359), + [anon_sym___strong] = ACTIONS(5359), + [anon_sym___unsafe_unretained] = ACTIONS(5359), + [anon_sym___unused] = ACTIONS(5359), + [anon_sym___weak] = ACTIONS(5359), + [anon_sym_alignas] = ACTIONS(5359), + [anon_sym__Alignas] = ACTIONS(5359), + [sym_primitive_type] = ACTIONS(5359), + [anon_sym_enum] = ACTIONS(5359), + [anon_sym_struct] = ACTIONS(5359), + [anon_sym_union] = ACTIONS(5359), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5359), + [anon_sym___typeof] = ACTIONS(5359), + [anon_sym_typeof] = ACTIONS(5359), + [aux_sym_preproc_undef_token1] = ACTIONS(5359), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5359), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5359), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5359), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5359), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5359), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5359), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5359), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5359), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5359), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5359), + [anon_sym_NS_AVAILABLE] = ACTIONS(5359), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5359), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5359), + [anon_sym_API_AVAILABLE] = ACTIONS(5359), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5359), + [anon_sym_API_DEPRECATED] = ACTIONS(5359), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5359), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5359), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5359), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5359), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5359), + [anon_sym___deprecated_msg] = ACTIONS(5359), + [anon_sym___deprecated_enum_msg] = ACTIONS(5359), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5359), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5359), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5359), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5359), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5359), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5359), + [anon_sym_ATend] = ACTIONS(5361), + [anon_sym_AToptional] = ACTIONS(5361), + [anon_sym_ATrequired] = ACTIONS(5361), + [anon_sym_ATproperty] = ACTIONS(5361), + [anon_sym_BOOL] = ACTIONS(5359), + [anon_sym_IMP] = ACTIONS(5359), + [anon_sym_SEL] = ACTIONS(5359), + [anon_sym_Class] = ACTIONS(5359), + [anon_sym_id] = ACTIONS(5359), + }, + [2150] = { + [sym_identifier] = ACTIONS(2616), + [aux_sym_preproc_def_token1] = ACTIONS(2616), + [aux_sym_preproc_if_token1] = ACTIONS(2616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2616), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2616), + [sym_preproc_directive] = ACTIONS(2616), + [anon_sym_DASH] = ACTIONS(2618), + [anon_sym_PLUS] = ACTIONS(2618), + [anon_sym___extension__] = ACTIONS(2616), + [anon_sym_typedef] = ACTIONS(2616), + [anon_sym_extern] = ACTIONS(2616), + [anon_sym___attribute__] = ACTIONS(2616), + [anon_sym___attribute] = ACTIONS(2616), + [anon_sym_noreturn] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(2618), + [anon_sym___declspec] = ACTIONS(2616), + [anon_sym___cdecl] = ACTIONS(2616), + [anon_sym___clrcall] = ACTIONS(2616), + [anon_sym___stdcall] = ACTIONS(2616), + [anon_sym___fastcall] = ACTIONS(2616), + [anon_sym___thiscall] = ACTIONS(2616), + [anon_sym___vectorcall] = ACTIONS(2616), + [anon_sym_signed] = ACTIONS(2616), + [anon_sym_unsigned] = ACTIONS(2616), + [anon_sym_long] = ACTIONS(2616), + [anon_sym_short] = ACTIONS(2616), + [anon_sym_static] = ACTIONS(2616), + [anon_sym_auto] = ACTIONS(2616), + [anon_sym_register] = ACTIONS(2616), + [anon_sym_inline] = ACTIONS(2616), + [anon_sym___inline] = ACTIONS(2616), + [anon_sym___inline__] = ACTIONS(2616), + [anon_sym___forceinline] = ACTIONS(2616), + [anon_sym_thread_local] = ACTIONS(2616), + [anon_sym___thread] = ACTIONS(2616), + [anon_sym_CG_EXTERN] = ACTIONS(2616), + [anon_sym_CG_INLINE] = ACTIONS(2616), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2616), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2616), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2616), + [anon_sym_IBOutlet] = ACTIONS(2616), + [anon_sym_IBInspectable] = ACTIONS(2616), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2616), + [anon_sym_NS_INLINE] = ACTIONS(2616), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2616), + [anon_sym_OBJC_EXPORT] = ACTIONS(2616), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2616), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2616), + [anon_sym_const] = ACTIONS(2616), + [anon_sym_constexpr] = ACTIONS(2616), + [anon_sym_volatile] = ACTIONS(2616), + [anon_sym_restrict] = ACTIONS(2616), + [anon_sym___restrict__] = ACTIONS(2616), + [anon_sym__Atomic] = ACTIONS(2616), + [anon_sym__Noreturn] = ACTIONS(2616), + [anon_sym__Nonnull] = ACTIONS(2616), + [anon_sym_nullable] = ACTIONS(2616), + [anon_sym__Complex] = ACTIONS(2616), + [anon_sym__Nullable] = ACTIONS(2616), + [anon_sym__Nullable_result] = ACTIONS(2616), + [anon_sym__Null_unspecified] = ACTIONS(2616), + [anon_sym___autoreleasing] = ACTIONS(2616), + [anon_sym___block] = ACTIONS(2616), + [anon_sym___bridge] = ACTIONS(2616), + [anon_sym___bridge_retained] = ACTIONS(2616), + [anon_sym___bridge_transfer] = ACTIONS(2616), + [anon_sym___complex] = ACTIONS(2616), + [anon_sym___const] = ACTIONS(2616), + [anon_sym___imag] = ACTIONS(2616), + [anon_sym___kindof] = ACTIONS(2616), + [anon_sym___nonnull] = ACTIONS(2616), + [anon_sym___nullable] = ACTIONS(2616), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2616), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2616), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2616), + [anon_sym___real] = ACTIONS(2616), + [anon_sym___strong] = ACTIONS(2616), + [anon_sym___unsafe_unretained] = ACTIONS(2616), + [anon_sym___unused] = ACTIONS(2616), + [anon_sym___weak] = ACTIONS(2616), + [anon_sym_alignas] = ACTIONS(2616), + [anon_sym__Alignas] = ACTIONS(2616), + [sym_primitive_type] = ACTIONS(2616), + [anon_sym_enum] = ACTIONS(2616), + [anon_sym_struct] = ACTIONS(2616), + [anon_sym_union] = ACTIONS(2616), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2616), + [anon_sym___typeof] = ACTIONS(2616), + [anon_sym_typeof] = ACTIONS(2616), + [aux_sym_preproc_undef_token1] = ACTIONS(2616), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2616), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2616), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2616), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2616), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2616), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2616), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2616), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2616), + [anon_sym_NS_AVAILABLE] = ACTIONS(2616), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2616), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_API_AVAILABLE] = ACTIONS(2616), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_API_DEPRECATED] = ACTIONS(2616), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2616), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2616), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2616), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2616), + [anon_sym___deprecated_msg] = ACTIONS(2616), + [anon_sym___deprecated_enum_msg] = ACTIONS(2616), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2616), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2616), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2616), + [anon_sym_ATend] = ACTIONS(2618), + [anon_sym_AToptional] = ACTIONS(2618), + [anon_sym_ATrequired] = ACTIONS(2618), + [anon_sym_ATsynthesize] = ACTIONS(2618), + [anon_sym_ATdynamic] = ACTIONS(2618), + [anon_sym_ATproperty] = ACTIONS(2618), + [anon_sym_BOOL] = ACTIONS(2616), + [anon_sym_IMP] = ACTIONS(2616), + [anon_sym_SEL] = ACTIONS(2616), + [anon_sym_Class] = ACTIONS(2616), + [anon_sym_id] = ACTIONS(2616), + }, + [2151] = { + [sym_identifier] = ACTIONS(2466), + [aux_sym_preproc_def_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token1] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2466), + [sym_preproc_directive] = ACTIONS(2466), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym___extension__] = ACTIONS(2466), + [anon_sym_typedef] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym___attribute__] = ACTIONS(2466), + [anon_sym___attribute] = ACTIONS(2466), + [anon_sym_noreturn] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2468), + [anon_sym___declspec] = ACTIONS(2466), + [anon_sym___cdecl] = ACTIONS(2466), + [anon_sym___clrcall] = ACTIONS(2466), + [anon_sym___stdcall] = ACTIONS(2466), + [anon_sym___fastcall] = ACTIONS(2466), + [anon_sym___thiscall] = ACTIONS(2466), + [anon_sym___vectorcall] = ACTIONS(2466), + [anon_sym_signed] = ACTIONS(2466), + [anon_sym_unsigned] = ACTIONS(2466), + [anon_sym_long] = ACTIONS(2466), + [anon_sym_short] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_auto] = ACTIONS(2466), + [anon_sym_register] = ACTIONS(2466), + [anon_sym_inline] = ACTIONS(2466), + [anon_sym___inline] = ACTIONS(2466), + [anon_sym___inline__] = ACTIONS(2466), + [anon_sym___forceinline] = ACTIONS(2466), + [anon_sym_thread_local] = ACTIONS(2466), + [anon_sym___thread] = ACTIONS(2466), + [anon_sym_CG_EXTERN] = ACTIONS(2466), + [anon_sym_CG_INLINE] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2466), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2466), + [anon_sym_IBOutlet] = ACTIONS(2466), + [anon_sym_IBInspectable] = ACTIONS(2466), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2466), + [anon_sym_NS_INLINE] = ACTIONS(2466), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2466), + [anon_sym_OBJC_EXPORT] = ACTIONS(2466), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_constexpr] = ACTIONS(2466), + [anon_sym_volatile] = ACTIONS(2466), + [anon_sym_restrict] = ACTIONS(2466), + [anon_sym___restrict__] = ACTIONS(2466), + [anon_sym__Atomic] = ACTIONS(2466), + [anon_sym__Noreturn] = ACTIONS(2466), + [anon_sym__Nonnull] = ACTIONS(2466), + [anon_sym_nullable] = ACTIONS(2466), + [anon_sym__Complex] = ACTIONS(2466), + [anon_sym__Nullable] = ACTIONS(2466), + [anon_sym__Nullable_result] = ACTIONS(2466), + [anon_sym__Null_unspecified] = ACTIONS(2466), + [anon_sym___autoreleasing] = ACTIONS(2466), + [anon_sym___block] = ACTIONS(2466), + [anon_sym___bridge] = ACTIONS(2466), + [anon_sym___bridge_retained] = ACTIONS(2466), + [anon_sym___bridge_transfer] = ACTIONS(2466), + [anon_sym___complex] = ACTIONS(2466), + [anon_sym___const] = ACTIONS(2466), + [anon_sym___imag] = ACTIONS(2466), + [anon_sym___kindof] = ACTIONS(2466), + [anon_sym___nonnull] = ACTIONS(2466), + [anon_sym___nullable] = ACTIONS(2466), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2466), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2466), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2466), + [anon_sym___real] = ACTIONS(2466), + [anon_sym___strong] = ACTIONS(2466), + [anon_sym___unsafe_unretained] = ACTIONS(2466), + [anon_sym___unused] = ACTIONS(2466), + [anon_sym___weak] = ACTIONS(2466), + [anon_sym_alignas] = ACTIONS(2466), + [anon_sym__Alignas] = ACTIONS(2466), + [sym_primitive_type] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), + [anon_sym_struct] = ACTIONS(2466), + [anon_sym_union] = ACTIONS(2466), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2466), + [anon_sym___typeof] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2466), + [aux_sym_preproc_undef_token1] = ACTIONS(2466), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2466), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2466), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2466), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2466), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE] = ACTIONS(2466), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_API_AVAILABLE] = ACTIONS(2466), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_API_DEPRECATED] = ACTIONS(2466), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2466), + [anon_sym___deprecated_msg] = ACTIONS(2466), + [anon_sym___deprecated_enum_msg] = ACTIONS(2466), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2466), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2466), + [anon_sym_ATend] = ACTIONS(2468), + [anon_sym_AToptional] = ACTIONS(2468), + [anon_sym_ATrequired] = ACTIONS(2468), + [anon_sym_ATsynthesize] = ACTIONS(2468), + [anon_sym_ATdynamic] = ACTIONS(2468), + [anon_sym_ATproperty] = ACTIONS(2468), + [anon_sym_BOOL] = ACTIONS(2466), + [anon_sym_IMP] = ACTIONS(2466), + [anon_sym_SEL] = ACTIONS(2466), + [anon_sym_Class] = ACTIONS(2466), + [anon_sym_id] = ACTIONS(2466), + }, + [2152] = { + [aux_sym_method_declaration_repeat2] = STATE(2108), + [sym_identifier] = ACTIONS(5373), + [aux_sym_preproc_def_token1] = ACTIONS(5373), + [aux_sym_preproc_if_token1] = ACTIONS(5373), + [aux_sym_preproc_if_token2] = ACTIONS(5373), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5373), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5373), + [aux_sym_preproc_else_token1] = ACTIONS(5373), + [aux_sym_preproc_elif_token1] = ACTIONS(5373), + [sym_preproc_directive] = ACTIONS(5373), + [anon_sym_DASH] = ACTIONS(5375), + [anon_sym_PLUS] = ACTIONS(5375), + [anon_sym_SEMI] = ACTIONS(5357), + [anon_sym___extension__] = ACTIONS(5373), + [anon_sym_typedef] = ACTIONS(5373), + [anon_sym_extern] = ACTIONS(5373), + [anon_sym___attribute__] = ACTIONS(5373), + [anon_sym___attribute] = ACTIONS(5373), + [anon_sym_noreturn] = ACTIONS(5373), + [anon_sym_LBRACK] = ACTIONS(5375), + [anon_sym___declspec] = ACTIONS(5373), + [anon_sym___cdecl] = ACTIONS(5373), + [anon_sym___clrcall] = ACTIONS(5373), + [anon_sym___stdcall] = ACTIONS(5373), + [anon_sym___fastcall] = ACTIONS(5373), + [anon_sym___thiscall] = ACTIONS(5373), + [anon_sym___vectorcall] = ACTIONS(5373), + [anon_sym_signed] = ACTIONS(5373), + [anon_sym_unsigned] = ACTIONS(5373), + [anon_sym_long] = ACTIONS(5373), + [anon_sym_short] = ACTIONS(5373), + [anon_sym_static] = ACTIONS(5373), + [anon_sym_auto] = ACTIONS(5373), + [anon_sym_register] = ACTIONS(5373), + [anon_sym_inline] = ACTIONS(5373), + [anon_sym___inline] = ACTIONS(5373), + [anon_sym___inline__] = ACTIONS(5373), + [anon_sym___forceinline] = ACTIONS(5373), + [anon_sym_thread_local] = ACTIONS(5373), + [anon_sym___thread] = ACTIONS(5373), + [anon_sym_CG_EXTERN] = ACTIONS(5373), + [anon_sym_CG_INLINE] = ACTIONS(5373), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5373), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5373), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5373), + [anon_sym_IBOutlet] = ACTIONS(5373), + [anon_sym_IBInspectable] = ACTIONS(5373), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5373), + [anon_sym_NS_INLINE] = ACTIONS(5373), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5373), + [anon_sym_OBJC_EXPORT] = ACTIONS(5373), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5373), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5373), + [anon_sym_const] = ACTIONS(5373), + [anon_sym_constexpr] = ACTIONS(5373), + [anon_sym_volatile] = ACTIONS(5373), + [anon_sym_restrict] = ACTIONS(5373), + [anon_sym___restrict__] = ACTIONS(5373), + [anon_sym__Atomic] = ACTIONS(5373), + [anon_sym__Noreturn] = ACTIONS(5373), + [anon_sym__Nonnull] = ACTIONS(5373), + [anon_sym_nullable] = ACTIONS(5373), + [anon_sym__Complex] = ACTIONS(5373), + [anon_sym__Nullable] = ACTIONS(5373), + [anon_sym__Nullable_result] = ACTIONS(5373), + [anon_sym__Null_unspecified] = ACTIONS(5373), + [anon_sym___autoreleasing] = ACTIONS(5373), + [anon_sym___block] = ACTIONS(5373), + [anon_sym___bridge] = ACTIONS(5373), + [anon_sym___bridge_retained] = ACTIONS(5373), + [anon_sym___bridge_transfer] = ACTIONS(5373), + [anon_sym___complex] = ACTIONS(5373), + [anon_sym___const] = ACTIONS(5373), + [anon_sym___imag] = ACTIONS(5373), + [anon_sym___kindof] = ACTIONS(5373), + [anon_sym___nonnull] = ACTIONS(5373), + [anon_sym___nullable] = ACTIONS(5373), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5373), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5373), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5373), + [anon_sym___real] = ACTIONS(5373), + [anon_sym___strong] = ACTIONS(5373), + [anon_sym___unsafe_unretained] = ACTIONS(5373), + [anon_sym___unused] = ACTIONS(5373), + [anon_sym___weak] = ACTIONS(5373), + [anon_sym_alignas] = ACTIONS(5373), + [anon_sym__Alignas] = ACTIONS(5373), + [sym_primitive_type] = ACTIONS(5373), + [anon_sym_enum] = ACTIONS(5373), + [anon_sym_struct] = ACTIONS(5373), + [anon_sym_union] = ACTIONS(5373), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5373), + [anon_sym___typeof] = ACTIONS(5373), + [anon_sym_typeof] = ACTIONS(5373), + [aux_sym_preproc_undef_token1] = ACTIONS(5373), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5373), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5373), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5373), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5373), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5373), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5373), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5373), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5373), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5373), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5373), + [anon_sym_NS_AVAILABLE] = ACTIONS(5373), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5373), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5373), + [anon_sym_API_AVAILABLE] = ACTIONS(5373), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5373), + [anon_sym_API_DEPRECATED] = ACTIONS(5373), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5373), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5373), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5373), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5373), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5373), + [anon_sym___deprecated_msg] = ACTIONS(5373), + [anon_sym___deprecated_enum_msg] = ACTIONS(5373), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5373), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5373), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5373), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5373), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5373), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5373), + [anon_sym_ATproperty] = ACTIONS(5375), + [anon_sym_BOOL] = ACTIONS(5373), + [anon_sym_IMP] = ACTIONS(5373), + [anon_sym_SEL] = ACTIONS(5373), + [anon_sym_Class] = ACTIONS(5373), + [anon_sym_id] = ACTIONS(5373), + }, + [2153] = { + [sym_identifier] = ACTIONS(2868), + [aux_sym_preproc_def_token1] = ACTIONS(2868), + [aux_sym_preproc_if_token1] = ACTIONS(2868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2868), + [sym_preproc_directive] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym___extension__] = ACTIONS(2868), + [anon_sym_typedef] = ACTIONS(2868), + [anon_sym_extern] = ACTIONS(2868), + [anon_sym___attribute__] = ACTIONS(2868), + [anon_sym___attribute] = ACTIONS(2868), + [anon_sym_noreturn] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2870), + [anon_sym___declspec] = ACTIONS(2868), + [anon_sym___cdecl] = ACTIONS(2868), + [anon_sym___clrcall] = ACTIONS(2868), + [anon_sym___stdcall] = ACTIONS(2868), + [anon_sym___fastcall] = ACTIONS(2868), + [anon_sym___thiscall] = ACTIONS(2868), + [anon_sym___vectorcall] = ACTIONS(2868), + [anon_sym_signed] = ACTIONS(2868), + [anon_sym_unsigned] = ACTIONS(2868), + [anon_sym_long] = ACTIONS(2868), + [anon_sym_short] = ACTIONS(2868), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_auto] = ACTIONS(2868), + [anon_sym_register] = ACTIONS(2868), + [anon_sym_inline] = ACTIONS(2868), + [anon_sym___inline] = ACTIONS(2868), + [anon_sym___inline__] = ACTIONS(2868), + [anon_sym___forceinline] = ACTIONS(2868), + [anon_sym_thread_local] = ACTIONS(2868), + [anon_sym___thread] = ACTIONS(2868), + [anon_sym_CG_EXTERN] = ACTIONS(2868), + [anon_sym_CG_INLINE] = ACTIONS(2868), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2868), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2868), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2868), + [anon_sym_IBOutlet] = ACTIONS(2868), + [anon_sym_IBInspectable] = ACTIONS(2868), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2868), + [anon_sym_NS_INLINE] = ACTIONS(2868), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2868), + [anon_sym_OBJC_EXPORT] = ACTIONS(2868), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2868), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2868), + [anon_sym_const] = ACTIONS(2868), + [anon_sym_constexpr] = ACTIONS(2868), + [anon_sym_volatile] = ACTIONS(2868), + [anon_sym_restrict] = ACTIONS(2868), + [anon_sym___restrict__] = ACTIONS(2868), + [anon_sym__Atomic] = ACTIONS(2868), + [anon_sym__Noreturn] = ACTIONS(2868), + [anon_sym__Nonnull] = ACTIONS(2868), + [anon_sym_nullable] = ACTIONS(2868), + [anon_sym__Complex] = ACTIONS(2868), + [anon_sym__Nullable] = ACTIONS(2868), + [anon_sym__Nullable_result] = ACTIONS(2868), + [anon_sym__Null_unspecified] = ACTIONS(2868), + [anon_sym___autoreleasing] = ACTIONS(2868), + [anon_sym___block] = ACTIONS(2868), + [anon_sym___bridge] = ACTIONS(2868), + [anon_sym___bridge_retained] = ACTIONS(2868), + [anon_sym___bridge_transfer] = ACTIONS(2868), + [anon_sym___complex] = ACTIONS(2868), + [anon_sym___const] = ACTIONS(2868), + [anon_sym___imag] = ACTIONS(2868), + [anon_sym___kindof] = ACTIONS(2868), + [anon_sym___nonnull] = ACTIONS(2868), + [anon_sym___nullable] = ACTIONS(2868), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2868), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2868), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2868), + [anon_sym___real] = ACTIONS(2868), + [anon_sym___strong] = ACTIONS(2868), + [anon_sym___unsafe_unretained] = ACTIONS(2868), + [anon_sym___unused] = ACTIONS(2868), + [anon_sym___weak] = ACTIONS(2868), + [anon_sym_alignas] = ACTIONS(2868), + [anon_sym__Alignas] = ACTIONS(2868), + [sym_primitive_type] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2868), + [anon_sym_union] = ACTIONS(2868), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2868), + [anon_sym___typeof] = ACTIONS(2868), + [anon_sym_typeof] = ACTIONS(2868), + [aux_sym_preproc_undef_token1] = ACTIONS(2868), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2868), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2868), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2868), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2868), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2868), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2868), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2868), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2868), + [anon_sym_NS_AVAILABLE] = ACTIONS(2868), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_API_AVAILABLE] = ACTIONS(2868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_API_DEPRECATED] = ACTIONS(2868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2868), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2868), + [anon_sym___deprecated_msg] = ACTIONS(2868), + [anon_sym___deprecated_enum_msg] = ACTIONS(2868), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2868), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2868), + [anon_sym_ATend] = ACTIONS(2870), + [anon_sym_AToptional] = ACTIONS(2870), + [anon_sym_ATrequired] = ACTIONS(2870), + [anon_sym_ATsynthesize] = ACTIONS(2870), + [anon_sym_ATdynamic] = ACTIONS(2870), + [anon_sym_ATproperty] = ACTIONS(2870), + [anon_sym_BOOL] = ACTIONS(2868), + [anon_sym_IMP] = ACTIONS(2868), + [anon_sym_SEL] = ACTIONS(2868), + [anon_sym_Class] = ACTIONS(2868), + [anon_sym_id] = ACTIONS(2868), + }, + [2154] = { + [sym_identifier] = ACTIONS(2852), + [aux_sym_preproc_def_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token2] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2852), + [aux_sym_preproc_else_token1] = ACTIONS(2852), + [aux_sym_preproc_elif_token1] = ACTIONS(2852), + [sym_preproc_directive] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2854), + [anon_sym_PLUS] = ACTIONS(2854), + [anon_sym___extension__] = ACTIONS(2852), + [anon_sym_typedef] = ACTIONS(2852), + [anon_sym_extern] = ACTIONS(2852), + [anon_sym___attribute__] = ACTIONS(2852), + [anon_sym___attribute] = ACTIONS(2852), + [anon_sym_noreturn] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2854), + [anon_sym___declspec] = ACTIONS(2852), + [anon_sym___cdecl] = ACTIONS(2852), + [anon_sym___clrcall] = ACTIONS(2852), + [anon_sym___stdcall] = ACTIONS(2852), + [anon_sym___fastcall] = ACTIONS(2852), + [anon_sym___thiscall] = ACTIONS(2852), + [anon_sym___vectorcall] = ACTIONS(2852), + [anon_sym_signed] = ACTIONS(2852), + [anon_sym_unsigned] = ACTIONS(2852), + [anon_sym_long] = ACTIONS(2852), + [anon_sym_short] = ACTIONS(2852), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_auto] = ACTIONS(2852), + [anon_sym_register] = ACTIONS(2852), + [anon_sym_inline] = ACTIONS(2852), + [anon_sym___inline] = ACTIONS(2852), + [anon_sym___inline__] = ACTIONS(2852), + [anon_sym___forceinline] = ACTIONS(2852), + [anon_sym_thread_local] = ACTIONS(2852), + [anon_sym___thread] = ACTIONS(2852), + [anon_sym_CG_EXTERN] = ACTIONS(2852), + [anon_sym_CG_INLINE] = ACTIONS(2852), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2852), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2852), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2852), + [anon_sym_IBOutlet] = ACTIONS(2852), + [anon_sym_IBInspectable] = ACTIONS(2852), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2852), + [anon_sym_NS_INLINE] = ACTIONS(2852), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2852), + [anon_sym_OBJC_EXPORT] = ACTIONS(2852), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2852), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2852), + [anon_sym_const] = ACTIONS(2852), + [anon_sym_constexpr] = ACTIONS(2852), + [anon_sym_volatile] = ACTIONS(2852), + [anon_sym_restrict] = ACTIONS(2852), + [anon_sym___restrict__] = ACTIONS(2852), + [anon_sym__Atomic] = ACTIONS(2852), + [anon_sym__Noreturn] = ACTIONS(2852), + [anon_sym__Nonnull] = ACTIONS(2852), + [anon_sym_nullable] = ACTIONS(2852), + [anon_sym__Complex] = ACTIONS(2852), + [anon_sym__Nullable] = ACTIONS(2852), + [anon_sym__Nullable_result] = ACTIONS(2852), + [anon_sym__Null_unspecified] = ACTIONS(2852), + [anon_sym___autoreleasing] = ACTIONS(2852), + [anon_sym___block] = ACTIONS(2852), + [anon_sym___bridge] = ACTIONS(2852), + [anon_sym___bridge_retained] = ACTIONS(2852), + [anon_sym___bridge_transfer] = ACTIONS(2852), + [anon_sym___complex] = ACTIONS(2852), + [anon_sym___const] = ACTIONS(2852), + [anon_sym___imag] = ACTIONS(2852), + [anon_sym___kindof] = ACTIONS(2852), + [anon_sym___nonnull] = ACTIONS(2852), + [anon_sym___nullable] = ACTIONS(2852), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2852), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2852), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2852), + [anon_sym___real] = ACTIONS(2852), + [anon_sym___strong] = ACTIONS(2852), + [anon_sym___unsafe_unretained] = ACTIONS(2852), + [anon_sym___unused] = ACTIONS(2852), + [anon_sym___weak] = ACTIONS(2852), + [anon_sym_alignas] = ACTIONS(2852), + [anon_sym__Alignas] = ACTIONS(2852), + [sym_primitive_type] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2852), + [anon_sym_union] = ACTIONS(2852), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2852), + [anon_sym___typeof] = ACTIONS(2852), + [anon_sym_typeof] = ACTIONS(2852), + [aux_sym_preproc_undef_token1] = ACTIONS(2852), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2852), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2852), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2852), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2852), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2852), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2852), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2852), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2852), + [anon_sym_NS_AVAILABLE] = ACTIONS(2852), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2852), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_API_AVAILABLE] = ACTIONS(2852), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_API_DEPRECATED] = ACTIONS(2852), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2852), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2852), + [anon_sym___deprecated_msg] = ACTIONS(2852), + [anon_sym___deprecated_enum_msg] = ACTIONS(2852), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2852), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2852), + [anon_sym_ATsynthesize] = ACTIONS(2854), + [anon_sym_ATdynamic] = ACTIONS(2854), + [anon_sym_ATproperty] = ACTIONS(2854), + [anon_sym_BOOL] = ACTIONS(2852), + [anon_sym_IMP] = ACTIONS(2852), + [anon_sym_SEL] = ACTIONS(2852), + [anon_sym_Class] = ACTIONS(2852), + [anon_sym_id] = ACTIONS(2852), + }, + [2155] = { + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2460), + [anon_sym_PLUS] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATend] = ACTIONS(2460), + [anon_sym_AToptional] = ACTIONS(2460), + [anon_sym_ATrequired] = ACTIONS(2460), + [anon_sym_ATsynthesize] = ACTIONS(2460), + [anon_sym_ATdynamic] = ACTIONS(2460), + [anon_sym_ATproperty] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [2156] = { + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2460), + [anon_sym_PLUS] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATend] = ACTIONS(2460), + [anon_sym_AToptional] = ACTIONS(2460), + [anon_sym_ATrequired] = ACTIONS(2460), + [anon_sym_ATsynthesize] = ACTIONS(2460), + [anon_sym_ATdynamic] = ACTIONS(2460), + [anon_sym_ATproperty] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [2157] = { + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2460), + [anon_sym_PLUS] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATend] = ACTIONS(2460), + [anon_sym_AToptional] = ACTIONS(2460), + [anon_sym_ATrequired] = ACTIONS(2460), + [anon_sym_ATsynthesize] = ACTIONS(2460), + [anon_sym_ATdynamic] = ACTIONS(2460), + [anon_sym_ATproperty] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [2158] = { + [sym_identifier] = ACTIONS(5377), + [aux_sym_preproc_def_token1] = ACTIONS(5377), + [aux_sym_preproc_if_token1] = ACTIONS(5377), + [aux_sym_preproc_if_token2] = ACTIONS(5377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5377), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5377), + [aux_sym_preproc_else_token1] = ACTIONS(5377), + [aux_sym_preproc_elif_token1] = ACTIONS(5377), + [sym_preproc_directive] = ACTIONS(5377), + [anon_sym_DASH] = ACTIONS(5379), + [anon_sym_PLUS] = ACTIONS(5379), + [anon_sym_SEMI] = ACTIONS(5381), + [anon_sym___extension__] = ACTIONS(5377), + [anon_sym_typedef] = ACTIONS(5377), + [anon_sym_extern] = ACTIONS(5377), + [anon_sym___attribute__] = ACTIONS(5377), + [anon_sym___attribute] = ACTIONS(5377), + [anon_sym_noreturn] = ACTIONS(5377), + [anon_sym_LBRACK] = ACTIONS(5379), + [anon_sym___declspec] = ACTIONS(5377), + [anon_sym___cdecl] = ACTIONS(5377), + [anon_sym___clrcall] = ACTIONS(5377), + [anon_sym___stdcall] = ACTIONS(5377), + [anon_sym___fastcall] = ACTIONS(5377), + [anon_sym___thiscall] = ACTIONS(5377), + [anon_sym___vectorcall] = ACTIONS(5377), + [anon_sym_signed] = ACTIONS(5377), + [anon_sym_unsigned] = ACTIONS(5377), + [anon_sym_long] = ACTIONS(5377), + [anon_sym_short] = ACTIONS(5377), + [anon_sym_static] = ACTIONS(5377), + [anon_sym_auto] = ACTIONS(5377), + [anon_sym_register] = ACTIONS(5377), + [anon_sym_inline] = ACTIONS(5377), + [anon_sym___inline] = ACTIONS(5377), + [anon_sym___inline__] = ACTIONS(5377), + [anon_sym___forceinline] = ACTIONS(5377), + [anon_sym_thread_local] = ACTIONS(5377), + [anon_sym___thread] = ACTIONS(5377), + [anon_sym_CG_EXTERN] = ACTIONS(5377), + [anon_sym_CG_INLINE] = ACTIONS(5377), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5377), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5377), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5377), + [anon_sym_IBOutlet] = ACTIONS(5377), + [anon_sym_IBInspectable] = ACTIONS(5377), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5377), + [anon_sym_NS_INLINE] = ACTIONS(5377), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5377), + [anon_sym_OBJC_EXPORT] = ACTIONS(5377), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5377), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5377), + [anon_sym_const] = ACTIONS(5377), + [anon_sym_constexpr] = ACTIONS(5377), + [anon_sym_volatile] = ACTIONS(5377), + [anon_sym_restrict] = ACTIONS(5377), + [anon_sym___restrict__] = ACTIONS(5377), + [anon_sym__Atomic] = ACTIONS(5377), + [anon_sym__Noreturn] = ACTIONS(5377), + [anon_sym__Nonnull] = ACTIONS(5377), + [anon_sym_nullable] = ACTIONS(5377), + [anon_sym__Complex] = ACTIONS(5377), + [anon_sym__Nullable] = ACTIONS(5377), + [anon_sym__Nullable_result] = ACTIONS(5377), + [anon_sym__Null_unspecified] = ACTIONS(5377), + [anon_sym___autoreleasing] = ACTIONS(5377), + [anon_sym___block] = ACTIONS(5377), + [anon_sym___bridge] = ACTIONS(5377), + [anon_sym___bridge_retained] = ACTIONS(5377), + [anon_sym___bridge_transfer] = ACTIONS(5377), + [anon_sym___complex] = ACTIONS(5377), + [anon_sym___const] = ACTIONS(5377), + [anon_sym___imag] = ACTIONS(5377), + [anon_sym___kindof] = ACTIONS(5377), + [anon_sym___nonnull] = ACTIONS(5377), + [anon_sym___nullable] = ACTIONS(5377), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5377), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5377), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5377), + [anon_sym___real] = ACTIONS(5377), + [anon_sym___strong] = ACTIONS(5377), + [anon_sym___unsafe_unretained] = ACTIONS(5377), + [anon_sym___unused] = ACTIONS(5377), + [anon_sym___weak] = ACTIONS(5377), + [anon_sym_alignas] = ACTIONS(5377), + [anon_sym__Alignas] = ACTIONS(5377), + [sym_primitive_type] = ACTIONS(5377), + [anon_sym_enum] = ACTIONS(5377), + [anon_sym_struct] = ACTIONS(5377), + [anon_sym_union] = ACTIONS(5377), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5377), + [anon_sym___typeof] = ACTIONS(5377), + [anon_sym_typeof] = ACTIONS(5377), + [aux_sym_preproc_undef_token1] = ACTIONS(5377), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5377), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5377), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5377), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5377), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5377), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5377), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5377), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5377), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5377), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5377), + [anon_sym_NS_AVAILABLE] = ACTIONS(5377), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5377), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5377), + [anon_sym_API_AVAILABLE] = ACTIONS(5377), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5377), + [anon_sym_API_DEPRECATED] = ACTIONS(5377), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5377), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5377), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5377), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5377), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5377), + [anon_sym___deprecated_msg] = ACTIONS(5377), + [anon_sym___deprecated_enum_msg] = ACTIONS(5377), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5377), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5377), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5377), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5377), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5377), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5377), + [anon_sym_ATsynthesize] = ACTIONS(5379), + [anon_sym_ATdynamic] = ACTIONS(5379), + [anon_sym_BOOL] = ACTIONS(5377), + [anon_sym_IMP] = ACTIONS(5377), + [anon_sym_SEL] = ACTIONS(5377), + [anon_sym_Class] = ACTIONS(5377), + [anon_sym_id] = ACTIONS(5377), + }, + [2159] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_PLUS] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATend] = ACTIONS(2438), + [anon_sym_AToptional] = ACTIONS(2438), + [anon_sym_ATrequired] = ACTIONS(2438), + [anon_sym_ATsynthesize] = ACTIONS(2438), + [anon_sym_ATdynamic] = ACTIONS(2438), + [anon_sym_ATproperty] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [2160] = { + [sym_identifier] = ACTIONS(5383), + [aux_sym_preproc_def_token1] = ACTIONS(5383), + [aux_sym_preproc_if_token1] = ACTIONS(5383), + [aux_sym_preproc_if_token2] = ACTIONS(5383), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5383), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5383), + [aux_sym_preproc_else_token1] = ACTIONS(5383), + [aux_sym_preproc_elif_token1] = ACTIONS(5383), + [sym_preproc_directive] = ACTIONS(5383), + [anon_sym_DASH] = ACTIONS(5385), + [anon_sym_PLUS] = ACTIONS(5385), + [anon_sym_SEMI] = ACTIONS(5387), + [anon_sym___extension__] = ACTIONS(5383), + [anon_sym_typedef] = ACTIONS(5383), + [anon_sym_extern] = ACTIONS(5383), + [anon_sym___attribute__] = ACTIONS(5383), + [anon_sym___attribute] = ACTIONS(5383), + [anon_sym_noreturn] = ACTIONS(5383), + [anon_sym_LBRACK] = ACTIONS(5385), + [anon_sym___declspec] = ACTIONS(5383), + [anon_sym___cdecl] = ACTIONS(5383), + [anon_sym___clrcall] = ACTIONS(5383), + [anon_sym___stdcall] = ACTIONS(5383), + [anon_sym___fastcall] = ACTIONS(5383), + [anon_sym___thiscall] = ACTIONS(5383), + [anon_sym___vectorcall] = ACTIONS(5383), + [anon_sym_signed] = ACTIONS(5383), + [anon_sym_unsigned] = ACTIONS(5383), + [anon_sym_long] = ACTIONS(5383), + [anon_sym_short] = ACTIONS(5383), + [anon_sym_static] = ACTIONS(5383), + [anon_sym_auto] = ACTIONS(5383), + [anon_sym_register] = ACTIONS(5383), + [anon_sym_inline] = ACTIONS(5383), + [anon_sym___inline] = ACTIONS(5383), + [anon_sym___inline__] = ACTIONS(5383), + [anon_sym___forceinline] = ACTIONS(5383), + [anon_sym_thread_local] = ACTIONS(5383), + [anon_sym___thread] = ACTIONS(5383), + [anon_sym_CG_EXTERN] = ACTIONS(5383), + [anon_sym_CG_INLINE] = ACTIONS(5383), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5383), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5383), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5383), + [anon_sym_IBOutlet] = ACTIONS(5383), + [anon_sym_IBInspectable] = ACTIONS(5383), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5383), + [anon_sym_NS_INLINE] = ACTIONS(5383), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5383), + [anon_sym_OBJC_EXPORT] = ACTIONS(5383), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5383), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5383), + [anon_sym_const] = ACTIONS(5383), + [anon_sym_constexpr] = ACTIONS(5383), + [anon_sym_volatile] = ACTIONS(5383), + [anon_sym_restrict] = ACTIONS(5383), + [anon_sym___restrict__] = ACTIONS(5383), + [anon_sym__Atomic] = ACTIONS(5383), + [anon_sym__Noreturn] = ACTIONS(5383), + [anon_sym__Nonnull] = ACTIONS(5383), + [anon_sym_nullable] = ACTIONS(5383), + [anon_sym__Complex] = ACTIONS(5383), + [anon_sym__Nullable] = ACTIONS(5383), + [anon_sym__Nullable_result] = ACTIONS(5383), + [anon_sym__Null_unspecified] = ACTIONS(5383), + [anon_sym___autoreleasing] = ACTIONS(5383), + [anon_sym___block] = ACTIONS(5383), + [anon_sym___bridge] = ACTIONS(5383), + [anon_sym___bridge_retained] = ACTIONS(5383), + [anon_sym___bridge_transfer] = ACTIONS(5383), + [anon_sym___complex] = ACTIONS(5383), + [anon_sym___const] = ACTIONS(5383), + [anon_sym___imag] = ACTIONS(5383), + [anon_sym___kindof] = ACTIONS(5383), + [anon_sym___nonnull] = ACTIONS(5383), + [anon_sym___nullable] = ACTIONS(5383), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5383), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5383), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5383), + [anon_sym___real] = ACTIONS(5383), + [anon_sym___strong] = ACTIONS(5383), + [anon_sym___unsafe_unretained] = ACTIONS(5383), + [anon_sym___unused] = ACTIONS(5383), + [anon_sym___weak] = ACTIONS(5383), + [anon_sym_alignas] = ACTIONS(5383), + [anon_sym__Alignas] = ACTIONS(5383), + [sym_primitive_type] = ACTIONS(5383), + [anon_sym_enum] = ACTIONS(5383), + [anon_sym_struct] = ACTIONS(5383), + [anon_sym_union] = ACTIONS(5383), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5383), + [anon_sym___typeof] = ACTIONS(5383), + [anon_sym_typeof] = ACTIONS(5383), + [aux_sym_preproc_undef_token1] = ACTIONS(5383), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5383), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5383), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5383), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5383), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5383), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5383), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5383), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5383), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5383), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5383), + [anon_sym_NS_AVAILABLE] = ACTIONS(5383), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5383), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5383), + [anon_sym_API_AVAILABLE] = ACTIONS(5383), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5383), + [anon_sym_API_DEPRECATED] = ACTIONS(5383), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5383), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5383), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5383), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5383), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5383), + [anon_sym___deprecated_msg] = ACTIONS(5383), + [anon_sym___deprecated_enum_msg] = ACTIONS(5383), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5383), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5383), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5383), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5383), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5383), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5383), + [anon_sym_ATsynthesize] = ACTIONS(5385), + [anon_sym_ATdynamic] = ACTIONS(5385), + [anon_sym_BOOL] = ACTIONS(5383), + [anon_sym_IMP] = ACTIONS(5383), + [anon_sym_SEL] = ACTIONS(5383), + [anon_sym_Class] = ACTIONS(5383), + [anon_sym_id] = ACTIONS(5383), + }, + [2161] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4835), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2162] = { + [sym_identifier] = ACTIONS(2856), + [aux_sym_preproc_def_token1] = ACTIONS(2856), + [aux_sym_preproc_if_token1] = ACTIONS(2856), + [aux_sym_preproc_if_token2] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2856), + [aux_sym_preproc_else_token1] = ACTIONS(2856), + [aux_sym_preproc_elif_token1] = ACTIONS(2856), + [sym_preproc_directive] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2858), + [anon_sym_PLUS] = ACTIONS(2858), + [anon_sym___extension__] = ACTIONS(2856), + [anon_sym_typedef] = ACTIONS(2856), + [anon_sym_extern] = ACTIONS(2856), + [anon_sym___attribute__] = ACTIONS(2856), + [anon_sym___attribute] = ACTIONS(2856), + [anon_sym_noreturn] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2858), + [anon_sym___declspec] = ACTIONS(2856), + [anon_sym___cdecl] = ACTIONS(2856), + [anon_sym___clrcall] = ACTIONS(2856), + [anon_sym___stdcall] = ACTIONS(2856), + [anon_sym___fastcall] = ACTIONS(2856), + [anon_sym___thiscall] = ACTIONS(2856), + [anon_sym___vectorcall] = ACTIONS(2856), + [anon_sym_signed] = ACTIONS(2856), + [anon_sym_unsigned] = ACTIONS(2856), + [anon_sym_long] = ACTIONS(2856), + [anon_sym_short] = ACTIONS(2856), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_auto] = ACTIONS(2856), + [anon_sym_register] = ACTIONS(2856), + [anon_sym_inline] = ACTIONS(2856), + [anon_sym___inline] = ACTIONS(2856), + [anon_sym___inline__] = ACTIONS(2856), + [anon_sym___forceinline] = ACTIONS(2856), + [anon_sym_thread_local] = ACTIONS(2856), + [anon_sym___thread] = ACTIONS(2856), + [anon_sym_CG_EXTERN] = ACTIONS(2856), + [anon_sym_CG_INLINE] = ACTIONS(2856), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2856), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2856), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2856), + [anon_sym_IBOutlet] = ACTIONS(2856), + [anon_sym_IBInspectable] = ACTIONS(2856), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2856), + [anon_sym_NS_INLINE] = ACTIONS(2856), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2856), + [anon_sym_OBJC_EXPORT] = ACTIONS(2856), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2856), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2856), + [anon_sym_constexpr] = ACTIONS(2856), + [anon_sym_volatile] = ACTIONS(2856), + [anon_sym_restrict] = ACTIONS(2856), + [anon_sym___restrict__] = ACTIONS(2856), + [anon_sym__Atomic] = ACTIONS(2856), + [anon_sym__Noreturn] = ACTIONS(2856), + [anon_sym__Nonnull] = ACTIONS(2856), + [anon_sym_nullable] = ACTIONS(2856), + [anon_sym__Complex] = ACTIONS(2856), + [anon_sym__Nullable] = ACTIONS(2856), + [anon_sym__Nullable_result] = ACTIONS(2856), + [anon_sym__Null_unspecified] = ACTIONS(2856), + [anon_sym___autoreleasing] = ACTIONS(2856), + [anon_sym___block] = ACTIONS(2856), + [anon_sym___bridge] = ACTIONS(2856), + [anon_sym___bridge_retained] = ACTIONS(2856), + [anon_sym___bridge_transfer] = ACTIONS(2856), + [anon_sym___complex] = ACTIONS(2856), + [anon_sym___const] = ACTIONS(2856), + [anon_sym___imag] = ACTIONS(2856), + [anon_sym___kindof] = ACTIONS(2856), + [anon_sym___nonnull] = ACTIONS(2856), + [anon_sym___nullable] = ACTIONS(2856), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2856), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2856), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2856), + [anon_sym___real] = ACTIONS(2856), + [anon_sym___strong] = ACTIONS(2856), + [anon_sym___unsafe_unretained] = ACTIONS(2856), + [anon_sym___unused] = ACTIONS(2856), + [anon_sym___weak] = ACTIONS(2856), + [anon_sym_alignas] = ACTIONS(2856), + [anon_sym__Alignas] = ACTIONS(2856), + [sym_primitive_type] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2856), + [anon_sym_union] = ACTIONS(2856), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2856), + [anon_sym___typeof] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2856), + [aux_sym_preproc_undef_token1] = ACTIONS(2856), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2856), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2856), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2856), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2856), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2856), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2856), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2856), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2856), + [anon_sym_NS_AVAILABLE] = ACTIONS(2856), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2856), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_API_AVAILABLE] = ACTIONS(2856), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_API_DEPRECATED] = ACTIONS(2856), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2856), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2856), + [anon_sym___deprecated_msg] = ACTIONS(2856), + [anon_sym___deprecated_enum_msg] = ACTIONS(2856), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2856), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2856), + [anon_sym_ATsynthesize] = ACTIONS(2858), + [anon_sym_ATdynamic] = ACTIONS(2858), + [anon_sym_ATproperty] = ACTIONS(2858), + [anon_sym_BOOL] = ACTIONS(2856), + [anon_sym_IMP] = ACTIONS(2856), + [anon_sym_SEL] = ACTIONS(2856), + [anon_sym_Class] = ACTIONS(2856), + [anon_sym_id] = ACTIONS(2856), + }, + [2163] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4843), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2164] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2862), + [anon_sym_PLUS] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym___attribute] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_auto] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_CG_EXTERN] = ACTIONS(2860), + [anon_sym_CG_INLINE] = ACTIONS(2860), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2860), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2860), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2860), + [anon_sym_IBOutlet] = ACTIONS(2860), + [anon_sym_IBInspectable] = ACTIONS(2860), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2860), + [anon_sym_NS_INLINE] = ACTIONS(2860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2860), + [anon_sym_OBJC_EXPORT] = ACTIONS(2860), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2860), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym__Nonnull] = ACTIONS(2860), + [anon_sym_nullable] = ACTIONS(2860), + [anon_sym__Complex] = ACTIONS(2860), + [anon_sym__Nullable] = ACTIONS(2860), + [anon_sym__Nullable_result] = ACTIONS(2860), + [anon_sym__Null_unspecified] = ACTIONS(2860), + [anon_sym___autoreleasing] = ACTIONS(2860), + [anon_sym___block] = ACTIONS(2860), + [anon_sym___bridge] = ACTIONS(2860), + [anon_sym___bridge_retained] = ACTIONS(2860), + [anon_sym___bridge_transfer] = ACTIONS(2860), + [anon_sym___complex] = ACTIONS(2860), + [anon_sym___const] = ACTIONS(2860), + [anon_sym___imag] = ACTIONS(2860), + [anon_sym___kindof] = ACTIONS(2860), + [anon_sym___nonnull] = ACTIONS(2860), + [anon_sym___nullable] = ACTIONS(2860), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2860), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2860), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2860), + [anon_sym___real] = ACTIONS(2860), + [anon_sym___strong] = ACTIONS(2860), + [anon_sym___unsafe_unretained] = ACTIONS(2860), + [anon_sym___unused] = ACTIONS(2860), + [anon_sym___weak] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym__Alignas] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2860), + [anon_sym___typeof] = ACTIONS(2860), + [anon_sym_typeof] = ACTIONS(2860), + [aux_sym_preproc_undef_token1] = ACTIONS(2860), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2860), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2860), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2860), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2860), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2860), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2860), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2860), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2860), + [anon_sym_NS_AVAILABLE] = ACTIONS(2860), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2860), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_API_AVAILABLE] = ACTIONS(2860), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_API_DEPRECATED] = ACTIONS(2860), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2860), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2860), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2860), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2860), + [anon_sym___deprecated_msg] = ACTIONS(2860), + [anon_sym___deprecated_enum_msg] = ACTIONS(2860), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2860), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2860), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2860), + [anon_sym_ATsynthesize] = ACTIONS(2862), + [anon_sym_ATdynamic] = ACTIONS(2862), + [anon_sym_ATproperty] = ACTIONS(2862), + [anon_sym_BOOL] = ACTIONS(2860), + [anon_sym_IMP] = ACTIONS(2860), + [anon_sym_SEL] = ACTIONS(2860), + [anon_sym_Class] = ACTIONS(2860), + [anon_sym_id] = ACTIONS(2860), + }, + [2165] = { + [sym_identifier] = ACTIONS(2864), + [aux_sym_preproc_def_token1] = ACTIONS(2864), + [aux_sym_preproc_if_token1] = ACTIONS(2864), + [aux_sym_preproc_if_token2] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2864), + [aux_sym_preproc_else_token1] = ACTIONS(2864), + [aux_sym_preproc_elif_token1] = ACTIONS(2864), + [sym_preproc_directive] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2866), + [anon_sym_PLUS] = ACTIONS(2866), + [anon_sym___extension__] = ACTIONS(2864), + [anon_sym_typedef] = ACTIONS(2864), + [anon_sym_extern] = ACTIONS(2864), + [anon_sym___attribute__] = ACTIONS(2864), + [anon_sym___attribute] = ACTIONS(2864), + [anon_sym_noreturn] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2866), + [anon_sym___declspec] = ACTIONS(2864), + [anon_sym___cdecl] = ACTIONS(2864), + [anon_sym___clrcall] = ACTIONS(2864), + [anon_sym___stdcall] = ACTIONS(2864), + [anon_sym___fastcall] = ACTIONS(2864), + [anon_sym___thiscall] = ACTIONS(2864), + [anon_sym___vectorcall] = ACTIONS(2864), + [anon_sym_signed] = ACTIONS(2864), + [anon_sym_unsigned] = ACTIONS(2864), + [anon_sym_long] = ACTIONS(2864), + [anon_sym_short] = ACTIONS(2864), + [anon_sym_static] = ACTIONS(2864), + [anon_sym_auto] = ACTIONS(2864), + [anon_sym_register] = ACTIONS(2864), + [anon_sym_inline] = ACTIONS(2864), + [anon_sym___inline] = ACTIONS(2864), + [anon_sym___inline__] = ACTIONS(2864), + [anon_sym___forceinline] = ACTIONS(2864), + [anon_sym_thread_local] = ACTIONS(2864), + [anon_sym___thread] = ACTIONS(2864), + [anon_sym_CG_EXTERN] = ACTIONS(2864), + [anon_sym_CG_INLINE] = ACTIONS(2864), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2864), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2864), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2864), + [anon_sym_IBOutlet] = ACTIONS(2864), + [anon_sym_IBInspectable] = ACTIONS(2864), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2864), + [anon_sym_NS_INLINE] = ACTIONS(2864), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2864), + [anon_sym_OBJC_EXPORT] = ACTIONS(2864), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2864), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2864), + [anon_sym_const] = ACTIONS(2864), + [anon_sym_constexpr] = ACTIONS(2864), + [anon_sym_volatile] = ACTIONS(2864), + [anon_sym_restrict] = ACTIONS(2864), + [anon_sym___restrict__] = ACTIONS(2864), + [anon_sym__Atomic] = ACTIONS(2864), + [anon_sym__Noreturn] = ACTIONS(2864), + [anon_sym__Nonnull] = ACTIONS(2864), + [anon_sym_nullable] = ACTIONS(2864), + [anon_sym__Complex] = ACTIONS(2864), + [anon_sym__Nullable] = ACTIONS(2864), + [anon_sym__Nullable_result] = ACTIONS(2864), + [anon_sym__Null_unspecified] = ACTIONS(2864), + [anon_sym___autoreleasing] = ACTIONS(2864), + [anon_sym___block] = ACTIONS(2864), + [anon_sym___bridge] = ACTIONS(2864), + [anon_sym___bridge_retained] = ACTIONS(2864), + [anon_sym___bridge_transfer] = ACTIONS(2864), + [anon_sym___complex] = ACTIONS(2864), + [anon_sym___const] = ACTIONS(2864), + [anon_sym___imag] = ACTIONS(2864), + [anon_sym___kindof] = ACTIONS(2864), + [anon_sym___nonnull] = ACTIONS(2864), + [anon_sym___nullable] = ACTIONS(2864), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2864), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2864), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2864), + [anon_sym___real] = ACTIONS(2864), + [anon_sym___strong] = ACTIONS(2864), + [anon_sym___unsafe_unretained] = ACTIONS(2864), + [anon_sym___unused] = ACTIONS(2864), + [anon_sym___weak] = ACTIONS(2864), + [anon_sym_alignas] = ACTIONS(2864), + [anon_sym__Alignas] = ACTIONS(2864), + [sym_primitive_type] = ACTIONS(2864), + [anon_sym_enum] = ACTIONS(2864), + [anon_sym_struct] = ACTIONS(2864), + [anon_sym_union] = ACTIONS(2864), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2864), + [anon_sym___typeof] = ACTIONS(2864), + [anon_sym_typeof] = ACTIONS(2864), + [aux_sym_preproc_undef_token1] = ACTIONS(2864), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2864), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2864), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2864), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2864), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2864), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2864), + [anon_sym_NS_AVAILABLE] = ACTIONS(2864), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2864), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_API_AVAILABLE] = ACTIONS(2864), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_API_DEPRECATED] = ACTIONS(2864), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2864), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2864), + [anon_sym___deprecated_msg] = ACTIONS(2864), + [anon_sym___deprecated_enum_msg] = ACTIONS(2864), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2864), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2864), + [anon_sym_ATsynthesize] = ACTIONS(2866), + [anon_sym_ATdynamic] = ACTIONS(2866), + [anon_sym_ATproperty] = ACTIONS(2866), + [anon_sym_BOOL] = ACTIONS(2864), + [anon_sym_IMP] = ACTIONS(2864), + [anon_sym_SEL] = ACTIONS(2864), + [anon_sym_Class] = ACTIONS(2864), + [anon_sym_id] = ACTIONS(2864), + }, + [2166] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2862), + [anon_sym_PLUS] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym___attribute] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_auto] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_CG_EXTERN] = ACTIONS(2860), + [anon_sym_CG_INLINE] = ACTIONS(2860), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2860), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2860), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2860), + [anon_sym_IBOutlet] = ACTIONS(2860), + [anon_sym_IBInspectable] = ACTIONS(2860), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2860), + [anon_sym_NS_INLINE] = ACTIONS(2860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2860), + [anon_sym_OBJC_EXPORT] = ACTIONS(2860), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2860), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym__Nonnull] = ACTIONS(2860), + [anon_sym_nullable] = ACTIONS(2860), + [anon_sym__Complex] = ACTIONS(2860), + [anon_sym__Nullable] = ACTIONS(2860), + [anon_sym__Nullable_result] = ACTIONS(2860), + [anon_sym__Null_unspecified] = ACTIONS(2860), + [anon_sym___autoreleasing] = ACTIONS(2860), + [anon_sym___block] = ACTIONS(2860), + [anon_sym___bridge] = ACTIONS(2860), + [anon_sym___bridge_retained] = ACTIONS(2860), + [anon_sym___bridge_transfer] = ACTIONS(2860), + [anon_sym___complex] = ACTIONS(2860), + [anon_sym___const] = ACTIONS(2860), + [anon_sym___imag] = ACTIONS(2860), + [anon_sym___kindof] = ACTIONS(2860), + [anon_sym___nonnull] = ACTIONS(2860), + [anon_sym___nullable] = ACTIONS(2860), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2860), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2860), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2860), + [anon_sym___real] = ACTIONS(2860), + [anon_sym___strong] = ACTIONS(2860), + [anon_sym___unsafe_unretained] = ACTIONS(2860), + [anon_sym___unused] = ACTIONS(2860), + [anon_sym___weak] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym__Alignas] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2860), + [anon_sym___typeof] = ACTIONS(2860), + [anon_sym_typeof] = ACTIONS(2860), + [aux_sym_preproc_undef_token1] = ACTIONS(2860), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2860), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2860), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2860), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2860), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2860), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2860), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2860), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2860), + [anon_sym_NS_AVAILABLE] = ACTIONS(2860), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2860), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_API_AVAILABLE] = ACTIONS(2860), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_API_DEPRECATED] = ACTIONS(2860), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2860), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2860), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2860), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2860), + [anon_sym___deprecated_msg] = ACTIONS(2860), + [anon_sym___deprecated_enum_msg] = ACTIONS(2860), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2860), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2860), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2860), + [anon_sym_ATend] = ACTIONS(2862), + [anon_sym_AToptional] = ACTIONS(2862), + [anon_sym_ATrequired] = ACTIONS(2862), + [anon_sym_ATsynthesize] = ACTIONS(2862), + [anon_sym_ATdynamic] = ACTIONS(2862), + [anon_sym_ATproperty] = ACTIONS(2862), + [anon_sym_BOOL] = ACTIONS(2860), + [anon_sym_IMP] = ACTIONS(2860), + [anon_sym_SEL] = ACTIONS(2860), + [anon_sym_Class] = ACTIONS(2860), + [anon_sym_id] = ACTIONS(2860), + }, + [2167] = { + [sym_identifier] = ACTIONS(2848), + [aux_sym_preproc_def_token1] = ACTIONS(2848), + [aux_sym_preproc_if_token1] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2848), + [sym_preproc_directive] = ACTIONS(2848), + [anon_sym_DASH] = ACTIONS(2850), + [anon_sym_PLUS] = ACTIONS(2850), + [anon_sym___extension__] = ACTIONS(2848), + [anon_sym_typedef] = ACTIONS(2848), + [anon_sym_extern] = ACTIONS(2848), + [anon_sym___attribute__] = ACTIONS(2848), + [anon_sym___attribute] = ACTIONS(2848), + [anon_sym_noreturn] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2850), + [anon_sym___declspec] = ACTIONS(2848), + [anon_sym___cdecl] = ACTIONS(2848), + [anon_sym___clrcall] = ACTIONS(2848), + [anon_sym___stdcall] = ACTIONS(2848), + [anon_sym___fastcall] = ACTIONS(2848), + [anon_sym___thiscall] = ACTIONS(2848), + [anon_sym___vectorcall] = ACTIONS(2848), + [anon_sym_signed] = ACTIONS(2848), + [anon_sym_unsigned] = ACTIONS(2848), + [anon_sym_long] = ACTIONS(2848), + [anon_sym_short] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_auto] = ACTIONS(2848), + [anon_sym_register] = ACTIONS(2848), + [anon_sym_inline] = ACTIONS(2848), + [anon_sym___inline] = ACTIONS(2848), + [anon_sym___inline__] = ACTIONS(2848), + [anon_sym___forceinline] = ACTIONS(2848), + [anon_sym_thread_local] = ACTIONS(2848), + [anon_sym___thread] = ACTIONS(2848), + [anon_sym_CG_EXTERN] = ACTIONS(2848), + [anon_sym_CG_INLINE] = ACTIONS(2848), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2848), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2848), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2848), + [anon_sym_IBOutlet] = ACTIONS(2848), + [anon_sym_IBInspectable] = ACTIONS(2848), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2848), + [anon_sym_NS_INLINE] = ACTIONS(2848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2848), + [anon_sym_OBJC_EXPORT] = ACTIONS(2848), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2848), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2848), + [anon_sym_const] = ACTIONS(2848), + [anon_sym_constexpr] = ACTIONS(2848), + [anon_sym_volatile] = ACTIONS(2848), + [anon_sym_restrict] = ACTIONS(2848), + [anon_sym___restrict__] = ACTIONS(2848), + [anon_sym__Atomic] = ACTIONS(2848), + [anon_sym__Noreturn] = ACTIONS(2848), + [anon_sym__Nonnull] = ACTIONS(2848), + [anon_sym_nullable] = ACTIONS(2848), + [anon_sym__Complex] = ACTIONS(2848), + [anon_sym__Nullable] = ACTIONS(2848), + [anon_sym__Nullable_result] = ACTIONS(2848), + [anon_sym__Null_unspecified] = ACTIONS(2848), + [anon_sym___autoreleasing] = ACTIONS(2848), + [anon_sym___block] = ACTIONS(2848), + [anon_sym___bridge] = ACTIONS(2848), + [anon_sym___bridge_retained] = ACTIONS(2848), + [anon_sym___bridge_transfer] = ACTIONS(2848), + [anon_sym___complex] = ACTIONS(2848), + [anon_sym___const] = ACTIONS(2848), + [anon_sym___imag] = ACTIONS(2848), + [anon_sym___kindof] = ACTIONS(2848), + [anon_sym___nonnull] = ACTIONS(2848), + [anon_sym___nullable] = ACTIONS(2848), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2848), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2848), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2848), + [anon_sym___real] = ACTIONS(2848), + [anon_sym___strong] = ACTIONS(2848), + [anon_sym___unsafe_unretained] = ACTIONS(2848), + [anon_sym___unused] = ACTIONS(2848), + [anon_sym___weak] = ACTIONS(2848), + [anon_sym_alignas] = ACTIONS(2848), + [anon_sym__Alignas] = ACTIONS(2848), + [sym_primitive_type] = ACTIONS(2848), + [anon_sym_enum] = ACTIONS(2848), + [anon_sym_struct] = ACTIONS(2848), + [anon_sym_union] = ACTIONS(2848), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2848), + [anon_sym___typeof] = ACTIONS(2848), + [anon_sym_typeof] = ACTIONS(2848), + [aux_sym_preproc_undef_token1] = ACTIONS(2848), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2848), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2848), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2848), + [anon_sym_NS_AVAILABLE] = ACTIONS(2848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_API_AVAILABLE] = ACTIONS(2848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_API_DEPRECATED] = ACTIONS(2848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2848), + [anon_sym___deprecated_msg] = ACTIONS(2848), + [anon_sym___deprecated_enum_msg] = ACTIONS(2848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2848), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2848), + [anon_sym_ATend] = ACTIONS(2850), + [anon_sym_AToptional] = ACTIONS(2850), + [anon_sym_ATrequired] = ACTIONS(2850), + [anon_sym_ATsynthesize] = ACTIONS(2850), + [anon_sym_ATdynamic] = ACTIONS(2850), + [anon_sym_ATproperty] = ACTIONS(2850), + [anon_sym_BOOL] = ACTIONS(2848), + [anon_sym_IMP] = ACTIONS(2848), + [anon_sym_SEL] = ACTIONS(2848), + [anon_sym_Class] = ACTIONS(2848), + [anon_sym_id] = ACTIONS(2848), + }, + [2168] = { + [sym__declaration_modifiers] = STATE(2535), + [sym_attribute_specifier] = STATE(2535), + [sym_attribute_declaration] = STATE(2535), + [sym_ms_declspec_modifier] = STATE(2535), + [sym_ms_based_modifier] = STATE(6323), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2565), + [sym__declarator] = STATE(3914), + [sym__abstract_declarator] = STATE(4979), + [sym_parenthesized_declarator] = STATE(4011), + [sym_abstract_parenthesized_declarator] = STATE(4894), + [sym_pointer_declarator] = STATE(4011), + [sym_abstract_pointer_declarator] = STATE(4894), + [sym_function_declarator] = STATE(4011), + [sym_abstract_function_declarator] = STATE(4894), + [sym_array_declarator] = STATE(4011), + [sym_abstract_array_declarator] = STATE(4894), + [sym_storage_class_specifier] = STATE(2535), + [sym_type_qualifier] = STATE(2535), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(4315), + [sym_availability_attribute_specifier] = STATE(2535), + [sym_block_pointer_declarator] = STATE(4011), + [sym_abstract_block_pointer_declarator] = STATE(4894), + [aux_sym__declaration_specifiers_repeat1] = STATE(2535), + [aux_sym_pointer_declarator_repeat1] = STATE(2565), + [sym_identifier] = ACTIONS(5281), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(5389), + [anon_sym_CARET] = ACTIONS(5391), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_LBRACE] = ACTIONS(5283), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(5283), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2169] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4845), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2170] = { + [aux_sym_method_declaration_repeat2] = STATE(2137), + [sym_identifier] = ACTIONS(5353), + [aux_sym_preproc_def_token1] = ACTIONS(5353), + [aux_sym_preproc_if_token1] = ACTIONS(5353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5353), + [sym_preproc_directive] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(5355), + [anon_sym_PLUS] = ACTIONS(5355), + [anon_sym_SEMI] = ACTIONS(5344), + [anon_sym___extension__] = ACTIONS(5353), + [anon_sym_typedef] = ACTIONS(5353), + [anon_sym_extern] = ACTIONS(5353), + [anon_sym___attribute__] = ACTIONS(5353), + [anon_sym___attribute] = ACTIONS(5353), + [anon_sym_noreturn] = ACTIONS(5353), + [anon_sym_LBRACK] = ACTIONS(5355), + [anon_sym___declspec] = ACTIONS(5353), + [anon_sym___cdecl] = ACTIONS(5353), + [anon_sym___clrcall] = ACTIONS(5353), + [anon_sym___stdcall] = ACTIONS(5353), + [anon_sym___fastcall] = ACTIONS(5353), + [anon_sym___thiscall] = ACTIONS(5353), + [anon_sym___vectorcall] = ACTIONS(5353), + [anon_sym_signed] = ACTIONS(5353), + [anon_sym_unsigned] = ACTIONS(5353), + [anon_sym_long] = ACTIONS(5353), + [anon_sym_short] = ACTIONS(5353), + [anon_sym_static] = ACTIONS(5353), + [anon_sym_auto] = ACTIONS(5353), + [anon_sym_register] = ACTIONS(5353), + [anon_sym_inline] = ACTIONS(5353), + [anon_sym___inline] = ACTIONS(5353), + [anon_sym___inline__] = ACTIONS(5353), + [anon_sym___forceinline] = ACTIONS(5353), + [anon_sym_thread_local] = ACTIONS(5353), + [anon_sym___thread] = ACTIONS(5353), + [anon_sym_CG_EXTERN] = ACTIONS(5353), + [anon_sym_CG_INLINE] = ACTIONS(5353), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5353), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5353), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5353), + [anon_sym_IBOutlet] = ACTIONS(5353), + [anon_sym_IBInspectable] = ACTIONS(5353), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5353), + [anon_sym_NS_INLINE] = ACTIONS(5353), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5353), + [anon_sym_OBJC_EXPORT] = ACTIONS(5353), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5353), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5353), + [anon_sym_const] = ACTIONS(5353), + [anon_sym_constexpr] = ACTIONS(5353), + [anon_sym_volatile] = ACTIONS(5353), + [anon_sym_restrict] = ACTIONS(5353), + [anon_sym___restrict__] = ACTIONS(5353), + [anon_sym__Atomic] = ACTIONS(5353), + [anon_sym__Noreturn] = ACTIONS(5353), + [anon_sym__Nonnull] = ACTIONS(5353), + [anon_sym_nullable] = ACTIONS(5353), + [anon_sym__Complex] = ACTIONS(5353), + [anon_sym__Nullable] = ACTIONS(5353), + [anon_sym__Nullable_result] = ACTIONS(5353), + [anon_sym__Null_unspecified] = ACTIONS(5353), + [anon_sym___autoreleasing] = ACTIONS(5353), + [anon_sym___block] = ACTIONS(5353), + [anon_sym___bridge] = ACTIONS(5353), + [anon_sym___bridge_retained] = ACTIONS(5353), + [anon_sym___bridge_transfer] = ACTIONS(5353), + [anon_sym___complex] = ACTIONS(5353), + [anon_sym___const] = ACTIONS(5353), + [anon_sym___imag] = ACTIONS(5353), + [anon_sym___kindof] = ACTIONS(5353), + [anon_sym___nonnull] = ACTIONS(5353), + [anon_sym___nullable] = ACTIONS(5353), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5353), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5353), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5353), + [anon_sym___real] = ACTIONS(5353), + [anon_sym___strong] = ACTIONS(5353), + [anon_sym___unsafe_unretained] = ACTIONS(5353), + [anon_sym___unused] = ACTIONS(5353), + [anon_sym___weak] = ACTIONS(5353), + [anon_sym_alignas] = ACTIONS(5353), + [anon_sym__Alignas] = ACTIONS(5353), + [sym_primitive_type] = ACTIONS(5353), + [anon_sym_enum] = ACTIONS(5353), + [anon_sym_struct] = ACTIONS(5353), + [anon_sym_union] = ACTIONS(5353), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5353), + [anon_sym___typeof] = ACTIONS(5353), + [anon_sym_typeof] = ACTIONS(5353), + [aux_sym_preproc_undef_token1] = ACTIONS(5353), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5353), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5353), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5353), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5353), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5353), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5353), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5353), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5353), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5353), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5353), + [anon_sym_NS_AVAILABLE] = ACTIONS(5353), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5353), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5353), + [anon_sym_API_AVAILABLE] = ACTIONS(5353), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5353), + [anon_sym_API_DEPRECATED] = ACTIONS(5353), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5353), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5353), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5353), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5353), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5353), + [anon_sym___deprecated_msg] = ACTIONS(5353), + [anon_sym___deprecated_enum_msg] = ACTIONS(5353), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5353), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5353), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5353), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5353), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5353), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5353), + [anon_sym_ATend] = ACTIONS(5355), + [anon_sym_AToptional] = ACTIONS(5355), + [anon_sym_ATrequired] = ACTIONS(5355), + [anon_sym_ATproperty] = ACTIONS(5355), + [anon_sym_BOOL] = ACTIONS(5353), + [anon_sym_IMP] = ACTIONS(5353), + [anon_sym_SEL] = ACTIONS(5353), + [anon_sym_Class] = ACTIONS(5353), + [anon_sym_id] = ACTIONS(5353), + }, + [2171] = { + [aux_sym_method_declaration_repeat2] = STATE(2108), + [sym_identifier] = ACTIONS(5340), + [aux_sym_preproc_def_token1] = ACTIONS(5340), + [aux_sym_preproc_if_token1] = ACTIONS(5340), + [aux_sym_preproc_if_token2] = ACTIONS(5340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5340), + [aux_sym_preproc_else_token1] = ACTIONS(5340), + [aux_sym_preproc_elif_token1] = ACTIONS(5340), + [sym_preproc_directive] = ACTIONS(5340), + [anon_sym_DASH] = ACTIONS(5342), + [anon_sym_PLUS] = ACTIONS(5342), + [anon_sym_SEMI] = ACTIONS(5357), + [anon_sym___extension__] = ACTIONS(5340), + [anon_sym_typedef] = ACTIONS(5340), + [anon_sym_extern] = ACTIONS(5340), + [anon_sym___attribute__] = ACTIONS(5340), + [anon_sym___attribute] = ACTIONS(5340), + [anon_sym_noreturn] = ACTIONS(5340), + [anon_sym_LBRACK] = ACTIONS(5342), + [anon_sym___declspec] = ACTIONS(5340), + [anon_sym___cdecl] = ACTIONS(5340), + [anon_sym___clrcall] = ACTIONS(5340), + [anon_sym___stdcall] = ACTIONS(5340), + [anon_sym___fastcall] = ACTIONS(5340), + [anon_sym___thiscall] = ACTIONS(5340), + [anon_sym___vectorcall] = ACTIONS(5340), + [anon_sym_signed] = ACTIONS(5340), + [anon_sym_unsigned] = ACTIONS(5340), + [anon_sym_long] = ACTIONS(5340), + [anon_sym_short] = ACTIONS(5340), + [anon_sym_static] = ACTIONS(5340), + [anon_sym_auto] = ACTIONS(5340), + [anon_sym_register] = ACTIONS(5340), + [anon_sym_inline] = ACTIONS(5340), + [anon_sym___inline] = ACTIONS(5340), + [anon_sym___inline__] = ACTIONS(5340), + [anon_sym___forceinline] = ACTIONS(5340), + [anon_sym_thread_local] = ACTIONS(5340), + [anon_sym___thread] = ACTIONS(5340), + [anon_sym_CG_EXTERN] = ACTIONS(5340), + [anon_sym_CG_INLINE] = ACTIONS(5340), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5340), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5340), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5340), + [anon_sym_IBOutlet] = ACTIONS(5340), + [anon_sym_IBInspectable] = ACTIONS(5340), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5340), + [anon_sym_NS_INLINE] = ACTIONS(5340), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5340), + [anon_sym_OBJC_EXPORT] = ACTIONS(5340), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5340), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5340), + [anon_sym_const] = ACTIONS(5340), + [anon_sym_constexpr] = ACTIONS(5340), + [anon_sym_volatile] = ACTIONS(5340), + [anon_sym_restrict] = ACTIONS(5340), + [anon_sym___restrict__] = ACTIONS(5340), + [anon_sym__Atomic] = ACTIONS(5340), + [anon_sym__Noreturn] = ACTIONS(5340), + [anon_sym__Nonnull] = ACTIONS(5340), + [anon_sym_nullable] = ACTIONS(5340), + [anon_sym__Complex] = ACTIONS(5340), + [anon_sym__Nullable] = ACTIONS(5340), + [anon_sym__Nullable_result] = ACTIONS(5340), + [anon_sym__Null_unspecified] = ACTIONS(5340), + [anon_sym___autoreleasing] = ACTIONS(5340), + [anon_sym___block] = ACTIONS(5340), + [anon_sym___bridge] = ACTIONS(5340), + [anon_sym___bridge_retained] = ACTIONS(5340), + [anon_sym___bridge_transfer] = ACTIONS(5340), + [anon_sym___complex] = ACTIONS(5340), + [anon_sym___const] = ACTIONS(5340), + [anon_sym___imag] = ACTIONS(5340), + [anon_sym___kindof] = ACTIONS(5340), + [anon_sym___nonnull] = ACTIONS(5340), + [anon_sym___nullable] = ACTIONS(5340), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5340), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5340), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5340), + [anon_sym___real] = ACTIONS(5340), + [anon_sym___strong] = ACTIONS(5340), + [anon_sym___unsafe_unretained] = ACTIONS(5340), + [anon_sym___unused] = ACTIONS(5340), + [anon_sym___weak] = ACTIONS(5340), + [anon_sym_alignas] = ACTIONS(5340), + [anon_sym__Alignas] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(5340), + [anon_sym_enum] = ACTIONS(5340), + [anon_sym_struct] = ACTIONS(5340), + [anon_sym_union] = ACTIONS(5340), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5340), + [anon_sym___typeof] = ACTIONS(5340), + [anon_sym_typeof] = ACTIONS(5340), + [aux_sym_preproc_undef_token1] = ACTIONS(5340), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5340), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5340), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5340), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5340), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5340), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5340), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5340), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5340), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5340), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5340), + [anon_sym_NS_AVAILABLE] = ACTIONS(5340), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5340), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5340), + [anon_sym_API_AVAILABLE] = ACTIONS(5340), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5340), + [anon_sym_API_DEPRECATED] = ACTIONS(5340), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5340), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5340), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5340), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5340), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5340), + [anon_sym___deprecated_msg] = ACTIONS(5340), + [anon_sym___deprecated_enum_msg] = ACTIONS(5340), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5340), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5340), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5340), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5340), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5340), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5340), + [anon_sym_ATproperty] = ACTIONS(5342), + [anon_sym_BOOL] = ACTIONS(5340), + [anon_sym_IMP] = ACTIONS(5340), + [anon_sym_SEL] = ACTIONS(5340), + [anon_sym_Class] = ACTIONS(5340), + [anon_sym_id] = ACTIONS(5340), + }, + [2172] = { + [aux_sym_method_declaration_repeat2] = STATE(2108), + [sym_identifier] = ACTIONS(5393), + [aux_sym_preproc_def_token1] = ACTIONS(5393), + [aux_sym_preproc_if_token1] = ACTIONS(5393), + [aux_sym_preproc_if_token2] = ACTIONS(5393), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5393), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5393), + [aux_sym_preproc_else_token1] = ACTIONS(5393), + [aux_sym_preproc_elif_token1] = ACTIONS(5393), + [sym_preproc_directive] = ACTIONS(5393), + [anon_sym_DASH] = ACTIONS(5395), + [anon_sym_PLUS] = ACTIONS(5395), + [anon_sym_SEMI] = ACTIONS(5357), + [anon_sym___extension__] = ACTIONS(5393), + [anon_sym_typedef] = ACTIONS(5393), + [anon_sym_extern] = ACTIONS(5393), + [anon_sym___attribute__] = ACTIONS(5393), + [anon_sym___attribute] = ACTIONS(5393), + [anon_sym_noreturn] = ACTIONS(5393), + [anon_sym_LBRACK] = ACTIONS(5395), + [anon_sym___declspec] = ACTIONS(5393), + [anon_sym___cdecl] = ACTIONS(5393), + [anon_sym___clrcall] = ACTIONS(5393), + [anon_sym___stdcall] = ACTIONS(5393), + [anon_sym___fastcall] = ACTIONS(5393), + [anon_sym___thiscall] = ACTIONS(5393), + [anon_sym___vectorcall] = ACTIONS(5393), + [anon_sym_signed] = ACTIONS(5393), + [anon_sym_unsigned] = ACTIONS(5393), + [anon_sym_long] = ACTIONS(5393), + [anon_sym_short] = ACTIONS(5393), + [anon_sym_static] = ACTIONS(5393), + [anon_sym_auto] = ACTIONS(5393), + [anon_sym_register] = ACTIONS(5393), + [anon_sym_inline] = ACTIONS(5393), + [anon_sym___inline] = ACTIONS(5393), + [anon_sym___inline__] = ACTIONS(5393), + [anon_sym___forceinline] = ACTIONS(5393), + [anon_sym_thread_local] = ACTIONS(5393), + [anon_sym___thread] = ACTIONS(5393), + [anon_sym_CG_EXTERN] = ACTIONS(5393), + [anon_sym_CG_INLINE] = ACTIONS(5393), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5393), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5393), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5393), + [anon_sym_IBOutlet] = ACTIONS(5393), + [anon_sym_IBInspectable] = ACTIONS(5393), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5393), + [anon_sym_NS_INLINE] = ACTIONS(5393), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5393), + [anon_sym_OBJC_EXPORT] = ACTIONS(5393), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5393), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5393), + [anon_sym_const] = ACTIONS(5393), + [anon_sym_constexpr] = ACTIONS(5393), + [anon_sym_volatile] = ACTIONS(5393), + [anon_sym_restrict] = ACTIONS(5393), + [anon_sym___restrict__] = ACTIONS(5393), + [anon_sym__Atomic] = ACTIONS(5393), + [anon_sym__Noreturn] = ACTIONS(5393), + [anon_sym__Nonnull] = ACTIONS(5393), + [anon_sym_nullable] = ACTIONS(5393), + [anon_sym__Complex] = ACTIONS(5393), + [anon_sym__Nullable] = ACTIONS(5393), + [anon_sym__Nullable_result] = ACTIONS(5393), + [anon_sym__Null_unspecified] = ACTIONS(5393), + [anon_sym___autoreleasing] = ACTIONS(5393), + [anon_sym___block] = ACTIONS(5393), + [anon_sym___bridge] = ACTIONS(5393), + [anon_sym___bridge_retained] = ACTIONS(5393), + [anon_sym___bridge_transfer] = ACTIONS(5393), + [anon_sym___complex] = ACTIONS(5393), + [anon_sym___const] = ACTIONS(5393), + [anon_sym___imag] = ACTIONS(5393), + [anon_sym___kindof] = ACTIONS(5393), + [anon_sym___nonnull] = ACTIONS(5393), + [anon_sym___nullable] = ACTIONS(5393), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5393), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5393), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5393), + [anon_sym___real] = ACTIONS(5393), + [anon_sym___strong] = ACTIONS(5393), + [anon_sym___unsafe_unretained] = ACTIONS(5393), + [anon_sym___unused] = ACTIONS(5393), + [anon_sym___weak] = ACTIONS(5393), + [anon_sym_alignas] = ACTIONS(5393), + [anon_sym__Alignas] = ACTIONS(5393), + [sym_primitive_type] = ACTIONS(5393), + [anon_sym_enum] = ACTIONS(5393), + [anon_sym_struct] = ACTIONS(5393), + [anon_sym_union] = ACTIONS(5393), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5393), + [anon_sym___typeof] = ACTIONS(5393), + [anon_sym_typeof] = ACTIONS(5393), + [aux_sym_preproc_undef_token1] = ACTIONS(5393), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5393), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5393), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5393), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5393), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5393), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5393), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5393), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5393), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5393), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5393), + [anon_sym_NS_AVAILABLE] = ACTIONS(5393), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5393), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5393), + [anon_sym_API_AVAILABLE] = ACTIONS(5393), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5393), + [anon_sym_API_DEPRECATED] = ACTIONS(5393), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5393), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5393), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5393), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5393), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5393), + [anon_sym___deprecated_msg] = ACTIONS(5393), + [anon_sym___deprecated_enum_msg] = ACTIONS(5393), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5393), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5393), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5393), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5393), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5393), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5393), + [anon_sym_ATproperty] = ACTIONS(5395), + [anon_sym_BOOL] = ACTIONS(5393), + [anon_sym_IMP] = ACTIONS(5393), + [anon_sym_SEL] = ACTIONS(5393), + [anon_sym_Class] = ACTIONS(5393), + [anon_sym_id] = ACTIONS(5393), + }, + [2173] = { + [sym_identifier] = ACTIONS(2828), + [aux_sym_preproc_def_token1] = ACTIONS(2828), + [aux_sym_preproc_if_token1] = ACTIONS(2828), + [aux_sym_preproc_if_token2] = ACTIONS(2828), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2828), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2828), + [aux_sym_preproc_else_token1] = ACTIONS(2828), + [aux_sym_preproc_elif_token1] = ACTIONS(2828), + [sym_preproc_directive] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(2830), + [anon_sym_PLUS] = ACTIONS(2830), + [anon_sym___extension__] = ACTIONS(2828), + [anon_sym_typedef] = ACTIONS(2828), + [anon_sym_extern] = ACTIONS(2828), + [anon_sym___attribute__] = ACTIONS(2828), + [anon_sym___attribute] = ACTIONS(2828), + [anon_sym_noreturn] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym___declspec] = ACTIONS(2828), + [anon_sym___cdecl] = ACTIONS(2828), + [anon_sym___clrcall] = ACTIONS(2828), + [anon_sym___stdcall] = ACTIONS(2828), + [anon_sym___fastcall] = ACTIONS(2828), + [anon_sym___thiscall] = ACTIONS(2828), + [anon_sym___vectorcall] = ACTIONS(2828), + [anon_sym_signed] = ACTIONS(2828), + [anon_sym_unsigned] = ACTIONS(2828), + [anon_sym_long] = ACTIONS(2828), + [anon_sym_short] = ACTIONS(2828), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_auto] = ACTIONS(2828), + [anon_sym_register] = ACTIONS(2828), + [anon_sym_inline] = ACTIONS(2828), + [anon_sym___inline] = ACTIONS(2828), + [anon_sym___inline__] = ACTIONS(2828), + [anon_sym___forceinline] = ACTIONS(2828), + [anon_sym_thread_local] = ACTIONS(2828), + [anon_sym___thread] = ACTIONS(2828), + [anon_sym_CG_EXTERN] = ACTIONS(2828), + [anon_sym_CG_INLINE] = ACTIONS(2828), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2828), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2828), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2828), + [anon_sym_IBOutlet] = ACTIONS(2828), + [anon_sym_IBInspectable] = ACTIONS(2828), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2828), + [anon_sym_NS_INLINE] = ACTIONS(2828), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2828), + [anon_sym_OBJC_EXPORT] = ACTIONS(2828), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2828), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2828), + [anon_sym_const] = ACTIONS(2828), + [anon_sym_constexpr] = ACTIONS(2828), + [anon_sym_volatile] = ACTIONS(2828), + [anon_sym_restrict] = ACTIONS(2828), + [anon_sym___restrict__] = ACTIONS(2828), + [anon_sym__Atomic] = ACTIONS(2828), + [anon_sym__Noreturn] = ACTIONS(2828), + [anon_sym__Nonnull] = ACTIONS(2828), + [anon_sym_nullable] = ACTIONS(2828), + [anon_sym__Complex] = ACTIONS(2828), + [anon_sym__Nullable] = ACTIONS(2828), + [anon_sym__Nullable_result] = ACTIONS(2828), + [anon_sym__Null_unspecified] = ACTIONS(2828), + [anon_sym___autoreleasing] = ACTIONS(2828), + [anon_sym___block] = ACTIONS(2828), + [anon_sym___bridge] = ACTIONS(2828), + [anon_sym___bridge_retained] = ACTIONS(2828), + [anon_sym___bridge_transfer] = ACTIONS(2828), + [anon_sym___complex] = ACTIONS(2828), + [anon_sym___const] = ACTIONS(2828), + [anon_sym___imag] = ACTIONS(2828), + [anon_sym___kindof] = ACTIONS(2828), + [anon_sym___nonnull] = ACTIONS(2828), + [anon_sym___nullable] = ACTIONS(2828), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2828), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2828), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2828), + [anon_sym___real] = ACTIONS(2828), + [anon_sym___strong] = ACTIONS(2828), + [anon_sym___unsafe_unretained] = ACTIONS(2828), + [anon_sym___unused] = ACTIONS(2828), + [anon_sym___weak] = ACTIONS(2828), + [anon_sym_alignas] = ACTIONS(2828), + [anon_sym__Alignas] = ACTIONS(2828), + [sym_primitive_type] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [anon_sym_struct] = ACTIONS(2828), + [anon_sym_union] = ACTIONS(2828), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2828), + [anon_sym___typeof] = ACTIONS(2828), + [anon_sym_typeof] = ACTIONS(2828), + [aux_sym_preproc_undef_token1] = ACTIONS(2828), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2828), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2828), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2828), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2828), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2828), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2828), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2828), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2828), + [anon_sym_NS_AVAILABLE] = ACTIONS(2828), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2828), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_API_AVAILABLE] = ACTIONS(2828), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_API_DEPRECATED] = ACTIONS(2828), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2828), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2828), + [anon_sym___deprecated_msg] = ACTIONS(2828), + [anon_sym___deprecated_enum_msg] = ACTIONS(2828), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2828), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2828), + [anon_sym_ATsynthesize] = ACTIONS(2830), + [anon_sym_ATdynamic] = ACTIONS(2830), + [anon_sym_ATproperty] = ACTIONS(2830), + [anon_sym_BOOL] = ACTIONS(2828), + [anon_sym_IMP] = ACTIONS(2828), + [anon_sym_SEL] = ACTIONS(2828), + [anon_sym_Class] = ACTIONS(2828), + [anon_sym_id] = ACTIONS(2828), + }, + [2174] = { + [aux_sym_method_declaration_repeat2] = STATE(2137), + [sym_identifier] = ACTIONS(5373), + [aux_sym_preproc_def_token1] = ACTIONS(5373), + [aux_sym_preproc_if_token1] = ACTIONS(5373), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5373), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5373), + [sym_preproc_directive] = ACTIONS(5373), + [anon_sym_DASH] = ACTIONS(5375), + [anon_sym_PLUS] = ACTIONS(5375), + [anon_sym_SEMI] = ACTIONS(5344), + [anon_sym___extension__] = ACTIONS(5373), + [anon_sym_typedef] = ACTIONS(5373), + [anon_sym_extern] = ACTIONS(5373), + [anon_sym___attribute__] = ACTIONS(5373), + [anon_sym___attribute] = ACTIONS(5373), + [anon_sym_noreturn] = ACTIONS(5373), + [anon_sym_LBRACK] = ACTIONS(5375), + [anon_sym___declspec] = ACTIONS(5373), + [anon_sym___cdecl] = ACTIONS(5373), + [anon_sym___clrcall] = ACTIONS(5373), + [anon_sym___stdcall] = ACTIONS(5373), + [anon_sym___fastcall] = ACTIONS(5373), + [anon_sym___thiscall] = ACTIONS(5373), + [anon_sym___vectorcall] = ACTIONS(5373), + [anon_sym_signed] = ACTIONS(5373), + [anon_sym_unsigned] = ACTIONS(5373), + [anon_sym_long] = ACTIONS(5373), + [anon_sym_short] = ACTIONS(5373), + [anon_sym_static] = ACTIONS(5373), + [anon_sym_auto] = ACTIONS(5373), + [anon_sym_register] = ACTIONS(5373), + [anon_sym_inline] = ACTIONS(5373), + [anon_sym___inline] = ACTIONS(5373), + [anon_sym___inline__] = ACTIONS(5373), + [anon_sym___forceinline] = ACTIONS(5373), + [anon_sym_thread_local] = ACTIONS(5373), + [anon_sym___thread] = ACTIONS(5373), + [anon_sym_CG_EXTERN] = ACTIONS(5373), + [anon_sym_CG_INLINE] = ACTIONS(5373), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5373), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5373), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5373), + [anon_sym_IBOutlet] = ACTIONS(5373), + [anon_sym_IBInspectable] = ACTIONS(5373), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5373), + [anon_sym_NS_INLINE] = ACTIONS(5373), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5373), + [anon_sym_OBJC_EXPORT] = ACTIONS(5373), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5373), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5373), + [anon_sym_const] = ACTIONS(5373), + [anon_sym_constexpr] = ACTIONS(5373), + [anon_sym_volatile] = ACTIONS(5373), + [anon_sym_restrict] = ACTIONS(5373), + [anon_sym___restrict__] = ACTIONS(5373), + [anon_sym__Atomic] = ACTIONS(5373), + [anon_sym__Noreturn] = ACTIONS(5373), + [anon_sym__Nonnull] = ACTIONS(5373), + [anon_sym_nullable] = ACTIONS(5373), + [anon_sym__Complex] = ACTIONS(5373), + [anon_sym__Nullable] = ACTIONS(5373), + [anon_sym__Nullable_result] = ACTIONS(5373), + [anon_sym__Null_unspecified] = ACTIONS(5373), + [anon_sym___autoreleasing] = ACTIONS(5373), + [anon_sym___block] = ACTIONS(5373), + [anon_sym___bridge] = ACTIONS(5373), + [anon_sym___bridge_retained] = ACTIONS(5373), + [anon_sym___bridge_transfer] = ACTIONS(5373), + [anon_sym___complex] = ACTIONS(5373), + [anon_sym___const] = ACTIONS(5373), + [anon_sym___imag] = ACTIONS(5373), + [anon_sym___kindof] = ACTIONS(5373), + [anon_sym___nonnull] = ACTIONS(5373), + [anon_sym___nullable] = ACTIONS(5373), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5373), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5373), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5373), + [anon_sym___real] = ACTIONS(5373), + [anon_sym___strong] = ACTIONS(5373), + [anon_sym___unsafe_unretained] = ACTIONS(5373), + [anon_sym___unused] = ACTIONS(5373), + [anon_sym___weak] = ACTIONS(5373), + [anon_sym_alignas] = ACTIONS(5373), + [anon_sym__Alignas] = ACTIONS(5373), + [sym_primitive_type] = ACTIONS(5373), + [anon_sym_enum] = ACTIONS(5373), + [anon_sym_struct] = ACTIONS(5373), + [anon_sym_union] = ACTIONS(5373), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5373), + [anon_sym___typeof] = ACTIONS(5373), + [anon_sym_typeof] = ACTIONS(5373), + [aux_sym_preproc_undef_token1] = ACTIONS(5373), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5373), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5373), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5373), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5373), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5373), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5373), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5373), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5373), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5373), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5373), + [anon_sym_NS_AVAILABLE] = ACTIONS(5373), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5373), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5373), + [anon_sym_API_AVAILABLE] = ACTIONS(5373), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5373), + [anon_sym_API_DEPRECATED] = ACTIONS(5373), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5373), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5373), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5373), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5373), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5373), + [anon_sym___deprecated_msg] = ACTIONS(5373), + [anon_sym___deprecated_enum_msg] = ACTIONS(5373), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5373), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5373), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5373), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5373), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5373), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5373), + [anon_sym_ATend] = ACTIONS(5375), + [anon_sym_AToptional] = ACTIONS(5375), + [anon_sym_ATrequired] = ACTIONS(5375), + [anon_sym_ATproperty] = ACTIONS(5375), + [anon_sym_BOOL] = ACTIONS(5373), + [anon_sym_IMP] = ACTIONS(5373), + [anon_sym_SEL] = ACTIONS(5373), + [anon_sym_Class] = ACTIONS(5373), + [anon_sym_id] = ACTIONS(5373), + }, + [2175] = { + [sym_identifier] = ACTIONS(2752), + [aux_sym_preproc_def_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token2] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2752), + [aux_sym_preproc_else_token1] = ACTIONS(2752), + [aux_sym_preproc_elif_token1] = ACTIONS(2752), + [sym_preproc_directive] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_PLUS] = ACTIONS(2754), + [anon_sym___extension__] = ACTIONS(2752), + [anon_sym_typedef] = ACTIONS(2752), + [anon_sym_extern] = ACTIONS(2752), + [anon_sym___attribute__] = ACTIONS(2752), + [anon_sym___attribute] = ACTIONS(2752), + [anon_sym_noreturn] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym___declspec] = ACTIONS(2752), + [anon_sym___cdecl] = ACTIONS(2752), + [anon_sym___clrcall] = ACTIONS(2752), + [anon_sym___stdcall] = ACTIONS(2752), + [anon_sym___fastcall] = ACTIONS(2752), + [anon_sym___thiscall] = ACTIONS(2752), + [anon_sym___vectorcall] = ACTIONS(2752), + [anon_sym_signed] = ACTIONS(2752), + [anon_sym_unsigned] = ACTIONS(2752), + [anon_sym_long] = ACTIONS(2752), + [anon_sym_short] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_auto] = ACTIONS(2752), + [anon_sym_register] = ACTIONS(2752), + [anon_sym_inline] = ACTIONS(2752), + [anon_sym___inline] = ACTIONS(2752), + [anon_sym___inline__] = ACTIONS(2752), + [anon_sym___forceinline] = ACTIONS(2752), + [anon_sym_thread_local] = ACTIONS(2752), + [anon_sym___thread] = ACTIONS(2752), + [anon_sym_CG_EXTERN] = ACTIONS(2752), + [anon_sym_CG_INLINE] = ACTIONS(2752), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2752), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2752), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2752), + [anon_sym_IBOutlet] = ACTIONS(2752), + [anon_sym_IBInspectable] = ACTIONS(2752), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2752), + [anon_sym_NS_INLINE] = ACTIONS(2752), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2752), + [anon_sym_OBJC_EXPORT] = ACTIONS(2752), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2752), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2752), + [anon_sym_const] = ACTIONS(2752), + [anon_sym_constexpr] = ACTIONS(2752), + [anon_sym_volatile] = ACTIONS(2752), + [anon_sym_restrict] = ACTIONS(2752), + [anon_sym___restrict__] = ACTIONS(2752), + [anon_sym__Atomic] = ACTIONS(2752), + [anon_sym__Noreturn] = ACTIONS(2752), + [anon_sym__Nonnull] = ACTIONS(2752), + [anon_sym_nullable] = ACTIONS(2752), + [anon_sym__Complex] = ACTIONS(2752), + [anon_sym__Nullable] = ACTIONS(2752), + [anon_sym__Nullable_result] = ACTIONS(2752), + [anon_sym__Null_unspecified] = ACTIONS(2752), + [anon_sym___autoreleasing] = ACTIONS(2752), + [anon_sym___block] = ACTIONS(2752), + [anon_sym___bridge] = ACTIONS(2752), + [anon_sym___bridge_retained] = ACTIONS(2752), + [anon_sym___bridge_transfer] = ACTIONS(2752), + [anon_sym___complex] = ACTIONS(2752), + [anon_sym___const] = ACTIONS(2752), + [anon_sym___imag] = ACTIONS(2752), + [anon_sym___kindof] = ACTIONS(2752), + [anon_sym___nonnull] = ACTIONS(2752), + [anon_sym___nullable] = ACTIONS(2752), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2752), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2752), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2752), + [anon_sym___real] = ACTIONS(2752), + [anon_sym___strong] = ACTIONS(2752), + [anon_sym___unsafe_unretained] = ACTIONS(2752), + [anon_sym___unused] = ACTIONS(2752), + [anon_sym___weak] = ACTIONS(2752), + [anon_sym_alignas] = ACTIONS(2752), + [anon_sym__Alignas] = ACTIONS(2752), + [sym_primitive_type] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2752), + [anon_sym_union] = ACTIONS(2752), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2752), + [anon_sym___typeof] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(2752), + [aux_sym_preproc_undef_token1] = ACTIONS(2752), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2752), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2752), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2752), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2752), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2752), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2752), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2752), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2752), + [anon_sym_NS_AVAILABLE] = ACTIONS(2752), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2752), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_API_AVAILABLE] = ACTIONS(2752), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_API_DEPRECATED] = ACTIONS(2752), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2752), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2752), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2752), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2752), + [anon_sym___deprecated_msg] = ACTIONS(2752), + [anon_sym___deprecated_enum_msg] = ACTIONS(2752), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2752), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2752), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2752), + [anon_sym_ATsynthesize] = ACTIONS(2754), + [anon_sym_ATdynamic] = ACTIONS(2754), + [anon_sym_ATproperty] = ACTIONS(2754), + [anon_sym_BOOL] = ACTIONS(2752), + [anon_sym_IMP] = ACTIONS(2752), + [anon_sym_SEL] = ACTIONS(2752), + [anon_sym_Class] = ACTIONS(2752), + [anon_sym_id] = ACTIONS(2752), + }, + [2176] = { + [sym_identifier] = ACTIONS(5397), + [aux_sym_preproc_def_token1] = ACTIONS(5397), + [aux_sym_preproc_if_token1] = ACTIONS(5397), + [aux_sym_preproc_if_token2] = ACTIONS(5397), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5397), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5397), + [aux_sym_preproc_else_token1] = ACTIONS(5397), + [aux_sym_preproc_elif_token1] = ACTIONS(5397), + [sym_preproc_directive] = ACTIONS(5397), + [anon_sym_DASH] = ACTIONS(5399), + [anon_sym_PLUS] = ACTIONS(5399), + [anon_sym_SEMI] = ACTIONS(5401), + [anon_sym___extension__] = ACTIONS(5397), + [anon_sym_typedef] = ACTIONS(5397), + [anon_sym_extern] = ACTIONS(5397), + [anon_sym___attribute__] = ACTIONS(5397), + [anon_sym___attribute] = ACTIONS(5397), + [anon_sym_noreturn] = ACTIONS(5397), + [anon_sym_LBRACK] = ACTIONS(5399), + [anon_sym___declspec] = ACTIONS(5397), + [anon_sym___cdecl] = ACTIONS(5397), + [anon_sym___clrcall] = ACTIONS(5397), + [anon_sym___stdcall] = ACTIONS(5397), + [anon_sym___fastcall] = ACTIONS(5397), + [anon_sym___thiscall] = ACTIONS(5397), + [anon_sym___vectorcall] = ACTIONS(5397), + [anon_sym_signed] = ACTIONS(5397), + [anon_sym_unsigned] = ACTIONS(5397), + [anon_sym_long] = ACTIONS(5397), + [anon_sym_short] = ACTIONS(5397), + [anon_sym_static] = ACTIONS(5397), + [anon_sym_auto] = ACTIONS(5397), + [anon_sym_register] = ACTIONS(5397), + [anon_sym_inline] = ACTIONS(5397), + [anon_sym___inline] = ACTIONS(5397), + [anon_sym___inline__] = ACTIONS(5397), + [anon_sym___forceinline] = ACTIONS(5397), + [anon_sym_thread_local] = ACTIONS(5397), + [anon_sym___thread] = ACTIONS(5397), + [anon_sym_CG_EXTERN] = ACTIONS(5397), + [anon_sym_CG_INLINE] = ACTIONS(5397), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5397), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5397), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5397), + [anon_sym_IBOutlet] = ACTIONS(5397), + [anon_sym_IBInspectable] = ACTIONS(5397), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5397), + [anon_sym_NS_INLINE] = ACTIONS(5397), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5397), + [anon_sym_OBJC_EXPORT] = ACTIONS(5397), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5397), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5397), + [anon_sym_const] = ACTIONS(5397), + [anon_sym_constexpr] = ACTIONS(5397), + [anon_sym_volatile] = ACTIONS(5397), + [anon_sym_restrict] = ACTIONS(5397), + [anon_sym___restrict__] = ACTIONS(5397), + [anon_sym__Atomic] = ACTIONS(5397), + [anon_sym__Noreturn] = ACTIONS(5397), + [anon_sym__Nonnull] = ACTIONS(5397), + [anon_sym_nullable] = ACTIONS(5397), + [anon_sym__Complex] = ACTIONS(5397), + [anon_sym__Nullable] = ACTIONS(5397), + [anon_sym__Nullable_result] = ACTIONS(5397), + [anon_sym__Null_unspecified] = ACTIONS(5397), + [anon_sym___autoreleasing] = ACTIONS(5397), + [anon_sym___block] = ACTIONS(5397), + [anon_sym___bridge] = ACTIONS(5397), + [anon_sym___bridge_retained] = ACTIONS(5397), + [anon_sym___bridge_transfer] = ACTIONS(5397), + [anon_sym___complex] = ACTIONS(5397), + [anon_sym___const] = ACTIONS(5397), + [anon_sym___imag] = ACTIONS(5397), + [anon_sym___kindof] = ACTIONS(5397), + [anon_sym___nonnull] = ACTIONS(5397), + [anon_sym___nullable] = ACTIONS(5397), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5397), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5397), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5397), + [anon_sym___real] = ACTIONS(5397), + [anon_sym___strong] = ACTIONS(5397), + [anon_sym___unsafe_unretained] = ACTIONS(5397), + [anon_sym___unused] = ACTIONS(5397), + [anon_sym___weak] = ACTIONS(5397), + [anon_sym_alignas] = ACTIONS(5397), + [anon_sym__Alignas] = ACTIONS(5397), + [sym_primitive_type] = ACTIONS(5397), + [anon_sym_enum] = ACTIONS(5397), + [anon_sym_struct] = ACTIONS(5397), + [anon_sym_union] = ACTIONS(5397), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5397), + [anon_sym___typeof] = ACTIONS(5397), + [anon_sym_typeof] = ACTIONS(5397), + [aux_sym_preproc_undef_token1] = ACTIONS(5397), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5397), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5397), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5397), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5397), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5397), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5397), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5397), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5397), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5397), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5397), + [anon_sym_NS_AVAILABLE] = ACTIONS(5397), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5397), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5397), + [anon_sym_API_AVAILABLE] = ACTIONS(5397), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5397), + [anon_sym_API_DEPRECATED] = ACTIONS(5397), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5397), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5397), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5397), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5397), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5397), + [anon_sym___deprecated_msg] = ACTIONS(5397), + [anon_sym___deprecated_enum_msg] = ACTIONS(5397), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5397), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5397), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5397), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5397), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5397), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5397), + [anon_sym_ATsynthesize] = ACTIONS(5399), + [anon_sym_ATdynamic] = ACTIONS(5399), + [anon_sym_BOOL] = ACTIONS(5397), + [anon_sym_IMP] = ACTIONS(5397), + [anon_sym_SEL] = ACTIONS(5397), + [anon_sym_Class] = ACTIONS(5397), + [anon_sym_id] = ACTIONS(5397), + }, + [2177] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4819), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2178] = { + [sym_identifier] = ACTIONS(2744), + [aux_sym_preproc_def_token1] = ACTIONS(2744), + [aux_sym_preproc_if_token1] = ACTIONS(2744), + [aux_sym_preproc_if_token2] = ACTIONS(2744), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2744), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2744), + [aux_sym_preproc_else_token1] = ACTIONS(2744), + [aux_sym_preproc_elif_token1] = ACTIONS(2744), + [sym_preproc_directive] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2746), + [anon_sym_PLUS] = ACTIONS(2746), + [anon_sym___extension__] = ACTIONS(2744), + [anon_sym_typedef] = ACTIONS(2744), + [anon_sym_extern] = ACTIONS(2744), + [anon_sym___attribute__] = ACTIONS(2744), + [anon_sym___attribute] = ACTIONS(2744), + [anon_sym_noreturn] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym___declspec] = ACTIONS(2744), + [anon_sym___cdecl] = ACTIONS(2744), + [anon_sym___clrcall] = ACTIONS(2744), + [anon_sym___stdcall] = ACTIONS(2744), + [anon_sym___fastcall] = ACTIONS(2744), + [anon_sym___thiscall] = ACTIONS(2744), + [anon_sym___vectorcall] = ACTIONS(2744), + [anon_sym_signed] = ACTIONS(2744), + [anon_sym_unsigned] = ACTIONS(2744), + [anon_sym_long] = ACTIONS(2744), + [anon_sym_short] = ACTIONS(2744), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_auto] = ACTIONS(2744), + [anon_sym_register] = ACTIONS(2744), + [anon_sym_inline] = ACTIONS(2744), + [anon_sym___inline] = ACTIONS(2744), + [anon_sym___inline__] = ACTIONS(2744), + [anon_sym___forceinline] = ACTIONS(2744), + [anon_sym_thread_local] = ACTIONS(2744), + [anon_sym___thread] = ACTIONS(2744), + [anon_sym_CG_EXTERN] = ACTIONS(2744), + [anon_sym_CG_INLINE] = ACTIONS(2744), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2744), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2744), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2744), + [anon_sym_IBOutlet] = ACTIONS(2744), + [anon_sym_IBInspectable] = ACTIONS(2744), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2744), + [anon_sym_NS_INLINE] = ACTIONS(2744), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2744), + [anon_sym_OBJC_EXPORT] = ACTIONS(2744), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2744), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2744), + [anon_sym_const] = ACTIONS(2744), + [anon_sym_constexpr] = ACTIONS(2744), + [anon_sym_volatile] = ACTIONS(2744), + [anon_sym_restrict] = ACTIONS(2744), + [anon_sym___restrict__] = ACTIONS(2744), + [anon_sym__Atomic] = ACTIONS(2744), + [anon_sym__Noreturn] = ACTIONS(2744), + [anon_sym__Nonnull] = ACTIONS(2744), + [anon_sym_nullable] = ACTIONS(2744), + [anon_sym__Complex] = ACTIONS(2744), + [anon_sym__Nullable] = ACTIONS(2744), + [anon_sym__Nullable_result] = ACTIONS(2744), + [anon_sym__Null_unspecified] = ACTIONS(2744), + [anon_sym___autoreleasing] = ACTIONS(2744), + [anon_sym___block] = ACTIONS(2744), + [anon_sym___bridge] = ACTIONS(2744), + [anon_sym___bridge_retained] = ACTIONS(2744), + [anon_sym___bridge_transfer] = ACTIONS(2744), + [anon_sym___complex] = ACTIONS(2744), + [anon_sym___const] = ACTIONS(2744), + [anon_sym___imag] = ACTIONS(2744), + [anon_sym___kindof] = ACTIONS(2744), + [anon_sym___nonnull] = ACTIONS(2744), + [anon_sym___nullable] = ACTIONS(2744), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2744), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2744), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2744), + [anon_sym___real] = ACTIONS(2744), + [anon_sym___strong] = ACTIONS(2744), + [anon_sym___unsafe_unretained] = ACTIONS(2744), + [anon_sym___unused] = ACTIONS(2744), + [anon_sym___weak] = ACTIONS(2744), + [anon_sym_alignas] = ACTIONS(2744), + [anon_sym__Alignas] = ACTIONS(2744), + [sym_primitive_type] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), + [anon_sym_struct] = ACTIONS(2744), + [anon_sym_union] = ACTIONS(2744), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2744), + [anon_sym___typeof] = ACTIONS(2744), + [anon_sym_typeof] = ACTIONS(2744), + [aux_sym_preproc_undef_token1] = ACTIONS(2744), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2744), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2744), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2744), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2744), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2744), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2744), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2744), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2744), + [anon_sym_NS_AVAILABLE] = ACTIONS(2744), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2744), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_API_AVAILABLE] = ACTIONS(2744), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_API_DEPRECATED] = ACTIONS(2744), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2744), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2744), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2744), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2744), + [anon_sym___deprecated_msg] = ACTIONS(2744), + [anon_sym___deprecated_enum_msg] = ACTIONS(2744), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2744), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2744), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2744), + [anon_sym_ATsynthesize] = ACTIONS(2746), + [anon_sym_ATdynamic] = ACTIONS(2746), + [anon_sym_ATproperty] = ACTIONS(2746), + [anon_sym_BOOL] = ACTIONS(2744), + [anon_sym_IMP] = ACTIONS(2744), + [anon_sym_SEL] = ACTIONS(2744), + [anon_sym_Class] = ACTIONS(2744), + [anon_sym_id] = ACTIONS(2744), + }, + [2179] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4839), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2180] = { + [aux_sym_method_declaration_repeat2] = STATE(2108), + [sym_identifier] = ACTIONS(5363), + [aux_sym_preproc_def_token1] = ACTIONS(5363), + [aux_sym_preproc_if_token1] = ACTIONS(5363), + [aux_sym_preproc_if_token2] = ACTIONS(5363), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5363), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5363), + [aux_sym_preproc_else_token1] = ACTIONS(5363), + [aux_sym_preproc_elif_token1] = ACTIONS(5363), + [sym_preproc_directive] = ACTIONS(5363), + [anon_sym_DASH] = ACTIONS(5365), + [anon_sym_PLUS] = ACTIONS(5365), + [anon_sym_SEMI] = ACTIONS(5357), + [anon_sym___extension__] = ACTIONS(5363), + [anon_sym_typedef] = ACTIONS(5363), + [anon_sym_extern] = ACTIONS(5363), + [anon_sym___attribute__] = ACTIONS(5363), + [anon_sym___attribute] = ACTIONS(5363), + [anon_sym_noreturn] = ACTIONS(5363), + [anon_sym_LBRACK] = ACTIONS(5365), + [anon_sym___declspec] = ACTIONS(5363), + [anon_sym___cdecl] = ACTIONS(5363), + [anon_sym___clrcall] = ACTIONS(5363), + [anon_sym___stdcall] = ACTIONS(5363), + [anon_sym___fastcall] = ACTIONS(5363), + [anon_sym___thiscall] = ACTIONS(5363), + [anon_sym___vectorcall] = ACTIONS(5363), + [anon_sym_signed] = ACTIONS(5363), + [anon_sym_unsigned] = ACTIONS(5363), + [anon_sym_long] = ACTIONS(5363), + [anon_sym_short] = ACTIONS(5363), + [anon_sym_static] = ACTIONS(5363), + [anon_sym_auto] = ACTIONS(5363), + [anon_sym_register] = ACTIONS(5363), + [anon_sym_inline] = ACTIONS(5363), + [anon_sym___inline] = ACTIONS(5363), + [anon_sym___inline__] = ACTIONS(5363), + [anon_sym___forceinline] = ACTIONS(5363), + [anon_sym_thread_local] = ACTIONS(5363), + [anon_sym___thread] = ACTIONS(5363), + [anon_sym_CG_EXTERN] = ACTIONS(5363), + [anon_sym_CG_INLINE] = ACTIONS(5363), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5363), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5363), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5363), + [anon_sym_IBOutlet] = ACTIONS(5363), + [anon_sym_IBInspectable] = ACTIONS(5363), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5363), + [anon_sym_NS_INLINE] = ACTIONS(5363), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5363), + [anon_sym_OBJC_EXPORT] = ACTIONS(5363), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5363), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5363), + [anon_sym_const] = ACTIONS(5363), + [anon_sym_constexpr] = ACTIONS(5363), + [anon_sym_volatile] = ACTIONS(5363), + [anon_sym_restrict] = ACTIONS(5363), + [anon_sym___restrict__] = ACTIONS(5363), + [anon_sym__Atomic] = ACTIONS(5363), + [anon_sym__Noreturn] = ACTIONS(5363), + [anon_sym__Nonnull] = ACTIONS(5363), + [anon_sym_nullable] = ACTIONS(5363), + [anon_sym__Complex] = ACTIONS(5363), + [anon_sym__Nullable] = ACTIONS(5363), + [anon_sym__Nullable_result] = ACTIONS(5363), + [anon_sym__Null_unspecified] = ACTIONS(5363), + [anon_sym___autoreleasing] = ACTIONS(5363), + [anon_sym___block] = ACTIONS(5363), + [anon_sym___bridge] = ACTIONS(5363), + [anon_sym___bridge_retained] = ACTIONS(5363), + [anon_sym___bridge_transfer] = ACTIONS(5363), + [anon_sym___complex] = ACTIONS(5363), + [anon_sym___const] = ACTIONS(5363), + [anon_sym___imag] = ACTIONS(5363), + [anon_sym___kindof] = ACTIONS(5363), + [anon_sym___nonnull] = ACTIONS(5363), + [anon_sym___nullable] = ACTIONS(5363), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5363), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5363), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5363), + [anon_sym___real] = ACTIONS(5363), + [anon_sym___strong] = ACTIONS(5363), + [anon_sym___unsafe_unretained] = ACTIONS(5363), + [anon_sym___unused] = ACTIONS(5363), + [anon_sym___weak] = ACTIONS(5363), + [anon_sym_alignas] = ACTIONS(5363), + [anon_sym__Alignas] = ACTIONS(5363), + [sym_primitive_type] = ACTIONS(5363), + [anon_sym_enum] = ACTIONS(5363), + [anon_sym_struct] = ACTIONS(5363), + [anon_sym_union] = ACTIONS(5363), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5363), + [anon_sym___typeof] = ACTIONS(5363), + [anon_sym_typeof] = ACTIONS(5363), + [aux_sym_preproc_undef_token1] = ACTIONS(5363), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5363), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5363), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5363), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5363), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5363), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5363), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5363), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5363), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5363), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5363), + [anon_sym_NS_AVAILABLE] = ACTIONS(5363), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5363), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5363), + [anon_sym_API_AVAILABLE] = ACTIONS(5363), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5363), + [anon_sym_API_DEPRECATED] = ACTIONS(5363), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5363), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5363), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5363), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5363), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5363), + [anon_sym___deprecated_msg] = ACTIONS(5363), + [anon_sym___deprecated_enum_msg] = ACTIONS(5363), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5363), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5363), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5363), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5363), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5363), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5363), + [anon_sym_ATproperty] = ACTIONS(5365), + [anon_sym_BOOL] = ACTIONS(5363), + [anon_sym_IMP] = ACTIONS(5363), + [anon_sym_SEL] = ACTIONS(5363), + [anon_sym_Class] = ACTIONS(5363), + [anon_sym_id] = ACTIONS(5363), + }, + [2181] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4830), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2182] = { + [sym_identifier] = ACTIONS(2576), + [aux_sym_preproc_def_token1] = ACTIONS(2576), + [aux_sym_preproc_if_token1] = ACTIONS(2576), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2576), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2576), + [sym_preproc_directive] = ACTIONS(2576), + [anon_sym_DASH] = ACTIONS(2578), + [anon_sym_PLUS] = ACTIONS(2578), + [anon_sym___extension__] = ACTIONS(2576), + [anon_sym_typedef] = ACTIONS(2576), + [anon_sym_extern] = ACTIONS(2576), + [anon_sym___attribute__] = ACTIONS(2576), + [anon_sym___attribute] = ACTIONS(2576), + [anon_sym_noreturn] = ACTIONS(2576), + [anon_sym_LBRACK] = ACTIONS(2578), + [anon_sym___declspec] = ACTIONS(2576), + [anon_sym___cdecl] = ACTIONS(2576), + [anon_sym___clrcall] = ACTIONS(2576), + [anon_sym___stdcall] = ACTIONS(2576), + [anon_sym___fastcall] = ACTIONS(2576), + [anon_sym___thiscall] = ACTIONS(2576), + [anon_sym___vectorcall] = ACTIONS(2576), + [anon_sym_signed] = ACTIONS(2576), + [anon_sym_unsigned] = ACTIONS(2576), + [anon_sym_long] = ACTIONS(2576), + [anon_sym_short] = ACTIONS(2576), + [anon_sym_static] = ACTIONS(2576), + [anon_sym_auto] = ACTIONS(2576), + [anon_sym_register] = ACTIONS(2576), + [anon_sym_inline] = ACTIONS(2576), + [anon_sym___inline] = ACTIONS(2576), + [anon_sym___inline__] = ACTIONS(2576), + [anon_sym___forceinline] = ACTIONS(2576), + [anon_sym_thread_local] = ACTIONS(2576), + [anon_sym___thread] = ACTIONS(2576), + [anon_sym_CG_EXTERN] = ACTIONS(2576), + [anon_sym_CG_INLINE] = ACTIONS(2576), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2576), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2576), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2576), + [anon_sym_IBOutlet] = ACTIONS(2576), + [anon_sym_IBInspectable] = ACTIONS(2576), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2576), + [anon_sym_NS_INLINE] = ACTIONS(2576), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2576), + [anon_sym_OBJC_EXPORT] = ACTIONS(2576), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2576), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2576), + [anon_sym_const] = ACTIONS(2576), + [anon_sym_constexpr] = ACTIONS(2576), + [anon_sym_volatile] = ACTIONS(2576), + [anon_sym_restrict] = ACTIONS(2576), + [anon_sym___restrict__] = ACTIONS(2576), + [anon_sym__Atomic] = ACTIONS(2576), + [anon_sym__Noreturn] = ACTIONS(2576), + [anon_sym__Nonnull] = ACTIONS(2576), + [anon_sym_nullable] = ACTIONS(2576), + [anon_sym__Complex] = ACTIONS(2576), + [anon_sym__Nullable] = ACTIONS(2576), + [anon_sym__Nullable_result] = ACTIONS(2576), + [anon_sym__Null_unspecified] = ACTIONS(2576), + [anon_sym___autoreleasing] = ACTIONS(2576), + [anon_sym___block] = ACTIONS(2576), + [anon_sym___bridge] = ACTIONS(2576), + [anon_sym___bridge_retained] = ACTIONS(2576), + [anon_sym___bridge_transfer] = ACTIONS(2576), + [anon_sym___complex] = ACTIONS(2576), + [anon_sym___const] = ACTIONS(2576), + [anon_sym___imag] = ACTIONS(2576), + [anon_sym___kindof] = ACTIONS(2576), + [anon_sym___nonnull] = ACTIONS(2576), + [anon_sym___nullable] = ACTIONS(2576), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2576), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2576), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2576), + [anon_sym___real] = ACTIONS(2576), + [anon_sym___strong] = ACTIONS(2576), + [anon_sym___unsafe_unretained] = ACTIONS(2576), + [anon_sym___unused] = ACTIONS(2576), + [anon_sym___weak] = ACTIONS(2576), + [anon_sym_alignas] = ACTIONS(2576), + [anon_sym__Alignas] = ACTIONS(2576), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2576), + [anon_sym_struct] = ACTIONS(2576), + [anon_sym_union] = ACTIONS(2576), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2576), + [anon_sym___typeof] = ACTIONS(2576), + [anon_sym_typeof] = ACTIONS(2576), + [aux_sym_preproc_undef_token1] = ACTIONS(2576), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2576), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2576), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2576), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2576), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2576), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2576), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2576), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2576), + [anon_sym_NS_AVAILABLE] = ACTIONS(2576), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2576), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_API_AVAILABLE] = ACTIONS(2576), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_API_DEPRECATED] = ACTIONS(2576), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2576), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2576), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2576), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2576), + [anon_sym___deprecated_msg] = ACTIONS(2576), + [anon_sym___deprecated_enum_msg] = ACTIONS(2576), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2576), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2576), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2576), + [anon_sym_ATend] = ACTIONS(2578), + [anon_sym_AToptional] = ACTIONS(2578), + [anon_sym_ATrequired] = ACTIONS(2578), + [anon_sym_ATsynthesize] = ACTIONS(2578), + [anon_sym_ATdynamic] = ACTIONS(2578), + [anon_sym_ATproperty] = ACTIONS(2578), + [anon_sym_BOOL] = ACTIONS(2576), + [anon_sym_IMP] = ACTIONS(2576), + [anon_sym_SEL] = ACTIONS(2576), + [anon_sym_Class] = ACTIONS(2576), + [anon_sym_id] = ACTIONS(2576), + }, + [2183] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4838), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2184] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token2] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [aux_sym_preproc_else_token1] = ACTIONS(2436), + [aux_sym_preproc_elif_token1] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_PLUS] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATsynthesize] = ACTIONS(2438), + [anon_sym_ATdynamic] = ACTIONS(2438), + [anon_sym_ATproperty] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [2185] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4833), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2186] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4825), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2187] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4837), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2188] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4840), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2189] = { + [sym_identifier] = ACTIONS(5403), + [aux_sym_preproc_def_token1] = ACTIONS(5403), + [aux_sym_preproc_if_token1] = ACTIONS(5403), + [aux_sym_preproc_if_token2] = ACTIONS(5403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5403), + [aux_sym_preproc_else_token1] = ACTIONS(5403), + [aux_sym_preproc_elif_token1] = ACTIONS(5403), + [sym_preproc_directive] = ACTIONS(5403), + [anon_sym_DASH] = ACTIONS(5405), + [anon_sym_PLUS] = ACTIONS(5405), + [anon_sym_SEMI] = ACTIONS(5407), + [anon_sym___extension__] = ACTIONS(5403), + [anon_sym_typedef] = ACTIONS(5403), + [anon_sym_extern] = ACTIONS(5403), + [anon_sym___attribute__] = ACTIONS(5403), + [anon_sym___attribute] = ACTIONS(5403), + [anon_sym_noreturn] = ACTIONS(5403), + [anon_sym_LBRACK] = ACTIONS(5405), + [anon_sym___declspec] = ACTIONS(5403), + [anon_sym___cdecl] = ACTIONS(5403), + [anon_sym___clrcall] = ACTIONS(5403), + [anon_sym___stdcall] = ACTIONS(5403), + [anon_sym___fastcall] = ACTIONS(5403), + [anon_sym___thiscall] = ACTIONS(5403), + [anon_sym___vectorcall] = ACTIONS(5403), + [anon_sym_signed] = ACTIONS(5403), + [anon_sym_unsigned] = ACTIONS(5403), + [anon_sym_long] = ACTIONS(5403), + [anon_sym_short] = ACTIONS(5403), + [anon_sym_static] = ACTIONS(5403), + [anon_sym_auto] = ACTIONS(5403), + [anon_sym_register] = ACTIONS(5403), + [anon_sym_inline] = ACTIONS(5403), + [anon_sym___inline] = ACTIONS(5403), + [anon_sym___inline__] = ACTIONS(5403), + [anon_sym___forceinline] = ACTIONS(5403), + [anon_sym_thread_local] = ACTIONS(5403), + [anon_sym___thread] = ACTIONS(5403), + [anon_sym_CG_EXTERN] = ACTIONS(5403), + [anon_sym_CG_INLINE] = ACTIONS(5403), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5403), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5403), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5403), + [anon_sym_IBOutlet] = ACTIONS(5403), + [anon_sym_IBInspectable] = ACTIONS(5403), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5403), + [anon_sym_NS_INLINE] = ACTIONS(5403), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5403), + [anon_sym_OBJC_EXPORT] = ACTIONS(5403), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5403), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5403), + [anon_sym_const] = ACTIONS(5403), + [anon_sym_constexpr] = ACTIONS(5403), + [anon_sym_volatile] = ACTIONS(5403), + [anon_sym_restrict] = ACTIONS(5403), + [anon_sym___restrict__] = ACTIONS(5403), + [anon_sym__Atomic] = ACTIONS(5403), + [anon_sym__Noreturn] = ACTIONS(5403), + [anon_sym__Nonnull] = ACTIONS(5403), + [anon_sym_nullable] = ACTIONS(5403), + [anon_sym__Complex] = ACTIONS(5403), + [anon_sym__Nullable] = ACTIONS(5403), + [anon_sym__Nullable_result] = ACTIONS(5403), + [anon_sym__Null_unspecified] = ACTIONS(5403), + [anon_sym___autoreleasing] = ACTIONS(5403), + [anon_sym___block] = ACTIONS(5403), + [anon_sym___bridge] = ACTIONS(5403), + [anon_sym___bridge_retained] = ACTIONS(5403), + [anon_sym___bridge_transfer] = ACTIONS(5403), + [anon_sym___complex] = ACTIONS(5403), + [anon_sym___const] = ACTIONS(5403), + [anon_sym___imag] = ACTIONS(5403), + [anon_sym___kindof] = ACTIONS(5403), + [anon_sym___nonnull] = ACTIONS(5403), + [anon_sym___nullable] = ACTIONS(5403), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5403), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5403), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5403), + [anon_sym___real] = ACTIONS(5403), + [anon_sym___strong] = ACTIONS(5403), + [anon_sym___unsafe_unretained] = ACTIONS(5403), + [anon_sym___unused] = ACTIONS(5403), + [anon_sym___weak] = ACTIONS(5403), + [anon_sym_alignas] = ACTIONS(5403), + [anon_sym__Alignas] = ACTIONS(5403), + [sym_primitive_type] = ACTIONS(5403), + [anon_sym_enum] = ACTIONS(5403), + [anon_sym_struct] = ACTIONS(5403), + [anon_sym_union] = ACTIONS(5403), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5403), + [anon_sym___typeof] = ACTIONS(5403), + [anon_sym_typeof] = ACTIONS(5403), + [aux_sym_preproc_undef_token1] = ACTIONS(5403), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5403), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5403), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5403), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5403), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5403), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5403), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5403), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5403), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5403), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5403), + [anon_sym_NS_AVAILABLE] = ACTIONS(5403), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5403), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5403), + [anon_sym_API_AVAILABLE] = ACTIONS(5403), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5403), + [anon_sym_API_DEPRECATED] = ACTIONS(5403), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5403), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5403), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5403), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5403), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5403), + [anon_sym___deprecated_msg] = ACTIONS(5403), + [anon_sym___deprecated_enum_msg] = ACTIONS(5403), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5403), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5403), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5403), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5403), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5403), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5403), + [anon_sym_ATsynthesize] = ACTIONS(5405), + [anon_sym_ATdynamic] = ACTIONS(5405), + [anon_sym_BOOL] = ACTIONS(5403), + [anon_sym_IMP] = ACTIONS(5403), + [anon_sym_SEL] = ACTIONS(5403), + [anon_sym_Class] = ACTIONS(5403), + [anon_sym_id] = ACTIONS(5403), + }, + [2190] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4842), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2191] = { + [sym__declaration_modifiers] = STATE(2228), + [sym__declaration_specifiers] = STATE(4844), + [sym_attribute_specifier] = STATE(2228), + [sym_attribute_declaration] = STATE(2228), + [sym_ms_declspec_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(2228), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2884), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2228), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2228), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2192] = { + [sym_identifier] = ACTIONS(2616), + [aux_sym_preproc_def_token1] = ACTIONS(2616), + [aux_sym_preproc_if_token1] = ACTIONS(2616), + [aux_sym_preproc_if_token2] = ACTIONS(2616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2616), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2616), + [aux_sym_preproc_else_token1] = ACTIONS(2616), + [aux_sym_preproc_elif_token1] = ACTIONS(2616), + [sym_preproc_directive] = ACTIONS(2616), + [anon_sym_DASH] = ACTIONS(2618), + [anon_sym_PLUS] = ACTIONS(2618), + [anon_sym___extension__] = ACTIONS(2616), + [anon_sym_typedef] = ACTIONS(2616), + [anon_sym_extern] = ACTIONS(2616), + [anon_sym___attribute__] = ACTIONS(2616), + [anon_sym___attribute] = ACTIONS(2616), + [anon_sym_noreturn] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(2618), + [anon_sym___declspec] = ACTIONS(2616), + [anon_sym___cdecl] = ACTIONS(2616), + [anon_sym___clrcall] = ACTIONS(2616), + [anon_sym___stdcall] = ACTIONS(2616), + [anon_sym___fastcall] = ACTIONS(2616), + [anon_sym___thiscall] = ACTIONS(2616), + [anon_sym___vectorcall] = ACTIONS(2616), + [anon_sym_signed] = ACTIONS(2616), + [anon_sym_unsigned] = ACTIONS(2616), + [anon_sym_long] = ACTIONS(2616), + [anon_sym_short] = ACTIONS(2616), + [anon_sym_static] = ACTIONS(2616), + [anon_sym_auto] = ACTIONS(2616), + [anon_sym_register] = ACTIONS(2616), + [anon_sym_inline] = ACTIONS(2616), + [anon_sym___inline] = ACTIONS(2616), + [anon_sym___inline__] = ACTIONS(2616), + [anon_sym___forceinline] = ACTIONS(2616), + [anon_sym_thread_local] = ACTIONS(2616), + [anon_sym___thread] = ACTIONS(2616), + [anon_sym_CG_EXTERN] = ACTIONS(2616), + [anon_sym_CG_INLINE] = ACTIONS(2616), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2616), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2616), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2616), + [anon_sym_IBOutlet] = ACTIONS(2616), + [anon_sym_IBInspectable] = ACTIONS(2616), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2616), + [anon_sym_NS_INLINE] = ACTIONS(2616), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2616), + [anon_sym_OBJC_EXPORT] = ACTIONS(2616), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2616), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2616), + [anon_sym_const] = ACTIONS(2616), + [anon_sym_constexpr] = ACTIONS(2616), + [anon_sym_volatile] = ACTIONS(2616), + [anon_sym_restrict] = ACTIONS(2616), + [anon_sym___restrict__] = ACTIONS(2616), + [anon_sym__Atomic] = ACTIONS(2616), + [anon_sym__Noreturn] = ACTIONS(2616), + [anon_sym__Nonnull] = ACTIONS(2616), + [anon_sym_nullable] = ACTIONS(2616), + [anon_sym__Complex] = ACTIONS(2616), + [anon_sym__Nullable] = ACTIONS(2616), + [anon_sym__Nullable_result] = ACTIONS(2616), + [anon_sym__Null_unspecified] = ACTIONS(2616), + [anon_sym___autoreleasing] = ACTIONS(2616), + [anon_sym___block] = ACTIONS(2616), + [anon_sym___bridge] = ACTIONS(2616), + [anon_sym___bridge_retained] = ACTIONS(2616), + [anon_sym___bridge_transfer] = ACTIONS(2616), + [anon_sym___complex] = ACTIONS(2616), + [anon_sym___const] = ACTIONS(2616), + [anon_sym___imag] = ACTIONS(2616), + [anon_sym___kindof] = ACTIONS(2616), + [anon_sym___nonnull] = ACTIONS(2616), + [anon_sym___nullable] = ACTIONS(2616), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2616), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2616), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2616), + [anon_sym___real] = ACTIONS(2616), + [anon_sym___strong] = ACTIONS(2616), + [anon_sym___unsafe_unretained] = ACTIONS(2616), + [anon_sym___unused] = ACTIONS(2616), + [anon_sym___weak] = ACTIONS(2616), + [anon_sym_alignas] = ACTIONS(2616), + [anon_sym__Alignas] = ACTIONS(2616), + [sym_primitive_type] = ACTIONS(2616), + [anon_sym_enum] = ACTIONS(2616), + [anon_sym_struct] = ACTIONS(2616), + [anon_sym_union] = ACTIONS(2616), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2616), + [anon_sym___typeof] = ACTIONS(2616), + [anon_sym_typeof] = ACTIONS(2616), + [aux_sym_preproc_undef_token1] = ACTIONS(2616), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2616), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2616), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2616), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2616), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2616), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2616), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2616), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2616), + [anon_sym_NS_AVAILABLE] = ACTIONS(2616), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2616), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_API_AVAILABLE] = ACTIONS(2616), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_API_DEPRECATED] = ACTIONS(2616), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2616), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2616), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2616), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2616), + [anon_sym___deprecated_msg] = ACTIONS(2616), + [anon_sym___deprecated_enum_msg] = ACTIONS(2616), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2616), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2616), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2616), + [anon_sym_ATsynthesize] = ACTIONS(2618), + [anon_sym_ATdynamic] = ACTIONS(2618), + [anon_sym_ATproperty] = ACTIONS(2618), + [anon_sym_BOOL] = ACTIONS(2616), + [anon_sym_IMP] = ACTIONS(2616), + [anon_sym_SEL] = ACTIONS(2616), + [anon_sym_Class] = ACTIONS(2616), + [anon_sym_id] = ACTIONS(2616), + }, + [2193] = { + [sym_identifier] = ACTIONS(2868), + [aux_sym_preproc_def_token1] = ACTIONS(2868), + [aux_sym_preproc_if_token1] = ACTIONS(2868), + [aux_sym_preproc_if_token2] = ACTIONS(2868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2868), + [aux_sym_preproc_else_token1] = ACTIONS(2868), + [aux_sym_preproc_elif_token1] = ACTIONS(2868), + [sym_preproc_directive] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym___extension__] = ACTIONS(2868), + [anon_sym_typedef] = ACTIONS(2868), + [anon_sym_extern] = ACTIONS(2868), + [anon_sym___attribute__] = ACTIONS(2868), + [anon_sym___attribute] = ACTIONS(2868), + [anon_sym_noreturn] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2870), + [anon_sym___declspec] = ACTIONS(2868), + [anon_sym___cdecl] = ACTIONS(2868), + [anon_sym___clrcall] = ACTIONS(2868), + [anon_sym___stdcall] = ACTIONS(2868), + [anon_sym___fastcall] = ACTIONS(2868), + [anon_sym___thiscall] = ACTIONS(2868), + [anon_sym___vectorcall] = ACTIONS(2868), + [anon_sym_signed] = ACTIONS(2868), + [anon_sym_unsigned] = ACTIONS(2868), + [anon_sym_long] = ACTIONS(2868), + [anon_sym_short] = ACTIONS(2868), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_auto] = ACTIONS(2868), + [anon_sym_register] = ACTIONS(2868), + [anon_sym_inline] = ACTIONS(2868), + [anon_sym___inline] = ACTIONS(2868), + [anon_sym___inline__] = ACTIONS(2868), + [anon_sym___forceinline] = ACTIONS(2868), + [anon_sym_thread_local] = ACTIONS(2868), + [anon_sym___thread] = ACTIONS(2868), + [anon_sym_CG_EXTERN] = ACTIONS(2868), + [anon_sym_CG_INLINE] = ACTIONS(2868), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2868), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2868), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2868), + [anon_sym_IBOutlet] = ACTIONS(2868), + [anon_sym_IBInspectable] = ACTIONS(2868), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2868), + [anon_sym_NS_INLINE] = ACTIONS(2868), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2868), + [anon_sym_OBJC_EXPORT] = ACTIONS(2868), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2868), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2868), + [anon_sym_const] = ACTIONS(2868), + [anon_sym_constexpr] = ACTIONS(2868), + [anon_sym_volatile] = ACTIONS(2868), + [anon_sym_restrict] = ACTIONS(2868), + [anon_sym___restrict__] = ACTIONS(2868), + [anon_sym__Atomic] = ACTIONS(2868), + [anon_sym__Noreturn] = ACTIONS(2868), + [anon_sym__Nonnull] = ACTIONS(2868), + [anon_sym_nullable] = ACTIONS(2868), + [anon_sym__Complex] = ACTIONS(2868), + [anon_sym__Nullable] = ACTIONS(2868), + [anon_sym__Nullable_result] = ACTIONS(2868), + [anon_sym__Null_unspecified] = ACTIONS(2868), + [anon_sym___autoreleasing] = ACTIONS(2868), + [anon_sym___block] = ACTIONS(2868), + [anon_sym___bridge] = ACTIONS(2868), + [anon_sym___bridge_retained] = ACTIONS(2868), + [anon_sym___bridge_transfer] = ACTIONS(2868), + [anon_sym___complex] = ACTIONS(2868), + [anon_sym___const] = ACTIONS(2868), + [anon_sym___imag] = ACTIONS(2868), + [anon_sym___kindof] = ACTIONS(2868), + [anon_sym___nonnull] = ACTIONS(2868), + [anon_sym___nullable] = ACTIONS(2868), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2868), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2868), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2868), + [anon_sym___real] = ACTIONS(2868), + [anon_sym___strong] = ACTIONS(2868), + [anon_sym___unsafe_unretained] = ACTIONS(2868), + [anon_sym___unused] = ACTIONS(2868), + [anon_sym___weak] = ACTIONS(2868), + [anon_sym_alignas] = ACTIONS(2868), + [anon_sym__Alignas] = ACTIONS(2868), + [sym_primitive_type] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2868), + [anon_sym_union] = ACTIONS(2868), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2868), + [anon_sym___typeof] = ACTIONS(2868), + [anon_sym_typeof] = ACTIONS(2868), + [aux_sym_preproc_undef_token1] = ACTIONS(2868), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2868), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2868), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2868), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2868), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2868), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2868), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2868), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2868), + [anon_sym_NS_AVAILABLE] = ACTIONS(2868), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_API_AVAILABLE] = ACTIONS(2868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_API_DEPRECATED] = ACTIONS(2868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2868), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2868), + [anon_sym___deprecated_msg] = ACTIONS(2868), + [anon_sym___deprecated_enum_msg] = ACTIONS(2868), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2868), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2868), + [anon_sym_ATsynthesize] = ACTIONS(2870), + [anon_sym_ATdynamic] = ACTIONS(2870), + [anon_sym_ATproperty] = ACTIONS(2870), + [anon_sym_BOOL] = ACTIONS(2868), + [anon_sym_IMP] = ACTIONS(2868), + [anon_sym_SEL] = ACTIONS(2868), + [anon_sym_Class] = ACTIONS(2868), + [anon_sym_id] = ACTIONS(2868), + }, + [2194] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(3997), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(3995), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(3995), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(3995), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym___extension__] = ACTIONS(3997), + [anon_sym_extern] = ACTIONS(3997), + [anon_sym___attribute__] = ACTIONS(3997), + [anon_sym___attribute] = ACTIONS(3995), + [anon_sym_noreturn] = ACTIONS(3997), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym___declspec] = ACTIONS(3997), + [anon_sym_static] = ACTIONS(3997), + [anon_sym_EQ] = ACTIONS(4862), + [anon_sym_auto] = ACTIONS(3997), + [anon_sym_register] = ACTIONS(3997), + [anon_sym_inline] = ACTIONS(3997), + [anon_sym___inline] = ACTIONS(3995), + [anon_sym___inline__] = ACTIONS(3997), + [anon_sym___forceinline] = ACTIONS(3997), + [anon_sym_thread_local] = ACTIONS(3997), + [anon_sym___thread] = ACTIONS(3997), + [anon_sym_CG_EXTERN] = ACTIONS(3997), + [anon_sym_CG_INLINE] = ACTIONS(3997), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3997), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3997), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3997), + [anon_sym_IBOutlet] = ACTIONS(3997), + [anon_sym_IBInspectable] = ACTIONS(3997), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3997), + [anon_sym_NS_INLINE] = ACTIONS(3997), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3997), + [anon_sym_OBJC_EXPORT] = ACTIONS(3997), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3997), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3997), + [anon_sym_const] = ACTIONS(3995), + [anon_sym_constexpr] = ACTIONS(3997), + [anon_sym_volatile] = ACTIONS(3997), + [anon_sym_restrict] = ACTIONS(3997), + [anon_sym___restrict__] = ACTIONS(3997), + [anon_sym__Atomic] = ACTIONS(3997), + [anon_sym__Noreturn] = ACTIONS(3997), + [anon_sym__Nonnull] = ACTIONS(3997), + [anon_sym_nullable] = ACTIONS(3997), + [anon_sym__Complex] = ACTIONS(3997), + [anon_sym__Nullable] = ACTIONS(3995), + [anon_sym__Nullable_result] = ACTIONS(3997), + [anon_sym__Null_unspecified] = ACTIONS(3997), + [anon_sym___autoreleasing] = ACTIONS(3997), + [anon_sym___block] = ACTIONS(3997), + [anon_sym___bridge] = ACTIONS(3995), + [anon_sym___bridge_retained] = ACTIONS(3997), + [anon_sym___bridge_transfer] = ACTIONS(3997), + [anon_sym___complex] = ACTIONS(3997), + [anon_sym___const] = ACTIONS(3997), + [anon_sym___imag] = ACTIONS(3997), + [anon_sym___kindof] = ACTIONS(3997), + [anon_sym___nonnull] = ACTIONS(3997), + [anon_sym___nullable] = ACTIONS(3997), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3997), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3997), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3997), + [anon_sym___real] = ACTIONS(3997), + [anon_sym___strong] = ACTIONS(3997), + [anon_sym___unsafe_unretained] = ACTIONS(3997), + [anon_sym___unused] = ACTIONS(3997), + [anon_sym___weak] = ACTIONS(3997), + [anon_sym_alignas] = ACTIONS(3997), + [anon_sym__Alignas] = ACTIONS(3997), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4864), + [anon_sym_SLASH_EQ] = ACTIONS(4864), + [anon_sym_PERCENT_EQ] = ACTIONS(4864), + [anon_sym_PLUS_EQ] = ACTIONS(4864), + [anon_sym_DASH_EQ] = ACTIONS(4864), + [anon_sym_LT_LT_EQ] = ACTIONS(4864), + [anon_sym_GT_GT_EQ] = ACTIONS(4864), + [anon_sym_AMP_EQ] = ACTIONS(4864), + [anon_sym_CARET_EQ] = ACTIONS(4864), + [anon_sym_PIPE_EQ] = ACTIONS(4864), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3997), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3997), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3997), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3997), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3997), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3997), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3997), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3997), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3997), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3997), + [anon_sym_NS_AVAILABLE] = ACTIONS(3995), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3997), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3997), + [anon_sym_API_AVAILABLE] = ACTIONS(3997), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3997), + [anon_sym_API_DEPRECATED] = ACTIONS(3997), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3997), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3997), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3997), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3997), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3997), + [anon_sym___deprecated_msg] = ACTIONS(3997), + [anon_sym___deprecated_enum_msg] = ACTIONS(3997), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3997), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3997), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3997), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3997), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3997), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3997), + }, + [2195] = { + [aux_sym_method_declaration_repeat2] = STATE(2137), + [sym_identifier] = ACTIONS(5393), + [aux_sym_preproc_def_token1] = ACTIONS(5393), + [aux_sym_preproc_if_token1] = ACTIONS(5393), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5393), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5393), + [sym_preproc_directive] = ACTIONS(5393), + [anon_sym_DASH] = ACTIONS(5395), + [anon_sym_PLUS] = ACTIONS(5395), + [anon_sym_SEMI] = ACTIONS(5344), + [anon_sym___extension__] = ACTIONS(5393), + [anon_sym_typedef] = ACTIONS(5393), + [anon_sym_extern] = ACTIONS(5393), + [anon_sym___attribute__] = ACTIONS(5393), + [anon_sym___attribute] = ACTIONS(5393), + [anon_sym_noreturn] = ACTIONS(5393), + [anon_sym_LBRACK] = ACTIONS(5395), + [anon_sym___declspec] = ACTIONS(5393), + [anon_sym___cdecl] = ACTIONS(5393), + [anon_sym___clrcall] = ACTIONS(5393), + [anon_sym___stdcall] = ACTIONS(5393), + [anon_sym___fastcall] = ACTIONS(5393), + [anon_sym___thiscall] = ACTIONS(5393), + [anon_sym___vectorcall] = ACTIONS(5393), + [anon_sym_signed] = ACTIONS(5393), + [anon_sym_unsigned] = ACTIONS(5393), + [anon_sym_long] = ACTIONS(5393), + [anon_sym_short] = ACTIONS(5393), + [anon_sym_static] = ACTIONS(5393), + [anon_sym_auto] = ACTIONS(5393), + [anon_sym_register] = ACTIONS(5393), + [anon_sym_inline] = ACTIONS(5393), + [anon_sym___inline] = ACTIONS(5393), + [anon_sym___inline__] = ACTIONS(5393), + [anon_sym___forceinline] = ACTIONS(5393), + [anon_sym_thread_local] = ACTIONS(5393), + [anon_sym___thread] = ACTIONS(5393), + [anon_sym_CG_EXTERN] = ACTIONS(5393), + [anon_sym_CG_INLINE] = ACTIONS(5393), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5393), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5393), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5393), + [anon_sym_IBOutlet] = ACTIONS(5393), + [anon_sym_IBInspectable] = ACTIONS(5393), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5393), + [anon_sym_NS_INLINE] = ACTIONS(5393), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5393), + [anon_sym_OBJC_EXPORT] = ACTIONS(5393), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5393), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5393), + [anon_sym_const] = ACTIONS(5393), + [anon_sym_constexpr] = ACTIONS(5393), + [anon_sym_volatile] = ACTIONS(5393), + [anon_sym_restrict] = ACTIONS(5393), + [anon_sym___restrict__] = ACTIONS(5393), + [anon_sym__Atomic] = ACTIONS(5393), + [anon_sym__Noreturn] = ACTIONS(5393), + [anon_sym__Nonnull] = ACTIONS(5393), + [anon_sym_nullable] = ACTIONS(5393), + [anon_sym__Complex] = ACTIONS(5393), + [anon_sym__Nullable] = ACTIONS(5393), + [anon_sym__Nullable_result] = ACTIONS(5393), + [anon_sym__Null_unspecified] = ACTIONS(5393), + [anon_sym___autoreleasing] = ACTIONS(5393), + [anon_sym___block] = ACTIONS(5393), + [anon_sym___bridge] = ACTIONS(5393), + [anon_sym___bridge_retained] = ACTIONS(5393), + [anon_sym___bridge_transfer] = ACTIONS(5393), + [anon_sym___complex] = ACTIONS(5393), + [anon_sym___const] = ACTIONS(5393), + [anon_sym___imag] = ACTIONS(5393), + [anon_sym___kindof] = ACTIONS(5393), + [anon_sym___nonnull] = ACTIONS(5393), + [anon_sym___nullable] = ACTIONS(5393), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5393), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5393), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5393), + [anon_sym___real] = ACTIONS(5393), + [anon_sym___strong] = ACTIONS(5393), + [anon_sym___unsafe_unretained] = ACTIONS(5393), + [anon_sym___unused] = ACTIONS(5393), + [anon_sym___weak] = ACTIONS(5393), + [anon_sym_alignas] = ACTIONS(5393), + [anon_sym__Alignas] = ACTIONS(5393), + [sym_primitive_type] = ACTIONS(5393), + [anon_sym_enum] = ACTIONS(5393), + [anon_sym_struct] = ACTIONS(5393), + [anon_sym_union] = ACTIONS(5393), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5393), + [anon_sym___typeof] = ACTIONS(5393), + [anon_sym_typeof] = ACTIONS(5393), + [aux_sym_preproc_undef_token1] = ACTIONS(5393), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5393), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5393), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5393), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5393), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5393), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5393), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5393), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5393), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5393), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5393), + [anon_sym_NS_AVAILABLE] = ACTIONS(5393), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5393), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5393), + [anon_sym_API_AVAILABLE] = ACTIONS(5393), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5393), + [anon_sym_API_DEPRECATED] = ACTIONS(5393), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5393), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5393), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5393), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5393), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5393), + [anon_sym___deprecated_msg] = ACTIONS(5393), + [anon_sym___deprecated_enum_msg] = ACTIONS(5393), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5393), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5393), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5393), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5393), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5393), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5393), + [anon_sym_ATend] = ACTIONS(5395), + [anon_sym_AToptional] = ACTIONS(5395), + [anon_sym_ATrequired] = ACTIONS(5395), + [anon_sym_ATproperty] = ACTIONS(5395), + [anon_sym_BOOL] = ACTIONS(5393), + [anon_sym_IMP] = ACTIONS(5393), + [anon_sym_SEL] = ACTIONS(5393), + [anon_sym_Class] = ACTIONS(5393), + [anon_sym_id] = ACTIONS(5393), + }, + [2196] = { + [sym_identifier] = ACTIONS(5409), + [aux_sym_preproc_def_token1] = ACTIONS(5409), + [aux_sym_preproc_if_token1] = ACTIONS(5409), + [aux_sym_preproc_if_token2] = ACTIONS(5409), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5409), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5409), + [aux_sym_preproc_else_token1] = ACTIONS(5409), + [aux_sym_preproc_elif_token1] = ACTIONS(5409), + [sym_preproc_directive] = ACTIONS(5409), + [anon_sym_DASH] = ACTIONS(5411), + [anon_sym_PLUS] = ACTIONS(5411), + [anon_sym_SEMI] = ACTIONS(5413), + [anon_sym___extension__] = ACTIONS(5409), + [anon_sym_typedef] = ACTIONS(5409), + [anon_sym_extern] = ACTIONS(5409), + [anon_sym___attribute__] = ACTIONS(5409), + [anon_sym___attribute] = ACTIONS(5409), + [anon_sym_noreturn] = ACTIONS(5409), + [anon_sym_LBRACK] = ACTIONS(5411), + [anon_sym___declspec] = ACTIONS(5409), + [anon_sym___cdecl] = ACTIONS(5409), + [anon_sym___clrcall] = ACTIONS(5409), + [anon_sym___stdcall] = ACTIONS(5409), + [anon_sym___fastcall] = ACTIONS(5409), + [anon_sym___thiscall] = ACTIONS(5409), + [anon_sym___vectorcall] = ACTIONS(5409), + [anon_sym_signed] = ACTIONS(5409), + [anon_sym_unsigned] = ACTIONS(5409), + [anon_sym_long] = ACTIONS(5409), + [anon_sym_short] = ACTIONS(5409), + [anon_sym_static] = ACTIONS(5409), + [anon_sym_auto] = ACTIONS(5409), + [anon_sym_register] = ACTIONS(5409), + [anon_sym_inline] = ACTIONS(5409), + [anon_sym___inline] = ACTIONS(5409), + [anon_sym___inline__] = ACTIONS(5409), + [anon_sym___forceinline] = ACTIONS(5409), + [anon_sym_thread_local] = ACTIONS(5409), + [anon_sym___thread] = ACTIONS(5409), + [anon_sym_CG_EXTERN] = ACTIONS(5409), + [anon_sym_CG_INLINE] = ACTIONS(5409), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5409), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5409), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5409), + [anon_sym_IBOutlet] = ACTIONS(5409), + [anon_sym_IBInspectable] = ACTIONS(5409), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5409), + [anon_sym_NS_INLINE] = ACTIONS(5409), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5409), + [anon_sym_OBJC_EXPORT] = ACTIONS(5409), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5409), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5409), + [anon_sym_const] = ACTIONS(5409), + [anon_sym_constexpr] = ACTIONS(5409), + [anon_sym_volatile] = ACTIONS(5409), + [anon_sym_restrict] = ACTIONS(5409), + [anon_sym___restrict__] = ACTIONS(5409), + [anon_sym__Atomic] = ACTIONS(5409), + [anon_sym__Noreturn] = ACTIONS(5409), + [anon_sym__Nonnull] = ACTIONS(5409), + [anon_sym_nullable] = ACTIONS(5409), + [anon_sym__Complex] = ACTIONS(5409), + [anon_sym__Nullable] = ACTIONS(5409), + [anon_sym__Nullable_result] = ACTIONS(5409), + [anon_sym__Null_unspecified] = ACTIONS(5409), + [anon_sym___autoreleasing] = ACTIONS(5409), + [anon_sym___block] = ACTIONS(5409), + [anon_sym___bridge] = ACTIONS(5409), + [anon_sym___bridge_retained] = ACTIONS(5409), + [anon_sym___bridge_transfer] = ACTIONS(5409), + [anon_sym___complex] = ACTIONS(5409), + [anon_sym___const] = ACTIONS(5409), + [anon_sym___imag] = ACTIONS(5409), + [anon_sym___kindof] = ACTIONS(5409), + [anon_sym___nonnull] = ACTIONS(5409), + [anon_sym___nullable] = ACTIONS(5409), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5409), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5409), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5409), + [anon_sym___real] = ACTIONS(5409), + [anon_sym___strong] = ACTIONS(5409), + [anon_sym___unsafe_unretained] = ACTIONS(5409), + [anon_sym___unused] = ACTIONS(5409), + [anon_sym___weak] = ACTIONS(5409), + [anon_sym_alignas] = ACTIONS(5409), + [anon_sym__Alignas] = ACTIONS(5409), + [sym_primitive_type] = ACTIONS(5409), + [anon_sym_enum] = ACTIONS(5409), + [anon_sym_struct] = ACTIONS(5409), + [anon_sym_union] = ACTIONS(5409), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5409), + [anon_sym___typeof] = ACTIONS(5409), + [anon_sym_typeof] = ACTIONS(5409), + [aux_sym_preproc_undef_token1] = ACTIONS(5409), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5409), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5409), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5409), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5409), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5409), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5409), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5409), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5409), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5409), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5409), + [anon_sym_NS_AVAILABLE] = ACTIONS(5409), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5409), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5409), + [anon_sym_API_AVAILABLE] = ACTIONS(5409), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5409), + [anon_sym_API_DEPRECATED] = ACTIONS(5409), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5409), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5409), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5409), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5409), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5409), + [anon_sym___deprecated_msg] = ACTIONS(5409), + [anon_sym___deprecated_enum_msg] = ACTIONS(5409), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5409), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5409), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5409), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5409), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5409), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5409), + [anon_sym_ATsynthesize] = ACTIONS(5411), + [anon_sym_ATdynamic] = ACTIONS(5411), + [anon_sym_BOOL] = ACTIONS(5409), + [anon_sym_IMP] = ACTIONS(5409), + [anon_sym_SEL] = ACTIONS(5409), + [anon_sym_Class] = ACTIONS(5409), + [anon_sym_id] = ACTIONS(5409), + }, + [2197] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token2] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [aux_sym_preproc_else_token1] = ACTIONS(2436), + [aux_sym_preproc_elif_token1] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_PLUS] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATsynthesize] = ACTIONS(2438), + [anon_sym_ATdynamic] = ACTIONS(2438), + [anon_sym_ATproperty] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [2198] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_PLUS] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATend] = ACTIONS(2438), + [anon_sym_AToptional] = ACTIONS(2438), + [anon_sym_ATrequired] = ACTIONS(2438), + [anon_sym_ATsynthesize] = ACTIONS(2438), + [anon_sym_ATdynamic] = ACTIONS(2438), + [anon_sym_ATproperty] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [2199] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token2] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [aux_sym_preproc_else_token1] = ACTIONS(2436), + [aux_sym_preproc_elif_token1] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_PLUS] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATsynthesize] = ACTIONS(2438), + [anon_sym_ATdynamic] = ACTIONS(2438), + [anon_sym_ATproperty] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [2200] = { + [sym_identifier] = ACTIONS(5415), + [aux_sym_preproc_def_token1] = ACTIONS(5415), + [aux_sym_preproc_if_token1] = ACTIONS(5415), + [aux_sym_preproc_if_token2] = ACTIONS(5415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5415), + [aux_sym_preproc_else_token1] = ACTIONS(5415), + [aux_sym_preproc_elif_token1] = ACTIONS(5415), + [sym_preproc_directive] = ACTIONS(5415), + [anon_sym_DASH] = ACTIONS(5417), + [anon_sym_PLUS] = ACTIONS(5417), + [anon_sym_SEMI] = ACTIONS(5419), + [anon_sym___extension__] = ACTIONS(5415), + [anon_sym_typedef] = ACTIONS(5415), + [anon_sym_extern] = ACTIONS(5415), + [anon_sym___attribute__] = ACTIONS(5415), + [anon_sym___attribute] = ACTIONS(5415), + [anon_sym_noreturn] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(5417), + [anon_sym___declspec] = ACTIONS(5415), + [anon_sym___cdecl] = ACTIONS(5415), + [anon_sym___clrcall] = ACTIONS(5415), + [anon_sym___stdcall] = ACTIONS(5415), + [anon_sym___fastcall] = ACTIONS(5415), + [anon_sym___thiscall] = ACTIONS(5415), + [anon_sym___vectorcall] = ACTIONS(5415), + [anon_sym_signed] = ACTIONS(5415), + [anon_sym_unsigned] = ACTIONS(5415), + [anon_sym_long] = ACTIONS(5415), + [anon_sym_short] = ACTIONS(5415), + [anon_sym_static] = ACTIONS(5415), + [anon_sym_auto] = ACTIONS(5415), + [anon_sym_register] = ACTIONS(5415), + [anon_sym_inline] = ACTIONS(5415), + [anon_sym___inline] = ACTIONS(5415), + [anon_sym___inline__] = ACTIONS(5415), + [anon_sym___forceinline] = ACTIONS(5415), + [anon_sym_thread_local] = ACTIONS(5415), + [anon_sym___thread] = ACTIONS(5415), + [anon_sym_CG_EXTERN] = ACTIONS(5415), + [anon_sym_CG_INLINE] = ACTIONS(5415), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5415), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5415), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5415), + [anon_sym_IBOutlet] = ACTIONS(5415), + [anon_sym_IBInspectable] = ACTIONS(5415), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5415), + [anon_sym_NS_INLINE] = ACTIONS(5415), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5415), + [anon_sym_OBJC_EXPORT] = ACTIONS(5415), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5415), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5415), + [anon_sym_const] = ACTIONS(5415), + [anon_sym_constexpr] = ACTIONS(5415), + [anon_sym_volatile] = ACTIONS(5415), + [anon_sym_restrict] = ACTIONS(5415), + [anon_sym___restrict__] = ACTIONS(5415), + [anon_sym__Atomic] = ACTIONS(5415), + [anon_sym__Noreturn] = ACTIONS(5415), + [anon_sym__Nonnull] = ACTIONS(5415), + [anon_sym_nullable] = ACTIONS(5415), + [anon_sym__Complex] = ACTIONS(5415), + [anon_sym__Nullable] = ACTIONS(5415), + [anon_sym__Nullable_result] = ACTIONS(5415), + [anon_sym__Null_unspecified] = ACTIONS(5415), + [anon_sym___autoreleasing] = ACTIONS(5415), + [anon_sym___block] = ACTIONS(5415), + [anon_sym___bridge] = ACTIONS(5415), + [anon_sym___bridge_retained] = ACTIONS(5415), + [anon_sym___bridge_transfer] = ACTIONS(5415), + [anon_sym___complex] = ACTIONS(5415), + [anon_sym___const] = ACTIONS(5415), + [anon_sym___imag] = ACTIONS(5415), + [anon_sym___kindof] = ACTIONS(5415), + [anon_sym___nonnull] = ACTIONS(5415), + [anon_sym___nullable] = ACTIONS(5415), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5415), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5415), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5415), + [anon_sym___real] = ACTIONS(5415), + [anon_sym___strong] = ACTIONS(5415), + [anon_sym___unsafe_unretained] = ACTIONS(5415), + [anon_sym___unused] = ACTIONS(5415), + [anon_sym___weak] = ACTIONS(5415), + [anon_sym_alignas] = ACTIONS(5415), + [anon_sym__Alignas] = ACTIONS(5415), + [sym_primitive_type] = ACTIONS(5415), + [anon_sym_enum] = ACTIONS(5415), + [anon_sym_struct] = ACTIONS(5415), + [anon_sym_union] = ACTIONS(5415), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5415), + [anon_sym___typeof] = ACTIONS(5415), + [anon_sym_typeof] = ACTIONS(5415), + [aux_sym_preproc_undef_token1] = ACTIONS(5415), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5415), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5415), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5415), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5415), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5415), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5415), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5415), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5415), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5415), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5415), + [anon_sym_NS_AVAILABLE] = ACTIONS(5415), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5415), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5415), + [anon_sym_API_AVAILABLE] = ACTIONS(5415), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5415), + [anon_sym_API_DEPRECATED] = ACTIONS(5415), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5415), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5415), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5415), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5415), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5415), + [anon_sym___deprecated_msg] = ACTIONS(5415), + [anon_sym___deprecated_enum_msg] = ACTIONS(5415), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5415), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5415), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5415), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5415), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5415), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5415), + [anon_sym_ATsynthesize] = ACTIONS(5417), + [anon_sym_ATdynamic] = ACTIONS(5417), + [anon_sym_BOOL] = ACTIONS(5415), + [anon_sym_IMP] = ACTIONS(5415), + [anon_sym_SEL] = ACTIONS(5415), + [anon_sym_Class] = ACTIONS(5415), + [anon_sym_id] = ACTIONS(5415), + }, + [2201] = { + [sym_identifier] = ACTIONS(2848), + [aux_sym_preproc_def_token1] = ACTIONS(2848), + [aux_sym_preproc_if_token1] = ACTIONS(2848), + [aux_sym_preproc_if_token2] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2848), + [aux_sym_preproc_else_token1] = ACTIONS(2848), + [aux_sym_preproc_elif_token1] = ACTIONS(2848), + [sym_preproc_directive] = ACTIONS(2848), + [anon_sym_DASH] = ACTIONS(2850), + [anon_sym_PLUS] = ACTIONS(2850), + [anon_sym___extension__] = ACTIONS(2848), + [anon_sym_typedef] = ACTIONS(2848), + [anon_sym_extern] = ACTIONS(2848), + [anon_sym___attribute__] = ACTIONS(2848), + [anon_sym___attribute] = ACTIONS(2848), + [anon_sym_noreturn] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2850), + [anon_sym___declspec] = ACTIONS(2848), + [anon_sym___cdecl] = ACTIONS(2848), + [anon_sym___clrcall] = ACTIONS(2848), + [anon_sym___stdcall] = ACTIONS(2848), + [anon_sym___fastcall] = ACTIONS(2848), + [anon_sym___thiscall] = ACTIONS(2848), + [anon_sym___vectorcall] = ACTIONS(2848), + [anon_sym_signed] = ACTIONS(2848), + [anon_sym_unsigned] = ACTIONS(2848), + [anon_sym_long] = ACTIONS(2848), + [anon_sym_short] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_auto] = ACTIONS(2848), + [anon_sym_register] = ACTIONS(2848), + [anon_sym_inline] = ACTIONS(2848), + [anon_sym___inline] = ACTIONS(2848), + [anon_sym___inline__] = ACTIONS(2848), + [anon_sym___forceinline] = ACTIONS(2848), + [anon_sym_thread_local] = ACTIONS(2848), + [anon_sym___thread] = ACTIONS(2848), + [anon_sym_CG_EXTERN] = ACTIONS(2848), + [anon_sym_CG_INLINE] = ACTIONS(2848), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2848), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2848), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2848), + [anon_sym_IBOutlet] = ACTIONS(2848), + [anon_sym_IBInspectable] = ACTIONS(2848), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2848), + [anon_sym_NS_INLINE] = ACTIONS(2848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2848), + [anon_sym_OBJC_EXPORT] = ACTIONS(2848), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2848), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2848), + [anon_sym_const] = ACTIONS(2848), + [anon_sym_constexpr] = ACTIONS(2848), + [anon_sym_volatile] = ACTIONS(2848), + [anon_sym_restrict] = ACTIONS(2848), + [anon_sym___restrict__] = ACTIONS(2848), + [anon_sym__Atomic] = ACTIONS(2848), + [anon_sym__Noreturn] = ACTIONS(2848), + [anon_sym__Nonnull] = ACTIONS(2848), + [anon_sym_nullable] = ACTIONS(2848), + [anon_sym__Complex] = ACTIONS(2848), + [anon_sym__Nullable] = ACTIONS(2848), + [anon_sym__Nullable_result] = ACTIONS(2848), + [anon_sym__Null_unspecified] = ACTIONS(2848), + [anon_sym___autoreleasing] = ACTIONS(2848), + [anon_sym___block] = ACTIONS(2848), + [anon_sym___bridge] = ACTIONS(2848), + [anon_sym___bridge_retained] = ACTIONS(2848), + [anon_sym___bridge_transfer] = ACTIONS(2848), + [anon_sym___complex] = ACTIONS(2848), + [anon_sym___const] = ACTIONS(2848), + [anon_sym___imag] = ACTIONS(2848), + [anon_sym___kindof] = ACTIONS(2848), + [anon_sym___nonnull] = ACTIONS(2848), + [anon_sym___nullable] = ACTIONS(2848), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2848), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2848), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2848), + [anon_sym___real] = ACTIONS(2848), + [anon_sym___strong] = ACTIONS(2848), + [anon_sym___unsafe_unretained] = ACTIONS(2848), + [anon_sym___unused] = ACTIONS(2848), + [anon_sym___weak] = ACTIONS(2848), + [anon_sym_alignas] = ACTIONS(2848), + [anon_sym__Alignas] = ACTIONS(2848), + [sym_primitive_type] = ACTIONS(2848), + [anon_sym_enum] = ACTIONS(2848), + [anon_sym_struct] = ACTIONS(2848), + [anon_sym_union] = ACTIONS(2848), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2848), + [anon_sym___typeof] = ACTIONS(2848), + [anon_sym_typeof] = ACTIONS(2848), + [aux_sym_preproc_undef_token1] = ACTIONS(2848), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2848), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2848), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2848), + [anon_sym_NS_AVAILABLE] = ACTIONS(2848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_API_AVAILABLE] = ACTIONS(2848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_API_DEPRECATED] = ACTIONS(2848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2848), + [anon_sym___deprecated_msg] = ACTIONS(2848), + [anon_sym___deprecated_enum_msg] = ACTIONS(2848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2848), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2848), + [anon_sym_ATsynthesize] = ACTIONS(2850), + [anon_sym_ATdynamic] = ACTIONS(2850), + [anon_sym_ATproperty] = ACTIONS(2850), + [anon_sym_BOOL] = ACTIONS(2848), + [anon_sym_IMP] = ACTIONS(2848), + [anon_sym_SEL] = ACTIONS(2848), + [anon_sym_Class] = ACTIONS(2848), + [anon_sym_id] = ACTIONS(2848), + }, + [2202] = { + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token2] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [aux_sym_preproc_else_token1] = ACTIONS(2458), + [aux_sym_preproc_elif_token1] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2460), + [anon_sym_PLUS] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATsynthesize] = ACTIONS(2460), + [anon_sym_ATdynamic] = ACTIONS(2460), + [anon_sym_ATproperty] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [2203] = { + [sym_identifier] = ACTIONS(5421), + [aux_sym_preproc_def_token1] = ACTIONS(5421), + [aux_sym_preproc_if_token1] = ACTIONS(5421), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5421), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5421), + [sym_preproc_directive] = ACTIONS(5421), + [anon_sym_LPAREN2] = ACTIONS(5423), + [anon_sym_DASH] = ACTIONS(5423), + [anon_sym_PLUS] = ACTIONS(5423), + [anon_sym_LT] = ACTIONS(5423), + [anon_sym___extension__] = ACTIONS(5421), + [anon_sym_typedef] = ACTIONS(5421), + [anon_sym_extern] = ACTIONS(5421), + [anon_sym___attribute__] = ACTIONS(5421), + [anon_sym___attribute] = ACTIONS(5421), + [anon_sym_noreturn] = ACTIONS(5421), + [anon_sym_LBRACK] = ACTIONS(5423), + [anon_sym___declspec] = ACTIONS(5421), + [anon_sym___cdecl] = ACTIONS(5421), + [anon_sym___clrcall] = ACTIONS(5421), + [anon_sym___stdcall] = ACTIONS(5421), + [anon_sym___fastcall] = ACTIONS(5421), + [anon_sym___thiscall] = ACTIONS(5421), + [anon_sym___vectorcall] = ACTIONS(5421), + [anon_sym_LBRACE] = ACTIONS(5423), + [anon_sym_signed] = ACTIONS(5421), + [anon_sym_unsigned] = ACTIONS(5421), + [anon_sym_long] = ACTIONS(5421), + [anon_sym_short] = ACTIONS(5421), + [anon_sym_static] = ACTIONS(5421), + [anon_sym_auto] = ACTIONS(5421), + [anon_sym_register] = ACTIONS(5421), + [anon_sym_inline] = ACTIONS(5421), + [anon_sym___inline] = ACTIONS(5421), + [anon_sym___inline__] = ACTIONS(5421), + [anon_sym___forceinline] = ACTIONS(5421), + [anon_sym_thread_local] = ACTIONS(5421), + [anon_sym___thread] = ACTIONS(5421), + [anon_sym_CG_EXTERN] = ACTIONS(5421), + [anon_sym_CG_INLINE] = ACTIONS(5421), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5421), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5421), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5421), + [anon_sym_IBOutlet] = ACTIONS(5421), + [anon_sym_IBInspectable] = ACTIONS(5421), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5421), + [anon_sym_NS_INLINE] = ACTIONS(5421), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5421), + [anon_sym_OBJC_EXPORT] = ACTIONS(5421), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5421), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5421), + [anon_sym_const] = ACTIONS(5421), + [anon_sym_constexpr] = ACTIONS(5421), + [anon_sym_volatile] = ACTIONS(5421), + [anon_sym_restrict] = ACTIONS(5421), + [anon_sym___restrict__] = ACTIONS(5421), + [anon_sym__Atomic] = ACTIONS(5421), + [anon_sym__Noreturn] = ACTIONS(5421), + [anon_sym__Nonnull] = ACTIONS(5421), + [anon_sym_nullable] = ACTIONS(5421), + [anon_sym__Complex] = ACTIONS(5421), + [anon_sym__Nullable] = ACTIONS(5421), + [anon_sym__Nullable_result] = ACTIONS(5421), + [anon_sym__Null_unspecified] = ACTIONS(5421), + [anon_sym___autoreleasing] = ACTIONS(5421), + [anon_sym___block] = ACTIONS(5421), + [anon_sym___bridge] = ACTIONS(5421), + [anon_sym___bridge_retained] = ACTIONS(5421), + [anon_sym___bridge_transfer] = ACTIONS(5421), + [anon_sym___complex] = ACTIONS(5421), + [anon_sym___const] = ACTIONS(5421), + [anon_sym___imag] = ACTIONS(5421), + [anon_sym___kindof] = ACTIONS(5421), + [anon_sym___nonnull] = ACTIONS(5421), + [anon_sym___nullable] = ACTIONS(5421), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5421), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5421), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5421), + [anon_sym___real] = ACTIONS(5421), + [anon_sym___strong] = ACTIONS(5421), + [anon_sym___unsafe_unretained] = ACTIONS(5421), + [anon_sym___unused] = ACTIONS(5421), + [anon_sym___weak] = ACTIONS(5421), + [anon_sym_alignas] = ACTIONS(5421), + [anon_sym__Alignas] = ACTIONS(5421), + [sym_primitive_type] = ACTIONS(5421), + [anon_sym_enum] = ACTIONS(5421), + [anon_sym_COLON] = ACTIONS(5423), + [anon_sym_struct] = ACTIONS(5421), + [anon_sym_union] = ACTIONS(5421), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5421), + [anon_sym___typeof] = ACTIONS(5421), + [anon_sym_typeof] = ACTIONS(5421), + [aux_sym_preproc_undef_token1] = ACTIONS(5421), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5421), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5421), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5421), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5421), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5421), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5421), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5421), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5421), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5421), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5421), + [anon_sym_NS_AVAILABLE] = ACTIONS(5421), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5421), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5421), + [anon_sym_API_AVAILABLE] = ACTIONS(5421), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5421), + [anon_sym_API_DEPRECATED] = ACTIONS(5421), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5421), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5421), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5421), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5421), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5421), + [anon_sym___deprecated_msg] = ACTIONS(5421), + [anon_sym___deprecated_enum_msg] = ACTIONS(5421), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5421), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5421), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5421), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5421), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5421), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5421), + [anon_sym_ATend] = ACTIONS(5423), + [anon_sym_ATproperty] = ACTIONS(5423), + [anon_sym_BOOL] = ACTIONS(5421), + [anon_sym_IMP] = ACTIONS(5421), + [anon_sym_SEL] = ACTIONS(5421), + [anon_sym_Class] = ACTIONS(5421), + [anon_sym_id] = ACTIONS(5421), + }, + [2204] = { + [sym_identifier] = ACTIONS(5425), + [aux_sym_preproc_def_token1] = ACTIONS(5425), + [aux_sym_preproc_if_token1] = ACTIONS(5425), + [aux_sym_preproc_if_token2] = ACTIONS(5425), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5425), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5425), + [aux_sym_preproc_else_token1] = ACTIONS(5425), + [aux_sym_preproc_elif_token1] = ACTIONS(5425), + [sym_preproc_directive] = ACTIONS(5425), + [anon_sym_DASH] = ACTIONS(5427), + [anon_sym_PLUS] = ACTIONS(5427), + [anon_sym_SEMI] = ACTIONS(5429), + [anon_sym___extension__] = ACTIONS(5425), + [anon_sym_typedef] = ACTIONS(5425), + [anon_sym_extern] = ACTIONS(5425), + [anon_sym___attribute__] = ACTIONS(5425), + [anon_sym___attribute] = ACTIONS(5425), + [anon_sym_noreturn] = ACTIONS(5425), + [anon_sym_LBRACK] = ACTIONS(5427), + [anon_sym___declspec] = ACTIONS(5425), + [anon_sym___cdecl] = ACTIONS(5425), + [anon_sym___clrcall] = ACTIONS(5425), + [anon_sym___stdcall] = ACTIONS(5425), + [anon_sym___fastcall] = ACTIONS(5425), + [anon_sym___thiscall] = ACTIONS(5425), + [anon_sym___vectorcall] = ACTIONS(5425), + [anon_sym_signed] = ACTIONS(5425), + [anon_sym_unsigned] = ACTIONS(5425), + [anon_sym_long] = ACTIONS(5425), + [anon_sym_short] = ACTIONS(5425), + [anon_sym_static] = ACTIONS(5425), + [anon_sym_auto] = ACTIONS(5425), + [anon_sym_register] = ACTIONS(5425), + [anon_sym_inline] = ACTIONS(5425), + [anon_sym___inline] = ACTIONS(5425), + [anon_sym___inline__] = ACTIONS(5425), + [anon_sym___forceinline] = ACTIONS(5425), + [anon_sym_thread_local] = ACTIONS(5425), + [anon_sym___thread] = ACTIONS(5425), + [anon_sym_CG_EXTERN] = ACTIONS(5425), + [anon_sym_CG_INLINE] = ACTIONS(5425), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5425), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5425), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5425), + [anon_sym_IBOutlet] = ACTIONS(5425), + [anon_sym_IBInspectable] = ACTIONS(5425), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5425), + [anon_sym_NS_INLINE] = ACTIONS(5425), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5425), + [anon_sym_OBJC_EXPORT] = ACTIONS(5425), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5425), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5425), + [anon_sym_const] = ACTIONS(5425), + [anon_sym_constexpr] = ACTIONS(5425), + [anon_sym_volatile] = ACTIONS(5425), + [anon_sym_restrict] = ACTIONS(5425), + [anon_sym___restrict__] = ACTIONS(5425), + [anon_sym__Atomic] = ACTIONS(5425), + [anon_sym__Noreturn] = ACTIONS(5425), + [anon_sym__Nonnull] = ACTIONS(5425), + [anon_sym_nullable] = ACTIONS(5425), + [anon_sym__Complex] = ACTIONS(5425), + [anon_sym__Nullable] = ACTIONS(5425), + [anon_sym__Nullable_result] = ACTIONS(5425), + [anon_sym__Null_unspecified] = ACTIONS(5425), + [anon_sym___autoreleasing] = ACTIONS(5425), + [anon_sym___block] = ACTIONS(5425), + [anon_sym___bridge] = ACTIONS(5425), + [anon_sym___bridge_retained] = ACTIONS(5425), + [anon_sym___bridge_transfer] = ACTIONS(5425), + [anon_sym___complex] = ACTIONS(5425), + [anon_sym___const] = ACTIONS(5425), + [anon_sym___imag] = ACTIONS(5425), + [anon_sym___kindof] = ACTIONS(5425), + [anon_sym___nonnull] = ACTIONS(5425), + [anon_sym___nullable] = ACTIONS(5425), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5425), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5425), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5425), + [anon_sym___real] = ACTIONS(5425), + [anon_sym___strong] = ACTIONS(5425), + [anon_sym___unsafe_unretained] = ACTIONS(5425), + [anon_sym___unused] = ACTIONS(5425), + [anon_sym___weak] = ACTIONS(5425), + [anon_sym_alignas] = ACTIONS(5425), + [anon_sym__Alignas] = ACTIONS(5425), + [sym_primitive_type] = ACTIONS(5425), + [anon_sym_enum] = ACTIONS(5425), + [anon_sym_struct] = ACTIONS(5425), + [anon_sym_union] = ACTIONS(5425), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5425), + [anon_sym___typeof] = ACTIONS(5425), + [anon_sym_typeof] = ACTIONS(5425), + [aux_sym_preproc_undef_token1] = ACTIONS(5425), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5425), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5425), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5425), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5425), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5425), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5425), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5425), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5425), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5425), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5425), + [anon_sym_NS_AVAILABLE] = ACTIONS(5425), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5425), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5425), + [anon_sym_API_AVAILABLE] = ACTIONS(5425), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5425), + [anon_sym_API_DEPRECATED] = ACTIONS(5425), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5425), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5425), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5425), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5425), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5425), + [anon_sym___deprecated_msg] = ACTIONS(5425), + [anon_sym___deprecated_enum_msg] = ACTIONS(5425), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5425), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5425), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5425), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5425), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5425), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5425), + [anon_sym_ATsynthesize] = ACTIONS(5427), + [anon_sym_ATdynamic] = ACTIONS(5427), + [anon_sym_BOOL] = ACTIONS(5425), + [anon_sym_IMP] = ACTIONS(5425), + [anon_sym_SEL] = ACTIONS(5425), + [anon_sym_Class] = ACTIONS(5425), + [anon_sym_id] = ACTIONS(5425), + }, + [2205] = { + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token2] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [aux_sym_preproc_else_token1] = ACTIONS(2458), + [aux_sym_preproc_elif_token1] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2460), + [anon_sym_PLUS] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATsynthesize] = ACTIONS(2460), + [anon_sym_ATdynamic] = ACTIONS(2460), + [anon_sym_ATproperty] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [2206] = { + [sym_identifier] = ACTIONS(2576), + [aux_sym_preproc_def_token1] = ACTIONS(2576), + [aux_sym_preproc_if_token1] = ACTIONS(2576), + [aux_sym_preproc_if_token2] = ACTIONS(2576), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2576), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2576), + [aux_sym_preproc_else_token1] = ACTIONS(2576), + [aux_sym_preproc_elif_token1] = ACTIONS(2576), + [sym_preproc_directive] = ACTIONS(2576), + [anon_sym_DASH] = ACTIONS(2578), + [anon_sym_PLUS] = ACTIONS(2578), + [anon_sym___extension__] = ACTIONS(2576), + [anon_sym_typedef] = ACTIONS(2576), + [anon_sym_extern] = ACTIONS(2576), + [anon_sym___attribute__] = ACTIONS(2576), + [anon_sym___attribute] = ACTIONS(2576), + [anon_sym_noreturn] = ACTIONS(2576), + [anon_sym_LBRACK] = ACTIONS(2578), + [anon_sym___declspec] = ACTIONS(2576), + [anon_sym___cdecl] = ACTIONS(2576), + [anon_sym___clrcall] = ACTIONS(2576), + [anon_sym___stdcall] = ACTIONS(2576), + [anon_sym___fastcall] = ACTIONS(2576), + [anon_sym___thiscall] = ACTIONS(2576), + [anon_sym___vectorcall] = ACTIONS(2576), + [anon_sym_signed] = ACTIONS(2576), + [anon_sym_unsigned] = ACTIONS(2576), + [anon_sym_long] = ACTIONS(2576), + [anon_sym_short] = ACTIONS(2576), + [anon_sym_static] = ACTIONS(2576), + [anon_sym_auto] = ACTIONS(2576), + [anon_sym_register] = ACTIONS(2576), + [anon_sym_inline] = ACTIONS(2576), + [anon_sym___inline] = ACTIONS(2576), + [anon_sym___inline__] = ACTIONS(2576), + [anon_sym___forceinline] = ACTIONS(2576), + [anon_sym_thread_local] = ACTIONS(2576), + [anon_sym___thread] = ACTIONS(2576), + [anon_sym_CG_EXTERN] = ACTIONS(2576), + [anon_sym_CG_INLINE] = ACTIONS(2576), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2576), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2576), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2576), + [anon_sym_IBOutlet] = ACTIONS(2576), + [anon_sym_IBInspectable] = ACTIONS(2576), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2576), + [anon_sym_NS_INLINE] = ACTIONS(2576), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2576), + [anon_sym_OBJC_EXPORT] = ACTIONS(2576), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2576), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2576), + [anon_sym_const] = ACTIONS(2576), + [anon_sym_constexpr] = ACTIONS(2576), + [anon_sym_volatile] = ACTIONS(2576), + [anon_sym_restrict] = ACTIONS(2576), + [anon_sym___restrict__] = ACTIONS(2576), + [anon_sym__Atomic] = ACTIONS(2576), + [anon_sym__Noreturn] = ACTIONS(2576), + [anon_sym__Nonnull] = ACTIONS(2576), + [anon_sym_nullable] = ACTIONS(2576), + [anon_sym__Complex] = ACTIONS(2576), + [anon_sym__Nullable] = ACTIONS(2576), + [anon_sym__Nullable_result] = ACTIONS(2576), + [anon_sym__Null_unspecified] = ACTIONS(2576), + [anon_sym___autoreleasing] = ACTIONS(2576), + [anon_sym___block] = ACTIONS(2576), + [anon_sym___bridge] = ACTIONS(2576), + [anon_sym___bridge_retained] = ACTIONS(2576), + [anon_sym___bridge_transfer] = ACTIONS(2576), + [anon_sym___complex] = ACTIONS(2576), + [anon_sym___const] = ACTIONS(2576), + [anon_sym___imag] = ACTIONS(2576), + [anon_sym___kindof] = ACTIONS(2576), + [anon_sym___nonnull] = ACTIONS(2576), + [anon_sym___nullable] = ACTIONS(2576), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2576), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2576), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2576), + [anon_sym___real] = ACTIONS(2576), + [anon_sym___strong] = ACTIONS(2576), + [anon_sym___unsafe_unretained] = ACTIONS(2576), + [anon_sym___unused] = ACTIONS(2576), + [anon_sym___weak] = ACTIONS(2576), + [anon_sym_alignas] = ACTIONS(2576), + [anon_sym__Alignas] = ACTIONS(2576), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2576), + [anon_sym_struct] = ACTIONS(2576), + [anon_sym_union] = ACTIONS(2576), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2576), + [anon_sym___typeof] = ACTIONS(2576), + [anon_sym_typeof] = ACTIONS(2576), + [aux_sym_preproc_undef_token1] = ACTIONS(2576), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2576), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2576), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2576), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2576), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2576), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2576), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2576), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2576), + [anon_sym_NS_AVAILABLE] = ACTIONS(2576), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2576), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_API_AVAILABLE] = ACTIONS(2576), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_API_DEPRECATED] = ACTIONS(2576), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2576), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2576), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2576), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2576), + [anon_sym___deprecated_msg] = ACTIONS(2576), + [anon_sym___deprecated_enum_msg] = ACTIONS(2576), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2576), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2576), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2576), + [anon_sym_ATsynthesize] = ACTIONS(2578), + [anon_sym_ATdynamic] = ACTIONS(2578), + [anon_sym_ATproperty] = ACTIONS(2578), + [anon_sym_BOOL] = ACTIONS(2576), + [anon_sym_IMP] = ACTIONS(2576), + [anon_sym_SEL] = ACTIONS(2576), + [anon_sym_Class] = ACTIONS(2576), + [anon_sym_id] = ACTIONS(2576), + }, + [2207] = { + [sym_identifier] = ACTIONS(5431), + [aux_sym_preproc_def_token1] = ACTIONS(5431), + [aux_sym_preproc_if_token1] = ACTIONS(5431), + [aux_sym_preproc_if_token2] = ACTIONS(5431), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5431), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5431), + [aux_sym_preproc_else_token1] = ACTIONS(5431), + [aux_sym_preproc_elif_token1] = ACTIONS(5431), + [sym_preproc_directive] = ACTIONS(5431), + [anon_sym_DASH] = ACTIONS(5433), + [anon_sym_PLUS] = ACTIONS(5433), + [anon_sym_SEMI] = ACTIONS(5435), + [anon_sym___extension__] = ACTIONS(5431), + [anon_sym_typedef] = ACTIONS(5431), + [anon_sym_extern] = ACTIONS(5431), + [anon_sym___attribute__] = ACTIONS(5431), + [anon_sym___attribute] = ACTIONS(5431), + [anon_sym_noreturn] = ACTIONS(5431), + [anon_sym_LBRACK] = ACTIONS(5433), + [anon_sym___declspec] = ACTIONS(5431), + [anon_sym___cdecl] = ACTIONS(5431), + [anon_sym___clrcall] = ACTIONS(5431), + [anon_sym___stdcall] = ACTIONS(5431), + [anon_sym___fastcall] = ACTIONS(5431), + [anon_sym___thiscall] = ACTIONS(5431), + [anon_sym___vectorcall] = ACTIONS(5431), + [anon_sym_signed] = ACTIONS(5431), + [anon_sym_unsigned] = ACTIONS(5431), + [anon_sym_long] = ACTIONS(5431), + [anon_sym_short] = ACTIONS(5431), + [anon_sym_static] = ACTIONS(5431), + [anon_sym_auto] = ACTIONS(5431), + [anon_sym_register] = ACTIONS(5431), + [anon_sym_inline] = ACTIONS(5431), + [anon_sym___inline] = ACTIONS(5431), + [anon_sym___inline__] = ACTIONS(5431), + [anon_sym___forceinline] = ACTIONS(5431), + [anon_sym_thread_local] = ACTIONS(5431), + [anon_sym___thread] = ACTIONS(5431), + [anon_sym_CG_EXTERN] = ACTIONS(5431), + [anon_sym_CG_INLINE] = ACTIONS(5431), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5431), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5431), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5431), + [anon_sym_IBOutlet] = ACTIONS(5431), + [anon_sym_IBInspectable] = ACTIONS(5431), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5431), + [anon_sym_NS_INLINE] = ACTIONS(5431), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5431), + [anon_sym_OBJC_EXPORT] = ACTIONS(5431), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5431), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5431), + [anon_sym_const] = ACTIONS(5431), + [anon_sym_constexpr] = ACTIONS(5431), + [anon_sym_volatile] = ACTIONS(5431), + [anon_sym_restrict] = ACTIONS(5431), + [anon_sym___restrict__] = ACTIONS(5431), + [anon_sym__Atomic] = ACTIONS(5431), + [anon_sym__Noreturn] = ACTIONS(5431), + [anon_sym__Nonnull] = ACTIONS(5431), + [anon_sym_nullable] = ACTIONS(5431), + [anon_sym__Complex] = ACTIONS(5431), + [anon_sym__Nullable] = ACTIONS(5431), + [anon_sym__Nullable_result] = ACTIONS(5431), + [anon_sym__Null_unspecified] = ACTIONS(5431), + [anon_sym___autoreleasing] = ACTIONS(5431), + [anon_sym___block] = ACTIONS(5431), + [anon_sym___bridge] = ACTIONS(5431), + [anon_sym___bridge_retained] = ACTIONS(5431), + [anon_sym___bridge_transfer] = ACTIONS(5431), + [anon_sym___complex] = ACTIONS(5431), + [anon_sym___const] = ACTIONS(5431), + [anon_sym___imag] = ACTIONS(5431), + [anon_sym___kindof] = ACTIONS(5431), + [anon_sym___nonnull] = ACTIONS(5431), + [anon_sym___nullable] = ACTIONS(5431), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5431), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5431), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5431), + [anon_sym___real] = ACTIONS(5431), + [anon_sym___strong] = ACTIONS(5431), + [anon_sym___unsafe_unretained] = ACTIONS(5431), + [anon_sym___unused] = ACTIONS(5431), + [anon_sym___weak] = ACTIONS(5431), + [anon_sym_alignas] = ACTIONS(5431), + [anon_sym__Alignas] = ACTIONS(5431), + [sym_primitive_type] = ACTIONS(5431), + [anon_sym_enum] = ACTIONS(5431), + [anon_sym_struct] = ACTIONS(5431), + [anon_sym_union] = ACTIONS(5431), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5431), + [anon_sym___typeof] = ACTIONS(5431), + [anon_sym_typeof] = ACTIONS(5431), + [aux_sym_preproc_undef_token1] = ACTIONS(5431), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5431), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5431), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5431), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5431), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5431), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5431), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5431), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5431), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5431), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5431), + [anon_sym_NS_AVAILABLE] = ACTIONS(5431), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5431), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5431), + [anon_sym_API_AVAILABLE] = ACTIONS(5431), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5431), + [anon_sym_API_DEPRECATED] = ACTIONS(5431), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5431), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5431), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5431), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5431), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5431), + [anon_sym___deprecated_msg] = ACTIONS(5431), + [anon_sym___deprecated_enum_msg] = ACTIONS(5431), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5431), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5431), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5431), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5431), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5431), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5431), + [anon_sym_ATsynthesize] = ACTIONS(5433), + [anon_sym_ATdynamic] = ACTIONS(5433), + [anon_sym_BOOL] = ACTIONS(5431), + [anon_sym_IMP] = ACTIONS(5431), + [anon_sym_SEL] = ACTIONS(5431), + [anon_sym_Class] = ACTIONS(5431), + [anon_sym_id] = ACTIONS(5431), + }, + [2208] = { + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token2] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [aux_sym_preproc_else_token1] = ACTIONS(2458), + [aux_sym_preproc_elif_token1] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2460), + [anon_sym_PLUS] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATsynthesize] = ACTIONS(2460), + [anon_sym_ATdynamic] = ACTIONS(2460), + [anon_sym_ATproperty] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [2209] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_PLUS] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATend] = ACTIONS(2438), + [anon_sym_AToptional] = ACTIONS(2438), + [anon_sym_ATrequired] = ACTIONS(2438), + [anon_sym_ATsynthesize] = ACTIONS(2438), + [anon_sym_ATdynamic] = ACTIONS(2438), + [anon_sym_ATproperty] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [2210] = { + [sym_identifier] = ACTIONS(5367), + [aux_sym_preproc_def_token1] = ACTIONS(5367), + [aux_sym_preproc_if_token1] = ACTIONS(5367), + [aux_sym_preproc_if_token2] = ACTIONS(5367), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5367), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5367), + [aux_sym_preproc_else_token1] = ACTIONS(5367), + [aux_sym_preproc_elif_token1] = ACTIONS(5367), + [sym_preproc_directive] = ACTIONS(5367), + [anon_sym_DASH] = ACTIONS(5369), + [anon_sym_PLUS] = ACTIONS(5369), + [anon_sym___extension__] = ACTIONS(5367), + [anon_sym_typedef] = ACTIONS(5367), + [anon_sym_extern] = ACTIONS(5367), + [anon_sym___attribute__] = ACTIONS(5367), + [anon_sym___attribute] = ACTIONS(5367), + [anon_sym_noreturn] = ACTIONS(5367), + [anon_sym_LBRACK] = ACTIONS(5369), + [anon_sym___declspec] = ACTIONS(5367), + [anon_sym___cdecl] = ACTIONS(5367), + [anon_sym___clrcall] = ACTIONS(5367), + [anon_sym___stdcall] = ACTIONS(5367), + [anon_sym___fastcall] = ACTIONS(5367), + [anon_sym___thiscall] = ACTIONS(5367), + [anon_sym___vectorcall] = ACTIONS(5367), + [anon_sym_signed] = ACTIONS(5367), + [anon_sym_unsigned] = ACTIONS(5367), + [anon_sym_long] = ACTIONS(5367), + [anon_sym_short] = ACTIONS(5367), + [anon_sym_static] = ACTIONS(5367), + [anon_sym_auto] = ACTIONS(5367), + [anon_sym_register] = ACTIONS(5367), + [anon_sym_inline] = ACTIONS(5367), + [anon_sym___inline] = ACTIONS(5367), + [anon_sym___inline__] = ACTIONS(5367), + [anon_sym___forceinline] = ACTIONS(5367), + [anon_sym_thread_local] = ACTIONS(5367), + [anon_sym___thread] = ACTIONS(5367), + [anon_sym_CG_EXTERN] = ACTIONS(5367), + [anon_sym_CG_INLINE] = ACTIONS(5367), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5367), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5367), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5367), + [anon_sym_IBOutlet] = ACTIONS(5367), + [anon_sym_IBInspectable] = ACTIONS(5367), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5367), + [anon_sym_NS_INLINE] = ACTIONS(5367), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5367), + [anon_sym_OBJC_EXPORT] = ACTIONS(5367), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5367), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5367), + [anon_sym_const] = ACTIONS(5367), + [anon_sym_constexpr] = ACTIONS(5367), + [anon_sym_volatile] = ACTIONS(5367), + [anon_sym_restrict] = ACTIONS(5367), + [anon_sym___restrict__] = ACTIONS(5367), + [anon_sym__Atomic] = ACTIONS(5367), + [anon_sym__Noreturn] = ACTIONS(5367), + [anon_sym__Nonnull] = ACTIONS(5367), + [anon_sym_nullable] = ACTIONS(5367), + [anon_sym__Complex] = ACTIONS(5367), + [anon_sym__Nullable] = ACTIONS(5367), + [anon_sym__Nullable_result] = ACTIONS(5367), + [anon_sym__Null_unspecified] = ACTIONS(5367), + [anon_sym___autoreleasing] = ACTIONS(5367), + [anon_sym___block] = ACTIONS(5367), + [anon_sym___bridge] = ACTIONS(5367), + [anon_sym___bridge_retained] = ACTIONS(5367), + [anon_sym___bridge_transfer] = ACTIONS(5367), + [anon_sym___complex] = ACTIONS(5367), + [anon_sym___const] = ACTIONS(5367), + [anon_sym___imag] = ACTIONS(5367), + [anon_sym___kindof] = ACTIONS(5367), + [anon_sym___nonnull] = ACTIONS(5367), + [anon_sym___nullable] = ACTIONS(5367), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5367), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5367), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5367), + [anon_sym___real] = ACTIONS(5367), + [anon_sym___strong] = ACTIONS(5367), + [anon_sym___unsafe_unretained] = ACTIONS(5367), + [anon_sym___unused] = ACTIONS(5367), + [anon_sym___weak] = ACTIONS(5367), + [anon_sym_alignas] = ACTIONS(5367), + [anon_sym__Alignas] = ACTIONS(5367), + [sym_primitive_type] = ACTIONS(5367), + [anon_sym_enum] = ACTIONS(5367), + [anon_sym_struct] = ACTIONS(5367), + [anon_sym_union] = ACTIONS(5367), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5367), + [anon_sym___typeof] = ACTIONS(5367), + [anon_sym_typeof] = ACTIONS(5367), + [aux_sym_preproc_undef_token1] = ACTIONS(5367), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5367), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5367), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5367), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5367), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5367), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5367), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5367), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5367), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5367), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5367), + [anon_sym_NS_AVAILABLE] = ACTIONS(5367), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5367), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5367), + [anon_sym_API_AVAILABLE] = ACTIONS(5367), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5367), + [anon_sym_API_DEPRECATED] = ACTIONS(5367), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5367), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5367), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5367), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5367), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5367), + [anon_sym___deprecated_msg] = ACTIONS(5367), + [anon_sym___deprecated_enum_msg] = ACTIONS(5367), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5367), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5367), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5367), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5367), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5367), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5367), + [anon_sym_ATsynthesize] = ACTIONS(5369), + [anon_sym_ATdynamic] = ACTIONS(5369), + [anon_sym_BOOL] = ACTIONS(5367), + [anon_sym_IMP] = ACTIONS(5367), + [anon_sym_SEL] = ACTIONS(5367), + [anon_sym_Class] = ACTIONS(5367), + [anon_sym_id] = ACTIONS(5367), + }, + [2211] = { + [sym_identifier] = ACTIONS(5310), + [aux_sym_preproc_def_token1] = ACTIONS(5310), + [aux_sym_preproc_if_token1] = ACTIONS(5310), + [aux_sym_preproc_if_token2] = ACTIONS(5310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5310), + [aux_sym_preproc_else_token1] = ACTIONS(5310), + [aux_sym_preproc_elif_token1] = ACTIONS(5310), + [sym_preproc_directive] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5312), + [anon_sym_PLUS] = ACTIONS(5312), + [anon_sym___extension__] = ACTIONS(5310), + [anon_sym_typedef] = ACTIONS(5310), + [anon_sym_extern] = ACTIONS(5310), + [anon_sym___attribute__] = ACTIONS(5310), + [anon_sym___attribute] = ACTIONS(5310), + [anon_sym_noreturn] = ACTIONS(5310), + [anon_sym_LBRACK] = ACTIONS(5312), + [anon_sym___declspec] = ACTIONS(5310), + [anon_sym___cdecl] = ACTIONS(5310), + [anon_sym___clrcall] = ACTIONS(5310), + [anon_sym___stdcall] = ACTIONS(5310), + [anon_sym___fastcall] = ACTIONS(5310), + [anon_sym___thiscall] = ACTIONS(5310), + [anon_sym___vectorcall] = ACTIONS(5310), + [anon_sym_signed] = ACTIONS(5310), + [anon_sym_unsigned] = ACTIONS(5310), + [anon_sym_long] = ACTIONS(5310), + [anon_sym_short] = ACTIONS(5310), + [anon_sym_static] = ACTIONS(5310), + [anon_sym_auto] = ACTIONS(5310), + [anon_sym_register] = ACTIONS(5310), + [anon_sym_inline] = ACTIONS(5310), + [anon_sym___inline] = ACTIONS(5310), + [anon_sym___inline__] = ACTIONS(5310), + [anon_sym___forceinline] = ACTIONS(5310), + [anon_sym_thread_local] = ACTIONS(5310), + [anon_sym___thread] = ACTIONS(5310), + [anon_sym_CG_EXTERN] = ACTIONS(5310), + [anon_sym_CG_INLINE] = ACTIONS(5310), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5310), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5310), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5310), + [anon_sym_IBOutlet] = ACTIONS(5310), + [anon_sym_IBInspectable] = ACTIONS(5310), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5310), + [anon_sym_NS_INLINE] = ACTIONS(5310), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5310), + [anon_sym_OBJC_EXPORT] = ACTIONS(5310), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5310), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5310), + [anon_sym_const] = ACTIONS(5310), + [anon_sym_constexpr] = ACTIONS(5310), + [anon_sym_volatile] = ACTIONS(5310), + [anon_sym_restrict] = ACTIONS(5310), + [anon_sym___restrict__] = ACTIONS(5310), + [anon_sym__Atomic] = ACTIONS(5310), + [anon_sym__Noreturn] = ACTIONS(5310), + [anon_sym__Nonnull] = ACTIONS(5310), + [anon_sym_nullable] = ACTIONS(5310), + [anon_sym__Complex] = ACTIONS(5310), + [anon_sym__Nullable] = ACTIONS(5310), + [anon_sym__Nullable_result] = ACTIONS(5310), + [anon_sym__Null_unspecified] = ACTIONS(5310), + [anon_sym___autoreleasing] = ACTIONS(5310), + [anon_sym___block] = ACTIONS(5310), + [anon_sym___bridge] = ACTIONS(5310), + [anon_sym___bridge_retained] = ACTIONS(5310), + [anon_sym___bridge_transfer] = ACTIONS(5310), + [anon_sym___complex] = ACTIONS(5310), + [anon_sym___const] = ACTIONS(5310), + [anon_sym___imag] = ACTIONS(5310), + [anon_sym___kindof] = ACTIONS(5310), + [anon_sym___nonnull] = ACTIONS(5310), + [anon_sym___nullable] = ACTIONS(5310), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5310), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5310), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5310), + [anon_sym___real] = ACTIONS(5310), + [anon_sym___strong] = ACTIONS(5310), + [anon_sym___unsafe_unretained] = ACTIONS(5310), + [anon_sym___unused] = ACTIONS(5310), + [anon_sym___weak] = ACTIONS(5310), + [anon_sym_alignas] = ACTIONS(5310), + [anon_sym__Alignas] = ACTIONS(5310), + [sym_primitive_type] = ACTIONS(5310), + [anon_sym_enum] = ACTIONS(5310), + [anon_sym_struct] = ACTIONS(5310), + [anon_sym_union] = ACTIONS(5310), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5310), + [anon_sym___typeof] = ACTIONS(5310), + [anon_sym_typeof] = ACTIONS(5310), + [aux_sym_preproc_undef_token1] = ACTIONS(5310), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5310), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5310), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5310), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5310), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5310), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5310), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5310), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5310), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5310), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5310), + [anon_sym_NS_AVAILABLE] = ACTIONS(5310), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5310), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5310), + [anon_sym_API_AVAILABLE] = ACTIONS(5310), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5310), + [anon_sym_API_DEPRECATED] = ACTIONS(5310), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5310), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5310), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5310), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5310), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5310), + [anon_sym___deprecated_msg] = ACTIONS(5310), + [anon_sym___deprecated_enum_msg] = ACTIONS(5310), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5310), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5310), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5310), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5310), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5310), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5310), + [anon_sym_ATsynthesize] = ACTIONS(5312), + [anon_sym_ATdynamic] = ACTIONS(5312), + [anon_sym_BOOL] = ACTIONS(5310), + [anon_sym_IMP] = ACTIONS(5310), + [anon_sym_SEL] = ACTIONS(5310), + [anon_sym_Class] = ACTIONS(5310), + [anon_sym_id] = ACTIONS(5310), + }, + [2212] = { + [sym_identifier] = ACTIONS(2872), + [aux_sym_preproc_def_token1] = ACTIONS(2872), + [aux_sym_preproc_if_token1] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2872), + [sym_preproc_directive] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2874), + [anon_sym_PLUS] = ACTIONS(2874), + [anon_sym___extension__] = ACTIONS(2872), + [anon_sym_typedef] = ACTIONS(2872), + [anon_sym_extern] = ACTIONS(2872), + [anon_sym___attribute__] = ACTIONS(2872), + [anon_sym___attribute] = ACTIONS(2872), + [anon_sym_noreturn] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2874), + [anon_sym___declspec] = ACTIONS(2872), + [anon_sym___cdecl] = ACTIONS(2872), + [anon_sym___clrcall] = ACTIONS(2872), + [anon_sym___stdcall] = ACTIONS(2872), + [anon_sym___fastcall] = ACTIONS(2872), + [anon_sym___thiscall] = ACTIONS(2872), + [anon_sym___vectorcall] = ACTIONS(2872), + [anon_sym_RBRACE] = ACTIONS(2874), + [anon_sym_signed] = ACTIONS(2872), + [anon_sym_unsigned] = ACTIONS(2872), + [anon_sym_long] = ACTIONS(2872), + [anon_sym_short] = ACTIONS(2872), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_auto] = ACTIONS(2872), + [anon_sym_register] = ACTIONS(2872), + [anon_sym_inline] = ACTIONS(2872), + [anon_sym___inline] = ACTIONS(2872), + [anon_sym___inline__] = ACTIONS(2872), + [anon_sym___forceinline] = ACTIONS(2872), + [anon_sym_thread_local] = ACTIONS(2872), + [anon_sym___thread] = ACTIONS(2872), + [anon_sym_CG_EXTERN] = ACTIONS(2872), + [anon_sym_CG_INLINE] = ACTIONS(2872), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2872), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2872), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2872), + [anon_sym_IBOutlet] = ACTIONS(2872), + [anon_sym_IBInspectable] = ACTIONS(2872), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2872), + [anon_sym_NS_INLINE] = ACTIONS(2872), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2872), + [anon_sym_OBJC_EXPORT] = ACTIONS(2872), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2872), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2872), + [anon_sym_const] = ACTIONS(2872), + [anon_sym_constexpr] = ACTIONS(2872), + [anon_sym_volatile] = ACTIONS(2872), + [anon_sym_restrict] = ACTIONS(2872), + [anon_sym___restrict__] = ACTIONS(2872), + [anon_sym__Atomic] = ACTIONS(2872), + [anon_sym__Noreturn] = ACTIONS(2872), + [anon_sym__Nonnull] = ACTIONS(2872), + [anon_sym_nullable] = ACTIONS(2872), + [anon_sym__Complex] = ACTIONS(2872), + [anon_sym__Nullable] = ACTIONS(2872), + [anon_sym__Nullable_result] = ACTIONS(2872), + [anon_sym__Null_unspecified] = ACTIONS(2872), + [anon_sym___autoreleasing] = ACTIONS(2872), + [anon_sym___block] = ACTIONS(2872), + [anon_sym___bridge] = ACTIONS(2872), + [anon_sym___bridge_retained] = ACTIONS(2872), + [anon_sym___bridge_transfer] = ACTIONS(2872), + [anon_sym___complex] = ACTIONS(2872), + [anon_sym___const] = ACTIONS(2872), + [anon_sym___imag] = ACTIONS(2872), + [anon_sym___kindof] = ACTIONS(2872), + [anon_sym___nonnull] = ACTIONS(2872), + [anon_sym___nullable] = ACTIONS(2872), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2872), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2872), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2872), + [anon_sym___real] = ACTIONS(2872), + [anon_sym___strong] = ACTIONS(2872), + [anon_sym___unsafe_unretained] = ACTIONS(2872), + [anon_sym___unused] = ACTIONS(2872), + [anon_sym___weak] = ACTIONS(2872), + [anon_sym_alignas] = ACTIONS(2872), + [anon_sym__Alignas] = ACTIONS(2872), + [sym_primitive_type] = ACTIONS(2872), + [anon_sym_enum] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2872), + [anon_sym_union] = ACTIONS(2872), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2872), + [anon_sym___typeof] = ACTIONS(2872), + [anon_sym_typeof] = ACTIONS(2872), + [aux_sym_preproc_undef_token1] = ACTIONS(2872), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2872), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2872), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2872), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2872), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2872), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2872), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2872), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2872), + [anon_sym_NS_AVAILABLE] = ACTIONS(2872), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2872), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_API_AVAILABLE] = ACTIONS(2872), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_API_DEPRECATED] = ACTIONS(2872), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2872), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2872), + [anon_sym___deprecated_msg] = ACTIONS(2872), + [anon_sym___deprecated_enum_msg] = ACTIONS(2872), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2872), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2872), + [anon_sym_ATend] = ACTIONS(2874), + [anon_sym_ATsynthesize] = ACTIONS(2874), + [anon_sym_ATdynamic] = ACTIONS(2874), + [anon_sym_BOOL] = ACTIONS(2872), + [anon_sym_IMP] = ACTIONS(2872), + [anon_sym_SEL] = ACTIONS(2872), + [anon_sym_Class] = ACTIONS(2872), + [anon_sym_id] = ACTIONS(2872), + [anon_sym_ATdefs] = ACTIONS(2874), + }, + [2213] = { + [sym_identifier] = ACTIONS(2740), + [aux_sym_preproc_def_token1] = ACTIONS(2740), + [aux_sym_preproc_if_token1] = ACTIONS(2740), + [aux_sym_preproc_if_token2] = ACTIONS(2740), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2740), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2740), + [aux_sym_preproc_else_token1] = ACTIONS(2740), + [aux_sym_preproc_elif_token1] = ACTIONS(2740), + [sym_preproc_directive] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2742), + [anon_sym_PLUS] = ACTIONS(2742), + [anon_sym___extension__] = ACTIONS(2740), + [anon_sym_typedef] = ACTIONS(2740), + [anon_sym_extern] = ACTIONS(2740), + [anon_sym___attribute__] = ACTIONS(2740), + [anon_sym___attribute] = ACTIONS(2740), + [anon_sym_noreturn] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym___declspec] = ACTIONS(2740), + [anon_sym___cdecl] = ACTIONS(2740), + [anon_sym___clrcall] = ACTIONS(2740), + [anon_sym___stdcall] = ACTIONS(2740), + [anon_sym___fastcall] = ACTIONS(2740), + [anon_sym___thiscall] = ACTIONS(2740), + [anon_sym___vectorcall] = ACTIONS(2740), + [anon_sym_signed] = ACTIONS(2740), + [anon_sym_unsigned] = ACTIONS(2740), + [anon_sym_long] = ACTIONS(2740), + [anon_sym_short] = ACTIONS(2740), + [anon_sym_static] = ACTIONS(2740), + [anon_sym_auto] = ACTIONS(2740), + [anon_sym_register] = ACTIONS(2740), + [anon_sym_inline] = ACTIONS(2740), + [anon_sym___inline] = ACTIONS(2740), + [anon_sym___inline__] = ACTIONS(2740), + [anon_sym___forceinline] = ACTIONS(2740), + [anon_sym_thread_local] = ACTIONS(2740), + [anon_sym___thread] = ACTIONS(2740), + [anon_sym_CG_EXTERN] = ACTIONS(2740), + [anon_sym_CG_INLINE] = ACTIONS(2740), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2740), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2740), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2740), + [anon_sym_IBOutlet] = ACTIONS(2740), + [anon_sym_IBInspectable] = ACTIONS(2740), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2740), + [anon_sym_NS_INLINE] = ACTIONS(2740), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2740), + [anon_sym_OBJC_EXPORT] = ACTIONS(2740), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2740), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2740), + [anon_sym_const] = ACTIONS(2740), + [anon_sym_constexpr] = ACTIONS(2740), + [anon_sym_volatile] = ACTIONS(2740), + [anon_sym_restrict] = ACTIONS(2740), + [anon_sym___restrict__] = ACTIONS(2740), + [anon_sym__Atomic] = ACTIONS(2740), + [anon_sym__Noreturn] = ACTIONS(2740), + [anon_sym__Nonnull] = ACTIONS(2740), + [anon_sym_nullable] = ACTIONS(2740), + [anon_sym__Complex] = ACTIONS(2740), + [anon_sym__Nullable] = ACTIONS(2740), + [anon_sym__Nullable_result] = ACTIONS(2740), + [anon_sym__Null_unspecified] = ACTIONS(2740), + [anon_sym___autoreleasing] = ACTIONS(2740), + [anon_sym___block] = ACTIONS(2740), + [anon_sym___bridge] = ACTIONS(2740), + [anon_sym___bridge_retained] = ACTIONS(2740), + [anon_sym___bridge_transfer] = ACTIONS(2740), + [anon_sym___complex] = ACTIONS(2740), + [anon_sym___const] = ACTIONS(2740), + [anon_sym___imag] = ACTIONS(2740), + [anon_sym___kindof] = ACTIONS(2740), + [anon_sym___nonnull] = ACTIONS(2740), + [anon_sym___nullable] = ACTIONS(2740), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2740), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2740), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2740), + [anon_sym___real] = ACTIONS(2740), + [anon_sym___strong] = ACTIONS(2740), + [anon_sym___unsafe_unretained] = ACTIONS(2740), + [anon_sym___unused] = ACTIONS(2740), + [anon_sym___weak] = ACTIONS(2740), + [anon_sym_alignas] = ACTIONS(2740), + [anon_sym__Alignas] = ACTIONS(2740), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_enum] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(2740), + [anon_sym_union] = ACTIONS(2740), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2740), + [anon_sym___typeof] = ACTIONS(2740), + [anon_sym_typeof] = ACTIONS(2740), + [aux_sym_preproc_undef_token1] = ACTIONS(2740), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2740), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2740), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2740), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2740), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2740), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2740), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2740), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2740), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2740), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2740), + [anon_sym_NS_AVAILABLE] = ACTIONS(2740), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2740), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2740), + [anon_sym_API_AVAILABLE] = ACTIONS(2740), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2740), + [anon_sym_API_DEPRECATED] = ACTIONS(2740), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2740), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2740), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2740), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2740), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2740), + [anon_sym___deprecated_msg] = ACTIONS(2740), + [anon_sym___deprecated_enum_msg] = ACTIONS(2740), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2740), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2740), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2740), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2740), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2740), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2740), + [anon_sym_ATsynthesize] = ACTIONS(2742), + [anon_sym_ATdynamic] = ACTIONS(2742), + [anon_sym_BOOL] = ACTIONS(2740), + [anon_sym_IMP] = ACTIONS(2740), + [anon_sym_SEL] = ACTIONS(2740), + [anon_sym_Class] = ACTIONS(2740), + [anon_sym_id] = ACTIONS(2740), + }, + [2214] = { + [sym_identifier] = ACTIONS(2664), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token2] = ACTIONS(2664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2664), + [aux_sym_preproc_else_token1] = ACTIONS(2664), + [aux_sym_preproc_elif_token1] = ACTIONS(2664), + [sym_preproc_directive] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym___extension__] = ACTIONS(2664), + [anon_sym_typedef] = ACTIONS(2664), + [anon_sym_extern] = ACTIONS(2664), + [anon_sym___attribute__] = ACTIONS(2664), + [anon_sym___attribute] = ACTIONS(2664), + [anon_sym_noreturn] = ACTIONS(2664), + [anon_sym_LBRACK] = ACTIONS(2666), + [anon_sym___declspec] = ACTIONS(2664), + [anon_sym___cdecl] = ACTIONS(2664), + [anon_sym___clrcall] = ACTIONS(2664), + [anon_sym___stdcall] = ACTIONS(2664), + [anon_sym___fastcall] = ACTIONS(2664), + [anon_sym___thiscall] = ACTIONS(2664), + [anon_sym___vectorcall] = ACTIONS(2664), + [anon_sym_signed] = ACTIONS(2664), + [anon_sym_unsigned] = ACTIONS(2664), + [anon_sym_long] = ACTIONS(2664), + [anon_sym_short] = ACTIONS(2664), + [anon_sym_static] = ACTIONS(2664), + [anon_sym_auto] = ACTIONS(2664), + [anon_sym_register] = ACTIONS(2664), + [anon_sym_inline] = ACTIONS(2664), + [anon_sym___inline] = ACTIONS(2664), + [anon_sym___inline__] = ACTIONS(2664), + [anon_sym___forceinline] = ACTIONS(2664), + [anon_sym_thread_local] = ACTIONS(2664), + [anon_sym___thread] = ACTIONS(2664), + [anon_sym_CG_EXTERN] = ACTIONS(2664), + [anon_sym_CG_INLINE] = ACTIONS(2664), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2664), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2664), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2664), + [anon_sym_IBOutlet] = ACTIONS(2664), + [anon_sym_IBInspectable] = ACTIONS(2664), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2664), + [anon_sym_NS_INLINE] = ACTIONS(2664), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2664), + [anon_sym_OBJC_EXPORT] = ACTIONS(2664), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2664), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2664), + [anon_sym_const] = ACTIONS(2664), + [anon_sym_constexpr] = ACTIONS(2664), + [anon_sym_volatile] = ACTIONS(2664), + [anon_sym_restrict] = ACTIONS(2664), + [anon_sym___restrict__] = ACTIONS(2664), + [anon_sym__Atomic] = ACTIONS(2664), + [anon_sym__Noreturn] = ACTIONS(2664), + [anon_sym__Nonnull] = ACTIONS(2664), + [anon_sym_nullable] = ACTIONS(2664), + [anon_sym__Complex] = ACTIONS(2664), + [anon_sym__Nullable] = ACTIONS(2664), + [anon_sym__Nullable_result] = ACTIONS(2664), + [anon_sym__Null_unspecified] = ACTIONS(2664), + [anon_sym___autoreleasing] = ACTIONS(2664), + [anon_sym___block] = ACTIONS(2664), + [anon_sym___bridge] = ACTIONS(2664), + [anon_sym___bridge_retained] = ACTIONS(2664), + [anon_sym___bridge_transfer] = ACTIONS(2664), + [anon_sym___complex] = ACTIONS(2664), + [anon_sym___const] = ACTIONS(2664), + [anon_sym___imag] = ACTIONS(2664), + [anon_sym___kindof] = ACTIONS(2664), + [anon_sym___nonnull] = ACTIONS(2664), + [anon_sym___nullable] = ACTIONS(2664), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2664), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2664), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2664), + [anon_sym___real] = ACTIONS(2664), + [anon_sym___strong] = ACTIONS(2664), + [anon_sym___unsafe_unretained] = ACTIONS(2664), + [anon_sym___unused] = ACTIONS(2664), + [anon_sym___weak] = ACTIONS(2664), + [anon_sym_alignas] = ACTIONS(2664), + [anon_sym__Alignas] = ACTIONS(2664), + [sym_primitive_type] = ACTIONS(2664), + [anon_sym_enum] = ACTIONS(2664), + [anon_sym_struct] = ACTIONS(2664), + [anon_sym_union] = ACTIONS(2664), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2664), + [anon_sym___typeof] = ACTIONS(2664), + [anon_sym_typeof] = ACTIONS(2664), + [aux_sym_preproc_undef_token1] = ACTIONS(2664), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2664), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2664), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2664), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2664), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2664), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2664), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2664), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2664), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2664), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2664), + [anon_sym_NS_AVAILABLE] = ACTIONS(2664), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2664), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2664), + [anon_sym_API_AVAILABLE] = ACTIONS(2664), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2664), + [anon_sym_API_DEPRECATED] = ACTIONS(2664), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2664), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2664), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2664), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2664), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2664), + [anon_sym___deprecated_msg] = ACTIONS(2664), + [anon_sym___deprecated_enum_msg] = ACTIONS(2664), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2664), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2664), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2664), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2664), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2664), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2664), + [anon_sym_ATsynthesize] = ACTIONS(2666), + [anon_sym_ATdynamic] = ACTIONS(2666), + [anon_sym_BOOL] = ACTIONS(2664), + [anon_sym_IMP] = ACTIONS(2664), + [anon_sym_SEL] = ACTIONS(2664), + [anon_sym_Class] = ACTIONS(2664), + [anon_sym_id] = ACTIONS(2664), + }, + [2215] = { + [sym_identifier] = ACTIONS(2612), + [aux_sym_preproc_def_token1] = ACTIONS(2612), + [aux_sym_preproc_if_token1] = ACTIONS(2612), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2612), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2612), + [sym_preproc_directive] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2614), + [anon_sym_PLUS] = ACTIONS(2614), + [anon_sym___extension__] = ACTIONS(2612), + [anon_sym_typedef] = ACTIONS(2612), + [anon_sym_extern] = ACTIONS(2612), + [anon_sym___attribute__] = ACTIONS(2612), + [anon_sym___attribute] = ACTIONS(2612), + [anon_sym_noreturn] = ACTIONS(2612), + [anon_sym_LBRACK] = ACTIONS(2614), + [anon_sym___declspec] = ACTIONS(2612), + [anon_sym___cdecl] = ACTIONS(2612), + [anon_sym___clrcall] = ACTIONS(2612), + [anon_sym___stdcall] = ACTIONS(2612), + [anon_sym___fastcall] = ACTIONS(2612), + [anon_sym___thiscall] = ACTIONS(2612), + [anon_sym___vectorcall] = ACTIONS(2612), + [anon_sym_RBRACE] = ACTIONS(2614), + [anon_sym_signed] = ACTIONS(2612), + [anon_sym_unsigned] = ACTIONS(2612), + [anon_sym_long] = ACTIONS(2612), + [anon_sym_short] = ACTIONS(2612), + [anon_sym_static] = ACTIONS(2612), + [anon_sym_auto] = ACTIONS(2612), + [anon_sym_register] = ACTIONS(2612), + [anon_sym_inline] = ACTIONS(2612), + [anon_sym___inline] = ACTIONS(2612), + [anon_sym___inline__] = ACTIONS(2612), + [anon_sym___forceinline] = ACTIONS(2612), + [anon_sym_thread_local] = ACTIONS(2612), + [anon_sym___thread] = ACTIONS(2612), + [anon_sym_CG_EXTERN] = ACTIONS(2612), + [anon_sym_CG_INLINE] = ACTIONS(2612), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2612), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2612), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2612), + [anon_sym_IBOutlet] = ACTIONS(2612), + [anon_sym_IBInspectable] = ACTIONS(2612), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2612), + [anon_sym_NS_INLINE] = ACTIONS(2612), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2612), + [anon_sym_OBJC_EXPORT] = ACTIONS(2612), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2612), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2612), + [anon_sym_const] = ACTIONS(2612), + [anon_sym_constexpr] = ACTIONS(2612), + [anon_sym_volatile] = ACTIONS(2612), + [anon_sym_restrict] = ACTIONS(2612), + [anon_sym___restrict__] = ACTIONS(2612), + [anon_sym__Atomic] = ACTIONS(2612), + [anon_sym__Noreturn] = ACTIONS(2612), + [anon_sym__Nonnull] = ACTIONS(2612), + [anon_sym_nullable] = ACTIONS(2612), + [anon_sym__Complex] = ACTIONS(2612), + [anon_sym__Nullable] = ACTIONS(2612), + [anon_sym__Nullable_result] = ACTIONS(2612), + [anon_sym__Null_unspecified] = ACTIONS(2612), + [anon_sym___autoreleasing] = ACTIONS(2612), + [anon_sym___block] = ACTIONS(2612), + [anon_sym___bridge] = ACTIONS(2612), + [anon_sym___bridge_retained] = ACTIONS(2612), + [anon_sym___bridge_transfer] = ACTIONS(2612), + [anon_sym___complex] = ACTIONS(2612), + [anon_sym___const] = ACTIONS(2612), + [anon_sym___imag] = ACTIONS(2612), + [anon_sym___kindof] = ACTIONS(2612), + [anon_sym___nonnull] = ACTIONS(2612), + [anon_sym___nullable] = ACTIONS(2612), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2612), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2612), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2612), + [anon_sym___real] = ACTIONS(2612), + [anon_sym___strong] = ACTIONS(2612), + [anon_sym___unsafe_unretained] = ACTIONS(2612), + [anon_sym___unused] = ACTIONS(2612), + [anon_sym___weak] = ACTIONS(2612), + [anon_sym_alignas] = ACTIONS(2612), + [anon_sym__Alignas] = ACTIONS(2612), + [sym_primitive_type] = ACTIONS(2612), + [anon_sym_enum] = ACTIONS(2612), + [anon_sym_struct] = ACTIONS(2612), + [anon_sym_union] = ACTIONS(2612), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2612), + [anon_sym___typeof] = ACTIONS(2612), + [anon_sym_typeof] = ACTIONS(2612), + [aux_sym_preproc_undef_token1] = ACTIONS(2612), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2612), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2612), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2612), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2612), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2612), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2612), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2612), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2612), + [anon_sym_NS_AVAILABLE] = ACTIONS(2612), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2612), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_API_AVAILABLE] = ACTIONS(2612), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_API_DEPRECATED] = ACTIONS(2612), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2612), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2612), + [anon_sym___deprecated_msg] = ACTIONS(2612), + [anon_sym___deprecated_enum_msg] = ACTIONS(2612), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2612), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2612), + [anon_sym_ATend] = ACTIONS(2614), + [anon_sym_ATsynthesize] = ACTIONS(2614), + [anon_sym_ATdynamic] = ACTIONS(2614), + [anon_sym_BOOL] = ACTIONS(2612), + [anon_sym_IMP] = ACTIONS(2612), + [anon_sym_SEL] = ACTIONS(2612), + [anon_sym_Class] = ACTIONS(2612), + [anon_sym_id] = ACTIONS(2612), + [anon_sym_ATdefs] = ACTIONS(2614), + }, + [2216] = { + [sym_identifier] = ACTIONS(2346), + [aux_sym_preproc_def_token1] = ACTIONS(2346), + [aux_sym_preproc_if_token1] = ACTIONS(2346), + [aux_sym_preproc_if_token2] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2346), + [sym_preproc_directive] = ACTIONS(2346), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_PLUS] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym___extension__] = ACTIONS(2346), + [anon_sym_typedef] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym___attribute__] = ACTIONS(2346), + [anon_sym___attribute] = ACTIONS(2346), + [anon_sym_noreturn] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym___declspec] = ACTIONS(2346), + [anon_sym___cdecl] = ACTIONS(2346), + [anon_sym___clrcall] = ACTIONS(2346), + [anon_sym___stdcall] = ACTIONS(2346), + [anon_sym___fastcall] = ACTIONS(2346), + [anon_sym___thiscall] = ACTIONS(2346), + [anon_sym___vectorcall] = ACTIONS(2346), + [anon_sym_signed] = ACTIONS(2346), + [anon_sym_unsigned] = ACTIONS(2346), + [anon_sym_long] = ACTIONS(2346), + [anon_sym_short] = ACTIONS(2346), + [anon_sym_static] = ACTIONS(2346), + [anon_sym_auto] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2346), + [anon_sym_inline] = ACTIONS(2346), + [anon_sym___inline] = ACTIONS(2346), + [anon_sym___inline__] = ACTIONS(2346), + [anon_sym___forceinline] = ACTIONS(2346), + [anon_sym_thread_local] = ACTIONS(2346), + [anon_sym___thread] = ACTIONS(2346), + [anon_sym_CG_EXTERN] = ACTIONS(2346), + [anon_sym_CG_INLINE] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2346), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2346), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2346), + [anon_sym_IBOutlet] = ACTIONS(2346), + [anon_sym_IBInspectable] = ACTIONS(2346), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2346), + [anon_sym_NS_INLINE] = ACTIONS(2346), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2346), + [anon_sym_OBJC_EXPORT] = ACTIONS(2346), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_constexpr] = ACTIONS(2346), + [anon_sym_volatile] = ACTIONS(2346), + [anon_sym_restrict] = ACTIONS(2346), + [anon_sym___restrict__] = ACTIONS(2346), + [anon_sym__Atomic] = ACTIONS(2346), + [anon_sym__Noreturn] = ACTIONS(2346), + [anon_sym__Nonnull] = ACTIONS(2346), + [anon_sym_nullable] = ACTIONS(2346), + [anon_sym__Complex] = ACTIONS(2346), + [anon_sym__Nullable] = ACTIONS(2346), + [anon_sym__Nullable_result] = ACTIONS(2346), + [anon_sym__Null_unspecified] = ACTIONS(2346), + [anon_sym___autoreleasing] = ACTIONS(2346), + [anon_sym___block] = ACTIONS(2346), + [anon_sym___bridge] = ACTIONS(2346), + [anon_sym___bridge_retained] = ACTIONS(2346), + [anon_sym___bridge_transfer] = ACTIONS(2346), + [anon_sym___complex] = ACTIONS(2346), + [anon_sym___const] = ACTIONS(2346), + [anon_sym___imag] = ACTIONS(2346), + [anon_sym___kindof] = ACTIONS(2346), + [anon_sym___nonnull] = ACTIONS(2346), + [anon_sym___nullable] = ACTIONS(2346), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2346), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2346), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2346), + [anon_sym___real] = ACTIONS(2346), + [anon_sym___strong] = ACTIONS(2346), + [anon_sym___unsafe_unretained] = ACTIONS(2346), + [anon_sym___unused] = ACTIONS(2346), + [anon_sym___weak] = ACTIONS(2346), + [anon_sym_alignas] = ACTIONS(2346), + [anon_sym__Alignas] = ACTIONS(2346), + [sym_primitive_type] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2346), + [anon_sym___typeof] = ACTIONS(2346), + [anon_sym_typeof] = ACTIONS(2346), + [aux_sym_preproc_undef_token1] = ACTIONS(2346), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2346), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2346), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2346), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2346), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2346), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2346), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE] = ACTIONS(2346), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2346), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_API_AVAILABLE] = ACTIONS(2346), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_API_DEPRECATED] = ACTIONS(2346), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2346), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2346), + [anon_sym___deprecated_msg] = ACTIONS(2346), + [anon_sym___deprecated_enum_msg] = ACTIONS(2346), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2346), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2346), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2346), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2346), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2346), + [anon_sym_ATsynthesize] = ACTIONS(2348), + [anon_sym_ATdynamic] = ACTIONS(2348), + [anon_sym_ATproperty] = ACTIONS(2348), + [anon_sym_BOOL] = ACTIONS(2346), + [anon_sym_IMP] = ACTIONS(2346), + [anon_sym_SEL] = ACTIONS(2346), + [anon_sym_Class] = ACTIONS(2346), + [anon_sym_id] = ACTIONS(2346), + }, + [2217] = { + [sym_identifier] = ACTIONS(2364), + [aux_sym_preproc_def_token1] = ACTIONS(2364), + [aux_sym_preproc_if_token1] = ACTIONS(2364), + [aux_sym_preproc_if_token2] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2364), + [sym_preproc_directive] = ACTIONS(2364), + [anon_sym_DASH] = ACTIONS(2366), + [anon_sym_PLUS] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_typedef] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym___attribute__] = ACTIONS(2364), + [anon_sym___attribute] = ACTIONS(2364), + [anon_sym_noreturn] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym___declspec] = ACTIONS(2364), + [anon_sym___cdecl] = ACTIONS(2364), + [anon_sym___clrcall] = ACTIONS(2364), + [anon_sym___stdcall] = ACTIONS(2364), + [anon_sym___fastcall] = ACTIONS(2364), + [anon_sym___thiscall] = ACTIONS(2364), + [anon_sym___vectorcall] = ACTIONS(2364), + [anon_sym_signed] = ACTIONS(2364), + [anon_sym_unsigned] = ACTIONS(2364), + [anon_sym_long] = ACTIONS(2364), + [anon_sym_short] = ACTIONS(2364), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_auto] = ACTIONS(2364), + [anon_sym_register] = ACTIONS(2364), + [anon_sym_inline] = ACTIONS(2364), + [anon_sym___inline] = ACTIONS(2364), + [anon_sym___inline__] = ACTIONS(2364), + [anon_sym___forceinline] = ACTIONS(2364), + [anon_sym_thread_local] = ACTIONS(2364), + [anon_sym___thread] = ACTIONS(2364), + [anon_sym_CG_EXTERN] = ACTIONS(2364), + [anon_sym_CG_INLINE] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2364), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2364), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2364), + [anon_sym_IBOutlet] = ACTIONS(2364), + [anon_sym_IBInspectable] = ACTIONS(2364), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2364), + [anon_sym_NS_INLINE] = ACTIONS(2364), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2364), + [anon_sym_OBJC_EXPORT] = ACTIONS(2364), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [anon_sym_constexpr] = ACTIONS(2364), + [anon_sym_volatile] = ACTIONS(2364), + [anon_sym_restrict] = ACTIONS(2364), + [anon_sym___restrict__] = ACTIONS(2364), + [anon_sym__Atomic] = ACTIONS(2364), + [anon_sym__Noreturn] = ACTIONS(2364), + [anon_sym__Nonnull] = ACTIONS(2364), + [anon_sym_nullable] = ACTIONS(2364), + [anon_sym__Complex] = ACTIONS(2364), + [anon_sym__Nullable] = ACTIONS(2364), + [anon_sym__Nullable_result] = ACTIONS(2364), + [anon_sym__Null_unspecified] = ACTIONS(2364), + [anon_sym___autoreleasing] = ACTIONS(2364), + [anon_sym___block] = ACTIONS(2364), + [anon_sym___bridge] = ACTIONS(2364), + [anon_sym___bridge_retained] = ACTIONS(2364), + [anon_sym___bridge_transfer] = ACTIONS(2364), + [anon_sym___complex] = ACTIONS(2364), + [anon_sym___const] = ACTIONS(2364), + [anon_sym___imag] = ACTIONS(2364), + [anon_sym___kindof] = ACTIONS(2364), + [anon_sym___nonnull] = ACTIONS(2364), + [anon_sym___nullable] = ACTIONS(2364), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2364), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2364), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2364), + [anon_sym___real] = ACTIONS(2364), + [anon_sym___strong] = ACTIONS(2364), + [anon_sym___unsafe_unretained] = ACTIONS(2364), + [anon_sym___unused] = ACTIONS(2364), + [anon_sym___weak] = ACTIONS(2364), + [anon_sym_alignas] = ACTIONS(2364), + [anon_sym__Alignas] = ACTIONS(2364), + [sym_primitive_type] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(2364), + [anon_sym_union] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2364), + [anon_sym___typeof] = ACTIONS(2364), + [anon_sym_typeof] = ACTIONS(2364), + [aux_sym_preproc_undef_token1] = ACTIONS(2364), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2364), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2364), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2364), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2364), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2364), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2364), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE] = ACTIONS(2364), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2364), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_API_AVAILABLE] = ACTIONS(2364), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_API_DEPRECATED] = ACTIONS(2364), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2364), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2364), + [anon_sym___deprecated_msg] = ACTIONS(2364), + [anon_sym___deprecated_enum_msg] = ACTIONS(2364), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2364), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2364), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2364), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2364), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2364), + [anon_sym_ATsynthesize] = ACTIONS(2366), + [anon_sym_ATdynamic] = ACTIONS(2366), + [anon_sym_ATproperty] = ACTIONS(2366), + [anon_sym_BOOL] = ACTIONS(2364), + [anon_sym_IMP] = ACTIONS(2364), + [anon_sym_SEL] = ACTIONS(2364), + [anon_sym_Class] = ACTIONS(2364), + [anon_sym_id] = ACTIONS(2364), + }, + [2218] = { + [sym_identifier] = ACTIONS(2748), + [aux_sym_preproc_def_token1] = ACTIONS(2748), + [aux_sym_preproc_if_token1] = ACTIONS(2748), + [aux_sym_preproc_if_token2] = ACTIONS(2748), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2748), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2748), + [aux_sym_preproc_else_token1] = ACTIONS(2748), + [aux_sym_preproc_elif_token1] = ACTIONS(2748), + [sym_preproc_directive] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2750), + [anon_sym_PLUS] = ACTIONS(2750), + [anon_sym___extension__] = ACTIONS(2748), + [anon_sym_typedef] = ACTIONS(2748), + [anon_sym_extern] = ACTIONS(2748), + [anon_sym___attribute__] = ACTIONS(2748), + [anon_sym___attribute] = ACTIONS(2748), + [anon_sym_noreturn] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2750), + [anon_sym___declspec] = ACTIONS(2748), + [anon_sym___cdecl] = ACTIONS(2748), + [anon_sym___clrcall] = ACTIONS(2748), + [anon_sym___stdcall] = ACTIONS(2748), + [anon_sym___fastcall] = ACTIONS(2748), + [anon_sym___thiscall] = ACTIONS(2748), + [anon_sym___vectorcall] = ACTIONS(2748), + [anon_sym_signed] = ACTIONS(2748), + [anon_sym_unsigned] = ACTIONS(2748), + [anon_sym_long] = ACTIONS(2748), + [anon_sym_short] = ACTIONS(2748), + [anon_sym_static] = ACTIONS(2748), + [anon_sym_auto] = ACTIONS(2748), + [anon_sym_register] = ACTIONS(2748), + [anon_sym_inline] = ACTIONS(2748), + [anon_sym___inline] = ACTIONS(2748), + [anon_sym___inline__] = ACTIONS(2748), + [anon_sym___forceinline] = ACTIONS(2748), + [anon_sym_thread_local] = ACTIONS(2748), + [anon_sym___thread] = ACTIONS(2748), + [anon_sym_CG_EXTERN] = ACTIONS(2748), + [anon_sym_CG_INLINE] = ACTIONS(2748), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2748), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2748), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2748), + [anon_sym_IBOutlet] = ACTIONS(2748), + [anon_sym_IBInspectable] = ACTIONS(2748), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2748), + [anon_sym_NS_INLINE] = ACTIONS(2748), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2748), + [anon_sym_OBJC_EXPORT] = ACTIONS(2748), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2748), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2748), + [anon_sym_constexpr] = ACTIONS(2748), + [anon_sym_volatile] = ACTIONS(2748), + [anon_sym_restrict] = ACTIONS(2748), + [anon_sym___restrict__] = ACTIONS(2748), + [anon_sym__Atomic] = ACTIONS(2748), + [anon_sym__Noreturn] = ACTIONS(2748), + [anon_sym__Nonnull] = ACTIONS(2748), + [anon_sym_nullable] = ACTIONS(2748), + [anon_sym__Complex] = ACTIONS(2748), + [anon_sym__Nullable] = ACTIONS(2748), + [anon_sym__Nullable_result] = ACTIONS(2748), + [anon_sym__Null_unspecified] = ACTIONS(2748), + [anon_sym___autoreleasing] = ACTIONS(2748), + [anon_sym___block] = ACTIONS(2748), + [anon_sym___bridge] = ACTIONS(2748), + [anon_sym___bridge_retained] = ACTIONS(2748), + [anon_sym___bridge_transfer] = ACTIONS(2748), + [anon_sym___complex] = ACTIONS(2748), + [anon_sym___const] = ACTIONS(2748), + [anon_sym___imag] = ACTIONS(2748), + [anon_sym___kindof] = ACTIONS(2748), + [anon_sym___nonnull] = ACTIONS(2748), + [anon_sym___nullable] = ACTIONS(2748), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2748), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2748), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2748), + [anon_sym___real] = ACTIONS(2748), + [anon_sym___strong] = ACTIONS(2748), + [anon_sym___unsafe_unretained] = ACTIONS(2748), + [anon_sym___unused] = ACTIONS(2748), + [anon_sym___weak] = ACTIONS(2748), + [anon_sym_alignas] = ACTIONS(2748), + [anon_sym__Alignas] = ACTIONS(2748), + [sym_primitive_type] = ACTIONS(2748), + [anon_sym_enum] = ACTIONS(2748), + [anon_sym_struct] = ACTIONS(2748), + [anon_sym_union] = ACTIONS(2748), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2748), + [anon_sym___typeof] = ACTIONS(2748), + [anon_sym_typeof] = ACTIONS(2748), + [aux_sym_preproc_undef_token1] = ACTIONS(2748), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2748), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2748), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2748), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2748), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2748), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2748), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2748), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2748), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2748), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2748), + [anon_sym_NS_AVAILABLE] = ACTIONS(2748), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2748), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2748), + [anon_sym_API_AVAILABLE] = ACTIONS(2748), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2748), + [anon_sym_API_DEPRECATED] = ACTIONS(2748), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2748), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2748), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2748), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2748), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2748), + [anon_sym___deprecated_msg] = ACTIONS(2748), + [anon_sym___deprecated_enum_msg] = ACTIONS(2748), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2748), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2748), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2748), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2748), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2748), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2748), + [anon_sym_ATsynthesize] = ACTIONS(2750), + [anon_sym_ATdynamic] = ACTIONS(2750), + [anon_sym_BOOL] = ACTIONS(2748), + [anon_sym_IMP] = ACTIONS(2748), + [anon_sym_SEL] = ACTIONS(2748), + [anon_sym_Class] = ACTIONS(2748), + [anon_sym_id] = ACTIONS(2748), + }, + [2219] = { + [sym_identifier] = ACTIONS(5431), + [aux_sym_preproc_def_token1] = ACTIONS(5431), + [aux_sym_preproc_if_token1] = ACTIONS(5431), + [aux_sym_preproc_if_token2] = ACTIONS(5431), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5431), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5431), + [aux_sym_preproc_else_token1] = ACTIONS(5431), + [aux_sym_preproc_elif_token1] = ACTIONS(5431), + [sym_preproc_directive] = ACTIONS(5431), + [anon_sym_DASH] = ACTIONS(5433), + [anon_sym_PLUS] = ACTIONS(5433), + [anon_sym___extension__] = ACTIONS(5431), + [anon_sym_typedef] = ACTIONS(5431), + [anon_sym_extern] = ACTIONS(5431), + [anon_sym___attribute__] = ACTIONS(5431), + [anon_sym___attribute] = ACTIONS(5431), + [anon_sym_noreturn] = ACTIONS(5431), + [anon_sym_LBRACK] = ACTIONS(5433), + [anon_sym___declspec] = ACTIONS(5431), + [anon_sym___cdecl] = ACTIONS(5431), + [anon_sym___clrcall] = ACTIONS(5431), + [anon_sym___stdcall] = ACTIONS(5431), + [anon_sym___fastcall] = ACTIONS(5431), + [anon_sym___thiscall] = ACTIONS(5431), + [anon_sym___vectorcall] = ACTIONS(5431), + [anon_sym_signed] = ACTIONS(5431), + [anon_sym_unsigned] = ACTIONS(5431), + [anon_sym_long] = ACTIONS(5431), + [anon_sym_short] = ACTIONS(5431), + [anon_sym_static] = ACTIONS(5431), + [anon_sym_auto] = ACTIONS(5431), + [anon_sym_register] = ACTIONS(5431), + [anon_sym_inline] = ACTIONS(5431), + [anon_sym___inline] = ACTIONS(5431), + [anon_sym___inline__] = ACTIONS(5431), + [anon_sym___forceinline] = ACTIONS(5431), + [anon_sym_thread_local] = ACTIONS(5431), + [anon_sym___thread] = ACTIONS(5431), + [anon_sym_CG_EXTERN] = ACTIONS(5431), + [anon_sym_CG_INLINE] = ACTIONS(5431), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5431), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5431), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5431), + [anon_sym_IBOutlet] = ACTIONS(5431), + [anon_sym_IBInspectable] = ACTIONS(5431), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5431), + [anon_sym_NS_INLINE] = ACTIONS(5431), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5431), + [anon_sym_OBJC_EXPORT] = ACTIONS(5431), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5431), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5431), + [anon_sym_const] = ACTIONS(5431), + [anon_sym_constexpr] = ACTIONS(5431), + [anon_sym_volatile] = ACTIONS(5431), + [anon_sym_restrict] = ACTIONS(5431), + [anon_sym___restrict__] = ACTIONS(5431), + [anon_sym__Atomic] = ACTIONS(5431), + [anon_sym__Noreturn] = ACTIONS(5431), + [anon_sym__Nonnull] = ACTIONS(5431), + [anon_sym_nullable] = ACTIONS(5431), + [anon_sym__Complex] = ACTIONS(5431), + [anon_sym__Nullable] = ACTIONS(5431), + [anon_sym__Nullable_result] = ACTIONS(5431), + [anon_sym__Null_unspecified] = ACTIONS(5431), + [anon_sym___autoreleasing] = ACTIONS(5431), + [anon_sym___block] = ACTIONS(5431), + [anon_sym___bridge] = ACTIONS(5431), + [anon_sym___bridge_retained] = ACTIONS(5431), + [anon_sym___bridge_transfer] = ACTIONS(5431), + [anon_sym___complex] = ACTIONS(5431), + [anon_sym___const] = ACTIONS(5431), + [anon_sym___imag] = ACTIONS(5431), + [anon_sym___kindof] = ACTIONS(5431), + [anon_sym___nonnull] = ACTIONS(5431), + [anon_sym___nullable] = ACTIONS(5431), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5431), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5431), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5431), + [anon_sym___real] = ACTIONS(5431), + [anon_sym___strong] = ACTIONS(5431), + [anon_sym___unsafe_unretained] = ACTIONS(5431), + [anon_sym___unused] = ACTIONS(5431), + [anon_sym___weak] = ACTIONS(5431), + [anon_sym_alignas] = ACTIONS(5431), + [anon_sym__Alignas] = ACTIONS(5431), + [sym_primitive_type] = ACTIONS(5431), + [anon_sym_enum] = ACTIONS(5431), + [anon_sym_struct] = ACTIONS(5431), + [anon_sym_union] = ACTIONS(5431), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5431), + [anon_sym___typeof] = ACTIONS(5431), + [anon_sym_typeof] = ACTIONS(5431), + [aux_sym_preproc_undef_token1] = ACTIONS(5431), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5431), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5431), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5431), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5431), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5431), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5431), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5431), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5431), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5431), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5431), + [anon_sym_NS_AVAILABLE] = ACTIONS(5431), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5431), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5431), + [anon_sym_API_AVAILABLE] = ACTIONS(5431), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5431), + [anon_sym_API_DEPRECATED] = ACTIONS(5431), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5431), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5431), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5431), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5431), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5431), + [anon_sym___deprecated_msg] = ACTIONS(5431), + [anon_sym___deprecated_enum_msg] = ACTIONS(5431), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5431), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5431), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5431), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5431), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5431), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5431), + [anon_sym_ATsynthesize] = ACTIONS(5433), + [anon_sym_ATdynamic] = ACTIONS(5433), + [anon_sym_BOOL] = ACTIONS(5431), + [anon_sym_IMP] = ACTIONS(5431), + [anon_sym_SEL] = ACTIONS(5431), + [anon_sym_Class] = ACTIONS(5431), + [anon_sym_id] = ACTIONS(5431), + }, + [2220] = { + [sym__declaration_modifiers] = STATE(2581), + [sym_attribute_specifier] = STATE(2581), + [sym_attribute_declaration] = STATE(2581), + [sym_ms_declspec_modifier] = STATE(2581), + [sym_ms_based_modifier] = STATE(6199), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2594), + [sym__declarator] = STATE(5024), + [sym__abstract_declarator] = STATE(5020), + [sym_parenthesized_declarator] = STATE(4011), + [sym_abstract_parenthesized_declarator] = STATE(4894), + [sym_pointer_declarator] = STATE(4011), + [sym_abstract_pointer_declarator] = STATE(4894), + [sym_function_declarator] = STATE(4011), + [sym_abstract_function_declarator] = STATE(4894), + [sym_array_declarator] = STATE(4011), + [sym_abstract_array_declarator] = STATE(4894), + [sym_storage_class_specifier] = STATE(2581), + [sym_type_qualifier] = STATE(2581), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(4295), + [sym_availability_attribute_specifier] = STATE(2581), + [sym_block_pointer_declarator] = STATE(4011), + [sym_abstract_block_pointer_declarator] = STATE(4894), + [aux_sym__declaration_specifiers_repeat1] = STATE(2581), + [aux_sym_pointer_declarator_repeat1] = STATE(2594), + [sym_identifier] = ACTIONS(5281), + [anon_sym_RPAREN] = ACTIONS(5283), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4170), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2221] = { + [sym_identifier] = ACTIONS(2350), + [aux_sym_preproc_def_token1] = ACTIONS(2350), + [aux_sym_preproc_if_token1] = ACTIONS(2350), + [aux_sym_preproc_if_token2] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2350), + [sym_preproc_directive] = ACTIONS(2350), + [anon_sym_DASH] = ACTIONS(2352), + [anon_sym_PLUS] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2352), + [anon_sym___extension__] = ACTIONS(2350), + [anon_sym_typedef] = ACTIONS(2350), + [anon_sym_extern] = ACTIONS(2350), + [anon_sym___attribute__] = ACTIONS(2350), + [anon_sym___attribute] = ACTIONS(2350), + [anon_sym_noreturn] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2352), + [anon_sym___declspec] = ACTIONS(2350), + [anon_sym___cdecl] = ACTIONS(2350), + [anon_sym___clrcall] = ACTIONS(2350), + [anon_sym___stdcall] = ACTIONS(2350), + [anon_sym___fastcall] = ACTIONS(2350), + [anon_sym___thiscall] = ACTIONS(2350), + [anon_sym___vectorcall] = ACTIONS(2350), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(2350), + [anon_sym_auto] = ACTIONS(2350), + [anon_sym_register] = ACTIONS(2350), + [anon_sym_inline] = ACTIONS(2350), + [anon_sym___inline] = ACTIONS(2350), + [anon_sym___inline__] = ACTIONS(2350), + [anon_sym___forceinline] = ACTIONS(2350), + [anon_sym_thread_local] = ACTIONS(2350), + [anon_sym___thread] = ACTIONS(2350), + [anon_sym_CG_EXTERN] = ACTIONS(2350), + [anon_sym_CG_INLINE] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2350), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2350), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2350), + [anon_sym_IBOutlet] = ACTIONS(2350), + [anon_sym_IBInspectable] = ACTIONS(2350), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2350), + [anon_sym_NS_INLINE] = ACTIONS(2350), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2350), + [anon_sym_OBJC_EXPORT] = ACTIONS(2350), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2350), + [anon_sym_const] = ACTIONS(2350), + [anon_sym_constexpr] = ACTIONS(2350), + [anon_sym_volatile] = ACTIONS(2350), + [anon_sym_restrict] = ACTIONS(2350), + [anon_sym___restrict__] = ACTIONS(2350), + [anon_sym__Atomic] = ACTIONS(2350), + [anon_sym__Noreturn] = ACTIONS(2350), + [anon_sym__Nonnull] = ACTIONS(2350), + [anon_sym_nullable] = ACTIONS(2350), + [anon_sym__Complex] = ACTIONS(2350), + [anon_sym__Nullable] = ACTIONS(2350), + [anon_sym__Nullable_result] = ACTIONS(2350), + [anon_sym__Null_unspecified] = ACTIONS(2350), + [anon_sym___autoreleasing] = ACTIONS(2350), + [anon_sym___block] = ACTIONS(2350), + [anon_sym___bridge] = ACTIONS(2350), + [anon_sym___bridge_retained] = ACTIONS(2350), + [anon_sym___bridge_transfer] = ACTIONS(2350), + [anon_sym___complex] = ACTIONS(2350), + [anon_sym___const] = ACTIONS(2350), + [anon_sym___imag] = ACTIONS(2350), + [anon_sym___kindof] = ACTIONS(2350), + [anon_sym___nonnull] = ACTIONS(2350), + [anon_sym___nullable] = ACTIONS(2350), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2350), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2350), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2350), + [anon_sym___real] = ACTIONS(2350), + [anon_sym___strong] = ACTIONS(2350), + [anon_sym___unsafe_unretained] = ACTIONS(2350), + [anon_sym___unused] = ACTIONS(2350), + [anon_sym___weak] = ACTIONS(2350), + [anon_sym_alignas] = ACTIONS(2350), + [anon_sym__Alignas] = ACTIONS(2350), + [sym_primitive_type] = ACTIONS(2350), + [anon_sym_enum] = ACTIONS(2350), + [anon_sym_struct] = ACTIONS(2350), + [anon_sym_union] = ACTIONS(2350), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2350), + [anon_sym___typeof] = ACTIONS(2350), + [anon_sym_typeof] = ACTIONS(2350), + [aux_sym_preproc_undef_token1] = ACTIONS(2350), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2350), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2350), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2350), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2350), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2350), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2350), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE] = ACTIONS(2350), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2350), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_API_AVAILABLE] = ACTIONS(2350), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_API_DEPRECATED] = ACTIONS(2350), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2350), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2350), + [anon_sym___deprecated_msg] = ACTIONS(2350), + [anon_sym___deprecated_enum_msg] = ACTIONS(2350), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2350), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2350), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2350), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2350), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2350), + [anon_sym_ATsynthesize] = ACTIONS(2352), + [anon_sym_ATdynamic] = ACTIONS(2352), + [anon_sym_ATproperty] = ACTIONS(2352), + [anon_sym_BOOL] = ACTIONS(2350), + [anon_sym_IMP] = ACTIONS(2350), + [anon_sym_SEL] = ACTIONS(2350), + [anon_sym_Class] = ACTIONS(2350), + [anon_sym_id] = ACTIONS(2350), + }, + [2222] = { + [sym_identifier] = ACTIONS(2864), + [aux_sym_preproc_def_token1] = ACTIONS(2864), + [aux_sym_preproc_if_token1] = ACTIONS(2864), + [aux_sym_preproc_if_token2] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2864), + [sym_preproc_directive] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2866), + [anon_sym_PLUS] = ACTIONS(2866), + [anon_sym___extension__] = ACTIONS(2864), + [anon_sym_typedef] = ACTIONS(2864), + [anon_sym_extern] = ACTIONS(2864), + [anon_sym___attribute__] = ACTIONS(2864), + [anon_sym___attribute] = ACTIONS(2864), + [anon_sym_noreturn] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2866), + [anon_sym___declspec] = ACTIONS(2864), + [anon_sym___cdecl] = ACTIONS(2864), + [anon_sym___clrcall] = ACTIONS(2864), + [anon_sym___stdcall] = ACTIONS(2864), + [anon_sym___fastcall] = ACTIONS(2864), + [anon_sym___thiscall] = ACTIONS(2864), + [anon_sym___vectorcall] = ACTIONS(2864), + [anon_sym_signed] = ACTIONS(2864), + [anon_sym_unsigned] = ACTIONS(2864), + [anon_sym_long] = ACTIONS(2864), + [anon_sym_short] = ACTIONS(2864), + [anon_sym_static] = ACTIONS(2864), + [anon_sym_auto] = ACTIONS(2864), + [anon_sym_register] = ACTIONS(2864), + [anon_sym_inline] = ACTIONS(2864), + [anon_sym___inline] = ACTIONS(2864), + [anon_sym___inline__] = ACTIONS(2864), + [anon_sym___forceinline] = ACTIONS(2864), + [anon_sym_thread_local] = ACTIONS(2864), + [anon_sym___thread] = ACTIONS(2864), + [anon_sym_CG_EXTERN] = ACTIONS(2864), + [anon_sym_CG_INLINE] = ACTIONS(2864), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2864), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2864), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2864), + [anon_sym_IBOutlet] = ACTIONS(2864), + [anon_sym_IBInspectable] = ACTIONS(2864), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2864), + [anon_sym_NS_INLINE] = ACTIONS(2864), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2864), + [anon_sym_OBJC_EXPORT] = ACTIONS(2864), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2864), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2864), + [anon_sym_const] = ACTIONS(2864), + [anon_sym_constexpr] = ACTIONS(2864), + [anon_sym_volatile] = ACTIONS(2864), + [anon_sym_restrict] = ACTIONS(2864), + [anon_sym___restrict__] = ACTIONS(2864), + [anon_sym__Atomic] = ACTIONS(2864), + [anon_sym__Noreturn] = ACTIONS(2864), + [anon_sym__Nonnull] = ACTIONS(2864), + [anon_sym_nullable] = ACTIONS(2864), + [anon_sym__Complex] = ACTIONS(2864), + [anon_sym__Nullable] = ACTIONS(2864), + [anon_sym__Nullable_result] = ACTIONS(2864), + [anon_sym__Null_unspecified] = ACTIONS(2864), + [anon_sym___autoreleasing] = ACTIONS(2864), + [anon_sym___block] = ACTIONS(2864), + [anon_sym___bridge] = ACTIONS(2864), + [anon_sym___bridge_retained] = ACTIONS(2864), + [anon_sym___bridge_transfer] = ACTIONS(2864), + [anon_sym___complex] = ACTIONS(2864), + [anon_sym___const] = ACTIONS(2864), + [anon_sym___imag] = ACTIONS(2864), + [anon_sym___kindof] = ACTIONS(2864), + [anon_sym___nonnull] = ACTIONS(2864), + [anon_sym___nullable] = ACTIONS(2864), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2864), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2864), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2864), + [anon_sym___real] = ACTIONS(2864), + [anon_sym___strong] = ACTIONS(2864), + [anon_sym___unsafe_unretained] = ACTIONS(2864), + [anon_sym___unused] = ACTIONS(2864), + [anon_sym___weak] = ACTIONS(2864), + [anon_sym_alignas] = ACTIONS(2864), + [anon_sym__Alignas] = ACTIONS(2864), + [sym_primitive_type] = ACTIONS(2864), + [anon_sym_enum] = ACTIONS(2864), + [anon_sym_struct] = ACTIONS(2864), + [anon_sym_union] = ACTIONS(2864), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2864), + [anon_sym___typeof] = ACTIONS(2864), + [anon_sym_typeof] = ACTIONS(2864), + [aux_sym_preproc_undef_token1] = ACTIONS(2864), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2864), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2864), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2864), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2864), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2864), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2864), + [anon_sym_NS_AVAILABLE] = ACTIONS(2864), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2864), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_API_AVAILABLE] = ACTIONS(2864), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_API_DEPRECATED] = ACTIONS(2864), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2864), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2864), + [anon_sym___deprecated_msg] = ACTIONS(2864), + [anon_sym___deprecated_enum_msg] = ACTIONS(2864), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2864), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2864), + [anon_sym_ATsynthesize] = ACTIONS(2866), + [anon_sym_ATdynamic] = ACTIONS(2866), + [anon_sym_ATproperty] = ACTIONS(2866), + [anon_sym_BOOL] = ACTIONS(2864), + [anon_sym_IMP] = ACTIONS(2864), + [anon_sym_SEL] = ACTIONS(2864), + [anon_sym_Class] = ACTIONS(2864), + [anon_sym_id] = ACTIONS(2864), + [anon_sym_ATdefs] = ACTIONS(2866), + }, + [2223] = { + [sym_identifier] = ACTIONS(2612), + [aux_sym_preproc_def_token1] = ACTIONS(2612), + [aux_sym_preproc_if_token1] = ACTIONS(2612), + [aux_sym_preproc_if_token2] = ACTIONS(2612), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2612), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2612), + [aux_sym_preproc_else_token1] = ACTIONS(2612), + [aux_sym_preproc_elif_token1] = ACTIONS(2612), + [sym_preproc_directive] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2614), + [anon_sym_PLUS] = ACTIONS(2614), + [anon_sym___extension__] = ACTIONS(2612), + [anon_sym_typedef] = ACTIONS(2612), + [anon_sym_extern] = ACTIONS(2612), + [anon_sym___attribute__] = ACTIONS(2612), + [anon_sym___attribute] = ACTIONS(2612), + [anon_sym_noreturn] = ACTIONS(2612), + [anon_sym_LBRACK] = ACTIONS(2614), + [anon_sym___declspec] = ACTIONS(2612), + [anon_sym___cdecl] = ACTIONS(2612), + [anon_sym___clrcall] = ACTIONS(2612), + [anon_sym___stdcall] = ACTIONS(2612), + [anon_sym___fastcall] = ACTIONS(2612), + [anon_sym___thiscall] = ACTIONS(2612), + [anon_sym___vectorcall] = ACTIONS(2612), + [anon_sym_signed] = ACTIONS(2612), + [anon_sym_unsigned] = ACTIONS(2612), + [anon_sym_long] = ACTIONS(2612), + [anon_sym_short] = ACTIONS(2612), + [anon_sym_static] = ACTIONS(2612), + [anon_sym_auto] = ACTIONS(2612), + [anon_sym_register] = ACTIONS(2612), + [anon_sym_inline] = ACTIONS(2612), + [anon_sym___inline] = ACTIONS(2612), + [anon_sym___inline__] = ACTIONS(2612), + [anon_sym___forceinline] = ACTIONS(2612), + [anon_sym_thread_local] = ACTIONS(2612), + [anon_sym___thread] = ACTIONS(2612), + [anon_sym_CG_EXTERN] = ACTIONS(2612), + [anon_sym_CG_INLINE] = ACTIONS(2612), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2612), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2612), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2612), + [anon_sym_IBOutlet] = ACTIONS(2612), + [anon_sym_IBInspectable] = ACTIONS(2612), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2612), + [anon_sym_NS_INLINE] = ACTIONS(2612), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2612), + [anon_sym_OBJC_EXPORT] = ACTIONS(2612), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2612), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2612), + [anon_sym_const] = ACTIONS(2612), + [anon_sym_constexpr] = ACTIONS(2612), + [anon_sym_volatile] = ACTIONS(2612), + [anon_sym_restrict] = ACTIONS(2612), + [anon_sym___restrict__] = ACTIONS(2612), + [anon_sym__Atomic] = ACTIONS(2612), + [anon_sym__Noreturn] = ACTIONS(2612), + [anon_sym__Nonnull] = ACTIONS(2612), + [anon_sym_nullable] = ACTIONS(2612), + [anon_sym__Complex] = ACTIONS(2612), + [anon_sym__Nullable] = ACTIONS(2612), + [anon_sym__Nullable_result] = ACTIONS(2612), + [anon_sym__Null_unspecified] = ACTIONS(2612), + [anon_sym___autoreleasing] = ACTIONS(2612), + [anon_sym___block] = ACTIONS(2612), + [anon_sym___bridge] = ACTIONS(2612), + [anon_sym___bridge_retained] = ACTIONS(2612), + [anon_sym___bridge_transfer] = ACTIONS(2612), + [anon_sym___complex] = ACTIONS(2612), + [anon_sym___const] = ACTIONS(2612), + [anon_sym___imag] = ACTIONS(2612), + [anon_sym___kindof] = ACTIONS(2612), + [anon_sym___nonnull] = ACTIONS(2612), + [anon_sym___nullable] = ACTIONS(2612), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2612), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2612), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2612), + [anon_sym___real] = ACTIONS(2612), + [anon_sym___strong] = ACTIONS(2612), + [anon_sym___unsafe_unretained] = ACTIONS(2612), + [anon_sym___unused] = ACTIONS(2612), + [anon_sym___weak] = ACTIONS(2612), + [anon_sym_alignas] = ACTIONS(2612), + [anon_sym__Alignas] = ACTIONS(2612), + [sym_primitive_type] = ACTIONS(2612), + [anon_sym_enum] = ACTIONS(2612), + [anon_sym_struct] = ACTIONS(2612), + [anon_sym_union] = ACTIONS(2612), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2612), + [anon_sym___typeof] = ACTIONS(2612), + [anon_sym_typeof] = ACTIONS(2612), + [aux_sym_preproc_undef_token1] = ACTIONS(2612), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2612), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2612), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2612), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2612), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2612), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2612), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2612), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2612), + [anon_sym_NS_AVAILABLE] = ACTIONS(2612), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2612), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_API_AVAILABLE] = ACTIONS(2612), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_API_DEPRECATED] = ACTIONS(2612), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2612), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2612), + [anon_sym___deprecated_msg] = ACTIONS(2612), + [anon_sym___deprecated_enum_msg] = ACTIONS(2612), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2612), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2612), + [anon_sym_ATsynthesize] = ACTIONS(2614), + [anon_sym_ATdynamic] = ACTIONS(2614), + [anon_sym_BOOL] = ACTIONS(2612), + [anon_sym_IMP] = ACTIONS(2612), + [anon_sym_SEL] = ACTIONS(2612), + [anon_sym_Class] = ACTIONS(2612), + [anon_sym_id] = ACTIONS(2612), + }, + [2224] = { + [sym_identifier] = ACTIONS(5437), + [aux_sym_preproc_def_token1] = ACTIONS(5437), + [aux_sym_preproc_if_token1] = ACTIONS(5437), + [aux_sym_preproc_if_token2] = ACTIONS(5437), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5437), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5437), + [aux_sym_preproc_else_token1] = ACTIONS(5437), + [aux_sym_preproc_elif_token1] = ACTIONS(5437), + [sym_preproc_directive] = ACTIONS(5437), + [anon_sym_DASH] = ACTIONS(5439), + [anon_sym_PLUS] = ACTIONS(5439), + [anon_sym___extension__] = ACTIONS(5437), + [anon_sym_typedef] = ACTIONS(5437), + [anon_sym_extern] = ACTIONS(5437), + [anon_sym___attribute__] = ACTIONS(5437), + [anon_sym___attribute] = ACTIONS(5437), + [anon_sym_noreturn] = ACTIONS(5437), + [anon_sym_LBRACK] = ACTIONS(5439), + [anon_sym___declspec] = ACTIONS(5437), + [anon_sym___cdecl] = ACTIONS(5437), + [anon_sym___clrcall] = ACTIONS(5437), + [anon_sym___stdcall] = ACTIONS(5437), + [anon_sym___fastcall] = ACTIONS(5437), + [anon_sym___thiscall] = ACTIONS(5437), + [anon_sym___vectorcall] = ACTIONS(5437), + [anon_sym_signed] = ACTIONS(5437), + [anon_sym_unsigned] = ACTIONS(5437), + [anon_sym_long] = ACTIONS(5437), + [anon_sym_short] = ACTIONS(5437), + [anon_sym_static] = ACTIONS(5437), + [anon_sym_auto] = ACTIONS(5437), + [anon_sym_register] = ACTIONS(5437), + [anon_sym_inline] = ACTIONS(5437), + [anon_sym___inline] = ACTIONS(5437), + [anon_sym___inline__] = ACTIONS(5437), + [anon_sym___forceinline] = ACTIONS(5437), + [anon_sym_thread_local] = ACTIONS(5437), + [anon_sym___thread] = ACTIONS(5437), + [anon_sym_CG_EXTERN] = ACTIONS(5437), + [anon_sym_CG_INLINE] = ACTIONS(5437), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5437), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5437), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5437), + [anon_sym_IBOutlet] = ACTIONS(5437), + [anon_sym_IBInspectable] = ACTIONS(5437), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5437), + [anon_sym_NS_INLINE] = ACTIONS(5437), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5437), + [anon_sym_OBJC_EXPORT] = ACTIONS(5437), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5437), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5437), + [anon_sym_const] = ACTIONS(5437), + [anon_sym_constexpr] = ACTIONS(5437), + [anon_sym_volatile] = ACTIONS(5437), + [anon_sym_restrict] = ACTIONS(5437), + [anon_sym___restrict__] = ACTIONS(5437), + [anon_sym__Atomic] = ACTIONS(5437), + [anon_sym__Noreturn] = ACTIONS(5437), + [anon_sym__Nonnull] = ACTIONS(5437), + [anon_sym_nullable] = ACTIONS(5437), + [anon_sym__Complex] = ACTIONS(5437), + [anon_sym__Nullable] = ACTIONS(5437), + [anon_sym__Nullable_result] = ACTIONS(5437), + [anon_sym__Null_unspecified] = ACTIONS(5437), + [anon_sym___autoreleasing] = ACTIONS(5437), + [anon_sym___block] = ACTIONS(5437), + [anon_sym___bridge] = ACTIONS(5437), + [anon_sym___bridge_retained] = ACTIONS(5437), + [anon_sym___bridge_transfer] = ACTIONS(5437), + [anon_sym___complex] = ACTIONS(5437), + [anon_sym___const] = ACTIONS(5437), + [anon_sym___imag] = ACTIONS(5437), + [anon_sym___kindof] = ACTIONS(5437), + [anon_sym___nonnull] = ACTIONS(5437), + [anon_sym___nullable] = ACTIONS(5437), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5437), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5437), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5437), + [anon_sym___real] = ACTIONS(5437), + [anon_sym___strong] = ACTIONS(5437), + [anon_sym___unsafe_unretained] = ACTIONS(5437), + [anon_sym___unused] = ACTIONS(5437), + [anon_sym___weak] = ACTIONS(5437), + [anon_sym_alignas] = ACTIONS(5437), + [anon_sym__Alignas] = ACTIONS(5437), + [sym_primitive_type] = ACTIONS(5437), + [anon_sym_enum] = ACTIONS(5437), + [anon_sym_struct] = ACTIONS(5437), + [anon_sym_union] = ACTIONS(5437), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5437), + [anon_sym___typeof] = ACTIONS(5437), + [anon_sym_typeof] = ACTIONS(5437), + [aux_sym_preproc_undef_token1] = ACTIONS(5437), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5437), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5437), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5437), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5437), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5437), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5437), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5437), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5437), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5437), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5437), + [anon_sym_NS_AVAILABLE] = ACTIONS(5437), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5437), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5437), + [anon_sym_API_AVAILABLE] = ACTIONS(5437), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5437), + [anon_sym_API_DEPRECATED] = ACTIONS(5437), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5437), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5437), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5437), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5437), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5437), + [anon_sym___deprecated_msg] = ACTIONS(5437), + [anon_sym___deprecated_enum_msg] = ACTIONS(5437), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5437), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5437), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5437), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5437), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5437), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5437), + [anon_sym_ATsynthesize] = ACTIONS(5439), + [anon_sym_ATdynamic] = ACTIONS(5439), + [anon_sym_BOOL] = ACTIONS(5437), + [anon_sym_IMP] = ACTIONS(5437), + [anon_sym_SEL] = ACTIONS(5437), + [anon_sym_Class] = ACTIONS(5437), + [anon_sym_id] = ACTIONS(5437), + }, + [2225] = { + [sym_identifier] = ACTIONS(5441), + [aux_sym_preproc_def_token1] = ACTIONS(5441), + [aux_sym_preproc_if_token1] = ACTIONS(5441), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5441), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5441), + [sym_preproc_directive] = ACTIONS(5441), + [anon_sym_DASH] = ACTIONS(5443), + [anon_sym_PLUS] = ACTIONS(5443), + [anon_sym_SEMI] = ACTIONS(5445), + [anon_sym___extension__] = ACTIONS(5441), + [anon_sym_typedef] = ACTIONS(5441), + [anon_sym_extern] = ACTIONS(5441), + [anon_sym___attribute__] = ACTIONS(5441), + [anon_sym___attribute] = ACTIONS(5441), + [anon_sym_noreturn] = ACTIONS(5441), + [anon_sym_LBRACK] = ACTIONS(5443), + [anon_sym___declspec] = ACTIONS(5441), + [anon_sym___cdecl] = ACTIONS(5441), + [anon_sym___clrcall] = ACTIONS(5441), + [anon_sym___stdcall] = ACTIONS(5441), + [anon_sym___fastcall] = ACTIONS(5441), + [anon_sym___thiscall] = ACTIONS(5441), + [anon_sym___vectorcall] = ACTIONS(5441), + [anon_sym_signed] = ACTIONS(5441), + [anon_sym_unsigned] = ACTIONS(5441), + [anon_sym_long] = ACTIONS(5441), + [anon_sym_short] = ACTIONS(5441), + [anon_sym_static] = ACTIONS(5441), + [anon_sym_auto] = ACTIONS(5441), + [anon_sym_register] = ACTIONS(5441), + [anon_sym_inline] = ACTIONS(5441), + [anon_sym___inline] = ACTIONS(5441), + [anon_sym___inline__] = ACTIONS(5441), + [anon_sym___forceinline] = ACTIONS(5441), + [anon_sym_thread_local] = ACTIONS(5441), + [anon_sym___thread] = ACTIONS(5441), + [anon_sym_CG_EXTERN] = ACTIONS(5441), + [anon_sym_CG_INLINE] = ACTIONS(5441), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5441), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5441), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5441), + [anon_sym_IBOutlet] = ACTIONS(5441), + [anon_sym_IBInspectable] = ACTIONS(5441), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5441), + [anon_sym_NS_INLINE] = ACTIONS(5441), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5441), + [anon_sym_OBJC_EXPORT] = ACTIONS(5441), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5441), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5441), + [anon_sym_const] = ACTIONS(5441), + [anon_sym_constexpr] = ACTIONS(5441), + [anon_sym_volatile] = ACTIONS(5441), + [anon_sym_restrict] = ACTIONS(5441), + [anon_sym___restrict__] = ACTIONS(5441), + [anon_sym__Atomic] = ACTIONS(5441), + [anon_sym__Noreturn] = ACTIONS(5441), + [anon_sym__Nonnull] = ACTIONS(5441), + [anon_sym_nullable] = ACTIONS(5441), + [anon_sym__Complex] = ACTIONS(5441), + [anon_sym__Nullable] = ACTIONS(5441), + [anon_sym__Nullable_result] = ACTIONS(5441), + [anon_sym__Null_unspecified] = ACTIONS(5441), + [anon_sym___autoreleasing] = ACTIONS(5441), + [anon_sym___block] = ACTIONS(5441), + [anon_sym___bridge] = ACTIONS(5441), + [anon_sym___bridge_retained] = ACTIONS(5441), + [anon_sym___bridge_transfer] = ACTIONS(5441), + [anon_sym___complex] = ACTIONS(5441), + [anon_sym___const] = ACTIONS(5441), + [anon_sym___imag] = ACTIONS(5441), + [anon_sym___kindof] = ACTIONS(5441), + [anon_sym___nonnull] = ACTIONS(5441), + [anon_sym___nullable] = ACTIONS(5441), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5441), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5441), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5441), + [anon_sym___real] = ACTIONS(5441), + [anon_sym___strong] = ACTIONS(5441), + [anon_sym___unsafe_unretained] = ACTIONS(5441), + [anon_sym___unused] = ACTIONS(5441), + [anon_sym___weak] = ACTIONS(5441), + [anon_sym_alignas] = ACTIONS(5441), + [anon_sym__Alignas] = ACTIONS(5441), + [sym_primitive_type] = ACTIONS(5441), + [anon_sym_enum] = ACTIONS(5441), + [anon_sym_struct] = ACTIONS(5441), + [anon_sym_union] = ACTIONS(5441), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5441), + [anon_sym___typeof] = ACTIONS(5441), + [anon_sym_typeof] = ACTIONS(5441), + [aux_sym_preproc_undef_token1] = ACTIONS(5441), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5441), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5441), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5441), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5441), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5441), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5441), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5441), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5441), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5441), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5441), + [anon_sym_NS_AVAILABLE] = ACTIONS(5441), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5441), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5441), + [anon_sym_API_AVAILABLE] = ACTIONS(5441), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5441), + [anon_sym_API_DEPRECATED] = ACTIONS(5441), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5441), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5441), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5441), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5441), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5441), + [anon_sym___deprecated_msg] = ACTIONS(5441), + [anon_sym___deprecated_enum_msg] = ACTIONS(5441), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5441), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5441), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5441), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5441), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5441), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5441), + [anon_sym_ATend] = ACTIONS(5443), + [anon_sym_ATsynthesize] = ACTIONS(5443), + [anon_sym_ATdynamic] = ACTIONS(5443), + [anon_sym_ATproperty] = ACTIONS(5443), + [anon_sym_BOOL] = ACTIONS(5441), + [anon_sym_IMP] = ACTIONS(5441), + [anon_sym_SEL] = ACTIONS(5441), + [anon_sym_Class] = ACTIONS(5441), + [anon_sym_id] = ACTIONS(5441), + }, + [2226] = { + [sym_identifier] = ACTIONS(2828), + [aux_sym_preproc_def_token1] = ACTIONS(2828), + [aux_sym_preproc_if_token1] = ACTIONS(2828), + [aux_sym_preproc_if_token2] = ACTIONS(2828), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2828), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2828), + [sym_preproc_directive] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(2830), + [anon_sym_PLUS] = ACTIONS(2830), + [anon_sym___extension__] = ACTIONS(2828), + [anon_sym_typedef] = ACTIONS(2828), + [anon_sym_extern] = ACTIONS(2828), + [anon_sym___attribute__] = ACTIONS(2828), + [anon_sym___attribute] = ACTIONS(2828), + [anon_sym_noreturn] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym___declspec] = ACTIONS(2828), + [anon_sym___cdecl] = ACTIONS(2828), + [anon_sym___clrcall] = ACTIONS(2828), + [anon_sym___stdcall] = ACTIONS(2828), + [anon_sym___fastcall] = ACTIONS(2828), + [anon_sym___thiscall] = ACTIONS(2828), + [anon_sym___vectorcall] = ACTIONS(2828), + [anon_sym_signed] = ACTIONS(2828), + [anon_sym_unsigned] = ACTIONS(2828), + [anon_sym_long] = ACTIONS(2828), + [anon_sym_short] = ACTIONS(2828), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_auto] = ACTIONS(2828), + [anon_sym_register] = ACTIONS(2828), + [anon_sym_inline] = ACTIONS(2828), + [anon_sym___inline] = ACTIONS(2828), + [anon_sym___inline__] = ACTIONS(2828), + [anon_sym___forceinline] = ACTIONS(2828), + [anon_sym_thread_local] = ACTIONS(2828), + [anon_sym___thread] = ACTIONS(2828), + [anon_sym_CG_EXTERN] = ACTIONS(2828), + [anon_sym_CG_INLINE] = ACTIONS(2828), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2828), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2828), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2828), + [anon_sym_IBOutlet] = ACTIONS(2828), + [anon_sym_IBInspectable] = ACTIONS(2828), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2828), + [anon_sym_NS_INLINE] = ACTIONS(2828), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2828), + [anon_sym_OBJC_EXPORT] = ACTIONS(2828), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2828), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2828), + [anon_sym_const] = ACTIONS(2828), + [anon_sym_constexpr] = ACTIONS(2828), + [anon_sym_volatile] = ACTIONS(2828), + [anon_sym_restrict] = ACTIONS(2828), + [anon_sym___restrict__] = ACTIONS(2828), + [anon_sym__Atomic] = ACTIONS(2828), + [anon_sym__Noreturn] = ACTIONS(2828), + [anon_sym__Nonnull] = ACTIONS(2828), + [anon_sym_nullable] = ACTIONS(2828), + [anon_sym__Complex] = ACTIONS(2828), + [anon_sym__Nullable] = ACTIONS(2828), + [anon_sym__Nullable_result] = ACTIONS(2828), + [anon_sym__Null_unspecified] = ACTIONS(2828), + [anon_sym___autoreleasing] = ACTIONS(2828), + [anon_sym___block] = ACTIONS(2828), + [anon_sym___bridge] = ACTIONS(2828), + [anon_sym___bridge_retained] = ACTIONS(2828), + [anon_sym___bridge_transfer] = ACTIONS(2828), + [anon_sym___complex] = ACTIONS(2828), + [anon_sym___const] = ACTIONS(2828), + [anon_sym___imag] = ACTIONS(2828), + [anon_sym___kindof] = ACTIONS(2828), + [anon_sym___nonnull] = ACTIONS(2828), + [anon_sym___nullable] = ACTIONS(2828), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2828), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2828), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2828), + [anon_sym___real] = ACTIONS(2828), + [anon_sym___strong] = ACTIONS(2828), + [anon_sym___unsafe_unretained] = ACTIONS(2828), + [anon_sym___unused] = ACTIONS(2828), + [anon_sym___weak] = ACTIONS(2828), + [anon_sym_alignas] = ACTIONS(2828), + [anon_sym__Alignas] = ACTIONS(2828), + [sym_primitive_type] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [anon_sym_struct] = ACTIONS(2828), + [anon_sym_union] = ACTIONS(2828), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2828), + [anon_sym___typeof] = ACTIONS(2828), + [anon_sym_typeof] = ACTIONS(2828), + [aux_sym_preproc_undef_token1] = ACTIONS(2828), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2828), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2828), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2828), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2828), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2828), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2828), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2828), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2828), + [anon_sym_NS_AVAILABLE] = ACTIONS(2828), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2828), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_API_AVAILABLE] = ACTIONS(2828), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_API_DEPRECATED] = ACTIONS(2828), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2828), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2828), + [anon_sym___deprecated_msg] = ACTIONS(2828), + [anon_sym___deprecated_enum_msg] = ACTIONS(2828), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2828), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2828), + [anon_sym_ATsynthesize] = ACTIONS(2830), + [anon_sym_ATdynamic] = ACTIONS(2830), + [anon_sym_ATproperty] = ACTIONS(2830), + [anon_sym_BOOL] = ACTIONS(2828), + [anon_sym_IMP] = ACTIONS(2828), + [anon_sym_SEL] = ACTIONS(2828), + [anon_sym_Class] = ACTIONS(2828), + [anon_sym_id] = ACTIONS(2828), + [anon_sym_ATdefs] = ACTIONS(2830), + }, + [2227] = { + [sym_identifier] = ACTIONS(5447), + [aux_sym_preproc_def_token1] = ACTIONS(5447), + [aux_sym_preproc_if_token1] = ACTIONS(5447), + [aux_sym_preproc_if_token2] = ACTIONS(5447), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5447), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5447), + [aux_sym_preproc_else_token1] = ACTIONS(5447), + [aux_sym_preproc_elif_token1] = ACTIONS(5447), + [sym_preproc_directive] = ACTIONS(5447), + [anon_sym_DASH] = ACTIONS(5449), + [anon_sym_PLUS] = ACTIONS(5449), + [anon_sym___extension__] = ACTIONS(5447), + [anon_sym_typedef] = ACTIONS(5447), + [anon_sym_extern] = ACTIONS(5447), + [anon_sym___attribute__] = ACTIONS(5447), + [anon_sym___attribute] = ACTIONS(5447), + [anon_sym_noreturn] = ACTIONS(5447), + [anon_sym_LBRACK] = ACTIONS(5449), + [anon_sym___declspec] = ACTIONS(5447), + [anon_sym___cdecl] = ACTIONS(5447), + [anon_sym___clrcall] = ACTIONS(5447), + [anon_sym___stdcall] = ACTIONS(5447), + [anon_sym___fastcall] = ACTIONS(5447), + [anon_sym___thiscall] = ACTIONS(5447), + [anon_sym___vectorcall] = ACTIONS(5447), + [anon_sym_signed] = ACTIONS(5447), + [anon_sym_unsigned] = ACTIONS(5447), + [anon_sym_long] = ACTIONS(5447), + [anon_sym_short] = ACTIONS(5447), + [anon_sym_static] = ACTIONS(5447), + [anon_sym_auto] = ACTIONS(5447), + [anon_sym_register] = ACTIONS(5447), + [anon_sym_inline] = ACTIONS(5447), + [anon_sym___inline] = ACTIONS(5447), + [anon_sym___inline__] = ACTIONS(5447), + [anon_sym___forceinline] = ACTIONS(5447), + [anon_sym_thread_local] = ACTIONS(5447), + [anon_sym___thread] = ACTIONS(5447), + [anon_sym_CG_EXTERN] = ACTIONS(5447), + [anon_sym_CG_INLINE] = ACTIONS(5447), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5447), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5447), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5447), + [anon_sym_IBOutlet] = ACTIONS(5447), + [anon_sym_IBInspectable] = ACTIONS(5447), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5447), + [anon_sym_NS_INLINE] = ACTIONS(5447), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5447), + [anon_sym_OBJC_EXPORT] = ACTIONS(5447), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5447), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5447), + [anon_sym_const] = ACTIONS(5447), + [anon_sym_constexpr] = ACTIONS(5447), + [anon_sym_volatile] = ACTIONS(5447), + [anon_sym_restrict] = ACTIONS(5447), + [anon_sym___restrict__] = ACTIONS(5447), + [anon_sym__Atomic] = ACTIONS(5447), + [anon_sym__Noreturn] = ACTIONS(5447), + [anon_sym__Nonnull] = ACTIONS(5447), + [anon_sym_nullable] = ACTIONS(5447), + [anon_sym__Complex] = ACTIONS(5447), + [anon_sym__Nullable] = ACTIONS(5447), + [anon_sym__Nullable_result] = ACTIONS(5447), + [anon_sym__Null_unspecified] = ACTIONS(5447), + [anon_sym___autoreleasing] = ACTIONS(5447), + [anon_sym___block] = ACTIONS(5447), + [anon_sym___bridge] = ACTIONS(5447), + [anon_sym___bridge_retained] = ACTIONS(5447), + [anon_sym___bridge_transfer] = ACTIONS(5447), + [anon_sym___complex] = ACTIONS(5447), + [anon_sym___const] = ACTIONS(5447), + [anon_sym___imag] = ACTIONS(5447), + [anon_sym___kindof] = ACTIONS(5447), + [anon_sym___nonnull] = ACTIONS(5447), + [anon_sym___nullable] = ACTIONS(5447), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5447), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5447), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5447), + [anon_sym___real] = ACTIONS(5447), + [anon_sym___strong] = ACTIONS(5447), + [anon_sym___unsafe_unretained] = ACTIONS(5447), + [anon_sym___unused] = ACTIONS(5447), + [anon_sym___weak] = ACTIONS(5447), + [anon_sym_alignas] = ACTIONS(5447), + [anon_sym__Alignas] = ACTIONS(5447), + [sym_primitive_type] = ACTIONS(5447), + [anon_sym_enum] = ACTIONS(5447), + [anon_sym_struct] = ACTIONS(5447), + [anon_sym_union] = ACTIONS(5447), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5447), + [anon_sym___typeof] = ACTIONS(5447), + [anon_sym_typeof] = ACTIONS(5447), + [aux_sym_preproc_undef_token1] = ACTIONS(5447), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5447), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5447), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5447), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5447), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5447), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5447), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5447), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5447), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5447), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5447), + [anon_sym_NS_AVAILABLE] = ACTIONS(5447), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5447), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5447), + [anon_sym_API_AVAILABLE] = ACTIONS(5447), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5447), + [anon_sym_API_DEPRECATED] = ACTIONS(5447), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5447), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5447), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5447), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5447), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5447), + [anon_sym___deprecated_msg] = ACTIONS(5447), + [anon_sym___deprecated_enum_msg] = ACTIONS(5447), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5447), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5447), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5447), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5447), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5447), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5447), + [anon_sym_ATsynthesize] = ACTIONS(5449), + [anon_sym_ATdynamic] = ACTIONS(5449), + [anon_sym_BOOL] = ACTIONS(5447), + [anon_sym_IMP] = ACTIONS(5447), + [anon_sym_SEL] = ACTIONS(5447), + [anon_sym_Class] = ACTIONS(5447), + [anon_sym_id] = ACTIONS(5447), + }, + [2228] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2229] = { + [sym_identifier] = ACTIONS(5316), + [aux_sym_preproc_def_token1] = ACTIONS(5316), + [aux_sym_preproc_if_token1] = ACTIONS(5316), + [aux_sym_preproc_if_token2] = ACTIONS(5316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5316), + [aux_sym_preproc_else_token1] = ACTIONS(5316), + [aux_sym_preproc_elif_token1] = ACTIONS(5316), + [sym_preproc_directive] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5318), + [anon_sym_PLUS] = ACTIONS(5318), + [anon_sym___extension__] = ACTIONS(5316), + [anon_sym_typedef] = ACTIONS(5316), + [anon_sym_extern] = ACTIONS(5316), + [anon_sym___attribute__] = ACTIONS(5316), + [anon_sym___attribute] = ACTIONS(5316), + [anon_sym_noreturn] = ACTIONS(5316), + [anon_sym_LBRACK] = ACTIONS(5318), + [anon_sym___declspec] = ACTIONS(5316), + [anon_sym___cdecl] = ACTIONS(5316), + [anon_sym___clrcall] = ACTIONS(5316), + [anon_sym___stdcall] = ACTIONS(5316), + [anon_sym___fastcall] = ACTIONS(5316), + [anon_sym___thiscall] = ACTIONS(5316), + [anon_sym___vectorcall] = ACTIONS(5316), + [anon_sym_signed] = ACTIONS(5316), + [anon_sym_unsigned] = ACTIONS(5316), + [anon_sym_long] = ACTIONS(5316), + [anon_sym_short] = ACTIONS(5316), + [anon_sym_static] = ACTIONS(5316), + [anon_sym_auto] = ACTIONS(5316), + [anon_sym_register] = ACTIONS(5316), + [anon_sym_inline] = ACTIONS(5316), + [anon_sym___inline] = ACTIONS(5316), + [anon_sym___inline__] = ACTIONS(5316), + [anon_sym___forceinline] = ACTIONS(5316), + [anon_sym_thread_local] = ACTIONS(5316), + [anon_sym___thread] = ACTIONS(5316), + [anon_sym_CG_EXTERN] = ACTIONS(5316), + [anon_sym_CG_INLINE] = ACTIONS(5316), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5316), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5316), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5316), + [anon_sym_IBOutlet] = ACTIONS(5316), + [anon_sym_IBInspectable] = ACTIONS(5316), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5316), + [anon_sym_NS_INLINE] = ACTIONS(5316), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5316), + [anon_sym_OBJC_EXPORT] = ACTIONS(5316), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5316), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5316), + [anon_sym_const] = ACTIONS(5316), + [anon_sym_constexpr] = ACTIONS(5316), + [anon_sym_volatile] = ACTIONS(5316), + [anon_sym_restrict] = ACTIONS(5316), + [anon_sym___restrict__] = ACTIONS(5316), + [anon_sym__Atomic] = ACTIONS(5316), + [anon_sym__Noreturn] = ACTIONS(5316), + [anon_sym__Nonnull] = ACTIONS(5316), + [anon_sym_nullable] = ACTIONS(5316), + [anon_sym__Complex] = ACTIONS(5316), + [anon_sym__Nullable] = ACTIONS(5316), + [anon_sym__Nullable_result] = ACTIONS(5316), + [anon_sym__Null_unspecified] = ACTIONS(5316), + [anon_sym___autoreleasing] = ACTIONS(5316), + [anon_sym___block] = ACTIONS(5316), + [anon_sym___bridge] = ACTIONS(5316), + [anon_sym___bridge_retained] = ACTIONS(5316), + [anon_sym___bridge_transfer] = ACTIONS(5316), + [anon_sym___complex] = ACTIONS(5316), + [anon_sym___const] = ACTIONS(5316), + [anon_sym___imag] = ACTIONS(5316), + [anon_sym___kindof] = ACTIONS(5316), + [anon_sym___nonnull] = ACTIONS(5316), + [anon_sym___nullable] = ACTIONS(5316), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5316), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5316), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5316), + [anon_sym___real] = ACTIONS(5316), + [anon_sym___strong] = ACTIONS(5316), + [anon_sym___unsafe_unretained] = ACTIONS(5316), + [anon_sym___unused] = ACTIONS(5316), + [anon_sym___weak] = ACTIONS(5316), + [anon_sym_alignas] = ACTIONS(5316), + [anon_sym__Alignas] = ACTIONS(5316), + [sym_primitive_type] = ACTIONS(5316), + [anon_sym_enum] = ACTIONS(5316), + [anon_sym_struct] = ACTIONS(5316), + [anon_sym_union] = ACTIONS(5316), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5316), + [anon_sym___typeof] = ACTIONS(5316), + [anon_sym_typeof] = ACTIONS(5316), + [aux_sym_preproc_undef_token1] = ACTIONS(5316), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5316), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5316), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5316), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5316), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5316), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5316), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5316), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5316), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5316), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5316), + [anon_sym_NS_AVAILABLE] = ACTIONS(5316), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5316), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5316), + [anon_sym_API_AVAILABLE] = ACTIONS(5316), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5316), + [anon_sym_API_DEPRECATED] = ACTIONS(5316), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5316), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5316), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5316), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5316), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5316), + [anon_sym___deprecated_msg] = ACTIONS(5316), + [anon_sym___deprecated_enum_msg] = ACTIONS(5316), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5316), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5316), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5316), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5316), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5316), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5316), + [anon_sym_ATsynthesize] = ACTIONS(5318), + [anon_sym_ATdynamic] = ACTIONS(5318), + [anon_sym_BOOL] = ACTIONS(5316), + [anon_sym_IMP] = ACTIONS(5316), + [anon_sym_SEL] = ACTIONS(5316), + [anon_sym_Class] = ACTIONS(5316), + [anon_sym_id] = ACTIONS(5316), + }, + [2230] = { + [sym_identifier] = ACTIONS(2668), + [aux_sym_preproc_def_token1] = ACTIONS(2668), + [aux_sym_preproc_if_token1] = ACTIONS(2668), + [aux_sym_preproc_if_token2] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2668), + [aux_sym_preproc_elif_token1] = ACTIONS(2668), + [sym_preproc_directive] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2670), + [anon_sym_PLUS] = ACTIONS(2670), + [anon_sym___extension__] = ACTIONS(2668), + [anon_sym_typedef] = ACTIONS(2668), + [anon_sym_extern] = ACTIONS(2668), + [anon_sym___attribute__] = ACTIONS(2668), + [anon_sym___attribute] = ACTIONS(2668), + [anon_sym_noreturn] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym___declspec] = ACTIONS(2668), + [anon_sym___cdecl] = ACTIONS(2668), + [anon_sym___clrcall] = ACTIONS(2668), + [anon_sym___stdcall] = ACTIONS(2668), + [anon_sym___fastcall] = ACTIONS(2668), + [anon_sym___thiscall] = ACTIONS(2668), + [anon_sym___vectorcall] = ACTIONS(2668), + [anon_sym_signed] = ACTIONS(2668), + [anon_sym_unsigned] = ACTIONS(2668), + [anon_sym_long] = ACTIONS(2668), + [anon_sym_short] = ACTIONS(2668), + [anon_sym_static] = ACTIONS(2668), + [anon_sym_auto] = ACTIONS(2668), + [anon_sym_register] = ACTIONS(2668), + [anon_sym_inline] = ACTIONS(2668), + [anon_sym___inline] = ACTIONS(2668), + [anon_sym___inline__] = ACTIONS(2668), + [anon_sym___forceinline] = ACTIONS(2668), + [anon_sym_thread_local] = ACTIONS(2668), + [anon_sym___thread] = ACTIONS(2668), + [anon_sym_CG_EXTERN] = ACTIONS(2668), + [anon_sym_CG_INLINE] = ACTIONS(2668), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2668), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2668), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2668), + [anon_sym_IBOutlet] = ACTIONS(2668), + [anon_sym_IBInspectable] = ACTIONS(2668), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2668), + [anon_sym_NS_INLINE] = ACTIONS(2668), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2668), + [anon_sym_OBJC_EXPORT] = ACTIONS(2668), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2668), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2668), + [anon_sym_const] = ACTIONS(2668), + [anon_sym_constexpr] = ACTIONS(2668), + [anon_sym_volatile] = ACTIONS(2668), + [anon_sym_restrict] = ACTIONS(2668), + [anon_sym___restrict__] = ACTIONS(2668), + [anon_sym__Atomic] = ACTIONS(2668), + [anon_sym__Noreturn] = ACTIONS(2668), + [anon_sym__Nonnull] = ACTIONS(2668), + [anon_sym_nullable] = ACTIONS(2668), + [anon_sym__Complex] = ACTIONS(2668), + [anon_sym__Nullable] = ACTIONS(2668), + [anon_sym__Nullable_result] = ACTIONS(2668), + [anon_sym__Null_unspecified] = ACTIONS(2668), + [anon_sym___autoreleasing] = ACTIONS(2668), + [anon_sym___block] = ACTIONS(2668), + [anon_sym___bridge] = ACTIONS(2668), + [anon_sym___bridge_retained] = ACTIONS(2668), + [anon_sym___bridge_transfer] = ACTIONS(2668), + [anon_sym___complex] = ACTIONS(2668), + [anon_sym___const] = ACTIONS(2668), + [anon_sym___imag] = ACTIONS(2668), + [anon_sym___kindof] = ACTIONS(2668), + [anon_sym___nonnull] = ACTIONS(2668), + [anon_sym___nullable] = ACTIONS(2668), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2668), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2668), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2668), + [anon_sym___real] = ACTIONS(2668), + [anon_sym___strong] = ACTIONS(2668), + [anon_sym___unsafe_unretained] = ACTIONS(2668), + [anon_sym___unused] = ACTIONS(2668), + [anon_sym___weak] = ACTIONS(2668), + [anon_sym_alignas] = ACTIONS(2668), + [anon_sym__Alignas] = ACTIONS(2668), + [sym_primitive_type] = ACTIONS(2668), + [anon_sym_enum] = ACTIONS(2668), + [anon_sym_struct] = ACTIONS(2668), + [anon_sym_union] = ACTIONS(2668), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2668), + [anon_sym___typeof] = ACTIONS(2668), + [anon_sym_typeof] = ACTIONS(2668), + [aux_sym_preproc_undef_token1] = ACTIONS(2668), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2668), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2668), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2668), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2668), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2668), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2668), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2668), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2668), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2668), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2668), + [anon_sym_NS_AVAILABLE] = ACTIONS(2668), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2668), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2668), + [anon_sym_API_AVAILABLE] = ACTIONS(2668), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2668), + [anon_sym_API_DEPRECATED] = ACTIONS(2668), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2668), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2668), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2668), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2668), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2668), + [anon_sym___deprecated_msg] = ACTIONS(2668), + [anon_sym___deprecated_enum_msg] = ACTIONS(2668), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2668), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2668), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2668), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2668), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2668), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2668), + [anon_sym_ATsynthesize] = ACTIONS(2670), + [anon_sym_ATdynamic] = ACTIONS(2670), + [anon_sym_BOOL] = ACTIONS(2668), + [anon_sym_IMP] = ACTIONS(2668), + [anon_sym_SEL] = ACTIONS(2668), + [anon_sym_Class] = ACTIONS(2668), + [anon_sym_id] = ACTIONS(2668), + }, + [2231] = { + [sym_identifier] = ACTIONS(5322), + [aux_sym_preproc_def_token1] = ACTIONS(5322), + [aux_sym_preproc_if_token1] = ACTIONS(5322), + [aux_sym_preproc_if_token2] = ACTIONS(5322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5322), + [aux_sym_preproc_else_token1] = ACTIONS(5322), + [aux_sym_preproc_elif_token1] = ACTIONS(5322), + [sym_preproc_directive] = ACTIONS(5322), + [anon_sym_DASH] = ACTIONS(5324), + [anon_sym_PLUS] = ACTIONS(5324), + [anon_sym___extension__] = ACTIONS(5322), + [anon_sym_typedef] = ACTIONS(5322), + [anon_sym_extern] = ACTIONS(5322), + [anon_sym___attribute__] = ACTIONS(5322), + [anon_sym___attribute] = ACTIONS(5322), + [anon_sym_noreturn] = ACTIONS(5322), + [anon_sym_LBRACK] = ACTIONS(5324), + [anon_sym___declspec] = ACTIONS(5322), + [anon_sym___cdecl] = ACTIONS(5322), + [anon_sym___clrcall] = ACTIONS(5322), + [anon_sym___stdcall] = ACTIONS(5322), + [anon_sym___fastcall] = ACTIONS(5322), + [anon_sym___thiscall] = ACTIONS(5322), + [anon_sym___vectorcall] = ACTIONS(5322), + [anon_sym_signed] = ACTIONS(5322), + [anon_sym_unsigned] = ACTIONS(5322), + [anon_sym_long] = ACTIONS(5322), + [anon_sym_short] = ACTIONS(5322), + [anon_sym_static] = ACTIONS(5322), + [anon_sym_auto] = ACTIONS(5322), + [anon_sym_register] = ACTIONS(5322), + [anon_sym_inline] = ACTIONS(5322), + [anon_sym___inline] = ACTIONS(5322), + [anon_sym___inline__] = ACTIONS(5322), + [anon_sym___forceinline] = ACTIONS(5322), + [anon_sym_thread_local] = ACTIONS(5322), + [anon_sym___thread] = ACTIONS(5322), + [anon_sym_CG_EXTERN] = ACTIONS(5322), + [anon_sym_CG_INLINE] = ACTIONS(5322), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5322), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5322), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5322), + [anon_sym_IBOutlet] = ACTIONS(5322), + [anon_sym_IBInspectable] = ACTIONS(5322), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5322), + [anon_sym_NS_INLINE] = ACTIONS(5322), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5322), + [anon_sym_OBJC_EXPORT] = ACTIONS(5322), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5322), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5322), + [anon_sym_const] = ACTIONS(5322), + [anon_sym_constexpr] = ACTIONS(5322), + [anon_sym_volatile] = ACTIONS(5322), + [anon_sym_restrict] = ACTIONS(5322), + [anon_sym___restrict__] = ACTIONS(5322), + [anon_sym__Atomic] = ACTIONS(5322), + [anon_sym__Noreturn] = ACTIONS(5322), + [anon_sym__Nonnull] = ACTIONS(5322), + [anon_sym_nullable] = ACTIONS(5322), + [anon_sym__Complex] = ACTIONS(5322), + [anon_sym__Nullable] = ACTIONS(5322), + [anon_sym__Nullable_result] = ACTIONS(5322), + [anon_sym__Null_unspecified] = ACTIONS(5322), + [anon_sym___autoreleasing] = ACTIONS(5322), + [anon_sym___block] = ACTIONS(5322), + [anon_sym___bridge] = ACTIONS(5322), + [anon_sym___bridge_retained] = ACTIONS(5322), + [anon_sym___bridge_transfer] = ACTIONS(5322), + [anon_sym___complex] = ACTIONS(5322), + [anon_sym___const] = ACTIONS(5322), + [anon_sym___imag] = ACTIONS(5322), + [anon_sym___kindof] = ACTIONS(5322), + [anon_sym___nonnull] = ACTIONS(5322), + [anon_sym___nullable] = ACTIONS(5322), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5322), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5322), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5322), + [anon_sym___real] = ACTIONS(5322), + [anon_sym___strong] = ACTIONS(5322), + [anon_sym___unsafe_unretained] = ACTIONS(5322), + [anon_sym___unused] = ACTIONS(5322), + [anon_sym___weak] = ACTIONS(5322), + [anon_sym_alignas] = ACTIONS(5322), + [anon_sym__Alignas] = ACTIONS(5322), + [sym_primitive_type] = ACTIONS(5322), + [anon_sym_enum] = ACTIONS(5322), + [anon_sym_struct] = ACTIONS(5322), + [anon_sym_union] = ACTIONS(5322), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5322), + [anon_sym___typeof] = ACTIONS(5322), + [anon_sym_typeof] = ACTIONS(5322), + [aux_sym_preproc_undef_token1] = ACTIONS(5322), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5322), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5322), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5322), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5322), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5322), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5322), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5322), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5322), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5322), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5322), + [anon_sym_NS_AVAILABLE] = ACTIONS(5322), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5322), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5322), + [anon_sym_API_AVAILABLE] = ACTIONS(5322), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5322), + [anon_sym_API_DEPRECATED] = ACTIONS(5322), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5322), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5322), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5322), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5322), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5322), + [anon_sym___deprecated_msg] = ACTIONS(5322), + [anon_sym___deprecated_enum_msg] = ACTIONS(5322), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5322), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5322), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5322), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5322), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5322), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5322), + [anon_sym_ATsynthesize] = ACTIONS(5324), + [anon_sym_ATdynamic] = ACTIONS(5324), + [anon_sym_BOOL] = ACTIONS(5322), + [anon_sym_IMP] = ACTIONS(5322), + [anon_sym_SEL] = ACTIONS(5322), + [anon_sym_Class] = ACTIONS(5322), + [anon_sym_id] = ACTIONS(5322), + }, + [2232] = { + [sym_identifier] = ACTIONS(5415), + [aux_sym_preproc_def_token1] = ACTIONS(5415), + [aux_sym_preproc_if_token1] = ACTIONS(5415), + [aux_sym_preproc_if_token2] = ACTIONS(5415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5415), + [aux_sym_preproc_else_token1] = ACTIONS(5415), + [aux_sym_preproc_elif_token1] = ACTIONS(5415), + [sym_preproc_directive] = ACTIONS(5415), + [anon_sym_DASH] = ACTIONS(5417), + [anon_sym_PLUS] = ACTIONS(5417), + [anon_sym___extension__] = ACTIONS(5415), + [anon_sym_typedef] = ACTIONS(5415), + [anon_sym_extern] = ACTIONS(5415), + [anon_sym___attribute__] = ACTIONS(5415), + [anon_sym___attribute] = ACTIONS(5415), + [anon_sym_noreturn] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(5417), + [anon_sym___declspec] = ACTIONS(5415), + [anon_sym___cdecl] = ACTIONS(5415), + [anon_sym___clrcall] = ACTIONS(5415), + [anon_sym___stdcall] = ACTIONS(5415), + [anon_sym___fastcall] = ACTIONS(5415), + [anon_sym___thiscall] = ACTIONS(5415), + [anon_sym___vectorcall] = ACTIONS(5415), + [anon_sym_signed] = ACTIONS(5415), + [anon_sym_unsigned] = ACTIONS(5415), + [anon_sym_long] = ACTIONS(5415), + [anon_sym_short] = ACTIONS(5415), + [anon_sym_static] = ACTIONS(5415), + [anon_sym_auto] = ACTIONS(5415), + [anon_sym_register] = ACTIONS(5415), + [anon_sym_inline] = ACTIONS(5415), + [anon_sym___inline] = ACTIONS(5415), + [anon_sym___inline__] = ACTIONS(5415), + [anon_sym___forceinline] = ACTIONS(5415), + [anon_sym_thread_local] = ACTIONS(5415), + [anon_sym___thread] = ACTIONS(5415), + [anon_sym_CG_EXTERN] = ACTIONS(5415), + [anon_sym_CG_INLINE] = ACTIONS(5415), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5415), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5415), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5415), + [anon_sym_IBOutlet] = ACTIONS(5415), + [anon_sym_IBInspectable] = ACTIONS(5415), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5415), + [anon_sym_NS_INLINE] = ACTIONS(5415), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5415), + [anon_sym_OBJC_EXPORT] = ACTIONS(5415), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5415), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5415), + [anon_sym_const] = ACTIONS(5415), + [anon_sym_constexpr] = ACTIONS(5415), + [anon_sym_volatile] = ACTIONS(5415), + [anon_sym_restrict] = ACTIONS(5415), + [anon_sym___restrict__] = ACTIONS(5415), + [anon_sym__Atomic] = ACTIONS(5415), + [anon_sym__Noreturn] = ACTIONS(5415), + [anon_sym__Nonnull] = ACTIONS(5415), + [anon_sym_nullable] = ACTIONS(5415), + [anon_sym__Complex] = ACTIONS(5415), + [anon_sym__Nullable] = ACTIONS(5415), + [anon_sym__Nullable_result] = ACTIONS(5415), + [anon_sym__Null_unspecified] = ACTIONS(5415), + [anon_sym___autoreleasing] = ACTIONS(5415), + [anon_sym___block] = ACTIONS(5415), + [anon_sym___bridge] = ACTIONS(5415), + [anon_sym___bridge_retained] = ACTIONS(5415), + [anon_sym___bridge_transfer] = ACTIONS(5415), + [anon_sym___complex] = ACTIONS(5415), + [anon_sym___const] = ACTIONS(5415), + [anon_sym___imag] = ACTIONS(5415), + [anon_sym___kindof] = ACTIONS(5415), + [anon_sym___nonnull] = ACTIONS(5415), + [anon_sym___nullable] = ACTIONS(5415), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5415), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5415), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5415), + [anon_sym___real] = ACTIONS(5415), + [anon_sym___strong] = ACTIONS(5415), + [anon_sym___unsafe_unretained] = ACTIONS(5415), + [anon_sym___unused] = ACTIONS(5415), + [anon_sym___weak] = ACTIONS(5415), + [anon_sym_alignas] = ACTIONS(5415), + [anon_sym__Alignas] = ACTIONS(5415), + [sym_primitive_type] = ACTIONS(5415), + [anon_sym_enum] = ACTIONS(5415), + [anon_sym_struct] = ACTIONS(5415), + [anon_sym_union] = ACTIONS(5415), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5415), + [anon_sym___typeof] = ACTIONS(5415), + [anon_sym_typeof] = ACTIONS(5415), + [aux_sym_preproc_undef_token1] = ACTIONS(5415), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5415), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5415), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5415), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5415), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5415), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5415), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5415), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5415), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5415), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5415), + [anon_sym_NS_AVAILABLE] = ACTIONS(5415), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5415), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5415), + [anon_sym_API_AVAILABLE] = ACTIONS(5415), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5415), + [anon_sym_API_DEPRECATED] = ACTIONS(5415), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5415), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5415), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5415), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5415), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5415), + [anon_sym___deprecated_msg] = ACTIONS(5415), + [anon_sym___deprecated_enum_msg] = ACTIONS(5415), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5415), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5415), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5415), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5415), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5415), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5415), + [anon_sym_ATsynthesize] = ACTIONS(5417), + [anon_sym_ATdynamic] = ACTIONS(5417), + [anon_sym_BOOL] = ACTIONS(5415), + [anon_sym_IMP] = ACTIONS(5415), + [anon_sym_SEL] = ACTIONS(5415), + [anon_sym_Class] = ACTIONS(5415), + [anon_sym_id] = ACTIONS(5415), + }, + [2233] = { + [sym_identifier] = ACTIONS(2852), + [aux_sym_preproc_def_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token2] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2852), + [sym_preproc_directive] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2854), + [anon_sym_PLUS] = ACTIONS(2854), + [anon_sym___extension__] = ACTIONS(2852), + [anon_sym_typedef] = ACTIONS(2852), + [anon_sym_extern] = ACTIONS(2852), + [anon_sym___attribute__] = ACTIONS(2852), + [anon_sym___attribute] = ACTIONS(2852), + [anon_sym_noreturn] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2854), + [anon_sym___declspec] = ACTIONS(2852), + [anon_sym___cdecl] = ACTIONS(2852), + [anon_sym___clrcall] = ACTIONS(2852), + [anon_sym___stdcall] = ACTIONS(2852), + [anon_sym___fastcall] = ACTIONS(2852), + [anon_sym___thiscall] = ACTIONS(2852), + [anon_sym___vectorcall] = ACTIONS(2852), + [anon_sym_signed] = ACTIONS(2852), + [anon_sym_unsigned] = ACTIONS(2852), + [anon_sym_long] = ACTIONS(2852), + [anon_sym_short] = ACTIONS(2852), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_auto] = ACTIONS(2852), + [anon_sym_register] = ACTIONS(2852), + [anon_sym_inline] = ACTIONS(2852), + [anon_sym___inline] = ACTIONS(2852), + [anon_sym___inline__] = ACTIONS(2852), + [anon_sym___forceinline] = ACTIONS(2852), + [anon_sym_thread_local] = ACTIONS(2852), + [anon_sym___thread] = ACTIONS(2852), + [anon_sym_CG_EXTERN] = ACTIONS(2852), + [anon_sym_CG_INLINE] = ACTIONS(2852), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2852), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2852), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2852), + [anon_sym_IBOutlet] = ACTIONS(2852), + [anon_sym_IBInspectable] = ACTIONS(2852), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2852), + [anon_sym_NS_INLINE] = ACTIONS(2852), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2852), + [anon_sym_OBJC_EXPORT] = ACTIONS(2852), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2852), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2852), + [anon_sym_const] = ACTIONS(2852), + [anon_sym_constexpr] = ACTIONS(2852), + [anon_sym_volatile] = ACTIONS(2852), + [anon_sym_restrict] = ACTIONS(2852), + [anon_sym___restrict__] = ACTIONS(2852), + [anon_sym__Atomic] = ACTIONS(2852), + [anon_sym__Noreturn] = ACTIONS(2852), + [anon_sym__Nonnull] = ACTIONS(2852), + [anon_sym_nullable] = ACTIONS(2852), + [anon_sym__Complex] = ACTIONS(2852), + [anon_sym__Nullable] = ACTIONS(2852), + [anon_sym__Nullable_result] = ACTIONS(2852), + [anon_sym__Null_unspecified] = ACTIONS(2852), + [anon_sym___autoreleasing] = ACTIONS(2852), + [anon_sym___block] = ACTIONS(2852), + [anon_sym___bridge] = ACTIONS(2852), + [anon_sym___bridge_retained] = ACTIONS(2852), + [anon_sym___bridge_transfer] = ACTIONS(2852), + [anon_sym___complex] = ACTIONS(2852), + [anon_sym___const] = ACTIONS(2852), + [anon_sym___imag] = ACTIONS(2852), + [anon_sym___kindof] = ACTIONS(2852), + [anon_sym___nonnull] = ACTIONS(2852), + [anon_sym___nullable] = ACTIONS(2852), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2852), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2852), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2852), + [anon_sym___real] = ACTIONS(2852), + [anon_sym___strong] = ACTIONS(2852), + [anon_sym___unsafe_unretained] = ACTIONS(2852), + [anon_sym___unused] = ACTIONS(2852), + [anon_sym___weak] = ACTIONS(2852), + [anon_sym_alignas] = ACTIONS(2852), + [anon_sym__Alignas] = ACTIONS(2852), + [sym_primitive_type] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2852), + [anon_sym_union] = ACTIONS(2852), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2852), + [anon_sym___typeof] = ACTIONS(2852), + [anon_sym_typeof] = ACTIONS(2852), + [aux_sym_preproc_undef_token1] = ACTIONS(2852), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2852), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2852), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2852), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2852), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2852), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2852), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2852), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2852), + [anon_sym_NS_AVAILABLE] = ACTIONS(2852), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2852), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_API_AVAILABLE] = ACTIONS(2852), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_API_DEPRECATED] = ACTIONS(2852), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2852), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2852), + [anon_sym___deprecated_msg] = ACTIONS(2852), + [anon_sym___deprecated_enum_msg] = ACTIONS(2852), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2852), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2852), + [anon_sym_ATsynthesize] = ACTIONS(2854), + [anon_sym_ATdynamic] = ACTIONS(2854), + [anon_sym_ATproperty] = ACTIONS(2854), + [anon_sym_BOOL] = ACTIONS(2852), + [anon_sym_IMP] = ACTIONS(2852), + [anon_sym_SEL] = ACTIONS(2852), + [anon_sym_Class] = ACTIONS(2852), + [anon_sym_id] = ACTIONS(2852), + [anon_sym_ATdefs] = ACTIONS(2854), + }, + [2234] = { + [sym_identifier] = ACTIONS(5451), + [aux_sym_preproc_def_token1] = ACTIONS(5451), + [aux_sym_preproc_if_token1] = ACTIONS(5451), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5451), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5451), + [sym_preproc_directive] = ACTIONS(5451), + [anon_sym_DASH] = ACTIONS(5453), + [anon_sym_PLUS] = ACTIONS(5453), + [anon_sym_SEMI] = ACTIONS(5455), + [anon_sym___extension__] = ACTIONS(5451), + [anon_sym_typedef] = ACTIONS(5451), + [anon_sym_extern] = ACTIONS(5451), + [anon_sym___attribute__] = ACTIONS(5451), + [anon_sym___attribute] = ACTIONS(5451), + [anon_sym_noreturn] = ACTIONS(5451), + [anon_sym_LBRACK] = ACTIONS(5453), + [anon_sym___declspec] = ACTIONS(5451), + [anon_sym___cdecl] = ACTIONS(5451), + [anon_sym___clrcall] = ACTIONS(5451), + [anon_sym___stdcall] = ACTIONS(5451), + [anon_sym___fastcall] = ACTIONS(5451), + [anon_sym___thiscall] = ACTIONS(5451), + [anon_sym___vectorcall] = ACTIONS(5451), + [anon_sym_signed] = ACTIONS(5451), + [anon_sym_unsigned] = ACTIONS(5451), + [anon_sym_long] = ACTIONS(5451), + [anon_sym_short] = ACTIONS(5451), + [anon_sym_static] = ACTIONS(5451), + [anon_sym_auto] = ACTIONS(5451), + [anon_sym_register] = ACTIONS(5451), + [anon_sym_inline] = ACTIONS(5451), + [anon_sym___inline] = ACTIONS(5451), + [anon_sym___inline__] = ACTIONS(5451), + [anon_sym___forceinline] = ACTIONS(5451), + [anon_sym_thread_local] = ACTIONS(5451), + [anon_sym___thread] = ACTIONS(5451), + [anon_sym_CG_EXTERN] = ACTIONS(5451), + [anon_sym_CG_INLINE] = ACTIONS(5451), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5451), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5451), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5451), + [anon_sym_IBOutlet] = ACTIONS(5451), + [anon_sym_IBInspectable] = ACTIONS(5451), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5451), + [anon_sym_NS_INLINE] = ACTIONS(5451), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5451), + [anon_sym_OBJC_EXPORT] = ACTIONS(5451), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5451), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5451), + [anon_sym_const] = ACTIONS(5451), + [anon_sym_constexpr] = ACTIONS(5451), + [anon_sym_volatile] = ACTIONS(5451), + [anon_sym_restrict] = ACTIONS(5451), + [anon_sym___restrict__] = ACTIONS(5451), + [anon_sym__Atomic] = ACTIONS(5451), + [anon_sym__Noreturn] = ACTIONS(5451), + [anon_sym__Nonnull] = ACTIONS(5451), + [anon_sym_nullable] = ACTIONS(5451), + [anon_sym__Complex] = ACTIONS(5451), + [anon_sym__Nullable] = ACTIONS(5451), + [anon_sym__Nullable_result] = ACTIONS(5451), + [anon_sym__Null_unspecified] = ACTIONS(5451), + [anon_sym___autoreleasing] = ACTIONS(5451), + [anon_sym___block] = ACTIONS(5451), + [anon_sym___bridge] = ACTIONS(5451), + [anon_sym___bridge_retained] = ACTIONS(5451), + [anon_sym___bridge_transfer] = ACTIONS(5451), + [anon_sym___complex] = ACTIONS(5451), + [anon_sym___const] = ACTIONS(5451), + [anon_sym___imag] = ACTIONS(5451), + [anon_sym___kindof] = ACTIONS(5451), + [anon_sym___nonnull] = ACTIONS(5451), + [anon_sym___nullable] = ACTIONS(5451), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5451), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5451), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5451), + [anon_sym___real] = ACTIONS(5451), + [anon_sym___strong] = ACTIONS(5451), + [anon_sym___unsafe_unretained] = ACTIONS(5451), + [anon_sym___unused] = ACTIONS(5451), + [anon_sym___weak] = ACTIONS(5451), + [anon_sym_alignas] = ACTIONS(5451), + [anon_sym__Alignas] = ACTIONS(5451), + [sym_primitive_type] = ACTIONS(5451), + [anon_sym_enum] = ACTIONS(5451), + [anon_sym_struct] = ACTIONS(5451), + [anon_sym_union] = ACTIONS(5451), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5451), + [anon_sym___typeof] = ACTIONS(5451), + [anon_sym_typeof] = ACTIONS(5451), + [aux_sym_preproc_undef_token1] = ACTIONS(5451), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5451), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5451), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5451), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5451), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5451), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5451), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5451), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5451), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5451), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5451), + [anon_sym_NS_AVAILABLE] = ACTIONS(5451), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5451), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5451), + [anon_sym_API_AVAILABLE] = ACTIONS(5451), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5451), + [anon_sym_API_DEPRECATED] = ACTIONS(5451), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5451), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5451), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5451), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5451), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5451), + [anon_sym___deprecated_msg] = ACTIONS(5451), + [anon_sym___deprecated_enum_msg] = ACTIONS(5451), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5451), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5451), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5451), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5451), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5451), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5451), + [anon_sym_ATend] = ACTIONS(5453), + [anon_sym_ATsynthesize] = ACTIONS(5453), + [anon_sym_ATdynamic] = ACTIONS(5453), + [anon_sym_ATproperty] = ACTIONS(5453), + [anon_sym_BOOL] = ACTIONS(5451), + [anon_sym_IMP] = ACTIONS(5451), + [anon_sym_SEL] = ACTIONS(5451), + [anon_sym_Class] = ACTIONS(5451), + [anon_sym_id] = ACTIONS(5451), + }, + [2235] = { + [sym_identifier] = ACTIONS(5457), + [aux_sym_preproc_def_token1] = ACTIONS(5457), + [aux_sym_preproc_if_token1] = ACTIONS(5457), + [aux_sym_preproc_if_token2] = ACTIONS(5457), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5457), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5457), + [aux_sym_preproc_else_token1] = ACTIONS(5457), + [aux_sym_preproc_elif_token1] = ACTIONS(5457), + [sym_preproc_directive] = ACTIONS(5457), + [anon_sym_DASH] = ACTIONS(5459), + [anon_sym_PLUS] = ACTIONS(5459), + [anon_sym___extension__] = ACTIONS(5457), + [anon_sym_typedef] = ACTIONS(5457), + [anon_sym_extern] = ACTIONS(5457), + [anon_sym___attribute__] = ACTIONS(5457), + [anon_sym___attribute] = ACTIONS(5457), + [anon_sym_noreturn] = ACTIONS(5457), + [anon_sym_LBRACK] = ACTIONS(5459), + [anon_sym___declspec] = ACTIONS(5457), + [anon_sym___cdecl] = ACTIONS(5457), + [anon_sym___clrcall] = ACTIONS(5457), + [anon_sym___stdcall] = ACTIONS(5457), + [anon_sym___fastcall] = ACTIONS(5457), + [anon_sym___thiscall] = ACTIONS(5457), + [anon_sym___vectorcall] = ACTIONS(5457), + [anon_sym_signed] = ACTIONS(5457), + [anon_sym_unsigned] = ACTIONS(5457), + [anon_sym_long] = ACTIONS(5457), + [anon_sym_short] = ACTIONS(5457), + [anon_sym_static] = ACTIONS(5457), + [anon_sym_auto] = ACTIONS(5457), + [anon_sym_register] = ACTIONS(5457), + [anon_sym_inline] = ACTIONS(5457), + [anon_sym___inline] = ACTIONS(5457), + [anon_sym___inline__] = ACTIONS(5457), + [anon_sym___forceinline] = ACTIONS(5457), + [anon_sym_thread_local] = ACTIONS(5457), + [anon_sym___thread] = ACTIONS(5457), + [anon_sym_CG_EXTERN] = ACTIONS(5457), + [anon_sym_CG_INLINE] = ACTIONS(5457), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5457), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5457), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5457), + [anon_sym_IBOutlet] = ACTIONS(5457), + [anon_sym_IBInspectable] = ACTIONS(5457), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5457), + [anon_sym_NS_INLINE] = ACTIONS(5457), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5457), + [anon_sym_OBJC_EXPORT] = ACTIONS(5457), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5457), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5457), + [anon_sym_const] = ACTIONS(5457), + [anon_sym_constexpr] = ACTIONS(5457), + [anon_sym_volatile] = ACTIONS(5457), + [anon_sym_restrict] = ACTIONS(5457), + [anon_sym___restrict__] = ACTIONS(5457), + [anon_sym__Atomic] = ACTIONS(5457), + [anon_sym__Noreturn] = ACTIONS(5457), + [anon_sym__Nonnull] = ACTIONS(5457), + [anon_sym_nullable] = ACTIONS(5457), + [anon_sym__Complex] = ACTIONS(5457), + [anon_sym__Nullable] = ACTIONS(5457), + [anon_sym__Nullable_result] = ACTIONS(5457), + [anon_sym__Null_unspecified] = ACTIONS(5457), + [anon_sym___autoreleasing] = ACTIONS(5457), + [anon_sym___block] = ACTIONS(5457), + [anon_sym___bridge] = ACTIONS(5457), + [anon_sym___bridge_retained] = ACTIONS(5457), + [anon_sym___bridge_transfer] = ACTIONS(5457), + [anon_sym___complex] = ACTIONS(5457), + [anon_sym___const] = ACTIONS(5457), + [anon_sym___imag] = ACTIONS(5457), + [anon_sym___kindof] = ACTIONS(5457), + [anon_sym___nonnull] = ACTIONS(5457), + [anon_sym___nullable] = ACTIONS(5457), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5457), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5457), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5457), + [anon_sym___real] = ACTIONS(5457), + [anon_sym___strong] = ACTIONS(5457), + [anon_sym___unsafe_unretained] = ACTIONS(5457), + [anon_sym___unused] = ACTIONS(5457), + [anon_sym___weak] = ACTIONS(5457), + [anon_sym_alignas] = ACTIONS(5457), + [anon_sym__Alignas] = ACTIONS(5457), + [sym_primitive_type] = ACTIONS(5457), + [anon_sym_enum] = ACTIONS(5457), + [anon_sym_struct] = ACTIONS(5457), + [anon_sym_union] = ACTIONS(5457), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5457), + [anon_sym___typeof] = ACTIONS(5457), + [anon_sym_typeof] = ACTIONS(5457), + [aux_sym_preproc_undef_token1] = ACTIONS(5457), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5457), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5457), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5457), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5457), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5457), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5457), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5457), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5457), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5457), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5457), + [anon_sym_NS_AVAILABLE] = ACTIONS(5457), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5457), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5457), + [anon_sym_API_AVAILABLE] = ACTIONS(5457), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5457), + [anon_sym_API_DEPRECATED] = ACTIONS(5457), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5457), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5457), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5457), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5457), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5457), + [anon_sym___deprecated_msg] = ACTIONS(5457), + [anon_sym___deprecated_enum_msg] = ACTIONS(5457), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5457), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5457), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5457), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5457), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5457), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5457), + [anon_sym_ATsynthesize] = ACTIONS(5459), + [anon_sym_ATdynamic] = ACTIONS(5459), + [anon_sym_BOOL] = ACTIONS(5457), + [anon_sym_IMP] = ACTIONS(5457), + [anon_sym_SEL] = ACTIONS(5457), + [anon_sym_Class] = ACTIONS(5457), + [anon_sym_id] = ACTIONS(5457), + }, + [2236] = { + [sym_identifier] = ACTIONS(5461), + [aux_sym_preproc_def_token1] = ACTIONS(5461), + [aux_sym_preproc_if_token1] = ACTIONS(5461), + [aux_sym_preproc_if_token2] = ACTIONS(5461), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5461), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5461), + [aux_sym_preproc_else_token1] = ACTIONS(5461), + [aux_sym_preproc_elif_token1] = ACTIONS(5461), + [sym_preproc_directive] = ACTIONS(5461), + [anon_sym_DASH] = ACTIONS(5463), + [anon_sym_PLUS] = ACTIONS(5463), + [anon_sym___extension__] = ACTIONS(5461), + [anon_sym_typedef] = ACTIONS(5461), + [anon_sym_extern] = ACTIONS(5461), + [anon_sym___attribute__] = ACTIONS(5461), + [anon_sym___attribute] = ACTIONS(5461), + [anon_sym_noreturn] = ACTIONS(5461), + [anon_sym_LBRACK] = ACTIONS(5463), + [anon_sym___declspec] = ACTIONS(5461), + [anon_sym___cdecl] = ACTIONS(5461), + [anon_sym___clrcall] = ACTIONS(5461), + [anon_sym___stdcall] = ACTIONS(5461), + [anon_sym___fastcall] = ACTIONS(5461), + [anon_sym___thiscall] = ACTIONS(5461), + [anon_sym___vectorcall] = ACTIONS(5461), + [anon_sym_signed] = ACTIONS(5461), + [anon_sym_unsigned] = ACTIONS(5461), + [anon_sym_long] = ACTIONS(5461), + [anon_sym_short] = ACTIONS(5461), + [anon_sym_static] = ACTIONS(5461), + [anon_sym_auto] = ACTIONS(5461), + [anon_sym_register] = ACTIONS(5461), + [anon_sym_inline] = ACTIONS(5461), + [anon_sym___inline] = ACTIONS(5461), + [anon_sym___inline__] = ACTIONS(5461), + [anon_sym___forceinline] = ACTIONS(5461), + [anon_sym_thread_local] = ACTIONS(5461), + [anon_sym___thread] = ACTIONS(5461), + [anon_sym_CG_EXTERN] = ACTIONS(5461), + [anon_sym_CG_INLINE] = ACTIONS(5461), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5461), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5461), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5461), + [anon_sym_IBOutlet] = ACTIONS(5461), + [anon_sym_IBInspectable] = ACTIONS(5461), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5461), + [anon_sym_NS_INLINE] = ACTIONS(5461), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5461), + [anon_sym_OBJC_EXPORT] = ACTIONS(5461), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5461), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5461), + [anon_sym_const] = ACTIONS(5461), + [anon_sym_constexpr] = ACTIONS(5461), + [anon_sym_volatile] = ACTIONS(5461), + [anon_sym_restrict] = ACTIONS(5461), + [anon_sym___restrict__] = ACTIONS(5461), + [anon_sym__Atomic] = ACTIONS(5461), + [anon_sym__Noreturn] = ACTIONS(5461), + [anon_sym__Nonnull] = ACTIONS(5461), + [anon_sym_nullable] = ACTIONS(5461), + [anon_sym__Complex] = ACTIONS(5461), + [anon_sym__Nullable] = ACTIONS(5461), + [anon_sym__Nullable_result] = ACTIONS(5461), + [anon_sym__Null_unspecified] = ACTIONS(5461), + [anon_sym___autoreleasing] = ACTIONS(5461), + [anon_sym___block] = ACTIONS(5461), + [anon_sym___bridge] = ACTIONS(5461), + [anon_sym___bridge_retained] = ACTIONS(5461), + [anon_sym___bridge_transfer] = ACTIONS(5461), + [anon_sym___complex] = ACTIONS(5461), + [anon_sym___const] = ACTIONS(5461), + [anon_sym___imag] = ACTIONS(5461), + [anon_sym___kindof] = ACTIONS(5461), + [anon_sym___nonnull] = ACTIONS(5461), + [anon_sym___nullable] = ACTIONS(5461), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5461), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5461), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5461), + [anon_sym___real] = ACTIONS(5461), + [anon_sym___strong] = ACTIONS(5461), + [anon_sym___unsafe_unretained] = ACTIONS(5461), + [anon_sym___unused] = ACTIONS(5461), + [anon_sym___weak] = ACTIONS(5461), + [anon_sym_alignas] = ACTIONS(5461), + [anon_sym__Alignas] = ACTIONS(5461), + [sym_primitive_type] = ACTIONS(5461), + [anon_sym_enum] = ACTIONS(5461), + [anon_sym_struct] = ACTIONS(5461), + [anon_sym_union] = ACTIONS(5461), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5461), + [anon_sym___typeof] = ACTIONS(5461), + [anon_sym_typeof] = ACTIONS(5461), + [aux_sym_preproc_undef_token1] = ACTIONS(5461), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5461), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5461), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5461), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5461), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5461), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5461), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5461), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5461), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5461), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5461), + [anon_sym_NS_AVAILABLE] = ACTIONS(5461), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5461), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5461), + [anon_sym_API_AVAILABLE] = ACTIONS(5461), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5461), + [anon_sym_API_DEPRECATED] = ACTIONS(5461), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5461), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5461), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5461), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5461), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5461), + [anon_sym___deprecated_msg] = ACTIONS(5461), + [anon_sym___deprecated_enum_msg] = ACTIONS(5461), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5461), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5461), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5461), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5461), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5461), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5461), + [anon_sym_ATsynthesize] = ACTIONS(5463), + [anon_sym_ATdynamic] = ACTIONS(5463), + [anon_sym_BOOL] = ACTIONS(5461), + [anon_sym_IMP] = ACTIONS(5461), + [anon_sym_SEL] = ACTIONS(5461), + [anon_sym_Class] = ACTIONS(5461), + [anon_sym_id] = ACTIONS(5461), + }, + [2237] = { + [sym_identifier] = ACTIONS(5028), + [aux_sym_preproc_def_token1] = ACTIONS(5028), + [aux_sym_preproc_if_token1] = ACTIONS(5028), + [aux_sym_preproc_if_token2] = ACTIONS(5028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5028), + [aux_sym_preproc_else_token1] = ACTIONS(5028), + [aux_sym_preproc_elif_token1] = ACTIONS(5028), + [sym_preproc_directive] = ACTIONS(5028), + [anon_sym_DASH] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5032), + [anon_sym___extension__] = ACTIONS(5028), + [anon_sym_typedef] = ACTIONS(5028), + [anon_sym_extern] = ACTIONS(5028), + [anon_sym___attribute__] = ACTIONS(5028), + [anon_sym___attribute] = ACTIONS(5028), + [anon_sym_noreturn] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5032), + [anon_sym___declspec] = ACTIONS(5028), + [anon_sym___cdecl] = ACTIONS(5028), + [anon_sym___clrcall] = ACTIONS(5028), + [anon_sym___stdcall] = ACTIONS(5028), + [anon_sym___fastcall] = ACTIONS(5028), + [anon_sym___thiscall] = ACTIONS(5028), + [anon_sym___vectorcall] = ACTIONS(5028), + [anon_sym_signed] = ACTIONS(5028), + [anon_sym_unsigned] = ACTIONS(5028), + [anon_sym_long] = ACTIONS(5028), + [anon_sym_short] = ACTIONS(5028), + [anon_sym_static] = ACTIONS(5028), + [anon_sym_auto] = ACTIONS(5028), + [anon_sym_register] = ACTIONS(5028), + [anon_sym_inline] = ACTIONS(5028), + [anon_sym___inline] = ACTIONS(5028), + [anon_sym___inline__] = ACTIONS(5028), + [anon_sym___forceinline] = ACTIONS(5028), + [anon_sym_thread_local] = ACTIONS(5028), + [anon_sym___thread] = ACTIONS(5028), + [anon_sym_CG_EXTERN] = ACTIONS(5028), + [anon_sym_CG_INLINE] = ACTIONS(5028), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5028), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5028), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5028), + [anon_sym_IBOutlet] = ACTIONS(5028), + [anon_sym_IBInspectable] = ACTIONS(5028), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5028), + [anon_sym_NS_INLINE] = ACTIONS(5028), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5028), + [anon_sym_OBJC_EXPORT] = ACTIONS(5028), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5028), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5028), + [anon_sym_const] = ACTIONS(5028), + [anon_sym_constexpr] = ACTIONS(5028), + [anon_sym_volatile] = ACTIONS(5028), + [anon_sym_restrict] = ACTIONS(5028), + [anon_sym___restrict__] = ACTIONS(5028), + [anon_sym__Atomic] = ACTIONS(5028), + [anon_sym__Noreturn] = ACTIONS(5028), + [anon_sym__Nonnull] = ACTIONS(5028), + [anon_sym_nullable] = ACTIONS(5028), + [anon_sym__Complex] = ACTIONS(5028), + [anon_sym__Nullable] = ACTIONS(5028), + [anon_sym__Nullable_result] = ACTIONS(5028), + [anon_sym__Null_unspecified] = ACTIONS(5028), + [anon_sym___autoreleasing] = ACTIONS(5028), + [anon_sym___block] = ACTIONS(5028), + [anon_sym___bridge] = ACTIONS(5028), + [anon_sym___bridge_retained] = ACTIONS(5028), + [anon_sym___bridge_transfer] = ACTIONS(5028), + [anon_sym___complex] = ACTIONS(5028), + [anon_sym___const] = ACTIONS(5028), + [anon_sym___imag] = ACTIONS(5028), + [anon_sym___kindof] = ACTIONS(5028), + [anon_sym___nonnull] = ACTIONS(5028), + [anon_sym___nullable] = ACTIONS(5028), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5028), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5028), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5028), + [anon_sym___real] = ACTIONS(5028), + [anon_sym___strong] = ACTIONS(5028), + [anon_sym___unsafe_unretained] = ACTIONS(5028), + [anon_sym___unused] = ACTIONS(5028), + [anon_sym___weak] = ACTIONS(5028), + [anon_sym_alignas] = ACTIONS(5028), + [anon_sym__Alignas] = ACTIONS(5028), + [sym_primitive_type] = ACTIONS(5028), + [anon_sym_enum] = ACTIONS(5028), + [anon_sym_struct] = ACTIONS(5028), + [anon_sym_union] = ACTIONS(5028), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5028), + [anon_sym___typeof] = ACTIONS(5028), + [anon_sym_typeof] = ACTIONS(5028), + [aux_sym_preproc_undef_token1] = ACTIONS(5028), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5028), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5028), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5028), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5028), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5028), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5028), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5028), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5028), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5028), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5028), + [anon_sym_NS_AVAILABLE] = ACTIONS(5028), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5028), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5028), + [anon_sym_API_AVAILABLE] = ACTIONS(5028), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5028), + [anon_sym_API_DEPRECATED] = ACTIONS(5028), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5028), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5028), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5028), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5028), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5028), + [anon_sym___deprecated_msg] = ACTIONS(5028), + [anon_sym___deprecated_enum_msg] = ACTIONS(5028), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5028), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5028), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5028), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5028), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5028), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5028), + [anon_sym_ATsynthesize] = ACTIONS(5032), + [anon_sym_ATdynamic] = ACTIONS(5032), + [anon_sym_BOOL] = ACTIONS(5028), + [anon_sym_IMP] = ACTIONS(5028), + [anon_sym_SEL] = ACTIONS(5028), + [anon_sym_Class] = ACTIONS(5028), + [anon_sym_id] = ACTIONS(5028), + }, + [2238] = { + [sym_identifier] = ACTIONS(5465), + [aux_sym_preproc_def_token1] = ACTIONS(5465), + [aux_sym_preproc_if_token1] = ACTIONS(5465), + [aux_sym_preproc_if_token2] = ACTIONS(5465), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5465), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5465), + [aux_sym_preproc_else_token1] = ACTIONS(5465), + [aux_sym_preproc_elif_token1] = ACTIONS(5465), + [sym_preproc_directive] = ACTIONS(5465), + [anon_sym_DASH] = ACTIONS(5467), + [anon_sym_PLUS] = ACTIONS(5467), + [anon_sym___extension__] = ACTIONS(5465), + [anon_sym_typedef] = ACTIONS(5465), + [anon_sym_extern] = ACTIONS(5465), + [anon_sym___attribute__] = ACTIONS(5465), + [anon_sym___attribute] = ACTIONS(5465), + [anon_sym_noreturn] = ACTIONS(5465), + [anon_sym_LBRACK] = ACTIONS(5467), + [anon_sym___declspec] = ACTIONS(5465), + [anon_sym___cdecl] = ACTIONS(5465), + [anon_sym___clrcall] = ACTIONS(5465), + [anon_sym___stdcall] = ACTIONS(5465), + [anon_sym___fastcall] = ACTIONS(5465), + [anon_sym___thiscall] = ACTIONS(5465), + [anon_sym___vectorcall] = ACTIONS(5465), + [anon_sym_signed] = ACTIONS(5465), + [anon_sym_unsigned] = ACTIONS(5465), + [anon_sym_long] = ACTIONS(5465), + [anon_sym_short] = ACTIONS(5465), + [anon_sym_static] = ACTIONS(5465), + [anon_sym_auto] = ACTIONS(5465), + [anon_sym_register] = ACTIONS(5465), + [anon_sym_inline] = ACTIONS(5465), + [anon_sym___inline] = ACTIONS(5465), + [anon_sym___inline__] = ACTIONS(5465), + [anon_sym___forceinline] = ACTIONS(5465), + [anon_sym_thread_local] = ACTIONS(5465), + [anon_sym___thread] = ACTIONS(5465), + [anon_sym_CG_EXTERN] = ACTIONS(5465), + [anon_sym_CG_INLINE] = ACTIONS(5465), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5465), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5465), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5465), + [anon_sym_IBOutlet] = ACTIONS(5465), + [anon_sym_IBInspectable] = ACTIONS(5465), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5465), + [anon_sym_NS_INLINE] = ACTIONS(5465), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5465), + [anon_sym_OBJC_EXPORT] = ACTIONS(5465), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5465), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5465), + [anon_sym_const] = ACTIONS(5465), + [anon_sym_constexpr] = ACTIONS(5465), + [anon_sym_volatile] = ACTIONS(5465), + [anon_sym_restrict] = ACTIONS(5465), + [anon_sym___restrict__] = ACTIONS(5465), + [anon_sym__Atomic] = ACTIONS(5465), + [anon_sym__Noreturn] = ACTIONS(5465), + [anon_sym__Nonnull] = ACTIONS(5465), + [anon_sym_nullable] = ACTIONS(5465), + [anon_sym__Complex] = ACTIONS(5465), + [anon_sym__Nullable] = ACTIONS(5465), + [anon_sym__Nullable_result] = ACTIONS(5465), + [anon_sym__Null_unspecified] = ACTIONS(5465), + [anon_sym___autoreleasing] = ACTIONS(5465), + [anon_sym___block] = ACTIONS(5465), + [anon_sym___bridge] = ACTIONS(5465), + [anon_sym___bridge_retained] = ACTIONS(5465), + [anon_sym___bridge_transfer] = ACTIONS(5465), + [anon_sym___complex] = ACTIONS(5465), + [anon_sym___const] = ACTIONS(5465), + [anon_sym___imag] = ACTIONS(5465), + [anon_sym___kindof] = ACTIONS(5465), + [anon_sym___nonnull] = ACTIONS(5465), + [anon_sym___nullable] = ACTIONS(5465), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5465), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5465), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5465), + [anon_sym___real] = ACTIONS(5465), + [anon_sym___strong] = ACTIONS(5465), + [anon_sym___unsafe_unretained] = ACTIONS(5465), + [anon_sym___unused] = ACTIONS(5465), + [anon_sym___weak] = ACTIONS(5465), + [anon_sym_alignas] = ACTIONS(5465), + [anon_sym__Alignas] = ACTIONS(5465), + [sym_primitive_type] = ACTIONS(5465), + [anon_sym_enum] = ACTIONS(5465), + [anon_sym_struct] = ACTIONS(5465), + [anon_sym_union] = ACTIONS(5465), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5465), + [anon_sym___typeof] = ACTIONS(5465), + [anon_sym_typeof] = ACTIONS(5465), + [aux_sym_preproc_undef_token1] = ACTIONS(5465), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5465), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5465), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5465), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5465), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5465), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5465), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5465), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5465), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5465), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5465), + [anon_sym_NS_AVAILABLE] = ACTIONS(5465), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5465), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5465), + [anon_sym_API_AVAILABLE] = ACTIONS(5465), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5465), + [anon_sym_API_DEPRECATED] = ACTIONS(5465), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5465), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5465), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5465), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5465), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5465), + [anon_sym___deprecated_msg] = ACTIONS(5465), + [anon_sym___deprecated_enum_msg] = ACTIONS(5465), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5465), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5465), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5465), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5465), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5465), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5465), + [anon_sym_ATsynthesize] = ACTIONS(5467), + [anon_sym_ATdynamic] = ACTIONS(5467), + [anon_sym_BOOL] = ACTIONS(5465), + [anon_sym_IMP] = ACTIONS(5465), + [anon_sym_SEL] = ACTIONS(5465), + [anon_sym_Class] = ACTIONS(5465), + [anon_sym_id] = ACTIONS(5465), + }, + [2239] = { + [sym_identifier] = ACTIONS(5425), + [aux_sym_preproc_def_token1] = ACTIONS(5425), + [aux_sym_preproc_if_token1] = ACTIONS(5425), + [aux_sym_preproc_if_token2] = ACTIONS(5425), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5425), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5425), + [aux_sym_preproc_else_token1] = ACTIONS(5425), + [aux_sym_preproc_elif_token1] = ACTIONS(5425), + [sym_preproc_directive] = ACTIONS(5425), + [anon_sym_DASH] = ACTIONS(5427), + [anon_sym_PLUS] = ACTIONS(5427), + [anon_sym___extension__] = ACTIONS(5425), + [anon_sym_typedef] = ACTIONS(5425), + [anon_sym_extern] = ACTIONS(5425), + [anon_sym___attribute__] = ACTIONS(5425), + [anon_sym___attribute] = ACTIONS(5425), + [anon_sym_noreturn] = ACTIONS(5425), + [anon_sym_LBRACK] = ACTIONS(5427), + [anon_sym___declspec] = ACTIONS(5425), + [anon_sym___cdecl] = ACTIONS(5425), + [anon_sym___clrcall] = ACTIONS(5425), + [anon_sym___stdcall] = ACTIONS(5425), + [anon_sym___fastcall] = ACTIONS(5425), + [anon_sym___thiscall] = ACTIONS(5425), + [anon_sym___vectorcall] = ACTIONS(5425), + [anon_sym_signed] = ACTIONS(5425), + [anon_sym_unsigned] = ACTIONS(5425), + [anon_sym_long] = ACTIONS(5425), + [anon_sym_short] = ACTIONS(5425), + [anon_sym_static] = ACTIONS(5425), + [anon_sym_auto] = ACTIONS(5425), + [anon_sym_register] = ACTIONS(5425), + [anon_sym_inline] = ACTIONS(5425), + [anon_sym___inline] = ACTIONS(5425), + [anon_sym___inline__] = ACTIONS(5425), + [anon_sym___forceinline] = ACTIONS(5425), + [anon_sym_thread_local] = ACTIONS(5425), + [anon_sym___thread] = ACTIONS(5425), + [anon_sym_CG_EXTERN] = ACTIONS(5425), + [anon_sym_CG_INLINE] = ACTIONS(5425), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5425), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5425), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5425), + [anon_sym_IBOutlet] = ACTIONS(5425), + [anon_sym_IBInspectable] = ACTIONS(5425), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5425), + [anon_sym_NS_INLINE] = ACTIONS(5425), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5425), + [anon_sym_OBJC_EXPORT] = ACTIONS(5425), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5425), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5425), + [anon_sym_const] = ACTIONS(5425), + [anon_sym_constexpr] = ACTIONS(5425), + [anon_sym_volatile] = ACTIONS(5425), + [anon_sym_restrict] = ACTIONS(5425), + [anon_sym___restrict__] = ACTIONS(5425), + [anon_sym__Atomic] = ACTIONS(5425), + [anon_sym__Noreturn] = ACTIONS(5425), + [anon_sym__Nonnull] = ACTIONS(5425), + [anon_sym_nullable] = ACTIONS(5425), + [anon_sym__Complex] = ACTIONS(5425), + [anon_sym__Nullable] = ACTIONS(5425), + [anon_sym__Nullable_result] = ACTIONS(5425), + [anon_sym__Null_unspecified] = ACTIONS(5425), + [anon_sym___autoreleasing] = ACTIONS(5425), + [anon_sym___block] = ACTIONS(5425), + [anon_sym___bridge] = ACTIONS(5425), + [anon_sym___bridge_retained] = ACTIONS(5425), + [anon_sym___bridge_transfer] = ACTIONS(5425), + [anon_sym___complex] = ACTIONS(5425), + [anon_sym___const] = ACTIONS(5425), + [anon_sym___imag] = ACTIONS(5425), + [anon_sym___kindof] = ACTIONS(5425), + [anon_sym___nonnull] = ACTIONS(5425), + [anon_sym___nullable] = ACTIONS(5425), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5425), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5425), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5425), + [anon_sym___real] = ACTIONS(5425), + [anon_sym___strong] = ACTIONS(5425), + [anon_sym___unsafe_unretained] = ACTIONS(5425), + [anon_sym___unused] = ACTIONS(5425), + [anon_sym___weak] = ACTIONS(5425), + [anon_sym_alignas] = ACTIONS(5425), + [anon_sym__Alignas] = ACTIONS(5425), + [sym_primitive_type] = ACTIONS(5425), + [anon_sym_enum] = ACTIONS(5425), + [anon_sym_struct] = ACTIONS(5425), + [anon_sym_union] = ACTIONS(5425), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5425), + [anon_sym___typeof] = ACTIONS(5425), + [anon_sym_typeof] = ACTIONS(5425), + [aux_sym_preproc_undef_token1] = ACTIONS(5425), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5425), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5425), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5425), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5425), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5425), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5425), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5425), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5425), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5425), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5425), + [anon_sym_NS_AVAILABLE] = ACTIONS(5425), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5425), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5425), + [anon_sym_API_AVAILABLE] = ACTIONS(5425), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5425), + [anon_sym_API_DEPRECATED] = ACTIONS(5425), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5425), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5425), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5425), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5425), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5425), + [anon_sym___deprecated_msg] = ACTIONS(5425), + [anon_sym___deprecated_enum_msg] = ACTIONS(5425), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5425), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5425), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5425), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5425), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5425), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5425), + [anon_sym_ATsynthesize] = ACTIONS(5427), + [anon_sym_ATdynamic] = ACTIONS(5427), + [anon_sym_BOOL] = ACTIONS(5425), + [anon_sym_IMP] = ACTIONS(5425), + [anon_sym_SEL] = ACTIONS(5425), + [anon_sym_Class] = ACTIONS(5425), + [anon_sym_id] = ACTIONS(5425), + }, + [2240] = { + [sym_identifier] = ACTIONS(5409), + [aux_sym_preproc_def_token1] = ACTIONS(5409), + [aux_sym_preproc_if_token1] = ACTIONS(5409), + [aux_sym_preproc_if_token2] = ACTIONS(5409), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5409), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5409), + [aux_sym_preproc_else_token1] = ACTIONS(5409), + [aux_sym_preproc_elif_token1] = ACTIONS(5409), + [sym_preproc_directive] = ACTIONS(5409), + [anon_sym_DASH] = ACTIONS(5411), + [anon_sym_PLUS] = ACTIONS(5411), + [anon_sym___extension__] = ACTIONS(5409), + [anon_sym_typedef] = ACTIONS(5409), + [anon_sym_extern] = ACTIONS(5409), + [anon_sym___attribute__] = ACTIONS(5409), + [anon_sym___attribute] = ACTIONS(5409), + [anon_sym_noreturn] = ACTIONS(5409), + [anon_sym_LBRACK] = ACTIONS(5411), + [anon_sym___declspec] = ACTIONS(5409), + [anon_sym___cdecl] = ACTIONS(5409), + [anon_sym___clrcall] = ACTIONS(5409), + [anon_sym___stdcall] = ACTIONS(5409), + [anon_sym___fastcall] = ACTIONS(5409), + [anon_sym___thiscall] = ACTIONS(5409), + [anon_sym___vectorcall] = ACTIONS(5409), + [anon_sym_signed] = ACTIONS(5409), + [anon_sym_unsigned] = ACTIONS(5409), + [anon_sym_long] = ACTIONS(5409), + [anon_sym_short] = ACTIONS(5409), + [anon_sym_static] = ACTIONS(5409), + [anon_sym_auto] = ACTIONS(5409), + [anon_sym_register] = ACTIONS(5409), + [anon_sym_inline] = ACTIONS(5409), + [anon_sym___inline] = ACTIONS(5409), + [anon_sym___inline__] = ACTIONS(5409), + [anon_sym___forceinline] = ACTIONS(5409), + [anon_sym_thread_local] = ACTIONS(5409), + [anon_sym___thread] = ACTIONS(5409), + [anon_sym_CG_EXTERN] = ACTIONS(5409), + [anon_sym_CG_INLINE] = ACTIONS(5409), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5409), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5409), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5409), + [anon_sym_IBOutlet] = ACTIONS(5409), + [anon_sym_IBInspectable] = ACTIONS(5409), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5409), + [anon_sym_NS_INLINE] = ACTIONS(5409), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5409), + [anon_sym_OBJC_EXPORT] = ACTIONS(5409), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5409), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5409), + [anon_sym_const] = ACTIONS(5409), + [anon_sym_constexpr] = ACTIONS(5409), + [anon_sym_volatile] = ACTIONS(5409), + [anon_sym_restrict] = ACTIONS(5409), + [anon_sym___restrict__] = ACTIONS(5409), + [anon_sym__Atomic] = ACTIONS(5409), + [anon_sym__Noreturn] = ACTIONS(5409), + [anon_sym__Nonnull] = ACTIONS(5409), + [anon_sym_nullable] = ACTIONS(5409), + [anon_sym__Complex] = ACTIONS(5409), + [anon_sym__Nullable] = ACTIONS(5409), + [anon_sym__Nullable_result] = ACTIONS(5409), + [anon_sym__Null_unspecified] = ACTIONS(5409), + [anon_sym___autoreleasing] = ACTIONS(5409), + [anon_sym___block] = ACTIONS(5409), + [anon_sym___bridge] = ACTIONS(5409), + [anon_sym___bridge_retained] = ACTIONS(5409), + [anon_sym___bridge_transfer] = ACTIONS(5409), + [anon_sym___complex] = ACTIONS(5409), + [anon_sym___const] = ACTIONS(5409), + [anon_sym___imag] = ACTIONS(5409), + [anon_sym___kindof] = ACTIONS(5409), + [anon_sym___nonnull] = ACTIONS(5409), + [anon_sym___nullable] = ACTIONS(5409), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5409), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5409), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5409), + [anon_sym___real] = ACTIONS(5409), + [anon_sym___strong] = ACTIONS(5409), + [anon_sym___unsafe_unretained] = ACTIONS(5409), + [anon_sym___unused] = ACTIONS(5409), + [anon_sym___weak] = ACTIONS(5409), + [anon_sym_alignas] = ACTIONS(5409), + [anon_sym__Alignas] = ACTIONS(5409), + [sym_primitive_type] = ACTIONS(5409), + [anon_sym_enum] = ACTIONS(5409), + [anon_sym_struct] = ACTIONS(5409), + [anon_sym_union] = ACTIONS(5409), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5409), + [anon_sym___typeof] = ACTIONS(5409), + [anon_sym_typeof] = ACTIONS(5409), + [aux_sym_preproc_undef_token1] = ACTIONS(5409), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5409), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5409), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5409), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5409), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5409), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5409), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5409), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5409), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5409), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5409), + [anon_sym_NS_AVAILABLE] = ACTIONS(5409), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5409), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5409), + [anon_sym_API_AVAILABLE] = ACTIONS(5409), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5409), + [anon_sym_API_DEPRECATED] = ACTIONS(5409), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5409), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5409), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5409), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5409), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5409), + [anon_sym___deprecated_msg] = ACTIONS(5409), + [anon_sym___deprecated_enum_msg] = ACTIONS(5409), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5409), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5409), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5409), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5409), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5409), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5409), + [anon_sym_ATsynthesize] = ACTIONS(5411), + [anon_sym_ATdynamic] = ACTIONS(5411), + [anon_sym_BOOL] = ACTIONS(5409), + [anon_sym_IMP] = ACTIONS(5409), + [anon_sym_SEL] = ACTIONS(5409), + [anon_sym_Class] = ACTIONS(5409), + [anon_sym_id] = ACTIONS(5409), + }, + [2241] = { + [sym_identifier] = ACTIONS(5397), + [aux_sym_preproc_def_token1] = ACTIONS(5397), + [aux_sym_preproc_if_token1] = ACTIONS(5397), + [aux_sym_preproc_if_token2] = ACTIONS(5397), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5397), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5397), + [aux_sym_preproc_else_token1] = ACTIONS(5397), + [aux_sym_preproc_elif_token1] = ACTIONS(5397), + [sym_preproc_directive] = ACTIONS(5397), + [anon_sym_DASH] = ACTIONS(5399), + [anon_sym_PLUS] = ACTIONS(5399), + [anon_sym___extension__] = ACTIONS(5397), + [anon_sym_typedef] = ACTIONS(5397), + [anon_sym_extern] = ACTIONS(5397), + [anon_sym___attribute__] = ACTIONS(5397), + [anon_sym___attribute] = ACTIONS(5397), + [anon_sym_noreturn] = ACTIONS(5397), + [anon_sym_LBRACK] = ACTIONS(5399), + [anon_sym___declspec] = ACTIONS(5397), + [anon_sym___cdecl] = ACTIONS(5397), + [anon_sym___clrcall] = ACTIONS(5397), + [anon_sym___stdcall] = ACTIONS(5397), + [anon_sym___fastcall] = ACTIONS(5397), + [anon_sym___thiscall] = ACTIONS(5397), + [anon_sym___vectorcall] = ACTIONS(5397), + [anon_sym_signed] = ACTIONS(5397), + [anon_sym_unsigned] = ACTIONS(5397), + [anon_sym_long] = ACTIONS(5397), + [anon_sym_short] = ACTIONS(5397), + [anon_sym_static] = ACTIONS(5397), + [anon_sym_auto] = ACTIONS(5397), + [anon_sym_register] = ACTIONS(5397), + [anon_sym_inline] = ACTIONS(5397), + [anon_sym___inline] = ACTIONS(5397), + [anon_sym___inline__] = ACTIONS(5397), + [anon_sym___forceinline] = ACTIONS(5397), + [anon_sym_thread_local] = ACTIONS(5397), + [anon_sym___thread] = ACTIONS(5397), + [anon_sym_CG_EXTERN] = ACTIONS(5397), + [anon_sym_CG_INLINE] = ACTIONS(5397), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5397), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5397), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5397), + [anon_sym_IBOutlet] = ACTIONS(5397), + [anon_sym_IBInspectable] = ACTIONS(5397), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5397), + [anon_sym_NS_INLINE] = ACTIONS(5397), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5397), + [anon_sym_OBJC_EXPORT] = ACTIONS(5397), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5397), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5397), + [anon_sym_const] = ACTIONS(5397), + [anon_sym_constexpr] = ACTIONS(5397), + [anon_sym_volatile] = ACTIONS(5397), + [anon_sym_restrict] = ACTIONS(5397), + [anon_sym___restrict__] = ACTIONS(5397), + [anon_sym__Atomic] = ACTIONS(5397), + [anon_sym__Noreturn] = ACTIONS(5397), + [anon_sym__Nonnull] = ACTIONS(5397), + [anon_sym_nullable] = ACTIONS(5397), + [anon_sym__Complex] = ACTIONS(5397), + [anon_sym__Nullable] = ACTIONS(5397), + [anon_sym__Nullable_result] = ACTIONS(5397), + [anon_sym__Null_unspecified] = ACTIONS(5397), + [anon_sym___autoreleasing] = ACTIONS(5397), + [anon_sym___block] = ACTIONS(5397), + [anon_sym___bridge] = ACTIONS(5397), + [anon_sym___bridge_retained] = ACTIONS(5397), + [anon_sym___bridge_transfer] = ACTIONS(5397), + [anon_sym___complex] = ACTIONS(5397), + [anon_sym___const] = ACTIONS(5397), + [anon_sym___imag] = ACTIONS(5397), + [anon_sym___kindof] = ACTIONS(5397), + [anon_sym___nonnull] = ACTIONS(5397), + [anon_sym___nullable] = ACTIONS(5397), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5397), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5397), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5397), + [anon_sym___real] = ACTIONS(5397), + [anon_sym___strong] = ACTIONS(5397), + [anon_sym___unsafe_unretained] = ACTIONS(5397), + [anon_sym___unused] = ACTIONS(5397), + [anon_sym___weak] = ACTIONS(5397), + [anon_sym_alignas] = ACTIONS(5397), + [anon_sym__Alignas] = ACTIONS(5397), + [sym_primitive_type] = ACTIONS(5397), + [anon_sym_enum] = ACTIONS(5397), + [anon_sym_struct] = ACTIONS(5397), + [anon_sym_union] = ACTIONS(5397), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5397), + [anon_sym___typeof] = ACTIONS(5397), + [anon_sym_typeof] = ACTIONS(5397), + [aux_sym_preproc_undef_token1] = ACTIONS(5397), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5397), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5397), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5397), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5397), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5397), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5397), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5397), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5397), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5397), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5397), + [anon_sym_NS_AVAILABLE] = ACTIONS(5397), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5397), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5397), + [anon_sym_API_AVAILABLE] = ACTIONS(5397), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5397), + [anon_sym_API_DEPRECATED] = ACTIONS(5397), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5397), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5397), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5397), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5397), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5397), + [anon_sym___deprecated_msg] = ACTIONS(5397), + [anon_sym___deprecated_enum_msg] = ACTIONS(5397), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5397), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5397), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5397), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5397), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5397), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5397), + [anon_sym_ATsynthesize] = ACTIONS(5399), + [anon_sym_ATdynamic] = ACTIONS(5399), + [anon_sym_BOOL] = ACTIONS(5397), + [anon_sym_IMP] = ACTIONS(5397), + [anon_sym_SEL] = ACTIONS(5397), + [anon_sym_Class] = ACTIONS(5397), + [anon_sym_id] = ACTIONS(5397), + }, + [2242] = { + [sym_identifier] = ACTIONS(5383), + [aux_sym_preproc_def_token1] = ACTIONS(5383), + [aux_sym_preproc_if_token1] = ACTIONS(5383), + [aux_sym_preproc_if_token2] = ACTIONS(5383), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5383), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5383), + [aux_sym_preproc_else_token1] = ACTIONS(5383), + [aux_sym_preproc_elif_token1] = ACTIONS(5383), + [sym_preproc_directive] = ACTIONS(5383), + [anon_sym_DASH] = ACTIONS(5385), + [anon_sym_PLUS] = ACTIONS(5385), + [anon_sym___extension__] = ACTIONS(5383), + [anon_sym_typedef] = ACTIONS(5383), + [anon_sym_extern] = ACTIONS(5383), + [anon_sym___attribute__] = ACTIONS(5383), + [anon_sym___attribute] = ACTIONS(5383), + [anon_sym_noreturn] = ACTIONS(5383), + [anon_sym_LBRACK] = ACTIONS(5385), + [anon_sym___declspec] = ACTIONS(5383), + [anon_sym___cdecl] = ACTIONS(5383), + [anon_sym___clrcall] = ACTIONS(5383), + [anon_sym___stdcall] = ACTIONS(5383), + [anon_sym___fastcall] = ACTIONS(5383), + [anon_sym___thiscall] = ACTIONS(5383), + [anon_sym___vectorcall] = ACTIONS(5383), + [anon_sym_signed] = ACTIONS(5383), + [anon_sym_unsigned] = ACTIONS(5383), + [anon_sym_long] = ACTIONS(5383), + [anon_sym_short] = ACTIONS(5383), + [anon_sym_static] = ACTIONS(5383), + [anon_sym_auto] = ACTIONS(5383), + [anon_sym_register] = ACTIONS(5383), + [anon_sym_inline] = ACTIONS(5383), + [anon_sym___inline] = ACTIONS(5383), + [anon_sym___inline__] = ACTIONS(5383), + [anon_sym___forceinline] = ACTIONS(5383), + [anon_sym_thread_local] = ACTIONS(5383), + [anon_sym___thread] = ACTIONS(5383), + [anon_sym_CG_EXTERN] = ACTIONS(5383), + [anon_sym_CG_INLINE] = ACTIONS(5383), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5383), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5383), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5383), + [anon_sym_IBOutlet] = ACTIONS(5383), + [anon_sym_IBInspectable] = ACTIONS(5383), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5383), + [anon_sym_NS_INLINE] = ACTIONS(5383), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5383), + [anon_sym_OBJC_EXPORT] = ACTIONS(5383), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5383), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5383), + [anon_sym_const] = ACTIONS(5383), + [anon_sym_constexpr] = ACTIONS(5383), + [anon_sym_volatile] = ACTIONS(5383), + [anon_sym_restrict] = ACTIONS(5383), + [anon_sym___restrict__] = ACTIONS(5383), + [anon_sym__Atomic] = ACTIONS(5383), + [anon_sym__Noreturn] = ACTIONS(5383), + [anon_sym__Nonnull] = ACTIONS(5383), + [anon_sym_nullable] = ACTIONS(5383), + [anon_sym__Complex] = ACTIONS(5383), + [anon_sym__Nullable] = ACTIONS(5383), + [anon_sym__Nullable_result] = ACTIONS(5383), + [anon_sym__Null_unspecified] = ACTIONS(5383), + [anon_sym___autoreleasing] = ACTIONS(5383), + [anon_sym___block] = ACTIONS(5383), + [anon_sym___bridge] = ACTIONS(5383), + [anon_sym___bridge_retained] = ACTIONS(5383), + [anon_sym___bridge_transfer] = ACTIONS(5383), + [anon_sym___complex] = ACTIONS(5383), + [anon_sym___const] = ACTIONS(5383), + [anon_sym___imag] = ACTIONS(5383), + [anon_sym___kindof] = ACTIONS(5383), + [anon_sym___nonnull] = ACTIONS(5383), + [anon_sym___nullable] = ACTIONS(5383), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5383), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5383), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5383), + [anon_sym___real] = ACTIONS(5383), + [anon_sym___strong] = ACTIONS(5383), + [anon_sym___unsafe_unretained] = ACTIONS(5383), + [anon_sym___unused] = ACTIONS(5383), + [anon_sym___weak] = ACTIONS(5383), + [anon_sym_alignas] = ACTIONS(5383), + [anon_sym__Alignas] = ACTIONS(5383), + [sym_primitive_type] = ACTIONS(5383), + [anon_sym_enum] = ACTIONS(5383), + [anon_sym_struct] = ACTIONS(5383), + [anon_sym_union] = ACTIONS(5383), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5383), + [anon_sym___typeof] = ACTIONS(5383), + [anon_sym_typeof] = ACTIONS(5383), + [aux_sym_preproc_undef_token1] = ACTIONS(5383), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5383), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5383), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5383), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5383), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5383), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5383), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5383), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5383), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5383), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5383), + [anon_sym_NS_AVAILABLE] = ACTIONS(5383), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5383), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5383), + [anon_sym_API_AVAILABLE] = ACTIONS(5383), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5383), + [anon_sym_API_DEPRECATED] = ACTIONS(5383), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5383), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5383), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5383), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5383), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5383), + [anon_sym___deprecated_msg] = ACTIONS(5383), + [anon_sym___deprecated_enum_msg] = ACTIONS(5383), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5383), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5383), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5383), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5383), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5383), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5383), + [anon_sym_ATsynthesize] = ACTIONS(5385), + [anon_sym_ATdynamic] = ACTIONS(5385), + [anon_sym_BOOL] = ACTIONS(5383), + [anon_sym_IMP] = ACTIONS(5383), + [anon_sym_SEL] = ACTIONS(5383), + [anon_sym_Class] = ACTIONS(5383), + [anon_sym_id] = ACTIONS(5383), + }, + [2243] = { + [sym_identifier] = ACTIONS(2872), + [aux_sym_preproc_def_token1] = ACTIONS(2872), + [aux_sym_preproc_if_token1] = ACTIONS(2872), + [aux_sym_preproc_if_token2] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2872), + [aux_sym_preproc_else_token1] = ACTIONS(2872), + [aux_sym_preproc_elif_token1] = ACTIONS(2872), + [sym_preproc_directive] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2874), + [anon_sym_PLUS] = ACTIONS(2874), + [anon_sym___extension__] = ACTIONS(2872), + [anon_sym_typedef] = ACTIONS(2872), + [anon_sym_extern] = ACTIONS(2872), + [anon_sym___attribute__] = ACTIONS(2872), + [anon_sym___attribute] = ACTIONS(2872), + [anon_sym_noreturn] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2874), + [anon_sym___declspec] = ACTIONS(2872), + [anon_sym___cdecl] = ACTIONS(2872), + [anon_sym___clrcall] = ACTIONS(2872), + [anon_sym___stdcall] = ACTIONS(2872), + [anon_sym___fastcall] = ACTIONS(2872), + [anon_sym___thiscall] = ACTIONS(2872), + [anon_sym___vectorcall] = ACTIONS(2872), + [anon_sym_signed] = ACTIONS(2872), + [anon_sym_unsigned] = ACTIONS(2872), + [anon_sym_long] = ACTIONS(2872), + [anon_sym_short] = ACTIONS(2872), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_auto] = ACTIONS(2872), + [anon_sym_register] = ACTIONS(2872), + [anon_sym_inline] = ACTIONS(2872), + [anon_sym___inline] = ACTIONS(2872), + [anon_sym___inline__] = ACTIONS(2872), + [anon_sym___forceinline] = ACTIONS(2872), + [anon_sym_thread_local] = ACTIONS(2872), + [anon_sym___thread] = ACTIONS(2872), + [anon_sym_CG_EXTERN] = ACTIONS(2872), + [anon_sym_CG_INLINE] = ACTIONS(2872), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2872), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2872), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2872), + [anon_sym_IBOutlet] = ACTIONS(2872), + [anon_sym_IBInspectable] = ACTIONS(2872), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2872), + [anon_sym_NS_INLINE] = ACTIONS(2872), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2872), + [anon_sym_OBJC_EXPORT] = ACTIONS(2872), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2872), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2872), + [anon_sym_const] = ACTIONS(2872), + [anon_sym_constexpr] = ACTIONS(2872), + [anon_sym_volatile] = ACTIONS(2872), + [anon_sym_restrict] = ACTIONS(2872), + [anon_sym___restrict__] = ACTIONS(2872), + [anon_sym__Atomic] = ACTIONS(2872), + [anon_sym__Noreturn] = ACTIONS(2872), + [anon_sym__Nonnull] = ACTIONS(2872), + [anon_sym_nullable] = ACTIONS(2872), + [anon_sym__Complex] = ACTIONS(2872), + [anon_sym__Nullable] = ACTIONS(2872), + [anon_sym__Nullable_result] = ACTIONS(2872), + [anon_sym__Null_unspecified] = ACTIONS(2872), + [anon_sym___autoreleasing] = ACTIONS(2872), + [anon_sym___block] = ACTIONS(2872), + [anon_sym___bridge] = ACTIONS(2872), + [anon_sym___bridge_retained] = ACTIONS(2872), + [anon_sym___bridge_transfer] = ACTIONS(2872), + [anon_sym___complex] = ACTIONS(2872), + [anon_sym___const] = ACTIONS(2872), + [anon_sym___imag] = ACTIONS(2872), + [anon_sym___kindof] = ACTIONS(2872), + [anon_sym___nonnull] = ACTIONS(2872), + [anon_sym___nullable] = ACTIONS(2872), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2872), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2872), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2872), + [anon_sym___real] = ACTIONS(2872), + [anon_sym___strong] = ACTIONS(2872), + [anon_sym___unsafe_unretained] = ACTIONS(2872), + [anon_sym___unused] = ACTIONS(2872), + [anon_sym___weak] = ACTIONS(2872), + [anon_sym_alignas] = ACTIONS(2872), + [anon_sym__Alignas] = ACTIONS(2872), + [sym_primitive_type] = ACTIONS(2872), + [anon_sym_enum] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2872), + [anon_sym_union] = ACTIONS(2872), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2872), + [anon_sym___typeof] = ACTIONS(2872), + [anon_sym_typeof] = ACTIONS(2872), + [aux_sym_preproc_undef_token1] = ACTIONS(2872), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2872), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2872), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2872), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2872), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2872), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2872), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2872), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2872), + [anon_sym_NS_AVAILABLE] = ACTIONS(2872), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2872), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_API_AVAILABLE] = ACTIONS(2872), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_API_DEPRECATED] = ACTIONS(2872), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2872), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2872), + [anon_sym___deprecated_msg] = ACTIONS(2872), + [anon_sym___deprecated_enum_msg] = ACTIONS(2872), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2872), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2872), + [anon_sym_ATsynthesize] = ACTIONS(2874), + [anon_sym_ATdynamic] = ACTIONS(2874), + [anon_sym_BOOL] = ACTIONS(2872), + [anon_sym_IMP] = ACTIONS(2872), + [anon_sym_SEL] = ACTIONS(2872), + [anon_sym_Class] = ACTIONS(2872), + [anon_sym_id] = ACTIONS(2872), + }, + [2244] = { + [sym_identifier] = ACTIONS(5469), + [aux_sym_preproc_def_token1] = ACTIONS(5469), + [aux_sym_preproc_if_token1] = ACTIONS(5469), + [aux_sym_preproc_if_token2] = ACTIONS(5469), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5469), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5469), + [aux_sym_preproc_else_token1] = ACTIONS(5469), + [aux_sym_preproc_elif_token1] = ACTIONS(5469), + [sym_preproc_directive] = ACTIONS(5469), + [anon_sym_DASH] = ACTIONS(5471), + [anon_sym_PLUS] = ACTIONS(5471), + [anon_sym___extension__] = ACTIONS(5469), + [anon_sym_typedef] = ACTIONS(5469), + [anon_sym_extern] = ACTIONS(5469), + [anon_sym___attribute__] = ACTIONS(5469), + [anon_sym___attribute] = ACTIONS(5469), + [anon_sym_noreturn] = ACTIONS(5469), + [anon_sym_LBRACK] = ACTIONS(5471), + [anon_sym___declspec] = ACTIONS(5469), + [anon_sym___cdecl] = ACTIONS(5469), + [anon_sym___clrcall] = ACTIONS(5469), + [anon_sym___stdcall] = ACTIONS(5469), + [anon_sym___fastcall] = ACTIONS(5469), + [anon_sym___thiscall] = ACTIONS(5469), + [anon_sym___vectorcall] = ACTIONS(5469), + [anon_sym_signed] = ACTIONS(5469), + [anon_sym_unsigned] = ACTIONS(5469), + [anon_sym_long] = ACTIONS(5469), + [anon_sym_short] = ACTIONS(5469), + [anon_sym_static] = ACTIONS(5469), + [anon_sym_auto] = ACTIONS(5469), + [anon_sym_register] = ACTIONS(5469), + [anon_sym_inline] = ACTIONS(5469), + [anon_sym___inline] = ACTIONS(5469), + [anon_sym___inline__] = ACTIONS(5469), + [anon_sym___forceinline] = ACTIONS(5469), + [anon_sym_thread_local] = ACTIONS(5469), + [anon_sym___thread] = ACTIONS(5469), + [anon_sym_CG_EXTERN] = ACTIONS(5469), + [anon_sym_CG_INLINE] = ACTIONS(5469), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5469), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5469), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5469), + [anon_sym_IBOutlet] = ACTIONS(5469), + [anon_sym_IBInspectable] = ACTIONS(5469), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5469), + [anon_sym_NS_INLINE] = ACTIONS(5469), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5469), + [anon_sym_OBJC_EXPORT] = ACTIONS(5469), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5469), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5469), + [anon_sym_const] = ACTIONS(5469), + [anon_sym_constexpr] = ACTIONS(5469), + [anon_sym_volatile] = ACTIONS(5469), + [anon_sym_restrict] = ACTIONS(5469), + [anon_sym___restrict__] = ACTIONS(5469), + [anon_sym__Atomic] = ACTIONS(5469), + [anon_sym__Noreturn] = ACTIONS(5469), + [anon_sym__Nonnull] = ACTIONS(5469), + [anon_sym_nullable] = ACTIONS(5469), + [anon_sym__Complex] = ACTIONS(5469), + [anon_sym__Nullable] = ACTIONS(5469), + [anon_sym__Nullable_result] = ACTIONS(5469), + [anon_sym__Null_unspecified] = ACTIONS(5469), + [anon_sym___autoreleasing] = ACTIONS(5469), + [anon_sym___block] = ACTIONS(5469), + [anon_sym___bridge] = ACTIONS(5469), + [anon_sym___bridge_retained] = ACTIONS(5469), + [anon_sym___bridge_transfer] = ACTIONS(5469), + [anon_sym___complex] = ACTIONS(5469), + [anon_sym___const] = ACTIONS(5469), + [anon_sym___imag] = ACTIONS(5469), + [anon_sym___kindof] = ACTIONS(5469), + [anon_sym___nonnull] = ACTIONS(5469), + [anon_sym___nullable] = ACTIONS(5469), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5469), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5469), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5469), + [anon_sym___real] = ACTIONS(5469), + [anon_sym___strong] = ACTIONS(5469), + [anon_sym___unsafe_unretained] = ACTIONS(5469), + [anon_sym___unused] = ACTIONS(5469), + [anon_sym___weak] = ACTIONS(5469), + [anon_sym_alignas] = ACTIONS(5469), + [anon_sym__Alignas] = ACTIONS(5469), + [sym_primitive_type] = ACTIONS(5469), + [anon_sym_enum] = ACTIONS(5469), + [anon_sym_struct] = ACTIONS(5469), + [anon_sym_union] = ACTIONS(5469), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5469), + [anon_sym___typeof] = ACTIONS(5469), + [anon_sym_typeof] = ACTIONS(5469), + [aux_sym_preproc_undef_token1] = ACTIONS(5469), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5469), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5469), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5469), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5469), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5469), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5469), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5469), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5469), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5469), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5469), + [anon_sym_NS_AVAILABLE] = ACTIONS(5469), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5469), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5469), + [anon_sym_API_AVAILABLE] = ACTIONS(5469), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5469), + [anon_sym_API_DEPRECATED] = ACTIONS(5469), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5469), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5469), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5469), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5469), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5469), + [anon_sym___deprecated_msg] = ACTIONS(5469), + [anon_sym___deprecated_enum_msg] = ACTIONS(5469), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5469), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5469), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5469), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5469), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5469), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5469), + [anon_sym_ATsynthesize] = ACTIONS(5471), + [anon_sym_ATdynamic] = ACTIONS(5471), + [anon_sym_BOOL] = ACTIONS(5469), + [anon_sym_IMP] = ACTIONS(5469), + [anon_sym_SEL] = ACTIONS(5469), + [anon_sym_Class] = ACTIONS(5469), + [anon_sym_id] = ACTIONS(5469), + }, + [2245] = { + [sym_identifier] = ACTIONS(5377), + [aux_sym_preproc_def_token1] = ACTIONS(5377), + [aux_sym_preproc_if_token1] = ACTIONS(5377), + [aux_sym_preproc_if_token2] = ACTIONS(5377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5377), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5377), + [aux_sym_preproc_else_token1] = ACTIONS(5377), + [aux_sym_preproc_elif_token1] = ACTIONS(5377), + [sym_preproc_directive] = ACTIONS(5377), + [anon_sym_DASH] = ACTIONS(5379), + [anon_sym_PLUS] = ACTIONS(5379), + [anon_sym___extension__] = ACTIONS(5377), + [anon_sym_typedef] = ACTIONS(5377), + [anon_sym_extern] = ACTIONS(5377), + [anon_sym___attribute__] = ACTIONS(5377), + [anon_sym___attribute] = ACTIONS(5377), + [anon_sym_noreturn] = ACTIONS(5377), + [anon_sym_LBRACK] = ACTIONS(5379), + [anon_sym___declspec] = ACTIONS(5377), + [anon_sym___cdecl] = ACTIONS(5377), + [anon_sym___clrcall] = ACTIONS(5377), + [anon_sym___stdcall] = ACTIONS(5377), + [anon_sym___fastcall] = ACTIONS(5377), + [anon_sym___thiscall] = ACTIONS(5377), + [anon_sym___vectorcall] = ACTIONS(5377), + [anon_sym_signed] = ACTIONS(5377), + [anon_sym_unsigned] = ACTIONS(5377), + [anon_sym_long] = ACTIONS(5377), + [anon_sym_short] = ACTIONS(5377), + [anon_sym_static] = ACTIONS(5377), + [anon_sym_auto] = ACTIONS(5377), + [anon_sym_register] = ACTIONS(5377), + [anon_sym_inline] = ACTIONS(5377), + [anon_sym___inline] = ACTIONS(5377), + [anon_sym___inline__] = ACTIONS(5377), + [anon_sym___forceinline] = ACTIONS(5377), + [anon_sym_thread_local] = ACTIONS(5377), + [anon_sym___thread] = ACTIONS(5377), + [anon_sym_CG_EXTERN] = ACTIONS(5377), + [anon_sym_CG_INLINE] = ACTIONS(5377), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5377), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5377), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5377), + [anon_sym_IBOutlet] = ACTIONS(5377), + [anon_sym_IBInspectable] = ACTIONS(5377), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5377), + [anon_sym_NS_INLINE] = ACTIONS(5377), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5377), + [anon_sym_OBJC_EXPORT] = ACTIONS(5377), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5377), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5377), + [anon_sym_const] = ACTIONS(5377), + [anon_sym_constexpr] = ACTIONS(5377), + [anon_sym_volatile] = ACTIONS(5377), + [anon_sym_restrict] = ACTIONS(5377), + [anon_sym___restrict__] = ACTIONS(5377), + [anon_sym__Atomic] = ACTIONS(5377), + [anon_sym__Noreturn] = ACTIONS(5377), + [anon_sym__Nonnull] = ACTIONS(5377), + [anon_sym_nullable] = ACTIONS(5377), + [anon_sym__Complex] = ACTIONS(5377), + [anon_sym__Nullable] = ACTIONS(5377), + [anon_sym__Nullable_result] = ACTIONS(5377), + [anon_sym__Null_unspecified] = ACTIONS(5377), + [anon_sym___autoreleasing] = ACTIONS(5377), + [anon_sym___block] = ACTIONS(5377), + [anon_sym___bridge] = ACTIONS(5377), + [anon_sym___bridge_retained] = ACTIONS(5377), + [anon_sym___bridge_transfer] = ACTIONS(5377), + [anon_sym___complex] = ACTIONS(5377), + [anon_sym___const] = ACTIONS(5377), + [anon_sym___imag] = ACTIONS(5377), + [anon_sym___kindof] = ACTIONS(5377), + [anon_sym___nonnull] = ACTIONS(5377), + [anon_sym___nullable] = ACTIONS(5377), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5377), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5377), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5377), + [anon_sym___real] = ACTIONS(5377), + [anon_sym___strong] = ACTIONS(5377), + [anon_sym___unsafe_unretained] = ACTIONS(5377), + [anon_sym___unused] = ACTIONS(5377), + [anon_sym___weak] = ACTIONS(5377), + [anon_sym_alignas] = ACTIONS(5377), + [anon_sym__Alignas] = ACTIONS(5377), + [sym_primitive_type] = ACTIONS(5377), + [anon_sym_enum] = ACTIONS(5377), + [anon_sym_struct] = ACTIONS(5377), + [anon_sym_union] = ACTIONS(5377), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5377), + [anon_sym___typeof] = ACTIONS(5377), + [anon_sym_typeof] = ACTIONS(5377), + [aux_sym_preproc_undef_token1] = ACTIONS(5377), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5377), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5377), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5377), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5377), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5377), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5377), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5377), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5377), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5377), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5377), + [anon_sym_NS_AVAILABLE] = ACTIONS(5377), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5377), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5377), + [anon_sym_API_AVAILABLE] = ACTIONS(5377), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5377), + [anon_sym_API_DEPRECATED] = ACTIONS(5377), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5377), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5377), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5377), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5377), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5377), + [anon_sym___deprecated_msg] = ACTIONS(5377), + [anon_sym___deprecated_enum_msg] = ACTIONS(5377), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5377), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5377), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5377), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5377), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5377), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5377), + [anon_sym_ATsynthesize] = ACTIONS(5379), + [anon_sym_ATdynamic] = ACTIONS(5379), + [anon_sym_BOOL] = ACTIONS(5377), + [anon_sym_IMP] = ACTIONS(5377), + [anon_sym_SEL] = ACTIONS(5377), + [anon_sym_Class] = ACTIONS(5377), + [anon_sym_id] = ACTIONS(5377), + }, + [2246] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(2872), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [aux_sym_sized_type_specifier_repeat1] = STATE(2870), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4310), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [2247] = { + [sym_identifier] = ACTIONS(2856), + [aux_sym_preproc_def_token1] = ACTIONS(2856), + [aux_sym_preproc_if_token1] = ACTIONS(2856), + [aux_sym_preproc_if_token2] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2856), + [sym_preproc_directive] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2858), + [anon_sym_PLUS] = ACTIONS(2858), + [anon_sym___extension__] = ACTIONS(2856), + [anon_sym_typedef] = ACTIONS(2856), + [anon_sym_extern] = ACTIONS(2856), + [anon_sym___attribute__] = ACTIONS(2856), + [anon_sym___attribute] = ACTIONS(2856), + [anon_sym_noreturn] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2858), + [anon_sym___declspec] = ACTIONS(2856), + [anon_sym___cdecl] = ACTIONS(2856), + [anon_sym___clrcall] = ACTIONS(2856), + [anon_sym___stdcall] = ACTIONS(2856), + [anon_sym___fastcall] = ACTIONS(2856), + [anon_sym___thiscall] = ACTIONS(2856), + [anon_sym___vectorcall] = ACTIONS(2856), + [anon_sym_signed] = ACTIONS(2856), + [anon_sym_unsigned] = ACTIONS(2856), + [anon_sym_long] = ACTIONS(2856), + [anon_sym_short] = ACTIONS(2856), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_auto] = ACTIONS(2856), + [anon_sym_register] = ACTIONS(2856), + [anon_sym_inline] = ACTIONS(2856), + [anon_sym___inline] = ACTIONS(2856), + [anon_sym___inline__] = ACTIONS(2856), + [anon_sym___forceinline] = ACTIONS(2856), + [anon_sym_thread_local] = ACTIONS(2856), + [anon_sym___thread] = ACTIONS(2856), + [anon_sym_CG_EXTERN] = ACTIONS(2856), + [anon_sym_CG_INLINE] = ACTIONS(2856), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2856), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2856), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2856), + [anon_sym_IBOutlet] = ACTIONS(2856), + [anon_sym_IBInspectable] = ACTIONS(2856), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2856), + [anon_sym_NS_INLINE] = ACTIONS(2856), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2856), + [anon_sym_OBJC_EXPORT] = ACTIONS(2856), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2856), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2856), + [anon_sym_constexpr] = ACTIONS(2856), + [anon_sym_volatile] = ACTIONS(2856), + [anon_sym_restrict] = ACTIONS(2856), + [anon_sym___restrict__] = ACTIONS(2856), + [anon_sym__Atomic] = ACTIONS(2856), + [anon_sym__Noreturn] = ACTIONS(2856), + [anon_sym__Nonnull] = ACTIONS(2856), + [anon_sym_nullable] = ACTIONS(2856), + [anon_sym__Complex] = ACTIONS(2856), + [anon_sym__Nullable] = ACTIONS(2856), + [anon_sym__Nullable_result] = ACTIONS(2856), + [anon_sym__Null_unspecified] = ACTIONS(2856), + [anon_sym___autoreleasing] = ACTIONS(2856), + [anon_sym___block] = ACTIONS(2856), + [anon_sym___bridge] = ACTIONS(2856), + [anon_sym___bridge_retained] = ACTIONS(2856), + [anon_sym___bridge_transfer] = ACTIONS(2856), + [anon_sym___complex] = ACTIONS(2856), + [anon_sym___const] = ACTIONS(2856), + [anon_sym___imag] = ACTIONS(2856), + [anon_sym___kindof] = ACTIONS(2856), + [anon_sym___nonnull] = ACTIONS(2856), + [anon_sym___nullable] = ACTIONS(2856), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2856), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2856), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2856), + [anon_sym___real] = ACTIONS(2856), + [anon_sym___strong] = ACTIONS(2856), + [anon_sym___unsafe_unretained] = ACTIONS(2856), + [anon_sym___unused] = ACTIONS(2856), + [anon_sym___weak] = ACTIONS(2856), + [anon_sym_alignas] = ACTIONS(2856), + [anon_sym__Alignas] = ACTIONS(2856), + [sym_primitive_type] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2856), + [anon_sym_union] = ACTIONS(2856), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2856), + [anon_sym___typeof] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2856), + [aux_sym_preproc_undef_token1] = ACTIONS(2856), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2856), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2856), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2856), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2856), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2856), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2856), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2856), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2856), + [anon_sym_NS_AVAILABLE] = ACTIONS(2856), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2856), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_API_AVAILABLE] = ACTIONS(2856), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_API_DEPRECATED] = ACTIONS(2856), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2856), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2856), + [anon_sym___deprecated_msg] = ACTIONS(2856), + [anon_sym___deprecated_enum_msg] = ACTIONS(2856), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2856), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2856), + [anon_sym_ATsynthesize] = ACTIONS(2858), + [anon_sym_ATdynamic] = ACTIONS(2858), + [anon_sym_ATproperty] = ACTIONS(2858), + [anon_sym_BOOL] = ACTIONS(2856), + [anon_sym_IMP] = ACTIONS(2856), + [anon_sym_SEL] = ACTIONS(2856), + [anon_sym_Class] = ACTIONS(2856), + [anon_sym_id] = ACTIONS(2856), + [anon_sym_ATdefs] = ACTIONS(2858), + }, + [2248] = { + [sym_identifier] = ACTIONS(5403), + [aux_sym_preproc_def_token1] = ACTIONS(5403), + [aux_sym_preproc_if_token1] = ACTIONS(5403), + [aux_sym_preproc_if_token2] = ACTIONS(5403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5403), + [aux_sym_preproc_else_token1] = ACTIONS(5403), + [aux_sym_preproc_elif_token1] = ACTIONS(5403), + [sym_preproc_directive] = ACTIONS(5403), + [anon_sym_DASH] = ACTIONS(5405), + [anon_sym_PLUS] = ACTIONS(5405), + [anon_sym___extension__] = ACTIONS(5403), + [anon_sym_typedef] = ACTIONS(5403), + [anon_sym_extern] = ACTIONS(5403), + [anon_sym___attribute__] = ACTIONS(5403), + [anon_sym___attribute] = ACTIONS(5403), + [anon_sym_noreturn] = ACTIONS(5403), + [anon_sym_LBRACK] = ACTIONS(5405), + [anon_sym___declspec] = ACTIONS(5403), + [anon_sym___cdecl] = ACTIONS(5403), + [anon_sym___clrcall] = ACTIONS(5403), + [anon_sym___stdcall] = ACTIONS(5403), + [anon_sym___fastcall] = ACTIONS(5403), + [anon_sym___thiscall] = ACTIONS(5403), + [anon_sym___vectorcall] = ACTIONS(5403), + [anon_sym_signed] = ACTIONS(5403), + [anon_sym_unsigned] = ACTIONS(5403), + [anon_sym_long] = ACTIONS(5403), + [anon_sym_short] = ACTIONS(5403), + [anon_sym_static] = ACTIONS(5403), + [anon_sym_auto] = ACTIONS(5403), + [anon_sym_register] = ACTIONS(5403), + [anon_sym_inline] = ACTIONS(5403), + [anon_sym___inline] = ACTIONS(5403), + [anon_sym___inline__] = ACTIONS(5403), + [anon_sym___forceinline] = ACTIONS(5403), + [anon_sym_thread_local] = ACTIONS(5403), + [anon_sym___thread] = ACTIONS(5403), + [anon_sym_CG_EXTERN] = ACTIONS(5403), + [anon_sym_CG_INLINE] = ACTIONS(5403), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5403), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5403), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5403), + [anon_sym_IBOutlet] = ACTIONS(5403), + [anon_sym_IBInspectable] = ACTIONS(5403), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5403), + [anon_sym_NS_INLINE] = ACTIONS(5403), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5403), + [anon_sym_OBJC_EXPORT] = ACTIONS(5403), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5403), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5403), + [anon_sym_const] = ACTIONS(5403), + [anon_sym_constexpr] = ACTIONS(5403), + [anon_sym_volatile] = ACTIONS(5403), + [anon_sym_restrict] = ACTIONS(5403), + [anon_sym___restrict__] = ACTIONS(5403), + [anon_sym__Atomic] = ACTIONS(5403), + [anon_sym__Noreturn] = ACTIONS(5403), + [anon_sym__Nonnull] = ACTIONS(5403), + [anon_sym_nullable] = ACTIONS(5403), + [anon_sym__Complex] = ACTIONS(5403), + [anon_sym__Nullable] = ACTIONS(5403), + [anon_sym__Nullable_result] = ACTIONS(5403), + [anon_sym__Null_unspecified] = ACTIONS(5403), + [anon_sym___autoreleasing] = ACTIONS(5403), + [anon_sym___block] = ACTIONS(5403), + [anon_sym___bridge] = ACTIONS(5403), + [anon_sym___bridge_retained] = ACTIONS(5403), + [anon_sym___bridge_transfer] = ACTIONS(5403), + [anon_sym___complex] = ACTIONS(5403), + [anon_sym___const] = ACTIONS(5403), + [anon_sym___imag] = ACTIONS(5403), + [anon_sym___kindof] = ACTIONS(5403), + [anon_sym___nonnull] = ACTIONS(5403), + [anon_sym___nullable] = ACTIONS(5403), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5403), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5403), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5403), + [anon_sym___real] = ACTIONS(5403), + [anon_sym___strong] = ACTIONS(5403), + [anon_sym___unsafe_unretained] = ACTIONS(5403), + [anon_sym___unused] = ACTIONS(5403), + [anon_sym___weak] = ACTIONS(5403), + [anon_sym_alignas] = ACTIONS(5403), + [anon_sym__Alignas] = ACTIONS(5403), + [sym_primitive_type] = ACTIONS(5403), + [anon_sym_enum] = ACTIONS(5403), + [anon_sym_struct] = ACTIONS(5403), + [anon_sym_union] = ACTIONS(5403), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5403), + [anon_sym___typeof] = ACTIONS(5403), + [anon_sym_typeof] = ACTIONS(5403), + [aux_sym_preproc_undef_token1] = ACTIONS(5403), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5403), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5403), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5403), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5403), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5403), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5403), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5403), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5403), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5403), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5403), + [anon_sym_NS_AVAILABLE] = ACTIONS(5403), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5403), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5403), + [anon_sym_API_AVAILABLE] = ACTIONS(5403), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5403), + [anon_sym_API_DEPRECATED] = ACTIONS(5403), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5403), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5403), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5403), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5403), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5403), + [anon_sym___deprecated_msg] = ACTIONS(5403), + [anon_sym___deprecated_enum_msg] = ACTIONS(5403), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5403), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5403), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5403), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5403), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5403), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5403), + [anon_sym_ATsynthesize] = ACTIONS(5405), + [anon_sym_ATdynamic] = ACTIONS(5405), + [anon_sym_BOOL] = ACTIONS(5403), + [anon_sym_IMP] = ACTIONS(5403), + [anon_sym_SEL] = ACTIONS(5403), + [anon_sym_Class] = ACTIONS(5403), + [anon_sym_id] = ACTIONS(5403), + }, + [2249] = { + [sym_parameterized_arguments] = STATE(2330), + [sym_identifier] = ACTIONS(5473), + [aux_sym_preproc_def_token1] = ACTIONS(5473), + [aux_sym_preproc_if_token1] = ACTIONS(5473), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5473), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5473), + [sym_preproc_directive] = ACTIONS(5473), + [anon_sym_DASH] = ACTIONS(5475), + [anon_sym_PLUS] = ACTIONS(5475), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(5473), + [anon_sym_typedef] = ACTIONS(5473), + [anon_sym_extern] = ACTIONS(5473), + [anon_sym___attribute__] = ACTIONS(5473), + [anon_sym___attribute] = ACTIONS(5473), + [anon_sym_noreturn] = ACTIONS(5473), + [anon_sym_LBRACK] = ACTIONS(5475), + [anon_sym___declspec] = ACTIONS(5473), + [anon_sym___cdecl] = ACTIONS(5473), + [anon_sym___clrcall] = ACTIONS(5473), + [anon_sym___stdcall] = ACTIONS(5473), + [anon_sym___fastcall] = ACTIONS(5473), + [anon_sym___thiscall] = ACTIONS(5473), + [anon_sym___vectorcall] = ACTIONS(5473), + [anon_sym_LBRACE] = ACTIONS(5475), + [anon_sym_signed] = ACTIONS(5473), + [anon_sym_unsigned] = ACTIONS(5473), + [anon_sym_long] = ACTIONS(5473), + [anon_sym_short] = ACTIONS(5473), + [anon_sym_static] = ACTIONS(5473), + [anon_sym_auto] = ACTIONS(5473), + [anon_sym_register] = ACTIONS(5473), + [anon_sym_inline] = ACTIONS(5473), + [anon_sym___inline] = ACTIONS(5473), + [anon_sym___inline__] = ACTIONS(5473), + [anon_sym___forceinline] = ACTIONS(5473), + [anon_sym_thread_local] = ACTIONS(5473), + [anon_sym___thread] = ACTIONS(5473), + [anon_sym_CG_EXTERN] = ACTIONS(5473), + [anon_sym_CG_INLINE] = ACTIONS(5473), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5473), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5473), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5473), + [anon_sym_IBOutlet] = ACTIONS(5473), + [anon_sym_IBInspectable] = ACTIONS(5473), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5473), + [anon_sym_NS_INLINE] = ACTIONS(5473), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5473), + [anon_sym_OBJC_EXPORT] = ACTIONS(5473), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5473), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5473), + [anon_sym_const] = ACTIONS(5473), + [anon_sym_constexpr] = ACTIONS(5473), + [anon_sym_volatile] = ACTIONS(5473), + [anon_sym_restrict] = ACTIONS(5473), + [anon_sym___restrict__] = ACTIONS(5473), + [anon_sym__Atomic] = ACTIONS(5473), + [anon_sym__Noreturn] = ACTIONS(5473), + [anon_sym__Nonnull] = ACTIONS(5473), + [anon_sym_nullable] = ACTIONS(5473), + [anon_sym__Complex] = ACTIONS(5473), + [anon_sym__Nullable] = ACTIONS(5473), + [anon_sym__Nullable_result] = ACTIONS(5473), + [anon_sym__Null_unspecified] = ACTIONS(5473), + [anon_sym___autoreleasing] = ACTIONS(5473), + [anon_sym___block] = ACTIONS(5473), + [anon_sym___bridge] = ACTIONS(5473), + [anon_sym___bridge_retained] = ACTIONS(5473), + [anon_sym___bridge_transfer] = ACTIONS(5473), + [anon_sym___complex] = ACTIONS(5473), + [anon_sym___const] = ACTIONS(5473), + [anon_sym___imag] = ACTIONS(5473), + [anon_sym___kindof] = ACTIONS(5473), + [anon_sym___nonnull] = ACTIONS(5473), + [anon_sym___nullable] = ACTIONS(5473), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5473), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5473), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5473), + [anon_sym___real] = ACTIONS(5473), + [anon_sym___strong] = ACTIONS(5473), + [anon_sym___unsafe_unretained] = ACTIONS(5473), + [anon_sym___unused] = ACTIONS(5473), + [anon_sym___weak] = ACTIONS(5473), + [anon_sym_alignas] = ACTIONS(5473), + [anon_sym__Alignas] = ACTIONS(5473), + [sym_primitive_type] = ACTIONS(5473), + [anon_sym_enum] = ACTIONS(5473), + [anon_sym_struct] = ACTIONS(5473), + [anon_sym_union] = ACTIONS(5473), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5473), + [anon_sym___typeof] = ACTIONS(5473), + [anon_sym_typeof] = ACTIONS(5473), + [aux_sym_preproc_undef_token1] = ACTIONS(5473), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5473), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5473), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5473), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5473), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5473), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5473), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5473), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5473), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5473), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5473), + [anon_sym_NS_AVAILABLE] = ACTIONS(5473), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5473), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5473), + [anon_sym_API_AVAILABLE] = ACTIONS(5473), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5473), + [anon_sym_API_DEPRECATED] = ACTIONS(5473), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5473), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5473), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5473), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5473), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5473), + [anon_sym___deprecated_msg] = ACTIONS(5473), + [anon_sym___deprecated_enum_msg] = ACTIONS(5473), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5473), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5473), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5473), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5473), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5473), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5473), + [anon_sym_ATend] = ACTIONS(5475), + [anon_sym_ATproperty] = ACTIONS(5475), + [anon_sym_BOOL] = ACTIONS(5473), + [anon_sym_IMP] = ACTIONS(5473), + [anon_sym_SEL] = ACTIONS(5473), + [anon_sym_Class] = ACTIONS(5473), + [anon_sym_id] = ACTIONS(5473), + }, + [2250] = { + [aux_sym_method_declaration_repeat2] = STATE(2269), + [sym_identifier] = ACTIONS(5346), + [aux_sym_preproc_def_token1] = ACTIONS(5346), + [aux_sym_preproc_if_token1] = ACTIONS(5346), + [aux_sym_preproc_if_token2] = ACTIONS(5346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5346), + [sym_preproc_directive] = ACTIONS(5346), + [anon_sym_DASH] = ACTIONS(5348), + [anon_sym_PLUS] = ACTIONS(5348), + [anon_sym_SEMI] = ACTIONS(5477), + [anon_sym___extension__] = ACTIONS(5346), + [anon_sym_typedef] = ACTIONS(5346), + [anon_sym_extern] = ACTIONS(5346), + [anon_sym___attribute__] = ACTIONS(5346), + [anon_sym___attribute] = ACTIONS(5346), + [anon_sym_noreturn] = ACTIONS(5346), + [anon_sym_LBRACK] = ACTIONS(5348), + [anon_sym___declspec] = ACTIONS(5346), + [anon_sym___cdecl] = ACTIONS(5346), + [anon_sym___clrcall] = ACTIONS(5346), + [anon_sym___stdcall] = ACTIONS(5346), + [anon_sym___fastcall] = ACTIONS(5346), + [anon_sym___thiscall] = ACTIONS(5346), + [anon_sym___vectorcall] = ACTIONS(5346), + [anon_sym_signed] = ACTIONS(5346), + [anon_sym_unsigned] = ACTIONS(5346), + [anon_sym_long] = ACTIONS(5346), + [anon_sym_short] = ACTIONS(5346), + [anon_sym_static] = ACTIONS(5346), + [anon_sym_auto] = ACTIONS(5346), + [anon_sym_register] = ACTIONS(5346), + [anon_sym_inline] = ACTIONS(5346), + [anon_sym___inline] = ACTIONS(5346), + [anon_sym___inline__] = ACTIONS(5346), + [anon_sym___forceinline] = ACTIONS(5346), + [anon_sym_thread_local] = ACTIONS(5346), + [anon_sym___thread] = ACTIONS(5346), + [anon_sym_CG_EXTERN] = ACTIONS(5346), + [anon_sym_CG_INLINE] = ACTIONS(5346), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5346), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5346), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5346), + [anon_sym_IBOutlet] = ACTIONS(5346), + [anon_sym_IBInspectable] = ACTIONS(5346), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5346), + [anon_sym_NS_INLINE] = ACTIONS(5346), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5346), + [anon_sym_OBJC_EXPORT] = ACTIONS(5346), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5346), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5346), + [anon_sym_const] = ACTIONS(5346), + [anon_sym_constexpr] = ACTIONS(5346), + [anon_sym_volatile] = ACTIONS(5346), + [anon_sym_restrict] = ACTIONS(5346), + [anon_sym___restrict__] = ACTIONS(5346), + [anon_sym__Atomic] = ACTIONS(5346), + [anon_sym__Noreturn] = ACTIONS(5346), + [anon_sym__Nonnull] = ACTIONS(5346), + [anon_sym_nullable] = ACTIONS(5346), + [anon_sym__Complex] = ACTIONS(5346), + [anon_sym__Nullable] = ACTIONS(5346), + [anon_sym__Nullable_result] = ACTIONS(5346), + [anon_sym__Null_unspecified] = ACTIONS(5346), + [anon_sym___autoreleasing] = ACTIONS(5346), + [anon_sym___block] = ACTIONS(5346), + [anon_sym___bridge] = ACTIONS(5346), + [anon_sym___bridge_retained] = ACTIONS(5346), + [anon_sym___bridge_transfer] = ACTIONS(5346), + [anon_sym___complex] = ACTIONS(5346), + [anon_sym___const] = ACTIONS(5346), + [anon_sym___imag] = ACTIONS(5346), + [anon_sym___kindof] = ACTIONS(5346), + [anon_sym___nonnull] = ACTIONS(5346), + [anon_sym___nullable] = ACTIONS(5346), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5346), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5346), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5346), + [anon_sym___real] = ACTIONS(5346), + [anon_sym___strong] = ACTIONS(5346), + [anon_sym___unsafe_unretained] = ACTIONS(5346), + [anon_sym___unused] = ACTIONS(5346), + [anon_sym___weak] = ACTIONS(5346), + [anon_sym_alignas] = ACTIONS(5346), + [anon_sym__Alignas] = ACTIONS(5346), + [sym_primitive_type] = ACTIONS(5346), + [anon_sym_enum] = ACTIONS(5346), + [anon_sym_struct] = ACTIONS(5346), + [anon_sym_union] = ACTIONS(5346), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5346), + [anon_sym___typeof] = ACTIONS(5346), + [anon_sym_typeof] = ACTIONS(5346), + [aux_sym_preproc_undef_token1] = ACTIONS(5346), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5346), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5346), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5346), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5346), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5346), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5346), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5346), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5346), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5346), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5346), + [anon_sym_NS_AVAILABLE] = ACTIONS(5346), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5346), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5346), + [anon_sym_API_AVAILABLE] = ACTIONS(5346), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5346), + [anon_sym_API_DEPRECATED] = ACTIONS(5346), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5346), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5346), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5346), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5346), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5346), + [anon_sym___deprecated_msg] = ACTIONS(5346), + [anon_sym___deprecated_enum_msg] = ACTIONS(5346), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5346), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5346), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5346), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5346), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5346), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5346), + [anon_sym_ATproperty] = ACTIONS(5348), + [anon_sym_BOOL] = ACTIONS(5346), + [anon_sym_IMP] = ACTIONS(5346), + [anon_sym_SEL] = ACTIONS(5346), + [anon_sym_Class] = ACTIONS(5346), + [anon_sym_id] = ACTIONS(5346), + }, + [2251] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2862), + [anon_sym_PLUS] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym___attribute] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_auto] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_CG_EXTERN] = ACTIONS(2860), + [anon_sym_CG_INLINE] = ACTIONS(2860), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2860), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2860), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2860), + [anon_sym_IBOutlet] = ACTIONS(2860), + [anon_sym_IBInspectable] = ACTIONS(2860), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2860), + [anon_sym_NS_INLINE] = ACTIONS(2860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2860), + [anon_sym_OBJC_EXPORT] = ACTIONS(2860), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2860), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym__Nonnull] = ACTIONS(2860), + [anon_sym_nullable] = ACTIONS(2860), + [anon_sym__Complex] = ACTIONS(2860), + [anon_sym__Nullable] = ACTIONS(2860), + [anon_sym__Nullable_result] = ACTIONS(2860), + [anon_sym__Null_unspecified] = ACTIONS(2860), + [anon_sym___autoreleasing] = ACTIONS(2860), + [anon_sym___block] = ACTIONS(2860), + [anon_sym___bridge] = ACTIONS(2860), + [anon_sym___bridge_retained] = ACTIONS(2860), + [anon_sym___bridge_transfer] = ACTIONS(2860), + [anon_sym___complex] = ACTIONS(2860), + [anon_sym___const] = ACTIONS(2860), + [anon_sym___imag] = ACTIONS(2860), + [anon_sym___kindof] = ACTIONS(2860), + [anon_sym___nonnull] = ACTIONS(2860), + [anon_sym___nullable] = ACTIONS(2860), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2860), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2860), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2860), + [anon_sym___real] = ACTIONS(2860), + [anon_sym___strong] = ACTIONS(2860), + [anon_sym___unsafe_unretained] = ACTIONS(2860), + [anon_sym___unused] = ACTIONS(2860), + [anon_sym___weak] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym__Alignas] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2860), + [anon_sym___typeof] = ACTIONS(2860), + [anon_sym_typeof] = ACTIONS(2860), + [aux_sym_preproc_undef_token1] = ACTIONS(2860), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2860), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2860), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2860), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2860), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2860), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2860), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2860), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2860), + [anon_sym_NS_AVAILABLE] = ACTIONS(2860), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2860), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_API_AVAILABLE] = ACTIONS(2860), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_API_DEPRECATED] = ACTIONS(2860), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2860), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2860), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2860), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2860), + [anon_sym___deprecated_msg] = ACTIONS(2860), + [anon_sym___deprecated_enum_msg] = ACTIONS(2860), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2860), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2860), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2860), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2860), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2860), + [anon_sym_ATsynthesize] = ACTIONS(2862), + [anon_sym_ATdynamic] = ACTIONS(2862), + [anon_sym_ATproperty] = ACTIONS(2862), + [anon_sym_BOOL] = ACTIONS(2860), + [anon_sym_IMP] = ACTIONS(2860), + [anon_sym_SEL] = ACTIONS(2860), + [anon_sym_Class] = ACTIONS(2860), + [anon_sym_id] = ACTIONS(2860), + }, + [2252] = { + [sym_identifier] = ACTIONS(5415), + [aux_sym_preproc_def_token1] = ACTIONS(5415), + [aux_sym_preproc_if_token1] = ACTIONS(5415), + [aux_sym_preproc_if_token2] = ACTIONS(5415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5415), + [sym_preproc_directive] = ACTIONS(5415), + [anon_sym_DASH] = ACTIONS(5417), + [anon_sym_PLUS] = ACTIONS(5417), + [anon_sym_SEMI] = ACTIONS(5479), + [anon_sym___extension__] = ACTIONS(5415), + [anon_sym_typedef] = ACTIONS(5415), + [anon_sym_extern] = ACTIONS(5415), + [anon_sym___attribute__] = ACTIONS(5415), + [anon_sym___attribute] = ACTIONS(5415), + [anon_sym_noreturn] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(5417), + [anon_sym___declspec] = ACTIONS(5415), + [anon_sym___cdecl] = ACTIONS(5415), + [anon_sym___clrcall] = ACTIONS(5415), + [anon_sym___stdcall] = ACTIONS(5415), + [anon_sym___fastcall] = ACTIONS(5415), + [anon_sym___thiscall] = ACTIONS(5415), + [anon_sym___vectorcall] = ACTIONS(5415), + [anon_sym_signed] = ACTIONS(5415), + [anon_sym_unsigned] = ACTIONS(5415), + [anon_sym_long] = ACTIONS(5415), + [anon_sym_short] = ACTIONS(5415), + [anon_sym_static] = ACTIONS(5415), + [anon_sym_auto] = ACTIONS(5415), + [anon_sym_register] = ACTIONS(5415), + [anon_sym_inline] = ACTIONS(5415), + [anon_sym___inline] = ACTIONS(5415), + [anon_sym___inline__] = ACTIONS(5415), + [anon_sym___forceinline] = ACTIONS(5415), + [anon_sym_thread_local] = ACTIONS(5415), + [anon_sym___thread] = ACTIONS(5415), + [anon_sym_CG_EXTERN] = ACTIONS(5415), + [anon_sym_CG_INLINE] = ACTIONS(5415), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5415), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5415), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5415), + [anon_sym_IBOutlet] = ACTIONS(5415), + [anon_sym_IBInspectable] = ACTIONS(5415), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5415), + [anon_sym_NS_INLINE] = ACTIONS(5415), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5415), + [anon_sym_OBJC_EXPORT] = ACTIONS(5415), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5415), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5415), + [anon_sym_const] = ACTIONS(5415), + [anon_sym_constexpr] = ACTIONS(5415), + [anon_sym_volatile] = ACTIONS(5415), + [anon_sym_restrict] = ACTIONS(5415), + [anon_sym___restrict__] = ACTIONS(5415), + [anon_sym__Atomic] = ACTIONS(5415), + [anon_sym__Noreturn] = ACTIONS(5415), + [anon_sym__Nonnull] = ACTIONS(5415), + [anon_sym_nullable] = ACTIONS(5415), + [anon_sym__Complex] = ACTIONS(5415), + [anon_sym__Nullable] = ACTIONS(5415), + [anon_sym__Nullable_result] = ACTIONS(5415), + [anon_sym__Null_unspecified] = ACTIONS(5415), + [anon_sym___autoreleasing] = ACTIONS(5415), + [anon_sym___block] = ACTIONS(5415), + [anon_sym___bridge] = ACTIONS(5415), + [anon_sym___bridge_retained] = ACTIONS(5415), + [anon_sym___bridge_transfer] = ACTIONS(5415), + [anon_sym___complex] = ACTIONS(5415), + [anon_sym___const] = ACTIONS(5415), + [anon_sym___imag] = ACTIONS(5415), + [anon_sym___kindof] = ACTIONS(5415), + [anon_sym___nonnull] = ACTIONS(5415), + [anon_sym___nullable] = ACTIONS(5415), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5415), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5415), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5415), + [anon_sym___real] = ACTIONS(5415), + [anon_sym___strong] = ACTIONS(5415), + [anon_sym___unsafe_unretained] = ACTIONS(5415), + [anon_sym___unused] = ACTIONS(5415), + [anon_sym___weak] = ACTIONS(5415), + [anon_sym_alignas] = ACTIONS(5415), + [anon_sym__Alignas] = ACTIONS(5415), + [sym_primitive_type] = ACTIONS(5415), + [anon_sym_enum] = ACTIONS(5415), + [anon_sym_struct] = ACTIONS(5415), + [anon_sym_union] = ACTIONS(5415), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5415), + [anon_sym___typeof] = ACTIONS(5415), + [anon_sym_typeof] = ACTIONS(5415), + [aux_sym_preproc_undef_token1] = ACTIONS(5415), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5415), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5415), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5415), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5415), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5415), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5415), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5415), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5415), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5415), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5415), + [anon_sym_NS_AVAILABLE] = ACTIONS(5415), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5415), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5415), + [anon_sym_API_AVAILABLE] = ACTIONS(5415), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5415), + [anon_sym_API_DEPRECATED] = ACTIONS(5415), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5415), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5415), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5415), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5415), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5415), + [anon_sym___deprecated_msg] = ACTIONS(5415), + [anon_sym___deprecated_enum_msg] = ACTIONS(5415), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5415), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5415), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5415), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5415), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5415), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5415), + [anon_sym_ATsynthesize] = ACTIONS(5417), + [anon_sym_ATdynamic] = ACTIONS(5417), + [anon_sym_BOOL] = ACTIONS(5415), + [anon_sym_IMP] = ACTIONS(5415), + [anon_sym_SEL] = ACTIONS(5415), + [anon_sym_Class] = ACTIONS(5415), + [anon_sym_id] = ACTIONS(5415), + }, + [2253] = { + [sym_identifier] = ACTIONS(2872), + [aux_sym_preproc_def_token1] = ACTIONS(2872), + [aux_sym_preproc_if_token1] = ACTIONS(2872), + [aux_sym_preproc_if_token2] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2872), + [sym_preproc_directive] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2874), + [anon_sym_PLUS] = ACTIONS(2874), + [anon_sym___extension__] = ACTIONS(2872), + [anon_sym_typedef] = ACTIONS(2872), + [anon_sym_extern] = ACTIONS(2872), + [anon_sym___attribute__] = ACTIONS(2872), + [anon_sym___attribute] = ACTIONS(2872), + [anon_sym_noreturn] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2874), + [anon_sym___declspec] = ACTIONS(2872), + [anon_sym___cdecl] = ACTIONS(2872), + [anon_sym___clrcall] = ACTIONS(2872), + [anon_sym___stdcall] = ACTIONS(2872), + [anon_sym___fastcall] = ACTIONS(2872), + [anon_sym___thiscall] = ACTIONS(2872), + [anon_sym___vectorcall] = ACTIONS(2872), + [anon_sym_signed] = ACTIONS(2872), + [anon_sym_unsigned] = ACTIONS(2872), + [anon_sym_long] = ACTIONS(2872), + [anon_sym_short] = ACTIONS(2872), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_auto] = ACTIONS(2872), + [anon_sym_register] = ACTIONS(2872), + [anon_sym_inline] = ACTIONS(2872), + [anon_sym___inline] = ACTIONS(2872), + [anon_sym___inline__] = ACTIONS(2872), + [anon_sym___forceinline] = ACTIONS(2872), + [anon_sym_thread_local] = ACTIONS(2872), + [anon_sym___thread] = ACTIONS(2872), + [anon_sym_CG_EXTERN] = ACTIONS(2872), + [anon_sym_CG_INLINE] = ACTIONS(2872), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2872), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2872), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2872), + [anon_sym_IBOutlet] = ACTIONS(2872), + [anon_sym_IBInspectable] = ACTIONS(2872), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2872), + [anon_sym_NS_INLINE] = ACTIONS(2872), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2872), + [anon_sym_OBJC_EXPORT] = ACTIONS(2872), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2872), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2872), + [anon_sym_const] = ACTIONS(2872), + [anon_sym_constexpr] = ACTIONS(2872), + [anon_sym_volatile] = ACTIONS(2872), + [anon_sym_restrict] = ACTIONS(2872), + [anon_sym___restrict__] = ACTIONS(2872), + [anon_sym__Atomic] = ACTIONS(2872), + [anon_sym__Noreturn] = ACTIONS(2872), + [anon_sym__Nonnull] = ACTIONS(2872), + [anon_sym_nullable] = ACTIONS(2872), + [anon_sym__Complex] = ACTIONS(2872), + [anon_sym__Nullable] = ACTIONS(2872), + [anon_sym__Nullable_result] = ACTIONS(2872), + [anon_sym__Null_unspecified] = ACTIONS(2872), + [anon_sym___autoreleasing] = ACTIONS(2872), + [anon_sym___block] = ACTIONS(2872), + [anon_sym___bridge] = ACTIONS(2872), + [anon_sym___bridge_retained] = ACTIONS(2872), + [anon_sym___bridge_transfer] = ACTIONS(2872), + [anon_sym___complex] = ACTIONS(2872), + [anon_sym___const] = ACTIONS(2872), + [anon_sym___imag] = ACTIONS(2872), + [anon_sym___kindof] = ACTIONS(2872), + [anon_sym___nonnull] = ACTIONS(2872), + [anon_sym___nullable] = ACTIONS(2872), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2872), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2872), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2872), + [anon_sym___real] = ACTIONS(2872), + [anon_sym___strong] = ACTIONS(2872), + [anon_sym___unsafe_unretained] = ACTIONS(2872), + [anon_sym___unused] = ACTIONS(2872), + [anon_sym___weak] = ACTIONS(2872), + [anon_sym_alignas] = ACTIONS(2872), + [anon_sym__Alignas] = ACTIONS(2872), + [sym_primitive_type] = ACTIONS(2872), + [anon_sym_enum] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2872), + [anon_sym_union] = ACTIONS(2872), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2872), + [anon_sym___typeof] = ACTIONS(2872), + [anon_sym_typeof] = ACTIONS(2872), + [aux_sym_preproc_undef_token1] = ACTIONS(2872), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2872), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2872), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2872), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2872), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2872), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2872), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2872), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2872), + [anon_sym_NS_AVAILABLE] = ACTIONS(2872), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2872), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_API_AVAILABLE] = ACTIONS(2872), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_API_DEPRECATED] = ACTIONS(2872), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2872), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2872), + [anon_sym___deprecated_msg] = ACTIONS(2872), + [anon_sym___deprecated_enum_msg] = ACTIONS(2872), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2872), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2872), + [anon_sym_ATsynthesize] = ACTIONS(2874), + [anon_sym_ATdynamic] = ACTIONS(2874), + [anon_sym_BOOL] = ACTIONS(2872), + [anon_sym_IMP] = ACTIONS(2872), + [anon_sym_SEL] = ACTIONS(2872), + [anon_sym_Class] = ACTIONS(2872), + [anon_sym_id] = ACTIONS(2872), + [anon_sym_ATdefs] = ACTIONS(2874), + }, + [2254] = { + [sym_identifier] = ACTIONS(2752), + [aux_sym_preproc_def_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token2] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2752), + [sym_preproc_directive] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_PLUS] = ACTIONS(2754), + [anon_sym___extension__] = ACTIONS(2752), + [anon_sym_typedef] = ACTIONS(2752), + [anon_sym_extern] = ACTIONS(2752), + [anon_sym___attribute__] = ACTIONS(2752), + [anon_sym___attribute] = ACTIONS(2752), + [anon_sym_noreturn] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym___declspec] = ACTIONS(2752), + [anon_sym___cdecl] = ACTIONS(2752), + [anon_sym___clrcall] = ACTIONS(2752), + [anon_sym___stdcall] = ACTIONS(2752), + [anon_sym___fastcall] = ACTIONS(2752), + [anon_sym___thiscall] = ACTIONS(2752), + [anon_sym___vectorcall] = ACTIONS(2752), + [anon_sym_signed] = ACTIONS(2752), + [anon_sym_unsigned] = ACTIONS(2752), + [anon_sym_long] = ACTIONS(2752), + [anon_sym_short] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_auto] = ACTIONS(2752), + [anon_sym_register] = ACTIONS(2752), + [anon_sym_inline] = ACTIONS(2752), + [anon_sym___inline] = ACTIONS(2752), + [anon_sym___inline__] = ACTIONS(2752), + [anon_sym___forceinline] = ACTIONS(2752), + [anon_sym_thread_local] = ACTIONS(2752), + [anon_sym___thread] = ACTIONS(2752), + [anon_sym_CG_EXTERN] = ACTIONS(2752), + [anon_sym_CG_INLINE] = ACTIONS(2752), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2752), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2752), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2752), + [anon_sym_IBOutlet] = ACTIONS(2752), + [anon_sym_IBInspectable] = ACTIONS(2752), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2752), + [anon_sym_NS_INLINE] = ACTIONS(2752), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2752), + [anon_sym_OBJC_EXPORT] = ACTIONS(2752), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2752), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2752), + [anon_sym_const] = ACTIONS(2752), + [anon_sym_constexpr] = ACTIONS(2752), + [anon_sym_volatile] = ACTIONS(2752), + [anon_sym_restrict] = ACTIONS(2752), + [anon_sym___restrict__] = ACTIONS(2752), + [anon_sym__Atomic] = ACTIONS(2752), + [anon_sym__Noreturn] = ACTIONS(2752), + [anon_sym__Nonnull] = ACTIONS(2752), + [anon_sym_nullable] = ACTIONS(2752), + [anon_sym__Complex] = ACTIONS(2752), + [anon_sym__Nullable] = ACTIONS(2752), + [anon_sym__Nullable_result] = ACTIONS(2752), + [anon_sym__Null_unspecified] = ACTIONS(2752), + [anon_sym___autoreleasing] = ACTIONS(2752), + [anon_sym___block] = ACTIONS(2752), + [anon_sym___bridge] = ACTIONS(2752), + [anon_sym___bridge_retained] = ACTIONS(2752), + [anon_sym___bridge_transfer] = ACTIONS(2752), + [anon_sym___complex] = ACTIONS(2752), + [anon_sym___const] = ACTIONS(2752), + [anon_sym___imag] = ACTIONS(2752), + [anon_sym___kindof] = ACTIONS(2752), + [anon_sym___nonnull] = ACTIONS(2752), + [anon_sym___nullable] = ACTIONS(2752), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2752), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2752), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2752), + [anon_sym___real] = ACTIONS(2752), + [anon_sym___strong] = ACTIONS(2752), + [anon_sym___unsafe_unretained] = ACTIONS(2752), + [anon_sym___unused] = ACTIONS(2752), + [anon_sym___weak] = ACTIONS(2752), + [anon_sym_alignas] = ACTIONS(2752), + [anon_sym__Alignas] = ACTIONS(2752), + [sym_primitive_type] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2752), + [anon_sym_union] = ACTIONS(2752), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2752), + [anon_sym___typeof] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(2752), + [aux_sym_preproc_undef_token1] = ACTIONS(2752), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2752), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2752), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2752), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2752), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2752), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2752), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2752), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2752), + [anon_sym_NS_AVAILABLE] = ACTIONS(2752), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2752), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_API_AVAILABLE] = ACTIONS(2752), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_API_DEPRECATED] = ACTIONS(2752), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2752), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2752), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2752), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2752), + [anon_sym___deprecated_msg] = ACTIONS(2752), + [anon_sym___deprecated_enum_msg] = ACTIONS(2752), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2752), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2752), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2752), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2752), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2752), + [anon_sym_ATsynthesize] = ACTIONS(2754), + [anon_sym_ATdynamic] = ACTIONS(2754), + [anon_sym_ATproperty] = ACTIONS(2754), + [anon_sym_BOOL] = ACTIONS(2752), + [anon_sym_IMP] = ACTIONS(2752), + [anon_sym_SEL] = ACTIONS(2752), + [anon_sym_Class] = ACTIONS(2752), + [anon_sym_id] = ACTIONS(2752), + }, + [2255] = { + [sym_identifier] = ACTIONS(2744), + [aux_sym_preproc_def_token1] = ACTIONS(2744), + [aux_sym_preproc_if_token1] = ACTIONS(2744), + [aux_sym_preproc_if_token2] = ACTIONS(2744), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2744), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2744), + [sym_preproc_directive] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2746), + [anon_sym_PLUS] = ACTIONS(2746), + [anon_sym___extension__] = ACTIONS(2744), + [anon_sym_typedef] = ACTIONS(2744), + [anon_sym_extern] = ACTIONS(2744), + [anon_sym___attribute__] = ACTIONS(2744), + [anon_sym___attribute] = ACTIONS(2744), + [anon_sym_noreturn] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym___declspec] = ACTIONS(2744), + [anon_sym___cdecl] = ACTIONS(2744), + [anon_sym___clrcall] = ACTIONS(2744), + [anon_sym___stdcall] = ACTIONS(2744), + [anon_sym___fastcall] = ACTIONS(2744), + [anon_sym___thiscall] = ACTIONS(2744), + [anon_sym___vectorcall] = ACTIONS(2744), + [anon_sym_signed] = ACTIONS(2744), + [anon_sym_unsigned] = ACTIONS(2744), + [anon_sym_long] = ACTIONS(2744), + [anon_sym_short] = ACTIONS(2744), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_auto] = ACTIONS(2744), + [anon_sym_register] = ACTIONS(2744), + [anon_sym_inline] = ACTIONS(2744), + [anon_sym___inline] = ACTIONS(2744), + [anon_sym___inline__] = ACTIONS(2744), + [anon_sym___forceinline] = ACTIONS(2744), + [anon_sym_thread_local] = ACTIONS(2744), + [anon_sym___thread] = ACTIONS(2744), + [anon_sym_CG_EXTERN] = ACTIONS(2744), + [anon_sym_CG_INLINE] = ACTIONS(2744), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2744), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2744), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2744), + [anon_sym_IBOutlet] = ACTIONS(2744), + [anon_sym_IBInspectable] = ACTIONS(2744), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2744), + [anon_sym_NS_INLINE] = ACTIONS(2744), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2744), + [anon_sym_OBJC_EXPORT] = ACTIONS(2744), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2744), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2744), + [anon_sym_const] = ACTIONS(2744), + [anon_sym_constexpr] = ACTIONS(2744), + [anon_sym_volatile] = ACTIONS(2744), + [anon_sym_restrict] = ACTIONS(2744), + [anon_sym___restrict__] = ACTIONS(2744), + [anon_sym__Atomic] = ACTIONS(2744), + [anon_sym__Noreturn] = ACTIONS(2744), + [anon_sym__Nonnull] = ACTIONS(2744), + [anon_sym_nullable] = ACTIONS(2744), + [anon_sym__Complex] = ACTIONS(2744), + [anon_sym__Nullable] = ACTIONS(2744), + [anon_sym__Nullable_result] = ACTIONS(2744), + [anon_sym__Null_unspecified] = ACTIONS(2744), + [anon_sym___autoreleasing] = ACTIONS(2744), + [anon_sym___block] = ACTIONS(2744), + [anon_sym___bridge] = ACTIONS(2744), + [anon_sym___bridge_retained] = ACTIONS(2744), + [anon_sym___bridge_transfer] = ACTIONS(2744), + [anon_sym___complex] = ACTIONS(2744), + [anon_sym___const] = ACTIONS(2744), + [anon_sym___imag] = ACTIONS(2744), + [anon_sym___kindof] = ACTIONS(2744), + [anon_sym___nonnull] = ACTIONS(2744), + [anon_sym___nullable] = ACTIONS(2744), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2744), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2744), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2744), + [anon_sym___real] = ACTIONS(2744), + [anon_sym___strong] = ACTIONS(2744), + [anon_sym___unsafe_unretained] = ACTIONS(2744), + [anon_sym___unused] = ACTIONS(2744), + [anon_sym___weak] = ACTIONS(2744), + [anon_sym_alignas] = ACTIONS(2744), + [anon_sym__Alignas] = ACTIONS(2744), + [sym_primitive_type] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), + [anon_sym_struct] = ACTIONS(2744), + [anon_sym_union] = ACTIONS(2744), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2744), + [anon_sym___typeof] = ACTIONS(2744), + [anon_sym_typeof] = ACTIONS(2744), + [aux_sym_preproc_undef_token1] = ACTIONS(2744), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2744), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2744), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2744), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2744), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2744), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2744), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2744), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2744), + [anon_sym_NS_AVAILABLE] = ACTIONS(2744), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2744), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_API_AVAILABLE] = ACTIONS(2744), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_API_DEPRECATED] = ACTIONS(2744), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2744), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2744), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2744), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2744), + [anon_sym___deprecated_msg] = ACTIONS(2744), + [anon_sym___deprecated_enum_msg] = ACTIONS(2744), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2744), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2744), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2744), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2744), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2744), + [anon_sym_ATsynthesize] = ACTIONS(2746), + [anon_sym_ATdynamic] = ACTIONS(2746), + [anon_sym_ATproperty] = ACTIONS(2746), + [anon_sym_BOOL] = ACTIONS(2744), + [anon_sym_IMP] = ACTIONS(2744), + [anon_sym_SEL] = ACTIONS(2744), + [anon_sym_Class] = ACTIONS(2744), + [anon_sym_id] = ACTIONS(2744), + }, + [2256] = { + [sym_identifier] = ACTIONS(5316), + [aux_sym_preproc_def_token1] = ACTIONS(5316), + [aux_sym_preproc_if_token1] = ACTIONS(5316), + [aux_sym_preproc_if_token2] = ACTIONS(5316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5316), + [sym_preproc_directive] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5318), + [anon_sym_PLUS] = ACTIONS(5318), + [anon_sym_SEMI] = ACTIONS(5481), + [anon_sym___extension__] = ACTIONS(5316), + [anon_sym_typedef] = ACTIONS(5316), + [anon_sym_extern] = ACTIONS(5316), + [anon_sym___attribute__] = ACTIONS(5316), + [anon_sym___attribute] = ACTIONS(5316), + [anon_sym_noreturn] = ACTIONS(5316), + [anon_sym_LBRACK] = ACTIONS(5318), + [anon_sym___declspec] = ACTIONS(5316), + [anon_sym___cdecl] = ACTIONS(5316), + [anon_sym___clrcall] = ACTIONS(5316), + [anon_sym___stdcall] = ACTIONS(5316), + [anon_sym___fastcall] = ACTIONS(5316), + [anon_sym___thiscall] = ACTIONS(5316), + [anon_sym___vectorcall] = ACTIONS(5316), + [anon_sym_signed] = ACTIONS(5316), + [anon_sym_unsigned] = ACTIONS(5316), + [anon_sym_long] = ACTIONS(5316), + [anon_sym_short] = ACTIONS(5316), + [anon_sym_static] = ACTIONS(5316), + [anon_sym_auto] = ACTIONS(5316), + [anon_sym_register] = ACTIONS(5316), + [anon_sym_inline] = ACTIONS(5316), + [anon_sym___inline] = ACTIONS(5316), + [anon_sym___inline__] = ACTIONS(5316), + [anon_sym___forceinline] = ACTIONS(5316), + [anon_sym_thread_local] = ACTIONS(5316), + [anon_sym___thread] = ACTIONS(5316), + [anon_sym_CG_EXTERN] = ACTIONS(5316), + [anon_sym_CG_INLINE] = ACTIONS(5316), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5316), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5316), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5316), + [anon_sym_IBOutlet] = ACTIONS(5316), + [anon_sym_IBInspectable] = ACTIONS(5316), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5316), + [anon_sym_NS_INLINE] = ACTIONS(5316), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5316), + [anon_sym_OBJC_EXPORT] = ACTIONS(5316), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5316), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5316), + [anon_sym_const] = ACTIONS(5316), + [anon_sym_constexpr] = ACTIONS(5316), + [anon_sym_volatile] = ACTIONS(5316), + [anon_sym_restrict] = ACTIONS(5316), + [anon_sym___restrict__] = ACTIONS(5316), + [anon_sym__Atomic] = ACTIONS(5316), + [anon_sym__Noreturn] = ACTIONS(5316), + [anon_sym__Nonnull] = ACTIONS(5316), + [anon_sym_nullable] = ACTIONS(5316), + [anon_sym__Complex] = ACTIONS(5316), + [anon_sym__Nullable] = ACTIONS(5316), + [anon_sym__Nullable_result] = ACTIONS(5316), + [anon_sym__Null_unspecified] = ACTIONS(5316), + [anon_sym___autoreleasing] = ACTIONS(5316), + [anon_sym___block] = ACTIONS(5316), + [anon_sym___bridge] = ACTIONS(5316), + [anon_sym___bridge_retained] = ACTIONS(5316), + [anon_sym___bridge_transfer] = ACTIONS(5316), + [anon_sym___complex] = ACTIONS(5316), + [anon_sym___const] = ACTIONS(5316), + [anon_sym___imag] = ACTIONS(5316), + [anon_sym___kindof] = ACTIONS(5316), + [anon_sym___nonnull] = ACTIONS(5316), + [anon_sym___nullable] = ACTIONS(5316), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5316), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5316), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5316), + [anon_sym___real] = ACTIONS(5316), + [anon_sym___strong] = ACTIONS(5316), + [anon_sym___unsafe_unretained] = ACTIONS(5316), + [anon_sym___unused] = ACTIONS(5316), + [anon_sym___weak] = ACTIONS(5316), + [anon_sym_alignas] = ACTIONS(5316), + [anon_sym__Alignas] = ACTIONS(5316), + [sym_primitive_type] = ACTIONS(5316), + [anon_sym_enum] = ACTIONS(5316), + [anon_sym_struct] = ACTIONS(5316), + [anon_sym_union] = ACTIONS(5316), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5316), + [anon_sym___typeof] = ACTIONS(5316), + [anon_sym_typeof] = ACTIONS(5316), + [aux_sym_preproc_undef_token1] = ACTIONS(5316), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5316), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5316), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5316), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5316), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5316), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5316), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5316), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5316), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5316), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5316), + [anon_sym_NS_AVAILABLE] = ACTIONS(5316), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5316), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5316), + [anon_sym_API_AVAILABLE] = ACTIONS(5316), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5316), + [anon_sym_API_DEPRECATED] = ACTIONS(5316), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5316), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5316), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5316), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5316), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5316), + [anon_sym___deprecated_msg] = ACTIONS(5316), + [anon_sym___deprecated_enum_msg] = ACTIONS(5316), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5316), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5316), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5316), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5316), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5316), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5316), + [anon_sym_ATsynthesize] = ACTIONS(5318), + [anon_sym_ATdynamic] = ACTIONS(5318), + [anon_sym_BOOL] = ACTIONS(5316), + [anon_sym_IMP] = ACTIONS(5316), + [anon_sym_SEL] = ACTIONS(5316), + [anon_sym_Class] = ACTIONS(5316), + [anon_sym_id] = ACTIONS(5316), + }, + [2257] = { + [sym_identifier] = ACTIONS(5431), + [aux_sym_preproc_def_token1] = ACTIONS(5431), + [aux_sym_preproc_if_token1] = ACTIONS(5431), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5431), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5431), + [sym_preproc_directive] = ACTIONS(5431), + [anon_sym_DASH] = ACTIONS(5433), + [anon_sym_PLUS] = ACTIONS(5433), + [anon_sym_SEMI] = ACTIONS(5483), + [anon_sym___extension__] = ACTIONS(5431), + [anon_sym_typedef] = ACTIONS(5431), + [anon_sym_extern] = ACTIONS(5431), + [anon_sym___attribute__] = ACTIONS(5431), + [anon_sym___attribute] = ACTIONS(5431), + [anon_sym_noreturn] = ACTIONS(5431), + [anon_sym_LBRACK] = ACTIONS(5433), + [anon_sym___declspec] = ACTIONS(5431), + [anon_sym___cdecl] = ACTIONS(5431), + [anon_sym___clrcall] = ACTIONS(5431), + [anon_sym___stdcall] = ACTIONS(5431), + [anon_sym___fastcall] = ACTIONS(5431), + [anon_sym___thiscall] = ACTIONS(5431), + [anon_sym___vectorcall] = ACTIONS(5431), + [anon_sym_signed] = ACTIONS(5431), + [anon_sym_unsigned] = ACTIONS(5431), + [anon_sym_long] = ACTIONS(5431), + [anon_sym_short] = ACTIONS(5431), + [anon_sym_static] = ACTIONS(5431), + [anon_sym_auto] = ACTIONS(5431), + [anon_sym_register] = ACTIONS(5431), + [anon_sym_inline] = ACTIONS(5431), + [anon_sym___inline] = ACTIONS(5431), + [anon_sym___inline__] = ACTIONS(5431), + [anon_sym___forceinline] = ACTIONS(5431), + [anon_sym_thread_local] = ACTIONS(5431), + [anon_sym___thread] = ACTIONS(5431), + [anon_sym_CG_EXTERN] = ACTIONS(5431), + [anon_sym_CG_INLINE] = ACTIONS(5431), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5431), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5431), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5431), + [anon_sym_IBOutlet] = ACTIONS(5431), + [anon_sym_IBInspectable] = ACTIONS(5431), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5431), + [anon_sym_NS_INLINE] = ACTIONS(5431), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5431), + [anon_sym_OBJC_EXPORT] = ACTIONS(5431), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5431), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5431), + [anon_sym_const] = ACTIONS(5431), + [anon_sym_constexpr] = ACTIONS(5431), + [anon_sym_volatile] = ACTIONS(5431), + [anon_sym_restrict] = ACTIONS(5431), + [anon_sym___restrict__] = ACTIONS(5431), + [anon_sym__Atomic] = ACTIONS(5431), + [anon_sym__Noreturn] = ACTIONS(5431), + [anon_sym__Nonnull] = ACTIONS(5431), + [anon_sym_nullable] = ACTIONS(5431), + [anon_sym__Complex] = ACTIONS(5431), + [anon_sym__Nullable] = ACTIONS(5431), + [anon_sym__Nullable_result] = ACTIONS(5431), + [anon_sym__Null_unspecified] = ACTIONS(5431), + [anon_sym___autoreleasing] = ACTIONS(5431), + [anon_sym___block] = ACTIONS(5431), + [anon_sym___bridge] = ACTIONS(5431), + [anon_sym___bridge_retained] = ACTIONS(5431), + [anon_sym___bridge_transfer] = ACTIONS(5431), + [anon_sym___complex] = ACTIONS(5431), + [anon_sym___const] = ACTIONS(5431), + [anon_sym___imag] = ACTIONS(5431), + [anon_sym___kindof] = ACTIONS(5431), + [anon_sym___nonnull] = ACTIONS(5431), + [anon_sym___nullable] = ACTIONS(5431), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5431), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5431), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5431), + [anon_sym___real] = ACTIONS(5431), + [anon_sym___strong] = ACTIONS(5431), + [anon_sym___unsafe_unretained] = ACTIONS(5431), + [anon_sym___unused] = ACTIONS(5431), + [anon_sym___weak] = ACTIONS(5431), + [anon_sym_alignas] = ACTIONS(5431), + [anon_sym__Alignas] = ACTIONS(5431), + [sym_primitive_type] = ACTIONS(5431), + [anon_sym_enum] = ACTIONS(5431), + [anon_sym_struct] = ACTIONS(5431), + [anon_sym_union] = ACTIONS(5431), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5431), + [anon_sym___typeof] = ACTIONS(5431), + [anon_sym_typeof] = ACTIONS(5431), + [aux_sym_preproc_undef_token1] = ACTIONS(5431), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5431), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5431), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5431), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5431), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5431), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5431), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5431), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5431), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5431), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5431), + [anon_sym_NS_AVAILABLE] = ACTIONS(5431), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5431), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5431), + [anon_sym_API_AVAILABLE] = ACTIONS(5431), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5431), + [anon_sym_API_DEPRECATED] = ACTIONS(5431), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5431), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5431), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5431), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5431), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5431), + [anon_sym___deprecated_msg] = ACTIONS(5431), + [anon_sym___deprecated_enum_msg] = ACTIONS(5431), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5431), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5431), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5431), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5431), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5431), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5431), + [anon_sym_ATend] = ACTIONS(5433), + [anon_sym_ATsynthesize] = ACTIONS(5433), + [anon_sym_ATdynamic] = ACTIONS(5433), + [anon_sym_BOOL] = ACTIONS(5431), + [anon_sym_IMP] = ACTIONS(5431), + [anon_sym_SEL] = ACTIONS(5431), + [anon_sym_Class] = ACTIONS(5431), + [anon_sym_id] = ACTIONS(5431), + }, + [2258] = { + [sym_identifier] = ACTIONS(5322), + [aux_sym_preproc_def_token1] = ACTIONS(5322), + [aux_sym_preproc_if_token1] = ACTIONS(5322), + [aux_sym_preproc_if_token2] = ACTIONS(5322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5322), + [sym_preproc_directive] = ACTIONS(5322), + [anon_sym_DASH] = ACTIONS(5324), + [anon_sym_PLUS] = ACTIONS(5324), + [anon_sym_SEMI] = ACTIONS(5485), + [anon_sym___extension__] = ACTIONS(5322), + [anon_sym_typedef] = ACTIONS(5322), + [anon_sym_extern] = ACTIONS(5322), + [anon_sym___attribute__] = ACTIONS(5322), + [anon_sym___attribute] = ACTIONS(5322), + [anon_sym_noreturn] = ACTIONS(5322), + [anon_sym_LBRACK] = ACTIONS(5324), + [anon_sym___declspec] = ACTIONS(5322), + [anon_sym___cdecl] = ACTIONS(5322), + [anon_sym___clrcall] = ACTIONS(5322), + [anon_sym___stdcall] = ACTIONS(5322), + [anon_sym___fastcall] = ACTIONS(5322), + [anon_sym___thiscall] = ACTIONS(5322), + [anon_sym___vectorcall] = ACTIONS(5322), + [anon_sym_signed] = ACTIONS(5322), + [anon_sym_unsigned] = ACTIONS(5322), + [anon_sym_long] = ACTIONS(5322), + [anon_sym_short] = ACTIONS(5322), + [anon_sym_static] = ACTIONS(5322), + [anon_sym_auto] = ACTIONS(5322), + [anon_sym_register] = ACTIONS(5322), + [anon_sym_inline] = ACTIONS(5322), + [anon_sym___inline] = ACTIONS(5322), + [anon_sym___inline__] = ACTIONS(5322), + [anon_sym___forceinline] = ACTIONS(5322), + [anon_sym_thread_local] = ACTIONS(5322), + [anon_sym___thread] = ACTIONS(5322), + [anon_sym_CG_EXTERN] = ACTIONS(5322), + [anon_sym_CG_INLINE] = ACTIONS(5322), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5322), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5322), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5322), + [anon_sym_IBOutlet] = ACTIONS(5322), + [anon_sym_IBInspectable] = ACTIONS(5322), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5322), + [anon_sym_NS_INLINE] = ACTIONS(5322), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5322), + [anon_sym_OBJC_EXPORT] = ACTIONS(5322), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5322), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5322), + [anon_sym_const] = ACTIONS(5322), + [anon_sym_constexpr] = ACTIONS(5322), + [anon_sym_volatile] = ACTIONS(5322), + [anon_sym_restrict] = ACTIONS(5322), + [anon_sym___restrict__] = ACTIONS(5322), + [anon_sym__Atomic] = ACTIONS(5322), + [anon_sym__Noreturn] = ACTIONS(5322), + [anon_sym__Nonnull] = ACTIONS(5322), + [anon_sym_nullable] = ACTIONS(5322), + [anon_sym__Complex] = ACTIONS(5322), + [anon_sym__Nullable] = ACTIONS(5322), + [anon_sym__Nullable_result] = ACTIONS(5322), + [anon_sym__Null_unspecified] = ACTIONS(5322), + [anon_sym___autoreleasing] = ACTIONS(5322), + [anon_sym___block] = ACTIONS(5322), + [anon_sym___bridge] = ACTIONS(5322), + [anon_sym___bridge_retained] = ACTIONS(5322), + [anon_sym___bridge_transfer] = ACTIONS(5322), + [anon_sym___complex] = ACTIONS(5322), + [anon_sym___const] = ACTIONS(5322), + [anon_sym___imag] = ACTIONS(5322), + [anon_sym___kindof] = ACTIONS(5322), + [anon_sym___nonnull] = ACTIONS(5322), + [anon_sym___nullable] = ACTIONS(5322), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5322), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5322), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5322), + [anon_sym___real] = ACTIONS(5322), + [anon_sym___strong] = ACTIONS(5322), + [anon_sym___unsafe_unretained] = ACTIONS(5322), + [anon_sym___unused] = ACTIONS(5322), + [anon_sym___weak] = ACTIONS(5322), + [anon_sym_alignas] = ACTIONS(5322), + [anon_sym__Alignas] = ACTIONS(5322), + [sym_primitive_type] = ACTIONS(5322), + [anon_sym_enum] = ACTIONS(5322), + [anon_sym_struct] = ACTIONS(5322), + [anon_sym_union] = ACTIONS(5322), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5322), + [anon_sym___typeof] = ACTIONS(5322), + [anon_sym_typeof] = ACTIONS(5322), + [aux_sym_preproc_undef_token1] = ACTIONS(5322), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5322), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5322), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5322), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5322), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5322), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5322), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5322), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5322), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5322), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5322), + [anon_sym_NS_AVAILABLE] = ACTIONS(5322), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5322), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5322), + [anon_sym_API_AVAILABLE] = ACTIONS(5322), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5322), + [anon_sym_API_DEPRECATED] = ACTIONS(5322), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5322), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5322), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5322), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5322), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5322), + [anon_sym___deprecated_msg] = ACTIONS(5322), + [anon_sym___deprecated_enum_msg] = ACTIONS(5322), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5322), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5322), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5322), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5322), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5322), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5322), + [anon_sym_ATsynthesize] = ACTIONS(5324), + [anon_sym_ATdynamic] = ACTIONS(5324), + [anon_sym_BOOL] = ACTIONS(5322), + [anon_sym_IMP] = ACTIONS(5322), + [anon_sym_SEL] = ACTIONS(5322), + [anon_sym_Class] = ACTIONS(5322), + [anon_sym_id] = ACTIONS(5322), + }, + [2259] = { + [sym_identifier] = ACTIONS(5487), + [aux_sym_preproc_def_token1] = ACTIONS(5487), + [aux_sym_preproc_if_token1] = ACTIONS(5487), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5487), + [sym_preproc_directive] = ACTIONS(5487), + [anon_sym_DASH] = ACTIONS(5489), + [anon_sym_PLUS] = ACTIONS(5489), + [anon_sym___extension__] = ACTIONS(5487), + [anon_sym_typedef] = ACTIONS(5487), + [anon_sym_extern] = ACTIONS(5487), + [anon_sym___attribute__] = ACTIONS(5487), + [anon_sym___attribute] = ACTIONS(5487), + [anon_sym_noreturn] = ACTIONS(5487), + [anon_sym_LBRACK] = ACTIONS(5489), + [anon_sym___declspec] = ACTIONS(5487), + [anon_sym___cdecl] = ACTIONS(5487), + [anon_sym___clrcall] = ACTIONS(5487), + [anon_sym___stdcall] = ACTIONS(5487), + [anon_sym___fastcall] = ACTIONS(5487), + [anon_sym___thiscall] = ACTIONS(5487), + [anon_sym___vectorcall] = ACTIONS(5487), + [anon_sym_signed] = ACTIONS(5487), + [anon_sym_unsigned] = ACTIONS(5487), + [anon_sym_long] = ACTIONS(5487), + [anon_sym_short] = ACTIONS(5487), + [anon_sym_static] = ACTIONS(5487), + [anon_sym_auto] = ACTIONS(5487), + [anon_sym_register] = ACTIONS(5487), + [anon_sym_inline] = ACTIONS(5487), + [anon_sym___inline] = ACTIONS(5487), + [anon_sym___inline__] = ACTIONS(5487), + [anon_sym___forceinline] = ACTIONS(5487), + [anon_sym_thread_local] = ACTIONS(5487), + [anon_sym___thread] = ACTIONS(5487), + [anon_sym_CG_EXTERN] = ACTIONS(5487), + [anon_sym_CG_INLINE] = ACTIONS(5487), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5487), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5487), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5487), + [anon_sym_IBOutlet] = ACTIONS(5487), + [anon_sym_IBInspectable] = ACTIONS(5487), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5487), + [anon_sym_NS_INLINE] = ACTIONS(5487), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5487), + [anon_sym_OBJC_EXPORT] = ACTIONS(5487), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5487), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5487), + [anon_sym_const] = ACTIONS(5487), + [anon_sym_constexpr] = ACTIONS(5487), + [anon_sym_volatile] = ACTIONS(5487), + [anon_sym_restrict] = ACTIONS(5487), + [anon_sym___restrict__] = ACTIONS(5487), + [anon_sym__Atomic] = ACTIONS(5487), + [anon_sym__Noreturn] = ACTIONS(5487), + [anon_sym__Nonnull] = ACTIONS(5487), + [anon_sym_nullable] = ACTIONS(5487), + [anon_sym__Complex] = ACTIONS(5487), + [anon_sym__Nullable] = ACTIONS(5487), + [anon_sym__Nullable_result] = ACTIONS(5487), + [anon_sym__Null_unspecified] = ACTIONS(5487), + [anon_sym___autoreleasing] = ACTIONS(5487), + [anon_sym___block] = ACTIONS(5487), + [anon_sym___bridge] = ACTIONS(5487), + [anon_sym___bridge_retained] = ACTIONS(5487), + [anon_sym___bridge_transfer] = ACTIONS(5487), + [anon_sym___complex] = ACTIONS(5487), + [anon_sym___const] = ACTIONS(5487), + [anon_sym___imag] = ACTIONS(5487), + [anon_sym___kindof] = ACTIONS(5487), + [anon_sym___nonnull] = ACTIONS(5487), + [anon_sym___nullable] = ACTIONS(5487), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5487), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5487), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5487), + [anon_sym___real] = ACTIONS(5487), + [anon_sym___strong] = ACTIONS(5487), + [anon_sym___unsafe_unretained] = ACTIONS(5487), + [anon_sym___unused] = ACTIONS(5487), + [anon_sym___weak] = ACTIONS(5487), + [anon_sym_alignas] = ACTIONS(5487), + [anon_sym__Alignas] = ACTIONS(5487), + [sym_primitive_type] = ACTIONS(5487), + [anon_sym_enum] = ACTIONS(5487), + [anon_sym_struct] = ACTIONS(5487), + [anon_sym_union] = ACTIONS(5487), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5487), + [anon_sym___typeof] = ACTIONS(5487), + [anon_sym_typeof] = ACTIONS(5487), + [aux_sym_preproc_undef_token1] = ACTIONS(5487), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5487), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5487), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5487), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5487), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5487), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5487), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5487), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5487), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5487), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5487), + [anon_sym_NS_AVAILABLE] = ACTIONS(5487), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5487), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5487), + [anon_sym_API_AVAILABLE] = ACTIONS(5487), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5487), + [anon_sym_API_DEPRECATED] = ACTIONS(5487), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5487), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5487), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5487), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5487), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5487), + [anon_sym___deprecated_msg] = ACTIONS(5487), + [anon_sym___deprecated_enum_msg] = ACTIONS(5487), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5487), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5487), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5487), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5487), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5487), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5487), + [anon_sym_ATend] = ACTIONS(5489), + [anon_sym_AToptional] = ACTIONS(5489), + [anon_sym_ATrequired] = ACTIONS(5489), + [anon_sym_ATproperty] = ACTIONS(5489), + [anon_sym_BOOL] = ACTIONS(5487), + [anon_sym_IMP] = ACTIONS(5487), + [anon_sym_SEL] = ACTIONS(5487), + [anon_sym_Class] = ACTIONS(5487), + [anon_sym_id] = ACTIONS(5487), + }, + [2260] = { + [sym_identifier] = ACTIONS(5491), + [aux_sym_preproc_def_token1] = ACTIONS(5491), + [aux_sym_preproc_if_token1] = ACTIONS(5491), + [aux_sym_preproc_if_token2] = ACTIONS(5491), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5491), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5491), + [aux_sym_preproc_else_token1] = ACTIONS(5491), + [aux_sym_preproc_elif_token1] = ACTIONS(5491), + [sym_preproc_directive] = ACTIONS(5491), + [anon_sym_DASH] = ACTIONS(5493), + [anon_sym_PLUS] = ACTIONS(5493), + [anon_sym___extension__] = ACTIONS(5491), + [anon_sym_typedef] = ACTIONS(5491), + [anon_sym_extern] = ACTIONS(5491), + [anon_sym___attribute__] = ACTIONS(5491), + [anon_sym___attribute] = ACTIONS(5491), + [anon_sym_noreturn] = ACTIONS(5491), + [anon_sym_LBRACK] = ACTIONS(5493), + [anon_sym___declspec] = ACTIONS(5491), + [anon_sym___cdecl] = ACTIONS(5491), + [anon_sym___clrcall] = ACTIONS(5491), + [anon_sym___stdcall] = ACTIONS(5491), + [anon_sym___fastcall] = ACTIONS(5491), + [anon_sym___thiscall] = ACTIONS(5491), + [anon_sym___vectorcall] = ACTIONS(5491), + [anon_sym_signed] = ACTIONS(5491), + [anon_sym_unsigned] = ACTIONS(5491), + [anon_sym_long] = ACTIONS(5491), + [anon_sym_short] = ACTIONS(5491), + [anon_sym_static] = ACTIONS(5491), + [anon_sym_auto] = ACTIONS(5491), + [anon_sym_register] = ACTIONS(5491), + [anon_sym_inline] = ACTIONS(5491), + [anon_sym___inline] = ACTIONS(5491), + [anon_sym___inline__] = ACTIONS(5491), + [anon_sym___forceinline] = ACTIONS(5491), + [anon_sym_thread_local] = ACTIONS(5491), + [anon_sym___thread] = ACTIONS(5491), + [anon_sym_CG_EXTERN] = ACTIONS(5491), + [anon_sym_CG_INLINE] = ACTIONS(5491), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5491), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5491), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5491), + [anon_sym_IBOutlet] = ACTIONS(5491), + [anon_sym_IBInspectable] = ACTIONS(5491), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5491), + [anon_sym_NS_INLINE] = ACTIONS(5491), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5491), + [anon_sym_OBJC_EXPORT] = ACTIONS(5491), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5491), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5491), + [anon_sym_const] = ACTIONS(5491), + [anon_sym_constexpr] = ACTIONS(5491), + [anon_sym_volatile] = ACTIONS(5491), + [anon_sym_restrict] = ACTIONS(5491), + [anon_sym___restrict__] = ACTIONS(5491), + [anon_sym__Atomic] = ACTIONS(5491), + [anon_sym__Noreturn] = ACTIONS(5491), + [anon_sym__Nonnull] = ACTIONS(5491), + [anon_sym_nullable] = ACTIONS(5491), + [anon_sym__Complex] = ACTIONS(5491), + [anon_sym__Nullable] = ACTIONS(5491), + [anon_sym__Nullable_result] = ACTIONS(5491), + [anon_sym__Null_unspecified] = ACTIONS(5491), + [anon_sym___autoreleasing] = ACTIONS(5491), + [anon_sym___block] = ACTIONS(5491), + [anon_sym___bridge] = ACTIONS(5491), + [anon_sym___bridge_retained] = ACTIONS(5491), + [anon_sym___bridge_transfer] = ACTIONS(5491), + [anon_sym___complex] = ACTIONS(5491), + [anon_sym___const] = ACTIONS(5491), + [anon_sym___imag] = ACTIONS(5491), + [anon_sym___kindof] = ACTIONS(5491), + [anon_sym___nonnull] = ACTIONS(5491), + [anon_sym___nullable] = ACTIONS(5491), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5491), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5491), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5491), + [anon_sym___real] = ACTIONS(5491), + [anon_sym___strong] = ACTIONS(5491), + [anon_sym___unsafe_unretained] = ACTIONS(5491), + [anon_sym___unused] = ACTIONS(5491), + [anon_sym___weak] = ACTIONS(5491), + [anon_sym_alignas] = ACTIONS(5491), + [anon_sym__Alignas] = ACTIONS(5491), + [sym_primitive_type] = ACTIONS(5491), + [anon_sym_enum] = ACTIONS(5491), + [anon_sym_struct] = ACTIONS(5491), + [anon_sym_union] = ACTIONS(5491), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5491), + [anon_sym___typeof] = ACTIONS(5491), + [anon_sym_typeof] = ACTIONS(5491), + [aux_sym_preproc_undef_token1] = ACTIONS(5491), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5491), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5491), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5491), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5491), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5491), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5491), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5491), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5491), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5491), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5491), + [anon_sym_NS_AVAILABLE] = ACTIONS(5491), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5491), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5491), + [anon_sym_API_AVAILABLE] = ACTIONS(5491), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5491), + [anon_sym_API_DEPRECATED] = ACTIONS(5491), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5491), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5491), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5491), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5491), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5491), + [anon_sym___deprecated_msg] = ACTIONS(5491), + [anon_sym___deprecated_enum_msg] = ACTIONS(5491), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5491), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5491), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5491), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5491), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5491), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5491), + [anon_sym_ATproperty] = ACTIONS(5493), + [anon_sym_BOOL] = ACTIONS(5491), + [anon_sym_IMP] = ACTIONS(5491), + [anon_sym_SEL] = ACTIONS(5491), + [anon_sym_Class] = ACTIONS(5491), + [anon_sym_id] = ACTIONS(5491), + }, + [2261] = { + [sym_identifier] = ACTIONS(5383), + [aux_sym_preproc_def_token1] = ACTIONS(5383), + [aux_sym_preproc_if_token1] = ACTIONS(5383), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5383), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5383), + [sym_preproc_directive] = ACTIONS(5383), + [anon_sym_DASH] = ACTIONS(5385), + [anon_sym_PLUS] = ACTIONS(5385), + [anon_sym_SEMI] = ACTIONS(5495), + [anon_sym___extension__] = ACTIONS(5383), + [anon_sym_typedef] = ACTIONS(5383), + [anon_sym_extern] = ACTIONS(5383), + [anon_sym___attribute__] = ACTIONS(5383), + [anon_sym___attribute] = ACTIONS(5383), + [anon_sym_noreturn] = ACTIONS(5383), + [anon_sym_LBRACK] = ACTIONS(5385), + [anon_sym___declspec] = ACTIONS(5383), + [anon_sym___cdecl] = ACTIONS(5383), + [anon_sym___clrcall] = ACTIONS(5383), + [anon_sym___stdcall] = ACTIONS(5383), + [anon_sym___fastcall] = ACTIONS(5383), + [anon_sym___thiscall] = ACTIONS(5383), + [anon_sym___vectorcall] = ACTIONS(5383), + [anon_sym_signed] = ACTIONS(5383), + [anon_sym_unsigned] = ACTIONS(5383), + [anon_sym_long] = ACTIONS(5383), + [anon_sym_short] = ACTIONS(5383), + [anon_sym_static] = ACTIONS(5383), + [anon_sym_auto] = ACTIONS(5383), + [anon_sym_register] = ACTIONS(5383), + [anon_sym_inline] = ACTIONS(5383), + [anon_sym___inline] = ACTIONS(5383), + [anon_sym___inline__] = ACTIONS(5383), + [anon_sym___forceinline] = ACTIONS(5383), + [anon_sym_thread_local] = ACTIONS(5383), + [anon_sym___thread] = ACTIONS(5383), + [anon_sym_CG_EXTERN] = ACTIONS(5383), + [anon_sym_CG_INLINE] = ACTIONS(5383), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5383), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5383), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5383), + [anon_sym_IBOutlet] = ACTIONS(5383), + [anon_sym_IBInspectable] = ACTIONS(5383), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5383), + [anon_sym_NS_INLINE] = ACTIONS(5383), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5383), + [anon_sym_OBJC_EXPORT] = ACTIONS(5383), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5383), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5383), + [anon_sym_const] = ACTIONS(5383), + [anon_sym_constexpr] = ACTIONS(5383), + [anon_sym_volatile] = ACTIONS(5383), + [anon_sym_restrict] = ACTIONS(5383), + [anon_sym___restrict__] = ACTIONS(5383), + [anon_sym__Atomic] = ACTIONS(5383), + [anon_sym__Noreturn] = ACTIONS(5383), + [anon_sym__Nonnull] = ACTIONS(5383), + [anon_sym_nullable] = ACTIONS(5383), + [anon_sym__Complex] = ACTIONS(5383), + [anon_sym__Nullable] = ACTIONS(5383), + [anon_sym__Nullable_result] = ACTIONS(5383), + [anon_sym__Null_unspecified] = ACTIONS(5383), + [anon_sym___autoreleasing] = ACTIONS(5383), + [anon_sym___block] = ACTIONS(5383), + [anon_sym___bridge] = ACTIONS(5383), + [anon_sym___bridge_retained] = ACTIONS(5383), + [anon_sym___bridge_transfer] = ACTIONS(5383), + [anon_sym___complex] = ACTIONS(5383), + [anon_sym___const] = ACTIONS(5383), + [anon_sym___imag] = ACTIONS(5383), + [anon_sym___kindof] = ACTIONS(5383), + [anon_sym___nonnull] = ACTIONS(5383), + [anon_sym___nullable] = ACTIONS(5383), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5383), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5383), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5383), + [anon_sym___real] = ACTIONS(5383), + [anon_sym___strong] = ACTIONS(5383), + [anon_sym___unsafe_unretained] = ACTIONS(5383), + [anon_sym___unused] = ACTIONS(5383), + [anon_sym___weak] = ACTIONS(5383), + [anon_sym_alignas] = ACTIONS(5383), + [anon_sym__Alignas] = ACTIONS(5383), + [sym_primitive_type] = ACTIONS(5383), + [anon_sym_enum] = ACTIONS(5383), + [anon_sym_struct] = ACTIONS(5383), + [anon_sym_union] = ACTIONS(5383), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5383), + [anon_sym___typeof] = ACTIONS(5383), + [anon_sym_typeof] = ACTIONS(5383), + [aux_sym_preproc_undef_token1] = ACTIONS(5383), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5383), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5383), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5383), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5383), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5383), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5383), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5383), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5383), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5383), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5383), + [anon_sym_NS_AVAILABLE] = ACTIONS(5383), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5383), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5383), + [anon_sym_API_AVAILABLE] = ACTIONS(5383), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5383), + [anon_sym_API_DEPRECATED] = ACTIONS(5383), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5383), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5383), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5383), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5383), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5383), + [anon_sym___deprecated_msg] = ACTIONS(5383), + [anon_sym___deprecated_enum_msg] = ACTIONS(5383), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5383), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5383), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5383), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5383), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5383), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5383), + [anon_sym_ATend] = ACTIONS(5385), + [anon_sym_ATsynthesize] = ACTIONS(5385), + [anon_sym_ATdynamic] = ACTIONS(5385), + [anon_sym_BOOL] = ACTIONS(5383), + [anon_sym_IMP] = ACTIONS(5383), + [anon_sym_SEL] = ACTIONS(5383), + [anon_sym_Class] = ACTIONS(5383), + [anon_sym_id] = ACTIONS(5383), + }, + [2262] = { + [sym_identifier] = ACTIONS(2612), + [aux_sym_preproc_def_token1] = ACTIONS(2612), + [aux_sym_preproc_if_token1] = ACTIONS(2612), + [aux_sym_preproc_if_token2] = ACTIONS(2612), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2612), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2612), + [sym_preproc_directive] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2614), + [anon_sym_PLUS] = ACTIONS(2614), + [anon_sym___extension__] = ACTIONS(2612), + [anon_sym_typedef] = ACTIONS(2612), + [anon_sym_extern] = ACTIONS(2612), + [anon_sym___attribute__] = ACTIONS(2612), + [anon_sym___attribute] = ACTIONS(2612), + [anon_sym_noreturn] = ACTIONS(2612), + [anon_sym_LBRACK] = ACTIONS(2614), + [anon_sym___declspec] = ACTIONS(2612), + [anon_sym___cdecl] = ACTIONS(2612), + [anon_sym___clrcall] = ACTIONS(2612), + [anon_sym___stdcall] = ACTIONS(2612), + [anon_sym___fastcall] = ACTIONS(2612), + [anon_sym___thiscall] = ACTIONS(2612), + [anon_sym___vectorcall] = ACTIONS(2612), + [anon_sym_signed] = ACTIONS(2612), + [anon_sym_unsigned] = ACTIONS(2612), + [anon_sym_long] = ACTIONS(2612), + [anon_sym_short] = ACTIONS(2612), + [anon_sym_static] = ACTIONS(2612), + [anon_sym_auto] = ACTIONS(2612), + [anon_sym_register] = ACTIONS(2612), + [anon_sym_inline] = ACTIONS(2612), + [anon_sym___inline] = ACTIONS(2612), + [anon_sym___inline__] = ACTIONS(2612), + [anon_sym___forceinline] = ACTIONS(2612), + [anon_sym_thread_local] = ACTIONS(2612), + [anon_sym___thread] = ACTIONS(2612), + [anon_sym_CG_EXTERN] = ACTIONS(2612), + [anon_sym_CG_INLINE] = ACTIONS(2612), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2612), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2612), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2612), + [anon_sym_IBOutlet] = ACTIONS(2612), + [anon_sym_IBInspectable] = ACTIONS(2612), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2612), + [anon_sym_NS_INLINE] = ACTIONS(2612), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2612), + [anon_sym_OBJC_EXPORT] = ACTIONS(2612), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2612), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2612), + [anon_sym_const] = ACTIONS(2612), + [anon_sym_constexpr] = ACTIONS(2612), + [anon_sym_volatile] = ACTIONS(2612), + [anon_sym_restrict] = ACTIONS(2612), + [anon_sym___restrict__] = ACTIONS(2612), + [anon_sym__Atomic] = ACTIONS(2612), + [anon_sym__Noreturn] = ACTIONS(2612), + [anon_sym__Nonnull] = ACTIONS(2612), + [anon_sym_nullable] = ACTIONS(2612), + [anon_sym__Complex] = ACTIONS(2612), + [anon_sym__Nullable] = ACTIONS(2612), + [anon_sym__Nullable_result] = ACTIONS(2612), + [anon_sym__Null_unspecified] = ACTIONS(2612), + [anon_sym___autoreleasing] = ACTIONS(2612), + [anon_sym___block] = ACTIONS(2612), + [anon_sym___bridge] = ACTIONS(2612), + [anon_sym___bridge_retained] = ACTIONS(2612), + [anon_sym___bridge_transfer] = ACTIONS(2612), + [anon_sym___complex] = ACTIONS(2612), + [anon_sym___const] = ACTIONS(2612), + [anon_sym___imag] = ACTIONS(2612), + [anon_sym___kindof] = ACTIONS(2612), + [anon_sym___nonnull] = ACTIONS(2612), + [anon_sym___nullable] = ACTIONS(2612), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2612), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2612), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2612), + [anon_sym___real] = ACTIONS(2612), + [anon_sym___strong] = ACTIONS(2612), + [anon_sym___unsafe_unretained] = ACTIONS(2612), + [anon_sym___unused] = ACTIONS(2612), + [anon_sym___weak] = ACTIONS(2612), + [anon_sym_alignas] = ACTIONS(2612), + [anon_sym__Alignas] = ACTIONS(2612), + [sym_primitive_type] = ACTIONS(2612), + [anon_sym_enum] = ACTIONS(2612), + [anon_sym_struct] = ACTIONS(2612), + [anon_sym_union] = ACTIONS(2612), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2612), + [anon_sym___typeof] = ACTIONS(2612), + [anon_sym_typeof] = ACTIONS(2612), + [aux_sym_preproc_undef_token1] = ACTIONS(2612), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2612), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2612), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2612), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2612), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2612), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2612), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2612), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2612), + [anon_sym_NS_AVAILABLE] = ACTIONS(2612), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2612), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_API_AVAILABLE] = ACTIONS(2612), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_API_DEPRECATED] = ACTIONS(2612), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2612), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2612), + [anon_sym___deprecated_msg] = ACTIONS(2612), + [anon_sym___deprecated_enum_msg] = ACTIONS(2612), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2612), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2612), + [anon_sym_ATsynthesize] = ACTIONS(2614), + [anon_sym_ATdynamic] = ACTIONS(2614), + [anon_sym_BOOL] = ACTIONS(2612), + [anon_sym_IMP] = ACTIONS(2612), + [anon_sym_SEL] = ACTIONS(2612), + [anon_sym_Class] = ACTIONS(2612), + [anon_sym_id] = ACTIONS(2612), + [anon_sym_ATdefs] = ACTIONS(2614), + }, + [2263] = { + [sym_identifier] = ACTIONS(2616), + [aux_sym_preproc_def_token1] = ACTIONS(2616), + [aux_sym_preproc_if_token1] = ACTIONS(2616), + [aux_sym_preproc_if_token2] = ACTIONS(2616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2616), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2616), + [sym_preproc_directive] = ACTIONS(2616), + [anon_sym_DASH] = ACTIONS(2618), + [anon_sym_PLUS] = ACTIONS(2618), + [anon_sym___extension__] = ACTIONS(2616), + [anon_sym_typedef] = ACTIONS(2616), + [anon_sym_extern] = ACTIONS(2616), + [anon_sym___attribute__] = ACTIONS(2616), + [anon_sym___attribute] = ACTIONS(2616), + [anon_sym_noreturn] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(2618), + [anon_sym___declspec] = ACTIONS(2616), + [anon_sym___cdecl] = ACTIONS(2616), + [anon_sym___clrcall] = ACTIONS(2616), + [anon_sym___stdcall] = ACTIONS(2616), + [anon_sym___fastcall] = ACTIONS(2616), + [anon_sym___thiscall] = ACTIONS(2616), + [anon_sym___vectorcall] = ACTIONS(2616), + [anon_sym_signed] = ACTIONS(2616), + [anon_sym_unsigned] = ACTIONS(2616), + [anon_sym_long] = ACTIONS(2616), + [anon_sym_short] = ACTIONS(2616), + [anon_sym_static] = ACTIONS(2616), + [anon_sym_auto] = ACTIONS(2616), + [anon_sym_register] = ACTIONS(2616), + [anon_sym_inline] = ACTIONS(2616), + [anon_sym___inline] = ACTIONS(2616), + [anon_sym___inline__] = ACTIONS(2616), + [anon_sym___forceinline] = ACTIONS(2616), + [anon_sym_thread_local] = ACTIONS(2616), + [anon_sym___thread] = ACTIONS(2616), + [anon_sym_CG_EXTERN] = ACTIONS(2616), + [anon_sym_CG_INLINE] = ACTIONS(2616), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2616), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2616), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2616), + [anon_sym_IBOutlet] = ACTIONS(2616), + [anon_sym_IBInspectable] = ACTIONS(2616), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2616), + [anon_sym_NS_INLINE] = ACTIONS(2616), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2616), + [anon_sym_OBJC_EXPORT] = ACTIONS(2616), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2616), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2616), + [anon_sym_const] = ACTIONS(2616), + [anon_sym_constexpr] = ACTIONS(2616), + [anon_sym_volatile] = ACTIONS(2616), + [anon_sym_restrict] = ACTIONS(2616), + [anon_sym___restrict__] = ACTIONS(2616), + [anon_sym__Atomic] = ACTIONS(2616), + [anon_sym__Noreturn] = ACTIONS(2616), + [anon_sym__Nonnull] = ACTIONS(2616), + [anon_sym_nullable] = ACTIONS(2616), + [anon_sym__Complex] = ACTIONS(2616), + [anon_sym__Nullable] = ACTIONS(2616), + [anon_sym__Nullable_result] = ACTIONS(2616), + [anon_sym__Null_unspecified] = ACTIONS(2616), + [anon_sym___autoreleasing] = ACTIONS(2616), + [anon_sym___block] = ACTIONS(2616), + [anon_sym___bridge] = ACTIONS(2616), + [anon_sym___bridge_retained] = ACTIONS(2616), + [anon_sym___bridge_transfer] = ACTIONS(2616), + [anon_sym___complex] = ACTIONS(2616), + [anon_sym___const] = ACTIONS(2616), + [anon_sym___imag] = ACTIONS(2616), + [anon_sym___kindof] = ACTIONS(2616), + [anon_sym___nonnull] = ACTIONS(2616), + [anon_sym___nullable] = ACTIONS(2616), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2616), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2616), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2616), + [anon_sym___real] = ACTIONS(2616), + [anon_sym___strong] = ACTIONS(2616), + [anon_sym___unsafe_unretained] = ACTIONS(2616), + [anon_sym___unused] = ACTIONS(2616), + [anon_sym___weak] = ACTIONS(2616), + [anon_sym_alignas] = ACTIONS(2616), + [anon_sym__Alignas] = ACTIONS(2616), + [sym_primitive_type] = ACTIONS(2616), + [anon_sym_enum] = ACTIONS(2616), + [anon_sym_struct] = ACTIONS(2616), + [anon_sym_union] = ACTIONS(2616), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2616), + [anon_sym___typeof] = ACTIONS(2616), + [anon_sym_typeof] = ACTIONS(2616), + [aux_sym_preproc_undef_token1] = ACTIONS(2616), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2616), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2616), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2616), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2616), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2616), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2616), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2616), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2616), + [anon_sym_NS_AVAILABLE] = ACTIONS(2616), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2616), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_API_AVAILABLE] = ACTIONS(2616), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_API_DEPRECATED] = ACTIONS(2616), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2616), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2616), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2616), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2616), + [anon_sym___deprecated_msg] = ACTIONS(2616), + [anon_sym___deprecated_enum_msg] = ACTIONS(2616), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2616), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2616), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2616), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2616), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2616), + [anon_sym_ATsynthesize] = ACTIONS(2618), + [anon_sym_ATdynamic] = ACTIONS(2618), + [anon_sym_ATproperty] = ACTIONS(2618), + [anon_sym_BOOL] = ACTIONS(2616), + [anon_sym_IMP] = ACTIONS(2616), + [anon_sym_SEL] = ACTIONS(2616), + [anon_sym_Class] = ACTIONS(2616), + [anon_sym_id] = ACTIONS(2616), + }, + [2264] = { + [sym_identifier] = ACTIONS(5497), + [aux_sym_preproc_def_token1] = ACTIONS(5497), + [aux_sym_preproc_if_token1] = ACTIONS(5497), + [aux_sym_preproc_if_token2] = ACTIONS(5497), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5497), + [aux_sym_preproc_else_token1] = ACTIONS(5497), + [aux_sym_preproc_elif_token1] = ACTIONS(5497), + [sym_preproc_directive] = ACTIONS(5497), + [anon_sym_DASH] = ACTIONS(5499), + [anon_sym_PLUS] = ACTIONS(5499), + [anon_sym___extension__] = ACTIONS(5497), + [anon_sym_typedef] = ACTIONS(5497), + [anon_sym_extern] = ACTIONS(5497), + [anon_sym___attribute__] = ACTIONS(5497), + [anon_sym___attribute] = ACTIONS(5497), + [anon_sym_noreturn] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(5499), + [anon_sym___declspec] = ACTIONS(5497), + [anon_sym___cdecl] = ACTIONS(5497), + [anon_sym___clrcall] = ACTIONS(5497), + [anon_sym___stdcall] = ACTIONS(5497), + [anon_sym___fastcall] = ACTIONS(5497), + [anon_sym___thiscall] = ACTIONS(5497), + [anon_sym___vectorcall] = ACTIONS(5497), + [anon_sym_signed] = ACTIONS(5497), + [anon_sym_unsigned] = ACTIONS(5497), + [anon_sym_long] = ACTIONS(5497), + [anon_sym_short] = ACTIONS(5497), + [anon_sym_static] = ACTIONS(5497), + [anon_sym_auto] = ACTIONS(5497), + [anon_sym_register] = ACTIONS(5497), + [anon_sym_inline] = ACTIONS(5497), + [anon_sym___inline] = ACTIONS(5497), + [anon_sym___inline__] = ACTIONS(5497), + [anon_sym___forceinline] = ACTIONS(5497), + [anon_sym_thread_local] = ACTIONS(5497), + [anon_sym___thread] = ACTIONS(5497), + [anon_sym_CG_EXTERN] = ACTIONS(5497), + [anon_sym_CG_INLINE] = ACTIONS(5497), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5497), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5497), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5497), + [anon_sym_IBOutlet] = ACTIONS(5497), + [anon_sym_IBInspectable] = ACTIONS(5497), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5497), + [anon_sym_NS_INLINE] = ACTIONS(5497), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5497), + [anon_sym_OBJC_EXPORT] = ACTIONS(5497), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5497), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5497), + [anon_sym_const] = ACTIONS(5497), + [anon_sym_constexpr] = ACTIONS(5497), + [anon_sym_volatile] = ACTIONS(5497), + [anon_sym_restrict] = ACTIONS(5497), + [anon_sym___restrict__] = ACTIONS(5497), + [anon_sym__Atomic] = ACTIONS(5497), + [anon_sym__Noreturn] = ACTIONS(5497), + [anon_sym__Nonnull] = ACTIONS(5497), + [anon_sym_nullable] = ACTIONS(5497), + [anon_sym__Complex] = ACTIONS(5497), + [anon_sym__Nullable] = ACTIONS(5497), + [anon_sym__Nullable_result] = ACTIONS(5497), + [anon_sym__Null_unspecified] = ACTIONS(5497), + [anon_sym___autoreleasing] = ACTIONS(5497), + [anon_sym___block] = ACTIONS(5497), + [anon_sym___bridge] = ACTIONS(5497), + [anon_sym___bridge_retained] = ACTIONS(5497), + [anon_sym___bridge_transfer] = ACTIONS(5497), + [anon_sym___complex] = ACTIONS(5497), + [anon_sym___const] = ACTIONS(5497), + [anon_sym___imag] = ACTIONS(5497), + [anon_sym___kindof] = ACTIONS(5497), + [anon_sym___nonnull] = ACTIONS(5497), + [anon_sym___nullable] = ACTIONS(5497), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5497), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5497), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5497), + [anon_sym___real] = ACTIONS(5497), + [anon_sym___strong] = ACTIONS(5497), + [anon_sym___unsafe_unretained] = ACTIONS(5497), + [anon_sym___unused] = ACTIONS(5497), + [anon_sym___weak] = ACTIONS(5497), + [anon_sym_alignas] = ACTIONS(5497), + [anon_sym__Alignas] = ACTIONS(5497), + [sym_primitive_type] = ACTIONS(5497), + [anon_sym_enum] = ACTIONS(5497), + [anon_sym_struct] = ACTIONS(5497), + [anon_sym_union] = ACTIONS(5497), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5497), + [anon_sym___typeof] = ACTIONS(5497), + [anon_sym_typeof] = ACTIONS(5497), + [aux_sym_preproc_undef_token1] = ACTIONS(5497), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5497), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5497), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5497), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5497), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5497), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5497), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5497), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5497), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5497), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5497), + [anon_sym_NS_AVAILABLE] = ACTIONS(5497), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5497), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5497), + [anon_sym_API_AVAILABLE] = ACTIONS(5497), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5497), + [anon_sym_API_DEPRECATED] = ACTIONS(5497), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5497), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5497), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5497), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5497), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5497), + [anon_sym___deprecated_msg] = ACTIONS(5497), + [anon_sym___deprecated_enum_msg] = ACTIONS(5497), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5497), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5497), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5497), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5497), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5497), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5497), + [anon_sym_ATproperty] = ACTIONS(5499), + [anon_sym_BOOL] = ACTIONS(5497), + [anon_sym_IMP] = ACTIONS(5497), + [anon_sym_SEL] = ACTIONS(5497), + [anon_sym_Class] = ACTIONS(5497), + [anon_sym_id] = ACTIONS(5497), + }, + [2265] = { + [sym_identifier] = ACTIONS(5310), + [aux_sym_preproc_def_token1] = ACTIONS(5310), + [aux_sym_preproc_if_token1] = ACTIONS(5310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5310), + [sym_preproc_directive] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5312), + [anon_sym_PLUS] = ACTIONS(5312), + [anon_sym_SEMI] = ACTIONS(5501), + [anon_sym___extension__] = ACTIONS(5310), + [anon_sym_typedef] = ACTIONS(5310), + [anon_sym_extern] = ACTIONS(5310), + [anon_sym___attribute__] = ACTIONS(5310), + [anon_sym___attribute] = ACTIONS(5310), + [anon_sym_noreturn] = ACTIONS(5310), + [anon_sym_LBRACK] = ACTIONS(5312), + [anon_sym___declspec] = ACTIONS(5310), + [anon_sym___cdecl] = ACTIONS(5310), + [anon_sym___clrcall] = ACTIONS(5310), + [anon_sym___stdcall] = ACTIONS(5310), + [anon_sym___fastcall] = ACTIONS(5310), + [anon_sym___thiscall] = ACTIONS(5310), + [anon_sym___vectorcall] = ACTIONS(5310), + [anon_sym_signed] = ACTIONS(5310), + [anon_sym_unsigned] = ACTIONS(5310), + [anon_sym_long] = ACTIONS(5310), + [anon_sym_short] = ACTIONS(5310), + [anon_sym_static] = ACTIONS(5310), + [anon_sym_auto] = ACTIONS(5310), + [anon_sym_register] = ACTIONS(5310), + [anon_sym_inline] = ACTIONS(5310), + [anon_sym___inline] = ACTIONS(5310), + [anon_sym___inline__] = ACTIONS(5310), + [anon_sym___forceinline] = ACTIONS(5310), + [anon_sym_thread_local] = ACTIONS(5310), + [anon_sym___thread] = ACTIONS(5310), + [anon_sym_CG_EXTERN] = ACTIONS(5310), + [anon_sym_CG_INLINE] = ACTIONS(5310), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5310), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5310), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5310), + [anon_sym_IBOutlet] = ACTIONS(5310), + [anon_sym_IBInspectable] = ACTIONS(5310), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5310), + [anon_sym_NS_INLINE] = ACTIONS(5310), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5310), + [anon_sym_OBJC_EXPORT] = ACTIONS(5310), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5310), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5310), + [anon_sym_const] = ACTIONS(5310), + [anon_sym_constexpr] = ACTIONS(5310), + [anon_sym_volatile] = ACTIONS(5310), + [anon_sym_restrict] = ACTIONS(5310), + [anon_sym___restrict__] = ACTIONS(5310), + [anon_sym__Atomic] = ACTIONS(5310), + [anon_sym__Noreturn] = ACTIONS(5310), + [anon_sym__Nonnull] = ACTIONS(5310), + [anon_sym_nullable] = ACTIONS(5310), + [anon_sym__Complex] = ACTIONS(5310), + [anon_sym__Nullable] = ACTIONS(5310), + [anon_sym__Nullable_result] = ACTIONS(5310), + [anon_sym__Null_unspecified] = ACTIONS(5310), + [anon_sym___autoreleasing] = ACTIONS(5310), + [anon_sym___block] = ACTIONS(5310), + [anon_sym___bridge] = ACTIONS(5310), + [anon_sym___bridge_retained] = ACTIONS(5310), + [anon_sym___bridge_transfer] = ACTIONS(5310), + [anon_sym___complex] = ACTIONS(5310), + [anon_sym___const] = ACTIONS(5310), + [anon_sym___imag] = ACTIONS(5310), + [anon_sym___kindof] = ACTIONS(5310), + [anon_sym___nonnull] = ACTIONS(5310), + [anon_sym___nullable] = ACTIONS(5310), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5310), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5310), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5310), + [anon_sym___real] = ACTIONS(5310), + [anon_sym___strong] = ACTIONS(5310), + [anon_sym___unsafe_unretained] = ACTIONS(5310), + [anon_sym___unused] = ACTIONS(5310), + [anon_sym___weak] = ACTIONS(5310), + [anon_sym_alignas] = ACTIONS(5310), + [anon_sym__Alignas] = ACTIONS(5310), + [sym_primitive_type] = ACTIONS(5310), + [anon_sym_enum] = ACTIONS(5310), + [anon_sym_struct] = ACTIONS(5310), + [anon_sym_union] = ACTIONS(5310), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5310), + [anon_sym___typeof] = ACTIONS(5310), + [anon_sym_typeof] = ACTIONS(5310), + [aux_sym_preproc_undef_token1] = ACTIONS(5310), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5310), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5310), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5310), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5310), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5310), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5310), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5310), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5310), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5310), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5310), + [anon_sym_NS_AVAILABLE] = ACTIONS(5310), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5310), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5310), + [anon_sym_API_AVAILABLE] = ACTIONS(5310), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5310), + [anon_sym_API_DEPRECATED] = ACTIONS(5310), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5310), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5310), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5310), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5310), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5310), + [anon_sym___deprecated_msg] = ACTIONS(5310), + [anon_sym___deprecated_enum_msg] = ACTIONS(5310), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5310), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5310), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5310), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5310), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5310), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5310), + [anon_sym_ATend] = ACTIONS(5312), + [anon_sym_ATsynthesize] = ACTIONS(5312), + [anon_sym_ATdynamic] = ACTIONS(5312), + [anon_sym_BOOL] = ACTIONS(5310), + [anon_sym_IMP] = ACTIONS(5310), + [anon_sym_SEL] = ACTIONS(5310), + [anon_sym_Class] = ACTIONS(5310), + [anon_sym_id] = ACTIONS(5310), + }, + [2266] = { + [sym_identifier] = ACTIONS(5409), + [aux_sym_preproc_def_token1] = ACTIONS(5409), + [aux_sym_preproc_if_token1] = ACTIONS(5409), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5409), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5409), + [sym_preproc_directive] = ACTIONS(5409), + [anon_sym_DASH] = ACTIONS(5411), + [anon_sym_PLUS] = ACTIONS(5411), + [anon_sym_SEMI] = ACTIONS(5503), + [anon_sym___extension__] = ACTIONS(5409), + [anon_sym_typedef] = ACTIONS(5409), + [anon_sym_extern] = ACTIONS(5409), + [anon_sym___attribute__] = ACTIONS(5409), + [anon_sym___attribute] = ACTIONS(5409), + [anon_sym_noreturn] = ACTIONS(5409), + [anon_sym_LBRACK] = ACTIONS(5411), + [anon_sym___declspec] = ACTIONS(5409), + [anon_sym___cdecl] = ACTIONS(5409), + [anon_sym___clrcall] = ACTIONS(5409), + [anon_sym___stdcall] = ACTIONS(5409), + [anon_sym___fastcall] = ACTIONS(5409), + [anon_sym___thiscall] = ACTIONS(5409), + [anon_sym___vectorcall] = ACTIONS(5409), + [anon_sym_signed] = ACTIONS(5409), + [anon_sym_unsigned] = ACTIONS(5409), + [anon_sym_long] = ACTIONS(5409), + [anon_sym_short] = ACTIONS(5409), + [anon_sym_static] = ACTIONS(5409), + [anon_sym_auto] = ACTIONS(5409), + [anon_sym_register] = ACTIONS(5409), + [anon_sym_inline] = ACTIONS(5409), + [anon_sym___inline] = ACTIONS(5409), + [anon_sym___inline__] = ACTIONS(5409), + [anon_sym___forceinline] = ACTIONS(5409), + [anon_sym_thread_local] = ACTIONS(5409), + [anon_sym___thread] = ACTIONS(5409), + [anon_sym_CG_EXTERN] = ACTIONS(5409), + [anon_sym_CG_INLINE] = ACTIONS(5409), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5409), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5409), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5409), + [anon_sym_IBOutlet] = ACTIONS(5409), + [anon_sym_IBInspectable] = ACTIONS(5409), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5409), + [anon_sym_NS_INLINE] = ACTIONS(5409), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5409), + [anon_sym_OBJC_EXPORT] = ACTIONS(5409), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5409), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5409), + [anon_sym_const] = ACTIONS(5409), + [anon_sym_constexpr] = ACTIONS(5409), + [anon_sym_volatile] = ACTIONS(5409), + [anon_sym_restrict] = ACTIONS(5409), + [anon_sym___restrict__] = ACTIONS(5409), + [anon_sym__Atomic] = ACTIONS(5409), + [anon_sym__Noreturn] = ACTIONS(5409), + [anon_sym__Nonnull] = ACTIONS(5409), + [anon_sym_nullable] = ACTIONS(5409), + [anon_sym__Complex] = ACTIONS(5409), + [anon_sym__Nullable] = ACTIONS(5409), + [anon_sym__Nullable_result] = ACTIONS(5409), + [anon_sym__Null_unspecified] = ACTIONS(5409), + [anon_sym___autoreleasing] = ACTIONS(5409), + [anon_sym___block] = ACTIONS(5409), + [anon_sym___bridge] = ACTIONS(5409), + [anon_sym___bridge_retained] = ACTIONS(5409), + [anon_sym___bridge_transfer] = ACTIONS(5409), + [anon_sym___complex] = ACTIONS(5409), + [anon_sym___const] = ACTIONS(5409), + [anon_sym___imag] = ACTIONS(5409), + [anon_sym___kindof] = ACTIONS(5409), + [anon_sym___nonnull] = ACTIONS(5409), + [anon_sym___nullable] = ACTIONS(5409), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5409), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5409), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5409), + [anon_sym___real] = ACTIONS(5409), + [anon_sym___strong] = ACTIONS(5409), + [anon_sym___unsafe_unretained] = ACTIONS(5409), + [anon_sym___unused] = ACTIONS(5409), + [anon_sym___weak] = ACTIONS(5409), + [anon_sym_alignas] = ACTIONS(5409), + [anon_sym__Alignas] = ACTIONS(5409), + [sym_primitive_type] = ACTIONS(5409), + [anon_sym_enum] = ACTIONS(5409), + [anon_sym_struct] = ACTIONS(5409), + [anon_sym_union] = ACTIONS(5409), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5409), + [anon_sym___typeof] = ACTIONS(5409), + [anon_sym_typeof] = ACTIONS(5409), + [aux_sym_preproc_undef_token1] = ACTIONS(5409), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5409), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5409), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5409), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5409), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5409), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5409), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5409), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5409), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5409), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5409), + [anon_sym_NS_AVAILABLE] = ACTIONS(5409), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5409), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5409), + [anon_sym_API_AVAILABLE] = ACTIONS(5409), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5409), + [anon_sym_API_DEPRECATED] = ACTIONS(5409), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5409), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5409), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5409), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5409), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5409), + [anon_sym___deprecated_msg] = ACTIONS(5409), + [anon_sym___deprecated_enum_msg] = ACTIONS(5409), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5409), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5409), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5409), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5409), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5409), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5409), + [anon_sym_ATend] = ACTIONS(5411), + [anon_sym_ATsynthesize] = ACTIONS(5411), + [anon_sym_ATdynamic] = ACTIONS(5411), + [anon_sym_BOOL] = ACTIONS(5409), + [anon_sym_IMP] = ACTIONS(5409), + [anon_sym_SEL] = ACTIONS(5409), + [anon_sym_Class] = ACTIONS(5409), + [anon_sym_id] = ACTIONS(5409), + }, + [2267] = { + [sym_identifier] = ACTIONS(5505), + [aux_sym_preproc_def_token1] = ACTIONS(5505), + [aux_sym_preproc_if_token1] = ACTIONS(5505), + [aux_sym_preproc_if_token2] = ACTIONS(5505), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5505), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5505), + [aux_sym_preproc_else_token1] = ACTIONS(5505), + [aux_sym_preproc_elif_token1] = ACTIONS(5505), + [sym_preproc_directive] = ACTIONS(5505), + [anon_sym_DASH] = ACTIONS(5507), + [anon_sym_PLUS] = ACTIONS(5507), + [anon_sym___extension__] = ACTIONS(5505), + [anon_sym_typedef] = ACTIONS(5505), + [anon_sym_extern] = ACTIONS(5505), + [anon_sym___attribute__] = ACTIONS(5505), + [anon_sym___attribute] = ACTIONS(5505), + [anon_sym_noreturn] = ACTIONS(5505), + [anon_sym_LBRACK] = ACTIONS(5507), + [anon_sym___declspec] = ACTIONS(5505), + [anon_sym___cdecl] = ACTIONS(5505), + [anon_sym___clrcall] = ACTIONS(5505), + [anon_sym___stdcall] = ACTIONS(5505), + [anon_sym___fastcall] = ACTIONS(5505), + [anon_sym___thiscall] = ACTIONS(5505), + [anon_sym___vectorcall] = ACTIONS(5505), + [anon_sym_signed] = ACTIONS(5505), + [anon_sym_unsigned] = ACTIONS(5505), + [anon_sym_long] = ACTIONS(5505), + [anon_sym_short] = ACTIONS(5505), + [anon_sym_static] = ACTIONS(5505), + [anon_sym_auto] = ACTIONS(5505), + [anon_sym_register] = ACTIONS(5505), + [anon_sym_inline] = ACTIONS(5505), + [anon_sym___inline] = ACTIONS(5505), + [anon_sym___inline__] = ACTIONS(5505), + [anon_sym___forceinline] = ACTIONS(5505), + [anon_sym_thread_local] = ACTIONS(5505), + [anon_sym___thread] = ACTIONS(5505), + [anon_sym_CG_EXTERN] = ACTIONS(5505), + [anon_sym_CG_INLINE] = ACTIONS(5505), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5505), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5505), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5505), + [anon_sym_IBOutlet] = ACTIONS(5505), + [anon_sym_IBInspectable] = ACTIONS(5505), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5505), + [anon_sym_NS_INLINE] = ACTIONS(5505), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5505), + [anon_sym_OBJC_EXPORT] = ACTIONS(5505), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5505), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5505), + [anon_sym_const] = ACTIONS(5505), + [anon_sym_constexpr] = ACTIONS(5505), + [anon_sym_volatile] = ACTIONS(5505), + [anon_sym_restrict] = ACTIONS(5505), + [anon_sym___restrict__] = ACTIONS(5505), + [anon_sym__Atomic] = ACTIONS(5505), + [anon_sym__Noreturn] = ACTIONS(5505), + [anon_sym__Nonnull] = ACTIONS(5505), + [anon_sym_nullable] = ACTIONS(5505), + [anon_sym__Complex] = ACTIONS(5505), + [anon_sym__Nullable] = ACTIONS(5505), + [anon_sym__Nullable_result] = ACTIONS(5505), + [anon_sym__Null_unspecified] = ACTIONS(5505), + [anon_sym___autoreleasing] = ACTIONS(5505), + [anon_sym___block] = ACTIONS(5505), + [anon_sym___bridge] = ACTIONS(5505), + [anon_sym___bridge_retained] = ACTIONS(5505), + [anon_sym___bridge_transfer] = ACTIONS(5505), + [anon_sym___complex] = ACTIONS(5505), + [anon_sym___const] = ACTIONS(5505), + [anon_sym___imag] = ACTIONS(5505), + [anon_sym___kindof] = ACTIONS(5505), + [anon_sym___nonnull] = ACTIONS(5505), + [anon_sym___nullable] = ACTIONS(5505), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5505), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5505), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5505), + [anon_sym___real] = ACTIONS(5505), + [anon_sym___strong] = ACTIONS(5505), + [anon_sym___unsafe_unretained] = ACTIONS(5505), + [anon_sym___unused] = ACTIONS(5505), + [anon_sym___weak] = ACTIONS(5505), + [anon_sym_alignas] = ACTIONS(5505), + [anon_sym__Alignas] = ACTIONS(5505), + [sym_primitive_type] = ACTIONS(5505), + [anon_sym_enum] = ACTIONS(5505), + [anon_sym_struct] = ACTIONS(5505), + [anon_sym_union] = ACTIONS(5505), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5505), + [anon_sym___typeof] = ACTIONS(5505), + [anon_sym_typeof] = ACTIONS(5505), + [aux_sym_preproc_undef_token1] = ACTIONS(5505), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5505), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5505), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5505), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5505), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5505), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5505), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5505), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5505), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5505), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5505), + [anon_sym_NS_AVAILABLE] = ACTIONS(5505), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5505), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5505), + [anon_sym_API_AVAILABLE] = ACTIONS(5505), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5505), + [anon_sym_API_DEPRECATED] = ACTIONS(5505), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5505), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5505), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5505), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5505), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5505), + [anon_sym___deprecated_msg] = ACTIONS(5505), + [anon_sym___deprecated_enum_msg] = ACTIONS(5505), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5505), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5505), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5505), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5505), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5505), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5505), + [anon_sym_ATproperty] = ACTIONS(5507), + [anon_sym_BOOL] = ACTIONS(5505), + [anon_sym_IMP] = ACTIONS(5505), + [anon_sym_SEL] = ACTIONS(5505), + [anon_sym_Class] = ACTIONS(5505), + [anon_sym_id] = ACTIONS(5505), + }, + [2268] = { + [sym_identifier] = ACTIONS(5415), + [aux_sym_preproc_def_token1] = ACTIONS(5415), + [aux_sym_preproc_if_token1] = ACTIONS(5415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5415), + [sym_preproc_directive] = ACTIONS(5415), + [anon_sym_DASH] = ACTIONS(5417), + [anon_sym_PLUS] = ACTIONS(5417), + [anon_sym_SEMI] = ACTIONS(5509), + [anon_sym___extension__] = ACTIONS(5415), + [anon_sym_typedef] = ACTIONS(5415), + [anon_sym_extern] = ACTIONS(5415), + [anon_sym___attribute__] = ACTIONS(5415), + [anon_sym___attribute] = ACTIONS(5415), + [anon_sym_noreturn] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(5417), + [anon_sym___declspec] = ACTIONS(5415), + [anon_sym___cdecl] = ACTIONS(5415), + [anon_sym___clrcall] = ACTIONS(5415), + [anon_sym___stdcall] = ACTIONS(5415), + [anon_sym___fastcall] = ACTIONS(5415), + [anon_sym___thiscall] = ACTIONS(5415), + [anon_sym___vectorcall] = ACTIONS(5415), + [anon_sym_signed] = ACTIONS(5415), + [anon_sym_unsigned] = ACTIONS(5415), + [anon_sym_long] = ACTIONS(5415), + [anon_sym_short] = ACTIONS(5415), + [anon_sym_static] = ACTIONS(5415), + [anon_sym_auto] = ACTIONS(5415), + [anon_sym_register] = ACTIONS(5415), + [anon_sym_inline] = ACTIONS(5415), + [anon_sym___inline] = ACTIONS(5415), + [anon_sym___inline__] = ACTIONS(5415), + [anon_sym___forceinline] = ACTIONS(5415), + [anon_sym_thread_local] = ACTIONS(5415), + [anon_sym___thread] = ACTIONS(5415), + [anon_sym_CG_EXTERN] = ACTIONS(5415), + [anon_sym_CG_INLINE] = ACTIONS(5415), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5415), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5415), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5415), + [anon_sym_IBOutlet] = ACTIONS(5415), + [anon_sym_IBInspectable] = ACTIONS(5415), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5415), + [anon_sym_NS_INLINE] = ACTIONS(5415), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5415), + [anon_sym_OBJC_EXPORT] = ACTIONS(5415), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5415), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5415), + [anon_sym_const] = ACTIONS(5415), + [anon_sym_constexpr] = ACTIONS(5415), + [anon_sym_volatile] = ACTIONS(5415), + [anon_sym_restrict] = ACTIONS(5415), + [anon_sym___restrict__] = ACTIONS(5415), + [anon_sym__Atomic] = ACTIONS(5415), + [anon_sym__Noreturn] = ACTIONS(5415), + [anon_sym__Nonnull] = ACTIONS(5415), + [anon_sym_nullable] = ACTIONS(5415), + [anon_sym__Complex] = ACTIONS(5415), + [anon_sym__Nullable] = ACTIONS(5415), + [anon_sym__Nullable_result] = ACTIONS(5415), + [anon_sym__Null_unspecified] = ACTIONS(5415), + [anon_sym___autoreleasing] = ACTIONS(5415), + [anon_sym___block] = ACTIONS(5415), + [anon_sym___bridge] = ACTIONS(5415), + [anon_sym___bridge_retained] = ACTIONS(5415), + [anon_sym___bridge_transfer] = ACTIONS(5415), + [anon_sym___complex] = ACTIONS(5415), + [anon_sym___const] = ACTIONS(5415), + [anon_sym___imag] = ACTIONS(5415), + [anon_sym___kindof] = ACTIONS(5415), + [anon_sym___nonnull] = ACTIONS(5415), + [anon_sym___nullable] = ACTIONS(5415), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5415), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5415), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5415), + [anon_sym___real] = ACTIONS(5415), + [anon_sym___strong] = ACTIONS(5415), + [anon_sym___unsafe_unretained] = ACTIONS(5415), + [anon_sym___unused] = ACTIONS(5415), + [anon_sym___weak] = ACTIONS(5415), + [anon_sym_alignas] = ACTIONS(5415), + [anon_sym__Alignas] = ACTIONS(5415), + [sym_primitive_type] = ACTIONS(5415), + [anon_sym_enum] = ACTIONS(5415), + [anon_sym_struct] = ACTIONS(5415), + [anon_sym_union] = ACTIONS(5415), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5415), + [anon_sym___typeof] = ACTIONS(5415), + [anon_sym_typeof] = ACTIONS(5415), + [aux_sym_preproc_undef_token1] = ACTIONS(5415), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5415), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5415), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5415), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5415), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5415), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5415), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5415), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5415), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5415), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5415), + [anon_sym_NS_AVAILABLE] = ACTIONS(5415), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5415), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5415), + [anon_sym_API_AVAILABLE] = ACTIONS(5415), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5415), + [anon_sym_API_DEPRECATED] = ACTIONS(5415), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5415), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5415), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5415), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5415), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5415), + [anon_sym___deprecated_msg] = ACTIONS(5415), + [anon_sym___deprecated_enum_msg] = ACTIONS(5415), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5415), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5415), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5415), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5415), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5415), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5415), + [anon_sym_ATend] = ACTIONS(5417), + [anon_sym_ATsynthesize] = ACTIONS(5417), + [anon_sym_ATdynamic] = ACTIONS(5417), + [anon_sym_BOOL] = ACTIONS(5415), + [anon_sym_IMP] = ACTIONS(5415), + [anon_sym_SEL] = ACTIONS(5415), + [anon_sym_Class] = ACTIONS(5415), + [anon_sym_id] = ACTIONS(5415), + }, + [2269] = { + [aux_sym_method_declaration_repeat2] = STATE(2269), + [sym_identifier] = ACTIONS(5297), + [aux_sym_preproc_def_token1] = ACTIONS(5297), + [aux_sym_preproc_if_token1] = ACTIONS(5297), + [aux_sym_preproc_if_token2] = ACTIONS(5297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5297), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5297), + [sym_preproc_directive] = ACTIONS(5297), + [anon_sym_DASH] = ACTIONS(5299), + [anon_sym_PLUS] = ACTIONS(5299), + [anon_sym_SEMI] = ACTIONS(5511), + [anon_sym___extension__] = ACTIONS(5297), + [anon_sym_typedef] = ACTIONS(5297), + [anon_sym_extern] = ACTIONS(5297), + [anon_sym___attribute__] = ACTIONS(5297), + [anon_sym___attribute] = ACTIONS(5297), + [anon_sym_noreturn] = ACTIONS(5297), + [anon_sym_LBRACK] = ACTIONS(5299), + [anon_sym___declspec] = ACTIONS(5297), + [anon_sym___cdecl] = ACTIONS(5297), + [anon_sym___clrcall] = ACTIONS(5297), + [anon_sym___stdcall] = ACTIONS(5297), + [anon_sym___fastcall] = ACTIONS(5297), + [anon_sym___thiscall] = ACTIONS(5297), + [anon_sym___vectorcall] = ACTIONS(5297), + [anon_sym_signed] = ACTIONS(5297), + [anon_sym_unsigned] = ACTIONS(5297), + [anon_sym_long] = ACTIONS(5297), + [anon_sym_short] = ACTIONS(5297), + [anon_sym_static] = ACTIONS(5297), + [anon_sym_auto] = ACTIONS(5297), + [anon_sym_register] = ACTIONS(5297), + [anon_sym_inline] = ACTIONS(5297), + [anon_sym___inline] = ACTIONS(5297), + [anon_sym___inline__] = ACTIONS(5297), + [anon_sym___forceinline] = ACTIONS(5297), + [anon_sym_thread_local] = ACTIONS(5297), + [anon_sym___thread] = ACTIONS(5297), + [anon_sym_CG_EXTERN] = ACTIONS(5297), + [anon_sym_CG_INLINE] = ACTIONS(5297), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5297), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5297), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5297), + [anon_sym_IBOutlet] = ACTIONS(5297), + [anon_sym_IBInspectable] = ACTIONS(5297), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5297), + [anon_sym_NS_INLINE] = ACTIONS(5297), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5297), + [anon_sym_OBJC_EXPORT] = ACTIONS(5297), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5297), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5297), + [anon_sym_const] = ACTIONS(5297), + [anon_sym_constexpr] = ACTIONS(5297), + [anon_sym_volatile] = ACTIONS(5297), + [anon_sym_restrict] = ACTIONS(5297), + [anon_sym___restrict__] = ACTIONS(5297), + [anon_sym__Atomic] = ACTIONS(5297), + [anon_sym__Noreturn] = ACTIONS(5297), + [anon_sym__Nonnull] = ACTIONS(5297), + [anon_sym_nullable] = ACTIONS(5297), + [anon_sym__Complex] = ACTIONS(5297), + [anon_sym__Nullable] = ACTIONS(5297), + [anon_sym__Nullable_result] = ACTIONS(5297), + [anon_sym__Null_unspecified] = ACTIONS(5297), + [anon_sym___autoreleasing] = ACTIONS(5297), + [anon_sym___block] = ACTIONS(5297), + [anon_sym___bridge] = ACTIONS(5297), + [anon_sym___bridge_retained] = ACTIONS(5297), + [anon_sym___bridge_transfer] = ACTIONS(5297), + [anon_sym___complex] = ACTIONS(5297), + [anon_sym___const] = ACTIONS(5297), + [anon_sym___imag] = ACTIONS(5297), + [anon_sym___kindof] = ACTIONS(5297), + [anon_sym___nonnull] = ACTIONS(5297), + [anon_sym___nullable] = ACTIONS(5297), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5297), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5297), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5297), + [anon_sym___real] = ACTIONS(5297), + [anon_sym___strong] = ACTIONS(5297), + [anon_sym___unsafe_unretained] = ACTIONS(5297), + [anon_sym___unused] = ACTIONS(5297), + [anon_sym___weak] = ACTIONS(5297), + [anon_sym_alignas] = ACTIONS(5297), + [anon_sym__Alignas] = ACTIONS(5297), + [sym_primitive_type] = ACTIONS(5297), + [anon_sym_enum] = ACTIONS(5297), + [anon_sym_struct] = ACTIONS(5297), + [anon_sym_union] = ACTIONS(5297), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5297), + [anon_sym___typeof] = ACTIONS(5297), + [anon_sym_typeof] = ACTIONS(5297), + [aux_sym_preproc_undef_token1] = ACTIONS(5297), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5297), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5297), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5297), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5297), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5297), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5297), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5297), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5297), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5297), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5297), + [anon_sym_NS_AVAILABLE] = ACTIONS(5297), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5297), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5297), + [anon_sym_API_AVAILABLE] = ACTIONS(5297), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5297), + [anon_sym_API_DEPRECATED] = ACTIONS(5297), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5297), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5297), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5297), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5297), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5297), + [anon_sym___deprecated_msg] = ACTIONS(5297), + [anon_sym___deprecated_enum_msg] = ACTIONS(5297), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5297), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5297), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5297), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5297), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5297), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5297), + [anon_sym_ATproperty] = ACTIONS(5299), + [anon_sym_BOOL] = ACTIONS(5297), + [anon_sym_IMP] = ACTIONS(5297), + [anon_sym_SEL] = ACTIONS(5297), + [anon_sym_Class] = ACTIONS(5297), + [anon_sym_id] = ACTIONS(5297), + }, + [2270] = { + [sym_identifier] = ACTIONS(5514), + [aux_sym_preproc_def_token1] = ACTIONS(5514), + [aux_sym_preproc_if_token1] = ACTIONS(5514), + [aux_sym_preproc_if_token2] = ACTIONS(5514), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5514), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5514), + [aux_sym_preproc_else_token1] = ACTIONS(5514), + [aux_sym_preproc_elif_token1] = ACTIONS(5514), + [sym_preproc_directive] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym___extension__] = ACTIONS(5514), + [anon_sym_typedef] = ACTIONS(5514), + [anon_sym_extern] = ACTIONS(5514), + [anon_sym___attribute__] = ACTIONS(5514), + [anon_sym___attribute] = ACTIONS(5514), + [anon_sym_noreturn] = ACTIONS(5514), + [anon_sym_LBRACK] = ACTIONS(5516), + [anon_sym___declspec] = ACTIONS(5514), + [anon_sym___cdecl] = ACTIONS(5514), + [anon_sym___clrcall] = ACTIONS(5514), + [anon_sym___stdcall] = ACTIONS(5514), + [anon_sym___fastcall] = ACTIONS(5514), + [anon_sym___thiscall] = ACTIONS(5514), + [anon_sym___vectorcall] = ACTIONS(5514), + [anon_sym_signed] = ACTIONS(5514), + [anon_sym_unsigned] = ACTIONS(5514), + [anon_sym_long] = ACTIONS(5514), + [anon_sym_short] = ACTIONS(5514), + [anon_sym_static] = ACTIONS(5514), + [anon_sym_auto] = ACTIONS(5514), + [anon_sym_register] = ACTIONS(5514), + [anon_sym_inline] = ACTIONS(5514), + [anon_sym___inline] = ACTIONS(5514), + [anon_sym___inline__] = ACTIONS(5514), + [anon_sym___forceinline] = ACTIONS(5514), + [anon_sym_thread_local] = ACTIONS(5514), + [anon_sym___thread] = ACTIONS(5514), + [anon_sym_CG_EXTERN] = ACTIONS(5514), + [anon_sym_CG_INLINE] = ACTIONS(5514), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5514), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5514), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5514), + [anon_sym_IBOutlet] = ACTIONS(5514), + [anon_sym_IBInspectable] = ACTIONS(5514), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5514), + [anon_sym_NS_INLINE] = ACTIONS(5514), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5514), + [anon_sym_OBJC_EXPORT] = ACTIONS(5514), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5514), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5514), + [anon_sym_const] = ACTIONS(5514), + [anon_sym_constexpr] = ACTIONS(5514), + [anon_sym_volatile] = ACTIONS(5514), + [anon_sym_restrict] = ACTIONS(5514), + [anon_sym___restrict__] = ACTIONS(5514), + [anon_sym__Atomic] = ACTIONS(5514), + [anon_sym__Noreturn] = ACTIONS(5514), + [anon_sym__Nonnull] = ACTIONS(5514), + [anon_sym_nullable] = ACTIONS(5514), + [anon_sym__Complex] = ACTIONS(5514), + [anon_sym__Nullable] = ACTIONS(5514), + [anon_sym__Nullable_result] = ACTIONS(5514), + [anon_sym__Null_unspecified] = ACTIONS(5514), + [anon_sym___autoreleasing] = ACTIONS(5514), + [anon_sym___block] = ACTIONS(5514), + [anon_sym___bridge] = ACTIONS(5514), + [anon_sym___bridge_retained] = ACTIONS(5514), + [anon_sym___bridge_transfer] = ACTIONS(5514), + [anon_sym___complex] = ACTIONS(5514), + [anon_sym___const] = ACTIONS(5514), + [anon_sym___imag] = ACTIONS(5514), + [anon_sym___kindof] = ACTIONS(5514), + [anon_sym___nonnull] = ACTIONS(5514), + [anon_sym___nullable] = ACTIONS(5514), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5514), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5514), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5514), + [anon_sym___real] = ACTIONS(5514), + [anon_sym___strong] = ACTIONS(5514), + [anon_sym___unsafe_unretained] = ACTIONS(5514), + [anon_sym___unused] = ACTIONS(5514), + [anon_sym___weak] = ACTIONS(5514), + [anon_sym_alignas] = ACTIONS(5514), + [anon_sym__Alignas] = ACTIONS(5514), + [sym_primitive_type] = ACTIONS(5514), + [anon_sym_enum] = ACTIONS(5514), + [anon_sym_struct] = ACTIONS(5514), + [anon_sym_union] = ACTIONS(5514), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5514), + [anon_sym___typeof] = ACTIONS(5514), + [anon_sym_typeof] = ACTIONS(5514), + [aux_sym_preproc_undef_token1] = ACTIONS(5514), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5514), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5514), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5514), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5514), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5514), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5514), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5514), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5514), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5514), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5514), + [anon_sym_NS_AVAILABLE] = ACTIONS(5514), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5514), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5514), + [anon_sym_API_AVAILABLE] = ACTIONS(5514), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5514), + [anon_sym_API_DEPRECATED] = ACTIONS(5514), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5514), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5514), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5514), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5514), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5514), + [anon_sym___deprecated_msg] = ACTIONS(5514), + [anon_sym___deprecated_enum_msg] = ACTIONS(5514), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5514), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5514), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5514), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5514), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5514), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5514), + [anon_sym_ATproperty] = ACTIONS(5516), + [anon_sym_BOOL] = ACTIONS(5514), + [anon_sym_IMP] = ACTIONS(5514), + [anon_sym_SEL] = ACTIONS(5514), + [anon_sym_Class] = ACTIONS(5514), + [anon_sym_id] = ACTIONS(5514), + }, + [2271] = { + [sym_identifier] = ACTIONS(5425), + [aux_sym_preproc_def_token1] = ACTIONS(5425), + [aux_sym_preproc_if_token1] = ACTIONS(5425), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5425), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5425), + [sym_preproc_directive] = ACTIONS(5425), + [anon_sym_DASH] = ACTIONS(5427), + [anon_sym_PLUS] = ACTIONS(5427), + [anon_sym_SEMI] = ACTIONS(5518), + [anon_sym___extension__] = ACTIONS(5425), + [anon_sym_typedef] = ACTIONS(5425), + [anon_sym_extern] = ACTIONS(5425), + [anon_sym___attribute__] = ACTIONS(5425), + [anon_sym___attribute] = ACTIONS(5425), + [anon_sym_noreturn] = ACTIONS(5425), + [anon_sym_LBRACK] = ACTIONS(5427), + [anon_sym___declspec] = ACTIONS(5425), + [anon_sym___cdecl] = ACTIONS(5425), + [anon_sym___clrcall] = ACTIONS(5425), + [anon_sym___stdcall] = ACTIONS(5425), + [anon_sym___fastcall] = ACTIONS(5425), + [anon_sym___thiscall] = ACTIONS(5425), + [anon_sym___vectorcall] = ACTIONS(5425), + [anon_sym_signed] = ACTIONS(5425), + [anon_sym_unsigned] = ACTIONS(5425), + [anon_sym_long] = ACTIONS(5425), + [anon_sym_short] = ACTIONS(5425), + [anon_sym_static] = ACTIONS(5425), + [anon_sym_auto] = ACTIONS(5425), + [anon_sym_register] = ACTIONS(5425), + [anon_sym_inline] = ACTIONS(5425), + [anon_sym___inline] = ACTIONS(5425), + [anon_sym___inline__] = ACTIONS(5425), + [anon_sym___forceinline] = ACTIONS(5425), + [anon_sym_thread_local] = ACTIONS(5425), + [anon_sym___thread] = ACTIONS(5425), + [anon_sym_CG_EXTERN] = ACTIONS(5425), + [anon_sym_CG_INLINE] = ACTIONS(5425), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5425), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5425), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5425), + [anon_sym_IBOutlet] = ACTIONS(5425), + [anon_sym_IBInspectable] = ACTIONS(5425), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5425), + [anon_sym_NS_INLINE] = ACTIONS(5425), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5425), + [anon_sym_OBJC_EXPORT] = ACTIONS(5425), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5425), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5425), + [anon_sym_const] = ACTIONS(5425), + [anon_sym_constexpr] = ACTIONS(5425), + [anon_sym_volatile] = ACTIONS(5425), + [anon_sym_restrict] = ACTIONS(5425), + [anon_sym___restrict__] = ACTIONS(5425), + [anon_sym__Atomic] = ACTIONS(5425), + [anon_sym__Noreturn] = ACTIONS(5425), + [anon_sym__Nonnull] = ACTIONS(5425), + [anon_sym_nullable] = ACTIONS(5425), + [anon_sym__Complex] = ACTIONS(5425), + [anon_sym__Nullable] = ACTIONS(5425), + [anon_sym__Nullable_result] = ACTIONS(5425), + [anon_sym__Null_unspecified] = ACTIONS(5425), + [anon_sym___autoreleasing] = ACTIONS(5425), + [anon_sym___block] = ACTIONS(5425), + [anon_sym___bridge] = ACTIONS(5425), + [anon_sym___bridge_retained] = ACTIONS(5425), + [anon_sym___bridge_transfer] = ACTIONS(5425), + [anon_sym___complex] = ACTIONS(5425), + [anon_sym___const] = ACTIONS(5425), + [anon_sym___imag] = ACTIONS(5425), + [anon_sym___kindof] = ACTIONS(5425), + [anon_sym___nonnull] = ACTIONS(5425), + [anon_sym___nullable] = ACTIONS(5425), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5425), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5425), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5425), + [anon_sym___real] = ACTIONS(5425), + [anon_sym___strong] = ACTIONS(5425), + [anon_sym___unsafe_unretained] = ACTIONS(5425), + [anon_sym___unused] = ACTIONS(5425), + [anon_sym___weak] = ACTIONS(5425), + [anon_sym_alignas] = ACTIONS(5425), + [anon_sym__Alignas] = ACTIONS(5425), + [sym_primitive_type] = ACTIONS(5425), + [anon_sym_enum] = ACTIONS(5425), + [anon_sym_struct] = ACTIONS(5425), + [anon_sym_union] = ACTIONS(5425), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5425), + [anon_sym___typeof] = ACTIONS(5425), + [anon_sym_typeof] = ACTIONS(5425), + [aux_sym_preproc_undef_token1] = ACTIONS(5425), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5425), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5425), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5425), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5425), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5425), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5425), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5425), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5425), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5425), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5425), + [anon_sym_NS_AVAILABLE] = ACTIONS(5425), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5425), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5425), + [anon_sym_API_AVAILABLE] = ACTIONS(5425), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5425), + [anon_sym_API_DEPRECATED] = ACTIONS(5425), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5425), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5425), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5425), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5425), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5425), + [anon_sym___deprecated_msg] = ACTIONS(5425), + [anon_sym___deprecated_enum_msg] = ACTIONS(5425), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5425), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5425), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5425), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5425), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5425), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5425), + [anon_sym_ATend] = ACTIONS(5427), + [anon_sym_ATsynthesize] = ACTIONS(5427), + [anon_sym_ATdynamic] = ACTIONS(5427), + [anon_sym_BOOL] = ACTIONS(5425), + [anon_sym_IMP] = ACTIONS(5425), + [anon_sym_SEL] = ACTIONS(5425), + [anon_sym_Class] = ACTIONS(5425), + [anon_sym_id] = ACTIONS(5425), + }, + [2272] = { + [sym_identifier] = ACTIONS(5367), + [aux_sym_preproc_def_token1] = ACTIONS(5367), + [aux_sym_preproc_if_token1] = ACTIONS(5367), + [aux_sym_preproc_if_token2] = ACTIONS(5367), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5367), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5367), + [sym_preproc_directive] = ACTIONS(5367), + [anon_sym_DASH] = ACTIONS(5369), + [anon_sym_PLUS] = ACTIONS(5369), + [anon_sym_SEMI] = ACTIONS(5520), + [anon_sym___extension__] = ACTIONS(5367), + [anon_sym_typedef] = ACTIONS(5367), + [anon_sym_extern] = ACTIONS(5367), + [anon_sym___attribute__] = ACTIONS(5367), + [anon_sym___attribute] = ACTIONS(5367), + [anon_sym_noreturn] = ACTIONS(5367), + [anon_sym_LBRACK] = ACTIONS(5369), + [anon_sym___declspec] = ACTIONS(5367), + [anon_sym___cdecl] = ACTIONS(5367), + [anon_sym___clrcall] = ACTIONS(5367), + [anon_sym___stdcall] = ACTIONS(5367), + [anon_sym___fastcall] = ACTIONS(5367), + [anon_sym___thiscall] = ACTIONS(5367), + [anon_sym___vectorcall] = ACTIONS(5367), + [anon_sym_signed] = ACTIONS(5367), + [anon_sym_unsigned] = ACTIONS(5367), + [anon_sym_long] = ACTIONS(5367), + [anon_sym_short] = ACTIONS(5367), + [anon_sym_static] = ACTIONS(5367), + [anon_sym_auto] = ACTIONS(5367), + [anon_sym_register] = ACTIONS(5367), + [anon_sym_inline] = ACTIONS(5367), + [anon_sym___inline] = ACTIONS(5367), + [anon_sym___inline__] = ACTIONS(5367), + [anon_sym___forceinline] = ACTIONS(5367), + [anon_sym_thread_local] = ACTIONS(5367), + [anon_sym___thread] = ACTIONS(5367), + [anon_sym_CG_EXTERN] = ACTIONS(5367), + [anon_sym_CG_INLINE] = ACTIONS(5367), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5367), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5367), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5367), + [anon_sym_IBOutlet] = ACTIONS(5367), + [anon_sym_IBInspectable] = ACTIONS(5367), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5367), + [anon_sym_NS_INLINE] = ACTIONS(5367), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5367), + [anon_sym_OBJC_EXPORT] = ACTIONS(5367), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5367), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5367), + [anon_sym_const] = ACTIONS(5367), + [anon_sym_constexpr] = ACTIONS(5367), + [anon_sym_volatile] = ACTIONS(5367), + [anon_sym_restrict] = ACTIONS(5367), + [anon_sym___restrict__] = ACTIONS(5367), + [anon_sym__Atomic] = ACTIONS(5367), + [anon_sym__Noreturn] = ACTIONS(5367), + [anon_sym__Nonnull] = ACTIONS(5367), + [anon_sym_nullable] = ACTIONS(5367), + [anon_sym__Complex] = ACTIONS(5367), + [anon_sym__Nullable] = ACTIONS(5367), + [anon_sym__Nullable_result] = ACTIONS(5367), + [anon_sym__Null_unspecified] = ACTIONS(5367), + [anon_sym___autoreleasing] = ACTIONS(5367), + [anon_sym___block] = ACTIONS(5367), + [anon_sym___bridge] = ACTIONS(5367), + [anon_sym___bridge_retained] = ACTIONS(5367), + [anon_sym___bridge_transfer] = ACTIONS(5367), + [anon_sym___complex] = ACTIONS(5367), + [anon_sym___const] = ACTIONS(5367), + [anon_sym___imag] = ACTIONS(5367), + [anon_sym___kindof] = ACTIONS(5367), + [anon_sym___nonnull] = ACTIONS(5367), + [anon_sym___nullable] = ACTIONS(5367), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5367), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5367), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5367), + [anon_sym___real] = ACTIONS(5367), + [anon_sym___strong] = ACTIONS(5367), + [anon_sym___unsafe_unretained] = ACTIONS(5367), + [anon_sym___unused] = ACTIONS(5367), + [anon_sym___weak] = ACTIONS(5367), + [anon_sym_alignas] = ACTIONS(5367), + [anon_sym__Alignas] = ACTIONS(5367), + [sym_primitive_type] = ACTIONS(5367), + [anon_sym_enum] = ACTIONS(5367), + [anon_sym_struct] = ACTIONS(5367), + [anon_sym_union] = ACTIONS(5367), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5367), + [anon_sym___typeof] = ACTIONS(5367), + [anon_sym_typeof] = ACTIONS(5367), + [aux_sym_preproc_undef_token1] = ACTIONS(5367), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5367), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5367), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5367), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5367), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5367), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5367), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5367), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5367), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5367), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5367), + [anon_sym_NS_AVAILABLE] = ACTIONS(5367), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5367), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5367), + [anon_sym_API_AVAILABLE] = ACTIONS(5367), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5367), + [anon_sym_API_DEPRECATED] = ACTIONS(5367), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5367), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5367), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5367), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5367), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5367), + [anon_sym___deprecated_msg] = ACTIONS(5367), + [anon_sym___deprecated_enum_msg] = ACTIONS(5367), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5367), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5367), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5367), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5367), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5367), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5367), + [anon_sym_ATsynthesize] = ACTIONS(5369), + [anon_sym_ATdynamic] = ACTIONS(5369), + [anon_sym_BOOL] = ACTIONS(5367), + [anon_sym_IMP] = ACTIONS(5367), + [anon_sym_SEL] = ACTIONS(5367), + [anon_sym_Class] = ACTIONS(5367), + [anon_sym_id] = ACTIONS(5367), + }, + [2273] = { + [sym_identifier] = ACTIONS(5522), + [aux_sym_preproc_def_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5522), + [sym_preproc_directive] = ACTIONS(5522), + [anon_sym_DASH] = ACTIONS(5524), + [anon_sym_PLUS] = ACTIONS(5524), + [anon_sym___extension__] = ACTIONS(5522), + [anon_sym_typedef] = ACTIONS(5522), + [anon_sym_extern] = ACTIONS(5522), + [anon_sym___attribute__] = ACTIONS(5522), + [anon_sym___attribute] = ACTIONS(5522), + [anon_sym_noreturn] = ACTIONS(5522), + [anon_sym_LBRACK] = ACTIONS(5524), + [anon_sym___declspec] = ACTIONS(5522), + [anon_sym___cdecl] = ACTIONS(5522), + [anon_sym___clrcall] = ACTIONS(5522), + [anon_sym___stdcall] = ACTIONS(5522), + [anon_sym___fastcall] = ACTIONS(5522), + [anon_sym___thiscall] = ACTIONS(5522), + [anon_sym___vectorcall] = ACTIONS(5522), + [anon_sym_LBRACE] = ACTIONS(5524), + [anon_sym_signed] = ACTIONS(5522), + [anon_sym_unsigned] = ACTIONS(5522), + [anon_sym_long] = ACTIONS(5522), + [anon_sym_short] = ACTIONS(5522), + [anon_sym_static] = ACTIONS(5522), + [anon_sym_auto] = ACTIONS(5522), + [anon_sym_register] = ACTIONS(5522), + [anon_sym_inline] = ACTIONS(5522), + [anon_sym___inline] = ACTIONS(5522), + [anon_sym___inline__] = ACTIONS(5522), + [anon_sym___forceinline] = ACTIONS(5522), + [anon_sym_thread_local] = ACTIONS(5522), + [anon_sym___thread] = ACTIONS(5522), + [anon_sym_CG_EXTERN] = ACTIONS(5522), + [anon_sym_CG_INLINE] = ACTIONS(5522), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5522), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5522), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5522), + [anon_sym_IBOutlet] = ACTIONS(5522), + [anon_sym_IBInspectable] = ACTIONS(5522), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5522), + [anon_sym_NS_INLINE] = ACTIONS(5522), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5522), + [anon_sym_OBJC_EXPORT] = ACTIONS(5522), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5522), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5522), + [anon_sym_const] = ACTIONS(5522), + [anon_sym_constexpr] = ACTIONS(5522), + [anon_sym_volatile] = ACTIONS(5522), + [anon_sym_restrict] = ACTIONS(5522), + [anon_sym___restrict__] = ACTIONS(5522), + [anon_sym__Atomic] = ACTIONS(5522), + [anon_sym__Noreturn] = ACTIONS(5522), + [anon_sym__Nonnull] = ACTIONS(5522), + [anon_sym_nullable] = ACTIONS(5522), + [anon_sym__Complex] = ACTIONS(5522), + [anon_sym__Nullable] = ACTIONS(5522), + [anon_sym__Nullable_result] = ACTIONS(5522), + [anon_sym__Null_unspecified] = ACTIONS(5522), + [anon_sym___autoreleasing] = ACTIONS(5522), + [anon_sym___block] = ACTIONS(5522), + [anon_sym___bridge] = ACTIONS(5522), + [anon_sym___bridge_retained] = ACTIONS(5522), + [anon_sym___bridge_transfer] = ACTIONS(5522), + [anon_sym___complex] = ACTIONS(5522), + [anon_sym___const] = ACTIONS(5522), + [anon_sym___imag] = ACTIONS(5522), + [anon_sym___kindof] = ACTIONS(5522), + [anon_sym___nonnull] = ACTIONS(5522), + [anon_sym___nullable] = ACTIONS(5522), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5522), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5522), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5522), + [anon_sym___real] = ACTIONS(5522), + [anon_sym___strong] = ACTIONS(5522), + [anon_sym___unsafe_unretained] = ACTIONS(5522), + [anon_sym___unused] = ACTIONS(5522), + [anon_sym___weak] = ACTIONS(5522), + [anon_sym_alignas] = ACTIONS(5522), + [anon_sym__Alignas] = ACTIONS(5522), + [sym_primitive_type] = ACTIONS(5522), + [anon_sym_enum] = ACTIONS(5522), + [anon_sym_struct] = ACTIONS(5522), + [anon_sym_union] = ACTIONS(5522), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5522), + [anon_sym___typeof] = ACTIONS(5522), + [anon_sym_typeof] = ACTIONS(5522), + [aux_sym_preproc_undef_token1] = ACTIONS(5522), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5522), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5522), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5522), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5522), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5522), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5522), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5522), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5522), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5522), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5522), + [anon_sym_NS_AVAILABLE] = ACTIONS(5522), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5522), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5522), + [anon_sym_API_AVAILABLE] = ACTIONS(5522), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5522), + [anon_sym_API_DEPRECATED] = ACTIONS(5522), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5522), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5522), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5522), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5522), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5522), + [anon_sym___deprecated_msg] = ACTIONS(5522), + [anon_sym___deprecated_enum_msg] = ACTIONS(5522), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5522), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5522), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5522), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5522), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5522), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5522), + [anon_sym_ATend] = ACTIONS(5524), + [anon_sym_ATsynthesize] = ACTIONS(5524), + [anon_sym_ATdynamic] = ACTIONS(5524), + [anon_sym_BOOL] = ACTIONS(5522), + [anon_sym_IMP] = ACTIONS(5522), + [anon_sym_SEL] = ACTIONS(5522), + [anon_sym_Class] = ACTIONS(5522), + [anon_sym_id] = ACTIONS(5522), + }, + [2274] = { + [sym_identifier] = ACTIONS(2412), + [aux_sym_preproc_def_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token2] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2412), + [sym_preproc_directive] = ACTIONS(2412), + [anon_sym_DASH] = ACTIONS(2414), + [anon_sym_PLUS] = ACTIONS(2414), + [anon_sym___extension__] = ACTIONS(2412), + [anon_sym_typedef] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym___attribute__] = ACTIONS(2412), + [anon_sym___attribute] = ACTIONS(2412), + [anon_sym_noreturn] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym___declspec] = ACTIONS(2412), + [anon_sym___cdecl] = ACTIONS(2412), + [anon_sym___clrcall] = ACTIONS(2412), + [anon_sym___stdcall] = ACTIONS(2412), + [anon_sym___fastcall] = ACTIONS(2412), + [anon_sym___thiscall] = ACTIONS(2412), + [anon_sym___vectorcall] = ACTIONS(2412), + [anon_sym_signed] = ACTIONS(2412), + [anon_sym_unsigned] = ACTIONS(2412), + [anon_sym_long] = ACTIONS(2412), + [anon_sym_short] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_auto] = ACTIONS(2412), + [anon_sym_register] = ACTIONS(2412), + [anon_sym_inline] = ACTIONS(2412), + [anon_sym___inline] = ACTIONS(2412), + [anon_sym___inline__] = ACTIONS(2412), + [anon_sym___forceinline] = ACTIONS(2412), + [anon_sym_thread_local] = ACTIONS(2412), + [anon_sym___thread] = ACTIONS(2412), + [anon_sym_CG_EXTERN] = ACTIONS(2412), + [anon_sym_CG_INLINE] = ACTIONS(2412), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2412), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2412), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2412), + [anon_sym_IBOutlet] = ACTIONS(2412), + [anon_sym_IBInspectable] = ACTIONS(2412), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2412), + [anon_sym_NS_INLINE] = ACTIONS(2412), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2412), + [anon_sym_OBJC_EXPORT] = ACTIONS(2412), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2412), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_constexpr] = ACTIONS(2412), + [anon_sym_volatile] = ACTIONS(2412), + [anon_sym_restrict] = ACTIONS(2412), + [anon_sym___restrict__] = ACTIONS(2412), + [anon_sym__Atomic] = ACTIONS(2412), + [anon_sym__Noreturn] = ACTIONS(2412), + [anon_sym__Nonnull] = ACTIONS(2412), + [anon_sym_nullable] = ACTIONS(2412), + [anon_sym__Complex] = ACTIONS(2412), + [anon_sym__Nullable] = ACTIONS(2412), + [anon_sym__Nullable_result] = ACTIONS(2412), + [anon_sym__Null_unspecified] = ACTIONS(2412), + [anon_sym___autoreleasing] = ACTIONS(2412), + [anon_sym___block] = ACTIONS(2412), + [anon_sym___bridge] = ACTIONS(2412), + [anon_sym___bridge_retained] = ACTIONS(2412), + [anon_sym___bridge_transfer] = ACTIONS(2412), + [anon_sym___complex] = ACTIONS(2412), + [anon_sym___const] = ACTIONS(2412), + [anon_sym___imag] = ACTIONS(2412), + [anon_sym___kindof] = ACTIONS(2412), + [anon_sym___nonnull] = ACTIONS(2412), + [anon_sym___nullable] = ACTIONS(2412), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2412), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2412), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2412), + [anon_sym___real] = ACTIONS(2412), + [anon_sym___strong] = ACTIONS(2412), + [anon_sym___unsafe_unretained] = ACTIONS(2412), + [anon_sym___unused] = ACTIONS(2412), + [anon_sym___weak] = ACTIONS(2412), + [anon_sym_alignas] = ACTIONS(2412), + [anon_sym__Alignas] = ACTIONS(2412), + [sym_primitive_type] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [anon_sym_struct] = ACTIONS(2412), + [anon_sym_union] = ACTIONS(2412), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2412), + [anon_sym___typeof] = ACTIONS(2412), + [anon_sym_typeof] = ACTIONS(2412), + [aux_sym_preproc_undef_token1] = ACTIONS(2412), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2412), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2412), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2412), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2412), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2412), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2412), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2412), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2412), + [anon_sym_NS_AVAILABLE] = ACTIONS(2412), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2412), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_API_AVAILABLE] = ACTIONS(2412), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_API_DEPRECATED] = ACTIONS(2412), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2412), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2412), + [anon_sym___deprecated_msg] = ACTIONS(2412), + [anon_sym___deprecated_enum_msg] = ACTIONS(2412), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2412), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2412), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2412), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2412), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2412), + [anon_sym_ATsynthesize] = ACTIONS(2414), + [anon_sym_ATdynamic] = ACTIONS(2414), + [anon_sym_ATproperty] = ACTIONS(2414), + [anon_sym_BOOL] = ACTIONS(2412), + [anon_sym_IMP] = ACTIONS(2412), + [anon_sym_SEL] = ACTIONS(2412), + [anon_sym_Class] = ACTIONS(2412), + [anon_sym_id] = ACTIONS(2412), + }, + [2275] = { + [sym_identifier] = ACTIONS(5316), + [aux_sym_preproc_def_token1] = ACTIONS(5316), + [aux_sym_preproc_if_token1] = ACTIONS(5316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5316), + [sym_preproc_directive] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5318), + [anon_sym_PLUS] = ACTIONS(5318), + [anon_sym_SEMI] = ACTIONS(5526), + [anon_sym___extension__] = ACTIONS(5316), + [anon_sym_typedef] = ACTIONS(5316), + [anon_sym_extern] = ACTIONS(5316), + [anon_sym___attribute__] = ACTIONS(5316), + [anon_sym___attribute] = ACTIONS(5316), + [anon_sym_noreturn] = ACTIONS(5316), + [anon_sym_LBRACK] = ACTIONS(5318), + [anon_sym___declspec] = ACTIONS(5316), + [anon_sym___cdecl] = ACTIONS(5316), + [anon_sym___clrcall] = ACTIONS(5316), + [anon_sym___stdcall] = ACTIONS(5316), + [anon_sym___fastcall] = ACTIONS(5316), + [anon_sym___thiscall] = ACTIONS(5316), + [anon_sym___vectorcall] = ACTIONS(5316), + [anon_sym_signed] = ACTIONS(5316), + [anon_sym_unsigned] = ACTIONS(5316), + [anon_sym_long] = ACTIONS(5316), + [anon_sym_short] = ACTIONS(5316), + [anon_sym_static] = ACTIONS(5316), + [anon_sym_auto] = ACTIONS(5316), + [anon_sym_register] = ACTIONS(5316), + [anon_sym_inline] = ACTIONS(5316), + [anon_sym___inline] = ACTIONS(5316), + [anon_sym___inline__] = ACTIONS(5316), + [anon_sym___forceinline] = ACTIONS(5316), + [anon_sym_thread_local] = ACTIONS(5316), + [anon_sym___thread] = ACTIONS(5316), + [anon_sym_CG_EXTERN] = ACTIONS(5316), + [anon_sym_CG_INLINE] = ACTIONS(5316), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5316), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5316), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5316), + [anon_sym_IBOutlet] = ACTIONS(5316), + [anon_sym_IBInspectable] = ACTIONS(5316), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5316), + [anon_sym_NS_INLINE] = ACTIONS(5316), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5316), + [anon_sym_OBJC_EXPORT] = ACTIONS(5316), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5316), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5316), + [anon_sym_const] = ACTIONS(5316), + [anon_sym_constexpr] = ACTIONS(5316), + [anon_sym_volatile] = ACTIONS(5316), + [anon_sym_restrict] = ACTIONS(5316), + [anon_sym___restrict__] = ACTIONS(5316), + [anon_sym__Atomic] = ACTIONS(5316), + [anon_sym__Noreturn] = ACTIONS(5316), + [anon_sym__Nonnull] = ACTIONS(5316), + [anon_sym_nullable] = ACTIONS(5316), + [anon_sym__Complex] = ACTIONS(5316), + [anon_sym__Nullable] = ACTIONS(5316), + [anon_sym__Nullable_result] = ACTIONS(5316), + [anon_sym__Null_unspecified] = ACTIONS(5316), + [anon_sym___autoreleasing] = ACTIONS(5316), + [anon_sym___block] = ACTIONS(5316), + [anon_sym___bridge] = ACTIONS(5316), + [anon_sym___bridge_retained] = ACTIONS(5316), + [anon_sym___bridge_transfer] = ACTIONS(5316), + [anon_sym___complex] = ACTIONS(5316), + [anon_sym___const] = ACTIONS(5316), + [anon_sym___imag] = ACTIONS(5316), + [anon_sym___kindof] = ACTIONS(5316), + [anon_sym___nonnull] = ACTIONS(5316), + [anon_sym___nullable] = ACTIONS(5316), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5316), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5316), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5316), + [anon_sym___real] = ACTIONS(5316), + [anon_sym___strong] = ACTIONS(5316), + [anon_sym___unsafe_unretained] = ACTIONS(5316), + [anon_sym___unused] = ACTIONS(5316), + [anon_sym___weak] = ACTIONS(5316), + [anon_sym_alignas] = ACTIONS(5316), + [anon_sym__Alignas] = ACTIONS(5316), + [sym_primitive_type] = ACTIONS(5316), + [anon_sym_enum] = ACTIONS(5316), + [anon_sym_struct] = ACTIONS(5316), + [anon_sym_union] = ACTIONS(5316), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5316), + [anon_sym___typeof] = ACTIONS(5316), + [anon_sym_typeof] = ACTIONS(5316), + [aux_sym_preproc_undef_token1] = ACTIONS(5316), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5316), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5316), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5316), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5316), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5316), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5316), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5316), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5316), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5316), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5316), + [anon_sym_NS_AVAILABLE] = ACTIONS(5316), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5316), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5316), + [anon_sym_API_AVAILABLE] = ACTIONS(5316), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5316), + [anon_sym_API_DEPRECATED] = ACTIONS(5316), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5316), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5316), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5316), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5316), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5316), + [anon_sym___deprecated_msg] = ACTIONS(5316), + [anon_sym___deprecated_enum_msg] = ACTIONS(5316), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5316), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5316), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5316), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5316), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5316), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5316), + [anon_sym_ATend] = ACTIONS(5318), + [anon_sym_ATsynthesize] = ACTIONS(5318), + [anon_sym_ATdynamic] = ACTIONS(5318), + [anon_sym_BOOL] = ACTIONS(5316), + [anon_sym_IMP] = ACTIONS(5316), + [anon_sym_SEL] = ACTIONS(5316), + [anon_sym_Class] = ACTIONS(5316), + [anon_sym_id] = ACTIONS(5316), + }, + [2276] = { + [sym_identifier] = ACTIONS(5322), + [aux_sym_preproc_def_token1] = ACTIONS(5322), + [aux_sym_preproc_if_token1] = ACTIONS(5322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5322), + [sym_preproc_directive] = ACTIONS(5322), + [anon_sym_DASH] = ACTIONS(5324), + [anon_sym_PLUS] = ACTIONS(5324), + [anon_sym_SEMI] = ACTIONS(5528), + [anon_sym___extension__] = ACTIONS(5322), + [anon_sym_typedef] = ACTIONS(5322), + [anon_sym_extern] = ACTIONS(5322), + [anon_sym___attribute__] = ACTIONS(5322), + [anon_sym___attribute] = ACTIONS(5322), + [anon_sym_noreturn] = ACTIONS(5322), + [anon_sym_LBRACK] = ACTIONS(5324), + [anon_sym___declspec] = ACTIONS(5322), + [anon_sym___cdecl] = ACTIONS(5322), + [anon_sym___clrcall] = ACTIONS(5322), + [anon_sym___stdcall] = ACTIONS(5322), + [anon_sym___fastcall] = ACTIONS(5322), + [anon_sym___thiscall] = ACTIONS(5322), + [anon_sym___vectorcall] = ACTIONS(5322), + [anon_sym_signed] = ACTIONS(5322), + [anon_sym_unsigned] = ACTIONS(5322), + [anon_sym_long] = ACTIONS(5322), + [anon_sym_short] = ACTIONS(5322), + [anon_sym_static] = ACTIONS(5322), + [anon_sym_auto] = ACTIONS(5322), + [anon_sym_register] = ACTIONS(5322), + [anon_sym_inline] = ACTIONS(5322), + [anon_sym___inline] = ACTIONS(5322), + [anon_sym___inline__] = ACTIONS(5322), + [anon_sym___forceinline] = ACTIONS(5322), + [anon_sym_thread_local] = ACTIONS(5322), + [anon_sym___thread] = ACTIONS(5322), + [anon_sym_CG_EXTERN] = ACTIONS(5322), + [anon_sym_CG_INLINE] = ACTIONS(5322), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5322), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5322), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5322), + [anon_sym_IBOutlet] = ACTIONS(5322), + [anon_sym_IBInspectable] = ACTIONS(5322), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5322), + [anon_sym_NS_INLINE] = ACTIONS(5322), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5322), + [anon_sym_OBJC_EXPORT] = ACTIONS(5322), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5322), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5322), + [anon_sym_const] = ACTIONS(5322), + [anon_sym_constexpr] = ACTIONS(5322), + [anon_sym_volatile] = ACTIONS(5322), + [anon_sym_restrict] = ACTIONS(5322), + [anon_sym___restrict__] = ACTIONS(5322), + [anon_sym__Atomic] = ACTIONS(5322), + [anon_sym__Noreturn] = ACTIONS(5322), + [anon_sym__Nonnull] = ACTIONS(5322), + [anon_sym_nullable] = ACTIONS(5322), + [anon_sym__Complex] = ACTIONS(5322), + [anon_sym__Nullable] = ACTIONS(5322), + [anon_sym__Nullable_result] = ACTIONS(5322), + [anon_sym__Null_unspecified] = ACTIONS(5322), + [anon_sym___autoreleasing] = ACTIONS(5322), + [anon_sym___block] = ACTIONS(5322), + [anon_sym___bridge] = ACTIONS(5322), + [anon_sym___bridge_retained] = ACTIONS(5322), + [anon_sym___bridge_transfer] = ACTIONS(5322), + [anon_sym___complex] = ACTIONS(5322), + [anon_sym___const] = ACTIONS(5322), + [anon_sym___imag] = ACTIONS(5322), + [anon_sym___kindof] = ACTIONS(5322), + [anon_sym___nonnull] = ACTIONS(5322), + [anon_sym___nullable] = ACTIONS(5322), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5322), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5322), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5322), + [anon_sym___real] = ACTIONS(5322), + [anon_sym___strong] = ACTIONS(5322), + [anon_sym___unsafe_unretained] = ACTIONS(5322), + [anon_sym___unused] = ACTIONS(5322), + [anon_sym___weak] = ACTIONS(5322), + [anon_sym_alignas] = ACTIONS(5322), + [anon_sym__Alignas] = ACTIONS(5322), + [sym_primitive_type] = ACTIONS(5322), + [anon_sym_enum] = ACTIONS(5322), + [anon_sym_struct] = ACTIONS(5322), + [anon_sym_union] = ACTIONS(5322), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5322), + [anon_sym___typeof] = ACTIONS(5322), + [anon_sym_typeof] = ACTIONS(5322), + [aux_sym_preproc_undef_token1] = ACTIONS(5322), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5322), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5322), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5322), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5322), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5322), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5322), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5322), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5322), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5322), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5322), + [anon_sym_NS_AVAILABLE] = ACTIONS(5322), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5322), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5322), + [anon_sym_API_AVAILABLE] = ACTIONS(5322), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5322), + [anon_sym_API_DEPRECATED] = ACTIONS(5322), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5322), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5322), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5322), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5322), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5322), + [anon_sym___deprecated_msg] = ACTIONS(5322), + [anon_sym___deprecated_enum_msg] = ACTIONS(5322), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5322), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5322), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5322), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5322), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5322), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5322), + [anon_sym_ATend] = ACTIONS(5324), + [anon_sym_ATsynthesize] = ACTIONS(5324), + [anon_sym_ATdynamic] = ACTIONS(5324), + [anon_sym_BOOL] = ACTIONS(5322), + [anon_sym_IMP] = ACTIONS(5322), + [anon_sym_SEL] = ACTIONS(5322), + [anon_sym_Class] = ACTIONS(5322), + [anon_sym_id] = ACTIONS(5322), + }, + [2277] = { + [sym_identifier] = ACTIONS(5530), + [aux_sym_preproc_def_token1] = ACTIONS(5530), + [aux_sym_preproc_if_token1] = ACTIONS(5530), + [aux_sym_preproc_if_token2] = ACTIONS(5530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5530), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5530), + [aux_sym_preproc_else_token1] = ACTIONS(5530), + [aux_sym_preproc_elif_token1] = ACTIONS(5530), + [sym_preproc_directive] = ACTIONS(5530), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym___extension__] = ACTIONS(5530), + [anon_sym_typedef] = ACTIONS(5530), + [anon_sym_extern] = ACTIONS(5530), + [anon_sym___attribute__] = ACTIONS(5530), + [anon_sym___attribute] = ACTIONS(5530), + [anon_sym_noreturn] = ACTIONS(5530), + [anon_sym_LBRACK] = ACTIONS(5532), + [anon_sym___declspec] = ACTIONS(5530), + [anon_sym___cdecl] = ACTIONS(5530), + [anon_sym___clrcall] = ACTIONS(5530), + [anon_sym___stdcall] = ACTIONS(5530), + [anon_sym___fastcall] = ACTIONS(5530), + [anon_sym___thiscall] = ACTIONS(5530), + [anon_sym___vectorcall] = ACTIONS(5530), + [anon_sym_signed] = ACTIONS(5530), + [anon_sym_unsigned] = ACTIONS(5530), + [anon_sym_long] = ACTIONS(5530), + [anon_sym_short] = ACTIONS(5530), + [anon_sym_static] = ACTIONS(5530), + [anon_sym_auto] = ACTIONS(5530), + [anon_sym_register] = ACTIONS(5530), + [anon_sym_inline] = ACTIONS(5530), + [anon_sym___inline] = ACTIONS(5530), + [anon_sym___inline__] = ACTIONS(5530), + [anon_sym___forceinline] = ACTIONS(5530), + [anon_sym_thread_local] = ACTIONS(5530), + [anon_sym___thread] = ACTIONS(5530), + [anon_sym_CG_EXTERN] = ACTIONS(5530), + [anon_sym_CG_INLINE] = ACTIONS(5530), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5530), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5530), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5530), + [anon_sym_IBOutlet] = ACTIONS(5530), + [anon_sym_IBInspectable] = ACTIONS(5530), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5530), + [anon_sym_NS_INLINE] = ACTIONS(5530), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5530), + [anon_sym_OBJC_EXPORT] = ACTIONS(5530), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5530), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5530), + [anon_sym_const] = ACTIONS(5530), + [anon_sym_constexpr] = ACTIONS(5530), + [anon_sym_volatile] = ACTIONS(5530), + [anon_sym_restrict] = ACTIONS(5530), + [anon_sym___restrict__] = ACTIONS(5530), + [anon_sym__Atomic] = ACTIONS(5530), + [anon_sym__Noreturn] = ACTIONS(5530), + [anon_sym__Nonnull] = ACTIONS(5530), + [anon_sym_nullable] = ACTIONS(5530), + [anon_sym__Complex] = ACTIONS(5530), + [anon_sym__Nullable] = ACTIONS(5530), + [anon_sym__Nullable_result] = ACTIONS(5530), + [anon_sym__Null_unspecified] = ACTIONS(5530), + [anon_sym___autoreleasing] = ACTIONS(5530), + [anon_sym___block] = ACTIONS(5530), + [anon_sym___bridge] = ACTIONS(5530), + [anon_sym___bridge_retained] = ACTIONS(5530), + [anon_sym___bridge_transfer] = ACTIONS(5530), + [anon_sym___complex] = ACTIONS(5530), + [anon_sym___const] = ACTIONS(5530), + [anon_sym___imag] = ACTIONS(5530), + [anon_sym___kindof] = ACTIONS(5530), + [anon_sym___nonnull] = ACTIONS(5530), + [anon_sym___nullable] = ACTIONS(5530), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5530), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5530), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5530), + [anon_sym___real] = ACTIONS(5530), + [anon_sym___strong] = ACTIONS(5530), + [anon_sym___unsafe_unretained] = ACTIONS(5530), + [anon_sym___unused] = ACTIONS(5530), + [anon_sym___weak] = ACTIONS(5530), + [anon_sym_alignas] = ACTIONS(5530), + [anon_sym__Alignas] = ACTIONS(5530), + [sym_primitive_type] = ACTIONS(5530), + [anon_sym_enum] = ACTIONS(5530), + [anon_sym_struct] = ACTIONS(5530), + [anon_sym_union] = ACTIONS(5530), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5530), + [anon_sym___typeof] = ACTIONS(5530), + [anon_sym_typeof] = ACTIONS(5530), + [aux_sym_preproc_undef_token1] = ACTIONS(5530), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5530), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5530), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5530), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5530), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5530), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5530), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5530), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5530), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5530), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5530), + [anon_sym_NS_AVAILABLE] = ACTIONS(5530), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5530), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5530), + [anon_sym_API_AVAILABLE] = ACTIONS(5530), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5530), + [anon_sym_API_DEPRECATED] = ACTIONS(5530), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5530), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5530), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5530), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5530), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5530), + [anon_sym___deprecated_msg] = ACTIONS(5530), + [anon_sym___deprecated_enum_msg] = ACTIONS(5530), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5530), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5530), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5530), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5530), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5530), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5530), + [anon_sym_ATproperty] = ACTIONS(5532), + [anon_sym_BOOL] = ACTIONS(5530), + [anon_sym_IMP] = ACTIONS(5530), + [anon_sym_SEL] = ACTIONS(5530), + [anon_sym_Class] = ACTIONS(5530), + [anon_sym_id] = ACTIONS(5530), + }, + [2278] = { + [sym_identifier] = ACTIONS(5530), + [aux_sym_preproc_def_token1] = ACTIONS(5530), + [aux_sym_preproc_if_token1] = ACTIONS(5530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5530), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5530), + [sym_preproc_directive] = ACTIONS(5530), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym___extension__] = ACTIONS(5530), + [anon_sym_typedef] = ACTIONS(5530), + [anon_sym_extern] = ACTIONS(5530), + [anon_sym___attribute__] = ACTIONS(5530), + [anon_sym___attribute] = ACTIONS(5530), + [anon_sym_noreturn] = ACTIONS(5530), + [anon_sym_LBRACK] = ACTIONS(5532), + [anon_sym___declspec] = ACTIONS(5530), + [anon_sym___cdecl] = ACTIONS(5530), + [anon_sym___clrcall] = ACTIONS(5530), + [anon_sym___stdcall] = ACTIONS(5530), + [anon_sym___fastcall] = ACTIONS(5530), + [anon_sym___thiscall] = ACTIONS(5530), + [anon_sym___vectorcall] = ACTIONS(5530), + [anon_sym_signed] = ACTIONS(5530), + [anon_sym_unsigned] = ACTIONS(5530), + [anon_sym_long] = ACTIONS(5530), + [anon_sym_short] = ACTIONS(5530), + [anon_sym_static] = ACTIONS(5530), + [anon_sym_auto] = ACTIONS(5530), + [anon_sym_register] = ACTIONS(5530), + [anon_sym_inline] = ACTIONS(5530), + [anon_sym___inline] = ACTIONS(5530), + [anon_sym___inline__] = ACTIONS(5530), + [anon_sym___forceinline] = ACTIONS(5530), + [anon_sym_thread_local] = ACTIONS(5530), + [anon_sym___thread] = ACTIONS(5530), + [anon_sym_CG_EXTERN] = ACTIONS(5530), + [anon_sym_CG_INLINE] = ACTIONS(5530), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5530), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5530), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5530), + [anon_sym_IBOutlet] = ACTIONS(5530), + [anon_sym_IBInspectable] = ACTIONS(5530), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5530), + [anon_sym_NS_INLINE] = ACTIONS(5530), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5530), + [anon_sym_OBJC_EXPORT] = ACTIONS(5530), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5530), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5530), + [anon_sym_const] = ACTIONS(5530), + [anon_sym_constexpr] = ACTIONS(5530), + [anon_sym_volatile] = ACTIONS(5530), + [anon_sym_restrict] = ACTIONS(5530), + [anon_sym___restrict__] = ACTIONS(5530), + [anon_sym__Atomic] = ACTIONS(5530), + [anon_sym__Noreturn] = ACTIONS(5530), + [anon_sym__Nonnull] = ACTIONS(5530), + [anon_sym_nullable] = ACTIONS(5530), + [anon_sym__Complex] = ACTIONS(5530), + [anon_sym__Nullable] = ACTIONS(5530), + [anon_sym__Nullable_result] = ACTIONS(5530), + [anon_sym__Null_unspecified] = ACTIONS(5530), + [anon_sym___autoreleasing] = ACTIONS(5530), + [anon_sym___block] = ACTIONS(5530), + [anon_sym___bridge] = ACTIONS(5530), + [anon_sym___bridge_retained] = ACTIONS(5530), + [anon_sym___bridge_transfer] = ACTIONS(5530), + [anon_sym___complex] = ACTIONS(5530), + [anon_sym___const] = ACTIONS(5530), + [anon_sym___imag] = ACTIONS(5530), + [anon_sym___kindof] = ACTIONS(5530), + [anon_sym___nonnull] = ACTIONS(5530), + [anon_sym___nullable] = ACTIONS(5530), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5530), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5530), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5530), + [anon_sym___real] = ACTIONS(5530), + [anon_sym___strong] = ACTIONS(5530), + [anon_sym___unsafe_unretained] = ACTIONS(5530), + [anon_sym___unused] = ACTIONS(5530), + [anon_sym___weak] = ACTIONS(5530), + [anon_sym_alignas] = ACTIONS(5530), + [anon_sym__Alignas] = ACTIONS(5530), + [sym_primitive_type] = ACTIONS(5530), + [anon_sym_enum] = ACTIONS(5530), + [anon_sym_struct] = ACTIONS(5530), + [anon_sym_union] = ACTIONS(5530), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5530), + [anon_sym___typeof] = ACTIONS(5530), + [anon_sym_typeof] = ACTIONS(5530), + [aux_sym_preproc_undef_token1] = ACTIONS(5530), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5530), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5530), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5530), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5530), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5530), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5530), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5530), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5530), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5530), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5530), + [anon_sym_NS_AVAILABLE] = ACTIONS(5530), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5530), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5530), + [anon_sym_API_AVAILABLE] = ACTIONS(5530), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5530), + [anon_sym_API_DEPRECATED] = ACTIONS(5530), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5530), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5530), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5530), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5530), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5530), + [anon_sym___deprecated_msg] = ACTIONS(5530), + [anon_sym___deprecated_enum_msg] = ACTIONS(5530), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5530), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5530), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5530), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5530), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5530), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5530), + [anon_sym_ATend] = ACTIONS(5532), + [anon_sym_AToptional] = ACTIONS(5532), + [anon_sym_ATrequired] = ACTIONS(5532), + [anon_sym_ATproperty] = ACTIONS(5532), + [anon_sym_BOOL] = ACTIONS(5530), + [anon_sym_IMP] = ACTIONS(5530), + [anon_sym_SEL] = ACTIONS(5530), + [anon_sym_Class] = ACTIONS(5530), + [anon_sym_id] = ACTIONS(5530), + }, + [2279] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token2] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_PLUS] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATsynthesize] = ACTIONS(2438), + [anon_sym_ATdynamic] = ACTIONS(2438), + [anon_sym_ATproperty] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [2280] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token2] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_PLUS] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATsynthesize] = ACTIONS(2438), + [anon_sym_ATdynamic] = ACTIONS(2438), + [anon_sym_ATproperty] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [2281] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token2] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_PLUS] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_auto] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_CG_EXTERN] = ACTIONS(2436), + [anon_sym_CG_INLINE] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2436), + [anon_sym_IBOutlet] = ACTIONS(2436), + [anon_sym_IBInspectable] = ACTIONS(2436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2436), + [anon_sym_NS_INLINE] = ACTIONS(2436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2436), + [anon_sym_OBJC_EXPORT] = ACTIONS(2436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_nullable] = ACTIONS(2436), + [anon_sym__Complex] = ACTIONS(2436), + [anon_sym__Nullable] = ACTIONS(2436), + [anon_sym__Nullable_result] = ACTIONS(2436), + [anon_sym__Null_unspecified] = ACTIONS(2436), + [anon_sym___autoreleasing] = ACTIONS(2436), + [anon_sym___block] = ACTIONS(2436), + [anon_sym___bridge] = ACTIONS(2436), + [anon_sym___bridge_retained] = ACTIONS(2436), + [anon_sym___bridge_transfer] = ACTIONS(2436), + [anon_sym___complex] = ACTIONS(2436), + [anon_sym___const] = ACTIONS(2436), + [anon_sym___imag] = ACTIONS(2436), + [anon_sym___kindof] = ACTIONS(2436), + [anon_sym___nonnull] = ACTIONS(2436), + [anon_sym___nullable] = ACTIONS(2436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2436), + [anon_sym___real] = ACTIONS(2436), + [anon_sym___strong] = ACTIONS(2436), + [anon_sym___unsafe_unretained] = ACTIONS(2436), + [anon_sym___unused] = ACTIONS(2436), + [anon_sym___weak] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2436), + [anon_sym___typeof] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [aux_sym_preproc_undef_token1] = ACTIONS(2436), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE] = ACTIONS(2436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_API_AVAILABLE] = ACTIONS(2436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_API_DEPRECATED] = ACTIONS(2436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2436), + [anon_sym___deprecated_msg] = ACTIONS(2436), + [anon_sym___deprecated_enum_msg] = ACTIONS(2436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2436), + [anon_sym_ATsynthesize] = ACTIONS(2438), + [anon_sym_ATdynamic] = ACTIONS(2438), + [anon_sym_ATproperty] = ACTIONS(2438), + [anon_sym_BOOL] = ACTIONS(2436), + [anon_sym_IMP] = ACTIONS(2436), + [anon_sym_SEL] = ACTIONS(2436), + [anon_sym_Class] = ACTIONS(2436), + [anon_sym_id] = ACTIONS(2436), + }, + [2282] = { + [sym_identifier] = ACTIONS(5254), + [aux_sym_preproc_def_token1] = ACTIONS(5254), + [aux_sym_preproc_if_token1] = ACTIONS(5254), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5254), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5254), + [sym_preproc_directive] = ACTIONS(5254), + [anon_sym_DASH] = ACTIONS(5258), + [anon_sym_PLUS] = ACTIONS(5258), + [anon_sym___extension__] = ACTIONS(5254), + [anon_sym_typedef] = ACTIONS(5254), + [anon_sym_extern] = ACTIONS(5254), + [anon_sym___attribute__] = ACTIONS(5254), + [anon_sym___attribute] = ACTIONS(5254), + [anon_sym_noreturn] = ACTIONS(5254), + [anon_sym_LBRACK] = ACTIONS(5258), + [anon_sym___declspec] = ACTIONS(5254), + [anon_sym___cdecl] = ACTIONS(5254), + [anon_sym___clrcall] = ACTIONS(5254), + [anon_sym___stdcall] = ACTIONS(5254), + [anon_sym___fastcall] = ACTIONS(5254), + [anon_sym___thiscall] = ACTIONS(5254), + [anon_sym___vectorcall] = ACTIONS(5254), + [anon_sym_LBRACE] = ACTIONS(5258), + [anon_sym_signed] = ACTIONS(5254), + [anon_sym_unsigned] = ACTIONS(5254), + [anon_sym_long] = ACTIONS(5254), + [anon_sym_short] = ACTIONS(5254), + [anon_sym_static] = ACTIONS(5254), + [anon_sym_auto] = ACTIONS(5254), + [anon_sym_register] = ACTIONS(5254), + [anon_sym_inline] = ACTIONS(5254), + [anon_sym___inline] = ACTIONS(5254), + [anon_sym___inline__] = ACTIONS(5254), + [anon_sym___forceinline] = ACTIONS(5254), + [anon_sym_thread_local] = ACTIONS(5254), + [anon_sym___thread] = ACTIONS(5254), + [anon_sym_CG_EXTERN] = ACTIONS(5254), + [anon_sym_CG_INLINE] = ACTIONS(5254), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5254), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5254), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5254), + [anon_sym_IBOutlet] = ACTIONS(5254), + [anon_sym_IBInspectable] = ACTIONS(5254), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5254), + [anon_sym_NS_INLINE] = ACTIONS(5254), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5254), + [anon_sym_OBJC_EXPORT] = ACTIONS(5254), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5254), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5254), + [anon_sym_const] = ACTIONS(5254), + [anon_sym_constexpr] = ACTIONS(5254), + [anon_sym_volatile] = ACTIONS(5254), + [anon_sym_restrict] = ACTIONS(5254), + [anon_sym___restrict__] = ACTIONS(5254), + [anon_sym__Atomic] = ACTIONS(5254), + [anon_sym__Noreturn] = ACTIONS(5254), + [anon_sym__Nonnull] = ACTIONS(5254), + [anon_sym_nullable] = ACTIONS(5254), + [anon_sym__Complex] = ACTIONS(5254), + [anon_sym__Nullable] = ACTIONS(5254), + [anon_sym__Nullable_result] = ACTIONS(5254), + [anon_sym__Null_unspecified] = ACTIONS(5254), + [anon_sym___autoreleasing] = ACTIONS(5254), + [anon_sym___block] = ACTIONS(5254), + [anon_sym___bridge] = ACTIONS(5254), + [anon_sym___bridge_retained] = ACTIONS(5254), + [anon_sym___bridge_transfer] = ACTIONS(5254), + [anon_sym___complex] = ACTIONS(5254), + [anon_sym___const] = ACTIONS(5254), + [anon_sym___imag] = ACTIONS(5254), + [anon_sym___kindof] = ACTIONS(5254), + [anon_sym___nonnull] = ACTIONS(5254), + [anon_sym___nullable] = ACTIONS(5254), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5254), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5254), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5254), + [anon_sym___real] = ACTIONS(5254), + [anon_sym___strong] = ACTIONS(5254), + [anon_sym___unsafe_unretained] = ACTIONS(5254), + [anon_sym___unused] = ACTIONS(5254), + [anon_sym___weak] = ACTIONS(5254), + [anon_sym_alignas] = ACTIONS(5254), + [anon_sym__Alignas] = ACTIONS(5254), + [sym_primitive_type] = ACTIONS(5254), + [anon_sym_enum] = ACTIONS(5254), + [anon_sym_struct] = ACTIONS(5254), + [anon_sym_union] = ACTIONS(5254), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5254), + [anon_sym___typeof] = ACTIONS(5254), + [anon_sym_typeof] = ACTIONS(5254), + [aux_sym_preproc_undef_token1] = ACTIONS(5254), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5254), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5254), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5254), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5254), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5254), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5254), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5254), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5254), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5254), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5254), + [anon_sym_NS_AVAILABLE] = ACTIONS(5254), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5254), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5254), + [anon_sym_API_AVAILABLE] = ACTIONS(5254), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5254), + [anon_sym_API_DEPRECATED] = ACTIONS(5254), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5254), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5254), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5254), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5254), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5254), + [anon_sym___deprecated_msg] = ACTIONS(5254), + [anon_sym___deprecated_enum_msg] = ACTIONS(5254), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5254), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5254), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5254), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5254), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5254), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5254), + [anon_sym_ATend] = ACTIONS(5258), + [anon_sym_ATsynthesize] = ACTIONS(5258), + [anon_sym_ATdynamic] = ACTIONS(5258), + [anon_sym_BOOL] = ACTIONS(5254), + [anon_sym_IMP] = ACTIONS(5254), + [anon_sym_SEL] = ACTIONS(5254), + [anon_sym_Class] = ACTIONS(5254), + [anon_sym_id] = ACTIONS(5254), + }, + [2283] = { + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token2] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2460), + [anon_sym_PLUS] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATsynthesize] = ACTIONS(2460), + [anon_sym_ATdynamic] = ACTIONS(2460), + [anon_sym_ATproperty] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [2284] = { + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token2] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2460), + [anon_sym_PLUS] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATsynthesize] = ACTIONS(2460), + [anon_sym_ATdynamic] = ACTIONS(2460), + [anon_sym_ATproperty] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [2285] = { + [sym_identifier] = ACTIONS(2458), + [aux_sym_preproc_def_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token1] = ACTIONS(2458), + [aux_sym_preproc_if_token2] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2460), + [anon_sym_PLUS] = ACTIONS(2460), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_typedef] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym___attribute__] = ACTIONS(2458), + [anon_sym___attribute] = ACTIONS(2458), + [anon_sym_noreturn] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym___declspec] = ACTIONS(2458), + [anon_sym___cdecl] = ACTIONS(2458), + [anon_sym___clrcall] = ACTIONS(2458), + [anon_sym___stdcall] = ACTIONS(2458), + [anon_sym___fastcall] = ACTIONS(2458), + [anon_sym___thiscall] = ACTIONS(2458), + [anon_sym___vectorcall] = ACTIONS(2458), + [anon_sym_signed] = ACTIONS(2458), + [anon_sym_unsigned] = ACTIONS(2458), + [anon_sym_long] = ACTIONS(2458), + [anon_sym_short] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_auto] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_inline] = ACTIONS(2458), + [anon_sym___inline] = ACTIONS(2458), + [anon_sym___inline__] = ACTIONS(2458), + [anon_sym___forceinline] = ACTIONS(2458), + [anon_sym_thread_local] = ACTIONS(2458), + [anon_sym___thread] = ACTIONS(2458), + [anon_sym_CG_EXTERN] = ACTIONS(2458), + [anon_sym_CG_INLINE] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2458), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2458), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2458), + [anon_sym_IBOutlet] = ACTIONS(2458), + [anon_sym_IBInspectable] = ACTIONS(2458), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2458), + [anon_sym_NS_INLINE] = ACTIONS(2458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2458), + [anon_sym_OBJC_EXPORT] = ACTIONS(2458), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_constexpr] = ACTIONS(2458), + [anon_sym_volatile] = ACTIONS(2458), + [anon_sym_restrict] = ACTIONS(2458), + [anon_sym___restrict__] = ACTIONS(2458), + [anon_sym__Atomic] = ACTIONS(2458), + [anon_sym__Noreturn] = ACTIONS(2458), + [anon_sym__Nonnull] = ACTIONS(2458), + [anon_sym_nullable] = ACTIONS(2458), + [anon_sym__Complex] = ACTIONS(2458), + [anon_sym__Nullable] = ACTIONS(2458), + [anon_sym__Nullable_result] = ACTIONS(2458), + [anon_sym__Null_unspecified] = ACTIONS(2458), + [anon_sym___autoreleasing] = ACTIONS(2458), + [anon_sym___block] = ACTIONS(2458), + [anon_sym___bridge] = ACTIONS(2458), + [anon_sym___bridge_retained] = ACTIONS(2458), + [anon_sym___bridge_transfer] = ACTIONS(2458), + [anon_sym___complex] = ACTIONS(2458), + [anon_sym___const] = ACTIONS(2458), + [anon_sym___imag] = ACTIONS(2458), + [anon_sym___kindof] = ACTIONS(2458), + [anon_sym___nonnull] = ACTIONS(2458), + [anon_sym___nullable] = ACTIONS(2458), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2458), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2458), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2458), + [anon_sym___real] = ACTIONS(2458), + [anon_sym___strong] = ACTIONS(2458), + [anon_sym___unsafe_unretained] = ACTIONS(2458), + [anon_sym___unused] = ACTIONS(2458), + [anon_sym___weak] = ACTIONS(2458), + [anon_sym_alignas] = ACTIONS(2458), + [anon_sym__Alignas] = ACTIONS(2458), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2458), + [anon_sym___typeof] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [aux_sym_preproc_undef_token1] = ACTIONS(2458), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2458), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2458), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE] = ACTIONS(2458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_API_AVAILABLE] = ACTIONS(2458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_API_DEPRECATED] = ACTIONS(2458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2458), + [anon_sym___deprecated_msg] = ACTIONS(2458), + [anon_sym___deprecated_enum_msg] = ACTIONS(2458), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2458), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2458), + [anon_sym_ATsynthesize] = ACTIONS(2460), + [anon_sym_ATdynamic] = ACTIONS(2460), + [anon_sym_ATproperty] = ACTIONS(2460), + [anon_sym_BOOL] = ACTIONS(2458), + [anon_sym_IMP] = ACTIONS(2458), + [anon_sym_SEL] = ACTIONS(2458), + [anon_sym_Class] = ACTIONS(2458), + [anon_sym_id] = ACTIONS(2458), + }, + [2286] = { + [sym_identifier] = ACTIONS(2466), + [aux_sym_preproc_def_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token2] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2466), + [sym_preproc_directive] = ACTIONS(2466), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym___extension__] = ACTIONS(2466), + [anon_sym_typedef] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym___attribute__] = ACTIONS(2466), + [anon_sym___attribute] = ACTIONS(2466), + [anon_sym_noreturn] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2468), + [anon_sym___declspec] = ACTIONS(2466), + [anon_sym___cdecl] = ACTIONS(2466), + [anon_sym___clrcall] = ACTIONS(2466), + [anon_sym___stdcall] = ACTIONS(2466), + [anon_sym___fastcall] = ACTIONS(2466), + [anon_sym___thiscall] = ACTIONS(2466), + [anon_sym___vectorcall] = ACTIONS(2466), + [anon_sym_signed] = ACTIONS(2466), + [anon_sym_unsigned] = ACTIONS(2466), + [anon_sym_long] = ACTIONS(2466), + [anon_sym_short] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_auto] = ACTIONS(2466), + [anon_sym_register] = ACTIONS(2466), + [anon_sym_inline] = ACTIONS(2466), + [anon_sym___inline] = ACTIONS(2466), + [anon_sym___inline__] = ACTIONS(2466), + [anon_sym___forceinline] = ACTIONS(2466), + [anon_sym_thread_local] = ACTIONS(2466), + [anon_sym___thread] = ACTIONS(2466), + [anon_sym_CG_EXTERN] = ACTIONS(2466), + [anon_sym_CG_INLINE] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2466), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2466), + [anon_sym_IBOutlet] = ACTIONS(2466), + [anon_sym_IBInspectable] = ACTIONS(2466), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2466), + [anon_sym_NS_INLINE] = ACTIONS(2466), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2466), + [anon_sym_OBJC_EXPORT] = ACTIONS(2466), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_constexpr] = ACTIONS(2466), + [anon_sym_volatile] = ACTIONS(2466), + [anon_sym_restrict] = ACTIONS(2466), + [anon_sym___restrict__] = ACTIONS(2466), + [anon_sym__Atomic] = ACTIONS(2466), + [anon_sym__Noreturn] = ACTIONS(2466), + [anon_sym__Nonnull] = ACTIONS(2466), + [anon_sym_nullable] = ACTIONS(2466), + [anon_sym__Complex] = ACTIONS(2466), + [anon_sym__Nullable] = ACTIONS(2466), + [anon_sym__Nullable_result] = ACTIONS(2466), + [anon_sym__Null_unspecified] = ACTIONS(2466), + [anon_sym___autoreleasing] = ACTIONS(2466), + [anon_sym___block] = ACTIONS(2466), + [anon_sym___bridge] = ACTIONS(2466), + [anon_sym___bridge_retained] = ACTIONS(2466), + [anon_sym___bridge_transfer] = ACTIONS(2466), + [anon_sym___complex] = ACTIONS(2466), + [anon_sym___const] = ACTIONS(2466), + [anon_sym___imag] = ACTIONS(2466), + [anon_sym___kindof] = ACTIONS(2466), + [anon_sym___nonnull] = ACTIONS(2466), + [anon_sym___nullable] = ACTIONS(2466), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2466), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2466), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2466), + [anon_sym___real] = ACTIONS(2466), + [anon_sym___strong] = ACTIONS(2466), + [anon_sym___unsafe_unretained] = ACTIONS(2466), + [anon_sym___unused] = ACTIONS(2466), + [anon_sym___weak] = ACTIONS(2466), + [anon_sym_alignas] = ACTIONS(2466), + [anon_sym__Alignas] = ACTIONS(2466), + [sym_primitive_type] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), + [anon_sym_struct] = ACTIONS(2466), + [anon_sym_union] = ACTIONS(2466), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2466), + [anon_sym___typeof] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2466), + [aux_sym_preproc_undef_token1] = ACTIONS(2466), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2466), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2466), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2466), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2466), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE] = ACTIONS(2466), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_API_AVAILABLE] = ACTIONS(2466), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_API_DEPRECATED] = ACTIONS(2466), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2466), + [anon_sym___deprecated_msg] = ACTIONS(2466), + [anon_sym___deprecated_enum_msg] = ACTIONS(2466), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2466), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2466), + [anon_sym_ATsynthesize] = ACTIONS(2468), + [anon_sym_ATdynamic] = ACTIONS(2468), + [anon_sym_ATproperty] = ACTIONS(2468), + [anon_sym_BOOL] = ACTIONS(2466), + [anon_sym_IMP] = ACTIONS(2466), + [anon_sym_SEL] = ACTIONS(2466), + [anon_sym_Class] = ACTIONS(2466), + [anon_sym_id] = ACTIONS(2466), + }, + [2287] = { + [sym_identifier] = ACTIONS(2466), + [aux_sym_preproc_def_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token1] = ACTIONS(2466), + [aux_sym_preproc_if_token2] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2466), + [sym_preproc_directive] = ACTIONS(2466), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym___extension__] = ACTIONS(2466), + [anon_sym_typedef] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym___attribute__] = ACTIONS(2466), + [anon_sym___attribute] = ACTIONS(2466), + [anon_sym_noreturn] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2468), + [anon_sym___declspec] = ACTIONS(2466), + [anon_sym___cdecl] = ACTIONS(2466), + [anon_sym___clrcall] = ACTIONS(2466), + [anon_sym___stdcall] = ACTIONS(2466), + [anon_sym___fastcall] = ACTIONS(2466), + [anon_sym___thiscall] = ACTIONS(2466), + [anon_sym___vectorcall] = ACTIONS(2466), + [anon_sym_signed] = ACTIONS(2466), + [anon_sym_unsigned] = ACTIONS(2466), + [anon_sym_long] = ACTIONS(2466), + [anon_sym_short] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_auto] = ACTIONS(2466), + [anon_sym_register] = ACTIONS(2466), + [anon_sym_inline] = ACTIONS(2466), + [anon_sym___inline] = ACTIONS(2466), + [anon_sym___inline__] = ACTIONS(2466), + [anon_sym___forceinline] = ACTIONS(2466), + [anon_sym_thread_local] = ACTIONS(2466), + [anon_sym___thread] = ACTIONS(2466), + [anon_sym_CG_EXTERN] = ACTIONS(2466), + [anon_sym_CG_INLINE] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2466), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2466), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2466), + [anon_sym_IBOutlet] = ACTIONS(2466), + [anon_sym_IBInspectable] = ACTIONS(2466), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2466), + [anon_sym_NS_INLINE] = ACTIONS(2466), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2466), + [anon_sym_OBJC_EXPORT] = ACTIONS(2466), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_constexpr] = ACTIONS(2466), + [anon_sym_volatile] = ACTIONS(2466), + [anon_sym_restrict] = ACTIONS(2466), + [anon_sym___restrict__] = ACTIONS(2466), + [anon_sym__Atomic] = ACTIONS(2466), + [anon_sym__Noreturn] = ACTIONS(2466), + [anon_sym__Nonnull] = ACTIONS(2466), + [anon_sym_nullable] = ACTIONS(2466), + [anon_sym__Complex] = ACTIONS(2466), + [anon_sym__Nullable] = ACTIONS(2466), + [anon_sym__Nullable_result] = ACTIONS(2466), + [anon_sym__Null_unspecified] = ACTIONS(2466), + [anon_sym___autoreleasing] = ACTIONS(2466), + [anon_sym___block] = ACTIONS(2466), + [anon_sym___bridge] = ACTIONS(2466), + [anon_sym___bridge_retained] = ACTIONS(2466), + [anon_sym___bridge_transfer] = ACTIONS(2466), + [anon_sym___complex] = ACTIONS(2466), + [anon_sym___const] = ACTIONS(2466), + [anon_sym___imag] = ACTIONS(2466), + [anon_sym___kindof] = ACTIONS(2466), + [anon_sym___nonnull] = ACTIONS(2466), + [anon_sym___nullable] = ACTIONS(2466), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2466), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2466), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2466), + [anon_sym___real] = ACTIONS(2466), + [anon_sym___strong] = ACTIONS(2466), + [anon_sym___unsafe_unretained] = ACTIONS(2466), + [anon_sym___unused] = ACTIONS(2466), + [anon_sym___weak] = ACTIONS(2466), + [anon_sym_alignas] = ACTIONS(2466), + [anon_sym__Alignas] = ACTIONS(2466), + [sym_primitive_type] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), + [anon_sym_struct] = ACTIONS(2466), + [anon_sym_union] = ACTIONS(2466), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2466), + [anon_sym___typeof] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2466), + [aux_sym_preproc_undef_token1] = ACTIONS(2466), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2466), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2466), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2466), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2466), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2466), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2466), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE] = ACTIONS(2466), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2466), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_API_AVAILABLE] = ACTIONS(2466), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_API_DEPRECATED] = ACTIONS(2466), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2466), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2466), + [anon_sym___deprecated_msg] = ACTIONS(2466), + [anon_sym___deprecated_enum_msg] = ACTIONS(2466), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2466), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2466), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2466), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2466), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2466), + [anon_sym_ATsynthesize] = ACTIONS(2468), + [anon_sym_ATdynamic] = ACTIONS(2468), + [anon_sym_ATproperty] = ACTIONS(2468), + [anon_sym_BOOL] = ACTIONS(2466), + [anon_sym_IMP] = ACTIONS(2466), + [anon_sym_SEL] = ACTIONS(2466), + [anon_sym_Class] = ACTIONS(2466), + [anon_sym_id] = ACTIONS(2466), + }, + [2288] = { + [sym_identifier] = ACTIONS(2470), + [aux_sym_preproc_def_token1] = ACTIONS(2470), + [aux_sym_preproc_if_token1] = ACTIONS(2470), + [aux_sym_preproc_if_token2] = ACTIONS(2470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2470), + [sym_preproc_directive] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2472), + [anon_sym_PLUS] = ACTIONS(2472), + [anon_sym___extension__] = ACTIONS(2470), + [anon_sym_typedef] = ACTIONS(2470), + [anon_sym_extern] = ACTIONS(2470), + [anon_sym___attribute__] = ACTIONS(2470), + [anon_sym___attribute] = ACTIONS(2470), + [anon_sym_noreturn] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2472), + [anon_sym___declspec] = ACTIONS(2470), + [anon_sym___cdecl] = ACTIONS(2470), + [anon_sym___clrcall] = ACTIONS(2470), + [anon_sym___stdcall] = ACTIONS(2470), + [anon_sym___fastcall] = ACTIONS(2470), + [anon_sym___thiscall] = ACTIONS(2470), + [anon_sym___vectorcall] = ACTIONS(2470), + [anon_sym_signed] = ACTIONS(2470), + [anon_sym_unsigned] = ACTIONS(2470), + [anon_sym_long] = ACTIONS(2470), + [anon_sym_short] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_auto] = ACTIONS(2470), + [anon_sym_register] = ACTIONS(2470), + [anon_sym_inline] = ACTIONS(2470), + [anon_sym___inline] = ACTIONS(2470), + [anon_sym___inline__] = ACTIONS(2470), + [anon_sym___forceinline] = ACTIONS(2470), + [anon_sym_thread_local] = ACTIONS(2470), + [anon_sym___thread] = ACTIONS(2470), + [anon_sym_CG_EXTERN] = ACTIONS(2470), + [anon_sym_CG_INLINE] = ACTIONS(2470), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2470), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2470), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2470), + [anon_sym_IBOutlet] = ACTIONS(2470), + [anon_sym_IBInspectable] = ACTIONS(2470), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2470), + [anon_sym_NS_INLINE] = ACTIONS(2470), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2470), + [anon_sym_OBJC_EXPORT] = ACTIONS(2470), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2470), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_constexpr] = ACTIONS(2470), + [anon_sym_volatile] = ACTIONS(2470), + [anon_sym_restrict] = ACTIONS(2470), + [anon_sym___restrict__] = ACTIONS(2470), + [anon_sym__Atomic] = ACTIONS(2470), + [anon_sym__Noreturn] = ACTIONS(2470), + [anon_sym__Nonnull] = ACTIONS(2470), + [anon_sym_nullable] = ACTIONS(2470), + [anon_sym__Complex] = ACTIONS(2470), + [anon_sym__Nullable] = ACTIONS(2470), + [anon_sym__Nullable_result] = ACTIONS(2470), + [anon_sym__Null_unspecified] = ACTIONS(2470), + [anon_sym___autoreleasing] = ACTIONS(2470), + [anon_sym___block] = ACTIONS(2470), + [anon_sym___bridge] = ACTIONS(2470), + [anon_sym___bridge_retained] = ACTIONS(2470), + [anon_sym___bridge_transfer] = ACTIONS(2470), + [anon_sym___complex] = ACTIONS(2470), + [anon_sym___const] = ACTIONS(2470), + [anon_sym___imag] = ACTIONS(2470), + [anon_sym___kindof] = ACTIONS(2470), + [anon_sym___nonnull] = ACTIONS(2470), + [anon_sym___nullable] = ACTIONS(2470), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2470), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2470), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2470), + [anon_sym___real] = ACTIONS(2470), + [anon_sym___strong] = ACTIONS(2470), + [anon_sym___unsafe_unretained] = ACTIONS(2470), + [anon_sym___unused] = ACTIONS(2470), + [anon_sym___weak] = ACTIONS(2470), + [anon_sym_alignas] = ACTIONS(2470), + [anon_sym__Alignas] = ACTIONS(2470), + [sym_primitive_type] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [anon_sym_struct] = ACTIONS(2470), + [anon_sym_union] = ACTIONS(2470), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2470), + [anon_sym___typeof] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [aux_sym_preproc_undef_token1] = ACTIONS(2470), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2470), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2470), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2470), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2470), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2470), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2470), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2470), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2470), + [anon_sym_NS_AVAILABLE] = ACTIONS(2470), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2470), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_API_AVAILABLE] = ACTIONS(2470), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_API_DEPRECATED] = ACTIONS(2470), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2470), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2470), + [anon_sym___deprecated_msg] = ACTIONS(2470), + [anon_sym___deprecated_enum_msg] = ACTIONS(2470), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2470), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2470), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2470), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2470), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2470), + [anon_sym_ATsynthesize] = ACTIONS(2472), + [anon_sym_ATdynamic] = ACTIONS(2472), + [anon_sym_ATproperty] = ACTIONS(2472), + [anon_sym_BOOL] = ACTIONS(2470), + [anon_sym_IMP] = ACTIONS(2470), + [anon_sym_SEL] = ACTIONS(2470), + [anon_sym_Class] = ACTIONS(2470), + [anon_sym_id] = ACTIONS(2470), + }, + [2289] = { + [sym_identifier] = ACTIONS(2512), + [aux_sym_preproc_def_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token2] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2512), + [sym_preproc_directive] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2514), + [anon_sym_PLUS] = ACTIONS(2514), + [anon_sym___extension__] = ACTIONS(2512), + [anon_sym_typedef] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym___attribute__] = ACTIONS(2512), + [anon_sym___attribute] = ACTIONS(2512), + [anon_sym_noreturn] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym___declspec] = ACTIONS(2512), + [anon_sym___cdecl] = ACTIONS(2512), + [anon_sym___clrcall] = ACTIONS(2512), + [anon_sym___stdcall] = ACTIONS(2512), + [anon_sym___fastcall] = ACTIONS(2512), + [anon_sym___thiscall] = ACTIONS(2512), + [anon_sym___vectorcall] = ACTIONS(2512), + [anon_sym_signed] = ACTIONS(2512), + [anon_sym_unsigned] = ACTIONS(2512), + [anon_sym_long] = ACTIONS(2512), + [anon_sym_short] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_auto] = ACTIONS(2512), + [anon_sym_register] = ACTIONS(2512), + [anon_sym_inline] = ACTIONS(2512), + [anon_sym___inline] = ACTIONS(2512), + [anon_sym___inline__] = ACTIONS(2512), + [anon_sym___forceinline] = ACTIONS(2512), + [anon_sym_thread_local] = ACTIONS(2512), + [anon_sym___thread] = ACTIONS(2512), + [anon_sym_CG_EXTERN] = ACTIONS(2512), + [anon_sym_CG_INLINE] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2512), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2512), + [anon_sym_IBOutlet] = ACTIONS(2512), + [anon_sym_IBInspectable] = ACTIONS(2512), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2512), + [anon_sym_NS_INLINE] = ACTIONS(2512), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2512), + [anon_sym_OBJC_EXPORT] = ACTIONS(2512), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_constexpr] = ACTIONS(2512), + [anon_sym_volatile] = ACTIONS(2512), + [anon_sym_restrict] = ACTIONS(2512), + [anon_sym___restrict__] = ACTIONS(2512), + [anon_sym__Atomic] = ACTIONS(2512), + [anon_sym__Noreturn] = ACTIONS(2512), + [anon_sym__Nonnull] = ACTIONS(2512), + [anon_sym_nullable] = ACTIONS(2512), + [anon_sym__Complex] = ACTIONS(2512), + [anon_sym__Nullable] = ACTIONS(2512), + [anon_sym__Nullable_result] = ACTIONS(2512), + [anon_sym__Null_unspecified] = ACTIONS(2512), + [anon_sym___autoreleasing] = ACTIONS(2512), + [anon_sym___block] = ACTIONS(2512), + [anon_sym___bridge] = ACTIONS(2512), + [anon_sym___bridge_retained] = ACTIONS(2512), + [anon_sym___bridge_transfer] = ACTIONS(2512), + [anon_sym___complex] = ACTIONS(2512), + [anon_sym___const] = ACTIONS(2512), + [anon_sym___imag] = ACTIONS(2512), + [anon_sym___kindof] = ACTIONS(2512), + [anon_sym___nonnull] = ACTIONS(2512), + [anon_sym___nullable] = ACTIONS(2512), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2512), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2512), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2512), + [anon_sym___real] = ACTIONS(2512), + [anon_sym___strong] = ACTIONS(2512), + [anon_sym___unsafe_unretained] = ACTIONS(2512), + [anon_sym___unused] = ACTIONS(2512), + [anon_sym___weak] = ACTIONS(2512), + [anon_sym_alignas] = ACTIONS(2512), + [anon_sym__Alignas] = ACTIONS(2512), + [sym_primitive_type] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [anon_sym_struct] = ACTIONS(2512), + [anon_sym_union] = ACTIONS(2512), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2512), + [anon_sym___typeof] = ACTIONS(2512), + [anon_sym_typeof] = ACTIONS(2512), + [aux_sym_preproc_undef_token1] = ACTIONS(2512), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2512), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2512), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2512), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2512), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE] = ACTIONS(2512), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_API_AVAILABLE] = ACTIONS(2512), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_API_DEPRECATED] = ACTIONS(2512), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2512), + [anon_sym___deprecated_msg] = ACTIONS(2512), + [anon_sym___deprecated_enum_msg] = ACTIONS(2512), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2512), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2512), + [anon_sym_ATsynthesize] = ACTIONS(2514), + [anon_sym_ATdynamic] = ACTIONS(2514), + [anon_sym_ATproperty] = ACTIONS(2514), + [anon_sym_BOOL] = ACTIONS(2512), + [anon_sym_IMP] = ACTIONS(2512), + [anon_sym_SEL] = ACTIONS(2512), + [anon_sym_Class] = ACTIONS(2512), + [anon_sym_id] = ACTIONS(2512), + }, + [2290] = { + [sym_identifier] = ACTIONS(2512), + [aux_sym_preproc_def_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token1] = ACTIONS(2512), + [aux_sym_preproc_if_token2] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2512), + [sym_preproc_directive] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2514), + [anon_sym_PLUS] = ACTIONS(2514), + [anon_sym___extension__] = ACTIONS(2512), + [anon_sym_typedef] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym___attribute__] = ACTIONS(2512), + [anon_sym___attribute] = ACTIONS(2512), + [anon_sym_noreturn] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym___declspec] = ACTIONS(2512), + [anon_sym___cdecl] = ACTIONS(2512), + [anon_sym___clrcall] = ACTIONS(2512), + [anon_sym___stdcall] = ACTIONS(2512), + [anon_sym___fastcall] = ACTIONS(2512), + [anon_sym___thiscall] = ACTIONS(2512), + [anon_sym___vectorcall] = ACTIONS(2512), + [anon_sym_signed] = ACTIONS(2512), + [anon_sym_unsigned] = ACTIONS(2512), + [anon_sym_long] = ACTIONS(2512), + [anon_sym_short] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_auto] = ACTIONS(2512), + [anon_sym_register] = ACTIONS(2512), + [anon_sym_inline] = ACTIONS(2512), + [anon_sym___inline] = ACTIONS(2512), + [anon_sym___inline__] = ACTIONS(2512), + [anon_sym___forceinline] = ACTIONS(2512), + [anon_sym_thread_local] = ACTIONS(2512), + [anon_sym___thread] = ACTIONS(2512), + [anon_sym_CG_EXTERN] = ACTIONS(2512), + [anon_sym_CG_INLINE] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2512), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2512), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2512), + [anon_sym_IBOutlet] = ACTIONS(2512), + [anon_sym_IBInspectable] = ACTIONS(2512), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2512), + [anon_sym_NS_INLINE] = ACTIONS(2512), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2512), + [anon_sym_OBJC_EXPORT] = ACTIONS(2512), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_constexpr] = ACTIONS(2512), + [anon_sym_volatile] = ACTIONS(2512), + [anon_sym_restrict] = ACTIONS(2512), + [anon_sym___restrict__] = ACTIONS(2512), + [anon_sym__Atomic] = ACTIONS(2512), + [anon_sym__Noreturn] = ACTIONS(2512), + [anon_sym__Nonnull] = ACTIONS(2512), + [anon_sym_nullable] = ACTIONS(2512), + [anon_sym__Complex] = ACTIONS(2512), + [anon_sym__Nullable] = ACTIONS(2512), + [anon_sym__Nullable_result] = ACTIONS(2512), + [anon_sym__Null_unspecified] = ACTIONS(2512), + [anon_sym___autoreleasing] = ACTIONS(2512), + [anon_sym___block] = ACTIONS(2512), + [anon_sym___bridge] = ACTIONS(2512), + [anon_sym___bridge_retained] = ACTIONS(2512), + [anon_sym___bridge_transfer] = ACTIONS(2512), + [anon_sym___complex] = ACTIONS(2512), + [anon_sym___const] = ACTIONS(2512), + [anon_sym___imag] = ACTIONS(2512), + [anon_sym___kindof] = ACTIONS(2512), + [anon_sym___nonnull] = ACTIONS(2512), + [anon_sym___nullable] = ACTIONS(2512), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2512), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2512), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2512), + [anon_sym___real] = ACTIONS(2512), + [anon_sym___strong] = ACTIONS(2512), + [anon_sym___unsafe_unretained] = ACTIONS(2512), + [anon_sym___unused] = ACTIONS(2512), + [anon_sym___weak] = ACTIONS(2512), + [anon_sym_alignas] = ACTIONS(2512), + [anon_sym__Alignas] = ACTIONS(2512), + [sym_primitive_type] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [anon_sym_struct] = ACTIONS(2512), + [anon_sym_union] = ACTIONS(2512), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2512), + [anon_sym___typeof] = ACTIONS(2512), + [anon_sym_typeof] = ACTIONS(2512), + [aux_sym_preproc_undef_token1] = ACTIONS(2512), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2512), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2512), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2512), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2512), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2512), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2512), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE] = ACTIONS(2512), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2512), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_API_AVAILABLE] = ACTIONS(2512), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_API_DEPRECATED] = ACTIONS(2512), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2512), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2512), + [anon_sym___deprecated_msg] = ACTIONS(2512), + [anon_sym___deprecated_enum_msg] = ACTIONS(2512), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2512), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2512), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2512), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2512), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2512), + [anon_sym_ATsynthesize] = ACTIONS(2514), + [anon_sym_ATdynamic] = ACTIONS(2514), + [anon_sym_ATproperty] = ACTIONS(2514), + [anon_sym_BOOL] = ACTIONS(2512), + [anon_sym_IMP] = ACTIONS(2512), + [anon_sym_SEL] = ACTIONS(2512), + [anon_sym_Class] = ACTIONS(2512), + [anon_sym_id] = ACTIONS(2512), + }, + [2291] = { + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token2] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_DASH] = ACTIONS(2426), + [anon_sym_PLUS] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_auto] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_CG_EXTERN] = ACTIONS(2424), + [anon_sym_CG_INLINE] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2424), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2424), + [anon_sym_IBOutlet] = ACTIONS(2424), + [anon_sym_IBInspectable] = ACTIONS(2424), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2424), + [anon_sym_NS_INLINE] = ACTIONS(2424), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2424), + [anon_sym_OBJC_EXPORT] = ACTIONS(2424), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_nullable] = ACTIONS(2424), + [anon_sym__Complex] = ACTIONS(2424), + [anon_sym__Nullable] = ACTIONS(2424), + [anon_sym__Nullable_result] = ACTIONS(2424), + [anon_sym__Null_unspecified] = ACTIONS(2424), + [anon_sym___autoreleasing] = ACTIONS(2424), + [anon_sym___block] = ACTIONS(2424), + [anon_sym___bridge] = ACTIONS(2424), + [anon_sym___bridge_retained] = ACTIONS(2424), + [anon_sym___bridge_transfer] = ACTIONS(2424), + [anon_sym___complex] = ACTIONS(2424), + [anon_sym___const] = ACTIONS(2424), + [anon_sym___imag] = ACTIONS(2424), + [anon_sym___kindof] = ACTIONS(2424), + [anon_sym___nonnull] = ACTIONS(2424), + [anon_sym___nullable] = ACTIONS(2424), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2424), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2424), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2424), + [anon_sym___real] = ACTIONS(2424), + [anon_sym___strong] = ACTIONS(2424), + [anon_sym___unsafe_unretained] = ACTIONS(2424), + [anon_sym___unused] = ACTIONS(2424), + [anon_sym___weak] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2424), + [anon_sym___typeof] = ACTIONS(2424), + [anon_sym_typeof] = ACTIONS(2424), + [aux_sym_preproc_undef_token1] = ACTIONS(2424), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2424), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2424), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2424), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2424), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE] = ACTIONS(2424), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_API_AVAILABLE] = ACTIONS(2424), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_API_DEPRECATED] = ACTIONS(2424), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2424), + [anon_sym___deprecated_msg] = ACTIONS(2424), + [anon_sym___deprecated_enum_msg] = ACTIONS(2424), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2424), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2424), + [anon_sym_ATsynthesize] = ACTIONS(2426), + [anon_sym_ATdynamic] = ACTIONS(2426), + [anon_sym_ATproperty] = ACTIONS(2426), + [anon_sym_BOOL] = ACTIONS(2424), + [anon_sym_IMP] = ACTIONS(2424), + [anon_sym_SEL] = ACTIONS(2424), + [anon_sym_Class] = ACTIONS(2424), + [anon_sym_id] = ACTIONS(2424), + }, + [2292] = { + [sym_identifier] = ACTIONS(2428), + [aux_sym_preproc_def_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token2] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2428), + [sym_preproc_directive] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2430), + [anon_sym_PLUS] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym___cdecl] = ACTIONS(2428), + [anon_sym___clrcall] = ACTIONS(2428), + [anon_sym___stdcall] = ACTIONS(2428), + [anon_sym___fastcall] = ACTIONS(2428), + [anon_sym___thiscall] = ACTIONS(2428), + [anon_sym___vectorcall] = ACTIONS(2428), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_auto] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_CG_EXTERN] = ACTIONS(2428), + [anon_sym_CG_INLINE] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2428), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2428), + [anon_sym_IBOutlet] = ACTIONS(2428), + [anon_sym_IBInspectable] = ACTIONS(2428), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2428), + [anon_sym_NS_INLINE] = ACTIONS(2428), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2428), + [anon_sym_OBJC_EXPORT] = ACTIONS(2428), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_nullable] = ACTIONS(2428), + [anon_sym__Complex] = ACTIONS(2428), + [anon_sym__Nullable] = ACTIONS(2428), + [anon_sym__Nullable_result] = ACTIONS(2428), + [anon_sym__Null_unspecified] = ACTIONS(2428), + [anon_sym___autoreleasing] = ACTIONS(2428), + [anon_sym___block] = ACTIONS(2428), + [anon_sym___bridge] = ACTIONS(2428), + [anon_sym___bridge_retained] = ACTIONS(2428), + [anon_sym___bridge_transfer] = ACTIONS(2428), + [anon_sym___complex] = ACTIONS(2428), + [anon_sym___const] = ACTIONS(2428), + [anon_sym___imag] = ACTIONS(2428), + [anon_sym___kindof] = ACTIONS(2428), + [anon_sym___nonnull] = ACTIONS(2428), + [anon_sym___nullable] = ACTIONS(2428), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2428), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2428), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2428), + [anon_sym___real] = ACTIONS(2428), + [anon_sym___strong] = ACTIONS(2428), + [anon_sym___unsafe_unretained] = ACTIONS(2428), + [anon_sym___unused] = ACTIONS(2428), + [anon_sym___weak] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2428), + [anon_sym___typeof] = ACTIONS(2428), + [anon_sym_typeof] = ACTIONS(2428), + [aux_sym_preproc_undef_token1] = ACTIONS(2428), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2428), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2428), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2428), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2428), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE] = ACTIONS(2428), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_API_AVAILABLE] = ACTIONS(2428), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_API_DEPRECATED] = ACTIONS(2428), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2428), + [anon_sym___deprecated_msg] = ACTIONS(2428), + [anon_sym___deprecated_enum_msg] = ACTIONS(2428), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2428), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2428), + [anon_sym_ATsynthesize] = ACTIONS(2430), + [anon_sym_ATdynamic] = ACTIONS(2430), + [anon_sym_ATproperty] = ACTIONS(2430), + [anon_sym_BOOL] = ACTIONS(2428), + [anon_sym_IMP] = ACTIONS(2428), + [anon_sym_SEL] = ACTIONS(2428), + [anon_sym_Class] = ACTIONS(2428), + [anon_sym_id] = ACTIONS(2428), + }, + [2293] = { + [sym_identifier] = ACTIONS(5534), + [aux_sym_preproc_def_token1] = ACTIONS(5534), + [aux_sym_preproc_if_token1] = ACTIONS(5534), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5534), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5534), + [sym_preproc_directive] = ACTIONS(5534), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym___extension__] = ACTIONS(5534), + [anon_sym_typedef] = ACTIONS(5534), + [anon_sym_extern] = ACTIONS(5534), + [anon_sym___attribute__] = ACTIONS(5534), + [anon_sym___attribute] = ACTIONS(5534), + [anon_sym_noreturn] = ACTIONS(5534), + [anon_sym_LBRACK] = ACTIONS(5536), + [anon_sym___declspec] = ACTIONS(5534), + [anon_sym___cdecl] = ACTIONS(5534), + [anon_sym___clrcall] = ACTIONS(5534), + [anon_sym___stdcall] = ACTIONS(5534), + [anon_sym___fastcall] = ACTIONS(5534), + [anon_sym___thiscall] = ACTIONS(5534), + [anon_sym___vectorcall] = ACTIONS(5534), + [anon_sym_signed] = ACTIONS(5534), + [anon_sym_unsigned] = ACTIONS(5534), + [anon_sym_long] = ACTIONS(5534), + [anon_sym_short] = ACTIONS(5534), + [anon_sym_static] = ACTIONS(5534), + [anon_sym_auto] = ACTIONS(5534), + [anon_sym_register] = ACTIONS(5534), + [anon_sym_inline] = ACTIONS(5534), + [anon_sym___inline] = ACTIONS(5534), + [anon_sym___inline__] = ACTIONS(5534), + [anon_sym___forceinline] = ACTIONS(5534), + [anon_sym_thread_local] = ACTIONS(5534), + [anon_sym___thread] = ACTIONS(5534), + [anon_sym_CG_EXTERN] = ACTIONS(5534), + [anon_sym_CG_INLINE] = ACTIONS(5534), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5534), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5534), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5534), + [anon_sym_IBOutlet] = ACTIONS(5534), + [anon_sym_IBInspectable] = ACTIONS(5534), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5534), + [anon_sym_NS_INLINE] = ACTIONS(5534), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5534), + [anon_sym_OBJC_EXPORT] = ACTIONS(5534), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5534), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5534), + [anon_sym_const] = ACTIONS(5534), + [anon_sym_constexpr] = ACTIONS(5534), + [anon_sym_volatile] = ACTIONS(5534), + [anon_sym_restrict] = ACTIONS(5534), + [anon_sym___restrict__] = ACTIONS(5534), + [anon_sym__Atomic] = ACTIONS(5534), + [anon_sym__Noreturn] = ACTIONS(5534), + [anon_sym__Nonnull] = ACTIONS(5534), + [anon_sym_nullable] = ACTIONS(5534), + [anon_sym__Complex] = ACTIONS(5534), + [anon_sym__Nullable] = ACTIONS(5534), + [anon_sym__Nullable_result] = ACTIONS(5534), + [anon_sym__Null_unspecified] = ACTIONS(5534), + [anon_sym___autoreleasing] = ACTIONS(5534), + [anon_sym___block] = ACTIONS(5534), + [anon_sym___bridge] = ACTIONS(5534), + [anon_sym___bridge_retained] = ACTIONS(5534), + [anon_sym___bridge_transfer] = ACTIONS(5534), + [anon_sym___complex] = ACTIONS(5534), + [anon_sym___const] = ACTIONS(5534), + [anon_sym___imag] = ACTIONS(5534), + [anon_sym___kindof] = ACTIONS(5534), + [anon_sym___nonnull] = ACTIONS(5534), + [anon_sym___nullable] = ACTIONS(5534), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5534), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5534), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5534), + [anon_sym___real] = ACTIONS(5534), + [anon_sym___strong] = ACTIONS(5534), + [anon_sym___unsafe_unretained] = ACTIONS(5534), + [anon_sym___unused] = ACTIONS(5534), + [anon_sym___weak] = ACTIONS(5534), + [anon_sym_alignas] = ACTIONS(5534), + [anon_sym__Alignas] = ACTIONS(5534), + [sym_primitive_type] = ACTIONS(5534), + [anon_sym_enum] = ACTIONS(5534), + [anon_sym_struct] = ACTIONS(5534), + [anon_sym_union] = ACTIONS(5534), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5534), + [anon_sym___typeof] = ACTIONS(5534), + [anon_sym_typeof] = ACTIONS(5534), + [aux_sym_preproc_undef_token1] = ACTIONS(5534), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5534), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5534), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5534), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5534), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5534), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5534), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5534), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5534), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5534), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5534), + [anon_sym_NS_AVAILABLE] = ACTIONS(5534), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5534), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5534), + [anon_sym_API_AVAILABLE] = ACTIONS(5534), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5534), + [anon_sym_API_DEPRECATED] = ACTIONS(5534), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5534), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5534), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5534), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5534), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5534), + [anon_sym___deprecated_msg] = ACTIONS(5534), + [anon_sym___deprecated_enum_msg] = ACTIONS(5534), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5534), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5534), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5534), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5534), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5534), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5534), + [anon_sym_ATend] = ACTIONS(5536), + [anon_sym_AToptional] = ACTIONS(5536), + [anon_sym_ATrequired] = ACTIONS(5536), + [anon_sym_ATproperty] = ACTIONS(5536), + [anon_sym_BOOL] = ACTIONS(5534), + [anon_sym_IMP] = ACTIONS(5534), + [anon_sym_SEL] = ACTIONS(5534), + [anon_sym_Class] = ACTIONS(5534), + [anon_sym_id] = ACTIONS(5534), + }, + [2294] = { + [sym_identifier] = ACTIONS(2432), + [aux_sym_preproc_def_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token2] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2432), + [sym_preproc_directive] = ACTIONS(2432), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym___extension__] = ACTIONS(2432), + [anon_sym_typedef] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym___attribute__] = ACTIONS(2432), + [anon_sym___attribute] = ACTIONS(2432), + [anon_sym_noreturn] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym___declspec] = ACTIONS(2432), + [anon_sym___cdecl] = ACTIONS(2432), + [anon_sym___clrcall] = ACTIONS(2432), + [anon_sym___stdcall] = ACTIONS(2432), + [anon_sym___fastcall] = ACTIONS(2432), + [anon_sym___thiscall] = ACTIONS(2432), + [anon_sym___vectorcall] = ACTIONS(2432), + [anon_sym_signed] = ACTIONS(2432), + [anon_sym_unsigned] = ACTIONS(2432), + [anon_sym_long] = ACTIONS(2432), + [anon_sym_short] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_auto] = ACTIONS(2432), + [anon_sym_register] = ACTIONS(2432), + [anon_sym_inline] = ACTIONS(2432), + [anon_sym___inline] = ACTIONS(2432), + [anon_sym___inline__] = ACTIONS(2432), + [anon_sym___forceinline] = ACTIONS(2432), + [anon_sym_thread_local] = ACTIONS(2432), + [anon_sym___thread] = ACTIONS(2432), + [anon_sym_CG_EXTERN] = ACTIONS(2432), + [anon_sym_CG_INLINE] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2432), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2432), + [anon_sym_IBOutlet] = ACTIONS(2432), + [anon_sym_IBInspectable] = ACTIONS(2432), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2432), + [anon_sym_NS_INLINE] = ACTIONS(2432), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2432), + [anon_sym_OBJC_EXPORT] = ACTIONS(2432), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_constexpr] = ACTIONS(2432), + [anon_sym_volatile] = ACTIONS(2432), + [anon_sym_restrict] = ACTIONS(2432), + [anon_sym___restrict__] = ACTIONS(2432), + [anon_sym__Atomic] = ACTIONS(2432), + [anon_sym__Noreturn] = ACTIONS(2432), + [anon_sym__Nonnull] = ACTIONS(2432), + [anon_sym_nullable] = ACTIONS(2432), + [anon_sym__Complex] = ACTIONS(2432), + [anon_sym__Nullable] = ACTIONS(2432), + [anon_sym__Nullable_result] = ACTIONS(2432), + [anon_sym__Null_unspecified] = ACTIONS(2432), + [anon_sym___autoreleasing] = ACTIONS(2432), + [anon_sym___block] = ACTIONS(2432), + [anon_sym___bridge] = ACTIONS(2432), + [anon_sym___bridge_retained] = ACTIONS(2432), + [anon_sym___bridge_transfer] = ACTIONS(2432), + [anon_sym___complex] = ACTIONS(2432), + [anon_sym___const] = ACTIONS(2432), + [anon_sym___imag] = ACTIONS(2432), + [anon_sym___kindof] = ACTIONS(2432), + [anon_sym___nonnull] = ACTIONS(2432), + [anon_sym___nullable] = ACTIONS(2432), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2432), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2432), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2432), + [anon_sym___real] = ACTIONS(2432), + [anon_sym___strong] = ACTIONS(2432), + [anon_sym___unsafe_unretained] = ACTIONS(2432), + [anon_sym___unused] = ACTIONS(2432), + [anon_sym___weak] = ACTIONS(2432), + [anon_sym_alignas] = ACTIONS(2432), + [anon_sym__Alignas] = ACTIONS(2432), + [sym_primitive_type] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2432), + [anon_sym___typeof] = ACTIONS(2432), + [anon_sym_typeof] = ACTIONS(2432), + [aux_sym_preproc_undef_token1] = ACTIONS(2432), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2432), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2432), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2432), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2432), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE] = ACTIONS(2432), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_API_AVAILABLE] = ACTIONS(2432), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_API_DEPRECATED] = ACTIONS(2432), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2432), + [anon_sym___deprecated_msg] = ACTIONS(2432), + [anon_sym___deprecated_enum_msg] = ACTIONS(2432), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2432), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2432), + [anon_sym_ATsynthesize] = ACTIONS(2434), + [anon_sym_ATdynamic] = ACTIONS(2434), + [anon_sym_ATproperty] = ACTIONS(2434), + [anon_sym_BOOL] = ACTIONS(2432), + [anon_sym_IMP] = ACTIONS(2432), + [anon_sym_SEL] = ACTIONS(2432), + [anon_sym_Class] = ACTIONS(2432), + [anon_sym_id] = ACTIONS(2432), + }, + [2295] = { + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token2] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_DASH] = ACTIONS(2426), + [anon_sym_PLUS] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_auto] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_CG_EXTERN] = ACTIONS(2424), + [anon_sym_CG_INLINE] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2424), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2424), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2424), + [anon_sym_IBOutlet] = ACTIONS(2424), + [anon_sym_IBInspectable] = ACTIONS(2424), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2424), + [anon_sym_NS_INLINE] = ACTIONS(2424), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2424), + [anon_sym_OBJC_EXPORT] = ACTIONS(2424), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_nullable] = ACTIONS(2424), + [anon_sym__Complex] = ACTIONS(2424), + [anon_sym__Nullable] = ACTIONS(2424), + [anon_sym__Nullable_result] = ACTIONS(2424), + [anon_sym__Null_unspecified] = ACTIONS(2424), + [anon_sym___autoreleasing] = ACTIONS(2424), + [anon_sym___block] = ACTIONS(2424), + [anon_sym___bridge] = ACTIONS(2424), + [anon_sym___bridge_retained] = ACTIONS(2424), + [anon_sym___bridge_transfer] = ACTIONS(2424), + [anon_sym___complex] = ACTIONS(2424), + [anon_sym___const] = ACTIONS(2424), + [anon_sym___imag] = ACTIONS(2424), + [anon_sym___kindof] = ACTIONS(2424), + [anon_sym___nonnull] = ACTIONS(2424), + [anon_sym___nullable] = ACTIONS(2424), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2424), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2424), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2424), + [anon_sym___real] = ACTIONS(2424), + [anon_sym___strong] = ACTIONS(2424), + [anon_sym___unsafe_unretained] = ACTIONS(2424), + [anon_sym___unused] = ACTIONS(2424), + [anon_sym___weak] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2424), + [anon_sym___typeof] = ACTIONS(2424), + [anon_sym_typeof] = ACTIONS(2424), + [aux_sym_preproc_undef_token1] = ACTIONS(2424), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2424), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2424), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2424), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2424), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2424), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE] = ACTIONS(2424), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2424), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_API_AVAILABLE] = ACTIONS(2424), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_API_DEPRECATED] = ACTIONS(2424), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2424), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2424), + [anon_sym___deprecated_msg] = ACTIONS(2424), + [anon_sym___deprecated_enum_msg] = ACTIONS(2424), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2424), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2424), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2424), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2424), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2424), + [anon_sym_ATsynthesize] = ACTIONS(2426), + [anon_sym_ATdynamic] = ACTIONS(2426), + [anon_sym_ATproperty] = ACTIONS(2426), + [anon_sym_BOOL] = ACTIONS(2424), + [anon_sym_IMP] = ACTIONS(2424), + [anon_sym_SEL] = ACTIONS(2424), + [anon_sym_Class] = ACTIONS(2424), + [anon_sym_id] = ACTIONS(2424), + }, + [2296] = { + [sym_identifier] = ACTIONS(2432), + [aux_sym_preproc_def_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token2] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2432), + [sym_preproc_directive] = ACTIONS(2432), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym___extension__] = ACTIONS(2432), + [anon_sym_typedef] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym___attribute__] = ACTIONS(2432), + [anon_sym___attribute] = ACTIONS(2432), + [anon_sym_noreturn] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym___declspec] = ACTIONS(2432), + [anon_sym___cdecl] = ACTIONS(2432), + [anon_sym___clrcall] = ACTIONS(2432), + [anon_sym___stdcall] = ACTIONS(2432), + [anon_sym___fastcall] = ACTIONS(2432), + [anon_sym___thiscall] = ACTIONS(2432), + [anon_sym___vectorcall] = ACTIONS(2432), + [anon_sym_signed] = ACTIONS(2432), + [anon_sym_unsigned] = ACTIONS(2432), + [anon_sym_long] = ACTIONS(2432), + [anon_sym_short] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_auto] = ACTIONS(2432), + [anon_sym_register] = ACTIONS(2432), + [anon_sym_inline] = ACTIONS(2432), + [anon_sym___inline] = ACTIONS(2432), + [anon_sym___inline__] = ACTIONS(2432), + [anon_sym___forceinline] = ACTIONS(2432), + [anon_sym_thread_local] = ACTIONS(2432), + [anon_sym___thread] = ACTIONS(2432), + [anon_sym_CG_EXTERN] = ACTIONS(2432), + [anon_sym_CG_INLINE] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2432), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2432), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2432), + [anon_sym_IBOutlet] = ACTIONS(2432), + [anon_sym_IBInspectable] = ACTIONS(2432), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2432), + [anon_sym_NS_INLINE] = ACTIONS(2432), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2432), + [anon_sym_OBJC_EXPORT] = ACTIONS(2432), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_constexpr] = ACTIONS(2432), + [anon_sym_volatile] = ACTIONS(2432), + [anon_sym_restrict] = ACTIONS(2432), + [anon_sym___restrict__] = ACTIONS(2432), + [anon_sym__Atomic] = ACTIONS(2432), + [anon_sym__Noreturn] = ACTIONS(2432), + [anon_sym__Nonnull] = ACTIONS(2432), + [anon_sym_nullable] = ACTIONS(2432), + [anon_sym__Complex] = ACTIONS(2432), + [anon_sym__Nullable] = ACTIONS(2432), + [anon_sym__Nullable_result] = ACTIONS(2432), + [anon_sym__Null_unspecified] = ACTIONS(2432), + [anon_sym___autoreleasing] = ACTIONS(2432), + [anon_sym___block] = ACTIONS(2432), + [anon_sym___bridge] = ACTIONS(2432), + [anon_sym___bridge_retained] = ACTIONS(2432), + [anon_sym___bridge_transfer] = ACTIONS(2432), + [anon_sym___complex] = ACTIONS(2432), + [anon_sym___const] = ACTIONS(2432), + [anon_sym___imag] = ACTIONS(2432), + [anon_sym___kindof] = ACTIONS(2432), + [anon_sym___nonnull] = ACTIONS(2432), + [anon_sym___nullable] = ACTIONS(2432), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2432), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2432), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2432), + [anon_sym___real] = ACTIONS(2432), + [anon_sym___strong] = ACTIONS(2432), + [anon_sym___unsafe_unretained] = ACTIONS(2432), + [anon_sym___unused] = ACTIONS(2432), + [anon_sym___weak] = ACTIONS(2432), + [anon_sym_alignas] = ACTIONS(2432), + [anon_sym__Alignas] = ACTIONS(2432), + [sym_primitive_type] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2432), + [anon_sym___typeof] = ACTIONS(2432), + [anon_sym_typeof] = ACTIONS(2432), + [aux_sym_preproc_undef_token1] = ACTIONS(2432), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2432), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2432), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2432), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2432), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2432), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE] = ACTIONS(2432), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2432), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_API_AVAILABLE] = ACTIONS(2432), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_API_DEPRECATED] = ACTIONS(2432), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2432), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2432), + [anon_sym___deprecated_msg] = ACTIONS(2432), + [anon_sym___deprecated_enum_msg] = ACTIONS(2432), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2432), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2432), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2432), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2432), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2432), + [anon_sym_ATsynthesize] = ACTIONS(2434), + [anon_sym_ATdynamic] = ACTIONS(2434), + [anon_sym_ATproperty] = ACTIONS(2434), + [anon_sym_BOOL] = ACTIONS(2432), + [anon_sym_IMP] = ACTIONS(2432), + [anon_sym_SEL] = ACTIONS(2432), + [anon_sym_Class] = ACTIONS(2432), + [anon_sym_id] = ACTIONS(2432), + }, + [2297] = { + [sym_identifier] = ACTIONS(2428), + [aux_sym_preproc_def_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token2] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2428), + [sym_preproc_directive] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2430), + [anon_sym_PLUS] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym___cdecl] = ACTIONS(2428), + [anon_sym___clrcall] = ACTIONS(2428), + [anon_sym___stdcall] = ACTIONS(2428), + [anon_sym___fastcall] = ACTIONS(2428), + [anon_sym___thiscall] = ACTIONS(2428), + [anon_sym___vectorcall] = ACTIONS(2428), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_auto] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_CG_EXTERN] = ACTIONS(2428), + [anon_sym_CG_INLINE] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2428), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2428), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2428), + [anon_sym_IBOutlet] = ACTIONS(2428), + [anon_sym_IBInspectable] = ACTIONS(2428), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2428), + [anon_sym_NS_INLINE] = ACTIONS(2428), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2428), + [anon_sym_OBJC_EXPORT] = ACTIONS(2428), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_nullable] = ACTIONS(2428), + [anon_sym__Complex] = ACTIONS(2428), + [anon_sym__Nullable] = ACTIONS(2428), + [anon_sym__Nullable_result] = ACTIONS(2428), + [anon_sym__Null_unspecified] = ACTIONS(2428), + [anon_sym___autoreleasing] = ACTIONS(2428), + [anon_sym___block] = ACTIONS(2428), + [anon_sym___bridge] = ACTIONS(2428), + [anon_sym___bridge_retained] = ACTIONS(2428), + [anon_sym___bridge_transfer] = ACTIONS(2428), + [anon_sym___complex] = ACTIONS(2428), + [anon_sym___const] = ACTIONS(2428), + [anon_sym___imag] = ACTIONS(2428), + [anon_sym___kindof] = ACTIONS(2428), + [anon_sym___nonnull] = ACTIONS(2428), + [anon_sym___nullable] = ACTIONS(2428), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2428), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2428), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2428), + [anon_sym___real] = ACTIONS(2428), + [anon_sym___strong] = ACTIONS(2428), + [anon_sym___unsafe_unretained] = ACTIONS(2428), + [anon_sym___unused] = ACTIONS(2428), + [anon_sym___weak] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2428), + [anon_sym___typeof] = ACTIONS(2428), + [anon_sym_typeof] = ACTIONS(2428), + [aux_sym_preproc_undef_token1] = ACTIONS(2428), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2428), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2428), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2428), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2428), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2428), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE] = ACTIONS(2428), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2428), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_API_AVAILABLE] = ACTIONS(2428), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_API_DEPRECATED] = ACTIONS(2428), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2428), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2428), + [anon_sym___deprecated_msg] = ACTIONS(2428), + [anon_sym___deprecated_enum_msg] = ACTIONS(2428), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2428), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2428), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2428), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2428), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2428), + [anon_sym_ATsynthesize] = ACTIONS(2430), + [anon_sym_ATdynamic] = ACTIONS(2430), + [anon_sym_ATproperty] = ACTIONS(2430), + [anon_sym_BOOL] = ACTIONS(2428), + [anon_sym_IMP] = ACTIONS(2428), + [anon_sym_SEL] = ACTIONS(2428), + [anon_sym_Class] = ACTIONS(2428), + [anon_sym_id] = ACTIONS(2428), + }, + [2298] = { + [sym_identifier] = ACTIONS(2446), + [aux_sym_preproc_def_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token2] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2446), + [sym_preproc_directive] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2448), + [anon_sym_PLUS] = ACTIONS(2448), + [anon_sym___extension__] = ACTIONS(2446), + [anon_sym_typedef] = ACTIONS(2446), + [anon_sym_extern] = ACTIONS(2446), + [anon_sym___attribute__] = ACTIONS(2446), + [anon_sym___attribute] = ACTIONS(2446), + [anon_sym_noreturn] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym___declspec] = ACTIONS(2446), + [anon_sym___cdecl] = ACTIONS(2446), + [anon_sym___clrcall] = ACTIONS(2446), + [anon_sym___stdcall] = ACTIONS(2446), + [anon_sym___fastcall] = ACTIONS(2446), + [anon_sym___thiscall] = ACTIONS(2446), + [anon_sym___vectorcall] = ACTIONS(2446), + [anon_sym_signed] = ACTIONS(2446), + [anon_sym_unsigned] = ACTIONS(2446), + [anon_sym_long] = ACTIONS(2446), + [anon_sym_short] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_auto] = ACTIONS(2446), + [anon_sym_register] = ACTIONS(2446), + [anon_sym_inline] = ACTIONS(2446), + [anon_sym___inline] = ACTIONS(2446), + [anon_sym___inline__] = ACTIONS(2446), + [anon_sym___forceinline] = ACTIONS(2446), + [anon_sym_thread_local] = ACTIONS(2446), + [anon_sym___thread] = ACTIONS(2446), + [anon_sym_CG_EXTERN] = ACTIONS(2446), + [anon_sym_CG_INLINE] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2446), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2446), + [anon_sym_IBOutlet] = ACTIONS(2446), + [anon_sym_IBInspectable] = ACTIONS(2446), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2446), + [anon_sym_NS_INLINE] = ACTIONS(2446), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2446), + [anon_sym_OBJC_EXPORT] = ACTIONS(2446), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [anon_sym_constexpr] = ACTIONS(2446), + [anon_sym_volatile] = ACTIONS(2446), + [anon_sym_restrict] = ACTIONS(2446), + [anon_sym___restrict__] = ACTIONS(2446), + [anon_sym__Atomic] = ACTIONS(2446), + [anon_sym__Noreturn] = ACTIONS(2446), + [anon_sym__Nonnull] = ACTIONS(2446), + [anon_sym_nullable] = ACTIONS(2446), + [anon_sym__Complex] = ACTIONS(2446), + [anon_sym__Nullable] = ACTIONS(2446), + [anon_sym__Nullable_result] = ACTIONS(2446), + [anon_sym__Null_unspecified] = ACTIONS(2446), + [anon_sym___autoreleasing] = ACTIONS(2446), + [anon_sym___block] = ACTIONS(2446), + [anon_sym___bridge] = ACTIONS(2446), + [anon_sym___bridge_retained] = ACTIONS(2446), + [anon_sym___bridge_transfer] = ACTIONS(2446), + [anon_sym___complex] = ACTIONS(2446), + [anon_sym___const] = ACTIONS(2446), + [anon_sym___imag] = ACTIONS(2446), + [anon_sym___kindof] = ACTIONS(2446), + [anon_sym___nonnull] = ACTIONS(2446), + [anon_sym___nullable] = ACTIONS(2446), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2446), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2446), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2446), + [anon_sym___real] = ACTIONS(2446), + [anon_sym___strong] = ACTIONS(2446), + [anon_sym___unsafe_unretained] = ACTIONS(2446), + [anon_sym___unused] = ACTIONS(2446), + [anon_sym___weak] = ACTIONS(2446), + [anon_sym_alignas] = ACTIONS(2446), + [anon_sym__Alignas] = ACTIONS(2446), + [sym_primitive_type] = ACTIONS(2446), + [anon_sym_enum] = ACTIONS(2446), + [anon_sym_struct] = ACTIONS(2446), + [anon_sym_union] = ACTIONS(2446), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2446), + [anon_sym___typeof] = ACTIONS(2446), + [anon_sym_typeof] = ACTIONS(2446), + [aux_sym_preproc_undef_token1] = ACTIONS(2446), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2446), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2446), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2446), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2446), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE] = ACTIONS(2446), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_API_AVAILABLE] = ACTIONS(2446), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_API_DEPRECATED] = ACTIONS(2446), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2446), + [anon_sym___deprecated_msg] = ACTIONS(2446), + [anon_sym___deprecated_enum_msg] = ACTIONS(2446), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2446), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2446), + [anon_sym_ATsynthesize] = ACTIONS(2448), + [anon_sym_ATdynamic] = ACTIONS(2448), + [anon_sym_ATproperty] = ACTIONS(2448), + [anon_sym_BOOL] = ACTIONS(2446), + [anon_sym_IMP] = ACTIONS(2446), + [anon_sym_SEL] = ACTIONS(2446), + [anon_sym_Class] = ACTIONS(2446), + [anon_sym_id] = ACTIONS(2446), + }, + [2299] = { + [aux_sym_method_declaration_repeat2] = STATE(2269), + [sym_identifier] = ACTIONS(5359), + [aux_sym_preproc_def_token1] = ACTIONS(5359), + [aux_sym_preproc_if_token1] = ACTIONS(5359), + [aux_sym_preproc_if_token2] = ACTIONS(5359), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5359), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5359), + [sym_preproc_directive] = ACTIONS(5359), + [anon_sym_DASH] = ACTIONS(5361), + [anon_sym_PLUS] = ACTIONS(5361), + [anon_sym_SEMI] = ACTIONS(5477), + [anon_sym___extension__] = ACTIONS(5359), + [anon_sym_typedef] = ACTIONS(5359), + [anon_sym_extern] = ACTIONS(5359), + [anon_sym___attribute__] = ACTIONS(5359), + [anon_sym___attribute] = ACTIONS(5359), + [anon_sym_noreturn] = ACTIONS(5359), + [anon_sym_LBRACK] = ACTIONS(5361), + [anon_sym___declspec] = ACTIONS(5359), + [anon_sym___cdecl] = ACTIONS(5359), + [anon_sym___clrcall] = ACTIONS(5359), + [anon_sym___stdcall] = ACTIONS(5359), + [anon_sym___fastcall] = ACTIONS(5359), + [anon_sym___thiscall] = ACTIONS(5359), + [anon_sym___vectorcall] = ACTIONS(5359), + [anon_sym_signed] = ACTIONS(5359), + [anon_sym_unsigned] = ACTIONS(5359), + [anon_sym_long] = ACTIONS(5359), + [anon_sym_short] = ACTIONS(5359), + [anon_sym_static] = ACTIONS(5359), + [anon_sym_auto] = ACTIONS(5359), + [anon_sym_register] = ACTIONS(5359), + [anon_sym_inline] = ACTIONS(5359), + [anon_sym___inline] = ACTIONS(5359), + [anon_sym___inline__] = ACTIONS(5359), + [anon_sym___forceinline] = ACTIONS(5359), + [anon_sym_thread_local] = ACTIONS(5359), + [anon_sym___thread] = ACTIONS(5359), + [anon_sym_CG_EXTERN] = ACTIONS(5359), + [anon_sym_CG_INLINE] = ACTIONS(5359), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5359), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5359), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5359), + [anon_sym_IBOutlet] = ACTIONS(5359), + [anon_sym_IBInspectable] = ACTIONS(5359), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5359), + [anon_sym_NS_INLINE] = ACTIONS(5359), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5359), + [anon_sym_OBJC_EXPORT] = ACTIONS(5359), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5359), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5359), + [anon_sym_const] = ACTIONS(5359), + [anon_sym_constexpr] = ACTIONS(5359), + [anon_sym_volatile] = ACTIONS(5359), + [anon_sym_restrict] = ACTIONS(5359), + [anon_sym___restrict__] = ACTIONS(5359), + [anon_sym__Atomic] = ACTIONS(5359), + [anon_sym__Noreturn] = ACTIONS(5359), + [anon_sym__Nonnull] = ACTIONS(5359), + [anon_sym_nullable] = ACTIONS(5359), + [anon_sym__Complex] = ACTIONS(5359), + [anon_sym__Nullable] = ACTIONS(5359), + [anon_sym__Nullable_result] = ACTIONS(5359), + [anon_sym__Null_unspecified] = ACTIONS(5359), + [anon_sym___autoreleasing] = ACTIONS(5359), + [anon_sym___block] = ACTIONS(5359), + [anon_sym___bridge] = ACTIONS(5359), + [anon_sym___bridge_retained] = ACTIONS(5359), + [anon_sym___bridge_transfer] = ACTIONS(5359), + [anon_sym___complex] = ACTIONS(5359), + [anon_sym___const] = ACTIONS(5359), + [anon_sym___imag] = ACTIONS(5359), + [anon_sym___kindof] = ACTIONS(5359), + [anon_sym___nonnull] = ACTIONS(5359), + [anon_sym___nullable] = ACTIONS(5359), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5359), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5359), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5359), + [anon_sym___real] = ACTIONS(5359), + [anon_sym___strong] = ACTIONS(5359), + [anon_sym___unsafe_unretained] = ACTIONS(5359), + [anon_sym___unused] = ACTIONS(5359), + [anon_sym___weak] = ACTIONS(5359), + [anon_sym_alignas] = ACTIONS(5359), + [anon_sym__Alignas] = ACTIONS(5359), + [sym_primitive_type] = ACTIONS(5359), + [anon_sym_enum] = ACTIONS(5359), + [anon_sym_struct] = ACTIONS(5359), + [anon_sym_union] = ACTIONS(5359), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5359), + [anon_sym___typeof] = ACTIONS(5359), + [anon_sym_typeof] = ACTIONS(5359), + [aux_sym_preproc_undef_token1] = ACTIONS(5359), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5359), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5359), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5359), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5359), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5359), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5359), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5359), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5359), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5359), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5359), + [anon_sym_NS_AVAILABLE] = ACTIONS(5359), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5359), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5359), + [anon_sym_API_AVAILABLE] = ACTIONS(5359), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5359), + [anon_sym_API_DEPRECATED] = ACTIONS(5359), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5359), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5359), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5359), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5359), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5359), + [anon_sym___deprecated_msg] = ACTIONS(5359), + [anon_sym___deprecated_enum_msg] = ACTIONS(5359), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5359), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5359), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5359), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5359), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5359), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5359), + [anon_sym_ATproperty] = ACTIONS(5361), + [anon_sym_BOOL] = ACTIONS(5359), + [anon_sym_IMP] = ACTIONS(5359), + [anon_sym_SEL] = ACTIONS(5359), + [anon_sym_Class] = ACTIONS(5359), + [anon_sym_id] = ACTIONS(5359), + }, + [2300] = { + [sym_identifier] = ACTIONS(2450), + [aux_sym_preproc_def_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token2] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2450), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym___cdecl] = ACTIONS(2450), + [anon_sym___clrcall] = ACTIONS(2450), + [anon_sym___stdcall] = ACTIONS(2450), + [anon_sym___fastcall] = ACTIONS(2450), + [anon_sym___thiscall] = ACTIONS(2450), + [anon_sym___vectorcall] = ACTIONS(2450), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_auto] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_CG_EXTERN] = ACTIONS(2450), + [anon_sym_CG_INLINE] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2450), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2450), + [anon_sym_IBOutlet] = ACTIONS(2450), + [anon_sym_IBInspectable] = ACTIONS(2450), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2450), + [anon_sym_NS_INLINE] = ACTIONS(2450), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2450), + [anon_sym_OBJC_EXPORT] = ACTIONS(2450), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_nullable] = ACTIONS(2450), + [anon_sym__Complex] = ACTIONS(2450), + [anon_sym__Nullable] = ACTIONS(2450), + [anon_sym__Nullable_result] = ACTIONS(2450), + [anon_sym__Null_unspecified] = ACTIONS(2450), + [anon_sym___autoreleasing] = ACTIONS(2450), + [anon_sym___block] = ACTIONS(2450), + [anon_sym___bridge] = ACTIONS(2450), + [anon_sym___bridge_retained] = ACTIONS(2450), + [anon_sym___bridge_transfer] = ACTIONS(2450), + [anon_sym___complex] = ACTIONS(2450), + [anon_sym___const] = ACTIONS(2450), + [anon_sym___imag] = ACTIONS(2450), + [anon_sym___kindof] = ACTIONS(2450), + [anon_sym___nonnull] = ACTIONS(2450), + [anon_sym___nullable] = ACTIONS(2450), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2450), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2450), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2450), + [anon_sym___real] = ACTIONS(2450), + [anon_sym___strong] = ACTIONS(2450), + [anon_sym___unsafe_unretained] = ACTIONS(2450), + [anon_sym___unused] = ACTIONS(2450), + [anon_sym___weak] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2450), + [anon_sym___typeof] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [aux_sym_preproc_undef_token1] = ACTIONS(2450), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2450), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2450), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2450), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2450), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE] = ACTIONS(2450), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_API_AVAILABLE] = ACTIONS(2450), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_API_DEPRECATED] = ACTIONS(2450), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2450), + [anon_sym___deprecated_msg] = ACTIONS(2450), + [anon_sym___deprecated_enum_msg] = ACTIONS(2450), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2450), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2450), + [anon_sym_ATsynthesize] = ACTIONS(2452), + [anon_sym_ATdynamic] = ACTIONS(2452), + [anon_sym_ATproperty] = ACTIONS(2452), + [anon_sym_BOOL] = ACTIONS(2450), + [anon_sym_IMP] = ACTIONS(2450), + [anon_sym_SEL] = ACTIONS(2450), + [anon_sym_Class] = ACTIONS(2450), + [anon_sym_id] = ACTIONS(2450), + }, + [2301] = { + [sym_identifier] = ACTIONS(2454), + [aux_sym_preproc_def_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token2] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2454), + [sym_preproc_directive] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym___extension__] = ACTIONS(2454), + [anon_sym_typedef] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym___attribute__] = ACTIONS(2454), + [anon_sym___attribute] = ACTIONS(2454), + [anon_sym_noreturn] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym___declspec] = ACTIONS(2454), + [anon_sym___cdecl] = ACTIONS(2454), + [anon_sym___clrcall] = ACTIONS(2454), + [anon_sym___stdcall] = ACTIONS(2454), + [anon_sym___fastcall] = ACTIONS(2454), + [anon_sym___thiscall] = ACTIONS(2454), + [anon_sym___vectorcall] = ACTIONS(2454), + [anon_sym_signed] = ACTIONS(2454), + [anon_sym_unsigned] = ACTIONS(2454), + [anon_sym_long] = ACTIONS(2454), + [anon_sym_short] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_auto] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_inline] = ACTIONS(2454), + [anon_sym___inline] = ACTIONS(2454), + [anon_sym___inline__] = ACTIONS(2454), + [anon_sym___forceinline] = ACTIONS(2454), + [anon_sym_thread_local] = ACTIONS(2454), + [anon_sym___thread] = ACTIONS(2454), + [anon_sym_CG_EXTERN] = ACTIONS(2454), + [anon_sym_CG_INLINE] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2454), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2454), + [anon_sym_IBOutlet] = ACTIONS(2454), + [anon_sym_IBInspectable] = ACTIONS(2454), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2454), + [anon_sym_NS_INLINE] = ACTIONS(2454), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2454), + [anon_sym_OBJC_EXPORT] = ACTIONS(2454), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_constexpr] = ACTIONS(2454), + [anon_sym_volatile] = ACTIONS(2454), + [anon_sym_restrict] = ACTIONS(2454), + [anon_sym___restrict__] = ACTIONS(2454), + [anon_sym__Atomic] = ACTIONS(2454), + [anon_sym__Noreturn] = ACTIONS(2454), + [anon_sym__Nonnull] = ACTIONS(2454), + [anon_sym_nullable] = ACTIONS(2454), + [anon_sym__Complex] = ACTIONS(2454), + [anon_sym__Nullable] = ACTIONS(2454), + [anon_sym__Nullable_result] = ACTIONS(2454), + [anon_sym__Null_unspecified] = ACTIONS(2454), + [anon_sym___autoreleasing] = ACTIONS(2454), + [anon_sym___block] = ACTIONS(2454), + [anon_sym___bridge] = ACTIONS(2454), + [anon_sym___bridge_retained] = ACTIONS(2454), + [anon_sym___bridge_transfer] = ACTIONS(2454), + [anon_sym___complex] = ACTIONS(2454), + [anon_sym___const] = ACTIONS(2454), + [anon_sym___imag] = ACTIONS(2454), + [anon_sym___kindof] = ACTIONS(2454), + [anon_sym___nonnull] = ACTIONS(2454), + [anon_sym___nullable] = ACTIONS(2454), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2454), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2454), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2454), + [anon_sym___real] = ACTIONS(2454), + [anon_sym___strong] = ACTIONS(2454), + [anon_sym___unsafe_unretained] = ACTIONS(2454), + [anon_sym___unused] = ACTIONS(2454), + [anon_sym___weak] = ACTIONS(2454), + [anon_sym_alignas] = ACTIONS(2454), + [anon_sym__Alignas] = ACTIONS(2454), + [sym_primitive_type] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2454), + [anon_sym___typeof] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(2454), + [aux_sym_preproc_undef_token1] = ACTIONS(2454), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2454), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2454), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2454), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2454), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE] = ACTIONS(2454), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_API_AVAILABLE] = ACTIONS(2454), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_API_DEPRECATED] = ACTIONS(2454), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2454), + [anon_sym___deprecated_msg] = ACTIONS(2454), + [anon_sym___deprecated_enum_msg] = ACTIONS(2454), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2454), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2454), + [anon_sym_ATsynthesize] = ACTIONS(2456), + [anon_sym_ATdynamic] = ACTIONS(2456), + [anon_sym_ATproperty] = ACTIONS(2456), + [anon_sym_BOOL] = ACTIONS(2454), + [anon_sym_IMP] = ACTIONS(2454), + [anon_sym_SEL] = ACTIONS(2454), + [anon_sym_Class] = ACTIONS(2454), + [anon_sym_id] = ACTIONS(2454), + }, + [2302] = { + [sym_identifier] = ACTIONS(2454), + [aux_sym_preproc_def_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token2] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2454), + [sym_preproc_directive] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym___extension__] = ACTIONS(2454), + [anon_sym_typedef] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym___attribute__] = ACTIONS(2454), + [anon_sym___attribute] = ACTIONS(2454), + [anon_sym_noreturn] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym___declspec] = ACTIONS(2454), + [anon_sym___cdecl] = ACTIONS(2454), + [anon_sym___clrcall] = ACTIONS(2454), + [anon_sym___stdcall] = ACTIONS(2454), + [anon_sym___fastcall] = ACTIONS(2454), + [anon_sym___thiscall] = ACTIONS(2454), + [anon_sym___vectorcall] = ACTIONS(2454), + [anon_sym_signed] = ACTIONS(2454), + [anon_sym_unsigned] = ACTIONS(2454), + [anon_sym_long] = ACTIONS(2454), + [anon_sym_short] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_auto] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_inline] = ACTIONS(2454), + [anon_sym___inline] = ACTIONS(2454), + [anon_sym___inline__] = ACTIONS(2454), + [anon_sym___forceinline] = ACTIONS(2454), + [anon_sym_thread_local] = ACTIONS(2454), + [anon_sym___thread] = ACTIONS(2454), + [anon_sym_CG_EXTERN] = ACTIONS(2454), + [anon_sym_CG_INLINE] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2454), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2454), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2454), + [anon_sym_IBOutlet] = ACTIONS(2454), + [anon_sym_IBInspectable] = ACTIONS(2454), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2454), + [anon_sym_NS_INLINE] = ACTIONS(2454), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2454), + [anon_sym_OBJC_EXPORT] = ACTIONS(2454), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_constexpr] = ACTIONS(2454), + [anon_sym_volatile] = ACTIONS(2454), + [anon_sym_restrict] = ACTIONS(2454), + [anon_sym___restrict__] = ACTIONS(2454), + [anon_sym__Atomic] = ACTIONS(2454), + [anon_sym__Noreturn] = ACTIONS(2454), + [anon_sym__Nonnull] = ACTIONS(2454), + [anon_sym_nullable] = ACTIONS(2454), + [anon_sym__Complex] = ACTIONS(2454), + [anon_sym__Nullable] = ACTIONS(2454), + [anon_sym__Nullable_result] = ACTIONS(2454), + [anon_sym__Null_unspecified] = ACTIONS(2454), + [anon_sym___autoreleasing] = ACTIONS(2454), + [anon_sym___block] = ACTIONS(2454), + [anon_sym___bridge] = ACTIONS(2454), + [anon_sym___bridge_retained] = ACTIONS(2454), + [anon_sym___bridge_transfer] = ACTIONS(2454), + [anon_sym___complex] = ACTIONS(2454), + [anon_sym___const] = ACTIONS(2454), + [anon_sym___imag] = ACTIONS(2454), + [anon_sym___kindof] = ACTIONS(2454), + [anon_sym___nonnull] = ACTIONS(2454), + [anon_sym___nullable] = ACTIONS(2454), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2454), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2454), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2454), + [anon_sym___real] = ACTIONS(2454), + [anon_sym___strong] = ACTIONS(2454), + [anon_sym___unsafe_unretained] = ACTIONS(2454), + [anon_sym___unused] = ACTIONS(2454), + [anon_sym___weak] = ACTIONS(2454), + [anon_sym_alignas] = ACTIONS(2454), + [anon_sym__Alignas] = ACTIONS(2454), + [sym_primitive_type] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2454), + [anon_sym___typeof] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(2454), + [aux_sym_preproc_undef_token1] = ACTIONS(2454), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2454), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2454), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2454), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2454), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2454), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE] = ACTIONS(2454), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2454), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_API_AVAILABLE] = ACTIONS(2454), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_API_DEPRECATED] = ACTIONS(2454), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2454), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2454), + [anon_sym___deprecated_msg] = ACTIONS(2454), + [anon_sym___deprecated_enum_msg] = ACTIONS(2454), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2454), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2454), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2454), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2454), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2454), + [anon_sym_ATsynthesize] = ACTIONS(2456), + [anon_sym_ATdynamic] = ACTIONS(2456), + [anon_sym_ATproperty] = ACTIONS(2456), + [anon_sym_BOOL] = ACTIONS(2454), + [anon_sym_IMP] = ACTIONS(2454), + [anon_sym_SEL] = ACTIONS(2454), + [anon_sym_Class] = ACTIONS(2454), + [anon_sym_id] = ACTIONS(2454), + }, + [2303] = { + [sym_identifier] = ACTIONS(2446), + [aux_sym_preproc_def_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token1] = ACTIONS(2446), + [aux_sym_preproc_if_token2] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2446), + [sym_preproc_directive] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2448), + [anon_sym_PLUS] = ACTIONS(2448), + [anon_sym___extension__] = ACTIONS(2446), + [anon_sym_typedef] = ACTIONS(2446), + [anon_sym_extern] = ACTIONS(2446), + [anon_sym___attribute__] = ACTIONS(2446), + [anon_sym___attribute] = ACTIONS(2446), + [anon_sym_noreturn] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym___declspec] = ACTIONS(2446), + [anon_sym___cdecl] = ACTIONS(2446), + [anon_sym___clrcall] = ACTIONS(2446), + [anon_sym___stdcall] = ACTIONS(2446), + [anon_sym___fastcall] = ACTIONS(2446), + [anon_sym___thiscall] = ACTIONS(2446), + [anon_sym___vectorcall] = ACTIONS(2446), + [anon_sym_signed] = ACTIONS(2446), + [anon_sym_unsigned] = ACTIONS(2446), + [anon_sym_long] = ACTIONS(2446), + [anon_sym_short] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_auto] = ACTIONS(2446), + [anon_sym_register] = ACTIONS(2446), + [anon_sym_inline] = ACTIONS(2446), + [anon_sym___inline] = ACTIONS(2446), + [anon_sym___inline__] = ACTIONS(2446), + [anon_sym___forceinline] = ACTIONS(2446), + [anon_sym_thread_local] = ACTIONS(2446), + [anon_sym___thread] = ACTIONS(2446), + [anon_sym_CG_EXTERN] = ACTIONS(2446), + [anon_sym_CG_INLINE] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2446), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2446), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2446), + [anon_sym_IBOutlet] = ACTIONS(2446), + [anon_sym_IBInspectable] = ACTIONS(2446), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2446), + [anon_sym_NS_INLINE] = ACTIONS(2446), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2446), + [anon_sym_OBJC_EXPORT] = ACTIONS(2446), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [anon_sym_constexpr] = ACTIONS(2446), + [anon_sym_volatile] = ACTIONS(2446), + [anon_sym_restrict] = ACTIONS(2446), + [anon_sym___restrict__] = ACTIONS(2446), + [anon_sym__Atomic] = ACTIONS(2446), + [anon_sym__Noreturn] = ACTIONS(2446), + [anon_sym__Nonnull] = ACTIONS(2446), + [anon_sym_nullable] = ACTIONS(2446), + [anon_sym__Complex] = ACTIONS(2446), + [anon_sym__Nullable] = ACTIONS(2446), + [anon_sym__Nullable_result] = ACTIONS(2446), + [anon_sym__Null_unspecified] = ACTIONS(2446), + [anon_sym___autoreleasing] = ACTIONS(2446), + [anon_sym___block] = ACTIONS(2446), + [anon_sym___bridge] = ACTIONS(2446), + [anon_sym___bridge_retained] = ACTIONS(2446), + [anon_sym___bridge_transfer] = ACTIONS(2446), + [anon_sym___complex] = ACTIONS(2446), + [anon_sym___const] = ACTIONS(2446), + [anon_sym___imag] = ACTIONS(2446), + [anon_sym___kindof] = ACTIONS(2446), + [anon_sym___nonnull] = ACTIONS(2446), + [anon_sym___nullable] = ACTIONS(2446), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2446), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2446), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2446), + [anon_sym___real] = ACTIONS(2446), + [anon_sym___strong] = ACTIONS(2446), + [anon_sym___unsafe_unretained] = ACTIONS(2446), + [anon_sym___unused] = ACTIONS(2446), + [anon_sym___weak] = ACTIONS(2446), + [anon_sym_alignas] = ACTIONS(2446), + [anon_sym__Alignas] = ACTIONS(2446), + [sym_primitive_type] = ACTIONS(2446), + [anon_sym_enum] = ACTIONS(2446), + [anon_sym_struct] = ACTIONS(2446), + [anon_sym_union] = ACTIONS(2446), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2446), + [anon_sym___typeof] = ACTIONS(2446), + [anon_sym_typeof] = ACTIONS(2446), + [aux_sym_preproc_undef_token1] = ACTIONS(2446), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2446), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2446), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2446), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2446), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2446), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2446), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE] = ACTIONS(2446), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2446), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_API_AVAILABLE] = ACTIONS(2446), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_API_DEPRECATED] = ACTIONS(2446), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2446), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2446), + [anon_sym___deprecated_msg] = ACTIONS(2446), + [anon_sym___deprecated_enum_msg] = ACTIONS(2446), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2446), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2446), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2446), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2446), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2446), + [anon_sym_ATsynthesize] = ACTIONS(2448), + [anon_sym_ATdynamic] = ACTIONS(2448), + [anon_sym_ATproperty] = ACTIONS(2448), + [anon_sym_BOOL] = ACTIONS(2446), + [anon_sym_IMP] = ACTIONS(2446), + [anon_sym_SEL] = ACTIONS(2446), + [anon_sym_Class] = ACTIONS(2446), + [anon_sym_id] = ACTIONS(2446), + }, + [2304] = { + [sym_identifier] = ACTIONS(2450), + [aux_sym_preproc_def_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token2] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2450), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym___cdecl] = ACTIONS(2450), + [anon_sym___clrcall] = ACTIONS(2450), + [anon_sym___stdcall] = ACTIONS(2450), + [anon_sym___fastcall] = ACTIONS(2450), + [anon_sym___thiscall] = ACTIONS(2450), + [anon_sym___vectorcall] = ACTIONS(2450), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_auto] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_CG_EXTERN] = ACTIONS(2450), + [anon_sym_CG_INLINE] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2450), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2450), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2450), + [anon_sym_IBOutlet] = ACTIONS(2450), + [anon_sym_IBInspectable] = ACTIONS(2450), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2450), + [anon_sym_NS_INLINE] = ACTIONS(2450), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2450), + [anon_sym_OBJC_EXPORT] = ACTIONS(2450), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_nullable] = ACTIONS(2450), + [anon_sym__Complex] = ACTIONS(2450), + [anon_sym__Nullable] = ACTIONS(2450), + [anon_sym__Nullable_result] = ACTIONS(2450), + [anon_sym__Null_unspecified] = ACTIONS(2450), + [anon_sym___autoreleasing] = ACTIONS(2450), + [anon_sym___block] = ACTIONS(2450), + [anon_sym___bridge] = ACTIONS(2450), + [anon_sym___bridge_retained] = ACTIONS(2450), + [anon_sym___bridge_transfer] = ACTIONS(2450), + [anon_sym___complex] = ACTIONS(2450), + [anon_sym___const] = ACTIONS(2450), + [anon_sym___imag] = ACTIONS(2450), + [anon_sym___kindof] = ACTIONS(2450), + [anon_sym___nonnull] = ACTIONS(2450), + [anon_sym___nullable] = ACTIONS(2450), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2450), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2450), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2450), + [anon_sym___real] = ACTIONS(2450), + [anon_sym___strong] = ACTIONS(2450), + [anon_sym___unsafe_unretained] = ACTIONS(2450), + [anon_sym___unused] = ACTIONS(2450), + [anon_sym___weak] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2450), + [anon_sym___typeof] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [aux_sym_preproc_undef_token1] = ACTIONS(2450), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2450), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2450), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2450), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2450), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2450), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE] = ACTIONS(2450), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2450), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_API_AVAILABLE] = ACTIONS(2450), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_API_DEPRECATED] = ACTIONS(2450), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2450), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2450), + [anon_sym___deprecated_msg] = ACTIONS(2450), + [anon_sym___deprecated_enum_msg] = ACTIONS(2450), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2450), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2450), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2450), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2450), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2450), + [anon_sym_ATsynthesize] = ACTIONS(2452), + [anon_sym_ATdynamic] = ACTIONS(2452), + [anon_sym_ATproperty] = ACTIONS(2452), + [anon_sym_BOOL] = ACTIONS(2450), + [anon_sym_IMP] = ACTIONS(2450), + [anon_sym_SEL] = ACTIONS(2450), + [anon_sym_Class] = ACTIONS(2450), + [anon_sym_id] = ACTIONS(2450), + }, + [2305] = { + [sym_identifier] = ACTIONS(2462), + [aux_sym_preproc_def_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token2] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2462), + [sym_preproc_directive] = ACTIONS(2462), + [anon_sym_DASH] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(2464), + [anon_sym___extension__] = ACTIONS(2462), + [anon_sym_typedef] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym___attribute__] = ACTIONS(2462), + [anon_sym___attribute] = ACTIONS(2462), + [anon_sym_noreturn] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2464), + [anon_sym___declspec] = ACTIONS(2462), + [anon_sym___cdecl] = ACTIONS(2462), + [anon_sym___clrcall] = ACTIONS(2462), + [anon_sym___stdcall] = ACTIONS(2462), + [anon_sym___fastcall] = ACTIONS(2462), + [anon_sym___thiscall] = ACTIONS(2462), + [anon_sym___vectorcall] = ACTIONS(2462), + [anon_sym_signed] = ACTIONS(2462), + [anon_sym_unsigned] = ACTIONS(2462), + [anon_sym_long] = ACTIONS(2462), + [anon_sym_short] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_auto] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_inline] = ACTIONS(2462), + [anon_sym___inline] = ACTIONS(2462), + [anon_sym___inline__] = ACTIONS(2462), + [anon_sym___forceinline] = ACTIONS(2462), + [anon_sym_thread_local] = ACTIONS(2462), + [anon_sym___thread] = ACTIONS(2462), + [anon_sym_CG_EXTERN] = ACTIONS(2462), + [anon_sym_CG_INLINE] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2462), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2462), + [anon_sym_IBOutlet] = ACTIONS(2462), + [anon_sym_IBInspectable] = ACTIONS(2462), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2462), + [anon_sym_NS_INLINE] = ACTIONS(2462), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2462), + [anon_sym_OBJC_EXPORT] = ACTIONS(2462), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_constexpr] = ACTIONS(2462), + [anon_sym_volatile] = ACTIONS(2462), + [anon_sym_restrict] = ACTIONS(2462), + [anon_sym___restrict__] = ACTIONS(2462), + [anon_sym__Atomic] = ACTIONS(2462), + [anon_sym__Noreturn] = ACTIONS(2462), + [anon_sym__Nonnull] = ACTIONS(2462), + [anon_sym_nullable] = ACTIONS(2462), + [anon_sym__Complex] = ACTIONS(2462), + [anon_sym__Nullable] = ACTIONS(2462), + [anon_sym__Nullable_result] = ACTIONS(2462), + [anon_sym__Null_unspecified] = ACTIONS(2462), + [anon_sym___autoreleasing] = ACTIONS(2462), + [anon_sym___block] = ACTIONS(2462), + [anon_sym___bridge] = ACTIONS(2462), + [anon_sym___bridge_retained] = ACTIONS(2462), + [anon_sym___bridge_transfer] = ACTIONS(2462), + [anon_sym___complex] = ACTIONS(2462), + [anon_sym___const] = ACTIONS(2462), + [anon_sym___imag] = ACTIONS(2462), + [anon_sym___kindof] = ACTIONS(2462), + [anon_sym___nonnull] = ACTIONS(2462), + [anon_sym___nullable] = ACTIONS(2462), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2462), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2462), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2462), + [anon_sym___real] = ACTIONS(2462), + [anon_sym___strong] = ACTIONS(2462), + [anon_sym___unsafe_unretained] = ACTIONS(2462), + [anon_sym___unused] = ACTIONS(2462), + [anon_sym___weak] = ACTIONS(2462), + [anon_sym_alignas] = ACTIONS(2462), + [anon_sym__Alignas] = ACTIONS(2462), + [sym_primitive_type] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2462), + [anon_sym___typeof] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [aux_sym_preproc_undef_token1] = ACTIONS(2462), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2462), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2462), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2462), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2462), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE] = ACTIONS(2462), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_API_AVAILABLE] = ACTIONS(2462), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_API_DEPRECATED] = ACTIONS(2462), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2462), + [anon_sym___deprecated_msg] = ACTIONS(2462), + [anon_sym___deprecated_enum_msg] = ACTIONS(2462), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2462), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2462), + [anon_sym_ATsynthesize] = ACTIONS(2464), + [anon_sym_ATdynamic] = ACTIONS(2464), + [anon_sym_ATproperty] = ACTIONS(2464), + [anon_sym_BOOL] = ACTIONS(2462), + [anon_sym_IMP] = ACTIONS(2462), + [anon_sym_SEL] = ACTIONS(2462), + [anon_sym_Class] = ACTIONS(2462), + [anon_sym_id] = ACTIONS(2462), + }, + [2306] = { + [sym_identifier] = ACTIONS(2462), + [aux_sym_preproc_def_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token2] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2462), + [sym_preproc_directive] = ACTIONS(2462), + [anon_sym_DASH] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(2464), + [anon_sym___extension__] = ACTIONS(2462), + [anon_sym_typedef] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym___attribute__] = ACTIONS(2462), + [anon_sym___attribute] = ACTIONS(2462), + [anon_sym_noreturn] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2464), + [anon_sym___declspec] = ACTIONS(2462), + [anon_sym___cdecl] = ACTIONS(2462), + [anon_sym___clrcall] = ACTIONS(2462), + [anon_sym___stdcall] = ACTIONS(2462), + [anon_sym___fastcall] = ACTIONS(2462), + [anon_sym___thiscall] = ACTIONS(2462), + [anon_sym___vectorcall] = ACTIONS(2462), + [anon_sym_signed] = ACTIONS(2462), + [anon_sym_unsigned] = ACTIONS(2462), + [anon_sym_long] = ACTIONS(2462), + [anon_sym_short] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_auto] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_inline] = ACTIONS(2462), + [anon_sym___inline] = ACTIONS(2462), + [anon_sym___inline__] = ACTIONS(2462), + [anon_sym___forceinline] = ACTIONS(2462), + [anon_sym_thread_local] = ACTIONS(2462), + [anon_sym___thread] = ACTIONS(2462), + [anon_sym_CG_EXTERN] = ACTIONS(2462), + [anon_sym_CG_INLINE] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2462), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2462), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2462), + [anon_sym_IBOutlet] = ACTIONS(2462), + [anon_sym_IBInspectable] = ACTIONS(2462), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2462), + [anon_sym_NS_INLINE] = ACTIONS(2462), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2462), + [anon_sym_OBJC_EXPORT] = ACTIONS(2462), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_constexpr] = ACTIONS(2462), + [anon_sym_volatile] = ACTIONS(2462), + [anon_sym_restrict] = ACTIONS(2462), + [anon_sym___restrict__] = ACTIONS(2462), + [anon_sym__Atomic] = ACTIONS(2462), + [anon_sym__Noreturn] = ACTIONS(2462), + [anon_sym__Nonnull] = ACTIONS(2462), + [anon_sym_nullable] = ACTIONS(2462), + [anon_sym__Complex] = ACTIONS(2462), + [anon_sym__Nullable] = ACTIONS(2462), + [anon_sym__Nullable_result] = ACTIONS(2462), + [anon_sym__Null_unspecified] = ACTIONS(2462), + [anon_sym___autoreleasing] = ACTIONS(2462), + [anon_sym___block] = ACTIONS(2462), + [anon_sym___bridge] = ACTIONS(2462), + [anon_sym___bridge_retained] = ACTIONS(2462), + [anon_sym___bridge_transfer] = ACTIONS(2462), + [anon_sym___complex] = ACTIONS(2462), + [anon_sym___const] = ACTIONS(2462), + [anon_sym___imag] = ACTIONS(2462), + [anon_sym___kindof] = ACTIONS(2462), + [anon_sym___nonnull] = ACTIONS(2462), + [anon_sym___nullable] = ACTIONS(2462), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2462), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2462), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2462), + [anon_sym___real] = ACTIONS(2462), + [anon_sym___strong] = ACTIONS(2462), + [anon_sym___unsafe_unretained] = ACTIONS(2462), + [anon_sym___unused] = ACTIONS(2462), + [anon_sym___weak] = ACTIONS(2462), + [anon_sym_alignas] = ACTIONS(2462), + [anon_sym__Alignas] = ACTIONS(2462), + [sym_primitive_type] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2462), + [anon_sym___typeof] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [aux_sym_preproc_undef_token1] = ACTIONS(2462), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2462), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2462), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2462), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2462), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2462), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2462), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE] = ACTIONS(2462), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2462), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_API_AVAILABLE] = ACTIONS(2462), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_API_DEPRECATED] = ACTIONS(2462), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2462), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2462), + [anon_sym___deprecated_msg] = ACTIONS(2462), + [anon_sym___deprecated_enum_msg] = ACTIONS(2462), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2462), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2462), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2462), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2462), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2462), + [anon_sym_ATsynthesize] = ACTIONS(2464), + [anon_sym_ATdynamic] = ACTIONS(2464), + [anon_sym_ATproperty] = ACTIONS(2464), + [anon_sym_BOOL] = ACTIONS(2462), + [anon_sym_IMP] = ACTIONS(2462), + [anon_sym_SEL] = ACTIONS(2462), + [anon_sym_Class] = ACTIONS(2462), + [anon_sym_id] = ACTIONS(2462), + }, + [2307] = { + [sym_identifier] = ACTIONS(5514), + [aux_sym_preproc_def_token1] = ACTIONS(5514), + [aux_sym_preproc_if_token1] = ACTIONS(5514), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5514), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5514), + [sym_preproc_directive] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym___extension__] = ACTIONS(5514), + [anon_sym_typedef] = ACTIONS(5514), + [anon_sym_extern] = ACTIONS(5514), + [anon_sym___attribute__] = ACTIONS(5514), + [anon_sym___attribute] = ACTIONS(5514), + [anon_sym_noreturn] = ACTIONS(5514), + [anon_sym_LBRACK] = ACTIONS(5516), + [anon_sym___declspec] = ACTIONS(5514), + [anon_sym___cdecl] = ACTIONS(5514), + [anon_sym___clrcall] = ACTIONS(5514), + [anon_sym___stdcall] = ACTIONS(5514), + [anon_sym___fastcall] = ACTIONS(5514), + [anon_sym___thiscall] = ACTIONS(5514), + [anon_sym___vectorcall] = ACTIONS(5514), + [anon_sym_signed] = ACTIONS(5514), + [anon_sym_unsigned] = ACTIONS(5514), + [anon_sym_long] = ACTIONS(5514), + [anon_sym_short] = ACTIONS(5514), + [anon_sym_static] = ACTIONS(5514), + [anon_sym_auto] = ACTIONS(5514), + [anon_sym_register] = ACTIONS(5514), + [anon_sym_inline] = ACTIONS(5514), + [anon_sym___inline] = ACTIONS(5514), + [anon_sym___inline__] = ACTIONS(5514), + [anon_sym___forceinline] = ACTIONS(5514), + [anon_sym_thread_local] = ACTIONS(5514), + [anon_sym___thread] = ACTIONS(5514), + [anon_sym_CG_EXTERN] = ACTIONS(5514), + [anon_sym_CG_INLINE] = ACTIONS(5514), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5514), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5514), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5514), + [anon_sym_IBOutlet] = ACTIONS(5514), + [anon_sym_IBInspectable] = ACTIONS(5514), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5514), + [anon_sym_NS_INLINE] = ACTIONS(5514), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5514), + [anon_sym_OBJC_EXPORT] = ACTIONS(5514), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5514), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5514), + [anon_sym_const] = ACTIONS(5514), + [anon_sym_constexpr] = ACTIONS(5514), + [anon_sym_volatile] = ACTIONS(5514), + [anon_sym_restrict] = ACTIONS(5514), + [anon_sym___restrict__] = ACTIONS(5514), + [anon_sym__Atomic] = ACTIONS(5514), + [anon_sym__Noreturn] = ACTIONS(5514), + [anon_sym__Nonnull] = ACTIONS(5514), + [anon_sym_nullable] = ACTIONS(5514), + [anon_sym__Complex] = ACTIONS(5514), + [anon_sym__Nullable] = ACTIONS(5514), + [anon_sym__Nullable_result] = ACTIONS(5514), + [anon_sym__Null_unspecified] = ACTIONS(5514), + [anon_sym___autoreleasing] = ACTIONS(5514), + [anon_sym___block] = ACTIONS(5514), + [anon_sym___bridge] = ACTIONS(5514), + [anon_sym___bridge_retained] = ACTIONS(5514), + [anon_sym___bridge_transfer] = ACTIONS(5514), + [anon_sym___complex] = ACTIONS(5514), + [anon_sym___const] = ACTIONS(5514), + [anon_sym___imag] = ACTIONS(5514), + [anon_sym___kindof] = ACTIONS(5514), + [anon_sym___nonnull] = ACTIONS(5514), + [anon_sym___nullable] = ACTIONS(5514), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5514), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5514), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5514), + [anon_sym___real] = ACTIONS(5514), + [anon_sym___strong] = ACTIONS(5514), + [anon_sym___unsafe_unretained] = ACTIONS(5514), + [anon_sym___unused] = ACTIONS(5514), + [anon_sym___weak] = ACTIONS(5514), + [anon_sym_alignas] = ACTIONS(5514), + [anon_sym__Alignas] = ACTIONS(5514), + [sym_primitive_type] = ACTIONS(5514), + [anon_sym_enum] = ACTIONS(5514), + [anon_sym_struct] = ACTIONS(5514), + [anon_sym_union] = ACTIONS(5514), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5514), + [anon_sym___typeof] = ACTIONS(5514), + [anon_sym_typeof] = ACTIONS(5514), + [aux_sym_preproc_undef_token1] = ACTIONS(5514), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5514), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5514), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5514), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5514), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5514), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5514), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5514), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5514), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5514), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5514), + [anon_sym_NS_AVAILABLE] = ACTIONS(5514), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5514), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5514), + [anon_sym_API_AVAILABLE] = ACTIONS(5514), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5514), + [anon_sym_API_DEPRECATED] = ACTIONS(5514), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5514), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5514), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5514), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5514), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5514), + [anon_sym___deprecated_msg] = ACTIONS(5514), + [anon_sym___deprecated_enum_msg] = ACTIONS(5514), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5514), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5514), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5514), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5514), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5514), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5514), + [anon_sym_ATend] = ACTIONS(5516), + [anon_sym_AToptional] = ACTIONS(5516), + [anon_sym_ATrequired] = ACTIONS(5516), + [anon_sym_ATproperty] = ACTIONS(5516), + [anon_sym_BOOL] = ACTIONS(5514), + [anon_sym_IMP] = ACTIONS(5514), + [anon_sym_SEL] = ACTIONS(5514), + [anon_sym_Class] = ACTIONS(5514), + [anon_sym_id] = ACTIONS(5514), + }, + [2308] = { + [sym_identifier] = ACTIONS(5534), + [aux_sym_preproc_def_token1] = ACTIONS(5534), + [aux_sym_preproc_if_token1] = ACTIONS(5534), + [aux_sym_preproc_if_token2] = ACTIONS(5534), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5534), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5534), + [aux_sym_preproc_else_token1] = ACTIONS(5534), + [aux_sym_preproc_elif_token1] = ACTIONS(5534), + [sym_preproc_directive] = ACTIONS(5534), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym___extension__] = ACTIONS(5534), + [anon_sym_typedef] = ACTIONS(5534), + [anon_sym_extern] = ACTIONS(5534), + [anon_sym___attribute__] = ACTIONS(5534), + [anon_sym___attribute] = ACTIONS(5534), + [anon_sym_noreturn] = ACTIONS(5534), + [anon_sym_LBRACK] = ACTIONS(5536), + [anon_sym___declspec] = ACTIONS(5534), + [anon_sym___cdecl] = ACTIONS(5534), + [anon_sym___clrcall] = ACTIONS(5534), + [anon_sym___stdcall] = ACTIONS(5534), + [anon_sym___fastcall] = ACTIONS(5534), + [anon_sym___thiscall] = ACTIONS(5534), + [anon_sym___vectorcall] = ACTIONS(5534), + [anon_sym_signed] = ACTIONS(5534), + [anon_sym_unsigned] = ACTIONS(5534), + [anon_sym_long] = ACTIONS(5534), + [anon_sym_short] = ACTIONS(5534), + [anon_sym_static] = ACTIONS(5534), + [anon_sym_auto] = ACTIONS(5534), + [anon_sym_register] = ACTIONS(5534), + [anon_sym_inline] = ACTIONS(5534), + [anon_sym___inline] = ACTIONS(5534), + [anon_sym___inline__] = ACTIONS(5534), + [anon_sym___forceinline] = ACTIONS(5534), + [anon_sym_thread_local] = ACTIONS(5534), + [anon_sym___thread] = ACTIONS(5534), + [anon_sym_CG_EXTERN] = ACTIONS(5534), + [anon_sym_CG_INLINE] = ACTIONS(5534), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5534), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5534), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5534), + [anon_sym_IBOutlet] = ACTIONS(5534), + [anon_sym_IBInspectable] = ACTIONS(5534), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5534), + [anon_sym_NS_INLINE] = ACTIONS(5534), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5534), + [anon_sym_OBJC_EXPORT] = ACTIONS(5534), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5534), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5534), + [anon_sym_const] = ACTIONS(5534), + [anon_sym_constexpr] = ACTIONS(5534), + [anon_sym_volatile] = ACTIONS(5534), + [anon_sym_restrict] = ACTIONS(5534), + [anon_sym___restrict__] = ACTIONS(5534), + [anon_sym__Atomic] = ACTIONS(5534), + [anon_sym__Noreturn] = ACTIONS(5534), + [anon_sym__Nonnull] = ACTIONS(5534), + [anon_sym_nullable] = ACTIONS(5534), + [anon_sym__Complex] = ACTIONS(5534), + [anon_sym__Nullable] = ACTIONS(5534), + [anon_sym__Nullable_result] = ACTIONS(5534), + [anon_sym__Null_unspecified] = ACTIONS(5534), + [anon_sym___autoreleasing] = ACTIONS(5534), + [anon_sym___block] = ACTIONS(5534), + [anon_sym___bridge] = ACTIONS(5534), + [anon_sym___bridge_retained] = ACTIONS(5534), + [anon_sym___bridge_transfer] = ACTIONS(5534), + [anon_sym___complex] = ACTIONS(5534), + [anon_sym___const] = ACTIONS(5534), + [anon_sym___imag] = ACTIONS(5534), + [anon_sym___kindof] = ACTIONS(5534), + [anon_sym___nonnull] = ACTIONS(5534), + [anon_sym___nullable] = ACTIONS(5534), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5534), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5534), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5534), + [anon_sym___real] = ACTIONS(5534), + [anon_sym___strong] = ACTIONS(5534), + [anon_sym___unsafe_unretained] = ACTIONS(5534), + [anon_sym___unused] = ACTIONS(5534), + [anon_sym___weak] = ACTIONS(5534), + [anon_sym_alignas] = ACTIONS(5534), + [anon_sym__Alignas] = ACTIONS(5534), + [sym_primitive_type] = ACTIONS(5534), + [anon_sym_enum] = ACTIONS(5534), + [anon_sym_struct] = ACTIONS(5534), + [anon_sym_union] = ACTIONS(5534), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5534), + [anon_sym___typeof] = ACTIONS(5534), + [anon_sym_typeof] = ACTIONS(5534), + [aux_sym_preproc_undef_token1] = ACTIONS(5534), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5534), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5534), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5534), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5534), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5534), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5534), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5534), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5534), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5534), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5534), + [anon_sym_NS_AVAILABLE] = ACTIONS(5534), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5534), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5534), + [anon_sym_API_AVAILABLE] = ACTIONS(5534), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5534), + [anon_sym_API_DEPRECATED] = ACTIONS(5534), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5534), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5534), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5534), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5534), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5534), + [anon_sym___deprecated_msg] = ACTIONS(5534), + [anon_sym___deprecated_enum_msg] = ACTIONS(5534), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5534), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5534), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5534), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5534), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5534), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5534), + [anon_sym_ATproperty] = ACTIONS(5536), + [anon_sym_BOOL] = ACTIONS(5534), + [anon_sym_IMP] = ACTIONS(5534), + [anon_sym_SEL] = ACTIONS(5534), + [anon_sym_Class] = ACTIONS(5534), + [anon_sym_id] = ACTIONS(5534), + }, + [2309] = { + [sym_identifier] = ACTIONS(5451), + [aux_sym_preproc_def_token1] = ACTIONS(5451), + [aux_sym_preproc_if_token1] = ACTIONS(5451), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5451), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5451), + [sym_preproc_directive] = ACTIONS(5451), + [anon_sym_DASH] = ACTIONS(5453), + [anon_sym_PLUS] = ACTIONS(5453), + [anon_sym___extension__] = ACTIONS(5451), + [anon_sym_typedef] = ACTIONS(5451), + [anon_sym_extern] = ACTIONS(5451), + [anon_sym___attribute__] = ACTIONS(5451), + [anon_sym___attribute] = ACTIONS(5451), + [anon_sym_noreturn] = ACTIONS(5451), + [anon_sym_LBRACK] = ACTIONS(5453), + [anon_sym___declspec] = ACTIONS(5451), + [anon_sym___cdecl] = ACTIONS(5451), + [anon_sym___clrcall] = ACTIONS(5451), + [anon_sym___stdcall] = ACTIONS(5451), + [anon_sym___fastcall] = ACTIONS(5451), + [anon_sym___thiscall] = ACTIONS(5451), + [anon_sym___vectorcall] = ACTIONS(5451), + [anon_sym_signed] = ACTIONS(5451), + [anon_sym_unsigned] = ACTIONS(5451), + [anon_sym_long] = ACTIONS(5451), + [anon_sym_short] = ACTIONS(5451), + [anon_sym_static] = ACTIONS(5451), + [anon_sym_auto] = ACTIONS(5451), + [anon_sym_register] = ACTIONS(5451), + [anon_sym_inline] = ACTIONS(5451), + [anon_sym___inline] = ACTIONS(5451), + [anon_sym___inline__] = ACTIONS(5451), + [anon_sym___forceinline] = ACTIONS(5451), + [anon_sym_thread_local] = ACTIONS(5451), + [anon_sym___thread] = ACTIONS(5451), + [anon_sym_CG_EXTERN] = ACTIONS(5451), + [anon_sym_CG_INLINE] = ACTIONS(5451), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5451), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5451), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5451), + [anon_sym_IBOutlet] = ACTIONS(5451), + [anon_sym_IBInspectable] = ACTIONS(5451), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5451), + [anon_sym_NS_INLINE] = ACTIONS(5451), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5451), + [anon_sym_OBJC_EXPORT] = ACTIONS(5451), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5451), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5451), + [anon_sym_const] = ACTIONS(5451), + [anon_sym_constexpr] = ACTIONS(5451), + [anon_sym_volatile] = ACTIONS(5451), + [anon_sym_restrict] = ACTIONS(5451), + [anon_sym___restrict__] = ACTIONS(5451), + [anon_sym__Atomic] = ACTIONS(5451), + [anon_sym__Noreturn] = ACTIONS(5451), + [anon_sym__Nonnull] = ACTIONS(5451), + [anon_sym_nullable] = ACTIONS(5451), + [anon_sym__Complex] = ACTIONS(5451), + [anon_sym__Nullable] = ACTIONS(5451), + [anon_sym__Nullable_result] = ACTIONS(5451), + [anon_sym__Null_unspecified] = ACTIONS(5451), + [anon_sym___autoreleasing] = ACTIONS(5451), + [anon_sym___block] = ACTIONS(5451), + [anon_sym___bridge] = ACTIONS(5451), + [anon_sym___bridge_retained] = ACTIONS(5451), + [anon_sym___bridge_transfer] = ACTIONS(5451), + [anon_sym___complex] = ACTIONS(5451), + [anon_sym___const] = ACTIONS(5451), + [anon_sym___imag] = ACTIONS(5451), + [anon_sym___kindof] = ACTIONS(5451), + [anon_sym___nonnull] = ACTIONS(5451), + [anon_sym___nullable] = ACTIONS(5451), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5451), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5451), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5451), + [anon_sym___real] = ACTIONS(5451), + [anon_sym___strong] = ACTIONS(5451), + [anon_sym___unsafe_unretained] = ACTIONS(5451), + [anon_sym___unused] = ACTIONS(5451), + [anon_sym___weak] = ACTIONS(5451), + [anon_sym_alignas] = ACTIONS(5451), + [anon_sym__Alignas] = ACTIONS(5451), + [sym_primitive_type] = ACTIONS(5451), + [anon_sym_enum] = ACTIONS(5451), + [anon_sym_struct] = ACTIONS(5451), + [anon_sym_union] = ACTIONS(5451), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5451), + [anon_sym___typeof] = ACTIONS(5451), + [anon_sym_typeof] = ACTIONS(5451), + [aux_sym_preproc_undef_token1] = ACTIONS(5451), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5451), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5451), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5451), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5451), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5451), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5451), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5451), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5451), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5451), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5451), + [anon_sym_NS_AVAILABLE] = ACTIONS(5451), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5451), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5451), + [anon_sym_API_AVAILABLE] = ACTIONS(5451), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5451), + [anon_sym_API_DEPRECATED] = ACTIONS(5451), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5451), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5451), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5451), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5451), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5451), + [anon_sym___deprecated_msg] = ACTIONS(5451), + [anon_sym___deprecated_enum_msg] = ACTIONS(5451), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5451), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5451), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5451), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5451), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5451), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5451), + [anon_sym_ATend] = ACTIONS(5453), + [anon_sym_ATsynthesize] = ACTIONS(5453), + [anon_sym_ATdynamic] = ACTIONS(5453), + [anon_sym_ATproperty] = ACTIONS(5453), + [anon_sym_BOOL] = ACTIONS(5451), + [anon_sym_IMP] = ACTIONS(5451), + [anon_sym_SEL] = ACTIONS(5451), + [anon_sym_Class] = ACTIONS(5451), + [anon_sym_id] = ACTIONS(5451), + }, + [2310] = { + [sym_identifier] = ACTIONS(5538), + [aux_sym_preproc_def_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token2] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5538), + [aux_sym_preproc_else_token1] = ACTIONS(5538), + [aux_sym_preproc_elif_token1] = ACTIONS(5538), + [sym_preproc_directive] = ACTIONS(5538), + [anon_sym_DASH] = ACTIONS(5540), + [anon_sym_PLUS] = ACTIONS(5540), + [anon_sym___extension__] = ACTIONS(5538), + [anon_sym_typedef] = ACTIONS(5538), + [anon_sym_extern] = ACTIONS(5538), + [anon_sym___attribute__] = ACTIONS(5538), + [anon_sym___attribute] = ACTIONS(5538), + [anon_sym_noreturn] = ACTIONS(5538), + [anon_sym_LBRACK] = ACTIONS(5540), + [anon_sym___declspec] = ACTIONS(5538), + [anon_sym___cdecl] = ACTIONS(5538), + [anon_sym___clrcall] = ACTIONS(5538), + [anon_sym___stdcall] = ACTIONS(5538), + [anon_sym___fastcall] = ACTIONS(5538), + [anon_sym___thiscall] = ACTIONS(5538), + [anon_sym___vectorcall] = ACTIONS(5538), + [anon_sym_signed] = ACTIONS(5538), + [anon_sym_unsigned] = ACTIONS(5538), + [anon_sym_long] = ACTIONS(5538), + [anon_sym_short] = ACTIONS(5538), + [anon_sym_static] = ACTIONS(5538), + [anon_sym_auto] = ACTIONS(5538), + [anon_sym_register] = ACTIONS(5538), + [anon_sym_inline] = ACTIONS(5538), + [anon_sym___inline] = ACTIONS(5538), + [anon_sym___inline__] = ACTIONS(5538), + [anon_sym___forceinline] = ACTIONS(5538), + [anon_sym_thread_local] = ACTIONS(5538), + [anon_sym___thread] = ACTIONS(5538), + [anon_sym_CG_EXTERN] = ACTIONS(5538), + [anon_sym_CG_INLINE] = ACTIONS(5538), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5538), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5538), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5538), + [anon_sym_IBOutlet] = ACTIONS(5538), + [anon_sym_IBInspectable] = ACTIONS(5538), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5538), + [anon_sym_NS_INLINE] = ACTIONS(5538), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5538), + [anon_sym_OBJC_EXPORT] = ACTIONS(5538), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5538), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5538), + [anon_sym_const] = ACTIONS(5538), + [anon_sym_constexpr] = ACTIONS(5538), + [anon_sym_volatile] = ACTIONS(5538), + [anon_sym_restrict] = ACTIONS(5538), + [anon_sym___restrict__] = ACTIONS(5538), + [anon_sym__Atomic] = ACTIONS(5538), + [anon_sym__Noreturn] = ACTIONS(5538), + [anon_sym__Nonnull] = ACTIONS(5538), + [anon_sym_nullable] = ACTIONS(5538), + [anon_sym__Complex] = ACTIONS(5538), + [anon_sym__Nullable] = ACTIONS(5538), + [anon_sym__Nullable_result] = ACTIONS(5538), + [anon_sym__Null_unspecified] = ACTIONS(5538), + [anon_sym___autoreleasing] = ACTIONS(5538), + [anon_sym___block] = ACTIONS(5538), + [anon_sym___bridge] = ACTIONS(5538), + [anon_sym___bridge_retained] = ACTIONS(5538), + [anon_sym___bridge_transfer] = ACTIONS(5538), + [anon_sym___complex] = ACTIONS(5538), + [anon_sym___const] = ACTIONS(5538), + [anon_sym___imag] = ACTIONS(5538), + [anon_sym___kindof] = ACTIONS(5538), + [anon_sym___nonnull] = ACTIONS(5538), + [anon_sym___nullable] = ACTIONS(5538), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5538), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5538), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5538), + [anon_sym___real] = ACTIONS(5538), + [anon_sym___strong] = ACTIONS(5538), + [anon_sym___unsafe_unretained] = ACTIONS(5538), + [anon_sym___unused] = ACTIONS(5538), + [anon_sym___weak] = ACTIONS(5538), + [anon_sym_alignas] = ACTIONS(5538), + [anon_sym__Alignas] = ACTIONS(5538), + [sym_primitive_type] = ACTIONS(5538), + [anon_sym_enum] = ACTIONS(5538), + [anon_sym_struct] = ACTIONS(5538), + [anon_sym_union] = ACTIONS(5538), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5538), + [anon_sym___typeof] = ACTIONS(5538), + [anon_sym_typeof] = ACTIONS(5538), + [aux_sym_preproc_undef_token1] = ACTIONS(5538), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5538), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5538), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5538), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5538), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5538), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5538), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5538), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5538), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5538), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5538), + [anon_sym_NS_AVAILABLE] = ACTIONS(5538), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5538), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5538), + [anon_sym_API_AVAILABLE] = ACTIONS(5538), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5538), + [anon_sym_API_DEPRECATED] = ACTIONS(5538), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5538), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5538), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5538), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5538), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5538), + [anon_sym___deprecated_msg] = ACTIONS(5538), + [anon_sym___deprecated_enum_msg] = ACTIONS(5538), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5538), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5538), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5538), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5538), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5538), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5538), + [anon_sym_ATproperty] = ACTIONS(5540), + [anon_sym_BOOL] = ACTIONS(5538), + [anon_sym_IMP] = ACTIONS(5538), + [anon_sym_SEL] = ACTIONS(5538), + [anon_sym_Class] = ACTIONS(5538), + [anon_sym_id] = ACTIONS(5538), + }, + [2311] = { + [sym_identifier] = ACTIONS(5542), + [aux_sym_preproc_def_token1] = ACTIONS(5542), + [aux_sym_preproc_if_token1] = ACTIONS(5542), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), + [sym_preproc_directive] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5544), + [anon_sym_PLUS] = ACTIONS(5544), + [anon_sym___extension__] = ACTIONS(5542), + [anon_sym_typedef] = ACTIONS(5542), + [anon_sym_extern] = ACTIONS(5542), + [anon_sym___attribute__] = ACTIONS(5542), + [anon_sym___attribute] = ACTIONS(5542), + [anon_sym_noreturn] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5544), + [anon_sym___declspec] = ACTIONS(5542), + [anon_sym___cdecl] = ACTIONS(5542), + [anon_sym___clrcall] = ACTIONS(5542), + [anon_sym___stdcall] = ACTIONS(5542), + [anon_sym___fastcall] = ACTIONS(5542), + [anon_sym___thiscall] = ACTIONS(5542), + [anon_sym___vectorcall] = ACTIONS(5542), + [anon_sym_signed] = ACTIONS(5542), + [anon_sym_unsigned] = ACTIONS(5542), + [anon_sym_long] = ACTIONS(5542), + [anon_sym_short] = ACTIONS(5542), + [anon_sym_static] = ACTIONS(5542), + [anon_sym_auto] = ACTIONS(5542), + [anon_sym_register] = ACTIONS(5542), + [anon_sym_inline] = ACTIONS(5542), + [anon_sym___inline] = ACTIONS(5542), + [anon_sym___inline__] = ACTIONS(5542), + [anon_sym___forceinline] = ACTIONS(5542), + [anon_sym_thread_local] = ACTIONS(5542), + [anon_sym___thread] = ACTIONS(5542), + [anon_sym_CG_EXTERN] = ACTIONS(5542), + [anon_sym_CG_INLINE] = ACTIONS(5542), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5542), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5542), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5542), + [anon_sym_IBOutlet] = ACTIONS(5542), + [anon_sym_IBInspectable] = ACTIONS(5542), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5542), + [anon_sym_NS_INLINE] = ACTIONS(5542), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5542), + [anon_sym_OBJC_EXPORT] = ACTIONS(5542), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5542), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5542), + [anon_sym_const] = ACTIONS(5542), + [anon_sym_constexpr] = ACTIONS(5542), + [anon_sym_volatile] = ACTIONS(5542), + [anon_sym_restrict] = ACTIONS(5542), + [anon_sym___restrict__] = ACTIONS(5542), + [anon_sym__Atomic] = ACTIONS(5542), + [anon_sym__Noreturn] = ACTIONS(5542), + [anon_sym__Nonnull] = ACTIONS(5542), + [anon_sym_nullable] = ACTIONS(5542), + [anon_sym__Complex] = ACTIONS(5542), + [anon_sym__Nullable] = ACTIONS(5542), + [anon_sym__Nullable_result] = ACTIONS(5542), + [anon_sym__Null_unspecified] = ACTIONS(5542), + [anon_sym___autoreleasing] = ACTIONS(5542), + [anon_sym___block] = ACTIONS(5542), + [anon_sym___bridge] = ACTIONS(5542), + [anon_sym___bridge_retained] = ACTIONS(5542), + [anon_sym___bridge_transfer] = ACTIONS(5542), + [anon_sym___complex] = ACTIONS(5542), + [anon_sym___const] = ACTIONS(5542), + [anon_sym___imag] = ACTIONS(5542), + [anon_sym___kindof] = ACTIONS(5542), + [anon_sym___nonnull] = ACTIONS(5542), + [anon_sym___nullable] = ACTIONS(5542), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5542), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5542), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5542), + [anon_sym___real] = ACTIONS(5542), + [anon_sym___strong] = ACTIONS(5542), + [anon_sym___unsafe_unretained] = ACTIONS(5542), + [anon_sym___unused] = ACTIONS(5542), + [anon_sym___weak] = ACTIONS(5542), + [anon_sym_alignas] = ACTIONS(5542), + [anon_sym__Alignas] = ACTIONS(5542), + [sym_primitive_type] = ACTIONS(5542), + [anon_sym_enum] = ACTIONS(5542), + [anon_sym_struct] = ACTIONS(5542), + [anon_sym_union] = ACTIONS(5542), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5542), + [anon_sym___typeof] = ACTIONS(5542), + [anon_sym_typeof] = ACTIONS(5542), + [aux_sym_preproc_undef_token1] = ACTIONS(5542), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5542), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5542), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5542), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5542), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5542), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5542), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5542), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5542), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5542), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5542), + [anon_sym_NS_AVAILABLE] = ACTIONS(5542), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5542), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5542), + [anon_sym_API_AVAILABLE] = ACTIONS(5542), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5542), + [anon_sym_API_DEPRECATED] = ACTIONS(5542), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5542), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5542), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5542), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5542), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5542), + [anon_sym___deprecated_msg] = ACTIONS(5542), + [anon_sym___deprecated_enum_msg] = ACTIONS(5542), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5542), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5542), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5542), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5542), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5542), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5542), + [anon_sym_ATend] = ACTIONS(5544), + [anon_sym_AToptional] = ACTIONS(5544), + [anon_sym_ATrequired] = ACTIONS(5544), + [anon_sym_ATproperty] = ACTIONS(5544), + [anon_sym_BOOL] = ACTIONS(5542), + [anon_sym_IMP] = ACTIONS(5542), + [anon_sym_SEL] = ACTIONS(5542), + [anon_sym_Class] = ACTIONS(5542), + [anon_sym_id] = ACTIONS(5542), + }, + [2312] = { + [sym_identifier] = ACTIONS(3590), + [aux_sym_preproc_def_token1] = ACTIONS(3590), + [aux_sym_preproc_if_token1] = ACTIONS(3590), + [aux_sym_preproc_if_token2] = ACTIONS(3590), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3590), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3590), + [aux_sym_preproc_else_token1] = ACTIONS(3590), + [aux_sym_preproc_elif_token1] = ACTIONS(3590), + [sym_preproc_directive] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(5546), + [anon_sym_PLUS] = ACTIONS(5546), + [anon_sym___extension__] = ACTIONS(3590), + [anon_sym_typedef] = ACTIONS(3590), + [anon_sym_extern] = ACTIONS(3590), + [anon_sym___attribute__] = ACTIONS(3590), + [anon_sym___attribute] = ACTIONS(3590), + [anon_sym_noreturn] = ACTIONS(3590), + [anon_sym_LBRACK] = ACTIONS(5546), + [anon_sym___declspec] = ACTIONS(3590), + [anon_sym___cdecl] = ACTIONS(3590), + [anon_sym___clrcall] = ACTIONS(3590), + [anon_sym___stdcall] = ACTIONS(3590), + [anon_sym___fastcall] = ACTIONS(3590), + [anon_sym___thiscall] = ACTIONS(3590), + [anon_sym___vectorcall] = ACTIONS(3590), + [anon_sym_signed] = ACTIONS(3590), + [anon_sym_unsigned] = ACTIONS(3590), + [anon_sym_long] = ACTIONS(3590), + [anon_sym_short] = ACTIONS(3590), + [anon_sym_static] = ACTIONS(3590), + [anon_sym_auto] = ACTIONS(3590), + [anon_sym_register] = ACTIONS(3590), + [anon_sym_inline] = ACTIONS(3590), + [anon_sym___inline] = ACTIONS(3590), + [anon_sym___inline__] = ACTIONS(3590), + [anon_sym___forceinline] = ACTIONS(3590), + [anon_sym_thread_local] = ACTIONS(3590), + [anon_sym___thread] = ACTIONS(3590), + [anon_sym_CG_EXTERN] = ACTIONS(3590), + [anon_sym_CG_INLINE] = ACTIONS(3590), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3590), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3590), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3590), + [anon_sym_IBOutlet] = ACTIONS(3590), + [anon_sym_IBInspectable] = ACTIONS(3590), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3590), + [anon_sym_NS_INLINE] = ACTIONS(3590), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3590), + [anon_sym_OBJC_EXPORT] = ACTIONS(3590), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3590), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3590), + [anon_sym_const] = ACTIONS(3590), + [anon_sym_constexpr] = ACTIONS(3590), + [anon_sym_volatile] = ACTIONS(3590), + [anon_sym_restrict] = ACTIONS(3590), + [anon_sym___restrict__] = ACTIONS(3590), + [anon_sym__Atomic] = ACTIONS(3590), + [anon_sym__Noreturn] = ACTIONS(3590), + [anon_sym__Nonnull] = ACTIONS(3590), + [anon_sym_nullable] = ACTIONS(3590), + [anon_sym__Complex] = ACTIONS(3590), + [anon_sym__Nullable] = ACTIONS(3590), + [anon_sym__Nullable_result] = ACTIONS(3590), + [anon_sym__Null_unspecified] = ACTIONS(3590), + [anon_sym___autoreleasing] = ACTIONS(3590), + [anon_sym___block] = ACTIONS(3590), + [anon_sym___bridge] = ACTIONS(3590), + [anon_sym___bridge_retained] = ACTIONS(3590), + [anon_sym___bridge_transfer] = ACTIONS(3590), + [anon_sym___complex] = ACTIONS(3590), + [anon_sym___const] = ACTIONS(3590), + [anon_sym___imag] = ACTIONS(3590), + [anon_sym___kindof] = ACTIONS(3590), + [anon_sym___nonnull] = ACTIONS(3590), + [anon_sym___nullable] = ACTIONS(3590), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3590), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3590), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3590), + [anon_sym___real] = ACTIONS(3590), + [anon_sym___strong] = ACTIONS(3590), + [anon_sym___unsafe_unretained] = ACTIONS(3590), + [anon_sym___unused] = ACTIONS(3590), + [anon_sym___weak] = ACTIONS(3590), + [anon_sym_alignas] = ACTIONS(3590), + [anon_sym__Alignas] = ACTIONS(3590), + [sym_primitive_type] = ACTIONS(3590), + [anon_sym_enum] = ACTIONS(3590), + [anon_sym_struct] = ACTIONS(3590), + [anon_sym_union] = ACTIONS(3590), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(3590), + [anon_sym___typeof] = ACTIONS(3590), + [anon_sym_typeof] = ACTIONS(3590), + [aux_sym_preproc_undef_token1] = ACTIONS(3590), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3590), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3590), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3590), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3590), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3590), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3590), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3590), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3590), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3590), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3590), + [anon_sym_NS_AVAILABLE] = ACTIONS(3590), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3590), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3590), + [anon_sym_API_AVAILABLE] = ACTIONS(3590), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3590), + [anon_sym_API_DEPRECATED] = ACTIONS(3590), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3590), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3590), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3590), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3590), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3590), + [anon_sym___deprecated_msg] = ACTIONS(3590), + [anon_sym___deprecated_enum_msg] = ACTIONS(3590), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3590), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3590), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3590), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3590), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3590), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3590), + [anon_sym_ATproperty] = ACTIONS(5546), + [anon_sym_BOOL] = ACTIONS(3590), + [anon_sym_IMP] = ACTIONS(3590), + [anon_sym_SEL] = ACTIONS(3590), + [anon_sym_Class] = ACTIONS(3590), + [anon_sym_id] = ACTIONS(3590), + }, + [2313] = { + [sym_identifier] = ACTIONS(5548), + [aux_sym_preproc_def_token1] = ACTIONS(5548), + [aux_sym_preproc_if_token1] = ACTIONS(5548), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5548), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5548), + [sym_preproc_directive] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5550), + [anon_sym_PLUS] = ACTIONS(5550), + [anon_sym___extension__] = ACTIONS(5548), + [anon_sym_typedef] = ACTIONS(5548), + [anon_sym_extern] = ACTIONS(5548), + [anon_sym___attribute__] = ACTIONS(5548), + [anon_sym___attribute] = ACTIONS(5548), + [anon_sym_noreturn] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5550), + [anon_sym___declspec] = ACTIONS(5548), + [anon_sym___cdecl] = ACTIONS(5548), + [anon_sym___clrcall] = ACTIONS(5548), + [anon_sym___stdcall] = ACTIONS(5548), + [anon_sym___fastcall] = ACTIONS(5548), + [anon_sym___thiscall] = ACTIONS(5548), + [anon_sym___vectorcall] = ACTIONS(5548), + [anon_sym_signed] = ACTIONS(5548), + [anon_sym_unsigned] = ACTIONS(5548), + [anon_sym_long] = ACTIONS(5548), + [anon_sym_short] = ACTIONS(5548), + [anon_sym_static] = ACTIONS(5548), + [anon_sym_auto] = ACTIONS(5548), + [anon_sym_register] = ACTIONS(5548), + [anon_sym_inline] = ACTIONS(5548), + [anon_sym___inline] = ACTIONS(5548), + [anon_sym___inline__] = ACTIONS(5548), + [anon_sym___forceinline] = ACTIONS(5548), + [anon_sym_thread_local] = ACTIONS(5548), + [anon_sym___thread] = ACTIONS(5548), + [anon_sym_CG_EXTERN] = ACTIONS(5548), + [anon_sym_CG_INLINE] = ACTIONS(5548), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5548), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5548), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5548), + [anon_sym_IBOutlet] = ACTIONS(5548), + [anon_sym_IBInspectable] = ACTIONS(5548), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5548), + [anon_sym_NS_INLINE] = ACTIONS(5548), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5548), + [anon_sym_OBJC_EXPORT] = ACTIONS(5548), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5548), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5548), + [anon_sym_const] = ACTIONS(5548), + [anon_sym_constexpr] = ACTIONS(5548), + [anon_sym_volatile] = ACTIONS(5548), + [anon_sym_restrict] = ACTIONS(5548), + [anon_sym___restrict__] = ACTIONS(5548), + [anon_sym__Atomic] = ACTIONS(5548), + [anon_sym__Noreturn] = ACTIONS(5548), + [anon_sym__Nonnull] = ACTIONS(5548), + [anon_sym_nullable] = ACTIONS(5548), + [anon_sym__Complex] = ACTIONS(5548), + [anon_sym__Nullable] = ACTIONS(5548), + [anon_sym__Nullable_result] = ACTIONS(5548), + [anon_sym__Null_unspecified] = ACTIONS(5548), + [anon_sym___autoreleasing] = ACTIONS(5548), + [anon_sym___block] = ACTIONS(5548), + [anon_sym___bridge] = ACTIONS(5548), + [anon_sym___bridge_retained] = ACTIONS(5548), + [anon_sym___bridge_transfer] = ACTIONS(5548), + [anon_sym___complex] = ACTIONS(5548), + [anon_sym___const] = ACTIONS(5548), + [anon_sym___imag] = ACTIONS(5548), + [anon_sym___kindof] = ACTIONS(5548), + [anon_sym___nonnull] = ACTIONS(5548), + [anon_sym___nullable] = ACTIONS(5548), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5548), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5548), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5548), + [anon_sym___real] = ACTIONS(5548), + [anon_sym___strong] = ACTIONS(5548), + [anon_sym___unsafe_unretained] = ACTIONS(5548), + [anon_sym___unused] = ACTIONS(5548), + [anon_sym___weak] = ACTIONS(5548), + [anon_sym_alignas] = ACTIONS(5548), + [anon_sym__Alignas] = ACTIONS(5548), + [sym_primitive_type] = ACTIONS(5548), + [anon_sym_enum] = ACTIONS(5548), + [anon_sym_struct] = ACTIONS(5548), + [anon_sym_union] = ACTIONS(5548), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5548), + [anon_sym___typeof] = ACTIONS(5548), + [anon_sym_typeof] = ACTIONS(5548), + [aux_sym_preproc_undef_token1] = ACTIONS(5548), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5548), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5548), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5548), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5548), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5548), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5548), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5548), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5548), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5548), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5548), + [anon_sym_NS_AVAILABLE] = ACTIONS(5548), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5548), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5548), + [anon_sym_API_AVAILABLE] = ACTIONS(5548), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5548), + [anon_sym_API_DEPRECATED] = ACTIONS(5548), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5548), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5548), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5548), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5548), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5548), + [anon_sym___deprecated_msg] = ACTIONS(5548), + [anon_sym___deprecated_enum_msg] = ACTIONS(5548), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5548), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5548), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5548), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5548), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5548), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5548), + [anon_sym_ATend] = ACTIONS(5550), + [anon_sym_AToptional] = ACTIONS(5550), + [anon_sym_ATrequired] = ACTIONS(5550), + [anon_sym_ATproperty] = ACTIONS(5550), + [anon_sym_BOOL] = ACTIONS(5548), + [anon_sym_IMP] = ACTIONS(5548), + [anon_sym_SEL] = ACTIONS(5548), + [anon_sym_Class] = ACTIONS(5548), + [anon_sym_id] = ACTIONS(5548), + }, + [2314] = { + [sym_identifier] = ACTIONS(5552), + [aux_sym_preproc_def_token1] = ACTIONS(5552), + [aux_sym_preproc_if_token1] = ACTIONS(5552), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5552), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5552), + [sym_preproc_directive] = ACTIONS(5552), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym___extension__] = ACTIONS(5552), + [anon_sym_typedef] = ACTIONS(5552), + [anon_sym_extern] = ACTIONS(5552), + [anon_sym___attribute__] = ACTIONS(5552), + [anon_sym___attribute] = ACTIONS(5552), + [anon_sym_noreturn] = ACTIONS(5552), + [anon_sym_LBRACK] = ACTIONS(5554), + [anon_sym___declspec] = ACTIONS(5552), + [anon_sym___cdecl] = ACTIONS(5552), + [anon_sym___clrcall] = ACTIONS(5552), + [anon_sym___stdcall] = ACTIONS(5552), + [anon_sym___fastcall] = ACTIONS(5552), + [anon_sym___thiscall] = ACTIONS(5552), + [anon_sym___vectorcall] = ACTIONS(5552), + [anon_sym_signed] = ACTIONS(5552), + [anon_sym_unsigned] = ACTIONS(5552), + [anon_sym_long] = ACTIONS(5552), + [anon_sym_short] = ACTIONS(5552), + [anon_sym_static] = ACTIONS(5552), + [anon_sym_auto] = ACTIONS(5552), + [anon_sym_register] = ACTIONS(5552), + [anon_sym_inline] = ACTIONS(5552), + [anon_sym___inline] = ACTIONS(5552), + [anon_sym___inline__] = ACTIONS(5552), + [anon_sym___forceinline] = ACTIONS(5552), + [anon_sym_thread_local] = ACTIONS(5552), + [anon_sym___thread] = ACTIONS(5552), + [anon_sym_CG_EXTERN] = ACTIONS(5552), + [anon_sym_CG_INLINE] = ACTIONS(5552), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5552), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5552), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5552), + [anon_sym_IBOutlet] = ACTIONS(5552), + [anon_sym_IBInspectable] = ACTIONS(5552), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5552), + [anon_sym_NS_INLINE] = ACTIONS(5552), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5552), + [anon_sym_OBJC_EXPORT] = ACTIONS(5552), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5552), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5552), + [anon_sym_const] = ACTIONS(5552), + [anon_sym_constexpr] = ACTIONS(5552), + [anon_sym_volatile] = ACTIONS(5552), + [anon_sym_restrict] = ACTIONS(5552), + [anon_sym___restrict__] = ACTIONS(5552), + [anon_sym__Atomic] = ACTIONS(5552), + [anon_sym__Noreturn] = ACTIONS(5552), + [anon_sym__Nonnull] = ACTIONS(5552), + [anon_sym_nullable] = ACTIONS(5552), + [anon_sym__Complex] = ACTIONS(5552), + [anon_sym__Nullable] = ACTIONS(5552), + [anon_sym__Nullable_result] = ACTIONS(5552), + [anon_sym__Null_unspecified] = ACTIONS(5552), + [anon_sym___autoreleasing] = ACTIONS(5552), + [anon_sym___block] = ACTIONS(5552), + [anon_sym___bridge] = ACTIONS(5552), + [anon_sym___bridge_retained] = ACTIONS(5552), + [anon_sym___bridge_transfer] = ACTIONS(5552), + [anon_sym___complex] = ACTIONS(5552), + [anon_sym___const] = ACTIONS(5552), + [anon_sym___imag] = ACTIONS(5552), + [anon_sym___kindof] = ACTIONS(5552), + [anon_sym___nonnull] = ACTIONS(5552), + [anon_sym___nullable] = ACTIONS(5552), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5552), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5552), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5552), + [anon_sym___real] = ACTIONS(5552), + [anon_sym___strong] = ACTIONS(5552), + [anon_sym___unsafe_unretained] = ACTIONS(5552), + [anon_sym___unused] = ACTIONS(5552), + [anon_sym___weak] = ACTIONS(5552), + [anon_sym_alignas] = ACTIONS(5552), + [anon_sym__Alignas] = ACTIONS(5552), + [sym_primitive_type] = ACTIONS(5552), + [anon_sym_enum] = ACTIONS(5552), + [anon_sym_struct] = ACTIONS(5552), + [anon_sym_union] = ACTIONS(5552), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5552), + [anon_sym___typeof] = ACTIONS(5552), + [anon_sym_typeof] = ACTIONS(5552), + [aux_sym_preproc_undef_token1] = ACTIONS(5552), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5552), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5552), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5552), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5552), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5552), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5552), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5552), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5552), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5552), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5552), + [anon_sym_NS_AVAILABLE] = ACTIONS(5552), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5552), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5552), + [anon_sym_API_AVAILABLE] = ACTIONS(5552), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5552), + [anon_sym_API_DEPRECATED] = ACTIONS(5552), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5552), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5552), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5552), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5552), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5552), + [anon_sym___deprecated_msg] = ACTIONS(5552), + [anon_sym___deprecated_enum_msg] = ACTIONS(5552), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5552), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5552), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5552), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5552), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5552), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5552), + [anon_sym_ATend] = ACTIONS(5554), + [anon_sym_AToptional] = ACTIONS(5554), + [anon_sym_ATrequired] = ACTIONS(5554), + [anon_sym_ATproperty] = ACTIONS(5554), + [anon_sym_BOOL] = ACTIONS(5552), + [anon_sym_IMP] = ACTIONS(5552), + [anon_sym_SEL] = ACTIONS(5552), + [anon_sym_Class] = ACTIONS(5552), + [anon_sym_id] = ACTIONS(5552), + }, + [2315] = { + [sym_identifier] = ACTIONS(5310), + [aux_sym_preproc_def_token1] = ACTIONS(5310), + [aux_sym_preproc_if_token1] = ACTIONS(5310), + [aux_sym_preproc_if_token2] = ACTIONS(5310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5310), + [sym_preproc_directive] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5312), + [anon_sym_PLUS] = ACTIONS(5312), + [anon_sym_SEMI] = ACTIONS(5556), + [anon_sym___extension__] = ACTIONS(5310), + [anon_sym_typedef] = ACTIONS(5310), + [anon_sym_extern] = ACTIONS(5310), + [anon_sym___attribute__] = ACTIONS(5310), + [anon_sym___attribute] = ACTIONS(5310), + [anon_sym_noreturn] = ACTIONS(5310), + [anon_sym_LBRACK] = ACTIONS(5312), + [anon_sym___declspec] = ACTIONS(5310), + [anon_sym___cdecl] = ACTIONS(5310), + [anon_sym___clrcall] = ACTIONS(5310), + [anon_sym___stdcall] = ACTIONS(5310), + [anon_sym___fastcall] = ACTIONS(5310), + [anon_sym___thiscall] = ACTIONS(5310), + [anon_sym___vectorcall] = ACTIONS(5310), + [anon_sym_signed] = ACTIONS(5310), + [anon_sym_unsigned] = ACTIONS(5310), + [anon_sym_long] = ACTIONS(5310), + [anon_sym_short] = ACTIONS(5310), + [anon_sym_static] = ACTIONS(5310), + [anon_sym_auto] = ACTIONS(5310), + [anon_sym_register] = ACTIONS(5310), + [anon_sym_inline] = ACTIONS(5310), + [anon_sym___inline] = ACTIONS(5310), + [anon_sym___inline__] = ACTIONS(5310), + [anon_sym___forceinline] = ACTIONS(5310), + [anon_sym_thread_local] = ACTIONS(5310), + [anon_sym___thread] = ACTIONS(5310), + [anon_sym_CG_EXTERN] = ACTIONS(5310), + [anon_sym_CG_INLINE] = ACTIONS(5310), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5310), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5310), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5310), + [anon_sym_IBOutlet] = ACTIONS(5310), + [anon_sym_IBInspectable] = ACTIONS(5310), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5310), + [anon_sym_NS_INLINE] = ACTIONS(5310), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5310), + [anon_sym_OBJC_EXPORT] = ACTIONS(5310), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5310), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5310), + [anon_sym_const] = ACTIONS(5310), + [anon_sym_constexpr] = ACTIONS(5310), + [anon_sym_volatile] = ACTIONS(5310), + [anon_sym_restrict] = ACTIONS(5310), + [anon_sym___restrict__] = ACTIONS(5310), + [anon_sym__Atomic] = ACTIONS(5310), + [anon_sym__Noreturn] = ACTIONS(5310), + [anon_sym__Nonnull] = ACTIONS(5310), + [anon_sym_nullable] = ACTIONS(5310), + [anon_sym__Complex] = ACTIONS(5310), + [anon_sym__Nullable] = ACTIONS(5310), + [anon_sym__Nullable_result] = ACTIONS(5310), + [anon_sym__Null_unspecified] = ACTIONS(5310), + [anon_sym___autoreleasing] = ACTIONS(5310), + [anon_sym___block] = ACTIONS(5310), + [anon_sym___bridge] = ACTIONS(5310), + [anon_sym___bridge_retained] = ACTIONS(5310), + [anon_sym___bridge_transfer] = ACTIONS(5310), + [anon_sym___complex] = ACTIONS(5310), + [anon_sym___const] = ACTIONS(5310), + [anon_sym___imag] = ACTIONS(5310), + [anon_sym___kindof] = ACTIONS(5310), + [anon_sym___nonnull] = ACTIONS(5310), + [anon_sym___nullable] = ACTIONS(5310), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5310), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5310), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5310), + [anon_sym___real] = ACTIONS(5310), + [anon_sym___strong] = ACTIONS(5310), + [anon_sym___unsafe_unretained] = ACTIONS(5310), + [anon_sym___unused] = ACTIONS(5310), + [anon_sym___weak] = ACTIONS(5310), + [anon_sym_alignas] = ACTIONS(5310), + [anon_sym__Alignas] = ACTIONS(5310), + [sym_primitive_type] = ACTIONS(5310), + [anon_sym_enum] = ACTIONS(5310), + [anon_sym_struct] = ACTIONS(5310), + [anon_sym_union] = ACTIONS(5310), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5310), + [anon_sym___typeof] = ACTIONS(5310), + [anon_sym_typeof] = ACTIONS(5310), + [aux_sym_preproc_undef_token1] = ACTIONS(5310), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5310), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5310), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5310), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5310), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5310), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5310), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5310), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5310), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5310), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5310), + [anon_sym_NS_AVAILABLE] = ACTIONS(5310), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5310), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5310), + [anon_sym_API_AVAILABLE] = ACTIONS(5310), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5310), + [anon_sym_API_DEPRECATED] = ACTIONS(5310), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5310), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5310), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5310), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5310), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5310), + [anon_sym___deprecated_msg] = ACTIONS(5310), + [anon_sym___deprecated_enum_msg] = ACTIONS(5310), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5310), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5310), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5310), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5310), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5310), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5310), + [anon_sym_ATsynthesize] = ACTIONS(5312), + [anon_sym_ATdynamic] = ACTIONS(5312), + [anon_sym_BOOL] = ACTIONS(5310), + [anon_sym_IMP] = ACTIONS(5310), + [anon_sym_SEL] = ACTIONS(5310), + [anon_sym_Class] = ACTIONS(5310), + [anon_sym_id] = ACTIONS(5310), + }, + [2316] = { + [sym_identifier] = ACTIONS(5558), + [aux_sym_preproc_def_token1] = ACTIONS(5558), + [aux_sym_preproc_if_token1] = ACTIONS(5558), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5558), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5558), + [sym_preproc_directive] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5560), + [anon_sym_PLUS] = ACTIONS(5560), + [anon_sym___extension__] = ACTIONS(5558), + [anon_sym_typedef] = ACTIONS(5558), + [anon_sym_extern] = ACTIONS(5558), + [anon_sym___attribute__] = ACTIONS(5558), + [anon_sym___attribute] = ACTIONS(5558), + [anon_sym_noreturn] = ACTIONS(5558), + [anon_sym_LBRACK] = ACTIONS(5560), + [anon_sym___declspec] = ACTIONS(5558), + [anon_sym___cdecl] = ACTIONS(5558), + [anon_sym___clrcall] = ACTIONS(5558), + [anon_sym___stdcall] = ACTIONS(5558), + [anon_sym___fastcall] = ACTIONS(5558), + [anon_sym___thiscall] = ACTIONS(5558), + [anon_sym___vectorcall] = ACTIONS(5558), + [anon_sym_signed] = ACTIONS(5558), + [anon_sym_unsigned] = ACTIONS(5558), + [anon_sym_long] = ACTIONS(5558), + [anon_sym_short] = ACTIONS(5558), + [anon_sym_static] = ACTIONS(5558), + [anon_sym_auto] = ACTIONS(5558), + [anon_sym_register] = ACTIONS(5558), + [anon_sym_inline] = ACTIONS(5558), + [anon_sym___inline] = ACTIONS(5558), + [anon_sym___inline__] = ACTIONS(5558), + [anon_sym___forceinline] = ACTIONS(5558), + [anon_sym_thread_local] = ACTIONS(5558), + [anon_sym___thread] = ACTIONS(5558), + [anon_sym_CG_EXTERN] = ACTIONS(5558), + [anon_sym_CG_INLINE] = ACTIONS(5558), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5558), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5558), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5558), + [anon_sym_IBOutlet] = ACTIONS(5558), + [anon_sym_IBInspectable] = ACTIONS(5558), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5558), + [anon_sym_NS_INLINE] = ACTIONS(5558), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5558), + [anon_sym_OBJC_EXPORT] = ACTIONS(5558), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5558), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5558), + [anon_sym_const] = ACTIONS(5558), + [anon_sym_constexpr] = ACTIONS(5558), + [anon_sym_volatile] = ACTIONS(5558), + [anon_sym_restrict] = ACTIONS(5558), + [anon_sym___restrict__] = ACTIONS(5558), + [anon_sym__Atomic] = ACTIONS(5558), + [anon_sym__Noreturn] = ACTIONS(5558), + [anon_sym__Nonnull] = ACTIONS(5558), + [anon_sym_nullable] = ACTIONS(5558), + [anon_sym__Complex] = ACTIONS(5558), + [anon_sym__Nullable] = ACTIONS(5558), + [anon_sym__Nullable_result] = ACTIONS(5558), + [anon_sym__Null_unspecified] = ACTIONS(5558), + [anon_sym___autoreleasing] = ACTIONS(5558), + [anon_sym___block] = ACTIONS(5558), + [anon_sym___bridge] = ACTIONS(5558), + [anon_sym___bridge_retained] = ACTIONS(5558), + [anon_sym___bridge_transfer] = ACTIONS(5558), + [anon_sym___complex] = ACTIONS(5558), + [anon_sym___const] = ACTIONS(5558), + [anon_sym___imag] = ACTIONS(5558), + [anon_sym___kindof] = ACTIONS(5558), + [anon_sym___nonnull] = ACTIONS(5558), + [anon_sym___nullable] = ACTIONS(5558), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5558), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5558), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5558), + [anon_sym___real] = ACTIONS(5558), + [anon_sym___strong] = ACTIONS(5558), + [anon_sym___unsafe_unretained] = ACTIONS(5558), + [anon_sym___unused] = ACTIONS(5558), + [anon_sym___weak] = ACTIONS(5558), + [anon_sym_alignas] = ACTIONS(5558), + [anon_sym__Alignas] = ACTIONS(5558), + [sym_primitive_type] = ACTIONS(5558), + [anon_sym_enum] = ACTIONS(5558), + [anon_sym_struct] = ACTIONS(5558), + [anon_sym_union] = ACTIONS(5558), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5558), + [anon_sym___typeof] = ACTIONS(5558), + [anon_sym_typeof] = ACTIONS(5558), + [aux_sym_preproc_undef_token1] = ACTIONS(5558), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5558), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5558), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5558), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5558), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5558), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5558), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5558), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5558), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5558), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5558), + [anon_sym_NS_AVAILABLE] = ACTIONS(5558), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5558), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5558), + [anon_sym_API_AVAILABLE] = ACTIONS(5558), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5558), + [anon_sym_API_DEPRECATED] = ACTIONS(5558), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5558), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5558), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5558), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5558), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5558), + [anon_sym___deprecated_msg] = ACTIONS(5558), + [anon_sym___deprecated_enum_msg] = ACTIONS(5558), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5558), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5558), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5558), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5558), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5558), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5558), + [anon_sym_ATend] = ACTIONS(5560), + [anon_sym_ATsynthesize] = ACTIONS(5560), + [anon_sym_ATdynamic] = ACTIONS(5560), + [anon_sym_ATproperty] = ACTIONS(5560), + [anon_sym_BOOL] = ACTIONS(5558), + [anon_sym_IMP] = ACTIONS(5558), + [anon_sym_SEL] = ACTIONS(5558), + [anon_sym_Class] = ACTIONS(5558), + [anon_sym_id] = ACTIONS(5558), + }, + [2317] = { + [sym_identifier] = ACTIONS(2868), + [aux_sym_preproc_def_token1] = ACTIONS(2868), + [aux_sym_preproc_if_token1] = ACTIONS(2868), + [aux_sym_preproc_if_token2] = ACTIONS(2868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2868), + [sym_preproc_directive] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym___extension__] = ACTIONS(2868), + [anon_sym_typedef] = ACTIONS(2868), + [anon_sym_extern] = ACTIONS(2868), + [anon_sym___attribute__] = ACTIONS(2868), + [anon_sym___attribute] = ACTIONS(2868), + [anon_sym_noreturn] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2870), + [anon_sym___declspec] = ACTIONS(2868), + [anon_sym___cdecl] = ACTIONS(2868), + [anon_sym___clrcall] = ACTIONS(2868), + [anon_sym___stdcall] = ACTIONS(2868), + [anon_sym___fastcall] = ACTIONS(2868), + [anon_sym___thiscall] = ACTIONS(2868), + [anon_sym___vectorcall] = ACTIONS(2868), + [anon_sym_signed] = ACTIONS(2868), + [anon_sym_unsigned] = ACTIONS(2868), + [anon_sym_long] = ACTIONS(2868), + [anon_sym_short] = ACTIONS(2868), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_auto] = ACTIONS(2868), + [anon_sym_register] = ACTIONS(2868), + [anon_sym_inline] = ACTIONS(2868), + [anon_sym___inline] = ACTIONS(2868), + [anon_sym___inline__] = ACTIONS(2868), + [anon_sym___forceinline] = ACTIONS(2868), + [anon_sym_thread_local] = ACTIONS(2868), + [anon_sym___thread] = ACTIONS(2868), + [anon_sym_CG_EXTERN] = ACTIONS(2868), + [anon_sym_CG_INLINE] = ACTIONS(2868), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2868), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2868), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2868), + [anon_sym_IBOutlet] = ACTIONS(2868), + [anon_sym_IBInspectable] = ACTIONS(2868), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2868), + [anon_sym_NS_INLINE] = ACTIONS(2868), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2868), + [anon_sym_OBJC_EXPORT] = ACTIONS(2868), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2868), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2868), + [anon_sym_const] = ACTIONS(2868), + [anon_sym_constexpr] = ACTIONS(2868), + [anon_sym_volatile] = ACTIONS(2868), + [anon_sym_restrict] = ACTIONS(2868), + [anon_sym___restrict__] = ACTIONS(2868), + [anon_sym__Atomic] = ACTIONS(2868), + [anon_sym__Noreturn] = ACTIONS(2868), + [anon_sym__Nonnull] = ACTIONS(2868), + [anon_sym_nullable] = ACTIONS(2868), + [anon_sym__Complex] = ACTIONS(2868), + [anon_sym__Nullable] = ACTIONS(2868), + [anon_sym__Nullable_result] = ACTIONS(2868), + [anon_sym__Null_unspecified] = ACTIONS(2868), + [anon_sym___autoreleasing] = ACTIONS(2868), + [anon_sym___block] = ACTIONS(2868), + [anon_sym___bridge] = ACTIONS(2868), + [anon_sym___bridge_retained] = ACTIONS(2868), + [anon_sym___bridge_transfer] = ACTIONS(2868), + [anon_sym___complex] = ACTIONS(2868), + [anon_sym___const] = ACTIONS(2868), + [anon_sym___imag] = ACTIONS(2868), + [anon_sym___kindof] = ACTIONS(2868), + [anon_sym___nonnull] = ACTIONS(2868), + [anon_sym___nullable] = ACTIONS(2868), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2868), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2868), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2868), + [anon_sym___real] = ACTIONS(2868), + [anon_sym___strong] = ACTIONS(2868), + [anon_sym___unsafe_unretained] = ACTIONS(2868), + [anon_sym___unused] = ACTIONS(2868), + [anon_sym___weak] = ACTIONS(2868), + [anon_sym_alignas] = ACTIONS(2868), + [anon_sym__Alignas] = ACTIONS(2868), + [sym_primitive_type] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2868), + [anon_sym_union] = ACTIONS(2868), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2868), + [anon_sym___typeof] = ACTIONS(2868), + [anon_sym_typeof] = ACTIONS(2868), + [aux_sym_preproc_undef_token1] = ACTIONS(2868), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2868), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2868), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2868), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2868), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2868), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2868), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2868), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2868), + [anon_sym_NS_AVAILABLE] = ACTIONS(2868), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_API_AVAILABLE] = ACTIONS(2868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_API_DEPRECATED] = ACTIONS(2868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2868), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2868), + [anon_sym___deprecated_msg] = ACTIONS(2868), + [anon_sym___deprecated_enum_msg] = ACTIONS(2868), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2868), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2868), + [anon_sym_ATsynthesize] = ACTIONS(2870), + [anon_sym_ATdynamic] = ACTIONS(2870), + [anon_sym_ATproperty] = ACTIONS(2870), + [anon_sym_BOOL] = ACTIONS(2868), + [anon_sym_IMP] = ACTIONS(2868), + [anon_sym_SEL] = ACTIONS(2868), + [anon_sym_Class] = ACTIONS(2868), + [anon_sym_id] = ACTIONS(2868), + }, + [2318] = { + [sym_identifier] = ACTIONS(2576), + [aux_sym_preproc_def_token1] = ACTIONS(2576), + [aux_sym_preproc_if_token1] = ACTIONS(2576), + [aux_sym_preproc_if_token2] = ACTIONS(2576), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2576), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2576), + [sym_preproc_directive] = ACTIONS(2576), + [anon_sym_DASH] = ACTIONS(2578), + [anon_sym_PLUS] = ACTIONS(2578), + [anon_sym___extension__] = ACTIONS(2576), + [anon_sym_typedef] = ACTIONS(2576), + [anon_sym_extern] = ACTIONS(2576), + [anon_sym___attribute__] = ACTIONS(2576), + [anon_sym___attribute] = ACTIONS(2576), + [anon_sym_noreturn] = ACTIONS(2576), + [anon_sym_LBRACK] = ACTIONS(2578), + [anon_sym___declspec] = ACTIONS(2576), + [anon_sym___cdecl] = ACTIONS(2576), + [anon_sym___clrcall] = ACTIONS(2576), + [anon_sym___stdcall] = ACTIONS(2576), + [anon_sym___fastcall] = ACTIONS(2576), + [anon_sym___thiscall] = ACTIONS(2576), + [anon_sym___vectorcall] = ACTIONS(2576), + [anon_sym_signed] = ACTIONS(2576), + [anon_sym_unsigned] = ACTIONS(2576), + [anon_sym_long] = ACTIONS(2576), + [anon_sym_short] = ACTIONS(2576), + [anon_sym_static] = ACTIONS(2576), + [anon_sym_auto] = ACTIONS(2576), + [anon_sym_register] = ACTIONS(2576), + [anon_sym_inline] = ACTIONS(2576), + [anon_sym___inline] = ACTIONS(2576), + [anon_sym___inline__] = ACTIONS(2576), + [anon_sym___forceinline] = ACTIONS(2576), + [anon_sym_thread_local] = ACTIONS(2576), + [anon_sym___thread] = ACTIONS(2576), + [anon_sym_CG_EXTERN] = ACTIONS(2576), + [anon_sym_CG_INLINE] = ACTIONS(2576), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2576), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2576), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2576), + [anon_sym_IBOutlet] = ACTIONS(2576), + [anon_sym_IBInspectable] = ACTIONS(2576), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2576), + [anon_sym_NS_INLINE] = ACTIONS(2576), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2576), + [anon_sym_OBJC_EXPORT] = ACTIONS(2576), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2576), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2576), + [anon_sym_const] = ACTIONS(2576), + [anon_sym_constexpr] = ACTIONS(2576), + [anon_sym_volatile] = ACTIONS(2576), + [anon_sym_restrict] = ACTIONS(2576), + [anon_sym___restrict__] = ACTIONS(2576), + [anon_sym__Atomic] = ACTIONS(2576), + [anon_sym__Noreturn] = ACTIONS(2576), + [anon_sym__Nonnull] = ACTIONS(2576), + [anon_sym_nullable] = ACTIONS(2576), + [anon_sym__Complex] = ACTIONS(2576), + [anon_sym__Nullable] = ACTIONS(2576), + [anon_sym__Nullable_result] = ACTIONS(2576), + [anon_sym__Null_unspecified] = ACTIONS(2576), + [anon_sym___autoreleasing] = ACTIONS(2576), + [anon_sym___block] = ACTIONS(2576), + [anon_sym___bridge] = ACTIONS(2576), + [anon_sym___bridge_retained] = ACTIONS(2576), + [anon_sym___bridge_transfer] = ACTIONS(2576), + [anon_sym___complex] = ACTIONS(2576), + [anon_sym___const] = ACTIONS(2576), + [anon_sym___imag] = ACTIONS(2576), + [anon_sym___kindof] = ACTIONS(2576), + [anon_sym___nonnull] = ACTIONS(2576), + [anon_sym___nullable] = ACTIONS(2576), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2576), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2576), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2576), + [anon_sym___real] = ACTIONS(2576), + [anon_sym___strong] = ACTIONS(2576), + [anon_sym___unsafe_unretained] = ACTIONS(2576), + [anon_sym___unused] = ACTIONS(2576), + [anon_sym___weak] = ACTIONS(2576), + [anon_sym_alignas] = ACTIONS(2576), + [anon_sym__Alignas] = ACTIONS(2576), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2576), + [anon_sym_struct] = ACTIONS(2576), + [anon_sym_union] = ACTIONS(2576), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2576), + [anon_sym___typeof] = ACTIONS(2576), + [anon_sym_typeof] = ACTIONS(2576), + [aux_sym_preproc_undef_token1] = ACTIONS(2576), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2576), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2576), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2576), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2576), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2576), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2576), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2576), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2576), + [anon_sym_NS_AVAILABLE] = ACTIONS(2576), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2576), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_API_AVAILABLE] = ACTIONS(2576), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_API_DEPRECATED] = ACTIONS(2576), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2576), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2576), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2576), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2576), + [anon_sym___deprecated_msg] = ACTIONS(2576), + [anon_sym___deprecated_enum_msg] = ACTIONS(2576), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2576), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2576), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2576), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2576), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2576), + [anon_sym_ATsynthesize] = ACTIONS(2578), + [anon_sym_ATdynamic] = ACTIONS(2578), + [anon_sym_ATproperty] = ACTIONS(2578), + [anon_sym_BOOL] = ACTIONS(2576), + [anon_sym_IMP] = ACTIONS(2576), + [anon_sym_SEL] = ACTIONS(2576), + [anon_sym_Class] = ACTIONS(2576), + [anon_sym_id] = ACTIONS(2576), + }, + [2319] = { + [sym_identifier] = ACTIONS(5562), + [aux_sym_preproc_def_token1] = ACTIONS(5562), + [aux_sym_preproc_if_token1] = ACTIONS(5562), + [aux_sym_preproc_if_token2] = ACTIONS(5562), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5562), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5562), + [aux_sym_preproc_else_token1] = ACTIONS(5562), + [aux_sym_preproc_elif_token1] = ACTIONS(5562), + [sym_preproc_directive] = ACTIONS(5562), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym___extension__] = ACTIONS(5562), + [anon_sym_typedef] = ACTIONS(5562), + [anon_sym_extern] = ACTIONS(5562), + [anon_sym___attribute__] = ACTIONS(5562), + [anon_sym___attribute] = ACTIONS(5562), + [anon_sym_noreturn] = ACTIONS(5562), + [anon_sym_LBRACK] = ACTIONS(5564), + [anon_sym___declspec] = ACTIONS(5562), + [anon_sym___cdecl] = ACTIONS(5562), + [anon_sym___clrcall] = ACTIONS(5562), + [anon_sym___stdcall] = ACTIONS(5562), + [anon_sym___fastcall] = ACTIONS(5562), + [anon_sym___thiscall] = ACTIONS(5562), + [anon_sym___vectorcall] = ACTIONS(5562), + [anon_sym_signed] = ACTIONS(5562), + [anon_sym_unsigned] = ACTIONS(5562), + [anon_sym_long] = ACTIONS(5562), + [anon_sym_short] = ACTIONS(5562), + [anon_sym_static] = ACTIONS(5562), + [anon_sym_auto] = ACTIONS(5562), + [anon_sym_register] = ACTIONS(5562), + [anon_sym_inline] = ACTIONS(5562), + [anon_sym___inline] = ACTIONS(5562), + [anon_sym___inline__] = ACTIONS(5562), + [anon_sym___forceinline] = ACTIONS(5562), + [anon_sym_thread_local] = ACTIONS(5562), + [anon_sym___thread] = ACTIONS(5562), + [anon_sym_CG_EXTERN] = ACTIONS(5562), + [anon_sym_CG_INLINE] = ACTIONS(5562), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5562), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5562), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5562), + [anon_sym_IBOutlet] = ACTIONS(5562), + [anon_sym_IBInspectable] = ACTIONS(5562), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5562), + [anon_sym_NS_INLINE] = ACTIONS(5562), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5562), + [anon_sym_OBJC_EXPORT] = ACTIONS(5562), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5562), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5562), + [anon_sym_const] = ACTIONS(5562), + [anon_sym_constexpr] = ACTIONS(5562), + [anon_sym_volatile] = ACTIONS(5562), + [anon_sym_restrict] = ACTIONS(5562), + [anon_sym___restrict__] = ACTIONS(5562), + [anon_sym__Atomic] = ACTIONS(5562), + [anon_sym__Noreturn] = ACTIONS(5562), + [anon_sym__Nonnull] = ACTIONS(5562), + [anon_sym_nullable] = ACTIONS(5562), + [anon_sym__Complex] = ACTIONS(5562), + [anon_sym__Nullable] = ACTIONS(5562), + [anon_sym__Nullable_result] = ACTIONS(5562), + [anon_sym__Null_unspecified] = ACTIONS(5562), + [anon_sym___autoreleasing] = ACTIONS(5562), + [anon_sym___block] = ACTIONS(5562), + [anon_sym___bridge] = ACTIONS(5562), + [anon_sym___bridge_retained] = ACTIONS(5562), + [anon_sym___bridge_transfer] = ACTIONS(5562), + [anon_sym___complex] = ACTIONS(5562), + [anon_sym___const] = ACTIONS(5562), + [anon_sym___imag] = ACTIONS(5562), + [anon_sym___kindof] = ACTIONS(5562), + [anon_sym___nonnull] = ACTIONS(5562), + [anon_sym___nullable] = ACTIONS(5562), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5562), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5562), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5562), + [anon_sym___real] = ACTIONS(5562), + [anon_sym___strong] = ACTIONS(5562), + [anon_sym___unsafe_unretained] = ACTIONS(5562), + [anon_sym___unused] = ACTIONS(5562), + [anon_sym___weak] = ACTIONS(5562), + [anon_sym_alignas] = ACTIONS(5562), + [anon_sym__Alignas] = ACTIONS(5562), + [sym_primitive_type] = ACTIONS(5562), + [anon_sym_enum] = ACTIONS(5562), + [anon_sym_struct] = ACTIONS(5562), + [anon_sym_union] = ACTIONS(5562), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5562), + [anon_sym___typeof] = ACTIONS(5562), + [anon_sym_typeof] = ACTIONS(5562), + [aux_sym_preproc_undef_token1] = ACTIONS(5562), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5562), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5562), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5562), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5562), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5562), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5562), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5562), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5562), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5562), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5562), + [anon_sym_NS_AVAILABLE] = ACTIONS(5562), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5562), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5562), + [anon_sym_API_AVAILABLE] = ACTIONS(5562), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5562), + [anon_sym_API_DEPRECATED] = ACTIONS(5562), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5562), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5562), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5562), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5562), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5562), + [anon_sym___deprecated_msg] = ACTIONS(5562), + [anon_sym___deprecated_enum_msg] = ACTIONS(5562), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5562), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5562), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5562), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5562), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5562), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5562), + [anon_sym_ATproperty] = ACTIONS(5564), + [anon_sym_BOOL] = ACTIONS(5562), + [anon_sym_IMP] = ACTIONS(5562), + [anon_sym_SEL] = ACTIONS(5562), + [anon_sym_Class] = ACTIONS(5562), + [anon_sym_id] = ACTIONS(5562), + }, + [2320] = { + [aux_sym_method_declaration_repeat2] = STATE(2269), + [sym_identifier] = ACTIONS(5373), + [aux_sym_preproc_def_token1] = ACTIONS(5373), + [aux_sym_preproc_if_token1] = ACTIONS(5373), + [aux_sym_preproc_if_token2] = ACTIONS(5373), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5373), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5373), + [sym_preproc_directive] = ACTIONS(5373), + [anon_sym_DASH] = ACTIONS(5375), + [anon_sym_PLUS] = ACTIONS(5375), + [anon_sym_SEMI] = ACTIONS(5477), + [anon_sym___extension__] = ACTIONS(5373), + [anon_sym_typedef] = ACTIONS(5373), + [anon_sym_extern] = ACTIONS(5373), + [anon_sym___attribute__] = ACTIONS(5373), + [anon_sym___attribute] = ACTIONS(5373), + [anon_sym_noreturn] = ACTIONS(5373), + [anon_sym_LBRACK] = ACTIONS(5375), + [anon_sym___declspec] = ACTIONS(5373), + [anon_sym___cdecl] = ACTIONS(5373), + [anon_sym___clrcall] = ACTIONS(5373), + [anon_sym___stdcall] = ACTIONS(5373), + [anon_sym___fastcall] = ACTIONS(5373), + [anon_sym___thiscall] = ACTIONS(5373), + [anon_sym___vectorcall] = ACTIONS(5373), + [anon_sym_signed] = ACTIONS(5373), + [anon_sym_unsigned] = ACTIONS(5373), + [anon_sym_long] = ACTIONS(5373), + [anon_sym_short] = ACTIONS(5373), + [anon_sym_static] = ACTIONS(5373), + [anon_sym_auto] = ACTIONS(5373), + [anon_sym_register] = ACTIONS(5373), + [anon_sym_inline] = ACTIONS(5373), + [anon_sym___inline] = ACTIONS(5373), + [anon_sym___inline__] = ACTIONS(5373), + [anon_sym___forceinline] = ACTIONS(5373), + [anon_sym_thread_local] = ACTIONS(5373), + [anon_sym___thread] = ACTIONS(5373), + [anon_sym_CG_EXTERN] = ACTIONS(5373), + [anon_sym_CG_INLINE] = ACTIONS(5373), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5373), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5373), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5373), + [anon_sym_IBOutlet] = ACTIONS(5373), + [anon_sym_IBInspectable] = ACTIONS(5373), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5373), + [anon_sym_NS_INLINE] = ACTIONS(5373), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5373), + [anon_sym_OBJC_EXPORT] = ACTIONS(5373), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5373), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5373), + [anon_sym_const] = ACTIONS(5373), + [anon_sym_constexpr] = ACTIONS(5373), + [anon_sym_volatile] = ACTIONS(5373), + [anon_sym_restrict] = ACTIONS(5373), + [anon_sym___restrict__] = ACTIONS(5373), + [anon_sym__Atomic] = ACTIONS(5373), + [anon_sym__Noreturn] = ACTIONS(5373), + [anon_sym__Nonnull] = ACTIONS(5373), + [anon_sym_nullable] = ACTIONS(5373), + [anon_sym__Complex] = ACTIONS(5373), + [anon_sym__Nullable] = ACTIONS(5373), + [anon_sym__Nullable_result] = ACTIONS(5373), + [anon_sym__Null_unspecified] = ACTIONS(5373), + [anon_sym___autoreleasing] = ACTIONS(5373), + [anon_sym___block] = ACTIONS(5373), + [anon_sym___bridge] = ACTIONS(5373), + [anon_sym___bridge_retained] = ACTIONS(5373), + [anon_sym___bridge_transfer] = ACTIONS(5373), + [anon_sym___complex] = ACTIONS(5373), + [anon_sym___const] = ACTIONS(5373), + [anon_sym___imag] = ACTIONS(5373), + [anon_sym___kindof] = ACTIONS(5373), + [anon_sym___nonnull] = ACTIONS(5373), + [anon_sym___nullable] = ACTIONS(5373), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5373), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5373), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5373), + [anon_sym___real] = ACTIONS(5373), + [anon_sym___strong] = ACTIONS(5373), + [anon_sym___unsafe_unretained] = ACTIONS(5373), + [anon_sym___unused] = ACTIONS(5373), + [anon_sym___weak] = ACTIONS(5373), + [anon_sym_alignas] = ACTIONS(5373), + [anon_sym__Alignas] = ACTIONS(5373), + [sym_primitive_type] = ACTIONS(5373), + [anon_sym_enum] = ACTIONS(5373), + [anon_sym_struct] = ACTIONS(5373), + [anon_sym_union] = ACTIONS(5373), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5373), + [anon_sym___typeof] = ACTIONS(5373), + [anon_sym_typeof] = ACTIONS(5373), + [aux_sym_preproc_undef_token1] = ACTIONS(5373), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5373), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5373), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5373), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5373), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5373), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5373), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5373), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5373), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5373), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5373), + [anon_sym_NS_AVAILABLE] = ACTIONS(5373), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5373), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5373), + [anon_sym_API_AVAILABLE] = ACTIONS(5373), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5373), + [anon_sym_API_DEPRECATED] = ACTIONS(5373), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5373), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5373), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5373), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5373), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5373), + [anon_sym___deprecated_msg] = ACTIONS(5373), + [anon_sym___deprecated_enum_msg] = ACTIONS(5373), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5373), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5373), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5373), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5373), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5373), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5373), + [anon_sym_ATproperty] = ACTIONS(5375), + [anon_sym_BOOL] = ACTIONS(5373), + [anon_sym_IMP] = ACTIONS(5373), + [anon_sym_SEL] = ACTIONS(5373), + [anon_sym_Class] = ACTIONS(5373), + [anon_sym_id] = ACTIONS(5373), + }, + [2321] = { + [sym_identifier] = ACTIONS(5377), + [aux_sym_preproc_def_token1] = ACTIONS(5377), + [aux_sym_preproc_if_token1] = ACTIONS(5377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5377), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5377), + [sym_preproc_directive] = ACTIONS(5377), + [anon_sym_DASH] = ACTIONS(5379), + [anon_sym_PLUS] = ACTIONS(5379), + [anon_sym_SEMI] = ACTIONS(5566), + [anon_sym___extension__] = ACTIONS(5377), + [anon_sym_typedef] = ACTIONS(5377), + [anon_sym_extern] = ACTIONS(5377), + [anon_sym___attribute__] = ACTIONS(5377), + [anon_sym___attribute] = ACTIONS(5377), + [anon_sym_noreturn] = ACTIONS(5377), + [anon_sym_LBRACK] = ACTIONS(5379), + [anon_sym___declspec] = ACTIONS(5377), + [anon_sym___cdecl] = ACTIONS(5377), + [anon_sym___clrcall] = ACTIONS(5377), + [anon_sym___stdcall] = ACTIONS(5377), + [anon_sym___fastcall] = ACTIONS(5377), + [anon_sym___thiscall] = ACTIONS(5377), + [anon_sym___vectorcall] = ACTIONS(5377), + [anon_sym_signed] = ACTIONS(5377), + [anon_sym_unsigned] = ACTIONS(5377), + [anon_sym_long] = ACTIONS(5377), + [anon_sym_short] = ACTIONS(5377), + [anon_sym_static] = ACTIONS(5377), + [anon_sym_auto] = ACTIONS(5377), + [anon_sym_register] = ACTIONS(5377), + [anon_sym_inline] = ACTIONS(5377), + [anon_sym___inline] = ACTIONS(5377), + [anon_sym___inline__] = ACTIONS(5377), + [anon_sym___forceinline] = ACTIONS(5377), + [anon_sym_thread_local] = ACTIONS(5377), + [anon_sym___thread] = ACTIONS(5377), + [anon_sym_CG_EXTERN] = ACTIONS(5377), + [anon_sym_CG_INLINE] = ACTIONS(5377), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5377), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5377), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5377), + [anon_sym_IBOutlet] = ACTIONS(5377), + [anon_sym_IBInspectable] = ACTIONS(5377), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5377), + [anon_sym_NS_INLINE] = ACTIONS(5377), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5377), + [anon_sym_OBJC_EXPORT] = ACTIONS(5377), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5377), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5377), + [anon_sym_const] = ACTIONS(5377), + [anon_sym_constexpr] = ACTIONS(5377), + [anon_sym_volatile] = ACTIONS(5377), + [anon_sym_restrict] = ACTIONS(5377), + [anon_sym___restrict__] = ACTIONS(5377), + [anon_sym__Atomic] = ACTIONS(5377), + [anon_sym__Noreturn] = ACTIONS(5377), + [anon_sym__Nonnull] = ACTIONS(5377), + [anon_sym_nullable] = ACTIONS(5377), + [anon_sym__Complex] = ACTIONS(5377), + [anon_sym__Nullable] = ACTIONS(5377), + [anon_sym__Nullable_result] = ACTIONS(5377), + [anon_sym__Null_unspecified] = ACTIONS(5377), + [anon_sym___autoreleasing] = ACTIONS(5377), + [anon_sym___block] = ACTIONS(5377), + [anon_sym___bridge] = ACTIONS(5377), + [anon_sym___bridge_retained] = ACTIONS(5377), + [anon_sym___bridge_transfer] = ACTIONS(5377), + [anon_sym___complex] = ACTIONS(5377), + [anon_sym___const] = ACTIONS(5377), + [anon_sym___imag] = ACTIONS(5377), + [anon_sym___kindof] = ACTIONS(5377), + [anon_sym___nonnull] = ACTIONS(5377), + [anon_sym___nullable] = ACTIONS(5377), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5377), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5377), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5377), + [anon_sym___real] = ACTIONS(5377), + [anon_sym___strong] = ACTIONS(5377), + [anon_sym___unsafe_unretained] = ACTIONS(5377), + [anon_sym___unused] = ACTIONS(5377), + [anon_sym___weak] = ACTIONS(5377), + [anon_sym_alignas] = ACTIONS(5377), + [anon_sym__Alignas] = ACTIONS(5377), + [sym_primitive_type] = ACTIONS(5377), + [anon_sym_enum] = ACTIONS(5377), + [anon_sym_struct] = ACTIONS(5377), + [anon_sym_union] = ACTIONS(5377), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5377), + [anon_sym___typeof] = ACTIONS(5377), + [anon_sym_typeof] = ACTIONS(5377), + [aux_sym_preproc_undef_token1] = ACTIONS(5377), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5377), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5377), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5377), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5377), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5377), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5377), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5377), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5377), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5377), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5377), + [anon_sym_NS_AVAILABLE] = ACTIONS(5377), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5377), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5377), + [anon_sym_API_AVAILABLE] = ACTIONS(5377), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5377), + [anon_sym_API_DEPRECATED] = ACTIONS(5377), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5377), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5377), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5377), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5377), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5377), + [anon_sym___deprecated_msg] = ACTIONS(5377), + [anon_sym___deprecated_enum_msg] = ACTIONS(5377), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5377), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5377), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5377), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5377), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5377), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5377), + [anon_sym_ATend] = ACTIONS(5379), + [anon_sym_ATsynthesize] = ACTIONS(5379), + [anon_sym_ATdynamic] = ACTIONS(5379), + [anon_sym_BOOL] = ACTIONS(5377), + [anon_sym_IMP] = ACTIONS(5377), + [anon_sym_SEL] = ACTIONS(5377), + [anon_sym_Class] = ACTIONS(5377), + [anon_sym_id] = ACTIONS(5377), + }, + [2322] = { + [sym_identifier] = ACTIONS(5542), + [aux_sym_preproc_def_token1] = ACTIONS(5542), + [aux_sym_preproc_if_token1] = ACTIONS(5542), + [aux_sym_preproc_if_token2] = ACTIONS(5542), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), + [aux_sym_preproc_else_token1] = ACTIONS(5542), + [aux_sym_preproc_elif_token1] = ACTIONS(5542), + [sym_preproc_directive] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5544), + [anon_sym_PLUS] = ACTIONS(5544), + [anon_sym___extension__] = ACTIONS(5542), + [anon_sym_typedef] = ACTIONS(5542), + [anon_sym_extern] = ACTIONS(5542), + [anon_sym___attribute__] = ACTIONS(5542), + [anon_sym___attribute] = ACTIONS(5542), + [anon_sym_noreturn] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5544), + [anon_sym___declspec] = ACTIONS(5542), + [anon_sym___cdecl] = ACTIONS(5542), + [anon_sym___clrcall] = ACTIONS(5542), + [anon_sym___stdcall] = ACTIONS(5542), + [anon_sym___fastcall] = ACTIONS(5542), + [anon_sym___thiscall] = ACTIONS(5542), + [anon_sym___vectorcall] = ACTIONS(5542), + [anon_sym_signed] = ACTIONS(5542), + [anon_sym_unsigned] = ACTIONS(5542), + [anon_sym_long] = ACTIONS(5542), + [anon_sym_short] = ACTIONS(5542), + [anon_sym_static] = ACTIONS(5542), + [anon_sym_auto] = ACTIONS(5542), + [anon_sym_register] = ACTIONS(5542), + [anon_sym_inline] = ACTIONS(5542), + [anon_sym___inline] = ACTIONS(5542), + [anon_sym___inline__] = ACTIONS(5542), + [anon_sym___forceinline] = ACTIONS(5542), + [anon_sym_thread_local] = ACTIONS(5542), + [anon_sym___thread] = ACTIONS(5542), + [anon_sym_CG_EXTERN] = ACTIONS(5542), + [anon_sym_CG_INLINE] = ACTIONS(5542), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5542), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5542), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5542), + [anon_sym_IBOutlet] = ACTIONS(5542), + [anon_sym_IBInspectable] = ACTIONS(5542), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5542), + [anon_sym_NS_INLINE] = ACTIONS(5542), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5542), + [anon_sym_OBJC_EXPORT] = ACTIONS(5542), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5542), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5542), + [anon_sym_const] = ACTIONS(5542), + [anon_sym_constexpr] = ACTIONS(5542), + [anon_sym_volatile] = ACTIONS(5542), + [anon_sym_restrict] = ACTIONS(5542), + [anon_sym___restrict__] = ACTIONS(5542), + [anon_sym__Atomic] = ACTIONS(5542), + [anon_sym__Noreturn] = ACTIONS(5542), + [anon_sym__Nonnull] = ACTIONS(5542), + [anon_sym_nullable] = ACTIONS(5542), + [anon_sym__Complex] = ACTIONS(5542), + [anon_sym__Nullable] = ACTIONS(5542), + [anon_sym__Nullable_result] = ACTIONS(5542), + [anon_sym__Null_unspecified] = ACTIONS(5542), + [anon_sym___autoreleasing] = ACTIONS(5542), + [anon_sym___block] = ACTIONS(5542), + [anon_sym___bridge] = ACTIONS(5542), + [anon_sym___bridge_retained] = ACTIONS(5542), + [anon_sym___bridge_transfer] = ACTIONS(5542), + [anon_sym___complex] = ACTIONS(5542), + [anon_sym___const] = ACTIONS(5542), + [anon_sym___imag] = ACTIONS(5542), + [anon_sym___kindof] = ACTIONS(5542), + [anon_sym___nonnull] = ACTIONS(5542), + [anon_sym___nullable] = ACTIONS(5542), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5542), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5542), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5542), + [anon_sym___real] = ACTIONS(5542), + [anon_sym___strong] = ACTIONS(5542), + [anon_sym___unsafe_unretained] = ACTIONS(5542), + [anon_sym___unused] = ACTIONS(5542), + [anon_sym___weak] = ACTIONS(5542), + [anon_sym_alignas] = ACTIONS(5542), + [anon_sym__Alignas] = ACTIONS(5542), + [sym_primitive_type] = ACTIONS(5542), + [anon_sym_enum] = ACTIONS(5542), + [anon_sym_struct] = ACTIONS(5542), + [anon_sym_union] = ACTIONS(5542), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5542), + [anon_sym___typeof] = ACTIONS(5542), + [anon_sym_typeof] = ACTIONS(5542), + [aux_sym_preproc_undef_token1] = ACTIONS(5542), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5542), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5542), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5542), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5542), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5542), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5542), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5542), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5542), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5542), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5542), + [anon_sym_NS_AVAILABLE] = ACTIONS(5542), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5542), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5542), + [anon_sym_API_AVAILABLE] = ACTIONS(5542), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5542), + [anon_sym_API_DEPRECATED] = ACTIONS(5542), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5542), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5542), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5542), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5542), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5542), + [anon_sym___deprecated_msg] = ACTIONS(5542), + [anon_sym___deprecated_enum_msg] = ACTIONS(5542), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5542), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5542), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5542), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5542), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5542), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5542), + [anon_sym_ATproperty] = ACTIONS(5544), + [anon_sym_BOOL] = ACTIONS(5542), + [anon_sym_IMP] = ACTIONS(5542), + [anon_sym_SEL] = ACTIONS(5542), + [anon_sym_Class] = ACTIONS(5542), + [anon_sym_id] = ACTIONS(5542), + }, + [2323] = { + [aux_sym_method_declaration_repeat2] = STATE(2269), + [sym_identifier] = ACTIONS(5340), + [aux_sym_preproc_def_token1] = ACTIONS(5340), + [aux_sym_preproc_if_token1] = ACTIONS(5340), + [aux_sym_preproc_if_token2] = ACTIONS(5340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5340), + [sym_preproc_directive] = ACTIONS(5340), + [anon_sym_DASH] = ACTIONS(5342), + [anon_sym_PLUS] = ACTIONS(5342), + [anon_sym_SEMI] = ACTIONS(5477), + [anon_sym___extension__] = ACTIONS(5340), + [anon_sym_typedef] = ACTIONS(5340), + [anon_sym_extern] = ACTIONS(5340), + [anon_sym___attribute__] = ACTIONS(5340), + [anon_sym___attribute] = ACTIONS(5340), + [anon_sym_noreturn] = ACTIONS(5340), + [anon_sym_LBRACK] = ACTIONS(5342), + [anon_sym___declspec] = ACTIONS(5340), + [anon_sym___cdecl] = ACTIONS(5340), + [anon_sym___clrcall] = ACTIONS(5340), + [anon_sym___stdcall] = ACTIONS(5340), + [anon_sym___fastcall] = ACTIONS(5340), + [anon_sym___thiscall] = ACTIONS(5340), + [anon_sym___vectorcall] = ACTIONS(5340), + [anon_sym_signed] = ACTIONS(5340), + [anon_sym_unsigned] = ACTIONS(5340), + [anon_sym_long] = ACTIONS(5340), + [anon_sym_short] = ACTIONS(5340), + [anon_sym_static] = ACTIONS(5340), + [anon_sym_auto] = ACTIONS(5340), + [anon_sym_register] = ACTIONS(5340), + [anon_sym_inline] = ACTIONS(5340), + [anon_sym___inline] = ACTIONS(5340), + [anon_sym___inline__] = ACTIONS(5340), + [anon_sym___forceinline] = ACTIONS(5340), + [anon_sym_thread_local] = ACTIONS(5340), + [anon_sym___thread] = ACTIONS(5340), + [anon_sym_CG_EXTERN] = ACTIONS(5340), + [anon_sym_CG_INLINE] = ACTIONS(5340), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5340), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5340), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5340), + [anon_sym_IBOutlet] = ACTIONS(5340), + [anon_sym_IBInspectable] = ACTIONS(5340), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5340), + [anon_sym_NS_INLINE] = ACTIONS(5340), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5340), + [anon_sym_OBJC_EXPORT] = ACTIONS(5340), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5340), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5340), + [anon_sym_const] = ACTIONS(5340), + [anon_sym_constexpr] = ACTIONS(5340), + [anon_sym_volatile] = ACTIONS(5340), + [anon_sym_restrict] = ACTIONS(5340), + [anon_sym___restrict__] = ACTIONS(5340), + [anon_sym__Atomic] = ACTIONS(5340), + [anon_sym__Noreturn] = ACTIONS(5340), + [anon_sym__Nonnull] = ACTIONS(5340), + [anon_sym_nullable] = ACTIONS(5340), + [anon_sym__Complex] = ACTIONS(5340), + [anon_sym__Nullable] = ACTIONS(5340), + [anon_sym__Nullable_result] = ACTIONS(5340), + [anon_sym__Null_unspecified] = ACTIONS(5340), + [anon_sym___autoreleasing] = ACTIONS(5340), + [anon_sym___block] = ACTIONS(5340), + [anon_sym___bridge] = ACTIONS(5340), + [anon_sym___bridge_retained] = ACTIONS(5340), + [anon_sym___bridge_transfer] = ACTIONS(5340), + [anon_sym___complex] = ACTIONS(5340), + [anon_sym___const] = ACTIONS(5340), + [anon_sym___imag] = ACTIONS(5340), + [anon_sym___kindof] = ACTIONS(5340), + [anon_sym___nonnull] = ACTIONS(5340), + [anon_sym___nullable] = ACTIONS(5340), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5340), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5340), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5340), + [anon_sym___real] = ACTIONS(5340), + [anon_sym___strong] = ACTIONS(5340), + [anon_sym___unsafe_unretained] = ACTIONS(5340), + [anon_sym___unused] = ACTIONS(5340), + [anon_sym___weak] = ACTIONS(5340), + [anon_sym_alignas] = ACTIONS(5340), + [anon_sym__Alignas] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(5340), + [anon_sym_enum] = ACTIONS(5340), + [anon_sym_struct] = ACTIONS(5340), + [anon_sym_union] = ACTIONS(5340), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5340), + [anon_sym___typeof] = ACTIONS(5340), + [anon_sym_typeof] = ACTIONS(5340), + [aux_sym_preproc_undef_token1] = ACTIONS(5340), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5340), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5340), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5340), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5340), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5340), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5340), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5340), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5340), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5340), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5340), + [anon_sym_NS_AVAILABLE] = ACTIONS(5340), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5340), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5340), + [anon_sym_API_AVAILABLE] = ACTIONS(5340), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5340), + [anon_sym_API_DEPRECATED] = ACTIONS(5340), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5340), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5340), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5340), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5340), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5340), + [anon_sym___deprecated_msg] = ACTIONS(5340), + [anon_sym___deprecated_enum_msg] = ACTIONS(5340), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5340), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5340), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5340), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5340), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5340), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5340), + [anon_sym_ATproperty] = ACTIONS(5342), + [anon_sym_BOOL] = ACTIONS(5340), + [anon_sym_IMP] = ACTIONS(5340), + [anon_sym_SEL] = ACTIONS(5340), + [anon_sym_Class] = ACTIONS(5340), + [anon_sym_id] = ACTIONS(5340), + }, + [2324] = { + [sym_identifier] = ACTIONS(5538), + [aux_sym_preproc_def_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5538), + [sym_preproc_directive] = ACTIONS(5538), + [anon_sym_DASH] = ACTIONS(5540), + [anon_sym_PLUS] = ACTIONS(5540), + [anon_sym___extension__] = ACTIONS(5538), + [anon_sym_typedef] = ACTIONS(5538), + [anon_sym_extern] = ACTIONS(5538), + [anon_sym___attribute__] = ACTIONS(5538), + [anon_sym___attribute] = ACTIONS(5538), + [anon_sym_noreturn] = ACTIONS(5538), + [anon_sym_LBRACK] = ACTIONS(5540), + [anon_sym___declspec] = ACTIONS(5538), + [anon_sym___cdecl] = ACTIONS(5538), + [anon_sym___clrcall] = ACTIONS(5538), + [anon_sym___stdcall] = ACTIONS(5538), + [anon_sym___fastcall] = ACTIONS(5538), + [anon_sym___thiscall] = ACTIONS(5538), + [anon_sym___vectorcall] = ACTIONS(5538), + [anon_sym_signed] = ACTIONS(5538), + [anon_sym_unsigned] = ACTIONS(5538), + [anon_sym_long] = ACTIONS(5538), + [anon_sym_short] = ACTIONS(5538), + [anon_sym_static] = ACTIONS(5538), + [anon_sym_auto] = ACTIONS(5538), + [anon_sym_register] = ACTIONS(5538), + [anon_sym_inline] = ACTIONS(5538), + [anon_sym___inline] = ACTIONS(5538), + [anon_sym___inline__] = ACTIONS(5538), + [anon_sym___forceinline] = ACTIONS(5538), + [anon_sym_thread_local] = ACTIONS(5538), + [anon_sym___thread] = ACTIONS(5538), + [anon_sym_CG_EXTERN] = ACTIONS(5538), + [anon_sym_CG_INLINE] = ACTIONS(5538), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5538), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5538), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5538), + [anon_sym_IBOutlet] = ACTIONS(5538), + [anon_sym_IBInspectable] = ACTIONS(5538), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5538), + [anon_sym_NS_INLINE] = ACTIONS(5538), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5538), + [anon_sym_OBJC_EXPORT] = ACTIONS(5538), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5538), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5538), + [anon_sym_const] = ACTIONS(5538), + [anon_sym_constexpr] = ACTIONS(5538), + [anon_sym_volatile] = ACTIONS(5538), + [anon_sym_restrict] = ACTIONS(5538), + [anon_sym___restrict__] = ACTIONS(5538), + [anon_sym__Atomic] = ACTIONS(5538), + [anon_sym__Noreturn] = ACTIONS(5538), + [anon_sym__Nonnull] = ACTIONS(5538), + [anon_sym_nullable] = ACTIONS(5538), + [anon_sym__Complex] = ACTIONS(5538), + [anon_sym__Nullable] = ACTIONS(5538), + [anon_sym__Nullable_result] = ACTIONS(5538), + [anon_sym__Null_unspecified] = ACTIONS(5538), + [anon_sym___autoreleasing] = ACTIONS(5538), + [anon_sym___block] = ACTIONS(5538), + [anon_sym___bridge] = ACTIONS(5538), + [anon_sym___bridge_retained] = ACTIONS(5538), + [anon_sym___bridge_transfer] = ACTIONS(5538), + [anon_sym___complex] = ACTIONS(5538), + [anon_sym___const] = ACTIONS(5538), + [anon_sym___imag] = ACTIONS(5538), + [anon_sym___kindof] = ACTIONS(5538), + [anon_sym___nonnull] = ACTIONS(5538), + [anon_sym___nullable] = ACTIONS(5538), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5538), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5538), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5538), + [anon_sym___real] = ACTIONS(5538), + [anon_sym___strong] = ACTIONS(5538), + [anon_sym___unsafe_unretained] = ACTIONS(5538), + [anon_sym___unused] = ACTIONS(5538), + [anon_sym___weak] = ACTIONS(5538), + [anon_sym_alignas] = ACTIONS(5538), + [anon_sym__Alignas] = ACTIONS(5538), + [sym_primitive_type] = ACTIONS(5538), + [anon_sym_enum] = ACTIONS(5538), + [anon_sym_struct] = ACTIONS(5538), + [anon_sym_union] = ACTIONS(5538), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5538), + [anon_sym___typeof] = ACTIONS(5538), + [anon_sym_typeof] = ACTIONS(5538), + [aux_sym_preproc_undef_token1] = ACTIONS(5538), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5538), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5538), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5538), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5538), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5538), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5538), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5538), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5538), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5538), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5538), + [anon_sym_NS_AVAILABLE] = ACTIONS(5538), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5538), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5538), + [anon_sym_API_AVAILABLE] = ACTIONS(5538), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5538), + [anon_sym_API_DEPRECATED] = ACTIONS(5538), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5538), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5538), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5538), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5538), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5538), + [anon_sym___deprecated_msg] = ACTIONS(5538), + [anon_sym___deprecated_enum_msg] = ACTIONS(5538), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5538), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5538), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5538), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5538), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5538), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5538), + [anon_sym_ATend] = ACTIONS(5540), + [anon_sym_AToptional] = ACTIONS(5540), + [anon_sym_ATrequired] = ACTIONS(5540), + [anon_sym_ATproperty] = ACTIONS(5540), + [anon_sym_BOOL] = ACTIONS(5538), + [anon_sym_IMP] = ACTIONS(5538), + [anon_sym_SEL] = ACTIONS(5538), + [anon_sym_Class] = ACTIONS(5538), + [anon_sym_id] = ACTIONS(5538), + }, + [2325] = { + [sym_identifier] = ACTIONS(5568), + [anon_sym_COMMA] = ACTIONS(5570), + [anon_sym_RPAREN] = ACTIONS(5570), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5570), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5570), + [anon_sym_LPAREN2] = ACTIONS(5570), + [anon_sym_STAR] = ACTIONS(5570), + [anon_sym_CARET] = ACTIONS(5570), + [anon_sym_GT] = ACTIONS(5570), + [anon_sym_SEMI] = ACTIONS(5570), + [anon_sym___extension__] = ACTIONS(5568), + [anon_sym_typedef] = ACTIONS(5568), + [anon_sym_extern] = ACTIONS(5568), + [anon_sym___attribute__] = ACTIONS(5568), + [anon_sym___attribute] = ACTIONS(5568), + [anon_sym_noreturn] = ACTIONS(5568), + [anon_sym_LBRACK] = ACTIONS(5570), + [anon_sym___declspec] = ACTIONS(5568), + [anon_sym___based] = ACTIONS(5568), + [anon_sym_LBRACE] = ACTIONS(5570), + [anon_sym_RBRACE] = ACTIONS(5570), + [anon_sym_signed] = ACTIONS(5568), + [anon_sym_unsigned] = ACTIONS(5568), + [anon_sym_long] = ACTIONS(5568), + [anon_sym_short] = ACTIONS(5568), + [anon_sym_static] = ACTIONS(5568), + [anon_sym_ATautoreleasepool] = ACTIONS(5570), + [anon_sym_auto] = ACTIONS(5568), + [anon_sym_register] = ACTIONS(5568), + [anon_sym_inline] = ACTIONS(5568), + [anon_sym___inline] = ACTIONS(5568), + [anon_sym___inline__] = ACTIONS(5568), + [anon_sym___forceinline] = ACTIONS(5568), + [anon_sym_thread_local] = ACTIONS(5568), + [anon_sym___thread] = ACTIONS(5568), + [anon_sym_CG_EXTERN] = ACTIONS(5568), + [anon_sym_CG_INLINE] = ACTIONS(5568), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5568), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5568), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5568), + [anon_sym_IBOutlet] = ACTIONS(5568), + [anon_sym_IBInspectable] = ACTIONS(5568), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5568), + [anon_sym_NS_INLINE] = ACTIONS(5568), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5568), + [anon_sym_OBJC_EXPORT] = ACTIONS(5568), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5568), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5568), + [anon_sym_const] = ACTIONS(5568), + [anon_sym_constexpr] = ACTIONS(5568), + [anon_sym_volatile] = ACTIONS(5568), + [anon_sym_restrict] = ACTIONS(5568), + [anon_sym___restrict__] = ACTIONS(5568), + [anon_sym__Atomic] = ACTIONS(5568), + [anon_sym__Noreturn] = ACTIONS(5568), + [anon_sym__Nonnull] = ACTIONS(5568), + [anon_sym_nullable] = ACTIONS(5568), + [anon_sym__Complex] = ACTIONS(5568), + [anon_sym__Nullable] = ACTIONS(5568), + [anon_sym__Nullable_result] = ACTIONS(5568), + [anon_sym__Null_unspecified] = ACTIONS(5568), + [anon_sym___autoreleasing] = ACTIONS(5568), + [anon_sym___block] = ACTIONS(5568), + [anon_sym___bridge] = ACTIONS(5568), + [anon_sym___bridge_retained] = ACTIONS(5568), + [anon_sym___bridge_transfer] = ACTIONS(5568), + [anon_sym___complex] = ACTIONS(5568), + [anon_sym___const] = ACTIONS(5568), + [anon_sym___imag] = ACTIONS(5568), + [anon_sym___kindof] = ACTIONS(5568), + [anon_sym___nonnull] = ACTIONS(5568), + [anon_sym___nullable] = ACTIONS(5568), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5568), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5568), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5568), + [anon_sym___real] = ACTIONS(5568), + [anon_sym___strong] = ACTIONS(5568), + [anon_sym___unsafe_unretained] = ACTIONS(5568), + [anon_sym___unused] = ACTIONS(5568), + [anon_sym___weak] = ACTIONS(5568), + [anon_sym_alignas] = ACTIONS(5568), + [anon_sym__Alignas] = ACTIONS(5568), + [sym_primitive_type] = ACTIONS(5568), + [anon_sym_enum] = ACTIONS(5568), + [anon_sym_COLON] = ACTIONS(5570), + [anon_sym_struct] = ACTIONS(5568), + [anon_sym_union] = ACTIONS(5568), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5568), + [anon_sym___typeof] = ACTIONS(5568), + [anon_sym_typeof] = ACTIONS(5568), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5568), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5568), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5568), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5568), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5568), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5568), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5568), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5568), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5568), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5568), + [anon_sym_NS_AVAILABLE] = ACTIONS(5568), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5568), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5568), + [anon_sym_API_AVAILABLE] = ACTIONS(5568), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5568), + [anon_sym_API_DEPRECATED] = ACTIONS(5568), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5568), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5568), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5568), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5568), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5568), + [anon_sym___deprecated_msg] = ACTIONS(5568), + [anon_sym___deprecated_enum_msg] = ACTIONS(5568), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5568), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5568), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5568), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5568), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5568), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5568), + [anon_sym_ATprotocol] = ACTIONS(5570), + [anon_sym_ATinterface] = ACTIONS(5570), + [anon_sym_ATimplementation] = ACTIONS(5570), + [anon_sym_ATproperty] = ACTIONS(5570), + [anon_sym_BOOL] = ACTIONS(5568), + [anon_sym_IMP] = ACTIONS(5568), + [anon_sym_SEL] = ACTIONS(5568), + [anon_sym_Class] = ACTIONS(5568), + [anon_sym_id] = ACTIONS(5568), + }, + [2326] = { + [sym_identifier] = ACTIONS(5377), + [aux_sym_preproc_def_token1] = ACTIONS(5377), + [aux_sym_preproc_if_token1] = ACTIONS(5377), + [aux_sym_preproc_if_token2] = ACTIONS(5377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5377), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5377), + [sym_preproc_directive] = ACTIONS(5377), + [anon_sym_DASH] = ACTIONS(5379), + [anon_sym_PLUS] = ACTIONS(5379), + [anon_sym_SEMI] = ACTIONS(5572), + [anon_sym___extension__] = ACTIONS(5377), + [anon_sym_typedef] = ACTIONS(5377), + [anon_sym_extern] = ACTIONS(5377), + [anon_sym___attribute__] = ACTIONS(5377), + [anon_sym___attribute] = ACTIONS(5377), + [anon_sym_noreturn] = ACTIONS(5377), + [anon_sym_LBRACK] = ACTIONS(5379), + [anon_sym___declspec] = ACTIONS(5377), + [anon_sym___cdecl] = ACTIONS(5377), + [anon_sym___clrcall] = ACTIONS(5377), + [anon_sym___stdcall] = ACTIONS(5377), + [anon_sym___fastcall] = ACTIONS(5377), + [anon_sym___thiscall] = ACTIONS(5377), + [anon_sym___vectorcall] = ACTIONS(5377), + [anon_sym_signed] = ACTIONS(5377), + [anon_sym_unsigned] = ACTIONS(5377), + [anon_sym_long] = ACTIONS(5377), + [anon_sym_short] = ACTIONS(5377), + [anon_sym_static] = ACTIONS(5377), + [anon_sym_auto] = ACTIONS(5377), + [anon_sym_register] = ACTIONS(5377), + [anon_sym_inline] = ACTIONS(5377), + [anon_sym___inline] = ACTIONS(5377), + [anon_sym___inline__] = ACTIONS(5377), + [anon_sym___forceinline] = ACTIONS(5377), + [anon_sym_thread_local] = ACTIONS(5377), + [anon_sym___thread] = ACTIONS(5377), + [anon_sym_CG_EXTERN] = ACTIONS(5377), + [anon_sym_CG_INLINE] = ACTIONS(5377), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5377), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5377), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5377), + [anon_sym_IBOutlet] = ACTIONS(5377), + [anon_sym_IBInspectable] = ACTIONS(5377), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5377), + [anon_sym_NS_INLINE] = ACTIONS(5377), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5377), + [anon_sym_OBJC_EXPORT] = ACTIONS(5377), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5377), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5377), + [anon_sym_const] = ACTIONS(5377), + [anon_sym_constexpr] = ACTIONS(5377), + [anon_sym_volatile] = ACTIONS(5377), + [anon_sym_restrict] = ACTIONS(5377), + [anon_sym___restrict__] = ACTIONS(5377), + [anon_sym__Atomic] = ACTIONS(5377), + [anon_sym__Noreturn] = ACTIONS(5377), + [anon_sym__Nonnull] = ACTIONS(5377), + [anon_sym_nullable] = ACTIONS(5377), + [anon_sym__Complex] = ACTIONS(5377), + [anon_sym__Nullable] = ACTIONS(5377), + [anon_sym__Nullable_result] = ACTIONS(5377), + [anon_sym__Null_unspecified] = ACTIONS(5377), + [anon_sym___autoreleasing] = ACTIONS(5377), + [anon_sym___block] = ACTIONS(5377), + [anon_sym___bridge] = ACTIONS(5377), + [anon_sym___bridge_retained] = ACTIONS(5377), + [anon_sym___bridge_transfer] = ACTIONS(5377), + [anon_sym___complex] = ACTIONS(5377), + [anon_sym___const] = ACTIONS(5377), + [anon_sym___imag] = ACTIONS(5377), + [anon_sym___kindof] = ACTIONS(5377), + [anon_sym___nonnull] = ACTIONS(5377), + [anon_sym___nullable] = ACTIONS(5377), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5377), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5377), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5377), + [anon_sym___real] = ACTIONS(5377), + [anon_sym___strong] = ACTIONS(5377), + [anon_sym___unsafe_unretained] = ACTIONS(5377), + [anon_sym___unused] = ACTIONS(5377), + [anon_sym___weak] = ACTIONS(5377), + [anon_sym_alignas] = ACTIONS(5377), + [anon_sym__Alignas] = ACTIONS(5377), + [sym_primitive_type] = ACTIONS(5377), + [anon_sym_enum] = ACTIONS(5377), + [anon_sym_struct] = ACTIONS(5377), + [anon_sym_union] = ACTIONS(5377), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5377), + [anon_sym___typeof] = ACTIONS(5377), + [anon_sym_typeof] = ACTIONS(5377), + [aux_sym_preproc_undef_token1] = ACTIONS(5377), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5377), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5377), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5377), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5377), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5377), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5377), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5377), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5377), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5377), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5377), + [anon_sym_NS_AVAILABLE] = ACTIONS(5377), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5377), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5377), + [anon_sym_API_AVAILABLE] = ACTIONS(5377), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5377), + [anon_sym_API_DEPRECATED] = ACTIONS(5377), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5377), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5377), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5377), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5377), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5377), + [anon_sym___deprecated_msg] = ACTIONS(5377), + [anon_sym___deprecated_enum_msg] = ACTIONS(5377), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5377), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5377), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5377), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5377), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5377), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5377), + [anon_sym_ATsynthesize] = ACTIONS(5379), + [anon_sym_ATdynamic] = ACTIONS(5379), + [anon_sym_BOOL] = ACTIONS(5377), + [anon_sym_IMP] = ACTIONS(5377), + [anon_sym_SEL] = ACTIONS(5377), + [anon_sym_Class] = ACTIONS(5377), + [anon_sym_id] = ACTIONS(5377), + }, + [2327] = { + [aux_sym_method_declaration_repeat2] = STATE(2269), + [sym_identifier] = ACTIONS(5393), + [aux_sym_preproc_def_token1] = ACTIONS(5393), + [aux_sym_preproc_if_token1] = ACTIONS(5393), + [aux_sym_preproc_if_token2] = ACTIONS(5393), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5393), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5393), + [sym_preproc_directive] = ACTIONS(5393), + [anon_sym_DASH] = ACTIONS(5395), + [anon_sym_PLUS] = ACTIONS(5395), + [anon_sym_SEMI] = ACTIONS(5477), + [anon_sym___extension__] = ACTIONS(5393), + [anon_sym_typedef] = ACTIONS(5393), + [anon_sym_extern] = ACTIONS(5393), + [anon_sym___attribute__] = ACTIONS(5393), + [anon_sym___attribute] = ACTIONS(5393), + [anon_sym_noreturn] = ACTIONS(5393), + [anon_sym_LBRACK] = ACTIONS(5395), + [anon_sym___declspec] = ACTIONS(5393), + [anon_sym___cdecl] = ACTIONS(5393), + [anon_sym___clrcall] = ACTIONS(5393), + [anon_sym___stdcall] = ACTIONS(5393), + [anon_sym___fastcall] = ACTIONS(5393), + [anon_sym___thiscall] = ACTIONS(5393), + [anon_sym___vectorcall] = ACTIONS(5393), + [anon_sym_signed] = ACTIONS(5393), + [anon_sym_unsigned] = ACTIONS(5393), + [anon_sym_long] = ACTIONS(5393), + [anon_sym_short] = ACTIONS(5393), + [anon_sym_static] = ACTIONS(5393), + [anon_sym_auto] = ACTIONS(5393), + [anon_sym_register] = ACTIONS(5393), + [anon_sym_inline] = ACTIONS(5393), + [anon_sym___inline] = ACTIONS(5393), + [anon_sym___inline__] = ACTIONS(5393), + [anon_sym___forceinline] = ACTIONS(5393), + [anon_sym_thread_local] = ACTIONS(5393), + [anon_sym___thread] = ACTIONS(5393), + [anon_sym_CG_EXTERN] = ACTIONS(5393), + [anon_sym_CG_INLINE] = ACTIONS(5393), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5393), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5393), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5393), + [anon_sym_IBOutlet] = ACTIONS(5393), + [anon_sym_IBInspectable] = ACTIONS(5393), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5393), + [anon_sym_NS_INLINE] = ACTIONS(5393), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5393), + [anon_sym_OBJC_EXPORT] = ACTIONS(5393), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5393), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5393), + [anon_sym_const] = ACTIONS(5393), + [anon_sym_constexpr] = ACTIONS(5393), + [anon_sym_volatile] = ACTIONS(5393), + [anon_sym_restrict] = ACTIONS(5393), + [anon_sym___restrict__] = ACTIONS(5393), + [anon_sym__Atomic] = ACTIONS(5393), + [anon_sym__Noreturn] = ACTIONS(5393), + [anon_sym__Nonnull] = ACTIONS(5393), + [anon_sym_nullable] = ACTIONS(5393), + [anon_sym__Complex] = ACTIONS(5393), + [anon_sym__Nullable] = ACTIONS(5393), + [anon_sym__Nullable_result] = ACTIONS(5393), + [anon_sym__Null_unspecified] = ACTIONS(5393), + [anon_sym___autoreleasing] = ACTIONS(5393), + [anon_sym___block] = ACTIONS(5393), + [anon_sym___bridge] = ACTIONS(5393), + [anon_sym___bridge_retained] = ACTIONS(5393), + [anon_sym___bridge_transfer] = ACTIONS(5393), + [anon_sym___complex] = ACTIONS(5393), + [anon_sym___const] = ACTIONS(5393), + [anon_sym___imag] = ACTIONS(5393), + [anon_sym___kindof] = ACTIONS(5393), + [anon_sym___nonnull] = ACTIONS(5393), + [anon_sym___nullable] = ACTIONS(5393), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5393), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5393), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5393), + [anon_sym___real] = ACTIONS(5393), + [anon_sym___strong] = ACTIONS(5393), + [anon_sym___unsafe_unretained] = ACTIONS(5393), + [anon_sym___unused] = ACTIONS(5393), + [anon_sym___weak] = ACTIONS(5393), + [anon_sym_alignas] = ACTIONS(5393), + [anon_sym__Alignas] = ACTIONS(5393), + [sym_primitive_type] = ACTIONS(5393), + [anon_sym_enum] = ACTIONS(5393), + [anon_sym_struct] = ACTIONS(5393), + [anon_sym_union] = ACTIONS(5393), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5393), + [anon_sym___typeof] = ACTIONS(5393), + [anon_sym_typeof] = ACTIONS(5393), + [aux_sym_preproc_undef_token1] = ACTIONS(5393), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5393), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5393), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5393), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5393), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5393), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5393), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5393), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5393), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5393), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5393), + [anon_sym_NS_AVAILABLE] = ACTIONS(5393), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5393), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5393), + [anon_sym_API_AVAILABLE] = ACTIONS(5393), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5393), + [anon_sym_API_DEPRECATED] = ACTIONS(5393), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5393), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5393), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5393), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5393), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5393), + [anon_sym___deprecated_msg] = ACTIONS(5393), + [anon_sym___deprecated_enum_msg] = ACTIONS(5393), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5393), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5393), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5393), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5393), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5393), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5393), + [anon_sym_ATproperty] = ACTIONS(5395), + [anon_sym_BOOL] = ACTIONS(5393), + [anon_sym_IMP] = ACTIONS(5393), + [anon_sym_SEL] = ACTIONS(5393), + [anon_sym_Class] = ACTIONS(5393), + [anon_sym_id] = ACTIONS(5393), + }, + [2328] = { + [sym_identifier] = ACTIONS(5336), + [aux_sym_preproc_def_token1] = ACTIONS(5336), + [aux_sym_preproc_if_token1] = ACTIONS(5336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5336), + [sym_preproc_directive] = ACTIONS(5336), + [anon_sym_DASH] = ACTIONS(5338), + [anon_sym_PLUS] = ACTIONS(5338), + [anon_sym_LT] = ACTIONS(5338), + [anon_sym___extension__] = ACTIONS(5336), + [anon_sym_typedef] = ACTIONS(5336), + [anon_sym_extern] = ACTIONS(5336), + [anon_sym___attribute__] = ACTIONS(5336), + [anon_sym___attribute] = ACTIONS(5336), + [anon_sym_noreturn] = ACTIONS(5336), + [anon_sym_LBRACK] = ACTIONS(5338), + [anon_sym___declspec] = ACTIONS(5336), + [anon_sym___cdecl] = ACTIONS(5336), + [anon_sym___clrcall] = ACTIONS(5336), + [anon_sym___stdcall] = ACTIONS(5336), + [anon_sym___fastcall] = ACTIONS(5336), + [anon_sym___thiscall] = ACTIONS(5336), + [anon_sym___vectorcall] = ACTIONS(5336), + [anon_sym_LBRACE] = ACTIONS(5338), + [anon_sym_signed] = ACTIONS(5336), + [anon_sym_unsigned] = ACTIONS(5336), + [anon_sym_long] = ACTIONS(5336), + [anon_sym_short] = ACTIONS(5336), + [anon_sym_static] = ACTIONS(5336), + [anon_sym_auto] = ACTIONS(5336), + [anon_sym_register] = ACTIONS(5336), + [anon_sym_inline] = ACTIONS(5336), + [anon_sym___inline] = ACTIONS(5336), + [anon_sym___inline__] = ACTIONS(5336), + [anon_sym___forceinline] = ACTIONS(5336), + [anon_sym_thread_local] = ACTIONS(5336), + [anon_sym___thread] = ACTIONS(5336), + [anon_sym_CG_EXTERN] = ACTIONS(5336), + [anon_sym_CG_INLINE] = ACTIONS(5336), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5336), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5336), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5336), + [anon_sym_IBOutlet] = ACTIONS(5336), + [anon_sym_IBInspectable] = ACTIONS(5336), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5336), + [anon_sym_NS_INLINE] = ACTIONS(5336), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5336), + [anon_sym_OBJC_EXPORT] = ACTIONS(5336), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5336), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5336), + [anon_sym_const] = ACTIONS(5336), + [anon_sym_constexpr] = ACTIONS(5336), + [anon_sym_volatile] = ACTIONS(5336), + [anon_sym_restrict] = ACTIONS(5336), + [anon_sym___restrict__] = ACTIONS(5336), + [anon_sym__Atomic] = ACTIONS(5336), + [anon_sym__Noreturn] = ACTIONS(5336), + [anon_sym__Nonnull] = ACTIONS(5336), + [anon_sym_nullable] = ACTIONS(5336), + [anon_sym__Complex] = ACTIONS(5336), + [anon_sym__Nullable] = ACTIONS(5336), + [anon_sym__Nullable_result] = ACTIONS(5336), + [anon_sym__Null_unspecified] = ACTIONS(5336), + [anon_sym___autoreleasing] = ACTIONS(5336), + [anon_sym___block] = ACTIONS(5336), + [anon_sym___bridge] = ACTIONS(5336), + [anon_sym___bridge_retained] = ACTIONS(5336), + [anon_sym___bridge_transfer] = ACTIONS(5336), + [anon_sym___complex] = ACTIONS(5336), + [anon_sym___const] = ACTIONS(5336), + [anon_sym___imag] = ACTIONS(5336), + [anon_sym___kindof] = ACTIONS(5336), + [anon_sym___nonnull] = ACTIONS(5336), + [anon_sym___nullable] = ACTIONS(5336), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5336), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5336), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5336), + [anon_sym___real] = ACTIONS(5336), + [anon_sym___strong] = ACTIONS(5336), + [anon_sym___unsafe_unretained] = ACTIONS(5336), + [anon_sym___unused] = ACTIONS(5336), + [anon_sym___weak] = ACTIONS(5336), + [anon_sym_alignas] = ACTIONS(5336), + [anon_sym__Alignas] = ACTIONS(5336), + [sym_primitive_type] = ACTIONS(5336), + [anon_sym_enum] = ACTIONS(5336), + [anon_sym_struct] = ACTIONS(5336), + [anon_sym_union] = ACTIONS(5336), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5336), + [anon_sym___typeof] = ACTIONS(5336), + [anon_sym_typeof] = ACTIONS(5336), + [aux_sym_preproc_undef_token1] = ACTIONS(5336), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5336), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5336), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5336), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5336), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5336), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5336), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5336), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5336), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5336), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5336), + [anon_sym_NS_AVAILABLE] = ACTIONS(5336), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5336), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5336), + [anon_sym_API_AVAILABLE] = ACTIONS(5336), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5336), + [anon_sym_API_DEPRECATED] = ACTIONS(5336), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5336), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5336), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5336), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5336), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5336), + [anon_sym___deprecated_msg] = ACTIONS(5336), + [anon_sym___deprecated_enum_msg] = ACTIONS(5336), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5336), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5336), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5336), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5336), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5336), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5336), + [anon_sym_ATend] = ACTIONS(5338), + [anon_sym_ATproperty] = ACTIONS(5338), + [anon_sym_BOOL] = ACTIONS(5336), + [anon_sym_IMP] = ACTIONS(5336), + [anon_sym_SEL] = ACTIONS(5336), + [anon_sym_Class] = ACTIONS(5336), + [anon_sym_id] = ACTIONS(5336), + }, + [2329] = { + [sym_identifier] = ACTIONS(5491), + [aux_sym_preproc_def_token1] = ACTIONS(5491), + [aux_sym_preproc_if_token1] = ACTIONS(5491), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5491), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5491), + [sym_preproc_directive] = ACTIONS(5491), + [anon_sym_DASH] = ACTIONS(5493), + [anon_sym_PLUS] = ACTIONS(5493), + [anon_sym___extension__] = ACTIONS(5491), + [anon_sym_typedef] = ACTIONS(5491), + [anon_sym_extern] = ACTIONS(5491), + [anon_sym___attribute__] = ACTIONS(5491), + [anon_sym___attribute] = ACTIONS(5491), + [anon_sym_noreturn] = ACTIONS(5491), + [anon_sym_LBRACK] = ACTIONS(5493), + [anon_sym___declspec] = ACTIONS(5491), + [anon_sym___cdecl] = ACTIONS(5491), + [anon_sym___clrcall] = ACTIONS(5491), + [anon_sym___stdcall] = ACTIONS(5491), + [anon_sym___fastcall] = ACTIONS(5491), + [anon_sym___thiscall] = ACTIONS(5491), + [anon_sym___vectorcall] = ACTIONS(5491), + [anon_sym_signed] = ACTIONS(5491), + [anon_sym_unsigned] = ACTIONS(5491), + [anon_sym_long] = ACTIONS(5491), + [anon_sym_short] = ACTIONS(5491), + [anon_sym_static] = ACTIONS(5491), + [anon_sym_auto] = ACTIONS(5491), + [anon_sym_register] = ACTIONS(5491), + [anon_sym_inline] = ACTIONS(5491), + [anon_sym___inline] = ACTIONS(5491), + [anon_sym___inline__] = ACTIONS(5491), + [anon_sym___forceinline] = ACTIONS(5491), + [anon_sym_thread_local] = ACTIONS(5491), + [anon_sym___thread] = ACTIONS(5491), + [anon_sym_CG_EXTERN] = ACTIONS(5491), + [anon_sym_CG_INLINE] = ACTIONS(5491), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5491), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5491), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5491), + [anon_sym_IBOutlet] = ACTIONS(5491), + [anon_sym_IBInspectable] = ACTIONS(5491), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5491), + [anon_sym_NS_INLINE] = ACTIONS(5491), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5491), + [anon_sym_OBJC_EXPORT] = ACTIONS(5491), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5491), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5491), + [anon_sym_const] = ACTIONS(5491), + [anon_sym_constexpr] = ACTIONS(5491), + [anon_sym_volatile] = ACTIONS(5491), + [anon_sym_restrict] = ACTIONS(5491), + [anon_sym___restrict__] = ACTIONS(5491), + [anon_sym__Atomic] = ACTIONS(5491), + [anon_sym__Noreturn] = ACTIONS(5491), + [anon_sym__Nonnull] = ACTIONS(5491), + [anon_sym_nullable] = ACTIONS(5491), + [anon_sym__Complex] = ACTIONS(5491), + [anon_sym__Nullable] = ACTIONS(5491), + [anon_sym__Nullable_result] = ACTIONS(5491), + [anon_sym__Null_unspecified] = ACTIONS(5491), + [anon_sym___autoreleasing] = ACTIONS(5491), + [anon_sym___block] = ACTIONS(5491), + [anon_sym___bridge] = ACTIONS(5491), + [anon_sym___bridge_retained] = ACTIONS(5491), + [anon_sym___bridge_transfer] = ACTIONS(5491), + [anon_sym___complex] = ACTIONS(5491), + [anon_sym___const] = ACTIONS(5491), + [anon_sym___imag] = ACTIONS(5491), + [anon_sym___kindof] = ACTIONS(5491), + [anon_sym___nonnull] = ACTIONS(5491), + [anon_sym___nullable] = ACTIONS(5491), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5491), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5491), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5491), + [anon_sym___real] = ACTIONS(5491), + [anon_sym___strong] = ACTIONS(5491), + [anon_sym___unsafe_unretained] = ACTIONS(5491), + [anon_sym___unused] = ACTIONS(5491), + [anon_sym___weak] = ACTIONS(5491), + [anon_sym_alignas] = ACTIONS(5491), + [anon_sym__Alignas] = ACTIONS(5491), + [sym_primitive_type] = ACTIONS(5491), + [anon_sym_enum] = ACTIONS(5491), + [anon_sym_struct] = ACTIONS(5491), + [anon_sym_union] = ACTIONS(5491), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5491), + [anon_sym___typeof] = ACTIONS(5491), + [anon_sym_typeof] = ACTIONS(5491), + [aux_sym_preproc_undef_token1] = ACTIONS(5491), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5491), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5491), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5491), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5491), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5491), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5491), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5491), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5491), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5491), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5491), + [anon_sym_NS_AVAILABLE] = ACTIONS(5491), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5491), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5491), + [anon_sym_API_AVAILABLE] = ACTIONS(5491), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5491), + [anon_sym_API_DEPRECATED] = ACTIONS(5491), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5491), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5491), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5491), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5491), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5491), + [anon_sym___deprecated_msg] = ACTIONS(5491), + [anon_sym___deprecated_enum_msg] = ACTIONS(5491), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5491), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5491), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5491), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5491), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5491), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5491), + [anon_sym_ATend] = ACTIONS(5493), + [anon_sym_AToptional] = ACTIONS(5493), + [anon_sym_ATrequired] = ACTIONS(5493), + [anon_sym_ATproperty] = ACTIONS(5493), + [anon_sym_BOOL] = ACTIONS(5491), + [anon_sym_IMP] = ACTIONS(5491), + [anon_sym_SEL] = ACTIONS(5491), + [anon_sym_Class] = ACTIONS(5491), + [anon_sym_id] = ACTIONS(5491), + }, + [2330] = { + [sym_identifier] = ACTIONS(5574), + [aux_sym_preproc_def_token1] = ACTIONS(5574), + [aux_sym_preproc_if_token1] = ACTIONS(5574), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5574), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5574), + [sym_preproc_directive] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5576), + [anon_sym_PLUS] = ACTIONS(5576), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym___extension__] = ACTIONS(5574), + [anon_sym_typedef] = ACTIONS(5574), + [anon_sym_extern] = ACTIONS(5574), + [anon_sym___attribute__] = ACTIONS(5574), + [anon_sym___attribute] = ACTIONS(5574), + [anon_sym_noreturn] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5576), + [anon_sym___declspec] = ACTIONS(5574), + [anon_sym___cdecl] = ACTIONS(5574), + [anon_sym___clrcall] = ACTIONS(5574), + [anon_sym___stdcall] = ACTIONS(5574), + [anon_sym___fastcall] = ACTIONS(5574), + [anon_sym___thiscall] = ACTIONS(5574), + [anon_sym___vectorcall] = ACTIONS(5574), + [anon_sym_LBRACE] = ACTIONS(5576), + [anon_sym_signed] = ACTIONS(5574), + [anon_sym_unsigned] = ACTIONS(5574), + [anon_sym_long] = ACTIONS(5574), + [anon_sym_short] = ACTIONS(5574), + [anon_sym_static] = ACTIONS(5574), + [anon_sym_auto] = ACTIONS(5574), + [anon_sym_register] = ACTIONS(5574), + [anon_sym_inline] = ACTIONS(5574), + [anon_sym___inline] = ACTIONS(5574), + [anon_sym___inline__] = ACTIONS(5574), + [anon_sym___forceinline] = ACTIONS(5574), + [anon_sym_thread_local] = ACTIONS(5574), + [anon_sym___thread] = ACTIONS(5574), + [anon_sym_CG_EXTERN] = ACTIONS(5574), + [anon_sym_CG_INLINE] = ACTIONS(5574), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5574), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5574), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5574), + [anon_sym_IBOutlet] = ACTIONS(5574), + [anon_sym_IBInspectable] = ACTIONS(5574), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5574), + [anon_sym_NS_INLINE] = ACTIONS(5574), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5574), + [anon_sym_OBJC_EXPORT] = ACTIONS(5574), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5574), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5574), + [anon_sym_const] = ACTIONS(5574), + [anon_sym_constexpr] = ACTIONS(5574), + [anon_sym_volatile] = ACTIONS(5574), + [anon_sym_restrict] = ACTIONS(5574), + [anon_sym___restrict__] = ACTIONS(5574), + [anon_sym__Atomic] = ACTIONS(5574), + [anon_sym__Noreturn] = ACTIONS(5574), + [anon_sym__Nonnull] = ACTIONS(5574), + [anon_sym_nullable] = ACTIONS(5574), + [anon_sym__Complex] = ACTIONS(5574), + [anon_sym__Nullable] = ACTIONS(5574), + [anon_sym__Nullable_result] = ACTIONS(5574), + [anon_sym__Null_unspecified] = ACTIONS(5574), + [anon_sym___autoreleasing] = ACTIONS(5574), + [anon_sym___block] = ACTIONS(5574), + [anon_sym___bridge] = ACTIONS(5574), + [anon_sym___bridge_retained] = ACTIONS(5574), + [anon_sym___bridge_transfer] = ACTIONS(5574), + [anon_sym___complex] = ACTIONS(5574), + [anon_sym___const] = ACTIONS(5574), + [anon_sym___imag] = ACTIONS(5574), + [anon_sym___kindof] = ACTIONS(5574), + [anon_sym___nonnull] = ACTIONS(5574), + [anon_sym___nullable] = ACTIONS(5574), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5574), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5574), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5574), + [anon_sym___real] = ACTIONS(5574), + [anon_sym___strong] = ACTIONS(5574), + [anon_sym___unsafe_unretained] = ACTIONS(5574), + [anon_sym___unused] = ACTIONS(5574), + [anon_sym___weak] = ACTIONS(5574), + [anon_sym_alignas] = ACTIONS(5574), + [anon_sym__Alignas] = ACTIONS(5574), + [sym_primitive_type] = ACTIONS(5574), + [anon_sym_enum] = ACTIONS(5574), + [anon_sym_struct] = ACTIONS(5574), + [anon_sym_union] = ACTIONS(5574), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5574), + [anon_sym___typeof] = ACTIONS(5574), + [anon_sym_typeof] = ACTIONS(5574), + [aux_sym_preproc_undef_token1] = ACTIONS(5574), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5574), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5574), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5574), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5574), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5574), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5574), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5574), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5574), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5574), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5574), + [anon_sym_NS_AVAILABLE] = ACTIONS(5574), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5574), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5574), + [anon_sym_API_AVAILABLE] = ACTIONS(5574), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5574), + [anon_sym_API_DEPRECATED] = ACTIONS(5574), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5574), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5574), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5574), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5574), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5574), + [anon_sym___deprecated_msg] = ACTIONS(5574), + [anon_sym___deprecated_enum_msg] = ACTIONS(5574), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5574), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5574), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5574), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5574), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5574), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5574), + [anon_sym_ATend] = ACTIONS(5576), + [anon_sym_ATproperty] = ACTIONS(5576), + [anon_sym_BOOL] = ACTIONS(5574), + [anon_sym_IMP] = ACTIONS(5574), + [anon_sym_SEL] = ACTIONS(5574), + [anon_sym_Class] = ACTIONS(5574), + [anon_sym_id] = ACTIONS(5574), + }, + [2331] = { + [sym_identifier] = ACTIONS(5548), + [aux_sym_preproc_def_token1] = ACTIONS(5548), + [aux_sym_preproc_if_token1] = ACTIONS(5548), + [aux_sym_preproc_if_token2] = ACTIONS(5548), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5548), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5548), + [aux_sym_preproc_else_token1] = ACTIONS(5548), + [aux_sym_preproc_elif_token1] = ACTIONS(5548), + [sym_preproc_directive] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5550), + [anon_sym_PLUS] = ACTIONS(5550), + [anon_sym___extension__] = ACTIONS(5548), + [anon_sym_typedef] = ACTIONS(5548), + [anon_sym_extern] = ACTIONS(5548), + [anon_sym___attribute__] = ACTIONS(5548), + [anon_sym___attribute] = ACTIONS(5548), + [anon_sym_noreturn] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5550), + [anon_sym___declspec] = ACTIONS(5548), + [anon_sym___cdecl] = ACTIONS(5548), + [anon_sym___clrcall] = ACTIONS(5548), + [anon_sym___stdcall] = ACTIONS(5548), + [anon_sym___fastcall] = ACTIONS(5548), + [anon_sym___thiscall] = ACTIONS(5548), + [anon_sym___vectorcall] = ACTIONS(5548), + [anon_sym_signed] = ACTIONS(5548), + [anon_sym_unsigned] = ACTIONS(5548), + [anon_sym_long] = ACTIONS(5548), + [anon_sym_short] = ACTIONS(5548), + [anon_sym_static] = ACTIONS(5548), + [anon_sym_auto] = ACTIONS(5548), + [anon_sym_register] = ACTIONS(5548), + [anon_sym_inline] = ACTIONS(5548), + [anon_sym___inline] = ACTIONS(5548), + [anon_sym___inline__] = ACTIONS(5548), + [anon_sym___forceinline] = ACTIONS(5548), + [anon_sym_thread_local] = ACTIONS(5548), + [anon_sym___thread] = ACTIONS(5548), + [anon_sym_CG_EXTERN] = ACTIONS(5548), + [anon_sym_CG_INLINE] = ACTIONS(5548), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5548), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5548), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5548), + [anon_sym_IBOutlet] = ACTIONS(5548), + [anon_sym_IBInspectable] = ACTIONS(5548), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5548), + [anon_sym_NS_INLINE] = ACTIONS(5548), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5548), + [anon_sym_OBJC_EXPORT] = ACTIONS(5548), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5548), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5548), + [anon_sym_const] = ACTIONS(5548), + [anon_sym_constexpr] = ACTIONS(5548), + [anon_sym_volatile] = ACTIONS(5548), + [anon_sym_restrict] = ACTIONS(5548), + [anon_sym___restrict__] = ACTIONS(5548), + [anon_sym__Atomic] = ACTIONS(5548), + [anon_sym__Noreturn] = ACTIONS(5548), + [anon_sym__Nonnull] = ACTIONS(5548), + [anon_sym_nullable] = ACTIONS(5548), + [anon_sym__Complex] = ACTIONS(5548), + [anon_sym__Nullable] = ACTIONS(5548), + [anon_sym__Nullable_result] = ACTIONS(5548), + [anon_sym__Null_unspecified] = ACTIONS(5548), + [anon_sym___autoreleasing] = ACTIONS(5548), + [anon_sym___block] = ACTIONS(5548), + [anon_sym___bridge] = ACTIONS(5548), + [anon_sym___bridge_retained] = ACTIONS(5548), + [anon_sym___bridge_transfer] = ACTIONS(5548), + [anon_sym___complex] = ACTIONS(5548), + [anon_sym___const] = ACTIONS(5548), + [anon_sym___imag] = ACTIONS(5548), + [anon_sym___kindof] = ACTIONS(5548), + [anon_sym___nonnull] = ACTIONS(5548), + [anon_sym___nullable] = ACTIONS(5548), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5548), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5548), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5548), + [anon_sym___real] = ACTIONS(5548), + [anon_sym___strong] = ACTIONS(5548), + [anon_sym___unsafe_unretained] = ACTIONS(5548), + [anon_sym___unused] = ACTIONS(5548), + [anon_sym___weak] = ACTIONS(5548), + [anon_sym_alignas] = ACTIONS(5548), + [anon_sym__Alignas] = ACTIONS(5548), + [sym_primitive_type] = ACTIONS(5548), + [anon_sym_enum] = ACTIONS(5548), + [anon_sym_struct] = ACTIONS(5548), + [anon_sym_union] = ACTIONS(5548), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5548), + [anon_sym___typeof] = ACTIONS(5548), + [anon_sym_typeof] = ACTIONS(5548), + [aux_sym_preproc_undef_token1] = ACTIONS(5548), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5548), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5548), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5548), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5548), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5548), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5548), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5548), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5548), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5548), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5548), + [anon_sym_NS_AVAILABLE] = ACTIONS(5548), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5548), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5548), + [anon_sym_API_AVAILABLE] = ACTIONS(5548), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5548), + [anon_sym_API_DEPRECATED] = ACTIONS(5548), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5548), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5548), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5548), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5548), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5548), + [anon_sym___deprecated_msg] = ACTIONS(5548), + [anon_sym___deprecated_enum_msg] = ACTIONS(5548), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5548), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5548), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5548), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5548), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5548), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5548), + [anon_sym_ATproperty] = ACTIONS(5550), + [anon_sym_BOOL] = ACTIONS(5548), + [anon_sym_IMP] = ACTIONS(5548), + [anon_sym_SEL] = ACTIONS(5548), + [anon_sym_Class] = ACTIONS(5548), + [anon_sym_id] = ACTIONS(5548), + }, + [2332] = { + [sym_identifier] = ACTIONS(5397), + [aux_sym_preproc_def_token1] = ACTIONS(5397), + [aux_sym_preproc_if_token1] = ACTIONS(5397), + [aux_sym_preproc_if_token2] = ACTIONS(5397), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5397), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5397), + [sym_preproc_directive] = ACTIONS(5397), + [anon_sym_DASH] = ACTIONS(5399), + [anon_sym_PLUS] = ACTIONS(5399), + [anon_sym_SEMI] = ACTIONS(5578), + [anon_sym___extension__] = ACTIONS(5397), + [anon_sym_typedef] = ACTIONS(5397), + [anon_sym_extern] = ACTIONS(5397), + [anon_sym___attribute__] = ACTIONS(5397), + [anon_sym___attribute] = ACTIONS(5397), + [anon_sym_noreturn] = ACTIONS(5397), + [anon_sym_LBRACK] = ACTIONS(5399), + [anon_sym___declspec] = ACTIONS(5397), + [anon_sym___cdecl] = ACTIONS(5397), + [anon_sym___clrcall] = ACTIONS(5397), + [anon_sym___stdcall] = ACTIONS(5397), + [anon_sym___fastcall] = ACTIONS(5397), + [anon_sym___thiscall] = ACTIONS(5397), + [anon_sym___vectorcall] = ACTIONS(5397), + [anon_sym_signed] = ACTIONS(5397), + [anon_sym_unsigned] = ACTIONS(5397), + [anon_sym_long] = ACTIONS(5397), + [anon_sym_short] = ACTIONS(5397), + [anon_sym_static] = ACTIONS(5397), + [anon_sym_auto] = ACTIONS(5397), + [anon_sym_register] = ACTIONS(5397), + [anon_sym_inline] = ACTIONS(5397), + [anon_sym___inline] = ACTIONS(5397), + [anon_sym___inline__] = ACTIONS(5397), + [anon_sym___forceinline] = ACTIONS(5397), + [anon_sym_thread_local] = ACTIONS(5397), + [anon_sym___thread] = ACTIONS(5397), + [anon_sym_CG_EXTERN] = ACTIONS(5397), + [anon_sym_CG_INLINE] = ACTIONS(5397), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5397), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5397), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5397), + [anon_sym_IBOutlet] = ACTIONS(5397), + [anon_sym_IBInspectable] = ACTIONS(5397), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5397), + [anon_sym_NS_INLINE] = ACTIONS(5397), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5397), + [anon_sym_OBJC_EXPORT] = ACTIONS(5397), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5397), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5397), + [anon_sym_const] = ACTIONS(5397), + [anon_sym_constexpr] = ACTIONS(5397), + [anon_sym_volatile] = ACTIONS(5397), + [anon_sym_restrict] = ACTIONS(5397), + [anon_sym___restrict__] = ACTIONS(5397), + [anon_sym__Atomic] = ACTIONS(5397), + [anon_sym__Noreturn] = ACTIONS(5397), + [anon_sym__Nonnull] = ACTIONS(5397), + [anon_sym_nullable] = ACTIONS(5397), + [anon_sym__Complex] = ACTIONS(5397), + [anon_sym__Nullable] = ACTIONS(5397), + [anon_sym__Nullable_result] = ACTIONS(5397), + [anon_sym__Null_unspecified] = ACTIONS(5397), + [anon_sym___autoreleasing] = ACTIONS(5397), + [anon_sym___block] = ACTIONS(5397), + [anon_sym___bridge] = ACTIONS(5397), + [anon_sym___bridge_retained] = ACTIONS(5397), + [anon_sym___bridge_transfer] = ACTIONS(5397), + [anon_sym___complex] = ACTIONS(5397), + [anon_sym___const] = ACTIONS(5397), + [anon_sym___imag] = ACTIONS(5397), + [anon_sym___kindof] = ACTIONS(5397), + [anon_sym___nonnull] = ACTIONS(5397), + [anon_sym___nullable] = ACTIONS(5397), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5397), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5397), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5397), + [anon_sym___real] = ACTIONS(5397), + [anon_sym___strong] = ACTIONS(5397), + [anon_sym___unsafe_unretained] = ACTIONS(5397), + [anon_sym___unused] = ACTIONS(5397), + [anon_sym___weak] = ACTIONS(5397), + [anon_sym_alignas] = ACTIONS(5397), + [anon_sym__Alignas] = ACTIONS(5397), + [sym_primitive_type] = ACTIONS(5397), + [anon_sym_enum] = ACTIONS(5397), + [anon_sym_struct] = ACTIONS(5397), + [anon_sym_union] = ACTIONS(5397), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5397), + [anon_sym___typeof] = ACTIONS(5397), + [anon_sym_typeof] = ACTIONS(5397), + [aux_sym_preproc_undef_token1] = ACTIONS(5397), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5397), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5397), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5397), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5397), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5397), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5397), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5397), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5397), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5397), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5397), + [anon_sym_NS_AVAILABLE] = ACTIONS(5397), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5397), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5397), + [anon_sym_API_AVAILABLE] = ACTIONS(5397), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5397), + [anon_sym_API_DEPRECATED] = ACTIONS(5397), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5397), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5397), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5397), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5397), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5397), + [anon_sym___deprecated_msg] = ACTIONS(5397), + [anon_sym___deprecated_enum_msg] = ACTIONS(5397), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5397), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5397), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5397), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5397), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5397), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5397), + [anon_sym_ATsynthesize] = ACTIONS(5399), + [anon_sym_ATdynamic] = ACTIONS(5399), + [anon_sym_BOOL] = ACTIONS(5397), + [anon_sym_IMP] = ACTIONS(5397), + [anon_sym_SEL] = ACTIONS(5397), + [anon_sym_Class] = ACTIONS(5397), + [anon_sym_id] = ACTIONS(5397), + }, + [2333] = { + [sym_identifier] = ACTIONS(5580), + [aux_sym_preproc_def_token1] = ACTIONS(5580), + [aux_sym_preproc_if_token1] = ACTIONS(5580), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5580), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5580), + [sym_preproc_directive] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_LT] = ACTIONS(5582), + [anon_sym___extension__] = ACTIONS(5580), + [anon_sym_typedef] = ACTIONS(5580), + [anon_sym_extern] = ACTIONS(5580), + [anon_sym___attribute__] = ACTIONS(5580), + [anon_sym___attribute] = ACTIONS(5580), + [anon_sym_noreturn] = ACTIONS(5580), + [anon_sym_LBRACK] = ACTIONS(5582), + [anon_sym___declspec] = ACTIONS(5580), + [anon_sym___cdecl] = ACTIONS(5580), + [anon_sym___clrcall] = ACTIONS(5580), + [anon_sym___stdcall] = ACTIONS(5580), + [anon_sym___fastcall] = ACTIONS(5580), + [anon_sym___thiscall] = ACTIONS(5580), + [anon_sym___vectorcall] = ACTIONS(5580), + [anon_sym_LBRACE] = ACTIONS(5582), + [anon_sym_signed] = ACTIONS(5580), + [anon_sym_unsigned] = ACTIONS(5580), + [anon_sym_long] = ACTIONS(5580), + [anon_sym_short] = ACTIONS(5580), + [anon_sym_static] = ACTIONS(5580), + [anon_sym_auto] = ACTIONS(5580), + [anon_sym_register] = ACTIONS(5580), + [anon_sym_inline] = ACTIONS(5580), + [anon_sym___inline] = ACTIONS(5580), + [anon_sym___inline__] = ACTIONS(5580), + [anon_sym___forceinline] = ACTIONS(5580), + [anon_sym_thread_local] = ACTIONS(5580), + [anon_sym___thread] = ACTIONS(5580), + [anon_sym_CG_EXTERN] = ACTIONS(5580), + [anon_sym_CG_INLINE] = ACTIONS(5580), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5580), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5580), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5580), + [anon_sym_IBOutlet] = ACTIONS(5580), + [anon_sym_IBInspectable] = ACTIONS(5580), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5580), + [anon_sym_NS_INLINE] = ACTIONS(5580), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5580), + [anon_sym_OBJC_EXPORT] = ACTIONS(5580), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5580), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5580), + [anon_sym_const] = ACTIONS(5580), + [anon_sym_constexpr] = ACTIONS(5580), + [anon_sym_volatile] = ACTIONS(5580), + [anon_sym_restrict] = ACTIONS(5580), + [anon_sym___restrict__] = ACTIONS(5580), + [anon_sym__Atomic] = ACTIONS(5580), + [anon_sym__Noreturn] = ACTIONS(5580), + [anon_sym__Nonnull] = ACTIONS(5580), + [anon_sym_nullable] = ACTIONS(5580), + [anon_sym__Complex] = ACTIONS(5580), + [anon_sym__Nullable] = ACTIONS(5580), + [anon_sym__Nullable_result] = ACTIONS(5580), + [anon_sym__Null_unspecified] = ACTIONS(5580), + [anon_sym___autoreleasing] = ACTIONS(5580), + [anon_sym___block] = ACTIONS(5580), + [anon_sym___bridge] = ACTIONS(5580), + [anon_sym___bridge_retained] = ACTIONS(5580), + [anon_sym___bridge_transfer] = ACTIONS(5580), + [anon_sym___complex] = ACTIONS(5580), + [anon_sym___const] = ACTIONS(5580), + [anon_sym___imag] = ACTIONS(5580), + [anon_sym___kindof] = ACTIONS(5580), + [anon_sym___nonnull] = ACTIONS(5580), + [anon_sym___nullable] = ACTIONS(5580), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5580), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5580), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5580), + [anon_sym___real] = ACTIONS(5580), + [anon_sym___strong] = ACTIONS(5580), + [anon_sym___unsafe_unretained] = ACTIONS(5580), + [anon_sym___unused] = ACTIONS(5580), + [anon_sym___weak] = ACTIONS(5580), + [anon_sym_alignas] = ACTIONS(5580), + [anon_sym__Alignas] = ACTIONS(5580), + [sym_primitive_type] = ACTIONS(5580), + [anon_sym_enum] = ACTIONS(5580), + [anon_sym_struct] = ACTIONS(5580), + [anon_sym_union] = ACTIONS(5580), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5580), + [anon_sym___typeof] = ACTIONS(5580), + [anon_sym_typeof] = ACTIONS(5580), + [aux_sym_preproc_undef_token1] = ACTIONS(5580), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5580), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5580), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5580), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5580), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5580), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5580), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5580), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5580), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5580), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5580), + [anon_sym_NS_AVAILABLE] = ACTIONS(5580), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5580), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5580), + [anon_sym_API_AVAILABLE] = ACTIONS(5580), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5580), + [anon_sym_API_DEPRECATED] = ACTIONS(5580), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5580), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5580), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5580), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5580), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5580), + [anon_sym___deprecated_msg] = ACTIONS(5580), + [anon_sym___deprecated_enum_msg] = ACTIONS(5580), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5580), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5580), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5580), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5580), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5580), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5580), + [anon_sym_ATend] = ACTIONS(5582), + [anon_sym_ATproperty] = ACTIONS(5582), + [anon_sym_BOOL] = ACTIONS(5580), + [anon_sym_IMP] = ACTIONS(5580), + [anon_sym_SEL] = ACTIONS(5580), + [anon_sym_Class] = ACTIONS(5580), + [anon_sym_id] = ACTIONS(5580), + }, + [2334] = { + [sym_identifier] = ACTIONS(5304), + [aux_sym_preproc_def_token1] = ACTIONS(5304), + [aux_sym_preproc_if_token1] = ACTIONS(5304), + [aux_sym_preproc_if_token2] = ACTIONS(5304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5304), + [sym_preproc_directive] = ACTIONS(5304), + [anon_sym_DASH] = ACTIONS(5306), + [anon_sym_PLUS] = ACTIONS(5306), + [anon_sym_SEMI] = ACTIONS(5584), + [anon_sym___extension__] = ACTIONS(5304), + [anon_sym_typedef] = ACTIONS(5304), + [anon_sym_extern] = ACTIONS(5304), + [anon_sym___attribute__] = ACTIONS(5304), + [anon_sym___attribute] = ACTIONS(5304), + [anon_sym_noreturn] = ACTIONS(5304), + [anon_sym_LBRACK] = ACTIONS(5306), + [anon_sym___declspec] = ACTIONS(5304), + [anon_sym___cdecl] = ACTIONS(5304), + [anon_sym___clrcall] = ACTIONS(5304), + [anon_sym___stdcall] = ACTIONS(5304), + [anon_sym___fastcall] = ACTIONS(5304), + [anon_sym___thiscall] = ACTIONS(5304), + [anon_sym___vectorcall] = ACTIONS(5304), + [anon_sym_signed] = ACTIONS(5304), + [anon_sym_unsigned] = ACTIONS(5304), + [anon_sym_long] = ACTIONS(5304), + [anon_sym_short] = ACTIONS(5304), + [anon_sym_static] = ACTIONS(5304), + [anon_sym_auto] = ACTIONS(5304), + [anon_sym_register] = ACTIONS(5304), + [anon_sym_inline] = ACTIONS(5304), + [anon_sym___inline] = ACTIONS(5304), + [anon_sym___inline__] = ACTIONS(5304), + [anon_sym___forceinline] = ACTIONS(5304), + [anon_sym_thread_local] = ACTIONS(5304), + [anon_sym___thread] = ACTIONS(5304), + [anon_sym_CG_EXTERN] = ACTIONS(5304), + [anon_sym_CG_INLINE] = ACTIONS(5304), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5304), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5304), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5304), + [anon_sym_IBOutlet] = ACTIONS(5304), + [anon_sym_IBInspectable] = ACTIONS(5304), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5304), + [anon_sym_NS_INLINE] = ACTIONS(5304), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5304), + [anon_sym_OBJC_EXPORT] = ACTIONS(5304), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5304), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5304), + [anon_sym_const] = ACTIONS(5304), + [anon_sym_constexpr] = ACTIONS(5304), + [anon_sym_volatile] = ACTIONS(5304), + [anon_sym_restrict] = ACTIONS(5304), + [anon_sym___restrict__] = ACTIONS(5304), + [anon_sym__Atomic] = ACTIONS(5304), + [anon_sym__Noreturn] = ACTIONS(5304), + [anon_sym__Nonnull] = ACTIONS(5304), + [anon_sym_nullable] = ACTIONS(5304), + [anon_sym__Complex] = ACTIONS(5304), + [anon_sym__Nullable] = ACTIONS(5304), + [anon_sym__Nullable_result] = ACTIONS(5304), + [anon_sym__Null_unspecified] = ACTIONS(5304), + [anon_sym___autoreleasing] = ACTIONS(5304), + [anon_sym___block] = ACTIONS(5304), + [anon_sym___bridge] = ACTIONS(5304), + [anon_sym___bridge_retained] = ACTIONS(5304), + [anon_sym___bridge_transfer] = ACTIONS(5304), + [anon_sym___complex] = ACTIONS(5304), + [anon_sym___const] = ACTIONS(5304), + [anon_sym___imag] = ACTIONS(5304), + [anon_sym___kindof] = ACTIONS(5304), + [anon_sym___nonnull] = ACTIONS(5304), + [anon_sym___nullable] = ACTIONS(5304), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5304), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5304), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5304), + [anon_sym___real] = ACTIONS(5304), + [anon_sym___strong] = ACTIONS(5304), + [anon_sym___unsafe_unretained] = ACTIONS(5304), + [anon_sym___unused] = ACTIONS(5304), + [anon_sym___weak] = ACTIONS(5304), + [anon_sym_alignas] = ACTIONS(5304), + [anon_sym__Alignas] = ACTIONS(5304), + [sym_primitive_type] = ACTIONS(5304), + [anon_sym_enum] = ACTIONS(5304), + [anon_sym_struct] = ACTIONS(5304), + [anon_sym_union] = ACTIONS(5304), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5304), + [anon_sym___typeof] = ACTIONS(5304), + [anon_sym_typeof] = ACTIONS(5304), + [aux_sym_preproc_undef_token1] = ACTIONS(5304), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5304), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5304), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5304), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5304), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5304), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5304), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5304), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5304), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5304), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5304), + [anon_sym_NS_AVAILABLE] = ACTIONS(5304), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5304), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5304), + [anon_sym_API_AVAILABLE] = ACTIONS(5304), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5304), + [anon_sym_API_DEPRECATED] = ACTIONS(5304), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5304), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5304), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5304), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5304), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5304), + [anon_sym___deprecated_msg] = ACTIONS(5304), + [anon_sym___deprecated_enum_msg] = ACTIONS(5304), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5304), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5304), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5304), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5304), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5304), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5304), + [anon_sym_ATsynthesize] = ACTIONS(5306), + [anon_sym_ATdynamic] = ACTIONS(5306), + [anon_sym_BOOL] = ACTIONS(5304), + [anon_sym_IMP] = ACTIONS(5304), + [anon_sym_SEL] = ACTIONS(5304), + [anon_sym_Class] = ACTIONS(5304), + [anon_sym_id] = ACTIONS(5304), + }, + [2335] = { + [sym_identifier] = ACTIONS(5552), + [aux_sym_preproc_def_token1] = ACTIONS(5552), + [aux_sym_preproc_if_token1] = ACTIONS(5552), + [aux_sym_preproc_if_token2] = ACTIONS(5552), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5552), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5552), + [aux_sym_preproc_else_token1] = ACTIONS(5552), + [aux_sym_preproc_elif_token1] = ACTIONS(5552), + [sym_preproc_directive] = ACTIONS(5552), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym___extension__] = ACTIONS(5552), + [anon_sym_typedef] = ACTIONS(5552), + [anon_sym_extern] = ACTIONS(5552), + [anon_sym___attribute__] = ACTIONS(5552), + [anon_sym___attribute] = ACTIONS(5552), + [anon_sym_noreturn] = ACTIONS(5552), + [anon_sym_LBRACK] = ACTIONS(5554), + [anon_sym___declspec] = ACTIONS(5552), + [anon_sym___cdecl] = ACTIONS(5552), + [anon_sym___clrcall] = ACTIONS(5552), + [anon_sym___stdcall] = ACTIONS(5552), + [anon_sym___fastcall] = ACTIONS(5552), + [anon_sym___thiscall] = ACTIONS(5552), + [anon_sym___vectorcall] = ACTIONS(5552), + [anon_sym_signed] = ACTIONS(5552), + [anon_sym_unsigned] = ACTIONS(5552), + [anon_sym_long] = ACTIONS(5552), + [anon_sym_short] = ACTIONS(5552), + [anon_sym_static] = ACTIONS(5552), + [anon_sym_auto] = ACTIONS(5552), + [anon_sym_register] = ACTIONS(5552), + [anon_sym_inline] = ACTIONS(5552), + [anon_sym___inline] = ACTIONS(5552), + [anon_sym___inline__] = ACTIONS(5552), + [anon_sym___forceinline] = ACTIONS(5552), + [anon_sym_thread_local] = ACTIONS(5552), + [anon_sym___thread] = ACTIONS(5552), + [anon_sym_CG_EXTERN] = ACTIONS(5552), + [anon_sym_CG_INLINE] = ACTIONS(5552), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5552), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5552), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5552), + [anon_sym_IBOutlet] = ACTIONS(5552), + [anon_sym_IBInspectable] = ACTIONS(5552), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5552), + [anon_sym_NS_INLINE] = ACTIONS(5552), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5552), + [anon_sym_OBJC_EXPORT] = ACTIONS(5552), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5552), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5552), + [anon_sym_const] = ACTIONS(5552), + [anon_sym_constexpr] = ACTIONS(5552), + [anon_sym_volatile] = ACTIONS(5552), + [anon_sym_restrict] = ACTIONS(5552), + [anon_sym___restrict__] = ACTIONS(5552), + [anon_sym__Atomic] = ACTIONS(5552), + [anon_sym__Noreturn] = ACTIONS(5552), + [anon_sym__Nonnull] = ACTIONS(5552), + [anon_sym_nullable] = ACTIONS(5552), + [anon_sym__Complex] = ACTIONS(5552), + [anon_sym__Nullable] = ACTIONS(5552), + [anon_sym__Nullable_result] = ACTIONS(5552), + [anon_sym__Null_unspecified] = ACTIONS(5552), + [anon_sym___autoreleasing] = ACTIONS(5552), + [anon_sym___block] = ACTIONS(5552), + [anon_sym___bridge] = ACTIONS(5552), + [anon_sym___bridge_retained] = ACTIONS(5552), + [anon_sym___bridge_transfer] = ACTIONS(5552), + [anon_sym___complex] = ACTIONS(5552), + [anon_sym___const] = ACTIONS(5552), + [anon_sym___imag] = ACTIONS(5552), + [anon_sym___kindof] = ACTIONS(5552), + [anon_sym___nonnull] = ACTIONS(5552), + [anon_sym___nullable] = ACTIONS(5552), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5552), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5552), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5552), + [anon_sym___real] = ACTIONS(5552), + [anon_sym___strong] = ACTIONS(5552), + [anon_sym___unsafe_unretained] = ACTIONS(5552), + [anon_sym___unused] = ACTIONS(5552), + [anon_sym___weak] = ACTIONS(5552), + [anon_sym_alignas] = ACTIONS(5552), + [anon_sym__Alignas] = ACTIONS(5552), + [sym_primitive_type] = ACTIONS(5552), + [anon_sym_enum] = ACTIONS(5552), + [anon_sym_struct] = ACTIONS(5552), + [anon_sym_union] = ACTIONS(5552), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5552), + [anon_sym___typeof] = ACTIONS(5552), + [anon_sym_typeof] = ACTIONS(5552), + [aux_sym_preproc_undef_token1] = ACTIONS(5552), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5552), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5552), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5552), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5552), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5552), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5552), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5552), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5552), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5552), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5552), + [anon_sym_NS_AVAILABLE] = ACTIONS(5552), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5552), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5552), + [anon_sym_API_AVAILABLE] = ACTIONS(5552), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5552), + [anon_sym_API_DEPRECATED] = ACTIONS(5552), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5552), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5552), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5552), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5552), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5552), + [anon_sym___deprecated_msg] = ACTIONS(5552), + [anon_sym___deprecated_enum_msg] = ACTIONS(5552), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5552), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5552), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5552), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5552), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5552), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5552), + [anon_sym_ATproperty] = ACTIONS(5554), + [anon_sym_BOOL] = ACTIONS(5552), + [anon_sym_IMP] = ACTIONS(5552), + [anon_sym_SEL] = ACTIONS(5552), + [anon_sym_Class] = ACTIONS(5552), + [anon_sym_id] = ACTIONS(5552), + }, + [2336] = { + [sym_identifier] = ACTIONS(5562), + [aux_sym_preproc_def_token1] = ACTIONS(5562), + [aux_sym_preproc_if_token1] = ACTIONS(5562), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5562), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5562), + [sym_preproc_directive] = ACTIONS(5562), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym___extension__] = ACTIONS(5562), + [anon_sym_typedef] = ACTIONS(5562), + [anon_sym_extern] = ACTIONS(5562), + [anon_sym___attribute__] = ACTIONS(5562), + [anon_sym___attribute] = ACTIONS(5562), + [anon_sym_noreturn] = ACTIONS(5562), + [anon_sym_LBRACK] = ACTIONS(5564), + [anon_sym___declspec] = ACTIONS(5562), + [anon_sym___cdecl] = ACTIONS(5562), + [anon_sym___clrcall] = ACTIONS(5562), + [anon_sym___stdcall] = ACTIONS(5562), + [anon_sym___fastcall] = ACTIONS(5562), + [anon_sym___thiscall] = ACTIONS(5562), + [anon_sym___vectorcall] = ACTIONS(5562), + [anon_sym_signed] = ACTIONS(5562), + [anon_sym_unsigned] = ACTIONS(5562), + [anon_sym_long] = ACTIONS(5562), + [anon_sym_short] = ACTIONS(5562), + [anon_sym_static] = ACTIONS(5562), + [anon_sym_auto] = ACTIONS(5562), + [anon_sym_register] = ACTIONS(5562), + [anon_sym_inline] = ACTIONS(5562), + [anon_sym___inline] = ACTIONS(5562), + [anon_sym___inline__] = ACTIONS(5562), + [anon_sym___forceinline] = ACTIONS(5562), + [anon_sym_thread_local] = ACTIONS(5562), + [anon_sym___thread] = ACTIONS(5562), + [anon_sym_CG_EXTERN] = ACTIONS(5562), + [anon_sym_CG_INLINE] = ACTIONS(5562), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5562), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5562), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5562), + [anon_sym_IBOutlet] = ACTIONS(5562), + [anon_sym_IBInspectable] = ACTIONS(5562), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5562), + [anon_sym_NS_INLINE] = ACTIONS(5562), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5562), + [anon_sym_OBJC_EXPORT] = ACTIONS(5562), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5562), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5562), + [anon_sym_const] = ACTIONS(5562), + [anon_sym_constexpr] = ACTIONS(5562), + [anon_sym_volatile] = ACTIONS(5562), + [anon_sym_restrict] = ACTIONS(5562), + [anon_sym___restrict__] = ACTIONS(5562), + [anon_sym__Atomic] = ACTIONS(5562), + [anon_sym__Noreturn] = ACTIONS(5562), + [anon_sym__Nonnull] = ACTIONS(5562), + [anon_sym_nullable] = ACTIONS(5562), + [anon_sym__Complex] = ACTIONS(5562), + [anon_sym__Nullable] = ACTIONS(5562), + [anon_sym__Nullable_result] = ACTIONS(5562), + [anon_sym__Null_unspecified] = ACTIONS(5562), + [anon_sym___autoreleasing] = ACTIONS(5562), + [anon_sym___block] = ACTIONS(5562), + [anon_sym___bridge] = ACTIONS(5562), + [anon_sym___bridge_retained] = ACTIONS(5562), + [anon_sym___bridge_transfer] = ACTIONS(5562), + [anon_sym___complex] = ACTIONS(5562), + [anon_sym___const] = ACTIONS(5562), + [anon_sym___imag] = ACTIONS(5562), + [anon_sym___kindof] = ACTIONS(5562), + [anon_sym___nonnull] = ACTIONS(5562), + [anon_sym___nullable] = ACTIONS(5562), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5562), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5562), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5562), + [anon_sym___real] = ACTIONS(5562), + [anon_sym___strong] = ACTIONS(5562), + [anon_sym___unsafe_unretained] = ACTIONS(5562), + [anon_sym___unused] = ACTIONS(5562), + [anon_sym___weak] = ACTIONS(5562), + [anon_sym_alignas] = ACTIONS(5562), + [anon_sym__Alignas] = ACTIONS(5562), + [sym_primitive_type] = ACTIONS(5562), + [anon_sym_enum] = ACTIONS(5562), + [anon_sym_struct] = ACTIONS(5562), + [anon_sym_union] = ACTIONS(5562), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5562), + [anon_sym___typeof] = ACTIONS(5562), + [anon_sym_typeof] = ACTIONS(5562), + [aux_sym_preproc_undef_token1] = ACTIONS(5562), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5562), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5562), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5562), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5562), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5562), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5562), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5562), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5562), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5562), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5562), + [anon_sym_NS_AVAILABLE] = ACTIONS(5562), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5562), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5562), + [anon_sym_API_AVAILABLE] = ACTIONS(5562), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5562), + [anon_sym_API_DEPRECATED] = ACTIONS(5562), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5562), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5562), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5562), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5562), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5562), + [anon_sym___deprecated_msg] = ACTIONS(5562), + [anon_sym___deprecated_enum_msg] = ACTIONS(5562), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5562), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5562), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5562), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5562), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5562), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5562), + [anon_sym_ATend] = ACTIONS(5564), + [anon_sym_AToptional] = ACTIONS(5564), + [anon_sym_ATrequired] = ACTIONS(5564), + [anon_sym_ATproperty] = ACTIONS(5564), + [anon_sym_BOOL] = ACTIONS(5562), + [anon_sym_IMP] = ACTIONS(5562), + [anon_sym_SEL] = ACTIONS(5562), + [anon_sym_Class] = ACTIONS(5562), + [anon_sym_id] = ACTIONS(5562), + }, + [2337] = { + [sym_identifier] = ACTIONS(2848), + [aux_sym_preproc_def_token1] = ACTIONS(2848), + [aux_sym_preproc_if_token1] = ACTIONS(2848), + [aux_sym_preproc_if_token2] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2848), + [sym_preproc_directive] = ACTIONS(2848), + [anon_sym_DASH] = ACTIONS(2850), + [anon_sym_PLUS] = ACTIONS(2850), + [anon_sym___extension__] = ACTIONS(2848), + [anon_sym_typedef] = ACTIONS(2848), + [anon_sym_extern] = ACTIONS(2848), + [anon_sym___attribute__] = ACTIONS(2848), + [anon_sym___attribute] = ACTIONS(2848), + [anon_sym_noreturn] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2850), + [anon_sym___declspec] = ACTIONS(2848), + [anon_sym___cdecl] = ACTIONS(2848), + [anon_sym___clrcall] = ACTIONS(2848), + [anon_sym___stdcall] = ACTIONS(2848), + [anon_sym___fastcall] = ACTIONS(2848), + [anon_sym___thiscall] = ACTIONS(2848), + [anon_sym___vectorcall] = ACTIONS(2848), + [anon_sym_signed] = ACTIONS(2848), + [anon_sym_unsigned] = ACTIONS(2848), + [anon_sym_long] = ACTIONS(2848), + [anon_sym_short] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_auto] = ACTIONS(2848), + [anon_sym_register] = ACTIONS(2848), + [anon_sym_inline] = ACTIONS(2848), + [anon_sym___inline] = ACTIONS(2848), + [anon_sym___inline__] = ACTIONS(2848), + [anon_sym___forceinline] = ACTIONS(2848), + [anon_sym_thread_local] = ACTIONS(2848), + [anon_sym___thread] = ACTIONS(2848), + [anon_sym_CG_EXTERN] = ACTIONS(2848), + [anon_sym_CG_INLINE] = ACTIONS(2848), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2848), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2848), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2848), + [anon_sym_IBOutlet] = ACTIONS(2848), + [anon_sym_IBInspectable] = ACTIONS(2848), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2848), + [anon_sym_NS_INLINE] = ACTIONS(2848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2848), + [anon_sym_OBJC_EXPORT] = ACTIONS(2848), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2848), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2848), + [anon_sym_const] = ACTIONS(2848), + [anon_sym_constexpr] = ACTIONS(2848), + [anon_sym_volatile] = ACTIONS(2848), + [anon_sym_restrict] = ACTIONS(2848), + [anon_sym___restrict__] = ACTIONS(2848), + [anon_sym__Atomic] = ACTIONS(2848), + [anon_sym__Noreturn] = ACTIONS(2848), + [anon_sym__Nonnull] = ACTIONS(2848), + [anon_sym_nullable] = ACTIONS(2848), + [anon_sym__Complex] = ACTIONS(2848), + [anon_sym__Nullable] = ACTIONS(2848), + [anon_sym__Nullable_result] = ACTIONS(2848), + [anon_sym__Null_unspecified] = ACTIONS(2848), + [anon_sym___autoreleasing] = ACTIONS(2848), + [anon_sym___block] = ACTIONS(2848), + [anon_sym___bridge] = ACTIONS(2848), + [anon_sym___bridge_retained] = ACTIONS(2848), + [anon_sym___bridge_transfer] = ACTIONS(2848), + [anon_sym___complex] = ACTIONS(2848), + [anon_sym___const] = ACTIONS(2848), + [anon_sym___imag] = ACTIONS(2848), + [anon_sym___kindof] = ACTIONS(2848), + [anon_sym___nonnull] = ACTIONS(2848), + [anon_sym___nullable] = ACTIONS(2848), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2848), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2848), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2848), + [anon_sym___real] = ACTIONS(2848), + [anon_sym___strong] = ACTIONS(2848), + [anon_sym___unsafe_unretained] = ACTIONS(2848), + [anon_sym___unused] = ACTIONS(2848), + [anon_sym___weak] = ACTIONS(2848), + [anon_sym_alignas] = ACTIONS(2848), + [anon_sym__Alignas] = ACTIONS(2848), + [sym_primitive_type] = ACTIONS(2848), + [anon_sym_enum] = ACTIONS(2848), + [anon_sym_struct] = ACTIONS(2848), + [anon_sym_union] = ACTIONS(2848), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2848), + [anon_sym___typeof] = ACTIONS(2848), + [anon_sym_typeof] = ACTIONS(2848), + [aux_sym_preproc_undef_token1] = ACTIONS(2848), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2848), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2848), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2848), + [anon_sym_NS_AVAILABLE] = ACTIONS(2848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_API_AVAILABLE] = ACTIONS(2848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_API_DEPRECATED] = ACTIONS(2848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2848), + [anon_sym___deprecated_msg] = ACTIONS(2848), + [anon_sym___deprecated_enum_msg] = ACTIONS(2848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2848), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2848), + [anon_sym_ATsynthesize] = ACTIONS(2850), + [anon_sym_ATdynamic] = ACTIONS(2850), + [anon_sym_ATproperty] = ACTIONS(2850), + [anon_sym_BOOL] = ACTIONS(2848), + [anon_sym_IMP] = ACTIONS(2848), + [anon_sym_SEL] = ACTIONS(2848), + [anon_sym_Class] = ACTIONS(2848), + [anon_sym_id] = ACTIONS(2848), + }, + [2338] = { + [aux_sym_method_declaration_repeat2] = STATE(2269), + [sym_identifier] = ACTIONS(5363), + [aux_sym_preproc_def_token1] = ACTIONS(5363), + [aux_sym_preproc_if_token1] = ACTIONS(5363), + [aux_sym_preproc_if_token2] = ACTIONS(5363), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5363), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5363), + [sym_preproc_directive] = ACTIONS(5363), + [anon_sym_DASH] = ACTIONS(5365), + [anon_sym_PLUS] = ACTIONS(5365), + [anon_sym_SEMI] = ACTIONS(5477), + [anon_sym___extension__] = ACTIONS(5363), + [anon_sym_typedef] = ACTIONS(5363), + [anon_sym_extern] = ACTIONS(5363), + [anon_sym___attribute__] = ACTIONS(5363), + [anon_sym___attribute] = ACTIONS(5363), + [anon_sym_noreturn] = ACTIONS(5363), + [anon_sym_LBRACK] = ACTIONS(5365), + [anon_sym___declspec] = ACTIONS(5363), + [anon_sym___cdecl] = ACTIONS(5363), + [anon_sym___clrcall] = ACTIONS(5363), + [anon_sym___stdcall] = ACTIONS(5363), + [anon_sym___fastcall] = ACTIONS(5363), + [anon_sym___thiscall] = ACTIONS(5363), + [anon_sym___vectorcall] = ACTIONS(5363), + [anon_sym_signed] = ACTIONS(5363), + [anon_sym_unsigned] = ACTIONS(5363), + [anon_sym_long] = ACTIONS(5363), + [anon_sym_short] = ACTIONS(5363), + [anon_sym_static] = ACTIONS(5363), + [anon_sym_auto] = ACTIONS(5363), + [anon_sym_register] = ACTIONS(5363), + [anon_sym_inline] = ACTIONS(5363), + [anon_sym___inline] = ACTIONS(5363), + [anon_sym___inline__] = ACTIONS(5363), + [anon_sym___forceinline] = ACTIONS(5363), + [anon_sym_thread_local] = ACTIONS(5363), + [anon_sym___thread] = ACTIONS(5363), + [anon_sym_CG_EXTERN] = ACTIONS(5363), + [anon_sym_CG_INLINE] = ACTIONS(5363), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5363), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5363), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5363), + [anon_sym_IBOutlet] = ACTIONS(5363), + [anon_sym_IBInspectable] = ACTIONS(5363), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5363), + [anon_sym_NS_INLINE] = ACTIONS(5363), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5363), + [anon_sym_OBJC_EXPORT] = ACTIONS(5363), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5363), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5363), + [anon_sym_const] = ACTIONS(5363), + [anon_sym_constexpr] = ACTIONS(5363), + [anon_sym_volatile] = ACTIONS(5363), + [anon_sym_restrict] = ACTIONS(5363), + [anon_sym___restrict__] = ACTIONS(5363), + [anon_sym__Atomic] = ACTIONS(5363), + [anon_sym__Noreturn] = ACTIONS(5363), + [anon_sym__Nonnull] = ACTIONS(5363), + [anon_sym_nullable] = ACTIONS(5363), + [anon_sym__Complex] = ACTIONS(5363), + [anon_sym__Nullable] = ACTIONS(5363), + [anon_sym__Nullable_result] = ACTIONS(5363), + [anon_sym__Null_unspecified] = ACTIONS(5363), + [anon_sym___autoreleasing] = ACTIONS(5363), + [anon_sym___block] = ACTIONS(5363), + [anon_sym___bridge] = ACTIONS(5363), + [anon_sym___bridge_retained] = ACTIONS(5363), + [anon_sym___bridge_transfer] = ACTIONS(5363), + [anon_sym___complex] = ACTIONS(5363), + [anon_sym___const] = ACTIONS(5363), + [anon_sym___imag] = ACTIONS(5363), + [anon_sym___kindof] = ACTIONS(5363), + [anon_sym___nonnull] = ACTIONS(5363), + [anon_sym___nullable] = ACTIONS(5363), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5363), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5363), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5363), + [anon_sym___real] = ACTIONS(5363), + [anon_sym___strong] = ACTIONS(5363), + [anon_sym___unsafe_unretained] = ACTIONS(5363), + [anon_sym___unused] = ACTIONS(5363), + [anon_sym___weak] = ACTIONS(5363), + [anon_sym_alignas] = ACTIONS(5363), + [anon_sym__Alignas] = ACTIONS(5363), + [sym_primitive_type] = ACTIONS(5363), + [anon_sym_enum] = ACTIONS(5363), + [anon_sym_struct] = ACTIONS(5363), + [anon_sym_union] = ACTIONS(5363), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5363), + [anon_sym___typeof] = ACTIONS(5363), + [anon_sym_typeof] = ACTIONS(5363), + [aux_sym_preproc_undef_token1] = ACTIONS(5363), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5363), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5363), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5363), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5363), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5363), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5363), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5363), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5363), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5363), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5363), + [anon_sym_NS_AVAILABLE] = ACTIONS(5363), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5363), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5363), + [anon_sym_API_AVAILABLE] = ACTIONS(5363), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5363), + [anon_sym_API_DEPRECATED] = ACTIONS(5363), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5363), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5363), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5363), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5363), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5363), + [anon_sym___deprecated_msg] = ACTIONS(5363), + [anon_sym___deprecated_enum_msg] = ACTIONS(5363), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5363), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5363), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5363), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5363), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5363), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5363), + [anon_sym_ATproperty] = ACTIONS(5365), + [anon_sym_BOOL] = ACTIONS(5363), + [anon_sym_IMP] = ACTIONS(5363), + [anon_sym_SEL] = ACTIONS(5363), + [anon_sym_Class] = ACTIONS(5363), + [anon_sym_id] = ACTIONS(5363), + }, + [2339] = { + [sym_identifier] = ACTIONS(5431), + [aux_sym_preproc_def_token1] = ACTIONS(5431), + [aux_sym_preproc_if_token1] = ACTIONS(5431), + [aux_sym_preproc_if_token2] = ACTIONS(5431), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5431), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5431), + [sym_preproc_directive] = ACTIONS(5431), + [anon_sym_DASH] = ACTIONS(5433), + [anon_sym_PLUS] = ACTIONS(5433), + [anon_sym_SEMI] = ACTIONS(5586), + [anon_sym___extension__] = ACTIONS(5431), + [anon_sym_typedef] = ACTIONS(5431), + [anon_sym_extern] = ACTIONS(5431), + [anon_sym___attribute__] = ACTIONS(5431), + [anon_sym___attribute] = ACTIONS(5431), + [anon_sym_noreturn] = ACTIONS(5431), + [anon_sym_LBRACK] = ACTIONS(5433), + [anon_sym___declspec] = ACTIONS(5431), + [anon_sym___cdecl] = ACTIONS(5431), + [anon_sym___clrcall] = ACTIONS(5431), + [anon_sym___stdcall] = ACTIONS(5431), + [anon_sym___fastcall] = ACTIONS(5431), + [anon_sym___thiscall] = ACTIONS(5431), + [anon_sym___vectorcall] = ACTIONS(5431), + [anon_sym_signed] = ACTIONS(5431), + [anon_sym_unsigned] = ACTIONS(5431), + [anon_sym_long] = ACTIONS(5431), + [anon_sym_short] = ACTIONS(5431), + [anon_sym_static] = ACTIONS(5431), + [anon_sym_auto] = ACTIONS(5431), + [anon_sym_register] = ACTIONS(5431), + [anon_sym_inline] = ACTIONS(5431), + [anon_sym___inline] = ACTIONS(5431), + [anon_sym___inline__] = ACTIONS(5431), + [anon_sym___forceinline] = ACTIONS(5431), + [anon_sym_thread_local] = ACTIONS(5431), + [anon_sym___thread] = ACTIONS(5431), + [anon_sym_CG_EXTERN] = ACTIONS(5431), + [anon_sym_CG_INLINE] = ACTIONS(5431), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5431), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5431), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5431), + [anon_sym_IBOutlet] = ACTIONS(5431), + [anon_sym_IBInspectable] = ACTIONS(5431), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5431), + [anon_sym_NS_INLINE] = ACTIONS(5431), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5431), + [anon_sym_OBJC_EXPORT] = ACTIONS(5431), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5431), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5431), + [anon_sym_const] = ACTIONS(5431), + [anon_sym_constexpr] = ACTIONS(5431), + [anon_sym_volatile] = ACTIONS(5431), + [anon_sym_restrict] = ACTIONS(5431), + [anon_sym___restrict__] = ACTIONS(5431), + [anon_sym__Atomic] = ACTIONS(5431), + [anon_sym__Noreturn] = ACTIONS(5431), + [anon_sym__Nonnull] = ACTIONS(5431), + [anon_sym_nullable] = ACTIONS(5431), + [anon_sym__Complex] = ACTIONS(5431), + [anon_sym__Nullable] = ACTIONS(5431), + [anon_sym__Nullable_result] = ACTIONS(5431), + [anon_sym__Null_unspecified] = ACTIONS(5431), + [anon_sym___autoreleasing] = ACTIONS(5431), + [anon_sym___block] = ACTIONS(5431), + [anon_sym___bridge] = ACTIONS(5431), + [anon_sym___bridge_retained] = ACTIONS(5431), + [anon_sym___bridge_transfer] = ACTIONS(5431), + [anon_sym___complex] = ACTIONS(5431), + [anon_sym___const] = ACTIONS(5431), + [anon_sym___imag] = ACTIONS(5431), + [anon_sym___kindof] = ACTIONS(5431), + [anon_sym___nonnull] = ACTIONS(5431), + [anon_sym___nullable] = ACTIONS(5431), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5431), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5431), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5431), + [anon_sym___real] = ACTIONS(5431), + [anon_sym___strong] = ACTIONS(5431), + [anon_sym___unsafe_unretained] = ACTIONS(5431), + [anon_sym___unused] = ACTIONS(5431), + [anon_sym___weak] = ACTIONS(5431), + [anon_sym_alignas] = ACTIONS(5431), + [anon_sym__Alignas] = ACTIONS(5431), + [sym_primitive_type] = ACTIONS(5431), + [anon_sym_enum] = ACTIONS(5431), + [anon_sym_struct] = ACTIONS(5431), + [anon_sym_union] = ACTIONS(5431), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5431), + [anon_sym___typeof] = ACTIONS(5431), + [anon_sym_typeof] = ACTIONS(5431), + [aux_sym_preproc_undef_token1] = ACTIONS(5431), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5431), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5431), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5431), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5431), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5431), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5431), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5431), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5431), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5431), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5431), + [anon_sym_NS_AVAILABLE] = ACTIONS(5431), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5431), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5431), + [anon_sym_API_AVAILABLE] = ACTIONS(5431), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5431), + [anon_sym_API_DEPRECATED] = ACTIONS(5431), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5431), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5431), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5431), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5431), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5431), + [anon_sym___deprecated_msg] = ACTIONS(5431), + [anon_sym___deprecated_enum_msg] = ACTIONS(5431), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5431), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5431), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5431), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5431), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5431), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5431), + [anon_sym_ATsynthesize] = ACTIONS(5433), + [anon_sym_ATdynamic] = ACTIONS(5433), + [anon_sym_BOOL] = ACTIONS(5431), + [anon_sym_IMP] = ACTIONS(5431), + [anon_sym_SEL] = ACTIONS(5431), + [anon_sym_Class] = ACTIONS(5431), + [anon_sym_id] = ACTIONS(5431), + }, + [2340] = { + [sym_identifier] = ACTIONS(5497), + [aux_sym_preproc_def_token1] = ACTIONS(5497), + [aux_sym_preproc_if_token1] = ACTIONS(5497), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5497), + [sym_preproc_directive] = ACTIONS(5497), + [anon_sym_DASH] = ACTIONS(5499), + [anon_sym_PLUS] = ACTIONS(5499), + [anon_sym___extension__] = ACTIONS(5497), + [anon_sym_typedef] = ACTIONS(5497), + [anon_sym_extern] = ACTIONS(5497), + [anon_sym___attribute__] = ACTIONS(5497), + [anon_sym___attribute] = ACTIONS(5497), + [anon_sym_noreturn] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(5499), + [anon_sym___declspec] = ACTIONS(5497), + [anon_sym___cdecl] = ACTIONS(5497), + [anon_sym___clrcall] = ACTIONS(5497), + [anon_sym___stdcall] = ACTIONS(5497), + [anon_sym___fastcall] = ACTIONS(5497), + [anon_sym___thiscall] = ACTIONS(5497), + [anon_sym___vectorcall] = ACTIONS(5497), + [anon_sym_signed] = ACTIONS(5497), + [anon_sym_unsigned] = ACTIONS(5497), + [anon_sym_long] = ACTIONS(5497), + [anon_sym_short] = ACTIONS(5497), + [anon_sym_static] = ACTIONS(5497), + [anon_sym_auto] = ACTIONS(5497), + [anon_sym_register] = ACTIONS(5497), + [anon_sym_inline] = ACTIONS(5497), + [anon_sym___inline] = ACTIONS(5497), + [anon_sym___inline__] = ACTIONS(5497), + [anon_sym___forceinline] = ACTIONS(5497), + [anon_sym_thread_local] = ACTIONS(5497), + [anon_sym___thread] = ACTIONS(5497), + [anon_sym_CG_EXTERN] = ACTIONS(5497), + [anon_sym_CG_INLINE] = ACTIONS(5497), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5497), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5497), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5497), + [anon_sym_IBOutlet] = ACTIONS(5497), + [anon_sym_IBInspectable] = ACTIONS(5497), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5497), + [anon_sym_NS_INLINE] = ACTIONS(5497), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5497), + [anon_sym_OBJC_EXPORT] = ACTIONS(5497), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5497), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5497), + [anon_sym_const] = ACTIONS(5497), + [anon_sym_constexpr] = ACTIONS(5497), + [anon_sym_volatile] = ACTIONS(5497), + [anon_sym_restrict] = ACTIONS(5497), + [anon_sym___restrict__] = ACTIONS(5497), + [anon_sym__Atomic] = ACTIONS(5497), + [anon_sym__Noreturn] = ACTIONS(5497), + [anon_sym__Nonnull] = ACTIONS(5497), + [anon_sym_nullable] = ACTIONS(5497), + [anon_sym__Complex] = ACTIONS(5497), + [anon_sym__Nullable] = ACTIONS(5497), + [anon_sym__Nullable_result] = ACTIONS(5497), + [anon_sym__Null_unspecified] = ACTIONS(5497), + [anon_sym___autoreleasing] = ACTIONS(5497), + [anon_sym___block] = ACTIONS(5497), + [anon_sym___bridge] = ACTIONS(5497), + [anon_sym___bridge_retained] = ACTIONS(5497), + [anon_sym___bridge_transfer] = ACTIONS(5497), + [anon_sym___complex] = ACTIONS(5497), + [anon_sym___const] = ACTIONS(5497), + [anon_sym___imag] = ACTIONS(5497), + [anon_sym___kindof] = ACTIONS(5497), + [anon_sym___nonnull] = ACTIONS(5497), + [anon_sym___nullable] = ACTIONS(5497), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5497), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5497), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5497), + [anon_sym___real] = ACTIONS(5497), + [anon_sym___strong] = ACTIONS(5497), + [anon_sym___unsafe_unretained] = ACTIONS(5497), + [anon_sym___unused] = ACTIONS(5497), + [anon_sym___weak] = ACTIONS(5497), + [anon_sym_alignas] = ACTIONS(5497), + [anon_sym__Alignas] = ACTIONS(5497), + [sym_primitive_type] = ACTIONS(5497), + [anon_sym_enum] = ACTIONS(5497), + [anon_sym_struct] = ACTIONS(5497), + [anon_sym_union] = ACTIONS(5497), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5497), + [anon_sym___typeof] = ACTIONS(5497), + [anon_sym_typeof] = ACTIONS(5497), + [aux_sym_preproc_undef_token1] = ACTIONS(5497), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5497), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5497), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5497), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5497), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5497), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5497), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5497), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5497), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5497), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5497), + [anon_sym_NS_AVAILABLE] = ACTIONS(5497), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5497), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5497), + [anon_sym_API_AVAILABLE] = ACTIONS(5497), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5497), + [anon_sym_API_DEPRECATED] = ACTIONS(5497), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5497), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5497), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5497), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5497), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5497), + [anon_sym___deprecated_msg] = ACTIONS(5497), + [anon_sym___deprecated_enum_msg] = ACTIONS(5497), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5497), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5497), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5497), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5497), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5497), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5497), + [anon_sym_ATend] = ACTIONS(5499), + [anon_sym_AToptional] = ACTIONS(5499), + [anon_sym_ATrequired] = ACTIONS(5499), + [anon_sym_ATproperty] = ACTIONS(5499), + [anon_sym_BOOL] = ACTIONS(5497), + [anon_sym_IMP] = ACTIONS(5497), + [anon_sym_SEL] = ACTIONS(5497), + [anon_sym_Class] = ACTIONS(5497), + [anon_sym_id] = ACTIONS(5497), + }, + [2341] = { + [sym_identifier] = ACTIONS(5397), + [aux_sym_preproc_def_token1] = ACTIONS(5397), + [aux_sym_preproc_if_token1] = ACTIONS(5397), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5397), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5397), + [sym_preproc_directive] = ACTIONS(5397), + [anon_sym_DASH] = ACTIONS(5399), + [anon_sym_PLUS] = ACTIONS(5399), + [anon_sym_SEMI] = ACTIONS(5588), + [anon_sym___extension__] = ACTIONS(5397), + [anon_sym_typedef] = ACTIONS(5397), + [anon_sym_extern] = ACTIONS(5397), + [anon_sym___attribute__] = ACTIONS(5397), + [anon_sym___attribute] = ACTIONS(5397), + [anon_sym_noreturn] = ACTIONS(5397), + [anon_sym_LBRACK] = ACTIONS(5399), + [anon_sym___declspec] = ACTIONS(5397), + [anon_sym___cdecl] = ACTIONS(5397), + [anon_sym___clrcall] = ACTIONS(5397), + [anon_sym___stdcall] = ACTIONS(5397), + [anon_sym___fastcall] = ACTIONS(5397), + [anon_sym___thiscall] = ACTIONS(5397), + [anon_sym___vectorcall] = ACTIONS(5397), + [anon_sym_signed] = ACTIONS(5397), + [anon_sym_unsigned] = ACTIONS(5397), + [anon_sym_long] = ACTIONS(5397), + [anon_sym_short] = ACTIONS(5397), + [anon_sym_static] = ACTIONS(5397), + [anon_sym_auto] = ACTIONS(5397), + [anon_sym_register] = ACTIONS(5397), + [anon_sym_inline] = ACTIONS(5397), + [anon_sym___inline] = ACTIONS(5397), + [anon_sym___inline__] = ACTIONS(5397), + [anon_sym___forceinline] = ACTIONS(5397), + [anon_sym_thread_local] = ACTIONS(5397), + [anon_sym___thread] = ACTIONS(5397), + [anon_sym_CG_EXTERN] = ACTIONS(5397), + [anon_sym_CG_INLINE] = ACTIONS(5397), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5397), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5397), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5397), + [anon_sym_IBOutlet] = ACTIONS(5397), + [anon_sym_IBInspectable] = ACTIONS(5397), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5397), + [anon_sym_NS_INLINE] = ACTIONS(5397), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5397), + [anon_sym_OBJC_EXPORT] = ACTIONS(5397), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5397), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5397), + [anon_sym_const] = ACTIONS(5397), + [anon_sym_constexpr] = ACTIONS(5397), + [anon_sym_volatile] = ACTIONS(5397), + [anon_sym_restrict] = ACTIONS(5397), + [anon_sym___restrict__] = ACTIONS(5397), + [anon_sym__Atomic] = ACTIONS(5397), + [anon_sym__Noreturn] = ACTIONS(5397), + [anon_sym__Nonnull] = ACTIONS(5397), + [anon_sym_nullable] = ACTIONS(5397), + [anon_sym__Complex] = ACTIONS(5397), + [anon_sym__Nullable] = ACTIONS(5397), + [anon_sym__Nullable_result] = ACTIONS(5397), + [anon_sym__Null_unspecified] = ACTIONS(5397), + [anon_sym___autoreleasing] = ACTIONS(5397), + [anon_sym___block] = ACTIONS(5397), + [anon_sym___bridge] = ACTIONS(5397), + [anon_sym___bridge_retained] = ACTIONS(5397), + [anon_sym___bridge_transfer] = ACTIONS(5397), + [anon_sym___complex] = ACTIONS(5397), + [anon_sym___const] = ACTIONS(5397), + [anon_sym___imag] = ACTIONS(5397), + [anon_sym___kindof] = ACTIONS(5397), + [anon_sym___nonnull] = ACTIONS(5397), + [anon_sym___nullable] = ACTIONS(5397), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5397), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5397), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5397), + [anon_sym___real] = ACTIONS(5397), + [anon_sym___strong] = ACTIONS(5397), + [anon_sym___unsafe_unretained] = ACTIONS(5397), + [anon_sym___unused] = ACTIONS(5397), + [anon_sym___weak] = ACTIONS(5397), + [anon_sym_alignas] = ACTIONS(5397), + [anon_sym__Alignas] = ACTIONS(5397), + [sym_primitive_type] = ACTIONS(5397), + [anon_sym_enum] = ACTIONS(5397), + [anon_sym_struct] = ACTIONS(5397), + [anon_sym_union] = ACTIONS(5397), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5397), + [anon_sym___typeof] = ACTIONS(5397), + [anon_sym_typeof] = ACTIONS(5397), + [aux_sym_preproc_undef_token1] = ACTIONS(5397), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5397), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5397), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5397), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5397), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5397), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5397), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5397), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5397), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5397), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5397), + [anon_sym_NS_AVAILABLE] = ACTIONS(5397), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5397), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5397), + [anon_sym_API_AVAILABLE] = ACTIONS(5397), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5397), + [anon_sym_API_DEPRECATED] = ACTIONS(5397), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5397), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5397), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5397), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5397), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5397), + [anon_sym___deprecated_msg] = ACTIONS(5397), + [anon_sym___deprecated_enum_msg] = ACTIONS(5397), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5397), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5397), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5397), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5397), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5397), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5397), + [anon_sym_ATend] = ACTIONS(5399), + [anon_sym_ATsynthesize] = ACTIONS(5399), + [anon_sym_ATdynamic] = ACTIONS(5399), + [anon_sym_BOOL] = ACTIONS(5397), + [anon_sym_IMP] = ACTIONS(5397), + [anon_sym_SEL] = ACTIONS(5397), + [anon_sym_Class] = ACTIONS(5397), + [anon_sym_id] = ACTIONS(5397), + }, + [2342] = { + [sym_identifier] = ACTIONS(5505), + [aux_sym_preproc_def_token1] = ACTIONS(5505), + [aux_sym_preproc_if_token1] = ACTIONS(5505), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5505), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5505), + [sym_preproc_directive] = ACTIONS(5505), + [anon_sym_DASH] = ACTIONS(5507), + [anon_sym_PLUS] = ACTIONS(5507), + [anon_sym___extension__] = ACTIONS(5505), + [anon_sym_typedef] = ACTIONS(5505), + [anon_sym_extern] = ACTIONS(5505), + [anon_sym___attribute__] = ACTIONS(5505), + [anon_sym___attribute] = ACTIONS(5505), + [anon_sym_noreturn] = ACTIONS(5505), + [anon_sym_LBRACK] = ACTIONS(5507), + [anon_sym___declspec] = ACTIONS(5505), + [anon_sym___cdecl] = ACTIONS(5505), + [anon_sym___clrcall] = ACTIONS(5505), + [anon_sym___stdcall] = ACTIONS(5505), + [anon_sym___fastcall] = ACTIONS(5505), + [anon_sym___thiscall] = ACTIONS(5505), + [anon_sym___vectorcall] = ACTIONS(5505), + [anon_sym_signed] = ACTIONS(5505), + [anon_sym_unsigned] = ACTIONS(5505), + [anon_sym_long] = ACTIONS(5505), + [anon_sym_short] = ACTIONS(5505), + [anon_sym_static] = ACTIONS(5505), + [anon_sym_auto] = ACTIONS(5505), + [anon_sym_register] = ACTIONS(5505), + [anon_sym_inline] = ACTIONS(5505), + [anon_sym___inline] = ACTIONS(5505), + [anon_sym___inline__] = ACTIONS(5505), + [anon_sym___forceinline] = ACTIONS(5505), + [anon_sym_thread_local] = ACTIONS(5505), + [anon_sym___thread] = ACTIONS(5505), + [anon_sym_CG_EXTERN] = ACTIONS(5505), + [anon_sym_CG_INLINE] = ACTIONS(5505), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5505), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5505), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5505), + [anon_sym_IBOutlet] = ACTIONS(5505), + [anon_sym_IBInspectable] = ACTIONS(5505), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5505), + [anon_sym_NS_INLINE] = ACTIONS(5505), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5505), + [anon_sym_OBJC_EXPORT] = ACTIONS(5505), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5505), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5505), + [anon_sym_const] = ACTIONS(5505), + [anon_sym_constexpr] = ACTIONS(5505), + [anon_sym_volatile] = ACTIONS(5505), + [anon_sym_restrict] = ACTIONS(5505), + [anon_sym___restrict__] = ACTIONS(5505), + [anon_sym__Atomic] = ACTIONS(5505), + [anon_sym__Noreturn] = ACTIONS(5505), + [anon_sym__Nonnull] = ACTIONS(5505), + [anon_sym_nullable] = ACTIONS(5505), + [anon_sym__Complex] = ACTIONS(5505), + [anon_sym__Nullable] = ACTIONS(5505), + [anon_sym__Nullable_result] = ACTIONS(5505), + [anon_sym__Null_unspecified] = ACTIONS(5505), + [anon_sym___autoreleasing] = ACTIONS(5505), + [anon_sym___block] = ACTIONS(5505), + [anon_sym___bridge] = ACTIONS(5505), + [anon_sym___bridge_retained] = ACTIONS(5505), + [anon_sym___bridge_transfer] = ACTIONS(5505), + [anon_sym___complex] = ACTIONS(5505), + [anon_sym___const] = ACTIONS(5505), + [anon_sym___imag] = ACTIONS(5505), + [anon_sym___kindof] = ACTIONS(5505), + [anon_sym___nonnull] = ACTIONS(5505), + [anon_sym___nullable] = ACTIONS(5505), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5505), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5505), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5505), + [anon_sym___real] = ACTIONS(5505), + [anon_sym___strong] = ACTIONS(5505), + [anon_sym___unsafe_unretained] = ACTIONS(5505), + [anon_sym___unused] = ACTIONS(5505), + [anon_sym___weak] = ACTIONS(5505), + [anon_sym_alignas] = ACTIONS(5505), + [anon_sym__Alignas] = ACTIONS(5505), + [sym_primitive_type] = ACTIONS(5505), + [anon_sym_enum] = ACTIONS(5505), + [anon_sym_struct] = ACTIONS(5505), + [anon_sym_union] = ACTIONS(5505), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5505), + [anon_sym___typeof] = ACTIONS(5505), + [anon_sym_typeof] = ACTIONS(5505), + [aux_sym_preproc_undef_token1] = ACTIONS(5505), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5505), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5505), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5505), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5505), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5505), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5505), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5505), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5505), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5505), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5505), + [anon_sym_NS_AVAILABLE] = ACTIONS(5505), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5505), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5505), + [anon_sym_API_AVAILABLE] = ACTIONS(5505), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5505), + [anon_sym_API_DEPRECATED] = ACTIONS(5505), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5505), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5505), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5505), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5505), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5505), + [anon_sym___deprecated_msg] = ACTIONS(5505), + [anon_sym___deprecated_enum_msg] = ACTIONS(5505), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5505), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5505), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5505), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5505), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5505), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5505), + [anon_sym_ATend] = ACTIONS(5507), + [anon_sym_AToptional] = ACTIONS(5507), + [anon_sym_ATrequired] = ACTIONS(5507), + [anon_sym_ATproperty] = ACTIONS(5507), + [anon_sym_BOOL] = ACTIONS(5505), + [anon_sym_IMP] = ACTIONS(5505), + [anon_sym_SEL] = ACTIONS(5505), + [anon_sym_Class] = ACTIONS(5505), + [anon_sym_id] = ACTIONS(5505), + }, + [2343] = { + [sym_identifier] = ACTIONS(5590), + [aux_sym_preproc_def_token1] = ACTIONS(5590), + [aux_sym_preproc_if_token1] = ACTIONS(5590), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5590), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5590), + [sym_preproc_directive] = ACTIONS(5590), + [anon_sym_DASH] = ACTIONS(3749), + [anon_sym_PLUS] = ACTIONS(3749), + [anon_sym___extension__] = ACTIONS(5590), + [anon_sym_typedef] = ACTIONS(5590), + [anon_sym_extern] = ACTIONS(5590), + [anon_sym___attribute__] = ACTIONS(5590), + [anon_sym___attribute] = ACTIONS(5590), + [anon_sym_noreturn] = ACTIONS(5590), + [anon_sym_LBRACK] = ACTIONS(3749), + [anon_sym___declspec] = ACTIONS(5590), + [anon_sym___cdecl] = ACTIONS(5590), + [anon_sym___clrcall] = ACTIONS(5590), + [anon_sym___stdcall] = ACTIONS(5590), + [anon_sym___fastcall] = ACTIONS(5590), + [anon_sym___thiscall] = ACTIONS(5590), + [anon_sym___vectorcall] = ACTIONS(5590), + [anon_sym_signed] = ACTIONS(5590), + [anon_sym_unsigned] = ACTIONS(5590), + [anon_sym_long] = ACTIONS(5590), + [anon_sym_short] = ACTIONS(5590), + [anon_sym_static] = ACTIONS(5590), + [anon_sym_auto] = ACTIONS(5590), + [anon_sym_register] = ACTIONS(5590), + [anon_sym_inline] = ACTIONS(5590), + [anon_sym___inline] = ACTIONS(5590), + [anon_sym___inline__] = ACTIONS(5590), + [anon_sym___forceinline] = ACTIONS(5590), + [anon_sym_thread_local] = ACTIONS(5590), + [anon_sym___thread] = ACTIONS(5590), + [anon_sym_CG_EXTERN] = ACTIONS(5590), + [anon_sym_CG_INLINE] = ACTIONS(5590), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5590), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5590), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5590), + [anon_sym_IBOutlet] = ACTIONS(5590), + [anon_sym_IBInspectable] = ACTIONS(5590), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5590), + [anon_sym_NS_INLINE] = ACTIONS(5590), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5590), + [anon_sym_OBJC_EXPORT] = ACTIONS(5590), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5590), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5590), + [anon_sym_const] = ACTIONS(5590), + [anon_sym_constexpr] = ACTIONS(5590), + [anon_sym_volatile] = ACTIONS(5590), + [anon_sym_restrict] = ACTIONS(5590), + [anon_sym___restrict__] = ACTIONS(5590), + [anon_sym__Atomic] = ACTIONS(5590), + [anon_sym__Noreturn] = ACTIONS(5590), + [anon_sym__Nonnull] = ACTIONS(5590), + [anon_sym_nullable] = ACTIONS(5590), + [anon_sym__Complex] = ACTIONS(5590), + [anon_sym__Nullable] = ACTIONS(5590), + [anon_sym__Nullable_result] = ACTIONS(5590), + [anon_sym__Null_unspecified] = ACTIONS(5590), + [anon_sym___autoreleasing] = ACTIONS(5590), + [anon_sym___block] = ACTIONS(5590), + [anon_sym___bridge] = ACTIONS(5590), + [anon_sym___bridge_retained] = ACTIONS(5590), + [anon_sym___bridge_transfer] = ACTIONS(5590), + [anon_sym___complex] = ACTIONS(5590), + [anon_sym___const] = ACTIONS(5590), + [anon_sym___imag] = ACTIONS(5590), + [anon_sym___kindof] = ACTIONS(5590), + [anon_sym___nonnull] = ACTIONS(5590), + [anon_sym___nullable] = ACTIONS(5590), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5590), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5590), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5590), + [anon_sym___real] = ACTIONS(5590), + [anon_sym___strong] = ACTIONS(5590), + [anon_sym___unsafe_unretained] = ACTIONS(5590), + [anon_sym___unused] = ACTIONS(5590), + [anon_sym___weak] = ACTIONS(5590), + [anon_sym_alignas] = ACTIONS(5590), + [anon_sym__Alignas] = ACTIONS(5590), + [sym_primitive_type] = ACTIONS(5590), + [anon_sym_enum] = ACTIONS(5590), + [anon_sym_struct] = ACTIONS(5590), + [anon_sym_union] = ACTIONS(5590), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5590), + [anon_sym___typeof] = ACTIONS(5590), + [anon_sym_typeof] = ACTIONS(5590), + [aux_sym_preproc_undef_token1] = ACTIONS(5590), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5590), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5590), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5590), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5590), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5590), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5590), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5590), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5590), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5590), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5590), + [anon_sym_NS_AVAILABLE] = ACTIONS(5590), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5590), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5590), + [anon_sym_API_AVAILABLE] = ACTIONS(5590), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5590), + [anon_sym_API_DEPRECATED] = ACTIONS(5590), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5590), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5590), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5590), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5590), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5590), + [anon_sym___deprecated_msg] = ACTIONS(5590), + [anon_sym___deprecated_enum_msg] = ACTIONS(5590), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5590), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5590), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5590), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5590), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5590), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5590), + [anon_sym_ATend] = ACTIONS(3749), + [anon_sym_AToptional] = ACTIONS(3749), + [anon_sym_ATrequired] = ACTIONS(3749), + [anon_sym_ATproperty] = ACTIONS(3749), + [anon_sym_BOOL] = ACTIONS(5590), + [anon_sym_IMP] = ACTIONS(5590), + [anon_sym_SEL] = ACTIONS(5590), + [anon_sym_Class] = ACTIONS(5590), + [anon_sym_id] = ACTIONS(5590), + }, + [2344] = { + [sym_identifier] = ACTIONS(5304), + [aux_sym_preproc_def_token1] = ACTIONS(5304), + [aux_sym_preproc_if_token1] = ACTIONS(5304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5304), + [sym_preproc_directive] = ACTIONS(5304), + [anon_sym_DASH] = ACTIONS(5306), + [anon_sym_PLUS] = ACTIONS(5306), + [anon_sym_SEMI] = ACTIONS(5592), + [anon_sym___extension__] = ACTIONS(5304), + [anon_sym_typedef] = ACTIONS(5304), + [anon_sym_extern] = ACTIONS(5304), + [anon_sym___attribute__] = ACTIONS(5304), + [anon_sym___attribute] = ACTIONS(5304), + [anon_sym_noreturn] = ACTIONS(5304), + [anon_sym_LBRACK] = ACTIONS(5306), + [anon_sym___declspec] = ACTIONS(5304), + [anon_sym___cdecl] = ACTIONS(5304), + [anon_sym___clrcall] = ACTIONS(5304), + [anon_sym___stdcall] = ACTIONS(5304), + [anon_sym___fastcall] = ACTIONS(5304), + [anon_sym___thiscall] = ACTIONS(5304), + [anon_sym___vectorcall] = ACTIONS(5304), + [anon_sym_signed] = ACTIONS(5304), + [anon_sym_unsigned] = ACTIONS(5304), + [anon_sym_long] = ACTIONS(5304), + [anon_sym_short] = ACTIONS(5304), + [anon_sym_static] = ACTIONS(5304), + [anon_sym_auto] = ACTIONS(5304), + [anon_sym_register] = ACTIONS(5304), + [anon_sym_inline] = ACTIONS(5304), + [anon_sym___inline] = ACTIONS(5304), + [anon_sym___inline__] = ACTIONS(5304), + [anon_sym___forceinline] = ACTIONS(5304), + [anon_sym_thread_local] = ACTIONS(5304), + [anon_sym___thread] = ACTIONS(5304), + [anon_sym_CG_EXTERN] = ACTIONS(5304), + [anon_sym_CG_INLINE] = ACTIONS(5304), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5304), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5304), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5304), + [anon_sym_IBOutlet] = ACTIONS(5304), + [anon_sym_IBInspectable] = ACTIONS(5304), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5304), + [anon_sym_NS_INLINE] = ACTIONS(5304), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5304), + [anon_sym_OBJC_EXPORT] = ACTIONS(5304), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5304), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5304), + [anon_sym_const] = ACTIONS(5304), + [anon_sym_constexpr] = ACTIONS(5304), + [anon_sym_volatile] = ACTIONS(5304), + [anon_sym_restrict] = ACTIONS(5304), + [anon_sym___restrict__] = ACTIONS(5304), + [anon_sym__Atomic] = ACTIONS(5304), + [anon_sym__Noreturn] = ACTIONS(5304), + [anon_sym__Nonnull] = ACTIONS(5304), + [anon_sym_nullable] = ACTIONS(5304), + [anon_sym__Complex] = ACTIONS(5304), + [anon_sym__Nullable] = ACTIONS(5304), + [anon_sym__Nullable_result] = ACTIONS(5304), + [anon_sym__Null_unspecified] = ACTIONS(5304), + [anon_sym___autoreleasing] = ACTIONS(5304), + [anon_sym___block] = ACTIONS(5304), + [anon_sym___bridge] = ACTIONS(5304), + [anon_sym___bridge_retained] = ACTIONS(5304), + [anon_sym___bridge_transfer] = ACTIONS(5304), + [anon_sym___complex] = ACTIONS(5304), + [anon_sym___const] = ACTIONS(5304), + [anon_sym___imag] = ACTIONS(5304), + [anon_sym___kindof] = ACTIONS(5304), + [anon_sym___nonnull] = ACTIONS(5304), + [anon_sym___nullable] = ACTIONS(5304), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5304), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5304), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5304), + [anon_sym___real] = ACTIONS(5304), + [anon_sym___strong] = ACTIONS(5304), + [anon_sym___unsafe_unretained] = ACTIONS(5304), + [anon_sym___unused] = ACTIONS(5304), + [anon_sym___weak] = ACTIONS(5304), + [anon_sym_alignas] = ACTIONS(5304), + [anon_sym__Alignas] = ACTIONS(5304), + [sym_primitive_type] = ACTIONS(5304), + [anon_sym_enum] = ACTIONS(5304), + [anon_sym_struct] = ACTIONS(5304), + [anon_sym_union] = ACTIONS(5304), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5304), + [anon_sym___typeof] = ACTIONS(5304), + [anon_sym_typeof] = ACTIONS(5304), + [aux_sym_preproc_undef_token1] = ACTIONS(5304), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5304), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5304), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5304), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5304), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5304), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5304), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5304), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5304), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5304), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5304), + [anon_sym_NS_AVAILABLE] = ACTIONS(5304), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5304), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5304), + [anon_sym_API_AVAILABLE] = ACTIONS(5304), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5304), + [anon_sym_API_DEPRECATED] = ACTIONS(5304), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5304), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5304), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5304), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5304), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5304), + [anon_sym___deprecated_msg] = ACTIONS(5304), + [anon_sym___deprecated_enum_msg] = ACTIONS(5304), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5304), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5304), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5304), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5304), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5304), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5304), + [anon_sym_ATend] = ACTIONS(5306), + [anon_sym_ATsynthesize] = ACTIONS(5306), + [anon_sym_ATdynamic] = ACTIONS(5306), + [anon_sym_BOOL] = ACTIONS(5304), + [anon_sym_IMP] = ACTIONS(5304), + [anon_sym_SEL] = ACTIONS(5304), + [anon_sym_Class] = ACTIONS(5304), + [anon_sym_id] = ACTIONS(5304), + }, + [2345] = { + [sym_identifier] = ACTIONS(5383), + [aux_sym_preproc_def_token1] = ACTIONS(5383), + [aux_sym_preproc_if_token1] = ACTIONS(5383), + [aux_sym_preproc_if_token2] = ACTIONS(5383), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5383), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5383), + [sym_preproc_directive] = ACTIONS(5383), + [anon_sym_DASH] = ACTIONS(5385), + [anon_sym_PLUS] = ACTIONS(5385), + [anon_sym_SEMI] = ACTIONS(5594), + [anon_sym___extension__] = ACTIONS(5383), + [anon_sym_typedef] = ACTIONS(5383), + [anon_sym_extern] = ACTIONS(5383), + [anon_sym___attribute__] = ACTIONS(5383), + [anon_sym___attribute] = ACTIONS(5383), + [anon_sym_noreturn] = ACTIONS(5383), + [anon_sym_LBRACK] = ACTIONS(5385), + [anon_sym___declspec] = ACTIONS(5383), + [anon_sym___cdecl] = ACTIONS(5383), + [anon_sym___clrcall] = ACTIONS(5383), + [anon_sym___stdcall] = ACTIONS(5383), + [anon_sym___fastcall] = ACTIONS(5383), + [anon_sym___thiscall] = ACTIONS(5383), + [anon_sym___vectorcall] = ACTIONS(5383), + [anon_sym_signed] = ACTIONS(5383), + [anon_sym_unsigned] = ACTIONS(5383), + [anon_sym_long] = ACTIONS(5383), + [anon_sym_short] = ACTIONS(5383), + [anon_sym_static] = ACTIONS(5383), + [anon_sym_auto] = ACTIONS(5383), + [anon_sym_register] = ACTIONS(5383), + [anon_sym_inline] = ACTIONS(5383), + [anon_sym___inline] = ACTIONS(5383), + [anon_sym___inline__] = ACTIONS(5383), + [anon_sym___forceinline] = ACTIONS(5383), + [anon_sym_thread_local] = ACTIONS(5383), + [anon_sym___thread] = ACTIONS(5383), + [anon_sym_CG_EXTERN] = ACTIONS(5383), + [anon_sym_CG_INLINE] = ACTIONS(5383), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5383), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5383), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5383), + [anon_sym_IBOutlet] = ACTIONS(5383), + [anon_sym_IBInspectable] = ACTIONS(5383), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5383), + [anon_sym_NS_INLINE] = ACTIONS(5383), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5383), + [anon_sym_OBJC_EXPORT] = ACTIONS(5383), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5383), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5383), + [anon_sym_const] = ACTIONS(5383), + [anon_sym_constexpr] = ACTIONS(5383), + [anon_sym_volatile] = ACTIONS(5383), + [anon_sym_restrict] = ACTIONS(5383), + [anon_sym___restrict__] = ACTIONS(5383), + [anon_sym__Atomic] = ACTIONS(5383), + [anon_sym__Noreturn] = ACTIONS(5383), + [anon_sym__Nonnull] = ACTIONS(5383), + [anon_sym_nullable] = ACTIONS(5383), + [anon_sym__Complex] = ACTIONS(5383), + [anon_sym__Nullable] = ACTIONS(5383), + [anon_sym__Nullable_result] = ACTIONS(5383), + [anon_sym__Null_unspecified] = ACTIONS(5383), + [anon_sym___autoreleasing] = ACTIONS(5383), + [anon_sym___block] = ACTIONS(5383), + [anon_sym___bridge] = ACTIONS(5383), + [anon_sym___bridge_retained] = ACTIONS(5383), + [anon_sym___bridge_transfer] = ACTIONS(5383), + [anon_sym___complex] = ACTIONS(5383), + [anon_sym___const] = ACTIONS(5383), + [anon_sym___imag] = ACTIONS(5383), + [anon_sym___kindof] = ACTIONS(5383), + [anon_sym___nonnull] = ACTIONS(5383), + [anon_sym___nullable] = ACTIONS(5383), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5383), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5383), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5383), + [anon_sym___real] = ACTIONS(5383), + [anon_sym___strong] = ACTIONS(5383), + [anon_sym___unsafe_unretained] = ACTIONS(5383), + [anon_sym___unused] = ACTIONS(5383), + [anon_sym___weak] = ACTIONS(5383), + [anon_sym_alignas] = ACTIONS(5383), + [anon_sym__Alignas] = ACTIONS(5383), + [sym_primitive_type] = ACTIONS(5383), + [anon_sym_enum] = ACTIONS(5383), + [anon_sym_struct] = ACTIONS(5383), + [anon_sym_union] = ACTIONS(5383), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5383), + [anon_sym___typeof] = ACTIONS(5383), + [anon_sym_typeof] = ACTIONS(5383), + [aux_sym_preproc_undef_token1] = ACTIONS(5383), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5383), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5383), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5383), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5383), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5383), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5383), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5383), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5383), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5383), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5383), + [anon_sym_NS_AVAILABLE] = ACTIONS(5383), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5383), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5383), + [anon_sym_API_AVAILABLE] = ACTIONS(5383), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5383), + [anon_sym_API_DEPRECATED] = ACTIONS(5383), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5383), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5383), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5383), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5383), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5383), + [anon_sym___deprecated_msg] = ACTIONS(5383), + [anon_sym___deprecated_enum_msg] = ACTIONS(5383), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5383), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5383), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5383), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5383), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5383), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5383), + [anon_sym_ATsynthesize] = ACTIONS(5385), + [anon_sym_ATdynamic] = ACTIONS(5385), + [anon_sym_BOOL] = ACTIONS(5383), + [anon_sym_IMP] = ACTIONS(5383), + [anon_sym_SEL] = ACTIONS(5383), + [anon_sym_Class] = ACTIONS(5383), + [anon_sym_id] = ACTIONS(5383), + }, + [2346] = { + [sym_identifier] = ACTIONS(5403), + [aux_sym_preproc_def_token1] = ACTIONS(5403), + [aux_sym_preproc_if_token1] = ACTIONS(5403), + [aux_sym_preproc_if_token2] = ACTIONS(5403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5403), + [sym_preproc_directive] = ACTIONS(5403), + [anon_sym_DASH] = ACTIONS(5405), + [anon_sym_PLUS] = ACTIONS(5405), + [anon_sym_SEMI] = ACTIONS(5596), + [anon_sym___extension__] = ACTIONS(5403), + [anon_sym_typedef] = ACTIONS(5403), + [anon_sym_extern] = ACTIONS(5403), + [anon_sym___attribute__] = ACTIONS(5403), + [anon_sym___attribute] = ACTIONS(5403), + [anon_sym_noreturn] = ACTIONS(5403), + [anon_sym_LBRACK] = ACTIONS(5405), + [anon_sym___declspec] = ACTIONS(5403), + [anon_sym___cdecl] = ACTIONS(5403), + [anon_sym___clrcall] = ACTIONS(5403), + [anon_sym___stdcall] = ACTIONS(5403), + [anon_sym___fastcall] = ACTIONS(5403), + [anon_sym___thiscall] = ACTIONS(5403), + [anon_sym___vectorcall] = ACTIONS(5403), + [anon_sym_signed] = ACTIONS(5403), + [anon_sym_unsigned] = ACTIONS(5403), + [anon_sym_long] = ACTIONS(5403), + [anon_sym_short] = ACTIONS(5403), + [anon_sym_static] = ACTIONS(5403), + [anon_sym_auto] = ACTIONS(5403), + [anon_sym_register] = ACTIONS(5403), + [anon_sym_inline] = ACTIONS(5403), + [anon_sym___inline] = ACTIONS(5403), + [anon_sym___inline__] = ACTIONS(5403), + [anon_sym___forceinline] = ACTIONS(5403), + [anon_sym_thread_local] = ACTIONS(5403), + [anon_sym___thread] = ACTIONS(5403), + [anon_sym_CG_EXTERN] = ACTIONS(5403), + [anon_sym_CG_INLINE] = ACTIONS(5403), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5403), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5403), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5403), + [anon_sym_IBOutlet] = ACTIONS(5403), + [anon_sym_IBInspectable] = ACTIONS(5403), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5403), + [anon_sym_NS_INLINE] = ACTIONS(5403), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5403), + [anon_sym_OBJC_EXPORT] = ACTIONS(5403), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5403), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5403), + [anon_sym_const] = ACTIONS(5403), + [anon_sym_constexpr] = ACTIONS(5403), + [anon_sym_volatile] = ACTIONS(5403), + [anon_sym_restrict] = ACTIONS(5403), + [anon_sym___restrict__] = ACTIONS(5403), + [anon_sym__Atomic] = ACTIONS(5403), + [anon_sym__Noreturn] = ACTIONS(5403), + [anon_sym__Nonnull] = ACTIONS(5403), + [anon_sym_nullable] = ACTIONS(5403), + [anon_sym__Complex] = ACTIONS(5403), + [anon_sym__Nullable] = ACTIONS(5403), + [anon_sym__Nullable_result] = ACTIONS(5403), + [anon_sym__Null_unspecified] = ACTIONS(5403), + [anon_sym___autoreleasing] = ACTIONS(5403), + [anon_sym___block] = ACTIONS(5403), + [anon_sym___bridge] = ACTIONS(5403), + [anon_sym___bridge_retained] = ACTIONS(5403), + [anon_sym___bridge_transfer] = ACTIONS(5403), + [anon_sym___complex] = ACTIONS(5403), + [anon_sym___const] = ACTIONS(5403), + [anon_sym___imag] = ACTIONS(5403), + [anon_sym___kindof] = ACTIONS(5403), + [anon_sym___nonnull] = ACTIONS(5403), + [anon_sym___nullable] = ACTIONS(5403), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5403), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5403), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5403), + [anon_sym___real] = ACTIONS(5403), + [anon_sym___strong] = ACTIONS(5403), + [anon_sym___unsafe_unretained] = ACTIONS(5403), + [anon_sym___unused] = ACTIONS(5403), + [anon_sym___weak] = ACTIONS(5403), + [anon_sym_alignas] = ACTIONS(5403), + [anon_sym__Alignas] = ACTIONS(5403), + [sym_primitive_type] = ACTIONS(5403), + [anon_sym_enum] = ACTIONS(5403), + [anon_sym_struct] = ACTIONS(5403), + [anon_sym_union] = ACTIONS(5403), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5403), + [anon_sym___typeof] = ACTIONS(5403), + [anon_sym_typeof] = ACTIONS(5403), + [aux_sym_preproc_undef_token1] = ACTIONS(5403), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5403), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5403), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5403), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5403), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5403), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5403), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5403), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5403), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5403), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5403), + [anon_sym_NS_AVAILABLE] = ACTIONS(5403), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5403), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5403), + [anon_sym_API_AVAILABLE] = ACTIONS(5403), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5403), + [anon_sym_API_DEPRECATED] = ACTIONS(5403), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5403), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5403), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5403), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5403), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5403), + [anon_sym___deprecated_msg] = ACTIONS(5403), + [anon_sym___deprecated_enum_msg] = ACTIONS(5403), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5403), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5403), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5403), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5403), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5403), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5403), + [anon_sym_ATsynthesize] = ACTIONS(5405), + [anon_sym_ATdynamic] = ACTIONS(5405), + [anon_sym_BOOL] = ACTIONS(5403), + [anon_sym_IMP] = ACTIONS(5403), + [anon_sym_SEL] = ACTIONS(5403), + [anon_sym_Class] = ACTIONS(5403), + [anon_sym_id] = ACTIONS(5403), + }, + [2347] = { + [sym_identifier] = ACTIONS(5409), + [aux_sym_preproc_def_token1] = ACTIONS(5409), + [aux_sym_preproc_if_token1] = ACTIONS(5409), + [aux_sym_preproc_if_token2] = ACTIONS(5409), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5409), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5409), + [sym_preproc_directive] = ACTIONS(5409), + [anon_sym_DASH] = ACTIONS(5411), + [anon_sym_PLUS] = ACTIONS(5411), + [anon_sym_SEMI] = ACTIONS(5598), + [anon_sym___extension__] = ACTIONS(5409), + [anon_sym_typedef] = ACTIONS(5409), + [anon_sym_extern] = ACTIONS(5409), + [anon_sym___attribute__] = ACTIONS(5409), + [anon_sym___attribute] = ACTIONS(5409), + [anon_sym_noreturn] = ACTIONS(5409), + [anon_sym_LBRACK] = ACTIONS(5411), + [anon_sym___declspec] = ACTIONS(5409), + [anon_sym___cdecl] = ACTIONS(5409), + [anon_sym___clrcall] = ACTIONS(5409), + [anon_sym___stdcall] = ACTIONS(5409), + [anon_sym___fastcall] = ACTIONS(5409), + [anon_sym___thiscall] = ACTIONS(5409), + [anon_sym___vectorcall] = ACTIONS(5409), + [anon_sym_signed] = ACTIONS(5409), + [anon_sym_unsigned] = ACTIONS(5409), + [anon_sym_long] = ACTIONS(5409), + [anon_sym_short] = ACTIONS(5409), + [anon_sym_static] = ACTIONS(5409), + [anon_sym_auto] = ACTIONS(5409), + [anon_sym_register] = ACTIONS(5409), + [anon_sym_inline] = ACTIONS(5409), + [anon_sym___inline] = ACTIONS(5409), + [anon_sym___inline__] = ACTIONS(5409), + [anon_sym___forceinline] = ACTIONS(5409), + [anon_sym_thread_local] = ACTIONS(5409), + [anon_sym___thread] = ACTIONS(5409), + [anon_sym_CG_EXTERN] = ACTIONS(5409), + [anon_sym_CG_INLINE] = ACTIONS(5409), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5409), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5409), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5409), + [anon_sym_IBOutlet] = ACTIONS(5409), + [anon_sym_IBInspectable] = ACTIONS(5409), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5409), + [anon_sym_NS_INLINE] = ACTIONS(5409), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5409), + [anon_sym_OBJC_EXPORT] = ACTIONS(5409), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5409), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5409), + [anon_sym_const] = ACTIONS(5409), + [anon_sym_constexpr] = ACTIONS(5409), + [anon_sym_volatile] = ACTIONS(5409), + [anon_sym_restrict] = ACTIONS(5409), + [anon_sym___restrict__] = ACTIONS(5409), + [anon_sym__Atomic] = ACTIONS(5409), + [anon_sym__Noreturn] = ACTIONS(5409), + [anon_sym__Nonnull] = ACTIONS(5409), + [anon_sym_nullable] = ACTIONS(5409), + [anon_sym__Complex] = ACTIONS(5409), + [anon_sym__Nullable] = ACTIONS(5409), + [anon_sym__Nullable_result] = ACTIONS(5409), + [anon_sym__Null_unspecified] = ACTIONS(5409), + [anon_sym___autoreleasing] = ACTIONS(5409), + [anon_sym___block] = ACTIONS(5409), + [anon_sym___bridge] = ACTIONS(5409), + [anon_sym___bridge_retained] = ACTIONS(5409), + [anon_sym___bridge_transfer] = ACTIONS(5409), + [anon_sym___complex] = ACTIONS(5409), + [anon_sym___const] = ACTIONS(5409), + [anon_sym___imag] = ACTIONS(5409), + [anon_sym___kindof] = ACTIONS(5409), + [anon_sym___nonnull] = ACTIONS(5409), + [anon_sym___nullable] = ACTIONS(5409), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5409), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5409), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5409), + [anon_sym___real] = ACTIONS(5409), + [anon_sym___strong] = ACTIONS(5409), + [anon_sym___unsafe_unretained] = ACTIONS(5409), + [anon_sym___unused] = ACTIONS(5409), + [anon_sym___weak] = ACTIONS(5409), + [anon_sym_alignas] = ACTIONS(5409), + [anon_sym__Alignas] = ACTIONS(5409), + [sym_primitive_type] = ACTIONS(5409), + [anon_sym_enum] = ACTIONS(5409), + [anon_sym_struct] = ACTIONS(5409), + [anon_sym_union] = ACTIONS(5409), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5409), + [anon_sym___typeof] = ACTIONS(5409), + [anon_sym_typeof] = ACTIONS(5409), + [aux_sym_preproc_undef_token1] = ACTIONS(5409), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5409), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5409), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5409), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5409), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5409), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5409), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5409), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5409), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5409), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5409), + [anon_sym_NS_AVAILABLE] = ACTIONS(5409), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5409), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5409), + [anon_sym_API_AVAILABLE] = ACTIONS(5409), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5409), + [anon_sym_API_DEPRECATED] = ACTIONS(5409), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5409), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5409), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5409), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5409), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5409), + [anon_sym___deprecated_msg] = ACTIONS(5409), + [anon_sym___deprecated_enum_msg] = ACTIONS(5409), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5409), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5409), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5409), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5409), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5409), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5409), + [anon_sym_ATsynthesize] = ACTIONS(5411), + [anon_sym_ATdynamic] = ACTIONS(5411), + [anon_sym_BOOL] = ACTIONS(5409), + [anon_sym_IMP] = ACTIONS(5409), + [anon_sym_SEL] = ACTIONS(5409), + [anon_sym_Class] = ACTIONS(5409), + [anon_sym_id] = ACTIONS(5409), + }, + [2348] = { + [sym_identifier] = ACTIONS(5367), + [aux_sym_preproc_def_token1] = ACTIONS(5367), + [aux_sym_preproc_if_token1] = ACTIONS(5367), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5367), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5367), + [sym_preproc_directive] = ACTIONS(5367), + [anon_sym_DASH] = ACTIONS(5369), + [anon_sym_PLUS] = ACTIONS(5369), + [anon_sym_SEMI] = ACTIONS(5600), + [anon_sym___extension__] = ACTIONS(5367), + [anon_sym_typedef] = ACTIONS(5367), + [anon_sym_extern] = ACTIONS(5367), + [anon_sym___attribute__] = ACTIONS(5367), + [anon_sym___attribute] = ACTIONS(5367), + [anon_sym_noreturn] = ACTIONS(5367), + [anon_sym_LBRACK] = ACTIONS(5369), + [anon_sym___declspec] = ACTIONS(5367), + [anon_sym___cdecl] = ACTIONS(5367), + [anon_sym___clrcall] = ACTIONS(5367), + [anon_sym___stdcall] = ACTIONS(5367), + [anon_sym___fastcall] = ACTIONS(5367), + [anon_sym___thiscall] = ACTIONS(5367), + [anon_sym___vectorcall] = ACTIONS(5367), + [anon_sym_signed] = ACTIONS(5367), + [anon_sym_unsigned] = ACTIONS(5367), + [anon_sym_long] = ACTIONS(5367), + [anon_sym_short] = ACTIONS(5367), + [anon_sym_static] = ACTIONS(5367), + [anon_sym_auto] = ACTIONS(5367), + [anon_sym_register] = ACTIONS(5367), + [anon_sym_inline] = ACTIONS(5367), + [anon_sym___inline] = ACTIONS(5367), + [anon_sym___inline__] = ACTIONS(5367), + [anon_sym___forceinline] = ACTIONS(5367), + [anon_sym_thread_local] = ACTIONS(5367), + [anon_sym___thread] = ACTIONS(5367), + [anon_sym_CG_EXTERN] = ACTIONS(5367), + [anon_sym_CG_INLINE] = ACTIONS(5367), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5367), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5367), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5367), + [anon_sym_IBOutlet] = ACTIONS(5367), + [anon_sym_IBInspectable] = ACTIONS(5367), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5367), + [anon_sym_NS_INLINE] = ACTIONS(5367), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5367), + [anon_sym_OBJC_EXPORT] = ACTIONS(5367), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5367), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5367), + [anon_sym_const] = ACTIONS(5367), + [anon_sym_constexpr] = ACTIONS(5367), + [anon_sym_volatile] = ACTIONS(5367), + [anon_sym_restrict] = ACTIONS(5367), + [anon_sym___restrict__] = ACTIONS(5367), + [anon_sym__Atomic] = ACTIONS(5367), + [anon_sym__Noreturn] = ACTIONS(5367), + [anon_sym__Nonnull] = ACTIONS(5367), + [anon_sym_nullable] = ACTIONS(5367), + [anon_sym__Complex] = ACTIONS(5367), + [anon_sym__Nullable] = ACTIONS(5367), + [anon_sym__Nullable_result] = ACTIONS(5367), + [anon_sym__Null_unspecified] = ACTIONS(5367), + [anon_sym___autoreleasing] = ACTIONS(5367), + [anon_sym___block] = ACTIONS(5367), + [anon_sym___bridge] = ACTIONS(5367), + [anon_sym___bridge_retained] = ACTIONS(5367), + [anon_sym___bridge_transfer] = ACTIONS(5367), + [anon_sym___complex] = ACTIONS(5367), + [anon_sym___const] = ACTIONS(5367), + [anon_sym___imag] = ACTIONS(5367), + [anon_sym___kindof] = ACTIONS(5367), + [anon_sym___nonnull] = ACTIONS(5367), + [anon_sym___nullable] = ACTIONS(5367), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5367), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5367), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5367), + [anon_sym___real] = ACTIONS(5367), + [anon_sym___strong] = ACTIONS(5367), + [anon_sym___unsafe_unretained] = ACTIONS(5367), + [anon_sym___unused] = ACTIONS(5367), + [anon_sym___weak] = ACTIONS(5367), + [anon_sym_alignas] = ACTIONS(5367), + [anon_sym__Alignas] = ACTIONS(5367), + [sym_primitive_type] = ACTIONS(5367), + [anon_sym_enum] = ACTIONS(5367), + [anon_sym_struct] = ACTIONS(5367), + [anon_sym_union] = ACTIONS(5367), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5367), + [anon_sym___typeof] = ACTIONS(5367), + [anon_sym_typeof] = ACTIONS(5367), + [aux_sym_preproc_undef_token1] = ACTIONS(5367), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5367), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5367), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5367), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5367), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5367), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5367), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5367), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5367), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5367), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5367), + [anon_sym_NS_AVAILABLE] = ACTIONS(5367), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5367), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5367), + [anon_sym_API_AVAILABLE] = ACTIONS(5367), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5367), + [anon_sym_API_DEPRECATED] = ACTIONS(5367), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5367), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5367), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5367), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5367), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5367), + [anon_sym___deprecated_msg] = ACTIONS(5367), + [anon_sym___deprecated_enum_msg] = ACTIONS(5367), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5367), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5367), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5367), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5367), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5367), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5367), + [anon_sym_ATend] = ACTIONS(5369), + [anon_sym_ATsynthesize] = ACTIONS(5369), + [anon_sym_ATdynamic] = ACTIONS(5369), + [anon_sym_BOOL] = ACTIONS(5367), + [anon_sym_IMP] = ACTIONS(5367), + [anon_sym_SEL] = ACTIONS(5367), + [anon_sym_Class] = ACTIONS(5367), + [anon_sym_id] = ACTIONS(5367), + }, + [2349] = { + [aux_sym_method_declaration_repeat2] = STATE(2269), + [sym_identifier] = ACTIONS(5353), + [aux_sym_preproc_def_token1] = ACTIONS(5353), + [aux_sym_preproc_if_token1] = ACTIONS(5353), + [aux_sym_preproc_if_token2] = ACTIONS(5353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5353), + [sym_preproc_directive] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(5355), + [anon_sym_PLUS] = ACTIONS(5355), + [anon_sym_SEMI] = ACTIONS(5477), + [anon_sym___extension__] = ACTIONS(5353), + [anon_sym_typedef] = ACTIONS(5353), + [anon_sym_extern] = ACTIONS(5353), + [anon_sym___attribute__] = ACTIONS(5353), + [anon_sym___attribute] = ACTIONS(5353), + [anon_sym_noreturn] = ACTIONS(5353), + [anon_sym_LBRACK] = ACTIONS(5355), + [anon_sym___declspec] = ACTIONS(5353), + [anon_sym___cdecl] = ACTIONS(5353), + [anon_sym___clrcall] = ACTIONS(5353), + [anon_sym___stdcall] = ACTIONS(5353), + [anon_sym___fastcall] = ACTIONS(5353), + [anon_sym___thiscall] = ACTIONS(5353), + [anon_sym___vectorcall] = ACTIONS(5353), + [anon_sym_signed] = ACTIONS(5353), + [anon_sym_unsigned] = ACTIONS(5353), + [anon_sym_long] = ACTIONS(5353), + [anon_sym_short] = ACTIONS(5353), + [anon_sym_static] = ACTIONS(5353), + [anon_sym_auto] = ACTIONS(5353), + [anon_sym_register] = ACTIONS(5353), + [anon_sym_inline] = ACTIONS(5353), + [anon_sym___inline] = ACTIONS(5353), + [anon_sym___inline__] = ACTIONS(5353), + [anon_sym___forceinline] = ACTIONS(5353), + [anon_sym_thread_local] = ACTIONS(5353), + [anon_sym___thread] = ACTIONS(5353), + [anon_sym_CG_EXTERN] = ACTIONS(5353), + [anon_sym_CG_INLINE] = ACTIONS(5353), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5353), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5353), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5353), + [anon_sym_IBOutlet] = ACTIONS(5353), + [anon_sym_IBInspectable] = ACTIONS(5353), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5353), + [anon_sym_NS_INLINE] = ACTIONS(5353), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5353), + [anon_sym_OBJC_EXPORT] = ACTIONS(5353), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5353), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5353), + [anon_sym_const] = ACTIONS(5353), + [anon_sym_constexpr] = ACTIONS(5353), + [anon_sym_volatile] = ACTIONS(5353), + [anon_sym_restrict] = ACTIONS(5353), + [anon_sym___restrict__] = ACTIONS(5353), + [anon_sym__Atomic] = ACTIONS(5353), + [anon_sym__Noreturn] = ACTIONS(5353), + [anon_sym__Nonnull] = ACTIONS(5353), + [anon_sym_nullable] = ACTIONS(5353), + [anon_sym__Complex] = ACTIONS(5353), + [anon_sym__Nullable] = ACTIONS(5353), + [anon_sym__Nullable_result] = ACTIONS(5353), + [anon_sym__Null_unspecified] = ACTIONS(5353), + [anon_sym___autoreleasing] = ACTIONS(5353), + [anon_sym___block] = ACTIONS(5353), + [anon_sym___bridge] = ACTIONS(5353), + [anon_sym___bridge_retained] = ACTIONS(5353), + [anon_sym___bridge_transfer] = ACTIONS(5353), + [anon_sym___complex] = ACTIONS(5353), + [anon_sym___const] = ACTIONS(5353), + [anon_sym___imag] = ACTIONS(5353), + [anon_sym___kindof] = ACTIONS(5353), + [anon_sym___nonnull] = ACTIONS(5353), + [anon_sym___nullable] = ACTIONS(5353), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5353), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5353), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5353), + [anon_sym___real] = ACTIONS(5353), + [anon_sym___strong] = ACTIONS(5353), + [anon_sym___unsafe_unretained] = ACTIONS(5353), + [anon_sym___unused] = ACTIONS(5353), + [anon_sym___weak] = ACTIONS(5353), + [anon_sym_alignas] = ACTIONS(5353), + [anon_sym__Alignas] = ACTIONS(5353), + [sym_primitive_type] = ACTIONS(5353), + [anon_sym_enum] = ACTIONS(5353), + [anon_sym_struct] = ACTIONS(5353), + [anon_sym_union] = ACTIONS(5353), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5353), + [anon_sym___typeof] = ACTIONS(5353), + [anon_sym_typeof] = ACTIONS(5353), + [aux_sym_preproc_undef_token1] = ACTIONS(5353), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5353), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5353), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5353), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5353), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5353), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5353), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5353), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5353), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5353), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5353), + [anon_sym_NS_AVAILABLE] = ACTIONS(5353), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5353), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5353), + [anon_sym_API_AVAILABLE] = ACTIONS(5353), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5353), + [anon_sym_API_DEPRECATED] = ACTIONS(5353), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5353), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5353), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5353), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5353), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5353), + [anon_sym___deprecated_msg] = ACTIONS(5353), + [anon_sym___deprecated_enum_msg] = ACTIONS(5353), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5353), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5353), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5353), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5353), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5353), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5353), + [anon_sym_ATproperty] = ACTIONS(5355), + [anon_sym_BOOL] = ACTIONS(5353), + [anon_sym_IMP] = ACTIONS(5353), + [anon_sym_SEL] = ACTIONS(5353), + [anon_sym_Class] = ACTIONS(5353), + [anon_sym_id] = ACTIONS(5353), + }, + [2350] = { + [sym_identifier] = ACTIONS(5487), + [aux_sym_preproc_def_token1] = ACTIONS(5487), + [aux_sym_preproc_if_token1] = ACTIONS(5487), + [aux_sym_preproc_if_token2] = ACTIONS(5487), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5487), + [aux_sym_preproc_else_token1] = ACTIONS(5487), + [aux_sym_preproc_elif_token1] = ACTIONS(5487), + [sym_preproc_directive] = ACTIONS(5487), + [anon_sym_DASH] = ACTIONS(5489), + [anon_sym_PLUS] = ACTIONS(5489), + [anon_sym___extension__] = ACTIONS(5487), + [anon_sym_typedef] = ACTIONS(5487), + [anon_sym_extern] = ACTIONS(5487), + [anon_sym___attribute__] = ACTIONS(5487), + [anon_sym___attribute] = ACTIONS(5487), + [anon_sym_noreturn] = ACTIONS(5487), + [anon_sym_LBRACK] = ACTIONS(5489), + [anon_sym___declspec] = ACTIONS(5487), + [anon_sym___cdecl] = ACTIONS(5487), + [anon_sym___clrcall] = ACTIONS(5487), + [anon_sym___stdcall] = ACTIONS(5487), + [anon_sym___fastcall] = ACTIONS(5487), + [anon_sym___thiscall] = ACTIONS(5487), + [anon_sym___vectorcall] = ACTIONS(5487), + [anon_sym_signed] = ACTIONS(5487), + [anon_sym_unsigned] = ACTIONS(5487), + [anon_sym_long] = ACTIONS(5487), + [anon_sym_short] = ACTIONS(5487), + [anon_sym_static] = ACTIONS(5487), + [anon_sym_auto] = ACTIONS(5487), + [anon_sym_register] = ACTIONS(5487), + [anon_sym_inline] = ACTIONS(5487), + [anon_sym___inline] = ACTIONS(5487), + [anon_sym___inline__] = ACTIONS(5487), + [anon_sym___forceinline] = ACTIONS(5487), + [anon_sym_thread_local] = ACTIONS(5487), + [anon_sym___thread] = ACTIONS(5487), + [anon_sym_CG_EXTERN] = ACTIONS(5487), + [anon_sym_CG_INLINE] = ACTIONS(5487), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5487), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5487), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5487), + [anon_sym_IBOutlet] = ACTIONS(5487), + [anon_sym_IBInspectable] = ACTIONS(5487), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5487), + [anon_sym_NS_INLINE] = ACTIONS(5487), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5487), + [anon_sym_OBJC_EXPORT] = ACTIONS(5487), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5487), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5487), + [anon_sym_const] = ACTIONS(5487), + [anon_sym_constexpr] = ACTIONS(5487), + [anon_sym_volatile] = ACTIONS(5487), + [anon_sym_restrict] = ACTIONS(5487), + [anon_sym___restrict__] = ACTIONS(5487), + [anon_sym__Atomic] = ACTIONS(5487), + [anon_sym__Noreturn] = ACTIONS(5487), + [anon_sym__Nonnull] = ACTIONS(5487), + [anon_sym_nullable] = ACTIONS(5487), + [anon_sym__Complex] = ACTIONS(5487), + [anon_sym__Nullable] = ACTIONS(5487), + [anon_sym__Nullable_result] = ACTIONS(5487), + [anon_sym__Null_unspecified] = ACTIONS(5487), + [anon_sym___autoreleasing] = ACTIONS(5487), + [anon_sym___block] = ACTIONS(5487), + [anon_sym___bridge] = ACTIONS(5487), + [anon_sym___bridge_retained] = ACTIONS(5487), + [anon_sym___bridge_transfer] = ACTIONS(5487), + [anon_sym___complex] = ACTIONS(5487), + [anon_sym___const] = ACTIONS(5487), + [anon_sym___imag] = ACTIONS(5487), + [anon_sym___kindof] = ACTIONS(5487), + [anon_sym___nonnull] = ACTIONS(5487), + [anon_sym___nullable] = ACTIONS(5487), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5487), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5487), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5487), + [anon_sym___real] = ACTIONS(5487), + [anon_sym___strong] = ACTIONS(5487), + [anon_sym___unsafe_unretained] = ACTIONS(5487), + [anon_sym___unused] = ACTIONS(5487), + [anon_sym___weak] = ACTIONS(5487), + [anon_sym_alignas] = ACTIONS(5487), + [anon_sym__Alignas] = ACTIONS(5487), + [sym_primitive_type] = ACTIONS(5487), + [anon_sym_enum] = ACTIONS(5487), + [anon_sym_struct] = ACTIONS(5487), + [anon_sym_union] = ACTIONS(5487), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5487), + [anon_sym___typeof] = ACTIONS(5487), + [anon_sym_typeof] = ACTIONS(5487), + [aux_sym_preproc_undef_token1] = ACTIONS(5487), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5487), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5487), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5487), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5487), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5487), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5487), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5487), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5487), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5487), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5487), + [anon_sym_NS_AVAILABLE] = ACTIONS(5487), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5487), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5487), + [anon_sym_API_AVAILABLE] = ACTIONS(5487), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5487), + [anon_sym_API_DEPRECATED] = ACTIONS(5487), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5487), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5487), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5487), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5487), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5487), + [anon_sym___deprecated_msg] = ACTIONS(5487), + [anon_sym___deprecated_enum_msg] = ACTIONS(5487), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5487), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5487), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5487), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5487), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5487), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5487), + [anon_sym_ATproperty] = ACTIONS(5489), + [anon_sym_BOOL] = ACTIONS(5487), + [anon_sym_IMP] = ACTIONS(5487), + [anon_sym_SEL] = ACTIONS(5487), + [anon_sym_Class] = ACTIONS(5487), + [anon_sym_id] = ACTIONS(5487), + }, + [2351] = { + [sym_identifier] = ACTIONS(5403), + [aux_sym_preproc_def_token1] = ACTIONS(5403), + [aux_sym_preproc_if_token1] = ACTIONS(5403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5403), + [sym_preproc_directive] = ACTIONS(5403), + [anon_sym_DASH] = ACTIONS(5405), + [anon_sym_PLUS] = ACTIONS(5405), + [anon_sym_SEMI] = ACTIONS(5602), + [anon_sym___extension__] = ACTIONS(5403), + [anon_sym_typedef] = ACTIONS(5403), + [anon_sym_extern] = ACTIONS(5403), + [anon_sym___attribute__] = ACTIONS(5403), + [anon_sym___attribute] = ACTIONS(5403), + [anon_sym_noreturn] = ACTIONS(5403), + [anon_sym_LBRACK] = ACTIONS(5405), + [anon_sym___declspec] = ACTIONS(5403), + [anon_sym___cdecl] = ACTIONS(5403), + [anon_sym___clrcall] = ACTIONS(5403), + [anon_sym___stdcall] = ACTIONS(5403), + [anon_sym___fastcall] = ACTIONS(5403), + [anon_sym___thiscall] = ACTIONS(5403), + [anon_sym___vectorcall] = ACTIONS(5403), + [anon_sym_signed] = ACTIONS(5403), + [anon_sym_unsigned] = ACTIONS(5403), + [anon_sym_long] = ACTIONS(5403), + [anon_sym_short] = ACTIONS(5403), + [anon_sym_static] = ACTIONS(5403), + [anon_sym_auto] = ACTIONS(5403), + [anon_sym_register] = ACTIONS(5403), + [anon_sym_inline] = ACTIONS(5403), + [anon_sym___inline] = ACTIONS(5403), + [anon_sym___inline__] = ACTIONS(5403), + [anon_sym___forceinline] = ACTIONS(5403), + [anon_sym_thread_local] = ACTIONS(5403), + [anon_sym___thread] = ACTIONS(5403), + [anon_sym_CG_EXTERN] = ACTIONS(5403), + [anon_sym_CG_INLINE] = ACTIONS(5403), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5403), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5403), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5403), + [anon_sym_IBOutlet] = ACTIONS(5403), + [anon_sym_IBInspectable] = ACTIONS(5403), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5403), + [anon_sym_NS_INLINE] = ACTIONS(5403), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5403), + [anon_sym_OBJC_EXPORT] = ACTIONS(5403), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5403), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5403), + [anon_sym_const] = ACTIONS(5403), + [anon_sym_constexpr] = ACTIONS(5403), + [anon_sym_volatile] = ACTIONS(5403), + [anon_sym_restrict] = ACTIONS(5403), + [anon_sym___restrict__] = ACTIONS(5403), + [anon_sym__Atomic] = ACTIONS(5403), + [anon_sym__Noreturn] = ACTIONS(5403), + [anon_sym__Nonnull] = ACTIONS(5403), + [anon_sym_nullable] = ACTIONS(5403), + [anon_sym__Complex] = ACTIONS(5403), + [anon_sym__Nullable] = ACTIONS(5403), + [anon_sym__Nullable_result] = ACTIONS(5403), + [anon_sym__Null_unspecified] = ACTIONS(5403), + [anon_sym___autoreleasing] = ACTIONS(5403), + [anon_sym___block] = ACTIONS(5403), + [anon_sym___bridge] = ACTIONS(5403), + [anon_sym___bridge_retained] = ACTIONS(5403), + [anon_sym___bridge_transfer] = ACTIONS(5403), + [anon_sym___complex] = ACTIONS(5403), + [anon_sym___const] = ACTIONS(5403), + [anon_sym___imag] = ACTIONS(5403), + [anon_sym___kindof] = ACTIONS(5403), + [anon_sym___nonnull] = ACTIONS(5403), + [anon_sym___nullable] = ACTIONS(5403), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5403), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5403), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5403), + [anon_sym___real] = ACTIONS(5403), + [anon_sym___strong] = ACTIONS(5403), + [anon_sym___unsafe_unretained] = ACTIONS(5403), + [anon_sym___unused] = ACTIONS(5403), + [anon_sym___weak] = ACTIONS(5403), + [anon_sym_alignas] = ACTIONS(5403), + [anon_sym__Alignas] = ACTIONS(5403), + [sym_primitive_type] = ACTIONS(5403), + [anon_sym_enum] = ACTIONS(5403), + [anon_sym_struct] = ACTIONS(5403), + [anon_sym_union] = ACTIONS(5403), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5403), + [anon_sym___typeof] = ACTIONS(5403), + [anon_sym_typeof] = ACTIONS(5403), + [aux_sym_preproc_undef_token1] = ACTIONS(5403), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5403), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5403), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5403), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5403), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5403), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5403), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5403), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5403), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5403), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5403), + [anon_sym_NS_AVAILABLE] = ACTIONS(5403), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5403), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5403), + [anon_sym_API_AVAILABLE] = ACTIONS(5403), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5403), + [anon_sym_API_DEPRECATED] = ACTIONS(5403), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5403), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5403), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5403), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5403), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5403), + [anon_sym___deprecated_msg] = ACTIONS(5403), + [anon_sym___deprecated_enum_msg] = ACTIONS(5403), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5403), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5403), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5403), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5403), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5403), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5403), + [anon_sym_ATend] = ACTIONS(5405), + [anon_sym_ATsynthesize] = ACTIONS(5405), + [anon_sym_ATdynamic] = ACTIONS(5405), + [anon_sym_BOOL] = ACTIONS(5403), + [anon_sym_IMP] = ACTIONS(5403), + [anon_sym_SEL] = ACTIONS(5403), + [anon_sym_Class] = ACTIONS(5403), + [anon_sym_id] = ACTIONS(5403), + }, + [2352] = { + [sym_identifier] = ACTIONS(5425), + [aux_sym_preproc_def_token1] = ACTIONS(5425), + [aux_sym_preproc_if_token1] = ACTIONS(5425), + [aux_sym_preproc_if_token2] = ACTIONS(5425), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5425), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5425), + [sym_preproc_directive] = ACTIONS(5425), + [anon_sym_DASH] = ACTIONS(5427), + [anon_sym_PLUS] = ACTIONS(5427), + [anon_sym_SEMI] = ACTIONS(5604), + [anon_sym___extension__] = ACTIONS(5425), + [anon_sym_typedef] = ACTIONS(5425), + [anon_sym_extern] = ACTIONS(5425), + [anon_sym___attribute__] = ACTIONS(5425), + [anon_sym___attribute] = ACTIONS(5425), + [anon_sym_noreturn] = ACTIONS(5425), + [anon_sym_LBRACK] = ACTIONS(5427), + [anon_sym___declspec] = ACTIONS(5425), + [anon_sym___cdecl] = ACTIONS(5425), + [anon_sym___clrcall] = ACTIONS(5425), + [anon_sym___stdcall] = ACTIONS(5425), + [anon_sym___fastcall] = ACTIONS(5425), + [anon_sym___thiscall] = ACTIONS(5425), + [anon_sym___vectorcall] = ACTIONS(5425), + [anon_sym_signed] = ACTIONS(5425), + [anon_sym_unsigned] = ACTIONS(5425), + [anon_sym_long] = ACTIONS(5425), + [anon_sym_short] = ACTIONS(5425), + [anon_sym_static] = ACTIONS(5425), + [anon_sym_auto] = ACTIONS(5425), + [anon_sym_register] = ACTIONS(5425), + [anon_sym_inline] = ACTIONS(5425), + [anon_sym___inline] = ACTIONS(5425), + [anon_sym___inline__] = ACTIONS(5425), + [anon_sym___forceinline] = ACTIONS(5425), + [anon_sym_thread_local] = ACTIONS(5425), + [anon_sym___thread] = ACTIONS(5425), + [anon_sym_CG_EXTERN] = ACTIONS(5425), + [anon_sym_CG_INLINE] = ACTIONS(5425), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5425), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5425), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5425), + [anon_sym_IBOutlet] = ACTIONS(5425), + [anon_sym_IBInspectable] = ACTIONS(5425), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5425), + [anon_sym_NS_INLINE] = ACTIONS(5425), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5425), + [anon_sym_OBJC_EXPORT] = ACTIONS(5425), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5425), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5425), + [anon_sym_const] = ACTIONS(5425), + [anon_sym_constexpr] = ACTIONS(5425), + [anon_sym_volatile] = ACTIONS(5425), + [anon_sym_restrict] = ACTIONS(5425), + [anon_sym___restrict__] = ACTIONS(5425), + [anon_sym__Atomic] = ACTIONS(5425), + [anon_sym__Noreturn] = ACTIONS(5425), + [anon_sym__Nonnull] = ACTIONS(5425), + [anon_sym_nullable] = ACTIONS(5425), + [anon_sym__Complex] = ACTIONS(5425), + [anon_sym__Nullable] = ACTIONS(5425), + [anon_sym__Nullable_result] = ACTIONS(5425), + [anon_sym__Null_unspecified] = ACTIONS(5425), + [anon_sym___autoreleasing] = ACTIONS(5425), + [anon_sym___block] = ACTIONS(5425), + [anon_sym___bridge] = ACTIONS(5425), + [anon_sym___bridge_retained] = ACTIONS(5425), + [anon_sym___bridge_transfer] = ACTIONS(5425), + [anon_sym___complex] = ACTIONS(5425), + [anon_sym___const] = ACTIONS(5425), + [anon_sym___imag] = ACTIONS(5425), + [anon_sym___kindof] = ACTIONS(5425), + [anon_sym___nonnull] = ACTIONS(5425), + [anon_sym___nullable] = ACTIONS(5425), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5425), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5425), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5425), + [anon_sym___real] = ACTIONS(5425), + [anon_sym___strong] = ACTIONS(5425), + [anon_sym___unsafe_unretained] = ACTIONS(5425), + [anon_sym___unused] = ACTIONS(5425), + [anon_sym___weak] = ACTIONS(5425), + [anon_sym_alignas] = ACTIONS(5425), + [anon_sym__Alignas] = ACTIONS(5425), + [sym_primitive_type] = ACTIONS(5425), + [anon_sym_enum] = ACTIONS(5425), + [anon_sym_struct] = ACTIONS(5425), + [anon_sym_union] = ACTIONS(5425), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5425), + [anon_sym___typeof] = ACTIONS(5425), + [anon_sym_typeof] = ACTIONS(5425), + [aux_sym_preproc_undef_token1] = ACTIONS(5425), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5425), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5425), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5425), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5425), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5425), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5425), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5425), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5425), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5425), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5425), + [anon_sym_NS_AVAILABLE] = ACTIONS(5425), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5425), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5425), + [anon_sym_API_AVAILABLE] = ACTIONS(5425), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5425), + [anon_sym_API_DEPRECATED] = ACTIONS(5425), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5425), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5425), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5425), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5425), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5425), + [anon_sym___deprecated_msg] = ACTIONS(5425), + [anon_sym___deprecated_enum_msg] = ACTIONS(5425), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5425), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5425), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5425), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5425), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5425), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5425), + [anon_sym_ATsynthesize] = ACTIONS(5427), + [anon_sym_ATdynamic] = ACTIONS(5427), + [anon_sym_BOOL] = ACTIONS(5425), + [anon_sym_IMP] = ACTIONS(5425), + [anon_sym_SEL] = ACTIONS(5425), + [anon_sym_Class] = ACTIONS(5425), + [anon_sym_id] = ACTIONS(5425), + }, + [2353] = { + [sym_identifier] = ACTIONS(2668), + [aux_sym_preproc_def_token1] = ACTIONS(2668), + [aux_sym_preproc_if_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [sym_preproc_directive] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2670), + [anon_sym_PLUS] = ACTIONS(2670), + [anon_sym___extension__] = ACTIONS(2668), + [anon_sym_typedef] = ACTIONS(2668), + [anon_sym_extern] = ACTIONS(2668), + [anon_sym___attribute__] = ACTIONS(2668), + [anon_sym___attribute] = ACTIONS(2668), + [anon_sym_noreturn] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym___declspec] = ACTIONS(2668), + [anon_sym___cdecl] = ACTIONS(2668), + [anon_sym___clrcall] = ACTIONS(2668), + [anon_sym___stdcall] = ACTIONS(2668), + [anon_sym___fastcall] = ACTIONS(2668), + [anon_sym___thiscall] = ACTIONS(2668), + [anon_sym___vectorcall] = ACTIONS(2668), + [anon_sym_signed] = ACTIONS(2668), + [anon_sym_unsigned] = ACTIONS(2668), + [anon_sym_long] = ACTIONS(2668), + [anon_sym_short] = ACTIONS(2668), + [anon_sym_static] = ACTIONS(2668), + [anon_sym_auto] = ACTIONS(2668), + [anon_sym_register] = ACTIONS(2668), + [anon_sym_inline] = ACTIONS(2668), + [anon_sym___inline] = ACTIONS(2668), + [anon_sym___inline__] = ACTIONS(2668), + [anon_sym___forceinline] = ACTIONS(2668), + [anon_sym_thread_local] = ACTIONS(2668), + [anon_sym___thread] = ACTIONS(2668), + [anon_sym_CG_EXTERN] = ACTIONS(2668), + [anon_sym_CG_INLINE] = ACTIONS(2668), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2668), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2668), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2668), + [anon_sym_IBOutlet] = ACTIONS(2668), + [anon_sym_IBInspectable] = ACTIONS(2668), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2668), + [anon_sym_NS_INLINE] = ACTIONS(2668), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2668), + [anon_sym_OBJC_EXPORT] = ACTIONS(2668), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2668), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2668), + [anon_sym_const] = ACTIONS(2668), + [anon_sym_constexpr] = ACTIONS(2668), + [anon_sym_volatile] = ACTIONS(2668), + [anon_sym_restrict] = ACTIONS(2668), + [anon_sym___restrict__] = ACTIONS(2668), + [anon_sym__Atomic] = ACTIONS(2668), + [anon_sym__Noreturn] = ACTIONS(2668), + [anon_sym__Nonnull] = ACTIONS(2668), + [anon_sym_nullable] = ACTIONS(2668), + [anon_sym__Complex] = ACTIONS(2668), + [anon_sym__Nullable] = ACTIONS(2668), + [anon_sym__Nullable_result] = ACTIONS(2668), + [anon_sym__Null_unspecified] = ACTIONS(2668), + [anon_sym___autoreleasing] = ACTIONS(2668), + [anon_sym___block] = ACTIONS(2668), + [anon_sym___bridge] = ACTIONS(2668), + [anon_sym___bridge_retained] = ACTIONS(2668), + [anon_sym___bridge_transfer] = ACTIONS(2668), + [anon_sym___complex] = ACTIONS(2668), + [anon_sym___const] = ACTIONS(2668), + [anon_sym___imag] = ACTIONS(2668), + [anon_sym___kindof] = ACTIONS(2668), + [anon_sym___nonnull] = ACTIONS(2668), + [anon_sym___nullable] = ACTIONS(2668), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2668), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2668), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2668), + [anon_sym___real] = ACTIONS(2668), + [anon_sym___strong] = ACTIONS(2668), + [anon_sym___unsafe_unretained] = ACTIONS(2668), + [anon_sym___unused] = ACTIONS(2668), + [anon_sym___weak] = ACTIONS(2668), + [anon_sym_alignas] = ACTIONS(2668), + [anon_sym__Alignas] = ACTIONS(2668), + [sym_primitive_type] = ACTIONS(2668), + [anon_sym_enum] = ACTIONS(2668), + [anon_sym_struct] = ACTIONS(2668), + [anon_sym_union] = ACTIONS(2668), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2668), + [anon_sym___typeof] = ACTIONS(2668), + [anon_sym_typeof] = ACTIONS(2668), + [aux_sym_preproc_undef_token1] = ACTIONS(2668), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2668), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2668), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2668), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2668), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2668), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2668), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2668), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2668), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2668), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2668), + [anon_sym_NS_AVAILABLE] = ACTIONS(2668), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2668), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2668), + [anon_sym_API_AVAILABLE] = ACTIONS(2668), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2668), + [anon_sym_API_DEPRECATED] = ACTIONS(2668), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2668), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2668), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2668), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2668), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2668), + [anon_sym___deprecated_msg] = ACTIONS(2668), + [anon_sym___deprecated_enum_msg] = ACTIONS(2668), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2668), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2668), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2668), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2668), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2668), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2668), + [anon_sym_ATend] = ACTIONS(2670), + [anon_sym_ATsynthesize] = ACTIONS(2670), + [anon_sym_ATdynamic] = ACTIONS(2670), + [anon_sym_BOOL] = ACTIONS(2668), + [anon_sym_IMP] = ACTIONS(2668), + [anon_sym_SEL] = ACTIONS(2668), + [anon_sym_Class] = ACTIONS(2668), + [anon_sym_id] = ACTIONS(2668), + }, + [2354] = { + [sym_identifier] = ACTIONS(2664), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2664), + [sym_preproc_directive] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym___extension__] = ACTIONS(2664), + [anon_sym_typedef] = ACTIONS(2664), + [anon_sym_extern] = ACTIONS(2664), + [anon_sym___attribute__] = ACTIONS(2664), + [anon_sym___attribute] = ACTIONS(2664), + [anon_sym_noreturn] = ACTIONS(2664), + [anon_sym_LBRACK] = ACTIONS(2666), + [anon_sym___declspec] = ACTIONS(2664), + [anon_sym___cdecl] = ACTIONS(2664), + [anon_sym___clrcall] = ACTIONS(2664), + [anon_sym___stdcall] = ACTIONS(2664), + [anon_sym___fastcall] = ACTIONS(2664), + [anon_sym___thiscall] = ACTIONS(2664), + [anon_sym___vectorcall] = ACTIONS(2664), + [anon_sym_signed] = ACTIONS(2664), + [anon_sym_unsigned] = ACTIONS(2664), + [anon_sym_long] = ACTIONS(2664), + [anon_sym_short] = ACTIONS(2664), + [anon_sym_static] = ACTIONS(2664), + [anon_sym_auto] = ACTIONS(2664), + [anon_sym_register] = ACTIONS(2664), + [anon_sym_inline] = ACTIONS(2664), + [anon_sym___inline] = ACTIONS(2664), + [anon_sym___inline__] = ACTIONS(2664), + [anon_sym___forceinline] = ACTIONS(2664), + [anon_sym_thread_local] = ACTIONS(2664), + [anon_sym___thread] = ACTIONS(2664), + [anon_sym_CG_EXTERN] = ACTIONS(2664), + [anon_sym_CG_INLINE] = ACTIONS(2664), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2664), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2664), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2664), + [anon_sym_IBOutlet] = ACTIONS(2664), + [anon_sym_IBInspectable] = ACTIONS(2664), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2664), + [anon_sym_NS_INLINE] = ACTIONS(2664), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2664), + [anon_sym_OBJC_EXPORT] = ACTIONS(2664), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2664), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2664), + [anon_sym_const] = ACTIONS(2664), + [anon_sym_constexpr] = ACTIONS(2664), + [anon_sym_volatile] = ACTIONS(2664), + [anon_sym_restrict] = ACTIONS(2664), + [anon_sym___restrict__] = ACTIONS(2664), + [anon_sym__Atomic] = ACTIONS(2664), + [anon_sym__Noreturn] = ACTIONS(2664), + [anon_sym__Nonnull] = ACTIONS(2664), + [anon_sym_nullable] = ACTIONS(2664), + [anon_sym__Complex] = ACTIONS(2664), + [anon_sym__Nullable] = ACTIONS(2664), + [anon_sym__Nullable_result] = ACTIONS(2664), + [anon_sym__Null_unspecified] = ACTIONS(2664), + [anon_sym___autoreleasing] = ACTIONS(2664), + [anon_sym___block] = ACTIONS(2664), + [anon_sym___bridge] = ACTIONS(2664), + [anon_sym___bridge_retained] = ACTIONS(2664), + [anon_sym___bridge_transfer] = ACTIONS(2664), + [anon_sym___complex] = ACTIONS(2664), + [anon_sym___const] = ACTIONS(2664), + [anon_sym___imag] = ACTIONS(2664), + [anon_sym___kindof] = ACTIONS(2664), + [anon_sym___nonnull] = ACTIONS(2664), + [anon_sym___nullable] = ACTIONS(2664), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2664), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2664), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2664), + [anon_sym___real] = ACTIONS(2664), + [anon_sym___strong] = ACTIONS(2664), + [anon_sym___unsafe_unretained] = ACTIONS(2664), + [anon_sym___unused] = ACTIONS(2664), + [anon_sym___weak] = ACTIONS(2664), + [anon_sym_alignas] = ACTIONS(2664), + [anon_sym__Alignas] = ACTIONS(2664), + [sym_primitive_type] = ACTIONS(2664), + [anon_sym_enum] = ACTIONS(2664), + [anon_sym_struct] = ACTIONS(2664), + [anon_sym_union] = ACTIONS(2664), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2664), + [anon_sym___typeof] = ACTIONS(2664), + [anon_sym_typeof] = ACTIONS(2664), + [aux_sym_preproc_undef_token1] = ACTIONS(2664), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2664), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2664), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2664), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2664), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2664), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2664), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2664), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2664), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2664), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2664), + [anon_sym_NS_AVAILABLE] = ACTIONS(2664), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2664), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2664), + [anon_sym_API_AVAILABLE] = ACTIONS(2664), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2664), + [anon_sym_API_DEPRECATED] = ACTIONS(2664), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2664), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2664), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2664), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2664), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2664), + [anon_sym___deprecated_msg] = ACTIONS(2664), + [anon_sym___deprecated_enum_msg] = ACTIONS(2664), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2664), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2664), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2664), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2664), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2664), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2664), + [anon_sym_ATend] = ACTIONS(2666), + [anon_sym_ATsynthesize] = ACTIONS(2666), + [anon_sym_ATdynamic] = ACTIONS(2666), + [anon_sym_BOOL] = ACTIONS(2664), + [anon_sym_IMP] = ACTIONS(2664), + [anon_sym_SEL] = ACTIONS(2664), + [anon_sym_Class] = ACTIONS(2664), + [anon_sym_id] = ACTIONS(2664), + }, + [2355] = { + [sym_identifier] = ACTIONS(5028), + [aux_sym_preproc_def_token1] = ACTIONS(5028), + [aux_sym_preproc_if_token1] = ACTIONS(5028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5028), + [sym_preproc_directive] = ACTIONS(5028), + [anon_sym_DASH] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5032), + [anon_sym___extension__] = ACTIONS(5028), + [anon_sym_typedef] = ACTIONS(5028), + [anon_sym_extern] = ACTIONS(5028), + [anon_sym___attribute__] = ACTIONS(5028), + [anon_sym___attribute] = ACTIONS(5028), + [anon_sym_noreturn] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5032), + [anon_sym___declspec] = ACTIONS(5028), + [anon_sym___cdecl] = ACTIONS(5028), + [anon_sym___clrcall] = ACTIONS(5028), + [anon_sym___stdcall] = ACTIONS(5028), + [anon_sym___fastcall] = ACTIONS(5028), + [anon_sym___thiscall] = ACTIONS(5028), + [anon_sym___vectorcall] = ACTIONS(5028), + [anon_sym_signed] = ACTIONS(5028), + [anon_sym_unsigned] = ACTIONS(5028), + [anon_sym_long] = ACTIONS(5028), + [anon_sym_short] = ACTIONS(5028), + [anon_sym_static] = ACTIONS(5028), + [anon_sym_auto] = ACTIONS(5028), + [anon_sym_register] = ACTIONS(5028), + [anon_sym_inline] = ACTIONS(5028), + [anon_sym___inline] = ACTIONS(5028), + [anon_sym___inline__] = ACTIONS(5028), + [anon_sym___forceinline] = ACTIONS(5028), + [anon_sym_thread_local] = ACTIONS(5028), + [anon_sym___thread] = ACTIONS(5028), + [anon_sym_CG_EXTERN] = ACTIONS(5028), + [anon_sym_CG_INLINE] = ACTIONS(5028), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5028), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5028), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5028), + [anon_sym_IBOutlet] = ACTIONS(5028), + [anon_sym_IBInspectable] = ACTIONS(5028), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5028), + [anon_sym_NS_INLINE] = ACTIONS(5028), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5028), + [anon_sym_OBJC_EXPORT] = ACTIONS(5028), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5028), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5028), + [anon_sym_const] = ACTIONS(5028), + [anon_sym_constexpr] = ACTIONS(5028), + [anon_sym_volatile] = ACTIONS(5028), + [anon_sym_restrict] = ACTIONS(5028), + [anon_sym___restrict__] = ACTIONS(5028), + [anon_sym__Atomic] = ACTIONS(5028), + [anon_sym__Noreturn] = ACTIONS(5028), + [anon_sym__Nonnull] = ACTIONS(5028), + [anon_sym_nullable] = ACTIONS(5028), + [anon_sym__Complex] = ACTIONS(5028), + [anon_sym__Nullable] = ACTIONS(5028), + [anon_sym__Nullable_result] = ACTIONS(5028), + [anon_sym__Null_unspecified] = ACTIONS(5028), + [anon_sym___autoreleasing] = ACTIONS(5028), + [anon_sym___block] = ACTIONS(5028), + [anon_sym___bridge] = ACTIONS(5028), + [anon_sym___bridge_retained] = ACTIONS(5028), + [anon_sym___bridge_transfer] = ACTIONS(5028), + [anon_sym___complex] = ACTIONS(5028), + [anon_sym___const] = ACTIONS(5028), + [anon_sym___imag] = ACTIONS(5028), + [anon_sym___kindof] = ACTIONS(5028), + [anon_sym___nonnull] = ACTIONS(5028), + [anon_sym___nullable] = ACTIONS(5028), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5028), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5028), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5028), + [anon_sym___real] = ACTIONS(5028), + [anon_sym___strong] = ACTIONS(5028), + [anon_sym___unsafe_unretained] = ACTIONS(5028), + [anon_sym___unused] = ACTIONS(5028), + [anon_sym___weak] = ACTIONS(5028), + [anon_sym_alignas] = ACTIONS(5028), + [anon_sym__Alignas] = ACTIONS(5028), + [sym_primitive_type] = ACTIONS(5028), + [anon_sym_enum] = ACTIONS(5028), + [anon_sym_struct] = ACTIONS(5028), + [anon_sym_union] = ACTIONS(5028), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5028), + [anon_sym___typeof] = ACTIONS(5028), + [anon_sym_typeof] = ACTIONS(5028), + [aux_sym_preproc_undef_token1] = ACTIONS(5028), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5028), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5028), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5028), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5028), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5028), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5028), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5028), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5028), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5028), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5028), + [anon_sym_NS_AVAILABLE] = ACTIONS(5028), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5028), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5028), + [anon_sym_API_AVAILABLE] = ACTIONS(5028), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5028), + [anon_sym_API_DEPRECATED] = ACTIONS(5028), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5028), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5028), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5028), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5028), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5028), + [anon_sym___deprecated_msg] = ACTIONS(5028), + [anon_sym___deprecated_enum_msg] = ACTIONS(5028), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5028), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5028), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5028), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5028), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5028), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5028), + [anon_sym_ATend] = ACTIONS(5032), + [anon_sym_ATsynthesize] = ACTIONS(5032), + [anon_sym_ATdynamic] = ACTIONS(5032), + [anon_sym_BOOL] = ACTIONS(5028), + [anon_sym_IMP] = ACTIONS(5028), + [anon_sym_SEL] = ACTIONS(5028), + [anon_sym_Class] = ACTIONS(5028), + [anon_sym_id] = ACTIONS(5028), + }, + [2356] = { + [sym_identifier] = ACTIONS(5606), + [anon_sym_COMMA] = ACTIONS(5608), + [anon_sym_RPAREN] = ACTIONS(5608), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5608), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5608), + [anon_sym_LPAREN2] = ACTIONS(5608), + [anon_sym_STAR] = ACTIONS(5608), + [anon_sym_CARET] = ACTIONS(5608), + [anon_sym_GT] = ACTIONS(5608), + [anon_sym_SEMI] = ACTIONS(5608), + [anon_sym___extension__] = ACTIONS(5606), + [anon_sym_extern] = ACTIONS(5606), + [anon_sym___attribute__] = ACTIONS(5606), + [anon_sym___attribute] = ACTIONS(5606), + [anon_sym_noreturn] = ACTIONS(5606), + [anon_sym_LBRACK] = ACTIONS(5608), + [anon_sym___declspec] = ACTIONS(5606), + [anon_sym___based] = ACTIONS(5606), + [anon_sym_LBRACE] = ACTIONS(5608), + [anon_sym_RBRACE] = ACTIONS(5608), + [anon_sym_signed] = ACTIONS(5606), + [anon_sym_unsigned] = ACTIONS(5606), + [anon_sym_long] = ACTIONS(5606), + [anon_sym_short] = ACTIONS(5606), + [anon_sym_static] = ACTIONS(5606), + [anon_sym_ATautoreleasepool] = ACTIONS(5608), + [anon_sym_auto] = ACTIONS(5606), + [anon_sym_register] = ACTIONS(5606), + [anon_sym_inline] = ACTIONS(5606), + [anon_sym___inline] = ACTIONS(5606), + [anon_sym___inline__] = ACTIONS(5606), + [anon_sym___forceinline] = ACTIONS(5606), + [anon_sym_thread_local] = ACTIONS(5606), + [anon_sym___thread] = ACTIONS(5606), + [anon_sym_CG_EXTERN] = ACTIONS(5606), + [anon_sym_CG_INLINE] = ACTIONS(5606), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5606), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5606), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5606), + [anon_sym_IBOutlet] = ACTIONS(5606), + [anon_sym_IBInspectable] = ACTIONS(5606), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5606), + [anon_sym_NS_INLINE] = ACTIONS(5606), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5606), + [anon_sym_OBJC_EXPORT] = ACTIONS(5606), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5606), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5606), + [anon_sym_const] = ACTIONS(5606), + [anon_sym_constexpr] = ACTIONS(5606), + [anon_sym_volatile] = ACTIONS(5606), + [anon_sym_restrict] = ACTIONS(5606), + [anon_sym___restrict__] = ACTIONS(5606), + [anon_sym__Atomic] = ACTIONS(5606), + [anon_sym__Noreturn] = ACTIONS(5606), + [anon_sym__Nonnull] = ACTIONS(5606), + [anon_sym_nullable] = ACTIONS(5606), + [anon_sym__Complex] = ACTIONS(5606), + [anon_sym__Nullable] = ACTIONS(5606), + [anon_sym__Nullable_result] = ACTIONS(5606), + [anon_sym__Null_unspecified] = ACTIONS(5606), + [anon_sym___autoreleasing] = ACTIONS(5606), + [anon_sym___block] = ACTIONS(5606), + [anon_sym___bridge] = ACTIONS(5606), + [anon_sym___bridge_retained] = ACTIONS(5606), + [anon_sym___bridge_transfer] = ACTIONS(5606), + [anon_sym___complex] = ACTIONS(5606), + [anon_sym___const] = ACTIONS(5606), + [anon_sym___imag] = ACTIONS(5606), + [anon_sym___kindof] = ACTIONS(5606), + [anon_sym___nonnull] = ACTIONS(5606), + [anon_sym___nullable] = ACTIONS(5606), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5606), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5606), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5606), + [anon_sym___real] = ACTIONS(5606), + [anon_sym___strong] = ACTIONS(5606), + [anon_sym___unsafe_unretained] = ACTIONS(5606), + [anon_sym___unused] = ACTIONS(5606), + [anon_sym___weak] = ACTIONS(5606), + [anon_sym_alignas] = ACTIONS(5606), + [anon_sym__Alignas] = ACTIONS(5606), + [sym_primitive_type] = ACTIONS(5606), + [anon_sym_enum] = ACTIONS(5606), + [anon_sym_COLON] = ACTIONS(5608), + [anon_sym_struct] = ACTIONS(5606), + [anon_sym_union] = ACTIONS(5606), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5606), + [anon_sym___typeof] = ACTIONS(5606), + [anon_sym_typeof] = ACTIONS(5606), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5606), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5606), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5606), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5606), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5606), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5606), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5606), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5606), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5606), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5606), + [anon_sym_NS_AVAILABLE] = ACTIONS(5606), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5606), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5606), + [anon_sym_API_AVAILABLE] = ACTIONS(5606), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5606), + [anon_sym_API_DEPRECATED] = ACTIONS(5606), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5606), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5606), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5606), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5606), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5606), + [anon_sym___deprecated_msg] = ACTIONS(5606), + [anon_sym___deprecated_enum_msg] = ACTIONS(5606), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5606), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5606), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5606), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5606), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5606), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5606), + [anon_sym_ATprotocol] = ACTIONS(5608), + [anon_sym_ATinterface] = ACTIONS(5608), + [anon_sym_ATimplementation] = ACTIONS(5608), + [anon_sym_ATproperty] = ACTIONS(5608), + [anon_sym_BOOL] = ACTIONS(5606), + [anon_sym_IMP] = ACTIONS(5606), + [anon_sym_SEL] = ACTIONS(5606), + [anon_sym_Class] = ACTIONS(5606), + [anon_sym_id] = ACTIONS(5606), + }, + [2357] = { + [sym_identifier] = ACTIONS(2740), + [aux_sym_preproc_def_token1] = ACTIONS(2740), + [aux_sym_preproc_if_token1] = ACTIONS(2740), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2740), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2740), + [sym_preproc_directive] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2742), + [anon_sym_PLUS] = ACTIONS(2742), + [anon_sym___extension__] = ACTIONS(2740), + [anon_sym_typedef] = ACTIONS(2740), + [anon_sym_extern] = ACTIONS(2740), + [anon_sym___attribute__] = ACTIONS(2740), + [anon_sym___attribute] = ACTIONS(2740), + [anon_sym_noreturn] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym___declspec] = ACTIONS(2740), + [anon_sym___cdecl] = ACTIONS(2740), + [anon_sym___clrcall] = ACTIONS(2740), + [anon_sym___stdcall] = ACTIONS(2740), + [anon_sym___fastcall] = ACTIONS(2740), + [anon_sym___thiscall] = ACTIONS(2740), + [anon_sym___vectorcall] = ACTIONS(2740), + [anon_sym_signed] = ACTIONS(2740), + [anon_sym_unsigned] = ACTIONS(2740), + [anon_sym_long] = ACTIONS(2740), + [anon_sym_short] = ACTIONS(2740), + [anon_sym_static] = ACTIONS(2740), + [anon_sym_auto] = ACTIONS(2740), + [anon_sym_register] = ACTIONS(2740), + [anon_sym_inline] = ACTIONS(2740), + [anon_sym___inline] = ACTIONS(2740), + [anon_sym___inline__] = ACTIONS(2740), + [anon_sym___forceinline] = ACTIONS(2740), + [anon_sym_thread_local] = ACTIONS(2740), + [anon_sym___thread] = ACTIONS(2740), + [anon_sym_CG_EXTERN] = ACTIONS(2740), + [anon_sym_CG_INLINE] = ACTIONS(2740), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2740), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2740), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2740), + [anon_sym_IBOutlet] = ACTIONS(2740), + [anon_sym_IBInspectable] = ACTIONS(2740), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2740), + [anon_sym_NS_INLINE] = ACTIONS(2740), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2740), + [anon_sym_OBJC_EXPORT] = ACTIONS(2740), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2740), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2740), + [anon_sym_const] = ACTIONS(2740), + [anon_sym_constexpr] = ACTIONS(2740), + [anon_sym_volatile] = ACTIONS(2740), + [anon_sym_restrict] = ACTIONS(2740), + [anon_sym___restrict__] = ACTIONS(2740), + [anon_sym__Atomic] = ACTIONS(2740), + [anon_sym__Noreturn] = ACTIONS(2740), + [anon_sym__Nonnull] = ACTIONS(2740), + [anon_sym_nullable] = ACTIONS(2740), + [anon_sym__Complex] = ACTIONS(2740), + [anon_sym__Nullable] = ACTIONS(2740), + [anon_sym__Nullable_result] = ACTIONS(2740), + [anon_sym__Null_unspecified] = ACTIONS(2740), + [anon_sym___autoreleasing] = ACTIONS(2740), + [anon_sym___block] = ACTIONS(2740), + [anon_sym___bridge] = ACTIONS(2740), + [anon_sym___bridge_retained] = ACTIONS(2740), + [anon_sym___bridge_transfer] = ACTIONS(2740), + [anon_sym___complex] = ACTIONS(2740), + [anon_sym___const] = ACTIONS(2740), + [anon_sym___imag] = ACTIONS(2740), + [anon_sym___kindof] = ACTIONS(2740), + [anon_sym___nonnull] = ACTIONS(2740), + [anon_sym___nullable] = ACTIONS(2740), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2740), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2740), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2740), + [anon_sym___real] = ACTIONS(2740), + [anon_sym___strong] = ACTIONS(2740), + [anon_sym___unsafe_unretained] = ACTIONS(2740), + [anon_sym___unused] = ACTIONS(2740), + [anon_sym___weak] = ACTIONS(2740), + [anon_sym_alignas] = ACTIONS(2740), + [anon_sym__Alignas] = ACTIONS(2740), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_enum] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(2740), + [anon_sym_union] = ACTIONS(2740), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2740), + [anon_sym___typeof] = ACTIONS(2740), + [anon_sym_typeof] = ACTIONS(2740), + [aux_sym_preproc_undef_token1] = ACTIONS(2740), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2740), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2740), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2740), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2740), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2740), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2740), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2740), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2740), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2740), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2740), + [anon_sym_NS_AVAILABLE] = ACTIONS(2740), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2740), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2740), + [anon_sym_API_AVAILABLE] = ACTIONS(2740), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2740), + [anon_sym_API_DEPRECATED] = ACTIONS(2740), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2740), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2740), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2740), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2740), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2740), + [anon_sym___deprecated_msg] = ACTIONS(2740), + [anon_sym___deprecated_enum_msg] = ACTIONS(2740), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2740), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2740), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2740), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2740), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2740), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2740), + [anon_sym_ATend] = ACTIONS(2742), + [anon_sym_ATsynthesize] = ACTIONS(2742), + [anon_sym_ATdynamic] = ACTIONS(2742), + [anon_sym_BOOL] = ACTIONS(2740), + [anon_sym_IMP] = ACTIONS(2740), + [anon_sym_SEL] = ACTIONS(2740), + [anon_sym_Class] = ACTIONS(2740), + [anon_sym_id] = ACTIONS(2740), + }, + [2358] = { + [sym_identifier] = ACTIONS(5367), + [aux_sym_preproc_def_token1] = ACTIONS(5367), + [aux_sym_preproc_if_token1] = ACTIONS(5367), + [aux_sym_preproc_if_token2] = ACTIONS(5367), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5367), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5367), + [sym_preproc_directive] = ACTIONS(5367), + [anon_sym_DASH] = ACTIONS(5369), + [anon_sym_PLUS] = ACTIONS(5369), + [anon_sym___extension__] = ACTIONS(5367), + [anon_sym_typedef] = ACTIONS(5367), + [anon_sym_extern] = ACTIONS(5367), + [anon_sym___attribute__] = ACTIONS(5367), + [anon_sym___attribute] = ACTIONS(5367), + [anon_sym_noreturn] = ACTIONS(5367), + [anon_sym_LBRACK] = ACTIONS(5369), + [anon_sym___declspec] = ACTIONS(5367), + [anon_sym___cdecl] = ACTIONS(5367), + [anon_sym___clrcall] = ACTIONS(5367), + [anon_sym___stdcall] = ACTIONS(5367), + [anon_sym___fastcall] = ACTIONS(5367), + [anon_sym___thiscall] = ACTIONS(5367), + [anon_sym___vectorcall] = ACTIONS(5367), + [anon_sym_signed] = ACTIONS(5367), + [anon_sym_unsigned] = ACTIONS(5367), + [anon_sym_long] = ACTIONS(5367), + [anon_sym_short] = ACTIONS(5367), + [anon_sym_static] = ACTIONS(5367), + [anon_sym_auto] = ACTIONS(5367), + [anon_sym_register] = ACTIONS(5367), + [anon_sym_inline] = ACTIONS(5367), + [anon_sym___inline] = ACTIONS(5367), + [anon_sym___inline__] = ACTIONS(5367), + [anon_sym___forceinline] = ACTIONS(5367), + [anon_sym_thread_local] = ACTIONS(5367), + [anon_sym___thread] = ACTIONS(5367), + [anon_sym_CG_EXTERN] = ACTIONS(5367), + [anon_sym_CG_INLINE] = ACTIONS(5367), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5367), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5367), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5367), + [anon_sym_IBOutlet] = ACTIONS(5367), + [anon_sym_IBInspectable] = ACTIONS(5367), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5367), + [anon_sym_NS_INLINE] = ACTIONS(5367), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5367), + [anon_sym_OBJC_EXPORT] = ACTIONS(5367), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5367), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5367), + [anon_sym_const] = ACTIONS(5367), + [anon_sym_constexpr] = ACTIONS(5367), + [anon_sym_volatile] = ACTIONS(5367), + [anon_sym_restrict] = ACTIONS(5367), + [anon_sym___restrict__] = ACTIONS(5367), + [anon_sym__Atomic] = ACTIONS(5367), + [anon_sym__Noreturn] = ACTIONS(5367), + [anon_sym__Nonnull] = ACTIONS(5367), + [anon_sym_nullable] = ACTIONS(5367), + [anon_sym__Complex] = ACTIONS(5367), + [anon_sym__Nullable] = ACTIONS(5367), + [anon_sym__Nullable_result] = ACTIONS(5367), + [anon_sym__Null_unspecified] = ACTIONS(5367), + [anon_sym___autoreleasing] = ACTIONS(5367), + [anon_sym___block] = ACTIONS(5367), + [anon_sym___bridge] = ACTIONS(5367), + [anon_sym___bridge_retained] = ACTIONS(5367), + [anon_sym___bridge_transfer] = ACTIONS(5367), + [anon_sym___complex] = ACTIONS(5367), + [anon_sym___const] = ACTIONS(5367), + [anon_sym___imag] = ACTIONS(5367), + [anon_sym___kindof] = ACTIONS(5367), + [anon_sym___nonnull] = ACTIONS(5367), + [anon_sym___nullable] = ACTIONS(5367), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5367), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5367), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5367), + [anon_sym___real] = ACTIONS(5367), + [anon_sym___strong] = ACTIONS(5367), + [anon_sym___unsafe_unretained] = ACTIONS(5367), + [anon_sym___unused] = ACTIONS(5367), + [anon_sym___weak] = ACTIONS(5367), + [anon_sym_alignas] = ACTIONS(5367), + [anon_sym__Alignas] = ACTIONS(5367), + [sym_primitive_type] = ACTIONS(5367), + [anon_sym_enum] = ACTIONS(5367), + [anon_sym_struct] = ACTIONS(5367), + [anon_sym_union] = ACTIONS(5367), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5367), + [anon_sym___typeof] = ACTIONS(5367), + [anon_sym_typeof] = ACTIONS(5367), + [aux_sym_preproc_undef_token1] = ACTIONS(5367), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5367), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5367), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5367), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5367), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5367), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5367), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5367), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5367), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5367), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5367), + [anon_sym_NS_AVAILABLE] = ACTIONS(5367), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5367), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5367), + [anon_sym_API_AVAILABLE] = ACTIONS(5367), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5367), + [anon_sym_API_DEPRECATED] = ACTIONS(5367), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5367), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5367), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5367), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5367), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5367), + [anon_sym___deprecated_msg] = ACTIONS(5367), + [anon_sym___deprecated_enum_msg] = ACTIONS(5367), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5367), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5367), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5367), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5367), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5367), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5367), + [anon_sym_ATsynthesize] = ACTIONS(5369), + [anon_sym_ATdynamic] = ACTIONS(5369), + [anon_sym_BOOL] = ACTIONS(5367), + [anon_sym_IMP] = ACTIONS(5367), + [anon_sym_SEL] = ACTIONS(5367), + [anon_sym_Class] = ACTIONS(5367), + [anon_sym_id] = ACTIONS(5367), + }, + [2359] = { + [sym_identifier] = ACTIONS(5425), + [aux_sym_preproc_def_token1] = ACTIONS(5425), + [aux_sym_preproc_if_token1] = ACTIONS(5425), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5425), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5425), + [sym_preproc_directive] = ACTIONS(5425), + [anon_sym_DASH] = ACTIONS(5427), + [anon_sym_PLUS] = ACTIONS(5427), + [anon_sym___extension__] = ACTIONS(5425), + [anon_sym_typedef] = ACTIONS(5425), + [anon_sym_extern] = ACTIONS(5425), + [anon_sym___attribute__] = ACTIONS(5425), + [anon_sym___attribute] = ACTIONS(5425), + [anon_sym_noreturn] = ACTIONS(5425), + [anon_sym_LBRACK] = ACTIONS(5427), + [anon_sym___declspec] = ACTIONS(5425), + [anon_sym___cdecl] = ACTIONS(5425), + [anon_sym___clrcall] = ACTIONS(5425), + [anon_sym___stdcall] = ACTIONS(5425), + [anon_sym___fastcall] = ACTIONS(5425), + [anon_sym___thiscall] = ACTIONS(5425), + [anon_sym___vectorcall] = ACTIONS(5425), + [anon_sym_signed] = ACTIONS(5425), + [anon_sym_unsigned] = ACTIONS(5425), + [anon_sym_long] = ACTIONS(5425), + [anon_sym_short] = ACTIONS(5425), + [anon_sym_static] = ACTIONS(5425), + [anon_sym_auto] = ACTIONS(5425), + [anon_sym_register] = ACTIONS(5425), + [anon_sym_inline] = ACTIONS(5425), + [anon_sym___inline] = ACTIONS(5425), + [anon_sym___inline__] = ACTIONS(5425), + [anon_sym___forceinline] = ACTIONS(5425), + [anon_sym_thread_local] = ACTIONS(5425), + [anon_sym___thread] = ACTIONS(5425), + [anon_sym_CG_EXTERN] = ACTIONS(5425), + [anon_sym_CG_INLINE] = ACTIONS(5425), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5425), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5425), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5425), + [anon_sym_IBOutlet] = ACTIONS(5425), + [anon_sym_IBInspectable] = ACTIONS(5425), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5425), + [anon_sym_NS_INLINE] = ACTIONS(5425), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5425), + [anon_sym_OBJC_EXPORT] = ACTIONS(5425), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5425), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5425), + [anon_sym_const] = ACTIONS(5425), + [anon_sym_constexpr] = ACTIONS(5425), + [anon_sym_volatile] = ACTIONS(5425), + [anon_sym_restrict] = ACTIONS(5425), + [anon_sym___restrict__] = ACTIONS(5425), + [anon_sym__Atomic] = ACTIONS(5425), + [anon_sym__Noreturn] = ACTIONS(5425), + [anon_sym__Nonnull] = ACTIONS(5425), + [anon_sym_nullable] = ACTIONS(5425), + [anon_sym__Complex] = ACTIONS(5425), + [anon_sym__Nullable] = ACTIONS(5425), + [anon_sym__Nullable_result] = ACTIONS(5425), + [anon_sym__Null_unspecified] = ACTIONS(5425), + [anon_sym___autoreleasing] = ACTIONS(5425), + [anon_sym___block] = ACTIONS(5425), + [anon_sym___bridge] = ACTIONS(5425), + [anon_sym___bridge_retained] = ACTIONS(5425), + [anon_sym___bridge_transfer] = ACTIONS(5425), + [anon_sym___complex] = ACTIONS(5425), + [anon_sym___const] = ACTIONS(5425), + [anon_sym___imag] = ACTIONS(5425), + [anon_sym___kindof] = ACTIONS(5425), + [anon_sym___nonnull] = ACTIONS(5425), + [anon_sym___nullable] = ACTIONS(5425), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5425), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5425), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5425), + [anon_sym___real] = ACTIONS(5425), + [anon_sym___strong] = ACTIONS(5425), + [anon_sym___unsafe_unretained] = ACTIONS(5425), + [anon_sym___unused] = ACTIONS(5425), + [anon_sym___weak] = ACTIONS(5425), + [anon_sym_alignas] = ACTIONS(5425), + [anon_sym__Alignas] = ACTIONS(5425), + [sym_primitive_type] = ACTIONS(5425), + [anon_sym_enum] = ACTIONS(5425), + [anon_sym_struct] = ACTIONS(5425), + [anon_sym_union] = ACTIONS(5425), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5425), + [anon_sym___typeof] = ACTIONS(5425), + [anon_sym_typeof] = ACTIONS(5425), + [aux_sym_preproc_undef_token1] = ACTIONS(5425), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5425), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5425), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5425), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5425), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5425), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5425), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5425), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5425), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5425), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5425), + [anon_sym_NS_AVAILABLE] = ACTIONS(5425), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5425), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5425), + [anon_sym_API_AVAILABLE] = ACTIONS(5425), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5425), + [anon_sym_API_DEPRECATED] = ACTIONS(5425), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5425), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5425), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5425), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5425), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5425), + [anon_sym___deprecated_msg] = ACTIONS(5425), + [anon_sym___deprecated_enum_msg] = ACTIONS(5425), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5425), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5425), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5425), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5425), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5425), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5425), + [anon_sym_ATend] = ACTIONS(5427), + [anon_sym_ATsynthesize] = ACTIONS(5427), + [anon_sym_ATdynamic] = ACTIONS(5427), + [anon_sym_BOOL] = ACTIONS(5425), + [anon_sym_IMP] = ACTIONS(5425), + [anon_sym_SEL] = ACTIONS(5425), + [anon_sym_Class] = ACTIONS(5425), + [anon_sym_id] = ACTIONS(5425), + }, + [2360] = { + [sym_identifier] = ACTIONS(5610), + [anon_sym_COMMA] = ACTIONS(5612), + [anon_sym_RPAREN] = ACTIONS(5612), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5612), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5612), + [anon_sym_LPAREN2] = ACTIONS(5612), + [anon_sym_STAR] = ACTIONS(5612), + [anon_sym_CARET] = ACTIONS(5612), + [anon_sym_GT] = ACTIONS(5612), + [anon_sym_SEMI] = ACTIONS(5612), + [anon_sym___extension__] = ACTIONS(5610), + [anon_sym_extern] = ACTIONS(5610), + [anon_sym___attribute__] = ACTIONS(5610), + [anon_sym___attribute] = ACTIONS(5610), + [anon_sym_noreturn] = ACTIONS(5610), + [anon_sym_LBRACK] = ACTIONS(5612), + [anon_sym___declspec] = ACTIONS(5610), + [anon_sym___based] = ACTIONS(5610), + [anon_sym_LBRACE] = ACTIONS(5612), + [anon_sym_RBRACE] = ACTIONS(5612), + [anon_sym_signed] = ACTIONS(5610), + [anon_sym_unsigned] = ACTIONS(5610), + [anon_sym_long] = ACTIONS(5610), + [anon_sym_short] = ACTIONS(5610), + [anon_sym_static] = ACTIONS(5610), + [anon_sym_ATautoreleasepool] = ACTIONS(5612), + [anon_sym_auto] = ACTIONS(5610), + [anon_sym_register] = ACTIONS(5610), + [anon_sym_inline] = ACTIONS(5610), + [anon_sym___inline] = ACTIONS(5610), + [anon_sym___inline__] = ACTIONS(5610), + [anon_sym___forceinline] = ACTIONS(5610), + [anon_sym_thread_local] = ACTIONS(5610), + [anon_sym___thread] = ACTIONS(5610), + [anon_sym_CG_EXTERN] = ACTIONS(5610), + [anon_sym_CG_INLINE] = ACTIONS(5610), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5610), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5610), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5610), + [anon_sym_IBOutlet] = ACTIONS(5610), + [anon_sym_IBInspectable] = ACTIONS(5610), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5610), + [anon_sym_NS_INLINE] = ACTIONS(5610), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5610), + [anon_sym_OBJC_EXPORT] = ACTIONS(5610), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5610), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5610), + [anon_sym_const] = ACTIONS(5610), + [anon_sym_constexpr] = ACTIONS(5610), + [anon_sym_volatile] = ACTIONS(5610), + [anon_sym_restrict] = ACTIONS(5610), + [anon_sym___restrict__] = ACTIONS(5610), + [anon_sym__Atomic] = ACTIONS(5610), + [anon_sym__Noreturn] = ACTIONS(5610), + [anon_sym__Nonnull] = ACTIONS(5610), + [anon_sym_nullable] = ACTIONS(5610), + [anon_sym__Complex] = ACTIONS(5610), + [anon_sym__Nullable] = ACTIONS(5610), + [anon_sym__Nullable_result] = ACTIONS(5610), + [anon_sym__Null_unspecified] = ACTIONS(5610), + [anon_sym___autoreleasing] = ACTIONS(5610), + [anon_sym___block] = ACTIONS(5610), + [anon_sym___bridge] = ACTIONS(5610), + [anon_sym___bridge_retained] = ACTIONS(5610), + [anon_sym___bridge_transfer] = ACTIONS(5610), + [anon_sym___complex] = ACTIONS(5610), + [anon_sym___const] = ACTIONS(5610), + [anon_sym___imag] = ACTIONS(5610), + [anon_sym___kindof] = ACTIONS(5610), + [anon_sym___nonnull] = ACTIONS(5610), + [anon_sym___nullable] = ACTIONS(5610), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5610), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5610), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5610), + [anon_sym___real] = ACTIONS(5610), + [anon_sym___strong] = ACTIONS(5610), + [anon_sym___unsafe_unretained] = ACTIONS(5610), + [anon_sym___unused] = ACTIONS(5610), + [anon_sym___weak] = ACTIONS(5610), + [anon_sym_alignas] = ACTIONS(5610), + [anon_sym__Alignas] = ACTIONS(5610), + [sym_primitive_type] = ACTIONS(5610), + [anon_sym_enum] = ACTIONS(5610), + [anon_sym_COLON] = ACTIONS(5612), + [anon_sym_struct] = ACTIONS(5610), + [anon_sym_union] = ACTIONS(5610), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5610), + [anon_sym___typeof] = ACTIONS(5610), + [anon_sym_typeof] = ACTIONS(5610), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5610), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5610), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5610), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5610), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5610), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5610), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5610), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5610), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5610), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5610), + [anon_sym_NS_AVAILABLE] = ACTIONS(5610), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5610), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5610), + [anon_sym_API_AVAILABLE] = ACTIONS(5610), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5610), + [anon_sym_API_DEPRECATED] = ACTIONS(5610), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5610), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5610), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5610), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5610), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5610), + [anon_sym___deprecated_msg] = ACTIONS(5610), + [anon_sym___deprecated_enum_msg] = ACTIONS(5610), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5610), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5610), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5610), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5610), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5610), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5610), + [anon_sym_ATprotocol] = ACTIONS(5612), + [anon_sym_ATinterface] = ACTIONS(5612), + [anon_sym_ATimplementation] = ACTIONS(5612), + [anon_sym_ATproperty] = ACTIONS(5612), + [anon_sym_BOOL] = ACTIONS(5610), + [anon_sym_IMP] = ACTIONS(5610), + [anon_sym_SEL] = ACTIONS(5610), + [anon_sym_Class] = ACTIONS(5610), + [anon_sym_id] = ACTIONS(5610), + }, + [2361] = { + [sym_identifier] = ACTIONS(2966), + [anon_sym_COMMA] = ACTIONS(2968), + [anon_sym_RPAREN] = ACTIONS(2968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2968), + [anon_sym_LPAREN2] = ACTIONS(2968), + [anon_sym_STAR] = ACTIONS(2968), + [anon_sym_CARET] = ACTIONS(2968), + [anon_sym_GT] = ACTIONS(2968), + [anon_sym_SEMI] = ACTIONS(2968), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_extern] = ACTIONS(2966), + [anon_sym___attribute__] = ACTIONS(2966), + [anon_sym___attribute] = ACTIONS(2966), + [anon_sym_noreturn] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2968), + [anon_sym___declspec] = ACTIONS(2966), + [anon_sym___based] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_RBRACE] = ACTIONS(2968), + [anon_sym_signed] = ACTIONS(2966), + [anon_sym_unsigned] = ACTIONS(2966), + [anon_sym_long] = ACTIONS(2966), + [anon_sym_short] = ACTIONS(2966), + [anon_sym_static] = ACTIONS(2966), + [anon_sym_ATautoreleasepool] = ACTIONS(2968), + [anon_sym_auto] = ACTIONS(2966), + [anon_sym_register] = ACTIONS(2966), + [anon_sym_inline] = ACTIONS(2966), + [anon_sym___inline] = ACTIONS(2966), + [anon_sym___inline__] = ACTIONS(2966), + [anon_sym___forceinline] = ACTIONS(2966), + [anon_sym_thread_local] = ACTIONS(2966), + [anon_sym___thread] = ACTIONS(2966), + [anon_sym_CG_EXTERN] = ACTIONS(2966), + [anon_sym_CG_INLINE] = ACTIONS(2966), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2966), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2966), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2966), + [anon_sym_IBOutlet] = ACTIONS(2966), + [anon_sym_IBInspectable] = ACTIONS(2966), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2966), + [anon_sym_NS_INLINE] = ACTIONS(2966), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2966), + [anon_sym_OBJC_EXPORT] = ACTIONS(2966), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2966), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2966), + [anon_sym_constexpr] = ACTIONS(2966), + [anon_sym_volatile] = ACTIONS(2966), + [anon_sym_restrict] = ACTIONS(2966), + [anon_sym___restrict__] = ACTIONS(2966), + [anon_sym__Atomic] = ACTIONS(2966), + [anon_sym__Noreturn] = ACTIONS(2966), + [anon_sym__Nonnull] = ACTIONS(2966), + [anon_sym_nullable] = ACTIONS(2966), + [anon_sym__Complex] = ACTIONS(2966), + [anon_sym__Nullable] = ACTIONS(2966), + [anon_sym__Nullable_result] = ACTIONS(2966), + [anon_sym__Null_unspecified] = ACTIONS(2966), + [anon_sym___autoreleasing] = ACTIONS(2966), + [anon_sym___block] = ACTIONS(2966), + [anon_sym___bridge] = ACTIONS(2966), + [anon_sym___bridge_retained] = ACTIONS(2966), + [anon_sym___bridge_transfer] = ACTIONS(2966), + [anon_sym___complex] = ACTIONS(2966), + [anon_sym___const] = ACTIONS(2966), + [anon_sym___imag] = ACTIONS(2966), + [anon_sym___kindof] = ACTIONS(2966), + [anon_sym___nonnull] = ACTIONS(2966), + [anon_sym___nullable] = ACTIONS(2966), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2966), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2966), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2966), + [anon_sym___real] = ACTIONS(2966), + [anon_sym___strong] = ACTIONS(2966), + [anon_sym___unsafe_unretained] = ACTIONS(2966), + [anon_sym___unused] = ACTIONS(2966), + [anon_sym___weak] = ACTIONS(2966), + [anon_sym_alignas] = ACTIONS(2966), + [anon_sym__Alignas] = ACTIONS(2966), + [sym_primitive_type] = ACTIONS(2966), + [anon_sym_enum] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2968), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_union] = ACTIONS(2966), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2966), + [anon_sym___typeof] = ACTIONS(2966), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2966), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2966), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2966), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2966), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2966), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2966), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2966), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2966), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2966), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2966), + [anon_sym_NS_AVAILABLE] = ACTIONS(2966), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2966), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2966), + [anon_sym_API_AVAILABLE] = ACTIONS(2966), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2966), + [anon_sym_API_DEPRECATED] = ACTIONS(2966), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2966), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2966), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2966), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2966), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2966), + [anon_sym___deprecated_msg] = ACTIONS(2966), + [anon_sym___deprecated_enum_msg] = ACTIONS(2966), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2966), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2966), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2966), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2966), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2966), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2966), + [anon_sym_ATprotocol] = ACTIONS(2968), + [anon_sym_ATinterface] = ACTIONS(2968), + [anon_sym_ATimplementation] = ACTIONS(2968), + [anon_sym_ATproperty] = ACTIONS(2968), + [anon_sym_BOOL] = ACTIONS(2966), + [anon_sym_IMP] = ACTIONS(2966), + [anon_sym_SEL] = ACTIONS(2966), + [anon_sym_Class] = ACTIONS(2966), + [anon_sym_id] = ACTIONS(2966), + }, + [2362] = { + [sym_identifier] = ACTIONS(5614), + [anon_sym_COMMA] = ACTIONS(5616), + [anon_sym_RPAREN] = ACTIONS(5616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5616), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5616), + [anon_sym_LPAREN2] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5616), + [anon_sym_CARET] = ACTIONS(5616), + [anon_sym_GT] = ACTIONS(5616), + [anon_sym_SEMI] = ACTIONS(5616), + [anon_sym___extension__] = ACTIONS(5614), + [anon_sym_extern] = ACTIONS(5614), + [anon_sym___attribute__] = ACTIONS(5614), + [anon_sym___attribute] = ACTIONS(5614), + [anon_sym_noreturn] = ACTIONS(5614), + [anon_sym_LBRACK] = ACTIONS(5616), + [anon_sym___declspec] = ACTIONS(5614), + [anon_sym___based] = ACTIONS(5614), + [anon_sym_LBRACE] = ACTIONS(5616), + [anon_sym_RBRACE] = ACTIONS(5616), + [anon_sym_signed] = ACTIONS(5614), + [anon_sym_unsigned] = ACTIONS(5614), + [anon_sym_long] = ACTIONS(5614), + [anon_sym_short] = ACTIONS(5614), + [anon_sym_static] = ACTIONS(5614), + [anon_sym_ATautoreleasepool] = ACTIONS(5616), + [anon_sym_auto] = ACTIONS(5614), + [anon_sym_register] = ACTIONS(5614), + [anon_sym_inline] = ACTIONS(5614), + [anon_sym___inline] = ACTIONS(5614), + [anon_sym___inline__] = ACTIONS(5614), + [anon_sym___forceinline] = ACTIONS(5614), + [anon_sym_thread_local] = ACTIONS(5614), + [anon_sym___thread] = ACTIONS(5614), + [anon_sym_CG_EXTERN] = ACTIONS(5614), + [anon_sym_CG_INLINE] = ACTIONS(5614), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5614), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5614), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5614), + [anon_sym_IBOutlet] = ACTIONS(5614), + [anon_sym_IBInspectable] = ACTIONS(5614), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5614), + [anon_sym_NS_INLINE] = ACTIONS(5614), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5614), + [anon_sym_OBJC_EXPORT] = ACTIONS(5614), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5614), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5614), + [anon_sym_const] = ACTIONS(5614), + [anon_sym_constexpr] = ACTIONS(5614), + [anon_sym_volatile] = ACTIONS(5614), + [anon_sym_restrict] = ACTIONS(5614), + [anon_sym___restrict__] = ACTIONS(5614), + [anon_sym__Atomic] = ACTIONS(5614), + [anon_sym__Noreturn] = ACTIONS(5614), + [anon_sym__Nonnull] = ACTIONS(5614), + [anon_sym_nullable] = ACTIONS(5614), + [anon_sym__Complex] = ACTIONS(5614), + [anon_sym__Nullable] = ACTIONS(5614), + [anon_sym__Nullable_result] = ACTIONS(5614), + [anon_sym__Null_unspecified] = ACTIONS(5614), + [anon_sym___autoreleasing] = ACTIONS(5614), + [anon_sym___block] = ACTIONS(5614), + [anon_sym___bridge] = ACTIONS(5614), + [anon_sym___bridge_retained] = ACTIONS(5614), + [anon_sym___bridge_transfer] = ACTIONS(5614), + [anon_sym___complex] = ACTIONS(5614), + [anon_sym___const] = ACTIONS(5614), + [anon_sym___imag] = ACTIONS(5614), + [anon_sym___kindof] = ACTIONS(5614), + [anon_sym___nonnull] = ACTIONS(5614), + [anon_sym___nullable] = ACTIONS(5614), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5614), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5614), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5614), + [anon_sym___real] = ACTIONS(5614), + [anon_sym___strong] = ACTIONS(5614), + [anon_sym___unsafe_unretained] = ACTIONS(5614), + [anon_sym___unused] = ACTIONS(5614), + [anon_sym___weak] = ACTIONS(5614), + [anon_sym_alignas] = ACTIONS(5614), + [anon_sym__Alignas] = ACTIONS(5614), + [sym_primitive_type] = ACTIONS(5614), + [anon_sym_enum] = ACTIONS(5614), + [anon_sym_COLON] = ACTIONS(5616), + [anon_sym_struct] = ACTIONS(5614), + [anon_sym_union] = ACTIONS(5614), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5614), + [anon_sym___typeof] = ACTIONS(5614), + [anon_sym_typeof] = ACTIONS(5614), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5614), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5614), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5614), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5614), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5614), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5614), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5614), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5614), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5614), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5614), + [anon_sym_NS_AVAILABLE] = ACTIONS(5614), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5614), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5614), + [anon_sym_API_AVAILABLE] = ACTIONS(5614), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5614), + [anon_sym_API_DEPRECATED] = ACTIONS(5614), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5614), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5614), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5614), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5614), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5614), + [anon_sym___deprecated_msg] = ACTIONS(5614), + [anon_sym___deprecated_enum_msg] = ACTIONS(5614), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5614), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5614), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5614), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5614), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5614), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5614), + [anon_sym_ATprotocol] = ACTIONS(5616), + [anon_sym_ATinterface] = ACTIONS(5616), + [anon_sym_ATimplementation] = ACTIONS(5616), + [anon_sym_ATproperty] = ACTIONS(5616), + [anon_sym_BOOL] = ACTIONS(5614), + [anon_sym_IMP] = ACTIONS(5614), + [anon_sym_SEL] = ACTIONS(5614), + [anon_sym_Class] = ACTIONS(5614), + [anon_sym_id] = ACTIONS(5614), + }, + [2363] = { + [sym_identifier] = ACTIONS(5377), + [aux_sym_preproc_def_token1] = ACTIONS(5377), + [aux_sym_preproc_if_token1] = ACTIONS(5377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5377), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5377), + [sym_preproc_directive] = ACTIONS(5377), + [anon_sym_DASH] = ACTIONS(5379), + [anon_sym_PLUS] = ACTIONS(5379), + [anon_sym___extension__] = ACTIONS(5377), + [anon_sym_typedef] = ACTIONS(5377), + [anon_sym_extern] = ACTIONS(5377), + [anon_sym___attribute__] = ACTIONS(5377), + [anon_sym___attribute] = ACTIONS(5377), + [anon_sym_noreturn] = ACTIONS(5377), + [anon_sym_LBRACK] = ACTIONS(5379), + [anon_sym___declspec] = ACTIONS(5377), + [anon_sym___cdecl] = ACTIONS(5377), + [anon_sym___clrcall] = ACTIONS(5377), + [anon_sym___stdcall] = ACTIONS(5377), + [anon_sym___fastcall] = ACTIONS(5377), + [anon_sym___thiscall] = ACTIONS(5377), + [anon_sym___vectorcall] = ACTIONS(5377), + [anon_sym_signed] = ACTIONS(5377), + [anon_sym_unsigned] = ACTIONS(5377), + [anon_sym_long] = ACTIONS(5377), + [anon_sym_short] = ACTIONS(5377), + [anon_sym_static] = ACTIONS(5377), + [anon_sym_auto] = ACTIONS(5377), + [anon_sym_register] = ACTIONS(5377), + [anon_sym_inline] = ACTIONS(5377), + [anon_sym___inline] = ACTIONS(5377), + [anon_sym___inline__] = ACTIONS(5377), + [anon_sym___forceinline] = ACTIONS(5377), + [anon_sym_thread_local] = ACTIONS(5377), + [anon_sym___thread] = ACTIONS(5377), + [anon_sym_CG_EXTERN] = ACTIONS(5377), + [anon_sym_CG_INLINE] = ACTIONS(5377), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5377), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5377), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5377), + [anon_sym_IBOutlet] = ACTIONS(5377), + [anon_sym_IBInspectable] = ACTIONS(5377), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5377), + [anon_sym_NS_INLINE] = ACTIONS(5377), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5377), + [anon_sym_OBJC_EXPORT] = ACTIONS(5377), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5377), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5377), + [anon_sym_const] = ACTIONS(5377), + [anon_sym_constexpr] = ACTIONS(5377), + [anon_sym_volatile] = ACTIONS(5377), + [anon_sym_restrict] = ACTIONS(5377), + [anon_sym___restrict__] = ACTIONS(5377), + [anon_sym__Atomic] = ACTIONS(5377), + [anon_sym__Noreturn] = ACTIONS(5377), + [anon_sym__Nonnull] = ACTIONS(5377), + [anon_sym_nullable] = ACTIONS(5377), + [anon_sym__Complex] = ACTIONS(5377), + [anon_sym__Nullable] = ACTIONS(5377), + [anon_sym__Nullable_result] = ACTIONS(5377), + [anon_sym__Null_unspecified] = ACTIONS(5377), + [anon_sym___autoreleasing] = ACTIONS(5377), + [anon_sym___block] = ACTIONS(5377), + [anon_sym___bridge] = ACTIONS(5377), + [anon_sym___bridge_retained] = ACTIONS(5377), + [anon_sym___bridge_transfer] = ACTIONS(5377), + [anon_sym___complex] = ACTIONS(5377), + [anon_sym___const] = ACTIONS(5377), + [anon_sym___imag] = ACTIONS(5377), + [anon_sym___kindof] = ACTIONS(5377), + [anon_sym___nonnull] = ACTIONS(5377), + [anon_sym___nullable] = ACTIONS(5377), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5377), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5377), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5377), + [anon_sym___real] = ACTIONS(5377), + [anon_sym___strong] = ACTIONS(5377), + [anon_sym___unsafe_unretained] = ACTIONS(5377), + [anon_sym___unused] = ACTIONS(5377), + [anon_sym___weak] = ACTIONS(5377), + [anon_sym_alignas] = ACTIONS(5377), + [anon_sym__Alignas] = ACTIONS(5377), + [sym_primitive_type] = ACTIONS(5377), + [anon_sym_enum] = ACTIONS(5377), + [anon_sym_struct] = ACTIONS(5377), + [anon_sym_union] = ACTIONS(5377), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5377), + [anon_sym___typeof] = ACTIONS(5377), + [anon_sym_typeof] = ACTIONS(5377), + [aux_sym_preproc_undef_token1] = ACTIONS(5377), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5377), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5377), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5377), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5377), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5377), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5377), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5377), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5377), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5377), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5377), + [anon_sym_NS_AVAILABLE] = ACTIONS(5377), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5377), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5377), + [anon_sym_API_AVAILABLE] = ACTIONS(5377), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5377), + [anon_sym_API_DEPRECATED] = ACTIONS(5377), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5377), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5377), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5377), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5377), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5377), + [anon_sym___deprecated_msg] = ACTIONS(5377), + [anon_sym___deprecated_enum_msg] = ACTIONS(5377), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5377), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5377), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5377), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5377), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5377), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5377), + [anon_sym_ATend] = ACTIONS(5379), + [anon_sym_ATsynthesize] = ACTIONS(5379), + [anon_sym_ATdynamic] = ACTIONS(5379), + [anon_sym_BOOL] = ACTIONS(5377), + [anon_sym_IMP] = ACTIONS(5377), + [anon_sym_SEL] = ACTIONS(5377), + [anon_sym_Class] = ACTIONS(5377), + [anon_sym_id] = ACTIONS(5377), + }, + [2364] = { + [sym_identifier] = ACTIONS(5322), + [aux_sym_preproc_def_token1] = ACTIONS(5322), + [aux_sym_preproc_if_token1] = ACTIONS(5322), + [aux_sym_preproc_if_token2] = ACTIONS(5322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5322), + [sym_preproc_directive] = ACTIONS(5322), + [anon_sym_DASH] = ACTIONS(5324), + [anon_sym_PLUS] = ACTIONS(5324), + [anon_sym___extension__] = ACTIONS(5322), + [anon_sym_typedef] = ACTIONS(5322), + [anon_sym_extern] = ACTIONS(5322), + [anon_sym___attribute__] = ACTIONS(5322), + [anon_sym___attribute] = ACTIONS(5322), + [anon_sym_noreturn] = ACTIONS(5322), + [anon_sym_LBRACK] = ACTIONS(5324), + [anon_sym___declspec] = ACTIONS(5322), + [anon_sym___cdecl] = ACTIONS(5322), + [anon_sym___clrcall] = ACTIONS(5322), + [anon_sym___stdcall] = ACTIONS(5322), + [anon_sym___fastcall] = ACTIONS(5322), + [anon_sym___thiscall] = ACTIONS(5322), + [anon_sym___vectorcall] = ACTIONS(5322), + [anon_sym_signed] = ACTIONS(5322), + [anon_sym_unsigned] = ACTIONS(5322), + [anon_sym_long] = ACTIONS(5322), + [anon_sym_short] = ACTIONS(5322), + [anon_sym_static] = ACTIONS(5322), + [anon_sym_auto] = ACTIONS(5322), + [anon_sym_register] = ACTIONS(5322), + [anon_sym_inline] = ACTIONS(5322), + [anon_sym___inline] = ACTIONS(5322), + [anon_sym___inline__] = ACTIONS(5322), + [anon_sym___forceinline] = ACTIONS(5322), + [anon_sym_thread_local] = ACTIONS(5322), + [anon_sym___thread] = ACTIONS(5322), + [anon_sym_CG_EXTERN] = ACTIONS(5322), + [anon_sym_CG_INLINE] = ACTIONS(5322), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5322), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5322), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5322), + [anon_sym_IBOutlet] = ACTIONS(5322), + [anon_sym_IBInspectable] = ACTIONS(5322), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5322), + [anon_sym_NS_INLINE] = ACTIONS(5322), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5322), + [anon_sym_OBJC_EXPORT] = ACTIONS(5322), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5322), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5322), + [anon_sym_const] = ACTIONS(5322), + [anon_sym_constexpr] = ACTIONS(5322), + [anon_sym_volatile] = ACTIONS(5322), + [anon_sym_restrict] = ACTIONS(5322), + [anon_sym___restrict__] = ACTIONS(5322), + [anon_sym__Atomic] = ACTIONS(5322), + [anon_sym__Noreturn] = ACTIONS(5322), + [anon_sym__Nonnull] = ACTIONS(5322), + [anon_sym_nullable] = ACTIONS(5322), + [anon_sym__Complex] = ACTIONS(5322), + [anon_sym__Nullable] = ACTIONS(5322), + [anon_sym__Nullable_result] = ACTIONS(5322), + [anon_sym__Null_unspecified] = ACTIONS(5322), + [anon_sym___autoreleasing] = ACTIONS(5322), + [anon_sym___block] = ACTIONS(5322), + [anon_sym___bridge] = ACTIONS(5322), + [anon_sym___bridge_retained] = ACTIONS(5322), + [anon_sym___bridge_transfer] = ACTIONS(5322), + [anon_sym___complex] = ACTIONS(5322), + [anon_sym___const] = ACTIONS(5322), + [anon_sym___imag] = ACTIONS(5322), + [anon_sym___kindof] = ACTIONS(5322), + [anon_sym___nonnull] = ACTIONS(5322), + [anon_sym___nullable] = ACTIONS(5322), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5322), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5322), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5322), + [anon_sym___real] = ACTIONS(5322), + [anon_sym___strong] = ACTIONS(5322), + [anon_sym___unsafe_unretained] = ACTIONS(5322), + [anon_sym___unused] = ACTIONS(5322), + [anon_sym___weak] = ACTIONS(5322), + [anon_sym_alignas] = ACTIONS(5322), + [anon_sym__Alignas] = ACTIONS(5322), + [sym_primitive_type] = ACTIONS(5322), + [anon_sym_enum] = ACTIONS(5322), + [anon_sym_struct] = ACTIONS(5322), + [anon_sym_union] = ACTIONS(5322), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5322), + [anon_sym___typeof] = ACTIONS(5322), + [anon_sym_typeof] = ACTIONS(5322), + [aux_sym_preproc_undef_token1] = ACTIONS(5322), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5322), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5322), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5322), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5322), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5322), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5322), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5322), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5322), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5322), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5322), + [anon_sym_NS_AVAILABLE] = ACTIONS(5322), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5322), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5322), + [anon_sym_API_AVAILABLE] = ACTIONS(5322), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5322), + [anon_sym_API_DEPRECATED] = ACTIONS(5322), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5322), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5322), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5322), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5322), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5322), + [anon_sym___deprecated_msg] = ACTIONS(5322), + [anon_sym___deprecated_enum_msg] = ACTIONS(5322), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5322), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5322), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5322), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5322), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5322), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5322), + [anon_sym_ATsynthesize] = ACTIONS(5324), + [anon_sym_ATdynamic] = ACTIONS(5324), + [anon_sym_BOOL] = ACTIONS(5322), + [anon_sym_IMP] = ACTIONS(5322), + [anon_sym_SEL] = ACTIONS(5322), + [anon_sym_Class] = ACTIONS(5322), + [anon_sym_id] = ACTIONS(5322), + }, + [2365] = { + [sym_identifier] = ACTIONS(5316), + [aux_sym_preproc_def_token1] = ACTIONS(5316), + [aux_sym_preproc_if_token1] = ACTIONS(5316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5316), + [sym_preproc_directive] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5318), + [anon_sym_PLUS] = ACTIONS(5318), + [anon_sym___extension__] = ACTIONS(5316), + [anon_sym_typedef] = ACTIONS(5316), + [anon_sym_extern] = ACTIONS(5316), + [anon_sym___attribute__] = ACTIONS(5316), + [anon_sym___attribute] = ACTIONS(5316), + [anon_sym_noreturn] = ACTIONS(5316), + [anon_sym_LBRACK] = ACTIONS(5318), + [anon_sym___declspec] = ACTIONS(5316), + [anon_sym___cdecl] = ACTIONS(5316), + [anon_sym___clrcall] = ACTIONS(5316), + [anon_sym___stdcall] = ACTIONS(5316), + [anon_sym___fastcall] = ACTIONS(5316), + [anon_sym___thiscall] = ACTIONS(5316), + [anon_sym___vectorcall] = ACTIONS(5316), + [anon_sym_signed] = ACTIONS(5316), + [anon_sym_unsigned] = ACTIONS(5316), + [anon_sym_long] = ACTIONS(5316), + [anon_sym_short] = ACTIONS(5316), + [anon_sym_static] = ACTIONS(5316), + [anon_sym_auto] = ACTIONS(5316), + [anon_sym_register] = ACTIONS(5316), + [anon_sym_inline] = ACTIONS(5316), + [anon_sym___inline] = ACTIONS(5316), + [anon_sym___inline__] = ACTIONS(5316), + [anon_sym___forceinline] = ACTIONS(5316), + [anon_sym_thread_local] = ACTIONS(5316), + [anon_sym___thread] = ACTIONS(5316), + [anon_sym_CG_EXTERN] = ACTIONS(5316), + [anon_sym_CG_INLINE] = ACTIONS(5316), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5316), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5316), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5316), + [anon_sym_IBOutlet] = ACTIONS(5316), + [anon_sym_IBInspectable] = ACTIONS(5316), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5316), + [anon_sym_NS_INLINE] = ACTIONS(5316), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5316), + [anon_sym_OBJC_EXPORT] = ACTIONS(5316), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5316), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5316), + [anon_sym_const] = ACTIONS(5316), + [anon_sym_constexpr] = ACTIONS(5316), + [anon_sym_volatile] = ACTIONS(5316), + [anon_sym_restrict] = ACTIONS(5316), + [anon_sym___restrict__] = ACTIONS(5316), + [anon_sym__Atomic] = ACTIONS(5316), + [anon_sym__Noreturn] = ACTIONS(5316), + [anon_sym__Nonnull] = ACTIONS(5316), + [anon_sym_nullable] = ACTIONS(5316), + [anon_sym__Complex] = ACTIONS(5316), + [anon_sym__Nullable] = ACTIONS(5316), + [anon_sym__Nullable_result] = ACTIONS(5316), + [anon_sym__Null_unspecified] = ACTIONS(5316), + [anon_sym___autoreleasing] = ACTIONS(5316), + [anon_sym___block] = ACTIONS(5316), + [anon_sym___bridge] = ACTIONS(5316), + [anon_sym___bridge_retained] = ACTIONS(5316), + [anon_sym___bridge_transfer] = ACTIONS(5316), + [anon_sym___complex] = ACTIONS(5316), + [anon_sym___const] = ACTIONS(5316), + [anon_sym___imag] = ACTIONS(5316), + [anon_sym___kindof] = ACTIONS(5316), + [anon_sym___nonnull] = ACTIONS(5316), + [anon_sym___nullable] = ACTIONS(5316), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5316), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5316), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5316), + [anon_sym___real] = ACTIONS(5316), + [anon_sym___strong] = ACTIONS(5316), + [anon_sym___unsafe_unretained] = ACTIONS(5316), + [anon_sym___unused] = ACTIONS(5316), + [anon_sym___weak] = ACTIONS(5316), + [anon_sym_alignas] = ACTIONS(5316), + [anon_sym__Alignas] = ACTIONS(5316), + [sym_primitive_type] = ACTIONS(5316), + [anon_sym_enum] = ACTIONS(5316), + [anon_sym_struct] = ACTIONS(5316), + [anon_sym_union] = ACTIONS(5316), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5316), + [anon_sym___typeof] = ACTIONS(5316), + [anon_sym_typeof] = ACTIONS(5316), + [aux_sym_preproc_undef_token1] = ACTIONS(5316), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5316), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5316), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5316), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5316), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5316), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5316), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5316), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5316), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5316), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5316), + [anon_sym_NS_AVAILABLE] = ACTIONS(5316), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5316), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5316), + [anon_sym_API_AVAILABLE] = ACTIONS(5316), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5316), + [anon_sym_API_DEPRECATED] = ACTIONS(5316), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5316), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5316), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5316), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5316), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5316), + [anon_sym___deprecated_msg] = ACTIONS(5316), + [anon_sym___deprecated_enum_msg] = ACTIONS(5316), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5316), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5316), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5316), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5316), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5316), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5316), + [anon_sym_ATend] = ACTIONS(5318), + [anon_sym_ATsynthesize] = ACTIONS(5318), + [anon_sym_ATdynamic] = ACTIONS(5318), + [anon_sym_BOOL] = ACTIONS(5316), + [anon_sym_IMP] = ACTIONS(5316), + [anon_sym_SEL] = ACTIONS(5316), + [anon_sym_Class] = ACTIONS(5316), + [anon_sym_id] = ACTIONS(5316), + }, + [2366] = { + [sym_identifier] = ACTIONS(5431), + [aux_sym_preproc_def_token1] = ACTIONS(5431), + [aux_sym_preproc_if_token1] = ACTIONS(5431), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5431), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5431), + [sym_preproc_directive] = ACTIONS(5431), + [anon_sym_DASH] = ACTIONS(5433), + [anon_sym_PLUS] = ACTIONS(5433), + [anon_sym___extension__] = ACTIONS(5431), + [anon_sym_typedef] = ACTIONS(5431), + [anon_sym_extern] = ACTIONS(5431), + [anon_sym___attribute__] = ACTIONS(5431), + [anon_sym___attribute] = ACTIONS(5431), + [anon_sym_noreturn] = ACTIONS(5431), + [anon_sym_LBRACK] = ACTIONS(5433), + [anon_sym___declspec] = ACTIONS(5431), + [anon_sym___cdecl] = ACTIONS(5431), + [anon_sym___clrcall] = ACTIONS(5431), + [anon_sym___stdcall] = ACTIONS(5431), + [anon_sym___fastcall] = ACTIONS(5431), + [anon_sym___thiscall] = ACTIONS(5431), + [anon_sym___vectorcall] = ACTIONS(5431), + [anon_sym_signed] = ACTIONS(5431), + [anon_sym_unsigned] = ACTIONS(5431), + [anon_sym_long] = ACTIONS(5431), + [anon_sym_short] = ACTIONS(5431), + [anon_sym_static] = ACTIONS(5431), + [anon_sym_auto] = ACTIONS(5431), + [anon_sym_register] = ACTIONS(5431), + [anon_sym_inline] = ACTIONS(5431), + [anon_sym___inline] = ACTIONS(5431), + [anon_sym___inline__] = ACTIONS(5431), + [anon_sym___forceinline] = ACTIONS(5431), + [anon_sym_thread_local] = ACTIONS(5431), + [anon_sym___thread] = ACTIONS(5431), + [anon_sym_CG_EXTERN] = ACTIONS(5431), + [anon_sym_CG_INLINE] = ACTIONS(5431), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5431), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5431), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5431), + [anon_sym_IBOutlet] = ACTIONS(5431), + [anon_sym_IBInspectable] = ACTIONS(5431), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5431), + [anon_sym_NS_INLINE] = ACTIONS(5431), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5431), + [anon_sym_OBJC_EXPORT] = ACTIONS(5431), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5431), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5431), + [anon_sym_const] = ACTIONS(5431), + [anon_sym_constexpr] = ACTIONS(5431), + [anon_sym_volatile] = ACTIONS(5431), + [anon_sym_restrict] = ACTIONS(5431), + [anon_sym___restrict__] = ACTIONS(5431), + [anon_sym__Atomic] = ACTIONS(5431), + [anon_sym__Noreturn] = ACTIONS(5431), + [anon_sym__Nonnull] = ACTIONS(5431), + [anon_sym_nullable] = ACTIONS(5431), + [anon_sym__Complex] = ACTIONS(5431), + [anon_sym__Nullable] = ACTIONS(5431), + [anon_sym__Nullable_result] = ACTIONS(5431), + [anon_sym__Null_unspecified] = ACTIONS(5431), + [anon_sym___autoreleasing] = ACTIONS(5431), + [anon_sym___block] = ACTIONS(5431), + [anon_sym___bridge] = ACTIONS(5431), + [anon_sym___bridge_retained] = ACTIONS(5431), + [anon_sym___bridge_transfer] = ACTIONS(5431), + [anon_sym___complex] = ACTIONS(5431), + [anon_sym___const] = ACTIONS(5431), + [anon_sym___imag] = ACTIONS(5431), + [anon_sym___kindof] = ACTIONS(5431), + [anon_sym___nonnull] = ACTIONS(5431), + [anon_sym___nullable] = ACTIONS(5431), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5431), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5431), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5431), + [anon_sym___real] = ACTIONS(5431), + [anon_sym___strong] = ACTIONS(5431), + [anon_sym___unsafe_unretained] = ACTIONS(5431), + [anon_sym___unused] = ACTIONS(5431), + [anon_sym___weak] = ACTIONS(5431), + [anon_sym_alignas] = ACTIONS(5431), + [anon_sym__Alignas] = ACTIONS(5431), + [sym_primitive_type] = ACTIONS(5431), + [anon_sym_enum] = ACTIONS(5431), + [anon_sym_struct] = ACTIONS(5431), + [anon_sym_union] = ACTIONS(5431), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5431), + [anon_sym___typeof] = ACTIONS(5431), + [anon_sym_typeof] = ACTIONS(5431), + [aux_sym_preproc_undef_token1] = ACTIONS(5431), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5431), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5431), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5431), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5431), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5431), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5431), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5431), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5431), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5431), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5431), + [anon_sym_NS_AVAILABLE] = ACTIONS(5431), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5431), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5431), + [anon_sym_API_AVAILABLE] = ACTIONS(5431), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5431), + [anon_sym_API_DEPRECATED] = ACTIONS(5431), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5431), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5431), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5431), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5431), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5431), + [anon_sym___deprecated_msg] = ACTIONS(5431), + [anon_sym___deprecated_enum_msg] = ACTIONS(5431), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5431), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5431), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5431), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5431), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5431), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5431), + [anon_sym_ATend] = ACTIONS(5433), + [anon_sym_ATsynthesize] = ACTIONS(5433), + [anon_sym_ATdynamic] = ACTIONS(5433), + [anon_sym_BOOL] = ACTIONS(5431), + [anon_sym_IMP] = ACTIONS(5431), + [anon_sym_SEL] = ACTIONS(5431), + [anon_sym_Class] = ACTIONS(5431), + [anon_sym_id] = ACTIONS(5431), + }, + [2367] = { + [sym_identifier] = ACTIONS(5618), + [anon_sym_COMMA] = ACTIONS(5620), + [anon_sym_RPAREN] = ACTIONS(5620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5620), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5620), + [anon_sym_LPAREN2] = ACTIONS(5620), + [anon_sym_STAR] = ACTIONS(5620), + [anon_sym_CARET] = ACTIONS(5620), + [anon_sym_GT] = ACTIONS(5620), + [anon_sym_SEMI] = ACTIONS(5620), + [anon_sym___extension__] = ACTIONS(5618), + [anon_sym_extern] = ACTIONS(5618), + [anon_sym___attribute__] = ACTIONS(5618), + [anon_sym___attribute] = ACTIONS(5618), + [anon_sym_noreturn] = ACTIONS(5618), + [anon_sym_LBRACK] = ACTIONS(5620), + [anon_sym___declspec] = ACTIONS(5618), + [anon_sym___based] = ACTIONS(5618), + [anon_sym_LBRACE] = ACTIONS(5620), + [anon_sym_RBRACE] = ACTIONS(5620), + [anon_sym_signed] = ACTIONS(5618), + [anon_sym_unsigned] = ACTIONS(5618), + [anon_sym_long] = ACTIONS(5618), + [anon_sym_short] = ACTIONS(5618), + [anon_sym_static] = ACTIONS(5618), + [anon_sym_ATautoreleasepool] = ACTIONS(5620), + [anon_sym_auto] = ACTIONS(5618), + [anon_sym_register] = ACTIONS(5618), + [anon_sym_inline] = ACTIONS(5618), + [anon_sym___inline] = ACTIONS(5618), + [anon_sym___inline__] = ACTIONS(5618), + [anon_sym___forceinline] = ACTIONS(5618), + [anon_sym_thread_local] = ACTIONS(5618), + [anon_sym___thread] = ACTIONS(5618), + [anon_sym_CG_EXTERN] = ACTIONS(5618), + [anon_sym_CG_INLINE] = ACTIONS(5618), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5618), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5618), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5618), + [anon_sym_IBOutlet] = ACTIONS(5618), + [anon_sym_IBInspectable] = ACTIONS(5618), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5618), + [anon_sym_NS_INLINE] = ACTIONS(5618), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5618), + [anon_sym_OBJC_EXPORT] = ACTIONS(5618), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5618), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5618), + [anon_sym_const] = ACTIONS(5618), + [anon_sym_constexpr] = ACTIONS(5618), + [anon_sym_volatile] = ACTIONS(5618), + [anon_sym_restrict] = ACTIONS(5618), + [anon_sym___restrict__] = ACTIONS(5618), + [anon_sym__Atomic] = ACTIONS(5618), + [anon_sym__Noreturn] = ACTIONS(5618), + [anon_sym__Nonnull] = ACTIONS(5618), + [anon_sym_nullable] = ACTIONS(5618), + [anon_sym__Complex] = ACTIONS(5618), + [anon_sym__Nullable] = ACTIONS(5618), + [anon_sym__Nullable_result] = ACTIONS(5618), + [anon_sym__Null_unspecified] = ACTIONS(5618), + [anon_sym___autoreleasing] = ACTIONS(5618), + [anon_sym___block] = ACTIONS(5618), + [anon_sym___bridge] = ACTIONS(5618), + [anon_sym___bridge_retained] = ACTIONS(5618), + [anon_sym___bridge_transfer] = ACTIONS(5618), + [anon_sym___complex] = ACTIONS(5618), + [anon_sym___const] = ACTIONS(5618), + [anon_sym___imag] = ACTIONS(5618), + [anon_sym___kindof] = ACTIONS(5618), + [anon_sym___nonnull] = ACTIONS(5618), + [anon_sym___nullable] = ACTIONS(5618), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5618), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5618), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5618), + [anon_sym___real] = ACTIONS(5618), + [anon_sym___strong] = ACTIONS(5618), + [anon_sym___unsafe_unretained] = ACTIONS(5618), + [anon_sym___unused] = ACTIONS(5618), + [anon_sym___weak] = ACTIONS(5618), + [anon_sym_alignas] = ACTIONS(5618), + [anon_sym__Alignas] = ACTIONS(5618), + [sym_primitive_type] = ACTIONS(5618), + [anon_sym_enum] = ACTIONS(5618), + [anon_sym_COLON] = ACTIONS(5620), + [anon_sym_struct] = ACTIONS(5618), + [anon_sym_union] = ACTIONS(5618), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5618), + [anon_sym___typeof] = ACTIONS(5618), + [anon_sym_typeof] = ACTIONS(5618), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5618), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5618), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5618), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5618), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5618), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5618), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5618), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5618), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5618), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5618), + [anon_sym_NS_AVAILABLE] = ACTIONS(5618), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5618), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5618), + [anon_sym_API_AVAILABLE] = ACTIONS(5618), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5618), + [anon_sym_API_DEPRECATED] = ACTIONS(5618), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5618), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5618), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5618), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5618), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5618), + [anon_sym___deprecated_msg] = ACTIONS(5618), + [anon_sym___deprecated_enum_msg] = ACTIONS(5618), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5618), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5618), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5618), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5618), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5618), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5618), + [anon_sym_ATprotocol] = ACTIONS(5620), + [anon_sym_ATinterface] = ACTIONS(5620), + [anon_sym_ATimplementation] = ACTIONS(5620), + [anon_sym_ATproperty] = ACTIONS(5620), + [anon_sym_BOOL] = ACTIONS(5618), + [anon_sym_IMP] = ACTIONS(5618), + [anon_sym_SEL] = ACTIONS(5618), + [anon_sym_Class] = ACTIONS(5618), + [anon_sym_id] = ACTIONS(5618), + }, + [2368] = { + [sym_identifier] = ACTIONS(2922), + [anon_sym_COMMA] = ACTIONS(2928), + [anon_sym_RPAREN] = ACTIONS(2928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2928), + [anon_sym_LPAREN2] = ACTIONS(2928), + [anon_sym_STAR] = ACTIONS(2928), + [anon_sym_CARET] = ACTIONS(2928), + [anon_sym_GT] = ACTIONS(2928), + [anon_sym_SEMI] = ACTIONS(2928), + [anon_sym___extension__] = ACTIONS(2922), + [anon_sym_extern] = ACTIONS(2922), + [anon_sym___attribute__] = ACTIONS(2922), + [anon_sym___attribute] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2928), + [anon_sym___declspec] = ACTIONS(2922), + [anon_sym___based] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2928), + [anon_sym_RBRACE] = ACTIONS(2928), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_ATautoreleasepool] = ACTIONS(2928), + [anon_sym_auto] = ACTIONS(2922), + [anon_sym_register] = ACTIONS(2922), + [anon_sym_inline] = ACTIONS(2922), + [anon_sym___inline] = ACTIONS(2922), + [anon_sym___inline__] = ACTIONS(2922), + [anon_sym___forceinline] = ACTIONS(2922), + [anon_sym_thread_local] = ACTIONS(2922), + [anon_sym___thread] = ACTIONS(2922), + [anon_sym_CG_EXTERN] = ACTIONS(2922), + [anon_sym_CG_INLINE] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2922), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2922), + [anon_sym_IBOutlet] = ACTIONS(2922), + [anon_sym_IBInspectable] = ACTIONS(2922), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2922), + [anon_sym_NS_INLINE] = ACTIONS(2922), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2922), + [anon_sym_OBJC_EXPORT] = ACTIONS(2922), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2922), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2922), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_COLON] = ACTIONS(2928), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(2922), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2922), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2922), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2922), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2922), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE] = ACTIONS(2922), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_API_AVAILABLE] = ACTIONS(2922), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_API_DEPRECATED] = ACTIONS(2922), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2922), + [anon_sym___deprecated_msg] = ACTIONS(2922), + [anon_sym___deprecated_enum_msg] = ACTIONS(2922), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2922), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2922), + [anon_sym_ATprotocol] = ACTIONS(2928), + [anon_sym_ATinterface] = ACTIONS(2928), + [anon_sym_ATimplementation] = ACTIONS(2928), + [anon_sym_ATproperty] = ACTIONS(2928), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(2922), + }, + [2369] = { + [sym_identifier] = ACTIONS(5415), + [aux_sym_preproc_def_token1] = ACTIONS(5415), + [aux_sym_preproc_if_token1] = ACTIONS(5415), + [aux_sym_preproc_if_token2] = ACTIONS(5415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5415), + [sym_preproc_directive] = ACTIONS(5415), + [anon_sym_DASH] = ACTIONS(5417), + [anon_sym_PLUS] = ACTIONS(5417), + [anon_sym___extension__] = ACTIONS(5415), + [anon_sym_typedef] = ACTIONS(5415), + [anon_sym_extern] = ACTIONS(5415), + [anon_sym___attribute__] = ACTIONS(5415), + [anon_sym___attribute] = ACTIONS(5415), + [anon_sym_noreturn] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(5417), + [anon_sym___declspec] = ACTIONS(5415), + [anon_sym___cdecl] = ACTIONS(5415), + [anon_sym___clrcall] = ACTIONS(5415), + [anon_sym___stdcall] = ACTIONS(5415), + [anon_sym___fastcall] = ACTIONS(5415), + [anon_sym___thiscall] = ACTIONS(5415), + [anon_sym___vectorcall] = ACTIONS(5415), + [anon_sym_signed] = ACTIONS(5415), + [anon_sym_unsigned] = ACTIONS(5415), + [anon_sym_long] = ACTIONS(5415), + [anon_sym_short] = ACTIONS(5415), + [anon_sym_static] = ACTIONS(5415), + [anon_sym_auto] = ACTIONS(5415), + [anon_sym_register] = ACTIONS(5415), + [anon_sym_inline] = ACTIONS(5415), + [anon_sym___inline] = ACTIONS(5415), + [anon_sym___inline__] = ACTIONS(5415), + [anon_sym___forceinline] = ACTIONS(5415), + [anon_sym_thread_local] = ACTIONS(5415), + [anon_sym___thread] = ACTIONS(5415), + [anon_sym_CG_EXTERN] = ACTIONS(5415), + [anon_sym_CG_INLINE] = ACTIONS(5415), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5415), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5415), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5415), + [anon_sym_IBOutlet] = ACTIONS(5415), + [anon_sym_IBInspectable] = ACTIONS(5415), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5415), + [anon_sym_NS_INLINE] = ACTIONS(5415), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5415), + [anon_sym_OBJC_EXPORT] = ACTIONS(5415), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5415), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5415), + [anon_sym_const] = ACTIONS(5415), + [anon_sym_constexpr] = ACTIONS(5415), + [anon_sym_volatile] = ACTIONS(5415), + [anon_sym_restrict] = ACTIONS(5415), + [anon_sym___restrict__] = ACTIONS(5415), + [anon_sym__Atomic] = ACTIONS(5415), + [anon_sym__Noreturn] = ACTIONS(5415), + [anon_sym__Nonnull] = ACTIONS(5415), + [anon_sym_nullable] = ACTIONS(5415), + [anon_sym__Complex] = ACTIONS(5415), + [anon_sym__Nullable] = ACTIONS(5415), + [anon_sym__Nullable_result] = ACTIONS(5415), + [anon_sym__Null_unspecified] = ACTIONS(5415), + [anon_sym___autoreleasing] = ACTIONS(5415), + [anon_sym___block] = ACTIONS(5415), + [anon_sym___bridge] = ACTIONS(5415), + [anon_sym___bridge_retained] = ACTIONS(5415), + [anon_sym___bridge_transfer] = ACTIONS(5415), + [anon_sym___complex] = ACTIONS(5415), + [anon_sym___const] = ACTIONS(5415), + [anon_sym___imag] = ACTIONS(5415), + [anon_sym___kindof] = ACTIONS(5415), + [anon_sym___nonnull] = ACTIONS(5415), + [anon_sym___nullable] = ACTIONS(5415), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5415), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5415), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5415), + [anon_sym___real] = ACTIONS(5415), + [anon_sym___strong] = ACTIONS(5415), + [anon_sym___unsafe_unretained] = ACTIONS(5415), + [anon_sym___unused] = ACTIONS(5415), + [anon_sym___weak] = ACTIONS(5415), + [anon_sym_alignas] = ACTIONS(5415), + [anon_sym__Alignas] = ACTIONS(5415), + [sym_primitive_type] = ACTIONS(5415), + [anon_sym_enum] = ACTIONS(5415), + [anon_sym_struct] = ACTIONS(5415), + [anon_sym_union] = ACTIONS(5415), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5415), + [anon_sym___typeof] = ACTIONS(5415), + [anon_sym_typeof] = ACTIONS(5415), + [aux_sym_preproc_undef_token1] = ACTIONS(5415), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5415), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5415), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5415), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5415), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5415), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5415), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5415), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5415), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5415), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5415), + [anon_sym_NS_AVAILABLE] = ACTIONS(5415), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5415), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5415), + [anon_sym_API_AVAILABLE] = ACTIONS(5415), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5415), + [anon_sym_API_DEPRECATED] = ACTIONS(5415), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5415), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5415), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5415), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5415), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5415), + [anon_sym___deprecated_msg] = ACTIONS(5415), + [anon_sym___deprecated_enum_msg] = ACTIONS(5415), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5415), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5415), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5415), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5415), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5415), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5415), + [anon_sym_ATsynthesize] = ACTIONS(5417), + [anon_sym_ATdynamic] = ACTIONS(5417), + [anon_sym_BOOL] = ACTIONS(5415), + [anon_sym_IMP] = ACTIONS(5415), + [anon_sym_SEL] = ACTIONS(5415), + [anon_sym_Class] = ACTIONS(5415), + [anon_sym_id] = ACTIONS(5415), + }, + [2370] = { + [sym_identifier] = ACTIONS(5377), + [aux_sym_preproc_def_token1] = ACTIONS(5377), + [aux_sym_preproc_if_token1] = ACTIONS(5377), + [aux_sym_preproc_if_token2] = ACTIONS(5377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5377), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5377), + [sym_preproc_directive] = ACTIONS(5377), + [anon_sym_DASH] = ACTIONS(5379), + [anon_sym_PLUS] = ACTIONS(5379), + [anon_sym___extension__] = ACTIONS(5377), + [anon_sym_typedef] = ACTIONS(5377), + [anon_sym_extern] = ACTIONS(5377), + [anon_sym___attribute__] = ACTIONS(5377), + [anon_sym___attribute] = ACTIONS(5377), + [anon_sym_noreturn] = ACTIONS(5377), + [anon_sym_LBRACK] = ACTIONS(5379), + [anon_sym___declspec] = ACTIONS(5377), + [anon_sym___cdecl] = ACTIONS(5377), + [anon_sym___clrcall] = ACTIONS(5377), + [anon_sym___stdcall] = ACTIONS(5377), + [anon_sym___fastcall] = ACTIONS(5377), + [anon_sym___thiscall] = ACTIONS(5377), + [anon_sym___vectorcall] = ACTIONS(5377), + [anon_sym_signed] = ACTIONS(5377), + [anon_sym_unsigned] = ACTIONS(5377), + [anon_sym_long] = ACTIONS(5377), + [anon_sym_short] = ACTIONS(5377), + [anon_sym_static] = ACTIONS(5377), + [anon_sym_auto] = ACTIONS(5377), + [anon_sym_register] = ACTIONS(5377), + [anon_sym_inline] = ACTIONS(5377), + [anon_sym___inline] = ACTIONS(5377), + [anon_sym___inline__] = ACTIONS(5377), + [anon_sym___forceinline] = ACTIONS(5377), + [anon_sym_thread_local] = ACTIONS(5377), + [anon_sym___thread] = ACTIONS(5377), + [anon_sym_CG_EXTERN] = ACTIONS(5377), + [anon_sym_CG_INLINE] = ACTIONS(5377), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5377), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5377), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5377), + [anon_sym_IBOutlet] = ACTIONS(5377), + [anon_sym_IBInspectable] = ACTIONS(5377), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5377), + [anon_sym_NS_INLINE] = ACTIONS(5377), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5377), + [anon_sym_OBJC_EXPORT] = ACTIONS(5377), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5377), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5377), + [anon_sym_const] = ACTIONS(5377), + [anon_sym_constexpr] = ACTIONS(5377), + [anon_sym_volatile] = ACTIONS(5377), + [anon_sym_restrict] = ACTIONS(5377), + [anon_sym___restrict__] = ACTIONS(5377), + [anon_sym__Atomic] = ACTIONS(5377), + [anon_sym__Noreturn] = ACTIONS(5377), + [anon_sym__Nonnull] = ACTIONS(5377), + [anon_sym_nullable] = ACTIONS(5377), + [anon_sym__Complex] = ACTIONS(5377), + [anon_sym__Nullable] = ACTIONS(5377), + [anon_sym__Nullable_result] = ACTIONS(5377), + [anon_sym__Null_unspecified] = ACTIONS(5377), + [anon_sym___autoreleasing] = ACTIONS(5377), + [anon_sym___block] = ACTIONS(5377), + [anon_sym___bridge] = ACTIONS(5377), + [anon_sym___bridge_retained] = ACTIONS(5377), + [anon_sym___bridge_transfer] = ACTIONS(5377), + [anon_sym___complex] = ACTIONS(5377), + [anon_sym___const] = ACTIONS(5377), + [anon_sym___imag] = ACTIONS(5377), + [anon_sym___kindof] = ACTIONS(5377), + [anon_sym___nonnull] = ACTIONS(5377), + [anon_sym___nullable] = ACTIONS(5377), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5377), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5377), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5377), + [anon_sym___real] = ACTIONS(5377), + [anon_sym___strong] = ACTIONS(5377), + [anon_sym___unsafe_unretained] = ACTIONS(5377), + [anon_sym___unused] = ACTIONS(5377), + [anon_sym___weak] = ACTIONS(5377), + [anon_sym_alignas] = ACTIONS(5377), + [anon_sym__Alignas] = ACTIONS(5377), + [sym_primitive_type] = ACTIONS(5377), + [anon_sym_enum] = ACTIONS(5377), + [anon_sym_struct] = ACTIONS(5377), + [anon_sym_union] = ACTIONS(5377), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5377), + [anon_sym___typeof] = ACTIONS(5377), + [anon_sym_typeof] = ACTIONS(5377), + [aux_sym_preproc_undef_token1] = ACTIONS(5377), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5377), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5377), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5377), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5377), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5377), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5377), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5377), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5377), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5377), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5377), + [anon_sym_NS_AVAILABLE] = ACTIONS(5377), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5377), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5377), + [anon_sym_API_AVAILABLE] = ACTIONS(5377), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5377), + [anon_sym_API_DEPRECATED] = ACTIONS(5377), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5377), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5377), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5377), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5377), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5377), + [anon_sym___deprecated_msg] = ACTIONS(5377), + [anon_sym___deprecated_enum_msg] = ACTIONS(5377), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5377), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5377), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5377), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5377), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5377), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5377), + [anon_sym_ATsynthesize] = ACTIONS(5379), + [anon_sym_ATdynamic] = ACTIONS(5379), + [anon_sym_BOOL] = ACTIONS(5377), + [anon_sym_IMP] = ACTIONS(5377), + [anon_sym_SEL] = ACTIONS(5377), + [anon_sym_Class] = ACTIONS(5377), + [anon_sym_id] = ACTIONS(5377), + }, + [2371] = { + [sym_identifier] = ACTIONS(5622), + [anon_sym_COMMA] = ACTIONS(5624), + [anon_sym_RPAREN] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_STAR] = ACTIONS(5624), + [anon_sym_CARET] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym___extension__] = ACTIONS(5622), + [anon_sym_extern] = ACTIONS(5622), + [anon_sym___attribute__] = ACTIONS(5622), + [anon_sym___attribute] = ACTIONS(5622), + [anon_sym_noreturn] = ACTIONS(5622), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym___declspec] = ACTIONS(5622), + [anon_sym___based] = ACTIONS(5622), + [anon_sym_LBRACE] = ACTIONS(5624), + [anon_sym_RBRACE] = ACTIONS(5624), + [anon_sym_signed] = ACTIONS(5622), + [anon_sym_unsigned] = ACTIONS(5622), + [anon_sym_long] = ACTIONS(5622), + [anon_sym_short] = ACTIONS(5622), + [anon_sym_static] = ACTIONS(5622), + [anon_sym_ATautoreleasepool] = ACTIONS(5624), + [anon_sym_auto] = ACTIONS(5622), + [anon_sym_register] = ACTIONS(5622), + [anon_sym_inline] = ACTIONS(5622), + [anon_sym___inline] = ACTIONS(5622), + [anon_sym___inline__] = ACTIONS(5622), + [anon_sym___forceinline] = ACTIONS(5622), + [anon_sym_thread_local] = ACTIONS(5622), + [anon_sym___thread] = ACTIONS(5622), + [anon_sym_CG_EXTERN] = ACTIONS(5622), + [anon_sym_CG_INLINE] = ACTIONS(5622), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5622), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5622), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5622), + [anon_sym_IBOutlet] = ACTIONS(5622), + [anon_sym_IBInspectable] = ACTIONS(5622), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5622), + [anon_sym_NS_INLINE] = ACTIONS(5622), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5622), + [anon_sym_OBJC_EXPORT] = ACTIONS(5622), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5622), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5622), + [anon_sym_const] = ACTIONS(5622), + [anon_sym_constexpr] = ACTIONS(5622), + [anon_sym_volatile] = ACTIONS(5622), + [anon_sym_restrict] = ACTIONS(5622), + [anon_sym___restrict__] = ACTIONS(5622), + [anon_sym__Atomic] = ACTIONS(5622), + [anon_sym__Noreturn] = ACTIONS(5622), + [anon_sym__Nonnull] = ACTIONS(5622), + [anon_sym_nullable] = ACTIONS(5622), + [anon_sym__Complex] = ACTIONS(5622), + [anon_sym__Nullable] = ACTIONS(5622), + [anon_sym__Nullable_result] = ACTIONS(5622), + [anon_sym__Null_unspecified] = ACTIONS(5622), + [anon_sym___autoreleasing] = ACTIONS(5622), + [anon_sym___block] = ACTIONS(5622), + [anon_sym___bridge] = ACTIONS(5622), + [anon_sym___bridge_retained] = ACTIONS(5622), + [anon_sym___bridge_transfer] = ACTIONS(5622), + [anon_sym___complex] = ACTIONS(5622), + [anon_sym___const] = ACTIONS(5622), + [anon_sym___imag] = ACTIONS(5622), + [anon_sym___kindof] = ACTIONS(5622), + [anon_sym___nonnull] = ACTIONS(5622), + [anon_sym___nullable] = ACTIONS(5622), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5622), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5622), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5622), + [anon_sym___real] = ACTIONS(5622), + [anon_sym___strong] = ACTIONS(5622), + [anon_sym___unsafe_unretained] = ACTIONS(5622), + [anon_sym___unused] = ACTIONS(5622), + [anon_sym___weak] = ACTIONS(5622), + [anon_sym_alignas] = ACTIONS(5622), + [anon_sym__Alignas] = ACTIONS(5622), + [sym_primitive_type] = ACTIONS(5622), + [anon_sym_enum] = ACTIONS(5622), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_struct] = ACTIONS(5622), + [anon_sym_union] = ACTIONS(5622), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5622), + [anon_sym___typeof] = ACTIONS(5622), + [anon_sym_typeof] = ACTIONS(5622), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5622), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5622), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5622), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5622), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5622), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5622), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5622), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5622), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5622), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5622), + [anon_sym_NS_AVAILABLE] = ACTIONS(5622), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5622), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5622), + [anon_sym_API_AVAILABLE] = ACTIONS(5622), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5622), + [anon_sym_API_DEPRECATED] = ACTIONS(5622), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5622), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5622), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5622), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5622), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5622), + [anon_sym___deprecated_msg] = ACTIONS(5622), + [anon_sym___deprecated_enum_msg] = ACTIONS(5622), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5622), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5622), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5622), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5622), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5622), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5622), + [anon_sym_ATprotocol] = ACTIONS(5624), + [anon_sym_ATinterface] = ACTIONS(5624), + [anon_sym_ATimplementation] = ACTIONS(5624), + [anon_sym_ATproperty] = ACTIONS(5624), + [anon_sym_BOOL] = ACTIONS(5622), + [anon_sym_IMP] = ACTIONS(5622), + [anon_sym_SEL] = ACTIONS(5622), + [anon_sym_Class] = ACTIONS(5622), + [anon_sym_id] = ACTIONS(5622), + }, + [2372] = { + [sym_identifier] = ACTIONS(2668), + [aux_sym_preproc_def_token1] = ACTIONS(2668), + [aux_sym_preproc_if_token1] = ACTIONS(2668), + [aux_sym_preproc_if_token2] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [sym_preproc_directive] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2670), + [anon_sym_PLUS] = ACTIONS(2670), + [anon_sym___extension__] = ACTIONS(2668), + [anon_sym_typedef] = ACTIONS(2668), + [anon_sym_extern] = ACTIONS(2668), + [anon_sym___attribute__] = ACTIONS(2668), + [anon_sym___attribute] = ACTIONS(2668), + [anon_sym_noreturn] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym___declspec] = ACTIONS(2668), + [anon_sym___cdecl] = ACTIONS(2668), + [anon_sym___clrcall] = ACTIONS(2668), + [anon_sym___stdcall] = ACTIONS(2668), + [anon_sym___fastcall] = ACTIONS(2668), + [anon_sym___thiscall] = ACTIONS(2668), + [anon_sym___vectorcall] = ACTIONS(2668), + [anon_sym_signed] = ACTIONS(2668), + [anon_sym_unsigned] = ACTIONS(2668), + [anon_sym_long] = ACTIONS(2668), + [anon_sym_short] = ACTIONS(2668), + [anon_sym_static] = ACTIONS(2668), + [anon_sym_auto] = ACTIONS(2668), + [anon_sym_register] = ACTIONS(2668), + [anon_sym_inline] = ACTIONS(2668), + [anon_sym___inline] = ACTIONS(2668), + [anon_sym___inline__] = ACTIONS(2668), + [anon_sym___forceinline] = ACTIONS(2668), + [anon_sym_thread_local] = ACTIONS(2668), + [anon_sym___thread] = ACTIONS(2668), + [anon_sym_CG_EXTERN] = ACTIONS(2668), + [anon_sym_CG_INLINE] = ACTIONS(2668), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2668), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2668), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2668), + [anon_sym_IBOutlet] = ACTIONS(2668), + [anon_sym_IBInspectable] = ACTIONS(2668), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2668), + [anon_sym_NS_INLINE] = ACTIONS(2668), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2668), + [anon_sym_OBJC_EXPORT] = ACTIONS(2668), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2668), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2668), + [anon_sym_const] = ACTIONS(2668), + [anon_sym_constexpr] = ACTIONS(2668), + [anon_sym_volatile] = ACTIONS(2668), + [anon_sym_restrict] = ACTIONS(2668), + [anon_sym___restrict__] = ACTIONS(2668), + [anon_sym__Atomic] = ACTIONS(2668), + [anon_sym__Noreturn] = ACTIONS(2668), + [anon_sym__Nonnull] = ACTIONS(2668), + [anon_sym_nullable] = ACTIONS(2668), + [anon_sym__Complex] = ACTIONS(2668), + [anon_sym__Nullable] = ACTIONS(2668), + [anon_sym__Nullable_result] = ACTIONS(2668), + [anon_sym__Null_unspecified] = ACTIONS(2668), + [anon_sym___autoreleasing] = ACTIONS(2668), + [anon_sym___block] = ACTIONS(2668), + [anon_sym___bridge] = ACTIONS(2668), + [anon_sym___bridge_retained] = ACTIONS(2668), + [anon_sym___bridge_transfer] = ACTIONS(2668), + [anon_sym___complex] = ACTIONS(2668), + [anon_sym___const] = ACTIONS(2668), + [anon_sym___imag] = ACTIONS(2668), + [anon_sym___kindof] = ACTIONS(2668), + [anon_sym___nonnull] = ACTIONS(2668), + [anon_sym___nullable] = ACTIONS(2668), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2668), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2668), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2668), + [anon_sym___real] = ACTIONS(2668), + [anon_sym___strong] = ACTIONS(2668), + [anon_sym___unsafe_unretained] = ACTIONS(2668), + [anon_sym___unused] = ACTIONS(2668), + [anon_sym___weak] = ACTIONS(2668), + [anon_sym_alignas] = ACTIONS(2668), + [anon_sym__Alignas] = ACTIONS(2668), + [sym_primitive_type] = ACTIONS(2668), + [anon_sym_enum] = ACTIONS(2668), + [anon_sym_struct] = ACTIONS(2668), + [anon_sym_union] = ACTIONS(2668), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2668), + [anon_sym___typeof] = ACTIONS(2668), + [anon_sym_typeof] = ACTIONS(2668), + [aux_sym_preproc_undef_token1] = ACTIONS(2668), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2668), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2668), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2668), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2668), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2668), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2668), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2668), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2668), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2668), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2668), + [anon_sym_NS_AVAILABLE] = ACTIONS(2668), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2668), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2668), + [anon_sym_API_AVAILABLE] = ACTIONS(2668), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2668), + [anon_sym_API_DEPRECATED] = ACTIONS(2668), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2668), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2668), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2668), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2668), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2668), + [anon_sym___deprecated_msg] = ACTIONS(2668), + [anon_sym___deprecated_enum_msg] = ACTIONS(2668), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2668), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2668), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2668), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2668), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2668), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2668), + [anon_sym_ATsynthesize] = ACTIONS(2670), + [anon_sym_ATdynamic] = ACTIONS(2670), + [anon_sym_BOOL] = ACTIONS(2668), + [anon_sym_IMP] = ACTIONS(2668), + [anon_sym_SEL] = ACTIONS(2668), + [anon_sym_Class] = ACTIONS(2668), + [anon_sym_id] = ACTIONS(2668), + }, + [2373] = { + [sym_identifier] = ACTIONS(5626), + [anon_sym_COMMA] = ACTIONS(5628), + [anon_sym_RPAREN] = ACTIONS(5628), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5628), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5628), + [anon_sym_LPAREN2] = ACTIONS(5628), + [anon_sym_STAR] = ACTIONS(5628), + [anon_sym_CARET] = ACTIONS(5628), + [anon_sym_GT] = ACTIONS(5628), + [anon_sym_SEMI] = ACTIONS(5628), + [anon_sym___extension__] = ACTIONS(5626), + [anon_sym_extern] = ACTIONS(5626), + [anon_sym___attribute__] = ACTIONS(5626), + [anon_sym___attribute] = ACTIONS(5626), + [anon_sym_noreturn] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5628), + [anon_sym___declspec] = ACTIONS(5626), + [anon_sym___based] = ACTIONS(5626), + [anon_sym_LBRACE] = ACTIONS(5628), + [anon_sym_RBRACE] = ACTIONS(5628), + [anon_sym_signed] = ACTIONS(5626), + [anon_sym_unsigned] = ACTIONS(5626), + [anon_sym_long] = ACTIONS(5626), + [anon_sym_short] = ACTIONS(5626), + [anon_sym_static] = ACTIONS(5626), + [anon_sym_ATautoreleasepool] = ACTIONS(5628), + [anon_sym_auto] = ACTIONS(5626), + [anon_sym_register] = ACTIONS(5626), + [anon_sym_inline] = ACTIONS(5626), + [anon_sym___inline] = ACTIONS(5626), + [anon_sym___inline__] = ACTIONS(5626), + [anon_sym___forceinline] = ACTIONS(5626), + [anon_sym_thread_local] = ACTIONS(5626), + [anon_sym___thread] = ACTIONS(5626), + [anon_sym_CG_EXTERN] = ACTIONS(5626), + [anon_sym_CG_INLINE] = ACTIONS(5626), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5626), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5626), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5626), + [anon_sym_IBOutlet] = ACTIONS(5626), + [anon_sym_IBInspectable] = ACTIONS(5626), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5626), + [anon_sym_NS_INLINE] = ACTIONS(5626), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5626), + [anon_sym_OBJC_EXPORT] = ACTIONS(5626), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5626), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5626), + [anon_sym_const] = ACTIONS(5626), + [anon_sym_constexpr] = ACTIONS(5626), + [anon_sym_volatile] = ACTIONS(5626), + [anon_sym_restrict] = ACTIONS(5626), + [anon_sym___restrict__] = ACTIONS(5626), + [anon_sym__Atomic] = ACTIONS(5626), + [anon_sym__Noreturn] = ACTIONS(5626), + [anon_sym__Nonnull] = ACTIONS(5626), + [anon_sym_nullable] = ACTIONS(5626), + [anon_sym__Complex] = ACTIONS(5626), + [anon_sym__Nullable] = ACTIONS(5626), + [anon_sym__Nullable_result] = ACTIONS(5626), + [anon_sym__Null_unspecified] = ACTIONS(5626), + [anon_sym___autoreleasing] = ACTIONS(5626), + [anon_sym___block] = ACTIONS(5626), + [anon_sym___bridge] = ACTIONS(5626), + [anon_sym___bridge_retained] = ACTIONS(5626), + [anon_sym___bridge_transfer] = ACTIONS(5626), + [anon_sym___complex] = ACTIONS(5626), + [anon_sym___const] = ACTIONS(5626), + [anon_sym___imag] = ACTIONS(5626), + [anon_sym___kindof] = ACTIONS(5626), + [anon_sym___nonnull] = ACTIONS(5626), + [anon_sym___nullable] = ACTIONS(5626), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5626), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5626), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5626), + [anon_sym___real] = ACTIONS(5626), + [anon_sym___strong] = ACTIONS(5626), + [anon_sym___unsafe_unretained] = ACTIONS(5626), + [anon_sym___unused] = ACTIONS(5626), + [anon_sym___weak] = ACTIONS(5626), + [anon_sym_alignas] = ACTIONS(5626), + [anon_sym__Alignas] = ACTIONS(5626), + [sym_primitive_type] = ACTIONS(5626), + [anon_sym_enum] = ACTIONS(5626), + [anon_sym_COLON] = ACTIONS(5628), + [anon_sym_struct] = ACTIONS(5626), + [anon_sym_union] = ACTIONS(5626), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5626), + [anon_sym___typeof] = ACTIONS(5626), + [anon_sym_typeof] = ACTIONS(5626), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5626), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5626), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5626), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5626), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5626), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5626), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5626), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5626), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5626), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5626), + [anon_sym_NS_AVAILABLE] = ACTIONS(5626), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5626), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5626), + [anon_sym_API_AVAILABLE] = ACTIONS(5626), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5626), + [anon_sym_API_DEPRECATED] = ACTIONS(5626), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5626), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5626), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5626), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5626), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5626), + [anon_sym___deprecated_msg] = ACTIONS(5626), + [anon_sym___deprecated_enum_msg] = ACTIONS(5626), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5626), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5626), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5626), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5626), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5626), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5626), + [anon_sym_ATprotocol] = ACTIONS(5628), + [anon_sym_ATinterface] = ACTIONS(5628), + [anon_sym_ATimplementation] = ACTIONS(5628), + [anon_sym_ATproperty] = ACTIONS(5628), + [anon_sym_BOOL] = ACTIONS(5626), + [anon_sym_IMP] = ACTIONS(5626), + [anon_sym_SEL] = ACTIONS(5626), + [anon_sym_Class] = ACTIONS(5626), + [anon_sym_id] = ACTIONS(5626), + }, + [2374] = { + [sym_identifier] = ACTIONS(5322), + [aux_sym_preproc_def_token1] = ACTIONS(5322), + [aux_sym_preproc_if_token1] = ACTIONS(5322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5322), + [sym_preproc_directive] = ACTIONS(5322), + [anon_sym_DASH] = ACTIONS(5324), + [anon_sym_PLUS] = ACTIONS(5324), + [anon_sym___extension__] = ACTIONS(5322), + [anon_sym_typedef] = ACTIONS(5322), + [anon_sym_extern] = ACTIONS(5322), + [anon_sym___attribute__] = ACTIONS(5322), + [anon_sym___attribute] = ACTIONS(5322), + [anon_sym_noreturn] = ACTIONS(5322), + [anon_sym_LBRACK] = ACTIONS(5324), + [anon_sym___declspec] = ACTIONS(5322), + [anon_sym___cdecl] = ACTIONS(5322), + [anon_sym___clrcall] = ACTIONS(5322), + [anon_sym___stdcall] = ACTIONS(5322), + [anon_sym___fastcall] = ACTIONS(5322), + [anon_sym___thiscall] = ACTIONS(5322), + [anon_sym___vectorcall] = ACTIONS(5322), + [anon_sym_signed] = ACTIONS(5322), + [anon_sym_unsigned] = ACTIONS(5322), + [anon_sym_long] = ACTIONS(5322), + [anon_sym_short] = ACTIONS(5322), + [anon_sym_static] = ACTIONS(5322), + [anon_sym_auto] = ACTIONS(5322), + [anon_sym_register] = ACTIONS(5322), + [anon_sym_inline] = ACTIONS(5322), + [anon_sym___inline] = ACTIONS(5322), + [anon_sym___inline__] = ACTIONS(5322), + [anon_sym___forceinline] = ACTIONS(5322), + [anon_sym_thread_local] = ACTIONS(5322), + [anon_sym___thread] = ACTIONS(5322), + [anon_sym_CG_EXTERN] = ACTIONS(5322), + [anon_sym_CG_INLINE] = ACTIONS(5322), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5322), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5322), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5322), + [anon_sym_IBOutlet] = ACTIONS(5322), + [anon_sym_IBInspectable] = ACTIONS(5322), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5322), + [anon_sym_NS_INLINE] = ACTIONS(5322), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5322), + [anon_sym_OBJC_EXPORT] = ACTIONS(5322), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5322), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5322), + [anon_sym_const] = ACTIONS(5322), + [anon_sym_constexpr] = ACTIONS(5322), + [anon_sym_volatile] = ACTIONS(5322), + [anon_sym_restrict] = ACTIONS(5322), + [anon_sym___restrict__] = ACTIONS(5322), + [anon_sym__Atomic] = ACTIONS(5322), + [anon_sym__Noreturn] = ACTIONS(5322), + [anon_sym__Nonnull] = ACTIONS(5322), + [anon_sym_nullable] = ACTIONS(5322), + [anon_sym__Complex] = ACTIONS(5322), + [anon_sym__Nullable] = ACTIONS(5322), + [anon_sym__Nullable_result] = ACTIONS(5322), + [anon_sym__Null_unspecified] = ACTIONS(5322), + [anon_sym___autoreleasing] = ACTIONS(5322), + [anon_sym___block] = ACTIONS(5322), + [anon_sym___bridge] = ACTIONS(5322), + [anon_sym___bridge_retained] = ACTIONS(5322), + [anon_sym___bridge_transfer] = ACTIONS(5322), + [anon_sym___complex] = ACTIONS(5322), + [anon_sym___const] = ACTIONS(5322), + [anon_sym___imag] = ACTIONS(5322), + [anon_sym___kindof] = ACTIONS(5322), + [anon_sym___nonnull] = ACTIONS(5322), + [anon_sym___nullable] = ACTIONS(5322), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5322), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5322), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5322), + [anon_sym___real] = ACTIONS(5322), + [anon_sym___strong] = ACTIONS(5322), + [anon_sym___unsafe_unretained] = ACTIONS(5322), + [anon_sym___unused] = ACTIONS(5322), + [anon_sym___weak] = ACTIONS(5322), + [anon_sym_alignas] = ACTIONS(5322), + [anon_sym__Alignas] = ACTIONS(5322), + [sym_primitive_type] = ACTIONS(5322), + [anon_sym_enum] = ACTIONS(5322), + [anon_sym_struct] = ACTIONS(5322), + [anon_sym_union] = ACTIONS(5322), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5322), + [anon_sym___typeof] = ACTIONS(5322), + [anon_sym_typeof] = ACTIONS(5322), + [aux_sym_preproc_undef_token1] = ACTIONS(5322), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5322), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5322), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5322), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5322), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5322), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5322), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5322), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5322), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5322), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5322), + [anon_sym_NS_AVAILABLE] = ACTIONS(5322), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5322), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5322), + [anon_sym_API_AVAILABLE] = ACTIONS(5322), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5322), + [anon_sym_API_DEPRECATED] = ACTIONS(5322), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5322), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5322), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5322), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5322), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5322), + [anon_sym___deprecated_msg] = ACTIONS(5322), + [anon_sym___deprecated_enum_msg] = ACTIONS(5322), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5322), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5322), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5322), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5322), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5322), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5322), + [anon_sym_ATend] = ACTIONS(5324), + [anon_sym_ATsynthesize] = ACTIONS(5324), + [anon_sym_ATdynamic] = ACTIONS(5324), + [anon_sym_BOOL] = ACTIONS(5322), + [anon_sym_IMP] = ACTIONS(5322), + [anon_sym_SEL] = ACTIONS(5322), + [anon_sym_Class] = ACTIONS(5322), + [anon_sym_id] = ACTIONS(5322), + }, + [2375] = { + [sym_identifier] = ACTIONS(5403), + [aux_sym_preproc_def_token1] = ACTIONS(5403), + [aux_sym_preproc_if_token1] = ACTIONS(5403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5403), + [sym_preproc_directive] = ACTIONS(5403), + [anon_sym_DASH] = ACTIONS(5405), + [anon_sym_PLUS] = ACTIONS(5405), + [anon_sym___extension__] = ACTIONS(5403), + [anon_sym_typedef] = ACTIONS(5403), + [anon_sym_extern] = ACTIONS(5403), + [anon_sym___attribute__] = ACTIONS(5403), + [anon_sym___attribute] = ACTIONS(5403), + [anon_sym_noreturn] = ACTIONS(5403), + [anon_sym_LBRACK] = ACTIONS(5405), + [anon_sym___declspec] = ACTIONS(5403), + [anon_sym___cdecl] = ACTIONS(5403), + [anon_sym___clrcall] = ACTIONS(5403), + [anon_sym___stdcall] = ACTIONS(5403), + [anon_sym___fastcall] = ACTIONS(5403), + [anon_sym___thiscall] = ACTIONS(5403), + [anon_sym___vectorcall] = ACTIONS(5403), + [anon_sym_signed] = ACTIONS(5403), + [anon_sym_unsigned] = ACTIONS(5403), + [anon_sym_long] = ACTIONS(5403), + [anon_sym_short] = ACTIONS(5403), + [anon_sym_static] = ACTIONS(5403), + [anon_sym_auto] = ACTIONS(5403), + [anon_sym_register] = ACTIONS(5403), + [anon_sym_inline] = ACTIONS(5403), + [anon_sym___inline] = ACTIONS(5403), + [anon_sym___inline__] = ACTIONS(5403), + [anon_sym___forceinline] = ACTIONS(5403), + [anon_sym_thread_local] = ACTIONS(5403), + [anon_sym___thread] = ACTIONS(5403), + [anon_sym_CG_EXTERN] = ACTIONS(5403), + [anon_sym_CG_INLINE] = ACTIONS(5403), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5403), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5403), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5403), + [anon_sym_IBOutlet] = ACTIONS(5403), + [anon_sym_IBInspectable] = ACTIONS(5403), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5403), + [anon_sym_NS_INLINE] = ACTIONS(5403), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5403), + [anon_sym_OBJC_EXPORT] = ACTIONS(5403), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5403), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5403), + [anon_sym_const] = ACTIONS(5403), + [anon_sym_constexpr] = ACTIONS(5403), + [anon_sym_volatile] = ACTIONS(5403), + [anon_sym_restrict] = ACTIONS(5403), + [anon_sym___restrict__] = ACTIONS(5403), + [anon_sym__Atomic] = ACTIONS(5403), + [anon_sym__Noreturn] = ACTIONS(5403), + [anon_sym__Nonnull] = ACTIONS(5403), + [anon_sym_nullable] = ACTIONS(5403), + [anon_sym__Complex] = ACTIONS(5403), + [anon_sym__Nullable] = ACTIONS(5403), + [anon_sym__Nullable_result] = ACTIONS(5403), + [anon_sym__Null_unspecified] = ACTIONS(5403), + [anon_sym___autoreleasing] = ACTIONS(5403), + [anon_sym___block] = ACTIONS(5403), + [anon_sym___bridge] = ACTIONS(5403), + [anon_sym___bridge_retained] = ACTIONS(5403), + [anon_sym___bridge_transfer] = ACTIONS(5403), + [anon_sym___complex] = ACTIONS(5403), + [anon_sym___const] = ACTIONS(5403), + [anon_sym___imag] = ACTIONS(5403), + [anon_sym___kindof] = ACTIONS(5403), + [anon_sym___nonnull] = ACTIONS(5403), + [anon_sym___nullable] = ACTIONS(5403), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5403), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5403), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5403), + [anon_sym___real] = ACTIONS(5403), + [anon_sym___strong] = ACTIONS(5403), + [anon_sym___unsafe_unretained] = ACTIONS(5403), + [anon_sym___unused] = ACTIONS(5403), + [anon_sym___weak] = ACTIONS(5403), + [anon_sym_alignas] = ACTIONS(5403), + [anon_sym__Alignas] = ACTIONS(5403), + [sym_primitive_type] = ACTIONS(5403), + [anon_sym_enum] = ACTIONS(5403), + [anon_sym_struct] = ACTIONS(5403), + [anon_sym_union] = ACTIONS(5403), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5403), + [anon_sym___typeof] = ACTIONS(5403), + [anon_sym_typeof] = ACTIONS(5403), + [aux_sym_preproc_undef_token1] = ACTIONS(5403), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5403), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5403), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5403), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5403), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5403), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5403), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5403), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5403), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5403), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5403), + [anon_sym_NS_AVAILABLE] = ACTIONS(5403), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5403), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5403), + [anon_sym_API_AVAILABLE] = ACTIONS(5403), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5403), + [anon_sym_API_DEPRECATED] = ACTIONS(5403), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5403), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5403), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5403), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5403), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5403), + [anon_sym___deprecated_msg] = ACTIONS(5403), + [anon_sym___deprecated_enum_msg] = ACTIONS(5403), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5403), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5403), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5403), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5403), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5403), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5403), + [anon_sym_ATend] = ACTIONS(5405), + [anon_sym_ATsynthesize] = ACTIONS(5405), + [anon_sym_ATdynamic] = ACTIONS(5405), + [anon_sym_BOOL] = ACTIONS(5403), + [anon_sym_IMP] = ACTIONS(5403), + [anon_sym_SEL] = ACTIONS(5403), + [anon_sym_Class] = ACTIONS(5403), + [anon_sym_id] = ACTIONS(5403), + }, + [2376] = { + [sym_identifier] = ACTIONS(5469), + [aux_sym_preproc_def_token1] = ACTIONS(5469), + [aux_sym_preproc_if_token1] = ACTIONS(5469), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5469), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5469), + [sym_preproc_directive] = ACTIONS(5469), + [anon_sym_DASH] = ACTIONS(5471), + [anon_sym_PLUS] = ACTIONS(5471), + [anon_sym___extension__] = ACTIONS(5469), + [anon_sym_typedef] = ACTIONS(5469), + [anon_sym_extern] = ACTIONS(5469), + [anon_sym___attribute__] = ACTIONS(5469), + [anon_sym___attribute] = ACTIONS(5469), + [anon_sym_noreturn] = ACTIONS(5469), + [anon_sym_LBRACK] = ACTIONS(5471), + [anon_sym___declspec] = ACTIONS(5469), + [anon_sym___cdecl] = ACTIONS(5469), + [anon_sym___clrcall] = ACTIONS(5469), + [anon_sym___stdcall] = ACTIONS(5469), + [anon_sym___fastcall] = ACTIONS(5469), + [anon_sym___thiscall] = ACTIONS(5469), + [anon_sym___vectorcall] = ACTIONS(5469), + [anon_sym_signed] = ACTIONS(5469), + [anon_sym_unsigned] = ACTIONS(5469), + [anon_sym_long] = ACTIONS(5469), + [anon_sym_short] = ACTIONS(5469), + [anon_sym_static] = ACTIONS(5469), + [anon_sym_auto] = ACTIONS(5469), + [anon_sym_register] = ACTIONS(5469), + [anon_sym_inline] = ACTIONS(5469), + [anon_sym___inline] = ACTIONS(5469), + [anon_sym___inline__] = ACTIONS(5469), + [anon_sym___forceinline] = ACTIONS(5469), + [anon_sym_thread_local] = ACTIONS(5469), + [anon_sym___thread] = ACTIONS(5469), + [anon_sym_CG_EXTERN] = ACTIONS(5469), + [anon_sym_CG_INLINE] = ACTIONS(5469), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5469), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5469), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5469), + [anon_sym_IBOutlet] = ACTIONS(5469), + [anon_sym_IBInspectable] = ACTIONS(5469), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5469), + [anon_sym_NS_INLINE] = ACTIONS(5469), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5469), + [anon_sym_OBJC_EXPORT] = ACTIONS(5469), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5469), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5469), + [anon_sym_const] = ACTIONS(5469), + [anon_sym_constexpr] = ACTIONS(5469), + [anon_sym_volatile] = ACTIONS(5469), + [anon_sym_restrict] = ACTIONS(5469), + [anon_sym___restrict__] = ACTIONS(5469), + [anon_sym__Atomic] = ACTIONS(5469), + [anon_sym__Noreturn] = ACTIONS(5469), + [anon_sym__Nonnull] = ACTIONS(5469), + [anon_sym_nullable] = ACTIONS(5469), + [anon_sym__Complex] = ACTIONS(5469), + [anon_sym__Nullable] = ACTIONS(5469), + [anon_sym__Nullable_result] = ACTIONS(5469), + [anon_sym__Null_unspecified] = ACTIONS(5469), + [anon_sym___autoreleasing] = ACTIONS(5469), + [anon_sym___block] = ACTIONS(5469), + [anon_sym___bridge] = ACTIONS(5469), + [anon_sym___bridge_retained] = ACTIONS(5469), + [anon_sym___bridge_transfer] = ACTIONS(5469), + [anon_sym___complex] = ACTIONS(5469), + [anon_sym___const] = ACTIONS(5469), + [anon_sym___imag] = ACTIONS(5469), + [anon_sym___kindof] = ACTIONS(5469), + [anon_sym___nonnull] = ACTIONS(5469), + [anon_sym___nullable] = ACTIONS(5469), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5469), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5469), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5469), + [anon_sym___real] = ACTIONS(5469), + [anon_sym___strong] = ACTIONS(5469), + [anon_sym___unsafe_unretained] = ACTIONS(5469), + [anon_sym___unused] = ACTIONS(5469), + [anon_sym___weak] = ACTIONS(5469), + [anon_sym_alignas] = ACTIONS(5469), + [anon_sym__Alignas] = ACTIONS(5469), + [sym_primitive_type] = ACTIONS(5469), + [anon_sym_enum] = ACTIONS(5469), + [anon_sym_struct] = ACTIONS(5469), + [anon_sym_union] = ACTIONS(5469), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5469), + [anon_sym___typeof] = ACTIONS(5469), + [anon_sym_typeof] = ACTIONS(5469), + [aux_sym_preproc_undef_token1] = ACTIONS(5469), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5469), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5469), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5469), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5469), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5469), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5469), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5469), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5469), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5469), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5469), + [anon_sym_NS_AVAILABLE] = ACTIONS(5469), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5469), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5469), + [anon_sym_API_AVAILABLE] = ACTIONS(5469), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5469), + [anon_sym_API_DEPRECATED] = ACTIONS(5469), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5469), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5469), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5469), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5469), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5469), + [anon_sym___deprecated_msg] = ACTIONS(5469), + [anon_sym___deprecated_enum_msg] = ACTIONS(5469), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5469), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5469), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5469), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5469), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5469), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5469), + [anon_sym_ATend] = ACTIONS(5471), + [anon_sym_ATsynthesize] = ACTIONS(5471), + [anon_sym_ATdynamic] = ACTIONS(5471), + [anon_sym_BOOL] = ACTIONS(5469), + [anon_sym_IMP] = ACTIONS(5469), + [anon_sym_SEL] = ACTIONS(5469), + [anon_sym_Class] = ACTIONS(5469), + [anon_sym_id] = ACTIONS(5469), + }, + [2377] = { + [sym_identifier] = ACTIONS(5397), + [aux_sym_preproc_def_token1] = ACTIONS(5397), + [aux_sym_preproc_if_token1] = ACTIONS(5397), + [aux_sym_preproc_if_token2] = ACTIONS(5397), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5397), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5397), + [sym_preproc_directive] = ACTIONS(5397), + [anon_sym_DASH] = ACTIONS(5399), + [anon_sym_PLUS] = ACTIONS(5399), + [anon_sym___extension__] = ACTIONS(5397), + [anon_sym_typedef] = ACTIONS(5397), + [anon_sym_extern] = ACTIONS(5397), + [anon_sym___attribute__] = ACTIONS(5397), + [anon_sym___attribute] = ACTIONS(5397), + [anon_sym_noreturn] = ACTIONS(5397), + [anon_sym_LBRACK] = ACTIONS(5399), + [anon_sym___declspec] = ACTIONS(5397), + [anon_sym___cdecl] = ACTIONS(5397), + [anon_sym___clrcall] = ACTIONS(5397), + [anon_sym___stdcall] = ACTIONS(5397), + [anon_sym___fastcall] = ACTIONS(5397), + [anon_sym___thiscall] = ACTIONS(5397), + [anon_sym___vectorcall] = ACTIONS(5397), + [anon_sym_signed] = ACTIONS(5397), + [anon_sym_unsigned] = ACTIONS(5397), + [anon_sym_long] = ACTIONS(5397), + [anon_sym_short] = ACTIONS(5397), + [anon_sym_static] = ACTIONS(5397), + [anon_sym_auto] = ACTIONS(5397), + [anon_sym_register] = ACTIONS(5397), + [anon_sym_inline] = ACTIONS(5397), + [anon_sym___inline] = ACTIONS(5397), + [anon_sym___inline__] = ACTIONS(5397), + [anon_sym___forceinline] = ACTIONS(5397), + [anon_sym_thread_local] = ACTIONS(5397), + [anon_sym___thread] = ACTIONS(5397), + [anon_sym_CG_EXTERN] = ACTIONS(5397), + [anon_sym_CG_INLINE] = ACTIONS(5397), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5397), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5397), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5397), + [anon_sym_IBOutlet] = ACTIONS(5397), + [anon_sym_IBInspectable] = ACTIONS(5397), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5397), + [anon_sym_NS_INLINE] = ACTIONS(5397), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5397), + [anon_sym_OBJC_EXPORT] = ACTIONS(5397), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5397), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5397), + [anon_sym_const] = ACTIONS(5397), + [anon_sym_constexpr] = ACTIONS(5397), + [anon_sym_volatile] = ACTIONS(5397), + [anon_sym_restrict] = ACTIONS(5397), + [anon_sym___restrict__] = ACTIONS(5397), + [anon_sym__Atomic] = ACTIONS(5397), + [anon_sym__Noreturn] = ACTIONS(5397), + [anon_sym__Nonnull] = ACTIONS(5397), + [anon_sym_nullable] = ACTIONS(5397), + [anon_sym__Complex] = ACTIONS(5397), + [anon_sym__Nullable] = ACTIONS(5397), + [anon_sym__Nullable_result] = ACTIONS(5397), + [anon_sym__Null_unspecified] = ACTIONS(5397), + [anon_sym___autoreleasing] = ACTIONS(5397), + [anon_sym___block] = ACTIONS(5397), + [anon_sym___bridge] = ACTIONS(5397), + [anon_sym___bridge_retained] = ACTIONS(5397), + [anon_sym___bridge_transfer] = ACTIONS(5397), + [anon_sym___complex] = ACTIONS(5397), + [anon_sym___const] = ACTIONS(5397), + [anon_sym___imag] = ACTIONS(5397), + [anon_sym___kindof] = ACTIONS(5397), + [anon_sym___nonnull] = ACTIONS(5397), + [anon_sym___nullable] = ACTIONS(5397), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5397), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5397), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5397), + [anon_sym___real] = ACTIONS(5397), + [anon_sym___strong] = ACTIONS(5397), + [anon_sym___unsafe_unretained] = ACTIONS(5397), + [anon_sym___unused] = ACTIONS(5397), + [anon_sym___weak] = ACTIONS(5397), + [anon_sym_alignas] = ACTIONS(5397), + [anon_sym__Alignas] = ACTIONS(5397), + [sym_primitive_type] = ACTIONS(5397), + [anon_sym_enum] = ACTIONS(5397), + [anon_sym_struct] = ACTIONS(5397), + [anon_sym_union] = ACTIONS(5397), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5397), + [anon_sym___typeof] = ACTIONS(5397), + [anon_sym_typeof] = ACTIONS(5397), + [aux_sym_preproc_undef_token1] = ACTIONS(5397), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5397), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5397), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5397), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5397), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5397), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5397), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5397), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5397), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5397), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5397), + [anon_sym_NS_AVAILABLE] = ACTIONS(5397), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5397), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5397), + [anon_sym_API_AVAILABLE] = ACTIONS(5397), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5397), + [anon_sym_API_DEPRECATED] = ACTIONS(5397), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5397), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5397), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5397), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5397), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5397), + [anon_sym___deprecated_msg] = ACTIONS(5397), + [anon_sym___deprecated_enum_msg] = ACTIONS(5397), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5397), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5397), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5397), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5397), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5397), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5397), + [anon_sym_ATsynthesize] = ACTIONS(5399), + [anon_sym_ATdynamic] = ACTIONS(5399), + [anon_sym_BOOL] = ACTIONS(5397), + [anon_sym_IMP] = ACTIONS(5397), + [anon_sym_SEL] = ACTIONS(5397), + [anon_sym_Class] = ACTIONS(5397), + [anon_sym_id] = ACTIONS(5397), + }, + [2378] = { + [sym_identifier] = ACTIONS(5465), + [aux_sym_preproc_def_token1] = ACTIONS(5465), + [aux_sym_preproc_if_token1] = ACTIONS(5465), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5465), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5465), + [sym_preproc_directive] = ACTIONS(5465), + [anon_sym_DASH] = ACTIONS(5467), + [anon_sym_PLUS] = ACTIONS(5467), + [anon_sym___extension__] = ACTIONS(5465), + [anon_sym_typedef] = ACTIONS(5465), + [anon_sym_extern] = ACTIONS(5465), + [anon_sym___attribute__] = ACTIONS(5465), + [anon_sym___attribute] = ACTIONS(5465), + [anon_sym_noreturn] = ACTIONS(5465), + [anon_sym_LBRACK] = ACTIONS(5467), + [anon_sym___declspec] = ACTIONS(5465), + [anon_sym___cdecl] = ACTIONS(5465), + [anon_sym___clrcall] = ACTIONS(5465), + [anon_sym___stdcall] = ACTIONS(5465), + [anon_sym___fastcall] = ACTIONS(5465), + [anon_sym___thiscall] = ACTIONS(5465), + [anon_sym___vectorcall] = ACTIONS(5465), + [anon_sym_signed] = ACTIONS(5465), + [anon_sym_unsigned] = ACTIONS(5465), + [anon_sym_long] = ACTIONS(5465), + [anon_sym_short] = ACTIONS(5465), + [anon_sym_static] = ACTIONS(5465), + [anon_sym_auto] = ACTIONS(5465), + [anon_sym_register] = ACTIONS(5465), + [anon_sym_inline] = ACTIONS(5465), + [anon_sym___inline] = ACTIONS(5465), + [anon_sym___inline__] = ACTIONS(5465), + [anon_sym___forceinline] = ACTIONS(5465), + [anon_sym_thread_local] = ACTIONS(5465), + [anon_sym___thread] = ACTIONS(5465), + [anon_sym_CG_EXTERN] = ACTIONS(5465), + [anon_sym_CG_INLINE] = ACTIONS(5465), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5465), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5465), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5465), + [anon_sym_IBOutlet] = ACTIONS(5465), + [anon_sym_IBInspectable] = ACTIONS(5465), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5465), + [anon_sym_NS_INLINE] = ACTIONS(5465), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5465), + [anon_sym_OBJC_EXPORT] = ACTIONS(5465), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5465), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5465), + [anon_sym_const] = ACTIONS(5465), + [anon_sym_constexpr] = ACTIONS(5465), + [anon_sym_volatile] = ACTIONS(5465), + [anon_sym_restrict] = ACTIONS(5465), + [anon_sym___restrict__] = ACTIONS(5465), + [anon_sym__Atomic] = ACTIONS(5465), + [anon_sym__Noreturn] = ACTIONS(5465), + [anon_sym__Nonnull] = ACTIONS(5465), + [anon_sym_nullable] = ACTIONS(5465), + [anon_sym__Complex] = ACTIONS(5465), + [anon_sym__Nullable] = ACTIONS(5465), + [anon_sym__Nullable_result] = ACTIONS(5465), + [anon_sym__Null_unspecified] = ACTIONS(5465), + [anon_sym___autoreleasing] = ACTIONS(5465), + [anon_sym___block] = ACTIONS(5465), + [anon_sym___bridge] = ACTIONS(5465), + [anon_sym___bridge_retained] = ACTIONS(5465), + [anon_sym___bridge_transfer] = ACTIONS(5465), + [anon_sym___complex] = ACTIONS(5465), + [anon_sym___const] = ACTIONS(5465), + [anon_sym___imag] = ACTIONS(5465), + [anon_sym___kindof] = ACTIONS(5465), + [anon_sym___nonnull] = ACTIONS(5465), + [anon_sym___nullable] = ACTIONS(5465), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5465), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5465), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5465), + [anon_sym___real] = ACTIONS(5465), + [anon_sym___strong] = ACTIONS(5465), + [anon_sym___unsafe_unretained] = ACTIONS(5465), + [anon_sym___unused] = ACTIONS(5465), + [anon_sym___weak] = ACTIONS(5465), + [anon_sym_alignas] = ACTIONS(5465), + [anon_sym__Alignas] = ACTIONS(5465), + [sym_primitive_type] = ACTIONS(5465), + [anon_sym_enum] = ACTIONS(5465), + [anon_sym_struct] = ACTIONS(5465), + [anon_sym_union] = ACTIONS(5465), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5465), + [anon_sym___typeof] = ACTIONS(5465), + [anon_sym_typeof] = ACTIONS(5465), + [aux_sym_preproc_undef_token1] = ACTIONS(5465), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5465), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5465), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5465), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5465), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5465), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5465), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5465), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5465), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5465), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5465), + [anon_sym_NS_AVAILABLE] = ACTIONS(5465), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5465), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5465), + [anon_sym_API_AVAILABLE] = ACTIONS(5465), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5465), + [anon_sym_API_DEPRECATED] = ACTIONS(5465), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5465), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5465), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5465), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5465), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5465), + [anon_sym___deprecated_msg] = ACTIONS(5465), + [anon_sym___deprecated_enum_msg] = ACTIONS(5465), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5465), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5465), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5465), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5465), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5465), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5465), + [anon_sym_ATend] = ACTIONS(5467), + [anon_sym_ATsynthesize] = ACTIONS(5467), + [anon_sym_ATdynamic] = ACTIONS(5467), + [anon_sym_BOOL] = ACTIONS(5465), + [anon_sym_IMP] = ACTIONS(5465), + [anon_sym_SEL] = ACTIONS(5465), + [anon_sym_Class] = ACTIONS(5465), + [anon_sym_id] = ACTIONS(5465), + }, + [2379] = { + [sym_identifier] = ACTIONS(5310), + [aux_sym_preproc_def_token1] = ACTIONS(5310), + [aux_sym_preproc_if_token1] = ACTIONS(5310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5310), + [sym_preproc_directive] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5312), + [anon_sym_PLUS] = ACTIONS(5312), + [anon_sym___extension__] = ACTIONS(5310), + [anon_sym_typedef] = ACTIONS(5310), + [anon_sym_extern] = ACTIONS(5310), + [anon_sym___attribute__] = ACTIONS(5310), + [anon_sym___attribute] = ACTIONS(5310), + [anon_sym_noreturn] = ACTIONS(5310), + [anon_sym_LBRACK] = ACTIONS(5312), + [anon_sym___declspec] = ACTIONS(5310), + [anon_sym___cdecl] = ACTIONS(5310), + [anon_sym___clrcall] = ACTIONS(5310), + [anon_sym___stdcall] = ACTIONS(5310), + [anon_sym___fastcall] = ACTIONS(5310), + [anon_sym___thiscall] = ACTIONS(5310), + [anon_sym___vectorcall] = ACTIONS(5310), + [anon_sym_signed] = ACTIONS(5310), + [anon_sym_unsigned] = ACTIONS(5310), + [anon_sym_long] = ACTIONS(5310), + [anon_sym_short] = ACTIONS(5310), + [anon_sym_static] = ACTIONS(5310), + [anon_sym_auto] = ACTIONS(5310), + [anon_sym_register] = ACTIONS(5310), + [anon_sym_inline] = ACTIONS(5310), + [anon_sym___inline] = ACTIONS(5310), + [anon_sym___inline__] = ACTIONS(5310), + [anon_sym___forceinline] = ACTIONS(5310), + [anon_sym_thread_local] = ACTIONS(5310), + [anon_sym___thread] = ACTIONS(5310), + [anon_sym_CG_EXTERN] = ACTIONS(5310), + [anon_sym_CG_INLINE] = ACTIONS(5310), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5310), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5310), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5310), + [anon_sym_IBOutlet] = ACTIONS(5310), + [anon_sym_IBInspectable] = ACTIONS(5310), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5310), + [anon_sym_NS_INLINE] = ACTIONS(5310), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5310), + [anon_sym_OBJC_EXPORT] = ACTIONS(5310), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5310), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5310), + [anon_sym_const] = ACTIONS(5310), + [anon_sym_constexpr] = ACTIONS(5310), + [anon_sym_volatile] = ACTIONS(5310), + [anon_sym_restrict] = ACTIONS(5310), + [anon_sym___restrict__] = ACTIONS(5310), + [anon_sym__Atomic] = ACTIONS(5310), + [anon_sym__Noreturn] = ACTIONS(5310), + [anon_sym__Nonnull] = ACTIONS(5310), + [anon_sym_nullable] = ACTIONS(5310), + [anon_sym__Complex] = ACTIONS(5310), + [anon_sym__Nullable] = ACTIONS(5310), + [anon_sym__Nullable_result] = ACTIONS(5310), + [anon_sym__Null_unspecified] = ACTIONS(5310), + [anon_sym___autoreleasing] = ACTIONS(5310), + [anon_sym___block] = ACTIONS(5310), + [anon_sym___bridge] = ACTIONS(5310), + [anon_sym___bridge_retained] = ACTIONS(5310), + [anon_sym___bridge_transfer] = ACTIONS(5310), + [anon_sym___complex] = ACTIONS(5310), + [anon_sym___const] = ACTIONS(5310), + [anon_sym___imag] = ACTIONS(5310), + [anon_sym___kindof] = ACTIONS(5310), + [anon_sym___nonnull] = ACTIONS(5310), + [anon_sym___nullable] = ACTIONS(5310), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5310), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5310), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5310), + [anon_sym___real] = ACTIONS(5310), + [anon_sym___strong] = ACTIONS(5310), + [anon_sym___unsafe_unretained] = ACTIONS(5310), + [anon_sym___unused] = ACTIONS(5310), + [anon_sym___weak] = ACTIONS(5310), + [anon_sym_alignas] = ACTIONS(5310), + [anon_sym__Alignas] = ACTIONS(5310), + [sym_primitive_type] = ACTIONS(5310), + [anon_sym_enum] = ACTIONS(5310), + [anon_sym_struct] = ACTIONS(5310), + [anon_sym_union] = ACTIONS(5310), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5310), + [anon_sym___typeof] = ACTIONS(5310), + [anon_sym_typeof] = ACTIONS(5310), + [aux_sym_preproc_undef_token1] = ACTIONS(5310), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5310), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5310), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5310), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5310), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5310), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5310), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5310), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5310), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5310), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5310), + [anon_sym_NS_AVAILABLE] = ACTIONS(5310), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5310), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5310), + [anon_sym_API_AVAILABLE] = ACTIONS(5310), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5310), + [anon_sym_API_DEPRECATED] = ACTIONS(5310), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5310), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5310), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5310), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5310), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5310), + [anon_sym___deprecated_msg] = ACTIONS(5310), + [anon_sym___deprecated_enum_msg] = ACTIONS(5310), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5310), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5310), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5310), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5310), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5310), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5310), + [anon_sym_ATend] = ACTIONS(5312), + [anon_sym_ATsynthesize] = ACTIONS(5312), + [anon_sym_ATdynamic] = ACTIONS(5312), + [anon_sym_BOOL] = ACTIONS(5310), + [anon_sym_IMP] = ACTIONS(5310), + [anon_sym_SEL] = ACTIONS(5310), + [anon_sym_Class] = ACTIONS(5310), + [anon_sym_id] = ACTIONS(5310), + }, + [2380] = { + [sym_identifier] = ACTIONS(2748), + [aux_sym_preproc_def_token1] = ACTIONS(2748), + [aux_sym_preproc_if_token1] = ACTIONS(2748), + [aux_sym_preproc_if_token2] = ACTIONS(2748), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2748), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2748), + [sym_preproc_directive] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2750), + [anon_sym_PLUS] = ACTIONS(2750), + [anon_sym___extension__] = ACTIONS(2748), + [anon_sym_typedef] = ACTIONS(2748), + [anon_sym_extern] = ACTIONS(2748), + [anon_sym___attribute__] = ACTIONS(2748), + [anon_sym___attribute] = ACTIONS(2748), + [anon_sym_noreturn] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2750), + [anon_sym___declspec] = ACTIONS(2748), + [anon_sym___cdecl] = ACTIONS(2748), + [anon_sym___clrcall] = ACTIONS(2748), + [anon_sym___stdcall] = ACTIONS(2748), + [anon_sym___fastcall] = ACTIONS(2748), + [anon_sym___thiscall] = ACTIONS(2748), + [anon_sym___vectorcall] = ACTIONS(2748), + [anon_sym_signed] = ACTIONS(2748), + [anon_sym_unsigned] = ACTIONS(2748), + [anon_sym_long] = ACTIONS(2748), + [anon_sym_short] = ACTIONS(2748), + [anon_sym_static] = ACTIONS(2748), + [anon_sym_auto] = ACTIONS(2748), + [anon_sym_register] = ACTIONS(2748), + [anon_sym_inline] = ACTIONS(2748), + [anon_sym___inline] = ACTIONS(2748), + [anon_sym___inline__] = ACTIONS(2748), + [anon_sym___forceinline] = ACTIONS(2748), + [anon_sym_thread_local] = ACTIONS(2748), + [anon_sym___thread] = ACTIONS(2748), + [anon_sym_CG_EXTERN] = ACTIONS(2748), + [anon_sym_CG_INLINE] = ACTIONS(2748), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2748), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2748), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2748), + [anon_sym_IBOutlet] = ACTIONS(2748), + [anon_sym_IBInspectable] = ACTIONS(2748), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2748), + [anon_sym_NS_INLINE] = ACTIONS(2748), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2748), + [anon_sym_OBJC_EXPORT] = ACTIONS(2748), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2748), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2748), + [anon_sym_constexpr] = ACTIONS(2748), + [anon_sym_volatile] = ACTIONS(2748), + [anon_sym_restrict] = ACTIONS(2748), + [anon_sym___restrict__] = ACTIONS(2748), + [anon_sym__Atomic] = ACTIONS(2748), + [anon_sym__Noreturn] = ACTIONS(2748), + [anon_sym__Nonnull] = ACTIONS(2748), + [anon_sym_nullable] = ACTIONS(2748), + [anon_sym__Complex] = ACTIONS(2748), + [anon_sym__Nullable] = ACTIONS(2748), + [anon_sym__Nullable_result] = ACTIONS(2748), + [anon_sym__Null_unspecified] = ACTIONS(2748), + [anon_sym___autoreleasing] = ACTIONS(2748), + [anon_sym___block] = ACTIONS(2748), + [anon_sym___bridge] = ACTIONS(2748), + [anon_sym___bridge_retained] = ACTIONS(2748), + [anon_sym___bridge_transfer] = ACTIONS(2748), + [anon_sym___complex] = ACTIONS(2748), + [anon_sym___const] = ACTIONS(2748), + [anon_sym___imag] = ACTIONS(2748), + [anon_sym___kindof] = ACTIONS(2748), + [anon_sym___nonnull] = ACTIONS(2748), + [anon_sym___nullable] = ACTIONS(2748), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2748), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2748), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2748), + [anon_sym___real] = ACTIONS(2748), + [anon_sym___strong] = ACTIONS(2748), + [anon_sym___unsafe_unretained] = ACTIONS(2748), + [anon_sym___unused] = ACTIONS(2748), + [anon_sym___weak] = ACTIONS(2748), + [anon_sym_alignas] = ACTIONS(2748), + [anon_sym__Alignas] = ACTIONS(2748), + [sym_primitive_type] = ACTIONS(2748), + [anon_sym_enum] = ACTIONS(2748), + [anon_sym_struct] = ACTIONS(2748), + [anon_sym_union] = ACTIONS(2748), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2748), + [anon_sym___typeof] = ACTIONS(2748), + [anon_sym_typeof] = ACTIONS(2748), + [aux_sym_preproc_undef_token1] = ACTIONS(2748), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2748), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2748), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2748), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2748), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2748), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2748), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2748), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2748), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2748), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2748), + [anon_sym_NS_AVAILABLE] = ACTIONS(2748), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2748), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2748), + [anon_sym_API_AVAILABLE] = ACTIONS(2748), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2748), + [anon_sym_API_DEPRECATED] = ACTIONS(2748), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2748), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2748), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2748), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2748), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2748), + [anon_sym___deprecated_msg] = ACTIONS(2748), + [anon_sym___deprecated_enum_msg] = ACTIONS(2748), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2748), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2748), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2748), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2748), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2748), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2748), + [anon_sym_ATsynthesize] = ACTIONS(2750), + [anon_sym_ATdynamic] = ACTIONS(2750), + [anon_sym_BOOL] = ACTIONS(2748), + [anon_sym_IMP] = ACTIONS(2748), + [anon_sym_SEL] = ACTIONS(2748), + [anon_sym_Class] = ACTIONS(2748), + [anon_sym_id] = ACTIONS(2748), + }, + [2381] = { + [sym_identifier] = ACTIONS(5630), + [anon_sym_COMMA] = ACTIONS(5632), + [anon_sym_RPAREN] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5632), + [anon_sym_LPAREN2] = ACTIONS(5632), + [anon_sym_STAR] = ACTIONS(5632), + [anon_sym_CARET] = ACTIONS(5632), + [anon_sym_GT] = ACTIONS(5632), + [anon_sym_SEMI] = ACTIONS(5632), + [anon_sym___extension__] = ACTIONS(5630), + [anon_sym_extern] = ACTIONS(5630), + [anon_sym___attribute__] = ACTIONS(5630), + [anon_sym___attribute] = ACTIONS(5630), + [anon_sym_noreturn] = ACTIONS(5630), + [anon_sym_LBRACK] = ACTIONS(5632), + [anon_sym___declspec] = ACTIONS(5630), + [anon_sym___based] = ACTIONS(5630), + [anon_sym_LBRACE] = ACTIONS(5632), + [anon_sym_RBRACE] = ACTIONS(5632), + [anon_sym_signed] = ACTIONS(5630), + [anon_sym_unsigned] = ACTIONS(5630), + [anon_sym_long] = ACTIONS(5630), + [anon_sym_short] = ACTIONS(5630), + [anon_sym_static] = ACTIONS(5630), + [anon_sym_ATautoreleasepool] = ACTIONS(5632), + [anon_sym_auto] = ACTIONS(5630), + [anon_sym_register] = ACTIONS(5630), + [anon_sym_inline] = ACTIONS(5630), + [anon_sym___inline] = ACTIONS(5630), + [anon_sym___inline__] = ACTIONS(5630), + [anon_sym___forceinline] = ACTIONS(5630), + [anon_sym_thread_local] = ACTIONS(5630), + [anon_sym___thread] = ACTIONS(5630), + [anon_sym_CG_EXTERN] = ACTIONS(5630), + [anon_sym_CG_INLINE] = ACTIONS(5630), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5630), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5630), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5630), + [anon_sym_IBOutlet] = ACTIONS(5630), + [anon_sym_IBInspectable] = ACTIONS(5630), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5630), + [anon_sym_NS_INLINE] = ACTIONS(5630), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5630), + [anon_sym_OBJC_EXPORT] = ACTIONS(5630), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5630), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5630), + [anon_sym_const] = ACTIONS(5630), + [anon_sym_constexpr] = ACTIONS(5630), + [anon_sym_volatile] = ACTIONS(5630), + [anon_sym_restrict] = ACTIONS(5630), + [anon_sym___restrict__] = ACTIONS(5630), + [anon_sym__Atomic] = ACTIONS(5630), + [anon_sym__Noreturn] = ACTIONS(5630), + [anon_sym__Nonnull] = ACTIONS(5630), + [anon_sym_nullable] = ACTIONS(5630), + [anon_sym__Complex] = ACTIONS(5630), + [anon_sym__Nullable] = ACTIONS(5630), + [anon_sym__Nullable_result] = ACTIONS(5630), + [anon_sym__Null_unspecified] = ACTIONS(5630), + [anon_sym___autoreleasing] = ACTIONS(5630), + [anon_sym___block] = ACTIONS(5630), + [anon_sym___bridge] = ACTIONS(5630), + [anon_sym___bridge_retained] = ACTIONS(5630), + [anon_sym___bridge_transfer] = ACTIONS(5630), + [anon_sym___complex] = ACTIONS(5630), + [anon_sym___const] = ACTIONS(5630), + [anon_sym___imag] = ACTIONS(5630), + [anon_sym___kindof] = ACTIONS(5630), + [anon_sym___nonnull] = ACTIONS(5630), + [anon_sym___nullable] = ACTIONS(5630), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5630), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5630), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5630), + [anon_sym___real] = ACTIONS(5630), + [anon_sym___strong] = ACTIONS(5630), + [anon_sym___unsafe_unretained] = ACTIONS(5630), + [anon_sym___unused] = ACTIONS(5630), + [anon_sym___weak] = ACTIONS(5630), + [anon_sym_alignas] = ACTIONS(5630), + [anon_sym__Alignas] = ACTIONS(5630), + [sym_primitive_type] = ACTIONS(5630), + [anon_sym_enum] = ACTIONS(5630), + [anon_sym_COLON] = ACTIONS(5632), + [anon_sym_struct] = ACTIONS(5630), + [anon_sym_union] = ACTIONS(5630), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5630), + [anon_sym___typeof] = ACTIONS(5630), + [anon_sym_typeof] = ACTIONS(5630), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5630), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5630), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5630), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5630), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5630), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5630), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5630), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5630), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5630), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5630), + [anon_sym_NS_AVAILABLE] = ACTIONS(5630), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5630), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5630), + [anon_sym_API_AVAILABLE] = ACTIONS(5630), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5630), + [anon_sym_API_DEPRECATED] = ACTIONS(5630), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5630), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5630), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5630), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5630), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5630), + [anon_sym___deprecated_msg] = ACTIONS(5630), + [anon_sym___deprecated_enum_msg] = ACTIONS(5630), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5630), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5630), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5630), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5630), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5630), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5630), + [anon_sym_ATprotocol] = ACTIONS(5632), + [anon_sym_ATinterface] = ACTIONS(5632), + [anon_sym_ATimplementation] = ACTIONS(5632), + [anon_sym_ATproperty] = ACTIONS(5632), + [anon_sym_BOOL] = ACTIONS(5630), + [anon_sym_IMP] = ACTIONS(5630), + [anon_sym_SEL] = ACTIONS(5630), + [anon_sym_Class] = ACTIONS(5630), + [anon_sym_id] = ACTIONS(5630), + }, + [2382] = { + [sym_identifier] = ACTIONS(5634), + [anon_sym_COMMA] = ACTIONS(5636), + [anon_sym_RPAREN] = ACTIONS(5636), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5636), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5636), + [anon_sym_LPAREN2] = ACTIONS(5636), + [anon_sym_STAR] = ACTIONS(5636), + [anon_sym_CARET] = ACTIONS(5636), + [anon_sym_GT] = ACTIONS(5636), + [anon_sym_SEMI] = ACTIONS(5636), + [anon_sym___extension__] = ACTIONS(5634), + [anon_sym_extern] = ACTIONS(5634), + [anon_sym___attribute__] = ACTIONS(5634), + [anon_sym___attribute] = ACTIONS(5634), + [anon_sym_noreturn] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5636), + [anon_sym___declspec] = ACTIONS(5634), + [anon_sym___based] = ACTIONS(5634), + [anon_sym_LBRACE] = ACTIONS(5636), + [anon_sym_RBRACE] = ACTIONS(5636), + [anon_sym_signed] = ACTIONS(5634), + [anon_sym_unsigned] = ACTIONS(5634), + [anon_sym_long] = ACTIONS(5634), + [anon_sym_short] = ACTIONS(5634), + [anon_sym_static] = ACTIONS(5634), + [anon_sym_ATautoreleasepool] = ACTIONS(5636), + [anon_sym_auto] = ACTIONS(5634), + [anon_sym_register] = ACTIONS(5634), + [anon_sym_inline] = ACTIONS(5634), + [anon_sym___inline] = ACTIONS(5634), + [anon_sym___inline__] = ACTIONS(5634), + [anon_sym___forceinline] = ACTIONS(5634), + [anon_sym_thread_local] = ACTIONS(5634), + [anon_sym___thread] = ACTIONS(5634), + [anon_sym_CG_EXTERN] = ACTIONS(5634), + [anon_sym_CG_INLINE] = ACTIONS(5634), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5634), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5634), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5634), + [anon_sym_IBOutlet] = ACTIONS(5634), + [anon_sym_IBInspectable] = ACTIONS(5634), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5634), + [anon_sym_NS_INLINE] = ACTIONS(5634), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5634), + [anon_sym_OBJC_EXPORT] = ACTIONS(5634), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5634), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5634), + [anon_sym_const] = ACTIONS(5634), + [anon_sym_constexpr] = ACTIONS(5634), + [anon_sym_volatile] = ACTIONS(5634), + [anon_sym_restrict] = ACTIONS(5634), + [anon_sym___restrict__] = ACTIONS(5634), + [anon_sym__Atomic] = ACTIONS(5634), + [anon_sym__Noreturn] = ACTIONS(5634), + [anon_sym__Nonnull] = ACTIONS(5634), + [anon_sym_nullable] = ACTIONS(5634), + [anon_sym__Complex] = ACTIONS(5634), + [anon_sym__Nullable] = ACTIONS(5634), + [anon_sym__Nullable_result] = ACTIONS(5634), + [anon_sym__Null_unspecified] = ACTIONS(5634), + [anon_sym___autoreleasing] = ACTIONS(5634), + [anon_sym___block] = ACTIONS(5634), + [anon_sym___bridge] = ACTIONS(5634), + [anon_sym___bridge_retained] = ACTIONS(5634), + [anon_sym___bridge_transfer] = ACTIONS(5634), + [anon_sym___complex] = ACTIONS(5634), + [anon_sym___const] = ACTIONS(5634), + [anon_sym___imag] = ACTIONS(5634), + [anon_sym___kindof] = ACTIONS(5634), + [anon_sym___nonnull] = ACTIONS(5634), + [anon_sym___nullable] = ACTIONS(5634), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5634), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5634), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5634), + [anon_sym___real] = ACTIONS(5634), + [anon_sym___strong] = ACTIONS(5634), + [anon_sym___unsafe_unretained] = ACTIONS(5634), + [anon_sym___unused] = ACTIONS(5634), + [anon_sym___weak] = ACTIONS(5634), + [anon_sym_alignas] = ACTIONS(5634), + [anon_sym__Alignas] = ACTIONS(5634), + [sym_primitive_type] = ACTIONS(5634), + [anon_sym_enum] = ACTIONS(5634), + [anon_sym_COLON] = ACTIONS(5636), + [anon_sym_struct] = ACTIONS(5634), + [anon_sym_union] = ACTIONS(5634), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5634), + [anon_sym___typeof] = ACTIONS(5634), + [anon_sym_typeof] = ACTIONS(5634), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5634), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5634), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5634), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5634), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5634), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5634), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5634), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5634), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5634), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5634), + [anon_sym_NS_AVAILABLE] = ACTIONS(5634), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5634), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5634), + [anon_sym_API_AVAILABLE] = ACTIONS(5634), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5634), + [anon_sym_API_DEPRECATED] = ACTIONS(5634), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5634), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5634), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5634), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5634), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5634), + [anon_sym___deprecated_msg] = ACTIONS(5634), + [anon_sym___deprecated_enum_msg] = ACTIONS(5634), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5634), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5634), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5634), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5634), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5634), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5634), + [anon_sym_ATprotocol] = ACTIONS(5636), + [anon_sym_ATinterface] = ACTIONS(5636), + [anon_sym_ATimplementation] = ACTIONS(5636), + [anon_sym_ATproperty] = ACTIONS(5636), + [anon_sym_BOOL] = ACTIONS(5634), + [anon_sym_IMP] = ACTIONS(5634), + [anon_sym_SEL] = ACTIONS(5634), + [anon_sym_Class] = ACTIONS(5634), + [anon_sym_id] = ACTIONS(5634), + }, + [2383] = { + [sym_identifier] = ACTIONS(5425), + [aux_sym_preproc_def_token1] = ACTIONS(5425), + [aux_sym_preproc_if_token1] = ACTIONS(5425), + [aux_sym_preproc_if_token2] = ACTIONS(5425), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5425), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5425), + [sym_preproc_directive] = ACTIONS(5425), + [anon_sym_DASH] = ACTIONS(5427), + [anon_sym_PLUS] = ACTIONS(5427), + [anon_sym___extension__] = ACTIONS(5425), + [anon_sym_typedef] = ACTIONS(5425), + [anon_sym_extern] = ACTIONS(5425), + [anon_sym___attribute__] = ACTIONS(5425), + [anon_sym___attribute] = ACTIONS(5425), + [anon_sym_noreturn] = ACTIONS(5425), + [anon_sym_LBRACK] = ACTIONS(5427), + [anon_sym___declspec] = ACTIONS(5425), + [anon_sym___cdecl] = ACTIONS(5425), + [anon_sym___clrcall] = ACTIONS(5425), + [anon_sym___stdcall] = ACTIONS(5425), + [anon_sym___fastcall] = ACTIONS(5425), + [anon_sym___thiscall] = ACTIONS(5425), + [anon_sym___vectorcall] = ACTIONS(5425), + [anon_sym_signed] = ACTIONS(5425), + [anon_sym_unsigned] = ACTIONS(5425), + [anon_sym_long] = ACTIONS(5425), + [anon_sym_short] = ACTIONS(5425), + [anon_sym_static] = ACTIONS(5425), + [anon_sym_auto] = ACTIONS(5425), + [anon_sym_register] = ACTIONS(5425), + [anon_sym_inline] = ACTIONS(5425), + [anon_sym___inline] = ACTIONS(5425), + [anon_sym___inline__] = ACTIONS(5425), + [anon_sym___forceinline] = ACTIONS(5425), + [anon_sym_thread_local] = ACTIONS(5425), + [anon_sym___thread] = ACTIONS(5425), + [anon_sym_CG_EXTERN] = ACTIONS(5425), + [anon_sym_CG_INLINE] = ACTIONS(5425), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5425), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5425), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5425), + [anon_sym_IBOutlet] = ACTIONS(5425), + [anon_sym_IBInspectable] = ACTIONS(5425), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5425), + [anon_sym_NS_INLINE] = ACTIONS(5425), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5425), + [anon_sym_OBJC_EXPORT] = ACTIONS(5425), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5425), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5425), + [anon_sym_const] = ACTIONS(5425), + [anon_sym_constexpr] = ACTIONS(5425), + [anon_sym_volatile] = ACTIONS(5425), + [anon_sym_restrict] = ACTIONS(5425), + [anon_sym___restrict__] = ACTIONS(5425), + [anon_sym__Atomic] = ACTIONS(5425), + [anon_sym__Noreturn] = ACTIONS(5425), + [anon_sym__Nonnull] = ACTIONS(5425), + [anon_sym_nullable] = ACTIONS(5425), + [anon_sym__Complex] = ACTIONS(5425), + [anon_sym__Nullable] = ACTIONS(5425), + [anon_sym__Nullable_result] = ACTIONS(5425), + [anon_sym__Null_unspecified] = ACTIONS(5425), + [anon_sym___autoreleasing] = ACTIONS(5425), + [anon_sym___block] = ACTIONS(5425), + [anon_sym___bridge] = ACTIONS(5425), + [anon_sym___bridge_retained] = ACTIONS(5425), + [anon_sym___bridge_transfer] = ACTIONS(5425), + [anon_sym___complex] = ACTIONS(5425), + [anon_sym___const] = ACTIONS(5425), + [anon_sym___imag] = ACTIONS(5425), + [anon_sym___kindof] = ACTIONS(5425), + [anon_sym___nonnull] = ACTIONS(5425), + [anon_sym___nullable] = ACTIONS(5425), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5425), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5425), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5425), + [anon_sym___real] = ACTIONS(5425), + [anon_sym___strong] = ACTIONS(5425), + [anon_sym___unsafe_unretained] = ACTIONS(5425), + [anon_sym___unused] = ACTIONS(5425), + [anon_sym___weak] = ACTIONS(5425), + [anon_sym_alignas] = ACTIONS(5425), + [anon_sym__Alignas] = ACTIONS(5425), + [sym_primitive_type] = ACTIONS(5425), + [anon_sym_enum] = ACTIONS(5425), + [anon_sym_struct] = ACTIONS(5425), + [anon_sym_union] = ACTIONS(5425), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5425), + [anon_sym___typeof] = ACTIONS(5425), + [anon_sym_typeof] = ACTIONS(5425), + [aux_sym_preproc_undef_token1] = ACTIONS(5425), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5425), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5425), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5425), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5425), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5425), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5425), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5425), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5425), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5425), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5425), + [anon_sym_NS_AVAILABLE] = ACTIONS(5425), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5425), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5425), + [anon_sym_API_AVAILABLE] = ACTIONS(5425), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5425), + [anon_sym_API_DEPRECATED] = ACTIONS(5425), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5425), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5425), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5425), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5425), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5425), + [anon_sym___deprecated_msg] = ACTIONS(5425), + [anon_sym___deprecated_enum_msg] = ACTIONS(5425), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5425), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5425), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5425), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5425), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5425), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5425), + [anon_sym_ATsynthesize] = ACTIONS(5427), + [anon_sym_ATdynamic] = ACTIONS(5427), + [anon_sym_BOOL] = ACTIONS(5425), + [anon_sym_IMP] = ACTIONS(5425), + [anon_sym_SEL] = ACTIONS(5425), + [anon_sym_Class] = ACTIONS(5425), + [anon_sym_id] = ACTIONS(5425), + }, + [2384] = { + [sym_identifier] = ACTIONS(5316), + [aux_sym_preproc_def_token1] = ACTIONS(5316), + [aux_sym_preproc_if_token1] = ACTIONS(5316), + [aux_sym_preproc_if_token2] = ACTIONS(5316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5316), + [sym_preproc_directive] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5318), + [anon_sym_PLUS] = ACTIONS(5318), + [anon_sym___extension__] = ACTIONS(5316), + [anon_sym_typedef] = ACTIONS(5316), + [anon_sym_extern] = ACTIONS(5316), + [anon_sym___attribute__] = ACTIONS(5316), + [anon_sym___attribute] = ACTIONS(5316), + [anon_sym_noreturn] = ACTIONS(5316), + [anon_sym_LBRACK] = ACTIONS(5318), + [anon_sym___declspec] = ACTIONS(5316), + [anon_sym___cdecl] = ACTIONS(5316), + [anon_sym___clrcall] = ACTIONS(5316), + [anon_sym___stdcall] = ACTIONS(5316), + [anon_sym___fastcall] = ACTIONS(5316), + [anon_sym___thiscall] = ACTIONS(5316), + [anon_sym___vectorcall] = ACTIONS(5316), + [anon_sym_signed] = ACTIONS(5316), + [anon_sym_unsigned] = ACTIONS(5316), + [anon_sym_long] = ACTIONS(5316), + [anon_sym_short] = ACTIONS(5316), + [anon_sym_static] = ACTIONS(5316), + [anon_sym_auto] = ACTIONS(5316), + [anon_sym_register] = ACTIONS(5316), + [anon_sym_inline] = ACTIONS(5316), + [anon_sym___inline] = ACTIONS(5316), + [anon_sym___inline__] = ACTIONS(5316), + [anon_sym___forceinline] = ACTIONS(5316), + [anon_sym_thread_local] = ACTIONS(5316), + [anon_sym___thread] = ACTIONS(5316), + [anon_sym_CG_EXTERN] = ACTIONS(5316), + [anon_sym_CG_INLINE] = ACTIONS(5316), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5316), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5316), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5316), + [anon_sym_IBOutlet] = ACTIONS(5316), + [anon_sym_IBInspectable] = ACTIONS(5316), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5316), + [anon_sym_NS_INLINE] = ACTIONS(5316), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5316), + [anon_sym_OBJC_EXPORT] = ACTIONS(5316), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5316), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5316), + [anon_sym_const] = ACTIONS(5316), + [anon_sym_constexpr] = ACTIONS(5316), + [anon_sym_volatile] = ACTIONS(5316), + [anon_sym_restrict] = ACTIONS(5316), + [anon_sym___restrict__] = ACTIONS(5316), + [anon_sym__Atomic] = ACTIONS(5316), + [anon_sym__Noreturn] = ACTIONS(5316), + [anon_sym__Nonnull] = ACTIONS(5316), + [anon_sym_nullable] = ACTIONS(5316), + [anon_sym__Complex] = ACTIONS(5316), + [anon_sym__Nullable] = ACTIONS(5316), + [anon_sym__Nullable_result] = ACTIONS(5316), + [anon_sym__Null_unspecified] = ACTIONS(5316), + [anon_sym___autoreleasing] = ACTIONS(5316), + [anon_sym___block] = ACTIONS(5316), + [anon_sym___bridge] = ACTIONS(5316), + [anon_sym___bridge_retained] = ACTIONS(5316), + [anon_sym___bridge_transfer] = ACTIONS(5316), + [anon_sym___complex] = ACTIONS(5316), + [anon_sym___const] = ACTIONS(5316), + [anon_sym___imag] = ACTIONS(5316), + [anon_sym___kindof] = ACTIONS(5316), + [anon_sym___nonnull] = ACTIONS(5316), + [anon_sym___nullable] = ACTIONS(5316), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5316), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5316), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5316), + [anon_sym___real] = ACTIONS(5316), + [anon_sym___strong] = ACTIONS(5316), + [anon_sym___unsafe_unretained] = ACTIONS(5316), + [anon_sym___unused] = ACTIONS(5316), + [anon_sym___weak] = ACTIONS(5316), + [anon_sym_alignas] = ACTIONS(5316), + [anon_sym__Alignas] = ACTIONS(5316), + [sym_primitive_type] = ACTIONS(5316), + [anon_sym_enum] = ACTIONS(5316), + [anon_sym_struct] = ACTIONS(5316), + [anon_sym_union] = ACTIONS(5316), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5316), + [anon_sym___typeof] = ACTIONS(5316), + [anon_sym_typeof] = ACTIONS(5316), + [aux_sym_preproc_undef_token1] = ACTIONS(5316), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5316), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5316), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5316), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5316), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5316), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5316), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5316), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5316), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5316), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5316), + [anon_sym_NS_AVAILABLE] = ACTIONS(5316), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5316), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5316), + [anon_sym_API_AVAILABLE] = ACTIONS(5316), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5316), + [anon_sym_API_DEPRECATED] = ACTIONS(5316), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5316), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5316), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5316), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5316), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5316), + [anon_sym___deprecated_msg] = ACTIONS(5316), + [anon_sym___deprecated_enum_msg] = ACTIONS(5316), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5316), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5316), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5316), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5316), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5316), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5316), + [anon_sym_ATsynthesize] = ACTIONS(5318), + [anon_sym_ATdynamic] = ACTIONS(5318), + [anon_sym_BOOL] = ACTIONS(5316), + [anon_sym_IMP] = ACTIONS(5316), + [anon_sym_SEL] = ACTIONS(5316), + [anon_sym_Class] = ACTIONS(5316), + [anon_sym_id] = ACTIONS(5316), + }, + [2385] = { + [sym_identifier] = ACTIONS(5415), + [aux_sym_preproc_def_token1] = ACTIONS(5415), + [aux_sym_preproc_if_token1] = ACTIONS(5415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5415), + [sym_preproc_directive] = ACTIONS(5415), + [anon_sym_DASH] = ACTIONS(5417), + [anon_sym_PLUS] = ACTIONS(5417), + [anon_sym___extension__] = ACTIONS(5415), + [anon_sym_typedef] = ACTIONS(5415), + [anon_sym_extern] = ACTIONS(5415), + [anon_sym___attribute__] = ACTIONS(5415), + [anon_sym___attribute] = ACTIONS(5415), + [anon_sym_noreturn] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(5417), + [anon_sym___declspec] = ACTIONS(5415), + [anon_sym___cdecl] = ACTIONS(5415), + [anon_sym___clrcall] = ACTIONS(5415), + [anon_sym___stdcall] = ACTIONS(5415), + [anon_sym___fastcall] = ACTIONS(5415), + [anon_sym___thiscall] = ACTIONS(5415), + [anon_sym___vectorcall] = ACTIONS(5415), + [anon_sym_signed] = ACTIONS(5415), + [anon_sym_unsigned] = ACTIONS(5415), + [anon_sym_long] = ACTIONS(5415), + [anon_sym_short] = ACTIONS(5415), + [anon_sym_static] = ACTIONS(5415), + [anon_sym_auto] = ACTIONS(5415), + [anon_sym_register] = ACTIONS(5415), + [anon_sym_inline] = ACTIONS(5415), + [anon_sym___inline] = ACTIONS(5415), + [anon_sym___inline__] = ACTIONS(5415), + [anon_sym___forceinline] = ACTIONS(5415), + [anon_sym_thread_local] = ACTIONS(5415), + [anon_sym___thread] = ACTIONS(5415), + [anon_sym_CG_EXTERN] = ACTIONS(5415), + [anon_sym_CG_INLINE] = ACTIONS(5415), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5415), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5415), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5415), + [anon_sym_IBOutlet] = ACTIONS(5415), + [anon_sym_IBInspectable] = ACTIONS(5415), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5415), + [anon_sym_NS_INLINE] = ACTIONS(5415), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5415), + [anon_sym_OBJC_EXPORT] = ACTIONS(5415), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5415), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5415), + [anon_sym_const] = ACTIONS(5415), + [anon_sym_constexpr] = ACTIONS(5415), + [anon_sym_volatile] = ACTIONS(5415), + [anon_sym_restrict] = ACTIONS(5415), + [anon_sym___restrict__] = ACTIONS(5415), + [anon_sym__Atomic] = ACTIONS(5415), + [anon_sym__Noreturn] = ACTIONS(5415), + [anon_sym__Nonnull] = ACTIONS(5415), + [anon_sym_nullable] = ACTIONS(5415), + [anon_sym__Complex] = ACTIONS(5415), + [anon_sym__Nullable] = ACTIONS(5415), + [anon_sym__Nullable_result] = ACTIONS(5415), + [anon_sym__Null_unspecified] = ACTIONS(5415), + [anon_sym___autoreleasing] = ACTIONS(5415), + [anon_sym___block] = ACTIONS(5415), + [anon_sym___bridge] = ACTIONS(5415), + [anon_sym___bridge_retained] = ACTIONS(5415), + [anon_sym___bridge_transfer] = ACTIONS(5415), + [anon_sym___complex] = ACTIONS(5415), + [anon_sym___const] = ACTIONS(5415), + [anon_sym___imag] = ACTIONS(5415), + [anon_sym___kindof] = ACTIONS(5415), + [anon_sym___nonnull] = ACTIONS(5415), + [anon_sym___nullable] = ACTIONS(5415), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5415), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5415), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5415), + [anon_sym___real] = ACTIONS(5415), + [anon_sym___strong] = ACTIONS(5415), + [anon_sym___unsafe_unretained] = ACTIONS(5415), + [anon_sym___unused] = ACTIONS(5415), + [anon_sym___weak] = ACTIONS(5415), + [anon_sym_alignas] = ACTIONS(5415), + [anon_sym__Alignas] = ACTIONS(5415), + [sym_primitive_type] = ACTIONS(5415), + [anon_sym_enum] = ACTIONS(5415), + [anon_sym_struct] = ACTIONS(5415), + [anon_sym_union] = ACTIONS(5415), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5415), + [anon_sym___typeof] = ACTIONS(5415), + [anon_sym_typeof] = ACTIONS(5415), + [aux_sym_preproc_undef_token1] = ACTIONS(5415), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5415), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5415), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5415), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5415), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5415), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5415), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5415), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5415), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5415), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5415), + [anon_sym_NS_AVAILABLE] = ACTIONS(5415), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5415), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5415), + [anon_sym_API_AVAILABLE] = ACTIONS(5415), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5415), + [anon_sym_API_DEPRECATED] = ACTIONS(5415), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5415), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5415), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5415), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5415), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5415), + [anon_sym___deprecated_msg] = ACTIONS(5415), + [anon_sym___deprecated_enum_msg] = ACTIONS(5415), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5415), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5415), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5415), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5415), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5415), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5415), + [anon_sym_ATend] = ACTIONS(5417), + [anon_sym_ATsynthesize] = ACTIONS(5417), + [anon_sym_ATdynamic] = ACTIONS(5417), + [anon_sym_BOOL] = ACTIONS(5415), + [anon_sym_IMP] = ACTIONS(5415), + [anon_sym_SEL] = ACTIONS(5415), + [anon_sym_Class] = ACTIONS(5415), + [anon_sym_id] = ACTIONS(5415), + }, + [2386] = { + [sym_identifier] = ACTIONS(5431), + [aux_sym_preproc_def_token1] = ACTIONS(5431), + [aux_sym_preproc_if_token1] = ACTIONS(5431), + [aux_sym_preproc_if_token2] = ACTIONS(5431), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5431), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5431), + [sym_preproc_directive] = ACTIONS(5431), + [anon_sym_DASH] = ACTIONS(5433), + [anon_sym_PLUS] = ACTIONS(5433), + [anon_sym___extension__] = ACTIONS(5431), + [anon_sym_typedef] = ACTIONS(5431), + [anon_sym_extern] = ACTIONS(5431), + [anon_sym___attribute__] = ACTIONS(5431), + [anon_sym___attribute] = ACTIONS(5431), + [anon_sym_noreturn] = ACTIONS(5431), + [anon_sym_LBRACK] = ACTIONS(5433), + [anon_sym___declspec] = ACTIONS(5431), + [anon_sym___cdecl] = ACTIONS(5431), + [anon_sym___clrcall] = ACTIONS(5431), + [anon_sym___stdcall] = ACTIONS(5431), + [anon_sym___fastcall] = ACTIONS(5431), + [anon_sym___thiscall] = ACTIONS(5431), + [anon_sym___vectorcall] = ACTIONS(5431), + [anon_sym_signed] = ACTIONS(5431), + [anon_sym_unsigned] = ACTIONS(5431), + [anon_sym_long] = ACTIONS(5431), + [anon_sym_short] = ACTIONS(5431), + [anon_sym_static] = ACTIONS(5431), + [anon_sym_auto] = ACTIONS(5431), + [anon_sym_register] = ACTIONS(5431), + [anon_sym_inline] = ACTIONS(5431), + [anon_sym___inline] = ACTIONS(5431), + [anon_sym___inline__] = ACTIONS(5431), + [anon_sym___forceinline] = ACTIONS(5431), + [anon_sym_thread_local] = ACTIONS(5431), + [anon_sym___thread] = ACTIONS(5431), + [anon_sym_CG_EXTERN] = ACTIONS(5431), + [anon_sym_CG_INLINE] = ACTIONS(5431), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5431), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5431), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5431), + [anon_sym_IBOutlet] = ACTIONS(5431), + [anon_sym_IBInspectable] = ACTIONS(5431), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5431), + [anon_sym_NS_INLINE] = ACTIONS(5431), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5431), + [anon_sym_OBJC_EXPORT] = ACTIONS(5431), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5431), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5431), + [anon_sym_const] = ACTIONS(5431), + [anon_sym_constexpr] = ACTIONS(5431), + [anon_sym_volatile] = ACTIONS(5431), + [anon_sym_restrict] = ACTIONS(5431), + [anon_sym___restrict__] = ACTIONS(5431), + [anon_sym__Atomic] = ACTIONS(5431), + [anon_sym__Noreturn] = ACTIONS(5431), + [anon_sym__Nonnull] = ACTIONS(5431), + [anon_sym_nullable] = ACTIONS(5431), + [anon_sym__Complex] = ACTIONS(5431), + [anon_sym__Nullable] = ACTIONS(5431), + [anon_sym__Nullable_result] = ACTIONS(5431), + [anon_sym__Null_unspecified] = ACTIONS(5431), + [anon_sym___autoreleasing] = ACTIONS(5431), + [anon_sym___block] = ACTIONS(5431), + [anon_sym___bridge] = ACTIONS(5431), + [anon_sym___bridge_retained] = ACTIONS(5431), + [anon_sym___bridge_transfer] = ACTIONS(5431), + [anon_sym___complex] = ACTIONS(5431), + [anon_sym___const] = ACTIONS(5431), + [anon_sym___imag] = ACTIONS(5431), + [anon_sym___kindof] = ACTIONS(5431), + [anon_sym___nonnull] = ACTIONS(5431), + [anon_sym___nullable] = ACTIONS(5431), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5431), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5431), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5431), + [anon_sym___real] = ACTIONS(5431), + [anon_sym___strong] = ACTIONS(5431), + [anon_sym___unsafe_unretained] = ACTIONS(5431), + [anon_sym___unused] = ACTIONS(5431), + [anon_sym___weak] = ACTIONS(5431), + [anon_sym_alignas] = ACTIONS(5431), + [anon_sym__Alignas] = ACTIONS(5431), + [sym_primitive_type] = ACTIONS(5431), + [anon_sym_enum] = ACTIONS(5431), + [anon_sym_struct] = ACTIONS(5431), + [anon_sym_union] = ACTIONS(5431), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5431), + [anon_sym___typeof] = ACTIONS(5431), + [anon_sym_typeof] = ACTIONS(5431), + [aux_sym_preproc_undef_token1] = ACTIONS(5431), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5431), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5431), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5431), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5431), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5431), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5431), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5431), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5431), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5431), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5431), + [anon_sym_NS_AVAILABLE] = ACTIONS(5431), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5431), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5431), + [anon_sym_API_AVAILABLE] = ACTIONS(5431), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5431), + [anon_sym_API_DEPRECATED] = ACTIONS(5431), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5431), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5431), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5431), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5431), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5431), + [anon_sym___deprecated_msg] = ACTIONS(5431), + [anon_sym___deprecated_enum_msg] = ACTIONS(5431), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5431), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5431), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5431), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5431), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5431), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5431), + [anon_sym_ATsynthesize] = ACTIONS(5433), + [anon_sym_ATdynamic] = ACTIONS(5433), + [anon_sym_BOOL] = ACTIONS(5431), + [anon_sym_IMP] = ACTIONS(5431), + [anon_sym_SEL] = ACTIONS(5431), + [anon_sym_Class] = ACTIONS(5431), + [anon_sym_id] = ACTIONS(5431), + }, + [2387] = { + [sym_identifier] = ACTIONS(5461), + [aux_sym_preproc_def_token1] = ACTIONS(5461), + [aux_sym_preproc_if_token1] = ACTIONS(5461), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5461), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5461), + [sym_preproc_directive] = ACTIONS(5461), + [anon_sym_DASH] = ACTIONS(5463), + [anon_sym_PLUS] = ACTIONS(5463), + [anon_sym___extension__] = ACTIONS(5461), + [anon_sym_typedef] = ACTIONS(5461), + [anon_sym_extern] = ACTIONS(5461), + [anon_sym___attribute__] = ACTIONS(5461), + [anon_sym___attribute] = ACTIONS(5461), + [anon_sym_noreturn] = ACTIONS(5461), + [anon_sym_LBRACK] = ACTIONS(5463), + [anon_sym___declspec] = ACTIONS(5461), + [anon_sym___cdecl] = ACTIONS(5461), + [anon_sym___clrcall] = ACTIONS(5461), + [anon_sym___stdcall] = ACTIONS(5461), + [anon_sym___fastcall] = ACTIONS(5461), + [anon_sym___thiscall] = ACTIONS(5461), + [anon_sym___vectorcall] = ACTIONS(5461), + [anon_sym_signed] = ACTIONS(5461), + [anon_sym_unsigned] = ACTIONS(5461), + [anon_sym_long] = ACTIONS(5461), + [anon_sym_short] = ACTIONS(5461), + [anon_sym_static] = ACTIONS(5461), + [anon_sym_auto] = ACTIONS(5461), + [anon_sym_register] = ACTIONS(5461), + [anon_sym_inline] = ACTIONS(5461), + [anon_sym___inline] = ACTIONS(5461), + [anon_sym___inline__] = ACTIONS(5461), + [anon_sym___forceinline] = ACTIONS(5461), + [anon_sym_thread_local] = ACTIONS(5461), + [anon_sym___thread] = ACTIONS(5461), + [anon_sym_CG_EXTERN] = ACTIONS(5461), + [anon_sym_CG_INLINE] = ACTIONS(5461), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5461), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5461), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5461), + [anon_sym_IBOutlet] = ACTIONS(5461), + [anon_sym_IBInspectable] = ACTIONS(5461), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5461), + [anon_sym_NS_INLINE] = ACTIONS(5461), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5461), + [anon_sym_OBJC_EXPORT] = ACTIONS(5461), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5461), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5461), + [anon_sym_const] = ACTIONS(5461), + [anon_sym_constexpr] = ACTIONS(5461), + [anon_sym_volatile] = ACTIONS(5461), + [anon_sym_restrict] = ACTIONS(5461), + [anon_sym___restrict__] = ACTIONS(5461), + [anon_sym__Atomic] = ACTIONS(5461), + [anon_sym__Noreturn] = ACTIONS(5461), + [anon_sym__Nonnull] = ACTIONS(5461), + [anon_sym_nullable] = ACTIONS(5461), + [anon_sym__Complex] = ACTIONS(5461), + [anon_sym__Nullable] = ACTIONS(5461), + [anon_sym__Nullable_result] = ACTIONS(5461), + [anon_sym__Null_unspecified] = ACTIONS(5461), + [anon_sym___autoreleasing] = ACTIONS(5461), + [anon_sym___block] = ACTIONS(5461), + [anon_sym___bridge] = ACTIONS(5461), + [anon_sym___bridge_retained] = ACTIONS(5461), + [anon_sym___bridge_transfer] = ACTIONS(5461), + [anon_sym___complex] = ACTIONS(5461), + [anon_sym___const] = ACTIONS(5461), + [anon_sym___imag] = ACTIONS(5461), + [anon_sym___kindof] = ACTIONS(5461), + [anon_sym___nonnull] = ACTIONS(5461), + [anon_sym___nullable] = ACTIONS(5461), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5461), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5461), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5461), + [anon_sym___real] = ACTIONS(5461), + [anon_sym___strong] = ACTIONS(5461), + [anon_sym___unsafe_unretained] = ACTIONS(5461), + [anon_sym___unused] = ACTIONS(5461), + [anon_sym___weak] = ACTIONS(5461), + [anon_sym_alignas] = ACTIONS(5461), + [anon_sym__Alignas] = ACTIONS(5461), + [sym_primitive_type] = ACTIONS(5461), + [anon_sym_enum] = ACTIONS(5461), + [anon_sym_struct] = ACTIONS(5461), + [anon_sym_union] = ACTIONS(5461), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5461), + [anon_sym___typeof] = ACTIONS(5461), + [anon_sym_typeof] = ACTIONS(5461), + [aux_sym_preproc_undef_token1] = ACTIONS(5461), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5461), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5461), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5461), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5461), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5461), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5461), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5461), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5461), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5461), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5461), + [anon_sym_NS_AVAILABLE] = ACTIONS(5461), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5461), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5461), + [anon_sym_API_AVAILABLE] = ACTIONS(5461), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5461), + [anon_sym_API_DEPRECATED] = ACTIONS(5461), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5461), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5461), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5461), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5461), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5461), + [anon_sym___deprecated_msg] = ACTIONS(5461), + [anon_sym___deprecated_enum_msg] = ACTIONS(5461), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5461), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5461), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5461), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5461), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5461), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5461), + [anon_sym_ATend] = ACTIONS(5463), + [anon_sym_ATsynthesize] = ACTIONS(5463), + [anon_sym_ATdynamic] = ACTIONS(5463), + [anon_sym_BOOL] = ACTIONS(5461), + [anon_sym_IMP] = ACTIONS(5461), + [anon_sym_SEL] = ACTIONS(5461), + [anon_sym_Class] = ACTIONS(5461), + [anon_sym_id] = ACTIONS(5461), + }, + [2388] = { + [sym_identifier] = ACTIONS(5397), + [aux_sym_preproc_def_token1] = ACTIONS(5397), + [aux_sym_preproc_if_token1] = ACTIONS(5397), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5397), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5397), + [sym_preproc_directive] = ACTIONS(5397), + [anon_sym_DASH] = ACTIONS(5399), + [anon_sym_PLUS] = ACTIONS(5399), + [anon_sym___extension__] = ACTIONS(5397), + [anon_sym_typedef] = ACTIONS(5397), + [anon_sym_extern] = ACTIONS(5397), + [anon_sym___attribute__] = ACTIONS(5397), + [anon_sym___attribute] = ACTIONS(5397), + [anon_sym_noreturn] = ACTIONS(5397), + [anon_sym_LBRACK] = ACTIONS(5399), + [anon_sym___declspec] = ACTIONS(5397), + [anon_sym___cdecl] = ACTIONS(5397), + [anon_sym___clrcall] = ACTIONS(5397), + [anon_sym___stdcall] = ACTIONS(5397), + [anon_sym___fastcall] = ACTIONS(5397), + [anon_sym___thiscall] = ACTIONS(5397), + [anon_sym___vectorcall] = ACTIONS(5397), + [anon_sym_signed] = ACTIONS(5397), + [anon_sym_unsigned] = ACTIONS(5397), + [anon_sym_long] = ACTIONS(5397), + [anon_sym_short] = ACTIONS(5397), + [anon_sym_static] = ACTIONS(5397), + [anon_sym_auto] = ACTIONS(5397), + [anon_sym_register] = ACTIONS(5397), + [anon_sym_inline] = ACTIONS(5397), + [anon_sym___inline] = ACTIONS(5397), + [anon_sym___inline__] = ACTIONS(5397), + [anon_sym___forceinline] = ACTIONS(5397), + [anon_sym_thread_local] = ACTIONS(5397), + [anon_sym___thread] = ACTIONS(5397), + [anon_sym_CG_EXTERN] = ACTIONS(5397), + [anon_sym_CG_INLINE] = ACTIONS(5397), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5397), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5397), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5397), + [anon_sym_IBOutlet] = ACTIONS(5397), + [anon_sym_IBInspectable] = ACTIONS(5397), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5397), + [anon_sym_NS_INLINE] = ACTIONS(5397), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5397), + [anon_sym_OBJC_EXPORT] = ACTIONS(5397), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5397), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5397), + [anon_sym_const] = ACTIONS(5397), + [anon_sym_constexpr] = ACTIONS(5397), + [anon_sym_volatile] = ACTIONS(5397), + [anon_sym_restrict] = ACTIONS(5397), + [anon_sym___restrict__] = ACTIONS(5397), + [anon_sym__Atomic] = ACTIONS(5397), + [anon_sym__Noreturn] = ACTIONS(5397), + [anon_sym__Nonnull] = ACTIONS(5397), + [anon_sym_nullable] = ACTIONS(5397), + [anon_sym__Complex] = ACTIONS(5397), + [anon_sym__Nullable] = ACTIONS(5397), + [anon_sym__Nullable_result] = ACTIONS(5397), + [anon_sym__Null_unspecified] = ACTIONS(5397), + [anon_sym___autoreleasing] = ACTIONS(5397), + [anon_sym___block] = ACTIONS(5397), + [anon_sym___bridge] = ACTIONS(5397), + [anon_sym___bridge_retained] = ACTIONS(5397), + [anon_sym___bridge_transfer] = ACTIONS(5397), + [anon_sym___complex] = ACTIONS(5397), + [anon_sym___const] = ACTIONS(5397), + [anon_sym___imag] = ACTIONS(5397), + [anon_sym___kindof] = ACTIONS(5397), + [anon_sym___nonnull] = ACTIONS(5397), + [anon_sym___nullable] = ACTIONS(5397), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5397), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5397), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5397), + [anon_sym___real] = ACTIONS(5397), + [anon_sym___strong] = ACTIONS(5397), + [anon_sym___unsafe_unretained] = ACTIONS(5397), + [anon_sym___unused] = ACTIONS(5397), + [anon_sym___weak] = ACTIONS(5397), + [anon_sym_alignas] = ACTIONS(5397), + [anon_sym__Alignas] = ACTIONS(5397), + [sym_primitive_type] = ACTIONS(5397), + [anon_sym_enum] = ACTIONS(5397), + [anon_sym_struct] = ACTIONS(5397), + [anon_sym_union] = ACTIONS(5397), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5397), + [anon_sym___typeof] = ACTIONS(5397), + [anon_sym_typeof] = ACTIONS(5397), + [aux_sym_preproc_undef_token1] = ACTIONS(5397), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5397), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5397), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5397), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5397), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5397), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5397), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5397), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5397), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5397), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5397), + [anon_sym_NS_AVAILABLE] = ACTIONS(5397), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5397), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5397), + [anon_sym_API_AVAILABLE] = ACTIONS(5397), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5397), + [anon_sym_API_DEPRECATED] = ACTIONS(5397), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5397), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5397), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5397), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5397), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5397), + [anon_sym___deprecated_msg] = ACTIONS(5397), + [anon_sym___deprecated_enum_msg] = ACTIONS(5397), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5397), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5397), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5397), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5397), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5397), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5397), + [anon_sym_ATend] = ACTIONS(5399), + [anon_sym_ATsynthesize] = ACTIONS(5399), + [anon_sym_ATdynamic] = ACTIONS(5399), + [anon_sym_BOOL] = ACTIONS(5397), + [anon_sym_IMP] = ACTIONS(5397), + [anon_sym_SEL] = ACTIONS(5397), + [anon_sym_Class] = ACTIONS(5397), + [anon_sym_id] = ACTIONS(5397), + }, + [2389] = { + [sym_identifier] = ACTIONS(5465), + [aux_sym_preproc_def_token1] = ACTIONS(5465), + [aux_sym_preproc_if_token1] = ACTIONS(5465), + [aux_sym_preproc_if_token2] = ACTIONS(5465), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5465), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5465), + [sym_preproc_directive] = ACTIONS(5465), + [anon_sym_DASH] = ACTIONS(5467), + [anon_sym_PLUS] = ACTIONS(5467), + [anon_sym___extension__] = ACTIONS(5465), + [anon_sym_typedef] = ACTIONS(5465), + [anon_sym_extern] = ACTIONS(5465), + [anon_sym___attribute__] = ACTIONS(5465), + [anon_sym___attribute] = ACTIONS(5465), + [anon_sym_noreturn] = ACTIONS(5465), + [anon_sym_LBRACK] = ACTIONS(5467), + [anon_sym___declspec] = ACTIONS(5465), + [anon_sym___cdecl] = ACTIONS(5465), + [anon_sym___clrcall] = ACTIONS(5465), + [anon_sym___stdcall] = ACTIONS(5465), + [anon_sym___fastcall] = ACTIONS(5465), + [anon_sym___thiscall] = ACTIONS(5465), + [anon_sym___vectorcall] = ACTIONS(5465), + [anon_sym_signed] = ACTIONS(5465), + [anon_sym_unsigned] = ACTIONS(5465), + [anon_sym_long] = ACTIONS(5465), + [anon_sym_short] = ACTIONS(5465), + [anon_sym_static] = ACTIONS(5465), + [anon_sym_auto] = ACTIONS(5465), + [anon_sym_register] = ACTIONS(5465), + [anon_sym_inline] = ACTIONS(5465), + [anon_sym___inline] = ACTIONS(5465), + [anon_sym___inline__] = ACTIONS(5465), + [anon_sym___forceinline] = ACTIONS(5465), + [anon_sym_thread_local] = ACTIONS(5465), + [anon_sym___thread] = ACTIONS(5465), + [anon_sym_CG_EXTERN] = ACTIONS(5465), + [anon_sym_CG_INLINE] = ACTIONS(5465), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5465), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5465), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5465), + [anon_sym_IBOutlet] = ACTIONS(5465), + [anon_sym_IBInspectable] = ACTIONS(5465), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5465), + [anon_sym_NS_INLINE] = ACTIONS(5465), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5465), + [anon_sym_OBJC_EXPORT] = ACTIONS(5465), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5465), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5465), + [anon_sym_const] = ACTIONS(5465), + [anon_sym_constexpr] = ACTIONS(5465), + [anon_sym_volatile] = ACTIONS(5465), + [anon_sym_restrict] = ACTIONS(5465), + [anon_sym___restrict__] = ACTIONS(5465), + [anon_sym__Atomic] = ACTIONS(5465), + [anon_sym__Noreturn] = ACTIONS(5465), + [anon_sym__Nonnull] = ACTIONS(5465), + [anon_sym_nullable] = ACTIONS(5465), + [anon_sym__Complex] = ACTIONS(5465), + [anon_sym__Nullable] = ACTIONS(5465), + [anon_sym__Nullable_result] = ACTIONS(5465), + [anon_sym__Null_unspecified] = ACTIONS(5465), + [anon_sym___autoreleasing] = ACTIONS(5465), + [anon_sym___block] = ACTIONS(5465), + [anon_sym___bridge] = ACTIONS(5465), + [anon_sym___bridge_retained] = ACTIONS(5465), + [anon_sym___bridge_transfer] = ACTIONS(5465), + [anon_sym___complex] = ACTIONS(5465), + [anon_sym___const] = ACTIONS(5465), + [anon_sym___imag] = ACTIONS(5465), + [anon_sym___kindof] = ACTIONS(5465), + [anon_sym___nonnull] = ACTIONS(5465), + [anon_sym___nullable] = ACTIONS(5465), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5465), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5465), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5465), + [anon_sym___real] = ACTIONS(5465), + [anon_sym___strong] = ACTIONS(5465), + [anon_sym___unsafe_unretained] = ACTIONS(5465), + [anon_sym___unused] = ACTIONS(5465), + [anon_sym___weak] = ACTIONS(5465), + [anon_sym_alignas] = ACTIONS(5465), + [anon_sym__Alignas] = ACTIONS(5465), + [sym_primitive_type] = ACTIONS(5465), + [anon_sym_enum] = ACTIONS(5465), + [anon_sym_struct] = ACTIONS(5465), + [anon_sym_union] = ACTIONS(5465), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5465), + [anon_sym___typeof] = ACTIONS(5465), + [anon_sym_typeof] = ACTIONS(5465), + [aux_sym_preproc_undef_token1] = ACTIONS(5465), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5465), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5465), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5465), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5465), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5465), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5465), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5465), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5465), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5465), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5465), + [anon_sym_NS_AVAILABLE] = ACTIONS(5465), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5465), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5465), + [anon_sym_API_AVAILABLE] = ACTIONS(5465), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5465), + [anon_sym_API_DEPRECATED] = ACTIONS(5465), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5465), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5465), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5465), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5465), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5465), + [anon_sym___deprecated_msg] = ACTIONS(5465), + [anon_sym___deprecated_enum_msg] = ACTIONS(5465), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5465), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5465), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5465), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5465), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5465), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5465), + [anon_sym_ATsynthesize] = ACTIONS(5467), + [anon_sym_ATdynamic] = ACTIONS(5467), + [anon_sym_BOOL] = ACTIONS(5465), + [anon_sym_IMP] = ACTIONS(5465), + [anon_sym_SEL] = ACTIONS(5465), + [anon_sym_Class] = ACTIONS(5465), + [anon_sym_id] = ACTIONS(5465), + }, + [2390] = { + [sym_identifier] = ACTIONS(5461), + [aux_sym_preproc_def_token1] = ACTIONS(5461), + [aux_sym_preproc_if_token1] = ACTIONS(5461), + [aux_sym_preproc_if_token2] = ACTIONS(5461), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5461), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5461), + [sym_preproc_directive] = ACTIONS(5461), + [anon_sym_DASH] = ACTIONS(5463), + [anon_sym_PLUS] = ACTIONS(5463), + [anon_sym___extension__] = ACTIONS(5461), + [anon_sym_typedef] = ACTIONS(5461), + [anon_sym_extern] = ACTIONS(5461), + [anon_sym___attribute__] = ACTIONS(5461), + [anon_sym___attribute] = ACTIONS(5461), + [anon_sym_noreturn] = ACTIONS(5461), + [anon_sym_LBRACK] = ACTIONS(5463), + [anon_sym___declspec] = ACTIONS(5461), + [anon_sym___cdecl] = ACTIONS(5461), + [anon_sym___clrcall] = ACTIONS(5461), + [anon_sym___stdcall] = ACTIONS(5461), + [anon_sym___fastcall] = ACTIONS(5461), + [anon_sym___thiscall] = ACTIONS(5461), + [anon_sym___vectorcall] = ACTIONS(5461), + [anon_sym_signed] = ACTIONS(5461), + [anon_sym_unsigned] = ACTIONS(5461), + [anon_sym_long] = ACTIONS(5461), + [anon_sym_short] = ACTIONS(5461), + [anon_sym_static] = ACTIONS(5461), + [anon_sym_auto] = ACTIONS(5461), + [anon_sym_register] = ACTIONS(5461), + [anon_sym_inline] = ACTIONS(5461), + [anon_sym___inline] = ACTIONS(5461), + [anon_sym___inline__] = ACTIONS(5461), + [anon_sym___forceinline] = ACTIONS(5461), + [anon_sym_thread_local] = ACTIONS(5461), + [anon_sym___thread] = ACTIONS(5461), + [anon_sym_CG_EXTERN] = ACTIONS(5461), + [anon_sym_CG_INLINE] = ACTIONS(5461), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5461), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5461), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5461), + [anon_sym_IBOutlet] = ACTIONS(5461), + [anon_sym_IBInspectable] = ACTIONS(5461), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5461), + [anon_sym_NS_INLINE] = ACTIONS(5461), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5461), + [anon_sym_OBJC_EXPORT] = ACTIONS(5461), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5461), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5461), + [anon_sym_const] = ACTIONS(5461), + [anon_sym_constexpr] = ACTIONS(5461), + [anon_sym_volatile] = ACTIONS(5461), + [anon_sym_restrict] = ACTIONS(5461), + [anon_sym___restrict__] = ACTIONS(5461), + [anon_sym__Atomic] = ACTIONS(5461), + [anon_sym__Noreturn] = ACTIONS(5461), + [anon_sym__Nonnull] = ACTIONS(5461), + [anon_sym_nullable] = ACTIONS(5461), + [anon_sym__Complex] = ACTIONS(5461), + [anon_sym__Nullable] = ACTIONS(5461), + [anon_sym__Nullable_result] = ACTIONS(5461), + [anon_sym__Null_unspecified] = ACTIONS(5461), + [anon_sym___autoreleasing] = ACTIONS(5461), + [anon_sym___block] = ACTIONS(5461), + [anon_sym___bridge] = ACTIONS(5461), + [anon_sym___bridge_retained] = ACTIONS(5461), + [anon_sym___bridge_transfer] = ACTIONS(5461), + [anon_sym___complex] = ACTIONS(5461), + [anon_sym___const] = ACTIONS(5461), + [anon_sym___imag] = ACTIONS(5461), + [anon_sym___kindof] = ACTIONS(5461), + [anon_sym___nonnull] = ACTIONS(5461), + [anon_sym___nullable] = ACTIONS(5461), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5461), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5461), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5461), + [anon_sym___real] = ACTIONS(5461), + [anon_sym___strong] = ACTIONS(5461), + [anon_sym___unsafe_unretained] = ACTIONS(5461), + [anon_sym___unused] = ACTIONS(5461), + [anon_sym___weak] = ACTIONS(5461), + [anon_sym_alignas] = ACTIONS(5461), + [anon_sym__Alignas] = ACTIONS(5461), + [sym_primitive_type] = ACTIONS(5461), + [anon_sym_enum] = ACTIONS(5461), + [anon_sym_struct] = ACTIONS(5461), + [anon_sym_union] = ACTIONS(5461), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5461), + [anon_sym___typeof] = ACTIONS(5461), + [anon_sym_typeof] = ACTIONS(5461), + [aux_sym_preproc_undef_token1] = ACTIONS(5461), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5461), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5461), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5461), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5461), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5461), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5461), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5461), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5461), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5461), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5461), + [anon_sym_NS_AVAILABLE] = ACTIONS(5461), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5461), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5461), + [anon_sym_API_AVAILABLE] = ACTIONS(5461), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5461), + [anon_sym_API_DEPRECATED] = ACTIONS(5461), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5461), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5461), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5461), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5461), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5461), + [anon_sym___deprecated_msg] = ACTIONS(5461), + [anon_sym___deprecated_enum_msg] = ACTIONS(5461), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5461), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5461), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5461), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5461), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5461), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5461), + [anon_sym_ATsynthesize] = ACTIONS(5463), + [anon_sym_ATdynamic] = ACTIONS(5463), + [anon_sym_BOOL] = ACTIONS(5461), + [anon_sym_IMP] = ACTIONS(5461), + [anon_sym_SEL] = ACTIONS(5461), + [anon_sym_Class] = ACTIONS(5461), + [anon_sym_id] = ACTIONS(5461), + }, + [2391] = { + [sym_identifier] = ACTIONS(5383), + [aux_sym_preproc_def_token1] = ACTIONS(5383), + [aux_sym_preproc_if_token1] = ACTIONS(5383), + [aux_sym_preproc_if_token2] = ACTIONS(5383), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5383), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5383), + [sym_preproc_directive] = ACTIONS(5383), + [anon_sym_DASH] = ACTIONS(5385), + [anon_sym_PLUS] = ACTIONS(5385), + [anon_sym___extension__] = ACTIONS(5383), + [anon_sym_typedef] = ACTIONS(5383), + [anon_sym_extern] = ACTIONS(5383), + [anon_sym___attribute__] = ACTIONS(5383), + [anon_sym___attribute] = ACTIONS(5383), + [anon_sym_noreturn] = ACTIONS(5383), + [anon_sym_LBRACK] = ACTIONS(5385), + [anon_sym___declspec] = ACTIONS(5383), + [anon_sym___cdecl] = ACTIONS(5383), + [anon_sym___clrcall] = ACTIONS(5383), + [anon_sym___stdcall] = ACTIONS(5383), + [anon_sym___fastcall] = ACTIONS(5383), + [anon_sym___thiscall] = ACTIONS(5383), + [anon_sym___vectorcall] = ACTIONS(5383), + [anon_sym_signed] = ACTIONS(5383), + [anon_sym_unsigned] = ACTIONS(5383), + [anon_sym_long] = ACTIONS(5383), + [anon_sym_short] = ACTIONS(5383), + [anon_sym_static] = ACTIONS(5383), + [anon_sym_auto] = ACTIONS(5383), + [anon_sym_register] = ACTIONS(5383), + [anon_sym_inline] = ACTIONS(5383), + [anon_sym___inline] = ACTIONS(5383), + [anon_sym___inline__] = ACTIONS(5383), + [anon_sym___forceinline] = ACTIONS(5383), + [anon_sym_thread_local] = ACTIONS(5383), + [anon_sym___thread] = ACTIONS(5383), + [anon_sym_CG_EXTERN] = ACTIONS(5383), + [anon_sym_CG_INLINE] = ACTIONS(5383), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5383), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5383), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5383), + [anon_sym_IBOutlet] = ACTIONS(5383), + [anon_sym_IBInspectable] = ACTIONS(5383), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5383), + [anon_sym_NS_INLINE] = ACTIONS(5383), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5383), + [anon_sym_OBJC_EXPORT] = ACTIONS(5383), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5383), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5383), + [anon_sym_const] = ACTIONS(5383), + [anon_sym_constexpr] = ACTIONS(5383), + [anon_sym_volatile] = ACTIONS(5383), + [anon_sym_restrict] = ACTIONS(5383), + [anon_sym___restrict__] = ACTIONS(5383), + [anon_sym__Atomic] = ACTIONS(5383), + [anon_sym__Noreturn] = ACTIONS(5383), + [anon_sym__Nonnull] = ACTIONS(5383), + [anon_sym_nullable] = ACTIONS(5383), + [anon_sym__Complex] = ACTIONS(5383), + [anon_sym__Nullable] = ACTIONS(5383), + [anon_sym__Nullable_result] = ACTIONS(5383), + [anon_sym__Null_unspecified] = ACTIONS(5383), + [anon_sym___autoreleasing] = ACTIONS(5383), + [anon_sym___block] = ACTIONS(5383), + [anon_sym___bridge] = ACTIONS(5383), + [anon_sym___bridge_retained] = ACTIONS(5383), + [anon_sym___bridge_transfer] = ACTIONS(5383), + [anon_sym___complex] = ACTIONS(5383), + [anon_sym___const] = ACTIONS(5383), + [anon_sym___imag] = ACTIONS(5383), + [anon_sym___kindof] = ACTIONS(5383), + [anon_sym___nonnull] = ACTIONS(5383), + [anon_sym___nullable] = ACTIONS(5383), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5383), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5383), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5383), + [anon_sym___real] = ACTIONS(5383), + [anon_sym___strong] = ACTIONS(5383), + [anon_sym___unsafe_unretained] = ACTIONS(5383), + [anon_sym___unused] = ACTIONS(5383), + [anon_sym___weak] = ACTIONS(5383), + [anon_sym_alignas] = ACTIONS(5383), + [anon_sym__Alignas] = ACTIONS(5383), + [sym_primitive_type] = ACTIONS(5383), + [anon_sym_enum] = ACTIONS(5383), + [anon_sym_struct] = ACTIONS(5383), + [anon_sym_union] = ACTIONS(5383), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5383), + [anon_sym___typeof] = ACTIONS(5383), + [anon_sym_typeof] = ACTIONS(5383), + [aux_sym_preproc_undef_token1] = ACTIONS(5383), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5383), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5383), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5383), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5383), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5383), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5383), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5383), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5383), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5383), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5383), + [anon_sym_NS_AVAILABLE] = ACTIONS(5383), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5383), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5383), + [anon_sym_API_AVAILABLE] = ACTIONS(5383), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5383), + [anon_sym_API_DEPRECATED] = ACTIONS(5383), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5383), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5383), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5383), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5383), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5383), + [anon_sym___deprecated_msg] = ACTIONS(5383), + [anon_sym___deprecated_enum_msg] = ACTIONS(5383), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5383), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5383), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5383), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5383), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5383), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5383), + [anon_sym_ATsynthesize] = ACTIONS(5385), + [anon_sym_ATdynamic] = ACTIONS(5385), + [anon_sym_BOOL] = ACTIONS(5383), + [anon_sym_IMP] = ACTIONS(5383), + [anon_sym_SEL] = ACTIONS(5383), + [anon_sym_Class] = ACTIONS(5383), + [anon_sym_id] = ACTIONS(5383), + }, + [2392] = { + [sym_identifier] = ACTIONS(5469), + [aux_sym_preproc_def_token1] = ACTIONS(5469), + [aux_sym_preproc_if_token1] = ACTIONS(5469), + [aux_sym_preproc_if_token2] = ACTIONS(5469), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5469), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5469), + [sym_preproc_directive] = ACTIONS(5469), + [anon_sym_DASH] = ACTIONS(5471), + [anon_sym_PLUS] = ACTIONS(5471), + [anon_sym___extension__] = ACTIONS(5469), + [anon_sym_typedef] = ACTIONS(5469), + [anon_sym_extern] = ACTIONS(5469), + [anon_sym___attribute__] = ACTIONS(5469), + [anon_sym___attribute] = ACTIONS(5469), + [anon_sym_noreturn] = ACTIONS(5469), + [anon_sym_LBRACK] = ACTIONS(5471), + [anon_sym___declspec] = ACTIONS(5469), + [anon_sym___cdecl] = ACTIONS(5469), + [anon_sym___clrcall] = ACTIONS(5469), + [anon_sym___stdcall] = ACTIONS(5469), + [anon_sym___fastcall] = ACTIONS(5469), + [anon_sym___thiscall] = ACTIONS(5469), + [anon_sym___vectorcall] = ACTIONS(5469), + [anon_sym_signed] = ACTIONS(5469), + [anon_sym_unsigned] = ACTIONS(5469), + [anon_sym_long] = ACTIONS(5469), + [anon_sym_short] = ACTIONS(5469), + [anon_sym_static] = ACTIONS(5469), + [anon_sym_auto] = ACTIONS(5469), + [anon_sym_register] = ACTIONS(5469), + [anon_sym_inline] = ACTIONS(5469), + [anon_sym___inline] = ACTIONS(5469), + [anon_sym___inline__] = ACTIONS(5469), + [anon_sym___forceinline] = ACTIONS(5469), + [anon_sym_thread_local] = ACTIONS(5469), + [anon_sym___thread] = ACTIONS(5469), + [anon_sym_CG_EXTERN] = ACTIONS(5469), + [anon_sym_CG_INLINE] = ACTIONS(5469), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5469), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5469), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5469), + [anon_sym_IBOutlet] = ACTIONS(5469), + [anon_sym_IBInspectable] = ACTIONS(5469), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5469), + [anon_sym_NS_INLINE] = ACTIONS(5469), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5469), + [anon_sym_OBJC_EXPORT] = ACTIONS(5469), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5469), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5469), + [anon_sym_const] = ACTIONS(5469), + [anon_sym_constexpr] = ACTIONS(5469), + [anon_sym_volatile] = ACTIONS(5469), + [anon_sym_restrict] = ACTIONS(5469), + [anon_sym___restrict__] = ACTIONS(5469), + [anon_sym__Atomic] = ACTIONS(5469), + [anon_sym__Noreturn] = ACTIONS(5469), + [anon_sym__Nonnull] = ACTIONS(5469), + [anon_sym_nullable] = ACTIONS(5469), + [anon_sym__Complex] = ACTIONS(5469), + [anon_sym__Nullable] = ACTIONS(5469), + [anon_sym__Nullable_result] = ACTIONS(5469), + [anon_sym__Null_unspecified] = ACTIONS(5469), + [anon_sym___autoreleasing] = ACTIONS(5469), + [anon_sym___block] = ACTIONS(5469), + [anon_sym___bridge] = ACTIONS(5469), + [anon_sym___bridge_retained] = ACTIONS(5469), + [anon_sym___bridge_transfer] = ACTIONS(5469), + [anon_sym___complex] = ACTIONS(5469), + [anon_sym___const] = ACTIONS(5469), + [anon_sym___imag] = ACTIONS(5469), + [anon_sym___kindof] = ACTIONS(5469), + [anon_sym___nonnull] = ACTIONS(5469), + [anon_sym___nullable] = ACTIONS(5469), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5469), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5469), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5469), + [anon_sym___real] = ACTIONS(5469), + [anon_sym___strong] = ACTIONS(5469), + [anon_sym___unsafe_unretained] = ACTIONS(5469), + [anon_sym___unused] = ACTIONS(5469), + [anon_sym___weak] = ACTIONS(5469), + [anon_sym_alignas] = ACTIONS(5469), + [anon_sym__Alignas] = ACTIONS(5469), + [sym_primitive_type] = ACTIONS(5469), + [anon_sym_enum] = ACTIONS(5469), + [anon_sym_struct] = ACTIONS(5469), + [anon_sym_union] = ACTIONS(5469), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5469), + [anon_sym___typeof] = ACTIONS(5469), + [anon_sym_typeof] = ACTIONS(5469), + [aux_sym_preproc_undef_token1] = ACTIONS(5469), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5469), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5469), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5469), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5469), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5469), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5469), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5469), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5469), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5469), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5469), + [anon_sym_NS_AVAILABLE] = ACTIONS(5469), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5469), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5469), + [anon_sym_API_AVAILABLE] = ACTIONS(5469), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5469), + [anon_sym_API_DEPRECATED] = ACTIONS(5469), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5469), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5469), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5469), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5469), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5469), + [anon_sym___deprecated_msg] = ACTIONS(5469), + [anon_sym___deprecated_enum_msg] = ACTIONS(5469), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5469), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5469), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5469), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5469), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5469), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5469), + [anon_sym_ATsynthesize] = ACTIONS(5471), + [anon_sym_ATdynamic] = ACTIONS(5471), + [anon_sym_BOOL] = ACTIONS(5469), + [anon_sym_IMP] = ACTIONS(5469), + [anon_sym_SEL] = ACTIONS(5469), + [anon_sym_Class] = ACTIONS(5469), + [anon_sym_id] = ACTIONS(5469), + }, + [2393] = { + [sym_identifier] = ACTIONS(2740), + [aux_sym_preproc_def_token1] = ACTIONS(2740), + [aux_sym_preproc_if_token1] = ACTIONS(2740), + [aux_sym_preproc_if_token2] = ACTIONS(2740), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2740), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2740), + [sym_preproc_directive] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2742), + [anon_sym_PLUS] = ACTIONS(2742), + [anon_sym___extension__] = ACTIONS(2740), + [anon_sym_typedef] = ACTIONS(2740), + [anon_sym_extern] = ACTIONS(2740), + [anon_sym___attribute__] = ACTIONS(2740), + [anon_sym___attribute] = ACTIONS(2740), + [anon_sym_noreturn] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym___declspec] = ACTIONS(2740), + [anon_sym___cdecl] = ACTIONS(2740), + [anon_sym___clrcall] = ACTIONS(2740), + [anon_sym___stdcall] = ACTIONS(2740), + [anon_sym___fastcall] = ACTIONS(2740), + [anon_sym___thiscall] = ACTIONS(2740), + [anon_sym___vectorcall] = ACTIONS(2740), + [anon_sym_signed] = ACTIONS(2740), + [anon_sym_unsigned] = ACTIONS(2740), + [anon_sym_long] = ACTIONS(2740), + [anon_sym_short] = ACTIONS(2740), + [anon_sym_static] = ACTIONS(2740), + [anon_sym_auto] = ACTIONS(2740), + [anon_sym_register] = ACTIONS(2740), + [anon_sym_inline] = ACTIONS(2740), + [anon_sym___inline] = ACTIONS(2740), + [anon_sym___inline__] = ACTIONS(2740), + [anon_sym___forceinline] = ACTIONS(2740), + [anon_sym_thread_local] = ACTIONS(2740), + [anon_sym___thread] = ACTIONS(2740), + [anon_sym_CG_EXTERN] = ACTIONS(2740), + [anon_sym_CG_INLINE] = ACTIONS(2740), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2740), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2740), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2740), + [anon_sym_IBOutlet] = ACTIONS(2740), + [anon_sym_IBInspectable] = ACTIONS(2740), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2740), + [anon_sym_NS_INLINE] = ACTIONS(2740), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2740), + [anon_sym_OBJC_EXPORT] = ACTIONS(2740), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2740), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2740), + [anon_sym_const] = ACTIONS(2740), + [anon_sym_constexpr] = ACTIONS(2740), + [anon_sym_volatile] = ACTIONS(2740), + [anon_sym_restrict] = ACTIONS(2740), + [anon_sym___restrict__] = ACTIONS(2740), + [anon_sym__Atomic] = ACTIONS(2740), + [anon_sym__Noreturn] = ACTIONS(2740), + [anon_sym__Nonnull] = ACTIONS(2740), + [anon_sym_nullable] = ACTIONS(2740), + [anon_sym__Complex] = ACTIONS(2740), + [anon_sym__Nullable] = ACTIONS(2740), + [anon_sym__Nullable_result] = ACTIONS(2740), + [anon_sym__Null_unspecified] = ACTIONS(2740), + [anon_sym___autoreleasing] = ACTIONS(2740), + [anon_sym___block] = ACTIONS(2740), + [anon_sym___bridge] = ACTIONS(2740), + [anon_sym___bridge_retained] = ACTIONS(2740), + [anon_sym___bridge_transfer] = ACTIONS(2740), + [anon_sym___complex] = ACTIONS(2740), + [anon_sym___const] = ACTIONS(2740), + [anon_sym___imag] = ACTIONS(2740), + [anon_sym___kindof] = ACTIONS(2740), + [anon_sym___nonnull] = ACTIONS(2740), + [anon_sym___nullable] = ACTIONS(2740), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2740), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2740), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2740), + [anon_sym___real] = ACTIONS(2740), + [anon_sym___strong] = ACTIONS(2740), + [anon_sym___unsafe_unretained] = ACTIONS(2740), + [anon_sym___unused] = ACTIONS(2740), + [anon_sym___weak] = ACTIONS(2740), + [anon_sym_alignas] = ACTIONS(2740), + [anon_sym__Alignas] = ACTIONS(2740), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_enum] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(2740), + [anon_sym_union] = ACTIONS(2740), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2740), + [anon_sym___typeof] = ACTIONS(2740), + [anon_sym_typeof] = ACTIONS(2740), + [aux_sym_preproc_undef_token1] = ACTIONS(2740), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2740), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2740), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2740), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2740), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2740), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2740), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2740), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2740), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2740), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2740), + [anon_sym_NS_AVAILABLE] = ACTIONS(2740), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2740), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2740), + [anon_sym_API_AVAILABLE] = ACTIONS(2740), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2740), + [anon_sym_API_DEPRECATED] = ACTIONS(2740), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2740), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2740), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2740), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2740), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2740), + [anon_sym___deprecated_msg] = ACTIONS(2740), + [anon_sym___deprecated_enum_msg] = ACTIONS(2740), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2740), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2740), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2740), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2740), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2740), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2740), + [anon_sym_ATsynthesize] = ACTIONS(2742), + [anon_sym_ATdynamic] = ACTIONS(2742), + [anon_sym_BOOL] = ACTIONS(2740), + [anon_sym_IMP] = ACTIONS(2740), + [anon_sym_SEL] = ACTIONS(2740), + [anon_sym_Class] = ACTIONS(2740), + [anon_sym_id] = ACTIONS(2740), + }, + [2394] = { + [sym_identifier] = ACTIONS(5437), + [aux_sym_preproc_def_token1] = ACTIONS(5437), + [aux_sym_preproc_if_token1] = ACTIONS(5437), + [aux_sym_preproc_if_token2] = ACTIONS(5437), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5437), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5437), + [sym_preproc_directive] = ACTIONS(5437), + [anon_sym_DASH] = ACTIONS(5439), + [anon_sym_PLUS] = ACTIONS(5439), + [anon_sym___extension__] = ACTIONS(5437), + [anon_sym_typedef] = ACTIONS(5437), + [anon_sym_extern] = ACTIONS(5437), + [anon_sym___attribute__] = ACTIONS(5437), + [anon_sym___attribute] = ACTIONS(5437), + [anon_sym_noreturn] = ACTIONS(5437), + [anon_sym_LBRACK] = ACTIONS(5439), + [anon_sym___declspec] = ACTIONS(5437), + [anon_sym___cdecl] = ACTIONS(5437), + [anon_sym___clrcall] = ACTIONS(5437), + [anon_sym___stdcall] = ACTIONS(5437), + [anon_sym___fastcall] = ACTIONS(5437), + [anon_sym___thiscall] = ACTIONS(5437), + [anon_sym___vectorcall] = ACTIONS(5437), + [anon_sym_signed] = ACTIONS(5437), + [anon_sym_unsigned] = ACTIONS(5437), + [anon_sym_long] = ACTIONS(5437), + [anon_sym_short] = ACTIONS(5437), + [anon_sym_static] = ACTIONS(5437), + [anon_sym_auto] = ACTIONS(5437), + [anon_sym_register] = ACTIONS(5437), + [anon_sym_inline] = ACTIONS(5437), + [anon_sym___inline] = ACTIONS(5437), + [anon_sym___inline__] = ACTIONS(5437), + [anon_sym___forceinline] = ACTIONS(5437), + [anon_sym_thread_local] = ACTIONS(5437), + [anon_sym___thread] = ACTIONS(5437), + [anon_sym_CG_EXTERN] = ACTIONS(5437), + [anon_sym_CG_INLINE] = ACTIONS(5437), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5437), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5437), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5437), + [anon_sym_IBOutlet] = ACTIONS(5437), + [anon_sym_IBInspectable] = ACTIONS(5437), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5437), + [anon_sym_NS_INLINE] = ACTIONS(5437), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5437), + [anon_sym_OBJC_EXPORT] = ACTIONS(5437), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5437), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5437), + [anon_sym_const] = ACTIONS(5437), + [anon_sym_constexpr] = ACTIONS(5437), + [anon_sym_volatile] = ACTIONS(5437), + [anon_sym_restrict] = ACTIONS(5437), + [anon_sym___restrict__] = ACTIONS(5437), + [anon_sym__Atomic] = ACTIONS(5437), + [anon_sym__Noreturn] = ACTIONS(5437), + [anon_sym__Nonnull] = ACTIONS(5437), + [anon_sym_nullable] = ACTIONS(5437), + [anon_sym__Complex] = ACTIONS(5437), + [anon_sym__Nullable] = ACTIONS(5437), + [anon_sym__Nullable_result] = ACTIONS(5437), + [anon_sym__Null_unspecified] = ACTIONS(5437), + [anon_sym___autoreleasing] = ACTIONS(5437), + [anon_sym___block] = ACTIONS(5437), + [anon_sym___bridge] = ACTIONS(5437), + [anon_sym___bridge_retained] = ACTIONS(5437), + [anon_sym___bridge_transfer] = ACTIONS(5437), + [anon_sym___complex] = ACTIONS(5437), + [anon_sym___const] = ACTIONS(5437), + [anon_sym___imag] = ACTIONS(5437), + [anon_sym___kindof] = ACTIONS(5437), + [anon_sym___nonnull] = ACTIONS(5437), + [anon_sym___nullable] = ACTIONS(5437), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5437), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5437), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5437), + [anon_sym___real] = ACTIONS(5437), + [anon_sym___strong] = ACTIONS(5437), + [anon_sym___unsafe_unretained] = ACTIONS(5437), + [anon_sym___unused] = ACTIONS(5437), + [anon_sym___weak] = ACTIONS(5437), + [anon_sym_alignas] = ACTIONS(5437), + [anon_sym__Alignas] = ACTIONS(5437), + [sym_primitive_type] = ACTIONS(5437), + [anon_sym_enum] = ACTIONS(5437), + [anon_sym_struct] = ACTIONS(5437), + [anon_sym_union] = ACTIONS(5437), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5437), + [anon_sym___typeof] = ACTIONS(5437), + [anon_sym_typeof] = ACTIONS(5437), + [aux_sym_preproc_undef_token1] = ACTIONS(5437), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5437), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5437), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5437), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5437), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5437), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5437), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5437), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5437), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5437), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5437), + [anon_sym_NS_AVAILABLE] = ACTIONS(5437), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5437), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5437), + [anon_sym_API_AVAILABLE] = ACTIONS(5437), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5437), + [anon_sym_API_DEPRECATED] = ACTIONS(5437), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5437), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5437), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5437), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5437), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5437), + [anon_sym___deprecated_msg] = ACTIONS(5437), + [anon_sym___deprecated_enum_msg] = ACTIONS(5437), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5437), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5437), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5437), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5437), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5437), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5437), + [anon_sym_ATsynthesize] = ACTIONS(5439), + [anon_sym_ATdynamic] = ACTIONS(5439), + [anon_sym_BOOL] = ACTIONS(5437), + [anon_sym_IMP] = ACTIONS(5437), + [anon_sym_SEL] = ACTIONS(5437), + [anon_sym_Class] = ACTIONS(5437), + [anon_sym_id] = ACTIONS(5437), + }, + [2395] = { + [sym_identifier] = ACTIONS(5457), + [aux_sym_preproc_def_token1] = ACTIONS(5457), + [aux_sym_preproc_if_token1] = ACTIONS(5457), + [aux_sym_preproc_if_token2] = ACTIONS(5457), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5457), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5457), + [sym_preproc_directive] = ACTIONS(5457), + [anon_sym_DASH] = ACTIONS(5459), + [anon_sym_PLUS] = ACTIONS(5459), + [anon_sym___extension__] = ACTIONS(5457), + [anon_sym_typedef] = ACTIONS(5457), + [anon_sym_extern] = ACTIONS(5457), + [anon_sym___attribute__] = ACTIONS(5457), + [anon_sym___attribute] = ACTIONS(5457), + [anon_sym_noreturn] = ACTIONS(5457), + [anon_sym_LBRACK] = ACTIONS(5459), + [anon_sym___declspec] = ACTIONS(5457), + [anon_sym___cdecl] = ACTIONS(5457), + [anon_sym___clrcall] = ACTIONS(5457), + [anon_sym___stdcall] = ACTIONS(5457), + [anon_sym___fastcall] = ACTIONS(5457), + [anon_sym___thiscall] = ACTIONS(5457), + [anon_sym___vectorcall] = ACTIONS(5457), + [anon_sym_signed] = ACTIONS(5457), + [anon_sym_unsigned] = ACTIONS(5457), + [anon_sym_long] = ACTIONS(5457), + [anon_sym_short] = ACTIONS(5457), + [anon_sym_static] = ACTIONS(5457), + [anon_sym_auto] = ACTIONS(5457), + [anon_sym_register] = ACTIONS(5457), + [anon_sym_inline] = ACTIONS(5457), + [anon_sym___inline] = ACTIONS(5457), + [anon_sym___inline__] = ACTIONS(5457), + [anon_sym___forceinline] = ACTIONS(5457), + [anon_sym_thread_local] = ACTIONS(5457), + [anon_sym___thread] = ACTIONS(5457), + [anon_sym_CG_EXTERN] = ACTIONS(5457), + [anon_sym_CG_INLINE] = ACTIONS(5457), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5457), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5457), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5457), + [anon_sym_IBOutlet] = ACTIONS(5457), + [anon_sym_IBInspectable] = ACTIONS(5457), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5457), + [anon_sym_NS_INLINE] = ACTIONS(5457), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5457), + [anon_sym_OBJC_EXPORT] = ACTIONS(5457), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5457), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5457), + [anon_sym_const] = ACTIONS(5457), + [anon_sym_constexpr] = ACTIONS(5457), + [anon_sym_volatile] = ACTIONS(5457), + [anon_sym_restrict] = ACTIONS(5457), + [anon_sym___restrict__] = ACTIONS(5457), + [anon_sym__Atomic] = ACTIONS(5457), + [anon_sym__Noreturn] = ACTIONS(5457), + [anon_sym__Nonnull] = ACTIONS(5457), + [anon_sym_nullable] = ACTIONS(5457), + [anon_sym__Complex] = ACTIONS(5457), + [anon_sym__Nullable] = ACTIONS(5457), + [anon_sym__Nullable_result] = ACTIONS(5457), + [anon_sym__Null_unspecified] = ACTIONS(5457), + [anon_sym___autoreleasing] = ACTIONS(5457), + [anon_sym___block] = ACTIONS(5457), + [anon_sym___bridge] = ACTIONS(5457), + [anon_sym___bridge_retained] = ACTIONS(5457), + [anon_sym___bridge_transfer] = ACTIONS(5457), + [anon_sym___complex] = ACTIONS(5457), + [anon_sym___const] = ACTIONS(5457), + [anon_sym___imag] = ACTIONS(5457), + [anon_sym___kindof] = ACTIONS(5457), + [anon_sym___nonnull] = ACTIONS(5457), + [anon_sym___nullable] = ACTIONS(5457), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5457), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5457), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5457), + [anon_sym___real] = ACTIONS(5457), + [anon_sym___strong] = ACTIONS(5457), + [anon_sym___unsafe_unretained] = ACTIONS(5457), + [anon_sym___unused] = ACTIONS(5457), + [anon_sym___weak] = ACTIONS(5457), + [anon_sym_alignas] = ACTIONS(5457), + [anon_sym__Alignas] = ACTIONS(5457), + [sym_primitive_type] = ACTIONS(5457), + [anon_sym_enum] = ACTIONS(5457), + [anon_sym_struct] = ACTIONS(5457), + [anon_sym_union] = ACTIONS(5457), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5457), + [anon_sym___typeof] = ACTIONS(5457), + [anon_sym_typeof] = ACTIONS(5457), + [aux_sym_preproc_undef_token1] = ACTIONS(5457), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5457), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5457), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5457), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5457), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5457), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5457), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5457), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5457), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5457), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5457), + [anon_sym_NS_AVAILABLE] = ACTIONS(5457), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5457), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5457), + [anon_sym_API_AVAILABLE] = ACTIONS(5457), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5457), + [anon_sym_API_DEPRECATED] = ACTIONS(5457), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5457), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5457), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5457), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5457), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5457), + [anon_sym___deprecated_msg] = ACTIONS(5457), + [anon_sym___deprecated_enum_msg] = ACTIONS(5457), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5457), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5457), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5457), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5457), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5457), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5457), + [anon_sym_ATsynthesize] = ACTIONS(5459), + [anon_sym_ATdynamic] = ACTIONS(5459), + [anon_sym_BOOL] = ACTIONS(5457), + [anon_sym_IMP] = ACTIONS(5457), + [anon_sym_SEL] = ACTIONS(5457), + [anon_sym_Class] = ACTIONS(5457), + [anon_sym_id] = ACTIONS(5457), + }, + [2396] = { + [sym_identifier] = ACTIONS(5447), + [aux_sym_preproc_def_token1] = ACTIONS(5447), + [aux_sym_preproc_if_token1] = ACTIONS(5447), + [aux_sym_preproc_if_token2] = ACTIONS(5447), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5447), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5447), + [sym_preproc_directive] = ACTIONS(5447), + [anon_sym_DASH] = ACTIONS(5449), + [anon_sym_PLUS] = ACTIONS(5449), + [anon_sym___extension__] = ACTIONS(5447), + [anon_sym_typedef] = ACTIONS(5447), + [anon_sym_extern] = ACTIONS(5447), + [anon_sym___attribute__] = ACTIONS(5447), + [anon_sym___attribute] = ACTIONS(5447), + [anon_sym_noreturn] = ACTIONS(5447), + [anon_sym_LBRACK] = ACTIONS(5449), + [anon_sym___declspec] = ACTIONS(5447), + [anon_sym___cdecl] = ACTIONS(5447), + [anon_sym___clrcall] = ACTIONS(5447), + [anon_sym___stdcall] = ACTIONS(5447), + [anon_sym___fastcall] = ACTIONS(5447), + [anon_sym___thiscall] = ACTIONS(5447), + [anon_sym___vectorcall] = ACTIONS(5447), + [anon_sym_signed] = ACTIONS(5447), + [anon_sym_unsigned] = ACTIONS(5447), + [anon_sym_long] = ACTIONS(5447), + [anon_sym_short] = ACTIONS(5447), + [anon_sym_static] = ACTIONS(5447), + [anon_sym_auto] = ACTIONS(5447), + [anon_sym_register] = ACTIONS(5447), + [anon_sym_inline] = ACTIONS(5447), + [anon_sym___inline] = ACTIONS(5447), + [anon_sym___inline__] = ACTIONS(5447), + [anon_sym___forceinline] = ACTIONS(5447), + [anon_sym_thread_local] = ACTIONS(5447), + [anon_sym___thread] = ACTIONS(5447), + [anon_sym_CG_EXTERN] = ACTIONS(5447), + [anon_sym_CG_INLINE] = ACTIONS(5447), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5447), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5447), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5447), + [anon_sym_IBOutlet] = ACTIONS(5447), + [anon_sym_IBInspectable] = ACTIONS(5447), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5447), + [anon_sym_NS_INLINE] = ACTIONS(5447), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5447), + [anon_sym_OBJC_EXPORT] = ACTIONS(5447), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5447), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5447), + [anon_sym_const] = ACTIONS(5447), + [anon_sym_constexpr] = ACTIONS(5447), + [anon_sym_volatile] = ACTIONS(5447), + [anon_sym_restrict] = ACTIONS(5447), + [anon_sym___restrict__] = ACTIONS(5447), + [anon_sym__Atomic] = ACTIONS(5447), + [anon_sym__Noreturn] = ACTIONS(5447), + [anon_sym__Nonnull] = ACTIONS(5447), + [anon_sym_nullable] = ACTIONS(5447), + [anon_sym__Complex] = ACTIONS(5447), + [anon_sym__Nullable] = ACTIONS(5447), + [anon_sym__Nullable_result] = ACTIONS(5447), + [anon_sym__Null_unspecified] = ACTIONS(5447), + [anon_sym___autoreleasing] = ACTIONS(5447), + [anon_sym___block] = ACTIONS(5447), + [anon_sym___bridge] = ACTIONS(5447), + [anon_sym___bridge_retained] = ACTIONS(5447), + [anon_sym___bridge_transfer] = ACTIONS(5447), + [anon_sym___complex] = ACTIONS(5447), + [anon_sym___const] = ACTIONS(5447), + [anon_sym___imag] = ACTIONS(5447), + [anon_sym___kindof] = ACTIONS(5447), + [anon_sym___nonnull] = ACTIONS(5447), + [anon_sym___nullable] = ACTIONS(5447), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5447), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5447), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5447), + [anon_sym___real] = ACTIONS(5447), + [anon_sym___strong] = ACTIONS(5447), + [anon_sym___unsafe_unretained] = ACTIONS(5447), + [anon_sym___unused] = ACTIONS(5447), + [anon_sym___weak] = ACTIONS(5447), + [anon_sym_alignas] = ACTIONS(5447), + [anon_sym__Alignas] = ACTIONS(5447), + [sym_primitive_type] = ACTIONS(5447), + [anon_sym_enum] = ACTIONS(5447), + [anon_sym_struct] = ACTIONS(5447), + [anon_sym_union] = ACTIONS(5447), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5447), + [anon_sym___typeof] = ACTIONS(5447), + [anon_sym_typeof] = ACTIONS(5447), + [aux_sym_preproc_undef_token1] = ACTIONS(5447), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5447), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5447), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5447), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5447), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5447), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5447), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5447), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5447), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5447), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5447), + [anon_sym_NS_AVAILABLE] = ACTIONS(5447), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5447), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5447), + [anon_sym_API_AVAILABLE] = ACTIONS(5447), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5447), + [anon_sym_API_DEPRECATED] = ACTIONS(5447), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5447), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5447), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5447), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5447), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5447), + [anon_sym___deprecated_msg] = ACTIONS(5447), + [anon_sym___deprecated_enum_msg] = ACTIONS(5447), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5447), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5447), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5447), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5447), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5447), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5447), + [anon_sym_ATsynthesize] = ACTIONS(5449), + [anon_sym_ATdynamic] = ACTIONS(5449), + [anon_sym_BOOL] = ACTIONS(5447), + [anon_sym_IMP] = ACTIONS(5447), + [anon_sym_SEL] = ACTIONS(5447), + [anon_sym_Class] = ACTIONS(5447), + [anon_sym_id] = ACTIONS(5447), + }, + [2397] = { + [sym_identifier] = ACTIONS(5457), + [aux_sym_preproc_def_token1] = ACTIONS(5457), + [aux_sym_preproc_if_token1] = ACTIONS(5457), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5457), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5457), + [sym_preproc_directive] = ACTIONS(5457), + [anon_sym_DASH] = ACTIONS(5459), + [anon_sym_PLUS] = ACTIONS(5459), + [anon_sym___extension__] = ACTIONS(5457), + [anon_sym_typedef] = ACTIONS(5457), + [anon_sym_extern] = ACTIONS(5457), + [anon_sym___attribute__] = ACTIONS(5457), + [anon_sym___attribute] = ACTIONS(5457), + [anon_sym_noreturn] = ACTIONS(5457), + [anon_sym_LBRACK] = ACTIONS(5459), + [anon_sym___declspec] = ACTIONS(5457), + [anon_sym___cdecl] = ACTIONS(5457), + [anon_sym___clrcall] = ACTIONS(5457), + [anon_sym___stdcall] = ACTIONS(5457), + [anon_sym___fastcall] = ACTIONS(5457), + [anon_sym___thiscall] = ACTIONS(5457), + [anon_sym___vectorcall] = ACTIONS(5457), + [anon_sym_signed] = ACTIONS(5457), + [anon_sym_unsigned] = ACTIONS(5457), + [anon_sym_long] = ACTIONS(5457), + [anon_sym_short] = ACTIONS(5457), + [anon_sym_static] = ACTIONS(5457), + [anon_sym_auto] = ACTIONS(5457), + [anon_sym_register] = ACTIONS(5457), + [anon_sym_inline] = ACTIONS(5457), + [anon_sym___inline] = ACTIONS(5457), + [anon_sym___inline__] = ACTIONS(5457), + [anon_sym___forceinline] = ACTIONS(5457), + [anon_sym_thread_local] = ACTIONS(5457), + [anon_sym___thread] = ACTIONS(5457), + [anon_sym_CG_EXTERN] = ACTIONS(5457), + [anon_sym_CG_INLINE] = ACTIONS(5457), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5457), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5457), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5457), + [anon_sym_IBOutlet] = ACTIONS(5457), + [anon_sym_IBInspectable] = ACTIONS(5457), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5457), + [anon_sym_NS_INLINE] = ACTIONS(5457), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5457), + [anon_sym_OBJC_EXPORT] = ACTIONS(5457), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5457), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5457), + [anon_sym_const] = ACTIONS(5457), + [anon_sym_constexpr] = ACTIONS(5457), + [anon_sym_volatile] = ACTIONS(5457), + [anon_sym_restrict] = ACTIONS(5457), + [anon_sym___restrict__] = ACTIONS(5457), + [anon_sym__Atomic] = ACTIONS(5457), + [anon_sym__Noreturn] = ACTIONS(5457), + [anon_sym__Nonnull] = ACTIONS(5457), + [anon_sym_nullable] = ACTIONS(5457), + [anon_sym__Complex] = ACTIONS(5457), + [anon_sym__Nullable] = ACTIONS(5457), + [anon_sym__Nullable_result] = ACTIONS(5457), + [anon_sym__Null_unspecified] = ACTIONS(5457), + [anon_sym___autoreleasing] = ACTIONS(5457), + [anon_sym___block] = ACTIONS(5457), + [anon_sym___bridge] = ACTIONS(5457), + [anon_sym___bridge_retained] = ACTIONS(5457), + [anon_sym___bridge_transfer] = ACTIONS(5457), + [anon_sym___complex] = ACTIONS(5457), + [anon_sym___const] = ACTIONS(5457), + [anon_sym___imag] = ACTIONS(5457), + [anon_sym___kindof] = ACTIONS(5457), + [anon_sym___nonnull] = ACTIONS(5457), + [anon_sym___nullable] = ACTIONS(5457), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5457), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5457), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5457), + [anon_sym___real] = ACTIONS(5457), + [anon_sym___strong] = ACTIONS(5457), + [anon_sym___unsafe_unretained] = ACTIONS(5457), + [anon_sym___unused] = ACTIONS(5457), + [anon_sym___weak] = ACTIONS(5457), + [anon_sym_alignas] = ACTIONS(5457), + [anon_sym__Alignas] = ACTIONS(5457), + [sym_primitive_type] = ACTIONS(5457), + [anon_sym_enum] = ACTIONS(5457), + [anon_sym_struct] = ACTIONS(5457), + [anon_sym_union] = ACTIONS(5457), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5457), + [anon_sym___typeof] = ACTIONS(5457), + [anon_sym_typeof] = ACTIONS(5457), + [aux_sym_preproc_undef_token1] = ACTIONS(5457), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5457), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5457), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5457), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5457), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5457), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5457), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5457), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5457), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5457), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5457), + [anon_sym_NS_AVAILABLE] = ACTIONS(5457), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5457), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5457), + [anon_sym_API_AVAILABLE] = ACTIONS(5457), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5457), + [anon_sym_API_DEPRECATED] = ACTIONS(5457), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5457), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5457), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5457), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5457), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5457), + [anon_sym___deprecated_msg] = ACTIONS(5457), + [anon_sym___deprecated_enum_msg] = ACTIONS(5457), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5457), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5457), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5457), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5457), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5457), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5457), + [anon_sym_ATend] = ACTIONS(5459), + [anon_sym_ATsynthesize] = ACTIONS(5459), + [anon_sym_ATdynamic] = ACTIONS(5459), + [anon_sym_BOOL] = ACTIONS(5457), + [anon_sym_IMP] = ACTIONS(5457), + [anon_sym_SEL] = ACTIONS(5457), + [anon_sym_Class] = ACTIONS(5457), + [anon_sym_id] = ACTIONS(5457), + }, + [2398] = { + [sym_identifier] = ACTIONS(5447), + [aux_sym_preproc_def_token1] = ACTIONS(5447), + [aux_sym_preproc_if_token1] = ACTIONS(5447), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5447), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5447), + [sym_preproc_directive] = ACTIONS(5447), + [anon_sym_DASH] = ACTIONS(5449), + [anon_sym_PLUS] = ACTIONS(5449), + [anon_sym___extension__] = ACTIONS(5447), + [anon_sym_typedef] = ACTIONS(5447), + [anon_sym_extern] = ACTIONS(5447), + [anon_sym___attribute__] = ACTIONS(5447), + [anon_sym___attribute] = ACTIONS(5447), + [anon_sym_noreturn] = ACTIONS(5447), + [anon_sym_LBRACK] = ACTIONS(5449), + [anon_sym___declspec] = ACTIONS(5447), + [anon_sym___cdecl] = ACTIONS(5447), + [anon_sym___clrcall] = ACTIONS(5447), + [anon_sym___stdcall] = ACTIONS(5447), + [anon_sym___fastcall] = ACTIONS(5447), + [anon_sym___thiscall] = ACTIONS(5447), + [anon_sym___vectorcall] = ACTIONS(5447), + [anon_sym_signed] = ACTIONS(5447), + [anon_sym_unsigned] = ACTIONS(5447), + [anon_sym_long] = ACTIONS(5447), + [anon_sym_short] = ACTIONS(5447), + [anon_sym_static] = ACTIONS(5447), + [anon_sym_auto] = ACTIONS(5447), + [anon_sym_register] = ACTIONS(5447), + [anon_sym_inline] = ACTIONS(5447), + [anon_sym___inline] = ACTIONS(5447), + [anon_sym___inline__] = ACTIONS(5447), + [anon_sym___forceinline] = ACTIONS(5447), + [anon_sym_thread_local] = ACTIONS(5447), + [anon_sym___thread] = ACTIONS(5447), + [anon_sym_CG_EXTERN] = ACTIONS(5447), + [anon_sym_CG_INLINE] = ACTIONS(5447), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5447), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5447), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5447), + [anon_sym_IBOutlet] = ACTIONS(5447), + [anon_sym_IBInspectable] = ACTIONS(5447), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5447), + [anon_sym_NS_INLINE] = ACTIONS(5447), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5447), + [anon_sym_OBJC_EXPORT] = ACTIONS(5447), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5447), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5447), + [anon_sym_const] = ACTIONS(5447), + [anon_sym_constexpr] = ACTIONS(5447), + [anon_sym_volatile] = ACTIONS(5447), + [anon_sym_restrict] = ACTIONS(5447), + [anon_sym___restrict__] = ACTIONS(5447), + [anon_sym__Atomic] = ACTIONS(5447), + [anon_sym__Noreturn] = ACTIONS(5447), + [anon_sym__Nonnull] = ACTIONS(5447), + [anon_sym_nullable] = ACTIONS(5447), + [anon_sym__Complex] = ACTIONS(5447), + [anon_sym__Nullable] = ACTIONS(5447), + [anon_sym__Nullable_result] = ACTIONS(5447), + [anon_sym__Null_unspecified] = ACTIONS(5447), + [anon_sym___autoreleasing] = ACTIONS(5447), + [anon_sym___block] = ACTIONS(5447), + [anon_sym___bridge] = ACTIONS(5447), + [anon_sym___bridge_retained] = ACTIONS(5447), + [anon_sym___bridge_transfer] = ACTIONS(5447), + [anon_sym___complex] = ACTIONS(5447), + [anon_sym___const] = ACTIONS(5447), + [anon_sym___imag] = ACTIONS(5447), + [anon_sym___kindof] = ACTIONS(5447), + [anon_sym___nonnull] = ACTIONS(5447), + [anon_sym___nullable] = ACTIONS(5447), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5447), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5447), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5447), + [anon_sym___real] = ACTIONS(5447), + [anon_sym___strong] = ACTIONS(5447), + [anon_sym___unsafe_unretained] = ACTIONS(5447), + [anon_sym___unused] = ACTIONS(5447), + [anon_sym___weak] = ACTIONS(5447), + [anon_sym_alignas] = ACTIONS(5447), + [anon_sym__Alignas] = ACTIONS(5447), + [sym_primitive_type] = ACTIONS(5447), + [anon_sym_enum] = ACTIONS(5447), + [anon_sym_struct] = ACTIONS(5447), + [anon_sym_union] = ACTIONS(5447), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5447), + [anon_sym___typeof] = ACTIONS(5447), + [anon_sym_typeof] = ACTIONS(5447), + [aux_sym_preproc_undef_token1] = ACTIONS(5447), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5447), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5447), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5447), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5447), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5447), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5447), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5447), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5447), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5447), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5447), + [anon_sym_NS_AVAILABLE] = ACTIONS(5447), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5447), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5447), + [anon_sym_API_AVAILABLE] = ACTIONS(5447), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5447), + [anon_sym_API_DEPRECATED] = ACTIONS(5447), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5447), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5447), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5447), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5447), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5447), + [anon_sym___deprecated_msg] = ACTIONS(5447), + [anon_sym___deprecated_enum_msg] = ACTIONS(5447), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5447), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5447), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5447), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5447), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5447), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5447), + [anon_sym_ATend] = ACTIONS(5449), + [anon_sym_ATsynthesize] = ACTIONS(5449), + [anon_sym_ATdynamic] = ACTIONS(5449), + [anon_sym_BOOL] = ACTIONS(5447), + [anon_sym_IMP] = ACTIONS(5447), + [anon_sym_SEL] = ACTIONS(5447), + [anon_sym_Class] = ACTIONS(5447), + [anon_sym_id] = ACTIONS(5447), + }, + [2399] = { + [sym_identifier] = ACTIONS(5409), + [aux_sym_preproc_def_token1] = ACTIONS(5409), + [aux_sym_preproc_if_token1] = ACTIONS(5409), + [aux_sym_preproc_if_token2] = ACTIONS(5409), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5409), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5409), + [sym_preproc_directive] = ACTIONS(5409), + [anon_sym_DASH] = ACTIONS(5411), + [anon_sym_PLUS] = ACTIONS(5411), + [anon_sym___extension__] = ACTIONS(5409), + [anon_sym_typedef] = ACTIONS(5409), + [anon_sym_extern] = ACTIONS(5409), + [anon_sym___attribute__] = ACTIONS(5409), + [anon_sym___attribute] = ACTIONS(5409), + [anon_sym_noreturn] = ACTIONS(5409), + [anon_sym_LBRACK] = ACTIONS(5411), + [anon_sym___declspec] = ACTIONS(5409), + [anon_sym___cdecl] = ACTIONS(5409), + [anon_sym___clrcall] = ACTIONS(5409), + [anon_sym___stdcall] = ACTIONS(5409), + [anon_sym___fastcall] = ACTIONS(5409), + [anon_sym___thiscall] = ACTIONS(5409), + [anon_sym___vectorcall] = ACTIONS(5409), + [anon_sym_signed] = ACTIONS(5409), + [anon_sym_unsigned] = ACTIONS(5409), + [anon_sym_long] = ACTIONS(5409), + [anon_sym_short] = ACTIONS(5409), + [anon_sym_static] = ACTIONS(5409), + [anon_sym_auto] = ACTIONS(5409), + [anon_sym_register] = ACTIONS(5409), + [anon_sym_inline] = ACTIONS(5409), + [anon_sym___inline] = ACTIONS(5409), + [anon_sym___inline__] = ACTIONS(5409), + [anon_sym___forceinline] = ACTIONS(5409), + [anon_sym_thread_local] = ACTIONS(5409), + [anon_sym___thread] = ACTIONS(5409), + [anon_sym_CG_EXTERN] = ACTIONS(5409), + [anon_sym_CG_INLINE] = ACTIONS(5409), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5409), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5409), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5409), + [anon_sym_IBOutlet] = ACTIONS(5409), + [anon_sym_IBInspectable] = ACTIONS(5409), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5409), + [anon_sym_NS_INLINE] = ACTIONS(5409), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5409), + [anon_sym_OBJC_EXPORT] = ACTIONS(5409), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5409), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5409), + [anon_sym_const] = ACTIONS(5409), + [anon_sym_constexpr] = ACTIONS(5409), + [anon_sym_volatile] = ACTIONS(5409), + [anon_sym_restrict] = ACTIONS(5409), + [anon_sym___restrict__] = ACTIONS(5409), + [anon_sym__Atomic] = ACTIONS(5409), + [anon_sym__Noreturn] = ACTIONS(5409), + [anon_sym__Nonnull] = ACTIONS(5409), + [anon_sym_nullable] = ACTIONS(5409), + [anon_sym__Complex] = ACTIONS(5409), + [anon_sym__Nullable] = ACTIONS(5409), + [anon_sym__Nullable_result] = ACTIONS(5409), + [anon_sym__Null_unspecified] = ACTIONS(5409), + [anon_sym___autoreleasing] = ACTIONS(5409), + [anon_sym___block] = ACTIONS(5409), + [anon_sym___bridge] = ACTIONS(5409), + [anon_sym___bridge_retained] = ACTIONS(5409), + [anon_sym___bridge_transfer] = ACTIONS(5409), + [anon_sym___complex] = ACTIONS(5409), + [anon_sym___const] = ACTIONS(5409), + [anon_sym___imag] = ACTIONS(5409), + [anon_sym___kindof] = ACTIONS(5409), + [anon_sym___nonnull] = ACTIONS(5409), + [anon_sym___nullable] = ACTIONS(5409), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5409), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5409), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5409), + [anon_sym___real] = ACTIONS(5409), + [anon_sym___strong] = ACTIONS(5409), + [anon_sym___unsafe_unretained] = ACTIONS(5409), + [anon_sym___unused] = ACTIONS(5409), + [anon_sym___weak] = ACTIONS(5409), + [anon_sym_alignas] = ACTIONS(5409), + [anon_sym__Alignas] = ACTIONS(5409), + [sym_primitive_type] = ACTIONS(5409), + [anon_sym_enum] = ACTIONS(5409), + [anon_sym_struct] = ACTIONS(5409), + [anon_sym_union] = ACTIONS(5409), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5409), + [anon_sym___typeof] = ACTIONS(5409), + [anon_sym_typeof] = ACTIONS(5409), + [aux_sym_preproc_undef_token1] = ACTIONS(5409), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5409), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5409), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5409), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5409), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5409), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5409), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5409), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5409), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5409), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5409), + [anon_sym_NS_AVAILABLE] = ACTIONS(5409), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5409), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5409), + [anon_sym_API_AVAILABLE] = ACTIONS(5409), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5409), + [anon_sym_API_DEPRECATED] = ACTIONS(5409), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5409), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5409), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5409), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5409), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5409), + [anon_sym___deprecated_msg] = ACTIONS(5409), + [anon_sym___deprecated_enum_msg] = ACTIONS(5409), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5409), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5409), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5409), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5409), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5409), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5409), + [anon_sym_ATsynthesize] = ACTIONS(5411), + [anon_sym_ATdynamic] = ACTIONS(5411), + [anon_sym_BOOL] = ACTIONS(5409), + [anon_sym_IMP] = ACTIONS(5409), + [anon_sym_SEL] = ACTIONS(5409), + [anon_sym_Class] = ACTIONS(5409), + [anon_sym_id] = ACTIONS(5409), + }, + [2400] = { + [sym_identifier] = ACTIONS(5383), + [aux_sym_preproc_def_token1] = ACTIONS(5383), + [aux_sym_preproc_if_token1] = ACTIONS(5383), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5383), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5383), + [sym_preproc_directive] = ACTIONS(5383), + [anon_sym_DASH] = ACTIONS(5385), + [anon_sym_PLUS] = ACTIONS(5385), + [anon_sym___extension__] = ACTIONS(5383), + [anon_sym_typedef] = ACTIONS(5383), + [anon_sym_extern] = ACTIONS(5383), + [anon_sym___attribute__] = ACTIONS(5383), + [anon_sym___attribute] = ACTIONS(5383), + [anon_sym_noreturn] = ACTIONS(5383), + [anon_sym_LBRACK] = ACTIONS(5385), + [anon_sym___declspec] = ACTIONS(5383), + [anon_sym___cdecl] = ACTIONS(5383), + [anon_sym___clrcall] = ACTIONS(5383), + [anon_sym___stdcall] = ACTIONS(5383), + [anon_sym___fastcall] = ACTIONS(5383), + [anon_sym___thiscall] = ACTIONS(5383), + [anon_sym___vectorcall] = ACTIONS(5383), + [anon_sym_signed] = ACTIONS(5383), + [anon_sym_unsigned] = ACTIONS(5383), + [anon_sym_long] = ACTIONS(5383), + [anon_sym_short] = ACTIONS(5383), + [anon_sym_static] = ACTIONS(5383), + [anon_sym_auto] = ACTIONS(5383), + [anon_sym_register] = ACTIONS(5383), + [anon_sym_inline] = ACTIONS(5383), + [anon_sym___inline] = ACTIONS(5383), + [anon_sym___inline__] = ACTIONS(5383), + [anon_sym___forceinline] = ACTIONS(5383), + [anon_sym_thread_local] = ACTIONS(5383), + [anon_sym___thread] = ACTIONS(5383), + [anon_sym_CG_EXTERN] = ACTIONS(5383), + [anon_sym_CG_INLINE] = ACTIONS(5383), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5383), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5383), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5383), + [anon_sym_IBOutlet] = ACTIONS(5383), + [anon_sym_IBInspectable] = ACTIONS(5383), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5383), + [anon_sym_NS_INLINE] = ACTIONS(5383), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5383), + [anon_sym_OBJC_EXPORT] = ACTIONS(5383), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5383), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5383), + [anon_sym_const] = ACTIONS(5383), + [anon_sym_constexpr] = ACTIONS(5383), + [anon_sym_volatile] = ACTIONS(5383), + [anon_sym_restrict] = ACTIONS(5383), + [anon_sym___restrict__] = ACTIONS(5383), + [anon_sym__Atomic] = ACTIONS(5383), + [anon_sym__Noreturn] = ACTIONS(5383), + [anon_sym__Nonnull] = ACTIONS(5383), + [anon_sym_nullable] = ACTIONS(5383), + [anon_sym__Complex] = ACTIONS(5383), + [anon_sym__Nullable] = ACTIONS(5383), + [anon_sym__Nullable_result] = ACTIONS(5383), + [anon_sym__Null_unspecified] = ACTIONS(5383), + [anon_sym___autoreleasing] = ACTIONS(5383), + [anon_sym___block] = ACTIONS(5383), + [anon_sym___bridge] = ACTIONS(5383), + [anon_sym___bridge_retained] = ACTIONS(5383), + [anon_sym___bridge_transfer] = ACTIONS(5383), + [anon_sym___complex] = ACTIONS(5383), + [anon_sym___const] = ACTIONS(5383), + [anon_sym___imag] = ACTIONS(5383), + [anon_sym___kindof] = ACTIONS(5383), + [anon_sym___nonnull] = ACTIONS(5383), + [anon_sym___nullable] = ACTIONS(5383), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5383), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5383), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5383), + [anon_sym___real] = ACTIONS(5383), + [anon_sym___strong] = ACTIONS(5383), + [anon_sym___unsafe_unretained] = ACTIONS(5383), + [anon_sym___unused] = ACTIONS(5383), + [anon_sym___weak] = ACTIONS(5383), + [anon_sym_alignas] = ACTIONS(5383), + [anon_sym__Alignas] = ACTIONS(5383), + [sym_primitive_type] = ACTIONS(5383), + [anon_sym_enum] = ACTIONS(5383), + [anon_sym_struct] = ACTIONS(5383), + [anon_sym_union] = ACTIONS(5383), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5383), + [anon_sym___typeof] = ACTIONS(5383), + [anon_sym_typeof] = ACTIONS(5383), + [aux_sym_preproc_undef_token1] = ACTIONS(5383), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5383), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5383), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5383), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5383), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5383), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5383), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5383), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5383), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5383), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5383), + [anon_sym_NS_AVAILABLE] = ACTIONS(5383), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5383), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5383), + [anon_sym_API_AVAILABLE] = ACTIONS(5383), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5383), + [anon_sym_API_DEPRECATED] = ACTIONS(5383), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5383), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5383), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5383), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5383), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5383), + [anon_sym___deprecated_msg] = ACTIONS(5383), + [anon_sym___deprecated_enum_msg] = ACTIONS(5383), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5383), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5383), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5383), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5383), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5383), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5383), + [anon_sym_ATend] = ACTIONS(5385), + [anon_sym_ATsynthesize] = ACTIONS(5385), + [anon_sym_ATdynamic] = ACTIONS(5385), + [anon_sym_BOOL] = ACTIONS(5383), + [anon_sym_IMP] = ACTIONS(5383), + [anon_sym_SEL] = ACTIONS(5383), + [anon_sym_Class] = ACTIONS(5383), + [anon_sym_id] = ACTIONS(5383), + }, + [2401] = { + [sym_identifier] = ACTIONS(5028), + [aux_sym_preproc_def_token1] = ACTIONS(5028), + [aux_sym_preproc_if_token1] = ACTIONS(5028), + [aux_sym_preproc_if_token2] = ACTIONS(5028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5028), + [sym_preproc_directive] = ACTIONS(5028), + [anon_sym_DASH] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5032), + [anon_sym___extension__] = ACTIONS(5028), + [anon_sym_typedef] = ACTIONS(5028), + [anon_sym_extern] = ACTIONS(5028), + [anon_sym___attribute__] = ACTIONS(5028), + [anon_sym___attribute] = ACTIONS(5028), + [anon_sym_noreturn] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5032), + [anon_sym___declspec] = ACTIONS(5028), + [anon_sym___cdecl] = ACTIONS(5028), + [anon_sym___clrcall] = ACTIONS(5028), + [anon_sym___stdcall] = ACTIONS(5028), + [anon_sym___fastcall] = ACTIONS(5028), + [anon_sym___thiscall] = ACTIONS(5028), + [anon_sym___vectorcall] = ACTIONS(5028), + [anon_sym_signed] = ACTIONS(5028), + [anon_sym_unsigned] = ACTIONS(5028), + [anon_sym_long] = ACTIONS(5028), + [anon_sym_short] = ACTIONS(5028), + [anon_sym_static] = ACTIONS(5028), + [anon_sym_auto] = ACTIONS(5028), + [anon_sym_register] = ACTIONS(5028), + [anon_sym_inline] = ACTIONS(5028), + [anon_sym___inline] = ACTIONS(5028), + [anon_sym___inline__] = ACTIONS(5028), + [anon_sym___forceinline] = ACTIONS(5028), + [anon_sym_thread_local] = ACTIONS(5028), + [anon_sym___thread] = ACTIONS(5028), + [anon_sym_CG_EXTERN] = ACTIONS(5028), + [anon_sym_CG_INLINE] = ACTIONS(5028), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5028), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5028), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5028), + [anon_sym_IBOutlet] = ACTIONS(5028), + [anon_sym_IBInspectable] = ACTIONS(5028), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5028), + [anon_sym_NS_INLINE] = ACTIONS(5028), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5028), + [anon_sym_OBJC_EXPORT] = ACTIONS(5028), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5028), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5028), + [anon_sym_const] = ACTIONS(5028), + [anon_sym_constexpr] = ACTIONS(5028), + [anon_sym_volatile] = ACTIONS(5028), + [anon_sym_restrict] = ACTIONS(5028), + [anon_sym___restrict__] = ACTIONS(5028), + [anon_sym__Atomic] = ACTIONS(5028), + [anon_sym__Noreturn] = ACTIONS(5028), + [anon_sym__Nonnull] = ACTIONS(5028), + [anon_sym_nullable] = ACTIONS(5028), + [anon_sym__Complex] = ACTIONS(5028), + [anon_sym__Nullable] = ACTIONS(5028), + [anon_sym__Nullable_result] = ACTIONS(5028), + [anon_sym__Null_unspecified] = ACTIONS(5028), + [anon_sym___autoreleasing] = ACTIONS(5028), + [anon_sym___block] = ACTIONS(5028), + [anon_sym___bridge] = ACTIONS(5028), + [anon_sym___bridge_retained] = ACTIONS(5028), + [anon_sym___bridge_transfer] = ACTIONS(5028), + [anon_sym___complex] = ACTIONS(5028), + [anon_sym___const] = ACTIONS(5028), + [anon_sym___imag] = ACTIONS(5028), + [anon_sym___kindof] = ACTIONS(5028), + [anon_sym___nonnull] = ACTIONS(5028), + [anon_sym___nullable] = ACTIONS(5028), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5028), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5028), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5028), + [anon_sym___real] = ACTIONS(5028), + [anon_sym___strong] = ACTIONS(5028), + [anon_sym___unsafe_unretained] = ACTIONS(5028), + [anon_sym___unused] = ACTIONS(5028), + [anon_sym___weak] = ACTIONS(5028), + [anon_sym_alignas] = ACTIONS(5028), + [anon_sym__Alignas] = ACTIONS(5028), + [sym_primitive_type] = ACTIONS(5028), + [anon_sym_enum] = ACTIONS(5028), + [anon_sym_struct] = ACTIONS(5028), + [anon_sym_union] = ACTIONS(5028), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5028), + [anon_sym___typeof] = ACTIONS(5028), + [anon_sym_typeof] = ACTIONS(5028), + [aux_sym_preproc_undef_token1] = ACTIONS(5028), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5028), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5028), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5028), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5028), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5028), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5028), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5028), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5028), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5028), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5028), + [anon_sym_NS_AVAILABLE] = ACTIONS(5028), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5028), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5028), + [anon_sym_API_AVAILABLE] = ACTIONS(5028), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5028), + [anon_sym_API_DEPRECATED] = ACTIONS(5028), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5028), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5028), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5028), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5028), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5028), + [anon_sym___deprecated_msg] = ACTIONS(5028), + [anon_sym___deprecated_enum_msg] = ACTIONS(5028), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5028), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5028), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5028), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5028), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5028), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5028), + [anon_sym_ATsynthesize] = ACTIONS(5032), + [anon_sym_ATdynamic] = ACTIONS(5032), + [anon_sym_BOOL] = ACTIONS(5028), + [anon_sym_IMP] = ACTIONS(5028), + [anon_sym_SEL] = ACTIONS(5028), + [anon_sym_Class] = ACTIONS(5028), + [anon_sym_id] = ACTIONS(5028), + }, + [2402] = { + [sym_identifier] = ACTIONS(2970), + [anon_sym_COMMA] = ACTIONS(2972), + [anon_sym_RPAREN] = ACTIONS(2972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(2972), + [anon_sym_STAR] = ACTIONS(2972), + [anon_sym_CARET] = ACTIONS(2972), + [anon_sym_GT] = ACTIONS(2972), + [anon_sym_SEMI] = ACTIONS(2972), + [anon_sym___extension__] = ACTIONS(2970), + [anon_sym_extern] = ACTIONS(2970), + [anon_sym___attribute__] = ACTIONS(2970), + [anon_sym___attribute] = ACTIONS(2970), + [anon_sym_noreturn] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym___declspec] = ACTIONS(2970), + [anon_sym___based] = ACTIONS(2970), + [anon_sym_LBRACE] = ACTIONS(2972), + [anon_sym_RBRACE] = ACTIONS(2972), + [anon_sym_signed] = ACTIONS(2970), + [anon_sym_unsigned] = ACTIONS(2970), + [anon_sym_long] = ACTIONS(2970), + [anon_sym_short] = ACTIONS(2970), + [anon_sym_static] = ACTIONS(2970), + [anon_sym_ATautoreleasepool] = ACTIONS(2972), + [anon_sym_auto] = ACTIONS(2970), + [anon_sym_register] = ACTIONS(2970), + [anon_sym_inline] = ACTIONS(2970), + [anon_sym___inline] = ACTIONS(2970), + [anon_sym___inline__] = ACTIONS(2970), + [anon_sym___forceinline] = ACTIONS(2970), + [anon_sym_thread_local] = ACTIONS(2970), + [anon_sym___thread] = ACTIONS(2970), + [anon_sym_CG_EXTERN] = ACTIONS(2970), + [anon_sym_CG_INLINE] = ACTIONS(2970), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2970), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2970), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2970), + [anon_sym_IBOutlet] = ACTIONS(2970), + [anon_sym_IBInspectable] = ACTIONS(2970), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2970), + [anon_sym_NS_INLINE] = ACTIONS(2970), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2970), + [anon_sym_OBJC_EXPORT] = ACTIONS(2970), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2970), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2970), + [anon_sym_const] = ACTIONS(2970), + [anon_sym_constexpr] = ACTIONS(2970), + [anon_sym_volatile] = ACTIONS(2970), + [anon_sym_restrict] = ACTIONS(2970), + [anon_sym___restrict__] = ACTIONS(2970), + [anon_sym__Atomic] = ACTIONS(2970), + [anon_sym__Noreturn] = ACTIONS(2970), + [anon_sym__Nonnull] = ACTIONS(2970), + [anon_sym_nullable] = ACTIONS(2970), + [anon_sym__Complex] = ACTIONS(2970), + [anon_sym__Nullable] = ACTIONS(2970), + [anon_sym__Nullable_result] = ACTIONS(2970), + [anon_sym__Null_unspecified] = ACTIONS(2970), + [anon_sym___autoreleasing] = ACTIONS(2970), + [anon_sym___block] = ACTIONS(2970), + [anon_sym___bridge] = ACTIONS(2970), + [anon_sym___bridge_retained] = ACTIONS(2970), + [anon_sym___bridge_transfer] = ACTIONS(2970), + [anon_sym___complex] = ACTIONS(2970), + [anon_sym___const] = ACTIONS(2970), + [anon_sym___imag] = ACTIONS(2970), + [anon_sym___kindof] = ACTIONS(2970), + [anon_sym___nonnull] = ACTIONS(2970), + [anon_sym___nullable] = ACTIONS(2970), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2970), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2970), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2970), + [anon_sym___real] = ACTIONS(2970), + [anon_sym___strong] = ACTIONS(2970), + [anon_sym___unsafe_unretained] = ACTIONS(2970), + [anon_sym___unused] = ACTIONS(2970), + [anon_sym___weak] = ACTIONS(2970), + [anon_sym_alignas] = ACTIONS(2970), + [anon_sym__Alignas] = ACTIONS(2970), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_enum] = ACTIONS(2970), + [anon_sym_COLON] = ACTIONS(2972), + [anon_sym_struct] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2970), + [anon_sym___typeof] = ACTIONS(2970), + [anon_sym_typeof] = ACTIONS(2970), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2970), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2970), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2970), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2970), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2970), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2970), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2970), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2970), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2970), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2970), + [anon_sym_NS_AVAILABLE] = ACTIONS(2970), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2970), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2970), + [anon_sym_API_AVAILABLE] = ACTIONS(2970), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2970), + [anon_sym_API_DEPRECATED] = ACTIONS(2970), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2970), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2970), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2970), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2970), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2970), + [anon_sym___deprecated_msg] = ACTIONS(2970), + [anon_sym___deprecated_enum_msg] = ACTIONS(2970), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2970), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2970), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2970), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2970), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2970), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2970), + [anon_sym_ATprotocol] = ACTIONS(2972), + [anon_sym_ATinterface] = ACTIONS(2972), + [anon_sym_ATimplementation] = ACTIONS(2972), + [anon_sym_ATproperty] = ACTIONS(2972), + [anon_sym_BOOL] = ACTIONS(2970), + [anon_sym_IMP] = ACTIONS(2970), + [anon_sym_SEL] = ACTIONS(2970), + [anon_sym_Class] = ACTIONS(2970), + [anon_sym_id] = ACTIONS(2970), + }, + [2403] = { + [sym_identifier] = ACTIONS(2664), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token2] = ACTIONS(2664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2664), + [sym_preproc_directive] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym___extension__] = ACTIONS(2664), + [anon_sym_typedef] = ACTIONS(2664), + [anon_sym_extern] = ACTIONS(2664), + [anon_sym___attribute__] = ACTIONS(2664), + [anon_sym___attribute] = ACTIONS(2664), + [anon_sym_noreturn] = ACTIONS(2664), + [anon_sym_LBRACK] = ACTIONS(2666), + [anon_sym___declspec] = ACTIONS(2664), + [anon_sym___cdecl] = ACTIONS(2664), + [anon_sym___clrcall] = ACTIONS(2664), + [anon_sym___stdcall] = ACTIONS(2664), + [anon_sym___fastcall] = ACTIONS(2664), + [anon_sym___thiscall] = ACTIONS(2664), + [anon_sym___vectorcall] = ACTIONS(2664), + [anon_sym_signed] = ACTIONS(2664), + [anon_sym_unsigned] = ACTIONS(2664), + [anon_sym_long] = ACTIONS(2664), + [anon_sym_short] = ACTIONS(2664), + [anon_sym_static] = ACTIONS(2664), + [anon_sym_auto] = ACTIONS(2664), + [anon_sym_register] = ACTIONS(2664), + [anon_sym_inline] = ACTIONS(2664), + [anon_sym___inline] = ACTIONS(2664), + [anon_sym___inline__] = ACTIONS(2664), + [anon_sym___forceinline] = ACTIONS(2664), + [anon_sym_thread_local] = ACTIONS(2664), + [anon_sym___thread] = ACTIONS(2664), + [anon_sym_CG_EXTERN] = ACTIONS(2664), + [anon_sym_CG_INLINE] = ACTIONS(2664), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2664), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2664), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2664), + [anon_sym_IBOutlet] = ACTIONS(2664), + [anon_sym_IBInspectable] = ACTIONS(2664), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2664), + [anon_sym_NS_INLINE] = ACTIONS(2664), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2664), + [anon_sym_OBJC_EXPORT] = ACTIONS(2664), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2664), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2664), + [anon_sym_const] = ACTIONS(2664), + [anon_sym_constexpr] = ACTIONS(2664), + [anon_sym_volatile] = ACTIONS(2664), + [anon_sym_restrict] = ACTIONS(2664), + [anon_sym___restrict__] = ACTIONS(2664), + [anon_sym__Atomic] = ACTIONS(2664), + [anon_sym__Noreturn] = ACTIONS(2664), + [anon_sym__Nonnull] = ACTIONS(2664), + [anon_sym_nullable] = ACTIONS(2664), + [anon_sym__Complex] = ACTIONS(2664), + [anon_sym__Nullable] = ACTIONS(2664), + [anon_sym__Nullable_result] = ACTIONS(2664), + [anon_sym__Null_unspecified] = ACTIONS(2664), + [anon_sym___autoreleasing] = ACTIONS(2664), + [anon_sym___block] = ACTIONS(2664), + [anon_sym___bridge] = ACTIONS(2664), + [anon_sym___bridge_retained] = ACTIONS(2664), + [anon_sym___bridge_transfer] = ACTIONS(2664), + [anon_sym___complex] = ACTIONS(2664), + [anon_sym___const] = ACTIONS(2664), + [anon_sym___imag] = ACTIONS(2664), + [anon_sym___kindof] = ACTIONS(2664), + [anon_sym___nonnull] = ACTIONS(2664), + [anon_sym___nullable] = ACTIONS(2664), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2664), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2664), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2664), + [anon_sym___real] = ACTIONS(2664), + [anon_sym___strong] = ACTIONS(2664), + [anon_sym___unsafe_unretained] = ACTIONS(2664), + [anon_sym___unused] = ACTIONS(2664), + [anon_sym___weak] = ACTIONS(2664), + [anon_sym_alignas] = ACTIONS(2664), + [anon_sym__Alignas] = ACTIONS(2664), + [sym_primitive_type] = ACTIONS(2664), + [anon_sym_enum] = ACTIONS(2664), + [anon_sym_struct] = ACTIONS(2664), + [anon_sym_union] = ACTIONS(2664), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2664), + [anon_sym___typeof] = ACTIONS(2664), + [anon_sym_typeof] = ACTIONS(2664), + [aux_sym_preproc_undef_token1] = ACTIONS(2664), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2664), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2664), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2664), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2664), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2664), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2664), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2664), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2664), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2664), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2664), + [anon_sym_NS_AVAILABLE] = ACTIONS(2664), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2664), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2664), + [anon_sym_API_AVAILABLE] = ACTIONS(2664), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2664), + [anon_sym_API_DEPRECATED] = ACTIONS(2664), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2664), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2664), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2664), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2664), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2664), + [anon_sym___deprecated_msg] = ACTIONS(2664), + [anon_sym___deprecated_enum_msg] = ACTIONS(2664), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2664), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2664), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2664), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2664), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2664), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2664), + [anon_sym_ATsynthesize] = ACTIONS(2666), + [anon_sym_ATdynamic] = ACTIONS(2666), + [anon_sym_BOOL] = ACTIONS(2664), + [anon_sym_IMP] = ACTIONS(2664), + [anon_sym_SEL] = ACTIONS(2664), + [anon_sym_Class] = ACTIONS(2664), + [anon_sym_id] = ACTIONS(2664), + }, + [2404] = { + [sym_identifier] = ACTIONS(5403), + [aux_sym_preproc_def_token1] = ACTIONS(5403), + [aux_sym_preproc_if_token1] = ACTIONS(5403), + [aux_sym_preproc_if_token2] = ACTIONS(5403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5403), + [sym_preproc_directive] = ACTIONS(5403), + [anon_sym_DASH] = ACTIONS(5405), + [anon_sym_PLUS] = ACTIONS(5405), + [anon_sym___extension__] = ACTIONS(5403), + [anon_sym_typedef] = ACTIONS(5403), + [anon_sym_extern] = ACTIONS(5403), + [anon_sym___attribute__] = ACTIONS(5403), + [anon_sym___attribute] = ACTIONS(5403), + [anon_sym_noreturn] = ACTIONS(5403), + [anon_sym_LBRACK] = ACTIONS(5405), + [anon_sym___declspec] = ACTIONS(5403), + [anon_sym___cdecl] = ACTIONS(5403), + [anon_sym___clrcall] = ACTIONS(5403), + [anon_sym___stdcall] = ACTIONS(5403), + [anon_sym___fastcall] = ACTIONS(5403), + [anon_sym___thiscall] = ACTIONS(5403), + [anon_sym___vectorcall] = ACTIONS(5403), + [anon_sym_signed] = ACTIONS(5403), + [anon_sym_unsigned] = ACTIONS(5403), + [anon_sym_long] = ACTIONS(5403), + [anon_sym_short] = ACTIONS(5403), + [anon_sym_static] = ACTIONS(5403), + [anon_sym_auto] = ACTIONS(5403), + [anon_sym_register] = ACTIONS(5403), + [anon_sym_inline] = ACTIONS(5403), + [anon_sym___inline] = ACTIONS(5403), + [anon_sym___inline__] = ACTIONS(5403), + [anon_sym___forceinline] = ACTIONS(5403), + [anon_sym_thread_local] = ACTIONS(5403), + [anon_sym___thread] = ACTIONS(5403), + [anon_sym_CG_EXTERN] = ACTIONS(5403), + [anon_sym_CG_INLINE] = ACTIONS(5403), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5403), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5403), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5403), + [anon_sym_IBOutlet] = ACTIONS(5403), + [anon_sym_IBInspectable] = ACTIONS(5403), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5403), + [anon_sym_NS_INLINE] = ACTIONS(5403), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5403), + [anon_sym_OBJC_EXPORT] = ACTIONS(5403), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5403), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5403), + [anon_sym_const] = ACTIONS(5403), + [anon_sym_constexpr] = ACTIONS(5403), + [anon_sym_volatile] = ACTIONS(5403), + [anon_sym_restrict] = ACTIONS(5403), + [anon_sym___restrict__] = ACTIONS(5403), + [anon_sym__Atomic] = ACTIONS(5403), + [anon_sym__Noreturn] = ACTIONS(5403), + [anon_sym__Nonnull] = ACTIONS(5403), + [anon_sym_nullable] = ACTIONS(5403), + [anon_sym__Complex] = ACTIONS(5403), + [anon_sym__Nullable] = ACTIONS(5403), + [anon_sym__Nullable_result] = ACTIONS(5403), + [anon_sym__Null_unspecified] = ACTIONS(5403), + [anon_sym___autoreleasing] = ACTIONS(5403), + [anon_sym___block] = ACTIONS(5403), + [anon_sym___bridge] = ACTIONS(5403), + [anon_sym___bridge_retained] = ACTIONS(5403), + [anon_sym___bridge_transfer] = ACTIONS(5403), + [anon_sym___complex] = ACTIONS(5403), + [anon_sym___const] = ACTIONS(5403), + [anon_sym___imag] = ACTIONS(5403), + [anon_sym___kindof] = ACTIONS(5403), + [anon_sym___nonnull] = ACTIONS(5403), + [anon_sym___nullable] = ACTIONS(5403), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5403), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5403), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5403), + [anon_sym___real] = ACTIONS(5403), + [anon_sym___strong] = ACTIONS(5403), + [anon_sym___unsafe_unretained] = ACTIONS(5403), + [anon_sym___unused] = ACTIONS(5403), + [anon_sym___weak] = ACTIONS(5403), + [anon_sym_alignas] = ACTIONS(5403), + [anon_sym__Alignas] = ACTIONS(5403), + [sym_primitive_type] = ACTIONS(5403), + [anon_sym_enum] = ACTIONS(5403), + [anon_sym_struct] = ACTIONS(5403), + [anon_sym_union] = ACTIONS(5403), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5403), + [anon_sym___typeof] = ACTIONS(5403), + [anon_sym_typeof] = ACTIONS(5403), + [aux_sym_preproc_undef_token1] = ACTIONS(5403), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5403), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5403), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5403), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5403), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5403), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5403), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5403), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5403), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5403), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5403), + [anon_sym_NS_AVAILABLE] = ACTIONS(5403), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5403), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5403), + [anon_sym_API_AVAILABLE] = ACTIONS(5403), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5403), + [anon_sym_API_DEPRECATED] = ACTIONS(5403), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5403), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5403), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5403), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5403), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5403), + [anon_sym___deprecated_msg] = ACTIONS(5403), + [anon_sym___deprecated_enum_msg] = ACTIONS(5403), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5403), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5403), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5403), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5403), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5403), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5403), + [anon_sym_ATsynthesize] = ACTIONS(5405), + [anon_sym_ATdynamic] = ACTIONS(5405), + [anon_sym_BOOL] = ACTIONS(5403), + [anon_sym_IMP] = ACTIONS(5403), + [anon_sym_SEL] = ACTIONS(5403), + [anon_sym_Class] = ACTIONS(5403), + [anon_sym_id] = ACTIONS(5403), + }, + [2405] = { + [sym_identifier] = ACTIONS(5367), + [aux_sym_preproc_def_token1] = ACTIONS(5367), + [aux_sym_preproc_if_token1] = ACTIONS(5367), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5367), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5367), + [sym_preproc_directive] = ACTIONS(5367), + [anon_sym_DASH] = ACTIONS(5369), + [anon_sym_PLUS] = ACTIONS(5369), + [anon_sym___extension__] = ACTIONS(5367), + [anon_sym_typedef] = ACTIONS(5367), + [anon_sym_extern] = ACTIONS(5367), + [anon_sym___attribute__] = ACTIONS(5367), + [anon_sym___attribute] = ACTIONS(5367), + [anon_sym_noreturn] = ACTIONS(5367), + [anon_sym_LBRACK] = ACTIONS(5369), + [anon_sym___declspec] = ACTIONS(5367), + [anon_sym___cdecl] = ACTIONS(5367), + [anon_sym___clrcall] = ACTIONS(5367), + [anon_sym___stdcall] = ACTIONS(5367), + [anon_sym___fastcall] = ACTIONS(5367), + [anon_sym___thiscall] = ACTIONS(5367), + [anon_sym___vectorcall] = ACTIONS(5367), + [anon_sym_signed] = ACTIONS(5367), + [anon_sym_unsigned] = ACTIONS(5367), + [anon_sym_long] = ACTIONS(5367), + [anon_sym_short] = ACTIONS(5367), + [anon_sym_static] = ACTIONS(5367), + [anon_sym_auto] = ACTIONS(5367), + [anon_sym_register] = ACTIONS(5367), + [anon_sym_inline] = ACTIONS(5367), + [anon_sym___inline] = ACTIONS(5367), + [anon_sym___inline__] = ACTIONS(5367), + [anon_sym___forceinline] = ACTIONS(5367), + [anon_sym_thread_local] = ACTIONS(5367), + [anon_sym___thread] = ACTIONS(5367), + [anon_sym_CG_EXTERN] = ACTIONS(5367), + [anon_sym_CG_INLINE] = ACTIONS(5367), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5367), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5367), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5367), + [anon_sym_IBOutlet] = ACTIONS(5367), + [anon_sym_IBInspectable] = ACTIONS(5367), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5367), + [anon_sym_NS_INLINE] = ACTIONS(5367), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5367), + [anon_sym_OBJC_EXPORT] = ACTIONS(5367), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5367), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5367), + [anon_sym_const] = ACTIONS(5367), + [anon_sym_constexpr] = ACTIONS(5367), + [anon_sym_volatile] = ACTIONS(5367), + [anon_sym_restrict] = ACTIONS(5367), + [anon_sym___restrict__] = ACTIONS(5367), + [anon_sym__Atomic] = ACTIONS(5367), + [anon_sym__Noreturn] = ACTIONS(5367), + [anon_sym__Nonnull] = ACTIONS(5367), + [anon_sym_nullable] = ACTIONS(5367), + [anon_sym__Complex] = ACTIONS(5367), + [anon_sym__Nullable] = ACTIONS(5367), + [anon_sym__Nullable_result] = ACTIONS(5367), + [anon_sym__Null_unspecified] = ACTIONS(5367), + [anon_sym___autoreleasing] = ACTIONS(5367), + [anon_sym___block] = ACTIONS(5367), + [anon_sym___bridge] = ACTIONS(5367), + [anon_sym___bridge_retained] = ACTIONS(5367), + [anon_sym___bridge_transfer] = ACTIONS(5367), + [anon_sym___complex] = ACTIONS(5367), + [anon_sym___const] = ACTIONS(5367), + [anon_sym___imag] = ACTIONS(5367), + [anon_sym___kindof] = ACTIONS(5367), + [anon_sym___nonnull] = ACTIONS(5367), + [anon_sym___nullable] = ACTIONS(5367), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5367), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5367), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5367), + [anon_sym___real] = ACTIONS(5367), + [anon_sym___strong] = ACTIONS(5367), + [anon_sym___unsafe_unretained] = ACTIONS(5367), + [anon_sym___unused] = ACTIONS(5367), + [anon_sym___weak] = ACTIONS(5367), + [anon_sym_alignas] = ACTIONS(5367), + [anon_sym__Alignas] = ACTIONS(5367), + [sym_primitive_type] = ACTIONS(5367), + [anon_sym_enum] = ACTIONS(5367), + [anon_sym_struct] = ACTIONS(5367), + [anon_sym_union] = ACTIONS(5367), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5367), + [anon_sym___typeof] = ACTIONS(5367), + [anon_sym_typeof] = ACTIONS(5367), + [aux_sym_preproc_undef_token1] = ACTIONS(5367), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5367), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5367), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5367), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5367), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5367), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5367), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5367), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5367), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5367), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5367), + [anon_sym_NS_AVAILABLE] = ACTIONS(5367), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5367), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5367), + [anon_sym_API_AVAILABLE] = ACTIONS(5367), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5367), + [anon_sym_API_DEPRECATED] = ACTIONS(5367), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5367), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5367), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5367), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5367), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5367), + [anon_sym___deprecated_msg] = ACTIONS(5367), + [anon_sym___deprecated_enum_msg] = ACTIONS(5367), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5367), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5367), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5367), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5367), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5367), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5367), + [anon_sym_ATend] = ACTIONS(5369), + [anon_sym_ATsynthesize] = ACTIONS(5369), + [anon_sym_ATdynamic] = ACTIONS(5369), + [anon_sym_BOOL] = ACTIONS(5367), + [anon_sym_IMP] = ACTIONS(5367), + [anon_sym_SEL] = ACTIONS(5367), + [anon_sym_Class] = ACTIONS(5367), + [anon_sym_id] = ACTIONS(5367), + }, + [2406] = { + [sym_identifier] = ACTIONS(5310), + [aux_sym_preproc_def_token1] = ACTIONS(5310), + [aux_sym_preproc_if_token1] = ACTIONS(5310), + [aux_sym_preproc_if_token2] = ACTIONS(5310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5310), + [sym_preproc_directive] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5312), + [anon_sym_PLUS] = ACTIONS(5312), + [anon_sym___extension__] = ACTIONS(5310), + [anon_sym_typedef] = ACTIONS(5310), + [anon_sym_extern] = ACTIONS(5310), + [anon_sym___attribute__] = ACTIONS(5310), + [anon_sym___attribute] = ACTIONS(5310), + [anon_sym_noreturn] = ACTIONS(5310), + [anon_sym_LBRACK] = ACTIONS(5312), + [anon_sym___declspec] = ACTIONS(5310), + [anon_sym___cdecl] = ACTIONS(5310), + [anon_sym___clrcall] = ACTIONS(5310), + [anon_sym___stdcall] = ACTIONS(5310), + [anon_sym___fastcall] = ACTIONS(5310), + [anon_sym___thiscall] = ACTIONS(5310), + [anon_sym___vectorcall] = ACTIONS(5310), + [anon_sym_signed] = ACTIONS(5310), + [anon_sym_unsigned] = ACTIONS(5310), + [anon_sym_long] = ACTIONS(5310), + [anon_sym_short] = ACTIONS(5310), + [anon_sym_static] = ACTIONS(5310), + [anon_sym_auto] = ACTIONS(5310), + [anon_sym_register] = ACTIONS(5310), + [anon_sym_inline] = ACTIONS(5310), + [anon_sym___inline] = ACTIONS(5310), + [anon_sym___inline__] = ACTIONS(5310), + [anon_sym___forceinline] = ACTIONS(5310), + [anon_sym_thread_local] = ACTIONS(5310), + [anon_sym___thread] = ACTIONS(5310), + [anon_sym_CG_EXTERN] = ACTIONS(5310), + [anon_sym_CG_INLINE] = ACTIONS(5310), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5310), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5310), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5310), + [anon_sym_IBOutlet] = ACTIONS(5310), + [anon_sym_IBInspectable] = ACTIONS(5310), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5310), + [anon_sym_NS_INLINE] = ACTIONS(5310), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5310), + [anon_sym_OBJC_EXPORT] = ACTIONS(5310), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5310), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5310), + [anon_sym_const] = ACTIONS(5310), + [anon_sym_constexpr] = ACTIONS(5310), + [anon_sym_volatile] = ACTIONS(5310), + [anon_sym_restrict] = ACTIONS(5310), + [anon_sym___restrict__] = ACTIONS(5310), + [anon_sym__Atomic] = ACTIONS(5310), + [anon_sym__Noreturn] = ACTIONS(5310), + [anon_sym__Nonnull] = ACTIONS(5310), + [anon_sym_nullable] = ACTIONS(5310), + [anon_sym__Complex] = ACTIONS(5310), + [anon_sym__Nullable] = ACTIONS(5310), + [anon_sym__Nullable_result] = ACTIONS(5310), + [anon_sym__Null_unspecified] = ACTIONS(5310), + [anon_sym___autoreleasing] = ACTIONS(5310), + [anon_sym___block] = ACTIONS(5310), + [anon_sym___bridge] = ACTIONS(5310), + [anon_sym___bridge_retained] = ACTIONS(5310), + [anon_sym___bridge_transfer] = ACTIONS(5310), + [anon_sym___complex] = ACTIONS(5310), + [anon_sym___const] = ACTIONS(5310), + [anon_sym___imag] = ACTIONS(5310), + [anon_sym___kindof] = ACTIONS(5310), + [anon_sym___nonnull] = ACTIONS(5310), + [anon_sym___nullable] = ACTIONS(5310), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5310), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5310), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5310), + [anon_sym___real] = ACTIONS(5310), + [anon_sym___strong] = ACTIONS(5310), + [anon_sym___unsafe_unretained] = ACTIONS(5310), + [anon_sym___unused] = ACTIONS(5310), + [anon_sym___weak] = ACTIONS(5310), + [anon_sym_alignas] = ACTIONS(5310), + [anon_sym__Alignas] = ACTIONS(5310), + [sym_primitive_type] = ACTIONS(5310), + [anon_sym_enum] = ACTIONS(5310), + [anon_sym_struct] = ACTIONS(5310), + [anon_sym_union] = ACTIONS(5310), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5310), + [anon_sym___typeof] = ACTIONS(5310), + [anon_sym_typeof] = ACTIONS(5310), + [aux_sym_preproc_undef_token1] = ACTIONS(5310), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5310), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5310), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5310), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5310), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5310), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5310), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5310), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5310), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5310), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5310), + [anon_sym_NS_AVAILABLE] = ACTIONS(5310), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5310), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5310), + [anon_sym_API_AVAILABLE] = ACTIONS(5310), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5310), + [anon_sym_API_DEPRECATED] = ACTIONS(5310), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5310), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5310), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5310), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5310), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5310), + [anon_sym___deprecated_msg] = ACTIONS(5310), + [anon_sym___deprecated_enum_msg] = ACTIONS(5310), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5310), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5310), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5310), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5310), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5310), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5310), + [anon_sym_ATsynthesize] = ACTIONS(5312), + [anon_sym_ATdynamic] = ACTIONS(5312), + [anon_sym_BOOL] = ACTIONS(5310), + [anon_sym_IMP] = ACTIONS(5310), + [anon_sym_SEL] = ACTIONS(5310), + [anon_sym_Class] = ACTIONS(5310), + [anon_sym_id] = ACTIONS(5310), + }, + [2407] = { + [sym_identifier] = ACTIONS(5437), + [aux_sym_preproc_def_token1] = ACTIONS(5437), + [aux_sym_preproc_if_token1] = ACTIONS(5437), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5437), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5437), + [sym_preproc_directive] = ACTIONS(5437), + [anon_sym_DASH] = ACTIONS(5439), + [anon_sym_PLUS] = ACTIONS(5439), + [anon_sym___extension__] = ACTIONS(5437), + [anon_sym_typedef] = ACTIONS(5437), + [anon_sym_extern] = ACTIONS(5437), + [anon_sym___attribute__] = ACTIONS(5437), + [anon_sym___attribute] = ACTIONS(5437), + [anon_sym_noreturn] = ACTIONS(5437), + [anon_sym_LBRACK] = ACTIONS(5439), + [anon_sym___declspec] = ACTIONS(5437), + [anon_sym___cdecl] = ACTIONS(5437), + [anon_sym___clrcall] = ACTIONS(5437), + [anon_sym___stdcall] = ACTIONS(5437), + [anon_sym___fastcall] = ACTIONS(5437), + [anon_sym___thiscall] = ACTIONS(5437), + [anon_sym___vectorcall] = ACTIONS(5437), + [anon_sym_signed] = ACTIONS(5437), + [anon_sym_unsigned] = ACTIONS(5437), + [anon_sym_long] = ACTIONS(5437), + [anon_sym_short] = ACTIONS(5437), + [anon_sym_static] = ACTIONS(5437), + [anon_sym_auto] = ACTIONS(5437), + [anon_sym_register] = ACTIONS(5437), + [anon_sym_inline] = ACTIONS(5437), + [anon_sym___inline] = ACTIONS(5437), + [anon_sym___inline__] = ACTIONS(5437), + [anon_sym___forceinline] = ACTIONS(5437), + [anon_sym_thread_local] = ACTIONS(5437), + [anon_sym___thread] = ACTIONS(5437), + [anon_sym_CG_EXTERN] = ACTIONS(5437), + [anon_sym_CG_INLINE] = ACTIONS(5437), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5437), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5437), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5437), + [anon_sym_IBOutlet] = ACTIONS(5437), + [anon_sym_IBInspectable] = ACTIONS(5437), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5437), + [anon_sym_NS_INLINE] = ACTIONS(5437), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5437), + [anon_sym_OBJC_EXPORT] = ACTIONS(5437), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5437), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5437), + [anon_sym_const] = ACTIONS(5437), + [anon_sym_constexpr] = ACTIONS(5437), + [anon_sym_volatile] = ACTIONS(5437), + [anon_sym_restrict] = ACTIONS(5437), + [anon_sym___restrict__] = ACTIONS(5437), + [anon_sym__Atomic] = ACTIONS(5437), + [anon_sym__Noreturn] = ACTIONS(5437), + [anon_sym__Nonnull] = ACTIONS(5437), + [anon_sym_nullable] = ACTIONS(5437), + [anon_sym__Complex] = ACTIONS(5437), + [anon_sym__Nullable] = ACTIONS(5437), + [anon_sym__Nullable_result] = ACTIONS(5437), + [anon_sym__Null_unspecified] = ACTIONS(5437), + [anon_sym___autoreleasing] = ACTIONS(5437), + [anon_sym___block] = ACTIONS(5437), + [anon_sym___bridge] = ACTIONS(5437), + [anon_sym___bridge_retained] = ACTIONS(5437), + [anon_sym___bridge_transfer] = ACTIONS(5437), + [anon_sym___complex] = ACTIONS(5437), + [anon_sym___const] = ACTIONS(5437), + [anon_sym___imag] = ACTIONS(5437), + [anon_sym___kindof] = ACTIONS(5437), + [anon_sym___nonnull] = ACTIONS(5437), + [anon_sym___nullable] = ACTIONS(5437), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5437), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5437), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5437), + [anon_sym___real] = ACTIONS(5437), + [anon_sym___strong] = ACTIONS(5437), + [anon_sym___unsafe_unretained] = ACTIONS(5437), + [anon_sym___unused] = ACTIONS(5437), + [anon_sym___weak] = ACTIONS(5437), + [anon_sym_alignas] = ACTIONS(5437), + [anon_sym__Alignas] = ACTIONS(5437), + [sym_primitive_type] = ACTIONS(5437), + [anon_sym_enum] = ACTIONS(5437), + [anon_sym_struct] = ACTIONS(5437), + [anon_sym_union] = ACTIONS(5437), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5437), + [anon_sym___typeof] = ACTIONS(5437), + [anon_sym_typeof] = ACTIONS(5437), + [aux_sym_preproc_undef_token1] = ACTIONS(5437), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5437), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5437), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5437), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5437), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5437), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5437), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5437), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5437), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5437), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5437), + [anon_sym_NS_AVAILABLE] = ACTIONS(5437), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5437), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5437), + [anon_sym_API_AVAILABLE] = ACTIONS(5437), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5437), + [anon_sym_API_DEPRECATED] = ACTIONS(5437), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5437), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5437), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5437), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5437), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5437), + [anon_sym___deprecated_msg] = ACTIONS(5437), + [anon_sym___deprecated_enum_msg] = ACTIONS(5437), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5437), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5437), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5437), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5437), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5437), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5437), + [anon_sym_ATend] = ACTIONS(5439), + [anon_sym_ATsynthesize] = ACTIONS(5439), + [anon_sym_ATdynamic] = ACTIONS(5439), + [anon_sym_BOOL] = ACTIONS(5437), + [anon_sym_IMP] = ACTIONS(5437), + [anon_sym_SEL] = ACTIONS(5437), + [anon_sym_Class] = ACTIONS(5437), + [anon_sym_id] = ACTIONS(5437), + }, + [2408] = { + [sym_identifier] = ACTIONS(2748), + [aux_sym_preproc_def_token1] = ACTIONS(2748), + [aux_sym_preproc_if_token1] = ACTIONS(2748), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2748), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2748), + [sym_preproc_directive] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2750), + [anon_sym_PLUS] = ACTIONS(2750), + [anon_sym___extension__] = ACTIONS(2748), + [anon_sym_typedef] = ACTIONS(2748), + [anon_sym_extern] = ACTIONS(2748), + [anon_sym___attribute__] = ACTIONS(2748), + [anon_sym___attribute] = ACTIONS(2748), + [anon_sym_noreturn] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2750), + [anon_sym___declspec] = ACTIONS(2748), + [anon_sym___cdecl] = ACTIONS(2748), + [anon_sym___clrcall] = ACTIONS(2748), + [anon_sym___stdcall] = ACTIONS(2748), + [anon_sym___fastcall] = ACTIONS(2748), + [anon_sym___thiscall] = ACTIONS(2748), + [anon_sym___vectorcall] = ACTIONS(2748), + [anon_sym_signed] = ACTIONS(2748), + [anon_sym_unsigned] = ACTIONS(2748), + [anon_sym_long] = ACTIONS(2748), + [anon_sym_short] = ACTIONS(2748), + [anon_sym_static] = ACTIONS(2748), + [anon_sym_auto] = ACTIONS(2748), + [anon_sym_register] = ACTIONS(2748), + [anon_sym_inline] = ACTIONS(2748), + [anon_sym___inline] = ACTIONS(2748), + [anon_sym___inline__] = ACTIONS(2748), + [anon_sym___forceinline] = ACTIONS(2748), + [anon_sym_thread_local] = ACTIONS(2748), + [anon_sym___thread] = ACTIONS(2748), + [anon_sym_CG_EXTERN] = ACTIONS(2748), + [anon_sym_CG_INLINE] = ACTIONS(2748), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2748), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2748), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2748), + [anon_sym_IBOutlet] = ACTIONS(2748), + [anon_sym_IBInspectable] = ACTIONS(2748), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2748), + [anon_sym_NS_INLINE] = ACTIONS(2748), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2748), + [anon_sym_OBJC_EXPORT] = ACTIONS(2748), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2748), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2748), + [anon_sym_constexpr] = ACTIONS(2748), + [anon_sym_volatile] = ACTIONS(2748), + [anon_sym_restrict] = ACTIONS(2748), + [anon_sym___restrict__] = ACTIONS(2748), + [anon_sym__Atomic] = ACTIONS(2748), + [anon_sym__Noreturn] = ACTIONS(2748), + [anon_sym__Nonnull] = ACTIONS(2748), + [anon_sym_nullable] = ACTIONS(2748), + [anon_sym__Complex] = ACTIONS(2748), + [anon_sym__Nullable] = ACTIONS(2748), + [anon_sym__Nullable_result] = ACTIONS(2748), + [anon_sym__Null_unspecified] = ACTIONS(2748), + [anon_sym___autoreleasing] = ACTIONS(2748), + [anon_sym___block] = ACTIONS(2748), + [anon_sym___bridge] = ACTIONS(2748), + [anon_sym___bridge_retained] = ACTIONS(2748), + [anon_sym___bridge_transfer] = ACTIONS(2748), + [anon_sym___complex] = ACTIONS(2748), + [anon_sym___const] = ACTIONS(2748), + [anon_sym___imag] = ACTIONS(2748), + [anon_sym___kindof] = ACTIONS(2748), + [anon_sym___nonnull] = ACTIONS(2748), + [anon_sym___nullable] = ACTIONS(2748), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2748), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2748), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2748), + [anon_sym___real] = ACTIONS(2748), + [anon_sym___strong] = ACTIONS(2748), + [anon_sym___unsafe_unretained] = ACTIONS(2748), + [anon_sym___unused] = ACTIONS(2748), + [anon_sym___weak] = ACTIONS(2748), + [anon_sym_alignas] = ACTIONS(2748), + [anon_sym__Alignas] = ACTIONS(2748), + [sym_primitive_type] = ACTIONS(2748), + [anon_sym_enum] = ACTIONS(2748), + [anon_sym_struct] = ACTIONS(2748), + [anon_sym_union] = ACTIONS(2748), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2748), + [anon_sym___typeof] = ACTIONS(2748), + [anon_sym_typeof] = ACTIONS(2748), + [aux_sym_preproc_undef_token1] = ACTIONS(2748), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2748), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2748), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2748), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2748), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2748), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2748), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2748), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2748), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2748), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2748), + [anon_sym_NS_AVAILABLE] = ACTIONS(2748), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2748), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2748), + [anon_sym_API_AVAILABLE] = ACTIONS(2748), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2748), + [anon_sym_API_DEPRECATED] = ACTIONS(2748), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2748), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2748), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2748), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2748), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2748), + [anon_sym___deprecated_msg] = ACTIONS(2748), + [anon_sym___deprecated_enum_msg] = ACTIONS(2748), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2748), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2748), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2748), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2748), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2748), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2748), + [anon_sym_ATend] = ACTIONS(2750), + [anon_sym_ATsynthesize] = ACTIONS(2750), + [anon_sym_ATdynamic] = ACTIONS(2750), + [anon_sym_BOOL] = ACTIONS(2748), + [anon_sym_IMP] = ACTIONS(2748), + [anon_sym_SEL] = ACTIONS(2748), + [anon_sym_Class] = ACTIONS(2748), + [anon_sym_id] = ACTIONS(2748), + }, + [2409] = { + [sym_identifier] = ACTIONS(5409), + [aux_sym_preproc_def_token1] = ACTIONS(5409), + [aux_sym_preproc_if_token1] = ACTIONS(5409), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5409), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5409), + [sym_preproc_directive] = ACTIONS(5409), + [anon_sym_DASH] = ACTIONS(5411), + [anon_sym_PLUS] = ACTIONS(5411), + [anon_sym___extension__] = ACTIONS(5409), + [anon_sym_typedef] = ACTIONS(5409), + [anon_sym_extern] = ACTIONS(5409), + [anon_sym___attribute__] = ACTIONS(5409), + [anon_sym___attribute] = ACTIONS(5409), + [anon_sym_noreturn] = ACTIONS(5409), + [anon_sym_LBRACK] = ACTIONS(5411), + [anon_sym___declspec] = ACTIONS(5409), + [anon_sym___cdecl] = ACTIONS(5409), + [anon_sym___clrcall] = ACTIONS(5409), + [anon_sym___stdcall] = ACTIONS(5409), + [anon_sym___fastcall] = ACTIONS(5409), + [anon_sym___thiscall] = ACTIONS(5409), + [anon_sym___vectorcall] = ACTIONS(5409), + [anon_sym_signed] = ACTIONS(5409), + [anon_sym_unsigned] = ACTIONS(5409), + [anon_sym_long] = ACTIONS(5409), + [anon_sym_short] = ACTIONS(5409), + [anon_sym_static] = ACTIONS(5409), + [anon_sym_auto] = ACTIONS(5409), + [anon_sym_register] = ACTIONS(5409), + [anon_sym_inline] = ACTIONS(5409), + [anon_sym___inline] = ACTIONS(5409), + [anon_sym___inline__] = ACTIONS(5409), + [anon_sym___forceinline] = ACTIONS(5409), + [anon_sym_thread_local] = ACTIONS(5409), + [anon_sym___thread] = ACTIONS(5409), + [anon_sym_CG_EXTERN] = ACTIONS(5409), + [anon_sym_CG_INLINE] = ACTIONS(5409), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5409), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5409), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5409), + [anon_sym_IBOutlet] = ACTIONS(5409), + [anon_sym_IBInspectable] = ACTIONS(5409), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5409), + [anon_sym_NS_INLINE] = ACTIONS(5409), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5409), + [anon_sym_OBJC_EXPORT] = ACTIONS(5409), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5409), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5409), + [anon_sym_const] = ACTIONS(5409), + [anon_sym_constexpr] = ACTIONS(5409), + [anon_sym_volatile] = ACTIONS(5409), + [anon_sym_restrict] = ACTIONS(5409), + [anon_sym___restrict__] = ACTIONS(5409), + [anon_sym__Atomic] = ACTIONS(5409), + [anon_sym__Noreturn] = ACTIONS(5409), + [anon_sym__Nonnull] = ACTIONS(5409), + [anon_sym_nullable] = ACTIONS(5409), + [anon_sym__Complex] = ACTIONS(5409), + [anon_sym__Nullable] = ACTIONS(5409), + [anon_sym__Nullable_result] = ACTIONS(5409), + [anon_sym__Null_unspecified] = ACTIONS(5409), + [anon_sym___autoreleasing] = ACTIONS(5409), + [anon_sym___block] = ACTIONS(5409), + [anon_sym___bridge] = ACTIONS(5409), + [anon_sym___bridge_retained] = ACTIONS(5409), + [anon_sym___bridge_transfer] = ACTIONS(5409), + [anon_sym___complex] = ACTIONS(5409), + [anon_sym___const] = ACTIONS(5409), + [anon_sym___imag] = ACTIONS(5409), + [anon_sym___kindof] = ACTIONS(5409), + [anon_sym___nonnull] = ACTIONS(5409), + [anon_sym___nullable] = ACTIONS(5409), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5409), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5409), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5409), + [anon_sym___real] = ACTIONS(5409), + [anon_sym___strong] = ACTIONS(5409), + [anon_sym___unsafe_unretained] = ACTIONS(5409), + [anon_sym___unused] = ACTIONS(5409), + [anon_sym___weak] = ACTIONS(5409), + [anon_sym_alignas] = ACTIONS(5409), + [anon_sym__Alignas] = ACTIONS(5409), + [sym_primitive_type] = ACTIONS(5409), + [anon_sym_enum] = ACTIONS(5409), + [anon_sym_struct] = ACTIONS(5409), + [anon_sym_union] = ACTIONS(5409), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5409), + [anon_sym___typeof] = ACTIONS(5409), + [anon_sym_typeof] = ACTIONS(5409), + [aux_sym_preproc_undef_token1] = ACTIONS(5409), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5409), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5409), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5409), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5409), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5409), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5409), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5409), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5409), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5409), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5409), + [anon_sym_NS_AVAILABLE] = ACTIONS(5409), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5409), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5409), + [anon_sym_API_AVAILABLE] = ACTIONS(5409), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5409), + [anon_sym_API_DEPRECATED] = ACTIONS(5409), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5409), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5409), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5409), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5409), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5409), + [anon_sym___deprecated_msg] = ACTIONS(5409), + [anon_sym___deprecated_enum_msg] = ACTIONS(5409), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5409), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5409), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5409), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5409), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5409), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5409), + [anon_sym_ATend] = ACTIONS(5411), + [anon_sym_ATsynthesize] = ACTIONS(5411), + [anon_sym_ATdynamic] = ACTIONS(5411), + [anon_sym_BOOL] = ACTIONS(5409), + [anon_sym_IMP] = ACTIONS(5409), + [anon_sym_SEL] = ACTIONS(5409), + [anon_sym_Class] = ACTIONS(5409), + [anon_sym_id] = ACTIONS(5409), + }, + [2410] = { + [sym_identifier] = ACTIONS(5542), + [aux_sym_preproc_def_token1] = ACTIONS(5542), + [aux_sym_preproc_if_token1] = ACTIONS(5542), + [aux_sym_preproc_if_token2] = ACTIONS(5542), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), + [sym_preproc_directive] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5544), + [anon_sym_PLUS] = ACTIONS(5544), + [anon_sym___extension__] = ACTIONS(5542), + [anon_sym_typedef] = ACTIONS(5542), + [anon_sym_extern] = ACTIONS(5542), + [anon_sym___attribute__] = ACTIONS(5542), + [anon_sym___attribute] = ACTIONS(5542), + [anon_sym_noreturn] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5544), + [anon_sym___declspec] = ACTIONS(5542), + [anon_sym___cdecl] = ACTIONS(5542), + [anon_sym___clrcall] = ACTIONS(5542), + [anon_sym___stdcall] = ACTIONS(5542), + [anon_sym___fastcall] = ACTIONS(5542), + [anon_sym___thiscall] = ACTIONS(5542), + [anon_sym___vectorcall] = ACTIONS(5542), + [anon_sym_signed] = ACTIONS(5542), + [anon_sym_unsigned] = ACTIONS(5542), + [anon_sym_long] = ACTIONS(5542), + [anon_sym_short] = ACTIONS(5542), + [anon_sym_static] = ACTIONS(5542), + [anon_sym_auto] = ACTIONS(5542), + [anon_sym_register] = ACTIONS(5542), + [anon_sym_inline] = ACTIONS(5542), + [anon_sym___inline] = ACTIONS(5542), + [anon_sym___inline__] = ACTIONS(5542), + [anon_sym___forceinline] = ACTIONS(5542), + [anon_sym_thread_local] = ACTIONS(5542), + [anon_sym___thread] = ACTIONS(5542), + [anon_sym_CG_EXTERN] = ACTIONS(5542), + [anon_sym_CG_INLINE] = ACTIONS(5542), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5542), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5542), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5542), + [anon_sym_IBOutlet] = ACTIONS(5542), + [anon_sym_IBInspectable] = ACTIONS(5542), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5542), + [anon_sym_NS_INLINE] = ACTIONS(5542), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5542), + [anon_sym_OBJC_EXPORT] = ACTIONS(5542), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5542), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5542), + [anon_sym_const] = ACTIONS(5542), + [anon_sym_constexpr] = ACTIONS(5542), + [anon_sym_volatile] = ACTIONS(5542), + [anon_sym_restrict] = ACTIONS(5542), + [anon_sym___restrict__] = ACTIONS(5542), + [anon_sym__Atomic] = ACTIONS(5542), + [anon_sym__Noreturn] = ACTIONS(5542), + [anon_sym__Nonnull] = ACTIONS(5542), + [anon_sym_nullable] = ACTIONS(5542), + [anon_sym__Complex] = ACTIONS(5542), + [anon_sym__Nullable] = ACTIONS(5542), + [anon_sym__Nullable_result] = ACTIONS(5542), + [anon_sym__Null_unspecified] = ACTIONS(5542), + [anon_sym___autoreleasing] = ACTIONS(5542), + [anon_sym___block] = ACTIONS(5542), + [anon_sym___bridge] = ACTIONS(5542), + [anon_sym___bridge_retained] = ACTIONS(5542), + [anon_sym___bridge_transfer] = ACTIONS(5542), + [anon_sym___complex] = ACTIONS(5542), + [anon_sym___const] = ACTIONS(5542), + [anon_sym___imag] = ACTIONS(5542), + [anon_sym___kindof] = ACTIONS(5542), + [anon_sym___nonnull] = ACTIONS(5542), + [anon_sym___nullable] = ACTIONS(5542), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5542), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5542), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5542), + [anon_sym___real] = ACTIONS(5542), + [anon_sym___strong] = ACTIONS(5542), + [anon_sym___unsafe_unretained] = ACTIONS(5542), + [anon_sym___unused] = ACTIONS(5542), + [anon_sym___weak] = ACTIONS(5542), + [anon_sym_alignas] = ACTIONS(5542), + [anon_sym__Alignas] = ACTIONS(5542), + [sym_primitive_type] = ACTIONS(5542), + [anon_sym_enum] = ACTIONS(5542), + [anon_sym_struct] = ACTIONS(5542), + [anon_sym_union] = ACTIONS(5542), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5542), + [anon_sym___typeof] = ACTIONS(5542), + [anon_sym_typeof] = ACTIONS(5542), + [aux_sym_preproc_undef_token1] = ACTIONS(5542), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5542), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5542), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5542), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5542), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5542), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5542), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5542), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5542), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5542), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5542), + [anon_sym_NS_AVAILABLE] = ACTIONS(5542), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5542), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5542), + [anon_sym_API_AVAILABLE] = ACTIONS(5542), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5542), + [anon_sym_API_DEPRECATED] = ACTIONS(5542), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5542), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5542), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5542), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5542), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5542), + [anon_sym___deprecated_msg] = ACTIONS(5542), + [anon_sym___deprecated_enum_msg] = ACTIONS(5542), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5542), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5542), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5542), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5542), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5542), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5542), + [anon_sym_ATproperty] = ACTIONS(5544), + [anon_sym_BOOL] = ACTIONS(5542), + [anon_sym_IMP] = ACTIONS(5542), + [anon_sym_SEL] = ACTIONS(5542), + [anon_sym_Class] = ACTIONS(5542), + [anon_sym_id] = ACTIONS(5542), + }, + [2411] = { + [sym_identifier] = ACTIONS(5491), + [aux_sym_preproc_def_token1] = ACTIONS(5491), + [aux_sym_preproc_if_token1] = ACTIONS(5491), + [aux_sym_preproc_if_token2] = ACTIONS(5491), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5491), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5491), + [sym_preproc_directive] = ACTIONS(5491), + [anon_sym_DASH] = ACTIONS(5493), + [anon_sym_PLUS] = ACTIONS(5493), + [anon_sym___extension__] = ACTIONS(5491), + [anon_sym_typedef] = ACTIONS(5491), + [anon_sym_extern] = ACTIONS(5491), + [anon_sym___attribute__] = ACTIONS(5491), + [anon_sym___attribute] = ACTIONS(5491), + [anon_sym_noreturn] = ACTIONS(5491), + [anon_sym_LBRACK] = ACTIONS(5493), + [anon_sym___declspec] = ACTIONS(5491), + [anon_sym___cdecl] = ACTIONS(5491), + [anon_sym___clrcall] = ACTIONS(5491), + [anon_sym___stdcall] = ACTIONS(5491), + [anon_sym___fastcall] = ACTIONS(5491), + [anon_sym___thiscall] = ACTIONS(5491), + [anon_sym___vectorcall] = ACTIONS(5491), + [anon_sym_signed] = ACTIONS(5491), + [anon_sym_unsigned] = ACTIONS(5491), + [anon_sym_long] = ACTIONS(5491), + [anon_sym_short] = ACTIONS(5491), + [anon_sym_static] = ACTIONS(5491), + [anon_sym_auto] = ACTIONS(5491), + [anon_sym_register] = ACTIONS(5491), + [anon_sym_inline] = ACTIONS(5491), + [anon_sym___inline] = ACTIONS(5491), + [anon_sym___inline__] = ACTIONS(5491), + [anon_sym___forceinline] = ACTIONS(5491), + [anon_sym_thread_local] = ACTIONS(5491), + [anon_sym___thread] = ACTIONS(5491), + [anon_sym_CG_EXTERN] = ACTIONS(5491), + [anon_sym_CG_INLINE] = ACTIONS(5491), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5491), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5491), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5491), + [anon_sym_IBOutlet] = ACTIONS(5491), + [anon_sym_IBInspectable] = ACTIONS(5491), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5491), + [anon_sym_NS_INLINE] = ACTIONS(5491), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5491), + [anon_sym_OBJC_EXPORT] = ACTIONS(5491), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5491), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5491), + [anon_sym_const] = ACTIONS(5491), + [anon_sym_constexpr] = ACTIONS(5491), + [anon_sym_volatile] = ACTIONS(5491), + [anon_sym_restrict] = ACTIONS(5491), + [anon_sym___restrict__] = ACTIONS(5491), + [anon_sym__Atomic] = ACTIONS(5491), + [anon_sym__Noreturn] = ACTIONS(5491), + [anon_sym__Nonnull] = ACTIONS(5491), + [anon_sym_nullable] = ACTIONS(5491), + [anon_sym__Complex] = ACTIONS(5491), + [anon_sym__Nullable] = ACTIONS(5491), + [anon_sym__Nullable_result] = ACTIONS(5491), + [anon_sym__Null_unspecified] = ACTIONS(5491), + [anon_sym___autoreleasing] = ACTIONS(5491), + [anon_sym___block] = ACTIONS(5491), + [anon_sym___bridge] = ACTIONS(5491), + [anon_sym___bridge_retained] = ACTIONS(5491), + [anon_sym___bridge_transfer] = ACTIONS(5491), + [anon_sym___complex] = ACTIONS(5491), + [anon_sym___const] = ACTIONS(5491), + [anon_sym___imag] = ACTIONS(5491), + [anon_sym___kindof] = ACTIONS(5491), + [anon_sym___nonnull] = ACTIONS(5491), + [anon_sym___nullable] = ACTIONS(5491), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5491), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5491), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5491), + [anon_sym___real] = ACTIONS(5491), + [anon_sym___strong] = ACTIONS(5491), + [anon_sym___unsafe_unretained] = ACTIONS(5491), + [anon_sym___unused] = ACTIONS(5491), + [anon_sym___weak] = ACTIONS(5491), + [anon_sym_alignas] = ACTIONS(5491), + [anon_sym__Alignas] = ACTIONS(5491), + [sym_primitive_type] = ACTIONS(5491), + [anon_sym_enum] = ACTIONS(5491), + [anon_sym_struct] = ACTIONS(5491), + [anon_sym_union] = ACTIONS(5491), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5491), + [anon_sym___typeof] = ACTIONS(5491), + [anon_sym_typeof] = ACTIONS(5491), + [aux_sym_preproc_undef_token1] = ACTIONS(5491), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5491), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5491), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5491), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5491), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5491), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5491), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5491), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5491), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5491), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5491), + [anon_sym_NS_AVAILABLE] = ACTIONS(5491), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5491), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5491), + [anon_sym_API_AVAILABLE] = ACTIONS(5491), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5491), + [anon_sym_API_DEPRECATED] = ACTIONS(5491), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5491), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5491), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5491), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5491), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5491), + [anon_sym___deprecated_msg] = ACTIONS(5491), + [anon_sym___deprecated_enum_msg] = ACTIONS(5491), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5491), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5491), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5491), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5491), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5491), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5491), + [anon_sym_ATproperty] = ACTIONS(5493), + [anon_sym_BOOL] = ACTIONS(5491), + [anon_sym_IMP] = ACTIONS(5491), + [anon_sym_SEL] = ACTIONS(5491), + [anon_sym_Class] = ACTIONS(5491), + [anon_sym_id] = ACTIONS(5491), + }, + [2412] = { + [sym_identifier] = ACTIONS(5505), + [aux_sym_preproc_def_token1] = ACTIONS(5505), + [aux_sym_preproc_if_token1] = ACTIONS(5505), + [aux_sym_preproc_if_token2] = ACTIONS(5505), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5505), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5505), + [sym_preproc_directive] = ACTIONS(5505), + [anon_sym_DASH] = ACTIONS(5507), + [anon_sym_PLUS] = ACTIONS(5507), + [anon_sym___extension__] = ACTIONS(5505), + [anon_sym_typedef] = ACTIONS(5505), + [anon_sym_extern] = ACTIONS(5505), + [anon_sym___attribute__] = ACTIONS(5505), + [anon_sym___attribute] = ACTIONS(5505), + [anon_sym_noreturn] = ACTIONS(5505), + [anon_sym_LBRACK] = ACTIONS(5507), + [anon_sym___declspec] = ACTIONS(5505), + [anon_sym___cdecl] = ACTIONS(5505), + [anon_sym___clrcall] = ACTIONS(5505), + [anon_sym___stdcall] = ACTIONS(5505), + [anon_sym___fastcall] = ACTIONS(5505), + [anon_sym___thiscall] = ACTIONS(5505), + [anon_sym___vectorcall] = ACTIONS(5505), + [anon_sym_signed] = ACTIONS(5505), + [anon_sym_unsigned] = ACTIONS(5505), + [anon_sym_long] = ACTIONS(5505), + [anon_sym_short] = ACTIONS(5505), + [anon_sym_static] = ACTIONS(5505), + [anon_sym_auto] = ACTIONS(5505), + [anon_sym_register] = ACTIONS(5505), + [anon_sym_inline] = ACTIONS(5505), + [anon_sym___inline] = ACTIONS(5505), + [anon_sym___inline__] = ACTIONS(5505), + [anon_sym___forceinline] = ACTIONS(5505), + [anon_sym_thread_local] = ACTIONS(5505), + [anon_sym___thread] = ACTIONS(5505), + [anon_sym_CG_EXTERN] = ACTIONS(5505), + [anon_sym_CG_INLINE] = ACTIONS(5505), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5505), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5505), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5505), + [anon_sym_IBOutlet] = ACTIONS(5505), + [anon_sym_IBInspectable] = ACTIONS(5505), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5505), + [anon_sym_NS_INLINE] = ACTIONS(5505), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5505), + [anon_sym_OBJC_EXPORT] = ACTIONS(5505), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5505), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5505), + [anon_sym_const] = ACTIONS(5505), + [anon_sym_constexpr] = ACTIONS(5505), + [anon_sym_volatile] = ACTIONS(5505), + [anon_sym_restrict] = ACTIONS(5505), + [anon_sym___restrict__] = ACTIONS(5505), + [anon_sym__Atomic] = ACTIONS(5505), + [anon_sym__Noreturn] = ACTIONS(5505), + [anon_sym__Nonnull] = ACTIONS(5505), + [anon_sym_nullable] = ACTIONS(5505), + [anon_sym__Complex] = ACTIONS(5505), + [anon_sym__Nullable] = ACTIONS(5505), + [anon_sym__Nullable_result] = ACTIONS(5505), + [anon_sym__Null_unspecified] = ACTIONS(5505), + [anon_sym___autoreleasing] = ACTIONS(5505), + [anon_sym___block] = ACTIONS(5505), + [anon_sym___bridge] = ACTIONS(5505), + [anon_sym___bridge_retained] = ACTIONS(5505), + [anon_sym___bridge_transfer] = ACTIONS(5505), + [anon_sym___complex] = ACTIONS(5505), + [anon_sym___const] = ACTIONS(5505), + [anon_sym___imag] = ACTIONS(5505), + [anon_sym___kindof] = ACTIONS(5505), + [anon_sym___nonnull] = ACTIONS(5505), + [anon_sym___nullable] = ACTIONS(5505), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5505), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5505), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5505), + [anon_sym___real] = ACTIONS(5505), + [anon_sym___strong] = ACTIONS(5505), + [anon_sym___unsafe_unretained] = ACTIONS(5505), + [anon_sym___unused] = ACTIONS(5505), + [anon_sym___weak] = ACTIONS(5505), + [anon_sym_alignas] = ACTIONS(5505), + [anon_sym__Alignas] = ACTIONS(5505), + [sym_primitive_type] = ACTIONS(5505), + [anon_sym_enum] = ACTIONS(5505), + [anon_sym_struct] = ACTIONS(5505), + [anon_sym_union] = ACTIONS(5505), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5505), + [anon_sym___typeof] = ACTIONS(5505), + [anon_sym_typeof] = ACTIONS(5505), + [aux_sym_preproc_undef_token1] = ACTIONS(5505), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5505), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5505), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5505), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5505), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5505), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5505), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5505), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5505), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5505), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5505), + [anon_sym_NS_AVAILABLE] = ACTIONS(5505), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5505), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5505), + [anon_sym_API_AVAILABLE] = ACTIONS(5505), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5505), + [anon_sym_API_DEPRECATED] = ACTIONS(5505), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5505), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5505), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5505), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5505), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5505), + [anon_sym___deprecated_msg] = ACTIONS(5505), + [anon_sym___deprecated_enum_msg] = ACTIONS(5505), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5505), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5505), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5505), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5505), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5505), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5505), + [anon_sym_ATproperty] = ACTIONS(5507), + [anon_sym_BOOL] = ACTIONS(5505), + [anon_sym_IMP] = ACTIONS(5505), + [anon_sym_SEL] = ACTIONS(5505), + [anon_sym_Class] = ACTIONS(5505), + [anon_sym_id] = ACTIONS(5505), + }, + [2413] = { + [sym__declaration_modifiers] = STATE(2680), + [sym_attribute_specifier] = STATE(2680), + [sym_attribute_declaration] = STATE(2680), + [sym_ms_declspec_modifier] = STATE(2680), + [sym_ms_based_modifier] = STATE(6428), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2898), + [sym__type_declarator] = STATE(5238), + [sym_parenthesized_type_declarator] = STATE(3277), + [sym_pointer_type_declarator] = STATE(3277), + [sym_function_type_declarator] = STATE(3277), + [sym_array_type_declarator] = STATE(3277), + [sym_storage_class_specifier] = STATE(2680), + [sym_type_qualifier] = STATE(2680), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2680), + [sym_block_pointer_type_declarator] = STATE(3277), + [aux_sym__declaration_specifiers_repeat1] = STATE(2680), + [aux_sym_pointer_declarator_repeat1] = STATE(2898), + [sym_identifier] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_STAR] = ACTIONS(5642), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_signed] = ACTIONS(5646), + [anon_sym_unsigned] = ACTIONS(5646), + [anon_sym_long] = ACTIONS(5646), + [anon_sym_short] = ACTIONS(5646), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(5648), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2414] = { + [sym__declaration_modifiers] = STATE(2679), + [sym_attribute_specifier] = STATE(2679), + [sym_attribute_declaration] = STATE(2679), + [sym_ms_declspec_modifier] = STATE(2679), + [sym_ms_based_modifier] = STATE(6428), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2898), + [sym__type_declarator] = STATE(5174), + [sym_parenthesized_type_declarator] = STATE(3277), + [sym_pointer_type_declarator] = STATE(3277), + [sym_function_type_declarator] = STATE(3277), + [sym_array_type_declarator] = STATE(3277), + [sym_storage_class_specifier] = STATE(2679), + [sym_type_qualifier] = STATE(2679), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2679), + [sym_block_pointer_type_declarator] = STATE(3277), + [aux_sym__declaration_specifiers_repeat1] = STATE(2679), + [aux_sym_pointer_declarator_repeat1] = STATE(2898), + [sym_identifier] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_STAR] = ACTIONS(5642), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_signed] = ACTIONS(5646), + [anon_sym_unsigned] = ACTIONS(5646), + [anon_sym_long] = ACTIONS(5646), + [anon_sym_short] = ACTIONS(5646), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(5648), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2415] = { + [sym__declaration_modifiers] = STATE(2679), + [sym_attribute_specifier] = STATE(2679), + [sym_attribute_declaration] = STATE(2679), + [sym_ms_declspec_modifier] = STATE(2679), + [sym_ms_based_modifier] = STATE(6428), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2413), + [sym__type_declarator] = STATE(5174), + [sym_parenthesized_type_declarator] = STATE(3277), + [sym_pointer_type_declarator] = STATE(3277), + [sym_function_type_declarator] = STATE(3277), + [sym_array_type_declarator] = STATE(3277), + [sym_storage_class_specifier] = STATE(2679), + [sym_type_qualifier] = STATE(2679), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2679), + [sym_block_pointer_type_declarator] = STATE(3277), + [aux_sym__declaration_specifiers_repeat1] = STATE(2679), + [aux_sym_pointer_declarator_repeat1] = STATE(2413), + [sym_identifier] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_STAR] = ACTIONS(5642), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_signed] = ACTIONS(5646), + [anon_sym_unsigned] = ACTIONS(5646), + [anon_sym_long] = ACTIONS(5646), + [anon_sym_short] = ACTIONS(5646), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(5648), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2416] = { + [sym_identifier] = ACTIONS(3590), + [aux_sym_preproc_def_token1] = ACTIONS(3590), + [aux_sym_preproc_if_token1] = ACTIONS(3590), + [aux_sym_preproc_if_token2] = ACTIONS(3590), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3590), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3590), + [sym_preproc_directive] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(5546), + [anon_sym_PLUS] = ACTIONS(5546), + [anon_sym___extension__] = ACTIONS(3590), + [anon_sym_typedef] = ACTIONS(3590), + [anon_sym_extern] = ACTIONS(3590), + [anon_sym___attribute__] = ACTIONS(3590), + [anon_sym___attribute] = ACTIONS(3590), + [anon_sym_noreturn] = ACTIONS(3590), + [anon_sym_LBRACK] = ACTIONS(5546), + [anon_sym___declspec] = ACTIONS(3590), + [anon_sym___cdecl] = ACTIONS(3590), + [anon_sym___clrcall] = ACTIONS(3590), + [anon_sym___stdcall] = ACTIONS(3590), + [anon_sym___fastcall] = ACTIONS(3590), + [anon_sym___thiscall] = ACTIONS(3590), + [anon_sym___vectorcall] = ACTIONS(3590), + [anon_sym_signed] = ACTIONS(3590), + [anon_sym_unsigned] = ACTIONS(3590), + [anon_sym_long] = ACTIONS(3590), + [anon_sym_short] = ACTIONS(3590), + [anon_sym_static] = ACTIONS(3590), + [anon_sym_auto] = ACTIONS(3590), + [anon_sym_register] = ACTIONS(3590), + [anon_sym_inline] = ACTIONS(3590), + [anon_sym___inline] = ACTIONS(3590), + [anon_sym___inline__] = ACTIONS(3590), + [anon_sym___forceinline] = ACTIONS(3590), + [anon_sym_thread_local] = ACTIONS(3590), + [anon_sym___thread] = ACTIONS(3590), + [anon_sym_CG_EXTERN] = ACTIONS(3590), + [anon_sym_CG_INLINE] = ACTIONS(3590), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(3590), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(3590), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(3590), + [anon_sym_IBOutlet] = ACTIONS(3590), + [anon_sym_IBInspectable] = ACTIONS(3590), + [anon_sym_IB_DESIGNABLE] = ACTIONS(3590), + [anon_sym_NS_INLINE] = ACTIONS(3590), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(3590), + [anon_sym_OBJC_EXPORT] = ACTIONS(3590), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(3590), + [anon_sym_UIKIT_EXTERN] = ACTIONS(3590), + [anon_sym_const] = ACTIONS(3590), + [anon_sym_constexpr] = ACTIONS(3590), + [anon_sym_volatile] = ACTIONS(3590), + [anon_sym_restrict] = ACTIONS(3590), + [anon_sym___restrict__] = ACTIONS(3590), + [anon_sym__Atomic] = ACTIONS(3590), + [anon_sym__Noreturn] = ACTIONS(3590), + [anon_sym__Nonnull] = ACTIONS(3590), + [anon_sym_nullable] = ACTIONS(3590), + [anon_sym__Complex] = ACTIONS(3590), + [anon_sym__Nullable] = ACTIONS(3590), + [anon_sym__Nullable_result] = ACTIONS(3590), + [anon_sym__Null_unspecified] = ACTIONS(3590), + [anon_sym___autoreleasing] = ACTIONS(3590), + [anon_sym___block] = ACTIONS(3590), + [anon_sym___bridge] = ACTIONS(3590), + [anon_sym___bridge_retained] = ACTIONS(3590), + [anon_sym___bridge_transfer] = ACTIONS(3590), + [anon_sym___complex] = ACTIONS(3590), + [anon_sym___const] = ACTIONS(3590), + [anon_sym___imag] = ACTIONS(3590), + [anon_sym___kindof] = ACTIONS(3590), + [anon_sym___nonnull] = ACTIONS(3590), + [anon_sym___nullable] = ACTIONS(3590), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(3590), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(3590), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(3590), + [anon_sym___real] = ACTIONS(3590), + [anon_sym___strong] = ACTIONS(3590), + [anon_sym___unsafe_unretained] = ACTIONS(3590), + [anon_sym___unused] = ACTIONS(3590), + [anon_sym___weak] = ACTIONS(3590), + [anon_sym_alignas] = ACTIONS(3590), + [anon_sym__Alignas] = ACTIONS(3590), + [sym_primitive_type] = ACTIONS(3590), + [anon_sym_enum] = ACTIONS(3590), + [anon_sym_struct] = ACTIONS(3590), + [anon_sym_union] = ACTIONS(3590), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(3590), + [anon_sym___typeof] = ACTIONS(3590), + [anon_sym_typeof] = ACTIONS(3590), + [aux_sym_preproc_undef_token1] = ACTIONS(3590), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(3590), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(3590), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(3590), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(3590), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(3590), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(3590), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(3590), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(3590), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(3590), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(3590), + [anon_sym_NS_AVAILABLE] = ACTIONS(3590), + [anon_sym___IOS_AVAILABLE] = ACTIONS(3590), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(3590), + [anon_sym_API_AVAILABLE] = ACTIONS(3590), + [anon_sym_API_UNAVAILABLE] = ACTIONS(3590), + [anon_sym_API_DEPRECATED] = ACTIONS(3590), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(3590), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(3590), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(3590), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(3590), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(3590), + [anon_sym___deprecated_msg] = ACTIONS(3590), + [anon_sym___deprecated_enum_msg] = ACTIONS(3590), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(3590), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(3590), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(3590), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(3590), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(3590), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(3590), + [anon_sym_ATproperty] = ACTIONS(5546), + [anon_sym_BOOL] = ACTIONS(3590), + [anon_sym_IMP] = ACTIONS(3590), + [anon_sym_SEL] = ACTIONS(3590), + [anon_sym_Class] = ACTIONS(3590), + [anon_sym_id] = ACTIONS(3590), + }, + [2417] = { + [sym__declaration_modifiers] = STATE(2685), + [sym_attribute_specifier] = STATE(2685), + [sym_attribute_declaration] = STATE(2685), + [sym_ms_declspec_modifier] = STATE(2685), + [sym_ms_based_modifier] = STATE(6443), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2425), + [sym__type_declarator] = STATE(3288), + [sym_parenthesized_type_declarator] = STATE(3277), + [sym_pointer_type_declarator] = STATE(3277), + [sym_function_type_declarator] = STATE(3277), + [sym_array_type_declarator] = STATE(3277), + [sym_storage_class_specifier] = STATE(2685), + [sym_type_qualifier] = STATE(2685), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2685), + [sym_block_pointer_type_declarator] = STATE(3277), + [aux_sym__declaration_specifiers_repeat1] = STATE(2685), + [aux_sym_pointer_declarator_repeat1] = STATE(2425), + [sym_identifier] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_STAR] = ACTIONS(5650), + [anon_sym_CARET] = ACTIONS(5652), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_signed] = ACTIONS(5646), + [anon_sym_unsigned] = ACTIONS(5646), + [anon_sym_long] = ACTIONS(5646), + [anon_sym_short] = ACTIONS(5646), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(5648), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2418] = { + [sym_identifier] = ACTIONS(5562), + [aux_sym_preproc_def_token1] = ACTIONS(5562), + [aux_sym_preproc_if_token1] = ACTIONS(5562), + [aux_sym_preproc_if_token2] = ACTIONS(5562), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5562), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5562), + [sym_preproc_directive] = ACTIONS(5562), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym___extension__] = ACTIONS(5562), + [anon_sym_typedef] = ACTIONS(5562), + [anon_sym_extern] = ACTIONS(5562), + [anon_sym___attribute__] = ACTIONS(5562), + [anon_sym___attribute] = ACTIONS(5562), + [anon_sym_noreturn] = ACTIONS(5562), + [anon_sym_LBRACK] = ACTIONS(5564), + [anon_sym___declspec] = ACTIONS(5562), + [anon_sym___cdecl] = ACTIONS(5562), + [anon_sym___clrcall] = ACTIONS(5562), + [anon_sym___stdcall] = ACTIONS(5562), + [anon_sym___fastcall] = ACTIONS(5562), + [anon_sym___thiscall] = ACTIONS(5562), + [anon_sym___vectorcall] = ACTIONS(5562), + [anon_sym_signed] = ACTIONS(5562), + [anon_sym_unsigned] = ACTIONS(5562), + [anon_sym_long] = ACTIONS(5562), + [anon_sym_short] = ACTIONS(5562), + [anon_sym_static] = ACTIONS(5562), + [anon_sym_auto] = ACTIONS(5562), + [anon_sym_register] = ACTIONS(5562), + [anon_sym_inline] = ACTIONS(5562), + [anon_sym___inline] = ACTIONS(5562), + [anon_sym___inline__] = ACTIONS(5562), + [anon_sym___forceinline] = ACTIONS(5562), + [anon_sym_thread_local] = ACTIONS(5562), + [anon_sym___thread] = ACTIONS(5562), + [anon_sym_CG_EXTERN] = ACTIONS(5562), + [anon_sym_CG_INLINE] = ACTIONS(5562), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5562), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5562), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5562), + [anon_sym_IBOutlet] = ACTIONS(5562), + [anon_sym_IBInspectable] = ACTIONS(5562), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5562), + [anon_sym_NS_INLINE] = ACTIONS(5562), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5562), + [anon_sym_OBJC_EXPORT] = ACTIONS(5562), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5562), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5562), + [anon_sym_const] = ACTIONS(5562), + [anon_sym_constexpr] = ACTIONS(5562), + [anon_sym_volatile] = ACTIONS(5562), + [anon_sym_restrict] = ACTIONS(5562), + [anon_sym___restrict__] = ACTIONS(5562), + [anon_sym__Atomic] = ACTIONS(5562), + [anon_sym__Noreturn] = ACTIONS(5562), + [anon_sym__Nonnull] = ACTIONS(5562), + [anon_sym_nullable] = ACTIONS(5562), + [anon_sym__Complex] = ACTIONS(5562), + [anon_sym__Nullable] = ACTIONS(5562), + [anon_sym__Nullable_result] = ACTIONS(5562), + [anon_sym__Null_unspecified] = ACTIONS(5562), + [anon_sym___autoreleasing] = ACTIONS(5562), + [anon_sym___block] = ACTIONS(5562), + [anon_sym___bridge] = ACTIONS(5562), + [anon_sym___bridge_retained] = ACTIONS(5562), + [anon_sym___bridge_transfer] = ACTIONS(5562), + [anon_sym___complex] = ACTIONS(5562), + [anon_sym___const] = ACTIONS(5562), + [anon_sym___imag] = ACTIONS(5562), + [anon_sym___kindof] = ACTIONS(5562), + [anon_sym___nonnull] = ACTIONS(5562), + [anon_sym___nullable] = ACTIONS(5562), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5562), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5562), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5562), + [anon_sym___real] = ACTIONS(5562), + [anon_sym___strong] = ACTIONS(5562), + [anon_sym___unsafe_unretained] = ACTIONS(5562), + [anon_sym___unused] = ACTIONS(5562), + [anon_sym___weak] = ACTIONS(5562), + [anon_sym_alignas] = ACTIONS(5562), + [anon_sym__Alignas] = ACTIONS(5562), + [sym_primitive_type] = ACTIONS(5562), + [anon_sym_enum] = ACTIONS(5562), + [anon_sym_struct] = ACTIONS(5562), + [anon_sym_union] = ACTIONS(5562), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5562), + [anon_sym___typeof] = ACTIONS(5562), + [anon_sym_typeof] = ACTIONS(5562), + [aux_sym_preproc_undef_token1] = ACTIONS(5562), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5562), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5562), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5562), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5562), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5562), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5562), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5562), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5562), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5562), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5562), + [anon_sym_NS_AVAILABLE] = ACTIONS(5562), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5562), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5562), + [anon_sym_API_AVAILABLE] = ACTIONS(5562), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5562), + [anon_sym_API_DEPRECATED] = ACTIONS(5562), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5562), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5562), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5562), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5562), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5562), + [anon_sym___deprecated_msg] = ACTIONS(5562), + [anon_sym___deprecated_enum_msg] = ACTIONS(5562), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5562), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5562), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5562), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5562), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5562), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5562), + [anon_sym_ATproperty] = ACTIONS(5564), + [anon_sym_BOOL] = ACTIONS(5562), + [anon_sym_IMP] = ACTIONS(5562), + [anon_sym_SEL] = ACTIONS(5562), + [anon_sym_Class] = ACTIONS(5562), + [anon_sym_id] = ACTIONS(5562), + }, + [2419] = { + [sym_identifier] = ACTIONS(5514), + [aux_sym_preproc_def_token1] = ACTIONS(5514), + [aux_sym_preproc_if_token1] = ACTIONS(5514), + [aux_sym_preproc_if_token2] = ACTIONS(5514), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5514), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5514), + [sym_preproc_directive] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym___extension__] = ACTIONS(5514), + [anon_sym_typedef] = ACTIONS(5514), + [anon_sym_extern] = ACTIONS(5514), + [anon_sym___attribute__] = ACTIONS(5514), + [anon_sym___attribute] = ACTIONS(5514), + [anon_sym_noreturn] = ACTIONS(5514), + [anon_sym_LBRACK] = ACTIONS(5516), + [anon_sym___declspec] = ACTIONS(5514), + [anon_sym___cdecl] = ACTIONS(5514), + [anon_sym___clrcall] = ACTIONS(5514), + [anon_sym___stdcall] = ACTIONS(5514), + [anon_sym___fastcall] = ACTIONS(5514), + [anon_sym___thiscall] = ACTIONS(5514), + [anon_sym___vectorcall] = ACTIONS(5514), + [anon_sym_signed] = ACTIONS(5514), + [anon_sym_unsigned] = ACTIONS(5514), + [anon_sym_long] = ACTIONS(5514), + [anon_sym_short] = ACTIONS(5514), + [anon_sym_static] = ACTIONS(5514), + [anon_sym_auto] = ACTIONS(5514), + [anon_sym_register] = ACTIONS(5514), + [anon_sym_inline] = ACTIONS(5514), + [anon_sym___inline] = ACTIONS(5514), + [anon_sym___inline__] = ACTIONS(5514), + [anon_sym___forceinline] = ACTIONS(5514), + [anon_sym_thread_local] = ACTIONS(5514), + [anon_sym___thread] = ACTIONS(5514), + [anon_sym_CG_EXTERN] = ACTIONS(5514), + [anon_sym_CG_INLINE] = ACTIONS(5514), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5514), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5514), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5514), + [anon_sym_IBOutlet] = ACTIONS(5514), + [anon_sym_IBInspectable] = ACTIONS(5514), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5514), + [anon_sym_NS_INLINE] = ACTIONS(5514), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5514), + [anon_sym_OBJC_EXPORT] = ACTIONS(5514), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5514), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5514), + [anon_sym_const] = ACTIONS(5514), + [anon_sym_constexpr] = ACTIONS(5514), + [anon_sym_volatile] = ACTIONS(5514), + [anon_sym_restrict] = ACTIONS(5514), + [anon_sym___restrict__] = ACTIONS(5514), + [anon_sym__Atomic] = ACTIONS(5514), + [anon_sym__Noreturn] = ACTIONS(5514), + [anon_sym__Nonnull] = ACTIONS(5514), + [anon_sym_nullable] = ACTIONS(5514), + [anon_sym__Complex] = ACTIONS(5514), + [anon_sym__Nullable] = ACTIONS(5514), + [anon_sym__Nullable_result] = ACTIONS(5514), + [anon_sym__Null_unspecified] = ACTIONS(5514), + [anon_sym___autoreleasing] = ACTIONS(5514), + [anon_sym___block] = ACTIONS(5514), + [anon_sym___bridge] = ACTIONS(5514), + [anon_sym___bridge_retained] = ACTIONS(5514), + [anon_sym___bridge_transfer] = ACTIONS(5514), + [anon_sym___complex] = ACTIONS(5514), + [anon_sym___const] = ACTIONS(5514), + [anon_sym___imag] = ACTIONS(5514), + [anon_sym___kindof] = ACTIONS(5514), + [anon_sym___nonnull] = ACTIONS(5514), + [anon_sym___nullable] = ACTIONS(5514), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5514), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5514), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5514), + [anon_sym___real] = ACTIONS(5514), + [anon_sym___strong] = ACTIONS(5514), + [anon_sym___unsafe_unretained] = ACTIONS(5514), + [anon_sym___unused] = ACTIONS(5514), + [anon_sym___weak] = ACTIONS(5514), + [anon_sym_alignas] = ACTIONS(5514), + [anon_sym__Alignas] = ACTIONS(5514), + [sym_primitive_type] = ACTIONS(5514), + [anon_sym_enum] = ACTIONS(5514), + [anon_sym_struct] = ACTIONS(5514), + [anon_sym_union] = ACTIONS(5514), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5514), + [anon_sym___typeof] = ACTIONS(5514), + [anon_sym_typeof] = ACTIONS(5514), + [aux_sym_preproc_undef_token1] = ACTIONS(5514), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5514), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5514), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5514), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5514), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5514), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5514), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5514), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5514), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5514), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5514), + [anon_sym_NS_AVAILABLE] = ACTIONS(5514), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5514), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5514), + [anon_sym_API_AVAILABLE] = ACTIONS(5514), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5514), + [anon_sym_API_DEPRECATED] = ACTIONS(5514), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5514), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5514), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5514), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5514), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5514), + [anon_sym___deprecated_msg] = ACTIONS(5514), + [anon_sym___deprecated_enum_msg] = ACTIONS(5514), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5514), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5514), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5514), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5514), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5514), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5514), + [anon_sym_ATproperty] = ACTIONS(5516), + [anon_sym_BOOL] = ACTIONS(5514), + [anon_sym_IMP] = ACTIONS(5514), + [anon_sym_SEL] = ACTIONS(5514), + [anon_sym_Class] = ACTIONS(5514), + [anon_sym_id] = ACTIONS(5514), + }, + [2420] = { + [sym_identifier] = ACTIONS(5530), + [aux_sym_preproc_def_token1] = ACTIONS(5530), + [aux_sym_preproc_if_token1] = ACTIONS(5530), + [aux_sym_preproc_if_token2] = ACTIONS(5530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5530), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5530), + [sym_preproc_directive] = ACTIONS(5530), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym___extension__] = ACTIONS(5530), + [anon_sym_typedef] = ACTIONS(5530), + [anon_sym_extern] = ACTIONS(5530), + [anon_sym___attribute__] = ACTIONS(5530), + [anon_sym___attribute] = ACTIONS(5530), + [anon_sym_noreturn] = ACTIONS(5530), + [anon_sym_LBRACK] = ACTIONS(5532), + [anon_sym___declspec] = ACTIONS(5530), + [anon_sym___cdecl] = ACTIONS(5530), + [anon_sym___clrcall] = ACTIONS(5530), + [anon_sym___stdcall] = ACTIONS(5530), + [anon_sym___fastcall] = ACTIONS(5530), + [anon_sym___thiscall] = ACTIONS(5530), + [anon_sym___vectorcall] = ACTIONS(5530), + [anon_sym_signed] = ACTIONS(5530), + [anon_sym_unsigned] = ACTIONS(5530), + [anon_sym_long] = ACTIONS(5530), + [anon_sym_short] = ACTIONS(5530), + [anon_sym_static] = ACTIONS(5530), + [anon_sym_auto] = ACTIONS(5530), + [anon_sym_register] = ACTIONS(5530), + [anon_sym_inline] = ACTIONS(5530), + [anon_sym___inline] = ACTIONS(5530), + [anon_sym___inline__] = ACTIONS(5530), + [anon_sym___forceinline] = ACTIONS(5530), + [anon_sym_thread_local] = ACTIONS(5530), + [anon_sym___thread] = ACTIONS(5530), + [anon_sym_CG_EXTERN] = ACTIONS(5530), + [anon_sym_CG_INLINE] = ACTIONS(5530), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5530), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5530), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5530), + [anon_sym_IBOutlet] = ACTIONS(5530), + [anon_sym_IBInspectable] = ACTIONS(5530), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5530), + [anon_sym_NS_INLINE] = ACTIONS(5530), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5530), + [anon_sym_OBJC_EXPORT] = ACTIONS(5530), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5530), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5530), + [anon_sym_const] = ACTIONS(5530), + [anon_sym_constexpr] = ACTIONS(5530), + [anon_sym_volatile] = ACTIONS(5530), + [anon_sym_restrict] = ACTIONS(5530), + [anon_sym___restrict__] = ACTIONS(5530), + [anon_sym__Atomic] = ACTIONS(5530), + [anon_sym__Noreturn] = ACTIONS(5530), + [anon_sym__Nonnull] = ACTIONS(5530), + [anon_sym_nullable] = ACTIONS(5530), + [anon_sym__Complex] = ACTIONS(5530), + [anon_sym__Nullable] = ACTIONS(5530), + [anon_sym__Nullable_result] = ACTIONS(5530), + [anon_sym__Null_unspecified] = ACTIONS(5530), + [anon_sym___autoreleasing] = ACTIONS(5530), + [anon_sym___block] = ACTIONS(5530), + [anon_sym___bridge] = ACTIONS(5530), + [anon_sym___bridge_retained] = ACTIONS(5530), + [anon_sym___bridge_transfer] = ACTIONS(5530), + [anon_sym___complex] = ACTIONS(5530), + [anon_sym___const] = ACTIONS(5530), + [anon_sym___imag] = ACTIONS(5530), + [anon_sym___kindof] = ACTIONS(5530), + [anon_sym___nonnull] = ACTIONS(5530), + [anon_sym___nullable] = ACTIONS(5530), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5530), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5530), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5530), + [anon_sym___real] = ACTIONS(5530), + [anon_sym___strong] = ACTIONS(5530), + [anon_sym___unsafe_unretained] = ACTIONS(5530), + [anon_sym___unused] = ACTIONS(5530), + [anon_sym___weak] = ACTIONS(5530), + [anon_sym_alignas] = ACTIONS(5530), + [anon_sym__Alignas] = ACTIONS(5530), + [sym_primitive_type] = ACTIONS(5530), + [anon_sym_enum] = ACTIONS(5530), + [anon_sym_struct] = ACTIONS(5530), + [anon_sym_union] = ACTIONS(5530), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5530), + [anon_sym___typeof] = ACTIONS(5530), + [anon_sym_typeof] = ACTIONS(5530), + [aux_sym_preproc_undef_token1] = ACTIONS(5530), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5530), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5530), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5530), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5530), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5530), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5530), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5530), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5530), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5530), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5530), + [anon_sym_NS_AVAILABLE] = ACTIONS(5530), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5530), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5530), + [anon_sym_API_AVAILABLE] = ACTIONS(5530), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5530), + [anon_sym_API_DEPRECATED] = ACTIONS(5530), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5530), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5530), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5530), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5530), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5530), + [anon_sym___deprecated_msg] = ACTIONS(5530), + [anon_sym___deprecated_enum_msg] = ACTIONS(5530), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5530), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5530), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5530), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5530), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5530), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5530), + [anon_sym_ATproperty] = ACTIONS(5532), + [anon_sym_BOOL] = ACTIONS(5530), + [anon_sym_IMP] = ACTIONS(5530), + [anon_sym_SEL] = ACTIONS(5530), + [anon_sym_Class] = ACTIONS(5530), + [anon_sym_id] = ACTIONS(5530), + }, + [2421] = { + [sym__declaration_modifiers] = STATE(2691), + [sym_attribute_specifier] = STATE(2691), + [sym_attribute_declaration] = STATE(2691), + [sym_ms_declspec_modifier] = STATE(2691), + [sym_ms_based_modifier] = STATE(6428), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2414), + [sym__type_declarator] = STATE(5170), + [sym_parenthesized_type_declarator] = STATE(3277), + [sym_pointer_type_declarator] = STATE(3277), + [sym_function_type_declarator] = STATE(3277), + [sym_array_type_declarator] = STATE(3277), + [sym_storage_class_specifier] = STATE(2691), + [sym_type_qualifier] = STATE(2691), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2691), + [sym_block_pointer_type_declarator] = STATE(3277), + [aux_sym__declaration_specifiers_repeat1] = STATE(2691), + [aux_sym_pointer_declarator_repeat1] = STATE(2414), + [sym_identifier] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_STAR] = ACTIONS(5642), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_signed] = ACTIONS(5646), + [anon_sym_unsigned] = ACTIONS(5646), + [anon_sym_long] = ACTIONS(5646), + [anon_sym_short] = ACTIONS(5646), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(5648), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2422] = { + [sym_identifier] = ACTIONS(5497), + [aux_sym_preproc_def_token1] = ACTIONS(5497), + [aux_sym_preproc_if_token1] = ACTIONS(5497), + [aux_sym_preproc_if_token2] = ACTIONS(5497), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5497), + [sym_preproc_directive] = ACTIONS(5497), + [anon_sym_DASH] = ACTIONS(5499), + [anon_sym_PLUS] = ACTIONS(5499), + [anon_sym___extension__] = ACTIONS(5497), + [anon_sym_typedef] = ACTIONS(5497), + [anon_sym_extern] = ACTIONS(5497), + [anon_sym___attribute__] = ACTIONS(5497), + [anon_sym___attribute] = ACTIONS(5497), + [anon_sym_noreturn] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(5499), + [anon_sym___declspec] = ACTIONS(5497), + [anon_sym___cdecl] = ACTIONS(5497), + [anon_sym___clrcall] = ACTIONS(5497), + [anon_sym___stdcall] = ACTIONS(5497), + [anon_sym___fastcall] = ACTIONS(5497), + [anon_sym___thiscall] = ACTIONS(5497), + [anon_sym___vectorcall] = ACTIONS(5497), + [anon_sym_signed] = ACTIONS(5497), + [anon_sym_unsigned] = ACTIONS(5497), + [anon_sym_long] = ACTIONS(5497), + [anon_sym_short] = ACTIONS(5497), + [anon_sym_static] = ACTIONS(5497), + [anon_sym_auto] = ACTIONS(5497), + [anon_sym_register] = ACTIONS(5497), + [anon_sym_inline] = ACTIONS(5497), + [anon_sym___inline] = ACTIONS(5497), + [anon_sym___inline__] = ACTIONS(5497), + [anon_sym___forceinline] = ACTIONS(5497), + [anon_sym_thread_local] = ACTIONS(5497), + [anon_sym___thread] = ACTIONS(5497), + [anon_sym_CG_EXTERN] = ACTIONS(5497), + [anon_sym_CG_INLINE] = ACTIONS(5497), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5497), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5497), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5497), + [anon_sym_IBOutlet] = ACTIONS(5497), + [anon_sym_IBInspectable] = ACTIONS(5497), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5497), + [anon_sym_NS_INLINE] = ACTIONS(5497), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5497), + [anon_sym_OBJC_EXPORT] = ACTIONS(5497), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5497), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5497), + [anon_sym_const] = ACTIONS(5497), + [anon_sym_constexpr] = ACTIONS(5497), + [anon_sym_volatile] = ACTIONS(5497), + [anon_sym_restrict] = ACTIONS(5497), + [anon_sym___restrict__] = ACTIONS(5497), + [anon_sym__Atomic] = ACTIONS(5497), + [anon_sym__Noreturn] = ACTIONS(5497), + [anon_sym__Nonnull] = ACTIONS(5497), + [anon_sym_nullable] = ACTIONS(5497), + [anon_sym__Complex] = ACTIONS(5497), + [anon_sym__Nullable] = ACTIONS(5497), + [anon_sym__Nullable_result] = ACTIONS(5497), + [anon_sym__Null_unspecified] = ACTIONS(5497), + [anon_sym___autoreleasing] = ACTIONS(5497), + [anon_sym___block] = ACTIONS(5497), + [anon_sym___bridge] = ACTIONS(5497), + [anon_sym___bridge_retained] = ACTIONS(5497), + [anon_sym___bridge_transfer] = ACTIONS(5497), + [anon_sym___complex] = ACTIONS(5497), + [anon_sym___const] = ACTIONS(5497), + [anon_sym___imag] = ACTIONS(5497), + [anon_sym___kindof] = ACTIONS(5497), + [anon_sym___nonnull] = ACTIONS(5497), + [anon_sym___nullable] = ACTIONS(5497), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5497), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5497), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5497), + [anon_sym___real] = ACTIONS(5497), + [anon_sym___strong] = ACTIONS(5497), + [anon_sym___unsafe_unretained] = ACTIONS(5497), + [anon_sym___unused] = ACTIONS(5497), + [anon_sym___weak] = ACTIONS(5497), + [anon_sym_alignas] = ACTIONS(5497), + [anon_sym__Alignas] = ACTIONS(5497), + [sym_primitive_type] = ACTIONS(5497), + [anon_sym_enum] = ACTIONS(5497), + [anon_sym_struct] = ACTIONS(5497), + [anon_sym_union] = ACTIONS(5497), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5497), + [anon_sym___typeof] = ACTIONS(5497), + [anon_sym_typeof] = ACTIONS(5497), + [aux_sym_preproc_undef_token1] = ACTIONS(5497), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5497), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5497), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5497), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5497), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5497), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5497), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5497), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5497), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5497), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5497), + [anon_sym_NS_AVAILABLE] = ACTIONS(5497), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5497), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5497), + [anon_sym_API_AVAILABLE] = ACTIONS(5497), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5497), + [anon_sym_API_DEPRECATED] = ACTIONS(5497), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5497), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5497), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5497), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5497), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5497), + [anon_sym___deprecated_msg] = ACTIONS(5497), + [anon_sym___deprecated_enum_msg] = ACTIONS(5497), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5497), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5497), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5497), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5497), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5497), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5497), + [anon_sym_ATproperty] = ACTIONS(5499), + [anon_sym_BOOL] = ACTIONS(5497), + [anon_sym_IMP] = ACTIONS(5497), + [anon_sym_SEL] = ACTIONS(5497), + [anon_sym_Class] = ACTIONS(5497), + [anon_sym_id] = ACTIONS(5497), + }, + [2423] = { + [sym_compound_statement] = STATE(5896), + [sym_type_qualifier] = STATE(3345), + [sym_alignas_qualifier] = STATE(4177), + [sym_expression] = STATE(4466), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_typeof_specifier] = STATE(5896), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5116), + [anon_sym_noreturn] = ACTIONS(5124), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(5122), + [anon_sym_constexpr] = ACTIONS(5124), + [anon_sym_volatile] = ACTIONS(5124), + [anon_sym_restrict] = ACTIONS(5124), + [anon_sym___restrict__] = ACTIONS(5124), + [anon_sym__Atomic] = ACTIONS(5124), + [anon_sym__Noreturn] = ACTIONS(5124), + [anon_sym__Nonnull] = ACTIONS(5124), + [anon_sym_nullable] = ACTIONS(5124), + [anon_sym__Complex] = ACTIONS(5124), + [anon_sym__Nullable] = ACTIONS(5124), + [anon_sym__Nullable_result] = ACTIONS(5124), + [anon_sym__Null_unspecified] = ACTIONS(5124), + [anon_sym___autoreleasing] = ACTIONS(5124), + [anon_sym___block] = ACTIONS(5124), + [anon_sym___bridge] = ACTIONS(5124), + [anon_sym___bridge_retained] = ACTIONS(5124), + [anon_sym___bridge_transfer] = ACTIONS(5124), + [anon_sym___complex] = ACTIONS(5124), + [anon_sym___const] = ACTIONS(5124), + [anon_sym___imag] = ACTIONS(5126), + [anon_sym___kindof] = ACTIONS(5124), + [anon_sym___nonnull] = ACTIONS(5124), + [anon_sym___nullable] = ACTIONS(5124), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5124), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5124), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5124), + [anon_sym___real] = ACTIONS(5126), + [anon_sym___strong] = ACTIONS(5124), + [anon_sym___unsafe_unretained] = ACTIONS(5124), + [anon_sym___unused] = ACTIONS(5124), + [anon_sym___weak] = ACTIONS(5124), + [anon_sym_alignas] = ACTIONS(5128), + [anon_sym__Alignas] = ACTIONS(5128), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2424] = { + [sym__declaration_modifiers] = STATE(2692), + [sym_attribute_specifier] = STATE(2692), + [sym_attribute_declaration] = STATE(2692), + [sym_ms_declspec_modifier] = STATE(2692), + [sym_ms_based_modifier] = STATE(6443), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2898), + [sym__type_declarator] = STATE(3279), + [sym_parenthesized_type_declarator] = STATE(3277), + [sym_pointer_type_declarator] = STATE(3277), + [sym_function_type_declarator] = STATE(3277), + [sym_array_type_declarator] = STATE(3277), + [sym_storage_class_specifier] = STATE(2692), + [sym_type_qualifier] = STATE(2692), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2692), + [sym_block_pointer_type_declarator] = STATE(3277), + [aux_sym__declaration_specifiers_repeat1] = STATE(2692), + [aux_sym_pointer_declarator_repeat1] = STATE(2898), + [sym_identifier] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_STAR] = ACTIONS(5650), + [anon_sym_CARET] = ACTIONS(5652), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_signed] = ACTIONS(5646), + [anon_sym_unsigned] = ACTIONS(5646), + [anon_sym_long] = ACTIONS(5646), + [anon_sym_short] = ACTIONS(5646), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(5648), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2425] = { + [sym__declaration_modifiers] = STATE(2690), + [sym_attribute_specifier] = STATE(2690), + [sym_attribute_declaration] = STATE(2690), + [sym_ms_declspec_modifier] = STATE(2690), + [sym_ms_based_modifier] = STATE(6443), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2898), + [sym__type_declarator] = STATE(3283), + [sym_parenthesized_type_declarator] = STATE(3277), + [sym_pointer_type_declarator] = STATE(3277), + [sym_function_type_declarator] = STATE(3277), + [sym_array_type_declarator] = STATE(3277), + [sym_storage_class_specifier] = STATE(2690), + [sym_type_qualifier] = STATE(2690), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2690), + [sym_block_pointer_type_declarator] = STATE(3277), + [aux_sym__declaration_specifiers_repeat1] = STATE(2690), + [aux_sym_pointer_declarator_repeat1] = STATE(2898), + [sym_identifier] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_STAR] = ACTIONS(5650), + [anon_sym_CARET] = ACTIONS(5652), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_signed] = ACTIONS(5646), + [anon_sym_unsigned] = ACTIONS(5646), + [anon_sym_long] = ACTIONS(5646), + [anon_sym_short] = ACTIONS(5646), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(5648), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2426] = { + [sym__declaration_modifiers] = STATE(2690), + [sym_attribute_specifier] = STATE(2690), + [sym_attribute_declaration] = STATE(2690), + [sym_ms_declspec_modifier] = STATE(2690), + [sym_ms_based_modifier] = STATE(6443), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2424), + [sym__type_declarator] = STATE(3283), + [sym_parenthesized_type_declarator] = STATE(3277), + [sym_pointer_type_declarator] = STATE(3277), + [sym_function_type_declarator] = STATE(3277), + [sym_array_type_declarator] = STATE(3277), + [sym_storage_class_specifier] = STATE(2690), + [sym_type_qualifier] = STATE(2690), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2690), + [sym_block_pointer_type_declarator] = STATE(3277), + [aux_sym__declaration_specifiers_repeat1] = STATE(2690), + [aux_sym_pointer_declarator_repeat1] = STATE(2424), + [sym_identifier] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_STAR] = ACTIONS(5650), + [anon_sym_CARET] = ACTIONS(5652), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_signed] = ACTIONS(5646), + [anon_sym_unsigned] = ACTIONS(5646), + [anon_sym_long] = ACTIONS(5646), + [anon_sym_short] = ACTIONS(5646), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(5648), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2427] = { + [sym_identifier] = ACTIONS(5487), + [aux_sym_preproc_def_token1] = ACTIONS(5487), + [aux_sym_preproc_if_token1] = ACTIONS(5487), + [aux_sym_preproc_if_token2] = ACTIONS(5487), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5487), + [sym_preproc_directive] = ACTIONS(5487), + [anon_sym_DASH] = ACTIONS(5489), + [anon_sym_PLUS] = ACTIONS(5489), + [anon_sym___extension__] = ACTIONS(5487), + [anon_sym_typedef] = ACTIONS(5487), + [anon_sym_extern] = ACTIONS(5487), + [anon_sym___attribute__] = ACTIONS(5487), + [anon_sym___attribute] = ACTIONS(5487), + [anon_sym_noreturn] = ACTIONS(5487), + [anon_sym_LBRACK] = ACTIONS(5489), + [anon_sym___declspec] = ACTIONS(5487), + [anon_sym___cdecl] = ACTIONS(5487), + [anon_sym___clrcall] = ACTIONS(5487), + [anon_sym___stdcall] = ACTIONS(5487), + [anon_sym___fastcall] = ACTIONS(5487), + [anon_sym___thiscall] = ACTIONS(5487), + [anon_sym___vectorcall] = ACTIONS(5487), + [anon_sym_signed] = ACTIONS(5487), + [anon_sym_unsigned] = ACTIONS(5487), + [anon_sym_long] = ACTIONS(5487), + [anon_sym_short] = ACTIONS(5487), + [anon_sym_static] = ACTIONS(5487), + [anon_sym_auto] = ACTIONS(5487), + [anon_sym_register] = ACTIONS(5487), + [anon_sym_inline] = ACTIONS(5487), + [anon_sym___inline] = ACTIONS(5487), + [anon_sym___inline__] = ACTIONS(5487), + [anon_sym___forceinline] = ACTIONS(5487), + [anon_sym_thread_local] = ACTIONS(5487), + [anon_sym___thread] = ACTIONS(5487), + [anon_sym_CG_EXTERN] = ACTIONS(5487), + [anon_sym_CG_INLINE] = ACTIONS(5487), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5487), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5487), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5487), + [anon_sym_IBOutlet] = ACTIONS(5487), + [anon_sym_IBInspectable] = ACTIONS(5487), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5487), + [anon_sym_NS_INLINE] = ACTIONS(5487), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5487), + [anon_sym_OBJC_EXPORT] = ACTIONS(5487), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5487), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5487), + [anon_sym_const] = ACTIONS(5487), + [anon_sym_constexpr] = ACTIONS(5487), + [anon_sym_volatile] = ACTIONS(5487), + [anon_sym_restrict] = ACTIONS(5487), + [anon_sym___restrict__] = ACTIONS(5487), + [anon_sym__Atomic] = ACTIONS(5487), + [anon_sym__Noreturn] = ACTIONS(5487), + [anon_sym__Nonnull] = ACTIONS(5487), + [anon_sym_nullable] = ACTIONS(5487), + [anon_sym__Complex] = ACTIONS(5487), + [anon_sym__Nullable] = ACTIONS(5487), + [anon_sym__Nullable_result] = ACTIONS(5487), + [anon_sym__Null_unspecified] = ACTIONS(5487), + [anon_sym___autoreleasing] = ACTIONS(5487), + [anon_sym___block] = ACTIONS(5487), + [anon_sym___bridge] = ACTIONS(5487), + [anon_sym___bridge_retained] = ACTIONS(5487), + [anon_sym___bridge_transfer] = ACTIONS(5487), + [anon_sym___complex] = ACTIONS(5487), + [anon_sym___const] = ACTIONS(5487), + [anon_sym___imag] = ACTIONS(5487), + [anon_sym___kindof] = ACTIONS(5487), + [anon_sym___nonnull] = ACTIONS(5487), + [anon_sym___nullable] = ACTIONS(5487), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5487), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5487), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5487), + [anon_sym___real] = ACTIONS(5487), + [anon_sym___strong] = ACTIONS(5487), + [anon_sym___unsafe_unretained] = ACTIONS(5487), + [anon_sym___unused] = ACTIONS(5487), + [anon_sym___weak] = ACTIONS(5487), + [anon_sym_alignas] = ACTIONS(5487), + [anon_sym__Alignas] = ACTIONS(5487), + [sym_primitive_type] = ACTIONS(5487), + [anon_sym_enum] = ACTIONS(5487), + [anon_sym_struct] = ACTIONS(5487), + [anon_sym_union] = ACTIONS(5487), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5487), + [anon_sym___typeof] = ACTIONS(5487), + [anon_sym_typeof] = ACTIONS(5487), + [aux_sym_preproc_undef_token1] = ACTIONS(5487), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5487), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5487), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5487), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5487), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5487), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5487), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5487), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5487), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5487), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5487), + [anon_sym_NS_AVAILABLE] = ACTIONS(5487), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5487), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5487), + [anon_sym_API_AVAILABLE] = ACTIONS(5487), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5487), + [anon_sym_API_DEPRECATED] = ACTIONS(5487), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5487), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5487), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5487), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5487), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5487), + [anon_sym___deprecated_msg] = ACTIONS(5487), + [anon_sym___deprecated_enum_msg] = ACTIONS(5487), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5487), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5487), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5487), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5487), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5487), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5487), + [anon_sym_ATproperty] = ACTIONS(5489), + [anon_sym_BOOL] = ACTIONS(5487), + [anon_sym_IMP] = ACTIONS(5487), + [anon_sym_SEL] = ACTIONS(5487), + [anon_sym_Class] = ACTIONS(5487), + [anon_sym_id] = ACTIONS(5487), + }, + [2428] = { + [sym_identifier] = ACTIONS(5548), + [aux_sym_preproc_def_token1] = ACTIONS(5548), + [aux_sym_preproc_if_token1] = ACTIONS(5548), + [aux_sym_preproc_if_token2] = ACTIONS(5548), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5548), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5548), + [sym_preproc_directive] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5550), + [anon_sym_PLUS] = ACTIONS(5550), + [anon_sym___extension__] = ACTIONS(5548), + [anon_sym_typedef] = ACTIONS(5548), + [anon_sym_extern] = ACTIONS(5548), + [anon_sym___attribute__] = ACTIONS(5548), + [anon_sym___attribute] = ACTIONS(5548), + [anon_sym_noreturn] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5550), + [anon_sym___declspec] = ACTIONS(5548), + [anon_sym___cdecl] = ACTIONS(5548), + [anon_sym___clrcall] = ACTIONS(5548), + [anon_sym___stdcall] = ACTIONS(5548), + [anon_sym___fastcall] = ACTIONS(5548), + [anon_sym___thiscall] = ACTIONS(5548), + [anon_sym___vectorcall] = ACTIONS(5548), + [anon_sym_signed] = ACTIONS(5548), + [anon_sym_unsigned] = ACTIONS(5548), + [anon_sym_long] = ACTIONS(5548), + [anon_sym_short] = ACTIONS(5548), + [anon_sym_static] = ACTIONS(5548), + [anon_sym_auto] = ACTIONS(5548), + [anon_sym_register] = ACTIONS(5548), + [anon_sym_inline] = ACTIONS(5548), + [anon_sym___inline] = ACTIONS(5548), + [anon_sym___inline__] = ACTIONS(5548), + [anon_sym___forceinline] = ACTIONS(5548), + [anon_sym_thread_local] = ACTIONS(5548), + [anon_sym___thread] = ACTIONS(5548), + [anon_sym_CG_EXTERN] = ACTIONS(5548), + [anon_sym_CG_INLINE] = ACTIONS(5548), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5548), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5548), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5548), + [anon_sym_IBOutlet] = ACTIONS(5548), + [anon_sym_IBInspectable] = ACTIONS(5548), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5548), + [anon_sym_NS_INLINE] = ACTIONS(5548), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5548), + [anon_sym_OBJC_EXPORT] = ACTIONS(5548), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5548), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5548), + [anon_sym_const] = ACTIONS(5548), + [anon_sym_constexpr] = ACTIONS(5548), + [anon_sym_volatile] = ACTIONS(5548), + [anon_sym_restrict] = ACTIONS(5548), + [anon_sym___restrict__] = ACTIONS(5548), + [anon_sym__Atomic] = ACTIONS(5548), + [anon_sym__Noreturn] = ACTIONS(5548), + [anon_sym__Nonnull] = ACTIONS(5548), + [anon_sym_nullable] = ACTIONS(5548), + [anon_sym__Complex] = ACTIONS(5548), + [anon_sym__Nullable] = ACTIONS(5548), + [anon_sym__Nullable_result] = ACTIONS(5548), + [anon_sym__Null_unspecified] = ACTIONS(5548), + [anon_sym___autoreleasing] = ACTIONS(5548), + [anon_sym___block] = ACTIONS(5548), + [anon_sym___bridge] = ACTIONS(5548), + [anon_sym___bridge_retained] = ACTIONS(5548), + [anon_sym___bridge_transfer] = ACTIONS(5548), + [anon_sym___complex] = ACTIONS(5548), + [anon_sym___const] = ACTIONS(5548), + [anon_sym___imag] = ACTIONS(5548), + [anon_sym___kindof] = ACTIONS(5548), + [anon_sym___nonnull] = ACTIONS(5548), + [anon_sym___nullable] = ACTIONS(5548), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5548), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5548), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5548), + [anon_sym___real] = ACTIONS(5548), + [anon_sym___strong] = ACTIONS(5548), + [anon_sym___unsafe_unretained] = ACTIONS(5548), + [anon_sym___unused] = ACTIONS(5548), + [anon_sym___weak] = ACTIONS(5548), + [anon_sym_alignas] = ACTIONS(5548), + [anon_sym__Alignas] = ACTIONS(5548), + [sym_primitive_type] = ACTIONS(5548), + [anon_sym_enum] = ACTIONS(5548), + [anon_sym_struct] = ACTIONS(5548), + [anon_sym_union] = ACTIONS(5548), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5548), + [anon_sym___typeof] = ACTIONS(5548), + [anon_sym_typeof] = ACTIONS(5548), + [aux_sym_preproc_undef_token1] = ACTIONS(5548), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5548), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5548), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5548), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5548), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5548), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5548), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5548), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5548), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5548), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5548), + [anon_sym_NS_AVAILABLE] = ACTIONS(5548), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5548), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5548), + [anon_sym_API_AVAILABLE] = ACTIONS(5548), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5548), + [anon_sym_API_DEPRECATED] = ACTIONS(5548), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5548), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5548), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5548), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5548), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5548), + [anon_sym___deprecated_msg] = ACTIONS(5548), + [anon_sym___deprecated_enum_msg] = ACTIONS(5548), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5548), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5548), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5548), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5548), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5548), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5548), + [anon_sym_ATproperty] = ACTIONS(5550), + [anon_sym_BOOL] = ACTIONS(5548), + [anon_sym_IMP] = ACTIONS(5548), + [anon_sym_SEL] = ACTIONS(5548), + [anon_sym_Class] = ACTIONS(5548), + [anon_sym_id] = ACTIONS(5548), + }, + [2429] = { + [sym_identifier] = ACTIONS(5534), + [aux_sym_preproc_def_token1] = ACTIONS(5534), + [aux_sym_preproc_if_token1] = ACTIONS(5534), + [aux_sym_preproc_if_token2] = ACTIONS(5534), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5534), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5534), + [sym_preproc_directive] = ACTIONS(5534), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym___extension__] = ACTIONS(5534), + [anon_sym_typedef] = ACTIONS(5534), + [anon_sym_extern] = ACTIONS(5534), + [anon_sym___attribute__] = ACTIONS(5534), + [anon_sym___attribute] = ACTIONS(5534), + [anon_sym_noreturn] = ACTIONS(5534), + [anon_sym_LBRACK] = ACTIONS(5536), + [anon_sym___declspec] = ACTIONS(5534), + [anon_sym___cdecl] = ACTIONS(5534), + [anon_sym___clrcall] = ACTIONS(5534), + [anon_sym___stdcall] = ACTIONS(5534), + [anon_sym___fastcall] = ACTIONS(5534), + [anon_sym___thiscall] = ACTIONS(5534), + [anon_sym___vectorcall] = ACTIONS(5534), + [anon_sym_signed] = ACTIONS(5534), + [anon_sym_unsigned] = ACTIONS(5534), + [anon_sym_long] = ACTIONS(5534), + [anon_sym_short] = ACTIONS(5534), + [anon_sym_static] = ACTIONS(5534), + [anon_sym_auto] = ACTIONS(5534), + [anon_sym_register] = ACTIONS(5534), + [anon_sym_inline] = ACTIONS(5534), + [anon_sym___inline] = ACTIONS(5534), + [anon_sym___inline__] = ACTIONS(5534), + [anon_sym___forceinline] = ACTIONS(5534), + [anon_sym_thread_local] = ACTIONS(5534), + [anon_sym___thread] = ACTIONS(5534), + [anon_sym_CG_EXTERN] = ACTIONS(5534), + [anon_sym_CG_INLINE] = ACTIONS(5534), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5534), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5534), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5534), + [anon_sym_IBOutlet] = ACTIONS(5534), + [anon_sym_IBInspectable] = ACTIONS(5534), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5534), + [anon_sym_NS_INLINE] = ACTIONS(5534), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5534), + [anon_sym_OBJC_EXPORT] = ACTIONS(5534), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5534), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5534), + [anon_sym_const] = ACTIONS(5534), + [anon_sym_constexpr] = ACTIONS(5534), + [anon_sym_volatile] = ACTIONS(5534), + [anon_sym_restrict] = ACTIONS(5534), + [anon_sym___restrict__] = ACTIONS(5534), + [anon_sym__Atomic] = ACTIONS(5534), + [anon_sym__Noreturn] = ACTIONS(5534), + [anon_sym__Nonnull] = ACTIONS(5534), + [anon_sym_nullable] = ACTIONS(5534), + [anon_sym__Complex] = ACTIONS(5534), + [anon_sym__Nullable] = ACTIONS(5534), + [anon_sym__Nullable_result] = ACTIONS(5534), + [anon_sym__Null_unspecified] = ACTIONS(5534), + [anon_sym___autoreleasing] = ACTIONS(5534), + [anon_sym___block] = ACTIONS(5534), + [anon_sym___bridge] = ACTIONS(5534), + [anon_sym___bridge_retained] = ACTIONS(5534), + [anon_sym___bridge_transfer] = ACTIONS(5534), + [anon_sym___complex] = ACTIONS(5534), + [anon_sym___const] = ACTIONS(5534), + [anon_sym___imag] = ACTIONS(5534), + [anon_sym___kindof] = ACTIONS(5534), + [anon_sym___nonnull] = ACTIONS(5534), + [anon_sym___nullable] = ACTIONS(5534), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5534), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5534), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5534), + [anon_sym___real] = ACTIONS(5534), + [anon_sym___strong] = ACTIONS(5534), + [anon_sym___unsafe_unretained] = ACTIONS(5534), + [anon_sym___unused] = ACTIONS(5534), + [anon_sym___weak] = ACTIONS(5534), + [anon_sym_alignas] = ACTIONS(5534), + [anon_sym__Alignas] = ACTIONS(5534), + [sym_primitive_type] = ACTIONS(5534), + [anon_sym_enum] = ACTIONS(5534), + [anon_sym_struct] = ACTIONS(5534), + [anon_sym_union] = ACTIONS(5534), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5534), + [anon_sym___typeof] = ACTIONS(5534), + [anon_sym_typeof] = ACTIONS(5534), + [aux_sym_preproc_undef_token1] = ACTIONS(5534), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5534), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5534), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5534), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5534), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5534), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5534), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5534), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5534), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5534), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5534), + [anon_sym_NS_AVAILABLE] = ACTIONS(5534), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5534), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5534), + [anon_sym_API_AVAILABLE] = ACTIONS(5534), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5534), + [anon_sym_API_DEPRECATED] = ACTIONS(5534), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5534), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5534), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5534), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5534), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5534), + [anon_sym___deprecated_msg] = ACTIONS(5534), + [anon_sym___deprecated_enum_msg] = ACTIONS(5534), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5534), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5534), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5534), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5534), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5534), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5534), + [anon_sym_ATproperty] = ACTIONS(5536), + [anon_sym_BOOL] = ACTIONS(5534), + [anon_sym_IMP] = ACTIONS(5534), + [anon_sym_SEL] = ACTIONS(5534), + [anon_sym_Class] = ACTIONS(5534), + [anon_sym_id] = ACTIONS(5534), + }, + [2430] = { + [sym_identifier] = ACTIONS(5552), + [aux_sym_preproc_def_token1] = ACTIONS(5552), + [aux_sym_preproc_if_token1] = ACTIONS(5552), + [aux_sym_preproc_if_token2] = ACTIONS(5552), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5552), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5552), + [sym_preproc_directive] = ACTIONS(5552), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym___extension__] = ACTIONS(5552), + [anon_sym_typedef] = ACTIONS(5552), + [anon_sym_extern] = ACTIONS(5552), + [anon_sym___attribute__] = ACTIONS(5552), + [anon_sym___attribute] = ACTIONS(5552), + [anon_sym_noreturn] = ACTIONS(5552), + [anon_sym_LBRACK] = ACTIONS(5554), + [anon_sym___declspec] = ACTIONS(5552), + [anon_sym___cdecl] = ACTIONS(5552), + [anon_sym___clrcall] = ACTIONS(5552), + [anon_sym___stdcall] = ACTIONS(5552), + [anon_sym___fastcall] = ACTIONS(5552), + [anon_sym___thiscall] = ACTIONS(5552), + [anon_sym___vectorcall] = ACTIONS(5552), + [anon_sym_signed] = ACTIONS(5552), + [anon_sym_unsigned] = ACTIONS(5552), + [anon_sym_long] = ACTIONS(5552), + [anon_sym_short] = ACTIONS(5552), + [anon_sym_static] = ACTIONS(5552), + [anon_sym_auto] = ACTIONS(5552), + [anon_sym_register] = ACTIONS(5552), + [anon_sym_inline] = ACTIONS(5552), + [anon_sym___inline] = ACTIONS(5552), + [anon_sym___inline__] = ACTIONS(5552), + [anon_sym___forceinline] = ACTIONS(5552), + [anon_sym_thread_local] = ACTIONS(5552), + [anon_sym___thread] = ACTIONS(5552), + [anon_sym_CG_EXTERN] = ACTIONS(5552), + [anon_sym_CG_INLINE] = ACTIONS(5552), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5552), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5552), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5552), + [anon_sym_IBOutlet] = ACTIONS(5552), + [anon_sym_IBInspectable] = ACTIONS(5552), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5552), + [anon_sym_NS_INLINE] = ACTIONS(5552), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5552), + [anon_sym_OBJC_EXPORT] = ACTIONS(5552), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5552), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5552), + [anon_sym_const] = ACTIONS(5552), + [anon_sym_constexpr] = ACTIONS(5552), + [anon_sym_volatile] = ACTIONS(5552), + [anon_sym_restrict] = ACTIONS(5552), + [anon_sym___restrict__] = ACTIONS(5552), + [anon_sym__Atomic] = ACTIONS(5552), + [anon_sym__Noreturn] = ACTIONS(5552), + [anon_sym__Nonnull] = ACTIONS(5552), + [anon_sym_nullable] = ACTIONS(5552), + [anon_sym__Complex] = ACTIONS(5552), + [anon_sym__Nullable] = ACTIONS(5552), + [anon_sym__Nullable_result] = ACTIONS(5552), + [anon_sym__Null_unspecified] = ACTIONS(5552), + [anon_sym___autoreleasing] = ACTIONS(5552), + [anon_sym___block] = ACTIONS(5552), + [anon_sym___bridge] = ACTIONS(5552), + [anon_sym___bridge_retained] = ACTIONS(5552), + [anon_sym___bridge_transfer] = ACTIONS(5552), + [anon_sym___complex] = ACTIONS(5552), + [anon_sym___const] = ACTIONS(5552), + [anon_sym___imag] = ACTIONS(5552), + [anon_sym___kindof] = ACTIONS(5552), + [anon_sym___nonnull] = ACTIONS(5552), + [anon_sym___nullable] = ACTIONS(5552), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5552), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5552), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5552), + [anon_sym___real] = ACTIONS(5552), + [anon_sym___strong] = ACTIONS(5552), + [anon_sym___unsafe_unretained] = ACTIONS(5552), + [anon_sym___unused] = ACTIONS(5552), + [anon_sym___weak] = ACTIONS(5552), + [anon_sym_alignas] = ACTIONS(5552), + [anon_sym__Alignas] = ACTIONS(5552), + [sym_primitive_type] = ACTIONS(5552), + [anon_sym_enum] = ACTIONS(5552), + [anon_sym_struct] = ACTIONS(5552), + [anon_sym_union] = ACTIONS(5552), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5552), + [anon_sym___typeof] = ACTIONS(5552), + [anon_sym_typeof] = ACTIONS(5552), + [aux_sym_preproc_undef_token1] = ACTIONS(5552), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5552), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5552), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5552), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5552), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5552), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5552), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5552), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5552), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5552), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5552), + [anon_sym_NS_AVAILABLE] = ACTIONS(5552), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5552), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5552), + [anon_sym_API_AVAILABLE] = ACTIONS(5552), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5552), + [anon_sym_API_DEPRECATED] = ACTIONS(5552), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5552), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5552), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5552), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5552), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5552), + [anon_sym___deprecated_msg] = ACTIONS(5552), + [anon_sym___deprecated_enum_msg] = ACTIONS(5552), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5552), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5552), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5552), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5552), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5552), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5552), + [anon_sym_ATproperty] = ACTIONS(5554), + [anon_sym_BOOL] = ACTIONS(5552), + [anon_sym_IMP] = ACTIONS(5552), + [anon_sym_SEL] = ACTIONS(5552), + [anon_sym_Class] = ACTIONS(5552), + [anon_sym_id] = ACTIONS(5552), + }, + [2431] = { + [sym_identifier] = ACTIONS(5538), + [aux_sym_preproc_def_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token2] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5538), + [sym_preproc_directive] = ACTIONS(5538), + [anon_sym_DASH] = ACTIONS(5540), + [anon_sym_PLUS] = ACTIONS(5540), + [anon_sym___extension__] = ACTIONS(5538), + [anon_sym_typedef] = ACTIONS(5538), + [anon_sym_extern] = ACTIONS(5538), + [anon_sym___attribute__] = ACTIONS(5538), + [anon_sym___attribute] = ACTIONS(5538), + [anon_sym_noreturn] = ACTIONS(5538), + [anon_sym_LBRACK] = ACTIONS(5540), + [anon_sym___declspec] = ACTIONS(5538), + [anon_sym___cdecl] = ACTIONS(5538), + [anon_sym___clrcall] = ACTIONS(5538), + [anon_sym___stdcall] = ACTIONS(5538), + [anon_sym___fastcall] = ACTIONS(5538), + [anon_sym___thiscall] = ACTIONS(5538), + [anon_sym___vectorcall] = ACTIONS(5538), + [anon_sym_signed] = ACTIONS(5538), + [anon_sym_unsigned] = ACTIONS(5538), + [anon_sym_long] = ACTIONS(5538), + [anon_sym_short] = ACTIONS(5538), + [anon_sym_static] = ACTIONS(5538), + [anon_sym_auto] = ACTIONS(5538), + [anon_sym_register] = ACTIONS(5538), + [anon_sym_inline] = ACTIONS(5538), + [anon_sym___inline] = ACTIONS(5538), + [anon_sym___inline__] = ACTIONS(5538), + [anon_sym___forceinline] = ACTIONS(5538), + [anon_sym_thread_local] = ACTIONS(5538), + [anon_sym___thread] = ACTIONS(5538), + [anon_sym_CG_EXTERN] = ACTIONS(5538), + [anon_sym_CG_INLINE] = ACTIONS(5538), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5538), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5538), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5538), + [anon_sym_IBOutlet] = ACTIONS(5538), + [anon_sym_IBInspectable] = ACTIONS(5538), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5538), + [anon_sym_NS_INLINE] = ACTIONS(5538), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5538), + [anon_sym_OBJC_EXPORT] = ACTIONS(5538), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5538), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5538), + [anon_sym_const] = ACTIONS(5538), + [anon_sym_constexpr] = ACTIONS(5538), + [anon_sym_volatile] = ACTIONS(5538), + [anon_sym_restrict] = ACTIONS(5538), + [anon_sym___restrict__] = ACTIONS(5538), + [anon_sym__Atomic] = ACTIONS(5538), + [anon_sym__Noreturn] = ACTIONS(5538), + [anon_sym__Nonnull] = ACTIONS(5538), + [anon_sym_nullable] = ACTIONS(5538), + [anon_sym__Complex] = ACTIONS(5538), + [anon_sym__Nullable] = ACTIONS(5538), + [anon_sym__Nullable_result] = ACTIONS(5538), + [anon_sym__Null_unspecified] = ACTIONS(5538), + [anon_sym___autoreleasing] = ACTIONS(5538), + [anon_sym___block] = ACTIONS(5538), + [anon_sym___bridge] = ACTIONS(5538), + [anon_sym___bridge_retained] = ACTIONS(5538), + [anon_sym___bridge_transfer] = ACTIONS(5538), + [anon_sym___complex] = ACTIONS(5538), + [anon_sym___const] = ACTIONS(5538), + [anon_sym___imag] = ACTIONS(5538), + [anon_sym___kindof] = ACTIONS(5538), + [anon_sym___nonnull] = ACTIONS(5538), + [anon_sym___nullable] = ACTIONS(5538), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5538), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5538), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5538), + [anon_sym___real] = ACTIONS(5538), + [anon_sym___strong] = ACTIONS(5538), + [anon_sym___unsafe_unretained] = ACTIONS(5538), + [anon_sym___unused] = ACTIONS(5538), + [anon_sym___weak] = ACTIONS(5538), + [anon_sym_alignas] = ACTIONS(5538), + [anon_sym__Alignas] = ACTIONS(5538), + [sym_primitive_type] = ACTIONS(5538), + [anon_sym_enum] = ACTIONS(5538), + [anon_sym_struct] = ACTIONS(5538), + [anon_sym_union] = ACTIONS(5538), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5538), + [anon_sym___typeof] = ACTIONS(5538), + [anon_sym_typeof] = ACTIONS(5538), + [aux_sym_preproc_undef_token1] = ACTIONS(5538), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5538), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5538), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5538), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5538), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5538), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5538), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5538), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5538), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5538), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5538), + [anon_sym_NS_AVAILABLE] = ACTIONS(5538), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5538), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5538), + [anon_sym_API_AVAILABLE] = ACTIONS(5538), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5538), + [anon_sym_API_DEPRECATED] = ACTIONS(5538), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5538), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5538), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5538), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5538), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5538), + [anon_sym___deprecated_msg] = ACTIONS(5538), + [anon_sym___deprecated_enum_msg] = ACTIONS(5538), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5538), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5538), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5538), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5538), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5538), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5538), + [anon_sym_ATproperty] = ACTIONS(5540), + [anon_sym_BOOL] = ACTIONS(5538), + [anon_sym_IMP] = ACTIONS(5538), + [anon_sym_SEL] = ACTIONS(5538), + [anon_sym_Class] = ACTIONS(5538), + [anon_sym_id] = ACTIONS(5538), + }, + [2432] = { + [sym_attribute_declaration] = STATE(2432), + [sym_compound_statement] = STATE(274), + [sym_attributed_statement] = STATE(274), + [sym_statement] = STATE(229), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(274), + [sym_throw_statement] = STATE(274), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(274), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(274), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2432), + [sym_identifier] = ACTIONS(5654), + [anon_sym_LPAREN2] = ACTIONS(5657), + [anon_sym_BANG] = ACTIONS(5660), + [anon_sym_TILDE] = ACTIONS(5660), + [anon_sym_DASH] = ACTIONS(5663), + [anon_sym_PLUS] = ACTIONS(5663), + [anon_sym_STAR] = ACTIONS(5666), + [anon_sym_CARET] = ACTIONS(5669), + [anon_sym_AMP] = ACTIONS(5666), + [anon_sym_SEMI] = ACTIONS(5672), + [anon_sym___extension__] = ACTIONS(5675), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5681), + [anon_sym_ATautoreleasepool] = ACTIONS(5684), + [anon_sym_const] = ACTIONS(5687), + [anon_sym___imag] = ACTIONS(5690), + [anon_sym___real] = ACTIONS(5690), + [anon_sym_struct] = ACTIONS(5687), + [anon_sym_if] = ACTIONS(5693), + [anon_sym_switch] = ACTIONS(5696), + [anon_sym_case] = ACTIONS(5699), + [anon_sym_default] = ACTIONS(5702), + [anon_sym_while] = ACTIONS(5705), + [anon_sym_do] = ACTIONS(5708), + [anon_sym_for] = ACTIONS(5711), + [anon_sym_in] = ACTIONS(5687), + [anon_sym_return] = ACTIONS(5714), + [anon_sym_break] = ACTIONS(5717), + [anon_sym_continue] = ACTIONS(5720), + [anon_sym_goto] = ACTIONS(5723), + [anon_sym_DASH_DASH] = ACTIONS(5726), + [anon_sym_PLUS_PLUS] = ACTIONS(5726), + [anon_sym_sizeof] = ACTIONS(5729), + [anon_sym___alignof__] = ACTIONS(5732), + [anon_sym___alignof] = ACTIONS(5732), + [anon_sym__alignof] = ACTIONS(5732), + [anon_sym_alignof] = ACTIONS(5732), + [anon_sym__Alignof] = ACTIONS(5732), + [anon_sym_offsetof] = ACTIONS(5735), + [anon_sym__Generic] = ACTIONS(5738), + [anon_sym_asm] = ACTIONS(5741), + [anon_sym___asm__] = ACTIONS(5741), + [anon_sym___asm] = ACTIONS(5744), + [sym_number_literal] = ACTIONS(5747), + [anon_sym_L_SQUOTE] = ACTIONS(5750), + [anon_sym_u_SQUOTE] = ACTIONS(5750), + [anon_sym_U_SQUOTE] = ACTIONS(5750), + [anon_sym_u8_SQUOTE] = ACTIONS(5750), + [anon_sym_SQUOTE] = ACTIONS(5750), + [anon_sym_AT] = ACTIONS(5753), + [anon_sym_DQUOTE] = ACTIONS(5756), + [anon_sym_L_DQUOTE] = ACTIONS(5756), + [anon_sym_u_DQUOTE] = ACTIONS(5756), + [anon_sym_U_DQUOTE] = ACTIONS(5756), + [anon_sym_u8_DQUOTE] = ACTIONS(5756), + [sym_true] = ACTIONS(5759), + [sym_false] = ACTIONS(5759), + [anon_sym_NULL] = ACTIONS(5762), + [anon_sym_nullptr] = ACTIONS(5762), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(5765), + [anon_sym___try] = ACTIONS(5768), + [anon_sym_ATthrow] = ACTIONS(5771), + [anon_sym_ATselector] = ACTIONS(5774), + [anon_sym_ATavailable] = ACTIONS(5777), + [anon_sym___builtin_available] = ACTIONS(5780), + [anon_sym_va_arg] = ACTIONS(5783), + [anon_sym_ATencode] = ACTIONS(5786), + [anon_sym_ATsynchronized] = ACTIONS(5789), + [anon_sym_id] = ACTIONS(5687), + }, + [2433] = { + [sym_attribute_declaration] = STATE(2458), + [sym_compound_statement] = STATE(406), + [sym_attributed_statement] = STATE(406), + [sym_statement] = STATE(279), + [sym_labeled_statement] = STATE(406), + [sym_expression_statement] = STATE(406), + [sym_if_statement] = STATE(406), + [sym_switch_statement] = STATE(406), + [sym_case_statement] = STATE(406), + [sym_while_statement] = STATE(406), + [sym_do_statement] = STATE(406), + [sym_for_statement] = STATE(406), + [sym_return_statement] = STATE(406), + [sym_break_statement] = STATE(406), + [sym_continue_statement] = STATE(406), + [sym_goto_statement] = STATE(406), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(406), + [sym_throw_statement] = STATE(406), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(406), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(406), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [sym_identifier] = ACTIONS(5792), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(307), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_id] = ACTIONS(203), + }, + [2434] = { + [sym_attribute_declaration] = STATE(2458), + [sym_compound_statement] = STATE(406), + [sym_attributed_statement] = STATE(406), + [sym_statement] = STATE(408), + [sym_labeled_statement] = STATE(406), + [sym_expression_statement] = STATE(406), + [sym_if_statement] = STATE(406), + [sym_switch_statement] = STATE(406), + [sym_case_statement] = STATE(406), + [sym_while_statement] = STATE(406), + [sym_do_statement] = STATE(406), + [sym_for_statement] = STATE(406), + [sym_return_statement] = STATE(406), + [sym_break_statement] = STATE(406), + [sym_continue_statement] = STATE(406), + [sym_goto_statement] = STATE(406), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(406), + [sym_throw_statement] = STATE(406), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(406), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(406), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [sym_identifier] = ACTIONS(5792), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(307), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_id] = ACTIONS(203), + }, + [2435] = { + [sym_attribute_declaration] = STATE(2465), + [sym_compound_statement] = STATE(809), + [sym_attributed_statement] = STATE(809), + [sym_statement] = STATE(5556), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2465), + [sym_identifier] = ACTIONS(5796), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2154), + [anon_sym___try] = ACTIONS(2156), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2158), + [anon_sym_id] = ACTIONS(203), + }, + [2436] = { + [sym_attribute_declaration] = STATE(2472), + [sym_compound_statement] = STATE(981), + [sym_attributed_statement] = STATE(981), + [sym_statement] = STATE(937), + [sym_labeled_statement] = STATE(981), + [sym_expression_statement] = STATE(981), + [sym_if_statement] = STATE(981), + [sym_switch_statement] = STATE(981), + [sym_case_statement] = STATE(981), + [sym_while_statement] = STATE(981), + [sym_do_statement] = STATE(981), + [sym_for_statement] = STATE(981), + [sym_return_statement] = STATE(981), + [sym_break_statement] = STATE(981), + [sym_continue_statement] = STATE(981), + [sym_goto_statement] = STATE(981), + [sym_expression] = STATE(4465), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6211), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(981), + [sym_throw_statement] = STATE(981), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(981), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(981), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2472), + [sym_identifier] = ACTIONS(5798), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2128), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(69), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(73), + [anon_sym_default] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym___try] = ACTIONS(2136), + [anon_sym_ATthrow] = ACTIONS(2138), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2140), + [anon_sym_id] = ACTIONS(203), + }, + [2437] = { + [sym_attribute_declaration] = STATE(2480), + [sym_compound_statement] = STATE(274), + [sym_attributed_statement] = STATE(274), + [sym_statement] = STATE(248), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(274), + [sym_throw_statement] = STATE(274), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(274), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(274), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [sym_identifier] = ACTIONS(5800), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_id] = ACTIONS(203), + }, + [2438] = { + [sym_attribute_declaration] = STATE(2465), + [sym_compound_statement] = STATE(809), + [sym_attributed_statement] = STATE(809), + [sym_statement] = STATE(984), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2465), + [sym_identifier] = ACTIONS(5796), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2154), + [anon_sym___try] = ACTIONS(2156), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2158), + [anon_sym_id] = ACTIONS(203), + }, + [2439] = { + [sym_attribute_declaration] = STATE(2444), + [sym_compound_statement] = STATE(809), + [sym_attributed_statement] = STATE(809), + [sym_statement] = STATE(607), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(5802), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_id] = ACTIONS(203), + }, + [2440] = { + [sym_attribute_declaration] = STATE(2444), + [sym_compound_statement] = STATE(809), + [sym_attributed_statement] = STATE(809), + [sym_statement] = STATE(718), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(5802), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_id] = ACTIONS(203), + }, + [2441] = { + [sym_attribute_declaration] = STATE(2480), + [sym_compound_statement] = STATE(274), + [sym_attributed_statement] = STATE(274), + [sym_statement] = STATE(250), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(274), + [sym_throw_statement] = STATE(274), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(274), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(274), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [sym_identifier] = ACTIONS(5800), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_id] = ACTIONS(203), + }, + [2442] = { + [sym_attribute_declaration] = STATE(2446), + [sym_compound_statement] = STATE(588), + [sym_attributed_statement] = STATE(588), + [sym_statement] = STATE(515), + [sym_labeled_statement] = STATE(588), + [sym_expression_statement] = STATE(588), + [sym_if_statement] = STATE(588), + [sym_switch_statement] = STATE(588), + [sym_case_statement] = STATE(588), + [sym_while_statement] = STATE(588), + [sym_do_statement] = STATE(588), + [sym_for_statement] = STATE(588), + [sym_return_statement] = STATE(588), + [sym_break_statement] = STATE(588), + [sym_continue_statement] = STATE(588), + [sym_goto_statement] = STATE(588), + [sym_expression] = STATE(4448), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6083), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(588), + [sym_throw_statement] = STATE(588), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(588), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(588), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2446), + [sym_identifier] = ACTIONS(5804), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_ATautoreleasepool] = ACTIONS(761), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(763), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_case] = ACTIONS(767), + [anon_sym_default] = ACTIONS(769), + [anon_sym_while] = ACTIONS(771), + [anon_sym_do] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(777), + [anon_sym_break] = ACTIONS(779), + [anon_sym_continue] = ACTIONS(781), + [anon_sym_goto] = ACTIONS(783), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(785), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(803), + [anon_sym___try] = ACTIONS(805), + [anon_sym_ATthrow] = ACTIONS(807), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(809), + [anon_sym_id] = ACTIONS(203), + }, + [2443] = { + [sym_attribute_declaration] = STATE(2443), + [sym_compound_statement] = STATE(406), + [sym_attributed_statement] = STATE(406), + [sym_statement] = STATE(399), + [sym_labeled_statement] = STATE(406), + [sym_expression_statement] = STATE(406), + [sym_if_statement] = STATE(406), + [sym_switch_statement] = STATE(406), + [sym_case_statement] = STATE(406), + [sym_while_statement] = STATE(406), + [sym_do_statement] = STATE(406), + [sym_for_statement] = STATE(406), + [sym_return_statement] = STATE(406), + [sym_break_statement] = STATE(406), + [sym_continue_statement] = STATE(406), + [sym_goto_statement] = STATE(406), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(406), + [sym_throw_statement] = STATE(406), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(406), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(406), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2443), + [sym_identifier] = ACTIONS(5806), + [anon_sym_LPAREN2] = ACTIONS(5657), + [anon_sym_BANG] = ACTIONS(5660), + [anon_sym_TILDE] = ACTIONS(5660), + [anon_sym_DASH] = ACTIONS(5663), + [anon_sym_PLUS] = ACTIONS(5663), + [anon_sym_STAR] = ACTIONS(5666), + [anon_sym_CARET] = ACTIONS(5669), + [anon_sym_AMP] = ACTIONS(5666), + [anon_sym_SEMI] = ACTIONS(5809), + [anon_sym___extension__] = ACTIONS(5675), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5812), + [anon_sym_ATautoreleasepool] = ACTIONS(5815), + [anon_sym_const] = ACTIONS(5687), + [anon_sym___imag] = ACTIONS(5690), + [anon_sym___real] = ACTIONS(5690), + [anon_sym_struct] = ACTIONS(5687), + [anon_sym_if] = ACTIONS(5818), + [anon_sym_switch] = ACTIONS(5821), + [anon_sym_case] = ACTIONS(5824), + [anon_sym_default] = ACTIONS(5827), + [anon_sym_while] = ACTIONS(5830), + [anon_sym_do] = ACTIONS(5833), + [anon_sym_for] = ACTIONS(5836), + [anon_sym_in] = ACTIONS(5687), + [anon_sym_return] = ACTIONS(5839), + [anon_sym_break] = ACTIONS(5842), + [anon_sym_continue] = ACTIONS(5845), + [anon_sym_goto] = ACTIONS(5848), + [anon_sym_DASH_DASH] = ACTIONS(5726), + [anon_sym_PLUS_PLUS] = ACTIONS(5726), + [anon_sym_sizeof] = ACTIONS(5729), + [anon_sym___alignof__] = ACTIONS(5732), + [anon_sym___alignof] = ACTIONS(5732), + [anon_sym__alignof] = ACTIONS(5732), + [anon_sym_alignof] = ACTIONS(5732), + [anon_sym__Alignof] = ACTIONS(5732), + [anon_sym_offsetof] = ACTIONS(5735), + [anon_sym__Generic] = ACTIONS(5738), + [anon_sym_asm] = ACTIONS(5741), + [anon_sym___asm__] = ACTIONS(5741), + [anon_sym___asm] = ACTIONS(5851), + [sym_number_literal] = ACTIONS(5747), + [anon_sym_L_SQUOTE] = ACTIONS(5750), + [anon_sym_u_SQUOTE] = ACTIONS(5750), + [anon_sym_U_SQUOTE] = ACTIONS(5750), + [anon_sym_u8_SQUOTE] = ACTIONS(5750), + [anon_sym_SQUOTE] = ACTIONS(5750), + [anon_sym_AT] = ACTIONS(5753), + [anon_sym_DQUOTE] = ACTIONS(5756), + [anon_sym_L_DQUOTE] = ACTIONS(5756), + [anon_sym_u_DQUOTE] = ACTIONS(5756), + [anon_sym_U_DQUOTE] = ACTIONS(5756), + [anon_sym_u8_DQUOTE] = ACTIONS(5756), + [sym_true] = ACTIONS(5759), + [sym_false] = ACTIONS(5759), + [anon_sym_NULL] = ACTIONS(5762), + [anon_sym_nullptr] = ACTIONS(5762), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(5854), + [anon_sym___try] = ACTIONS(5857), + [anon_sym_ATthrow] = ACTIONS(5860), + [anon_sym_ATselector] = ACTIONS(5774), + [anon_sym_ATavailable] = ACTIONS(5777), + [anon_sym___builtin_available] = ACTIONS(5780), + [anon_sym_va_arg] = ACTIONS(5783), + [anon_sym_ATencode] = ACTIONS(5786), + [anon_sym_ATsynchronized] = ACTIONS(5863), + [anon_sym_id] = ACTIONS(5687), + }, + [2444] = { + [sym_attribute_declaration] = STATE(2456), + [sym_compound_statement] = STATE(809), + [sym_attributed_statement] = STATE(809), + [sym_statement] = STATE(710), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2456), + [sym_identifier] = ACTIONS(5802), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_id] = ACTIONS(203), + }, + [2445] = { + [sym_attribute_declaration] = STATE(2445), + [sym_compound_statement] = STATE(809), + [sym_attributed_statement] = STATE(809), + [sym_statement] = STATE(979), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2445), + [sym_identifier] = ACTIONS(5866), + [anon_sym_LPAREN2] = ACTIONS(5657), + [anon_sym_BANG] = ACTIONS(5660), + [anon_sym_TILDE] = ACTIONS(5660), + [anon_sym_DASH] = ACTIONS(5663), + [anon_sym_PLUS] = ACTIONS(5663), + [anon_sym_STAR] = ACTIONS(5666), + [anon_sym_CARET] = ACTIONS(5669), + [anon_sym_AMP] = ACTIONS(5666), + [anon_sym_SEMI] = ACTIONS(5869), + [anon_sym___extension__] = ACTIONS(5675), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5872), + [anon_sym_ATautoreleasepool] = ACTIONS(5875), + [anon_sym_const] = ACTIONS(5687), + [anon_sym___imag] = ACTIONS(5690), + [anon_sym___real] = ACTIONS(5690), + [anon_sym_struct] = ACTIONS(5687), + [anon_sym_if] = ACTIONS(5878), + [anon_sym_switch] = ACTIONS(5881), + [anon_sym_case] = ACTIONS(5884), + [anon_sym_default] = ACTIONS(5887), + [anon_sym_while] = ACTIONS(5890), + [anon_sym_do] = ACTIONS(5893), + [anon_sym_for] = ACTIONS(5896), + [anon_sym_in] = ACTIONS(5687), + [anon_sym_return] = ACTIONS(5899), + [anon_sym_break] = ACTIONS(5902), + [anon_sym_continue] = ACTIONS(5905), + [anon_sym_goto] = ACTIONS(5908), + [anon_sym_DASH_DASH] = ACTIONS(5726), + [anon_sym_PLUS_PLUS] = ACTIONS(5726), + [anon_sym_sizeof] = ACTIONS(5729), + [anon_sym___alignof__] = ACTIONS(5732), + [anon_sym___alignof] = ACTIONS(5732), + [anon_sym__alignof] = ACTIONS(5732), + [anon_sym_alignof] = ACTIONS(5732), + [anon_sym__Alignof] = ACTIONS(5732), + [anon_sym_offsetof] = ACTIONS(5735), + [anon_sym__Generic] = ACTIONS(5738), + [anon_sym_asm] = ACTIONS(5741), + [anon_sym___asm__] = ACTIONS(5741), + [anon_sym___asm] = ACTIONS(5911), + [sym_number_literal] = ACTIONS(5747), + [anon_sym_L_SQUOTE] = ACTIONS(5750), + [anon_sym_u_SQUOTE] = ACTIONS(5750), + [anon_sym_U_SQUOTE] = ACTIONS(5750), + [anon_sym_u8_SQUOTE] = ACTIONS(5750), + [anon_sym_SQUOTE] = ACTIONS(5750), + [anon_sym_AT] = ACTIONS(5753), + [anon_sym_DQUOTE] = ACTIONS(5756), + [anon_sym_L_DQUOTE] = ACTIONS(5756), + [anon_sym_u_DQUOTE] = ACTIONS(5756), + [anon_sym_U_DQUOTE] = ACTIONS(5756), + [anon_sym_u8_DQUOTE] = ACTIONS(5756), + [sym_true] = ACTIONS(5759), + [sym_false] = ACTIONS(5759), + [anon_sym_NULL] = ACTIONS(5762), + [anon_sym_nullptr] = ACTIONS(5762), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(5914), + [anon_sym___try] = ACTIONS(5917), + [anon_sym_ATthrow] = ACTIONS(5920), + [anon_sym_ATselector] = ACTIONS(5774), + [anon_sym_ATavailable] = ACTIONS(5777), + [anon_sym___builtin_available] = ACTIONS(5780), + [anon_sym_va_arg] = ACTIONS(5783), + [anon_sym_ATencode] = ACTIONS(5786), + [anon_sym_ATsynchronized] = ACTIONS(5923), + [anon_sym_id] = ACTIONS(5687), + }, + [2446] = { + [sym_attribute_declaration] = STATE(2452), + [sym_compound_statement] = STATE(588), + [sym_attributed_statement] = STATE(588), + [sym_statement] = STATE(569), + [sym_labeled_statement] = STATE(588), + [sym_expression_statement] = STATE(588), + [sym_if_statement] = STATE(588), + [sym_switch_statement] = STATE(588), + [sym_case_statement] = STATE(588), + [sym_while_statement] = STATE(588), + [sym_do_statement] = STATE(588), + [sym_for_statement] = STATE(588), + [sym_return_statement] = STATE(588), + [sym_break_statement] = STATE(588), + [sym_continue_statement] = STATE(588), + [sym_goto_statement] = STATE(588), + [sym_expression] = STATE(4448), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6083), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(588), + [sym_throw_statement] = STATE(588), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(588), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(588), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2452), + [sym_identifier] = ACTIONS(5804), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_ATautoreleasepool] = ACTIONS(761), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(763), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_case] = ACTIONS(767), + [anon_sym_default] = ACTIONS(769), + [anon_sym_while] = ACTIONS(771), + [anon_sym_do] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(777), + [anon_sym_break] = ACTIONS(779), + [anon_sym_continue] = ACTIONS(781), + [anon_sym_goto] = ACTIONS(783), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(785), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(803), + [anon_sym___try] = ACTIONS(805), + [anon_sym_ATthrow] = ACTIONS(807), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(809), + [anon_sym_id] = ACTIONS(203), + }, + [2447] = { + [sym_attribute_declaration] = STATE(2465), + [sym_compound_statement] = STATE(809), + [sym_attributed_statement] = STATE(809), + [sym_statement] = STATE(937), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2465), + [sym_identifier] = ACTIONS(5796), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2154), + [anon_sym___try] = ACTIONS(2156), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2158), + [anon_sym_id] = ACTIONS(203), + }, + [2448] = { + [sym_attribute_declaration] = STATE(2465), + [sym_compound_statement] = STATE(809), + [sym_attributed_statement] = STATE(809), + [sym_statement] = STATE(939), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2465), + [sym_identifier] = ACTIONS(5796), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2154), + [anon_sym___try] = ACTIONS(2156), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2158), + [anon_sym_id] = ACTIONS(203), + }, + [2449] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3828), + [aux_sym_generic_specifier_repeat1] = STATE(3838), + [sym_identifier] = ACTIONS(4502), + [anon_sym_COMMA] = ACTIONS(5926), + [anon_sym_LPAREN2] = ACTIONS(5928), + [anon_sym_STAR] = ACTIONS(5932), + [anon_sym_CARET] = ACTIONS(5932), + [anon_sym_LT] = ACTIONS(5934), + [anon_sym_SEMI] = ACTIONS(5926), + [anon_sym___extension__] = ACTIONS(5936), + [anon_sym_extern] = ACTIONS(5939), + [anon_sym___attribute__] = ACTIONS(5939), + [anon_sym___attribute] = ACTIONS(5939), + [anon_sym_noreturn] = ACTIONS(5936), + [anon_sym_LBRACK] = ACTIONS(5941), + [anon_sym___declspec] = ACTIONS(5939), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(5944), + [anon_sym_unsigned] = ACTIONS(5944), + [anon_sym_long] = ACTIONS(5944), + [anon_sym_short] = ACTIONS(5944), + [anon_sym_static] = ACTIONS(5939), + [anon_sym_auto] = ACTIONS(5939), + [anon_sym_register] = ACTIONS(5939), + [anon_sym_inline] = ACTIONS(5939), + [anon_sym___inline] = ACTIONS(5939), + [anon_sym___inline__] = ACTIONS(5939), + [anon_sym___forceinline] = ACTIONS(5939), + [anon_sym_thread_local] = ACTIONS(5939), + [anon_sym___thread] = ACTIONS(5939), + [anon_sym_CG_EXTERN] = ACTIONS(5939), + [anon_sym_CG_INLINE] = ACTIONS(5939), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5939), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5939), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5939), + [anon_sym_IBOutlet] = ACTIONS(5939), + [anon_sym_IBInspectable] = ACTIONS(5939), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5939), + [anon_sym_NS_INLINE] = ACTIONS(5939), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5939), + [anon_sym_OBJC_EXPORT] = ACTIONS(5939), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5939), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5939), + [anon_sym_const] = ACTIONS(5936), + [anon_sym_constexpr] = ACTIONS(5936), + [anon_sym_volatile] = ACTIONS(5936), + [anon_sym_restrict] = ACTIONS(5936), + [anon_sym___restrict__] = ACTIONS(5936), + [anon_sym__Atomic] = ACTIONS(5936), + [anon_sym__Noreturn] = ACTIONS(5936), + [anon_sym__Nonnull] = ACTIONS(5936), + [anon_sym_nullable] = ACTIONS(5936), + [anon_sym__Complex] = ACTIONS(5936), + [anon_sym__Nullable] = ACTIONS(5936), + [anon_sym__Nullable_result] = ACTIONS(5936), + [anon_sym__Null_unspecified] = ACTIONS(5936), + [anon_sym___autoreleasing] = ACTIONS(5936), + [anon_sym___block] = ACTIONS(5936), + [anon_sym___bridge] = ACTIONS(5936), + [anon_sym___bridge_retained] = ACTIONS(5936), + [anon_sym___bridge_transfer] = ACTIONS(5936), + [anon_sym___complex] = ACTIONS(5936), + [anon_sym___const] = ACTIONS(5936), + [anon_sym___imag] = ACTIONS(5936), + [anon_sym___kindof] = ACTIONS(5936), + [anon_sym___nonnull] = ACTIONS(5936), + [anon_sym___nullable] = ACTIONS(5936), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5936), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5936), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5936), + [anon_sym___real] = ACTIONS(5936), + [anon_sym___strong] = ACTIONS(5936), + [anon_sym___unsafe_unretained] = ACTIONS(5936), + [anon_sym___unused] = ACTIONS(5936), + [anon_sym___weak] = ACTIONS(5936), + [anon_sym_alignas] = ACTIONS(5936), + [anon_sym__Alignas] = ACTIONS(5936), + [sym_primitive_type] = ACTIONS(4502), + [anon_sym_enum] = ACTIONS(4502), + [anon_sym_COLON] = ACTIONS(5941), + [anon_sym_struct] = ACTIONS(4502), + [anon_sym_union] = ACTIONS(4502), + [anon_sym_in] = ACTIONS(4502), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4502), + [anon_sym___typeof] = ACTIONS(4502), + [anon_sym_typeof] = ACTIONS(4502), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5939), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5939), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5939), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5939), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5939), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5939), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5939), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5939), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5939), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5939), + [anon_sym_NS_AVAILABLE] = ACTIONS(5939), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5939), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5939), + [anon_sym_API_AVAILABLE] = ACTIONS(5939), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5939), + [anon_sym_API_DEPRECATED] = ACTIONS(5939), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5939), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5939), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5939), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5939), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5939), + [anon_sym___deprecated_msg] = ACTIONS(5939), + [anon_sym___deprecated_enum_msg] = ACTIONS(5939), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5939), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5939), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5939), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5939), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5939), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5939), + [anon_sym_BOOL] = ACTIONS(4502), + [anon_sym_IMP] = ACTIONS(4502), + [anon_sym_SEL] = ACTIONS(4502), + [anon_sym_Class] = ACTIONS(4502), + [anon_sym_id] = ACTIONS(4502), + [anon_sym_out] = ACTIONS(4502), + [anon_sym_inout] = ACTIONS(4502), + [anon_sym_bycopy] = ACTIONS(4502), + [anon_sym_byref] = ACTIONS(4502), + [anon_sym_oneway] = ACTIONS(4502), + }, + [2450] = { + [sym_attribute_declaration] = STATE(2451), + [sym_compound_statement] = STATE(766), + [sym_attributed_statement] = STATE(766), + [sym_statement] = STATE(826), + [sym_labeled_statement] = STATE(766), + [sym_expression_statement] = STATE(766), + [sym_if_statement] = STATE(766), + [sym_switch_statement] = STATE(766), + [sym_case_statement] = STATE(766), + [sym_while_statement] = STATE(766), + [sym_do_statement] = STATE(766), + [sym_for_statement] = STATE(766), + [sym_return_statement] = STATE(766), + [sym_break_statement] = STATE(766), + [sym_continue_statement] = STATE(766), + [sym_goto_statement] = STATE(766), + [sym_expression] = STATE(4502), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6238), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(766), + [sym_throw_statement] = STATE(766), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(766), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(766), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2451), + [sym_identifier] = ACTIONS(5947), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_ATautoreleasepool] = ACTIONS(1936), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(1938), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(73), + [anon_sym_default] = ACTIONS(75), + [anon_sym_while] = ACTIONS(1942), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1946), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1950), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_goto] = ACTIONS(1954), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(1956), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(1958), + [anon_sym___try] = ACTIONS(1960), + [anon_sym_ATthrow] = ACTIONS(1962), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(1964), + [anon_sym_id] = ACTIONS(203), + }, + [2451] = { + [sym_attribute_declaration] = STATE(2451), + [sym_compound_statement] = STATE(766), + [sym_attributed_statement] = STATE(766), + [sym_statement] = STATE(826), + [sym_labeled_statement] = STATE(766), + [sym_expression_statement] = STATE(766), + [sym_if_statement] = STATE(766), + [sym_switch_statement] = STATE(766), + [sym_case_statement] = STATE(766), + [sym_while_statement] = STATE(766), + [sym_do_statement] = STATE(766), + [sym_for_statement] = STATE(766), + [sym_return_statement] = STATE(766), + [sym_break_statement] = STATE(766), + [sym_continue_statement] = STATE(766), + [sym_goto_statement] = STATE(766), + [sym_expression] = STATE(4502), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6238), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(766), + [sym_throw_statement] = STATE(766), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(766), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(766), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2451), + [sym_identifier] = ACTIONS(5949), + [anon_sym_LPAREN2] = ACTIONS(5657), + [anon_sym_BANG] = ACTIONS(5660), + [anon_sym_TILDE] = ACTIONS(5660), + [anon_sym_DASH] = ACTIONS(5663), + [anon_sym_PLUS] = ACTIONS(5663), + [anon_sym_STAR] = ACTIONS(5666), + [anon_sym_CARET] = ACTIONS(5669), + [anon_sym_AMP] = ACTIONS(5666), + [anon_sym_SEMI] = ACTIONS(5952), + [anon_sym___extension__] = ACTIONS(5675), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5955), + [anon_sym_ATautoreleasepool] = ACTIONS(5958), + [anon_sym_const] = ACTIONS(5687), + [anon_sym___imag] = ACTIONS(5690), + [anon_sym___real] = ACTIONS(5690), + [anon_sym_struct] = ACTIONS(5687), + [anon_sym_if] = ACTIONS(5961), + [anon_sym_switch] = ACTIONS(5964), + [anon_sym_case] = ACTIONS(5967), + [anon_sym_default] = ACTIONS(5970), + [anon_sym_while] = ACTIONS(5973), + [anon_sym_do] = ACTIONS(5976), + [anon_sym_for] = ACTIONS(5979), + [anon_sym_in] = ACTIONS(5687), + [anon_sym_return] = ACTIONS(5982), + [anon_sym_break] = ACTIONS(5985), + [anon_sym_continue] = ACTIONS(5988), + [anon_sym_goto] = ACTIONS(5991), + [anon_sym_DASH_DASH] = ACTIONS(5726), + [anon_sym_PLUS_PLUS] = ACTIONS(5726), + [anon_sym_sizeof] = ACTIONS(5729), + [anon_sym___alignof__] = ACTIONS(5732), + [anon_sym___alignof] = ACTIONS(5732), + [anon_sym__alignof] = ACTIONS(5732), + [anon_sym_alignof] = ACTIONS(5732), + [anon_sym__Alignof] = ACTIONS(5732), + [anon_sym_offsetof] = ACTIONS(5735), + [anon_sym__Generic] = ACTIONS(5738), + [anon_sym_asm] = ACTIONS(5741), + [anon_sym___asm__] = ACTIONS(5741), + [anon_sym___asm] = ACTIONS(5994), + [sym_number_literal] = ACTIONS(5747), + [anon_sym_L_SQUOTE] = ACTIONS(5750), + [anon_sym_u_SQUOTE] = ACTIONS(5750), + [anon_sym_U_SQUOTE] = ACTIONS(5750), + [anon_sym_u8_SQUOTE] = ACTIONS(5750), + [anon_sym_SQUOTE] = ACTIONS(5750), + [anon_sym_AT] = ACTIONS(5753), + [anon_sym_DQUOTE] = ACTIONS(5756), + [anon_sym_L_DQUOTE] = ACTIONS(5756), + [anon_sym_u_DQUOTE] = ACTIONS(5756), + [anon_sym_U_DQUOTE] = ACTIONS(5756), + [anon_sym_u8_DQUOTE] = ACTIONS(5756), + [sym_true] = ACTIONS(5759), + [sym_false] = ACTIONS(5759), + [anon_sym_NULL] = ACTIONS(5762), + [anon_sym_nullptr] = ACTIONS(5762), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(5997), + [anon_sym___try] = ACTIONS(6000), + [anon_sym_ATthrow] = ACTIONS(6003), + [anon_sym_ATselector] = ACTIONS(5774), + [anon_sym_ATavailable] = ACTIONS(5777), + [anon_sym___builtin_available] = ACTIONS(5780), + [anon_sym_va_arg] = ACTIONS(5783), + [anon_sym_ATencode] = ACTIONS(5786), + [anon_sym_ATsynchronized] = ACTIONS(6006), + [anon_sym_id] = ACTIONS(5687), + }, + [2452] = { + [sym_attribute_declaration] = STATE(2452), + [sym_compound_statement] = STATE(588), + [sym_attributed_statement] = STATE(588), + [sym_statement] = STATE(569), + [sym_labeled_statement] = STATE(588), + [sym_expression_statement] = STATE(588), + [sym_if_statement] = STATE(588), + [sym_switch_statement] = STATE(588), + [sym_case_statement] = STATE(588), + [sym_while_statement] = STATE(588), + [sym_do_statement] = STATE(588), + [sym_for_statement] = STATE(588), + [sym_return_statement] = STATE(588), + [sym_break_statement] = STATE(588), + [sym_continue_statement] = STATE(588), + [sym_goto_statement] = STATE(588), + [sym_expression] = STATE(4448), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6083), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(588), + [sym_throw_statement] = STATE(588), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(588), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(588), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2452), + [sym_identifier] = ACTIONS(6009), + [anon_sym_LPAREN2] = ACTIONS(5657), + [anon_sym_BANG] = ACTIONS(5660), + [anon_sym_TILDE] = ACTIONS(5660), + [anon_sym_DASH] = ACTIONS(5663), + [anon_sym_PLUS] = ACTIONS(5663), + [anon_sym_STAR] = ACTIONS(5666), + [anon_sym_CARET] = ACTIONS(5669), + [anon_sym_AMP] = ACTIONS(5666), + [anon_sym_SEMI] = ACTIONS(6012), + [anon_sym___extension__] = ACTIONS(5675), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(6015), + [anon_sym_ATautoreleasepool] = ACTIONS(6018), + [anon_sym_const] = ACTIONS(5687), + [anon_sym___imag] = ACTIONS(5690), + [anon_sym___real] = ACTIONS(5690), + [anon_sym_struct] = ACTIONS(5687), + [anon_sym_if] = ACTIONS(6021), + [anon_sym_switch] = ACTIONS(6024), + [anon_sym_case] = ACTIONS(6027), + [anon_sym_default] = ACTIONS(6030), + [anon_sym_while] = ACTIONS(6033), + [anon_sym_do] = ACTIONS(6036), + [anon_sym_for] = ACTIONS(6039), + [anon_sym_in] = ACTIONS(5687), + [anon_sym_return] = ACTIONS(6042), + [anon_sym_break] = ACTIONS(6045), + [anon_sym_continue] = ACTIONS(6048), + [anon_sym_goto] = ACTIONS(6051), + [anon_sym_DASH_DASH] = ACTIONS(5726), + [anon_sym_PLUS_PLUS] = ACTIONS(5726), + [anon_sym_sizeof] = ACTIONS(5729), + [anon_sym___alignof__] = ACTIONS(5732), + [anon_sym___alignof] = ACTIONS(5732), + [anon_sym__alignof] = ACTIONS(5732), + [anon_sym_alignof] = ACTIONS(5732), + [anon_sym__Alignof] = ACTIONS(5732), + [anon_sym_offsetof] = ACTIONS(5735), + [anon_sym__Generic] = ACTIONS(5738), + [anon_sym_asm] = ACTIONS(5741), + [anon_sym___asm__] = ACTIONS(5741), + [anon_sym___asm] = ACTIONS(6054), + [sym_number_literal] = ACTIONS(5747), + [anon_sym_L_SQUOTE] = ACTIONS(5750), + [anon_sym_u_SQUOTE] = ACTIONS(5750), + [anon_sym_U_SQUOTE] = ACTIONS(5750), + [anon_sym_u8_SQUOTE] = ACTIONS(5750), + [anon_sym_SQUOTE] = ACTIONS(5750), + [anon_sym_AT] = ACTIONS(5753), + [anon_sym_DQUOTE] = ACTIONS(5756), + [anon_sym_L_DQUOTE] = ACTIONS(5756), + [anon_sym_u_DQUOTE] = ACTIONS(5756), + [anon_sym_U_DQUOTE] = ACTIONS(5756), + [anon_sym_u8_DQUOTE] = ACTIONS(5756), + [sym_true] = ACTIONS(5759), + [sym_false] = ACTIONS(5759), + [anon_sym_NULL] = ACTIONS(5762), + [anon_sym_nullptr] = ACTIONS(5762), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(6057), + [anon_sym___try] = ACTIONS(6060), + [anon_sym_ATthrow] = ACTIONS(6063), + [anon_sym_ATselector] = ACTIONS(5774), + [anon_sym_ATavailable] = ACTIONS(5777), + [anon_sym___builtin_available] = ACTIONS(5780), + [anon_sym_va_arg] = ACTIONS(5783), + [anon_sym_ATencode] = ACTIONS(5786), + [anon_sym_ATsynchronized] = ACTIONS(6066), + [anon_sym_id] = ACTIONS(5687), + }, + [2453] = { + [sym_attribute_declaration] = STATE(2453), + [sym_compound_statement] = STATE(981), + [sym_attributed_statement] = STATE(981), + [sym_statement] = STATE(979), + [sym_labeled_statement] = STATE(981), + [sym_expression_statement] = STATE(981), + [sym_if_statement] = STATE(981), + [sym_switch_statement] = STATE(981), + [sym_case_statement] = STATE(981), + [sym_while_statement] = STATE(981), + [sym_do_statement] = STATE(981), + [sym_for_statement] = STATE(981), + [sym_return_statement] = STATE(981), + [sym_break_statement] = STATE(981), + [sym_continue_statement] = STATE(981), + [sym_goto_statement] = STATE(981), + [sym_expression] = STATE(4465), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6211), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(981), + [sym_throw_statement] = STATE(981), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(981), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(981), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2453), + [sym_identifier] = ACTIONS(6069), + [anon_sym_LPAREN2] = ACTIONS(5657), + [anon_sym_BANG] = ACTIONS(5660), + [anon_sym_TILDE] = ACTIONS(5660), + [anon_sym_DASH] = ACTIONS(5663), + [anon_sym_PLUS] = ACTIONS(5663), + [anon_sym_STAR] = ACTIONS(5666), + [anon_sym_CARET] = ACTIONS(5669), + [anon_sym_AMP] = ACTIONS(5666), + [anon_sym_SEMI] = ACTIONS(6072), + [anon_sym___extension__] = ACTIONS(5675), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5872), + [anon_sym_ATautoreleasepool] = ACTIONS(5875), + [anon_sym_const] = ACTIONS(5687), + [anon_sym___imag] = ACTIONS(5690), + [anon_sym___real] = ACTIONS(5690), + [anon_sym_struct] = ACTIONS(5687), + [anon_sym_if] = ACTIONS(6075), + [anon_sym_switch] = ACTIONS(5881), + [anon_sym_case] = ACTIONS(5967), + [anon_sym_default] = ACTIONS(5970), + [anon_sym_while] = ACTIONS(6078), + [anon_sym_do] = ACTIONS(5893), + [anon_sym_for] = ACTIONS(6081), + [anon_sym_in] = ACTIONS(5687), + [anon_sym_return] = ACTIONS(5899), + [anon_sym_break] = ACTIONS(5902), + [anon_sym_continue] = ACTIONS(5905), + [anon_sym_goto] = ACTIONS(5908), + [anon_sym_DASH_DASH] = ACTIONS(5726), + [anon_sym_PLUS_PLUS] = ACTIONS(5726), + [anon_sym_sizeof] = ACTIONS(5729), + [anon_sym___alignof__] = ACTIONS(5732), + [anon_sym___alignof] = ACTIONS(5732), + [anon_sym__alignof] = ACTIONS(5732), + [anon_sym_alignof] = ACTIONS(5732), + [anon_sym__Alignof] = ACTIONS(5732), + [anon_sym_offsetof] = ACTIONS(5735), + [anon_sym__Generic] = ACTIONS(5738), + [anon_sym_asm] = ACTIONS(5741), + [anon_sym___asm__] = ACTIONS(5741), + [anon_sym___asm] = ACTIONS(6084), + [sym_number_literal] = ACTIONS(5747), + [anon_sym_L_SQUOTE] = ACTIONS(5750), + [anon_sym_u_SQUOTE] = ACTIONS(5750), + [anon_sym_U_SQUOTE] = ACTIONS(5750), + [anon_sym_u8_SQUOTE] = ACTIONS(5750), + [anon_sym_SQUOTE] = ACTIONS(5750), + [anon_sym_AT] = ACTIONS(5753), + [anon_sym_DQUOTE] = ACTIONS(5756), + [anon_sym_L_DQUOTE] = ACTIONS(5756), + [anon_sym_u_DQUOTE] = ACTIONS(5756), + [anon_sym_U_DQUOTE] = ACTIONS(5756), + [anon_sym_u8_DQUOTE] = ACTIONS(5756), + [sym_true] = ACTIONS(5759), + [sym_false] = ACTIONS(5759), + [anon_sym_NULL] = ACTIONS(5762), + [anon_sym_nullptr] = ACTIONS(5762), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(6087), + [anon_sym___try] = ACTIONS(6090), + [anon_sym_ATthrow] = ACTIONS(6093), + [anon_sym_ATselector] = ACTIONS(5774), + [anon_sym_ATavailable] = ACTIONS(5777), + [anon_sym___builtin_available] = ACTIONS(5780), + [anon_sym_va_arg] = ACTIONS(5783), + [anon_sym_ATencode] = ACTIONS(5786), + [anon_sym_ATsynchronized] = ACTIONS(6096), + [anon_sym_id] = ACTIONS(5687), + }, + [2454] = { + [sym_attribute_declaration] = STATE(2467), + [sym_compound_statement] = STATE(1113), + [sym_attributed_statement] = STATE(1113), + [sym_statement] = STATE(1118), + [sym_labeled_statement] = STATE(1113), + [sym_expression_statement] = STATE(1113), + [sym_if_statement] = STATE(1113), + [sym_switch_statement] = STATE(1113), + [sym_case_statement] = STATE(1113), + [sym_while_statement] = STATE(1113), + [sym_do_statement] = STATE(1113), + [sym_for_statement] = STATE(1113), + [sym_return_statement] = STATE(1113), + [sym_break_statement] = STATE(1113), + [sym_continue_statement] = STATE(1113), + [sym_goto_statement] = STATE(1113), + [sym_expression] = STATE(4451), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6542), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(1113), + [sym_throw_statement] = STATE(1113), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(1113), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(1113), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2467), + [sym_identifier] = ACTIONS(6099), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(2094), + [anon_sym_ATautoreleasepool] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_switch] = ACTIONS(2100), + [anon_sym_case] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2102), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2106), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_goto] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym___try] = ACTIONS(2120), + [anon_sym_ATthrow] = ACTIONS(2122), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2124), + [anon_sym_id] = ACTIONS(203), + }, + [2455] = { + [sym_attribute_declaration] = STATE(2446), + [sym_compound_statement] = STATE(588), + [sym_attributed_statement] = STATE(588), + [sym_statement] = STATE(544), + [sym_labeled_statement] = STATE(588), + [sym_expression_statement] = STATE(588), + [sym_if_statement] = STATE(588), + [sym_switch_statement] = STATE(588), + [sym_case_statement] = STATE(588), + [sym_while_statement] = STATE(588), + [sym_do_statement] = STATE(588), + [sym_for_statement] = STATE(588), + [sym_return_statement] = STATE(588), + [sym_break_statement] = STATE(588), + [sym_continue_statement] = STATE(588), + [sym_goto_statement] = STATE(588), + [sym_expression] = STATE(4448), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6083), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(588), + [sym_throw_statement] = STATE(588), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(588), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(588), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2446), + [sym_identifier] = ACTIONS(5804), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_ATautoreleasepool] = ACTIONS(761), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(763), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_case] = ACTIONS(767), + [anon_sym_default] = ACTIONS(769), + [anon_sym_while] = ACTIONS(771), + [anon_sym_do] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(777), + [anon_sym_break] = ACTIONS(779), + [anon_sym_continue] = ACTIONS(781), + [anon_sym_goto] = ACTIONS(783), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(785), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(803), + [anon_sym___try] = ACTIONS(805), + [anon_sym_ATthrow] = ACTIONS(807), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(809), + [anon_sym_id] = ACTIONS(203), + }, + [2456] = { + [sym_attribute_declaration] = STATE(2456), + [sym_compound_statement] = STATE(809), + [sym_attributed_statement] = STATE(809), + [sym_statement] = STATE(710), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2456), + [sym_identifier] = ACTIONS(6101), + [anon_sym_LPAREN2] = ACTIONS(5657), + [anon_sym_BANG] = ACTIONS(5660), + [anon_sym_TILDE] = ACTIONS(5660), + [anon_sym_DASH] = ACTIONS(5663), + [anon_sym_PLUS] = ACTIONS(5663), + [anon_sym_STAR] = ACTIONS(5666), + [anon_sym_CARET] = ACTIONS(5669), + [anon_sym_AMP] = ACTIONS(5666), + [anon_sym_SEMI] = ACTIONS(5869), + [anon_sym___extension__] = ACTIONS(5675), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(6104), + [anon_sym_ATautoreleasepool] = ACTIONS(6107), + [anon_sym_const] = ACTIONS(5687), + [anon_sym___imag] = ACTIONS(5690), + [anon_sym___real] = ACTIONS(5690), + [anon_sym_struct] = ACTIONS(5687), + [anon_sym_if] = ACTIONS(6110), + [anon_sym_switch] = ACTIONS(6113), + [anon_sym_case] = ACTIONS(6116), + [anon_sym_default] = ACTIONS(6119), + [anon_sym_while] = ACTIONS(6122), + [anon_sym_do] = ACTIONS(6125), + [anon_sym_for] = ACTIONS(6128), + [anon_sym_in] = ACTIONS(5687), + [anon_sym_return] = ACTIONS(6131), + [anon_sym_break] = ACTIONS(6134), + [anon_sym_continue] = ACTIONS(6137), + [anon_sym_goto] = ACTIONS(6140), + [anon_sym_DASH_DASH] = ACTIONS(5726), + [anon_sym_PLUS_PLUS] = ACTIONS(5726), + [anon_sym_sizeof] = ACTIONS(5729), + [anon_sym___alignof__] = ACTIONS(5732), + [anon_sym___alignof] = ACTIONS(5732), + [anon_sym__alignof] = ACTIONS(5732), + [anon_sym_alignof] = ACTIONS(5732), + [anon_sym__Alignof] = ACTIONS(5732), + [anon_sym_offsetof] = ACTIONS(5735), + [anon_sym__Generic] = ACTIONS(5738), + [anon_sym_asm] = ACTIONS(5741), + [anon_sym___asm__] = ACTIONS(5741), + [anon_sym___asm] = ACTIONS(5911), + [sym_number_literal] = ACTIONS(5747), + [anon_sym_L_SQUOTE] = ACTIONS(5750), + [anon_sym_u_SQUOTE] = ACTIONS(5750), + [anon_sym_U_SQUOTE] = ACTIONS(5750), + [anon_sym_u8_SQUOTE] = ACTIONS(5750), + [anon_sym_SQUOTE] = ACTIONS(5750), + [anon_sym_AT] = ACTIONS(5753), + [anon_sym_DQUOTE] = ACTIONS(5756), + [anon_sym_L_DQUOTE] = ACTIONS(5756), + [anon_sym_u_DQUOTE] = ACTIONS(5756), + [anon_sym_U_DQUOTE] = ACTIONS(5756), + [anon_sym_u8_DQUOTE] = ACTIONS(5756), + [sym_true] = ACTIONS(5759), + [sym_false] = ACTIONS(5759), + [anon_sym_NULL] = ACTIONS(5762), + [anon_sym_nullptr] = ACTIONS(5762), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(6143), + [anon_sym___try] = ACTIONS(6146), + [anon_sym_ATthrow] = ACTIONS(5920), + [anon_sym_ATselector] = ACTIONS(5774), + [anon_sym_ATavailable] = ACTIONS(5777), + [anon_sym___builtin_available] = ACTIONS(5780), + [anon_sym_va_arg] = ACTIONS(5783), + [anon_sym_ATencode] = ACTIONS(5786), + [anon_sym_ATsynchronized] = ACTIONS(6149), + [anon_sym_id] = ACTIONS(5687), + }, + [2457] = { + [sym_attribute_declaration] = STATE(2472), + [sym_compound_statement] = STATE(981), + [sym_attributed_statement] = STATE(981), + [sym_statement] = STATE(925), + [sym_labeled_statement] = STATE(981), + [sym_expression_statement] = STATE(981), + [sym_if_statement] = STATE(981), + [sym_switch_statement] = STATE(981), + [sym_case_statement] = STATE(981), + [sym_while_statement] = STATE(981), + [sym_do_statement] = STATE(981), + [sym_for_statement] = STATE(981), + [sym_return_statement] = STATE(981), + [sym_break_statement] = STATE(981), + [sym_continue_statement] = STATE(981), + [sym_goto_statement] = STATE(981), + [sym_expression] = STATE(4465), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6211), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(981), + [sym_throw_statement] = STATE(981), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(981), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(981), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2472), + [sym_identifier] = ACTIONS(5798), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2128), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(69), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(73), + [anon_sym_default] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym___try] = ACTIONS(2136), + [anon_sym_ATthrow] = ACTIONS(2138), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2140), + [anon_sym_id] = ACTIONS(203), + }, + [2458] = { + [sym_attribute_declaration] = STATE(2443), + [sym_compound_statement] = STATE(406), + [sym_attributed_statement] = STATE(406), + [sym_statement] = STATE(399), + [sym_labeled_statement] = STATE(406), + [sym_expression_statement] = STATE(406), + [sym_if_statement] = STATE(406), + [sym_switch_statement] = STATE(406), + [sym_case_statement] = STATE(406), + [sym_while_statement] = STATE(406), + [sym_do_statement] = STATE(406), + [sym_for_statement] = STATE(406), + [sym_return_statement] = STATE(406), + [sym_break_statement] = STATE(406), + [sym_continue_statement] = STATE(406), + [sym_goto_statement] = STATE(406), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(406), + [sym_throw_statement] = STATE(406), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(406), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(406), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2443), + [sym_identifier] = ACTIONS(5792), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(307), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_id] = ACTIONS(203), + }, + [2459] = { + [sym_attribute_declaration] = STATE(2450), + [sym_compound_statement] = STATE(766), + [sym_attributed_statement] = STATE(766), + [sym_statement] = STATE(703), + [sym_labeled_statement] = STATE(766), + [sym_expression_statement] = STATE(766), + [sym_if_statement] = STATE(766), + [sym_switch_statement] = STATE(766), + [sym_case_statement] = STATE(766), + [sym_while_statement] = STATE(766), + [sym_do_statement] = STATE(766), + [sym_for_statement] = STATE(766), + [sym_return_statement] = STATE(766), + [sym_break_statement] = STATE(766), + [sym_continue_statement] = STATE(766), + [sym_goto_statement] = STATE(766), + [sym_expression] = STATE(4502), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6238), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(766), + [sym_throw_statement] = STATE(766), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(766), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(766), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2450), + [sym_identifier] = ACTIONS(5947), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_ATautoreleasepool] = ACTIONS(1936), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(1938), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(73), + [anon_sym_default] = ACTIONS(75), + [anon_sym_while] = ACTIONS(1942), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1946), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1950), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_goto] = ACTIONS(1954), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(1956), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(1958), + [anon_sym___try] = ACTIONS(1960), + [anon_sym_ATthrow] = ACTIONS(1962), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(1964), + [anon_sym_id] = ACTIONS(203), + }, + [2460] = { + [sym_attribute_declaration] = STATE(2450), + [sym_compound_statement] = STATE(766), + [sym_attributed_statement] = STATE(766), + [sym_statement] = STATE(700), + [sym_labeled_statement] = STATE(766), + [sym_expression_statement] = STATE(766), + [sym_if_statement] = STATE(766), + [sym_switch_statement] = STATE(766), + [sym_case_statement] = STATE(766), + [sym_while_statement] = STATE(766), + [sym_do_statement] = STATE(766), + [sym_for_statement] = STATE(766), + [sym_return_statement] = STATE(766), + [sym_break_statement] = STATE(766), + [sym_continue_statement] = STATE(766), + [sym_goto_statement] = STATE(766), + [sym_expression] = STATE(4502), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6238), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(766), + [sym_throw_statement] = STATE(766), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(766), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(766), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2450), + [sym_identifier] = ACTIONS(5947), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_ATautoreleasepool] = ACTIONS(1936), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(1938), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(73), + [anon_sym_default] = ACTIONS(75), + [anon_sym_while] = ACTIONS(1942), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1946), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1950), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_goto] = ACTIONS(1954), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(1956), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(1958), + [anon_sym___try] = ACTIONS(1960), + [anon_sym_ATthrow] = ACTIONS(1962), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(1964), + [anon_sym_id] = ACTIONS(203), + }, + [2461] = { + [sym_attribute_declaration] = STATE(2454), + [sym_compound_statement] = STATE(1113), + [sym_attributed_statement] = STATE(1113), + [sym_statement] = STATE(1099), + [sym_labeled_statement] = STATE(1113), + [sym_expression_statement] = STATE(1113), + [sym_if_statement] = STATE(1113), + [sym_switch_statement] = STATE(1113), + [sym_case_statement] = STATE(1113), + [sym_while_statement] = STATE(1113), + [sym_do_statement] = STATE(1113), + [sym_for_statement] = STATE(1113), + [sym_return_statement] = STATE(1113), + [sym_break_statement] = STATE(1113), + [sym_continue_statement] = STATE(1113), + [sym_goto_statement] = STATE(1113), + [sym_expression] = STATE(4451), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6542), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(1113), + [sym_throw_statement] = STATE(1113), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(1113), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(1113), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2454), + [sym_identifier] = ACTIONS(6099), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(2094), + [anon_sym_ATautoreleasepool] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_switch] = ACTIONS(2100), + [anon_sym_case] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2102), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2106), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_goto] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym___try] = ACTIONS(2120), + [anon_sym_ATthrow] = ACTIONS(2122), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2124), + [anon_sym_id] = ACTIONS(203), + }, + [2462] = { + [sym_attribute_declaration] = STATE(2454), + [sym_compound_statement] = STATE(1113), + [sym_attributed_statement] = STATE(1113), + [sym_statement] = STATE(1128), + [sym_labeled_statement] = STATE(1113), + [sym_expression_statement] = STATE(1113), + [sym_if_statement] = STATE(1113), + [sym_switch_statement] = STATE(1113), + [sym_case_statement] = STATE(1113), + [sym_while_statement] = STATE(1113), + [sym_do_statement] = STATE(1113), + [sym_for_statement] = STATE(1113), + [sym_return_statement] = STATE(1113), + [sym_break_statement] = STATE(1113), + [sym_continue_statement] = STATE(1113), + [sym_goto_statement] = STATE(1113), + [sym_expression] = STATE(4451), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6542), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(1113), + [sym_throw_statement] = STATE(1113), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(1113), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(1113), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2454), + [sym_identifier] = ACTIONS(6099), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(2094), + [anon_sym_ATautoreleasepool] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_switch] = ACTIONS(2100), + [anon_sym_case] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2102), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2106), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_goto] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym___try] = ACTIONS(2120), + [anon_sym_ATthrow] = ACTIONS(2122), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2124), + [anon_sym_id] = ACTIONS(203), + }, + [2463] = { + [sym_attribute_declaration] = STATE(2480), + [sym_compound_statement] = STATE(274), + [sym_attributed_statement] = STATE(274), + [sym_statement] = STATE(198), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(274), + [sym_throw_statement] = STATE(274), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(274), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(274), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [sym_identifier] = ACTIONS(5800), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_id] = ACTIONS(203), + }, + [2464] = { + [sym_attribute_declaration] = STATE(2465), + [sym_compound_statement] = STATE(809), + [sym_attributed_statement] = STATE(809), + [sym_statement] = STATE(6394), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2465), + [sym_identifier] = ACTIONS(5796), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2154), + [anon_sym___try] = ACTIONS(2156), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2158), + [anon_sym_id] = ACTIONS(203), + }, + [2465] = { + [sym_attribute_declaration] = STATE(2445), + [sym_compound_statement] = STATE(809), + [sym_attributed_statement] = STATE(809), + [sym_statement] = STATE(979), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2445), + [sym_identifier] = ACTIONS(5796), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2154), + [anon_sym___try] = ACTIONS(2156), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2158), + [anon_sym_id] = ACTIONS(203), + }, + [2466] = { + [sym_attribute_declaration] = STATE(2480), + [sym_compound_statement] = STATE(274), + [sym_attributed_statement] = STATE(274), + [sym_statement] = STATE(233), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(274), + [sym_throw_statement] = STATE(274), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(274), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(274), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [sym_identifier] = ACTIONS(5800), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_id] = ACTIONS(203), + }, + [2467] = { + [sym_attribute_declaration] = STATE(2467), + [sym_compound_statement] = STATE(1113), + [sym_attributed_statement] = STATE(1113), + [sym_statement] = STATE(1118), + [sym_labeled_statement] = STATE(1113), + [sym_expression_statement] = STATE(1113), + [sym_if_statement] = STATE(1113), + [sym_switch_statement] = STATE(1113), + [sym_case_statement] = STATE(1113), + [sym_while_statement] = STATE(1113), + [sym_do_statement] = STATE(1113), + [sym_for_statement] = STATE(1113), + [sym_return_statement] = STATE(1113), + [sym_break_statement] = STATE(1113), + [sym_continue_statement] = STATE(1113), + [sym_goto_statement] = STATE(1113), + [sym_expression] = STATE(4451), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6542), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(1113), + [sym_throw_statement] = STATE(1113), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(1113), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(1113), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2467), + [sym_identifier] = ACTIONS(6152), + [anon_sym_LPAREN2] = ACTIONS(5657), + [anon_sym_BANG] = ACTIONS(5660), + [anon_sym_TILDE] = ACTIONS(5660), + [anon_sym_DASH] = ACTIONS(5663), + [anon_sym_PLUS] = ACTIONS(5663), + [anon_sym_STAR] = ACTIONS(5666), + [anon_sym_CARET] = ACTIONS(5669), + [anon_sym_AMP] = ACTIONS(5666), + [anon_sym_SEMI] = ACTIONS(6155), + [anon_sym___extension__] = ACTIONS(5675), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(6158), + [anon_sym_ATautoreleasepool] = ACTIONS(6161), + [anon_sym_const] = ACTIONS(5687), + [anon_sym___imag] = ACTIONS(5690), + [anon_sym___real] = ACTIONS(5690), + [anon_sym_struct] = ACTIONS(5687), + [anon_sym_if] = ACTIONS(6164), + [anon_sym_switch] = ACTIONS(6167), + [anon_sym_case] = ACTIONS(5884), + [anon_sym_default] = ACTIONS(5887), + [anon_sym_while] = ACTIONS(6170), + [anon_sym_do] = ACTIONS(6173), + [anon_sym_for] = ACTIONS(6176), + [anon_sym_in] = ACTIONS(5687), + [anon_sym_return] = ACTIONS(6179), + [anon_sym_break] = ACTIONS(6182), + [anon_sym_continue] = ACTIONS(6185), + [anon_sym_goto] = ACTIONS(6188), + [anon_sym_DASH_DASH] = ACTIONS(5726), + [anon_sym_PLUS_PLUS] = ACTIONS(5726), + [anon_sym_sizeof] = ACTIONS(5729), + [anon_sym___alignof__] = ACTIONS(5732), + [anon_sym___alignof] = ACTIONS(5732), + [anon_sym__alignof] = ACTIONS(5732), + [anon_sym_alignof] = ACTIONS(5732), + [anon_sym__Alignof] = ACTIONS(5732), + [anon_sym_offsetof] = ACTIONS(5735), + [anon_sym__Generic] = ACTIONS(5738), + [anon_sym_asm] = ACTIONS(5741), + [anon_sym___asm__] = ACTIONS(5741), + [anon_sym___asm] = ACTIONS(6191), + [sym_number_literal] = ACTIONS(5747), + [anon_sym_L_SQUOTE] = ACTIONS(5750), + [anon_sym_u_SQUOTE] = ACTIONS(5750), + [anon_sym_U_SQUOTE] = ACTIONS(5750), + [anon_sym_u8_SQUOTE] = ACTIONS(5750), + [anon_sym_SQUOTE] = ACTIONS(5750), + [anon_sym_AT] = ACTIONS(5753), + [anon_sym_DQUOTE] = ACTIONS(5756), + [anon_sym_L_DQUOTE] = ACTIONS(5756), + [anon_sym_u_DQUOTE] = ACTIONS(5756), + [anon_sym_U_DQUOTE] = ACTIONS(5756), + [anon_sym_u8_DQUOTE] = ACTIONS(5756), + [sym_true] = ACTIONS(5759), + [sym_false] = ACTIONS(5759), + [anon_sym_NULL] = ACTIONS(5762), + [anon_sym_nullptr] = ACTIONS(5762), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(6194), + [anon_sym___try] = ACTIONS(6197), + [anon_sym_ATthrow] = ACTIONS(6200), + [anon_sym_ATselector] = ACTIONS(5774), + [anon_sym_ATavailable] = ACTIONS(5777), + [anon_sym___builtin_available] = ACTIONS(5780), + [anon_sym_va_arg] = ACTIONS(5783), + [anon_sym_ATencode] = ACTIONS(5786), + [anon_sym_ATsynchronized] = ACTIONS(6203), + [anon_sym_id] = ACTIONS(5687), + }, + [2468] = { + [sym_attribute_declaration] = STATE(2458), + [sym_compound_statement] = STATE(406), + [sym_attributed_statement] = STATE(406), + [sym_statement] = STATE(419), + [sym_labeled_statement] = STATE(406), + [sym_expression_statement] = STATE(406), + [sym_if_statement] = STATE(406), + [sym_switch_statement] = STATE(406), + [sym_case_statement] = STATE(406), + [sym_while_statement] = STATE(406), + [sym_do_statement] = STATE(406), + [sym_for_statement] = STATE(406), + [sym_return_statement] = STATE(406), + [sym_break_statement] = STATE(406), + [sym_continue_statement] = STATE(406), + [sym_goto_statement] = STATE(406), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(406), + [sym_throw_statement] = STATE(406), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(406), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(406), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [sym_identifier] = ACTIONS(5792), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(307), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_id] = ACTIONS(203), + }, + [2469] = { + [sym_attribute_declaration] = STATE(2458), + [sym_compound_statement] = STATE(406), + [sym_attributed_statement] = STATE(406), + [sym_statement] = STATE(421), + [sym_labeled_statement] = STATE(406), + [sym_expression_statement] = STATE(406), + [sym_if_statement] = STATE(406), + [sym_switch_statement] = STATE(406), + [sym_case_statement] = STATE(406), + [sym_while_statement] = STATE(406), + [sym_do_statement] = STATE(406), + [sym_for_statement] = STATE(406), + [sym_return_statement] = STATE(406), + [sym_break_statement] = STATE(406), + [sym_continue_statement] = STATE(406), + [sym_goto_statement] = STATE(406), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(406), + [sym_throw_statement] = STATE(406), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(406), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(406), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [sym_identifier] = ACTIONS(5792), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(307), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_id] = ACTIONS(203), + }, + [2470] = { + [sym_attribute_declaration] = STATE(2472), + [sym_compound_statement] = STATE(981), + [sym_attributed_statement] = STATE(981), + [sym_statement] = STATE(939), + [sym_labeled_statement] = STATE(981), + [sym_expression_statement] = STATE(981), + [sym_if_statement] = STATE(981), + [sym_switch_statement] = STATE(981), + [sym_case_statement] = STATE(981), + [sym_while_statement] = STATE(981), + [sym_do_statement] = STATE(981), + [sym_for_statement] = STATE(981), + [sym_return_statement] = STATE(981), + [sym_break_statement] = STATE(981), + [sym_continue_statement] = STATE(981), + [sym_goto_statement] = STATE(981), + [sym_expression] = STATE(4465), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6211), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(981), + [sym_throw_statement] = STATE(981), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(981), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(981), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2472), + [sym_identifier] = ACTIONS(5798), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2128), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(69), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(73), + [anon_sym_default] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym___try] = ACTIONS(2136), + [anon_sym_ATthrow] = ACTIONS(2138), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2140), + [anon_sym_id] = ACTIONS(203), + }, + [2471] = { + [sym_attribute_declaration] = STATE(2446), + [sym_compound_statement] = STATE(588), + [sym_attributed_statement] = STATE(588), + [sym_statement] = STATE(539), + [sym_labeled_statement] = STATE(588), + [sym_expression_statement] = STATE(588), + [sym_if_statement] = STATE(588), + [sym_switch_statement] = STATE(588), + [sym_case_statement] = STATE(588), + [sym_while_statement] = STATE(588), + [sym_do_statement] = STATE(588), + [sym_for_statement] = STATE(588), + [sym_return_statement] = STATE(588), + [sym_break_statement] = STATE(588), + [sym_continue_statement] = STATE(588), + [sym_goto_statement] = STATE(588), + [sym_expression] = STATE(4448), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6083), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(588), + [sym_throw_statement] = STATE(588), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(588), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(588), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2446), + [sym_identifier] = ACTIONS(5804), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_ATautoreleasepool] = ACTIONS(761), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(763), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_case] = ACTIONS(767), + [anon_sym_default] = ACTIONS(769), + [anon_sym_while] = ACTIONS(771), + [anon_sym_do] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(777), + [anon_sym_break] = ACTIONS(779), + [anon_sym_continue] = ACTIONS(781), + [anon_sym_goto] = ACTIONS(783), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(785), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(803), + [anon_sym___try] = ACTIONS(805), + [anon_sym_ATthrow] = ACTIONS(807), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(809), + [anon_sym_id] = ACTIONS(203), + }, + [2472] = { + [sym_attribute_declaration] = STATE(2453), + [sym_compound_statement] = STATE(981), + [sym_attributed_statement] = STATE(981), + [sym_statement] = STATE(979), + [sym_labeled_statement] = STATE(981), + [sym_expression_statement] = STATE(981), + [sym_if_statement] = STATE(981), + [sym_switch_statement] = STATE(981), + [sym_case_statement] = STATE(981), + [sym_while_statement] = STATE(981), + [sym_do_statement] = STATE(981), + [sym_for_statement] = STATE(981), + [sym_return_statement] = STATE(981), + [sym_break_statement] = STATE(981), + [sym_continue_statement] = STATE(981), + [sym_goto_statement] = STATE(981), + [sym_expression] = STATE(4465), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6211), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(981), + [sym_throw_statement] = STATE(981), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(981), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(981), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2453), + [sym_identifier] = ACTIONS(5798), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2128), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(69), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(73), + [anon_sym_default] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym___try] = ACTIONS(2136), + [anon_sym_ATthrow] = ACTIONS(2138), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2140), + [anon_sym_id] = ACTIONS(203), + }, + [2473] = { + [sym_attribute_declaration] = STATE(2465), + [sym_compound_statement] = STATE(809), + [sym_attributed_statement] = STATE(809), + [sym_statement] = STATE(6545), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2465), + [sym_identifier] = ACTIONS(5796), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2154), + [anon_sym___try] = ACTIONS(2156), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2158), + [anon_sym_id] = ACTIONS(203), + }, + [2474] = { + [sym_attribute_declaration] = STATE(2446), + [sym_compound_statement] = STATE(588), + [sym_attributed_statement] = STATE(588), + [sym_statement] = STATE(542), + [sym_labeled_statement] = STATE(588), + [sym_expression_statement] = STATE(588), + [sym_if_statement] = STATE(588), + [sym_switch_statement] = STATE(588), + [sym_case_statement] = STATE(588), + [sym_while_statement] = STATE(588), + [sym_do_statement] = STATE(588), + [sym_for_statement] = STATE(588), + [sym_return_statement] = STATE(588), + [sym_break_statement] = STATE(588), + [sym_continue_statement] = STATE(588), + [sym_goto_statement] = STATE(588), + [sym_expression] = STATE(4448), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6083), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(588), + [sym_throw_statement] = STATE(588), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(588), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(588), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2446), + [sym_identifier] = ACTIONS(5804), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_ATautoreleasepool] = ACTIONS(761), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(763), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_case] = ACTIONS(767), + [anon_sym_default] = ACTIONS(769), + [anon_sym_while] = ACTIONS(771), + [anon_sym_do] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(777), + [anon_sym_break] = ACTIONS(779), + [anon_sym_continue] = ACTIONS(781), + [anon_sym_goto] = ACTIONS(783), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(785), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(803), + [anon_sym___try] = ACTIONS(805), + [anon_sym_ATthrow] = ACTIONS(807), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(809), + [anon_sym_id] = ACTIONS(203), + }, + [2475] = { + [sym_attribute_declaration] = STATE(2450), + [sym_compound_statement] = STATE(766), + [sym_attributed_statement] = STATE(766), + [sym_statement] = STATE(648), + [sym_labeled_statement] = STATE(766), + [sym_expression_statement] = STATE(766), + [sym_if_statement] = STATE(766), + [sym_switch_statement] = STATE(766), + [sym_case_statement] = STATE(766), + [sym_while_statement] = STATE(766), + [sym_do_statement] = STATE(766), + [sym_for_statement] = STATE(766), + [sym_return_statement] = STATE(766), + [sym_break_statement] = STATE(766), + [sym_continue_statement] = STATE(766), + [sym_goto_statement] = STATE(766), + [sym_expression] = STATE(4502), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6238), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(766), + [sym_throw_statement] = STATE(766), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(766), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(766), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2450), + [sym_identifier] = ACTIONS(5947), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_ATautoreleasepool] = ACTIONS(1936), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(1938), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(73), + [anon_sym_default] = ACTIONS(75), + [anon_sym_while] = ACTIONS(1942), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1946), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1950), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_goto] = ACTIONS(1954), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(1956), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(1958), + [anon_sym___try] = ACTIONS(1960), + [anon_sym_ATthrow] = ACTIONS(1962), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(1964), + [anon_sym_id] = ACTIONS(203), + }, + [2476] = { + [sym_attribute_declaration] = STATE(2465), + [sym_compound_statement] = STATE(809), + [sym_attributed_statement] = STATE(809), + [sym_statement] = STATE(6462), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2465), + [sym_identifier] = ACTIONS(5796), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2154), + [anon_sym___try] = ACTIONS(2156), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2158), + [anon_sym_id] = ACTIONS(203), + }, + [2477] = { + [sym_attribute_declaration] = STATE(2472), + [sym_compound_statement] = STATE(981), + [sym_attributed_statement] = STATE(981), + [sym_statement] = STATE(984), + [sym_labeled_statement] = STATE(981), + [sym_expression_statement] = STATE(981), + [sym_if_statement] = STATE(981), + [sym_switch_statement] = STATE(981), + [sym_case_statement] = STATE(981), + [sym_while_statement] = STATE(981), + [sym_do_statement] = STATE(981), + [sym_for_statement] = STATE(981), + [sym_return_statement] = STATE(981), + [sym_break_statement] = STATE(981), + [sym_continue_statement] = STATE(981), + [sym_goto_statement] = STATE(981), + [sym_expression] = STATE(4465), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6211), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(981), + [sym_throw_statement] = STATE(981), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(981), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(981), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2472), + [sym_identifier] = ACTIONS(5798), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2128), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(69), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(73), + [anon_sym_default] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym___try] = ACTIONS(2136), + [anon_sym_ATthrow] = ACTIONS(2138), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2140), + [anon_sym_id] = ACTIONS(203), + }, + [2478] = { + [sym_attribute_declaration] = STATE(2450), + [sym_compound_statement] = STATE(766), + [sym_attributed_statement] = STATE(766), + [sym_statement] = STATE(830), + [sym_labeled_statement] = STATE(766), + [sym_expression_statement] = STATE(766), + [sym_if_statement] = STATE(766), + [sym_switch_statement] = STATE(766), + [sym_case_statement] = STATE(766), + [sym_while_statement] = STATE(766), + [sym_do_statement] = STATE(766), + [sym_for_statement] = STATE(766), + [sym_return_statement] = STATE(766), + [sym_break_statement] = STATE(766), + [sym_continue_statement] = STATE(766), + [sym_goto_statement] = STATE(766), + [sym_expression] = STATE(4502), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6238), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(766), + [sym_throw_statement] = STATE(766), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(766), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(766), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2450), + [sym_identifier] = ACTIONS(5947), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_ATautoreleasepool] = ACTIONS(1936), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(1938), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(73), + [anon_sym_default] = ACTIONS(75), + [anon_sym_while] = ACTIONS(1942), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1946), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1950), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_goto] = ACTIONS(1954), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(1956), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(1958), + [anon_sym___try] = ACTIONS(1960), + [anon_sym_ATthrow] = ACTIONS(1962), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(1964), + [anon_sym_id] = ACTIONS(203), + }, + [2479] = { + [sym_attribute_declaration] = STATE(2465), + [sym_compound_statement] = STATE(809), + [sym_attributed_statement] = STATE(809), + [sym_statement] = STATE(6491), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2465), + [sym_identifier] = ACTIONS(5796), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2154), + [anon_sym___try] = ACTIONS(2156), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2158), + [anon_sym_id] = ACTIONS(203), + }, + [2480] = { + [sym_attribute_declaration] = STATE(2432), + [sym_compound_statement] = STATE(274), + [sym_attributed_statement] = STATE(274), + [sym_statement] = STATE(229), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(274), + [sym_throw_statement] = STATE(274), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(274), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(274), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2432), + [sym_identifier] = ACTIONS(5800), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_id] = ACTIONS(203), + }, + [2481] = { + [sym_attribute_declaration] = STATE(2454), + [sym_compound_statement] = STATE(1113), + [sym_attributed_statement] = STATE(1113), + [sym_statement] = STATE(1171), + [sym_labeled_statement] = STATE(1113), + [sym_expression_statement] = STATE(1113), + [sym_if_statement] = STATE(1113), + [sym_switch_statement] = STATE(1113), + [sym_case_statement] = STATE(1113), + [sym_while_statement] = STATE(1113), + [sym_do_statement] = STATE(1113), + [sym_for_statement] = STATE(1113), + [sym_return_statement] = STATE(1113), + [sym_break_statement] = STATE(1113), + [sym_continue_statement] = STATE(1113), + [sym_goto_statement] = STATE(1113), + [sym_expression] = STATE(4451), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6542), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(1113), + [sym_throw_statement] = STATE(1113), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(1113), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(1113), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2454), + [sym_identifier] = ACTIONS(6099), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(2094), + [anon_sym_ATautoreleasepool] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_switch] = ACTIONS(2100), + [anon_sym_case] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2102), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2106), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_goto] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym___try] = ACTIONS(2120), + [anon_sym_ATthrow] = ACTIONS(2122), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2124), + [anon_sym_id] = ACTIONS(203), + }, + [2482] = { + [sym_attribute_declaration] = STATE(2465), + [sym_compound_statement] = STATE(809), + [sym_attributed_statement] = STATE(809), + [sym_statement] = STATE(6512), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2465), + [sym_identifier] = ACTIONS(5796), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2154), + [anon_sym___try] = ACTIONS(2156), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2158), + [anon_sym_id] = ACTIONS(203), + }, + [2483] = { + [sym_attribute_declaration] = STATE(2465), + [sym_compound_statement] = STATE(809), + [sym_attributed_statement] = STATE(809), + [sym_statement] = STATE(6532), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2465), + [sym_identifier] = ACTIONS(5796), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2154), + [anon_sym___try] = ACTIONS(2156), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2158), + [anon_sym_id] = ACTIONS(203), + }, + [2484] = { + [sym_attribute_declaration] = STATE(2444), + [sym_compound_statement] = STATE(809), + [sym_attributed_statement] = STATE(809), + [sym_statement] = STATE(753), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(5802), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_id] = ACTIONS(203), + }, + [2485] = { + [sym_attribute_declaration] = STATE(2444), + [sym_compound_statement] = STATE(809), + [sym_attributed_statement] = STATE(809), + [sym_statement] = STATE(757), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(5802), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_id] = ACTIONS(203), + }, + [2486] = { + [sym_attribute_declaration] = STATE(2454), + [sym_compound_statement] = STATE(1113), + [sym_attributed_statement] = STATE(1113), + [sym_statement] = STATE(1101), + [sym_labeled_statement] = STATE(1113), + [sym_expression_statement] = STATE(1113), + [sym_if_statement] = STATE(1113), + [sym_switch_statement] = STATE(1113), + [sym_case_statement] = STATE(1113), + [sym_while_statement] = STATE(1113), + [sym_do_statement] = STATE(1113), + [sym_for_statement] = STATE(1113), + [sym_return_statement] = STATE(1113), + [sym_break_statement] = STATE(1113), + [sym_continue_statement] = STATE(1113), + [sym_goto_statement] = STATE(1113), + [sym_expression] = STATE(4451), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6542), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(1113), + [sym_throw_statement] = STATE(1113), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(1113), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(1113), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2454), + [sym_identifier] = ACTIONS(6099), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(2094), + [anon_sym_ATautoreleasepool] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_switch] = ACTIONS(2100), + [anon_sym_case] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2102), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2106), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_goto] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym___try] = ACTIONS(2120), + [anon_sym_ATthrow] = ACTIONS(2122), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2124), + [anon_sym_id] = ACTIONS(203), + }, + [2487] = { + [sym_attribute_declaration] = STATE(2465), + [sym_compound_statement] = STATE(809), + [sym_attributed_statement] = STATE(809), + [sym_statement] = STATE(6206), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(809), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(809), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2465), + [sym_identifier] = ACTIONS(5796), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2154), + [anon_sym___try] = ACTIONS(2156), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2158), + [anon_sym_id] = ACTIONS(203), + }, + [2488] = { + [sym__declaration_modifiers] = STATE(2516), + [sym_attribute_specifier] = STATE(2516), + [sym_attribute_declaration] = STATE(2516), + [sym_ms_declspec_modifier] = STATE(2516), + [sym_storage_class_specifier] = STATE(2516), + [sym_type_qualifier] = STATE(2516), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2516), + [aux_sym__declaration_specifiers_repeat1] = STATE(2516), + [sym_identifier] = ACTIONS(2922), + [anon_sym_COMMA] = ACTIONS(6206), + [anon_sym_SEMI] = ACTIONS(6206), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(6206), + [anon_sym_signed] = ACTIONS(6208), + [anon_sym_unsigned] = ACTIONS(6208), + [anon_sym_long] = ACTIONS(6208), + [anon_sym_short] = ACTIONS(6208), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(6206), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(6208), + [anon_sym_enum] = ACTIONS(6208), + [anon_sym_COLON] = ACTIONS(6206), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(6208), + [anon_sym_in] = ACTIONS(2922), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6208), + [anon_sym___typeof] = ACTIONS(6208), + [anon_sym_typeof] = ACTIONS(6208), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(6208), + [anon_sym_IMP] = ACTIONS(6208), + [anon_sym_SEL] = ACTIONS(6208), + [anon_sym_Class] = ACTIONS(6208), + [anon_sym_id] = ACTIONS(2922), + }, + [2489] = { + [sym__declaration_modifiers] = STATE(2522), + [sym_attribute_specifier] = STATE(2522), + [sym_attribute_declaration] = STATE(2522), + [sym_ms_declspec_modifier] = STATE(2522), + [sym_storage_class_specifier] = STATE(2522), + [sym_type_qualifier] = STATE(2522), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2522), + [aux_sym__declaration_specifiers_repeat1] = STATE(2522), + [sym_identifier] = ACTIONS(2922), + [anon_sym_COMMA] = ACTIONS(6210), + [anon_sym_SEMI] = ACTIONS(6210), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(6210), + [anon_sym_signed] = ACTIONS(6212), + [anon_sym_unsigned] = ACTIONS(6212), + [anon_sym_long] = ACTIONS(6212), + [anon_sym_short] = ACTIONS(6212), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(6210), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(6212), + [anon_sym_enum] = ACTIONS(6212), + [anon_sym_COLON] = ACTIONS(6210), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(6212), + [anon_sym_in] = ACTIONS(2922), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6212), + [anon_sym___typeof] = ACTIONS(6212), + [anon_sym_typeof] = ACTIONS(6212), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(6212), + [anon_sym_IMP] = ACTIONS(6212), + [anon_sym_SEL] = ACTIONS(6212), + [anon_sym_Class] = ACTIONS(6212), + [anon_sym_id] = ACTIONS(2922), + }, + [2490] = { + [sym__declaration_modifiers] = STATE(2523), + [sym_attribute_specifier] = STATE(2523), + [sym_attribute_declaration] = STATE(2523), + [sym_ms_declspec_modifier] = STATE(2523), + [sym_storage_class_specifier] = STATE(2523), + [sym_type_qualifier] = STATE(2523), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2523), + [aux_sym__declaration_specifiers_repeat1] = STATE(2523), + [sym_identifier] = ACTIONS(6214), + [anon_sym_COMMA] = ACTIONS(6217), + [anon_sym_SEMI] = ACTIONS(6217), + [anon_sym___extension__] = ACTIONS(6220), + [anon_sym_extern] = ACTIONS(6224), + [anon_sym___attribute__] = ACTIONS(6228), + [anon_sym___attribute] = ACTIONS(6228), + [anon_sym_noreturn] = ACTIONS(6220), + [anon_sym_LBRACK] = ACTIONS(6232), + [anon_sym___declspec] = ACTIONS(6236), + [anon_sym_LBRACE] = ACTIONS(6217), + [anon_sym_signed] = ACTIONS(6214), + [anon_sym_unsigned] = ACTIONS(6214), + [anon_sym_long] = ACTIONS(6214), + [anon_sym_short] = ACTIONS(6214), + [anon_sym_static] = ACTIONS(6224), + [anon_sym_ATautoreleasepool] = ACTIONS(6217), + [anon_sym_auto] = ACTIONS(6224), + [anon_sym_register] = ACTIONS(6224), + [anon_sym_inline] = ACTIONS(6224), + [anon_sym___inline] = ACTIONS(6224), + [anon_sym___inline__] = ACTIONS(6224), + [anon_sym___forceinline] = ACTIONS(6224), + [anon_sym_thread_local] = ACTIONS(6224), + [anon_sym___thread] = ACTIONS(6224), + [anon_sym_CG_EXTERN] = ACTIONS(6224), + [anon_sym_CG_INLINE] = ACTIONS(6224), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6224), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6224), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6224), + [anon_sym_IBOutlet] = ACTIONS(6224), + [anon_sym_IBInspectable] = ACTIONS(6224), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6224), + [anon_sym_NS_INLINE] = ACTIONS(6224), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6224), + [anon_sym_OBJC_EXPORT] = ACTIONS(6224), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6224), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6224), + [anon_sym_const] = ACTIONS(6220), + [anon_sym_constexpr] = ACTIONS(6220), + [anon_sym_volatile] = ACTIONS(6220), + [anon_sym_restrict] = ACTIONS(6220), + [anon_sym___restrict__] = ACTIONS(6220), + [anon_sym__Atomic] = ACTIONS(6220), + [anon_sym__Noreturn] = ACTIONS(6220), + [anon_sym__Nonnull] = ACTIONS(6220), + [anon_sym_nullable] = ACTIONS(6220), + [anon_sym__Complex] = ACTIONS(6220), + [anon_sym__Nullable] = ACTIONS(6220), + [anon_sym__Nullable_result] = ACTIONS(6220), + [anon_sym__Null_unspecified] = ACTIONS(6220), + [anon_sym___autoreleasing] = ACTIONS(6220), + [anon_sym___block] = ACTIONS(6220), + [anon_sym___bridge] = ACTIONS(6220), + [anon_sym___bridge_retained] = ACTIONS(6220), + [anon_sym___bridge_transfer] = ACTIONS(6220), + [anon_sym___complex] = ACTIONS(6220), + [anon_sym___const] = ACTIONS(6220), + [anon_sym___imag] = ACTIONS(6220), + [anon_sym___kindof] = ACTIONS(6220), + [anon_sym___nonnull] = ACTIONS(6220), + [anon_sym___nullable] = ACTIONS(6220), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6220), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6220), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6220), + [anon_sym___real] = ACTIONS(6220), + [anon_sym___strong] = ACTIONS(6220), + [anon_sym___unsafe_unretained] = ACTIONS(6220), + [anon_sym___unused] = ACTIONS(6220), + [anon_sym___weak] = ACTIONS(6220), + [anon_sym_alignas] = ACTIONS(6240), + [anon_sym__Alignas] = ACTIONS(6240), + [sym_primitive_type] = ACTIONS(6214), + [anon_sym_enum] = ACTIONS(6214), + [anon_sym_COLON] = ACTIONS(6217), + [anon_sym_struct] = ACTIONS(6214), + [anon_sym_union] = ACTIONS(6214), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6214), + [anon_sym___typeof] = ACTIONS(6214), + [anon_sym_typeof] = ACTIONS(6214), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6244), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6244), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6244), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6244), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6244), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6244), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6244), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6244), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6244), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6248), + [anon_sym_NS_AVAILABLE] = ACTIONS(6248), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6248), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6248), + [anon_sym_API_AVAILABLE] = ACTIONS(6248), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6248), + [anon_sym_API_DEPRECATED] = ACTIONS(6248), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6248), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6248), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6248), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6248), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6248), + [anon_sym___deprecated_msg] = ACTIONS(6248), + [anon_sym___deprecated_enum_msg] = ACTIONS(6248), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6248), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6248), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6248), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6248), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6248), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6248), + [anon_sym_BOOL] = ACTIONS(6214), + [anon_sym_IMP] = ACTIONS(6214), + [anon_sym_SEL] = ACTIONS(6214), + [anon_sym_Class] = ACTIONS(6214), + [anon_sym_id] = ACTIONS(6214), + }, + [2491] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(6252), + [anon_sym_COMMA] = ACTIONS(6254), + [anon_sym_SEMI] = ACTIONS(6254), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(6254), + [anon_sym_signed] = ACTIONS(6252), + [anon_sym_unsigned] = ACTIONS(6252), + [anon_sym_long] = ACTIONS(6252), + [anon_sym_short] = ACTIONS(6252), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(6254), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(6252), + [anon_sym_enum] = ACTIONS(6252), + [anon_sym_COLON] = ACTIONS(6254), + [anon_sym_struct] = ACTIONS(6252), + [anon_sym_union] = ACTIONS(6252), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6252), + [anon_sym___typeof] = ACTIONS(6252), + [anon_sym_typeof] = ACTIONS(6252), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(6252), + [anon_sym_IMP] = ACTIONS(6252), + [anon_sym_SEL] = ACTIONS(6252), + [anon_sym_Class] = ACTIONS(6252), + [anon_sym_id] = ACTIONS(6252), + }, + [2492] = { + [sym__declaration_modifiers] = STATE(2491), + [sym_attribute_specifier] = STATE(2491), + [sym_attribute_declaration] = STATE(2491), + [sym_ms_declspec_modifier] = STATE(2491), + [sym_storage_class_specifier] = STATE(2491), + [sym_type_qualifier] = STATE(2491), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2491), + [aux_sym__declaration_specifiers_repeat1] = STATE(2491), + [sym_identifier] = ACTIONS(6256), + [anon_sym_COMMA] = ACTIONS(6258), + [anon_sym_SEMI] = ACTIONS(6258), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(6258), + [anon_sym_signed] = ACTIONS(6256), + [anon_sym_unsigned] = ACTIONS(6256), + [anon_sym_long] = ACTIONS(6256), + [anon_sym_short] = ACTIONS(6256), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(6258), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(6256), + [anon_sym_enum] = ACTIONS(6256), + [anon_sym_COLON] = ACTIONS(6258), + [anon_sym_struct] = ACTIONS(6256), + [anon_sym_union] = ACTIONS(6256), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6256), + [anon_sym___typeof] = ACTIONS(6256), + [anon_sym_typeof] = ACTIONS(6256), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(6256), + [anon_sym_IMP] = ACTIONS(6256), + [anon_sym_SEL] = ACTIONS(6256), + [anon_sym_Class] = ACTIONS(6256), + [anon_sym_id] = ACTIONS(6256), + }, + [2493] = { + [sym__declaration_modifiers] = STATE(2519), + [sym_attribute_specifier] = STATE(2519), + [sym_attribute_declaration] = STATE(2519), + [sym_ms_declspec_modifier] = STATE(2519), + [sym_storage_class_specifier] = STATE(2519), + [sym_type_qualifier] = STATE(2519), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2519), + [aux_sym__declaration_specifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(6260), + [anon_sym_COMMA] = ACTIONS(6263), + [anon_sym_SEMI] = ACTIONS(6266), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(6266), + [anon_sym_signed] = ACTIONS(6268), + [anon_sym_unsigned] = ACTIONS(6268), + [anon_sym_long] = ACTIONS(6268), + [anon_sym_short] = ACTIONS(6268), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(6266), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(6268), + [anon_sym_enum] = ACTIONS(6268), + [anon_sym_COLON] = ACTIONS(6263), + [anon_sym_struct] = ACTIONS(6268), + [anon_sym_union] = ACTIONS(6268), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6268), + [anon_sym___typeof] = ACTIONS(6268), + [anon_sym_typeof] = ACTIONS(6268), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(6268), + [anon_sym_IMP] = ACTIONS(6268), + [anon_sym_SEL] = ACTIONS(6268), + [anon_sym_Class] = ACTIONS(6268), + [anon_sym_id] = ACTIONS(6268), + }, + [2494] = { + [sym__declaration_modifiers] = STATE(2523), + [sym_attribute_specifier] = STATE(2523), + [sym_attribute_declaration] = STATE(2523), + [sym_ms_declspec_modifier] = STATE(2523), + [sym_storage_class_specifier] = STATE(2523), + [sym_type_qualifier] = STATE(2523), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2523), + [aux_sym__declaration_specifiers_repeat1] = STATE(2523), + [sym_identifier] = ACTIONS(6214), + [anon_sym_COMMA] = ACTIONS(6217), + [anon_sym_SEMI] = ACTIONS(6270), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(6270), + [anon_sym_signed] = ACTIONS(6272), + [anon_sym_unsigned] = ACTIONS(6272), + [anon_sym_long] = ACTIONS(6272), + [anon_sym_short] = ACTIONS(6272), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(6270), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(6272), + [anon_sym_enum] = ACTIONS(6272), + [anon_sym_COLON] = ACTIONS(6217), + [anon_sym_struct] = ACTIONS(6272), + [anon_sym_union] = ACTIONS(6272), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6272), + [anon_sym___typeof] = ACTIONS(6272), + [anon_sym_typeof] = ACTIONS(6272), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(6272), + [anon_sym_IMP] = ACTIONS(6272), + [anon_sym_SEL] = ACTIONS(6272), + [anon_sym_Class] = ACTIONS(6272), + [anon_sym_id] = ACTIONS(6272), + }, + [2495] = { + [sym__declaration_modifiers] = STATE(2519), + [sym_attribute_specifier] = STATE(2519), + [sym_attribute_declaration] = STATE(2519), + [sym_ms_declspec_modifier] = STATE(2519), + [sym_storage_class_specifier] = STATE(2519), + [sym_type_qualifier] = STATE(2519), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2519), + [aux_sym__declaration_specifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(6274), + [anon_sym_COMMA] = ACTIONS(6277), + [anon_sym_SEMI] = ACTIONS(6277), + [anon_sym___extension__] = ACTIONS(6280), + [anon_sym_extern] = ACTIONS(6284), + [anon_sym___attribute__] = ACTIONS(6288), + [anon_sym___attribute] = ACTIONS(6288), + [anon_sym_noreturn] = ACTIONS(6280), + [anon_sym_LBRACK] = ACTIONS(6292), + [anon_sym___declspec] = ACTIONS(6296), + [anon_sym_LBRACE] = ACTIONS(6277), + [anon_sym_signed] = ACTIONS(6274), + [anon_sym_unsigned] = ACTIONS(6274), + [anon_sym_long] = ACTIONS(6274), + [anon_sym_short] = ACTIONS(6274), + [anon_sym_static] = ACTIONS(6284), + [anon_sym_ATautoreleasepool] = ACTIONS(6277), + [anon_sym_auto] = ACTIONS(6284), + [anon_sym_register] = ACTIONS(6284), + [anon_sym_inline] = ACTIONS(6284), + [anon_sym___inline] = ACTIONS(6284), + [anon_sym___inline__] = ACTIONS(6284), + [anon_sym___forceinline] = ACTIONS(6284), + [anon_sym_thread_local] = ACTIONS(6284), + [anon_sym___thread] = ACTIONS(6284), + [anon_sym_CG_EXTERN] = ACTIONS(6284), + [anon_sym_CG_INLINE] = ACTIONS(6284), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6284), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6284), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6284), + [anon_sym_IBOutlet] = ACTIONS(6284), + [anon_sym_IBInspectable] = ACTIONS(6284), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6284), + [anon_sym_NS_INLINE] = ACTIONS(6284), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6284), + [anon_sym_OBJC_EXPORT] = ACTIONS(6284), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6284), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6284), + [anon_sym_const] = ACTIONS(6280), + [anon_sym_constexpr] = ACTIONS(6280), + [anon_sym_volatile] = ACTIONS(6280), + [anon_sym_restrict] = ACTIONS(6280), + [anon_sym___restrict__] = ACTIONS(6280), + [anon_sym__Atomic] = ACTIONS(6280), + [anon_sym__Noreturn] = ACTIONS(6280), + [anon_sym__Nonnull] = ACTIONS(6280), + [anon_sym_nullable] = ACTIONS(6280), + [anon_sym__Complex] = ACTIONS(6280), + [anon_sym__Nullable] = ACTIONS(6280), + [anon_sym__Nullable_result] = ACTIONS(6280), + [anon_sym__Null_unspecified] = ACTIONS(6280), + [anon_sym___autoreleasing] = ACTIONS(6280), + [anon_sym___block] = ACTIONS(6280), + [anon_sym___bridge] = ACTIONS(6280), + [anon_sym___bridge_retained] = ACTIONS(6280), + [anon_sym___bridge_transfer] = ACTIONS(6280), + [anon_sym___complex] = ACTIONS(6280), + [anon_sym___const] = ACTIONS(6280), + [anon_sym___imag] = ACTIONS(6280), + [anon_sym___kindof] = ACTIONS(6280), + [anon_sym___nonnull] = ACTIONS(6280), + [anon_sym___nullable] = ACTIONS(6280), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6280), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6280), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6280), + [anon_sym___real] = ACTIONS(6280), + [anon_sym___strong] = ACTIONS(6280), + [anon_sym___unsafe_unretained] = ACTIONS(6280), + [anon_sym___unused] = ACTIONS(6280), + [anon_sym___weak] = ACTIONS(6280), + [anon_sym_alignas] = ACTIONS(6300), + [anon_sym__Alignas] = ACTIONS(6300), + [sym_primitive_type] = ACTIONS(6274), + [anon_sym_enum] = ACTIONS(6274), + [anon_sym_COLON] = ACTIONS(6277), + [anon_sym_struct] = ACTIONS(6274), + [anon_sym_union] = ACTIONS(6274), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6274), + [anon_sym___typeof] = ACTIONS(6274), + [anon_sym_typeof] = ACTIONS(6274), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6304), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6304), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6304), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6304), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6304), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6304), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6304), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6304), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6304), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6308), + [anon_sym_NS_AVAILABLE] = ACTIONS(6308), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6308), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6308), + [anon_sym_API_AVAILABLE] = ACTIONS(6308), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6308), + [anon_sym_API_DEPRECATED] = ACTIONS(6308), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6308), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6308), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6308), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6308), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6308), + [anon_sym___deprecated_msg] = ACTIONS(6308), + [anon_sym___deprecated_enum_msg] = ACTIONS(6308), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6308), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6308), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6308), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6308), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6308), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6308), + [anon_sym_BOOL] = ACTIONS(6274), + [anon_sym_IMP] = ACTIONS(6274), + [anon_sym_SEL] = ACTIONS(6274), + [anon_sym_Class] = ACTIONS(6274), + [anon_sym_id] = ACTIONS(6274), + }, + [2496] = { + [sym__declaration_modifiers] = STATE(2519), + [sym_attribute_specifier] = STATE(2519), + [sym_attribute_declaration] = STATE(2519), + [sym_ms_declspec_modifier] = STATE(2519), + [sym_storage_class_specifier] = STATE(2519), + [sym_type_qualifier] = STATE(2519), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2519), + [aux_sym__declaration_specifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(6268), + [anon_sym_COMMA] = ACTIONS(6266), + [anon_sym_SEMI] = ACTIONS(6266), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(6266), + [anon_sym_signed] = ACTIONS(6268), + [anon_sym_unsigned] = ACTIONS(6268), + [anon_sym_long] = ACTIONS(6268), + [anon_sym_short] = ACTIONS(6268), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(6266), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(6268), + [anon_sym_enum] = ACTIONS(6268), + [anon_sym_COLON] = ACTIONS(6266), + [anon_sym_struct] = ACTIONS(6268), + [anon_sym_union] = ACTIONS(6268), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6268), + [anon_sym___typeof] = ACTIONS(6268), + [anon_sym_typeof] = ACTIONS(6268), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(6268), + [anon_sym_IMP] = ACTIONS(6268), + [anon_sym_SEL] = ACTIONS(6268), + [anon_sym_Class] = ACTIONS(6268), + [anon_sym_id] = ACTIONS(6268), + }, + [2497] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(6312), + [anon_sym_COMMA] = ACTIONS(6314), + [anon_sym_SEMI] = ACTIONS(6314), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(6314), + [anon_sym_signed] = ACTIONS(6312), + [anon_sym_unsigned] = ACTIONS(6312), + [anon_sym_long] = ACTIONS(6312), + [anon_sym_short] = ACTIONS(6312), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(6314), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(6312), + [anon_sym_enum] = ACTIONS(6312), + [anon_sym_COLON] = ACTIONS(6314), + [anon_sym_struct] = ACTIONS(6312), + [anon_sym_union] = ACTIONS(6312), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6312), + [anon_sym___typeof] = ACTIONS(6312), + [anon_sym_typeof] = ACTIONS(6312), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(6312), + [anon_sym_IMP] = ACTIONS(6312), + [anon_sym_SEL] = ACTIONS(6312), + [anon_sym_Class] = ACTIONS(6312), + [anon_sym_id] = ACTIONS(6312), + }, + [2498] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4466), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6316), + [anon_sym_COMMA] = ACTIONS(4470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4470), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6318), + [anon_sym_PLUS] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(6320), + [anon_sym_SLASH] = ACTIONS(6322), + [anon_sym_PERCENT] = ACTIONS(6320), + [anon_sym_PIPE_PIPE] = ACTIONS(6324), + [anon_sym_AMP_AMP] = ACTIONS(6326), + [anon_sym_PIPE] = ACTIONS(6328), + [anon_sym_CARET] = ACTIONS(6330), + [anon_sym_AMP] = ACTIONS(6332), + [anon_sym_EQ_EQ] = ACTIONS(6334), + [anon_sym_BANG_EQ] = ACTIONS(6334), + [anon_sym_GT] = ACTIONS(6336), + [anon_sym_GT_EQ] = ACTIONS(6338), + [anon_sym_LT_EQ] = ACTIONS(6338), + [anon_sym_LT] = ACTIONS(6336), + [anon_sym_LT_LT] = ACTIONS(6340), + [anon_sym_GT_GT] = ACTIONS(6340), + [anon_sym___extension__] = ACTIONS(4466), + [anon_sym_extern] = ACTIONS(4466), + [anon_sym___attribute__] = ACTIONS(4466), + [anon_sym___attribute] = ACTIONS(4466), + [anon_sym_noreturn] = ACTIONS(4466), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4466), + [anon_sym_RBRACE] = ACTIONS(4470), + [anon_sym_static] = ACTIONS(4466), + [anon_sym_auto] = ACTIONS(4466), + [anon_sym_register] = ACTIONS(4466), + [anon_sym_inline] = ACTIONS(4466), + [anon_sym___inline] = ACTIONS(4466), + [anon_sym___inline__] = ACTIONS(4466), + [anon_sym___forceinline] = ACTIONS(4466), + [anon_sym_thread_local] = ACTIONS(4466), + [anon_sym___thread] = ACTIONS(4466), + [anon_sym_CG_EXTERN] = ACTIONS(4466), + [anon_sym_CG_INLINE] = ACTIONS(4466), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4466), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4466), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4466), + [anon_sym_IBOutlet] = ACTIONS(4466), + [anon_sym_IBInspectable] = ACTIONS(4466), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4466), + [anon_sym_NS_INLINE] = ACTIONS(4466), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4466), + [anon_sym_OBJC_EXPORT] = ACTIONS(4466), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4466), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4466), + [anon_sym_const] = ACTIONS(4466), + [anon_sym_constexpr] = ACTIONS(4466), + [anon_sym_volatile] = ACTIONS(4466), + [anon_sym_restrict] = ACTIONS(4466), + [anon_sym___restrict__] = ACTIONS(4466), + [anon_sym__Atomic] = ACTIONS(4466), + [anon_sym__Noreturn] = ACTIONS(4466), + [anon_sym__Nonnull] = ACTIONS(4466), + [anon_sym_nullable] = ACTIONS(4466), + [anon_sym__Complex] = ACTIONS(4466), + [anon_sym__Nullable] = ACTIONS(4466), + [anon_sym__Nullable_result] = ACTIONS(4466), + [anon_sym__Null_unspecified] = ACTIONS(4466), + [anon_sym___autoreleasing] = ACTIONS(4466), + [anon_sym___block] = ACTIONS(4466), + [anon_sym___bridge] = ACTIONS(4466), + [anon_sym___bridge_retained] = ACTIONS(4466), + [anon_sym___bridge_transfer] = ACTIONS(4466), + [anon_sym___complex] = ACTIONS(4466), + [anon_sym___const] = ACTIONS(4466), + [anon_sym___imag] = ACTIONS(4466), + [anon_sym___kindof] = ACTIONS(4466), + [anon_sym___nonnull] = ACTIONS(4466), + [anon_sym___nullable] = ACTIONS(4466), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4466), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4466), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4466), + [anon_sym___real] = ACTIONS(4466), + [anon_sym___strong] = ACTIONS(4466), + [anon_sym___unsafe_unretained] = ACTIONS(4466), + [anon_sym___unused] = ACTIONS(4466), + [anon_sym___weak] = ACTIONS(4466), + [anon_sym_alignas] = ACTIONS(4466), + [anon_sym__Alignas] = ACTIONS(4466), + [anon_sym_QMARK] = ACTIONS(6342), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4466), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4466), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4466), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4466), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4466), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4466), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4466), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4466), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4466), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4466), + [anon_sym_NS_AVAILABLE] = ACTIONS(4466), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4466), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4466), + [anon_sym_API_AVAILABLE] = ACTIONS(4466), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4466), + [anon_sym_API_DEPRECATED] = ACTIONS(4466), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4466), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4466), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4466), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4466), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4466), + [anon_sym___deprecated_msg] = ACTIONS(4466), + [anon_sym___deprecated_enum_msg] = ACTIONS(4466), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4466), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4466), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4466), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4466), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4466), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4466), + }, + [2499] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4482), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6316), + [anon_sym_COMMA] = ACTIONS(4484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4484), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6318), + [anon_sym_PLUS] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(6320), + [anon_sym_SLASH] = ACTIONS(6322), + [anon_sym_PERCENT] = ACTIONS(6320), + [anon_sym_PIPE_PIPE] = ACTIONS(6324), + [anon_sym_AMP_AMP] = ACTIONS(6326), + [anon_sym_PIPE] = ACTIONS(6328), + [anon_sym_CARET] = ACTIONS(6330), + [anon_sym_AMP] = ACTIONS(6332), + [anon_sym_EQ_EQ] = ACTIONS(6334), + [anon_sym_BANG_EQ] = ACTIONS(6334), + [anon_sym_GT] = ACTIONS(6336), + [anon_sym_GT_EQ] = ACTIONS(6338), + [anon_sym_LT_EQ] = ACTIONS(6338), + [anon_sym_LT] = ACTIONS(6336), + [anon_sym_LT_LT] = ACTIONS(6340), + [anon_sym_GT_GT] = ACTIONS(6340), + [anon_sym___extension__] = ACTIONS(4482), + [anon_sym_extern] = ACTIONS(4482), + [anon_sym___attribute__] = ACTIONS(4482), + [anon_sym___attribute] = ACTIONS(4482), + [anon_sym_noreturn] = ACTIONS(4482), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4482), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_static] = ACTIONS(4482), + [anon_sym_auto] = ACTIONS(4482), + [anon_sym_register] = ACTIONS(4482), + [anon_sym_inline] = ACTIONS(4482), + [anon_sym___inline] = ACTIONS(4482), + [anon_sym___inline__] = ACTIONS(4482), + [anon_sym___forceinline] = ACTIONS(4482), + [anon_sym_thread_local] = ACTIONS(4482), + [anon_sym___thread] = ACTIONS(4482), + [anon_sym_CG_EXTERN] = ACTIONS(4482), + [anon_sym_CG_INLINE] = ACTIONS(4482), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4482), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4482), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4482), + [anon_sym_IBOutlet] = ACTIONS(4482), + [anon_sym_IBInspectable] = ACTIONS(4482), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4482), + [anon_sym_NS_INLINE] = ACTIONS(4482), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4482), + [anon_sym_OBJC_EXPORT] = ACTIONS(4482), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4482), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4482), + [anon_sym_const] = ACTIONS(4482), + [anon_sym_constexpr] = ACTIONS(4482), + [anon_sym_volatile] = ACTIONS(4482), + [anon_sym_restrict] = ACTIONS(4482), + [anon_sym___restrict__] = ACTIONS(4482), + [anon_sym__Atomic] = ACTIONS(4482), + [anon_sym__Noreturn] = ACTIONS(4482), + [anon_sym__Nonnull] = ACTIONS(4482), + [anon_sym_nullable] = ACTIONS(4482), + [anon_sym__Complex] = ACTIONS(4482), + [anon_sym__Nullable] = ACTIONS(4482), + [anon_sym__Nullable_result] = ACTIONS(4482), + [anon_sym__Null_unspecified] = ACTIONS(4482), + [anon_sym___autoreleasing] = ACTIONS(4482), + [anon_sym___block] = ACTIONS(4482), + [anon_sym___bridge] = ACTIONS(4482), + [anon_sym___bridge_retained] = ACTIONS(4482), + [anon_sym___bridge_transfer] = ACTIONS(4482), + [anon_sym___complex] = ACTIONS(4482), + [anon_sym___const] = ACTIONS(4482), + [anon_sym___imag] = ACTIONS(4482), + [anon_sym___kindof] = ACTIONS(4482), + [anon_sym___nonnull] = ACTIONS(4482), + [anon_sym___nullable] = ACTIONS(4482), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4482), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4482), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4482), + [anon_sym___real] = ACTIONS(4482), + [anon_sym___strong] = ACTIONS(4482), + [anon_sym___unsafe_unretained] = ACTIONS(4482), + [anon_sym___unused] = ACTIONS(4482), + [anon_sym___weak] = ACTIONS(4482), + [anon_sym_alignas] = ACTIONS(4482), + [anon_sym__Alignas] = ACTIONS(4482), + [anon_sym_QMARK] = ACTIONS(4484), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4482), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4482), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4482), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4482), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4482), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4482), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4482), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4482), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4482), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4482), + [anon_sym_NS_AVAILABLE] = ACTIONS(4482), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4482), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4482), + [anon_sym_API_AVAILABLE] = ACTIONS(4482), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4482), + [anon_sym_API_DEPRECATED] = ACTIONS(4482), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4482), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4482), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4482), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4482), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4482), + [anon_sym___deprecated_msg] = ACTIONS(4482), + [anon_sym___deprecated_enum_msg] = ACTIONS(4482), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4482), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4482), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4482), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4482), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4482), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4482), + }, + [2500] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4025), + [anon_sym_PLUS] = ACTIONS(4025), + [anon_sym_STAR] = ACTIONS(6320), + [anon_sym_SLASH] = ACTIONS(6322), + [anon_sym_PERCENT] = ACTIONS(6320), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(4025), + [anon_sym_GT_EQ] = ACTIONS(4027), + [anon_sym_LT_EQ] = ACTIONS(4027), + [anon_sym_LT] = ACTIONS(4025), + [anon_sym_LT_LT] = ACTIONS(4027), + [anon_sym_GT_GT] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_RBRACE] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + }, + [2501] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6318), + [anon_sym_PLUS] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(6320), + [anon_sym_SLASH] = ACTIONS(6322), + [anon_sym_PERCENT] = ACTIONS(6320), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(6326), + [anon_sym_PIPE] = ACTIONS(6328), + [anon_sym_CARET] = ACTIONS(6330), + [anon_sym_AMP] = ACTIONS(6332), + [anon_sym_EQ_EQ] = ACTIONS(6334), + [anon_sym_BANG_EQ] = ACTIONS(6334), + [anon_sym_GT] = ACTIONS(6336), + [anon_sym_GT_EQ] = ACTIONS(6338), + [anon_sym_LT_EQ] = ACTIONS(6338), + [anon_sym_LT] = ACTIONS(6336), + [anon_sym_LT_LT] = ACTIONS(6340), + [anon_sym_GT_GT] = ACTIONS(6340), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_RBRACE] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + }, + [2502] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6318), + [anon_sym_PLUS] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(6320), + [anon_sym_SLASH] = ACTIONS(6322), + [anon_sym_PERCENT] = ACTIONS(6320), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(6328), + [anon_sym_CARET] = ACTIONS(6330), + [anon_sym_AMP] = ACTIONS(6332), + [anon_sym_EQ_EQ] = ACTIONS(6334), + [anon_sym_BANG_EQ] = ACTIONS(6334), + [anon_sym_GT] = ACTIONS(6336), + [anon_sym_GT_EQ] = ACTIONS(6338), + [anon_sym_LT_EQ] = ACTIONS(6338), + [anon_sym_LT] = ACTIONS(6336), + [anon_sym_LT_LT] = ACTIONS(6340), + [anon_sym_GT_GT] = ACTIONS(6340), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_RBRACE] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + }, + [2503] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6318), + [anon_sym_PLUS] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(6320), + [anon_sym_SLASH] = ACTIONS(6322), + [anon_sym_PERCENT] = ACTIONS(6320), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(6330), + [anon_sym_AMP] = ACTIONS(6332), + [anon_sym_EQ_EQ] = ACTIONS(6334), + [anon_sym_BANG_EQ] = ACTIONS(6334), + [anon_sym_GT] = ACTIONS(6336), + [anon_sym_GT_EQ] = ACTIONS(6338), + [anon_sym_LT_EQ] = ACTIONS(6338), + [anon_sym_LT] = ACTIONS(6336), + [anon_sym_LT_LT] = ACTIONS(6340), + [anon_sym_GT_GT] = ACTIONS(6340), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_RBRACE] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + }, + [2504] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6318), + [anon_sym_PLUS] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(6320), + [anon_sym_SLASH] = ACTIONS(6322), + [anon_sym_PERCENT] = ACTIONS(6320), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(6332), + [anon_sym_EQ_EQ] = ACTIONS(6334), + [anon_sym_BANG_EQ] = ACTIONS(6334), + [anon_sym_GT] = ACTIONS(6336), + [anon_sym_GT_EQ] = ACTIONS(6338), + [anon_sym_LT_EQ] = ACTIONS(6338), + [anon_sym_LT] = ACTIONS(6336), + [anon_sym_LT_LT] = ACTIONS(6340), + [anon_sym_GT_GT] = ACTIONS(6340), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_RBRACE] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + }, + [2505] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6318), + [anon_sym_PLUS] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(6320), + [anon_sym_SLASH] = ACTIONS(6322), + [anon_sym_PERCENT] = ACTIONS(6320), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(6334), + [anon_sym_BANG_EQ] = ACTIONS(6334), + [anon_sym_GT] = ACTIONS(6336), + [anon_sym_GT_EQ] = ACTIONS(6338), + [anon_sym_LT_EQ] = ACTIONS(6338), + [anon_sym_LT] = ACTIONS(6336), + [anon_sym_LT_LT] = ACTIONS(6340), + [anon_sym_GT_GT] = ACTIONS(6340), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_RBRACE] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + }, + [2506] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6318), + [anon_sym_PLUS] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(6320), + [anon_sym_SLASH] = ACTIONS(6322), + [anon_sym_PERCENT] = ACTIONS(6320), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(6336), + [anon_sym_GT_EQ] = ACTIONS(6338), + [anon_sym_LT_EQ] = ACTIONS(6338), + [anon_sym_LT] = ACTIONS(6336), + [anon_sym_LT_LT] = ACTIONS(6340), + [anon_sym_GT_GT] = ACTIONS(6340), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_RBRACE] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + }, + [2507] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6318), + [anon_sym_PLUS] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(6320), + [anon_sym_SLASH] = ACTIONS(6322), + [anon_sym_PERCENT] = ACTIONS(6320), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(4025), + [anon_sym_GT_EQ] = ACTIONS(4027), + [anon_sym_LT_EQ] = ACTIONS(4027), + [anon_sym_LT] = ACTIONS(4025), + [anon_sym_LT_LT] = ACTIONS(6340), + [anon_sym_GT_GT] = ACTIONS(6340), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_RBRACE] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + }, + [2508] = { + [sym_type_qualifier] = STATE(2508), + [sym_alignas_qualifier] = STATE(2368), + [aux_sym__type_definition_type_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(6344), + [anon_sym_COMMA] = ACTIONS(6346), + [anon_sym_RPAREN] = ACTIONS(6346), + [anon_sym_LPAREN2] = ACTIONS(6346), + [anon_sym_STAR] = ACTIONS(6346), + [anon_sym_CARET] = ACTIONS(6346), + [anon_sym_GT] = ACTIONS(6346), + [anon_sym_SEMI] = ACTIONS(6346), + [anon_sym___extension__] = ACTIONS(6348), + [anon_sym_extern] = ACTIONS(6344), + [anon_sym___attribute__] = ACTIONS(6344), + [anon_sym___attribute] = ACTIONS(6344), + [anon_sym_noreturn] = ACTIONS(6348), + [anon_sym_LBRACK] = ACTIONS(6346), + [anon_sym___declspec] = ACTIONS(6344), + [anon_sym___based] = ACTIONS(6344), + [anon_sym_LBRACE] = ACTIONS(6346), + [anon_sym_signed] = ACTIONS(6344), + [anon_sym_unsigned] = ACTIONS(6344), + [anon_sym_long] = ACTIONS(6344), + [anon_sym_short] = ACTIONS(6344), + [anon_sym_static] = ACTIONS(6344), + [anon_sym_ATautoreleasepool] = ACTIONS(6346), + [anon_sym_auto] = ACTIONS(6344), + [anon_sym_register] = ACTIONS(6344), + [anon_sym_inline] = ACTIONS(6344), + [anon_sym___inline] = ACTIONS(6344), + [anon_sym___inline__] = ACTIONS(6344), + [anon_sym___forceinline] = ACTIONS(6344), + [anon_sym_thread_local] = ACTIONS(6344), + [anon_sym___thread] = ACTIONS(6344), + [anon_sym_CG_EXTERN] = ACTIONS(6344), + [anon_sym_CG_INLINE] = ACTIONS(6344), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6344), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6344), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6344), + [anon_sym_IBOutlet] = ACTIONS(6344), + [anon_sym_IBInspectable] = ACTIONS(6344), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6344), + [anon_sym_NS_INLINE] = ACTIONS(6344), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6344), + [anon_sym_OBJC_EXPORT] = ACTIONS(6344), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6344), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6344), + [anon_sym_const] = ACTIONS(6348), + [anon_sym_constexpr] = ACTIONS(6348), + [anon_sym_volatile] = ACTIONS(6348), + [anon_sym_restrict] = ACTIONS(6348), + [anon_sym___restrict__] = ACTIONS(6348), + [anon_sym__Atomic] = ACTIONS(6348), + [anon_sym__Noreturn] = ACTIONS(6348), + [anon_sym__Nonnull] = ACTIONS(6348), + [anon_sym_nullable] = ACTIONS(6348), + [anon_sym__Complex] = ACTIONS(6348), + [anon_sym__Nullable] = ACTIONS(6348), + [anon_sym__Nullable_result] = ACTIONS(6348), + [anon_sym__Null_unspecified] = ACTIONS(6348), + [anon_sym___autoreleasing] = ACTIONS(6348), + [anon_sym___block] = ACTIONS(6348), + [anon_sym___bridge] = ACTIONS(6348), + [anon_sym___bridge_retained] = ACTIONS(6348), + [anon_sym___bridge_transfer] = ACTIONS(6348), + [anon_sym___complex] = ACTIONS(6348), + [anon_sym___const] = ACTIONS(6348), + [anon_sym___imag] = ACTIONS(6348), + [anon_sym___kindof] = ACTIONS(6348), + [anon_sym___nonnull] = ACTIONS(6348), + [anon_sym___nullable] = ACTIONS(6348), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6348), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6348), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6348), + [anon_sym___real] = ACTIONS(6348), + [anon_sym___strong] = ACTIONS(6348), + [anon_sym___unsafe_unretained] = ACTIONS(6348), + [anon_sym___unused] = ACTIONS(6348), + [anon_sym___weak] = ACTIONS(6348), + [anon_sym_alignas] = ACTIONS(6351), + [anon_sym__Alignas] = ACTIONS(6351), + [sym_primitive_type] = ACTIONS(6344), + [anon_sym_enum] = ACTIONS(6344), + [anon_sym_COLON] = ACTIONS(6346), + [anon_sym_struct] = ACTIONS(6344), + [anon_sym_union] = ACTIONS(6344), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6344), + [anon_sym___typeof] = ACTIONS(6344), + [anon_sym_typeof] = ACTIONS(6344), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6344), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6344), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6344), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6344), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6344), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6344), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6344), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6344), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6344), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6344), + [anon_sym_NS_AVAILABLE] = ACTIONS(6344), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6344), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6344), + [anon_sym_API_AVAILABLE] = ACTIONS(6344), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6344), + [anon_sym_API_DEPRECATED] = ACTIONS(6344), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6344), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6344), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6344), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6344), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6344), + [anon_sym___deprecated_msg] = ACTIONS(6344), + [anon_sym___deprecated_enum_msg] = ACTIONS(6344), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6344), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6344), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6344), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6344), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6344), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6344), + [anon_sym_BOOL] = ACTIONS(6344), + [anon_sym_IMP] = ACTIONS(6344), + [anon_sym_SEL] = ACTIONS(6344), + [anon_sym_Class] = ACTIONS(6344), + [anon_sym_id] = ACTIONS(6344), + }, + [2509] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4486), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6316), + [anon_sym_COMMA] = ACTIONS(4488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4488), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6318), + [anon_sym_PLUS] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(6320), + [anon_sym_SLASH] = ACTIONS(6322), + [anon_sym_PERCENT] = ACTIONS(6320), + [anon_sym_PIPE_PIPE] = ACTIONS(6324), + [anon_sym_AMP_AMP] = ACTIONS(6326), + [anon_sym_PIPE] = ACTIONS(6328), + [anon_sym_CARET] = ACTIONS(6330), + [anon_sym_AMP] = ACTIONS(6332), + [anon_sym_EQ_EQ] = ACTIONS(6334), + [anon_sym_BANG_EQ] = ACTIONS(6334), + [anon_sym_GT] = ACTIONS(6336), + [anon_sym_GT_EQ] = ACTIONS(6338), + [anon_sym_LT_EQ] = ACTIONS(6338), + [anon_sym_LT] = ACTIONS(6336), + [anon_sym_LT_LT] = ACTIONS(6340), + [anon_sym_GT_GT] = ACTIONS(6340), + [anon_sym___extension__] = ACTIONS(4486), + [anon_sym_extern] = ACTIONS(4486), + [anon_sym___attribute__] = ACTIONS(4486), + [anon_sym___attribute] = ACTIONS(4486), + [anon_sym_noreturn] = ACTIONS(4486), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4486), + [anon_sym_RBRACE] = ACTIONS(4488), + [anon_sym_static] = ACTIONS(4486), + [anon_sym_auto] = ACTIONS(4486), + [anon_sym_register] = ACTIONS(4486), + [anon_sym_inline] = ACTIONS(4486), + [anon_sym___inline] = ACTIONS(4486), + [anon_sym___inline__] = ACTIONS(4486), + [anon_sym___forceinline] = ACTIONS(4486), + [anon_sym_thread_local] = ACTIONS(4486), + [anon_sym___thread] = ACTIONS(4486), + [anon_sym_CG_EXTERN] = ACTIONS(4486), + [anon_sym_CG_INLINE] = ACTIONS(4486), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4486), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4486), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4486), + [anon_sym_IBOutlet] = ACTIONS(4486), + [anon_sym_IBInspectable] = ACTIONS(4486), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4486), + [anon_sym_NS_INLINE] = ACTIONS(4486), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4486), + [anon_sym_OBJC_EXPORT] = ACTIONS(4486), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4486), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4486), + [anon_sym_const] = ACTIONS(4486), + [anon_sym_constexpr] = ACTIONS(4486), + [anon_sym_volatile] = ACTIONS(4486), + [anon_sym_restrict] = ACTIONS(4486), + [anon_sym___restrict__] = ACTIONS(4486), + [anon_sym__Atomic] = ACTIONS(4486), + [anon_sym__Noreturn] = ACTIONS(4486), + [anon_sym__Nonnull] = ACTIONS(4486), + [anon_sym_nullable] = ACTIONS(4486), + [anon_sym__Complex] = ACTIONS(4486), + [anon_sym__Nullable] = ACTIONS(4486), + [anon_sym__Nullable_result] = ACTIONS(4486), + [anon_sym__Null_unspecified] = ACTIONS(4486), + [anon_sym___autoreleasing] = ACTIONS(4486), + [anon_sym___block] = ACTIONS(4486), + [anon_sym___bridge] = ACTIONS(4486), + [anon_sym___bridge_retained] = ACTIONS(4486), + [anon_sym___bridge_transfer] = ACTIONS(4486), + [anon_sym___complex] = ACTIONS(4486), + [anon_sym___const] = ACTIONS(4486), + [anon_sym___imag] = ACTIONS(4486), + [anon_sym___kindof] = ACTIONS(4486), + [anon_sym___nonnull] = ACTIONS(4486), + [anon_sym___nullable] = ACTIONS(4486), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4486), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4486), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4486), + [anon_sym___real] = ACTIONS(4486), + [anon_sym___strong] = ACTIONS(4486), + [anon_sym___unsafe_unretained] = ACTIONS(4486), + [anon_sym___unused] = ACTIONS(4486), + [anon_sym___weak] = ACTIONS(4486), + [anon_sym_alignas] = ACTIONS(4486), + [anon_sym__Alignas] = ACTIONS(4486), + [anon_sym_QMARK] = ACTIONS(6342), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4486), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4486), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4486), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4486), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4486), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4486), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4486), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4486), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4486), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4486), + [anon_sym_NS_AVAILABLE] = ACTIONS(4486), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4486), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4486), + [anon_sym_API_AVAILABLE] = ACTIONS(4486), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4486), + [anon_sym_API_DEPRECATED] = ACTIONS(4486), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4486), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4486), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4486), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4486), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4486), + [anon_sym___deprecated_msg] = ACTIONS(4486), + [anon_sym___deprecated_enum_msg] = ACTIONS(4486), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4486), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4486), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4486), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4486), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4486), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4486), + }, + [2510] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4474), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6316), + [anon_sym_COMMA] = ACTIONS(4476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4476), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6318), + [anon_sym_PLUS] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(6320), + [anon_sym_SLASH] = ACTIONS(6322), + [anon_sym_PERCENT] = ACTIONS(6320), + [anon_sym_PIPE_PIPE] = ACTIONS(6324), + [anon_sym_AMP_AMP] = ACTIONS(6326), + [anon_sym_PIPE] = ACTIONS(6328), + [anon_sym_CARET] = ACTIONS(6330), + [anon_sym_AMP] = ACTIONS(6332), + [anon_sym_EQ_EQ] = ACTIONS(6334), + [anon_sym_BANG_EQ] = ACTIONS(6334), + [anon_sym_GT] = ACTIONS(6336), + [anon_sym_GT_EQ] = ACTIONS(6338), + [anon_sym_LT_EQ] = ACTIONS(6338), + [anon_sym_LT] = ACTIONS(6336), + [anon_sym_LT_LT] = ACTIONS(6340), + [anon_sym_GT_GT] = ACTIONS(6340), + [anon_sym___extension__] = ACTIONS(4474), + [anon_sym_extern] = ACTIONS(4474), + [anon_sym___attribute__] = ACTIONS(4474), + [anon_sym___attribute] = ACTIONS(4474), + [anon_sym_noreturn] = ACTIONS(4474), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4474), + [anon_sym_RBRACE] = ACTIONS(4476), + [anon_sym_static] = ACTIONS(4474), + [anon_sym_auto] = ACTIONS(4474), + [anon_sym_register] = ACTIONS(4474), + [anon_sym_inline] = ACTIONS(4474), + [anon_sym___inline] = ACTIONS(4474), + [anon_sym___inline__] = ACTIONS(4474), + [anon_sym___forceinline] = ACTIONS(4474), + [anon_sym_thread_local] = ACTIONS(4474), + [anon_sym___thread] = ACTIONS(4474), + [anon_sym_CG_EXTERN] = ACTIONS(4474), + [anon_sym_CG_INLINE] = ACTIONS(4474), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4474), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4474), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4474), + [anon_sym_IBOutlet] = ACTIONS(4474), + [anon_sym_IBInspectable] = ACTIONS(4474), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4474), + [anon_sym_NS_INLINE] = ACTIONS(4474), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4474), + [anon_sym_OBJC_EXPORT] = ACTIONS(4474), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4474), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4474), + [anon_sym_const] = ACTIONS(4474), + [anon_sym_constexpr] = ACTIONS(4474), + [anon_sym_volatile] = ACTIONS(4474), + [anon_sym_restrict] = ACTIONS(4474), + [anon_sym___restrict__] = ACTIONS(4474), + [anon_sym__Atomic] = ACTIONS(4474), + [anon_sym__Noreturn] = ACTIONS(4474), + [anon_sym__Nonnull] = ACTIONS(4474), + [anon_sym_nullable] = ACTIONS(4474), + [anon_sym__Complex] = ACTIONS(4474), + [anon_sym__Nullable] = ACTIONS(4474), + [anon_sym__Nullable_result] = ACTIONS(4474), + [anon_sym__Null_unspecified] = ACTIONS(4474), + [anon_sym___autoreleasing] = ACTIONS(4474), + [anon_sym___block] = ACTIONS(4474), + [anon_sym___bridge] = ACTIONS(4474), + [anon_sym___bridge_retained] = ACTIONS(4474), + [anon_sym___bridge_transfer] = ACTIONS(4474), + [anon_sym___complex] = ACTIONS(4474), + [anon_sym___const] = ACTIONS(4474), + [anon_sym___imag] = ACTIONS(4474), + [anon_sym___kindof] = ACTIONS(4474), + [anon_sym___nonnull] = ACTIONS(4474), + [anon_sym___nullable] = ACTIONS(4474), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4474), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4474), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4474), + [anon_sym___real] = ACTIONS(4474), + [anon_sym___strong] = ACTIONS(4474), + [anon_sym___unsafe_unretained] = ACTIONS(4474), + [anon_sym___unused] = ACTIONS(4474), + [anon_sym___weak] = ACTIONS(4474), + [anon_sym_alignas] = ACTIONS(4474), + [anon_sym__Alignas] = ACTIONS(4474), + [anon_sym_QMARK] = ACTIONS(6342), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4474), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4474), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4474), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4474), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4474), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4474), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4474), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4474), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4474), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4474), + [anon_sym_NS_AVAILABLE] = ACTIONS(4474), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4474), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4474), + [anon_sym_API_AVAILABLE] = ACTIONS(4474), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4474), + [anon_sym_API_DEPRECATED] = ACTIONS(4474), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4474), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4474), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4474), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4474), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4474), + [anon_sym___deprecated_msg] = ACTIONS(4474), + [anon_sym___deprecated_enum_msg] = ACTIONS(4474), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4474), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4474), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4474), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4474), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4474), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4474), + }, + [2511] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3850), + [sym__abstract_declarator] = STATE(5004), + [sym_parenthesized_declarator] = STATE(4011), + [sym_abstract_parenthesized_declarator] = STATE(4894), + [sym_pointer_declarator] = STATE(4011), + [sym_abstract_pointer_declarator] = STATE(4894), + [sym_function_declarator] = STATE(4011), + [sym_abstract_function_declarator] = STATE(4894), + [sym_array_declarator] = STATE(4011), + [sym_abstract_array_declarator] = STATE(4894), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(4295), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_declarator] = STATE(4011), + [sym_abstract_block_pointer_declarator] = STATE(4894), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5281), + [anon_sym_COMMA] = ACTIONS(6354), + [anon_sym_RPAREN] = ACTIONS(6354), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(5285), + [anon_sym_CARET] = ACTIONS(5287), + [anon_sym_GT] = ACTIONS(6354), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2512] = { + [sym__declaration_modifiers] = STATE(2523), + [sym_attribute_specifier] = STATE(2523), + [sym_attribute_declaration] = STATE(2523), + [sym_ms_declspec_modifier] = STATE(2523), + [sym_storage_class_specifier] = STATE(2523), + [sym_type_qualifier] = STATE(2523), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2523), + [aux_sym__declaration_specifiers_repeat1] = STATE(2523), + [sym_identifier] = ACTIONS(6272), + [anon_sym_COMMA] = ACTIONS(6270), + [anon_sym_SEMI] = ACTIONS(6270), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(6270), + [anon_sym_signed] = ACTIONS(6272), + [anon_sym_unsigned] = ACTIONS(6272), + [anon_sym_long] = ACTIONS(6272), + [anon_sym_short] = ACTIONS(6272), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(6270), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(6272), + [anon_sym_enum] = ACTIONS(6272), + [anon_sym_COLON] = ACTIONS(6270), + [anon_sym_struct] = ACTIONS(6272), + [anon_sym_union] = ACTIONS(6272), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6272), + [anon_sym___typeof] = ACTIONS(6272), + [anon_sym_typeof] = ACTIONS(6272), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(6272), + [anon_sym_IMP] = ACTIONS(6272), + [anon_sym_SEL] = ACTIONS(6272), + [anon_sym_Class] = ACTIONS(6272), + [anon_sym_id] = ACTIONS(6272), + }, + [2513] = { + [sym__declaration_modifiers] = STATE(2522), + [sym_attribute_specifier] = STATE(2522), + [sym_attribute_declaration] = STATE(2522), + [sym_ms_declspec_modifier] = STATE(2522), + [sym_storage_class_specifier] = STATE(2522), + [sym_type_qualifier] = STATE(2522), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2522), + [aux_sym__declaration_specifiers_repeat1] = STATE(2522), + [sym_identifier] = ACTIONS(6212), + [anon_sym_COMMA] = ACTIONS(6210), + [anon_sym_SEMI] = ACTIONS(6210), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(6210), + [anon_sym_signed] = ACTIONS(6212), + [anon_sym_unsigned] = ACTIONS(6212), + [anon_sym_long] = ACTIONS(6212), + [anon_sym_short] = ACTIONS(6212), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(6210), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(6212), + [anon_sym_enum] = ACTIONS(6212), + [anon_sym_COLON] = ACTIONS(6210), + [anon_sym_struct] = ACTIONS(6212), + [anon_sym_union] = ACTIONS(6212), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6212), + [anon_sym___typeof] = ACTIONS(6212), + [anon_sym_typeof] = ACTIONS(6212), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(6212), + [anon_sym_IMP] = ACTIONS(6212), + [anon_sym_SEL] = ACTIONS(6212), + [anon_sym_Class] = ACTIONS(6212), + [anon_sym_id] = ACTIONS(6212), + }, + [2514] = { + [sym__declaration_modifiers] = STATE(2523), + [sym_attribute_specifier] = STATE(2523), + [sym_attribute_declaration] = STATE(2523), + [sym_ms_declspec_modifier] = STATE(2523), + [sym_storage_class_specifier] = STATE(2523), + [sym_type_qualifier] = STATE(2523), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2523), + [aux_sym__declaration_specifiers_repeat1] = STATE(2523), + [sym_identifier] = ACTIONS(6356), + [anon_sym_COMMA] = ACTIONS(6359), + [anon_sym_SEMI] = ACTIONS(6359), + [anon_sym___extension__] = ACTIONS(6362), + [anon_sym_extern] = ACTIONS(6366), + [anon_sym___attribute__] = ACTIONS(6370), + [anon_sym___attribute] = ACTIONS(6370), + [anon_sym_noreturn] = ACTIONS(6362), + [anon_sym_LBRACK] = ACTIONS(6374), + [anon_sym___declspec] = ACTIONS(6378), + [anon_sym_LBRACE] = ACTIONS(6359), + [anon_sym_signed] = ACTIONS(6356), + [anon_sym_unsigned] = ACTIONS(6356), + [anon_sym_long] = ACTIONS(6356), + [anon_sym_short] = ACTIONS(6356), + [anon_sym_static] = ACTIONS(6366), + [anon_sym_ATautoreleasepool] = ACTIONS(6359), + [anon_sym_auto] = ACTIONS(6366), + [anon_sym_register] = ACTIONS(6366), + [anon_sym_inline] = ACTIONS(6366), + [anon_sym___inline] = ACTIONS(6366), + [anon_sym___inline__] = ACTIONS(6366), + [anon_sym___forceinline] = ACTIONS(6366), + [anon_sym_thread_local] = ACTIONS(6366), + [anon_sym___thread] = ACTIONS(6366), + [anon_sym_CG_EXTERN] = ACTIONS(6366), + [anon_sym_CG_INLINE] = ACTIONS(6366), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6366), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6366), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6366), + [anon_sym_IBOutlet] = ACTIONS(6366), + [anon_sym_IBInspectable] = ACTIONS(6366), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6366), + [anon_sym_NS_INLINE] = ACTIONS(6366), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6366), + [anon_sym_OBJC_EXPORT] = ACTIONS(6366), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6366), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6366), + [anon_sym_const] = ACTIONS(6362), + [anon_sym_constexpr] = ACTIONS(6362), + [anon_sym_volatile] = ACTIONS(6362), + [anon_sym_restrict] = ACTIONS(6362), + [anon_sym___restrict__] = ACTIONS(6362), + [anon_sym__Atomic] = ACTIONS(6362), + [anon_sym__Noreturn] = ACTIONS(6362), + [anon_sym__Nonnull] = ACTIONS(6362), + [anon_sym_nullable] = ACTIONS(6362), + [anon_sym__Complex] = ACTIONS(6362), + [anon_sym__Nullable] = ACTIONS(6362), + [anon_sym__Nullable_result] = ACTIONS(6362), + [anon_sym__Null_unspecified] = ACTIONS(6362), + [anon_sym___autoreleasing] = ACTIONS(6362), + [anon_sym___block] = ACTIONS(6362), + [anon_sym___bridge] = ACTIONS(6362), + [anon_sym___bridge_retained] = ACTIONS(6362), + [anon_sym___bridge_transfer] = ACTIONS(6362), + [anon_sym___complex] = ACTIONS(6362), + [anon_sym___const] = ACTIONS(6362), + [anon_sym___imag] = ACTIONS(6362), + [anon_sym___kindof] = ACTIONS(6362), + [anon_sym___nonnull] = ACTIONS(6362), + [anon_sym___nullable] = ACTIONS(6362), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6362), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6362), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6362), + [anon_sym___real] = ACTIONS(6362), + [anon_sym___strong] = ACTIONS(6362), + [anon_sym___unsafe_unretained] = ACTIONS(6362), + [anon_sym___unused] = ACTIONS(6362), + [anon_sym___weak] = ACTIONS(6362), + [anon_sym_alignas] = ACTIONS(6382), + [anon_sym__Alignas] = ACTIONS(6382), + [sym_primitive_type] = ACTIONS(6356), + [anon_sym_enum] = ACTIONS(6356), + [anon_sym_COLON] = ACTIONS(6359), + [anon_sym_struct] = ACTIONS(6356), + [anon_sym_union] = ACTIONS(6356), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6356), + [anon_sym___typeof] = ACTIONS(6356), + [anon_sym_typeof] = ACTIONS(6356), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6386), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6386), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6386), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6386), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6386), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6386), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6386), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6386), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6386), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6390), + [anon_sym_NS_AVAILABLE] = ACTIONS(6390), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6390), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6390), + [anon_sym_API_AVAILABLE] = ACTIONS(6390), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6390), + [anon_sym_API_DEPRECATED] = ACTIONS(6390), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6390), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6390), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6390), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6390), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6390), + [anon_sym___deprecated_msg] = ACTIONS(6390), + [anon_sym___deprecated_enum_msg] = ACTIONS(6390), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6390), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6390), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6390), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6390), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6390), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6390), + [anon_sym_BOOL] = ACTIONS(6356), + [anon_sym_IMP] = ACTIONS(6356), + [anon_sym_SEL] = ACTIONS(6356), + [anon_sym_Class] = ACTIONS(6356), + [anon_sym_id] = ACTIONS(6356), + }, + [2515] = { + [sym__declaration_modifiers] = STATE(2516), + [sym_attribute_specifier] = STATE(2516), + [sym_attribute_declaration] = STATE(2516), + [sym_ms_declspec_modifier] = STATE(2516), + [sym_storage_class_specifier] = STATE(2516), + [sym_type_qualifier] = STATE(2516), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2516), + [aux_sym__declaration_specifiers_repeat1] = STATE(2516), + [sym_identifier] = ACTIONS(6208), + [anon_sym_COMMA] = ACTIONS(6206), + [anon_sym_SEMI] = ACTIONS(6206), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(6206), + [anon_sym_signed] = ACTIONS(6208), + [anon_sym_unsigned] = ACTIONS(6208), + [anon_sym_long] = ACTIONS(6208), + [anon_sym_short] = ACTIONS(6208), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(6206), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(6208), + [anon_sym_enum] = ACTIONS(6208), + [anon_sym_COLON] = ACTIONS(6206), + [anon_sym_struct] = ACTIONS(6208), + [anon_sym_union] = ACTIONS(6208), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6208), + [anon_sym___typeof] = ACTIONS(6208), + [anon_sym_typeof] = ACTIONS(6208), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(6208), + [anon_sym_IMP] = ACTIONS(6208), + [anon_sym_SEL] = ACTIONS(6208), + [anon_sym_Class] = ACTIONS(6208), + [anon_sym_id] = ACTIONS(6208), + }, + [2516] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(6394), + [anon_sym_COMMA] = ACTIONS(6396), + [anon_sym_SEMI] = ACTIONS(6396), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(6396), + [anon_sym_signed] = ACTIONS(6394), + [anon_sym_unsigned] = ACTIONS(6394), + [anon_sym_long] = ACTIONS(6394), + [anon_sym_short] = ACTIONS(6394), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(6396), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(6394), + [anon_sym_enum] = ACTIONS(6394), + [anon_sym_COLON] = ACTIONS(6396), + [anon_sym_struct] = ACTIONS(6394), + [anon_sym_union] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6394), + [anon_sym___typeof] = ACTIONS(6394), + [anon_sym_typeof] = ACTIONS(6394), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(6394), + [anon_sym_IMP] = ACTIONS(6394), + [anon_sym_SEL] = ACTIONS(6394), + [anon_sym_Class] = ACTIONS(6394), + [anon_sym_id] = ACTIONS(6394), + }, + [2517] = { + [sym__declaration_modifiers] = STATE(2519), + [sym_attribute_specifier] = STATE(2519), + [sym_attribute_declaration] = STATE(2519), + [sym_ms_declspec_modifier] = STATE(2519), + [sym_storage_class_specifier] = STATE(2519), + [sym_type_qualifier] = STATE(2519), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2519), + [aux_sym__declaration_specifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(6274), + [anon_sym_COMMA] = ACTIONS(6277), + [anon_sym_SEMI] = ACTIONS(6266), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(6266), + [anon_sym_signed] = ACTIONS(6268), + [anon_sym_unsigned] = ACTIONS(6268), + [anon_sym_long] = ACTIONS(6268), + [anon_sym_short] = ACTIONS(6268), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(6266), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(6268), + [anon_sym_enum] = ACTIONS(6268), + [anon_sym_COLON] = ACTIONS(6277), + [anon_sym_struct] = ACTIONS(6268), + [anon_sym_union] = ACTIONS(6268), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6268), + [anon_sym___typeof] = ACTIONS(6268), + [anon_sym_typeof] = ACTIONS(6268), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(6268), + [anon_sym_IMP] = ACTIONS(6268), + [anon_sym_SEL] = ACTIONS(6268), + [anon_sym_Class] = ACTIONS(6268), + [anon_sym_id] = ACTIONS(6268), + }, + [2518] = { + [sym_type_qualifier] = STATE(3731), + [sym_alignas_qualifier] = STATE(3575), + [sym_expression] = STATE(4532), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(2637), + [aux_sym_array_declarator_repeat1] = STATE(2549), + [sym_identifier] = ACTIONS(2916), + [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(6398), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6400), + [anon_sym_noreturn] = ACTIONS(6402), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(6404), + [anon_sym_static] = ACTIONS(6406), + [anon_sym_const] = ACTIONS(6408), + [anon_sym_constexpr] = ACTIONS(6402), + [anon_sym_volatile] = ACTIONS(6402), + [anon_sym_restrict] = ACTIONS(6402), + [anon_sym___restrict__] = ACTIONS(6402), + [anon_sym__Atomic] = ACTIONS(6402), + [anon_sym__Noreturn] = ACTIONS(6402), + [anon_sym__Nonnull] = ACTIONS(6402), + [anon_sym_nullable] = ACTIONS(6402), + [anon_sym__Complex] = ACTIONS(6402), + [anon_sym__Nullable] = ACTIONS(6402), + [anon_sym__Nullable_result] = ACTIONS(6402), + [anon_sym__Null_unspecified] = ACTIONS(6402), + [anon_sym___autoreleasing] = ACTIONS(6402), + [anon_sym___block] = ACTIONS(6402), + [anon_sym___bridge] = ACTIONS(6402), + [anon_sym___bridge_retained] = ACTIONS(6402), + [anon_sym___bridge_transfer] = ACTIONS(6402), + [anon_sym___complex] = ACTIONS(6402), + [anon_sym___const] = ACTIONS(6402), + [anon_sym___imag] = ACTIONS(6410), + [anon_sym___kindof] = ACTIONS(6402), + [anon_sym___nonnull] = ACTIONS(6402), + [anon_sym___nullable] = ACTIONS(6402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6402), + [anon_sym___real] = ACTIONS(6410), + [anon_sym___strong] = ACTIONS(6402), + [anon_sym___unsafe_unretained] = ACTIONS(6402), + [anon_sym___unused] = ACTIONS(6402), + [anon_sym___weak] = ACTIONS(6402), + [anon_sym_alignas] = ACTIONS(6412), + [anon_sym__Alignas] = ACTIONS(6412), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2519] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(6256), + [anon_sym_COMMA] = ACTIONS(6258), + [anon_sym_SEMI] = ACTIONS(6258), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(6258), + [anon_sym_signed] = ACTIONS(6256), + [anon_sym_unsigned] = ACTIONS(6256), + [anon_sym_long] = ACTIONS(6256), + [anon_sym_short] = ACTIONS(6256), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(6258), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(6256), + [anon_sym_enum] = ACTIONS(6256), + [anon_sym_COLON] = ACTIONS(6258), + [anon_sym_struct] = ACTIONS(6256), + [anon_sym_union] = ACTIONS(6256), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6256), + [anon_sym___typeof] = ACTIONS(6256), + [anon_sym_typeof] = ACTIONS(6256), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(6256), + [anon_sym_IMP] = ACTIONS(6256), + [anon_sym_SEL] = ACTIONS(6256), + [anon_sym_Class] = ACTIONS(6256), + [anon_sym_id] = ACTIONS(6256), + }, + [2520] = { + [sym__declaration_modifiers] = STATE(2519), + [sym_attribute_specifier] = STATE(2519), + [sym_attribute_declaration] = STATE(2519), + [sym_ms_declspec_modifier] = STATE(2519), + [sym_storage_class_specifier] = STATE(2519), + [sym_type_qualifier] = STATE(2519), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2519), + [aux_sym__declaration_specifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(6260), + [anon_sym_COMMA] = ACTIONS(6263), + [anon_sym_SEMI] = ACTIONS(6263), + [anon_sym___extension__] = ACTIONS(6414), + [anon_sym_extern] = ACTIONS(6418), + [anon_sym___attribute__] = ACTIONS(6422), + [anon_sym___attribute] = ACTIONS(6422), + [anon_sym_noreturn] = ACTIONS(6414), + [anon_sym_LBRACK] = ACTIONS(6426), + [anon_sym___declspec] = ACTIONS(6430), + [anon_sym_LBRACE] = ACTIONS(6263), + [anon_sym_signed] = ACTIONS(6260), + [anon_sym_unsigned] = ACTIONS(6260), + [anon_sym_long] = ACTIONS(6260), + [anon_sym_short] = ACTIONS(6260), + [anon_sym_static] = ACTIONS(6418), + [anon_sym_ATautoreleasepool] = ACTIONS(6263), + [anon_sym_auto] = ACTIONS(6418), + [anon_sym_register] = ACTIONS(6418), + [anon_sym_inline] = ACTIONS(6418), + [anon_sym___inline] = ACTIONS(6418), + [anon_sym___inline__] = ACTIONS(6418), + [anon_sym___forceinline] = ACTIONS(6418), + [anon_sym_thread_local] = ACTIONS(6418), + [anon_sym___thread] = ACTIONS(6418), + [anon_sym_CG_EXTERN] = ACTIONS(6418), + [anon_sym_CG_INLINE] = ACTIONS(6418), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6418), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6418), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6418), + [anon_sym_IBOutlet] = ACTIONS(6418), + [anon_sym_IBInspectable] = ACTIONS(6418), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6418), + [anon_sym_NS_INLINE] = ACTIONS(6418), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6418), + [anon_sym_OBJC_EXPORT] = ACTIONS(6418), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6418), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6418), + [anon_sym_const] = ACTIONS(6414), + [anon_sym_constexpr] = ACTIONS(6414), + [anon_sym_volatile] = ACTIONS(6414), + [anon_sym_restrict] = ACTIONS(6414), + [anon_sym___restrict__] = ACTIONS(6414), + [anon_sym__Atomic] = ACTIONS(6414), + [anon_sym__Noreturn] = ACTIONS(6414), + [anon_sym__Nonnull] = ACTIONS(6414), + [anon_sym_nullable] = ACTIONS(6414), + [anon_sym__Complex] = ACTIONS(6414), + [anon_sym__Nullable] = ACTIONS(6414), + [anon_sym__Nullable_result] = ACTIONS(6414), + [anon_sym__Null_unspecified] = ACTIONS(6414), + [anon_sym___autoreleasing] = ACTIONS(6414), + [anon_sym___block] = ACTIONS(6414), + [anon_sym___bridge] = ACTIONS(6414), + [anon_sym___bridge_retained] = ACTIONS(6414), + [anon_sym___bridge_transfer] = ACTIONS(6414), + [anon_sym___complex] = ACTIONS(6414), + [anon_sym___const] = ACTIONS(6414), + [anon_sym___imag] = ACTIONS(6414), + [anon_sym___kindof] = ACTIONS(6414), + [anon_sym___nonnull] = ACTIONS(6414), + [anon_sym___nullable] = ACTIONS(6414), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6414), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6414), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6414), + [anon_sym___real] = ACTIONS(6414), + [anon_sym___strong] = ACTIONS(6414), + [anon_sym___unsafe_unretained] = ACTIONS(6414), + [anon_sym___unused] = ACTIONS(6414), + [anon_sym___weak] = ACTIONS(6414), + [anon_sym_alignas] = ACTIONS(6434), + [anon_sym__Alignas] = ACTIONS(6434), + [sym_primitive_type] = ACTIONS(6260), + [anon_sym_enum] = ACTIONS(6260), + [anon_sym_COLON] = ACTIONS(6263), + [anon_sym_struct] = ACTIONS(6260), + [anon_sym_union] = ACTIONS(6260), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6260), + [anon_sym___typeof] = ACTIONS(6260), + [anon_sym_typeof] = ACTIONS(6260), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6438), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6438), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6438), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6438), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6438), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6438), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6438), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6438), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6438), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6442), + [anon_sym_NS_AVAILABLE] = ACTIONS(6442), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6442), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6442), + [anon_sym_API_AVAILABLE] = ACTIONS(6442), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6442), + [anon_sym_API_DEPRECATED] = ACTIONS(6442), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6442), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6442), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6442), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6442), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6442), + [anon_sym___deprecated_msg] = ACTIONS(6442), + [anon_sym___deprecated_enum_msg] = ACTIONS(6442), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6442), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6442), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6442), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6442), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6442), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6442), + [anon_sym_BOOL] = ACTIONS(6260), + [anon_sym_IMP] = ACTIONS(6260), + [anon_sym_SEL] = ACTIONS(6260), + [anon_sym_Class] = ACTIONS(6260), + [anon_sym_id] = ACTIONS(6260), + }, + [2521] = { + [sym_protocol_reference_list] = STATE(2961), + [sym_identifier] = ACTIONS(6446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4236), + [anon_sym_COMMA] = ACTIONS(4236), + [anon_sym_RPAREN] = ACTIONS(6448), + [anon_sym_LPAREN2] = ACTIONS(6448), + [anon_sym_DASH] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4234), + [anon_sym_STAR] = ACTIONS(6448), + [anon_sym_SLASH] = ACTIONS(4234), + [anon_sym_PERCENT] = ACTIONS(4236), + [anon_sym_PIPE_PIPE] = ACTIONS(4236), + [anon_sym_AMP_AMP] = ACTIONS(4236), + [anon_sym_PIPE] = ACTIONS(4234), + [anon_sym_CARET] = ACTIONS(6448), + [anon_sym_AMP] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4236), + [anon_sym_BANG_EQ] = ACTIONS(4236), + [anon_sym_GT] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4236), + [anon_sym_LT_EQ] = ACTIONS(4236), + [anon_sym_LT] = ACTIONS(6450), + [anon_sym_LT_LT] = ACTIONS(4236), + [anon_sym_GT_GT] = ACTIONS(4236), + [anon_sym_SEMI] = ACTIONS(6448), + [anon_sym___extension__] = ACTIONS(6446), + [anon_sym_extern] = ACTIONS(6446), + [anon_sym___attribute__] = ACTIONS(6446), + [anon_sym___attribute] = ACTIONS(6446), + [anon_sym_noreturn] = ACTIONS(6446), + [anon_sym_LBRACK] = ACTIONS(6448), + [anon_sym___declspec] = ACTIONS(6446), + [anon_sym___based] = ACTIONS(6446), + [anon_sym_static] = ACTIONS(6446), + [anon_sym_auto] = ACTIONS(6446), + [anon_sym_register] = ACTIONS(6446), + [anon_sym_inline] = ACTIONS(6446), + [anon_sym___inline] = ACTIONS(6446), + [anon_sym___inline__] = ACTIONS(6446), + [anon_sym___forceinline] = ACTIONS(6446), + [anon_sym_thread_local] = ACTIONS(6446), + [anon_sym___thread] = ACTIONS(6446), + [anon_sym_CG_EXTERN] = ACTIONS(6446), + [anon_sym_CG_INLINE] = ACTIONS(6446), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6446), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6446), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6446), + [anon_sym_IBOutlet] = ACTIONS(6446), + [anon_sym_IBInspectable] = ACTIONS(6446), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6446), + [anon_sym_NS_INLINE] = ACTIONS(6446), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6446), + [anon_sym_OBJC_EXPORT] = ACTIONS(6446), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6446), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6446), + [anon_sym_const] = ACTIONS(6446), + [anon_sym_constexpr] = ACTIONS(6446), + [anon_sym_volatile] = ACTIONS(6446), + [anon_sym_restrict] = ACTIONS(6446), + [anon_sym___restrict__] = ACTIONS(6446), + [anon_sym__Atomic] = ACTIONS(6446), + [anon_sym__Noreturn] = ACTIONS(6446), + [anon_sym__Nonnull] = ACTIONS(6446), + [anon_sym_nullable] = ACTIONS(6446), + [anon_sym__Complex] = ACTIONS(6446), + [anon_sym__Nullable] = ACTIONS(6446), + [anon_sym__Nullable_result] = ACTIONS(6446), + [anon_sym__Null_unspecified] = ACTIONS(6446), + [anon_sym___autoreleasing] = ACTIONS(6446), + [anon_sym___block] = ACTIONS(6446), + [anon_sym___bridge] = ACTIONS(6446), + [anon_sym___bridge_retained] = ACTIONS(6446), + [anon_sym___bridge_transfer] = ACTIONS(6446), + [anon_sym___complex] = ACTIONS(6446), + [anon_sym___const] = ACTIONS(6446), + [anon_sym___imag] = ACTIONS(6446), + [anon_sym___kindof] = ACTIONS(6446), + [anon_sym___nonnull] = ACTIONS(6446), + [anon_sym___nullable] = ACTIONS(6446), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6446), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6446), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6446), + [anon_sym___real] = ACTIONS(6446), + [anon_sym___strong] = ACTIONS(6446), + [anon_sym___unsafe_unretained] = ACTIONS(6446), + [anon_sym___unused] = ACTIONS(6446), + [anon_sym___weak] = ACTIONS(6446), + [anon_sym_alignas] = ACTIONS(6446), + [anon_sym__Alignas] = ACTIONS(6446), + [anon_sym_QMARK] = ACTIONS(4236), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_DOT] = ACTIONS(4234), + [anon_sym_DASH_GT] = ACTIONS(4236), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6446), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6446), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6446), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6446), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6446), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6446), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6446), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6446), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6446), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6446), + [anon_sym_NS_AVAILABLE] = ACTIONS(6446), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6446), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6446), + [anon_sym_API_AVAILABLE] = ACTIONS(6446), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6446), + [anon_sym_API_DEPRECATED] = ACTIONS(6446), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6446), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6446), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6446), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6446), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6446), + [anon_sym___deprecated_msg] = ACTIONS(6446), + [anon_sym___deprecated_enum_msg] = ACTIONS(6446), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6446), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6446), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6446), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6446), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6446), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6446), + }, + [2522] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(6452), + [anon_sym_COMMA] = ACTIONS(6454), + [anon_sym_SEMI] = ACTIONS(6454), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(6454), + [anon_sym_signed] = ACTIONS(6452), + [anon_sym_unsigned] = ACTIONS(6452), + [anon_sym_long] = ACTIONS(6452), + [anon_sym_short] = ACTIONS(6452), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(6454), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(6452), + [anon_sym_enum] = ACTIONS(6452), + [anon_sym_COLON] = ACTIONS(6454), + [anon_sym_struct] = ACTIONS(6452), + [anon_sym_union] = ACTIONS(6452), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6452), + [anon_sym___typeof] = ACTIONS(6452), + [anon_sym_typeof] = ACTIONS(6452), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(6452), + [anon_sym_IMP] = ACTIONS(6452), + [anon_sym_SEL] = ACTIONS(6452), + [anon_sym_Class] = ACTIONS(6452), + [anon_sym_id] = ACTIONS(6452), + }, + [2523] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(6268), + [anon_sym_COMMA] = ACTIONS(6266), + [anon_sym_SEMI] = ACTIONS(6266), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(6266), + [anon_sym_signed] = ACTIONS(6268), + [anon_sym_unsigned] = ACTIONS(6268), + [anon_sym_long] = ACTIONS(6268), + [anon_sym_short] = ACTIONS(6268), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(6266), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(6268), + [anon_sym_enum] = ACTIONS(6268), + [anon_sym_COLON] = ACTIONS(6266), + [anon_sym_struct] = ACTIONS(6268), + [anon_sym_union] = ACTIONS(6268), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6268), + [anon_sym___typeof] = ACTIONS(6268), + [anon_sym_typeof] = ACTIONS(6268), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(6268), + [anon_sym_IMP] = ACTIONS(6268), + [anon_sym_SEL] = ACTIONS(6268), + [anon_sym_Class] = ACTIONS(6268), + [anon_sym_id] = ACTIONS(6268), + }, + [2524] = { + [sym__declaration_modifiers] = STATE(2497), + [sym_attribute_specifier] = STATE(2497), + [sym_attribute_declaration] = STATE(2497), + [sym_ms_declspec_modifier] = STATE(2497), + [sym_storage_class_specifier] = STATE(2497), + [sym_type_qualifier] = STATE(2497), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2497), + [aux_sym__declaration_specifiers_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(6456), + [anon_sym_COMMA] = ACTIONS(6458), + [anon_sym_SEMI] = ACTIONS(6458), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(6458), + [anon_sym_signed] = ACTIONS(6456), + [anon_sym_unsigned] = ACTIONS(6456), + [anon_sym_long] = ACTIONS(6456), + [anon_sym_short] = ACTIONS(6456), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(6458), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(6456), + [anon_sym_enum] = ACTIONS(6456), + [anon_sym_COLON] = ACTIONS(6458), + [anon_sym_struct] = ACTIONS(6456), + [anon_sym_union] = ACTIONS(6456), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6456), + [anon_sym___typeof] = ACTIONS(6456), + [anon_sym_typeof] = ACTIONS(6456), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(6456), + [anon_sym_IMP] = ACTIONS(6456), + [anon_sym_SEL] = ACTIONS(6456), + [anon_sym_Class] = ACTIONS(6456), + [anon_sym_id] = ACTIONS(6456), + }, + [2525] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6460), + [anon_sym_COMMA] = ACTIONS(4442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4442), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6318), + [anon_sym_PLUS] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(6320), + [anon_sym_SLASH] = ACTIONS(6322), + [anon_sym_PERCENT] = ACTIONS(6320), + [anon_sym_PIPE_PIPE] = ACTIONS(6324), + [anon_sym_AMP_AMP] = ACTIONS(6326), + [anon_sym_PIPE] = ACTIONS(6328), + [anon_sym_CARET] = ACTIONS(6330), + [anon_sym_AMP] = ACTIONS(6332), + [anon_sym_EQ_EQ] = ACTIONS(6334), + [anon_sym_BANG_EQ] = ACTIONS(6334), + [anon_sym_GT] = ACTIONS(6336), + [anon_sym_GT_EQ] = ACTIONS(6338), + [anon_sym_LT_EQ] = ACTIONS(6338), + [anon_sym_LT] = ACTIONS(6336), + [anon_sym_LT_LT] = ACTIONS(6340), + [anon_sym_GT_GT] = ACTIONS(6340), + [anon_sym___extension__] = ACTIONS(4437), + [anon_sym_extern] = ACTIONS(4437), + [anon_sym___attribute__] = ACTIONS(4437), + [anon_sym___attribute] = ACTIONS(4437), + [anon_sym_noreturn] = ACTIONS(4437), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4437), + [anon_sym_RBRACE] = ACTIONS(4442), + [anon_sym_static] = ACTIONS(4437), + [anon_sym_auto] = ACTIONS(4437), + [anon_sym_register] = ACTIONS(4437), + [anon_sym_inline] = ACTIONS(4437), + [anon_sym___inline] = ACTIONS(4437), + [anon_sym___inline__] = ACTIONS(4437), + [anon_sym___forceinline] = ACTIONS(4437), + [anon_sym_thread_local] = ACTIONS(4437), + [anon_sym___thread] = ACTIONS(4437), + [anon_sym_CG_EXTERN] = ACTIONS(4437), + [anon_sym_CG_INLINE] = ACTIONS(4437), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4437), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4437), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4437), + [anon_sym_IBOutlet] = ACTIONS(4437), + [anon_sym_IBInspectable] = ACTIONS(4437), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4437), + [anon_sym_NS_INLINE] = ACTIONS(4437), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4437), + [anon_sym_OBJC_EXPORT] = ACTIONS(4437), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4437), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4437), + [anon_sym_const] = ACTIONS(4437), + [anon_sym_constexpr] = ACTIONS(4437), + [anon_sym_volatile] = ACTIONS(4437), + [anon_sym_restrict] = ACTIONS(4437), + [anon_sym___restrict__] = ACTIONS(4437), + [anon_sym__Atomic] = ACTIONS(4437), + [anon_sym__Noreturn] = ACTIONS(4437), + [anon_sym__Nonnull] = ACTIONS(4437), + [anon_sym_nullable] = ACTIONS(4437), + [anon_sym__Complex] = ACTIONS(4437), + [anon_sym__Nullable] = ACTIONS(4437), + [anon_sym__Nullable_result] = ACTIONS(4437), + [anon_sym__Null_unspecified] = ACTIONS(4437), + [anon_sym___autoreleasing] = ACTIONS(4437), + [anon_sym___block] = ACTIONS(4437), + [anon_sym___bridge] = ACTIONS(4437), + [anon_sym___bridge_retained] = ACTIONS(4437), + [anon_sym___bridge_transfer] = ACTIONS(4437), + [anon_sym___complex] = ACTIONS(4437), + [anon_sym___const] = ACTIONS(4437), + [anon_sym___imag] = ACTIONS(4437), + [anon_sym___kindof] = ACTIONS(4437), + [anon_sym___nonnull] = ACTIONS(4437), + [anon_sym___nullable] = ACTIONS(4437), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4437), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4437), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4437), + [anon_sym___real] = ACTIONS(4437), + [anon_sym___strong] = ACTIONS(4437), + [anon_sym___unsafe_unretained] = ACTIONS(4437), + [anon_sym___unused] = ACTIONS(4437), + [anon_sym___weak] = ACTIONS(4437), + [anon_sym_alignas] = ACTIONS(4437), + [anon_sym__Alignas] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4437), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4437), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4437), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4437), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4437), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4437), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4437), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4437), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4437), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4437), + [anon_sym_NS_AVAILABLE] = ACTIONS(4437), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4437), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4437), + [anon_sym_API_AVAILABLE] = ACTIONS(4437), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4437), + [anon_sym_API_DEPRECATED] = ACTIONS(4437), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4437), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4437), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4437), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4437), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4437), + [anon_sym___deprecated_msg] = ACTIONS(4437), + [anon_sym___deprecated_enum_msg] = ACTIONS(4437), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4437), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4437), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4437), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4437), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4437), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4437), + }, + [2526] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(6463), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6316), + [anon_sym_COMMA] = ACTIONS(6465), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6465), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6465), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6318), + [anon_sym_PLUS] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(6320), + [anon_sym_SLASH] = ACTIONS(6322), + [anon_sym_PERCENT] = ACTIONS(6320), + [anon_sym_PIPE_PIPE] = ACTIONS(6324), + [anon_sym_AMP_AMP] = ACTIONS(6326), + [anon_sym_PIPE] = ACTIONS(6328), + [anon_sym_CARET] = ACTIONS(6330), + [anon_sym_AMP] = ACTIONS(6332), + [anon_sym_EQ_EQ] = ACTIONS(6334), + [anon_sym_BANG_EQ] = ACTIONS(6334), + [anon_sym_GT] = ACTIONS(6336), + [anon_sym_GT_EQ] = ACTIONS(6338), + [anon_sym_LT_EQ] = ACTIONS(6338), + [anon_sym_LT] = ACTIONS(6336), + [anon_sym_LT_LT] = ACTIONS(6340), + [anon_sym_GT_GT] = ACTIONS(6340), + [anon_sym___extension__] = ACTIONS(6463), + [anon_sym_extern] = ACTIONS(6463), + [anon_sym___attribute__] = ACTIONS(6463), + [anon_sym___attribute] = ACTIONS(6463), + [anon_sym_noreturn] = ACTIONS(6463), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(6463), + [anon_sym_RBRACE] = ACTIONS(6465), + [anon_sym_static] = ACTIONS(6463), + [anon_sym_auto] = ACTIONS(6463), + [anon_sym_register] = ACTIONS(6463), + [anon_sym_inline] = ACTIONS(6463), + [anon_sym___inline] = ACTIONS(6463), + [anon_sym___inline__] = ACTIONS(6463), + [anon_sym___forceinline] = ACTIONS(6463), + [anon_sym_thread_local] = ACTIONS(6463), + [anon_sym___thread] = ACTIONS(6463), + [anon_sym_CG_EXTERN] = ACTIONS(6463), + [anon_sym_CG_INLINE] = ACTIONS(6463), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6463), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6463), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6463), + [anon_sym_IBOutlet] = ACTIONS(6463), + [anon_sym_IBInspectable] = ACTIONS(6463), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6463), + [anon_sym_NS_INLINE] = ACTIONS(6463), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6463), + [anon_sym_OBJC_EXPORT] = ACTIONS(6463), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6463), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6463), + [anon_sym_const] = ACTIONS(6463), + [anon_sym_constexpr] = ACTIONS(6463), + [anon_sym_volatile] = ACTIONS(6463), + [anon_sym_restrict] = ACTIONS(6463), + [anon_sym___restrict__] = ACTIONS(6463), + [anon_sym__Atomic] = ACTIONS(6463), + [anon_sym__Noreturn] = ACTIONS(6463), + [anon_sym__Nonnull] = ACTIONS(6463), + [anon_sym_nullable] = ACTIONS(6463), + [anon_sym__Complex] = ACTIONS(6463), + [anon_sym__Nullable] = ACTIONS(6463), + [anon_sym__Nullable_result] = ACTIONS(6463), + [anon_sym__Null_unspecified] = ACTIONS(6463), + [anon_sym___autoreleasing] = ACTIONS(6463), + [anon_sym___block] = ACTIONS(6463), + [anon_sym___bridge] = ACTIONS(6463), + [anon_sym___bridge_retained] = ACTIONS(6463), + [anon_sym___bridge_transfer] = ACTIONS(6463), + [anon_sym___complex] = ACTIONS(6463), + [anon_sym___const] = ACTIONS(6463), + [anon_sym___imag] = ACTIONS(6463), + [anon_sym___kindof] = ACTIONS(6463), + [anon_sym___nonnull] = ACTIONS(6463), + [anon_sym___nullable] = ACTIONS(6463), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6463), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6463), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6463), + [anon_sym___real] = ACTIONS(6463), + [anon_sym___strong] = ACTIONS(6463), + [anon_sym___unsafe_unretained] = ACTIONS(6463), + [anon_sym___unused] = ACTIONS(6463), + [anon_sym___weak] = ACTIONS(6463), + [anon_sym_alignas] = ACTIONS(6463), + [anon_sym__Alignas] = ACTIONS(6463), + [anon_sym_QMARK] = ACTIONS(6342), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6463), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6463), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6463), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6463), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6463), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6463), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6463), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6463), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6463), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6463), + [anon_sym_NS_AVAILABLE] = ACTIONS(6463), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6463), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6463), + [anon_sym_API_AVAILABLE] = ACTIONS(6463), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6463), + [anon_sym_API_DEPRECATED] = ACTIONS(6463), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6463), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6463), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6463), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6463), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6463), + [anon_sym___deprecated_msg] = ACTIONS(6463), + [anon_sym___deprecated_enum_msg] = ACTIONS(6463), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6463), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6463), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6463), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6463), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6463), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6463), + }, + [2527] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4478), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6316), + [anon_sym_COMMA] = ACTIONS(4480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4480), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6318), + [anon_sym_PLUS] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(6320), + [anon_sym_SLASH] = ACTIONS(6322), + [anon_sym_PERCENT] = ACTIONS(6320), + [anon_sym_PIPE_PIPE] = ACTIONS(6324), + [anon_sym_AMP_AMP] = ACTIONS(6326), + [anon_sym_PIPE] = ACTIONS(6328), + [anon_sym_CARET] = ACTIONS(6330), + [anon_sym_AMP] = ACTIONS(6332), + [anon_sym_EQ_EQ] = ACTIONS(6334), + [anon_sym_BANG_EQ] = ACTIONS(6334), + [anon_sym_GT] = ACTIONS(6336), + [anon_sym_GT_EQ] = ACTIONS(6338), + [anon_sym_LT_EQ] = ACTIONS(6338), + [anon_sym_LT] = ACTIONS(6336), + [anon_sym_LT_LT] = ACTIONS(6340), + [anon_sym_GT_GT] = ACTIONS(6340), + [anon_sym___extension__] = ACTIONS(4478), + [anon_sym_extern] = ACTIONS(4478), + [anon_sym___attribute__] = ACTIONS(4478), + [anon_sym___attribute] = ACTIONS(4478), + [anon_sym_noreturn] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4478), + [anon_sym_RBRACE] = ACTIONS(4480), + [anon_sym_static] = ACTIONS(4478), + [anon_sym_auto] = ACTIONS(4478), + [anon_sym_register] = ACTIONS(4478), + [anon_sym_inline] = ACTIONS(4478), + [anon_sym___inline] = ACTIONS(4478), + [anon_sym___inline__] = ACTIONS(4478), + [anon_sym___forceinline] = ACTIONS(4478), + [anon_sym_thread_local] = ACTIONS(4478), + [anon_sym___thread] = ACTIONS(4478), + [anon_sym_CG_EXTERN] = ACTIONS(4478), + [anon_sym_CG_INLINE] = ACTIONS(4478), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4478), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4478), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4478), + [anon_sym_IBOutlet] = ACTIONS(4478), + [anon_sym_IBInspectable] = ACTIONS(4478), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4478), + [anon_sym_NS_INLINE] = ACTIONS(4478), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4478), + [anon_sym_OBJC_EXPORT] = ACTIONS(4478), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4478), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4478), + [anon_sym_const] = ACTIONS(4478), + [anon_sym_constexpr] = ACTIONS(4478), + [anon_sym_volatile] = ACTIONS(4478), + [anon_sym_restrict] = ACTIONS(4478), + [anon_sym___restrict__] = ACTIONS(4478), + [anon_sym__Atomic] = ACTIONS(4478), + [anon_sym__Noreturn] = ACTIONS(4478), + [anon_sym__Nonnull] = ACTIONS(4478), + [anon_sym_nullable] = ACTIONS(4478), + [anon_sym__Complex] = ACTIONS(4478), + [anon_sym__Nullable] = ACTIONS(4478), + [anon_sym__Nullable_result] = ACTIONS(4478), + [anon_sym__Null_unspecified] = ACTIONS(4478), + [anon_sym___autoreleasing] = ACTIONS(4478), + [anon_sym___block] = ACTIONS(4478), + [anon_sym___bridge] = ACTIONS(4478), + [anon_sym___bridge_retained] = ACTIONS(4478), + [anon_sym___bridge_transfer] = ACTIONS(4478), + [anon_sym___complex] = ACTIONS(4478), + [anon_sym___const] = ACTIONS(4478), + [anon_sym___imag] = ACTIONS(4478), + [anon_sym___kindof] = ACTIONS(4478), + [anon_sym___nonnull] = ACTIONS(4478), + [anon_sym___nullable] = ACTIONS(4478), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4478), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4478), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4478), + [anon_sym___real] = ACTIONS(4478), + [anon_sym___strong] = ACTIONS(4478), + [anon_sym___unsafe_unretained] = ACTIONS(4478), + [anon_sym___unused] = ACTIONS(4478), + [anon_sym___weak] = ACTIONS(4478), + [anon_sym_alignas] = ACTIONS(4478), + [anon_sym__Alignas] = ACTIONS(4478), + [anon_sym_QMARK] = ACTIONS(4480), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4478), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4478), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4478), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4478), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4478), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4478), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4478), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4478), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4478), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4478), + [anon_sym_NS_AVAILABLE] = ACTIONS(4478), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4478), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4478), + [anon_sym_API_AVAILABLE] = ACTIONS(4478), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4478), + [anon_sym_API_DEPRECATED] = ACTIONS(4478), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4478), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4478), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4478), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4478), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4478), + [anon_sym___deprecated_msg] = ACTIONS(4478), + [anon_sym___deprecated_enum_msg] = ACTIONS(4478), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4478), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4478), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4478), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4478), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4478), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4478), + }, + [2528] = { + [sym__declaration_modifiers] = STATE(2523), + [sym_attribute_specifier] = STATE(2523), + [sym_attribute_declaration] = STATE(2523), + [sym_ms_declspec_modifier] = STATE(2523), + [sym_storage_class_specifier] = STATE(2523), + [sym_type_qualifier] = STATE(2523), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2523), + [aux_sym__declaration_specifiers_repeat1] = STATE(2523), + [sym_identifier] = ACTIONS(6356), + [anon_sym_COMMA] = ACTIONS(6359), + [anon_sym_SEMI] = ACTIONS(6270), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(6270), + [anon_sym_signed] = ACTIONS(6272), + [anon_sym_unsigned] = ACTIONS(6272), + [anon_sym_long] = ACTIONS(6272), + [anon_sym_short] = ACTIONS(6272), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(6270), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(6272), + [anon_sym_enum] = ACTIONS(6272), + [anon_sym_COLON] = ACTIONS(6359), + [anon_sym_struct] = ACTIONS(6272), + [anon_sym_union] = ACTIONS(6272), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6272), + [anon_sym___typeof] = ACTIONS(6272), + [anon_sym_typeof] = ACTIONS(6272), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_BOOL] = ACTIONS(6272), + [anon_sym_IMP] = ACTIONS(6272), + [anon_sym_SEL] = ACTIONS(6272), + [anon_sym_Class] = ACTIONS(6272), + [anon_sym_id] = ACTIONS(6272), + }, + [2529] = { + [sym_argument_list] = STATE(1460), + [sym_identifier] = ACTIONS(4025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6318), + [anon_sym_PLUS] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(6320), + [anon_sym_SLASH] = ACTIONS(6322), + [anon_sym_PERCENT] = ACTIONS(6320), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(4025), + [anon_sym_GT_EQ] = ACTIONS(4027), + [anon_sym_LT_EQ] = ACTIONS(4027), + [anon_sym_LT] = ACTIONS(4025), + [anon_sym_LT_LT] = ACTIONS(4027), + [anon_sym_GT_GT] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym_RBRACE] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_auto] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_CG_EXTERN] = ACTIONS(4025), + [anon_sym_CG_INLINE] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4025), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4025), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4025), + [anon_sym_IBOutlet] = ACTIONS(4025), + [anon_sym_IBInspectable] = ACTIONS(4025), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4025), + [anon_sym_NS_INLINE] = ACTIONS(4025), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4025), + [anon_sym_OBJC_EXPORT] = ACTIONS(4025), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_nullable] = ACTIONS(4025), + [anon_sym__Complex] = ACTIONS(4025), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4025), + [anon_sym__Null_unspecified] = ACTIONS(4025), + [anon_sym___autoreleasing] = ACTIONS(4025), + [anon_sym___block] = ACTIONS(4025), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4025), + [anon_sym___bridge_transfer] = ACTIONS(4025), + [anon_sym___complex] = ACTIONS(4025), + [anon_sym___const] = ACTIONS(4025), + [anon_sym___imag] = ACTIONS(4025), + [anon_sym___kindof] = ACTIONS(4025), + [anon_sym___nonnull] = ACTIONS(4025), + [anon_sym___nullable] = ACTIONS(4025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4025), + [anon_sym___real] = ACTIONS(4025), + [anon_sym___strong] = ACTIONS(4025), + [anon_sym___unsafe_unretained] = ACTIONS(4025), + [anon_sym___unused] = ACTIONS(4025), + [anon_sym___weak] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4025), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4025), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4025), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4025), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4025), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4025), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4025), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_API_AVAILABLE] = ACTIONS(4025), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_API_DEPRECATED] = ACTIONS(4025), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4025), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4025), + [anon_sym___deprecated_msg] = ACTIONS(4025), + [anon_sym___deprecated_enum_msg] = ACTIONS(4025), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4025), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4025), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4025), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4025), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4025), + }, + [2530] = { + [sym_type_qualifier] = STATE(2534), + [sym_alignas_qualifier] = STATE(3575), + [sym_expression] = STATE(4543), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_array_declarator_repeat1] = STATE(2534), + [sym_identifier] = ACTIONS(2916), + [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(6467), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6400), + [anon_sym_noreturn] = ACTIONS(6402), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(6469), + [anon_sym_static] = ACTIONS(6471), + [anon_sym_const] = ACTIONS(6408), + [anon_sym_constexpr] = ACTIONS(6402), + [anon_sym_volatile] = ACTIONS(6402), + [anon_sym_restrict] = ACTIONS(6402), + [anon_sym___restrict__] = ACTIONS(6402), + [anon_sym__Atomic] = ACTIONS(6402), + [anon_sym__Noreturn] = ACTIONS(6402), + [anon_sym__Nonnull] = ACTIONS(6402), + [anon_sym_nullable] = ACTIONS(6402), + [anon_sym__Complex] = ACTIONS(6402), + [anon_sym__Nullable] = ACTIONS(6402), + [anon_sym__Nullable_result] = ACTIONS(6402), + [anon_sym__Null_unspecified] = ACTIONS(6402), + [anon_sym___autoreleasing] = ACTIONS(6402), + [anon_sym___block] = ACTIONS(6402), + [anon_sym___bridge] = ACTIONS(6402), + [anon_sym___bridge_retained] = ACTIONS(6402), + [anon_sym___bridge_transfer] = ACTIONS(6402), + [anon_sym___complex] = ACTIONS(6402), + [anon_sym___const] = ACTIONS(6402), + [anon_sym___imag] = ACTIONS(6410), + [anon_sym___kindof] = ACTIONS(6402), + [anon_sym___nonnull] = ACTIONS(6402), + [anon_sym___nullable] = ACTIONS(6402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6402), + [anon_sym___real] = ACTIONS(6410), + [anon_sym___strong] = ACTIONS(6402), + [anon_sym___unsafe_unretained] = ACTIONS(6402), + [anon_sym___unused] = ACTIONS(6402), + [anon_sym___weak] = ACTIONS(6402), + [anon_sym_alignas] = ACTIONS(6412), + [anon_sym__Alignas] = ACTIONS(6412), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2531] = { + [sym_type_qualifier] = STATE(2550), + [sym_alignas_qualifier] = STATE(3575), + [sym_expression] = STATE(4534), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_array_declarator_repeat1] = STATE(2550), + [sym_identifier] = ACTIONS(2916), + [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(6473), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6400), + [anon_sym_noreturn] = ACTIONS(6402), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(6475), + [anon_sym_static] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(6408), + [anon_sym_constexpr] = ACTIONS(6402), + [anon_sym_volatile] = ACTIONS(6402), + [anon_sym_restrict] = ACTIONS(6402), + [anon_sym___restrict__] = ACTIONS(6402), + [anon_sym__Atomic] = ACTIONS(6402), + [anon_sym__Noreturn] = ACTIONS(6402), + [anon_sym__Nonnull] = ACTIONS(6402), + [anon_sym_nullable] = ACTIONS(6402), + [anon_sym__Complex] = ACTIONS(6402), + [anon_sym__Nullable] = ACTIONS(6402), + [anon_sym__Nullable_result] = ACTIONS(6402), + [anon_sym__Null_unspecified] = ACTIONS(6402), + [anon_sym___autoreleasing] = ACTIONS(6402), + [anon_sym___block] = ACTIONS(6402), + [anon_sym___bridge] = ACTIONS(6402), + [anon_sym___bridge_retained] = ACTIONS(6402), + [anon_sym___bridge_transfer] = ACTIONS(6402), + [anon_sym___complex] = ACTIONS(6402), + [anon_sym___const] = ACTIONS(6402), + [anon_sym___imag] = ACTIONS(6410), + [anon_sym___kindof] = ACTIONS(6402), + [anon_sym___nonnull] = ACTIONS(6402), + [anon_sym___nullable] = ACTIONS(6402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6402), + [anon_sym___real] = ACTIONS(6410), + [anon_sym___strong] = ACTIONS(6402), + [anon_sym___unsafe_unretained] = ACTIONS(6402), + [anon_sym___unused] = ACTIONS(6402), + [anon_sym___weak] = ACTIONS(6402), + [anon_sym_alignas] = ACTIONS(6412), + [anon_sym__Alignas] = ACTIONS(6412), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2532] = { + [sym_type_qualifier] = STATE(2558), + [sym_alignas_qualifier] = STATE(3575), + [sym_expression] = STATE(4541), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_array_declarator_repeat1] = STATE(2558), + [sym_identifier] = ACTIONS(2916), + [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(6479), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6400), + [anon_sym_noreturn] = ACTIONS(6402), + [anon_sym_LBRACK] = ACTIONS(6481), + [anon_sym_RBRACK] = ACTIONS(6483), + [anon_sym_static] = ACTIONS(6485), + [anon_sym_const] = ACTIONS(6408), + [anon_sym_constexpr] = ACTIONS(6402), + [anon_sym_volatile] = ACTIONS(6402), + [anon_sym_restrict] = ACTIONS(6402), + [anon_sym___restrict__] = ACTIONS(6402), + [anon_sym__Atomic] = ACTIONS(6402), + [anon_sym__Noreturn] = ACTIONS(6402), + [anon_sym__Nonnull] = ACTIONS(6402), + [anon_sym_nullable] = ACTIONS(6402), + [anon_sym__Complex] = ACTIONS(6402), + [anon_sym__Nullable] = ACTIONS(6402), + [anon_sym__Nullable_result] = ACTIONS(6402), + [anon_sym__Null_unspecified] = ACTIONS(6402), + [anon_sym___autoreleasing] = ACTIONS(6402), + [anon_sym___block] = ACTIONS(6402), + [anon_sym___bridge] = ACTIONS(6402), + [anon_sym___bridge_retained] = ACTIONS(6402), + [anon_sym___bridge_transfer] = ACTIONS(6402), + [anon_sym___complex] = ACTIONS(6402), + [anon_sym___const] = ACTIONS(6402), + [anon_sym___imag] = ACTIONS(6410), + [anon_sym___kindof] = ACTIONS(6402), + [anon_sym___nonnull] = ACTIONS(6402), + [anon_sym___nullable] = ACTIONS(6402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6402), + [anon_sym___real] = ACTIONS(6410), + [anon_sym___strong] = ACTIONS(6402), + [anon_sym___unsafe_unretained] = ACTIONS(6402), + [anon_sym___unused] = ACTIONS(6402), + [anon_sym___weak] = ACTIONS(6402), + [anon_sym_alignas] = ACTIONS(6412), + [anon_sym__Alignas] = ACTIONS(6412), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2533] = { + [sym_protocol_reference_list] = STATE(2961), + [sym_identifier] = ACTIONS(6446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4236), + [anon_sym_COMMA] = ACTIONS(4236), + [anon_sym_LPAREN2] = ACTIONS(6448), + [anon_sym_DASH] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4234), + [anon_sym_STAR] = ACTIONS(6448), + [anon_sym_SLASH] = ACTIONS(4234), + [anon_sym_PERCENT] = ACTIONS(4236), + [anon_sym_PIPE_PIPE] = ACTIONS(4236), + [anon_sym_AMP_AMP] = ACTIONS(4236), + [anon_sym_PIPE] = ACTIONS(4234), + [anon_sym_CARET] = ACTIONS(6448), + [anon_sym_AMP] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4236), + [anon_sym_BANG_EQ] = ACTIONS(4236), + [anon_sym_GT] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4236), + [anon_sym_LT_EQ] = ACTIONS(4236), + [anon_sym_LT] = ACTIONS(6450), + [anon_sym_LT_LT] = ACTIONS(4236), + [anon_sym_GT_GT] = ACTIONS(4236), + [anon_sym_SEMI] = ACTIONS(4236), + [anon_sym___extension__] = ACTIONS(6446), + [anon_sym_extern] = ACTIONS(6446), + [anon_sym___attribute__] = ACTIONS(6446), + [anon_sym___attribute] = ACTIONS(6446), + [anon_sym_noreturn] = ACTIONS(6446), + [anon_sym_LBRACK] = ACTIONS(6448), + [anon_sym___declspec] = ACTIONS(6446), + [anon_sym___based] = ACTIONS(6446), + [anon_sym_static] = ACTIONS(6446), + [anon_sym_auto] = ACTIONS(6446), + [anon_sym_register] = ACTIONS(6446), + [anon_sym_inline] = ACTIONS(6446), + [anon_sym___inline] = ACTIONS(6446), + [anon_sym___inline__] = ACTIONS(6446), + [anon_sym___forceinline] = ACTIONS(6446), + [anon_sym_thread_local] = ACTIONS(6446), + [anon_sym___thread] = ACTIONS(6446), + [anon_sym_CG_EXTERN] = ACTIONS(6446), + [anon_sym_CG_INLINE] = ACTIONS(6446), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6446), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6446), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6446), + [anon_sym_IBOutlet] = ACTIONS(6446), + [anon_sym_IBInspectable] = ACTIONS(6446), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6446), + [anon_sym_NS_INLINE] = ACTIONS(6446), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6446), + [anon_sym_OBJC_EXPORT] = ACTIONS(6446), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6446), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6446), + [anon_sym_const] = ACTIONS(6446), + [anon_sym_constexpr] = ACTIONS(6446), + [anon_sym_volatile] = ACTIONS(6446), + [anon_sym_restrict] = ACTIONS(6446), + [anon_sym___restrict__] = ACTIONS(6446), + [anon_sym__Atomic] = ACTIONS(6446), + [anon_sym__Noreturn] = ACTIONS(6446), + [anon_sym__Nonnull] = ACTIONS(6446), + [anon_sym_nullable] = ACTIONS(6446), + [anon_sym__Complex] = ACTIONS(6446), + [anon_sym__Nullable] = ACTIONS(6446), + [anon_sym__Nullable_result] = ACTIONS(6446), + [anon_sym__Null_unspecified] = ACTIONS(6446), + [anon_sym___autoreleasing] = ACTIONS(6446), + [anon_sym___block] = ACTIONS(6446), + [anon_sym___bridge] = ACTIONS(6446), + [anon_sym___bridge_retained] = ACTIONS(6446), + [anon_sym___bridge_transfer] = ACTIONS(6446), + [anon_sym___complex] = ACTIONS(6446), + [anon_sym___const] = ACTIONS(6446), + [anon_sym___imag] = ACTIONS(6446), + [anon_sym___kindof] = ACTIONS(6446), + [anon_sym___nonnull] = ACTIONS(6446), + [anon_sym___nullable] = ACTIONS(6446), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6446), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6446), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6446), + [anon_sym___real] = ACTIONS(6446), + [anon_sym___strong] = ACTIONS(6446), + [anon_sym___unsafe_unretained] = ACTIONS(6446), + [anon_sym___unused] = ACTIONS(6446), + [anon_sym___weak] = ACTIONS(6446), + [anon_sym_alignas] = ACTIONS(6446), + [anon_sym__Alignas] = ACTIONS(6446), + [anon_sym_QMARK] = ACTIONS(4236), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_DOT] = ACTIONS(4234), + [anon_sym_DASH_GT] = ACTIONS(4236), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6446), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6446), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6446), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6446), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6446), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6446), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6446), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6446), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6446), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6446), + [anon_sym_NS_AVAILABLE] = ACTIONS(6446), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6446), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6446), + [anon_sym_API_AVAILABLE] = ACTIONS(6446), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6446), + [anon_sym_API_DEPRECATED] = ACTIONS(6446), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6446), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6446), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6446), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6446), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6446), + [anon_sym___deprecated_msg] = ACTIONS(6446), + [anon_sym___deprecated_enum_msg] = ACTIONS(6446), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6446), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6446), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6446), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6446), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6446), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6446), + }, + [2534] = { + [sym_type_qualifier] = STATE(3349), + [sym_alignas_qualifier] = STATE(3575), + [sym_expression] = STATE(4529), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_array_declarator_repeat1] = STATE(3349), + [sym_identifier] = ACTIONS(2916), + [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(6487), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6400), + [anon_sym_noreturn] = ACTIONS(6402), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(6489), + [anon_sym_static] = ACTIONS(6491), + [anon_sym_const] = ACTIONS(6408), + [anon_sym_constexpr] = ACTIONS(6402), + [anon_sym_volatile] = ACTIONS(6402), + [anon_sym_restrict] = ACTIONS(6402), + [anon_sym___restrict__] = ACTIONS(6402), + [anon_sym__Atomic] = ACTIONS(6402), + [anon_sym__Noreturn] = ACTIONS(6402), + [anon_sym__Nonnull] = ACTIONS(6402), + [anon_sym_nullable] = ACTIONS(6402), + [anon_sym__Complex] = ACTIONS(6402), + [anon_sym__Nullable] = ACTIONS(6402), + [anon_sym__Nullable_result] = ACTIONS(6402), + [anon_sym__Null_unspecified] = ACTIONS(6402), + [anon_sym___autoreleasing] = ACTIONS(6402), + [anon_sym___block] = ACTIONS(6402), + [anon_sym___bridge] = ACTIONS(6402), + [anon_sym___bridge_retained] = ACTIONS(6402), + [anon_sym___bridge_transfer] = ACTIONS(6402), + [anon_sym___complex] = ACTIONS(6402), + [anon_sym___const] = ACTIONS(6402), + [anon_sym___imag] = ACTIONS(6410), + [anon_sym___kindof] = ACTIONS(6402), + [anon_sym___nonnull] = ACTIONS(6402), + [anon_sym___nullable] = ACTIONS(6402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6402), + [anon_sym___real] = ACTIONS(6410), + [anon_sym___strong] = ACTIONS(6402), + [anon_sym___unsafe_unretained] = ACTIONS(6402), + [anon_sym___unused] = ACTIONS(6402), + [anon_sym___weak] = ACTIONS(6402), + [anon_sym_alignas] = ACTIONS(6412), + [anon_sym__Alignas] = ACTIONS(6412), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2535] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3850), + [sym__abstract_declarator] = STATE(5006), + [sym_parenthesized_declarator] = STATE(4011), + [sym_abstract_parenthesized_declarator] = STATE(4894), + [sym_pointer_declarator] = STATE(4011), + [sym_abstract_pointer_declarator] = STATE(4894), + [sym_function_declarator] = STATE(4011), + [sym_abstract_function_declarator] = STATE(4894), + [sym_array_declarator] = STATE(4011), + [sym_abstract_array_declarator] = STATE(4894), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(4315), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_declarator] = STATE(4011), + [sym_abstract_block_pointer_declarator] = STATE(4894), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5281), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(5389), + [anon_sym_CARET] = ACTIONS(5391), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_LBRACE] = ACTIONS(6354), + [anon_sym_static] = ACTIONS(51), + [anon_sym_ATautoreleasepool] = ACTIONS(6354), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2536] = { + [sym__declaration_modifiers] = STATE(2809), + [sym_attribute_specifier] = STATE(2809), + [sym_attribute_declaration] = STATE(2809), + [sym_ms_declspec_modifier] = STATE(2809), + [sym_ms_based_modifier] = STATE(6162), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2554), + [sym__field_declarator] = STATE(4892), + [sym_parenthesized_field_declarator] = STATE(4955), + [sym_attributed_field_declarator] = STATE(4955), + [sym_pointer_field_declarator] = STATE(4955), + [sym_function_field_declarator] = STATE(4955), + [sym_array_field_declarator] = STATE(4955), + [sym_storage_class_specifier] = STATE(2809), + [sym_type_qualifier] = STATE(2809), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2809), + [sym_block_pointer_field_declarator] = STATE(4955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2809), + [aux_sym_pointer_declarator_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(6493), + [anon_sym_LPAREN2] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6497), + [anon_sym_CARET] = ACTIONS(6499), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2537] = { + [sym_expression] = STATE(1446), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_initializer_list] = STATE(1466), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_COMMA] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(6501), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_SLASH] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(2220), + [anon_sym_PIPE_PIPE] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2222), + [anon_sym_PIPE] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_EQ_EQ] = ACTIONS(2222), + [anon_sym_BANG_EQ] = ACTIONS(2222), + [anon_sym_GT] = ACTIONS(2220), + [anon_sym_GT_EQ] = ACTIONS(2222), + [anon_sym_LT_EQ] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2220), + [anon_sym_LT_LT] = ACTIONS(2220), + [anon_sym_GT_GT] = ACTIONS(2220), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym___attribute__] = ACTIONS(2220), + [anon_sym___attribute] = ACTIONS(2220), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_RBRACK] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_EQ] = ACTIONS(2220), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_COLON] = ACTIONS(2222), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_QMARK] = ACTIONS(2222), + [anon_sym_STAR_EQ] = ACTIONS(2222), + [anon_sym_SLASH_EQ] = ACTIONS(2222), + [anon_sym_PERCENT_EQ] = ACTIONS(2222), + [anon_sym_PLUS_EQ] = ACTIONS(2222), + [anon_sym_DASH_EQ] = ACTIONS(2222), + [anon_sym_LT_LT_EQ] = ACTIONS(2222), + [anon_sym_GT_GT_EQ] = ACTIONS(2222), + [anon_sym_AMP_EQ] = ACTIONS(2222), + [anon_sym_CARET_EQ] = ACTIONS(2222), + [anon_sym_PIPE_EQ] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [anon_sym_DOT] = ACTIONS(2220), + [anon_sym_DASH_GT] = ACTIONS(2222), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [2538] = { + [sym_type_qualifier] = STATE(3349), + [sym_alignas_qualifier] = STATE(3575), + [sym_expression] = STATE(4521), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_array_declarator_repeat1] = STATE(3349), + [sym_identifier] = ACTIONS(2916), + [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(6513), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6400), + [anon_sym_noreturn] = ACTIONS(6402), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(6515), + [anon_sym_static] = ACTIONS(6491), + [anon_sym_const] = ACTIONS(6408), + [anon_sym_constexpr] = ACTIONS(6402), + [anon_sym_volatile] = ACTIONS(6402), + [anon_sym_restrict] = ACTIONS(6402), + [anon_sym___restrict__] = ACTIONS(6402), + [anon_sym__Atomic] = ACTIONS(6402), + [anon_sym__Noreturn] = ACTIONS(6402), + [anon_sym__Nonnull] = ACTIONS(6402), + [anon_sym_nullable] = ACTIONS(6402), + [anon_sym__Complex] = ACTIONS(6402), + [anon_sym__Nullable] = ACTIONS(6402), + [anon_sym__Nullable_result] = ACTIONS(6402), + [anon_sym__Null_unspecified] = ACTIONS(6402), + [anon_sym___autoreleasing] = ACTIONS(6402), + [anon_sym___block] = ACTIONS(6402), + [anon_sym___bridge] = ACTIONS(6402), + [anon_sym___bridge_retained] = ACTIONS(6402), + [anon_sym___bridge_transfer] = ACTIONS(6402), + [anon_sym___complex] = ACTIONS(6402), + [anon_sym___const] = ACTIONS(6402), + [anon_sym___imag] = ACTIONS(6410), + [anon_sym___kindof] = ACTIONS(6402), + [anon_sym___nonnull] = ACTIONS(6402), + [anon_sym___nullable] = ACTIONS(6402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6402), + [anon_sym___real] = ACTIONS(6410), + [anon_sym___strong] = ACTIONS(6402), + [anon_sym___unsafe_unretained] = ACTIONS(6402), + [anon_sym___unused] = ACTIONS(6402), + [anon_sym___weak] = ACTIONS(6402), + [anon_sym_alignas] = ACTIONS(6412), + [anon_sym__Alignas] = ACTIONS(6412), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2539] = { + [sym_type_qualifier] = STATE(2549), + [sym_alignas_qualifier] = STATE(3575), + [sym_expression] = STATE(4582), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_array_declarator_repeat1] = STATE(2549), + [sym_identifier] = ACTIONS(2916), + [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(6398), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6400), + [anon_sym_noreturn] = ACTIONS(6402), + [anon_sym_LBRACK] = ACTIONS(6517), + [anon_sym_RBRACK] = ACTIONS(6519), + [anon_sym_static] = ACTIONS(6406), + [anon_sym_const] = ACTIONS(6408), + [anon_sym_constexpr] = ACTIONS(6402), + [anon_sym_volatile] = ACTIONS(6402), + [anon_sym_restrict] = ACTIONS(6402), + [anon_sym___restrict__] = ACTIONS(6402), + [anon_sym__Atomic] = ACTIONS(6402), + [anon_sym__Noreturn] = ACTIONS(6402), + [anon_sym__Nonnull] = ACTIONS(6402), + [anon_sym_nullable] = ACTIONS(6402), + [anon_sym__Complex] = ACTIONS(6402), + [anon_sym__Nullable] = ACTIONS(6402), + [anon_sym__Nullable_result] = ACTIONS(6402), + [anon_sym__Null_unspecified] = ACTIONS(6402), + [anon_sym___autoreleasing] = ACTIONS(6402), + [anon_sym___block] = ACTIONS(6402), + [anon_sym___bridge] = ACTIONS(6402), + [anon_sym___bridge_retained] = ACTIONS(6402), + [anon_sym___bridge_transfer] = ACTIONS(6402), + [anon_sym___complex] = ACTIONS(6402), + [anon_sym___const] = ACTIONS(6402), + [anon_sym___imag] = ACTIONS(6410), + [anon_sym___kindof] = ACTIONS(6402), + [anon_sym___nonnull] = ACTIONS(6402), + [anon_sym___nullable] = ACTIONS(6402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6402), + [anon_sym___real] = ACTIONS(6410), + [anon_sym___strong] = ACTIONS(6402), + [anon_sym___unsafe_unretained] = ACTIONS(6402), + [anon_sym___unused] = ACTIONS(6402), + [anon_sym___weak] = ACTIONS(6402), + [anon_sym_alignas] = ACTIONS(6412), + [anon_sym__Alignas] = ACTIONS(6412), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2540] = { + [sym_type_qualifier] = STATE(2549), + [sym_alignas_qualifier] = STATE(3575), + [sym_expression] = STATE(4582), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_array_declarator_repeat1] = STATE(2549), + [sym_identifier] = ACTIONS(2916), + [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(6398), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6400), + [anon_sym_noreturn] = ACTIONS(6402), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(6519), + [anon_sym_static] = ACTIONS(6406), + [anon_sym_const] = ACTIONS(6408), + [anon_sym_constexpr] = ACTIONS(6402), + [anon_sym_volatile] = ACTIONS(6402), + [anon_sym_restrict] = ACTIONS(6402), + [anon_sym___restrict__] = ACTIONS(6402), + [anon_sym__Atomic] = ACTIONS(6402), + [anon_sym__Noreturn] = ACTIONS(6402), + [anon_sym__Nonnull] = ACTIONS(6402), + [anon_sym_nullable] = ACTIONS(6402), + [anon_sym__Complex] = ACTIONS(6402), + [anon_sym__Nullable] = ACTIONS(6402), + [anon_sym__Nullable_result] = ACTIONS(6402), + [anon_sym__Null_unspecified] = ACTIONS(6402), + [anon_sym___autoreleasing] = ACTIONS(6402), + [anon_sym___block] = ACTIONS(6402), + [anon_sym___bridge] = ACTIONS(6402), + [anon_sym___bridge_retained] = ACTIONS(6402), + [anon_sym___bridge_transfer] = ACTIONS(6402), + [anon_sym___complex] = ACTIONS(6402), + [anon_sym___const] = ACTIONS(6402), + [anon_sym___imag] = ACTIONS(6410), + [anon_sym___kindof] = ACTIONS(6402), + [anon_sym___nonnull] = ACTIONS(6402), + [anon_sym___nullable] = ACTIONS(6402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6402), + [anon_sym___real] = ACTIONS(6410), + [anon_sym___strong] = ACTIONS(6402), + [anon_sym___unsafe_unretained] = ACTIONS(6402), + [anon_sym___unused] = ACTIONS(6402), + [anon_sym___weak] = ACTIONS(6402), + [anon_sym_alignas] = ACTIONS(6412), + [anon_sym__Alignas] = ACTIONS(6412), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2541] = { + [sym_type_qualifier] = STATE(2534), + [sym_alignas_qualifier] = STATE(3575), + [sym_expression] = STATE(4543), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_array_declarator_repeat1] = STATE(2534), + [sym_identifier] = ACTIONS(2916), + [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(6467), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6400), + [anon_sym_noreturn] = ACTIONS(6402), + [anon_sym_LBRACK] = ACTIONS(6481), + [anon_sym_RBRACK] = ACTIONS(6469), + [anon_sym_static] = ACTIONS(6471), + [anon_sym_const] = ACTIONS(6408), + [anon_sym_constexpr] = ACTIONS(6402), + [anon_sym_volatile] = ACTIONS(6402), + [anon_sym_restrict] = ACTIONS(6402), + [anon_sym___restrict__] = ACTIONS(6402), + [anon_sym__Atomic] = ACTIONS(6402), + [anon_sym__Noreturn] = ACTIONS(6402), + [anon_sym__Nonnull] = ACTIONS(6402), + [anon_sym_nullable] = ACTIONS(6402), + [anon_sym__Complex] = ACTIONS(6402), + [anon_sym__Nullable] = ACTIONS(6402), + [anon_sym__Nullable_result] = ACTIONS(6402), + [anon_sym__Null_unspecified] = ACTIONS(6402), + [anon_sym___autoreleasing] = ACTIONS(6402), + [anon_sym___block] = ACTIONS(6402), + [anon_sym___bridge] = ACTIONS(6402), + [anon_sym___bridge_retained] = ACTIONS(6402), + [anon_sym___bridge_transfer] = ACTIONS(6402), + [anon_sym___complex] = ACTIONS(6402), + [anon_sym___const] = ACTIONS(6402), + [anon_sym___imag] = ACTIONS(6410), + [anon_sym___kindof] = ACTIONS(6402), + [anon_sym___nonnull] = ACTIONS(6402), + [anon_sym___nullable] = ACTIONS(6402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6402), + [anon_sym___real] = ACTIONS(6410), + [anon_sym___strong] = ACTIONS(6402), + [anon_sym___unsafe_unretained] = ACTIONS(6402), + [anon_sym___unused] = ACTIONS(6402), + [anon_sym___weak] = ACTIONS(6402), + [anon_sym_alignas] = ACTIONS(6412), + [anon_sym__Alignas] = ACTIONS(6412), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2542] = { + [sym_type_qualifier] = STATE(3349), + [sym_alignas_qualifier] = STATE(3575), + [sym_expression] = STATE(4549), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_array_declarator_repeat1] = STATE(3349), + [sym_identifier] = ACTIONS(2916), + [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(6521), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6400), + [anon_sym_noreturn] = ACTIONS(6402), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(6523), + [anon_sym_static] = ACTIONS(6491), + [anon_sym_const] = ACTIONS(6408), + [anon_sym_constexpr] = ACTIONS(6402), + [anon_sym_volatile] = ACTIONS(6402), + [anon_sym_restrict] = ACTIONS(6402), + [anon_sym___restrict__] = ACTIONS(6402), + [anon_sym__Atomic] = ACTIONS(6402), + [anon_sym__Noreturn] = ACTIONS(6402), + [anon_sym__Nonnull] = ACTIONS(6402), + [anon_sym_nullable] = ACTIONS(6402), + [anon_sym__Complex] = ACTIONS(6402), + [anon_sym__Nullable] = ACTIONS(6402), + [anon_sym__Nullable_result] = ACTIONS(6402), + [anon_sym__Null_unspecified] = ACTIONS(6402), + [anon_sym___autoreleasing] = ACTIONS(6402), + [anon_sym___block] = ACTIONS(6402), + [anon_sym___bridge] = ACTIONS(6402), + [anon_sym___bridge_retained] = ACTIONS(6402), + [anon_sym___bridge_transfer] = ACTIONS(6402), + [anon_sym___complex] = ACTIONS(6402), + [anon_sym___const] = ACTIONS(6402), + [anon_sym___imag] = ACTIONS(6410), + [anon_sym___kindof] = ACTIONS(6402), + [anon_sym___nonnull] = ACTIONS(6402), + [anon_sym___nullable] = ACTIONS(6402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6402), + [anon_sym___real] = ACTIONS(6410), + [anon_sym___strong] = ACTIONS(6402), + [anon_sym___unsafe_unretained] = ACTIONS(6402), + [anon_sym___unused] = ACTIONS(6402), + [anon_sym___weak] = ACTIONS(6402), + [anon_sym_alignas] = ACTIONS(6412), + [anon_sym__Alignas] = ACTIONS(6412), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2543] = { + [sym__declaration_modifiers] = STATE(2824), + [sym_attribute_specifier] = STATE(2824), + [sym_attribute_declaration] = STATE(2824), + [sym_ms_declspec_modifier] = STATE(2824), + [sym_ms_based_modifier] = STATE(6258), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2545), + [sym__field_declarator] = STATE(5077), + [sym_parenthesized_field_declarator] = STATE(4955), + [sym_attributed_field_declarator] = STATE(4955), + [sym_pointer_field_declarator] = STATE(4955), + [sym_function_field_declarator] = STATE(4955), + [sym_array_field_declarator] = STATE(4955), + [sym_storage_class_specifier] = STATE(2824), + [sym_type_qualifier] = STATE(2824), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2824), + [sym_block_pointer_field_declarator] = STATE(4955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2824), + [aux_sym_pointer_declarator_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(6493), + [anon_sym_LPAREN2] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6525), + [anon_sym_CARET] = ACTIONS(6527), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2544] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6197), + [sym__declarator] = STATE(3094), + [sym__abstract_declarator] = STATE(5004), + [sym_parenthesized_declarator] = STATE(3076), + [sym_abstract_parenthesized_declarator] = STATE(4894), + [sym_pointer_declarator] = STATE(3076), + [sym_abstract_pointer_declarator] = STATE(4894), + [sym_function_declarator] = STATE(3076), + [sym_abstract_function_declarator] = STATE(4894), + [sym_array_declarator] = STATE(3076), + [sym_abstract_array_declarator] = STATE(4894), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(4295), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_declarator] = STATE(3076), + [sym_abstract_block_pointer_declarator] = STATE(4894), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5328), + [anon_sym_COMMA] = ACTIONS(6354), + [anon_sym_RPAREN] = ACTIONS(6354), + [anon_sym_LPAREN2] = ACTIONS(5330), + [anon_sym_STAR] = ACTIONS(5332), + [anon_sym_CARET] = ACTIONS(5334), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2545] = { + [sym__declaration_modifiers] = STATE(2802), + [sym_attribute_specifier] = STATE(2802), + [sym_attribute_declaration] = STATE(2802), + [sym_ms_declspec_modifier] = STATE(2802), + [sym_ms_based_modifier] = STATE(6258), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2898), + [sym__field_declarator] = STATE(5080), + [sym_parenthesized_field_declarator] = STATE(4955), + [sym_attributed_field_declarator] = STATE(4955), + [sym_pointer_field_declarator] = STATE(4955), + [sym_function_field_declarator] = STATE(4955), + [sym_array_field_declarator] = STATE(4955), + [sym_storage_class_specifier] = STATE(2802), + [sym_type_qualifier] = STATE(2802), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2802), + [sym_block_pointer_field_declarator] = STATE(4955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2802), + [aux_sym_pointer_declarator_repeat1] = STATE(2898), + [sym_identifier] = ACTIONS(6493), + [anon_sym_LPAREN2] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6525), + [anon_sym_CARET] = ACTIONS(6527), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2546] = { + [sym_type_qualifier] = STATE(2548), + [sym_alignas_qualifier] = STATE(3575), + [sym_expression] = STATE(4550), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_array_declarator_repeat1] = STATE(2548), + [sym_identifier] = ACTIONS(2916), + [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(6529), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6400), + [anon_sym_noreturn] = ACTIONS(6402), + [anon_sym_LBRACK] = ACTIONS(6481), + [anon_sym_RBRACK] = ACTIONS(6531), + [anon_sym_static] = ACTIONS(6533), + [anon_sym_const] = ACTIONS(6408), + [anon_sym_constexpr] = ACTIONS(6402), + [anon_sym_volatile] = ACTIONS(6402), + [anon_sym_restrict] = ACTIONS(6402), + [anon_sym___restrict__] = ACTIONS(6402), + [anon_sym__Atomic] = ACTIONS(6402), + [anon_sym__Noreturn] = ACTIONS(6402), + [anon_sym__Nonnull] = ACTIONS(6402), + [anon_sym_nullable] = ACTIONS(6402), + [anon_sym__Complex] = ACTIONS(6402), + [anon_sym__Nullable] = ACTIONS(6402), + [anon_sym__Nullable_result] = ACTIONS(6402), + [anon_sym__Null_unspecified] = ACTIONS(6402), + [anon_sym___autoreleasing] = ACTIONS(6402), + [anon_sym___block] = ACTIONS(6402), + [anon_sym___bridge] = ACTIONS(6402), + [anon_sym___bridge_retained] = ACTIONS(6402), + [anon_sym___bridge_transfer] = ACTIONS(6402), + [anon_sym___complex] = ACTIONS(6402), + [anon_sym___const] = ACTIONS(6402), + [anon_sym___imag] = ACTIONS(6410), + [anon_sym___kindof] = ACTIONS(6402), + [anon_sym___nonnull] = ACTIONS(6402), + [anon_sym___nullable] = ACTIONS(6402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6402), + [anon_sym___real] = ACTIONS(6410), + [anon_sym___strong] = ACTIONS(6402), + [anon_sym___unsafe_unretained] = ACTIONS(6402), + [anon_sym___unused] = ACTIONS(6402), + [anon_sym___weak] = ACTIONS(6402), + [anon_sym_alignas] = ACTIONS(6412), + [anon_sym__Alignas] = ACTIONS(6412), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2547] = { + [sym_type_qualifier] = STATE(2538), + [sym_alignas_qualifier] = STATE(3575), + [sym_expression] = STATE(4563), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_array_declarator_repeat1] = STATE(2538), + [sym_identifier] = ACTIONS(2916), + [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(6535), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6400), + [anon_sym_noreturn] = ACTIONS(6402), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(6537), + [anon_sym_static] = ACTIONS(6539), + [anon_sym_const] = ACTIONS(6408), + [anon_sym_constexpr] = ACTIONS(6402), + [anon_sym_volatile] = ACTIONS(6402), + [anon_sym_restrict] = ACTIONS(6402), + [anon_sym___restrict__] = ACTIONS(6402), + [anon_sym__Atomic] = ACTIONS(6402), + [anon_sym__Noreturn] = ACTIONS(6402), + [anon_sym__Nonnull] = ACTIONS(6402), + [anon_sym_nullable] = ACTIONS(6402), + [anon_sym__Complex] = ACTIONS(6402), + [anon_sym__Nullable] = ACTIONS(6402), + [anon_sym__Nullable_result] = ACTIONS(6402), + [anon_sym__Null_unspecified] = ACTIONS(6402), + [anon_sym___autoreleasing] = ACTIONS(6402), + [anon_sym___block] = ACTIONS(6402), + [anon_sym___bridge] = ACTIONS(6402), + [anon_sym___bridge_retained] = ACTIONS(6402), + [anon_sym___bridge_transfer] = ACTIONS(6402), + [anon_sym___complex] = ACTIONS(6402), + [anon_sym___const] = ACTIONS(6402), + [anon_sym___imag] = ACTIONS(6410), + [anon_sym___kindof] = ACTIONS(6402), + [anon_sym___nonnull] = ACTIONS(6402), + [anon_sym___nullable] = ACTIONS(6402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6402), + [anon_sym___real] = ACTIONS(6410), + [anon_sym___strong] = ACTIONS(6402), + [anon_sym___unsafe_unretained] = ACTIONS(6402), + [anon_sym___unused] = ACTIONS(6402), + [anon_sym___weak] = ACTIONS(6402), + [anon_sym_alignas] = ACTIONS(6412), + [anon_sym__Alignas] = ACTIONS(6412), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2548] = { + [sym_type_qualifier] = STATE(3349), + [sym_alignas_qualifier] = STATE(3575), + [sym_expression] = STATE(4562), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_array_declarator_repeat1] = STATE(3349), + [sym_identifier] = ACTIONS(2916), + [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(6541), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6400), + [anon_sym_noreturn] = ACTIONS(6402), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(6543), + [anon_sym_static] = ACTIONS(6491), + [anon_sym_const] = ACTIONS(6408), + [anon_sym_constexpr] = ACTIONS(6402), + [anon_sym_volatile] = ACTIONS(6402), + [anon_sym_restrict] = ACTIONS(6402), + [anon_sym___restrict__] = ACTIONS(6402), + [anon_sym__Atomic] = ACTIONS(6402), + [anon_sym__Noreturn] = ACTIONS(6402), + [anon_sym__Nonnull] = ACTIONS(6402), + [anon_sym_nullable] = ACTIONS(6402), + [anon_sym__Complex] = ACTIONS(6402), + [anon_sym__Nullable] = ACTIONS(6402), + [anon_sym__Nullable_result] = ACTIONS(6402), + [anon_sym__Null_unspecified] = ACTIONS(6402), + [anon_sym___autoreleasing] = ACTIONS(6402), + [anon_sym___block] = ACTIONS(6402), + [anon_sym___bridge] = ACTIONS(6402), + [anon_sym___bridge_retained] = ACTIONS(6402), + [anon_sym___bridge_transfer] = ACTIONS(6402), + [anon_sym___complex] = ACTIONS(6402), + [anon_sym___const] = ACTIONS(6402), + [anon_sym___imag] = ACTIONS(6410), + [anon_sym___kindof] = ACTIONS(6402), + [anon_sym___nonnull] = ACTIONS(6402), + [anon_sym___nullable] = ACTIONS(6402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6402), + [anon_sym___real] = ACTIONS(6410), + [anon_sym___strong] = ACTIONS(6402), + [anon_sym___unsafe_unretained] = ACTIONS(6402), + [anon_sym___unused] = ACTIONS(6402), + [anon_sym___weak] = ACTIONS(6402), + [anon_sym_alignas] = ACTIONS(6412), + [anon_sym__Alignas] = ACTIONS(6412), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2549] = { + [sym_type_qualifier] = STATE(3349), + [sym_alignas_qualifier] = STATE(3575), + [sym_expression] = STATE(4577), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_array_declarator_repeat1] = STATE(3349), + [sym_identifier] = ACTIONS(2916), + [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(6545), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6400), + [anon_sym_noreturn] = ACTIONS(6402), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(6547), + [anon_sym_static] = ACTIONS(6491), + [anon_sym_const] = ACTIONS(6408), + [anon_sym_constexpr] = ACTIONS(6402), + [anon_sym_volatile] = ACTIONS(6402), + [anon_sym_restrict] = ACTIONS(6402), + [anon_sym___restrict__] = ACTIONS(6402), + [anon_sym__Atomic] = ACTIONS(6402), + [anon_sym__Noreturn] = ACTIONS(6402), + [anon_sym__Nonnull] = ACTIONS(6402), + [anon_sym_nullable] = ACTIONS(6402), + [anon_sym__Complex] = ACTIONS(6402), + [anon_sym__Nullable] = ACTIONS(6402), + [anon_sym__Nullable_result] = ACTIONS(6402), + [anon_sym__Null_unspecified] = ACTIONS(6402), + [anon_sym___autoreleasing] = ACTIONS(6402), + [anon_sym___block] = ACTIONS(6402), + [anon_sym___bridge] = ACTIONS(6402), + [anon_sym___bridge_retained] = ACTIONS(6402), + [anon_sym___bridge_transfer] = ACTIONS(6402), + [anon_sym___complex] = ACTIONS(6402), + [anon_sym___const] = ACTIONS(6402), + [anon_sym___imag] = ACTIONS(6410), + [anon_sym___kindof] = ACTIONS(6402), + [anon_sym___nonnull] = ACTIONS(6402), + [anon_sym___nullable] = ACTIONS(6402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6402), + [anon_sym___real] = ACTIONS(6410), + [anon_sym___strong] = ACTIONS(6402), + [anon_sym___unsafe_unretained] = ACTIONS(6402), + [anon_sym___unused] = ACTIONS(6402), + [anon_sym___weak] = ACTIONS(6402), + [anon_sym_alignas] = ACTIONS(6412), + [anon_sym__Alignas] = ACTIONS(6412), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2550] = { + [sym_type_qualifier] = STATE(3349), + [sym_alignas_qualifier] = STATE(3575), + [sym_expression] = STATE(4538), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_array_declarator_repeat1] = STATE(3349), + [sym_identifier] = ACTIONS(2916), + [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(6549), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6400), + [anon_sym_noreturn] = ACTIONS(6402), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(6551), + [anon_sym_static] = ACTIONS(6491), + [anon_sym_const] = ACTIONS(6408), + [anon_sym_constexpr] = ACTIONS(6402), + [anon_sym_volatile] = ACTIONS(6402), + [anon_sym_restrict] = ACTIONS(6402), + [anon_sym___restrict__] = ACTIONS(6402), + [anon_sym__Atomic] = ACTIONS(6402), + [anon_sym__Noreturn] = ACTIONS(6402), + [anon_sym__Nonnull] = ACTIONS(6402), + [anon_sym_nullable] = ACTIONS(6402), + [anon_sym__Complex] = ACTIONS(6402), + [anon_sym__Nullable] = ACTIONS(6402), + [anon_sym__Nullable_result] = ACTIONS(6402), + [anon_sym__Null_unspecified] = ACTIONS(6402), + [anon_sym___autoreleasing] = ACTIONS(6402), + [anon_sym___block] = ACTIONS(6402), + [anon_sym___bridge] = ACTIONS(6402), + [anon_sym___bridge_retained] = ACTIONS(6402), + [anon_sym___bridge_transfer] = ACTIONS(6402), + [anon_sym___complex] = ACTIONS(6402), + [anon_sym___const] = ACTIONS(6402), + [anon_sym___imag] = ACTIONS(6410), + [anon_sym___kindof] = ACTIONS(6402), + [anon_sym___nonnull] = ACTIONS(6402), + [anon_sym___nullable] = ACTIONS(6402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6402), + [anon_sym___real] = ACTIONS(6410), + [anon_sym___strong] = ACTIONS(6402), + [anon_sym___unsafe_unretained] = ACTIONS(6402), + [anon_sym___unused] = ACTIONS(6402), + [anon_sym___weak] = ACTIONS(6402), + [anon_sym_alignas] = ACTIONS(6412), + [anon_sym__Alignas] = ACTIONS(6412), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2551] = { + [sym_type_qualifier] = STATE(2548), + [sym_alignas_qualifier] = STATE(3575), + [sym_expression] = STATE(4550), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_array_declarator_repeat1] = STATE(2548), + [sym_identifier] = ACTIONS(2916), + [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(6529), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6400), + [anon_sym_noreturn] = ACTIONS(6402), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(6531), + [anon_sym_static] = ACTIONS(6533), + [anon_sym_const] = ACTIONS(6408), + [anon_sym_constexpr] = ACTIONS(6402), + [anon_sym_volatile] = ACTIONS(6402), + [anon_sym_restrict] = ACTIONS(6402), + [anon_sym___restrict__] = ACTIONS(6402), + [anon_sym__Atomic] = ACTIONS(6402), + [anon_sym__Noreturn] = ACTIONS(6402), + [anon_sym__Nonnull] = ACTIONS(6402), + [anon_sym_nullable] = ACTIONS(6402), + [anon_sym__Complex] = ACTIONS(6402), + [anon_sym__Nullable] = ACTIONS(6402), + [anon_sym__Nullable_result] = ACTIONS(6402), + [anon_sym__Null_unspecified] = ACTIONS(6402), + [anon_sym___autoreleasing] = ACTIONS(6402), + [anon_sym___block] = ACTIONS(6402), + [anon_sym___bridge] = ACTIONS(6402), + [anon_sym___bridge_retained] = ACTIONS(6402), + [anon_sym___bridge_transfer] = ACTIONS(6402), + [anon_sym___complex] = ACTIONS(6402), + [anon_sym___const] = ACTIONS(6402), + [anon_sym___imag] = ACTIONS(6410), + [anon_sym___kindof] = ACTIONS(6402), + [anon_sym___nonnull] = ACTIONS(6402), + [anon_sym___nullable] = ACTIONS(6402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6402), + [anon_sym___real] = ACTIONS(6410), + [anon_sym___strong] = ACTIONS(6402), + [anon_sym___unsafe_unretained] = ACTIONS(6402), + [anon_sym___unused] = ACTIONS(6402), + [anon_sym___weak] = ACTIONS(6402), + [anon_sym_alignas] = ACTIONS(6412), + [anon_sym__Alignas] = ACTIONS(6412), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2552] = { + [sym_type_qualifier] = STATE(2542), + [sym_alignas_qualifier] = STATE(3575), + [sym_expression] = STATE(4513), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_array_declarator_repeat1] = STATE(2542), + [sym_identifier] = ACTIONS(2916), + [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(6553), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6400), + [anon_sym_noreturn] = ACTIONS(6402), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(6555), + [anon_sym_static] = ACTIONS(6557), + [anon_sym_const] = ACTIONS(6408), + [anon_sym_constexpr] = ACTIONS(6402), + [anon_sym_volatile] = ACTIONS(6402), + [anon_sym_restrict] = ACTIONS(6402), + [anon_sym___restrict__] = ACTIONS(6402), + [anon_sym__Atomic] = ACTIONS(6402), + [anon_sym__Noreturn] = ACTIONS(6402), + [anon_sym__Nonnull] = ACTIONS(6402), + [anon_sym_nullable] = ACTIONS(6402), + [anon_sym__Complex] = ACTIONS(6402), + [anon_sym__Nullable] = ACTIONS(6402), + [anon_sym__Nullable_result] = ACTIONS(6402), + [anon_sym__Null_unspecified] = ACTIONS(6402), + [anon_sym___autoreleasing] = ACTIONS(6402), + [anon_sym___block] = ACTIONS(6402), + [anon_sym___bridge] = ACTIONS(6402), + [anon_sym___bridge_retained] = ACTIONS(6402), + [anon_sym___bridge_transfer] = ACTIONS(6402), + [anon_sym___complex] = ACTIONS(6402), + [anon_sym___const] = ACTIONS(6402), + [anon_sym___imag] = ACTIONS(6410), + [anon_sym___kindof] = ACTIONS(6402), + [anon_sym___nonnull] = ACTIONS(6402), + [anon_sym___nullable] = ACTIONS(6402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6402), + [anon_sym___real] = ACTIONS(6410), + [anon_sym___strong] = ACTIONS(6402), + [anon_sym___unsafe_unretained] = ACTIONS(6402), + [anon_sym___unused] = ACTIONS(6402), + [anon_sym___weak] = ACTIONS(6402), + [anon_sym_alignas] = ACTIONS(6412), + [anon_sym__Alignas] = ACTIONS(6412), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2553] = { + [sym__declaration_modifiers] = STATE(2822), + [sym_attribute_specifier] = STATE(2822), + [sym_attribute_declaration] = STATE(2822), + [sym_ms_declspec_modifier] = STATE(2822), + [sym_ms_based_modifier] = STATE(6162), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2555), + [sym__field_declarator] = STATE(4866), + [sym_parenthesized_field_declarator] = STATE(4955), + [sym_attributed_field_declarator] = STATE(4955), + [sym_pointer_field_declarator] = STATE(4955), + [sym_function_field_declarator] = STATE(4955), + [sym_array_field_declarator] = STATE(4955), + [sym_storage_class_specifier] = STATE(2822), + [sym_type_qualifier] = STATE(2822), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2822), + [sym_block_pointer_field_declarator] = STATE(4955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2822), + [aux_sym_pointer_declarator_repeat1] = STATE(2555), + [sym_identifier] = ACTIONS(6493), + [anon_sym_LPAREN2] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6497), + [anon_sym_CARET] = ACTIONS(6499), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2554] = { + [sym__declaration_modifiers] = STATE(2822), + [sym_attribute_specifier] = STATE(2822), + [sym_attribute_declaration] = STATE(2822), + [sym_ms_declspec_modifier] = STATE(2822), + [sym_ms_based_modifier] = STATE(6162), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2898), + [sym__field_declarator] = STATE(4866), + [sym_parenthesized_field_declarator] = STATE(4955), + [sym_attributed_field_declarator] = STATE(4955), + [sym_pointer_field_declarator] = STATE(4955), + [sym_function_field_declarator] = STATE(4955), + [sym_array_field_declarator] = STATE(4955), + [sym_storage_class_specifier] = STATE(2822), + [sym_type_qualifier] = STATE(2822), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2822), + [sym_block_pointer_field_declarator] = STATE(4955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2822), + [aux_sym_pointer_declarator_repeat1] = STATE(2898), + [sym_identifier] = ACTIONS(6493), + [anon_sym_LPAREN2] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6497), + [anon_sym_CARET] = ACTIONS(6499), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2555] = { + [sym__declaration_modifiers] = STATE(2805), + [sym_attribute_specifier] = STATE(2805), + [sym_attribute_declaration] = STATE(2805), + [sym_ms_declspec_modifier] = STATE(2805), + [sym_ms_based_modifier] = STATE(6162), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2898), + [sym__field_declarator] = STATE(4880), + [sym_parenthesized_field_declarator] = STATE(4955), + [sym_attributed_field_declarator] = STATE(4955), + [sym_pointer_field_declarator] = STATE(4955), + [sym_function_field_declarator] = STATE(4955), + [sym_array_field_declarator] = STATE(4955), + [sym_storage_class_specifier] = STATE(2805), + [sym_type_qualifier] = STATE(2805), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2805), + [sym_block_pointer_field_declarator] = STATE(4955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2805), + [aux_sym_pointer_declarator_repeat1] = STATE(2898), + [sym_identifier] = ACTIONS(6493), + [anon_sym_LPAREN2] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6497), + [anon_sym_CARET] = ACTIONS(6499), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2556] = { + [sym__declaration_modifiers] = STATE(2824), + [sym_attribute_specifier] = STATE(2824), + [sym_attribute_declaration] = STATE(2824), + [sym_ms_declspec_modifier] = STATE(2824), + [sym_ms_based_modifier] = STATE(6258), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2898), + [sym__field_declarator] = STATE(5077), + [sym_parenthesized_field_declarator] = STATE(4955), + [sym_attributed_field_declarator] = STATE(4955), + [sym_pointer_field_declarator] = STATE(4955), + [sym_function_field_declarator] = STATE(4955), + [sym_array_field_declarator] = STATE(4955), + [sym_storage_class_specifier] = STATE(2824), + [sym_type_qualifier] = STATE(2824), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2824), + [sym_block_pointer_field_declarator] = STATE(4955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2824), + [aux_sym_pointer_declarator_repeat1] = STATE(2898), + [sym_identifier] = ACTIONS(6493), + [anon_sym_LPAREN2] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6525), + [anon_sym_CARET] = ACTIONS(6527), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2557] = { + [sym_type_qualifier] = STATE(2549), + [sym_alignas_qualifier] = STATE(3575), + [sym_expression] = STATE(4582), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_array_declarator_repeat1] = STATE(2549), + [sym_identifier] = ACTIONS(2916), + [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(6398), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6400), + [anon_sym_noreturn] = ACTIONS(6402), + [anon_sym_LBRACK] = ACTIONS(6481), + [anon_sym_RBRACK] = ACTIONS(6519), + [anon_sym_static] = ACTIONS(6406), + [anon_sym_const] = ACTIONS(6408), + [anon_sym_constexpr] = ACTIONS(6402), + [anon_sym_volatile] = ACTIONS(6402), + [anon_sym_restrict] = ACTIONS(6402), + [anon_sym___restrict__] = ACTIONS(6402), + [anon_sym__Atomic] = ACTIONS(6402), + [anon_sym__Noreturn] = ACTIONS(6402), + [anon_sym__Nonnull] = ACTIONS(6402), + [anon_sym_nullable] = ACTIONS(6402), + [anon_sym__Complex] = ACTIONS(6402), + [anon_sym__Nullable] = ACTIONS(6402), + [anon_sym__Nullable_result] = ACTIONS(6402), + [anon_sym__Null_unspecified] = ACTIONS(6402), + [anon_sym___autoreleasing] = ACTIONS(6402), + [anon_sym___block] = ACTIONS(6402), + [anon_sym___bridge] = ACTIONS(6402), + [anon_sym___bridge_retained] = ACTIONS(6402), + [anon_sym___bridge_transfer] = ACTIONS(6402), + [anon_sym___complex] = ACTIONS(6402), + [anon_sym___const] = ACTIONS(6402), + [anon_sym___imag] = ACTIONS(6410), + [anon_sym___kindof] = ACTIONS(6402), + [anon_sym___nonnull] = ACTIONS(6402), + [anon_sym___nullable] = ACTIONS(6402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6402), + [anon_sym___real] = ACTIONS(6410), + [anon_sym___strong] = ACTIONS(6402), + [anon_sym___unsafe_unretained] = ACTIONS(6402), + [anon_sym___unused] = ACTIONS(6402), + [anon_sym___weak] = ACTIONS(6402), + [anon_sym_alignas] = ACTIONS(6412), + [anon_sym__Alignas] = ACTIONS(6412), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2558] = { + [sym_type_qualifier] = STATE(3349), + [sym_alignas_qualifier] = STATE(3575), + [sym_expression] = STATE(4570), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_array_declarator_repeat1] = STATE(3349), + [sym_identifier] = ACTIONS(2916), + [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(6559), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6400), + [anon_sym_noreturn] = ACTIONS(6402), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(6561), + [anon_sym_static] = ACTIONS(6491), + [anon_sym_const] = ACTIONS(6408), + [anon_sym_constexpr] = ACTIONS(6402), + [anon_sym_volatile] = ACTIONS(6402), + [anon_sym_restrict] = ACTIONS(6402), + [anon_sym___restrict__] = ACTIONS(6402), + [anon_sym__Atomic] = ACTIONS(6402), + [anon_sym__Noreturn] = ACTIONS(6402), + [anon_sym__Nonnull] = ACTIONS(6402), + [anon_sym_nullable] = ACTIONS(6402), + [anon_sym__Complex] = ACTIONS(6402), + [anon_sym__Nullable] = ACTIONS(6402), + [anon_sym__Nullable_result] = ACTIONS(6402), + [anon_sym__Null_unspecified] = ACTIONS(6402), + [anon_sym___autoreleasing] = ACTIONS(6402), + [anon_sym___block] = ACTIONS(6402), + [anon_sym___bridge] = ACTIONS(6402), + [anon_sym___bridge_retained] = ACTIONS(6402), + [anon_sym___bridge_transfer] = ACTIONS(6402), + [anon_sym___complex] = ACTIONS(6402), + [anon_sym___const] = ACTIONS(6402), + [anon_sym___imag] = ACTIONS(6410), + [anon_sym___kindof] = ACTIONS(6402), + [anon_sym___nonnull] = ACTIONS(6402), + [anon_sym___nullable] = ACTIONS(6402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6402), + [anon_sym___real] = ACTIONS(6410), + [anon_sym___strong] = ACTIONS(6402), + [anon_sym___unsafe_unretained] = ACTIONS(6402), + [anon_sym___unused] = ACTIONS(6402), + [anon_sym___weak] = ACTIONS(6402), + [anon_sym_alignas] = ACTIONS(6412), + [anon_sym__Alignas] = ACTIONS(6412), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2559] = { + [sym__declaration_modifiers] = STATE(2820), + [sym_attribute_specifier] = STATE(2820), + [sym_attribute_declaration] = STATE(2820), + [sym_ms_declspec_modifier] = STATE(2820), + [sym_ms_based_modifier] = STATE(6258), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2556), + [sym__field_declarator] = STATE(5073), + [sym_parenthesized_field_declarator] = STATE(4955), + [sym_attributed_field_declarator] = STATE(4955), + [sym_pointer_field_declarator] = STATE(4955), + [sym_function_field_declarator] = STATE(4955), + [sym_array_field_declarator] = STATE(4955), + [sym_storage_class_specifier] = STATE(2820), + [sym_type_qualifier] = STATE(2820), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2820), + [sym_block_pointer_field_declarator] = STATE(4955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2820), + [aux_sym_pointer_declarator_repeat1] = STATE(2556), + [sym_identifier] = ACTIONS(6493), + [anon_sym_LPAREN2] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6525), + [anon_sym_CARET] = ACTIONS(6527), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2560] = { + [sym__declaration_modifiers] = STATE(2837), + [sym_attribute_specifier] = STATE(2837), + [sym_attribute_declaration] = STATE(2837), + [sym_ms_declspec_modifier] = STATE(2837), + [sym_ms_based_modifier] = STATE(6323), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2565), + [sym__declarator] = STATE(3914), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_storage_class_specifier] = STATE(2837), + [sym_type_qualifier] = STATE(2837), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2837), + [sym_block_pointer_declarator] = STATE(4011), + [aux_sym__declaration_specifiers_repeat1] = STATE(2837), + [aux_sym_pointer_declarator_repeat1] = STATE(2565), + [sym_identifier] = ACTIONS(5281), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2561] = { + [sym_attribute_declaration] = STATE(2444), + [sym_compound_statement] = STATE(786), + [sym_attributed_statement] = STATE(786), + [sym_labeled_statement] = STATE(786), + [sym_expression_statement] = STATE(786), + [sym_if_statement] = STATE(786), + [sym_switch_statement] = STATE(786), + [sym_while_statement] = STATE(786), + [sym_do_statement] = STATE(786), + [sym_for_statement] = STATE(786), + [sym_return_statement] = STATE(786), + [sym_break_statement] = STATE(786), + [sym_continue_statement] = STATE(786), + [sym_goto_statement] = STATE(786), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(786), + [sym_throw_statement] = STATE(786), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(786), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(786), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(5802), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_id] = ACTIONS(203), + }, + [2562] = { + [sym__declaration_modifiers] = STATE(2860), + [sym_attribute_specifier] = STATE(2860), + [sym_attribute_declaration] = STATE(2860), + [sym_ms_declspec_modifier] = STATE(2860), + [sym_ms_based_modifier] = STATE(6323), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2898), + [sym__declarator] = STATE(3857), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_storage_class_specifier] = STATE(2860), + [sym_type_qualifier] = STATE(2860), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2860), + [sym_block_pointer_declarator] = STATE(4011), + [aux_sym__declaration_specifiers_repeat1] = STATE(2860), + [aux_sym_pointer_declarator_repeat1] = STATE(2898), + [sym_identifier] = ACTIONS(5281), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2563] = { + [sym_attribute_declaration] = STATE(2444), + [sym_compound_statement] = STATE(789), + [sym_attributed_statement] = STATE(790), + [sym_labeled_statement] = STATE(791), + [sym_expression_statement] = STATE(792), + [sym_if_statement] = STATE(793), + [sym_switch_statement] = STATE(794), + [sym_while_statement] = STATE(795), + [sym_do_statement] = STATE(796), + [sym_for_statement] = STATE(797), + [sym_return_statement] = STATE(798), + [sym_break_statement] = STATE(799), + [sym_continue_statement] = STATE(800), + [sym_goto_statement] = STATE(801), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(802), + [sym_throw_statement] = STATE(803), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(804), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(805), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(5802), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(986), + [anon_sym___try] = ACTIONS(988), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(992), + [anon_sym_id] = ACTIONS(203), + }, + [2564] = { + [sym_attribute_declaration] = STATE(2472), + [sym_compound_statement] = STATE(969), + [sym_attributed_statement] = STATE(969), + [sym_labeled_statement] = STATE(969), + [sym_expression_statement] = STATE(969), + [sym_if_statement] = STATE(969), + [sym_switch_statement] = STATE(969), + [sym_while_statement] = STATE(969), + [sym_do_statement] = STATE(969), + [sym_for_statement] = STATE(969), + [sym_return_statement] = STATE(969), + [sym_break_statement] = STATE(969), + [sym_continue_statement] = STATE(969), + [sym_goto_statement] = STATE(969), + [sym_expression] = STATE(4465), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6211), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(969), + [sym_throw_statement] = STATE(969), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(969), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(969), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2472), + [sym_identifier] = ACTIONS(5798), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2128), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(69), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_while] = ACTIONS(77), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym___try] = ACTIONS(2136), + [anon_sym_ATthrow] = ACTIONS(2138), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2140), + [anon_sym_id] = ACTIONS(203), + }, + [2565] = { + [sym__declaration_modifiers] = STATE(2845), + [sym_attribute_specifier] = STATE(2845), + [sym_attribute_declaration] = STATE(2845), + [sym_ms_declspec_modifier] = STATE(2845), + [sym_ms_based_modifier] = STATE(6323), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2898), + [sym__declarator] = STATE(3850), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_storage_class_specifier] = STATE(2845), + [sym_type_qualifier] = STATE(2845), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2845), + [sym_block_pointer_declarator] = STATE(4011), + [aux_sym__declaration_specifiers_repeat1] = STATE(2845), + [aux_sym_pointer_declarator_repeat1] = STATE(2898), + [sym_identifier] = ACTIONS(5281), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2566] = { + [sym__declaration_modifiers] = STATE(2850), + [sym_attribute_specifier] = STATE(2850), + [sym_attribute_declaration] = STATE(2850), + [sym_ms_declspec_modifier] = STATE(2850), + [sym_ms_based_modifier] = STATE(6315), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2898), + [sym__declarator] = STATE(2757), + [sym_parenthesized_declarator] = STATE(2792), + [sym_pointer_declarator] = STATE(2792), + [sym_function_declarator] = STATE(2792), + [sym_array_declarator] = STATE(2792), + [sym_storage_class_specifier] = STATE(2850), + [sym_type_qualifier] = STATE(2850), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2850), + [sym_block_pointer_declarator] = STATE(2792), + [aux_sym__declaration_specifiers_repeat1] = STATE(2850), + [aux_sym_pointer_declarator_repeat1] = STATE(2898), + [sym_identifier] = ACTIONS(6567), + [anon_sym_LPAREN2] = ACTIONS(6569), + [anon_sym_STAR] = ACTIONS(6571), + [anon_sym_CARET] = ACTIONS(6573), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2567] = { + [sym__declaration_modifiers] = STATE(2850), + [sym_attribute_specifier] = STATE(2850), + [sym_attribute_declaration] = STATE(2850), + [sym_ms_declspec_modifier] = STATE(2850), + [sym_ms_based_modifier] = STATE(6315), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2571), + [sym__declarator] = STATE(2757), + [sym_parenthesized_declarator] = STATE(2792), + [sym_pointer_declarator] = STATE(2792), + [sym_function_declarator] = STATE(2792), + [sym_array_declarator] = STATE(2792), + [sym_storage_class_specifier] = STATE(2850), + [sym_type_qualifier] = STATE(2850), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2850), + [sym_block_pointer_declarator] = STATE(2792), + [aux_sym__declaration_specifiers_repeat1] = STATE(2850), + [aux_sym_pointer_declarator_repeat1] = STATE(2571), + [sym_identifier] = ACTIONS(6567), + [anon_sym_LPAREN2] = ACTIONS(6569), + [anon_sym_STAR] = ACTIONS(6571), + [anon_sym_CARET] = ACTIONS(6573), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2568] = { + [sym_attribute_specifier] = STATE(2693), + [sym_gnu_asm_expression] = STATE(2698), + [aux_sym_function_declarator_repeat1] = STATE(2693), + [sym_identifier] = ACTIONS(6575), + [anon_sym_COMMA] = ACTIONS(6577), + [anon_sym_LPAREN2] = ACTIONS(6577), + [anon_sym_SEMI] = ACTIONS(6577), + [anon_sym___extension__] = ACTIONS(6575), + [anon_sym_extern] = ACTIONS(6575), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6575), + [anon_sym_LBRACK] = ACTIONS(6577), + [anon_sym___declspec] = ACTIONS(6575), + [anon_sym_LBRACE] = ACTIONS(6577), + [anon_sym_signed] = ACTIONS(6575), + [anon_sym_unsigned] = ACTIONS(6575), + [anon_sym_long] = ACTIONS(6575), + [anon_sym_short] = ACTIONS(6575), + [anon_sym_static] = ACTIONS(6575), + [anon_sym_EQ] = ACTIONS(6577), + [anon_sym_ATautoreleasepool] = ACTIONS(6577), + [anon_sym_auto] = ACTIONS(6575), + [anon_sym_register] = ACTIONS(6575), + [anon_sym_inline] = ACTIONS(6575), + [anon_sym___inline] = ACTIONS(6575), + [anon_sym___inline__] = ACTIONS(6575), + [anon_sym___forceinline] = ACTIONS(6575), + [anon_sym_thread_local] = ACTIONS(6575), + [anon_sym___thread] = ACTIONS(6575), + [anon_sym_CG_EXTERN] = ACTIONS(6575), + [anon_sym_CG_INLINE] = ACTIONS(6575), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6575), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6575), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6575), + [anon_sym_IBOutlet] = ACTIONS(6575), + [anon_sym_IBInspectable] = ACTIONS(6575), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6575), + [anon_sym_NS_INLINE] = ACTIONS(6575), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6575), + [anon_sym_OBJC_EXPORT] = ACTIONS(6575), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6575), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6575), + [anon_sym_const] = ACTIONS(6575), + [anon_sym_constexpr] = ACTIONS(6575), + [anon_sym_volatile] = ACTIONS(6575), + [anon_sym_restrict] = ACTIONS(6575), + [anon_sym___restrict__] = ACTIONS(6575), + [anon_sym__Atomic] = ACTIONS(6575), + [anon_sym__Noreturn] = ACTIONS(6575), + [anon_sym__Nonnull] = ACTIONS(6575), + [anon_sym_nullable] = ACTIONS(6575), + [anon_sym__Complex] = ACTIONS(6575), + [anon_sym__Nullable] = ACTIONS(6575), + [anon_sym__Nullable_result] = ACTIONS(6575), + [anon_sym__Null_unspecified] = ACTIONS(6575), + [anon_sym___autoreleasing] = ACTIONS(6575), + [anon_sym___block] = ACTIONS(6575), + [anon_sym___bridge] = ACTIONS(6575), + [anon_sym___bridge_retained] = ACTIONS(6575), + [anon_sym___bridge_transfer] = ACTIONS(6575), + [anon_sym___complex] = ACTIONS(6575), + [anon_sym___const] = ACTIONS(6575), + [anon_sym___imag] = ACTIONS(6575), + [anon_sym___kindof] = ACTIONS(6575), + [anon_sym___nonnull] = ACTIONS(6575), + [anon_sym___nullable] = ACTIONS(6575), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6575), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6575), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6575), + [anon_sym___real] = ACTIONS(6575), + [anon_sym___strong] = ACTIONS(6575), + [anon_sym___unsafe_unretained] = ACTIONS(6575), + [anon_sym___unused] = ACTIONS(6575), + [anon_sym___weak] = ACTIONS(6575), + [anon_sym_alignas] = ACTIONS(6575), + [anon_sym__Alignas] = ACTIONS(6575), + [sym_primitive_type] = ACTIONS(6575), + [anon_sym_enum] = ACTIONS(6575), + [anon_sym_struct] = ACTIONS(6575), + [anon_sym_union] = ACTIONS(6575), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6575), + [anon_sym___typeof] = ACTIONS(6575), + [anon_sym_typeof] = ACTIONS(6575), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6575), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6575), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6575), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6575), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6575), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6575), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6575), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6575), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6575), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6575), + [anon_sym_NS_AVAILABLE] = ACTIONS(6575), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6575), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6575), + [anon_sym_API_AVAILABLE] = ACTIONS(6575), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6575), + [anon_sym_API_DEPRECATED] = ACTIONS(6575), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6575), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6575), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6575), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6575), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6575), + [anon_sym___deprecated_msg] = ACTIONS(6575), + [anon_sym___deprecated_enum_msg] = ACTIONS(6575), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6575), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6575), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6575), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6575), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6575), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6575), + [anon_sym_BOOL] = ACTIONS(6575), + [anon_sym_IMP] = ACTIONS(6575), + [anon_sym_SEL] = ACTIONS(6575), + [anon_sym_Class] = ACTIONS(6575), + [anon_sym_id] = ACTIONS(6575), + }, + [2569] = { + [sym__declaration_modifiers] = STATE(2845), + [sym_attribute_specifier] = STATE(2845), + [sym_attribute_declaration] = STATE(2845), + [sym_ms_declspec_modifier] = STATE(2845), + [sym_ms_based_modifier] = STATE(6323), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2562), + [sym__declarator] = STATE(3850), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_storage_class_specifier] = STATE(2845), + [sym_type_qualifier] = STATE(2845), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2845), + [sym_block_pointer_declarator] = STATE(4011), + [aux_sym__declaration_specifiers_repeat1] = STATE(2845), + [aux_sym_pointer_declarator_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(5281), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2570] = { + [sym__declaration_modifiers] = STATE(2864), + [sym_attribute_specifier] = STATE(2864), + [sym_attribute_declaration] = STATE(2864), + [sym_ms_declspec_modifier] = STATE(2864), + [sym_ms_based_modifier] = STATE(6197), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2587), + [sym__declarator] = STATE(3081), + [sym_parenthesized_declarator] = STATE(3076), + [sym_pointer_declarator] = STATE(3076), + [sym_function_declarator] = STATE(3076), + [sym_array_declarator] = STATE(3076), + [sym_storage_class_specifier] = STATE(2864), + [sym_type_qualifier] = STATE(2864), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2864), + [sym_block_pointer_declarator] = STATE(3076), + [aux_sym__declaration_specifiers_repeat1] = STATE(2864), + [aux_sym_pointer_declarator_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(5328), + [anon_sym_LPAREN2] = ACTIONS(6579), + [anon_sym_STAR] = ACTIONS(6581), + [anon_sym_CARET] = ACTIONS(6583), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2571] = { + [sym__declaration_modifiers] = STATE(2846), + [sym_attribute_specifier] = STATE(2846), + [sym_attribute_declaration] = STATE(2846), + [sym_ms_declspec_modifier] = STATE(2846), + [sym_ms_based_modifier] = STATE(6315), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2898), + [sym__declarator] = STATE(2783), + [sym_parenthesized_declarator] = STATE(2792), + [sym_pointer_declarator] = STATE(2792), + [sym_function_declarator] = STATE(2792), + [sym_array_declarator] = STATE(2792), + [sym_storage_class_specifier] = STATE(2846), + [sym_type_qualifier] = STATE(2846), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2846), + [sym_block_pointer_declarator] = STATE(2792), + [aux_sym__declaration_specifiers_repeat1] = STATE(2846), + [aux_sym_pointer_declarator_repeat1] = STATE(2898), + [sym_identifier] = ACTIONS(6567), + [anon_sym_LPAREN2] = ACTIONS(6569), + [anon_sym_STAR] = ACTIONS(6571), + [anon_sym_CARET] = ACTIONS(6573), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2572] = { + [sym_type_qualifier] = STATE(2637), + [sym_alignas_qualifier] = STATE(3575), + [sym_expression] = STATE(4584), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(2637), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6400), + [anon_sym_noreturn] = ACTIONS(6402), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(6585), + [anon_sym_const] = ACTIONS(6587), + [anon_sym_constexpr] = ACTIONS(6402), + [anon_sym_volatile] = ACTIONS(6402), + [anon_sym_restrict] = ACTIONS(6402), + [anon_sym___restrict__] = ACTIONS(6402), + [anon_sym__Atomic] = ACTIONS(6402), + [anon_sym__Noreturn] = ACTIONS(6402), + [anon_sym__Nonnull] = ACTIONS(6402), + [anon_sym_nullable] = ACTIONS(6402), + [anon_sym__Complex] = ACTIONS(6402), + [anon_sym__Nullable] = ACTIONS(6402), + [anon_sym__Nullable_result] = ACTIONS(6402), + [anon_sym__Null_unspecified] = ACTIONS(6402), + [anon_sym___autoreleasing] = ACTIONS(6402), + [anon_sym___block] = ACTIONS(6402), + [anon_sym___bridge] = ACTIONS(6402), + [anon_sym___bridge_retained] = ACTIONS(6402), + [anon_sym___bridge_transfer] = ACTIONS(6402), + [anon_sym___complex] = ACTIONS(6402), + [anon_sym___const] = ACTIONS(6402), + [anon_sym___imag] = ACTIONS(6410), + [anon_sym___kindof] = ACTIONS(6402), + [anon_sym___nonnull] = ACTIONS(6402), + [anon_sym___nullable] = ACTIONS(6402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6402), + [anon_sym___real] = ACTIONS(6410), + [anon_sym___strong] = ACTIONS(6402), + [anon_sym___unsafe_unretained] = ACTIONS(6402), + [anon_sym___unused] = ACTIONS(6402), + [anon_sym___weak] = ACTIONS(6402), + [anon_sym_alignas] = ACTIONS(6412), + [anon_sym__Alignas] = ACTIONS(6412), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2573] = { + [sym_attribute_declaration] = STATE(2472), + [sym_compound_statement] = STATE(970), + [sym_attributed_statement] = STATE(971), + [sym_labeled_statement] = STATE(972), + [sym_expression_statement] = STATE(973), + [sym_if_statement] = STATE(974), + [sym_switch_statement] = STATE(975), + [sym_while_statement] = STATE(976), + [sym_do_statement] = STATE(977), + [sym_for_statement] = STATE(978), + [sym_return_statement] = STATE(983), + [sym_break_statement] = STATE(960), + [sym_continue_statement] = STATE(968), + [sym_goto_statement] = STATE(927), + [sym_expression] = STATE(4465), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6211), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(959), + [sym_throw_statement] = STATE(950), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(946), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(965), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2472), + [sym_identifier] = ACTIONS(5798), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2128), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(69), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_while] = ACTIONS(77), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym___try] = ACTIONS(2136), + [anon_sym_ATthrow] = ACTIONS(2138), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2140), + [anon_sym_id] = ACTIONS(203), + }, + [2574] = { + [sym_type_qualifier] = STATE(2643), + [sym_alignas_qualifier] = STATE(3575), + [sym_expression] = STATE(4533), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(2643), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6400), + [anon_sym_noreturn] = ACTIONS(6402), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(6589), + [anon_sym_const] = ACTIONS(6587), + [anon_sym_constexpr] = ACTIONS(6402), + [anon_sym_volatile] = ACTIONS(6402), + [anon_sym_restrict] = ACTIONS(6402), + [anon_sym___restrict__] = ACTIONS(6402), + [anon_sym__Atomic] = ACTIONS(6402), + [anon_sym__Noreturn] = ACTIONS(6402), + [anon_sym__Nonnull] = ACTIONS(6402), + [anon_sym_nullable] = ACTIONS(6402), + [anon_sym__Complex] = ACTIONS(6402), + [anon_sym__Nullable] = ACTIONS(6402), + [anon_sym__Nullable_result] = ACTIONS(6402), + [anon_sym__Null_unspecified] = ACTIONS(6402), + [anon_sym___autoreleasing] = ACTIONS(6402), + [anon_sym___block] = ACTIONS(6402), + [anon_sym___bridge] = ACTIONS(6402), + [anon_sym___bridge_retained] = ACTIONS(6402), + [anon_sym___bridge_transfer] = ACTIONS(6402), + [anon_sym___complex] = ACTIONS(6402), + [anon_sym___const] = ACTIONS(6402), + [anon_sym___imag] = ACTIONS(6410), + [anon_sym___kindof] = ACTIONS(6402), + [anon_sym___nonnull] = ACTIONS(6402), + [anon_sym___nullable] = ACTIONS(6402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6402), + [anon_sym___real] = ACTIONS(6410), + [anon_sym___strong] = ACTIONS(6402), + [anon_sym___unsafe_unretained] = ACTIONS(6402), + [anon_sym___unused] = ACTIONS(6402), + [anon_sym___weak] = ACTIONS(6402), + [anon_sym_alignas] = ACTIONS(6412), + [anon_sym__Alignas] = ACTIONS(6412), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2575] = { + [sym_attribute_declaration] = STATE(2480), + [sym_compound_statement] = STATE(253), + [sym_attributed_statement] = STATE(253), + [sym_labeled_statement] = STATE(253), + [sym_expression_statement] = STATE(253), + [sym_if_statement] = STATE(253), + [sym_switch_statement] = STATE(253), + [sym_while_statement] = STATE(253), + [sym_do_statement] = STATE(253), + [sym_for_statement] = STATE(253), + [sym_return_statement] = STATE(253), + [sym_break_statement] = STATE(253), + [sym_continue_statement] = STATE(253), + [sym_goto_statement] = STATE(253), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(253), + [sym_throw_statement] = STATE(253), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(253), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(253), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [sym_identifier] = ACTIONS(5800), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_id] = ACTIONS(203), + }, + [2576] = { + [sym_protocol_reference_list] = STATE(2961), + [sym_identifier] = ACTIONS(6446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4236), + [anon_sym_LPAREN2] = ACTIONS(6448), + [anon_sym_DASH] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4234), + [anon_sym_STAR] = ACTIONS(6448), + [anon_sym_SLASH] = ACTIONS(4234), + [anon_sym_PERCENT] = ACTIONS(4236), + [anon_sym_PIPE_PIPE] = ACTIONS(4236), + [anon_sym_AMP_AMP] = ACTIONS(4236), + [anon_sym_PIPE] = ACTIONS(4234), + [anon_sym_CARET] = ACTIONS(6448), + [anon_sym_AMP] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4236), + [anon_sym_BANG_EQ] = ACTIONS(4236), + [anon_sym_GT] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4236), + [anon_sym_LT_EQ] = ACTIONS(4236), + [anon_sym_LT] = ACTIONS(6450), + [anon_sym_LT_LT] = ACTIONS(4236), + [anon_sym_GT_GT] = ACTIONS(4236), + [anon_sym_SEMI] = ACTIONS(6448), + [anon_sym___extension__] = ACTIONS(6446), + [anon_sym_extern] = ACTIONS(6446), + [anon_sym___attribute__] = ACTIONS(6446), + [anon_sym___attribute] = ACTIONS(6446), + [anon_sym_noreturn] = ACTIONS(6446), + [anon_sym_LBRACK] = ACTIONS(6448), + [anon_sym___declspec] = ACTIONS(6446), + [anon_sym___based] = ACTIONS(6446), + [anon_sym_static] = ACTIONS(6446), + [anon_sym_auto] = ACTIONS(6446), + [anon_sym_register] = ACTIONS(6446), + [anon_sym_inline] = ACTIONS(6446), + [anon_sym___inline] = ACTIONS(6446), + [anon_sym___inline__] = ACTIONS(6446), + [anon_sym___forceinline] = ACTIONS(6446), + [anon_sym_thread_local] = ACTIONS(6446), + [anon_sym___thread] = ACTIONS(6446), + [anon_sym_CG_EXTERN] = ACTIONS(6446), + [anon_sym_CG_INLINE] = ACTIONS(6446), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6446), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6446), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6446), + [anon_sym_IBOutlet] = ACTIONS(6446), + [anon_sym_IBInspectable] = ACTIONS(6446), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6446), + [anon_sym_NS_INLINE] = ACTIONS(6446), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6446), + [anon_sym_OBJC_EXPORT] = ACTIONS(6446), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6446), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6446), + [anon_sym_const] = ACTIONS(6446), + [anon_sym_constexpr] = ACTIONS(6446), + [anon_sym_volatile] = ACTIONS(6446), + [anon_sym_restrict] = ACTIONS(6446), + [anon_sym___restrict__] = ACTIONS(6446), + [anon_sym__Atomic] = ACTIONS(6446), + [anon_sym__Noreturn] = ACTIONS(6446), + [anon_sym__Nonnull] = ACTIONS(6446), + [anon_sym_nullable] = ACTIONS(6446), + [anon_sym__Complex] = ACTIONS(6446), + [anon_sym__Nullable] = ACTIONS(6446), + [anon_sym__Nullable_result] = ACTIONS(6446), + [anon_sym__Null_unspecified] = ACTIONS(6446), + [anon_sym___autoreleasing] = ACTIONS(6446), + [anon_sym___block] = ACTIONS(6446), + [anon_sym___bridge] = ACTIONS(6446), + [anon_sym___bridge_retained] = ACTIONS(6446), + [anon_sym___bridge_transfer] = ACTIONS(6446), + [anon_sym___complex] = ACTIONS(6446), + [anon_sym___const] = ACTIONS(6446), + [anon_sym___imag] = ACTIONS(6446), + [anon_sym___kindof] = ACTIONS(6446), + [anon_sym___nonnull] = ACTIONS(6446), + [anon_sym___nullable] = ACTIONS(6446), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6446), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6446), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6446), + [anon_sym___real] = ACTIONS(6446), + [anon_sym___strong] = ACTIONS(6446), + [anon_sym___unsafe_unretained] = ACTIONS(6446), + [anon_sym___unused] = ACTIONS(6446), + [anon_sym___weak] = ACTIONS(6446), + [anon_sym_alignas] = ACTIONS(6446), + [anon_sym__Alignas] = ACTIONS(6446), + [anon_sym_QMARK] = ACTIONS(4236), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_DOT] = ACTIONS(4234), + [anon_sym_DASH_GT] = ACTIONS(4236), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6446), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6446), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6446), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6446), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6446), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6446), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6446), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6446), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6446), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6446), + [anon_sym_NS_AVAILABLE] = ACTIONS(6446), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6446), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6446), + [anon_sym_API_AVAILABLE] = ACTIONS(6446), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6446), + [anon_sym_API_DEPRECATED] = ACTIONS(6446), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6446), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6446), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6446), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6446), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6446), + [anon_sym___deprecated_msg] = ACTIONS(6446), + [anon_sym___deprecated_enum_msg] = ACTIONS(6446), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6446), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6446), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6446), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6446), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6446), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6446), + }, + [2577] = { + [sym_attribute_declaration] = STATE(2480), + [sym_compound_statement] = STATE(255), + [sym_attributed_statement] = STATE(256), + [sym_labeled_statement] = STATE(257), + [sym_expression_statement] = STATE(258), + [sym_if_statement] = STATE(259), + [sym_switch_statement] = STATE(260), + [sym_while_statement] = STATE(261), + [sym_do_statement] = STATE(262), + [sym_for_statement] = STATE(263), + [sym_return_statement] = STATE(264), + [sym_break_statement] = STATE(265), + [sym_continue_statement] = STATE(266), + [sym_goto_statement] = STATE(267), + [sym_expression] = STATE(4479), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6359), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(268), + [sym_throw_statement] = STATE(269), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(270), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(271), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2480), + [sym_identifier] = ACTIONS(5800), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(235), + [anon_sym___try] = ACTIONS(237), + [anon_sym_ATthrow] = ACTIONS(239), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(241), + [anon_sym_id] = ACTIONS(203), + }, + [2578] = { + [sym_attribute_declaration] = STATE(2465), + [sym_compound_statement] = STATE(969), + [sym_attributed_statement] = STATE(969), + [sym_labeled_statement] = STATE(969), + [sym_expression_statement] = STATE(969), + [sym_if_statement] = STATE(969), + [sym_switch_statement] = STATE(969), + [sym_while_statement] = STATE(969), + [sym_do_statement] = STATE(969), + [sym_for_statement] = STATE(969), + [sym_return_statement] = STATE(969), + [sym_break_statement] = STATE(969), + [sym_continue_statement] = STATE(969), + [sym_goto_statement] = STATE(969), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(969), + [sym_throw_statement] = STATE(969), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(969), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(969), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2465), + [sym_identifier] = ACTIONS(5796), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2154), + [anon_sym___try] = ACTIONS(2156), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2158), + [anon_sym_id] = ACTIONS(203), + }, + [2579] = { + [sym_attribute_declaration] = STATE(2465), + [sym_compound_statement] = STATE(970), + [sym_attributed_statement] = STATE(971), + [sym_labeled_statement] = STATE(972), + [sym_expression_statement] = STATE(973), + [sym_if_statement] = STATE(974), + [sym_switch_statement] = STATE(975), + [sym_while_statement] = STATE(976), + [sym_do_statement] = STATE(977), + [sym_for_statement] = STATE(978), + [sym_return_statement] = STATE(983), + [sym_break_statement] = STATE(960), + [sym_continue_statement] = STATE(968), + [sym_goto_statement] = STATE(927), + [sym_expression] = STATE(4507), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6114), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(959), + [sym_throw_statement] = STATE(950), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(946), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(965), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2465), + [sym_identifier] = ACTIONS(5796), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(972), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2154), + [anon_sym___try] = ACTIONS(2156), + [anon_sym_ATthrow] = ACTIONS(990), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2158), + [anon_sym_id] = ACTIONS(203), + }, + [2580] = { + [sym__declaration_modifiers] = STATE(2849), + [sym_attribute_specifier] = STATE(2849), + [sym_attribute_declaration] = STATE(2849), + [sym_ms_declspec_modifier] = STATE(2849), + [sym_ms_based_modifier] = STATE(6660), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2598), + [sym__declarator] = STATE(3235), + [sym_parenthesized_declarator] = STATE(3076), + [sym_pointer_declarator] = STATE(3076), + [sym_function_declarator] = STATE(3076), + [sym_array_declarator] = STATE(3076), + [sym_storage_class_specifier] = STATE(2849), + [sym_type_qualifier] = STATE(2849), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2849), + [sym_block_pointer_declarator] = STATE(3076), + [aux_sym__declaration_specifiers_repeat1] = STATE(2849), + [aux_sym_pointer_declarator_repeat1] = STATE(2598), + [sym_identifier] = ACTIONS(5328), + [anon_sym_LPAREN2] = ACTIONS(6579), + [anon_sym_STAR] = ACTIONS(6591), + [anon_sym_CARET] = ACTIONS(6593), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2581] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6199), + [sym__declarator] = STATE(5037), + [sym__abstract_declarator] = STATE(5004), + [sym_parenthesized_declarator] = STATE(4011), + [sym_abstract_parenthesized_declarator] = STATE(4894), + [sym_pointer_declarator] = STATE(4011), + [sym_abstract_pointer_declarator] = STATE(4894), + [sym_function_declarator] = STATE(4011), + [sym_abstract_function_declarator] = STATE(4894), + [sym_array_declarator] = STATE(4011), + [sym_abstract_array_declarator] = STATE(4894), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(4295), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_declarator] = STATE(4011), + [sym_abstract_block_pointer_declarator] = STATE(4894), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5281), + [anon_sym_RPAREN] = ACTIONS(6354), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4170), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2582] = { + [sym_attribute_declaration] = STATE(2450), + [sym_compound_statement] = STATE(742), + [sym_attributed_statement] = STATE(742), + [sym_labeled_statement] = STATE(742), + [sym_expression_statement] = STATE(742), + [sym_if_statement] = STATE(742), + [sym_switch_statement] = STATE(742), + [sym_while_statement] = STATE(742), + [sym_do_statement] = STATE(742), + [sym_for_statement] = STATE(742), + [sym_return_statement] = STATE(742), + [sym_break_statement] = STATE(742), + [sym_continue_statement] = STATE(742), + [sym_goto_statement] = STATE(742), + [sym_expression] = STATE(4502), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6238), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(742), + [sym_throw_statement] = STATE(742), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(742), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(742), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2450), + [sym_identifier] = ACTIONS(5947), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_ATautoreleasepool] = ACTIONS(1936), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(1938), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1942), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1946), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1950), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_goto] = ACTIONS(1954), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(1956), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(1958), + [anon_sym___try] = ACTIONS(1960), + [anon_sym_ATthrow] = ACTIONS(1962), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(1964), + [anon_sym_id] = ACTIONS(203), + }, + [2583] = { + [sym_attribute_declaration] = STATE(2450), + [sym_compound_statement] = STATE(745), + [sym_attributed_statement] = STATE(746), + [sym_labeled_statement] = STATE(747), + [sym_expression_statement] = STATE(748), + [sym_if_statement] = STATE(751), + [sym_switch_statement] = STATE(754), + [sym_while_statement] = STATE(755), + [sym_do_statement] = STATE(764), + [sym_for_statement] = STATE(767), + [sym_return_statement] = STATE(768), + [sym_break_statement] = STATE(775), + [sym_continue_statement] = STATE(776), + [sym_goto_statement] = STATE(777), + [sym_expression] = STATE(4502), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6238), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(778), + [sym_throw_statement] = STATE(779), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(783), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(784), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2450), + [sym_identifier] = ACTIONS(5947), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_ATautoreleasepool] = ACTIONS(1936), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(1938), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1942), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1946), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1950), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_goto] = ACTIONS(1954), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(1956), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(1958), + [anon_sym___try] = ACTIONS(1960), + [anon_sym_ATthrow] = ACTIONS(1962), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(1964), + [anon_sym_id] = ACTIONS(203), + }, + [2584] = { + [sym_type_qualifier] = STATE(2637), + [sym_alignas_qualifier] = STATE(3575), + [sym_expression] = STATE(4584), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(2637), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6400), + [anon_sym_noreturn] = ACTIONS(6402), + [anon_sym_LBRACK] = ACTIONS(6517), + [anon_sym_RBRACK] = ACTIONS(6585), + [anon_sym_const] = ACTIONS(6587), + [anon_sym_constexpr] = ACTIONS(6402), + [anon_sym_volatile] = ACTIONS(6402), + [anon_sym_restrict] = ACTIONS(6402), + [anon_sym___restrict__] = ACTIONS(6402), + [anon_sym__Atomic] = ACTIONS(6402), + [anon_sym__Noreturn] = ACTIONS(6402), + [anon_sym__Nonnull] = ACTIONS(6402), + [anon_sym_nullable] = ACTIONS(6402), + [anon_sym__Complex] = ACTIONS(6402), + [anon_sym__Nullable] = ACTIONS(6402), + [anon_sym__Nullable_result] = ACTIONS(6402), + [anon_sym__Null_unspecified] = ACTIONS(6402), + [anon_sym___autoreleasing] = ACTIONS(6402), + [anon_sym___block] = ACTIONS(6402), + [anon_sym___bridge] = ACTIONS(6402), + [anon_sym___bridge_retained] = ACTIONS(6402), + [anon_sym___bridge_transfer] = ACTIONS(6402), + [anon_sym___complex] = ACTIONS(6402), + [anon_sym___const] = ACTIONS(6402), + [anon_sym___imag] = ACTIONS(6410), + [anon_sym___kindof] = ACTIONS(6402), + [anon_sym___nonnull] = ACTIONS(6402), + [anon_sym___nullable] = ACTIONS(6402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6402), + [anon_sym___real] = ACTIONS(6410), + [anon_sym___strong] = ACTIONS(6402), + [anon_sym___unsafe_unretained] = ACTIONS(6402), + [anon_sym___unused] = ACTIONS(6402), + [anon_sym___weak] = ACTIONS(6402), + [anon_sym_alignas] = ACTIONS(6412), + [anon_sym__Alignas] = ACTIONS(6412), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2585] = { + [sym_attribute_declaration] = STATE(2458), + [sym_compound_statement] = STATE(424), + [sym_attributed_statement] = STATE(424), + [sym_labeled_statement] = STATE(424), + [sym_expression_statement] = STATE(424), + [sym_if_statement] = STATE(424), + [sym_switch_statement] = STATE(424), + [sym_while_statement] = STATE(424), + [sym_do_statement] = STATE(424), + [sym_for_statement] = STATE(424), + [sym_return_statement] = STATE(424), + [sym_break_statement] = STATE(424), + [sym_continue_statement] = STATE(424), + [sym_goto_statement] = STATE(424), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(424), + [sym_throw_statement] = STATE(424), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(424), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(424), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [sym_identifier] = ACTIONS(5792), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(307), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_id] = ACTIONS(203), + }, + [2586] = { + [sym_attribute_declaration] = STATE(2458), + [sym_compound_statement] = STATE(425), + [sym_attributed_statement] = STATE(426), + [sym_labeled_statement] = STATE(427), + [sym_expression_statement] = STATE(428), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(430), + [sym_while_statement] = STATE(431), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(433), + [sym_return_statement] = STATE(434), + [sym_break_statement] = STATE(435), + [sym_continue_statement] = STATE(436), + [sym_goto_statement] = STATE(437), + [sym_expression] = STATE(4462), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6731), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(438), + [sym_throw_statement] = STATE(439), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(440), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(441), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2458), + [sym_identifier] = ACTIONS(5792), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(307), + [anon_sym_switch] = ACTIONS(309), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(321), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(329), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(347), + [anon_sym___try] = ACTIONS(349), + [anon_sym_ATthrow] = ACTIONS(351), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(353), + [anon_sym_id] = ACTIONS(203), + }, + [2587] = { + [sym__declaration_modifiers] = STATE(2858), + [sym_attribute_specifier] = STATE(2858), + [sym_attribute_declaration] = STATE(2858), + [sym_ms_declspec_modifier] = STATE(2858), + [sym_ms_based_modifier] = STATE(6197), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2898), + [sym__declarator] = STATE(3094), + [sym_parenthesized_declarator] = STATE(3076), + [sym_pointer_declarator] = STATE(3076), + [sym_function_declarator] = STATE(3076), + [sym_array_declarator] = STATE(3076), + [sym_storage_class_specifier] = STATE(2858), + [sym_type_qualifier] = STATE(2858), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2858), + [sym_block_pointer_declarator] = STATE(3076), + [aux_sym__declaration_specifiers_repeat1] = STATE(2858), + [aux_sym_pointer_declarator_repeat1] = STATE(2898), + [sym_identifier] = ACTIONS(5328), + [anon_sym_LPAREN2] = ACTIONS(6579), + [anon_sym_STAR] = ACTIONS(6581), + [anon_sym_CARET] = ACTIONS(6583), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2588] = { + [sym__declaration_modifiers] = STATE(2858), + [sym_attribute_specifier] = STATE(2858), + [sym_attribute_declaration] = STATE(2858), + [sym_ms_declspec_modifier] = STATE(2858), + [sym_ms_based_modifier] = STATE(6197), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2593), + [sym__declarator] = STATE(3094), + [sym_parenthesized_declarator] = STATE(3076), + [sym_pointer_declarator] = STATE(3076), + [sym_function_declarator] = STATE(3076), + [sym_array_declarator] = STATE(3076), + [sym_storage_class_specifier] = STATE(2858), + [sym_type_qualifier] = STATE(2858), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2858), + [sym_block_pointer_declarator] = STATE(3076), + [aux_sym__declaration_specifiers_repeat1] = STATE(2858), + [aux_sym_pointer_declarator_repeat1] = STATE(2593), + [sym_identifier] = ACTIONS(5328), + [anon_sym_LPAREN2] = ACTIONS(6579), + [anon_sym_STAR] = ACTIONS(6581), + [anon_sym_CARET] = ACTIONS(6583), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2589] = { + [sym_attribute_declaration] = STATE(2446), + [sym_compound_statement] = STATE(580), + [sym_attributed_statement] = STATE(580), + [sym_labeled_statement] = STATE(580), + [sym_expression_statement] = STATE(580), + [sym_if_statement] = STATE(580), + [sym_switch_statement] = STATE(580), + [sym_while_statement] = STATE(580), + [sym_do_statement] = STATE(580), + [sym_for_statement] = STATE(580), + [sym_return_statement] = STATE(580), + [sym_break_statement] = STATE(580), + [sym_continue_statement] = STATE(580), + [sym_goto_statement] = STATE(580), + [sym_expression] = STATE(4448), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6083), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(580), + [sym_throw_statement] = STATE(580), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(580), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(580), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2446), + [sym_identifier] = ACTIONS(5804), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_ATautoreleasepool] = ACTIONS(761), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(763), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_while] = ACTIONS(771), + [anon_sym_do] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(777), + [anon_sym_break] = ACTIONS(779), + [anon_sym_continue] = ACTIONS(781), + [anon_sym_goto] = ACTIONS(783), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(785), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(803), + [anon_sym___try] = ACTIONS(805), + [anon_sym_ATthrow] = ACTIONS(807), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(809), + [anon_sym_id] = ACTIONS(203), + }, + [2590] = { + [sym_attribute_declaration] = STATE(2446), + [sym_compound_statement] = STATE(586), + [sym_attributed_statement] = STATE(591), + [sym_labeled_statement] = STATE(593), + [sym_expression_statement] = STATE(594), + [sym_if_statement] = STATE(598), + [sym_switch_statement] = STATE(600), + [sym_while_statement] = STATE(601), + [sym_do_statement] = STATE(538), + [sym_for_statement] = STATE(543), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(561), + [sym_continue_statement] = STATE(562), + [sym_goto_statement] = STATE(563), + [sym_expression] = STATE(4448), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6083), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(531), + [sym_throw_statement] = STATE(572), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(573), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(582), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2446), + [sym_identifier] = ACTIONS(5804), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_ATautoreleasepool] = ACTIONS(761), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(763), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_while] = ACTIONS(771), + [anon_sym_do] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(777), + [anon_sym_break] = ACTIONS(779), + [anon_sym_continue] = ACTIONS(781), + [anon_sym_goto] = ACTIONS(783), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(785), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(803), + [anon_sym___try] = ACTIONS(805), + [anon_sym_ATthrow] = ACTIONS(807), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(809), + [anon_sym_id] = ACTIONS(203), + }, + [2591] = { + [sym_attribute_declaration] = STATE(2454), + [sym_compound_statement] = STATE(1163), + [sym_attributed_statement] = STATE(1163), + [sym_labeled_statement] = STATE(1163), + [sym_expression_statement] = STATE(1163), + [sym_if_statement] = STATE(1163), + [sym_switch_statement] = STATE(1163), + [sym_while_statement] = STATE(1163), + [sym_do_statement] = STATE(1163), + [sym_for_statement] = STATE(1163), + [sym_return_statement] = STATE(1163), + [sym_break_statement] = STATE(1163), + [sym_continue_statement] = STATE(1163), + [sym_goto_statement] = STATE(1163), + [sym_expression] = STATE(4451), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6542), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(1163), + [sym_throw_statement] = STATE(1163), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(1163), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(1163), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2454), + [sym_identifier] = ACTIONS(6099), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(2094), + [anon_sym_ATautoreleasepool] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_switch] = ACTIONS(2100), + [anon_sym_while] = ACTIONS(2102), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2106), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_goto] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym___try] = ACTIONS(2120), + [anon_sym_ATthrow] = ACTIONS(2122), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2124), + [anon_sym_id] = ACTIONS(203), + }, + [2592] = { + [sym_attribute_declaration] = STATE(2454), + [sym_compound_statement] = STATE(1165), + [sym_attributed_statement] = STATE(1166), + [sym_labeled_statement] = STATE(1168), + [sym_expression_statement] = STATE(1130), + [sym_if_statement] = STATE(1105), + [sym_switch_statement] = STATE(1106), + [sym_while_statement] = STATE(1107), + [sym_do_statement] = STATE(1111), + [sym_for_statement] = STATE(1100), + [sym_return_statement] = STATE(1129), + [sym_break_statement] = STATE(1149), + [sym_continue_statement] = STATE(1151), + [sym_goto_statement] = STATE(1154), + [sym_expression] = STATE(4451), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6542), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_try_statement] = STATE(1155), + [sym_throw_statement] = STATE(1156), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_ms_asm_block] = STATE(1157), + [sym_encode_expression] = STATE(1677), + [sym_synchronized_statement] = STATE(1158), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_attributed_field_declarator_repeat1] = STATE(2454), + [sym_identifier] = ACTIONS(6099), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(2094), + [anon_sym_ATautoreleasepool] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_switch] = ACTIONS(2100), + [anon_sym_while] = ACTIONS(2102), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2106), + [anon_sym_in] = ACTIONS(203), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_goto] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym___try] = ACTIONS(2120), + [anon_sym_ATthrow] = ACTIONS(2122), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_ATsynchronized] = ACTIONS(2124), + [anon_sym_id] = ACTIONS(203), + }, + [2593] = { + [sym__declaration_modifiers] = STATE(2856), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_based_modifier] = STATE(6197), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2898), + [sym__declarator] = STATE(3080), + [sym_parenthesized_declarator] = STATE(3076), + [sym_pointer_declarator] = STATE(3076), + [sym_function_declarator] = STATE(3076), + [sym_array_declarator] = STATE(3076), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2856), + [sym_block_pointer_declarator] = STATE(3076), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_pointer_declarator_repeat1] = STATE(2898), + [sym_identifier] = ACTIONS(5328), + [anon_sym_LPAREN2] = ACTIONS(6579), + [anon_sym_STAR] = ACTIONS(6581), + [anon_sym_CARET] = ACTIONS(6583), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2594] = { + [sym__declaration_modifiers] = STATE(2839), + [sym_attribute_specifier] = STATE(2839), + [sym_attribute_declaration] = STATE(2839), + [sym_ms_declspec_modifier] = STATE(2839), + [sym_ms_based_modifier] = STATE(6199), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2898), + [sym__declarator] = STATE(5037), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_storage_class_specifier] = STATE(2839), + [sym_type_qualifier] = STATE(2839), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2839), + [sym_block_pointer_declarator] = STATE(4011), + [aux_sym__declaration_specifiers_repeat1] = STATE(2839), + [aux_sym_pointer_declarator_repeat1] = STATE(2898), + [sym_identifier] = ACTIONS(5281), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(4492), + [anon_sym_CARET] = ACTIONS(4494), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2595] = { + [sym__declaration_modifiers] = STATE(2839), + [sym_attribute_specifier] = STATE(2839), + [sym_attribute_declaration] = STATE(2839), + [sym_ms_declspec_modifier] = STATE(2839), + [sym_ms_based_modifier] = STATE(6199), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2596), + [sym__declarator] = STATE(5037), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_storage_class_specifier] = STATE(2839), + [sym_type_qualifier] = STATE(2839), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2839), + [sym_block_pointer_declarator] = STATE(4011), + [aux_sym__declaration_specifiers_repeat1] = STATE(2839), + [aux_sym_pointer_declarator_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(5281), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(4492), + [anon_sym_CARET] = ACTIONS(4494), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2596] = { + [sym__declaration_modifiers] = STATE(2844), + [sym_attribute_specifier] = STATE(2844), + [sym_attribute_declaration] = STATE(2844), + [sym_ms_declspec_modifier] = STATE(2844), + [sym_ms_based_modifier] = STATE(6199), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2898), + [sym__declarator] = STATE(5061), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_storage_class_specifier] = STATE(2844), + [sym_type_qualifier] = STATE(2844), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2844), + [sym_block_pointer_declarator] = STATE(4011), + [aux_sym__declaration_specifiers_repeat1] = STATE(2844), + [aux_sym_pointer_declarator_repeat1] = STATE(2898), + [sym_identifier] = ACTIONS(5281), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(4492), + [anon_sym_CARET] = ACTIONS(4494), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2597] = { + [sym__declaration_modifiers] = STATE(2831), + [sym_attribute_specifier] = STATE(2831), + [sym_attribute_declaration] = STATE(2831), + [sym_ms_declspec_modifier] = STATE(2831), + [sym_ms_based_modifier] = STATE(6199), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2594), + [sym__declarator] = STATE(5024), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_storage_class_specifier] = STATE(2831), + [sym_type_qualifier] = STATE(2831), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2831), + [sym_block_pointer_declarator] = STATE(4011), + [aux_sym__declaration_specifiers_repeat1] = STATE(2831), + [aux_sym_pointer_declarator_repeat1] = STATE(2594), + [sym_identifier] = ACTIONS(5281), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(4492), + [anon_sym_CARET] = ACTIONS(4494), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2598] = { + [sym__declaration_modifiers] = STATE(2852), + [sym_attribute_specifier] = STATE(2852), + [sym_attribute_declaration] = STATE(2852), + [sym_ms_declspec_modifier] = STATE(2852), + [sym_ms_based_modifier] = STATE(6660), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2898), + [sym__declarator] = STATE(3239), + [sym_parenthesized_declarator] = STATE(3076), + [sym_pointer_declarator] = STATE(3076), + [sym_function_declarator] = STATE(3076), + [sym_array_declarator] = STATE(3076), + [sym_storage_class_specifier] = STATE(2852), + [sym_type_qualifier] = STATE(2852), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2852), + [sym_block_pointer_declarator] = STATE(3076), + [aux_sym__declaration_specifiers_repeat1] = STATE(2852), + [aux_sym_pointer_declarator_repeat1] = STATE(2898), + [sym_identifier] = ACTIONS(5328), + [anon_sym_LPAREN2] = ACTIONS(6579), + [anon_sym_STAR] = ACTIONS(6591), + [anon_sym_CARET] = ACTIONS(6593), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2599] = { + [sym__declaration_modifiers] = STATE(2852), + [sym_attribute_specifier] = STATE(2852), + [sym_attribute_declaration] = STATE(2852), + [sym_ms_declspec_modifier] = STATE(2852), + [sym_ms_based_modifier] = STATE(6660), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2600), + [sym__declarator] = STATE(3239), + [sym_parenthesized_declarator] = STATE(3076), + [sym_pointer_declarator] = STATE(3076), + [sym_function_declarator] = STATE(3076), + [sym_array_declarator] = STATE(3076), + [sym_storage_class_specifier] = STATE(2852), + [sym_type_qualifier] = STATE(2852), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2852), + [sym_block_pointer_declarator] = STATE(3076), + [aux_sym__declaration_specifiers_repeat1] = STATE(2852), + [aux_sym_pointer_declarator_repeat1] = STATE(2600), + [sym_identifier] = ACTIONS(5328), + [anon_sym_LPAREN2] = ACTIONS(6579), + [anon_sym_STAR] = ACTIONS(6591), + [anon_sym_CARET] = ACTIONS(6593), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2600] = { + [sym__declaration_modifiers] = STATE(2854), + [sym_attribute_specifier] = STATE(2854), + [sym_attribute_declaration] = STATE(2854), + [sym_ms_declspec_modifier] = STATE(2854), + [sym_ms_based_modifier] = STATE(6660), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2898), + [sym__declarator] = STATE(3240), + [sym_parenthesized_declarator] = STATE(3076), + [sym_pointer_declarator] = STATE(3076), + [sym_function_declarator] = STATE(3076), + [sym_array_declarator] = STATE(3076), + [sym_storage_class_specifier] = STATE(2854), + [sym_type_qualifier] = STATE(2854), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2854), + [sym_block_pointer_declarator] = STATE(3076), + [aux_sym__declaration_specifiers_repeat1] = STATE(2854), + [aux_sym_pointer_declarator_repeat1] = STATE(2898), + [sym_identifier] = ACTIONS(5328), + [anon_sym_LPAREN2] = ACTIONS(6579), + [anon_sym_STAR] = ACTIONS(6591), + [anon_sym_CARET] = ACTIONS(6593), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2601] = { + [sym__declaration_modifiers] = STATE(2851), + [sym_attribute_specifier] = STATE(2851), + [sym_attribute_declaration] = STATE(2851), + [sym_ms_declspec_modifier] = STATE(2851), + [sym_ms_based_modifier] = STATE(6315), + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2566), + [sym__declarator] = STATE(2718), + [sym_parenthesized_declarator] = STATE(2792), + [sym_pointer_declarator] = STATE(2792), + [sym_function_declarator] = STATE(2792), + [sym_array_declarator] = STATE(2792), + [sym_storage_class_specifier] = STATE(2851), + [sym_type_qualifier] = STATE(2851), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2851), + [sym_block_pointer_declarator] = STATE(2792), + [aux_sym__declaration_specifiers_repeat1] = STATE(2851), + [aux_sym_pointer_declarator_repeat1] = STATE(2566), + [sym_identifier] = ACTIONS(6567), + [anon_sym_LPAREN2] = ACTIONS(6569), + [anon_sym_STAR] = ACTIONS(6571), + [anon_sym_CARET] = ACTIONS(6573), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [sym_ms_restrict_modifier] = ACTIONS(5289), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5289), + [sym_ms_signed_ptr_modifier] = ACTIONS(5289), + [anon_sym__unaligned] = ACTIONS(5291), + [anon_sym___unaligned] = ACTIONS(5291), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2602] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6595), + [anon_sym_PLUS] = ACTIONS(6595), + [anon_sym_STAR] = ACTIONS(6597), + [anon_sym_SLASH] = ACTIONS(6599), + [anon_sym_PERCENT] = ACTIONS(6597), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(6601), + [anon_sym_EQ_EQ] = ACTIONS(6603), + [anon_sym_BANG_EQ] = ACTIONS(6603), + [anon_sym_GT] = ACTIONS(6605), + [anon_sym_GT_EQ] = ACTIONS(6607), + [anon_sym_LT_EQ] = ACTIONS(6607), + [anon_sym_LT] = ACTIONS(6605), + [anon_sym_LT_LT] = ACTIONS(6609), + [anon_sym_GT_GT] = ACTIONS(6609), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_extern] = ACTIONS(4027), + [anon_sym___attribute__] = ACTIONS(4027), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4027), + [anon_sym_register] = ACTIONS(4027), + [anon_sym_inline] = ACTIONS(4027), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4027), + [anon_sym___forceinline] = ACTIONS(4027), + [anon_sym_thread_local] = ACTIONS(4027), + [anon_sym___thread] = ACTIONS(4027), + [anon_sym_CG_EXTERN] = ACTIONS(4027), + [anon_sym_CG_INLINE] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4027), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4027), + [anon_sym_IBOutlet] = ACTIONS(4027), + [anon_sym_IBInspectable] = ACTIONS(4027), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4027), + [anon_sym_NS_INLINE] = ACTIONS(4027), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4027), + [anon_sym_OBJC_EXPORT] = ACTIONS(4027), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4027), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4027), + [anon_sym_volatile] = ACTIONS(4027), + [anon_sym_restrict] = ACTIONS(4027), + [anon_sym___restrict__] = ACTIONS(4027), + [anon_sym__Atomic] = ACTIONS(4027), + [anon_sym__Noreturn] = ACTIONS(4027), + [anon_sym__Nonnull] = ACTIONS(4027), + [anon_sym_nullable] = ACTIONS(4027), + [anon_sym__Complex] = ACTIONS(4027), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4027), + [anon_sym__Null_unspecified] = ACTIONS(4027), + [anon_sym___autoreleasing] = ACTIONS(4027), + [anon_sym___block] = ACTIONS(4027), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4027), + [anon_sym___bridge_transfer] = ACTIONS(4027), + [anon_sym___complex] = ACTIONS(4027), + [anon_sym___const] = ACTIONS(4027), + [anon_sym___imag] = ACTIONS(4027), + [anon_sym___kindof] = ACTIONS(4027), + [anon_sym___nonnull] = ACTIONS(4027), + [anon_sym___nullable] = ACTIONS(4027), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4027), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4027), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4027), + [anon_sym___real] = ACTIONS(4027), + [anon_sym___strong] = ACTIONS(4027), + [anon_sym___unsafe_unretained] = ACTIONS(4027), + [anon_sym___unused] = ACTIONS(4027), + [anon_sym___weak] = ACTIONS(4027), + [anon_sym_alignas] = ACTIONS(4027), + [anon_sym__Alignas] = ACTIONS(4027), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4027), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4027), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4027), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4027), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_API_AVAILABLE] = ACTIONS(4027), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_API_DEPRECATED] = ACTIONS(4027), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4027), + [anon_sym___deprecated_msg] = ACTIONS(4027), + [anon_sym___deprecated_enum_msg] = ACTIONS(4027), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4027), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4027), + }, + [2603] = { + [sym_identifier] = ACTIONS(6611), + [aux_sym_preproc_def_token1] = ACTIONS(6611), + [aux_sym_preproc_if_token1] = ACTIONS(6611), + [aux_sym_preproc_if_token2] = ACTIONS(6611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6611), + [aux_sym_preproc_else_token1] = ACTIONS(6611), + [aux_sym_preproc_elif_token1] = ACTIONS(6611), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6611), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6611), + [sym_preproc_directive] = ACTIONS(6611), + [anon_sym___extension__] = ACTIONS(6611), + [anon_sym_extern] = ACTIONS(6611), + [anon_sym___attribute__] = ACTIONS(6611), + [anon_sym___attribute] = ACTIONS(6611), + [anon_sym_noreturn] = ACTIONS(6611), + [anon_sym_LBRACK] = ACTIONS(6613), + [anon_sym___declspec] = ACTIONS(6611), + [anon_sym_signed] = ACTIONS(6611), + [anon_sym_unsigned] = ACTIONS(6611), + [anon_sym_long] = ACTIONS(6611), + [anon_sym_short] = ACTIONS(6611), + [anon_sym_static] = ACTIONS(6611), + [anon_sym_auto] = ACTIONS(6611), + [anon_sym_register] = ACTIONS(6611), + [anon_sym_inline] = ACTIONS(6611), + [anon_sym___inline] = ACTIONS(6611), + [anon_sym___inline__] = ACTIONS(6611), + [anon_sym___forceinline] = ACTIONS(6611), + [anon_sym_thread_local] = ACTIONS(6611), + [anon_sym___thread] = ACTIONS(6611), + [anon_sym_CG_EXTERN] = ACTIONS(6611), + [anon_sym_CG_INLINE] = ACTIONS(6611), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6611), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6611), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6611), + [anon_sym_IBOutlet] = ACTIONS(6611), + [anon_sym_IBInspectable] = ACTIONS(6611), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6611), + [anon_sym_NS_INLINE] = ACTIONS(6611), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6611), + [anon_sym_OBJC_EXPORT] = ACTIONS(6611), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6611), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6611), + [anon_sym_const] = ACTIONS(6611), + [anon_sym_constexpr] = ACTIONS(6611), + [anon_sym_volatile] = ACTIONS(6611), + [anon_sym_restrict] = ACTIONS(6611), + [anon_sym___restrict__] = ACTIONS(6611), + [anon_sym__Atomic] = ACTIONS(6611), + [anon_sym__Noreturn] = ACTIONS(6611), + [anon_sym__Nonnull] = ACTIONS(6611), + [anon_sym_nullable] = ACTIONS(6611), + [anon_sym__Complex] = ACTIONS(6611), + [anon_sym__Nullable] = ACTIONS(6611), + [anon_sym__Nullable_result] = ACTIONS(6611), + [anon_sym__Null_unspecified] = ACTIONS(6611), + [anon_sym___autoreleasing] = ACTIONS(6611), + [anon_sym___block] = ACTIONS(6611), + [anon_sym___bridge] = ACTIONS(6611), + [anon_sym___bridge_retained] = ACTIONS(6611), + [anon_sym___bridge_transfer] = ACTIONS(6611), + [anon_sym___complex] = ACTIONS(6611), + [anon_sym___const] = ACTIONS(6611), + [anon_sym___imag] = ACTIONS(6611), + [anon_sym___kindof] = ACTIONS(6611), + [anon_sym___nonnull] = ACTIONS(6611), + [anon_sym___nullable] = ACTIONS(6611), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6611), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6611), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6611), + [anon_sym___real] = ACTIONS(6611), + [anon_sym___strong] = ACTIONS(6611), + [anon_sym___unsafe_unretained] = ACTIONS(6611), + [anon_sym___unused] = ACTIONS(6611), + [anon_sym___weak] = ACTIONS(6611), + [anon_sym_alignas] = ACTIONS(6611), + [anon_sym__Alignas] = ACTIONS(6611), + [sym_primitive_type] = ACTIONS(6611), + [anon_sym_enum] = ACTIONS(6611), + [anon_sym_struct] = ACTIONS(6611), + [anon_sym_union] = ACTIONS(6611), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6611), + [anon_sym___typeof] = ACTIONS(6611), + [anon_sym_typeof] = ACTIONS(6611), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6611), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6611), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6611), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6611), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6611), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6611), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6611), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6611), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6611), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6611), + [anon_sym_NS_AVAILABLE] = ACTIONS(6611), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6611), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6611), + [anon_sym_API_AVAILABLE] = ACTIONS(6611), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6611), + [anon_sym_API_DEPRECATED] = ACTIONS(6611), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6611), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6611), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6611), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6611), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6611), + [anon_sym___deprecated_msg] = ACTIONS(6611), + [anon_sym___deprecated_enum_msg] = ACTIONS(6611), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6611), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6611), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6611), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6611), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6611), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6611), + [anon_sym_BOOL] = ACTIONS(6611), + [anon_sym_IMP] = ACTIONS(6611), + [anon_sym_SEL] = ACTIONS(6611), + [anon_sym_Class] = ACTIONS(6611), + [anon_sym_id] = ACTIONS(6611), + [anon_sym_ATdefs] = ACTIONS(6613), + }, + [2604] = { + [sym_identifier] = ACTIONS(6615), + [aux_sym_preproc_def_token1] = ACTIONS(6615), + [aux_sym_preproc_if_token1] = ACTIONS(6615), + [aux_sym_preproc_if_token2] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6615), + [aux_sym_preproc_else_token1] = ACTIONS(6615), + [aux_sym_preproc_elif_token1] = ACTIONS(6615), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6615), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6615), + [sym_preproc_directive] = ACTIONS(6615), + [anon_sym___extension__] = ACTIONS(6615), + [anon_sym_extern] = ACTIONS(6615), + [anon_sym___attribute__] = ACTIONS(6615), + [anon_sym___attribute] = ACTIONS(6615), + [anon_sym_noreturn] = ACTIONS(6615), + [anon_sym_LBRACK] = ACTIONS(6617), + [anon_sym___declspec] = ACTIONS(6615), + [anon_sym_signed] = ACTIONS(6615), + [anon_sym_unsigned] = ACTIONS(6615), + [anon_sym_long] = ACTIONS(6615), + [anon_sym_short] = ACTIONS(6615), + [anon_sym_static] = ACTIONS(6615), + [anon_sym_auto] = ACTIONS(6615), + [anon_sym_register] = ACTIONS(6615), + [anon_sym_inline] = ACTIONS(6615), + [anon_sym___inline] = ACTIONS(6615), + [anon_sym___inline__] = ACTIONS(6615), + [anon_sym___forceinline] = ACTIONS(6615), + [anon_sym_thread_local] = ACTIONS(6615), + [anon_sym___thread] = ACTIONS(6615), + [anon_sym_CG_EXTERN] = ACTIONS(6615), + [anon_sym_CG_INLINE] = ACTIONS(6615), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6615), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6615), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6615), + [anon_sym_IBOutlet] = ACTIONS(6615), + [anon_sym_IBInspectable] = ACTIONS(6615), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6615), + [anon_sym_NS_INLINE] = ACTIONS(6615), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6615), + [anon_sym_OBJC_EXPORT] = ACTIONS(6615), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6615), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6615), + [anon_sym_const] = ACTIONS(6615), + [anon_sym_constexpr] = ACTIONS(6615), + [anon_sym_volatile] = ACTIONS(6615), + [anon_sym_restrict] = ACTIONS(6615), + [anon_sym___restrict__] = ACTIONS(6615), + [anon_sym__Atomic] = ACTIONS(6615), + [anon_sym__Noreturn] = ACTIONS(6615), + [anon_sym__Nonnull] = ACTIONS(6615), + [anon_sym_nullable] = ACTIONS(6615), + [anon_sym__Complex] = ACTIONS(6615), + [anon_sym__Nullable] = ACTIONS(6615), + [anon_sym__Nullable_result] = ACTIONS(6615), + [anon_sym__Null_unspecified] = ACTIONS(6615), + [anon_sym___autoreleasing] = ACTIONS(6615), + [anon_sym___block] = ACTIONS(6615), + [anon_sym___bridge] = ACTIONS(6615), + [anon_sym___bridge_retained] = ACTIONS(6615), + [anon_sym___bridge_transfer] = ACTIONS(6615), + [anon_sym___complex] = ACTIONS(6615), + [anon_sym___const] = ACTIONS(6615), + [anon_sym___imag] = ACTIONS(6615), + [anon_sym___kindof] = ACTIONS(6615), + [anon_sym___nonnull] = ACTIONS(6615), + [anon_sym___nullable] = ACTIONS(6615), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6615), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6615), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6615), + [anon_sym___real] = ACTIONS(6615), + [anon_sym___strong] = ACTIONS(6615), + [anon_sym___unsafe_unretained] = ACTIONS(6615), + [anon_sym___unused] = ACTIONS(6615), + [anon_sym___weak] = ACTIONS(6615), + [anon_sym_alignas] = ACTIONS(6615), + [anon_sym__Alignas] = ACTIONS(6615), + [sym_primitive_type] = ACTIONS(6615), + [anon_sym_enum] = ACTIONS(6615), + [anon_sym_struct] = ACTIONS(6615), + [anon_sym_union] = ACTIONS(6615), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6615), + [anon_sym___typeof] = ACTIONS(6615), + [anon_sym_typeof] = ACTIONS(6615), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6615), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6615), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6615), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6615), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6615), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6615), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6615), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6615), + [anon_sym_NS_AVAILABLE] = ACTIONS(6615), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6615), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_API_AVAILABLE] = ACTIONS(6615), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_API_DEPRECATED] = ACTIONS(6615), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6615), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6615), + [anon_sym___deprecated_msg] = ACTIONS(6615), + [anon_sym___deprecated_enum_msg] = ACTIONS(6615), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6615), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6615), + [anon_sym_BOOL] = ACTIONS(6615), + [anon_sym_IMP] = ACTIONS(6615), + [anon_sym_SEL] = ACTIONS(6615), + [anon_sym_Class] = ACTIONS(6615), + [anon_sym_id] = ACTIONS(6615), + [anon_sym_ATdefs] = ACTIONS(6617), + }, + [2605] = { + [sym_identifier] = ACTIONS(6615), + [aux_sym_preproc_def_token1] = ACTIONS(6615), + [aux_sym_preproc_if_token1] = ACTIONS(6615), + [aux_sym_preproc_if_token2] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6615), + [aux_sym_preproc_else_token1] = ACTIONS(6615), + [aux_sym_preproc_elif_token1] = ACTIONS(6615), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6615), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6615), + [sym_preproc_directive] = ACTIONS(6615), + [anon_sym___extension__] = ACTIONS(6615), + [anon_sym_extern] = ACTIONS(6615), + [anon_sym___attribute__] = ACTIONS(6615), + [anon_sym___attribute] = ACTIONS(6615), + [anon_sym_noreturn] = ACTIONS(6615), + [anon_sym_LBRACK] = ACTIONS(6617), + [anon_sym___declspec] = ACTIONS(6615), + [anon_sym_signed] = ACTIONS(6615), + [anon_sym_unsigned] = ACTIONS(6615), + [anon_sym_long] = ACTIONS(6615), + [anon_sym_short] = ACTIONS(6615), + [anon_sym_static] = ACTIONS(6615), + [anon_sym_auto] = ACTIONS(6615), + [anon_sym_register] = ACTIONS(6615), + [anon_sym_inline] = ACTIONS(6615), + [anon_sym___inline] = ACTIONS(6615), + [anon_sym___inline__] = ACTIONS(6615), + [anon_sym___forceinline] = ACTIONS(6615), + [anon_sym_thread_local] = ACTIONS(6615), + [anon_sym___thread] = ACTIONS(6615), + [anon_sym_CG_EXTERN] = ACTIONS(6615), + [anon_sym_CG_INLINE] = ACTIONS(6615), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6615), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6615), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6615), + [anon_sym_IBOutlet] = ACTIONS(6615), + [anon_sym_IBInspectable] = ACTIONS(6615), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6615), + [anon_sym_NS_INLINE] = ACTIONS(6615), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6615), + [anon_sym_OBJC_EXPORT] = ACTIONS(6615), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6615), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6615), + [anon_sym_const] = ACTIONS(6615), + [anon_sym_constexpr] = ACTIONS(6615), + [anon_sym_volatile] = ACTIONS(6615), + [anon_sym_restrict] = ACTIONS(6615), + [anon_sym___restrict__] = ACTIONS(6615), + [anon_sym__Atomic] = ACTIONS(6615), + [anon_sym__Noreturn] = ACTIONS(6615), + [anon_sym__Nonnull] = ACTIONS(6615), + [anon_sym_nullable] = ACTIONS(6615), + [anon_sym__Complex] = ACTIONS(6615), + [anon_sym__Nullable] = ACTIONS(6615), + [anon_sym__Nullable_result] = ACTIONS(6615), + [anon_sym__Null_unspecified] = ACTIONS(6615), + [anon_sym___autoreleasing] = ACTIONS(6615), + [anon_sym___block] = ACTIONS(6615), + [anon_sym___bridge] = ACTIONS(6615), + [anon_sym___bridge_retained] = ACTIONS(6615), + [anon_sym___bridge_transfer] = ACTIONS(6615), + [anon_sym___complex] = ACTIONS(6615), + [anon_sym___const] = ACTIONS(6615), + [anon_sym___imag] = ACTIONS(6615), + [anon_sym___kindof] = ACTIONS(6615), + [anon_sym___nonnull] = ACTIONS(6615), + [anon_sym___nullable] = ACTIONS(6615), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6615), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6615), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6615), + [anon_sym___real] = ACTIONS(6615), + [anon_sym___strong] = ACTIONS(6615), + [anon_sym___unsafe_unretained] = ACTIONS(6615), + [anon_sym___unused] = ACTIONS(6615), + [anon_sym___weak] = ACTIONS(6615), + [anon_sym_alignas] = ACTIONS(6615), + [anon_sym__Alignas] = ACTIONS(6615), + [sym_primitive_type] = ACTIONS(6615), + [anon_sym_enum] = ACTIONS(6615), + [anon_sym_struct] = ACTIONS(6615), + [anon_sym_union] = ACTIONS(6615), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6615), + [anon_sym___typeof] = ACTIONS(6615), + [anon_sym_typeof] = ACTIONS(6615), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6615), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6615), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6615), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6615), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6615), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6615), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6615), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6615), + [anon_sym_NS_AVAILABLE] = ACTIONS(6615), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6615), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_API_AVAILABLE] = ACTIONS(6615), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_API_DEPRECATED] = ACTIONS(6615), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6615), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6615), + [anon_sym___deprecated_msg] = ACTIONS(6615), + [anon_sym___deprecated_enum_msg] = ACTIONS(6615), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6615), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6615), + [anon_sym_BOOL] = ACTIONS(6615), + [anon_sym_IMP] = ACTIONS(6615), + [anon_sym_SEL] = ACTIONS(6615), + [anon_sym_Class] = ACTIONS(6615), + [anon_sym_id] = ACTIONS(6615), + [anon_sym_ATdefs] = ACTIONS(6617), + }, + [2606] = { + [sym_identifier] = ACTIONS(6619), + [aux_sym_preproc_def_token1] = ACTIONS(6619), + [aux_sym_preproc_if_token1] = ACTIONS(6619), + [aux_sym_preproc_if_token2] = ACTIONS(6619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6619), + [aux_sym_preproc_else_token1] = ACTIONS(6619), + [aux_sym_preproc_elif_token1] = ACTIONS(6619), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6619), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6619), + [sym_preproc_directive] = ACTIONS(6619), + [anon_sym___extension__] = ACTIONS(6619), + [anon_sym_extern] = ACTIONS(6619), + [anon_sym___attribute__] = ACTIONS(6619), + [anon_sym___attribute] = ACTIONS(6619), + [anon_sym_noreturn] = ACTIONS(6619), + [anon_sym_LBRACK] = ACTIONS(6621), + [anon_sym___declspec] = ACTIONS(6619), + [anon_sym_signed] = ACTIONS(6619), + [anon_sym_unsigned] = ACTIONS(6619), + [anon_sym_long] = ACTIONS(6619), + [anon_sym_short] = ACTIONS(6619), + [anon_sym_static] = ACTIONS(6619), + [anon_sym_auto] = ACTIONS(6619), + [anon_sym_register] = ACTIONS(6619), + [anon_sym_inline] = ACTIONS(6619), + [anon_sym___inline] = ACTIONS(6619), + [anon_sym___inline__] = ACTIONS(6619), + [anon_sym___forceinline] = ACTIONS(6619), + [anon_sym_thread_local] = ACTIONS(6619), + [anon_sym___thread] = ACTIONS(6619), + [anon_sym_CG_EXTERN] = ACTIONS(6619), + [anon_sym_CG_INLINE] = ACTIONS(6619), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6619), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6619), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6619), + [anon_sym_IBOutlet] = ACTIONS(6619), + [anon_sym_IBInspectable] = ACTIONS(6619), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6619), + [anon_sym_NS_INLINE] = ACTIONS(6619), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6619), + [anon_sym_OBJC_EXPORT] = ACTIONS(6619), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6619), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6619), + [anon_sym_const] = ACTIONS(6619), + [anon_sym_constexpr] = ACTIONS(6619), + [anon_sym_volatile] = ACTIONS(6619), + [anon_sym_restrict] = ACTIONS(6619), + [anon_sym___restrict__] = ACTIONS(6619), + [anon_sym__Atomic] = ACTIONS(6619), + [anon_sym__Noreturn] = ACTIONS(6619), + [anon_sym__Nonnull] = ACTIONS(6619), + [anon_sym_nullable] = ACTIONS(6619), + [anon_sym__Complex] = ACTIONS(6619), + [anon_sym__Nullable] = ACTIONS(6619), + [anon_sym__Nullable_result] = ACTIONS(6619), + [anon_sym__Null_unspecified] = ACTIONS(6619), + [anon_sym___autoreleasing] = ACTIONS(6619), + [anon_sym___block] = ACTIONS(6619), + [anon_sym___bridge] = ACTIONS(6619), + [anon_sym___bridge_retained] = ACTIONS(6619), + [anon_sym___bridge_transfer] = ACTIONS(6619), + [anon_sym___complex] = ACTIONS(6619), + [anon_sym___const] = ACTIONS(6619), + [anon_sym___imag] = ACTIONS(6619), + [anon_sym___kindof] = ACTIONS(6619), + [anon_sym___nonnull] = ACTIONS(6619), + [anon_sym___nullable] = ACTIONS(6619), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6619), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6619), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6619), + [anon_sym___real] = ACTIONS(6619), + [anon_sym___strong] = ACTIONS(6619), + [anon_sym___unsafe_unretained] = ACTIONS(6619), + [anon_sym___unused] = ACTIONS(6619), + [anon_sym___weak] = ACTIONS(6619), + [anon_sym_alignas] = ACTIONS(6619), + [anon_sym__Alignas] = ACTIONS(6619), + [sym_primitive_type] = ACTIONS(6619), + [anon_sym_enum] = ACTIONS(6619), + [anon_sym_struct] = ACTIONS(6619), + [anon_sym_union] = ACTIONS(6619), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6619), + [anon_sym___typeof] = ACTIONS(6619), + [anon_sym_typeof] = ACTIONS(6619), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6619), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6619), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6619), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6619), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6619), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6619), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6619), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6619), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6619), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6619), + [anon_sym_NS_AVAILABLE] = ACTIONS(6619), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6619), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6619), + [anon_sym_API_AVAILABLE] = ACTIONS(6619), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6619), + [anon_sym_API_DEPRECATED] = ACTIONS(6619), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6619), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6619), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6619), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6619), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6619), + [anon_sym___deprecated_msg] = ACTIONS(6619), + [anon_sym___deprecated_enum_msg] = ACTIONS(6619), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6619), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6619), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6619), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6619), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6619), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6619), + [anon_sym_BOOL] = ACTIONS(6619), + [anon_sym_IMP] = ACTIONS(6619), + [anon_sym_SEL] = ACTIONS(6619), + [anon_sym_Class] = ACTIONS(6619), + [anon_sym_id] = ACTIONS(6619), + [anon_sym_ATdefs] = ACTIONS(6621), + }, + [2607] = { + [sym_identifier] = ACTIONS(6623), + [aux_sym_preproc_def_token1] = ACTIONS(6623), + [aux_sym_preproc_if_token1] = ACTIONS(6623), + [aux_sym_preproc_if_token2] = ACTIONS(6623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6623), + [aux_sym_preproc_else_token1] = ACTIONS(6623), + [aux_sym_preproc_elif_token1] = ACTIONS(6623), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6623), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6623), + [sym_preproc_directive] = ACTIONS(6623), + [anon_sym___extension__] = ACTIONS(6623), + [anon_sym_extern] = ACTIONS(6623), + [anon_sym___attribute__] = ACTIONS(6623), + [anon_sym___attribute] = ACTIONS(6623), + [anon_sym_noreturn] = ACTIONS(6623), + [anon_sym_LBRACK] = ACTIONS(6625), + [anon_sym___declspec] = ACTIONS(6623), + [anon_sym_signed] = ACTIONS(6623), + [anon_sym_unsigned] = ACTIONS(6623), + [anon_sym_long] = ACTIONS(6623), + [anon_sym_short] = ACTIONS(6623), + [anon_sym_static] = ACTIONS(6623), + [anon_sym_auto] = ACTIONS(6623), + [anon_sym_register] = ACTIONS(6623), + [anon_sym_inline] = ACTIONS(6623), + [anon_sym___inline] = ACTIONS(6623), + [anon_sym___inline__] = ACTIONS(6623), + [anon_sym___forceinline] = ACTIONS(6623), + [anon_sym_thread_local] = ACTIONS(6623), + [anon_sym___thread] = ACTIONS(6623), + [anon_sym_CG_EXTERN] = ACTIONS(6623), + [anon_sym_CG_INLINE] = ACTIONS(6623), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6623), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6623), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6623), + [anon_sym_IBOutlet] = ACTIONS(6623), + [anon_sym_IBInspectable] = ACTIONS(6623), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6623), + [anon_sym_NS_INLINE] = ACTIONS(6623), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6623), + [anon_sym_OBJC_EXPORT] = ACTIONS(6623), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6623), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6623), + [anon_sym_const] = ACTIONS(6623), + [anon_sym_constexpr] = ACTIONS(6623), + [anon_sym_volatile] = ACTIONS(6623), + [anon_sym_restrict] = ACTIONS(6623), + [anon_sym___restrict__] = ACTIONS(6623), + [anon_sym__Atomic] = ACTIONS(6623), + [anon_sym__Noreturn] = ACTIONS(6623), + [anon_sym__Nonnull] = ACTIONS(6623), + [anon_sym_nullable] = ACTIONS(6623), + [anon_sym__Complex] = ACTIONS(6623), + [anon_sym__Nullable] = ACTIONS(6623), + [anon_sym__Nullable_result] = ACTIONS(6623), + [anon_sym__Null_unspecified] = ACTIONS(6623), + [anon_sym___autoreleasing] = ACTIONS(6623), + [anon_sym___block] = ACTIONS(6623), + [anon_sym___bridge] = ACTIONS(6623), + [anon_sym___bridge_retained] = ACTIONS(6623), + [anon_sym___bridge_transfer] = ACTIONS(6623), + [anon_sym___complex] = ACTIONS(6623), + [anon_sym___const] = ACTIONS(6623), + [anon_sym___imag] = ACTIONS(6623), + [anon_sym___kindof] = ACTIONS(6623), + [anon_sym___nonnull] = ACTIONS(6623), + [anon_sym___nullable] = ACTIONS(6623), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6623), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6623), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6623), + [anon_sym___real] = ACTIONS(6623), + [anon_sym___strong] = ACTIONS(6623), + [anon_sym___unsafe_unretained] = ACTIONS(6623), + [anon_sym___unused] = ACTIONS(6623), + [anon_sym___weak] = ACTIONS(6623), + [anon_sym_alignas] = ACTIONS(6623), + [anon_sym__Alignas] = ACTIONS(6623), + [sym_primitive_type] = ACTIONS(6623), + [anon_sym_enum] = ACTIONS(6623), + [anon_sym_struct] = ACTIONS(6623), + [anon_sym_union] = ACTIONS(6623), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6623), + [anon_sym___typeof] = ACTIONS(6623), + [anon_sym_typeof] = ACTIONS(6623), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6623), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6623), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6623), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6623), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6623), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6623), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6623), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6623), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6623), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6623), + [anon_sym_NS_AVAILABLE] = ACTIONS(6623), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6623), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6623), + [anon_sym_API_AVAILABLE] = ACTIONS(6623), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6623), + [anon_sym_API_DEPRECATED] = ACTIONS(6623), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6623), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6623), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6623), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6623), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6623), + [anon_sym___deprecated_msg] = ACTIONS(6623), + [anon_sym___deprecated_enum_msg] = ACTIONS(6623), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6623), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6623), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6623), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6623), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6623), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6623), + [anon_sym_BOOL] = ACTIONS(6623), + [anon_sym_IMP] = ACTIONS(6623), + [anon_sym_SEL] = ACTIONS(6623), + [anon_sym_Class] = ACTIONS(6623), + [anon_sym_id] = ACTIONS(6623), + [anon_sym_ATdefs] = ACTIONS(6625), + }, + [2608] = { + [sym_identifier] = ACTIONS(6623), + [aux_sym_preproc_def_token1] = ACTIONS(6623), + [aux_sym_preproc_if_token1] = ACTIONS(6623), + [aux_sym_preproc_if_token2] = ACTIONS(6623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6623), + [aux_sym_preproc_else_token1] = ACTIONS(6623), + [aux_sym_preproc_elif_token1] = ACTIONS(6623), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6623), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6623), + [sym_preproc_directive] = ACTIONS(6623), + [anon_sym___extension__] = ACTIONS(6623), + [anon_sym_extern] = ACTIONS(6623), + [anon_sym___attribute__] = ACTIONS(6623), + [anon_sym___attribute] = ACTIONS(6623), + [anon_sym_noreturn] = ACTIONS(6623), + [anon_sym_LBRACK] = ACTIONS(6625), + [anon_sym___declspec] = ACTIONS(6623), + [anon_sym_signed] = ACTIONS(6623), + [anon_sym_unsigned] = ACTIONS(6623), + [anon_sym_long] = ACTIONS(6623), + [anon_sym_short] = ACTIONS(6623), + [anon_sym_static] = ACTIONS(6623), + [anon_sym_auto] = ACTIONS(6623), + [anon_sym_register] = ACTIONS(6623), + [anon_sym_inline] = ACTIONS(6623), + [anon_sym___inline] = ACTIONS(6623), + [anon_sym___inline__] = ACTIONS(6623), + [anon_sym___forceinline] = ACTIONS(6623), + [anon_sym_thread_local] = ACTIONS(6623), + [anon_sym___thread] = ACTIONS(6623), + [anon_sym_CG_EXTERN] = ACTIONS(6623), + [anon_sym_CG_INLINE] = ACTIONS(6623), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6623), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6623), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6623), + [anon_sym_IBOutlet] = ACTIONS(6623), + [anon_sym_IBInspectable] = ACTIONS(6623), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6623), + [anon_sym_NS_INLINE] = ACTIONS(6623), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6623), + [anon_sym_OBJC_EXPORT] = ACTIONS(6623), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6623), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6623), + [anon_sym_const] = ACTIONS(6623), + [anon_sym_constexpr] = ACTIONS(6623), + [anon_sym_volatile] = ACTIONS(6623), + [anon_sym_restrict] = ACTIONS(6623), + [anon_sym___restrict__] = ACTIONS(6623), + [anon_sym__Atomic] = ACTIONS(6623), + [anon_sym__Noreturn] = ACTIONS(6623), + [anon_sym__Nonnull] = ACTIONS(6623), + [anon_sym_nullable] = ACTIONS(6623), + [anon_sym__Complex] = ACTIONS(6623), + [anon_sym__Nullable] = ACTIONS(6623), + [anon_sym__Nullable_result] = ACTIONS(6623), + [anon_sym__Null_unspecified] = ACTIONS(6623), + [anon_sym___autoreleasing] = ACTIONS(6623), + [anon_sym___block] = ACTIONS(6623), + [anon_sym___bridge] = ACTIONS(6623), + [anon_sym___bridge_retained] = ACTIONS(6623), + [anon_sym___bridge_transfer] = ACTIONS(6623), + [anon_sym___complex] = ACTIONS(6623), + [anon_sym___const] = ACTIONS(6623), + [anon_sym___imag] = ACTIONS(6623), + [anon_sym___kindof] = ACTIONS(6623), + [anon_sym___nonnull] = ACTIONS(6623), + [anon_sym___nullable] = ACTIONS(6623), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6623), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6623), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6623), + [anon_sym___real] = ACTIONS(6623), + [anon_sym___strong] = ACTIONS(6623), + [anon_sym___unsafe_unretained] = ACTIONS(6623), + [anon_sym___unused] = ACTIONS(6623), + [anon_sym___weak] = ACTIONS(6623), + [anon_sym_alignas] = ACTIONS(6623), + [anon_sym__Alignas] = ACTIONS(6623), + [sym_primitive_type] = ACTIONS(6623), + [anon_sym_enum] = ACTIONS(6623), + [anon_sym_struct] = ACTIONS(6623), + [anon_sym_union] = ACTIONS(6623), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6623), + [anon_sym___typeof] = ACTIONS(6623), + [anon_sym_typeof] = ACTIONS(6623), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6623), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6623), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6623), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6623), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6623), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6623), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6623), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6623), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6623), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6623), + [anon_sym_NS_AVAILABLE] = ACTIONS(6623), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6623), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6623), + [anon_sym_API_AVAILABLE] = ACTIONS(6623), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6623), + [anon_sym_API_DEPRECATED] = ACTIONS(6623), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6623), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6623), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6623), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6623), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6623), + [anon_sym___deprecated_msg] = ACTIONS(6623), + [anon_sym___deprecated_enum_msg] = ACTIONS(6623), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6623), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6623), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6623), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6623), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6623), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6623), + [anon_sym_BOOL] = ACTIONS(6623), + [anon_sym_IMP] = ACTIONS(6623), + [anon_sym_SEL] = ACTIONS(6623), + [anon_sym_Class] = ACTIONS(6623), + [anon_sym_id] = ACTIONS(6623), + [anon_sym_ATdefs] = ACTIONS(6625), + }, + [2609] = { + [sym_identifier] = ACTIONS(6627), + [aux_sym_preproc_def_token1] = ACTIONS(6627), + [aux_sym_preproc_if_token1] = ACTIONS(6627), + [aux_sym_preproc_if_token2] = ACTIONS(6627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6627), + [aux_sym_preproc_else_token1] = ACTIONS(6627), + [aux_sym_preproc_elif_token1] = ACTIONS(6627), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6627), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6627), + [sym_preproc_directive] = ACTIONS(6627), + [anon_sym___extension__] = ACTIONS(6627), + [anon_sym_extern] = ACTIONS(6627), + [anon_sym___attribute__] = ACTIONS(6627), + [anon_sym___attribute] = ACTIONS(6627), + [anon_sym_noreturn] = ACTIONS(6627), + [anon_sym_LBRACK] = ACTIONS(6629), + [anon_sym___declspec] = ACTIONS(6627), + [anon_sym_signed] = ACTIONS(6627), + [anon_sym_unsigned] = ACTIONS(6627), + [anon_sym_long] = ACTIONS(6627), + [anon_sym_short] = ACTIONS(6627), + [anon_sym_static] = ACTIONS(6627), + [anon_sym_auto] = ACTIONS(6627), + [anon_sym_register] = ACTIONS(6627), + [anon_sym_inline] = ACTIONS(6627), + [anon_sym___inline] = ACTIONS(6627), + [anon_sym___inline__] = ACTIONS(6627), + [anon_sym___forceinline] = ACTIONS(6627), + [anon_sym_thread_local] = ACTIONS(6627), + [anon_sym___thread] = ACTIONS(6627), + [anon_sym_CG_EXTERN] = ACTIONS(6627), + [anon_sym_CG_INLINE] = ACTIONS(6627), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6627), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6627), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6627), + [anon_sym_IBOutlet] = ACTIONS(6627), + [anon_sym_IBInspectable] = ACTIONS(6627), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6627), + [anon_sym_NS_INLINE] = ACTIONS(6627), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6627), + [anon_sym_OBJC_EXPORT] = ACTIONS(6627), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6627), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6627), + [anon_sym_const] = ACTIONS(6627), + [anon_sym_constexpr] = ACTIONS(6627), + [anon_sym_volatile] = ACTIONS(6627), + [anon_sym_restrict] = ACTIONS(6627), + [anon_sym___restrict__] = ACTIONS(6627), + [anon_sym__Atomic] = ACTIONS(6627), + [anon_sym__Noreturn] = ACTIONS(6627), + [anon_sym__Nonnull] = ACTIONS(6627), + [anon_sym_nullable] = ACTIONS(6627), + [anon_sym__Complex] = ACTIONS(6627), + [anon_sym__Nullable] = ACTIONS(6627), + [anon_sym__Nullable_result] = ACTIONS(6627), + [anon_sym__Null_unspecified] = ACTIONS(6627), + [anon_sym___autoreleasing] = ACTIONS(6627), + [anon_sym___block] = ACTIONS(6627), + [anon_sym___bridge] = ACTIONS(6627), + [anon_sym___bridge_retained] = ACTIONS(6627), + [anon_sym___bridge_transfer] = ACTIONS(6627), + [anon_sym___complex] = ACTIONS(6627), + [anon_sym___const] = ACTIONS(6627), + [anon_sym___imag] = ACTIONS(6627), + [anon_sym___kindof] = ACTIONS(6627), + [anon_sym___nonnull] = ACTIONS(6627), + [anon_sym___nullable] = ACTIONS(6627), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6627), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6627), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6627), + [anon_sym___real] = ACTIONS(6627), + [anon_sym___strong] = ACTIONS(6627), + [anon_sym___unsafe_unretained] = ACTIONS(6627), + [anon_sym___unused] = ACTIONS(6627), + [anon_sym___weak] = ACTIONS(6627), + [anon_sym_alignas] = ACTIONS(6627), + [anon_sym__Alignas] = ACTIONS(6627), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_enum] = ACTIONS(6627), + [anon_sym_struct] = ACTIONS(6627), + [anon_sym_union] = ACTIONS(6627), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6627), + [anon_sym___typeof] = ACTIONS(6627), + [anon_sym_typeof] = ACTIONS(6627), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6627), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6627), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6627), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6627), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6627), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6627), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6627), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6627), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6627), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6627), + [anon_sym_NS_AVAILABLE] = ACTIONS(6627), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6627), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6627), + [anon_sym_API_AVAILABLE] = ACTIONS(6627), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6627), + [anon_sym_API_DEPRECATED] = ACTIONS(6627), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6627), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6627), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6627), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6627), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6627), + [anon_sym___deprecated_msg] = ACTIONS(6627), + [anon_sym___deprecated_enum_msg] = ACTIONS(6627), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6627), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6627), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6627), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6627), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6627), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6627), + [anon_sym_BOOL] = ACTIONS(6627), + [anon_sym_IMP] = ACTIONS(6627), + [anon_sym_SEL] = ACTIONS(6627), + [anon_sym_Class] = ACTIONS(6627), + [anon_sym_id] = ACTIONS(6627), + [anon_sym_ATdefs] = ACTIONS(6629), + }, + [2610] = { + [sym_identifier] = ACTIONS(6631), + [aux_sym_preproc_def_token1] = ACTIONS(6631), + [aux_sym_preproc_if_token1] = ACTIONS(6631), + [aux_sym_preproc_if_token2] = ACTIONS(6631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6631), + [aux_sym_preproc_else_token1] = ACTIONS(6631), + [aux_sym_preproc_elif_token1] = ACTIONS(6631), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6631), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6631), + [sym_preproc_directive] = ACTIONS(6631), + [anon_sym___extension__] = ACTIONS(6631), + [anon_sym_extern] = ACTIONS(6631), + [anon_sym___attribute__] = ACTIONS(6631), + [anon_sym___attribute] = ACTIONS(6631), + [anon_sym_noreturn] = ACTIONS(6631), + [anon_sym_LBRACK] = ACTIONS(6633), + [anon_sym___declspec] = ACTIONS(6631), + [anon_sym_signed] = ACTIONS(6631), + [anon_sym_unsigned] = ACTIONS(6631), + [anon_sym_long] = ACTIONS(6631), + [anon_sym_short] = ACTIONS(6631), + [anon_sym_static] = ACTIONS(6631), + [anon_sym_auto] = ACTIONS(6631), + [anon_sym_register] = ACTIONS(6631), + [anon_sym_inline] = ACTIONS(6631), + [anon_sym___inline] = ACTIONS(6631), + [anon_sym___inline__] = ACTIONS(6631), + [anon_sym___forceinline] = ACTIONS(6631), + [anon_sym_thread_local] = ACTIONS(6631), + [anon_sym___thread] = ACTIONS(6631), + [anon_sym_CG_EXTERN] = ACTIONS(6631), + [anon_sym_CG_INLINE] = ACTIONS(6631), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6631), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6631), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6631), + [anon_sym_IBOutlet] = ACTIONS(6631), + [anon_sym_IBInspectable] = ACTIONS(6631), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6631), + [anon_sym_NS_INLINE] = ACTIONS(6631), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6631), + [anon_sym_OBJC_EXPORT] = ACTIONS(6631), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6631), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6631), + [anon_sym_const] = ACTIONS(6631), + [anon_sym_constexpr] = ACTIONS(6631), + [anon_sym_volatile] = ACTIONS(6631), + [anon_sym_restrict] = ACTIONS(6631), + [anon_sym___restrict__] = ACTIONS(6631), + [anon_sym__Atomic] = ACTIONS(6631), + [anon_sym__Noreturn] = ACTIONS(6631), + [anon_sym__Nonnull] = ACTIONS(6631), + [anon_sym_nullable] = ACTIONS(6631), + [anon_sym__Complex] = ACTIONS(6631), + [anon_sym__Nullable] = ACTIONS(6631), + [anon_sym__Nullable_result] = ACTIONS(6631), + [anon_sym__Null_unspecified] = ACTIONS(6631), + [anon_sym___autoreleasing] = ACTIONS(6631), + [anon_sym___block] = ACTIONS(6631), + [anon_sym___bridge] = ACTIONS(6631), + [anon_sym___bridge_retained] = ACTIONS(6631), + [anon_sym___bridge_transfer] = ACTIONS(6631), + [anon_sym___complex] = ACTIONS(6631), + [anon_sym___const] = ACTIONS(6631), + [anon_sym___imag] = ACTIONS(6631), + [anon_sym___kindof] = ACTIONS(6631), + [anon_sym___nonnull] = ACTIONS(6631), + [anon_sym___nullable] = ACTIONS(6631), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6631), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6631), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6631), + [anon_sym___real] = ACTIONS(6631), + [anon_sym___strong] = ACTIONS(6631), + [anon_sym___unsafe_unretained] = ACTIONS(6631), + [anon_sym___unused] = ACTIONS(6631), + [anon_sym___weak] = ACTIONS(6631), + [anon_sym_alignas] = ACTIONS(6631), + [anon_sym__Alignas] = ACTIONS(6631), + [sym_primitive_type] = ACTIONS(6631), + [anon_sym_enum] = ACTIONS(6631), + [anon_sym_struct] = ACTIONS(6631), + [anon_sym_union] = ACTIONS(6631), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6631), + [anon_sym___typeof] = ACTIONS(6631), + [anon_sym_typeof] = ACTIONS(6631), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6631), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6631), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6631), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6631), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6631), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6631), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6631), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6631), + [anon_sym_NS_AVAILABLE] = ACTIONS(6631), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6631), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_API_AVAILABLE] = ACTIONS(6631), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_API_DEPRECATED] = ACTIONS(6631), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6631), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6631), + [anon_sym___deprecated_msg] = ACTIONS(6631), + [anon_sym___deprecated_enum_msg] = ACTIONS(6631), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6631), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6631), + [anon_sym_BOOL] = ACTIONS(6631), + [anon_sym_IMP] = ACTIONS(6631), + [anon_sym_SEL] = ACTIONS(6631), + [anon_sym_Class] = ACTIONS(6631), + [anon_sym_id] = ACTIONS(6631), + [anon_sym_ATdefs] = ACTIONS(6633), + }, + [2611] = { + [sym_identifier] = ACTIONS(6631), + [aux_sym_preproc_def_token1] = ACTIONS(6631), + [aux_sym_preproc_if_token1] = ACTIONS(6631), + [aux_sym_preproc_if_token2] = ACTIONS(6631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6631), + [aux_sym_preproc_else_token1] = ACTIONS(6631), + [aux_sym_preproc_elif_token1] = ACTIONS(6631), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6631), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6631), + [sym_preproc_directive] = ACTIONS(6631), + [anon_sym___extension__] = ACTIONS(6631), + [anon_sym_extern] = ACTIONS(6631), + [anon_sym___attribute__] = ACTIONS(6631), + [anon_sym___attribute] = ACTIONS(6631), + [anon_sym_noreturn] = ACTIONS(6631), + [anon_sym_LBRACK] = ACTIONS(6633), + [anon_sym___declspec] = ACTIONS(6631), + [anon_sym_signed] = ACTIONS(6631), + [anon_sym_unsigned] = ACTIONS(6631), + [anon_sym_long] = ACTIONS(6631), + [anon_sym_short] = ACTIONS(6631), + [anon_sym_static] = ACTIONS(6631), + [anon_sym_auto] = ACTIONS(6631), + [anon_sym_register] = ACTIONS(6631), + [anon_sym_inline] = ACTIONS(6631), + [anon_sym___inline] = ACTIONS(6631), + [anon_sym___inline__] = ACTIONS(6631), + [anon_sym___forceinline] = ACTIONS(6631), + [anon_sym_thread_local] = ACTIONS(6631), + [anon_sym___thread] = ACTIONS(6631), + [anon_sym_CG_EXTERN] = ACTIONS(6631), + [anon_sym_CG_INLINE] = ACTIONS(6631), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6631), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6631), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6631), + [anon_sym_IBOutlet] = ACTIONS(6631), + [anon_sym_IBInspectable] = ACTIONS(6631), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6631), + [anon_sym_NS_INLINE] = ACTIONS(6631), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6631), + [anon_sym_OBJC_EXPORT] = ACTIONS(6631), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6631), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6631), + [anon_sym_const] = ACTIONS(6631), + [anon_sym_constexpr] = ACTIONS(6631), + [anon_sym_volatile] = ACTIONS(6631), + [anon_sym_restrict] = ACTIONS(6631), + [anon_sym___restrict__] = ACTIONS(6631), + [anon_sym__Atomic] = ACTIONS(6631), + [anon_sym__Noreturn] = ACTIONS(6631), + [anon_sym__Nonnull] = ACTIONS(6631), + [anon_sym_nullable] = ACTIONS(6631), + [anon_sym__Complex] = ACTIONS(6631), + [anon_sym__Nullable] = ACTIONS(6631), + [anon_sym__Nullable_result] = ACTIONS(6631), + [anon_sym__Null_unspecified] = ACTIONS(6631), + [anon_sym___autoreleasing] = ACTIONS(6631), + [anon_sym___block] = ACTIONS(6631), + [anon_sym___bridge] = ACTIONS(6631), + [anon_sym___bridge_retained] = ACTIONS(6631), + [anon_sym___bridge_transfer] = ACTIONS(6631), + [anon_sym___complex] = ACTIONS(6631), + [anon_sym___const] = ACTIONS(6631), + [anon_sym___imag] = ACTIONS(6631), + [anon_sym___kindof] = ACTIONS(6631), + [anon_sym___nonnull] = ACTIONS(6631), + [anon_sym___nullable] = ACTIONS(6631), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6631), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6631), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6631), + [anon_sym___real] = ACTIONS(6631), + [anon_sym___strong] = ACTIONS(6631), + [anon_sym___unsafe_unretained] = ACTIONS(6631), + [anon_sym___unused] = ACTIONS(6631), + [anon_sym___weak] = ACTIONS(6631), + [anon_sym_alignas] = ACTIONS(6631), + [anon_sym__Alignas] = ACTIONS(6631), + [sym_primitive_type] = ACTIONS(6631), + [anon_sym_enum] = ACTIONS(6631), + [anon_sym_struct] = ACTIONS(6631), + [anon_sym_union] = ACTIONS(6631), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6631), + [anon_sym___typeof] = ACTIONS(6631), + [anon_sym_typeof] = ACTIONS(6631), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6631), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6631), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6631), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6631), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6631), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6631), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6631), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6631), + [anon_sym_NS_AVAILABLE] = ACTIONS(6631), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6631), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_API_AVAILABLE] = ACTIONS(6631), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_API_DEPRECATED] = ACTIONS(6631), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6631), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6631), + [anon_sym___deprecated_msg] = ACTIONS(6631), + [anon_sym___deprecated_enum_msg] = ACTIONS(6631), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6631), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6631), + [anon_sym_BOOL] = ACTIONS(6631), + [anon_sym_IMP] = ACTIONS(6631), + [anon_sym_SEL] = ACTIONS(6631), + [anon_sym_Class] = ACTIONS(6631), + [anon_sym_id] = ACTIONS(6631), + [anon_sym_ATdefs] = ACTIONS(6633), + }, + [2612] = { + [sym_identifier] = ACTIONS(6635), + [aux_sym_preproc_def_token1] = ACTIONS(6635), + [aux_sym_preproc_if_token1] = ACTIONS(6635), + [aux_sym_preproc_if_token2] = ACTIONS(6635), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6635), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6635), + [aux_sym_preproc_else_token1] = ACTIONS(6635), + [aux_sym_preproc_elif_token1] = ACTIONS(6635), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6635), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6635), + [sym_preproc_directive] = ACTIONS(6635), + [anon_sym___extension__] = ACTIONS(6635), + [anon_sym_extern] = ACTIONS(6635), + [anon_sym___attribute__] = ACTIONS(6635), + [anon_sym___attribute] = ACTIONS(6635), + [anon_sym_noreturn] = ACTIONS(6635), + [anon_sym_LBRACK] = ACTIONS(6637), + [anon_sym___declspec] = ACTIONS(6635), + [anon_sym_signed] = ACTIONS(6635), + [anon_sym_unsigned] = ACTIONS(6635), + [anon_sym_long] = ACTIONS(6635), + [anon_sym_short] = ACTIONS(6635), + [anon_sym_static] = ACTIONS(6635), + [anon_sym_auto] = ACTIONS(6635), + [anon_sym_register] = ACTIONS(6635), + [anon_sym_inline] = ACTIONS(6635), + [anon_sym___inline] = ACTIONS(6635), + [anon_sym___inline__] = ACTIONS(6635), + [anon_sym___forceinline] = ACTIONS(6635), + [anon_sym_thread_local] = ACTIONS(6635), + [anon_sym___thread] = ACTIONS(6635), + [anon_sym_CG_EXTERN] = ACTIONS(6635), + [anon_sym_CG_INLINE] = ACTIONS(6635), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6635), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6635), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6635), + [anon_sym_IBOutlet] = ACTIONS(6635), + [anon_sym_IBInspectable] = ACTIONS(6635), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6635), + [anon_sym_NS_INLINE] = ACTIONS(6635), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6635), + [anon_sym_OBJC_EXPORT] = ACTIONS(6635), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6635), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6635), + [anon_sym_const] = ACTIONS(6635), + [anon_sym_constexpr] = ACTIONS(6635), + [anon_sym_volatile] = ACTIONS(6635), + [anon_sym_restrict] = ACTIONS(6635), + [anon_sym___restrict__] = ACTIONS(6635), + [anon_sym__Atomic] = ACTIONS(6635), + [anon_sym__Noreturn] = ACTIONS(6635), + [anon_sym__Nonnull] = ACTIONS(6635), + [anon_sym_nullable] = ACTIONS(6635), + [anon_sym__Complex] = ACTIONS(6635), + [anon_sym__Nullable] = ACTIONS(6635), + [anon_sym__Nullable_result] = ACTIONS(6635), + [anon_sym__Null_unspecified] = ACTIONS(6635), + [anon_sym___autoreleasing] = ACTIONS(6635), + [anon_sym___block] = ACTIONS(6635), + [anon_sym___bridge] = ACTIONS(6635), + [anon_sym___bridge_retained] = ACTIONS(6635), + [anon_sym___bridge_transfer] = ACTIONS(6635), + [anon_sym___complex] = ACTIONS(6635), + [anon_sym___const] = ACTIONS(6635), + [anon_sym___imag] = ACTIONS(6635), + [anon_sym___kindof] = ACTIONS(6635), + [anon_sym___nonnull] = ACTIONS(6635), + [anon_sym___nullable] = ACTIONS(6635), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6635), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6635), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6635), + [anon_sym___real] = ACTIONS(6635), + [anon_sym___strong] = ACTIONS(6635), + [anon_sym___unsafe_unretained] = ACTIONS(6635), + [anon_sym___unused] = ACTIONS(6635), + [anon_sym___weak] = ACTIONS(6635), + [anon_sym_alignas] = ACTIONS(6635), + [anon_sym__Alignas] = ACTIONS(6635), + [sym_primitive_type] = ACTIONS(6635), + [anon_sym_enum] = ACTIONS(6635), + [anon_sym_struct] = ACTIONS(6635), + [anon_sym_union] = ACTIONS(6635), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6635), + [anon_sym___typeof] = ACTIONS(6635), + [anon_sym_typeof] = ACTIONS(6635), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6635), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6635), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6635), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6635), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6635), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6635), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6635), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6635), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6635), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6635), + [anon_sym_NS_AVAILABLE] = ACTIONS(6635), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6635), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6635), + [anon_sym_API_AVAILABLE] = ACTIONS(6635), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6635), + [anon_sym_API_DEPRECATED] = ACTIONS(6635), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6635), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6635), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6635), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6635), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6635), + [anon_sym___deprecated_msg] = ACTIONS(6635), + [anon_sym___deprecated_enum_msg] = ACTIONS(6635), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6635), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6635), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6635), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6635), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6635), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6635), + [anon_sym_BOOL] = ACTIONS(6635), + [anon_sym_IMP] = ACTIONS(6635), + [anon_sym_SEL] = ACTIONS(6635), + [anon_sym_Class] = ACTIONS(6635), + [anon_sym_id] = ACTIONS(6635), + [anon_sym_ATdefs] = ACTIONS(6637), + }, + [2613] = { + [sym_identifier] = ACTIONS(6631), + [aux_sym_preproc_def_token1] = ACTIONS(6631), + [aux_sym_preproc_if_token1] = ACTIONS(6631), + [aux_sym_preproc_if_token2] = ACTIONS(6631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6631), + [aux_sym_preproc_else_token1] = ACTIONS(6631), + [aux_sym_preproc_elif_token1] = ACTIONS(6631), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6631), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6631), + [sym_preproc_directive] = ACTIONS(6631), + [anon_sym___extension__] = ACTIONS(6631), + [anon_sym_extern] = ACTIONS(6631), + [anon_sym___attribute__] = ACTIONS(6631), + [anon_sym___attribute] = ACTIONS(6631), + [anon_sym_noreturn] = ACTIONS(6631), + [anon_sym_LBRACK] = ACTIONS(6633), + [anon_sym___declspec] = ACTIONS(6631), + [anon_sym_signed] = ACTIONS(6631), + [anon_sym_unsigned] = ACTIONS(6631), + [anon_sym_long] = ACTIONS(6631), + [anon_sym_short] = ACTIONS(6631), + [anon_sym_static] = ACTIONS(6631), + [anon_sym_auto] = ACTIONS(6631), + [anon_sym_register] = ACTIONS(6631), + [anon_sym_inline] = ACTIONS(6631), + [anon_sym___inline] = ACTIONS(6631), + [anon_sym___inline__] = ACTIONS(6631), + [anon_sym___forceinline] = ACTIONS(6631), + [anon_sym_thread_local] = ACTIONS(6631), + [anon_sym___thread] = ACTIONS(6631), + [anon_sym_CG_EXTERN] = ACTIONS(6631), + [anon_sym_CG_INLINE] = ACTIONS(6631), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6631), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6631), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6631), + [anon_sym_IBOutlet] = ACTIONS(6631), + [anon_sym_IBInspectable] = ACTIONS(6631), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6631), + [anon_sym_NS_INLINE] = ACTIONS(6631), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6631), + [anon_sym_OBJC_EXPORT] = ACTIONS(6631), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6631), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6631), + [anon_sym_const] = ACTIONS(6631), + [anon_sym_constexpr] = ACTIONS(6631), + [anon_sym_volatile] = ACTIONS(6631), + [anon_sym_restrict] = ACTIONS(6631), + [anon_sym___restrict__] = ACTIONS(6631), + [anon_sym__Atomic] = ACTIONS(6631), + [anon_sym__Noreturn] = ACTIONS(6631), + [anon_sym__Nonnull] = ACTIONS(6631), + [anon_sym_nullable] = ACTIONS(6631), + [anon_sym__Complex] = ACTIONS(6631), + [anon_sym__Nullable] = ACTIONS(6631), + [anon_sym__Nullable_result] = ACTIONS(6631), + [anon_sym__Null_unspecified] = ACTIONS(6631), + [anon_sym___autoreleasing] = ACTIONS(6631), + [anon_sym___block] = ACTIONS(6631), + [anon_sym___bridge] = ACTIONS(6631), + [anon_sym___bridge_retained] = ACTIONS(6631), + [anon_sym___bridge_transfer] = ACTIONS(6631), + [anon_sym___complex] = ACTIONS(6631), + [anon_sym___const] = ACTIONS(6631), + [anon_sym___imag] = ACTIONS(6631), + [anon_sym___kindof] = ACTIONS(6631), + [anon_sym___nonnull] = ACTIONS(6631), + [anon_sym___nullable] = ACTIONS(6631), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6631), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6631), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6631), + [anon_sym___real] = ACTIONS(6631), + [anon_sym___strong] = ACTIONS(6631), + [anon_sym___unsafe_unretained] = ACTIONS(6631), + [anon_sym___unused] = ACTIONS(6631), + [anon_sym___weak] = ACTIONS(6631), + [anon_sym_alignas] = ACTIONS(6631), + [anon_sym__Alignas] = ACTIONS(6631), + [sym_primitive_type] = ACTIONS(6631), + [anon_sym_enum] = ACTIONS(6631), + [anon_sym_struct] = ACTIONS(6631), + [anon_sym_union] = ACTIONS(6631), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6631), + [anon_sym___typeof] = ACTIONS(6631), + [anon_sym_typeof] = ACTIONS(6631), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6631), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6631), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6631), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6631), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6631), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6631), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6631), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6631), + [anon_sym_NS_AVAILABLE] = ACTIONS(6631), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6631), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_API_AVAILABLE] = ACTIONS(6631), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_API_DEPRECATED] = ACTIONS(6631), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6631), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6631), + [anon_sym___deprecated_msg] = ACTIONS(6631), + [anon_sym___deprecated_enum_msg] = ACTIONS(6631), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6631), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6631), + [anon_sym_BOOL] = ACTIONS(6631), + [anon_sym_IMP] = ACTIONS(6631), + [anon_sym_SEL] = ACTIONS(6631), + [anon_sym_Class] = ACTIONS(6631), + [anon_sym_id] = ACTIONS(6631), + [anon_sym_ATdefs] = ACTIONS(6633), + }, + [2614] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6639), + [anon_sym_COMMA] = ACTIONS(6641), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6595), + [anon_sym_PLUS] = ACTIONS(6595), + [anon_sym_STAR] = ACTIONS(6597), + [anon_sym_SLASH] = ACTIONS(6599), + [anon_sym_PERCENT] = ACTIONS(6597), + [anon_sym_PIPE_PIPE] = ACTIONS(6643), + [anon_sym_AMP_AMP] = ACTIONS(6645), + [anon_sym_PIPE] = ACTIONS(6647), + [anon_sym_CARET] = ACTIONS(6649), + [anon_sym_AMP] = ACTIONS(6601), + [anon_sym_EQ_EQ] = ACTIONS(6603), + [anon_sym_BANG_EQ] = ACTIONS(6603), + [anon_sym_GT] = ACTIONS(6605), + [anon_sym_GT_EQ] = ACTIONS(6607), + [anon_sym_LT_EQ] = ACTIONS(6607), + [anon_sym_LT] = ACTIONS(6605), + [anon_sym_LT_LT] = ACTIONS(6609), + [anon_sym_GT_GT] = ACTIONS(6609), + [anon_sym_SEMI] = ACTIONS(6641), + [anon_sym___extension__] = ACTIONS(6641), + [anon_sym_extern] = ACTIONS(6641), + [anon_sym___attribute__] = ACTIONS(6641), + [anon_sym___attribute] = ACTIONS(6651), + [anon_sym_noreturn] = ACTIONS(6641), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(6641), + [anon_sym_static] = ACTIONS(6641), + [anon_sym_auto] = ACTIONS(6641), + [anon_sym_register] = ACTIONS(6641), + [anon_sym_inline] = ACTIONS(6641), + [anon_sym___inline] = ACTIONS(6651), + [anon_sym___inline__] = ACTIONS(6641), + [anon_sym___forceinline] = ACTIONS(6641), + [anon_sym_thread_local] = ACTIONS(6641), + [anon_sym___thread] = ACTIONS(6641), + [anon_sym_CG_EXTERN] = ACTIONS(6641), + [anon_sym_CG_INLINE] = ACTIONS(6641), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6641), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6641), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6641), + [anon_sym_IBOutlet] = ACTIONS(6641), + [anon_sym_IBInspectable] = ACTIONS(6641), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6641), + [anon_sym_NS_INLINE] = ACTIONS(6641), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6641), + [anon_sym_OBJC_EXPORT] = ACTIONS(6641), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6641), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6641), + [anon_sym_const] = ACTIONS(6651), + [anon_sym_constexpr] = ACTIONS(6641), + [anon_sym_volatile] = ACTIONS(6641), + [anon_sym_restrict] = ACTIONS(6641), + [anon_sym___restrict__] = ACTIONS(6641), + [anon_sym__Atomic] = ACTIONS(6641), + [anon_sym__Noreturn] = ACTIONS(6641), + [anon_sym__Nonnull] = ACTIONS(6641), + [anon_sym_nullable] = ACTIONS(6641), + [anon_sym__Complex] = ACTIONS(6641), + [anon_sym__Nullable] = ACTIONS(6651), + [anon_sym__Nullable_result] = ACTIONS(6641), + [anon_sym__Null_unspecified] = ACTIONS(6641), + [anon_sym___autoreleasing] = ACTIONS(6641), + [anon_sym___block] = ACTIONS(6641), + [anon_sym___bridge] = ACTIONS(6651), + [anon_sym___bridge_retained] = ACTIONS(6641), + [anon_sym___bridge_transfer] = ACTIONS(6641), + [anon_sym___complex] = ACTIONS(6641), + [anon_sym___const] = ACTIONS(6641), + [anon_sym___imag] = ACTIONS(6641), + [anon_sym___kindof] = ACTIONS(6641), + [anon_sym___nonnull] = ACTIONS(6641), + [anon_sym___nullable] = ACTIONS(6641), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6641), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6641), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6641), + [anon_sym___real] = ACTIONS(6641), + [anon_sym___strong] = ACTIONS(6641), + [anon_sym___unsafe_unretained] = ACTIONS(6641), + [anon_sym___unused] = ACTIONS(6641), + [anon_sym___weak] = ACTIONS(6641), + [anon_sym_alignas] = ACTIONS(6641), + [anon_sym__Alignas] = ACTIONS(6641), + [anon_sym_QMARK] = ACTIONS(6653), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6641), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6641), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6641), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6641), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6641), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6641), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6641), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6641), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6641), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6641), + [anon_sym_NS_AVAILABLE] = ACTIONS(6651), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6641), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6641), + [anon_sym_API_AVAILABLE] = ACTIONS(6641), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6641), + [anon_sym_API_DEPRECATED] = ACTIONS(6641), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6641), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6641), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6641), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6641), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6641), + [anon_sym___deprecated_msg] = ACTIONS(6641), + [anon_sym___deprecated_enum_msg] = ACTIONS(6641), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6641), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6641), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6641), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6641), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6641), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6641), + }, + [2615] = { + [sym_identifier] = ACTIONS(6631), + [aux_sym_preproc_def_token1] = ACTIONS(6631), + [aux_sym_preproc_if_token1] = ACTIONS(6631), + [aux_sym_preproc_if_token2] = ACTIONS(6631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6631), + [aux_sym_preproc_else_token1] = ACTIONS(6631), + [aux_sym_preproc_elif_token1] = ACTIONS(6631), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6631), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6631), + [sym_preproc_directive] = ACTIONS(6631), + [anon_sym___extension__] = ACTIONS(6631), + [anon_sym_extern] = ACTIONS(6631), + [anon_sym___attribute__] = ACTIONS(6631), + [anon_sym___attribute] = ACTIONS(6631), + [anon_sym_noreturn] = ACTIONS(6631), + [anon_sym_LBRACK] = ACTIONS(6633), + [anon_sym___declspec] = ACTIONS(6631), + [anon_sym_signed] = ACTIONS(6631), + [anon_sym_unsigned] = ACTIONS(6631), + [anon_sym_long] = ACTIONS(6631), + [anon_sym_short] = ACTIONS(6631), + [anon_sym_static] = ACTIONS(6631), + [anon_sym_auto] = ACTIONS(6631), + [anon_sym_register] = ACTIONS(6631), + [anon_sym_inline] = ACTIONS(6631), + [anon_sym___inline] = ACTIONS(6631), + [anon_sym___inline__] = ACTIONS(6631), + [anon_sym___forceinline] = ACTIONS(6631), + [anon_sym_thread_local] = ACTIONS(6631), + [anon_sym___thread] = ACTIONS(6631), + [anon_sym_CG_EXTERN] = ACTIONS(6631), + [anon_sym_CG_INLINE] = ACTIONS(6631), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6631), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6631), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6631), + [anon_sym_IBOutlet] = ACTIONS(6631), + [anon_sym_IBInspectable] = ACTIONS(6631), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6631), + [anon_sym_NS_INLINE] = ACTIONS(6631), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6631), + [anon_sym_OBJC_EXPORT] = ACTIONS(6631), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6631), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6631), + [anon_sym_const] = ACTIONS(6631), + [anon_sym_constexpr] = ACTIONS(6631), + [anon_sym_volatile] = ACTIONS(6631), + [anon_sym_restrict] = ACTIONS(6631), + [anon_sym___restrict__] = ACTIONS(6631), + [anon_sym__Atomic] = ACTIONS(6631), + [anon_sym__Noreturn] = ACTIONS(6631), + [anon_sym__Nonnull] = ACTIONS(6631), + [anon_sym_nullable] = ACTIONS(6631), + [anon_sym__Complex] = ACTIONS(6631), + [anon_sym__Nullable] = ACTIONS(6631), + [anon_sym__Nullable_result] = ACTIONS(6631), + [anon_sym__Null_unspecified] = ACTIONS(6631), + [anon_sym___autoreleasing] = ACTIONS(6631), + [anon_sym___block] = ACTIONS(6631), + [anon_sym___bridge] = ACTIONS(6631), + [anon_sym___bridge_retained] = ACTIONS(6631), + [anon_sym___bridge_transfer] = ACTIONS(6631), + [anon_sym___complex] = ACTIONS(6631), + [anon_sym___const] = ACTIONS(6631), + [anon_sym___imag] = ACTIONS(6631), + [anon_sym___kindof] = ACTIONS(6631), + [anon_sym___nonnull] = ACTIONS(6631), + [anon_sym___nullable] = ACTIONS(6631), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6631), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6631), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6631), + [anon_sym___real] = ACTIONS(6631), + [anon_sym___strong] = ACTIONS(6631), + [anon_sym___unsafe_unretained] = ACTIONS(6631), + [anon_sym___unused] = ACTIONS(6631), + [anon_sym___weak] = ACTIONS(6631), + [anon_sym_alignas] = ACTIONS(6631), + [anon_sym__Alignas] = ACTIONS(6631), + [sym_primitive_type] = ACTIONS(6631), + [anon_sym_enum] = ACTIONS(6631), + [anon_sym_struct] = ACTIONS(6631), + [anon_sym_union] = ACTIONS(6631), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6631), + [anon_sym___typeof] = ACTIONS(6631), + [anon_sym_typeof] = ACTIONS(6631), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6631), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6631), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6631), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6631), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6631), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6631), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6631), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6631), + [anon_sym_NS_AVAILABLE] = ACTIONS(6631), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6631), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_API_AVAILABLE] = ACTIONS(6631), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_API_DEPRECATED] = ACTIONS(6631), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6631), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6631), + [anon_sym___deprecated_msg] = ACTIONS(6631), + [anon_sym___deprecated_enum_msg] = ACTIONS(6631), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6631), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6631), + [anon_sym_BOOL] = ACTIONS(6631), + [anon_sym_IMP] = ACTIONS(6631), + [anon_sym_SEL] = ACTIONS(6631), + [anon_sym_Class] = ACTIONS(6631), + [anon_sym_id] = ACTIONS(6631), + [anon_sym_ATdefs] = ACTIONS(6633), + }, + [2616] = { + [sym_identifier] = ACTIONS(6635), + [aux_sym_preproc_def_token1] = ACTIONS(6635), + [aux_sym_preproc_if_token1] = ACTIONS(6635), + [aux_sym_preproc_if_token2] = ACTIONS(6635), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6635), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6635), + [aux_sym_preproc_else_token1] = ACTIONS(6635), + [aux_sym_preproc_elif_token1] = ACTIONS(6635), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6635), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6635), + [sym_preproc_directive] = ACTIONS(6635), + [anon_sym___extension__] = ACTIONS(6635), + [anon_sym_extern] = ACTIONS(6635), + [anon_sym___attribute__] = ACTIONS(6635), + [anon_sym___attribute] = ACTIONS(6635), + [anon_sym_noreturn] = ACTIONS(6635), + [anon_sym_LBRACK] = ACTIONS(6637), + [anon_sym___declspec] = ACTIONS(6635), + [anon_sym_signed] = ACTIONS(6635), + [anon_sym_unsigned] = ACTIONS(6635), + [anon_sym_long] = ACTIONS(6635), + [anon_sym_short] = ACTIONS(6635), + [anon_sym_static] = ACTIONS(6635), + [anon_sym_auto] = ACTIONS(6635), + [anon_sym_register] = ACTIONS(6635), + [anon_sym_inline] = ACTIONS(6635), + [anon_sym___inline] = ACTIONS(6635), + [anon_sym___inline__] = ACTIONS(6635), + [anon_sym___forceinline] = ACTIONS(6635), + [anon_sym_thread_local] = ACTIONS(6635), + [anon_sym___thread] = ACTIONS(6635), + [anon_sym_CG_EXTERN] = ACTIONS(6635), + [anon_sym_CG_INLINE] = ACTIONS(6635), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6635), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6635), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6635), + [anon_sym_IBOutlet] = ACTIONS(6635), + [anon_sym_IBInspectable] = ACTIONS(6635), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6635), + [anon_sym_NS_INLINE] = ACTIONS(6635), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6635), + [anon_sym_OBJC_EXPORT] = ACTIONS(6635), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6635), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6635), + [anon_sym_const] = ACTIONS(6635), + [anon_sym_constexpr] = ACTIONS(6635), + [anon_sym_volatile] = ACTIONS(6635), + [anon_sym_restrict] = ACTIONS(6635), + [anon_sym___restrict__] = ACTIONS(6635), + [anon_sym__Atomic] = ACTIONS(6635), + [anon_sym__Noreturn] = ACTIONS(6635), + [anon_sym__Nonnull] = ACTIONS(6635), + [anon_sym_nullable] = ACTIONS(6635), + [anon_sym__Complex] = ACTIONS(6635), + [anon_sym__Nullable] = ACTIONS(6635), + [anon_sym__Nullable_result] = ACTIONS(6635), + [anon_sym__Null_unspecified] = ACTIONS(6635), + [anon_sym___autoreleasing] = ACTIONS(6635), + [anon_sym___block] = ACTIONS(6635), + [anon_sym___bridge] = ACTIONS(6635), + [anon_sym___bridge_retained] = ACTIONS(6635), + [anon_sym___bridge_transfer] = ACTIONS(6635), + [anon_sym___complex] = ACTIONS(6635), + [anon_sym___const] = ACTIONS(6635), + [anon_sym___imag] = ACTIONS(6635), + [anon_sym___kindof] = ACTIONS(6635), + [anon_sym___nonnull] = ACTIONS(6635), + [anon_sym___nullable] = ACTIONS(6635), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6635), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6635), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6635), + [anon_sym___real] = ACTIONS(6635), + [anon_sym___strong] = ACTIONS(6635), + [anon_sym___unsafe_unretained] = ACTIONS(6635), + [anon_sym___unused] = ACTIONS(6635), + [anon_sym___weak] = ACTIONS(6635), + [anon_sym_alignas] = ACTIONS(6635), + [anon_sym__Alignas] = ACTIONS(6635), + [sym_primitive_type] = ACTIONS(6635), + [anon_sym_enum] = ACTIONS(6635), + [anon_sym_struct] = ACTIONS(6635), + [anon_sym_union] = ACTIONS(6635), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6635), + [anon_sym___typeof] = ACTIONS(6635), + [anon_sym_typeof] = ACTIONS(6635), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6635), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6635), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6635), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6635), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6635), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6635), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6635), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6635), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6635), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6635), + [anon_sym_NS_AVAILABLE] = ACTIONS(6635), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6635), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6635), + [anon_sym_API_AVAILABLE] = ACTIONS(6635), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6635), + [anon_sym_API_DEPRECATED] = ACTIONS(6635), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6635), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6635), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6635), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6635), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6635), + [anon_sym___deprecated_msg] = ACTIONS(6635), + [anon_sym___deprecated_enum_msg] = ACTIONS(6635), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6635), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6635), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6635), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6635), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6635), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6635), + [anon_sym_BOOL] = ACTIONS(6635), + [anon_sym_IMP] = ACTIONS(6635), + [anon_sym_SEL] = ACTIONS(6635), + [anon_sym_Class] = ACTIONS(6635), + [anon_sym_id] = ACTIONS(6635), + [anon_sym_ATdefs] = ACTIONS(6637), + }, + [2617] = { + [sym_identifier] = ACTIONS(6655), + [aux_sym_preproc_def_token1] = ACTIONS(6655), + [aux_sym_preproc_if_token1] = ACTIONS(6655), + [aux_sym_preproc_if_token2] = ACTIONS(6655), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6655), + [aux_sym_preproc_else_token1] = ACTIONS(6655), + [aux_sym_preproc_elif_token1] = ACTIONS(6655), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6655), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6655), + [sym_preproc_directive] = ACTIONS(6655), + [anon_sym___extension__] = ACTIONS(6655), + [anon_sym_extern] = ACTIONS(6655), + [anon_sym___attribute__] = ACTIONS(6655), + [anon_sym___attribute] = ACTIONS(6655), + [anon_sym_noreturn] = ACTIONS(6655), + [anon_sym_LBRACK] = ACTIONS(6657), + [anon_sym___declspec] = ACTIONS(6655), + [anon_sym_signed] = ACTIONS(6655), + [anon_sym_unsigned] = ACTIONS(6655), + [anon_sym_long] = ACTIONS(6655), + [anon_sym_short] = ACTIONS(6655), + [anon_sym_static] = ACTIONS(6655), + [anon_sym_auto] = ACTIONS(6655), + [anon_sym_register] = ACTIONS(6655), + [anon_sym_inline] = ACTIONS(6655), + [anon_sym___inline] = ACTIONS(6655), + [anon_sym___inline__] = ACTIONS(6655), + [anon_sym___forceinline] = ACTIONS(6655), + [anon_sym_thread_local] = ACTIONS(6655), + [anon_sym___thread] = ACTIONS(6655), + [anon_sym_CG_EXTERN] = ACTIONS(6655), + [anon_sym_CG_INLINE] = ACTIONS(6655), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6655), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6655), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6655), + [anon_sym_IBOutlet] = ACTIONS(6655), + [anon_sym_IBInspectable] = ACTIONS(6655), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6655), + [anon_sym_NS_INLINE] = ACTIONS(6655), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6655), + [anon_sym_OBJC_EXPORT] = ACTIONS(6655), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6655), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6655), + [anon_sym_const] = ACTIONS(6655), + [anon_sym_constexpr] = ACTIONS(6655), + [anon_sym_volatile] = ACTIONS(6655), + [anon_sym_restrict] = ACTIONS(6655), + [anon_sym___restrict__] = ACTIONS(6655), + [anon_sym__Atomic] = ACTIONS(6655), + [anon_sym__Noreturn] = ACTIONS(6655), + [anon_sym__Nonnull] = ACTIONS(6655), + [anon_sym_nullable] = ACTIONS(6655), + [anon_sym__Complex] = ACTIONS(6655), + [anon_sym__Nullable] = ACTIONS(6655), + [anon_sym__Nullable_result] = ACTIONS(6655), + [anon_sym__Null_unspecified] = ACTIONS(6655), + [anon_sym___autoreleasing] = ACTIONS(6655), + [anon_sym___block] = ACTIONS(6655), + [anon_sym___bridge] = ACTIONS(6655), + [anon_sym___bridge_retained] = ACTIONS(6655), + [anon_sym___bridge_transfer] = ACTIONS(6655), + [anon_sym___complex] = ACTIONS(6655), + [anon_sym___const] = ACTIONS(6655), + [anon_sym___imag] = ACTIONS(6655), + [anon_sym___kindof] = ACTIONS(6655), + [anon_sym___nonnull] = ACTIONS(6655), + [anon_sym___nullable] = ACTIONS(6655), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6655), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6655), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6655), + [anon_sym___real] = ACTIONS(6655), + [anon_sym___strong] = ACTIONS(6655), + [anon_sym___unsafe_unretained] = ACTIONS(6655), + [anon_sym___unused] = ACTIONS(6655), + [anon_sym___weak] = ACTIONS(6655), + [anon_sym_alignas] = ACTIONS(6655), + [anon_sym__Alignas] = ACTIONS(6655), + [sym_primitive_type] = ACTIONS(6655), + [anon_sym_enum] = ACTIONS(6655), + [anon_sym_struct] = ACTIONS(6655), + [anon_sym_union] = ACTIONS(6655), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6655), + [anon_sym___typeof] = ACTIONS(6655), + [anon_sym_typeof] = ACTIONS(6655), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6655), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6655), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6655), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6655), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6655), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6655), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6655), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6655), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6655), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6655), + [anon_sym_NS_AVAILABLE] = ACTIONS(6655), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6655), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6655), + [anon_sym_API_AVAILABLE] = ACTIONS(6655), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6655), + [anon_sym_API_DEPRECATED] = ACTIONS(6655), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6655), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6655), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6655), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6655), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6655), + [anon_sym___deprecated_msg] = ACTIONS(6655), + [anon_sym___deprecated_enum_msg] = ACTIONS(6655), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6655), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6655), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6655), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6655), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6655), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6655), + [anon_sym_BOOL] = ACTIONS(6655), + [anon_sym_IMP] = ACTIONS(6655), + [anon_sym_SEL] = ACTIONS(6655), + [anon_sym_Class] = ACTIONS(6655), + [anon_sym_id] = ACTIONS(6655), + [anon_sym_ATdefs] = ACTIONS(6657), + }, + [2618] = { + [sym_identifier] = ACTIONS(6659), + [aux_sym_preproc_def_token1] = ACTIONS(6659), + [aux_sym_preproc_if_token1] = ACTIONS(6659), + [aux_sym_preproc_if_token2] = ACTIONS(6659), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6659), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6659), + [aux_sym_preproc_else_token1] = ACTIONS(6659), + [aux_sym_preproc_elif_token1] = ACTIONS(6659), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6659), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6659), + [sym_preproc_directive] = ACTIONS(6659), + [anon_sym___extension__] = ACTIONS(6659), + [anon_sym_extern] = ACTIONS(6659), + [anon_sym___attribute__] = ACTIONS(6659), + [anon_sym___attribute] = ACTIONS(6659), + [anon_sym_noreturn] = ACTIONS(6659), + [anon_sym_LBRACK] = ACTIONS(6661), + [anon_sym___declspec] = ACTIONS(6659), + [anon_sym_signed] = ACTIONS(6659), + [anon_sym_unsigned] = ACTIONS(6659), + [anon_sym_long] = ACTIONS(6659), + [anon_sym_short] = ACTIONS(6659), + [anon_sym_static] = ACTIONS(6659), + [anon_sym_auto] = ACTIONS(6659), + [anon_sym_register] = ACTIONS(6659), + [anon_sym_inline] = ACTIONS(6659), + [anon_sym___inline] = ACTIONS(6659), + [anon_sym___inline__] = ACTIONS(6659), + [anon_sym___forceinline] = ACTIONS(6659), + [anon_sym_thread_local] = ACTIONS(6659), + [anon_sym___thread] = ACTIONS(6659), + [anon_sym_CG_EXTERN] = ACTIONS(6659), + [anon_sym_CG_INLINE] = ACTIONS(6659), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6659), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6659), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6659), + [anon_sym_IBOutlet] = ACTIONS(6659), + [anon_sym_IBInspectable] = ACTIONS(6659), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6659), + [anon_sym_NS_INLINE] = ACTIONS(6659), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6659), + [anon_sym_OBJC_EXPORT] = ACTIONS(6659), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6659), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6659), + [anon_sym_const] = ACTIONS(6659), + [anon_sym_constexpr] = ACTIONS(6659), + [anon_sym_volatile] = ACTIONS(6659), + [anon_sym_restrict] = ACTIONS(6659), + [anon_sym___restrict__] = ACTIONS(6659), + [anon_sym__Atomic] = ACTIONS(6659), + [anon_sym__Noreturn] = ACTIONS(6659), + [anon_sym__Nonnull] = ACTIONS(6659), + [anon_sym_nullable] = ACTIONS(6659), + [anon_sym__Complex] = ACTIONS(6659), + [anon_sym__Nullable] = ACTIONS(6659), + [anon_sym__Nullable_result] = ACTIONS(6659), + [anon_sym__Null_unspecified] = ACTIONS(6659), + [anon_sym___autoreleasing] = ACTIONS(6659), + [anon_sym___block] = ACTIONS(6659), + [anon_sym___bridge] = ACTIONS(6659), + [anon_sym___bridge_retained] = ACTIONS(6659), + [anon_sym___bridge_transfer] = ACTIONS(6659), + [anon_sym___complex] = ACTIONS(6659), + [anon_sym___const] = ACTIONS(6659), + [anon_sym___imag] = ACTIONS(6659), + [anon_sym___kindof] = ACTIONS(6659), + [anon_sym___nonnull] = ACTIONS(6659), + [anon_sym___nullable] = ACTIONS(6659), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6659), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6659), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6659), + [anon_sym___real] = ACTIONS(6659), + [anon_sym___strong] = ACTIONS(6659), + [anon_sym___unsafe_unretained] = ACTIONS(6659), + [anon_sym___unused] = ACTIONS(6659), + [anon_sym___weak] = ACTIONS(6659), + [anon_sym_alignas] = ACTIONS(6659), + [anon_sym__Alignas] = ACTIONS(6659), + [sym_primitive_type] = ACTIONS(6659), + [anon_sym_enum] = ACTIONS(6659), + [anon_sym_struct] = ACTIONS(6659), + [anon_sym_union] = ACTIONS(6659), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6659), + [anon_sym___typeof] = ACTIONS(6659), + [anon_sym_typeof] = ACTIONS(6659), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6659), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6659), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6659), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6659), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6659), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6659), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6659), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6659), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6659), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6659), + [anon_sym_NS_AVAILABLE] = ACTIONS(6659), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6659), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6659), + [anon_sym_API_AVAILABLE] = ACTIONS(6659), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6659), + [anon_sym_API_DEPRECATED] = ACTIONS(6659), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6659), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6659), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6659), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6659), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6659), + [anon_sym___deprecated_msg] = ACTIONS(6659), + [anon_sym___deprecated_enum_msg] = ACTIONS(6659), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6659), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6659), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6659), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6659), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6659), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6659), + [anon_sym_BOOL] = ACTIONS(6659), + [anon_sym_IMP] = ACTIONS(6659), + [anon_sym_SEL] = ACTIONS(6659), + [anon_sym_Class] = ACTIONS(6659), + [anon_sym_id] = ACTIONS(6659), + [anon_sym_ATdefs] = ACTIONS(6661), + }, + [2619] = { + [sym_identifier] = ACTIONS(2852), + [aux_sym_preproc_def_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token2] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2852), + [aux_sym_preproc_else_token1] = ACTIONS(2852), + [aux_sym_preproc_elif_token1] = ACTIONS(2852), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2852), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2852), + [sym_preproc_directive] = ACTIONS(2852), + [anon_sym___extension__] = ACTIONS(2852), + [anon_sym_extern] = ACTIONS(2852), + [anon_sym___attribute__] = ACTIONS(2852), + [anon_sym___attribute] = ACTIONS(2852), + [anon_sym_noreturn] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2854), + [anon_sym___declspec] = ACTIONS(2852), + [anon_sym_signed] = ACTIONS(2852), + [anon_sym_unsigned] = ACTIONS(2852), + [anon_sym_long] = ACTIONS(2852), + [anon_sym_short] = ACTIONS(2852), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_auto] = ACTIONS(2852), + [anon_sym_register] = ACTIONS(2852), + [anon_sym_inline] = ACTIONS(2852), + [anon_sym___inline] = ACTIONS(2852), + [anon_sym___inline__] = ACTIONS(2852), + [anon_sym___forceinline] = ACTIONS(2852), + [anon_sym_thread_local] = ACTIONS(2852), + [anon_sym___thread] = ACTIONS(2852), + [anon_sym_CG_EXTERN] = ACTIONS(2852), + [anon_sym_CG_INLINE] = ACTIONS(2852), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2852), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2852), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2852), + [anon_sym_IBOutlet] = ACTIONS(2852), + [anon_sym_IBInspectable] = ACTIONS(2852), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2852), + [anon_sym_NS_INLINE] = ACTIONS(2852), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2852), + [anon_sym_OBJC_EXPORT] = ACTIONS(2852), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2852), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2852), + [anon_sym_const] = ACTIONS(2852), + [anon_sym_constexpr] = ACTIONS(2852), + [anon_sym_volatile] = ACTIONS(2852), + [anon_sym_restrict] = ACTIONS(2852), + [anon_sym___restrict__] = ACTIONS(2852), + [anon_sym__Atomic] = ACTIONS(2852), + [anon_sym__Noreturn] = ACTIONS(2852), + [anon_sym__Nonnull] = ACTIONS(2852), + [anon_sym_nullable] = ACTIONS(2852), + [anon_sym__Complex] = ACTIONS(2852), + [anon_sym__Nullable] = ACTIONS(2852), + [anon_sym__Nullable_result] = ACTIONS(2852), + [anon_sym__Null_unspecified] = ACTIONS(2852), + [anon_sym___autoreleasing] = ACTIONS(2852), + [anon_sym___block] = ACTIONS(2852), + [anon_sym___bridge] = ACTIONS(2852), + [anon_sym___bridge_retained] = ACTIONS(2852), + [anon_sym___bridge_transfer] = ACTIONS(2852), + [anon_sym___complex] = ACTIONS(2852), + [anon_sym___const] = ACTIONS(2852), + [anon_sym___imag] = ACTIONS(2852), + [anon_sym___kindof] = ACTIONS(2852), + [anon_sym___nonnull] = ACTIONS(2852), + [anon_sym___nullable] = ACTIONS(2852), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2852), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2852), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2852), + [anon_sym___real] = ACTIONS(2852), + [anon_sym___strong] = ACTIONS(2852), + [anon_sym___unsafe_unretained] = ACTIONS(2852), + [anon_sym___unused] = ACTIONS(2852), + [anon_sym___weak] = ACTIONS(2852), + [anon_sym_alignas] = ACTIONS(2852), + [anon_sym__Alignas] = ACTIONS(2852), + [sym_primitive_type] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2852), + [anon_sym_union] = ACTIONS(2852), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2852), + [anon_sym___typeof] = ACTIONS(2852), + [anon_sym_typeof] = ACTIONS(2852), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2852), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2852), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2852), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2852), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2852), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2852), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2852), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2852), + [anon_sym_NS_AVAILABLE] = ACTIONS(2852), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2852), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_API_AVAILABLE] = ACTIONS(2852), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_API_DEPRECATED] = ACTIONS(2852), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2852), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2852), + [anon_sym___deprecated_msg] = ACTIONS(2852), + [anon_sym___deprecated_enum_msg] = ACTIONS(2852), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2852), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2852), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2852), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2852), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2852), + [anon_sym_BOOL] = ACTIONS(2852), + [anon_sym_IMP] = ACTIONS(2852), + [anon_sym_SEL] = ACTIONS(2852), + [anon_sym_Class] = ACTIONS(2852), + [anon_sym_id] = ACTIONS(2852), + [anon_sym_ATdefs] = ACTIONS(2854), + }, + [2620] = { + [sym_identifier] = ACTIONS(2856), + [aux_sym_preproc_def_token1] = ACTIONS(2856), + [aux_sym_preproc_if_token1] = ACTIONS(2856), + [aux_sym_preproc_if_token2] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2856), + [aux_sym_preproc_else_token1] = ACTIONS(2856), + [aux_sym_preproc_elif_token1] = ACTIONS(2856), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2856), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2856), + [sym_preproc_directive] = ACTIONS(2856), + [anon_sym___extension__] = ACTIONS(2856), + [anon_sym_extern] = ACTIONS(2856), + [anon_sym___attribute__] = ACTIONS(2856), + [anon_sym___attribute] = ACTIONS(2856), + [anon_sym_noreturn] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2858), + [anon_sym___declspec] = ACTIONS(2856), + [anon_sym_signed] = ACTIONS(2856), + [anon_sym_unsigned] = ACTIONS(2856), + [anon_sym_long] = ACTIONS(2856), + [anon_sym_short] = ACTIONS(2856), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_auto] = ACTIONS(2856), + [anon_sym_register] = ACTIONS(2856), + [anon_sym_inline] = ACTIONS(2856), + [anon_sym___inline] = ACTIONS(2856), + [anon_sym___inline__] = ACTIONS(2856), + [anon_sym___forceinline] = ACTIONS(2856), + [anon_sym_thread_local] = ACTIONS(2856), + [anon_sym___thread] = ACTIONS(2856), + [anon_sym_CG_EXTERN] = ACTIONS(2856), + [anon_sym_CG_INLINE] = ACTIONS(2856), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2856), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2856), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2856), + [anon_sym_IBOutlet] = ACTIONS(2856), + [anon_sym_IBInspectable] = ACTIONS(2856), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2856), + [anon_sym_NS_INLINE] = ACTIONS(2856), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2856), + [anon_sym_OBJC_EXPORT] = ACTIONS(2856), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2856), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2856), + [anon_sym_constexpr] = ACTIONS(2856), + [anon_sym_volatile] = ACTIONS(2856), + [anon_sym_restrict] = ACTIONS(2856), + [anon_sym___restrict__] = ACTIONS(2856), + [anon_sym__Atomic] = ACTIONS(2856), + [anon_sym__Noreturn] = ACTIONS(2856), + [anon_sym__Nonnull] = ACTIONS(2856), + [anon_sym_nullable] = ACTIONS(2856), + [anon_sym__Complex] = ACTIONS(2856), + [anon_sym__Nullable] = ACTIONS(2856), + [anon_sym__Nullable_result] = ACTIONS(2856), + [anon_sym__Null_unspecified] = ACTIONS(2856), + [anon_sym___autoreleasing] = ACTIONS(2856), + [anon_sym___block] = ACTIONS(2856), + [anon_sym___bridge] = ACTIONS(2856), + [anon_sym___bridge_retained] = ACTIONS(2856), + [anon_sym___bridge_transfer] = ACTIONS(2856), + [anon_sym___complex] = ACTIONS(2856), + [anon_sym___const] = ACTIONS(2856), + [anon_sym___imag] = ACTIONS(2856), + [anon_sym___kindof] = ACTIONS(2856), + [anon_sym___nonnull] = ACTIONS(2856), + [anon_sym___nullable] = ACTIONS(2856), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2856), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2856), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2856), + [anon_sym___real] = ACTIONS(2856), + [anon_sym___strong] = ACTIONS(2856), + [anon_sym___unsafe_unretained] = ACTIONS(2856), + [anon_sym___unused] = ACTIONS(2856), + [anon_sym___weak] = ACTIONS(2856), + [anon_sym_alignas] = ACTIONS(2856), + [anon_sym__Alignas] = ACTIONS(2856), + [sym_primitive_type] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2856), + [anon_sym_union] = ACTIONS(2856), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2856), + [anon_sym___typeof] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2856), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2856), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2856), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2856), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2856), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2856), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2856), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2856), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2856), + [anon_sym_NS_AVAILABLE] = ACTIONS(2856), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2856), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_API_AVAILABLE] = ACTIONS(2856), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_API_DEPRECATED] = ACTIONS(2856), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2856), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2856), + [anon_sym___deprecated_msg] = ACTIONS(2856), + [anon_sym___deprecated_enum_msg] = ACTIONS(2856), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2856), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2856), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2856), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2856), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2856), + [anon_sym_BOOL] = ACTIONS(2856), + [anon_sym_IMP] = ACTIONS(2856), + [anon_sym_SEL] = ACTIONS(2856), + [anon_sym_Class] = ACTIONS(2856), + [anon_sym_id] = ACTIONS(2856), + [anon_sym_ATdefs] = ACTIONS(2858), + }, + [2621] = { + [sym_identifier] = ACTIONS(2864), + [aux_sym_preproc_def_token1] = ACTIONS(2864), + [aux_sym_preproc_if_token1] = ACTIONS(2864), + [aux_sym_preproc_if_token2] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2864), + [aux_sym_preproc_else_token1] = ACTIONS(2864), + [aux_sym_preproc_elif_token1] = ACTIONS(2864), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2864), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2864), + [sym_preproc_directive] = ACTIONS(2864), + [anon_sym___extension__] = ACTIONS(2864), + [anon_sym_extern] = ACTIONS(2864), + [anon_sym___attribute__] = ACTIONS(2864), + [anon_sym___attribute] = ACTIONS(2864), + [anon_sym_noreturn] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2866), + [anon_sym___declspec] = ACTIONS(2864), + [anon_sym_signed] = ACTIONS(2864), + [anon_sym_unsigned] = ACTIONS(2864), + [anon_sym_long] = ACTIONS(2864), + [anon_sym_short] = ACTIONS(2864), + [anon_sym_static] = ACTIONS(2864), + [anon_sym_auto] = ACTIONS(2864), + [anon_sym_register] = ACTIONS(2864), + [anon_sym_inline] = ACTIONS(2864), + [anon_sym___inline] = ACTIONS(2864), + [anon_sym___inline__] = ACTIONS(2864), + [anon_sym___forceinline] = ACTIONS(2864), + [anon_sym_thread_local] = ACTIONS(2864), + [anon_sym___thread] = ACTIONS(2864), + [anon_sym_CG_EXTERN] = ACTIONS(2864), + [anon_sym_CG_INLINE] = ACTIONS(2864), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2864), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2864), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2864), + [anon_sym_IBOutlet] = ACTIONS(2864), + [anon_sym_IBInspectable] = ACTIONS(2864), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2864), + [anon_sym_NS_INLINE] = ACTIONS(2864), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2864), + [anon_sym_OBJC_EXPORT] = ACTIONS(2864), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2864), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2864), + [anon_sym_const] = ACTIONS(2864), + [anon_sym_constexpr] = ACTIONS(2864), + [anon_sym_volatile] = ACTIONS(2864), + [anon_sym_restrict] = ACTIONS(2864), + [anon_sym___restrict__] = ACTIONS(2864), + [anon_sym__Atomic] = ACTIONS(2864), + [anon_sym__Noreturn] = ACTIONS(2864), + [anon_sym__Nonnull] = ACTIONS(2864), + [anon_sym_nullable] = ACTIONS(2864), + [anon_sym__Complex] = ACTIONS(2864), + [anon_sym__Nullable] = ACTIONS(2864), + [anon_sym__Nullable_result] = ACTIONS(2864), + [anon_sym__Null_unspecified] = ACTIONS(2864), + [anon_sym___autoreleasing] = ACTIONS(2864), + [anon_sym___block] = ACTIONS(2864), + [anon_sym___bridge] = ACTIONS(2864), + [anon_sym___bridge_retained] = ACTIONS(2864), + [anon_sym___bridge_transfer] = ACTIONS(2864), + [anon_sym___complex] = ACTIONS(2864), + [anon_sym___const] = ACTIONS(2864), + [anon_sym___imag] = ACTIONS(2864), + [anon_sym___kindof] = ACTIONS(2864), + [anon_sym___nonnull] = ACTIONS(2864), + [anon_sym___nullable] = ACTIONS(2864), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2864), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2864), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2864), + [anon_sym___real] = ACTIONS(2864), + [anon_sym___strong] = ACTIONS(2864), + [anon_sym___unsafe_unretained] = ACTIONS(2864), + [anon_sym___unused] = ACTIONS(2864), + [anon_sym___weak] = ACTIONS(2864), + [anon_sym_alignas] = ACTIONS(2864), + [anon_sym__Alignas] = ACTIONS(2864), + [sym_primitive_type] = ACTIONS(2864), + [anon_sym_enum] = ACTIONS(2864), + [anon_sym_struct] = ACTIONS(2864), + [anon_sym_union] = ACTIONS(2864), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2864), + [anon_sym___typeof] = ACTIONS(2864), + [anon_sym_typeof] = ACTIONS(2864), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2864), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2864), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2864), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2864), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2864), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2864), + [anon_sym_NS_AVAILABLE] = ACTIONS(2864), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2864), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_API_AVAILABLE] = ACTIONS(2864), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_API_DEPRECATED] = ACTIONS(2864), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2864), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2864), + [anon_sym___deprecated_msg] = ACTIONS(2864), + [anon_sym___deprecated_enum_msg] = ACTIONS(2864), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2864), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2864), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2864), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2864), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2864), + [anon_sym_BOOL] = ACTIONS(2864), + [anon_sym_IMP] = ACTIONS(2864), + [anon_sym_SEL] = ACTIONS(2864), + [anon_sym_Class] = ACTIONS(2864), + [anon_sym_id] = ACTIONS(2864), + [anon_sym_ATdefs] = ACTIONS(2866), + }, + [2622] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6639), + [anon_sym_COMMA] = ACTIONS(4838), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6595), + [anon_sym_PLUS] = ACTIONS(6595), + [anon_sym_STAR] = ACTIONS(6597), + [anon_sym_SLASH] = ACTIONS(6599), + [anon_sym_PERCENT] = ACTIONS(6597), + [anon_sym_PIPE_PIPE] = ACTIONS(6643), + [anon_sym_AMP_AMP] = ACTIONS(6645), + [anon_sym_PIPE] = ACTIONS(6647), + [anon_sym_CARET] = ACTIONS(6649), + [anon_sym_AMP] = ACTIONS(6601), + [anon_sym_EQ_EQ] = ACTIONS(6603), + [anon_sym_BANG_EQ] = ACTIONS(6603), + [anon_sym_GT] = ACTIONS(6605), + [anon_sym_GT_EQ] = ACTIONS(6607), + [anon_sym_LT_EQ] = ACTIONS(6607), + [anon_sym_LT] = ACTIONS(6605), + [anon_sym_LT_LT] = ACTIONS(6609), + [anon_sym_GT_GT] = ACTIONS(6609), + [anon_sym_SEMI] = ACTIONS(4838), + [anon_sym___extension__] = ACTIONS(4838), + [anon_sym_extern] = ACTIONS(4838), + [anon_sym___attribute__] = ACTIONS(4838), + [anon_sym___attribute] = ACTIONS(4836), + [anon_sym_noreturn] = ACTIONS(4838), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4838), + [anon_sym_static] = ACTIONS(4838), + [anon_sym_auto] = ACTIONS(4838), + [anon_sym_register] = ACTIONS(4838), + [anon_sym_inline] = ACTIONS(4838), + [anon_sym___inline] = ACTIONS(4836), + [anon_sym___inline__] = ACTIONS(4838), + [anon_sym___forceinline] = ACTIONS(4838), + [anon_sym_thread_local] = ACTIONS(4838), + [anon_sym___thread] = ACTIONS(4838), + [anon_sym_CG_EXTERN] = ACTIONS(4838), + [anon_sym_CG_INLINE] = ACTIONS(4838), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4838), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4838), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4838), + [anon_sym_IBOutlet] = ACTIONS(4838), + [anon_sym_IBInspectable] = ACTIONS(4838), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4838), + [anon_sym_NS_INLINE] = ACTIONS(4838), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4838), + [anon_sym_OBJC_EXPORT] = ACTIONS(4838), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4838), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4838), + [anon_sym_const] = ACTIONS(4836), + [anon_sym_constexpr] = ACTIONS(4838), + [anon_sym_volatile] = ACTIONS(4838), + [anon_sym_restrict] = ACTIONS(4838), + [anon_sym___restrict__] = ACTIONS(4838), + [anon_sym__Atomic] = ACTIONS(4838), + [anon_sym__Noreturn] = ACTIONS(4838), + [anon_sym__Nonnull] = ACTIONS(4838), + [anon_sym_nullable] = ACTIONS(4838), + [anon_sym__Complex] = ACTIONS(4838), + [anon_sym__Nullable] = ACTIONS(4836), + [anon_sym__Nullable_result] = ACTIONS(4838), + [anon_sym__Null_unspecified] = ACTIONS(4838), + [anon_sym___autoreleasing] = ACTIONS(4838), + [anon_sym___block] = ACTIONS(4838), + [anon_sym___bridge] = ACTIONS(4836), + [anon_sym___bridge_retained] = ACTIONS(4838), + [anon_sym___bridge_transfer] = ACTIONS(4838), + [anon_sym___complex] = ACTIONS(4838), + [anon_sym___const] = ACTIONS(4838), + [anon_sym___imag] = ACTIONS(4838), + [anon_sym___kindof] = ACTIONS(4838), + [anon_sym___nonnull] = ACTIONS(4838), + [anon_sym___nullable] = ACTIONS(4838), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4838), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4838), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4838), + [anon_sym___real] = ACTIONS(4838), + [anon_sym___strong] = ACTIONS(4838), + [anon_sym___unsafe_unretained] = ACTIONS(4838), + [anon_sym___unused] = ACTIONS(4838), + [anon_sym___weak] = ACTIONS(4838), + [anon_sym_alignas] = ACTIONS(4838), + [anon_sym__Alignas] = ACTIONS(4838), + [anon_sym_QMARK] = ACTIONS(6653), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4838), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4838), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4838), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4838), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4838), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4838), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4838), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4838), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4838), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4838), + [anon_sym_NS_AVAILABLE] = ACTIONS(4836), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4838), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4838), + [anon_sym_API_AVAILABLE] = ACTIONS(4838), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4838), + [anon_sym_API_DEPRECATED] = ACTIONS(4838), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4838), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4838), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4838), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4838), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4838), + [anon_sym___deprecated_msg] = ACTIONS(4838), + [anon_sym___deprecated_enum_msg] = ACTIONS(4838), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4838), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4838), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4838), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4838), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4838), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4838), + }, + [2623] = { + [sym_identifier] = ACTIONS(6663), + [aux_sym_preproc_def_token1] = ACTIONS(6663), + [aux_sym_preproc_if_token1] = ACTIONS(6663), + [aux_sym_preproc_if_token2] = ACTIONS(6663), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6663), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6663), + [aux_sym_preproc_else_token1] = ACTIONS(6663), + [aux_sym_preproc_elif_token1] = ACTIONS(6663), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6663), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6663), + [sym_preproc_directive] = ACTIONS(6663), + [anon_sym___extension__] = ACTIONS(6663), + [anon_sym_extern] = ACTIONS(6663), + [anon_sym___attribute__] = ACTIONS(6663), + [anon_sym___attribute] = ACTIONS(6663), + [anon_sym_noreturn] = ACTIONS(6663), + [anon_sym_LBRACK] = ACTIONS(6665), + [anon_sym___declspec] = ACTIONS(6663), + [anon_sym_signed] = ACTIONS(6663), + [anon_sym_unsigned] = ACTIONS(6663), + [anon_sym_long] = ACTIONS(6663), + [anon_sym_short] = ACTIONS(6663), + [anon_sym_static] = ACTIONS(6663), + [anon_sym_auto] = ACTIONS(6663), + [anon_sym_register] = ACTIONS(6663), + [anon_sym_inline] = ACTIONS(6663), + [anon_sym___inline] = ACTIONS(6663), + [anon_sym___inline__] = ACTIONS(6663), + [anon_sym___forceinline] = ACTIONS(6663), + [anon_sym_thread_local] = ACTIONS(6663), + [anon_sym___thread] = ACTIONS(6663), + [anon_sym_CG_EXTERN] = ACTIONS(6663), + [anon_sym_CG_INLINE] = ACTIONS(6663), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6663), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6663), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6663), + [anon_sym_IBOutlet] = ACTIONS(6663), + [anon_sym_IBInspectable] = ACTIONS(6663), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6663), + [anon_sym_NS_INLINE] = ACTIONS(6663), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6663), + [anon_sym_OBJC_EXPORT] = ACTIONS(6663), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6663), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6663), + [anon_sym_const] = ACTIONS(6663), + [anon_sym_constexpr] = ACTIONS(6663), + [anon_sym_volatile] = ACTIONS(6663), + [anon_sym_restrict] = ACTIONS(6663), + [anon_sym___restrict__] = ACTIONS(6663), + [anon_sym__Atomic] = ACTIONS(6663), + [anon_sym__Noreturn] = ACTIONS(6663), + [anon_sym__Nonnull] = ACTIONS(6663), + [anon_sym_nullable] = ACTIONS(6663), + [anon_sym__Complex] = ACTIONS(6663), + [anon_sym__Nullable] = ACTIONS(6663), + [anon_sym__Nullable_result] = ACTIONS(6663), + [anon_sym__Null_unspecified] = ACTIONS(6663), + [anon_sym___autoreleasing] = ACTIONS(6663), + [anon_sym___block] = ACTIONS(6663), + [anon_sym___bridge] = ACTIONS(6663), + [anon_sym___bridge_retained] = ACTIONS(6663), + [anon_sym___bridge_transfer] = ACTIONS(6663), + [anon_sym___complex] = ACTIONS(6663), + [anon_sym___const] = ACTIONS(6663), + [anon_sym___imag] = ACTIONS(6663), + [anon_sym___kindof] = ACTIONS(6663), + [anon_sym___nonnull] = ACTIONS(6663), + [anon_sym___nullable] = ACTIONS(6663), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6663), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6663), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6663), + [anon_sym___real] = ACTIONS(6663), + [anon_sym___strong] = ACTIONS(6663), + [anon_sym___unsafe_unretained] = ACTIONS(6663), + [anon_sym___unused] = ACTIONS(6663), + [anon_sym___weak] = ACTIONS(6663), + [anon_sym_alignas] = ACTIONS(6663), + [anon_sym__Alignas] = ACTIONS(6663), + [sym_primitive_type] = ACTIONS(6663), + [anon_sym_enum] = ACTIONS(6663), + [anon_sym_struct] = ACTIONS(6663), + [anon_sym_union] = ACTIONS(6663), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6663), + [anon_sym___typeof] = ACTIONS(6663), + [anon_sym_typeof] = ACTIONS(6663), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6663), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6663), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6663), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6663), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6663), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6663), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6663), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6663), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6663), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6663), + [anon_sym_NS_AVAILABLE] = ACTIONS(6663), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6663), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6663), + [anon_sym_API_AVAILABLE] = ACTIONS(6663), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6663), + [anon_sym_API_DEPRECATED] = ACTIONS(6663), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6663), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6663), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6663), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6663), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6663), + [anon_sym___deprecated_msg] = ACTIONS(6663), + [anon_sym___deprecated_enum_msg] = ACTIONS(6663), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6663), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6663), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6663), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6663), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6663), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6663), + [anon_sym_BOOL] = ACTIONS(6663), + [anon_sym_IMP] = ACTIONS(6663), + [anon_sym_SEL] = ACTIONS(6663), + [anon_sym_Class] = ACTIONS(6663), + [anon_sym_id] = ACTIONS(6663), + [anon_sym_ATdefs] = ACTIONS(6665), + }, + [2624] = { + [sym_identifier] = ACTIONS(2828), + [aux_sym_preproc_def_token1] = ACTIONS(2828), + [aux_sym_preproc_if_token1] = ACTIONS(2828), + [aux_sym_preproc_if_token2] = ACTIONS(2828), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2828), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2828), + [aux_sym_preproc_else_token1] = ACTIONS(2828), + [aux_sym_preproc_elif_token1] = ACTIONS(2828), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2828), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2828), + [sym_preproc_directive] = ACTIONS(2828), + [anon_sym___extension__] = ACTIONS(2828), + [anon_sym_extern] = ACTIONS(2828), + [anon_sym___attribute__] = ACTIONS(2828), + [anon_sym___attribute] = ACTIONS(2828), + [anon_sym_noreturn] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym___declspec] = ACTIONS(2828), + [anon_sym_signed] = ACTIONS(2828), + [anon_sym_unsigned] = ACTIONS(2828), + [anon_sym_long] = ACTIONS(2828), + [anon_sym_short] = ACTIONS(2828), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_auto] = ACTIONS(2828), + [anon_sym_register] = ACTIONS(2828), + [anon_sym_inline] = ACTIONS(2828), + [anon_sym___inline] = ACTIONS(2828), + [anon_sym___inline__] = ACTIONS(2828), + [anon_sym___forceinline] = ACTIONS(2828), + [anon_sym_thread_local] = ACTIONS(2828), + [anon_sym___thread] = ACTIONS(2828), + [anon_sym_CG_EXTERN] = ACTIONS(2828), + [anon_sym_CG_INLINE] = ACTIONS(2828), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2828), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2828), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2828), + [anon_sym_IBOutlet] = ACTIONS(2828), + [anon_sym_IBInspectable] = ACTIONS(2828), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2828), + [anon_sym_NS_INLINE] = ACTIONS(2828), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2828), + [anon_sym_OBJC_EXPORT] = ACTIONS(2828), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2828), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2828), + [anon_sym_const] = ACTIONS(2828), + [anon_sym_constexpr] = ACTIONS(2828), + [anon_sym_volatile] = ACTIONS(2828), + [anon_sym_restrict] = ACTIONS(2828), + [anon_sym___restrict__] = ACTIONS(2828), + [anon_sym__Atomic] = ACTIONS(2828), + [anon_sym__Noreturn] = ACTIONS(2828), + [anon_sym__Nonnull] = ACTIONS(2828), + [anon_sym_nullable] = ACTIONS(2828), + [anon_sym__Complex] = ACTIONS(2828), + [anon_sym__Nullable] = ACTIONS(2828), + [anon_sym__Nullable_result] = ACTIONS(2828), + [anon_sym__Null_unspecified] = ACTIONS(2828), + [anon_sym___autoreleasing] = ACTIONS(2828), + [anon_sym___block] = ACTIONS(2828), + [anon_sym___bridge] = ACTIONS(2828), + [anon_sym___bridge_retained] = ACTIONS(2828), + [anon_sym___bridge_transfer] = ACTIONS(2828), + [anon_sym___complex] = ACTIONS(2828), + [anon_sym___const] = ACTIONS(2828), + [anon_sym___imag] = ACTIONS(2828), + [anon_sym___kindof] = ACTIONS(2828), + [anon_sym___nonnull] = ACTIONS(2828), + [anon_sym___nullable] = ACTIONS(2828), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2828), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2828), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2828), + [anon_sym___real] = ACTIONS(2828), + [anon_sym___strong] = ACTIONS(2828), + [anon_sym___unsafe_unretained] = ACTIONS(2828), + [anon_sym___unused] = ACTIONS(2828), + [anon_sym___weak] = ACTIONS(2828), + [anon_sym_alignas] = ACTIONS(2828), + [anon_sym__Alignas] = ACTIONS(2828), + [sym_primitive_type] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [anon_sym_struct] = ACTIONS(2828), + [anon_sym_union] = ACTIONS(2828), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2828), + [anon_sym___typeof] = ACTIONS(2828), + [anon_sym_typeof] = ACTIONS(2828), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2828), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2828), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2828), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2828), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2828), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2828), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2828), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2828), + [anon_sym_NS_AVAILABLE] = ACTIONS(2828), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2828), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_API_AVAILABLE] = ACTIONS(2828), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_API_DEPRECATED] = ACTIONS(2828), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2828), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2828), + [anon_sym___deprecated_msg] = ACTIONS(2828), + [anon_sym___deprecated_enum_msg] = ACTIONS(2828), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2828), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2828), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2828), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2828), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2828), + [anon_sym_BOOL] = ACTIONS(2828), + [anon_sym_IMP] = ACTIONS(2828), + [anon_sym_SEL] = ACTIONS(2828), + [anon_sym_Class] = ACTIONS(2828), + [anon_sym_id] = ACTIONS(2828), + [anon_sym_ATdefs] = ACTIONS(2830), + }, + [2625] = { + [sym_identifier] = ACTIONS(2872), + [aux_sym_preproc_def_token1] = ACTIONS(2872), + [aux_sym_preproc_if_token1] = ACTIONS(2872), + [aux_sym_preproc_if_token2] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2872), + [aux_sym_preproc_else_token1] = ACTIONS(2872), + [aux_sym_preproc_elif_token1] = ACTIONS(2872), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2872), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2872), + [sym_preproc_directive] = ACTIONS(2872), + [anon_sym___extension__] = ACTIONS(2872), + [anon_sym_extern] = ACTIONS(2872), + [anon_sym___attribute__] = ACTIONS(2872), + [anon_sym___attribute] = ACTIONS(2872), + [anon_sym_noreturn] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2874), + [anon_sym___declspec] = ACTIONS(2872), + [anon_sym_signed] = ACTIONS(2872), + [anon_sym_unsigned] = ACTIONS(2872), + [anon_sym_long] = ACTIONS(2872), + [anon_sym_short] = ACTIONS(2872), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_auto] = ACTIONS(2872), + [anon_sym_register] = ACTIONS(2872), + [anon_sym_inline] = ACTIONS(2872), + [anon_sym___inline] = ACTIONS(2872), + [anon_sym___inline__] = ACTIONS(2872), + [anon_sym___forceinline] = ACTIONS(2872), + [anon_sym_thread_local] = ACTIONS(2872), + [anon_sym___thread] = ACTIONS(2872), + [anon_sym_CG_EXTERN] = ACTIONS(2872), + [anon_sym_CG_INLINE] = ACTIONS(2872), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2872), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2872), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2872), + [anon_sym_IBOutlet] = ACTIONS(2872), + [anon_sym_IBInspectable] = ACTIONS(2872), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2872), + [anon_sym_NS_INLINE] = ACTIONS(2872), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2872), + [anon_sym_OBJC_EXPORT] = ACTIONS(2872), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2872), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2872), + [anon_sym_const] = ACTIONS(2872), + [anon_sym_constexpr] = ACTIONS(2872), + [anon_sym_volatile] = ACTIONS(2872), + [anon_sym_restrict] = ACTIONS(2872), + [anon_sym___restrict__] = ACTIONS(2872), + [anon_sym__Atomic] = ACTIONS(2872), + [anon_sym__Noreturn] = ACTIONS(2872), + [anon_sym__Nonnull] = ACTIONS(2872), + [anon_sym_nullable] = ACTIONS(2872), + [anon_sym__Complex] = ACTIONS(2872), + [anon_sym__Nullable] = ACTIONS(2872), + [anon_sym__Nullable_result] = ACTIONS(2872), + [anon_sym__Null_unspecified] = ACTIONS(2872), + [anon_sym___autoreleasing] = ACTIONS(2872), + [anon_sym___block] = ACTIONS(2872), + [anon_sym___bridge] = ACTIONS(2872), + [anon_sym___bridge_retained] = ACTIONS(2872), + [anon_sym___bridge_transfer] = ACTIONS(2872), + [anon_sym___complex] = ACTIONS(2872), + [anon_sym___const] = ACTIONS(2872), + [anon_sym___imag] = ACTIONS(2872), + [anon_sym___kindof] = ACTIONS(2872), + [anon_sym___nonnull] = ACTIONS(2872), + [anon_sym___nullable] = ACTIONS(2872), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2872), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2872), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2872), + [anon_sym___real] = ACTIONS(2872), + [anon_sym___strong] = ACTIONS(2872), + [anon_sym___unsafe_unretained] = ACTIONS(2872), + [anon_sym___unused] = ACTIONS(2872), + [anon_sym___weak] = ACTIONS(2872), + [anon_sym_alignas] = ACTIONS(2872), + [anon_sym__Alignas] = ACTIONS(2872), + [sym_primitive_type] = ACTIONS(2872), + [anon_sym_enum] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2872), + [anon_sym_union] = ACTIONS(2872), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2872), + [anon_sym___typeof] = ACTIONS(2872), + [anon_sym_typeof] = ACTIONS(2872), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2872), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2872), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2872), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2872), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2872), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2872), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2872), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2872), + [anon_sym_NS_AVAILABLE] = ACTIONS(2872), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2872), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_API_AVAILABLE] = ACTIONS(2872), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_API_DEPRECATED] = ACTIONS(2872), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2872), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2872), + [anon_sym___deprecated_msg] = ACTIONS(2872), + [anon_sym___deprecated_enum_msg] = ACTIONS(2872), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2872), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2872), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2872), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2872), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2872), + [anon_sym_BOOL] = ACTIONS(2872), + [anon_sym_IMP] = ACTIONS(2872), + [anon_sym_SEL] = ACTIONS(2872), + [anon_sym_Class] = ACTIONS(2872), + [anon_sym_id] = ACTIONS(2872), + [anon_sym_ATdefs] = ACTIONS(2874), + }, + [2626] = { + [sym_identifier] = ACTIONS(6667), + [aux_sym_preproc_def_token1] = ACTIONS(6667), + [aux_sym_preproc_if_token1] = ACTIONS(6667), + [aux_sym_preproc_if_token2] = ACTIONS(6667), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6667), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6667), + [aux_sym_preproc_else_token1] = ACTIONS(6667), + [aux_sym_preproc_elif_token1] = ACTIONS(6667), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6667), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6667), + [sym_preproc_directive] = ACTIONS(6667), + [anon_sym___extension__] = ACTIONS(6667), + [anon_sym_extern] = ACTIONS(6667), + [anon_sym___attribute__] = ACTIONS(6667), + [anon_sym___attribute] = ACTIONS(6667), + [anon_sym_noreturn] = ACTIONS(6667), + [anon_sym_LBRACK] = ACTIONS(6669), + [anon_sym___declspec] = ACTIONS(6667), + [anon_sym_signed] = ACTIONS(6667), + [anon_sym_unsigned] = ACTIONS(6667), + [anon_sym_long] = ACTIONS(6667), + [anon_sym_short] = ACTIONS(6667), + [anon_sym_static] = ACTIONS(6667), + [anon_sym_auto] = ACTIONS(6667), + [anon_sym_register] = ACTIONS(6667), + [anon_sym_inline] = ACTIONS(6667), + [anon_sym___inline] = ACTIONS(6667), + [anon_sym___inline__] = ACTIONS(6667), + [anon_sym___forceinline] = ACTIONS(6667), + [anon_sym_thread_local] = ACTIONS(6667), + [anon_sym___thread] = ACTIONS(6667), + [anon_sym_CG_EXTERN] = ACTIONS(6667), + [anon_sym_CG_INLINE] = ACTIONS(6667), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6667), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6667), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6667), + [anon_sym_IBOutlet] = ACTIONS(6667), + [anon_sym_IBInspectable] = ACTIONS(6667), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6667), + [anon_sym_NS_INLINE] = ACTIONS(6667), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6667), + [anon_sym_OBJC_EXPORT] = ACTIONS(6667), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6667), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6667), + [anon_sym_const] = ACTIONS(6667), + [anon_sym_constexpr] = ACTIONS(6667), + [anon_sym_volatile] = ACTIONS(6667), + [anon_sym_restrict] = ACTIONS(6667), + [anon_sym___restrict__] = ACTIONS(6667), + [anon_sym__Atomic] = ACTIONS(6667), + [anon_sym__Noreturn] = ACTIONS(6667), + [anon_sym__Nonnull] = ACTIONS(6667), + [anon_sym_nullable] = ACTIONS(6667), + [anon_sym__Complex] = ACTIONS(6667), + [anon_sym__Nullable] = ACTIONS(6667), + [anon_sym__Nullable_result] = ACTIONS(6667), + [anon_sym__Null_unspecified] = ACTIONS(6667), + [anon_sym___autoreleasing] = ACTIONS(6667), + [anon_sym___block] = ACTIONS(6667), + [anon_sym___bridge] = ACTIONS(6667), + [anon_sym___bridge_retained] = ACTIONS(6667), + [anon_sym___bridge_transfer] = ACTIONS(6667), + [anon_sym___complex] = ACTIONS(6667), + [anon_sym___const] = ACTIONS(6667), + [anon_sym___imag] = ACTIONS(6667), + [anon_sym___kindof] = ACTIONS(6667), + [anon_sym___nonnull] = ACTIONS(6667), + [anon_sym___nullable] = ACTIONS(6667), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6667), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6667), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6667), + [anon_sym___real] = ACTIONS(6667), + [anon_sym___strong] = ACTIONS(6667), + [anon_sym___unsafe_unretained] = ACTIONS(6667), + [anon_sym___unused] = ACTIONS(6667), + [anon_sym___weak] = ACTIONS(6667), + [anon_sym_alignas] = ACTIONS(6667), + [anon_sym__Alignas] = ACTIONS(6667), + [sym_primitive_type] = ACTIONS(6667), + [anon_sym_enum] = ACTIONS(6667), + [anon_sym_struct] = ACTIONS(6667), + [anon_sym_union] = ACTIONS(6667), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6667), + [anon_sym___typeof] = ACTIONS(6667), + [anon_sym_typeof] = ACTIONS(6667), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6667), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6667), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6667), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6667), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6667), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6667), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6667), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6667), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6667), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6667), + [anon_sym_NS_AVAILABLE] = ACTIONS(6667), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6667), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6667), + [anon_sym_API_AVAILABLE] = ACTIONS(6667), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6667), + [anon_sym_API_DEPRECATED] = ACTIONS(6667), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6667), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6667), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6667), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6667), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6667), + [anon_sym___deprecated_msg] = ACTIONS(6667), + [anon_sym___deprecated_enum_msg] = ACTIONS(6667), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6667), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6667), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6667), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6667), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6667), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6667), + [anon_sym_BOOL] = ACTIONS(6667), + [anon_sym_IMP] = ACTIONS(6667), + [anon_sym_SEL] = ACTIONS(6667), + [anon_sym_Class] = ACTIONS(6667), + [anon_sym_id] = ACTIONS(6667), + [anon_sym_ATdefs] = ACTIONS(6669), + }, + [2627] = { + [sym_identifier] = ACTIONS(6671), + [aux_sym_preproc_def_token1] = ACTIONS(6671), + [aux_sym_preproc_if_token1] = ACTIONS(6671), + [aux_sym_preproc_if_token2] = ACTIONS(6671), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6671), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6671), + [aux_sym_preproc_else_token1] = ACTIONS(6671), + [aux_sym_preproc_elif_token1] = ACTIONS(6671), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6671), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6671), + [sym_preproc_directive] = ACTIONS(6671), + [anon_sym___extension__] = ACTIONS(6671), + [anon_sym_extern] = ACTIONS(6671), + [anon_sym___attribute__] = ACTIONS(6671), + [anon_sym___attribute] = ACTIONS(6671), + [anon_sym_noreturn] = ACTIONS(6671), + [anon_sym_LBRACK] = ACTIONS(6673), + [anon_sym___declspec] = ACTIONS(6671), + [anon_sym_signed] = ACTIONS(6671), + [anon_sym_unsigned] = ACTIONS(6671), + [anon_sym_long] = ACTIONS(6671), + [anon_sym_short] = ACTIONS(6671), + [anon_sym_static] = ACTIONS(6671), + [anon_sym_auto] = ACTIONS(6671), + [anon_sym_register] = ACTIONS(6671), + [anon_sym_inline] = ACTIONS(6671), + [anon_sym___inline] = ACTIONS(6671), + [anon_sym___inline__] = ACTIONS(6671), + [anon_sym___forceinline] = ACTIONS(6671), + [anon_sym_thread_local] = ACTIONS(6671), + [anon_sym___thread] = ACTIONS(6671), + [anon_sym_CG_EXTERN] = ACTIONS(6671), + [anon_sym_CG_INLINE] = ACTIONS(6671), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6671), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6671), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6671), + [anon_sym_IBOutlet] = ACTIONS(6671), + [anon_sym_IBInspectable] = ACTIONS(6671), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6671), + [anon_sym_NS_INLINE] = ACTIONS(6671), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6671), + [anon_sym_OBJC_EXPORT] = ACTIONS(6671), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6671), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6671), + [anon_sym_const] = ACTIONS(6671), + [anon_sym_constexpr] = ACTIONS(6671), + [anon_sym_volatile] = ACTIONS(6671), + [anon_sym_restrict] = ACTIONS(6671), + [anon_sym___restrict__] = ACTIONS(6671), + [anon_sym__Atomic] = ACTIONS(6671), + [anon_sym__Noreturn] = ACTIONS(6671), + [anon_sym__Nonnull] = ACTIONS(6671), + [anon_sym_nullable] = ACTIONS(6671), + [anon_sym__Complex] = ACTIONS(6671), + [anon_sym__Nullable] = ACTIONS(6671), + [anon_sym__Nullable_result] = ACTIONS(6671), + [anon_sym__Null_unspecified] = ACTIONS(6671), + [anon_sym___autoreleasing] = ACTIONS(6671), + [anon_sym___block] = ACTIONS(6671), + [anon_sym___bridge] = ACTIONS(6671), + [anon_sym___bridge_retained] = ACTIONS(6671), + [anon_sym___bridge_transfer] = ACTIONS(6671), + [anon_sym___complex] = ACTIONS(6671), + [anon_sym___const] = ACTIONS(6671), + [anon_sym___imag] = ACTIONS(6671), + [anon_sym___kindof] = ACTIONS(6671), + [anon_sym___nonnull] = ACTIONS(6671), + [anon_sym___nullable] = ACTIONS(6671), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6671), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6671), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6671), + [anon_sym___real] = ACTIONS(6671), + [anon_sym___strong] = ACTIONS(6671), + [anon_sym___unsafe_unretained] = ACTIONS(6671), + [anon_sym___unused] = ACTIONS(6671), + [anon_sym___weak] = ACTIONS(6671), + [anon_sym_alignas] = ACTIONS(6671), + [anon_sym__Alignas] = ACTIONS(6671), + [sym_primitive_type] = ACTIONS(6671), + [anon_sym_enum] = ACTIONS(6671), + [anon_sym_struct] = ACTIONS(6671), + [anon_sym_union] = ACTIONS(6671), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6671), + [anon_sym___typeof] = ACTIONS(6671), + [anon_sym_typeof] = ACTIONS(6671), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6671), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6671), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6671), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6671), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6671), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6671), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6671), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6671), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6671), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6671), + [anon_sym_NS_AVAILABLE] = ACTIONS(6671), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6671), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6671), + [anon_sym_API_AVAILABLE] = ACTIONS(6671), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6671), + [anon_sym_API_DEPRECATED] = ACTIONS(6671), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6671), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6671), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6671), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6671), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6671), + [anon_sym___deprecated_msg] = ACTIONS(6671), + [anon_sym___deprecated_enum_msg] = ACTIONS(6671), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6671), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6671), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6671), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6671), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6671), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6671), + [anon_sym_BOOL] = ACTIONS(6671), + [anon_sym_IMP] = ACTIONS(6671), + [anon_sym_SEL] = ACTIONS(6671), + [anon_sym_Class] = ACTIONS(6671), + [anon_sym_id] = ACTIONS(6671), + [anon_sym_ATdefs] = ACTIONS(6673), + }, + [2628] = { + [sym_identifier] = ACTIONS(6675), + [aux_sym_preproc_def_token1] = ACTIONS(6675), + [aux_sym_preproc_if_token1] = ACTIONS(6675), + [aux_sym_preproc_if_token2] = ACTIONS(6675), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6675), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6675), + [aux_sym_preproc_else_token1] = ACTIONS(6675), + [aux_sym_preproc_elif_token1] = ACTIONS(6675), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6675), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6675), + [sym_preproc_directive] = ACTIONS(6675), + [anon_sym___extension__] = ACTIONS(6675), + [anon_sym_extern] = ACTIONS(6675), + [anon_sym___attribute__] = ACTIONS(6675), + [anon_sym___attribute] = ACTIONS(6675), + [anon_sym_noreturn] = ACTIONS(6675), + [anon_sym_LBRACK] = ACTIONS(6677), + [anon_sym___declspec] = ACTIONS(6675), + [anon_sym_signed] = ACTIONS(6675), + [anon_sym_unsigned] = ACTIONS(6675), + [anon_sym_long] = ACTIONS(6675), + [anon_sym_short] = ACTIONS(6675), + [anon_sym_static] = ACTIONS(6675), + [anon_sym_auto] = ACTIONS(6675), + [anon_sym_register] = ACTIONS(6675), + [anon_sym_inline] = ACTIONS(6675), + [anon_sym___inline] = ACTIONS(6675), + [anon_sym___inline__] = ACTIONS(6675), + [anon_sym___forceinline] = ACTIONS(6675), + [anon_sym_thread_local] = ACTIONS(6675), + [anon_sym___thread] = ACTIONS(6675), + [anon_sym_CG_EXTERN] = ACTIONS(6675), + [anon_sym_CG_INLINE] = ACTIONS(6675), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6675), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6675), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6675), + [anon_sym_IBOutlet] = ACTIONS(6675), + [anon_sym_IBInspectable] = ACTIONS(6675), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6675), + [anon_sym_NS_INLINE] = ACTIONS(6675), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6675), + [anon_sym_OBJC_EXPORT] = ACTIONS(6675), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6675), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6675), + [anon_sym_const] = ACTIONS(6675), + [anon_sym_constexpr] = ACTIONS(6675), + [anon_sym_volatile] = ACTIONS(6675), + [anon_sym_restrict] = ACTIONS(6675), + [anon_sym___restrict__] = ACTIONS(6675), + [anon_sym__Atomic] = ACTIONS(6675), + [anon_sym__Noreturn] = ACTIONS(6675), + [anon_sym__Nonnull] = ACTIONS(6675), + [anon_sym_nullable] = ACTIONS(6675), + [anon_sym__Complex] = ACTIONS(6675), + [anon_sym__Nullable] = ACTIONS(6675), + [anon_sym__Nullable_result] = ACTIONS(6675), + [anon_sym__Null_unspecified] = ACTIONS(6675), + [anon_sym___autoreleasing] = ACTIONS(6675), + [anon_sym___block] = ACTIONS(6675), + [anon_sym___bridge] = ACTIONS(6675), + [anon_sym___bridge_retained] = ACTIONS(6675), + [anon_sym___bridge_transfer] = ACTIONS(6675), + [anon_sym___complex] = ACTIONS(6675), + [anon_sym___const] = ACTIONS(6675), + [anon_sym___imag] = ACTIONS(6675), + [anon_sym___kindof] = ACTIONS(6675), + [anon_sym___nonnull] = ACTIONS(6675), + [anon_sym___nullable] = ACTIONS(6675), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6675), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6675), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6675), + [anon_sym___real] = ACTIONS(6675), + [anon_sym___strong] = ACTIONS(6675), + [anon_sym___unsafe_unretained] = ACTIONS(6675), + [anon_sym___unused] = ACTIONS(6675), + [anon_sym___weak] = ACTIONS(6675), + [anon_sym_alignas] = ACTIONS(6675), + [anon_sym__Alignas] = ACTIONS(6675), + [sym_primitive_type] = ACTIONS(6675), + [anon_sym_enum] = ACTIONS(6675), + [anon_sym_struct] = ACTIONS(6675), + [anon_sym_union] = ACTIONS(6675), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6675), + [anon_sym___typeof] = ACTIONS(6675), + [anon_sym_typeof] = ACTIONS(6675), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6675), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6675), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6675), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6675), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6675), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6675), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6675), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6675), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6675), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6675), + [anon_sym_NS_AVAILABLE] = ACTIONS(6675), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6675), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6675), + [anon_sym_API_AVAILABLE] = ACTIONS(6675), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6675), + [anon_sym_API_DEPRECATED] = ACTIONS(6675), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6675), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6675), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6675), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6675), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6675), + [anon_sym___deprecated_msg] = ACTIONS(6675), + [anon_sym___deprecated_enum_msg] = ACTIONS(6675), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6675), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6675), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6675), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6675), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6675), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6675), + [anon_sym_BOOL] = ACTIONS(6675), + [anon_sym_IMP] = ACTIONS(6675), + [anon_sym_SEL] = ACTIONS(6675), + [anon_sym_Class] = ACTIONS(6675), + [anon_sym_id] = ACTIONS(6675), + [anon_sym_ATdefs] = ACTIONS(6677), + }, + [2629] = { + [sym_identifier] = ACTIONS(2612), + [aux_sym_preproc_def_token1] = ACTIONS(2612), + [aux_sym_preproc_if_token1] = ACTIONS(2612), + [aux_sym_preproc_if_token2] = ACTIONS(2612), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2612), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2612), + [aux_sym_preproc_else_token1] = ACTIONS(2612), + [aux_sym_preproc_elif_token1] = ACTIONS(2612), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2612), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2612), + [sym_preproc_directive] = ACTIONS(2612), + [anon_sym___extension__] = ACTIONS(2612), + [anon_sym_extern] = ACTIONS(2612), + [anon_sym___attribute__] = ACTIONS(2612), + [anon_sym___attribute] = ACTIONS(2612), + [anon_sym_noreturn] = ACTIONS(2612), + [anon_sym_LBRACK] = ACTIONS(2614), + [anon_sym___declspec] = ACTIONS(2612), + [anon_sym_signed] = ACTIONS(2612), + [anon_sym_unsigned] = ACTIONS(2612), + [anon_sym_long] = ACTIONS(2612), + [anon_sym_short] = ACTIONS(2612), + [anon_sym_static] = ACTIONS(2612), + [anon_sym_auto] = ACTIONS(2612), + [anon_sym_register] = ACTIONS(2612), + [anon_sym_inline] = ACTIONS(2612), + [anon_sym___inline] = ACTIONS(2612), + [anon_sym___inline__] = ACTIONS(2612), + [anon_sym___forceinline] = ACTIONS(2612), + [anon_sym_thread_local] = ACTIONS(2612), + [anon_sym___thread] = ACTIONS(2612), + [anon_sym_CG_EXTERN] = ACTIONS(2612), + [anon_sym_CG_INLINE] = ACTIONS(2612), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2612), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2612), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2612), + [anon_sym_IBOutlet] = ACTIONS(2612), + [anon_sym_IBInspectable] = ACTIONS(2612), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2612), + [anon_sym_NS_INLINE] = ACTIONS(2612), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2612), + [anon_sym_OBJC_EXPORT] = ACTIONS(2612), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2612), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2612), + [anon_sym_const] = ACTIONS(2612), + [anon_sym_constexpr] = ACTIONS(2612), + [anon_sym_volatile] = ACTIONS(2612), + [anon_sym_restrict] = ACTIONS(2612), + [anon_sym___restrict__] = ACTIONS(2612), + [anon_sym__Atomic] = ACTIONS(2612), + [anon_sym__Noreturn] = ACTIONS(2612), + [anon_sym__Nonnull] = ACTIONS(2612), + [anon_sym_nullable] = ACTIONS(2612), + [anon_sym__Complex] = ACTIONS(2612), + [anon_sym__Nullable] = ACTIONS(2612), + [anon_sym__Nullable_result] = ACTIONS(2612), + [anon_sym__Null_unspecified] = ACTIONS(2612), + [anon_sym___autoreleasing] = ACTIONS(2612), + [anon_sym___block] = ACTIONS(2612), + [anon_sym___bridge] = ACTIONS(2612), + [anon_sym___bridge_retained] = ACTIONS(2612), + [anon_sym___bridge_transfer] = ACTIONS(2612), + [anon_sym___complex] = ACTIONS(2612), + [anon_sym___const] = ACTIONS(2612), + [anon_sym___imag] = ACTIONS(2612), + [anon_sym___kindof] = ACTIONS(2612), + [anon_sym___nonnull] = ACTIONS(2612), + [anon_sym___nullable] = ACTIONS(2612), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2612), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2612), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2612), + [anon_sym___real] = ACTIONS(2612), + [anon_sym___strong] = ACTIONS(2612), + [anon_sym___unsafe_unretained] = ACTIONS(2612), + [anon_sym___unused] = ACTIONS(2612), + [anon_sym___weak] = ACTIONS(2612), + [anon_sym_alignas] = ACTIONS(2612), + [anon_sym__Alignas] = ACTIONS(2612), + [sym_primitive_type] = ACTIONS(2612), + [anon_sym_enum] = ACTIONS(2612), + [anon_sym_struct] = ACTIONS(2612), + [anon_sym_union] = ACTIONS(2612), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2612), + [anon_sym___typeof] = ACTIONS(2612), + [anon_sym_typeof] = ACTIONS(2612), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2612), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2612), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2612), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2612), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2612), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2612), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2612), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2612), + [anon_sym_NS_AVAILABLE] = ACTIONS(2612), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2612), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_API_AVAILABLE] = ACTIONS(2612), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_API_DEPRECATED] = ACTIONS(2612), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2612), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2612), + [anon_sym___deprecated_msg] = ACTIONS(2612), + [anon_sym___deprecated_enum_msg] = ACTIONS(2612), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2612), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2612), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2612), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2612), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2612), + [anon_sym_BOOL] = ACTIONS(2612), + [anon_sym_IMP] = ACTIONS(2612), + [anon_sym_SEL] = ACTIONS(2612), + [anon_sym_Class] = ACTIONS(2612), + [anon_sym_id] = ACTIONS(2612), + [anon_sym_ATdefs] = ACTIONS(2614), + }, + [2630] = { + [sym_identifier] = ACTIONS(6679), + [aux_sym_preproc_def_token1] = ACTIONS(6679), + [aux_sym_preproc_if_token1] = ACTIONS(6679), + [aux_sym_preproc_if_token2] = ACTIONS(6679), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6679), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6679), + [aux_sym_preproc_else_token1] = ACTIONS(6679), + [aux_sym_preproc_elif_token1] = ACTIONS(6679), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6679), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6679), + [sym_preproc_directive] = ACTIONS(6679), + [anon_sym___extension__] = ACTIONS(6679), + [anon_sym_extern] = ACTIONS(6679), + [anon_sym___attribute__] = ACTIONS(6679), + [anon_sym___attribute] = ACTIONS(6679), + [anon_sym_noreturn] = ACTIONS(6679), + [anon_sym_LBRACK] = ACTIONS(6681), + [anon_sym___declspec] = ACTIONS(6679), + [anon_sym_signed] = ACTIONS(6679), + [anon_sym_unsigned] = ACTIONS(6679), + [anon_sym_long] = ACTIONS(6679), + [anon_sym_short] = ACTIONS(6679), + [anon_sym_static] = ACTIONS(6679), + [anon_sym_auto] = ACTIONS(6679), + [anon_sym_register] = ACTIONS(6679), + [anon_sym_inline] = ACTIONS(6679), + [anon_sym___inline] = ACTIONS(6679), + [anon_sym___inline__] = ACTIONS(6679), + [anon_sym___forceinline] = ACTIONS(6679), + [anon_sym_thread_local] = ACTIONS(6679), + [anon_sym___thread] = ACTIONS(6679), + [anon_sym_CG_EXTERN] = ACTIONS(6679), + [anon_sym_CG_INLINE] = ACTIONS(6679), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6679), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6679), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6679), + [anon_sym_IBOutlet] = ACTIONS(6679), + [anon_sym_IBInspectable] = ACTIONS(6679), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6679), + [anon_sym_NS_INLINE] = ACTIONS(6679), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6679), + [anon_sym_OBJC_EXPORT] = ACTIONS(6679), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6679), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6679), + [anon_sym_const] = ACTIONS(6679), + [anon_sym_constexpr] = ACTIONS(6679), + [anon_sym_volatile] = ACTIONS(6679), + [anon_sym_restrict] = ACTIONS(6679), + [anon_sym___restrict__] = ACTIONS(6679), + [anon_sym__Atomic] = ACTIONS(6679), + [anon_sym__Noreturn] = ACTIONS(6679), + [anon_sym__Nonnull] = ACTIONS(6679), + [anon_sym_nullable] = ACTIONS(6679), + [anon_sym__Complex] = ACTIONS(6679), + [anon_sym__Nullable] = ACTIONS(6679), + [anon_sym__Nullable_result] = ACTIONS(6679), + [anon_sym__Null_unspecified] = ACTIONS(6679), + [anon_sym___autoreleasing] = ACTIONS(6679), + [anon_sym___block] = ACTIONS(6679), + [anon_sym___bridge] = ACTIONS(6679), + [anon_sym___bridge_retained] = ACTIONS(6679), + [anon_sym___bridge_transfer] = ACTIONS(6679), + [anon_sym___complex] = ACTIONS(6679), + [anon_sym___const] = ACTIONS(6679), + [anon_sym___imag] = ACTIONS(6679), + [anon_sym___kindof] = ACTIONS(6679), + [anon_sym___nonnull] = ACTIONS(6679), + [anon_sym___nullable] = ACTIONS(6679), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6679), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6679), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6679), + [anon_sym___real] = ACTIONS(6679), + [anon_sym___strong] = ACTIONS(6679), + [anon_sym___unsafe_unretained] = ACTIONS(6679), + [anon_sym___unused] = ACTIONS(6679), + [anon_sym___weak] = ACTIONS(6679), + [anon_sym_alignas] = ACTIONS(6679), + [anon_sym__Alignas] = ACTIONS(6679), + [sym_primitive_type] = ACTIONS(6679), + [anon_sym_enum] = ACTIONS(6679), + [anon_sym_struct] = ACTIONS(6679), + [anon_sym_union] = ACTIONS(6679), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6679), + [anon_sym___typeof] = ACTIONS(6679), + [anon_sym_typeof] = ACTIONS(6679), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6679), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6679), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6679), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6679), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6679), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6679), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6679), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6679), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6679), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6679), + [anon_sym_NS_AVAILABLE] = ACTIONS(6679), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6679), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6679), + [anon_sym_API_AVAILABLE] = ACTIONS(6679), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6679), + [anon_sym_API_DEPRECATED] = ACTIONS(6679), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6679), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6679), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6679), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6679), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6679), + [anon_sym___deprecated_msg] = ACTIONS(6679), + [anon_sym___deprecated_enum_msg] = ACTIONS(6679), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6679), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6679), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6679), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6679), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6679), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6679), + [anon_sym_BOOL] = ACTIONS(6679), + [anon_sym_IMP] = ACTIONS(6679), + [anon_sym_SEL] = ACTIONS(6679), + [anon_sym_Class] = ACTIONS(6679), + [anon_sym_id] = ACTIONS(6679), + [anon_sym_ATdefs] = ACTIONS(6681), + }, + [2631] = { + [sym_identifier] = ACTIONS(6683), + [aux_sym_preproc_def_token1] = ACTIONS(6683), + [aux_sym_preproc_if_token1] = ACTIONS(6683), + [aux_sym_preproc_if_token2] = ACTIONS(6683), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6683), + [aux_sym_preproc_else_token1] = ACTIONS(6683), + [aux_sym_preproc_elif_token1] = ACTIONS(6683), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6683), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6683), + [sym_preproc_directive] = ACTIONS(6683), + [anon_sym___extension__] = ACTIONS(6683), + [anon_sym_extern] = ACTIONS(6683), + [anon_sym___attribute__] = ACTIONS(6683), + [anon_sym___attribute] = ACTIONS(6683), + [anon_sym_noreturn] = ACTIONS(6683), + [anon_sym_LBRACK] = ACTIONS(6685), + [anon_sym___declspec] = ACTIONS(6683), + [anon_sym_signed] = ACTIONS(6683), + [anon_sym_unsigned] = ACTIONS(6683), + [anon_sym_long] = ACTIONS(6683), + [anon_sym_short] = ACTIONS(6683), + [anon_sym_static] = ACTIONS(6683), + [anon_sym_auto] = ACTIONS(6683), + [anon_sym_register] = ACTIONS(6683), + [anon_sym_inline] = ACTIONS(6683), + [anon_sym___inline] = ACTIONS(6683), + [anon_sym___inline__] = ACTIONS(6683), + [anon_sym___forceinline] = ACTIONS(6683), + [anon_sym_thread_local] = ACTIONS(6683), + [anon_sym___thread] = ACTIONS(6683), + [anon_sym_CG_EXTERN] = ACTIONS(6683), + [anon_sym_CG_INLINE] = ACTIONS(6683), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6683), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6683), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6683), + [anon_sym_IBOutlet] = ACTIONS(6683), + [anon_sym_IBInspectable] = ACTIONS(6683), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6683), + [anon_sym_NS_INLINE] = ACTIONS(6683), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6683), + [anon_sym_OBJC_EXPORT] = ACTIONS(6683), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6683), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6683), + [anon_sym_const] = ACTIONS(6683), + [anon_sym_constexpr] = ACTIONS(6683), + [anon_sym_volatile] = ACTIONS(6683), + [anon_sym_restrict] = ACTIONS(6683), + [anon_sym___restrict__] = ACTIONS(6683), + [anon_sym__Atomic] = ACTIONS(6683), + [anon_sym__Noreturn] = ACTIONS(6683), + [anon_sym__Nonnull] = ACTIONS(6683), + [anon_sym_nullable] = ACTIONS(6683), + [anon_sym__Complex] = ACTIONS(6683), + [anon_sym__Nullable] = ACTIONS(6683), + [anon_sym__Nullable_result] = ACTIONS(6683), + [anon_sym__Null_unspecified] = ACTIONS(6683), + [anon_sym___autoreleasing] = ACTIONS(6683), + [anon_sym___block] = ACTIONS(6683), + [anon_sym___bridge] = ACTIONS(6683), + [anon_sym___bridge_retained] = ACTIONS(6683), + [anon_sym___bridge_transfer] = ACTIONS(6683), + [anon_sym___complex] = ACTIONS(6683), + [anon_sym___const] = ACTIONS(6683), + [anon_sym___imag] = ACTIONS(6683), + [anon_sym___kindof] = ACTIONS(6683), + [anon_sym___nonnull] = ACTIONS(6683), + [anon_sym___nullable] = ACTIONS(6683), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6683), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6683), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6683), + [anon_sym___real] = ACTIONS(6683), + [anon_sym___strong] = ACTIONS(6683), + [anon_sym___unsafe_unretained] = ACTIONS(6683), + [anon_sym___unused] = ACTIONS(6683), + [anon_sym___weak] = ACTIONS(6683), + [anon_sym_alignas] = ACTIONS(6683), + [anon_sym__Alignas] = ACTIONS(6683), + [sym_primitive_type] = ACTIONS(6683), + [anon_sym_enum] = ACTIONS(6683), + [anon_sym_struct] = ACTIONS(6683), + [anon_sym_union] = ACTIONS(6683), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6683), + [anon_sym___typeof] = ACTIONS(6683), + [anon_sym_typeof] = ACTIONS(6683), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6683), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6683), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6683), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6683), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6683), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6683), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6683), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6683), + [anon_sym_NS_AVAILABLE] = ACTIONS(6683), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6683), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_API_AVAILABLE] = ACTIONS(6683), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_API_DEPRECATED] = ACTIONS(6683), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6683), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6683), + [anon_sym___deprecated_msg] = ACTIONS(6683), + [anon_sym___deprecated_enum_msg] = ACTIONS(6683), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6683), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6683), + [anon_sym_BOOL] = ACTIONS(6683), + [anon_sym_IMP] = ACTIONS(6683), + [anon_sym_SEL] = ACTIONS(6683), + [anon_sym_Class] = ACTIONS(6683), + [anon_sym_id] = ACTIONS(6683), + [anon_sym_ATdefs] = ACTIONS(6685), + }, + [2632] = { + [sym_identifier] = ACTIONS(6683), + [aux_sym_preproc_def_token1] = ACTIONS(6683), + [aux_sym_preproc_if_token1] = ACTIONS(6683), + [aux_sym_preproc_if_token2] = ACTIONS(6683), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6683), + [aux_sym_preproc_else_token1] = ACTIONS(6683), + [aux_sym_preproc_elif_token1] = ACTIONS(6683), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6683), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6683), + [sym_preproc_directive] = ACTIONS(6683), + [anon_sym___extension__] = ACTIONS(6683), + [anon_sym_extern] = ACTIONS(6683), + [anon_sym___attribute__] = ACTIONS(6683), + [anon_sym___attribute] = ACTIONS(6683), + [anon_sym_noreturn] = ACTIONS(6683), + [anon_sym_LBRACK] = ACTIONS(6685), + [anon_sym___declspec] = ACTIONS(6683), + [anon_sym_signed] = ACTIONS(6683), + [anon_sym_unsigned] = ACTIONS(6683), + [anon_sym_long] = ACTIONS(6683), + [anon_sym_short] = ACTIONS(6683), + [anon_sym_static] = ACTIONS(6683), + [anon_sym_auto] = ACTIONS(6683), + [anon_sym_register] = ACTIONS(6683), + [anon_sym_inline] = ACTIONS(6683), + [anon_sym___inline] = ACTIONS(6683), + [anon_sym___inline__] = ACTIONS(6683), + [anon_sym___forceinline] = ACTIONS(6683), + [anon_sym_thread_local] = ACTIONS(6683), + [anon_sym___thread] = ACTIONS(6683), + [anon_sym_CG_EXTERN] = ACTIONS(6683), + [anon_sym_CG_INLINE] = ACTIONS(6683), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6683), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6683), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6683), + [anon_sym_IBOutlet] = ACTIONS(6683), + [anon_sym_IBInspectable] = ACTIONS(6683), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6683), + [anon_sym_NS_INLINE] = ACTIONS(6683), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6683), + [anon_sym_OBJC_EXPORT] = ACTIONS(6683), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6683), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6683), + [anon_sym_const] = ACTIONS(6683), + [anon_sym_constexpr] = ACTIONS(6683), + [anon_sym_volatile] = ACTIONS(6683), + [anon_sym_restrict] = ACTIONS(6683), + [anon_sym___restrict__] = ACTIONS(6683), + [anon_sym__Atomic] = ACTIONS(6683), + [anon_sym__Noreturn] = ACTIONS(6683), + [anon_sym__Nonnull] = ACTIONS(6683), + [anon_sym_nullable] = ACTIONS(6683), + [anon_sym__Complex] = ACTIONS(6683), + [anon_sym__Nullable] = ACTIONS(6683), + [anon_sym__Nullable_result] = ACTIONS(6683), + [anon_sym__Null_unspecified] = ACTIONS(6683), + [anon_sym___autoreleasing] = ACTIONS(6683), + [anon_sym___block] = ACTIONS(6683), + [anon_sym___bridge] = ACTIONS(6683), + [anon_sym___bridge_retained] = ACTIONS(6683), + [anon_sym___bridge_transfer] = ACTIONS(6683), + [anon_sym___complex] = ACTIONS(6683), + [anon_sym___const] = ACTIONS(6683), + [anon_sym___imag] = ACTIONS(6683), + [anon_sym___kindof] = ACTIONS(6683), + [anon_sym___nonnull] = ACTIONS(6683), + [anon_sym___nullable] = ACTIONS(6683), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6683), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6683), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6683), + [anon_sym___real] = ACTIONS(6683), + [anon_sym___strong] = ACTIONS(6683), + [anon_sym___unsafe_unretained] = ACTIONS(6683), + [anon_sym___unused] = ACTIONS(6683), + [anon_sym___weak] = ACTIONS(6683), + [anon_sym_alignas] = ACTIONS(6683), + [anon_sym__Alignas] = ACTIONS(6683), + [sym_primitive_type] = ACTIONS(6683), + [anon_sym_enum] = ACTIONS(6683), + [anon_sym_struct] = ACTIONS(6683), + [anon_sym_union] = ACTIONS(6683), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6683), + [anon_sym___typeof] = ACTIONS(6683), + [anon_sym_typeof] = ACTIONS(6683), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6683), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6683), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6683), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6683), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6683), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6683), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6683), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6683), + [anon_sym_NS_AVAILABLE] = ACTIONS(6683), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6683), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_API_AVAILABLE] = ACTIONS(6683), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_API_DEPRECATED] = ACTIONS(6683), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6683), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6683), + [anon_sym___deprecated_msg] = ACTIONS(6683), + [anon_sym___deprecated_enum_msg] = ACTIONS(6683), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6683), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6683), + [anon_sym_BOOL] = ACTIONS(6683), + [anon_sym_IMP] = ACTIONS(6683), + [anon_sym_SEL] = ACTIONS(6683), + [anon_sym_Class] = ACTIONS(6683), + [anon_sym_id] = ACTIONS(6683), + [anon_sym_ATdefs] = ACTIONS(6685), + }, + [2633] = { + [sym_identifier] = ACTIONS(6687), + [aux_sym_preproc_def_token1] = ACTIONS(6687), + [aux_sym_preproc_if_token1] = ACTIONS(6687), + [aux_sym_preproc_if_token2] = ACTIONS(6687), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6687), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6687), + [aux_sym_preproc_else_token1] = ACTIONS(6687), + [aux_sym_preproc_elif_token1] = ACTIONS(6687), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6687), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6687), + [sym_preproc_directive] = ACTIONS(6687), + [anon_sym___extension__] = ACTIONS(6687), + [anon_sym_extern] = ACTIONS(6687), + [anon_sym___attribute__] = ACTIONS(6687), + [anon_sym___attribute] = ACTIONS(6687), + [anon_sym_noreturn] = ACTIONS(6687), + [anon_sym_LBRACK] = ACTIONS(6689), + [anon_sym___declspec] = ACTIONS(6687), + [anon_sym_signed] = ACTIONS(6687), + [anon_sym_unsigned] = ACTIONS(6687), + [anon_sym_long] = ACTIONS(6687), + [anon_sym_short] = ACTIONS(6687), + [anon_sym_static] = ACTIONS(6687), + [anon_sym_auto] = ACTIONS(6687), + [anon_sym_register] = ACTIONS(6687), + [anon_sym_inline] = ACTIONS(6687), + [anon_sym___inline] = ACTIONS(6687), + [anon_sym___inline__] = ACTIONS(6687), + [anon_sym___forceinline] = ACTIONS(6687), + [anon_sym_thread_local] = ACTIONS(6687), + [anon_sym___thread] = ACTIONS(6687), + [anon_sym_CG_EXTERN] = ACTIONS(6687), + [anon_sym_CG_INLINE] = ACTIONS(6687), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6687), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6687), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6687), + [anon_sym_IBOutlet] = ACTIONS(6687), + [anon_sym_IBInspectable] = ACTIONS(6687), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6687), + [anon_sym_NS_INLINE] = ACTIONS(6687), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6687), + [anon_sym_OBJC_EXPORT] = ACTIONS(6687), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6687), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6687), + [anon_sym_const] = ACTIONS(6687), + [anon_sym_constexpr] = ACTIONS(6687), + [anon_sym_volatile] = ACTIONS(6687), + [anon_sym_restrict] = ACTIONS(6687), + [anon_sym___restrict__] = ACTIONS(6687), + [anon_sym__Atomic] = ACTIONS(6687), + [anon_sym__Noreturn] = ACTIONS(6687), + [anon_sym__Nonnull] = ACTIONS(6687), + [anon_sym_nullable] = ACTIONS(6687), + [anon_sym__Complex] = ACTIONS(6687), + [anon_sym__Nullable] = ACTIONS(6687), + [anon_sym__Nullable_result] = ACTIONS(6687), + [anon_sym__Null_unspecified] = ACTIONS(6687), + [anon_sym___autoreleasing] = ACTIONS(6687), + [anon_sym___block] = ACTIONS(6687), + [anon_sym___bridge] = ACTIONS(6687), + [anon_sym___bridge_retained] = ACTIONS(6687), + [anon_sym___bridge_transfer] = ACTIONS(6687), + [anon_sym___complex] = ACTIONS(6687), + [anon_sym___const] = ACTIONS(6687), + [anon_sym___imag] = ACTIONS(6687), + [anon_sym___kindof] = ACTIONS(6687), + [anon_sym___nonnull] = ACTIONS(6687), + [anon_sym___nullable] = ACTIONS(6687), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6687), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6687), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6687), + [anon_sym___real] = ACTIONS(6687), + [anon_sym___strong] = ACTIONS(6687), + [anon_sym___unsafe_unretained] = ACTIONS(6687), + [anon_sym___unused] = ACTIONS(6687), + [anon_sym___weak] = ACTIONS(6687), + [anon_sym_alignas] = ACTIONS(6687), + [anon_sym__Alignas] = ACTIONS(6687), + [sym_primitive_type] = ACTIONS(6687), + [anon_sym_enum] = ACTIONS(6687), + [anon_sym_struct] = ACTIONS(6687), + [anon_sym_union] = ACTIONS(6687), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6687), + [anon_sym___typeof] = ACTIONS(6687), + [anon_sym_typeof] = ACTIONS(6687), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6687), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6687), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6687), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6687), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6687), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6687), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6687), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6687), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6687), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6687), + [anon_sym_NS_AVAILABLE] = ACTIONS(6687), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6687), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6687), + [anon_sym_API_AVAILABLE] = ACTIONS(6687), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6687), + [anon_sym_API_DEPRECATED] = ACTIONS(6687), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6687), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6687), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6687), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6687), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6687), + [anon_sym___deprecated_msg] = ACTIONS(6687), + [anon_sym___deprecated_enum_msg] = ACTIONS(6687), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6687), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6687), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6687), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6687), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6687), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6687), + [anon_sym_BOOL] = ACTIONS(6687), + [anon_sym_IMP] = ACTIONS(6687), + [anon_sym_SEL] = ACTIONS(6687), + [anon_sym_Class] = ACTIONS(6687), + [anon_sym_id] = ACTIONS(6687), + [anon_sym_ATdefs] = ACTIONS(6689), + }, + [2634] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6639), + [anon_sym_COMMA] = ACTIONS(6691), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6595), + [anon_sym_PLUS] = ACTIONS(6595), + [anon_sym_STAR] = ACTIONS(6597), + [anon_sym_SLASH] = ACTIONS(6599), + [anon_sym_PERCENT] = ACTIONS(6597), + [anon_sym_PIPE_PIPE] = ACTIONS(6643), + [anon_sym_AMP_AMP] = ACTIONS(6645), + [anon_sym_PIPE] = ACTIONS(6647), + [anon_sym_CARET] = ACTIONS(6649), + [anon_sym_AMP] = ACTIONS(6601), + [anon_sym_EQ_EQ] = ACTIONS(6603), + [anon_sym_BANG_EQ] = ACTIONS(6603), + [anon_sym_GT] = ACTIONS(6605), + [anon_sym_GT_EQ] = ACTIONS(6607), + [anon_sym_LT_EQ] = ACTIONS(6607), + [anon_sym_LT] = ACTIONS(6605), + [anon_sym_LT_LT] = ACTIONS(6609), + [anon_sym_GT_GT] = ACTIONS(6609), + [anon_sym_SEMI] = ACTIONS(6691), + [anon_sym___extension__] = ACTIONS(6691), + [anon_sym_extern] = ACTIONS(6691), + [anon_sym___attribute__] = ACTIONS(6691), + [anon_sym___attribute] = ACTIONS(6693), + [anon_sym_noreturn] = ACTIONS(6691), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(6691), + [anon_sym_static] = ACTIONS(6691), + [anon_sym_auto] = ACTIONS(6691), + [anon_sym_register] = ACTIONS(6691), + [anon_sym_inline] = ACTIONS(6691), + [anon_sym___inline] = ACTIONS(6693), + [anon_sym___inline__] = ACTIONS(6691), + [anon_sym___forceinline] = ACTIONS(6691), + [anon_sym_thread_local] = ACTIONS(6691), + [anon_sym___thread] = ACTIONS(6691), + [anon_sym_CG_EXTERN] = ACTIONS(6691), + [anon_sym_CG_INLINE] = ACTIONS(6691), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6691), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6691), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6691), + [anon_sym_IBOutlet] = ACTIONS(6691), + [anon_sym_IBInspectable] = ACTIONS(6691), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6691), + [anon_sym_NS_INLINE] = ACTIONS(6691), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6691), + [anon_sym_OBJC_EXPORT] = ACTIONS(6691), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6691), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6691), + [anon_sym_const] = ACTIONS(6693), + [anon_sym_constexpr] = ACTIONS(6691), + [anon_sym_volatile] = ACTIONS(6691), + [anon_sym_restrict] = ACTIONS(6691), + [anon_sym___restrict__] = ACTIONS(6691), + [anon_sym__Atomic] = ACTIONS(6691), + [anon_sym__Noreturn] = ACTIONS(6691), + [anon_sym__Nonnull] = ACTIONS(6691), + [anon_sym_nullable] = ACTIONS(6691), + [anon_sym__Complex] = ACTIONS(6691), + [anon_sym__Nullable] = ACTIONS(6693), + [anon_sym__Nullable_result] = ACTIONS(6691), + [anon_sym__Null_unspecified] = ACTIONS(6691), + [anon_sym___autoreleasing] = ACTIONS(6691), + [anon_sym___block] = ACTIONS(6691), + [anon_sym___bridge] = ACTIONS(6693), + [anon_sym___bridge_retained] = ACTIONS(6691), + [anon_sym___bridge_transfer] = ACTIONS(6691), + [anon_sym___complex] = ACTIONS(6691), + [anon_sym___const] = ACTIONS(6691), + [anon_sym___imag] = ACTIONS(6691), + [anon_sym___kindof] = ACTIONS(6691), + [anon_sym___nonnull] = ACTIONS(6691), + [anon_sym___nullable] = ACTIONS(6691), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6691), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6691), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6691), + [anon_sym___real] = ACTIONS(6691), + [anon_sym___strong] = ACTIONS(6691), + [anon_sym___unsafe_unretained] = ACTIONS(6691), + [anon_sym___unused] = ACTIONS(6691), + [anon_sym___weak] = ACTIONS(6691), + [anon_sym_alignas] = ACTIONS(6691), + [anon_sym__Alignas] = ACTIONS(6691), + [anon_sym_QMARK] = ACTIONS(6653), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6691), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6691), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6691), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6691), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6691), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6691), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6691), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6691), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6691), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6691), + [anon_sym_NS_AVAILABLE] = ACTIONS(6693), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6691), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6691), + [anon_sym_API_AVAILABLE] = ACTIONS(6691), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6691), + [anon_sym_API_DEPRECATED] = ACTIONS(6691), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6691), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6691), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6691), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6691), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6691), + [anon_sym___deprecated_msg] = ACTIONS(6691), + [anon_sym___deprecated_enum_msg] = ACTIONS(6691), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6691), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6691), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6691), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6691), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6691), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6691), + }, + [2635] = { + [sym_identifier] = ACTIONS(6695), + [aux_sym_preproc_def_token1] = ACTIONS(6695), + [aux_sym_preproc_if_token1] = ACTIONS(6695), + [aux_sym_preproc_if_token2] = ACTIONS(6695), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6695), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6695), + [aux_sym_preproc_else_token1] = ACTIONS(6695), + [aux_sym_preproc_elif_token1] = ACTIONS(6695), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6695), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6695), + [sym_preproc_directive] = ACTIONS(6695), + [anon_sym___extension__] = ACTIONS(6695), + [anon_sym_extern] = ACTIONS(6695), + [anon_sym___attribute__] = ACTIONS(6695), + [anon_sym___attribute] = ACTIONS(6695), + [anon_sym_noreturn] = ACTIONS(6695), + [anon_sym_LBRACK] = ACTIONS(6697), + [anon_sym___declspec] = ACTIONS(6695), + [anon_sym_signed] = ACTIONS(6695), + [anon_sym_unsigned] = ACTIONS(6695), + [anon_sym_long] = ACTIONS(6695), + [anon_sym_short] = ACTIONS(6695), + [anon_sym_static] = ACTIONS(6695), + [anon_sym_auto] = ACTIONS(6695), + [anon_sym_register] = ACTIONS(6695), + [anon_sym_inline] = ACTIONS(6695), + [anon_sym___inline] = ACTIONS(6695), + [anon_sym___inline__] = ACTIONS(6695), + [anon_sym___forceinline] = ACTIONS(6695), + [anon_sym_thread_local] = ACTIONS(6695), + [anon_sym___thread] = ACTIONS(6695), + [anon_sym_CG_EXTERN] = ACTIONS(6695), + [anon_sym_CG_INLINE] = ACTIONS(6695), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6695), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6695), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6695), + [anon_sym_IBOutlet] = ACTIONS(6695), + [anon_sym_IBInspectable] = ACTIONS(6695), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6695), + [anon_sym_NS_INLINE] = ACTIONS(6695), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6695), + [anon_sym_OBJC_EXPORT] = ACTIONS(6695), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6695), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6695), + [anon_sym_const] = ACTIONS(6695), + [anon_sym_constexpr] = ACTIONS(6695), + [anon_sym_volatile] = ACTIONS(6695), + [anon_sym_restrict] = ACTIONS(6695), + [anon_sym___restrict__] = ACTIONS(6695), + [anon_sym__Atomic] = ACTIONS(6695), + [anon_sym__Noreturn] = ACTIONS(6695), + [anon_sym__Nonnull] = ACTIONS(6695), + [anon_sym_nullable] = ACTIONS(6695), + [anon_sym__Complex] = ACTIONS(6695), + [anon_sym__Nullable] = ACTIONS(6695), + [anon_sym__Nullable_result] = ACTIONS(6695), + [anon_sym__Null_unspecified] = ACTIONS(6695), + [anon_sym___autoreleasing] = ACTIONS(6695), + [anon_sym___block] = ACTIONS(6695), + [anon_sym___bridge] = ACTIONS(6695), + [anon_sym___bridge_retained] = ACTIONS(6695), + [anon_sym___bridge_transfer] = ACTIONS(6695), + [anon_sym___complex] = ACTIONS(6695), + [anon_sym___const] = ACTIONS(6695), + [anon_sym___imag] = ACTIONS(6695), + [anon_sym___kindof] = ACTIONS(6695), + [anon_sym___nonnull] = ACTIONS(6695), + [anon_sym___nullable] = ACTIONS(6695), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6695), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6695), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6695), + [anon_sym___real] = ACTIONS(6695), + [anon_sym___strong] = ACTIONS(6695), + [anon_sym___unsafe_unretained] = ACTIONS(6695), + [anon_sym___unused] = ACTIONS(6695), + [anon_sym___weak] = ACTIONS(6695), + [anon_sym_alignas] = ACTIONS(6695), + [anon_sym__Alignas] = ACTIONS(6695), + [sym_primitive_type] = ACTIONS(6695), + [anon_sym_enum] = ACTIONS(6695), + [anon_sym_struct] = ACTIONS(6695), + [anon_sym_union] = ACTIONS(6695), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6695), + [anon_sym___typeof] = ACTIONS(6695), + [anon_sym_typeof] = ACTIONS(6695), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6695), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6695), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6695), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6695), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6695), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6695), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6695), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6695), + [anon_sym_NS_AVAILABLE] = ACTIONS(6695), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6695), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_API_AVAILABLE] = ACTIONS(6695), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_API_DEPRECATED] = ACTIONS(6695), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6695), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6695), + [anon_sym___deprecated_msg] = ACTIONS(6695), + [anon_sym___deprecated_enum_msg] = ACTIONS(6695), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6695), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6695), + [anon_sym_BOOL] = ACTIONS(6695), + [anon_sym_IMP] = ACTIONS(6695), + [anon_sym_SEL] = ACTIONS(6695), + [anon_sym_Class] = ACTIONS(6695), + [anon_sym_id] = ACTIONS(6695), + [anon_sym_ATdefs] = ACTIONS(6697), + }, + [2636] = { + [sym_identifier] = ACTIONS(6683), + [aux_sym_preproc_def_token1] = ACTIONS(6683), + [aux_sym_preproc_if_token1] = ACTIONS(6683), + [aux_sym_preproc_if_token2] = ACTIONS(6683), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6683), + [aux_sym_preproc_else_token1] = ACTIONS(6683), + [aux_sym_preproc_elif_token1] = ACTIONS(6683), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6683), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6683), + [sym_preproc_directive] = ACTIONS(6683), + [anon_sym___extension__] = ACTIONS(6683), + [anon_sym_extern] = ACTIONS(6683), + [anon_sym___attribute__] = ACTIONS(6683), + [anon_sym___attribute] = ACTIONS(6683), + [anon_sym_noreturn] = ACTIONS(6683), + [anon_sym_LBRACK] = ACTIONS(6685), + [anon_sym___declspec] = ACTIONS(6683), + [anon_sym_signed] = ACTIONS(6683), + [anon_sym_unsigned] = ACTIONS(6683), + [anon_sym_long] = ACTIONS(6683), + [anon_sym_short] = ACTIONS(6683), + [anon_sym_static] = ACTIONS(6683), + [anon_sym_auto] = ACTIONS(6683), + [anon_sym_register] = ACTIONS(6683), + [anon_sym_inline] = ACTIONS(6683), + [anon_sym___inline] = ACTIONS(6683), + [anon_sym___inline__] = ACTIONS(6683), + [anon_sym___forceinline] = ACTIONS(6683), + [anon_sym_thread_local] = ACTIONS(6683), + [anon_sym___thread] = ACTIONS(6683), + [anon_sym_CG_EXTERN] = ACTIONS(6683), + [anon_sym_CG_INLINE] = ACTIONS(6683), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6683), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6683), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6683), + [anon_sym_IBOutlet] = ACTIONS(6683), + [anon_sym_IBInspectable] = ACTIONS(6683), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6683), + [anon_sym_NS_INLINE] = ACTIONS(6683), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6683), + [anon_sym_OBJC_EXPORT] = ACTIONS(6683), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6683), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6683), + [anon_sym_const] = ACTIONS(6683), + [anon_sym_constexpr] = ACTIONS(6683), + [anon_sym_volatile] = ACTIONS(6683), + [anon_sym_restrict] = ACTIONS(6683), + [anon_sym___restrict__] = ACTIONS(6683), + [anon_sym__Atomic] = ACTIONS(6683), + [anon_sym__Noreturn] = ACTIONS(6683), + [anon_sym__Nonnull] = ACTIONS(6683), + [anon_sym_nullable] = ACTIONS(6683), + [anon_sym__Complex] = ACTIONS(6683), + [anon_sym__Nullable] = ACTIONS(6683), + [anon_sym__Nullable_result] = ACTIONS(6683), + [anon_sym__Null_unspecified] = ACTIONS(6683), + [anon_sym___autoreleasing] = ACTIONS(6683), + [anon_sym___block] = ACTIONS(6683), + [anon_sym___bridge] = ACTIONS(6683), + [anon_sym___bridge_retained] = ACTIONS(6683), + [anon_sym___bridge_transfer] = ACTIONS(6683), + [anon_sym___complex] = ACTIONS(6683), + [anon_sym___const] = ACTIONS(6683), + [anon_sym___imag] = ACTIONS(6683), + [anon_sym___kindof] = ACTIONS(6683), + [anon_sym___nonnull] = ACTIONS(6683), + [anon_sym___nullable] = ACTIONS(6683), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6683), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6683), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6683), + [anon_sym___real] = ACTIONS(6683), + [anon_sym___strong] = ACTIONS(6683), + [anon_sym___unsafe_unretained] = ACTIONS(6683), + [anon_sym___unused] = ACTIONS(6683), + [anon_sym___weak] = ACTIONS(6683), + [anon_sym_alignas] = ACTIONS(6683), + [anon_sym__Alignas] = ACTIONS(6683), + [sym_primitive_type] = ACTIONS(6683), + [anon_sym_enum] = ACTIONS(6683), + [anon_sym_struct] = ACTIONS(6683), + [anon_sym_union] = ACTIONS(6683), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6683), + [anon_sym___typeof] = ACTIONS(6683), + [anon_sym_typeof] = ACTIONS(6683), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6683), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6683), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6683), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6683), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6683), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6683), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6683), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6683), + [anon_sym_NS_AVAILABLE] = ACTIONS(6683), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6683), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_API_AVAILABLE] = ACTIONS(6683), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_API_DEPRECATED] = ACTIONS(6683), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6683), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6683), + [anon_sym___deprecated_msg] = ACTIONS(6683), + [anon_sym___deprecated_enum_msg] = ACTIONS(6683), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6683), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6683), + [anon_sym_BOOL] = ACTIONS(6683), + [anon_sym_IMP] = ACTIONS(6683), + [anon_sym_SEL] = ACTIONS(6683), + [anon_sym_Class] = ACTIONS(6683), + [anon_sym_id] = ACTIONS(6683), + [anon_sym_ATdefs] = ACTIONS(6685), + }, + [2637] = { + [sym_type_qualifier] = STATE(3446), + [sym_alignas_qualifier] = STATE(3575), + [sym_expression] = STATE(4575), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6400), + [anon_sym_noreturn] = ACTIONS(6402), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(6587), + [anon_sym_constexpr] = ACTIONS(6402), + [anon_sym_volatile] = ACTIONS(6402), + [anon_sym_restrict] = ACTIONS(6402), + [anon_sym___restrict__] = ACTIONS(6402), + [anon_sym__Atomic] = ACTIONS(6402), + [anon_sym__Noreturn] = ACTIONS(6402), + [anon_sym__Nonnull] = ACTIONS(6402), + [anon_sym_nullable] = ACTIONS(6402), + [anon_sym__Complex] = ACTIONS(6402), + [anon_sym__Nullable] = ACTIONS(6402), + [anon_sym__Nullable_result] = ACTIONS(6402), + [anon_sym__Null_unspecified] = ACTIONS(6402), + [anon_sym___autoreleasing] = ACTIONS(6402), + [anon_sym___block] = ACTIONS(6402), + [anon_sym___bridge] = ACTIONS(6402), + [anon_sym___bridge_retained] = ACTIONS(6402), + [anon_sym___bridge_transfer] = ACTIONS(6402), + [anon_sym___complex] = ACTIONS(6402), + [anon_sym___const] = ACTIONS(6402), + [anon_sym___imag] = ACTIONS(6410), + [anon_sym___kindof] = ACTIONS(6402), + [anon_sym___nonnull] = ACTIONS(6402), + [anon_sym___nullable] = ACTIONS(6402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6402), + [anon_sym___real] = ACTIONS(6410), + [anon_sym___strong] = ACTIONS(6402), + [anon_sym___unsafe_unretained] = ACTIONS(6402), + [anon_sym___unused] = ACTIONS(6402), + [anon_sym___weak] = ACTIONS(6402), + [anon_sym_alignas] = ACTIONS(6412), + [anon_sym__Alignas] = ACTIONS(6412), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2638] = { + [sym_identifier] = ACTIONS(6683), + [aux_sym_preproc_def_token1] = ACTIONS(6683), + [aux_sym_preproc_if_token1] = ACTIONS(6683), + [aux_sym_preproc_if_token2] = ACTIONS(6683), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6683), + [aux_sym_preproc_else_token1] = ACTIONS(6683), + [aux_sym_preproc_elif_token1] = ACTIONS(6683), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6683), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6683), + [sym_preproc_directive] = ACTIONS(6683), + [anon_sym___extension__] = ACTIONS(6683), + [anon_sym_extern] = ACTIONS(6683), + [anon_sym___attribute__] = ACTIONS(6683), + [anon_sym___attribute] = ACTIONS(6683), + [anon_sym_noreturn] = ACTIONS(6683), + [anon_sym_LBRACK] = ACTIONS(6685), + [anon_sym___declspec] = ACTIONS(6683), + [anon_sym_signed] = ACTIONS(6683), + [anon_sym_unsigned] = ACTIONS(6683), + [anon_sym_long] = ACTIONS(6683), + [anon_sym_short] = ACTIONS(6683), + [anon_sym_static] = ACTIONS(6683), + [anon_sym_auto] = ACTIONS(6683), + [anon_sym_register] = ACTIONS(6683), + [anon_sym_inline] = ACTIONS(6683), + [anon_sym___inline] = ACTIONS(6683), + [anon_sym___inline__] = ACTIONS(6683), + [anon_sym___forceinline] = ACTIONS(6683), + [anon_sym_thread_local] = ACTIONS(6683), + [anon_sym___thread] = ACTIONS(6683), + [anon_sym_CG_EXTERN] = ACTIONS(6683), + [anon_sym_CG_INLINE] = ACTIONS(6683), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6683), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6683), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6683), + [anon_sym_IBOutlet] = ACTIONS(6683), + [anon_sym_IBInspectable] = ACTIONS(6683), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6683), + [anon_sym_NS_INLINE] = ACTIONS(6683), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6683), + [anon_sym_OBJC_EXPORT] = ACTIONS(6683), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6683), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6683), + [anon_sym_const] = ACTIONS(6683), + [anon_sym_constexpr] = ACTIONS(6683), + [anon_sym_volatile] = ACTIONS(6683), + [anon_sym_restrict] = ACTIONS(6683), + [anon_sym___restrict__] = ACTIONS(6683), + [anon_sym__Atomic] = ACTIONS(6683), + [anon_sym__Noreturn] = ACTIONS(6683), + [anon_sym__Nonnull] = ACTIONS(6683), + [anon_sym_nullable] = ACTIONS(6683), + [anon_sym__Complex] = ACTIONS(6683), + [anon_sym__Nullable] = ACTIONS(6683), + [anon_sym__Nullable_result] = ACTIONS(6683), + [anon_sym__Null_unspecified] = ACTIONS(6683), + [anon_sym___autoreleasing] = ACTIONS(6683), + [anon_sym___block] = ACTIONS(6683), + [anon_sym___bridge] = ACTIONS(6683), + [anon_sym___bridge_retained] = ACTIONS(6683), + [anon_sym___bridge_transfer] = ACTIONS(6683), + [anon_sym___complex] = ACTIONS(6683), + [anon_sym___const] = ACTIONS(6683), + [anon_sym___imag] = ACTIONS(6683), + [anon_sym___kindof] = ACTIONS(6683), + [anon_sym___nonnull] = ACTIONS(6683), + [anon_sym___nullable] = ACTIONS(6683), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6683), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6683), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6683), + [anon_sym___real] = ACTIONS(6683), + [anon_sym___strong] = ACTIONS(6683), + [anon_sym___unsafe_unretained] = ACTIONS(6683), + [anon_sym___unused] = ACTIONS(6683), + [anon_sym___weak] = ACTIONS(6683), + [anon_sym_alignas] = ACTIONS(6683), + [anon_sym__Alignas] = ACTIONS(6683), + [sym_primitive_type] = ACTIONS(6683), + [anon_sym_enum] = ACTIONS(6683), + [anon_sym_struct] = ACTIONS(6683), + [anon_sym_union] = ACTIONS(6683), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6683), + [anon_sym___typeof] = ACTIONS(6683), + [anon_sym_typeof] = ACTIONS(6683), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6683), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6683), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6683), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6683), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6683), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6683), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6683), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6683), + [anon_sym_NS_AVAILABLE] = ACTIONS(6683), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6683), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_API_AVAILABLE] = ACTIONS(6683), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_API_DEPRECATED] = ACTIONS(6683), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6683), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6683), + [anon_sym___deprecated_msg] = ACTIONS(6683), + [anon_sym___deprecated_enum_msg] = ACTIONS(6683), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6683), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6683), + [anon_sym_BOOL] = ACTIONS(6683), + [anon_sym_IMP] = ACTIONS(6683), + [anon_sym_SEL] = ACTIONS(6683), + [anon_sym_Class] = ACTIONS(6683), + [anon_sym_id] = ACTIONS(6683), + [anon_sym_ATdefs] = ACTIONS(6685), + }, + [2639] = { + [sym_identifier] = ACTIONS(6687), + [aux_sym_preproc_def_token1] = ACTIONS(6687), + [aux_sym_preproc_if_token1] = ACTIONS(6687), + [aux_sym_preproc_if_token2] = ACTIONS(6687), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6687), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6687), + [aux_sym_preproc_else_token1] = ACTIONS(6687), + [aux_sym_preproc_elif_token1] = ACTIONS(6687), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6687), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6687), + [sym_preproc_directive] = ACTIONS(6687), + [anon_sym___extension__] = ACTIONS(6687), + [anon_sym_extern] = ACTIONS(6687), + [anon_sym___attribute__] = ACTIONS(6687), + [anon_sym___attribute] = ACTIONS(6687), + [anon_sym_noreturn] = ACTIONS(6687), + [anon_sym_LBRACK] = ACTIONS(6689), + [anon_sym___declspec] = ACTIONS(6687), + [anon_sym_signed] = ACTIONS(6687), + [anon_sym_unsigned] = ACTIONS(6687), + [anon_sym_long] = ACTIONS(6687), + [anon_sym_short] = ACTIONS(6687), + [anon_sym_static] = ACTIONS(6687), + [anon_sym_auto] = ACTIONS(6687), + [anon_sym_register] = ACTIONS(6687), + [anon_sym_inline] = ACTIONS(6687), + [anon_sym___inline] = ACTIONS(6687), + [anon_sym___inline__] = ACTIONS(6687), + [anon_sym___forceinline] = ACTIONS(6687), + [anon_sym_thread_local] = ACTIONS(6687), + [anon_sym___thread] = ACTIONS(6687), + [anon_sym_CG_EXTERN] = ACTIONS(6687), + [anon_sym_CG_INLINE] = ACTIONS(6687), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6687), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6687), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6687), + [anon_sym_IBOutlet] = ACTIONS(6687), + [anon_sym_IBInspectable] = ACTIONS(6687), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6687), + [anon_sym_NS_INLINE] = ACTIONS(6687), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6687), + [anon_sym_OBJC_EXPORT] = ACTIONS(6687), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6687), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6687), + [anon_sym_const] = ACTIONS(6687), + [anon_sym_constexpr] = ACTIONS(6687), + [anon_sym_volatile] = ACTIONS(6687), + [anon_sym_restrict] = ACTIONS(6687), + [anon_sym___restrict__] = ACTIONS(6687), + [anon_sym__Atomic] = ACTIONS(6687), + [anon_sym__Noreturn] = ACTIONS(6687), + [anon_sym__Nonnull] = ACTIONS(6687), + [anon_sym_nullable] = ACTIONS(6687), + [anon_sym__Complex] = ACTIONS(6687), + [anon_sym__Nullable] = ACTIONS(6687), + [anon_sym__Nullable_result] = ACTIONS(6687), + [anon_sym__Null_unspecified] = ACTIONS(6687), + [anon_sym___autoreleasing] = ACTIONS(6687), + [anon_sym___block] = ACTIONS(6687), + [anon_sym___bridge] = ACTIONS(6687), + [anon_sym___bridge_retained] = ACTIONS(6687), + [anon_sym___bridge_transfer] = ACTIONS(6687), + [anon_sym___complex] = ACTIONS(6687), + [anon_sym___const] = ACTIONS(6687), + [anon_sym___imag] = ACTIONS(6687), + [anon_sym___kindof] = ACTIONS(6687), + [anon_sym___nonnull] = ACTIONS(6687), + [anon_sym___nullable] = ACTIONS(6687), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6687), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6687), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6687), + [anon_sym___real] = ACTIONS(6687), + [anon_sym___strong] = ACTIONS(6687), + [anon_sym___unsafe_unretained] = ACTIONS(6687), + [anon_sym___unused] = ACTIONS(6687), + [anon_sym___weak] = ACTIONS(6687), + [anon_sym_alignas] = ACTIONS(6687), + [anon_sym__Alignas] = ACTIONS(6687), + [sym_primitive_type] = ACTIONS(6687), + [anon_sym_enum] = ACTIONS(6687), + [anon_sym_struct] = ACTIONS(6687), + [anon_sym_union] = ACTIONS(6687), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6687), + [anon_sym___typeof] = ACTIONS(6687), + [anon_sym_typeof] = ACTIONS(6687), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6687), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6687), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6687), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6687), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6687), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6687), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6687), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6687), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6687), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6687), + [anon_sym_NS_AVAILABLE] = ACTIONS(6687), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6687), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6687), + [anon_sym_API_AVAILABLE] = ACTIONS(6687), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6687), + [anon_sym_API_DEPRECATED] = ACTIONS(6687), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6687), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6687), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6687), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6687), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6687), + [anon_sym___deprecated_msg] = ACTIONS(6687), + [anon_sym___deprecated_enum_msg] = ACTIONS(6687), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6687), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6687), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6687), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6687), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6687), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6687), + [anon_sym_BOOL] = ACTIONS(6687), + [anon_sym_IMP] = ACTIONS(6687), + [anon_sym_SEL] = ACTIONS(6687), + [anon_sym_Class] = ACTIONS(6687), + [anon_sym_id] = ACTIONS(6687), + [anon_sym_ATdefs] = ACTIONS(6689), + }, + [2640] = { + [sym_identifier] = ACTIONS(6695), + [aux_sym_preproc_def_token1] = ACTIONS(6695), + [aux_sym_preproc_if_token1] = ACTIONS(6695), + [aux_sym_preproc_if_token2] = ACTIONS(6695), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6695), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6695), + [aux_sym_preproc_else_token1] = ACTIONS(6695), + [aux_sym_preproc_elif_token1] = ACTIONS(6695), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6695), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6695), + [sym_preproc_directive] = ACTIONS(6695), + [anon_sym___extension__] = ACTIONS(6695), + [anon_sym_extern] = ACTIONS(6695), + [anon_sym___attribute__] = ACTIONS(6695), + [anon_sym___attribute] = ACTIONS(6695), + [anon_sym_noreturn] = ACTIONS(6695), + [anon_sym_LBRACK] = ACTIONS(6697), + [anon_sym___declspec] = ACTIONS(6695), + [anon_sym_signed] = ACTIONS(6695), + [anon_sym_unsigned] = ACTIONS(6695), + [anon_sym_long] = ACTIONS(6695), + [anon_sym_short] = ACTIONS(6695), + [anon_sym_static] = ACTIONS(6695), + [anon_sym_auto] = ACTIONS(6695), + [anon_sym_register] = ACTIONS(6695), + [anon_sym_inline] = ACTIONS(6695), + [anon_sym___inline] = ACTIONS(6695), + [anon_sym___inline__] = ACTIONS(6695), + [anon_sym___forceinline] = ACTIONS(6695), + [anon_sym_thread_local] = ACTIONS(6695), + [anon_sym___thread] = ACTIONS(6695), + [anon_sym_CG_EXTERN] = ACTIONS(6695), + [anon_sym_CG_INLINE] = ACTIONS(6695), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6695), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6695), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6695), + [anon_sym_IBOutlet] = ACTIONS(6695), + [anon_sym_IBInspectable] = ACTIONS(6695), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6695), + [anon_sym_NS_INLINE] = ACTIONS(6695), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6695), + [anon_sym_OBJC_EXPORT] = ACTIONS(6695), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6695), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6695), + [anon_sym_const] = ACTIONS(6695), + [anon_sym_constexpr] = ACTIONS(6695), + [anon_sym_volatile] = ACTIONS(6695), + [anon_sym_restrict] = ACTIONS(6695), + [anon_sym___restrict__] = ACTIONS(6695), + [anon_sym__Atomic] = ACTIONS(6695), + [anon_sym__Noreturn] = ACTIONS(6695), + [anon_sym__Nonnull] = ACTIONS(6695), + [anon_sym_nullable] = ACTIONS(6695), + [anon_sym__Complex] = ACTIONS(6695), + [anon_sym__Nullable] = ACTIONS(6695), + [anon_sym__Nullable_result] = ACTIONS(6695), + [anon_sym__Null_unspecified] = ACTIONS(6695), + [anon_sym___autoreleasing] = ACTIONS(6695), + [anon_sym___block] = ACTIONS(6695), + [anon_sym___bridge] = ACTIONS(6695), + [anon_sym___bridge_retained] = ACTIONS(6695), + [anon_sym___bridge_transfer] = ACTIONS(6695), + [anon_sym___complex] = ACTIONS(6695), + [anon_sym___const] = ACTIONS(6695), + [anon_sym___imag] = ACTIONS(6695), + [anon_sym___kindof] = ACTIONS(6695), + [anon_sym___nonnull] = ACTIONS(6695), + [anon_sym___nullable] = ACTIONS(6695), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6695), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6695), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6695), + [anon_sym___real] = ACTIONS(6695), + [anon_sym___strong] = ACTIONS(6695), + [anon_sym___unsafe_unretained] = ACTIONS(6695), + [anon_sym___unused] = ACTIONS(6695), + [anon_sym___weak] = ACTIONS(6695), + [anon_sym_alignas] = ACTIONS(6695), + [anon_sym__Alignas] = ACTIONS(6695), + [sym_primitive_type] = ACTIONS(6695), + [anon_sym_enum] = ACTIONS(6695), + [anon_sym_struct] = ACTIONS(6695), + [anon_sym_union] = ACTIONS(6695), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6695), + [anon_sym___typeof] = ACTIONS(6695), + [anon_sym_typeof] = ACTIONS(6695), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6695), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6695), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6695), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6695), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6695), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6695), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6695), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6695), + [anon_sym_NS_AVAILABLE] = ACTIONS(6695), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6695), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_API_AVAILABLE] = ACTIONS(6695), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_API_DEPRECATED] = ACTIONS(6695), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6695), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6695), + [anon_sym___deprecated_msg] = ACTIONS(6695), + [anon_sym___deprecated_enum_msg] = ACTIONS(6695), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6695), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6695), + [anon_sym_BOOL] = ACTIONS(6695), + [anon_sym_IMP] = ACTIONS(6695), + [anon_sym_SEL] = ACTIONS(6695), + [anon_sym_Class] = ACTIONS(6695), + [anon_sym_id] = ACTIONS(6695), + [anon_sym_ATdefs] = ACTIONS(6697), + }, + [2641] = { + [sym_identifier] = ACTIONS(6695), + [aux_sym_preproc_def_token1] = ACTIONS(6695), + [aux_sym_preproc_if_token1] = ACTIONS(6695), + [aux_sym_preproc_if_token2] = ACTIONS(6695), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6695), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6695), + [aux_sym_preproc_else_token1] = ACTIONS(6695), + [aux_sym_preproc_elif_token1] = ACTIONS(6695), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6695), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6695), + [sym_preproc_directive] = ACTIONS(6695), + [anon_sym___extension__] = ACTIONS(6695), + [anon_sym_extern] = ACTIONS(6695), + [anon_sym___attribute__] = ACTIONS(6695), + [anon_sym___attribute] = ACTIONS(6695), + [anon_sym_noreturn] = ACTIONS(6695), + [anon_sym_LBRACK] = ACTIONS(6697), + [anon_sym___declspec] = ACTIONS(6695), + [anon_sym_signed] = ACTIONS(6695), + [anon_sym_unsigned] = ACTIONS(6695), + [anon_sym_long] = ACTIONS(6695), + [anon_sym_short] = ACTIONS(6695), + [anon_sym_static] = ACTIONS(6695), + [anon_sym_auto] = ACTIONS(6695), + [anon_sym_register] = ACTIONS(6695), + [anon_sym_inline] = ACTIONS(6695), + [anon_sym___inline] = ACTIONS(6695), + [anon_sym___inline__] = ACTIONS(6695), + [anon_sym___forceinline] = ACTIONS(6695), + [anon_sym_thread_local] = ACTIONS(6695), + [anon_sym___thread] = ACTIONS(6695), + [anon_sym_CG_EXTERN] = ACTIONS(6695), + [anon_sym_CG_INLINE] = ACTIONS(6695), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6695), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6695), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6695), + [anon_sym_IBOutlet] = ACTIONS(6695), + [anon_sym_IBInspectable] = ACTIONS(6695), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6695), + [anon_sym_NS_INLINE] = ACTIONS(6695), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6695), + [anon_sym_OBJC_EXPORT] = ACTIONS(6695), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6695), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6695), + [anon_sym_const] = ACTIONS(6695), + [anon_sym_constexpr] = ACTIONS(6695), + [anon_sym_volatile] = ACTIONS(6695), + [anon_sym_restrict] = ACTIONS(6695), + [anon_sym___restrict__] = ACTIONS(6695), + [anon_sym__Atomic] = ACTIONS(6695), + [anon_sym__Noreturn] = ACTIONS(6695), + [anon_sym__Nonnull] = ACTIONS(6695), + [anon_sym_nullable] = ACTIONS(6695), + [anon_sym__Complex] = ACTIONS(6695), + [anon_sym__Nullable] = ACTIONS(6695), + [anon_sym__Nullable_result] = ACTIONS(6695), + [anon_sym__Null_unspecified] = ACTIONS(6695), + [anon_sym___autoreleasing] = ACTIONS(6695), + [anon_sym___block] = ACTIONS(6695), + [anon_sym___bridge] = ACTIONS(6695), + [anon_sym___bridge_retained] = ACTIONS(6695), + [anon_sym___bridge_transfer] = ACTIONS(6695), + [anon_sym___complex] = ACTIONS(6695), + [anon_sym___const] = ACTIONS(6695), + [anon_sym___imag] = ACTIONS(6695), + [anon_sym___kindof] = ACTIONS(6695), + [anon_sym___nonnull] = ACTIONS(6695), + [anon_sym___nullable] = ACTIONS(6695), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6695), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6695), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6695), + [anon_sym___real] = ACTIONS(6695), + [anon_sym___strong] = ACTIONS(6695), + [anon_sym___unsafe_unretained] = ACTIONS(6695), + [anon_sym___unused] = ACTIONS(6695), + [anon_sym___weak] = ACTIONS(6695), + [anon_sym_alignas] = ACTIONS(6695), + [anon_sym__Alignas] = ACTIONS(6695), + [sym_primitive_type] = ACTIONS(6695), + [anon_sym_enum] = ACTIONS(6695), + [anon_sym_struct] = ACTIONS(6695), + [anon_sym_union] = ACTIONS(6695), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6695), + [anon_sym___typeof] = ACTIONS(6695), + [anon_sym_typeof] = ACTIONS(6695), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6695), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6695), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6695), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6695), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6695), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6695), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6695), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6695), + [anon_sym_NS_AVAILABLE] = ACTIONS(6695), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6695), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_API_AVAILABLE] = ACTIONS(6695), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_API_DEPRECATED] = ACTIONS(6695), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6695), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6695), + [anon_sym___deprecated_msg] = ACTIONS(6695), + [anon_sym___deprecated_enum_msg] = ACTIONS(6695), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6695), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6695), + [anon_sym_BOOL] = ACTIONS(6695), + [anon_sym_IMP] = ACTIONS(6695), + [anon_sym_SEL] = ACTIONS(6695), + [anon_sym_Class] = ACTIONS(6695), + [anon_sym_id] = ACTIONS(6695), + [anon_sym_ATdefs] = ACTIONS(6697), + }, + [2642] = { + [sym_identifier] = ACTIONS(6699), + [aux_sym_preproc_def_token1] = ACTIONS(6699), + [aux_sym_preproc_if_token1] = ACTIONS(6699), + [aux_sym_preproc_if_token2] = ACTIONS(6699), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6699), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6699), + [aux_sym_preproc_else_token1] = ACTIONS(6699), + [aux_sym_preproc_elif_token1] = ACTIONS(6699), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6699), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6699), + [sym_preproc_directive] = ACTIONS(6699), + [anon_sym___extension__] = ACTIONS(6699), + [anon_sym_extern] = ACTIONS(6699), + [anon_sym___attribute__] = ACTIONS(6699), + [anon_sym___attribute] = ACTIONS(6699), + [anon_sym_noreturn] = ACTIONS(6699), + [anon_sym_LBRACK] = ACTIONS(6701), + [anon_sym___declspec] = ACTIONS(6699), + [anon_sym_signed] = ACTIONS(6699), + [anon_sym_unsigned] = ACTIONS(6699), + [anon_sym_long] = ACTIONS(6699), + [anon_sym_short] = ACTIONS(6699), + [anon_sym_static] = ACTIONS(6699), + [anon_sym_auto] = ACTIONS(6699), + [anon_sym_register] = ACTIONS(6699), + [anon_sym_inline] = ACTIONS(6699), + [anon_sym___inline] = ACTIONS(6699), + [anon_sym___inline__] = ACTIONS(6699), + [anon_sym___forceinline] = ACTIONS(6699), + [anon_sym_thread_local] = ACTIONS(6699), + [anon_sym___thread] = ACTIONS(6699), + [anon_sym_CG_EXTERN] = ACTIONS(6699), + [anon_sym_CG_INLINE] = ACTIONS(6699), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6699), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6699), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6699), + [anon_sym_IBOutlet] = ACTIONS(6699), + [anon_sym_IBInspectable] = ACTIONS(6699), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6699), + [anon_sym_NS_INLINE] = ACTIONS(6699), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6699), + [anon_sym_OBJC_EXPORT] = ACTIONS(6699), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6699), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6699), + [anon_sym_const] = ACTIONS(6699), + [anon_sym_constexpr] = ACTIONS(6699), + [anon_sym_volatile] = ACTIONS(6699), + [anon_sym_restrict] = ACTIONS(6699), + [anon_sym___restrict__] = ACTIONS(6699), + [anon_sym__Atomic] = ACTIONS(6699), + [anon_sym__Noreturn] = ACTIONS(6699), + [anon_sym__Nonnull] = ACTIONS(6699), + [anon_sym_nullable] = ACTIONS(6699), + [anon_sym__Complex] = ACTIONS(6699), + [anon_sym__Nullable] = ACTIONS(6699), + [anon_sym__Nullable_result] = ACTIONS(6699), + [anon_sym__Null_unspecified] = ACTIONS(6699), + [anon_sym___autoreleasing] = ACTIONS(6699), + [anon_sym___block] = ACTIONS(6699), + [anon_sym___bridge] = ACTIONS(6699), + [anon_sym___bridge_retained] = ACTIONS(6699), + [anon_sym___bridge_transfer] = ACTIONS(6699), + [anon_sym___complex] = ACTIONS(6699), + [anon_sym___const] = ACTIONS(6699), + [anon_sym___imag] = ACTIONS(6699), + [anon_sym___kindof] = ACTIONS(6699), + [anon_sym___nonnull] = ACTIONS(6699), + [anon_sym___nullable] = ACTIONS(6699), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6699), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6699), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6699), + [anon_sym___real] = ACTIONS(6699), + [anon_sym___strong] = ACTIONS(6699), + [anon_sym___unsafe_unretained] = ACTIONS(6699), + [anon_sym___unused] = ACTIONS(6699), + [anon_sym___weak] = ACTIONS(6699), + [anon_sym_alignas] = ACTIONS(6699), + [anon_sym__Alignas] = ACTIONS(6699), + [sym_primitive_type] = ACTIONS(6699), + [anon_sym_enum] = ACTIONS(6699), + [anon_sym_struct] = ACTIONS(6699), + [anon_sym_union] = ACTIONS(6699), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6699), + [anon_sym___typeof] = ACTIONS(6699), + [anon_sym_typeof] = ACTIONS(6699), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6699), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6699), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6699), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6699), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6699), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6699), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6699), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6699), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6699), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6699), + [anon_sym_NS_AVAILABLE] = ACTIONS(6699), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6699), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6699), + [anon_sym_API_AVAILABLE] = ACTIONS(6699), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6699), + [anon_sym_API_DEPRECATED] = ACTIONS(6699), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6699), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6699), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6699), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6699), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6699), + [anon_sym___deprecated_msg] = ACTIONS(6699), + [anon_sym___deprecated_enum_msg] = ACTIONS(6699), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6699), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6699), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6699), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6699), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6699), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6699), + [anon_sym_BOOL] = ACTIONS(6699), + [anon_sym_IMP] = ACTIONS(6699), + [anon_sym_SEL] = ACTIONS(6699), + [anon_sym_Class] = ACTIONS(6699), + [anon_sym_id] = ACTIONS(6699), + [anon_sym_ATdefs] = ACTIONS(6701), + }, + [2643] = { + [sym_type_qualifier] = STATE(3446), + [sym_alignas_qualifier] = STATE(3575), + [sym_expression] = STATE(4553), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym__type_definition_type_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6400), + [anon_sym_noreturn] = ACTIONS(6402), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(6587), + [anon_sym_constexpr] = ACTIONS(6402), + [anon_sym_volatile] = ACTIONS(6402), + [anon_sym_restrict] = ACTIONS(6402), + [anon_sym___restrict__] = ACTIONS(6402), + [anon_sym__Atomic] = ACTIONS(6402), + [anon_sym__Noreturn] = ACTIONS(6402), + [anon_sym__Nonnull] = ACTIONS(6402), + [anon_sym_nullable] = ACTIONS(6402), + [anon_sym__Complex] = ACTIONS(6402), + [anon_sym__Nullable] = ACTIONS(6402), + [anon_sym__Nullable_result] = ACTIONS(6402), + [anon_sym__Null_unspecified] = ACTIONS(6402), + [anon_sym___autoreleasing] = ACTIONS(6402), + [anon_sym___block] = ACTIONS(6402), + [anon_sym___bridge] = ACTIONS(6402), + [anon_sym___bridge_retained] = ACTIONS(6402), + [anon_sym___bridge_transfer] = ACTIONS(6402), + [anon_sym___complex] = ACTIONS(6402), + [anon_sym___const] = ACTIONS(6402), + [anon_sym___imag] = ACTIONS(6410), + [anon_sym___kindof] = ACTIONS(6402), + [anon_sym___nonnull] = ACTIONS(6402), + [anon_sym___nullable] = ACTIONS(6402), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6402), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6402), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6402), + [anon_sym___real] = ACTIONS(6410), + [anon_sym___strong] = ACTIONS(6402), + [anon_sym___unsafe_unretained] = ACTIONS(6402), + [anon_sym___unused] = ACTIONS(6402), + [anon_sym___weak] = ACTIONS(6402), + [anon_sym_alignas] = ACTIONS(6412), + [anon_sym__Alignas] = ACTIONS(6412), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2644] = { + [sym_identifier] = ACTIONS(6703), + [aux_sym_preproc_def_token1] = ACTIONS(6703), + [aux_sym_preproc_if_token1] = ACTIONS(6703), + [aux_sym_preproc_if_token2] = ACTIONS(6703), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6703), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6703), + [aux_sym_preproc_else_token1] = ACTIONS(6703), + [aux_sym_preproc_elif_token1] = ACTIONS(6703), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6703), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6703), + [sym_preproc_directive] = ACTIONS(6703), + [anon_sym___extension__] = ACTIONS(6703), + [anon_sym_extern] = ACTIONS(6703), + [anon_sym___attribute__] = ACTIONS(6703), + [anon_sym___attribute] = ACTIONS(6703), + [anon_sym_noreturn] = ACTIONS(6703), + [anon_sym_LBRACK] = ACTIONS(6705), + [anon_sym___declspec] = ACTIONS(6703), + [anon_sym_signed] = ACTIONS(6703), + [anon_sym_unsigned] = ACTIONS(6703), + [anon_sym_long] = ACTIONS(6703), + [anon_sym_short] = ACTIONS(6703), + [anon_sym_static] = ACTIONS(6703), + [anon_sym_auto] = ACTIONS(6703), + [anon_sym_register] = ACTIONS(6703), + [anon_sym_inline] = ACTIONS(6703), + [anon_sym___inline] = ACTIONS(6703), + [anon_sym___inline__] = ACTIONS(6703), + [anon_sym___forceinline] = ACTIONS(6703), + [anon_sym_thread_local] = ACTIONS(6703), + [anon_sym___thread] = ACTIONS(6703), + [anon_sym_CG_EXTERN] = ACTIONS(6703), + [anon_sym_CG_INLINE] = ACTIONS(6703), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6703), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6703), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6703), + [anon_sym_IBOutlet] = ACTIONS(6703), + [anon_sym_IBInspectable] = ACTIONS(6703), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6703), + [anon_sym_NS_INLINE] = ACTIONS(6703), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6703), + [anon_sym_OBJC_EXPORT] = ACTIONS(6703), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6703), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6703), + [anon_sym_const] = ACTIONS(6703), + [anon_sym_constexpr] = ACTIONS(6703), + [anon_sym_volatile] = ACTIONS(6703), + [anon_sym_restrict] = ACTIONS(6703), + [anon_sym___restrict__] = ACTIONS(6703), + [anon_sym__Atomic] = ACTIONS(6703), + [anon_sym__Noreturn] = ACTIONS(6703), + [anon_sym__Nonnull] = ACTIONS(6703), + [anon_sym_nullable] = ACTIONS(6703), + [anon_sym__Complex] = ACTIONS(6703), + [anon_sym__Nullable] = ACTIONS(6703), + [anon_sym__Nullable_result] = ACTIONS(6703), + [anon_sym__Null_unspecified] = ACTIONS(6703), + [anon_sym___autoreleasing] = ACTIONS(6703), + [anon_sym___block] = ACTIONS(6703), + [anon_sym___bridge] = ACTIONS(6703), + [anon_sym___bridge_retained] = ACTIONS(6703), + [anon_sym___bridge_transfer] = ACTIONS(6703), + [anon_sym___complex] = ACTIONS(6703), + [anon_sym___const] = ACTIONS(6703), + [anon_sym___imag] = ACTIONS(6703), + [anon_sym___kindof] = ACTIONS(6703), + [anon_sym___nonnull] = ACTIONS(6703), + [anon_sym___nullable] = ACTIONS(6703), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6703), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6703), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6703), + [anon_sym___real] = ACTIONS(6703), + [anon_sym___strong] = ACTIONS(6703), + [anon_sym___unsafe_unretained] = ACTIONS(6703), + [anon_sym___unused] = ACTIONS(6703), + [anon_sym___weak] = ACTIONS(6703), + [anon_sym_alignas] = ACTIONS(6703), + [anon_sym__Alignas] = ACTIONS(6703), + [sym_primitive_type] = ACTIONS(6703), + [anon_sym_enum] = ACTIONS(6703), + [anon_sym_struct] = ACTIONS(6703), + [anon_sym_union] = ACTIONS(6703), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6703), + [anon_sym___typeof] = ACTIONS(6703), + [anon_sym_typeof] = ACTIONS(6703), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6703), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6703), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6703), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6703), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6703), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6703), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6703), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6703), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6703), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6703), + [anon_sym_NS_AVAILABLE] = ACTIONS(6703), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6703), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6703), + [anon_sym_API_AVAILABLE] = ACTIONS(6703), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6703), + [anon_sym_API_DEPRECATED] = ACTIONS(6703), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6703), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6703), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6703), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6703), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6703), + [anon_sym___deprecated_msg] = ACTIONS(6703), + [anon_sym___deprecated_enum_msg] = ACTIONS(6703), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6703), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6703), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6703), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6703), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6703), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6703), + [anon_sym_BOOL] = ACTIONS(6703), + [anon_sym_IMP] = ACTIONS(6703), + [anon_sym_SEL] = ACTIONS(6703), + [anon_sym_Class] = ACTIONS(6703), + [anon_sym_id] = ACTIONS(6703), + [anon_sym_ATdefs] = ACTIONS(6705), + }, + [2645] = { + [sym_identifier] = ACTIONS(6707), + [aux_sym_preproc_def_token1] = ACTIONS(6707), + [aux_sym_preproc_if_token1] = ACTIONS(6707), + [aux_sym_preproc_if_token2] = ACTIONS(6707), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6707), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6707), + [aux_sym_preproc_else_token1] = ACTIONS(6707), + [aux_sym_preproc_elif_token1] = ACTIONS(6707), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6707), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6707), + [sym_preproc_directive] = ACTIONS(6707), + [anon_sym___extension__] = ACTIONS(6707), + [anon_sym_extern] = ACTIONS(6707), + [anon_sym___attribute__] = ACTIONS(6707), + [anon_sym___attribute] = ACTIONS(6707), + [anon_sym_noreturn] = ACTIONS(6707), + [anon_sym_LBRACK] = ACTIONS(6709), + [anon_sym___declspec] = ACTIONS(6707), + [anon_sym_signed] = ACTIONS(6707), + [anon_sym_unsigned] = ACTIONS(6707), + [anon_sym_long] = ACTIONS(6707), + [anon_sym_short] = ACTIONS(6707), + [anon_sym_static] = ACTIONS(6707), + [anon_sym_auto] = ACTIONS(6707), + [anon_sym_register] = ACTIONS(6707), + [anon_sym_inline] = ACTIONS(6707), + [anon_sym___inline] = ACTIONS(6707), + [anon_sym___inline__] = ACTIONS(6707), + [anon_sym___forceinline] = ACTIONS(6707), + [anon_sym_thread_local] = ACTIONS(6707), + [anon_sym___thread] = ACTIONS(6707), + [anon_sym_CG_EXTERN] = ACTIONS(6707), + [anon_sym_CG_INLINE] = ACTIONS(6707), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6707), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6707), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6707), + [anon_sym_IBOutlet] = ACTIONS(6707), + [anon_sym_IBInspectable] = ACTIONS(6707), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6707), + [anon_sym_NS_INLINE] = ACTIONS(6707), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6707), + [anon_sym_OBJC_EXPORT] = ACTIONS(6707), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6707), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6707), + [anon_sym_const] = ACTIONS(6707), + [anon_sym_constexpr] = ACTIONS(6707), + [anon_sym_volatile] = ACTIONS(6707), + [anon_sym_restrict] = ACTIONS(6707), + [anon_sym___restrict__] = ACTIONS(6707), + [anon_sym__Atomic] = ACTIONS(6707), + [anon_sym__Noreturn] = ACTIONS(6707), + [anon_sym__Nonnull] = ACTIONS(6707), + [anon_sym_nullable] = ACTIONS(6707), + [anon_sym__Complex] = ACTIONS(6707), + [anon_sym__Nullable] = ACTIONS(6707), + [anon_sym__Nullable_result] = ACTIONS(6707), + [anon_sym__Null_unspecified] = ACTIONS(6707), + [anon_sym___autoreleasing] = ACTIONS(6707), + [anon_sym___block] = ACTIONS(6707), + [anon_sym___bridge] = ACTIONS(6707), + [anon_sym___bridge_retained] = ACTIONS(6707), + [anon_sym___bridge_transfer] = ACTIONS(6707), + [anon_sym___complex] = ACTIONS(6707), + [anon_sym___const] = ACTIONS(6707), + [anon_sym___imag] = ACTIONS(6707), + [anon_sym___kindof] = ACTIONS(6707), + [anon_sym___nonnull] = ACTIONS(6707), + [anon_sym___nullable] = ACTIONS(6707), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6707), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6707), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6707), + [anon_sym___real] = ACTIONS(6707), + [anon_sym___strong] = ACTIONS(6707), + [anon_sym___unsafe_unretained] = ACTIONS(6707), + [anon_sym___unused] = ACTIONS(6707), + [anon_sym___weak] = ACTIONS(6707), + [anon_sym_alignas] = ACTIONS(6707), + [anon_sym__Alignas] = ACTIONS(6707), + [sym_primitive_type] = ACTIONS(6707), + [anon_sym_enum] = ACTIONS(6707), + [anon_sym_struct] = ACTIONS(6707), + [anon_sym_union] = ACTIONS(6707), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6707), + [anon_sym___typeof] = ACTIONS(6707), + [anon_sym_typeof] = ACTIONS(6707), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6707), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6707), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6707), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6707), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6707), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6707), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6707), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6707), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6707), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6707), + [anon_sym_NS_AVAILABLE] = ACTIONS(6707), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6707), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6707), + [anon_sym_API_AVAILABLE] = ACTIONS(6707), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6707), + [anon_sym_API_DEPRECATED] = ACTIONS(6707), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6707), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6707), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6707), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6707), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6707), + [anon_sym___deprecated_msg] = ACTIONS(6707), + [anon_sym___deprecated_enum_msg] = ACTIONS(6707), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6707), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6707), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6707), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6707), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6707), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6707), + [anon_sym_BOOL] = ACTIONS(6707), + [anon_sym_IMP] = ACTIONS(6707), + [anon_sym_SEL] = ACTIONS(6707), + [anon_sym_Class] = ACTIONS(6707), + [anon_sym_id] = ACTIONS(6707), + [anon_sym_ATdefs] = ACTIONS(6709), + }, + [2646] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6639), + [anon_sym_COMMA] = ACTIONS(4470), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6595), + [anon_sym_PLUS] = ACTIONS(6595), + [anon_sym_STAR] = ACTIONS(6597), + [anon_sym_SLASH] = ACTIONS(6599), + [anon_sym_PERCENT] = ACTIONS(6597), + [anon_sym_PIPE_PIPE] = ACTIONS(6643), + [anon_sym_AMP_AMP] = ACTIONS(6645), + [anon_sym_PIPE] = ACTIONS(6647), + [anon_sym_CARET] = ACTIONS(6649), + [anon_sym_AMP] = ACTIONS(6601), + [anon_sym_EQ_EQ] = ACTIONS(6603), + [anon_sym_BANG_EQ] = ACTIONS(6603), + [anon_sym_GT] = ACTIONS(6605), + [anon_sym_GT_EQ] = ACTIONS(6607), + [anon_sym_LT_EQ] = ACTIONS(6607), + [anon_sym_LT] = ACTIONS(6605), + [anon_sym_LT_LT] = ACTIONS(6609), + [anon_sym_GT_GT] = ACTIONS(6609), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym___extension__] = ACTIONS(4470), + [anon_sym_extern] = ACTIONS(4470), + [anon_sym___attribute__] = ACTIONS(4470), + [anon_sym___attribute] = ACTIONS(4466), + [anon_sym_noreturn] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4470), + [anon_sym_static] = ACTIONS(4470), + [anon_sym_auto] = ACTIONS(4470), + [anon_sym_register] = ACTIONS(4470), + [anon_sym_inline] = ACTIONS(4470), + [anon_sym___inline] = ACTIONS(4466), + [anon_sym___inline__] = ACTIONS(4470), + [anon_sym___forceinline] = ACTIONS(4470), + [anon_sym_thread_local] = ACTIONS(4470), + [anon_sym___thread] = ACTIONS(4470), + [anon_sym_CG_EXTERN] = ACTIONS(4470), + [anon_sym_CG_INLINE] = ACTIONS(4470), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4470), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4470), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4470), + [anon_sym_IBOutlet] = ACTIONS(4470), + [anon_sym_IBInspectable] = ACTIONS(4470), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4470), + [anon_sym_NS_INLINE] = ACTIONS(4470), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4470), + [anon_sym_OBJC_EXPORT] = ACTIONS(4470), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4470), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4470), + [anon_sym_const] = ACTIONS(4466), + [anon_sym_constexpr] = ACTIONS(4470), + [anon_sym_volatile] = ACTIONS(4470), + [anon_sym_restrict] = ACTIONS(4470), + [anon_sym___restrict__] = ACTIONS(4470), + [anon_sym__Atomic] = ACTIONS(4470), + [anon_sym__Noreturn] = ACTIONS(4470), + [anon_sym__Nonnull] = ACTIONS(4470), + [anon_sym_nullable] = ACTIONS(4470), + [anon_sym__Complex] = ACTIONS(4470), + [anon_sym__Nullable] = ACTIONS(4466), + [anon_sym__Nullable_result] = ACTIONS(4470), + [anon_sym__Null_unspecified] = ACTIONS(4470), + [anon_sym___autoreleasing] = ACTIONS(4470), + [anon_sym___block] = ACTIONS(4470), + [anon_sym___bridge] = ACTIONS(4466), + [anon_sym___bridge_retained] = ACTIONS(4470), + [anon_sym___bridge_transfer] = ACTIONS(4470), + [anon_sym___complex] = ACTIONS(4470), + [anon_sym___const] = ACTIONS(4470), + [anon_sym___imag] = ACTIONS(4470), + [anon_sym___kindof] = ACTIONS(4470), + [anon_sym___nonnull] = ACTIONS(4470), + [anon_sym___nullable] = ACTIONS(4470), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4470), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4470), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4470), + [anon_sym___real] = ACTIONS(4470), + [anon_sym___strong] = ACTIONS(4470), + [anon_sym___unsafe_unretained] = ACTIONS(4470), + [anon_sym___unused] = ACTIONS(4470), + [anon_sym___weak] = ACTIONS(4470), + [anon_sym_alignas] = ACTIONS(4470), + [anon_sym__Alignas] = ACTIONS(4470), + [anon_sym_QMARK] = ACTIONS(6653), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4470), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4470), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4470), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4470), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4470), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4470), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4470), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4470), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4470), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4470), + [anon_sym_NS_AVAILABLE] = ACTIONS(4466), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4470), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4470), + [anon_sym_API_AVAILABLE] = ACTIONS(4470), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4470), + [anon_sym_API_DEPRECATED] = ACTIONS(4470), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4470), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4470), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4470), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4470), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4470), + [anon_sym___deprecated_msg] = ACTIONS(4470), + [anon_sym___deprecated_enum_msg] = ACTIONS(4470), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4470), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4470), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4470), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4470), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4470), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4470), + }, + [2647] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6639), + [anon_sym_COMMA] = ACTIONS(4484), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6595), + [anon_sym_PLUS] = ACTIONS(6595), + [anon_sym_STAR] = ACTIONS(6597), + [anon_sym_SLASH] = ACTIONS(6599), + [anon_sym_PERCENT] = ACTIONS(6597), + [anon_sym_PIPE_PIPE] = ACTIONS(6643), + [anon_sym_AMP_AMP] = ACTIONS(6645), + [anon_sym_PIPE] = ACTIONS(6647), + [anon_sym_CARET] = ACTIONS(6649), + [anon_sym_AMP] = ACTIONS(6601), + [anon_sym_EQ_EQ] = ACTIONS(6603), + [anon_sym_BANG_EQ] = ACTIONS(6603), + [anon_sym_GT] = ACTIONS(6605), + [anon_sym_GT_EQ] = ACTIONS(6607), + [anon_sym_LT_EQ] = ACTIONS(6607), + [anon_sym_LT] = ACTIONS(6605), + [anon_sym_LT_LT] = ACTIONS(6609), + [anon_sym_GT_GT] = ACTIONS(6609), + [anon_sym_SEMI] = ACTIONS(4484), + [anon_sym___extension__] = ACTIONS(4484), + [anon_sym_extern] = ACTIONS(4484), + [anon_sym___attribute__] = ACTIONS(4484), + [anon_sym___attribute] = ACTIONS(4482), + [anon_sym_noreturn] = ACTIONS(4484), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4484), + [anon_sym_static] = ACTIONS(4484), + [anon_sym_auto] = ACTIONS(4484), + [anon_sym_register] = ACTIONS(4484), + [anon_sym_inline] = ACTIONS(4484), + [anon_sym___inline] = ACTIONS(4482), + [anon_sym___inline__] = ACTIONS(4484), + [anon_sym___forceinline] = ACTIONS(4484), + [anon_sym_thread_local] = ACTIONS(4484), + [anon_sym___thread] = ACTIONS(4484), + [anon_sym_CG_EXTERN] = ACTIONS(4484), + [anon_sym_CG_INLINE] = ACTIONS(4484), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4484), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4484), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4484), + [anon_sym_IBOutlet] = ACTIONS(4484), + [anon_sym_IBInspectable] = ACTIONS(4484), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4484), + [anon_sym_NS_INLINE] = ACTIONS(4484), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4484), + [anon_sym_OBJC_EXPORT] = ACTIONS(4484), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4484), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4484), + [anon_sym_const] = ACTIONS(4482), + [anon_sym_constexpr] = ACTIONS(4484), + [anon_sym_volatile] = ACTIONS(4484), + [anon_sym_restrict] = ACTIONS(4484), + [anon_sym___restrict__] = ACTIONS(4484), + [anon_sym__Atomic] = ACTIONS(4484), + [anon_sym__Noreturn] = ACTIONS(4484), + [anon_sym__Nonnull] = ACTIONS(4484), + [anon_sym_nullable] = ACTIONS(4484), + [anon_sym__Complex] = ACTIONS(4484), + [anon_sym__Nullable] = ACTIONS(4482), + [anon_sym__Nullable_result] = ACTIONS(4484), + [anon_sym__Null_unspecified] = ACTIONS(4484), + [anon_sym___autoreleasing] = ACTIONS(4484), + [anon_sym___block] = ACTIONS(4484), + [anon_sym___bridge] = ACTIONS(4482), + [anon_sym___bridge_retained] = ACTIONS(4484), + [anon_sym___bridge_transfer] = ACTIONS(4484), + [anon_sym___complex] = ACTIONS(4484), + [anon_sym___const] = ACTIONS(4484), + [anon_sym___imag] = ACTIONS(4484), + [anon_sym___kindof] = ACTIONS(4484), + [anon_sym___nonnull] = ACTIONS(4484), + [anon_sym___nullable] = ACTIONS(4484), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4484), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4484), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4484), + [anon_sym___real] = ACTIONS(4484), + [anon_sym___strong] = ACTIONS(4484), + [anon_sym___unsafe_unretained] = ACTIONS(4484), + [anon_sym___unused] = ACTIONS(4484), + [anon_sym___weak] = ACTIONS(4484), + [anon_sym_alignas] = ACTIONS(4484), + [anon_sym__Alignas] = ACTIONS(4484), + [anon_sym_QMARK] = ACTIONS(4484), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4484), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4484), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4484), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4484), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4484), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4484), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4484), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4484), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4484), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4484), + [anon_sym_NS_AVAILABLE] = ACTIONS(4482), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4484), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4484), + [anon_sym_API_AVAILABLE] = ACTIONS(4484), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4484), + [anon_sym_API_DEPRECATED] = ACTIONS(4484), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4484), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4484), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4484), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4484), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4484), + [anon_sym___deprecated_msg] = ACTIONS(4484), + [anon_sym___deprecated_enum_msg] = ACTIONS(4484), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4484), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4484), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4484), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4484), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4484), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4484), + }, + [2648] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(4025), + [anon_sym_PLUS] = ACTIONS(4025), + [anon_sym_STAR] = ACTIONS(6597), + [anon_sym_SLASH] = ACTIONS(6599), + [anon_sym_PERCENT] = ACTIONS(6597), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(4025), + [anon_sym_GT_EQ] = ACTIONS(4027), + [anon_sym_LT_EQ] = ACTIONS(4027), + [anon_sym_LT] = ACTIONS(4025), + [anon_sym_LT_LT] = ACTIONS(4027), + [anon_sym_GT_GT] = ACTIONS(4027), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_extern] = ACTIONS(4027), + [anon_sym___attribute__] = ACTIONS(4027), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4027), + [anon_sym_register] = ACTIONS(4027), + [anon_sym_inline] = ACTIONS(4027), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4027), + [anon_sym___forceinline] = ACTIONS(4027), + [anon_sym_thread_local] = ACTIONS(4027), + [anon_sym___thread] = ACTIONS(4027), + [anon_sym_CG_EXTERN] = ACTIONS(4027), + [anon_sym_CG_INLINE] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4027), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4027), + [anon_sym_IBOutlet] = ACTIONS(4027), + [anon_sym_IBInspectable] = ACTIONS(4027), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4027), + [anon_sym_NS_INLINE] = ACTIONS(4027), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4027), + [anon_sym_OBJC_EXPORT] = ACTIONS(4027), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4027), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4027), + [anon_sym_volatile] = ACTIONS(4027), + [anon_sym_restrict] = ACTIONS(4027), + [anon_sym___restrict__] = ACTIONS(4027), + [anon_sym__Atomic] = ACTIONS(4027), + [anon_sym__Noreturn] = ACTIONS(4027), + [anon_sym__Nonnull] = ACTIONS(4027), + [anon_sym_nullable] = ACTIONS(4027), + [anon_sym__Complex] = ACTIONS(4027), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4027), + [anon_sym__Null_unspecified] = ACTIONS(4027), + [anon_sym___autoreleasing] = ACTIONS(4027), + [anon_sym___block] = ACTIONS(4027), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4027), + [anon_sym___bridge_transfer] = ACTIONS(4027), + [anon_sym___complex] = ACTIONS(4027), + [anon_sym___const] = ACTIONS(4027), + [anon_sym___imag] = ACTIONS(4027), + [anon_sym___kindof] = ACTIONS(4027), + [anon_sym___nonnull] = ACTIONS(4027), + [anon_sym___nullable] = ACTIONS(4027), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4027), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4027), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4027), + [anon_sym___real] = ACTIONS(4027), + [anon_sym___strong] = ACTIONS(4027), + [anon_sym___unsafe_unretained] = ACTIONS(4027), + [anon_sym___unused] = ACTIONS(4027), + [anon_sym___weak] = ACTIONS(4027), + [anon_sym_alignas] = ACTIONS(4027), + [anon_sym__Alignas] = ACTIONS(4027), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4027), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4027), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4027), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4027), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_API_AVAILABLE] = ACTIONS(4027), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_API_DEPRECATED] = ACTIONS(4027), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4027), + [anon_sym___deprecated_msg] = ACTIONS(4027), + [anon_sym___deprecated_enum_msg] = ACTIONS(4027), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4027), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4027), + }, + [2649] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6595), + [anon_sym_PLUS] = ACTIONS(6595), + [anon_sym_STAR] = ACTIONS(6597), + [anon_sym_SLASH] = ACTIONS(6599), + [anon_sym_PERCENT] = ACTIONS(6597), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(6645), + [anon_sym_PIPE] = ACTIONS(6647), + [anon_sym_CARET] = ACTIONS(6649), + [anon_sym_AMP] = ACTIONS(6601), + [anon_sym_EQ_EQ] = ACTIONS(6603), + [anon_sym_BANG_EQ] = ACTIONS(6603), + [anon_sym_GT] = ACTIONS(6605), + [anon_sym_GT_EQ] = ACTIONS(6607), + [anon_sym_LT_EQ] = ACTIONS(6607), + [anon_sym_LT] = ACTIONS(6605), + [anon_sym_LT_LT] = ACTIONS(6609), + [anon_sym_GT_GT] = ACTIONS(6609), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_extern] = ACTIONS(4027), + [anon_sym___attribute__] = ACTIONS(4027), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4027), + [anon_sym_register] = ACTIONS(4027), + [anon_sym_inline] = ACTIONS(4027), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4027), + [anon_sym___forceinline] = ACTIONS(4027), + [anon_sym_thread_local] = ACTIONS(4027), + [anon_sym___thread] = ACTIONS(4027), + [anon_sym_CG_EXTERN] = ACTIONS(4027), + [anon_sym_CG_INLINE] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4027), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4027), + [anon_sym_IBOutlet] = ACTIONS(4027), + [anon_sym_IBInspectable] = ACTIONS(4027), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4027), + [anon_sym_NS_INLINE] = ACTIONS(4027), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4027), + [anon_sym_OBJC_EXPORT] = ACTIONS(4027), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4027), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4027), + [anon_sym_volatile] = ACTIONS(4027), + [anon_sym_restrict] = ACTIONS(4027), + [anon_sym___restrict__] = ACTIONS(4027), + [anon_sym__Atomic] = ACTIONS(4027), + [anon_sym__Noreturn] = ACTIONS(4027), + [anon_sym__Nonnull] = ACTIONS(4027), + [anon_sym_nullable] = ACTIONS(4027), + [anon_sym__Complex] = ACTIONS(4027), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4027), + [anon_sym__Null_unspecified] = ACTIONS(4027), + [anon_sym___autoreleasing] = ACTIONS(4027), + [anon_sym___block] = ACTIONS(4027), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4027), + [anon_sym___bridge_transfer] = ACTIONS(4027), + [anon_sym___complex] = ACTIONS(4027), + [anon_sym___const] = ACTIONS(4027), + [anon_sym___imag] = ACTIONS(4027), + [anon_sym___kindof] = ACTIONS(4027), + [anon_sym___nonnull] = ACTIONS(4027), + [anon_sym___nullable] = ACTIONS(4027), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4027), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4027), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4027), + [anon_sym___real] = ACTIONS(4027), + [anon_sym___strong] = ACTIONS(4027), + [anon_sym___unsafe_unretained] = ACTIONS(4027), + [anon_sym___unused] = ACTIONS(4027), + [anon_sym___weak] = ACTIONS(4027), + [anon_sym_alignas] = ACTIONS(4027), + [anon_sym__Alignas] = ACTIONS(4027), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4027), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4027), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4027), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4027), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_API_AVAILABLE] = ACTIONS(4027), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_API_DEPRECATED] = ACTIONS(4027), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4027), + [anon_sym___deprecated_msg] = ACTIONS(4027), + [anon_sym___deprecated_enum_msg] = ACTIONS(4027), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4027), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4027), + }, + [2650] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6595), + [anon_sym_PLUS] = ACTIONS(6595), + [anon_sym_STAR] = ACTIONS(6597), + [anon_sym_SLASH] = ACTIONS(6599), + [anon_sym_PERCENT] = ACTIONS(6597), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(6647), + [anon_sym_CARET] = ACTIONS(6649), + [anon_sym_AMP] = ACTIONS(6601), + [anon_sym_EQ_EQ] = ACTIONS(6603), + [anon_sym_BANG_EQ] = ACTIONS(6603), + [anon_sym_GT] = ACTIONS(6605), + [anon_sym_GT_EQ] = ACTIONS(6607), + [anon_sym_LT_EQ] = ACTIONS(6607), + [anon_sym_LT] = ACTIONS(6605), + [anon_sym_LT_LT] = ACTIONS(6609), + [anon_sym_GT_GT] = ACTIONS(6609), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_extern] = ACTIONS(4027), + [anon_sym___attribute__] = ACTIONS(4027), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4027), + [anon_sym_register] = ACTIONS(4027), + [anon_sym_inline] = ACTIONS(4027), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4027), + [anon_sym___forceinline] = ACTIONS(4027), + [anon_sym_thread_local] = ACTIONS(4027), + [anon_sym___thread] = ACTIONS(4027), + [anon_sym_CG_EXTERN] = ACTIONS(4027), + [anon_sym_CG_INLINE] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4027), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4027), + [anon_sym_IBOutlet] = ACTIONS(4027), + [anon_sym_IBInspectable] = ACTIONS(4027), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4027), + [anon_sym_NS_INLINE] = ACTIONS(4027), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4027), + [anon_sym_OBJC_EXPORT] = ACTIONS(4027), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4027), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4027), + [anon_sym_volatile] = ACTIONS(4027), + [anon_sym_restrict] = ACTIONS(4027), + [anon_sym___restrict__] = ACTIONS(4027), + [anon_sym__Atomic] = ACTIONS(4027), + [anon_sym__Noreturn] = ACTIONS(4027), + [anon_sym__Nonnull] = ACTIONS(4027), + [anon_sym_nullable] = ACTIONS(4027), + [anon_sym__Complex] = ACTIONS(4027), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4027), + [anon_sym__Null_unspecified] = ACTIONS(4027), + [anon_sym___autoreleasing] = ACTIONS(4027), + [anon_sym___block] = ACTIONS(4027), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4027), + [anon_sym___bridge_transfer] = ACTIONS(4027), + [anon_sym___complex] = ACTIONS(4027), + [anon_sym___const] = ACTIONS(4027), + [anon_sym___imag] = ACTIONS(4027), + [anon_sym___kindof] = ACTIONS(4027), + [anon_sym___nonnull] = ACTIONS(4027), + [anon_sym___nullable] = ACTIONS(4027), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4027), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4027), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4027), + [anon_sym___real] = ACTIONS(4027), + [anon_sym___strong] = ACTIONS(4027), + [anon_sym___unsafe_unretained] = ACTIONS(4027), + [anon_sym___unused] = ACTIONS(4027), + [anon_sym___weak] = ACTIONS(4027), + [anon_sym_alignas] = ACTIONS(4027), + [anon_sym__Alignas] = ACTIONS(4027), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4027), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4027), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4027), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4027), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_API_AVAILABLE] = ACTIONS(4027), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_API_DEPRECATED] = ACTIONS(4027), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4027), + [anon_sym___deprecated_msg] = ACTIONS(4027), + [anon_sym___deprecated_enum_msg] = ACTIONS(4027), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4027), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4027), + }, + [2651] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6595), + [anon_sym_PLUS] = ACTIONS(6595), + [anon_sym_STAR] = ACTIONS(6597), + [anon_sym_SLASH] = ACTIONS(6599), + [anon_sym_PERCENT] = ACTIONS(6597), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(6649), + [anon_sym_AMP] = ACTIONS(6601), + [anon_sym_EQ_EQ] = ACTIONS(6603), + [anon_sym_BANG_EQ] = ACTIONS(6603), + [anon_sym_GT] = ACTIONS(6605), + [anon_sym_GT_EQ] = ACTIONS(6607), + [anon_sym_LT_EQ] = ACTIONS(6607), + [anon_sym_LT] = ACTIONS(6605), + [anon_sym_LT_LT] = ACTIONS(6609), + [anon_sym_GT_GT] = ACTIONS(6609), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_extern] = ACTIONS(4027), + [anon_sym___attribute__] = ACTIONS(4027), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4027), + [anon_sym_register] = ACTIONS(4027), + [anon_sym_inline] = ACTIONS(4027), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4027), + [anon_sym___forceinline] = ACTIONS(4027), + [anon_sym_thread_local] = ACTIONS(4027), + [anon_sym___thread] = ACTIONS(4027), + [anon_sym_CG_EXTERN] = ACTIONS(4027), + [anon_sym_CG_INLINE] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4027), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4027), + [anon_sym_IBOutlet] = ACTIONS(4027), + [anon_sym_IBInspectable] = ACTIONS(4027), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4027), + [anon_sym_NS_INLINE] = ACTIONS(4027), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4027), + [anon_sym_OBJC_EXPORT] = ACTIONS(4027), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4027), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4027), + [anon_sym_volatile] = ACTIONS(4027), + [anon_sym_restrict] = ACTIONS(4027), + [anon_sym___restrict__] = ACTIONS(4027), + [anon_sym__Atomic] = ACTIONS(4027), + [anon_sym__Noreturn] = ACTIONS(4027), + [anon_sym__Nonnull] = ACTIONS(4027), + [anon_sym_nullable] = ACTIONS(4027), + [anon_sym__Complex] = ACTIONS(4027), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4027), + [anon_sym__Null_unspecified] = ACTIONS(4027), + [anon_sym___autoreleasing] = ACTIONS(4027), + [anon_sym___block] = ACTIONS(4027), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4027), + [anon_sym___bridge_transfer] = ACTIONS(4027), + [anon_sym___complex] = ACTIONS(4027), + [anon_sym___const] = ACTIONS(4027), + [anon_sym___imag] = ACTIONS(4027), + [anon_sym___kindof] = ACTIONS(4027), + [anon_sym___nonnull] = ACTIONS(4027), + [anon_sym___nullable] = ACTIONS(4027), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4027), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4027), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4027), + [anon_sym___real] = ACTIONS(4027), + [anon_sym___strong] = ACTIONS(4027), + [anon_sym___unsafe_unretained] = ACTIONS(4027), + [anon_sym___unused] = ACTIONS(4027), + [anon_sym___weak] = ACTIONS(4027), + [anon_sym_alignas] = ACTIONS(4027), + [anon_sym__Alignas] = ACTIONS(4027), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4027), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4027), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4027), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4027), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_API_AVAILABLE] = ACTIONS(4027), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_API_DEPRECATED] = ACTIONS(4027), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4027), + [anon_sym___deprecated_msg] = ACTIONS(4027), + [anon_sym___deprecated_enum_msg] = ACTIONS(4027), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4027), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4027), + }, + [2652] = { + [sym_identifier] = ACTIONS(6711), + [aux_sym_preproc_def_token1] = ACTIONS(6711), + [aux_sym_preproc_if_token1] = ACTIONS(6711), + [aux_sym_preproc_if_token2] = ACTIONS(6711), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6711), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6711), + [aux_sym_preproc_else_token1] = ACTIONS(6711), + [aux_sym_preproc_elif_token1] = ACTIONS(6711), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6711), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6711), + [sym_preproc_directive] = ACTIONS(6711), + [anon_sym___extension__] = ACTIONS(6711), + [anon_sym_extern] = ACTIONS(6711), + [anon_sym___attribute__] = ACTIONS(6711), + [anon_sym___attribute] = ACTIONS(6711), + [anon_sym_noreturn] = ACTIONS(6711), + [anon_sym_LBRACK] = ACTIONS(6713), + [anon_sym___declspec] = ACTIONS(6711), + [anon_sym_signed] = ACTIONS(6711), + [anon_sym_unsigned] = ACTIONS(6711), + [anon_sym_long] = ACTIONS(6711), + [anon_sym_short] = ACTIONS(6711), + [anon_sym_static] = ACTIONS(6711), + [anon_sym_auto] = ACTIONS(6711), + [anon_sym_register] = ACTIONS(6711), + [anon_sym_inline] = ACTIONS(6711), + [anon_sym___inline] = ACTIONS(6711), + [anon_sym___inline__] = ACTIONS(6711), + [anon_sym___forceinline] = ACTIONS(6711), + [anon_sym_thread_local] = ACTIONS(6711), + [anon_sym___thread] = ACTIONS(6711), + [anon_sym_CG_EXTERN] = ACTIONS(6711), + [anon_sym_CG_INLINE] = ACTIONS(6711), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6711), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6711), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6711), + [anon_sym_IBOutlet] = ACTIONS(6711), + [anon_sym_IBInspectable] = ACTIONS(6711), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6711), + [anon_sym_NS_INLINE] = ACTIONS(6711), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6711), + [anon_sym_OBJC_EXPORT] = ACTIONS(6711), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6711), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6711), + [anon_sym_const] = ACTIONS(6711), + [anon_sym_constexpr] = ACTIONS(6711), + [anon_sym_volatile] = ACTIONS(6711), + [anon_sym_restrict] = ACTIONS(6711), + [anon_sym___restrict__] = ACTIONS(6711), + [anon_sym__Atomic] = ACTIONS(6711), + [anon_sym__Noreturn] = ACTIONS(6711), + [anon_sym__Nonnull] = ACTIONS(6711), + [anon_sym_nullable] = ACTIONS(6711), + [anon_sym__Complex] = ACTIONS(6711), + [anon_sym__Nullable] = ACTIONS(6711), + [anon_sym__Nullable_result] = ACTIONS(6711), + [anon_sym__Null_unspecified] = ACTIONS(6711), + [anon_sym___autoreleasing] = ACTIONS(6711), + [anon_sym___block] = ACTIONS(6711), + [anon_sym___bridge] = ACTIONS(6711), + [anon_sym___bridge_retained] = ACTIONS(6711), + [anon_sym___bridge_transfer] = ACTIONS(6711), + [anon_sym___complex] = ACTIONS(6711), + [anon_sym___const] = ACTIONS(6711), + [anon_sym___imag] = ACTIONS(6711), + [anon_sym___kindof] = ACTIONS(6711), + [anon_sym___nonnull] = ACTIONS(6711), + [anon_sym___nullable] = ACTIONS(6711), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6711), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6711), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6711), + [anon_sym___real] = ACTIONS(6711), + [anon_sym___strong] = ACTIONS(6711), + [anon_sym___unsafe_unretained] = ACTIONS(6711), + [anon_sym___unused] = ACTIONS(6711), + [anon_sym___weak] = ACTIONS(6711), + [anon_sym_alignas] = ACTIONS(6711), + [anon_sym__Alignas] = ACTIONS(6711), + [sym_primitive_type] = ACTIONS(6711), + [anon_sym_enum] = ACTIONS(6711), + [anon_sym_struct] = ACTIONS(6711), + [anon_sym_union] = ACTIONS(6711), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6711), + [anon_sym___typeof] = ACTIONS(6711), + [anon_sym_typeof] = ACTIONS(6711), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6711), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6711), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6711), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6711), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6711), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6711), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6711), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6711), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6711), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6711), + [anon_sym_NS_AVAILABLE] = ACTIONS(6711), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6711), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6711), + [anon_sym_API_AVAILABLE] = ACTIONS(6711), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6711), + [anon_sym_API_DEPRECATED] = ACTIONS(6711), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6711), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6711), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6711), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6711), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6711), + [anon_sym___deprecated_msg] = ACTIONS(6711), + [anon_sym___deprecated_enum_msg] = ACTIONS(6711), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6711), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6711), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6711), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6711), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6711), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6711), + [anon_sym_BOOL] = ACTIONS(6711), + [anon_sym_IMP] = ACTIONS(6711), + [anon_sym_SEL] = ACTIONS(6711), + [anon_sym_Class] = ACTIONS(6711), + [anon_sym_id] = ACTIONS(6711), + [anon_sym_ATdefs] = ACTIONS(6713), + }, + [2653] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6595), + [anon_sym_PLUS] = ACTIONS(6595), + [anon_sym_STAR] = ACTIONS(6597), + [anon_sym_SLASH] = ACTIONS(6599), + [anon_sym_PERCENT] = ACTIONS(6597), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(6603), + [anon_sym_BANG_EQ] = ACTIONS(6603), + [anon_sym_GT] = ACTIONS(6605), + [anon_sym_GT_EQ] = ACTIONS(6607), + [anon_sym_LT_EQ] = ACTIONS(6607), + [anon_sym_LT] = ACTIONS(6605), + [anon_sym_LT_LT] = ACTIONS(6609), + [anon_sym_GT_GT] = ACTIONS(6609), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_extern] = ACTIONS(4027), + [anon_sym___attribute__] = ACTIONS(4027), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4027), + [anon_sym_register] = ACTIONS(4027), + [anon_sym_inline] = ACTIONS(4027), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4027), + [anon_sym___forceinline] = ACTIONS(4027), + [anon_sym_thread_local] = ACTIONS(4027), + [anon_sym___thread] = ACTIONS(4027), + [anon_sym_CG_EXTERN] = ACTIONS(4027), + [anon_sym_CG_INLINE] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4027), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4027), + [anon_sym_IBOutlet] = ACTIONS(4027), + [anon_sym_IBInspectable] = ACTIONS(4027), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4027), + [anon_sym_NS_INLINE] = ACTIONS(4027), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4027), + [anon_sym_OBJC_EXPORT] = ACTIONS(4027), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4027), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4027), + [anon_sym_volatile] = ACTIONS(4027), + [anon_sym_restrict] = ACTIONS(4027), + [anon_sym___restrict__] = ACTIONS(4027), + [anon_sym__Atomic] = ACTIONS(4027), + [anon_sym__Noreturn] = ACTIONS(4027), + [anon_sym__Nonnull] = ACTIONS(4027), + [anon_sym_nullable] = ACTIONS(4027), + [anon_sym__Complex] = ACTIONS(4027), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4027), + [anon_sym__Null_unspecified] = ACTIONS(4027), + [anon_sym___autoreleasing] = ACTIONS(4027), + [anon_sym___block] = ACTIONS(4027), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4027), + [anon_sym___bridge_transfer] = ACTIONS(4027), + [anon_sym___complex] = ACTIONS(4027), + [anon_sym___const] = ACTIONS(4027), + [anon_sym___imag] = ACTIONS(4027), + [anon_sym___kindof] = ACTIONS(4027), + [anon_sym___nonnull] = ACTIONS(4027), + [anon_sym___nullable] = ACTIONS(4027), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4027), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4027), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4027), + [anon_sym___real] = ACTIONS(4027), + [anon_sym___strong] = ACTIONS(4027), + [anon_sym___unsafe_unretained] = ACTIONS(4027), + [anon_sym___unused] = ACTIONS(4027), + [anon_sym___weak] = ACTIONS(4027), + [anon_sym_alignas] = ACTIONS(4027), + [anon_sym__Alignas] = ACTIONS(4027), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4027), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4027), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4027), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4027), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_API_AVAILABLE] = ACTIONS(4027), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_API_DEPRECATED] = ACTIONS(4027), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4027), + [anon_sym___deprecated_msg] = ACTIONS(4027), + [anon_sym___deprecated_enum_msg] = ACTIONS(4027), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4027), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4027), + }, + [2654] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6595), + [anon_sym_PLUS] = ACTIONS(6595), + [anon_sym_STAR] = ACTIONS(6597), + [anon_sym_SLASH] = ACTIONS(6599), + [anon_sym_PERCENT] = ACTIONS(6597), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(6605), + [anon_sym_GT_EQ] = ACTIONS(6607), + [anon_sym_LT_EQ] = ACTIONS(6607), + [anon_sym_LT] = ACTIONS(6605), + [anon_sym_LT_LT] = ACTIONS(6609), + [anon_sym_GT_GT] = ACTIONS(6609), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_extern] = ACTIONS(4027), + [anon_sym___attribute__] = ACTIONS(4027), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4027), + [anon_sym_register] = ACTIONS(4027), + [anon_sym_inline] = ACTIONS(4027), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4027), + [anon_sym___forceinline] = ACTIONS(4027), + [anon_sym_thread_local] = ACTIONS(4027), + [anon_sym___thread] = ACTIONS(4027), + [anon_sym_CG_EXTERN] = ACTIONS(4027), + [anon_sym_CG_INLINE] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4027), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4027), + [anon_sym_IBOutlet] = ACTIONS(4027), + [anon_sym_IBInspectable] = ACTIONS(4027), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4027), + [anon_sym_NS_INLINE] = ACTIONS(4027), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4027), + [anon_sym_OBJC_EXPORT] = ACTIONS(4027), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4027), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4027), + [anon_sym_volatile] = ACTIONS(4027), + [anon_sym_restrict] = ACTIONS(4027), + [anon_sym___restrict__] = ACTIONS(4027), + [anon_sym__Atomic] = ACTIONS(4027), + [anon_sym__Noreturn] = ACTIONS(4027), + [anon_sym__Nonnull] = ACTIONS(4027), + [anon_sym_nullable] = ACTIONS(4027), + [anon_sym__Complex] = ACTIONS(4027), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4027), + [anon_sym__Null_unspecified] = ACTIONS(4027), + [anon_sym___autoreleasing] = ACTIONS(4027), + [anon_sym___block] = ACTIONS(4027), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4027), + [anon_sym___bridge_transfer] = ACTIONS(4027), + [anon_sym___complex] = ACTIONS(4027), + [anon_sym___const] = ACTIONS(4027), + [anon_sym___imag] = ACTIONS(4027), + [anon_sym___kindof] = ACTIONS(4027), + [anon_sym___nonnull] = ACTIONS(4027), + [anon_sym___nullable] = ACTIONS(4027), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4027), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4027), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4027), + [anon_sym___real] = ACTIONS(4027), + [anon_sym___strong] = ACTIONS(4027), + [anon_sym___unsafe_unretained] = ACTIONS(4027), + [anon_sym___unused] = ACTIONS(4027), + [anon_sym___weak] = ACTIONS(4027), + [anon_sym_alignas] = ACTIONS(4027), + [anon_sym__Alignas] = ACTIONS(4027), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4027), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4027), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4027), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4027), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_API_AVAILABLE] = ACTIONS(4027), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_API_DEPRECATED] = ACTIONS(4027), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4027), + [anon_sym___deprecated_msg] = ACTIONS(4027), + [anon_sym___deprecated_enum_msg] = ACTIONS(4027), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4027), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4027), + }, + [2655] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6595), + [anon_sym_PLUS] = ACTIONS(6595), + [anon_sym_STAR] = ACTIONS(6597), + [anon_sym_SLASH] = ACTIONS(6599), + [anon_sym_PERCENT] = ACTIONS(6597), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(4025), + [anon_sym_GT_EQ] = ACTIONS(4027), + [anon_sym_LT_EQ] = ACTIONS(4027), + [anon_sym_LT] = ACTIONS(4025), + [anon_sym_LT_LT] = ACTIONS(6609), + [anon_sym_GT_GT] = ACTIONS(6609), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_extern] = ACTIONS(4027), + [anon_sym___attribute__] = ACTIONS(4027), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4027), + [anon_sym_register] = ACTIONS(4027), + [anon_sym_inline] = ACTIONS(4027), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4027), + [anon_sym___forceinline] = ACTIONS(4027), + [anon_sym_thread_local] = ACTIONS(4027), + [anon_sym___thread] = ACTIONS(4027), + [anon_sym_CG_EXTERN] = ACTIONS(4027), + [anon_sym_CG_INLINE] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4027), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4027), + [anon_sym_IBOutlet] = ACTIONS(4027), + [anon_sym_IBInspectable] = ACTIONS(4027), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4027), + [anon_sym_NS_INLINE] = ACTIONS(4027), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4027), + [anon_sym_OBJC_EXPORT] = ACTIONS(4027), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4027), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4027), + [anon_sym_volatile] = ACTIONS(4027), + [anon_sym_restrict] = ACTIONS(4027), + [anon_sym___restrict__] = ACTIONS(4027), + [anon_sym__Atomic] = ACTIONS(4027), + [anon_sym__Noreturn] = ACTIONS(4027), + [anon_sym__Nonnull] = ACTIONS(4027), + [anon_sym_nullable] = ACTIONS(4027), + [anon_sym__Complex] = ACTIONS(4027), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4027), + [anon_sym__Null_unspecified] = ACTIONS(4027), + [anon_sym___autoreleasing] = ACTIONS(4027), + [anon_sym___block] = ACTIONS(4027), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4027), + [anon_sym___bridge_transfer] = ACTIONS(4027), + [anon_sym___complex] = ACTIONS(4027), + [anon_sym___const] = ACTIONS(4027), + [anon_sym___imag] = ACTIONS(4027), + [anon_sym___kindof] = ACTIONS(4027), + [anon_sym___nonnull] = ACTIONS(4027), + [anon_sym___nullable] = ACTIONS(4027), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4027), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4027), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4027), + [anon_sym___real] = ACTIONS(4027), + [anon_sym___strong] = ACTIONS(4027), + [anon_sym___unsafe_unretained] = ACTIONS(4027), + [anon_sym___unused] = ACTIONS(4027), + [anon_sym___weak] = ACTIONS(4027), + [anon_sym_alignas] = ACTIONS(4027), + [anon_sym__Alignas] = ACTIONS(4027), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4027), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4027), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4027), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4027), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_API_AVAILABLE] = ACTIONS(4027), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_API_DEPRECATED] = ACTIONS(4027), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4027), + [anon_sym___deprecated_msg] = ACTIONS(4027), + [anon_sym___deprecated_enum_msg] = ACTIONS(4027), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4027), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4027), + }, + [2656] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4027), + [anon_sym_COMMA] = ACTIONS(4027), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6595), + [anon_sym_PLUS] = ACTIONS(6595), + [anon_sym_STAR] = ACTIONS(6597), + [anon_sym_SLASH] = ACTIONS(6599), + [anon_sym_PERCENT] = ACTIONS(6597), + [anon_sym_PIPE_PIPE] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_PIPE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_EQ_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(4025), + [anon_sym_GT_EQ] = ACTIONS(4027), + [anon_sym_LT_EQ] = ACTIONS(4027), + [anon_sym_LT] = ACTIONS(4025), + [anon_sym_LT_LT] = ACTIONS(4027), + [anon_sym_GT_GT] = ACTIONS(4027), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_extern] = ACTIONS(4027), + [anon_sym___attribute__] = ACTIONS(4027), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4027), + [anon_sym_static] = ACTIONS(4027), + [anon_sym_auto] = ACTIONS(4027), + [anon_sym_register] = ACTIONS(4027), + [anon_sym_inline] = ACTIONS(4027), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4027), + [anon_sym___forceinline] = ACTIONS(4027), + [anon_sym_thread_local] = ACTIONS(4027), + [anon_sym___thread] = ACTIONS(4027), + [anon_sym_CG_EXTERN] = ACTIONS(4027), + [anon_sym_CG_INLINE] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4027), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4027), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4027), + [anon_sym_IBOutlet] = ACTIONS(4027), + [anon_sym_IBInspectable] = ACTIONS(4027), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4027), + [anon_sym_NS_INLINE] = ACTIONS(4027), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4027), + [anon_sym_OBJC_EXPORT] = ACTIONS(4027), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4027), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4027), + [anon_sym_volatile] = ACTIONS(4027), + [anon_sym_restrict] = ACTIONS(4027), + [anon_sym___restrict__] = ACTIONS(4027), + [anon_sym__Atomic] = ACTIONS(4027), + [anon_sym__Noreturn] = ACTIONS(4027), + [anon_sym__Nonnull] = ACTIONS(4027), + [anon_sym_nullable] = ACTIONS(4027), + [anon_sym__Complex] = ACTIONS(4027), + [anon_sym__Nullable] = ACTIONS(4025), + [anon_sym__Nullable_result] = ACTIONS(4027), + [anon_sym__Null_unspecified] = ACTIONS(4027), + [anon_sym___autoreleasing] = ACTIONS(4027), + [anon_sym___block] = ACTIONS(4027), + [anon_sym___bridge] = ACTIONS(4025), + [anon_sym___bridge_retained] = ACTIONS(4027), + [anon_sym___bridge_transfer] = ACTIONS(4027), + [anon_sym___complex] = ACTIONS(4027), + [anon_sym___const] = ACTIONS(4027), + [anon_sym___imag] = ACTIONS(4027), + [anon_sym___kindof] = ACTIONS(4027), + [anon_sym___nonnull] = ACTIONS(4027), + [anon_sym___nullable] = ACTIONS(4027), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4027), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4027), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4027), + [anon_sym___real] = ACTIONS(4027), + [anon_sym___strong] = ACTIONS(4027), + [anon_sym___unsafe_unretained] = ACTIONS(4027), + [anon_sym___unused] = ACTIONS(4027), + [anon_sym___weak] = ACTIONS(4027), + [anon_sym_alignas] = ACTIONS(4027), + [anon_sym__Alignas] = ACTIONS(4027), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4027), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4027), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4027), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4027), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4027), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4027), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE] = ACTIONS(4025), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4027), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_API_AVAILABLE] = ACTIONS(4027), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_API_DEPRECATED] = ACTIONS(4027), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4027), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4027), + [anon_sym___deprecated_msg] = ACTIONS(4027), + [anon_sym___deprecated_enum_msg] = ACTIONS(4027), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4027), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4027), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4027), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4027), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4027), + }, + [2657] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6639), + [anon_sym_COMMA] = ACTIONS(4488), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6595), + [anon_sym_PLUS] = ACTIONS(6595), + [anon_sym_STAR] = ACTIONS(6597), + [anon_sym_SLASH] = ACTIONS(6599), + [anon_sym_PERCENT] = ACTIONS(6597), + [anon_sym_PIPE_PIPE] = ACTIONS(6643), + [anon_sym_AMP_AMP] = ACTIONS(6645), + [anon_sym_PIPE] = ACTIONS(6647), + [anon_sym_CARET] = ACTIONS(6649), + [anon_sym_AMP] = ACTIONS(6601), + [anon_sym_EQ_EQ] = ACTIONS(6603), + [anon_sym_BANG_EQ] = ACTIONS(6603), + [anon_sym_GT] = ACTIONS(6605), + [anon_sym_GT_EQ] = ACTIONS(6607), + [anon_sym_LT_EQ] = ACTIONS(6607), + [anon_sym_LT] = ACTIONS(6605), + [anon_sym_LT_LT] = ACTIONS(6609), + [anon_sym_GT_GT] = ACTIONS(6609), + [anon_sym_SEMI] = ACTIONS(4488), + [anon_sym___extension__] = ACTIONS(4488), + [anon_sym_extern] = ACTIONS(4488), + [anon_sym___attribute__] = ACTIONS(4488), + [anon_sym___attribute] = ACTIONS(4486), + [anon_sym_noreturn] = ACTIONS(4488), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4488), + [anon_sym_static] = ACTIONS(4488), + [anon_sym_auto] = ACTIONS(4488), + [anon_sym_register] = ACTIONS(4488), + [anon_sym_inline] = ACTIONS(4488), + [anon_sym___inline] = ACTIONS(4486), + [anon_sym___inline__] = ACTIONS(4488), + [anon_sym___forceinline] = ACTIONS(4488), + [anon_sym_thread_local] = ACTIONS(4488), + [anon_sym___thread] = ACTIONS(4488), + [anon_sym_CG_EXTERN] = ACTIONS(4488), + [anon_sym_CG_INLINE] = ACTIONS(4488), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4488), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4488), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4488), + [anon_sym_IBOutlet] = ACTIONS(4488), + [anon_sym_IBInspectable] = ACTIONS(4488), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4488), + [anon_sym_NS_INLINE] = ACTIONS(4488), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4488), + [anon_sym_OBJC_EXPORT] = ACTIONS(4488), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4488), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4488), + [anon_sym_const] = ACTIONS(4486), + [anon_sym_constexpr] = ACTIONS(4488), + [anon_sym_volatile] = ACTIONS(4488), + [anon_sym_restrict] = ACTIONS(4488), + [anon_sym___restrict__] = ACTIONS(4488), + [anon_sym__Atomic] = ACTIONS(4488), + [anon_sym__Noreturn] = ACTIONS(4488), + [anon_sym__Nonnull] = ACTIONS(4488), + [anon_sym_nullable] = ACTIONS(4488), + [anon_sym__Complex] = ACTIONS(4488), + [anon_sym__Nullable] = ACTIONS(4486), + [anon_sym__Nullable_result] = ACTIONS(4488), + [anon_sym__Null_unspecified] = ACTIONS(4488), + [anon_sym___autoreleasing] = ACTIONS(4488), + [anon_sym___block] = ACTIONS(4488), + [anon_sym___bridge] = ACTIONS(4486), + [anon_sym___bridge_retained] = ACTIONS(4488), + [anon_sym___bridge_transfer] = ACTIONS(4488), + [anon_sym___complex] = ACTIONS(4488), + [anon_sym___const] = ACTIONS(4488), + [anon_sym___imag] = ACTIONS(4488), + [anon_sym___kindof] = ACTIONS(4488), + [anon_sym___nonnull] = ACTIONS(4488), + [anon_sym___nullable] = ACTIONS(4488), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4488), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4488), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4488), + [anon_sym___real] = ACTIONS(4488), + [anon_sym___strong] = ACTIONS(4488), + [anon_sym___unsafe_unretained] = ACTIONS(4488), + [anon_sym___unused] = ACTIONS(4488), + [anon_sym___weak] = ACTIONS(4488), + [anon_sym_alignas] = ACTIONS(4488), + [anon_sym__Alignas] = ACTIONS(4488), + [anon_sym_QMARK] = ACTIONS(6653), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4488), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4488), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4488), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4488), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4488), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4488), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4488), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4488), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4488), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4488), + [anon_sym_NS_AVAILABLE] = ACTIONS(4486), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4488), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4488), + [anon_sym_API_AVAILABLE] = ACTIONS(4488), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4488), + [anon_sym_API_DEPRECATED] = ACTIONS(4488), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4488), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4488), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4488), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4488), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4488), + [anon_sym___deprecated_msg] = ACTIONS(4488), + [anon_sym___deprecated_enum_msg] = ACTIONS(4488), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4488), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4488), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4488), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4488), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4488), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4488), + }, + [2658] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6639), + [anon_sym_COMMA] = ACTIONS(4476), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6595), + [anon_sym_PLUS] = ACTIONS(6595), + [anon_sym_STAR] = ACTIONS(6597), + [anon_sym_SLASH] = ACTIONS(6599), + [anon_sym_PERCENT] = ACTIONS(6597), + [anon_sym_PIPE_PIPE] = ACTIONS(6643), + [anon_sym_AMP_AMP] = ACTIONS(6645), + [anon_sym_PIPE] = ACTIONS(6647), + [anon_sym_CARET] = ACTIONS(6649), + [anon_sym_AMP] = ACTIONS(6601), + [anon_sym_EQ_EQ] = ACTIONS(6603), + [anon_sym_BANG_EQ] = ACTIONS(6603), + [anon_sym_GT] = ACTIONS(6605), + [anon_sym_GT_EQ] = ACTIONS(6607), + [anon_sym_LT_EQ] = ACTIONS(6607), + [anon_sym_LT] = ACTIONS(6605), + [anon_sym_LT_LT] = ACTIONS(6609), + [anon_sym_GT_GT] = ACTIONS(6609), + [anon_sym_SEMI] = ACTIONS(4476), + [anon_sym___extension__] = ACTIONS(4476), + [anon_sym_extern] = ACTIONS(4476), + [anon_sym___attribute__] = ACTIONS(4476), + [anon_sym___attribute] = ACTIONS(4474), + [anon_sym_noreturn] = ACTIONS(4476), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4476), + [anon_sym_static] = ACTIONS(4476), + [anon_sym_auto] = ACTIONS(4476), + [anon_sym_register] = ACTIONS(4476), + [anon_sym_inline] = ACTIONS(4476), + [anon_sym___inline] = ACTIONS(4474), + [anon_sym___inline__] = ACTIONS(4476), + [anon_sym___forceinline] = ACTIONS(4476), + [anon_sym_thread_local] = ACTIONS(4476), + [anon_sym___thread] = ACTIONS(4476), + [anon_sym_CG_EXTERN] = ACTIONS(4476), + [anon_sym_CG_INLINE] = ACTIONS(4476), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4476), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4476), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4476), + [anon_sym_IBOutlet] = ACTIONS(4476), + [anon_sym_IBInspectable] = ACTIONS(4476), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4476), + [anon_sym_NS_INLINE] = ACTIONS(4476), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4476), + [anon_sym_OBJC_EXPORT] = ACTIONS(4476), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4476), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4476), + [anon_sym_const] = ACTIONS(4474), + [anon_sym_constexpr] = ACTIONS(4476), + [anon_sym_volatile] = ACTIONS(4476), + [anon_sym_restrict] = ACTIONS(4476), + [anon_sym___restrict__] = ACTIONS(4476), + [anon_sym__Atomic] = ACTIONS(4476), + [anon_sym__Noreturn] = ACTIONS(4476), + [anon_sym__Nonnull] = ACTIONS(4476), + [anon_sym_nullable] = ACTIONS(4476), + [anon_sym__Complex] = ACTIONS(4476), + [anon_sym__Nullable] = ACTIONS(4474), + [anon_sym__Nullable_result] = ACTIONS(4476), + [anon_sym__Null_unspecified] = ACTIONS(4476), + [anon_sym___autoreleasing] = ACTIONS(4476), + [anon_sym___block] = ACTIONS(4476), + [anon_sym___bridge] = ACTIONS(4474), + [anon_sym___bridge_retained] = ACTIONS(4476), + [anon_sym___bridge_transfer] = ACTIONS(4476), + [anon_sym___complex] = ACTIONS(4476), + [anon_sym___const] = ACTIONS(4476), + [anon_sym___imag] = ACTIONS(4476), + [anon_sym___kindof] = ACTIONS(4476), + [anon_sym___nonnull] = ACTIONS(4476), + [anon_sym___nullable] = ACTIONS(4476), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4476), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4476), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4476), + [anon_sym___real] = ACTIONS(4476), + [anon_sym___strong] = ACTIONS(4476), + [anon_sym___unsafe_unretained] = ACTIONS(4476), + [anon_sym___unused] = ACTIONS(4476), + [anon_sym___weak] = ACTIONS(4476), + [anon_sym_alignas] = ACTIONS(4476), + [anon_sym__Alignas] = ACTIONS(4476), + [anon_sym_QMARK] = ACTIONS(6653), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4476), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4476), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4476), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4476), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4476), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4476), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4476), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4476), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4476), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4476), + [anon_sym_NS_AVAILABLE] = ACTIONS(4474), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4476), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4476), + [anon_sym_API_AVAILABLE] = ACTIONS(4476), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4476), + [anon_sym_API_DEPRECATED] = ACTIONS(4476), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4476), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4476), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4476), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4476), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4476), + [anon_sym___deprecated_msg] = ACTIONS(4476), + [anon_sym___deprecated_enum_msg] = ACTIONS(4476), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4476), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4476), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4476), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4476), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4476), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4476), + }, + [2659] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6639), + [anon_sym_COMMA] = ACTIONS(4801), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6595), + [anon_sym_PLUS] = ACTIONS(6595), + [anon_sym_STAR] = ACTIONS(6597), + [anon_sym_SLASH] = ACTIONS(6599), + [anon_sym_PERCENT] = ACTIONS(6597), + [anon_sym_PIPE_PIPE] = ACTIONS(6643), + [anon_sym_AMP_AMP] = ACTIONS(6645), + [anon_sym_PIPE] = ACTIONS(6647), + [anon_sym_CARET] = ACTIONS(6649), + [anon_sym_AMP] = ACTIONS(6601), + [anon_sym_EQ_EQ] = ACTIONS(6603), + [anon_sym_BANG_EQ] = ACTIONS(6603), + [anon_sym_GT] = ACTIONS(6605), + [anon_sym_GT_EQ] = ACTIONS(6607), + [anon_sym_LT_EQ] = ACTIONS(6607), + [anon_sym_LT] = ACTIONS(6605), + [anon_sym_LT_LT] = ACTIONS(6609), + [anon_sym_GT_GT] = ACTIONS(6609), + [anon_sym_SEMI] = ACTIONS(4801), + [anon_sym___extension__] = ACTIONS(4801), + [anon_sym_extern] = ACTIONS(4801), + [anon_sym___attribute__] = ACTIONS(4801), + [anon_sym___attribute] = ACTIONS(4797), + [anon_sym_noreturn] = ACTIONS(4801), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4801), + [anon_sym_static] = ACTIONS(4801), + [anon_sym_auto] = ACTIONS(4801), + [anon_sym_register] = ACTIONS(4801), + [anon_sym_inline] = ACTIONS(4801), + [anon_sym___inline] = ACTIONS(4797), + [anon_sym___inline__] = ACTIONS(4801), + [anon_sym___forceinline] = ACTIONS(4801), + [anon_sym_thread_local] = ACTIONS(4801), + [anon_sym___thread] = ACTIONS(4801), + [anon_sym_CG_EXTERN] = ACTIONS(4801), + [anon_sym_CG_INLINE] = ACTIONS(4801), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4801), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4801), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4801), + [anon_sym_IBOutlet] = ACTIONS(4801), + [anon_sym_IBInspectable] = ACTIONS(4801), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4801), + [anon_sym_NS_INLINE] = ACTIONS(4801), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4801), + [anon_sym_OBJC_EXPORT] = ACTIONS(4801), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4801), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4801), + [anon_sym_const] = ACTIONS(4797), + [anon_sym_constexpr] = ACTIONS(4801), + [anon_sym_volatile] = ACTIONS(4801), + [anon_sym_restrict] = ACTIONS(4801), + [anon_sym___restrict__] = ACTIONS(4801), + [anon_sym__Atomic] = ACTIONS(4801), + [anon_sym__Noreturn] = ACTIONS(4801), + [anon_sym__Nonnull] = ACTIONS(4801), + [anon_sym_nullable] = ACTIONS(4801), + [anon_sym__Complex] = ACTIONS(4801), + [anon_sym__Nullable] = ACTIONS(4797), + [anon_sym__Nullable_result] = ACTIONS(4801), + [anon_sym__Null_unspecified] = ACTIONS(4801), + [anon_sym___autoreleasing] = ACTIONS(4801), + [anon_sym___block] = ACTIONS(4801), + [anon_sym___bridge] = ACTIONS(4797), + [anon_sym___bridge_retained] = ACTIONS(4801), + [anon_sym___bridge_transfer] = ACTIONS(4801), + [anon_sym___complex] = ACTIONS(4801), + [anon_sym___const] = ACTIONS(4801), + [anon_sym___imag] = ACTIONS(4801), + [anon_sym___kindof] = ACTIONS(4801), + [anon_sym___nonnull] = ACTIONS(4801), + [anon_sym___nullable] = ACTIONS(4801), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4801), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4801), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4801), + [anon_sym___real] = ACTIONS(4801), + [anon_sym___strong] = ACTIONS(4801), + [anon_sym___unsafe_unretained] = ACTIONS(4801), + [anon_sym___unused] = ACTIONS(4801), + [anon_sym___weak] = ACTIONS(4801), + [anon_sym_alignas] = ACTIONS(4801), + [anon_sym__Alignas] = ACTIONS(4801), + [anon_sym_QMARK] = ACTIONS(6653), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4801), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4801), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4801), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4801), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4801), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4801), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4801), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4801), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4801), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4801), + [anon_sym_NS_AVAILABLE] = ACTIONS(4797), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4801), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4801), + [anon_sym_API_AVAILABLE] = ACTIONS(4801), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4801), + [anon_sym_API_DEPRECATED] = ACTIONS(4801), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4801), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4801), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4801), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4801), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4801), + [anon_sym___deprecated_msg] = ACTIONS(4801), + [anon_sym___deprecated_enum_msg] = ACTIONS(4801), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4801), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4801), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4801), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4801), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4801), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4801), + }, + [2660] = { + [sym_identifier] = ACTIONS(6611), + [aux_sym_preproc_def_token1] = ACTIONS(6611), + [aux_sym_preproc_if_token1] = ACTIONS(6611), + [aux_sym_preproc_if_token2] = ACTIONS(6611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6611), + [aux_sym_preproc_else_token1] = ACTIONS(6611), + [aux_sym_preproc_elif_token1] = ACTIONS(6611), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6611), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6611), + [sym_preproc_directive] = ACTIONS(6611), + [anon_sym___extension__] = ACTIONS(6611), + [anon_sym_extern] = ACTIONS(6611), + [anon_sym___attribute__] = ACTIONS(6611), + [anon_sym___attribute] = ACTIONS(6611), + [anon_sym_noreturn] = ACTIONS(6611), + [anon_sym_LBRACK] = ACTIONS(6613), + [anon_sym___declspec] = ACTIONS(6611), + [anon_sym_signed] = ACTIONS(6611), + [anon_sym_unsigned] = ACTIONS(6611), + [anon_sym_long] = ACTIONS(6611), + [anon_sym_short] = ACTIONS(6611), + [anon_sym_static] = ACTIONS(6611), + [anon_sym_auto] = ACTIONS(6611), + [anon_sym_register] = ACTIONS(6611), + [anon_sym_inline] = ACTIONS(6611), + [anon_sym___inline] = ACTIONS(6611), + [anon_sym___inline__] = ACTIONS(6611), + [anon_sym___forceinline] = ACTIONS(6611), + [anon_sym_thread_local] = ACTIONS(6611), + [anon_sym___thread] = ACTIONS(6611), + [anon_sym_CG_EXTERN] = ACTIONS(6611), + [anon_sym_CG_INLINE] = ACTIONS(6611), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6611), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6611), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6611), + [anon_sym_IBOutlet] = ACTIONS(6611), + [anon_sym_IBInspectable] = ACTIONS(6611), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6611), + [anon_sym_NS_INLINE] = ACTIONS(6611), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6611), + [anon_sym_OBJC_EXPORT] = ACTIONS(6611), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6611), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6611), + [anon_sym_const] = ACTIONS(6611), + [anon_sym_constexpr] = ACTIONS(6611), + [anon_sym_volatile] = ACTIONS(6611), + [anon_sym_restrict] = ACTIONS(6611), + [anon_sym___restrict__] = ACTIONS(6611), + [anon_sym__Atomic] = ACTIONS(6611), + [anon_sym__Noreturn] = ACTIONS(6611), + [anon_sym__Nonnull] = ACTIONS(6611), + [anon_sym_nullable] = ACTIONS(6611), + [anon_sym__Complex] = ACTIONS(6611), + [anon_sym__Nullable] = ACTIONS(6611), + [anon_sym__Nullable_result] = ACTIONS(6611), + [anon_sym__Null_unspecified] = ACTIONS(6611), + [anon_sym___autoreleasing] = ACTIONS(6611), + [anon_sym___block] = ACTIONS(6611), + [anon_sym___bridge] = ACTIONS(6611), + [anon_sym___bridge_retained] = ACTIONS(6611), + [anon_sym___bridge_transfer] = ACTIONS(6611), + [anon_sym___complex] = ACTIONS(6611), + [anon_sym___const] = ACTIONS(6611), + [anon_sym___imag] = ACTIONS(6611), + [anon_sym___kindof] = ACTIONS(6611), + [anon_sym___nonnull] = ACTIONS(6611), + [anon_sym___nullable] = ACTIONS(6611), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6611), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6611), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6611), + [anon_sym___real] = ACTIONS(6611), + [anon_sym___strong] = ACTIONS(6611), + [anon_sym___unsafe_unretained] = ACTIONS(6611), + [anon_sym___unused] = ACTIONS(6611), + [anon_sym___weak] = ACTIONS(6611), + [anon_sym_alignas] = ACTIONS(6611), + [anon_sym__Alignas] = ACTIONS(6611), + [sym_primitive_type] = ACTIONS(6611), + [anon_sym_enum] = ACTIONS(6611), + [anon_sym_struct] = ACTIONS(6611), + [anon_sym_union] = ACTIONS(6611), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6611), + [anon_sym___typeof] = ACTIONS(6611), + [anon_sym_typeof] = ACTIONS(6611), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6611), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6611), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6611), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6611), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6611), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6611), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6611), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6611), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6611), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6611), + [anon_sym_NS_AVAILABLE] = ACTIONS(6611), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6611), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6611), + [anon_sym_API_AVAILABLE] = ACTIONS(6611), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6611), + [anon_sym_API_DEPRECATED] = ACTIONS(6611), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6611), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6611), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6611), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6611), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6611), + [anon_sym___deprecated_msg] = ACTIONS(6611), + [anon_sym___deprecated_enum_msg] = ACTIONS(6611), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6611), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6611), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6611), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6611), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6611), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6611), + [anon_sym_BOOL] = ACTIONS(6611), + [anon_sym_IMP] = ACTIONS(6611), + [anon_sym_SEL] = ACTIONS(6611), + [anon_sym_Class] = ACTIONS(6611), + [anon_sym_id] = ACTIONS(6611), + [anon_sym_ATdefs] = ACTIONS(6613), + }, + [2661] = { + [sym_identifier] = ACTIONS(6615), + [aux_sym_preproc_def_token1] = ACTIONS(6615), + [aux_sym_preproc_if_token1] = ACTIONS(6615), + [aux_sym_preproc_if_token2] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6615), + [aux_sym_preproc_else_token1] = ACTIONS(6615), + [aux_sym_preproc_elif_token1] = ACTIONS(6615), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6615), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6615), + [sym_preproc_directive] = ACTIONS(6615), + [anon_sym___extension__] = ACTIONS(6615), + [anon_sym_extern] = ACTIONS(6615), + [anon_sym___attribute__] = ACTIONS(6615), + [anon_sym___attribute] = ACTIONS(6615), + [anon_sym_noreturn] = ACTIONS(6615), + [anon_sym_LBRACK] = ACTIONS(6617), + [anon_sym___declspec] = ACTIONS(6615), + [anon_sym_signed] = ACTIONS(6615), + [anon_sym_unsigned] = ACTIONS(6615), + [anon_sym_long] = ACTIONS(6615), + [anon_sym_short] = ACTIONS(6615), + [anon_sym_static] = ACTIONS(6615), + [anon_sym_auto] = ACTIONS(6615), + [anon_sym_register] = ACTIONS(6615), + [anon_sym_inline] = ACTIONS(6615), + [anon_sym___inline] = ACTIONS(6615), + [anon_sym___inline__] = ACTIONS(6615), + [anon_sym___forceinline] = ACTIONS(6615), + [anon_sym_thread_local] = ACTIONS(6615), + [anon_sym___thread] = ACTIONS(6615), + [anon_sym_CG_EXTERN] = ACTIONS(6615), + [anon_sym_CG_INLINE] = ACTIONS(6615), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6615), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6615), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6615), + [anon_sym_IBOutlet] = ACTIONS(6615), + [anon_sym_IBInspectable] = ACTIONS(6615), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6615), + [anon_sym_NS_INLINE] = ACTIONS(6615), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6615), + [anon_sym_OBJC_EXPORT] = ACTIONS(6615), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6615), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6615), + [anon_sym_const] = ACTIONS(6615), + [anon_sym_constexpr] = ACTIONS(6615), + [anon_sym_volatile] = ACTIONS(6615), + [anon_sym_restrict] = ACTIONS(6615), + [anon_sym___restrict__] = ACTIONS(6615), + [anon_sym__Atomic] = ACTIONS(6615), + [anon_sym__Noreturn] = ACTIONS(6615), + [anon_sym__Nonnull] = ACTIONS(6615), + [anon_sym_nullable] = ACTIONS(6615), + [anon_sym__Complex] = ACTIONS(6615), + [anon_sym__Nullable] = ACTIONS(6615), + [anon_sym__Nullable_result] = ACTIONS(6615), + [anon_sym__Null_unspecified] = ACTIONS(6615), + [anon_sym___autoreleasing] = ACTIONS(6615), + [anon_sym___block] = ACTIONS(6615), + [anon_sym___bridge] = ACTIONS(6615), + [anon_sym___bridge_retained] = ACTIONS(6615), + [anon_sym___bridge_transfer] = ACTIONS(6615), + [anon_sym___complex] = ACTIONS(6615), + [anon_sym___const] = ACTIONS(6615), + [anon_sym___imag] = ACTIONS(6615), + [anon_sym___kindof] = ACTIONS(6615), + [anon_sym___nonnull] = ACTIONS(6615), + [anon_sym___nullable] = ACTIONS(6615), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6615), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6615), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6615), + [anon_sym___real] = ACTIONS(6615), + [anon_sym___strong] = ACTIONS(6615), + [anon_sym___unsafe_unretained] = ACTIONS(6615), + [anon_sym___unused] = ACTIONS(6615), + [anon_sym___weak] = ACTIONS(6615), + [anon_sym_alignas] = ACTIONS(6615), + [anon_sym__Alignas] = ACTIONS(6615), + [sym_primitive_type] = ACTIONS(6615), + [anon_sym_enum] = ACTIONS(6615), + [anon_sym_struct] = ACTIONS(6615), + [anon_sym_union] = ACTIONS(6615), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6615), + [anon_sym___typeof] = ACTIONS(6615), + [anon_sym_typeof] = ACTIONS(6615), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6615), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6615), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6615), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6615), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6615), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6615), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6615), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6615), + [anon_sym_NS_AVAILABLE] = ACTIONS(6615), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6615), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_API_AVAILABLE] = ACTIONS(6615), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_API_DEPRECATED] = ACTIONS(6615), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6615), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6615), + [anon_sym___deprecated_msg] = ACTIONS(6615), + [anon_sym___deprecated_enum_msg] = ACTIONS(6615), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6615), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6615), + [anon_sym_BOOL] = ACTIONS(6615), + [anon_sym_IMP] = ACTIONS(6615), + [anon_sym_SEL] = ACTIONS(6615), + [anon_sym_Class] = ACTIONS(6615), + [anon_sym_id] = ACTIONS(6615), + [anon_sym_ATdefs] = ACTIONS(6617), + }, + [2662] = { + [sym_identifier] = ACTIONS(6615), + [aux_sym_preproc_def_token1] = ACTIONS(6615), + [aux_sym_preproc_if_token1] = ACTIONS(6615), + [aux_sym_preproc_if_token2] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6615), + [aux_sym_preproc_else_token1] = ACTIONS(6615), + [aux_sym_preproc_elif_token1] = ACTIONS(6615), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6615), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6615), + [sym_preproc_directive] = ACTIONS(6615), + [anon_sym___extension__] = ACTIONS(6615), + [anon_sym_extern] = ACTIONS(6615), + [anon_sym___attribute__] = ACTIONS(6615), + [anon_sym___attribute] = ACTIONS(6615), + [anon_sym_noreturn] = ACTIONS(6615), + [anon_sym_LBRACK] = ACTIONS(6617), + [anon_sym___declspec] = ACTIONS(6615), + [anon_sym_signed] = ACTIONS(6615), + [anon_sym_unsigned] = ACTIONS(6615), + [anon_sym_long] = ACTIONS(6615), + [anon_sym_short] = ACTIONS(6615), + [anon_sym_static] = ACTIONS(6615), + [anon_sym_auto] = ACTIONS(6615), + [anon_sym_register] = ACTIONS(6615), + [anon_sym_inline] = ACTIONS(6615), + [anon_sym___inline] = ACTIONS(6615), + [anon_sym___inline__] = ACTIONS(6615), + [anon_sym___forceinline] = ACTIONS(6615), + [anon_sym_thread_local] = ACTIONS(6615), + [anon_sym___thread] = ACTIONS(6615), + [anon_sym_CG_EXTERN] = ACTIONS(6615), + [anon_sym_CG_INLINE] = ACTIONS(6615), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6615), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6615), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6615), + [anon_sym_IBOutlet] = ACTIONS(6615), + [anon_sym_IBInspectable] = ACTIONS(6615), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6615), + [anon_sym_NS_INLINE] = ACTIONS(6615), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6615), + [anon_sym_OBJC_EXPORT] = ACTIONS(6615), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6615), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6615), + [anon_sym_const] = ACTIONS(6615), + [anon_sym_constexpr] = ACTIONS(6615), + [anon_sym_volatile] = ACTIONS(6615), + [anon_sym_restrict] = ACTIONS(6615), + [anon_sym___restrict__] = ACTIONS(6615), + [anon_sym__Atomic] = ACTIONS(6615), + [anon_sym__Noreturn] = ACTIONS(6615), + [anon_sym__Nonnull] = ACTIONS(6615), + [anon_sym_nullable] = ACTIONS(6615), + [anon_sym__Complex] = ACTIONS(6615), + [anon_sym__Nullable] = ACTIONS(6615), + [anon_sym__Nullable_result] = ACTIONS(6615), + [anon_sym__Null_unspecified] = ACTIONS(6615), + [anon_sym___autoreleasing] = ACTIONS(6615), + [anon_sym___block] = ACTIONS(6615), + [anon_sym___bridge] = ACTIONS(6615), + [anon_sym___bridge_retained] = ACTIONS(6615), + [anon_sym___bridge_transfer] = ACTIONS(6615), + [anon_sym___complex] = ACTIONS(6615), + [anon_sym___const] = ACTIONS(6615), + [anon_sym___imag] = ACTIONS(6615), + [anon_sym___kindof] = ACTIONS(6615), + [anon_sym___nonnull] = ACTIONS(6615), + [anon_sym___nullable] = ACTIONS(6615), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6615), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6615), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6615), + [anon_sym___real] = ACTIONS(6615), + [anon_sym___strong] = ACTIONS(6615), + [anon_sym___unsafe_unretained] = ACTIONS(6615), + [anon_sym___unused] = ACTIONS(6615), + [anon_sym___weak] = ACTIONS(6615), + [anon_sym_alignas] = ACTIONS(6615), + [anon_sym__Alignas] = ACTIONS(6615), + [sym_primitive_type] = ACTIONS(6615), + [anon_sym_enum] = ACTIONS(6615), + [anon_sym_struct] = ACTIONS(6615), + [anon_sym_union] = ACTIONS(6615), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6615), + [anon_sym___typeof] = ACTIONS(6615), + [anon_sym_typeof] = ACTIONS(6615), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6615), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6615), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6615), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6615), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6615), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6615), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6615), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6615), + [anon_sym_NS_AVAILABLE] = ACTIONS(6615), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6615), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_API_AVAILABLE] = ACTIONS(6615), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_API_DEPRECATED] = ACTIONS(6615), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6615), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6615), + [anon_sym___deprecated_msg] = ACTIONS(6615), + [anon_sym___deprecated_enum_msg] = ACTIONS(6615), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6615), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6615), + [anon_sym_BOOL] = ACTIONS(6615), + [anon_sym_IMP] = ACTIONS(6615), + [anon_sym_SEL] = ACTIONS(6615), + [anon_sym_Class] = ACTIONS(6615), + [anon_sym_id] = ACTIONS(6615), + [anon_sym_ATdefs] = ACTIONS(6617), + }, + [2663] = { + [sym_identifier] = ACTIONS(6619), + [aux_sym_preproc_def_token1] = ACTIONS(6619), + [aux_sym_preproc_if_token1] = ACTIONS(6619), + [aux_sym_preproc_if_token2] = ACTIONS(6619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6619), + [aux_sym_preproc_else_token1] = ACTIONS(6619), + [aux_sym_preproc_elif_token1] = ACTIONS(6619), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6619), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6619), + [sym_preproc_directive] = ACTIONS(6619), + [anon_sym___extension__] = ACTIONS(6619), + [anon_sym_extern] = ACTIONS(6619), + [anon_sym___attribute__] = ACTIONS(6619), + [anon_sym___attribute] = ACTIONS(6619), + [anon_sym_noreturn] = ACTIONS(6619), + [anon_sym_LBRACK] = ACTIONS(6621), + [anon_sym___declspec] = ACTIONS(6619), + [anon_sym_signed] = ACTIONS(6619), + [anon_sym_unsigned] = ACTIONS(6619), + [anon_sym_long] = ACTIONS(6619), + [anon_sym_short] = ACTIONS(6619), + [anon_sym_static] = ACTIONS(6619), + [anon_sym_auto] = ACTIONS(6619), + [anon_sym_register] = ACTIONS(6619), + [anon_sym_inline] = ACTIONS(6619), + [anon_sym___inline] = ACTIONS(6619), + [anon_sym___inline__] = ACTIONS(6619), + [anon_sym___forceinline] = ACTIONS(6619), + [anon_sym_thread_local] = ACTIONS(6619), + [anon_sym___thread] = ACTIONS(6619), + [anon_sym_CG_EXTERN] = ACTIONS(6619), + [anon_sym_CG_INLINE] = ACTIONS(6619), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6619), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6619), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6619), + [anon_sym_IBOutlet] = ACTIONS(6619), + [anon_sym_IBInspectable] = ACTIONS(6619), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6619), + [anon_sym_NS_INLINE] = ACTIONS(6619), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6619), + [anon_sym_OBJC_EXPORT] = ACTIONS(6619), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6619), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6619), + [anon_sym_const] = ACTIONS(6619), + [anon_sym_constexpr] = ACTIONS(6619), + [anon_sym_volatile] = ACTIONS(6619), + [anon_sym_restrict] = ACTIONS(6619), + [anon_sym___restrict__] = ACTIONS(6619), + [anon_sym__Atomic] = ACTIONS(6619), + [anon_sym__Noreturn] = ACTIONS(6619), + [anon_sym__Nonnull] = ACTIONS(6619), + [anon_sym_nullable] = ACTIONS(6619), + [anon_sym__Complex] = ACTIONS(6619), + [anon_sym__Nullable] = ACTIONS(6619), + [anon_sym__Nullable_result] = ACTIONS(6619), + [anon_sym__Null_unspecified] = ACTIONS(6619), + [anon_sym___autoreleasing] = ACTIONS(6619), + [anon_sym___block] = ACTIONS(6619), + [anon_sym___bridge] = ACTIONS(6619), + [anon_sym___bridge_retained] = ACTIONS(6619), + [anon_sym___bridge_transfer] = ACTIONS(6619), + [anon_sym___complex] = ACTIONS(6619), + [anon_sym___const] = ACTIONS(6619), + [anon_sym___imag] = ACTIONS(6619), + [anon_sym___kindof] = ACTIONS(6619), + [anon_sym___nonnull] = ACTIONS(6619), + [anon_sym___nullable] = ACTIONS(6619), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6619), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6619), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6619), + [anon_sym___real] = ACTIONS(6619), + [anon_sym___strong] = ACTIONS(6619), + [anon_sym___unsafe_unretained] = ACTIONS(6619), + [anon_sym___unused] = ACTIONS(6619), + [anon_sym___weak] = ACTIONS(6619), + [anon_sym_alignas] = ACTIONS(6619), + [anon_sym__Alignas] = ACTIONS(6619), + [sym_primitive_type] = ACTIONS(6619), + [anon_sym_enum] = ACTIONS(6619), + [anon_sym_struct] = ACTIONS(6619), + [anon_sym_union] = ACTIONS(6619), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6619), + [anon_sym___typeof] = ACTIONS(6619), + [anon_sym_typeof] = ACTIONS(6619), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6619), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6619), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6619), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6619), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6619), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6619), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6619), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6619), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6619), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6619), + [anon_sym_NS_AVAILABLE] = ACTIONS(6619), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6619), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6619), + [anon_sym_API_AVAILABLE] = ACTIONS(6619), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6619), + [anon_sym_API_DEPRECATED] = ACTIONS(6619), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6619), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6619), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6619), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6619), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6619), + [anon_sym___deprecated_msg] = ACTIONS(6619), + [anon_sym___deprecated_enum_msg] = ACTIONS(6619), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6619), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6619), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6619), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6619), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6619), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6619), + [anon_sym_BOOL] = ACTIONS(6619), + [anon_sym_IMP] = ACTIONS(6619), + [anon_sym_SEL] = ACTIONS(6619), + [anon_sym_Class] = ACTIONS(6619), + [anon_sym_id] = ACTIONS(6619), + [anon_sym_ATdefs] = ACTIONS(6621), + }, + [2664] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6715), + [anon_sym_COMMA] = ACTIONS(4442), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6595), + [anon_sym_PLUS] = ACTIONS(6595), + [anon_sym_STAR] = ACTIONS(6597), + [anon_sym_SLASH] = ACTIONS(6599), + [anon_sym_PERCENT] = ACTIONS(6597), + [anon_sym_PIPE_PIPE] = ACTIONS(6643), + [anon_sym_AMP_AMP] = ACTIONS(6645), + [anon_sym_PIPE] = ACTIONS(6647), + [anon_sym_CARET] = ACTIONS(6649), + [anon_sym_AMP] = ACTIONS(6601), + [anon_sym_EQ_EQ] = ACTIONS(6603), + [anon_sym_BANG_EQ] = ACTIONS(6603), + [anon_sym_GT] = ACTIONS(6605), + [anon_sym_GT_EQ] = ACTIONS(6607), + [anon_sym_LT_EQ] = ACTIONS(6607), + [anon_sym_LT] = ACTIONS(6605), + [anon_sym_LT_LT] = ACTIONS(6609), + [anon_sym_GT_GT] = ACTIONS(6609), + [anon_sym_SEMI] = ACTIONS(4442), + [anon_sym___extension__] = ACTIONS(4442), + [anon_sym_extern] = ACTIONS(4442), + [anon_sym___attribute__] = ACTIONS(4442), + [anon_sym___attribute] = ACTIONS(4437), + [anon_sym_noreturn] = ACTIONS(4442), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4442), + [anon_sym_static] = ACTIONS(4442), + [anon_sym_auto] = ACTIONS(4442), + [anon_sym_register] = ACTIONS(4442), + [anon_sym_inline] = ACTIONS(4442), + [anon_sym___inline] = ACTIONS(4437), + [anon_sym___inline__] = ACTIONS(4442), + [anon_sym___forceinline] = ACTIONS(4442), + [anon_sym_thread_local] = ACTIONS(4442), + [anon_sym___thread] = ACTIONS(4442), + [anon_sym_CG_EXTERN] = ACTIONS(4442), + [anon_sym_CG_INLINE] = ACTIONS(4442), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4442), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4442), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4442), + [anon_sym_IBOutlet] = ACTIONS(4442), + [anon_sym_IBInspectable] = ACTIONS(4442), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4442), + [anon_sym_NS_INLINE] = ACTIONS(4442), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4442), + [anon_sym_OBJC_EXPORT] = ACTIONS(4442), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4442), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4442), + [anon_sym_const] = ACTIONS(4437), + [anon_sym_constexpr] = ACTIONS(4442), + [anon_sym_volatile] = ACTIONS(4442), + [anon_sym_restrict] = ACTIONS(4442), + [anon_sym___restrict__] = ACTIONS(4442), + [anon_sym__Atomic] = ACTIONS(4442), + [anon_sym__Noreturn] = ACTIONS(4442), + [anon_sym__Nonnull] = ACTIONS(4442), + [anon_sym_nullable] = ACTIONS(4442), + [anon_sym__Complex] = ACTIONS(4442), + [anon_sym__Nullable] = ACTIONS(4437), + [anon_sym__Nullable_result] = ACTIONS(4442), + [anon_sym__Null_unspecified] = ACTIONS(4442), + [anon_sym___autoreleasing] = ACTIONS(4442), + [anon_sym___block] = ACTIONS(4442), + [anon_sym___bridge] = ACTIONS(4437), + [anon_sym___bridge_retained] = ACTIONS(4442), + [anon_sym___bridge_transfer] = ACTIONS(4442), + [anon_sym___complex] = ACTIONS(4442), + [anon_sym___const] = ACTIONS(4442), + [anon_sym___imag] = ACTIONS(4442), + [anon_sym___kindof] = ACTIONS(4442), + [anon_sym___nonnull] = ACTIONS(4442), + [anon_sym___nullable] = ACTIONS(4442), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4442), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4442), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4442), + [anon_sym___real] = ACTIONS(4442), + [anon_sym___strong] = ACTIONS(4442), + [anon_sym___unsafe_unretained] = ACTIONS(4442), + [anon_sym___unused] = ACTIONS(4442), + [anon_sym___weak] = ACTIONS(4442), + [anon_sym_alignas] = ACTIONS(4442), + [anon_sym__Alignas] = ACTIONS(4442), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4442), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4442), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4442), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4442), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4442), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4442), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4442), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4442), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4442), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4442), + [anon_sym_NS_AVAILABLE] = ACTIONS(4437), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4442), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4442), + [anon_sym_API_AVAILABLE] = ACTIONS(4442), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4442), + [anon_sym_API_DEPRECATED] = ACTIONS(4442), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4442), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4442), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4442), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4442), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4442), + [anon_sym___deprecated_msg] = ACTIONS(4442), + [anon_sym___deprecated_enum_msg] = ACTIONS(4442), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4442), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4442), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4442), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4442), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4442), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4442), + }, + [2665] = { + [sym_argument_list] = STATE(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6639), + [anon_sym_COMMA] = ACTIONS(4480), + [anon_sym_LPAREN2] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(6595), + [anon_sym_PLUS] = ACTIONS(6595), + [anon_sym_STAR] = ACTIONS(6597), + [anon_sym_SLASH] = ACTIONS(6599), + [anon_sym_PERCENT] = ACTIONS(6597), + [anon_sym_PIPE_PIPE] = ACTIONS(6643), + [anon_sym_AMP_AMP] = ACTIONS(6645), + [anon_sym_PIPE] = ACTIONS(6647), + [anon_sym_CARET] = ACTIONS(6649), + [anon_sym_AMP] = ACTIONS(6601), + [anon_sym_EQ_EQ] = ACTIONS(6603), + [anon_sym_BANG_EQ] = ACTIONS(6603), + [anon_sym_GT] = ACTIONS(6605), + [anon_sym_GT_EQ] = ACTIONS(6607), + [anon_sym_LT_EQ] = ACTIONS(6607), + [anon_sym_LT] = ACTIONS(6605), + [anon_sym_LT_LT] = ACTIONS(6609), + [anon_sym_GT_GT] = ACTIONS(6609), + [anon_sym_SEMI] = ACTIONS(4480), + [anon_sym___extension__] = ACTIONS(4480), + [anon_sym_extern] = ACTIONS(4480), + [anon_sym___attribute__] = ACTIONS(4480), + [anon_sym___attribute] = ACTIONS(4478), + [anon_sym_noreturn] = ACTIONS(4480), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(4480), + [anon_sym_static] = ACTIONS(4480), + [anon_sym_auto] = ACTIONS(4480), + [anon_sym_register] = ACTIONS(4480), + [anon_sym_inline] = ACTIONS(4480), + [anon_sym___inline] = ACTIONS(4478), + [anon_sym___inline__] = ACTIONS(4480), + [anon_sym___forceinline] = ACTIONS(4480), + [anon_sym_thread_local] = ACTIONS(4480), + [anon_sym___thread] = ACTIONS(4480), + [anon_sym_CG_EXTERN] = ACTIONS(4480), + [anon_sym_CG_INLINE] = ACTIONS(4480), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4480), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4480), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4480), + [anon_sym_IBOutlet] = ACTIONS(4480), + [anon_sym_IBInspectable] = ACTIONS(4480), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4480), + [anon_sym_NS_INLINE] = ACTIONS(4480), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4480), + [anon_sym_OBJC_EXPORT] = ACTIONS(4480), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4480), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4480), + [anon_sym_const] = ACTIONS(4478), + [anon_sym_constexpr] = ACTIONS(4480), + [anon_sym_volatile] = ACTIONS(4480), + [anon_sym_restrict] = ACTIONS(4480), + [anon_sym___restrict__] = ACTIONS(4480), + [anon_sym__Atomic] = ACTIONS(4480), + [anon_sym__Noreturn] = ACTIONS(4480), + [anon_sym__Nonnull] = ACTIONS(4480), + [anon_sym_nullable] = ACTIONS(4480), + [anon_sym__Complex] = ACTIONS(4480), + [anon_sym__Nullable] = ACTIONS(4478), + [anon_sym__Nullable_result] = ACTIONS(4480), + [anon_sym__Null_unspecified] = ACTIONS(4480), + [anon_sym___autoreleasing] = ACTIONS(4480), + [anon_sym___block] = ACTIONS(4480), + [anon_sym___bridge] = ACTIONS(4478), + [anon_sym___bridge_retained] = ACTIONS(4480), + [anon_sym___bridge_transfer] = ACTIONS(4480), + [anon_sym___complex] = ACTIONS(4480), + [anon_sym___const] = ACTIONS(4480), + [anon_sym___imag] = ACTIONS(4480), + [anon_sym___kindof] = ACTIONS(4480), + [anon_sym___nonnull] = ACTIONS(4480), + [anon_sym___nullable] = ACTIONS(4480), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4480), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4480), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4480), + [anon_sym___real] = ACTIONS(4480), + [anon_sym___strong] = ACTIONS(4480), + [anon_sym___unsafe_unretained] = ACTIONS(4480), + [anon_sym___unused] = ACTIONS(4480), + [anon_sym___weak] = ACTIONS(4480), + [anon_sym_alignas] = ACTIONS(4480), + [anon_sym__Alignas] = ACTIONS(4480), + [anon_sym_QMARK] = ACTIONS(4480), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4480), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4480), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4480), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4480), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4480), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4480), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4480), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4480), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4480), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4480), + [anon_sym_NS_AVAILABLE] = ACTIONS(4478), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4480), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4480), + [anon_sym_API_AVAILABLE] = ACTIONS(4480), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4480), + [anon_sym_API_DEPRECATED] = ACTIONS(4480), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4480), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4480), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4480), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4480), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4480), + [anon_sym___deprecated_msg] = ACTIONS(4480), + [anon_sym___deprecated_enum_msg] = ACTIONS(4480), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4480), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4480), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4480), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4480), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4480), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4480), + }, + [2666] = { + [sym_identifier] = ACTIONS(6718), + [aux_sym_preproc_def_token1] = ACTIONS(6718), + [aux_sym_preproc_if_token1] = ACTIONS(6718), + [aux_sym_preproc_if_token2] = ACTIONS(6718), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6718), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6718), + [aux_sym_preproc_else_token1] = ACTIONS(6718), + [aux_sym_preproc_elif_token1] = ACTIONS(6718), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6718), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6718), + [sym_preproc_directive] = ACTIONS(6718), + [anon_sym___extension__] = ACTIONS(6718), + [anon_sym_extern] = ACTIONS(6718), + [anon_sym___attribute__] = ACTIONS(6718), + [anon_sym___attribute] = ACTIONS(6718), + [anon_sym_noreturn] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6720), + [anon_sym___declspec] = ACTIONS(6718), + [anon_sym_signed] = ACTIONS(6718), + [anon_sym_unsigned] = ACTIONS(6718), + [anon_sym_long] = ACTIONS(6718), + [anon_sym_short] = ACTIONS(6718), + [anon_sym_static] = ACTIONS(6718), + [anon_sym_auto] = ACTIONS(6718), + [anon_sym_register] = ACTIONS(6718), + [anon_sym_inline] = ACTIONS(6718), + [anon_sym___inline] = ACTIONS(6718), + [anon_sym___inline__] = ACTIONS(6718), + [anon_sym___forceinline] = ACTIONS(6718), + [anon_sym_thread_local] = ACTIONS(6718), + [anon_sym___thread] = ACTIONS(6718), + [anon_sym_CG_EXTERN] = ACTIONS(6718), + [anon_sym_CG_INLINE] = ACTIONS(6718), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6718), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6718), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6718), + [anon_sym_IBOutlet] = ACTIONS(6718), + [anon_sym_IBInspectable] = ACTIONS(6718), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6718), + [anon_sym_NS_INLINE] = ACTIONS(6718), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6718), + [anon_sym_OBJC_EXPORT] = ACTIONS(6718), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6718), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6718), + [anon_sym_const] = ACTIONS(6718), + [anon_sym_constexpr] = ACTIONS(6718), + [anon_sym_volatile] = ACTIONS(6718), + [anon_sym_restrict] = ACTIONS(6718), + [anon_sym___restrict__] = ACTIONS(6718), + [anon_sym__Atomic] = ACTIONS(6718), + [anon_sym__Noreturn] = ACTIONS(6718), + [anon_sym__Nonnull] = ACTIONS(6718), + [anon_sym_nullable] = ACTIONS(6718), + [anon_sym__Complex] = ACTIONS(6718), + [anon_sym__Nullable] = ACTIONS(6718), + [anon_sym__Nullable_result] = ACTIONS(6718), + [anon_sym__Null_unspecified] = ACTIONS(6718), + [anon_sym___autoreleasing] = ACTIONS(6718), + [anon_sym___block] = ACTIONS(6718), + [anon_sym___bridge] = ACTIONS(6718), + [anon_sym___bridge_retained] = ACTIONS(6718), + [anon_sym___bridge_transfer] = ACTIONS(6718), + [anon_sym___complex] = ACTIONS(6718), + [anon_sym___const] = ACTIONS(6718), + [anon_sym___imag] = ACTIONS(6718), + [anon_sym___kindof] = ACTIONS(6718), + [anon_sym___nonnull] = ACTIONS(6718), + [anon_sym___nullable] = ACTIONS(6718), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6718), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6718), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6718), + [anon_sym___real] = ACTIONS(6718), + [anon_sym___strong] = ACTIONS(6718), + [anon_sym___unsafe_unretained] = ACTIONS(6718), + [anon_sym___unused] = ACTIONS(6718), + [anon_sym___weak] = ACTIONS(6718), + [anon_sym_alignas] = ACTIONS(6718), + [anon_sym__Alignas] = ACTIONS(6718), + [sym_primitive_type] = ACTIONS(6718), + [anon_sym_enum] = ACTIONS(6718), + [anon_sym_struct] = ACTIONS(6718), + [anon_sym_union] = ACTIONS(6718), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6718), + [anon_sym___typeof] = ACTIONS(6718), + [anon_sym_typeof] = ACTIONS(6718), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6718), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6718), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6718), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6718), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6718), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6718), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6718), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6718), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6718), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6718), + [anon_sym_NS_AVAILABLE] = ACTIONS(6718), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6718), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6718), + [anon_sym_API_AVAILABLE] = ACTIONS(6718), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6718), + [anon_sym_API_DEPRECATED] = ACTIONS(6718), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6718), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6718), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6718), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6718), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6718), + [anon_sym___deprecated_msg] = ACTIONS(6718), + [anon_sym___deprecated_enum_msg] = ACTIONS(6718), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6718), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6718), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6718), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6718), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6718), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6718), + [anon_sym_BOOL] = ACTIONS(6718), + [anon_sym_IMP] = ACTIONS(6718), + [anon_sym_SEL] = ACTIONS(6718), + [anon_sym_Class] = ACTIONS(6718), + [anon_sym_id] = ACTIONS(6718), + [anon_sym_ATdefs] = ACTIONS(6720), + }, + [2667] = { + [sym_identifier] = ACTIONS(6671), + [aux_sym_preproc_def_token1] = ACTIONS(6671), + [aux_sym_preproc_if_token1] = ACTIONS(6671), + [aux_sym_preproc_if_token2] = ACTIONS(6671), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6671), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6671), + [aux_sym_preproc_else_token1] = ACTIONS(6671), + [aux_sym_preproc_elif_token1] = ACTIONS(6671), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6671), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6671), + [sym_preproc_directive] = ACTIONS(6671), + [anon_sym___extension__] = ACTIONS(6671), + [anon_sym_extern] = ACTIONS(6671), + [anon_sym___attribute__] = ACTIONS(6671), + [anon_sym___attribute] = ACTIONS(6671), + [anon_sym_noreturn] = ACTIONS(6671), + [anon_sym_LBRACK] = ACTIONS(6673), + [anon_sym___declspec] = ACTIONS(6671), + [anon_sym_signed] = ACTIONS(6671), + [anon_sym_unsigned] = ACTIONS(6671), + [anon_sym_long] = ACTIONS(6671), + [anon_sym_short] = ACTIONS(6671), + [anon_sym_static] = ACTIONS(6671), + [anon_sym_auto] = ACTIONS(6671), + [anon_sym_register] = ACTIONS(6671), + [anon_sym_inline] = ACTIONS(6671), + [anon_sym___inline] = ACTIONS(6671), + [anon_sym___inline__] = ACTIONS(6671), + [anon_sym___forceinline] = ACTIONS(6671), + [anon_sym_thread_local] = ACTIONS(6671), + [anon_sym___thread] = ACTIONS(6671), + [anon_sym_CG_EXTERN] = ACTIONS(6671), + [anon_sym_CG_INLINE] = ACTIONS(6671), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6671), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6671), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6671), + [anon_sym_IBOutlet] = ACTIONS(6671), + [anon_sym_IBInspectable] = ACTIONS(6671), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6671), + [anon_sym_NS_INLINE] = ACTIONS(6671), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6671), + [anon_sym_OBJC_EXPORT] = ACTIONS(6671), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6671), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6671), + [anon_sym_const] = ACTIONS(6671), + [anon_sym_constexpr] = ACTIONS(6671), + [anon_sym_volatile] = ACTIONS(6671), + [anon_sym_restrict] = ACTIONS(6671), + [anon_sym___restrict__] = ACTIONS(6671), + [anon_sym__Atomic] = ACTIONS(6671), + [anon_sym__Noreturn] = ACTIONS(6671), + [anon_sym__Nonnull] = ACTIONS(6671), + [anon_sym_nullable] = ACTIONS(6671), + [anon_sym__Complex] = ACTIONS(6671), + [anon_sym__Nullable] = ACTIONS(6671), + [anon_sym__Nullable_result] = ACTIONS(6671), + [anon_sym__Null_unspecified] = ACTIONS(6671), + [anon_sym___autoreleasing] = ACTIONS(6671), + [anon_sym___block] = ACTIONS(6671), + [anon_sym___bridge] = ACTIONS(6671), + [anon_sym___bridge_retained] = ACTIONS(6671), + [anon_sym___bridge_transfer] = ACTIONS(6671), + [anon_sym___complex] = ACTIONS(6671), + [anon_sym___const] = ACTIONS(6671), + [anon_sym___imag] = ACTIONS(6671), + [anon_sym___kindof] = ACTIONS(6671), + [anon_sym___nonnull] = ACTIONS(6671), + [anon_sym___nullable] = ACTIONS(6671), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6671), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6671), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6671), + [anon_sym___real] = ACTIONS(6671), + [anon_sym___strong] = ACTIONS(6671), + [anon_sym___unsafe_unretained] = ACTIONS(6671), + [anon_sym___unused] = ACTIONS(6671), + [anon_sym___weak] = ACTIONS(6671), + [anon_sym_alignas] = ACTIONS(6671), + [anon_sym__Alignas] = ACTIONS(6671), + [sym_primitive_type] = ACTIONS(6671), + [anon_sym_enum] = ACTIONS(6671), + [anon_sym_struct] = ACTIONS(6671), + [anon_sym_union] = ACTIONS(6671), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6671), + [anon_sym___typeof] = ACTIONS(6671), + [anon_sym_typeof] = ACTIONS(6671), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6671), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6671), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6671), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6671), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6671), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6671), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6671), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6671), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6671), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6671), + [anon_sym_NS_AVAILABLE] = ACTIONS(6671), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6671), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6671), + [anon_sym_API_AVAILABLE] = ACTIONS(6671), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6671), + [anon_sym_API_DEPRECATED] = ACTIONS(6671), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6671), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6671), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6671), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6671), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6671), + [anon_sym___deprecated_msg] = ACTIONS(6671), + [anon_sym___deprecated_enum_msg] = ACTIONS(6671), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6671), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6671), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6671), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6671), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6671), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6671), + [anon_sym_BOOL] = ACTIONS(6671), + [anon_sym_IMP] = ACTIONS(6671), + [anon_sym_SEL] = ACTIONS(6671), + [anon_sym_Class] = ACTIONS(6671), + [anon_sym_id] = ACTIONS(6671), + [anon_sym_ATdefs] = ACTIONS(6673), + }, + [2668] = { + [sym_identifier] = ACTIONS(6711), + [aux_sym_preproc_def_token1] = ACTIONS(6711), + [aux_sym_preproc_if_token1] = ACTIONS(6711), + [aux_sym_preproc_if_token2] = ACTIONS(6711), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6711), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6711), + [aux_sym_preproc_else_token1] = ACTIONS(6711), + [aux_sym_preproc_elif_token1] = ACTIONS(6711), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6711), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6711), + [sym_preproc_directive] = ACTIONS(6711), + [anon_sym___extension__] = ACTIONS(6711), + [anon_sym_extern] = ACTIONS(6711), + [anon_sym___attribute__] = ACTIONS(6711), + [anon_sym___attribute] = ACTIONS(6711), + [anon_sym_noreturn] = ACTIONS(6711), + [anon_sym_LBRACK] = ACTIONS(6713), + [anon_sym___declspec] = ACTIONS(6711), + [anon_sym_signed] = ACTIONS(6711), + [anon_sym_unsigned] = ACTIONS(6711), + [anon_sym_long] = ACTIONS(6711), + [anon_sym_short] = ACTIONS(6711), + [anon_sym_static] = ACTIONS(6711), + [anon_sym_auto] = ACTIONS(6711), + [anon_sym_register] = ACTIONS(6711), + [anon_sym_inline] = ACTIONS(6711), + [anon_sym___inline] = ACTIONS(6711), + [anon_sym___inline__] = ACTIONS(6711), + [anon_sym___forceinline] = ACTIONS(6711), + [anon_sym_thread_local] = ACTIONS(6711), + [anon_sym___thread] = ACTIONS(6711), + [anon_sym_CG_EXTERN] = ACTIONS(6711), + [anon_sym_CG_INLINE] = ACTIONS(6711), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6711), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6711), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6711), + [anon_sym_IBOutlet] = ACTIONS(6711), + [anon_sym_IBInspectable] = ACTIONS(6711), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6711), + [anon_sym_NS_INLINE] = ACTIONS(6711), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6711), + [anon_sym_OBJC_EXPORT] = ACTIONS(6711), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6711), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6711), + [anon_sym_const] = ACTIONS(6711), + [anon_sym_constexpr] = ACTIONS(6711), + [anon_sym_volatile] = ACTIONS(6711), + [anon_sym_restrict] = ACTIONS(6711), + [anon_sym___restrict__] = ACTIONS(6711), + [anon_sym__Atomic] = ACTIONS(6711), + [anon_sym__Noreturn] = ACTIONS(6711), + [anon_sym__Nonnull] = ACTIONS(6711), + [anon_sym_nullable] = ACTIONS(6711), + [anon_sym__Complex] = ACTIONS(6711), + [anon_sym__Nullable] = ACTIONS(6711), + [anon_sym__Nullable_result] = ACTIONS(6711), + [anon_sym__Null_unspecified] = ACTIONS(6711), + [anon_sym___autoreleasing] = ACTIONS(6711), + [anon_sym___block] = ACTIONS(6711), + [anon_sym___bridge] = ACTIONS(6711), + [anon_sym___bridge_retained] = ACTIONS(6711), + [anon_sym___bridge_transfer] = ACTIONS(6711), + [anon_sym___complex] = ACTIONS(6711), + [anon_sym___const] = ACTIONS(6711), + [anon_sym___imag] = ACTIONS(6711), + [anon_sym___kindof] = ACTIONS(6711), + [anon_sym___nonnull] = ACTIONS(6711), + [anon_sym___nullable] = ACTIONS(6711), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6711), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6711), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6711), + [anon_sym___real] = ACTIONS(6711), + [anon_sym___strong] = ACTIONS(6711), + [anon_sym___unsafe_unretained] = ACTIONS(6711), + [anon_sym___unused] = ACTIONS(6711), + [anon_sym___weak] = ACTIONS(6711), + [anon_sym_alignas] = ACTIONS(6711), + [anon_sym__Alignas] = ACTIONS(6711), + [sym_primitive_type] = ACTIONS(6711), + [anon_sym_enum] = ACTIONS(6711), + [anon_sym_struct] = ACTIONS(6711), + [anon_sym_union] = ACTIONS(6711), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6711), + [anon_sym___typeof] = ACTIONS(6711), + [anon_sym_typeof] = ACTIONS(6711), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6711), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6711), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6711), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6711), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6711), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6711), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6711), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6711), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6711), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6711), + [anon_sym_NS_AVAILABLE] = ACTIONS(6711), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6711), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6711), + [anon_sym_API_AVAILABLE] = ACTIONS(6711), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6711), + [anon_sym_API_DEPRECATED] = ACTIONS(6711), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6711), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6711), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6711), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6711), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6711), + [anon_sym___deprecated_msg] = ACTIONS(6711), + [anon_sym___deprecated_enum_msg] = ACTIONS(6711), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6711), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6711), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6711), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6711), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6711), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6711), + [anon_sym_BOOL] = ACTIONS(6711), + [anon_sym_IMP] = ACTIONS(6711), + [anon_sym_SEL] = ACTIONS(6711), + [anon_sym_Class] = ACTIONS(6711), + [anon_sym_id] = ACTIONS(6711), + [anon_sym_ATdefs] = ACTIONS(6713), + }, + [2669] = { + [sym_identifier] = ACTIONS(6695), + [aux_sym_preproc_def_token1] = ACTIONS(6695), + [aux_sym_preproc_if_token1] = ACTIONS(6695), + [aux_sym_preproc_if_token2] = ACTIONS(6695), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6695), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6695), + [aux_sym_preproc_else_token1] = ACTIONS(6695), + [aux_sym_preproc_elif_token1] = ACTIONS(6695), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6695), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6695), + [sym_preproc_directive] = ACTIONS(6695), + [anon_sym___extension__] = ACTIONS(6695), + [anon_sym_extern] = ACTIONS(6695), + [anon_sym___attribute__] = ACTIONS(6695), + [anon_sym___attribute] = ACTIONS(6695), + [anon_sym_noreturn] = ACTIONS(6695), + [anon_sym_LBRACK] = ACTIONS(6697), + [anon_sym___declspec] = ACTIONS(6695), + [anon_sym_signed] = ACTIONS(6695), + [anon_sym_unsigned] = ACTIONS(6695), + [anon_sym_long] = ACTIONS(6695), + [anon_sym_short] = ACTIONS(6695), + [anon_sym_static] = ACTIONS(6695), + [anon_sym_auto] = ACTIONS(6695), + [anon_sym_register] = ACTIONS(6695), + [anon_sym_inline] = ACTIONS(6695), + [anon_sym___inline] = ACTIONS(6695), + [anon_sym___inline__] = ACTIONS(6695), + [anon_sym___forceinline] = ACTIONS(6695), + [anon_sym_thread_local] = ACTIONS(6695), + [anon_sym___thread] = ACTIONS(6695), + [anon_sym_CG_EXTERN] = ACTIONS(6695), + [anon_sym_CG_INLINE] = ACTIONS(6695), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6695), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6695), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6695), + [anon_sym_IBOutlet] = ACTIONS(6695), + [anon_sym_IBInspectable] = ACTIONS(6695), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6695), + [anon_sym_NS_INLINE] = ACTIONS(6695), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6695), + [anon_sym_OBJC_EXPORT] = ACTIONS(6695), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6695), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6695), + [anon_sym_const] = ACTIONS(6695), + [anon_sym_constexpr] = ACTIONS(6695), + [anon_sym_volatile] = ACTIONS(6695), + [anon_sym_restrict] = ACTIONS(6695), + [anon_sym___restrict__] = ACTIONS(6695), + [anon_sym__Atomic] = ACTIONS(6695), + [anon_sym__Noreturn] = ACTIONS(6695), + [anon_sym__Nonnull] = ACTIONS(6695), + [anon_sym_nullable] = ACTIONS(6695), + [anon_sym__Complex] = ACTIONS(6695), + [anon_sym__Nullable] = ACTIONS(6695), + [anon_sym__Nullable_result] = ACTIONS(6695), + [anon_sym__Null_unspecified] = ACTIONS(6695), + [anon_sym___autoreleasing] = ACTIONS(6695), + [anon_sym___block] = ACTIONS(6695), + [anon_sym___bridge] = ACTIONS(6695), + [anon_sym___bridge_retained] = ACTIONS(6695), + [anon_sym___bridge_transfer] = ACTIONS(6695), + [anon_sym___complex] = ACTIONS(6695), + [anon_sym___const] = ACTIONS(6695), + [anon_sym___imag] = ACTIONS(6695), + [anon_sym___kindof] = ACTIONS(6695), + [anon_sym___nonnull] = ACTIONS(6695), + [anon_sym___nullable] = ACTIONS(6695), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6695), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6695), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6695), + [anon_sym___real] = ACTIONS(6695), + [anon_sym___strong] = ACTIONS(6695), + [anon_sym___unsafe_unretained] = ACTIONS(6695), + [anon_sym___unused] = ACTIONS(6695), + [anon_sym___weak] = ACTIONS(6695), + [anon_sym_alignas] = ACTIONS(6695), + [anon_sym__Alignas] = ACTIONS(6695), + [sym_primitive_type] = ACTIONS(6695), + [anon_sym_enum] = ACTIONS(6695), + [anon_sym_struct] = ACTIONS(6695), + [anon_sym_union] = ACTIONS(6695), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6695), + [anon_sym___typeof] = ACTIONS(6695), + [anon_sym_typeof] = ACTIONS(6695), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6695), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6695), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6695), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6695), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6695), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6695), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6695), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6695), + [anon_sym_NS_AVAILABLE] = ACTIONS(6695), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6695), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_API_AVAILABLE] = ACTIONS(6695), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_API_DEPRECATED] = ACTIONS(6695), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6695), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6695), + [anon_sym___deprecated_msg] = ACTIONS(6695), + [anon_sym___deprecated_enum_msg] = ACTIONS(6695), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6695), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6695), + [anon_sym_BOOL] = ACTIONS(6695), + [anon_sym_IMP] = ACTIONS(6695), + [anon_sym_SEL] = ACTIONS(6695), + [anon_sym_Class] = ACTIONS(6695), + [anon_sym_id] = ACTIONS(6695), + [anon_sym_ATdefs] = ACTIONS(6697), + }, + [2670] = { + [sym_expression] = STATE(1629), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(2928), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(203), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2926), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2671] = { + [sym_string_literal] = STATE(1723), + [sym_identifier] = ACTIONS(5634), + [anon_sym___extension__] = ACTIONS(5634), + [anon_sym_extern] = ACTIONS(5634), + [anon_sym___attribute__] = ACTIONS(5634), + [anon_sym___attribute] = ACTIONS(5634), + [anon_sym_noreturn] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5636), + [anon_sym___declspec] = ACTIONS(5634), + [anon_sym_signed] = ACTIONS(5634), + [anon_sym_unsigned] = ACTIONS(5634), + [anon_sym_long] = ACTIONS(5634), + [anon_sym_short] = ACTIONS(5634), + [anon_sym_static] = ACTIONS(5634), + [anon_sym_auto] = ACTIONS(5634), + [anon_sym_register] = ACTIONS(5634), + [anon_sym_inline] = ACTIONS(5634), + [anon_sym___inline] = ACTIONS(5634), + [anon_sym___inline__] = ACTIONS(5634), + [anon_sym___forceinline] = ACTIONS(5634), + [anon_sym_thread_local] = ACTIONS(5634), + [anon_sym___thread] = ACTIONS(5634), + [anon_sym_CG_EXTERN] = ACTIONS(5634), + [anon_sym_CG_INLINE] = ACTIONS(5634), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5634), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5634), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5634), + [anon_sym_IBOutlet] = ACTIONS(5634), + [anon_sym_IBInspectable] = ACTIONS(5634), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5634), + [anon_sym_NS_INLINE] = ACTIONS(5634), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5634), + [anon_sym_OBJC_EXPORT] = ACTIONS(5634), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5634), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5634), + [anon_sym_const] = ACTIONS(5634), + [anon_sym_constexpr] = ACTIONS(5634), + [anon_sym_volatile] = ACTIONS(5634), + [anon_sym_restrict] = ACTIONS(5634), + [anon_sym___restrict__] = ACTIONS(5634), + [anon_sym__Atomic] = ACTIONS(5634), + [anon_sym__Noreturn] = ACTIONS(5634), + [anon_sym__Nonnull] = ACTIONS(5634), + [anon_sym_nullable] = ACTIONS(5634), + [anon_sym__Complex] = ACTIONS(5634), + [anon_sym__Nullable] = ACTIONS(5634), + [anon_sym__Nullable_result] = ACTIONS(5634), + [anon_sym__Null_unspecified] = ACTIONS(5634), + [anon_sym___autoreleasing] = ACTIONS(5634), + [anon_sym___block] = ACTIONS(5634), + [anon_sym___bridge] = ACTIONS(5634), + [anon_sym___bridge_retained] = ACTIONS(5634), + [anon_sym___bridge_transfer] = ACTIONS(5634), + [anon_sym___complex] = ACTIONS(5634), + [anon_sym___const] = ACTIONS(5634), + [anon_sym___imag] = ACTIONS(5634), + [anon_sym___kindof] = ACTIONS(5634), + [anon_sym___nonnull] = ACTIONS(5634), + [anon_sym___nullable] = ACTIONS(5634), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5634), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5634), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5634), + [anon_sym___real] = ACTIONS(5634), + [anon_sym___strong] = ACTIONS(5634), + [anon_sym___unsafe_unretained] = ACTIONS(5634), + [anon_sym___unused] = ACTIONS(5634), + [anon_sym___weak] = ACTIONS(5634), + [anon_sym_alignas] = ACTIONS(5634), + [anon_sym__Alignas] = ACTIONS(5634), + [sym_primitive_type] = ACTIONS(5634), + [anon_sym_enum] = ACTIONS(5634), + [anon_sym_struct] = ACTIONS(5634), + [anon_sym_union] = ACTIONS(5634), + [anon_sym_AT] = ACTIONS(6722), + [anon_sym_DQUOTE] = ACTIONS(6724), + [anon_sym_L_DQUOTE] = ACTIONS(6724), + [anon_sym_u_DQUOTE] = ACTIONS(6724), + [anon_sym_U_DQUOTE] = ACTIONS(6724), + [anon_sym_u8_DQUOTE] = ACTIONS(6724), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5634), + [anon_sym___typeof] = ACTIONS(5634), + [anon_sym_typeof] = ACTIONS(5634), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5634), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5634), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5634), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5634), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5634), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5634), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5634), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5634), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5634), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5634), + [anon_sym_NS_AVAILABLE] = ACTIONS(5634), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5634), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5634), + [anon_sym_API_AVAILABLE] = ACTIONS(5634), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5634), + [anon_sym_API_DEPRECATED] = ACTIONS(5634), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5634), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5634), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5634), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5634), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5634), + [anon_sym___deprecated_msg] = ACTIONS(5634), + [anon_sym___deprecated_enum_msg] = ACTIONS(5634), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5634), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5634), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5634), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5634), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5634), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5634), + [anon_sym_ATprotocol] = ACTIONS(5636), + [anon_sym_ATinterface] = ACTIONS(5636), + [anon_sym_ATimplementation] = ACTIONS(5636), + [anon_sym_BOOL] = ACTIONS(5634), + [anon_sym_IMP] = ACTIONS(5634), + [anon_sym_SEL] = ACTIONS(5634), + [anon_sym_Class] = ACTIONS(5634), + [anon_sym_id] = ACTIONS(5634), + }, + [2672] = { + [sym_string_literal] = STATE(1728), + [sym_identifier] = ACTIONS(5634), + [anon_sym___extension__] = ACTIONS(5634), + [anon_sym_extern] = ACTIONS(5634), + [anon_sym___attribute__] = ACTIONS(5634), + [anon_sym___attribute] = ACTIONS(5634), + [anon_sym_noreturn] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5636), + [anon_sym___declspec] = ACTIONS(5634), + [anon_sym_signed] = ACTIONS(5634), + [anon_sym_unsigned] = ACTIONS(5634), + [anon_sym_long] = ACTIONS(5634), + [anon_sym_short] = ACTIONS(5634), + [anon_sym_static] = ACTIONS(5634), + [anon_sym_auto] = ACTIONS(5634), + [anon_sym_register] = ACTIONS(5634), + [anon_sym_inline] = ACTIONS(5634), + [anon_sym___inline] = ACTIONS(5634), + [anon_sym___inline__] = ACTIONS(5634), + [anon_sym___forceinline] = ACTIONS(5634), + [anon_sym_thread_local] = ACTIONS(5634), + [anon_sym___thread] = ACTIONS(5634), + [anon_sym_CG_EXTERN] = ACTIONS(5634), + [anon_sym_CG_INLINE] = ACTIONS(5634), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5634), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5634), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5634), + [anon_sym_IBOutlet] = ACTIONS(5634), + [anon_sym_IBInspectable] = ACTIONS(5634), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5634), + [anon_sym_NS_INLINE] = ACTIONS(5634), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5634), + [anon_sym_OBJC_EXPORT] = ACTIONS(5634), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5634), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5634), + [anon_sym_const] = ACTIONS(5634), + [anon_sym_constexpr] = ACTIONS(5634), + [anon_sym_volatile] = ACTIONS(5634), + [anon_sym_restrict] = ACTIONS(5634), + [anon_sym___restrict__] = ACTIONS(5634), + [anon_sym__Atomic] = ACTIONS(5634), + [anon_sym__Noreturn] = ACTIONS(5634), + [anon_sym__Nonnull] = ACTIONS(5634), + [anon_sym_nullable] = ACTIONS(5634), + [anon_sym__Complex] = ACTIONS(5634), + [anon_sym__Nullable] = ACTIONS(5634), + [anon_sym__Nullable_result] = ACTIONS(5634), + [anon_sym__Null_unspecified] = ACTIONS(5634), + [anon_sym___autoreleasing] = ACTIONS(5634), + [anon_sym___block] = ACTIONS(5634), + [anon_sym___bridge] = ACTIONS(5634), + [anon_sym___bridge_retained] = ACTIONS(5634), + [anon_sym___bridge_transfer] = ACTIONS(5634), + [anon_sym___complex] = ACTIONS(5634), + [anon_sym___const] = ACTIONS(5634), + [anon_sym___imag] = ACTIONS(5634), + [anon_sym___kindof] = ACTIONS(5634), + [anon_sym___nonnull] = ACTIONS(5634), + [anon_sym___nullable] = ACTIONS(5634), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5634), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5634), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5634), + [anon_sym___real] = ACTIONS(5634), + [anon_sym___strong] = ACTIONS(5634), + [anon_sym___unsafe_unretained] = ACTIONS(5634), + [anon_sym___unused] = ACTIONS(5634), + [anon_sym___weak] = ACTIONS(5634), + [anon_sym_alignas] = ACTIONS(5634), + [anon_sym__Alignas] = ACTIONS(5634), + [sym_primitive_type] = ACTIONS(5634), + [anon_sym_enum] = ACTIONS(5634), + [anon_sym_struct] = ACTIONS(5634), + [anon_sym_union] = ACTIONS(5634), + [anon_sym_AT] = ACTIONS(6722), + [anon_sym_DQUOTE] = ACTIONS(6724), + [anon_sym_L_DQUOTE] = ACTIONS(6724), + [anon_sym_u_DQUOTE] = ACTIONS(6724), + [anon_sym_U_DQUOTE] = ACTIONS(6724), + [anon_sym_u8_DQUOTE] = ACTIONS(6724), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5634), + [anon_sym___typeof] = ACTIONS(5634), + [anon_sym_typeof] = ACTIONS(5634), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5634), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5634), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5634), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5634), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5634), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5634), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5634), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5634), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5634), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5634), + [anon_sym_NS_AVAILABLE] = ACTIONS(5634), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5634), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5634), + [anon_sym_API_AVAILABLE] = ACTIONS(5634), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5634), + [anon_sym_API_DEPRECATED] = ACTIONS(5634), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5634), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5634), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5634), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5634), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5634), + [anon_sym___deprecated_msg] = ACTIONS(5634), + [anon_sym___deprecated_enum_msg] = ACTIONS(5634), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5634), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5634), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5634), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5634), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5634), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5634), + [anon_sym_ATprotocol] = ACTIONS(5636), + [anon_sym_ATinterface] = ACTIONS(5636), + [anon_sym_ATimplementation] = ACTIONS(5636), + [anon_sym_BOOL] = ACTIONS(5634), + [anon_sym_IMP] = ACTIONS(5634), + [anon_sym_SEL] = ACTIONS(5634), + [anon_sym_Class] = ACTIONS(5634), + [anon_sym_id] = ACTIONS(5634), + }, + [2673] = { + [sym_string_literal] = STATE(1730), + [sym_identifier] = ACTIONS(5634), + [anon_sym___extension__] = ACTIONS(5634), + [anon_sym_extern] = ACTIONS(5634), + [anon_sym___attribute__] = ACTIONS(5634), + [anon_sym___attribute] = ACTIONS(5634), + [anon_sym_noreturn] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5636), + [anon_sym___declspec] = ACTIONS(5634), + [anon_sym_signed] = ACTIONS(5634), + [anon_sym_unsigned] = ACTIONS(5634), + [anon_sym_long] = ACTIONS(5634), + [anon_sym_short] = ACTIONS(5634), + [anon_sym_static] = ACTIONS(5634), + [anon_sym_auto] = ACTIONS(5634), + [anon_sym_register] = ACTIONS(5634), + [anon_sym_inline] = ACTIONS(5634), + [anon_sym___inline] = ACTIONS(5634), + [anon_sym___inline__] = ACTIONS(5634), + [anon_sym___forceinline] = ACTIONS(5634), + [anon_sym_thread_local] = ACTIONS(5634), + [anon_sym___thread] = ACTIONS(5634), + [anon_sym_CG_EXTERN] = ACTIONS(5634), + [anon_sym_CG_INLINE] = ACTIONS(5634), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5634), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5634), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5634), + [anon_sym_IBOutlet] = ACTIONS(5634), + [anon_sym_IBInspectable] = ACTIONS(5634), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5634), + [anon_sym_NS_INLINE] = ACTIONS(5634), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5634), + [anon_sym_OBJC_EXPORT] = ACTIONS(5634), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5634), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5634), + [anon_sym_const] = ACTIONS(5634), + [anon_sym_constexpr] = ACTIONS(5634), + [anon_sym_volatile] = ACTIONS(5634), + [anon_sym_restrict] = ACTIONS(5634), + [anon_sym___restrict__] = ACTIONS(5634), + [anon_sym__Atomic] = ACTIONS(5634), + [anon_sym__Noreturn] = ACTIONS(5634), + [anon_sym__Nonnull] = ACTIONS(5634), + [anon_sym_nullable] = ACTIONS(5634), + [anon_sym__Complex] = ACTIONS(5634), + [anon_sym__Nullable] = ACTIONS(5634), + [anon_sym__Nullable_result] = ACTIONS(5634), + [anon_sym__Null_unspecified] = ACTIONS(5634), + [anon_sym___autoreleasing] = ACTIONS(5634), + [anon_sym___block] = ACTIONS(5634), + [anon_sym___bridge] = ACTIONS(5634), + [anon_sym___bridge_retained] = ACTIONS(5634), + [anon_sym___bridge_transfer] = ACTIONS(5634), + [anon_sym___complex] = ACTIONS(5634), + [anon_sym___const] = ACTIONS(5634), + [anon_sym___imag] = ACTIONS(5634), + [anon_sym___kindof] = ACTIONS(5634), + [anon_sym___nonnull] = ACTIONS(5634), + [anon_sym___nullable] = ACTIONS(5634), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5634), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5634), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5634), + [anon_sym___real] = ACTIONS(5634), + [anon_sym___strong] = ACTIONS(5634), + [anon_sym___unsafe_unretained] = ACTIONS(5634), + [anon_sym___unused] = ACTIONS(5634), + [anon_sym___weak] = ACTIONS(5634), + [anon_sym_alignas] = ACTIONS(5634), + [anon_sym__Alignas] = ACTIONS(5634), + [sym_primitive_type] = ACTIONS(5634), + [anon_sym_enum] = ACTIONS(5634), + [anon_sym_struct] = ACTIONS(5634), + [anon_sym_union] = ACTIONS(5634), + [anon_sym_AT] = ACTIONS(6722), + [anon_sym_DQUOTE] = ACTIONS(6724), + [anon_sym_L_DQUOTE] = ACTIONS(6724), + [anon_sym_u_DQUOTE] = ACTIONS(6724), + [anon_sym_U_DQUOTE] = ACTIONS(6724), + [anon_sym_u8_DQUOTE] = ACTIONS(6724), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5634), + [anon_sym___typeof] = ACTIONS(5634), + [anon_sym_typeof] = ACTIONS(5634), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5634), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5634), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5634), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5634), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5634), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5634), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5634), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5634), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5634), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5634), + [anon_sym_NS_AVAILABLE] = ACTIONS(5634), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5634), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5634), + [anon_sym_API_AVAILABLE] = ACTIONS(5634), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5634), + [anon_sym_API_DEPRECATED] = ACTIONS(5634), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5634), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5634), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5634), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5634), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5634), + [anon_sym___deprecated_msg] = ACTIONS(5634), + [anon_sym___deprecated_enum_msg] = ACTIONS(5634), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5634), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5634), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5634), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5634), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5634), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5634), + [anon_sym_ATprotocol] = ACTIONS(5636), + [anon_sym_ATinterface] = ACTIONS(5636), + [anon_sym_ATimplementation] = ACTIONS(5636), + [anon_sym_BOOL] = ACTIONS(5634), + [anon_sym_IMP] = ACTIONS(5634), + [anon_sym_SEL] = ACTIONS(5634), + [anon_sym_Class] = ACTIONS(5634), + [anon_sym_id] = ACTIONS(5634), + }, + [2674] = { + [sym_expression] = STATE(4402), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(2928), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(203), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2926), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2675] = { + [sym_string_literal] = STATE(1735), + [sym_identifier] = ACTIONS(5634), + [anon_sym___extension__] = ACTIONS(5634), + [anon_sym_extern] = ACTIONS(5634), + [anon_sym___attribute__] = ACTIONS(5634), + [anon_sym___attribute] = ACTIONS(5634), + [anon_sym_noreturn] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5636), + [anon_sym___declspec] = ACTIONS(5634), + [anon_sym_signed] = ACTIONS(5634), + [anon_sym_unsigned] = ACTIONS(5634), + [anon_sym_long] = ACTIONS(5634), + [anon_sym_short] = ACTIONS(5634), + [anon_sym_static] = ACTIONS(5634), + [anon_sym_auto] = ACTIONS(5634), + [anon_sym_register] = ACTIONS(5634), + [anon_sym_inline] = ACTIONS(5634), + [anon_sym___inline] = ACTIONS(5634), + [anon_sym___inline__] = ACTIONS(5634), + [anon_sym___forceinline] = ACTIONS(5634), + [anon_sym_thread_local] = ACTIONS(5634), + [anon_sym___thread] = ACTIONS(5634), + [anon_sym_CG_EXTERN] = ACTIONS(5634), + [anon_sym_CG_INLINE] = ACTIONS(5634), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5634), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5634), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5634), + [anon_sym_IBOutlet] = ACTIONS(5634), + [anon_sym_IBInspectable] = ACTIONS(5634), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5634), + [anon_sym_NS_INLINE] = ACTIONS(5634), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5634), + [anon_sym_OBJC_EXPORT] = ACTIONS(5634), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5634), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5634), + [anon_sym_const] = ACTIONS(5634), + [anon_sym_constexpr] = ACTIONS(5634), + [anon_sym_volatile] = ACTIONS(5634), + [anon_sym_restrict] = ACTIONS(5634), + [anon_sym___restrict__] = ACTIONS(5634), + [anon_sym__Atomic] = ACTIONS(5634), + [anon_sym__Noreturn] = ACTIONS(5634), + [anon_sym__Nonnull] = ACTIONS(5634), + [anon_sym_nullable] = ACTIONS(5634), + [anon_sym__Complex] = ACTIONS(5634), + [anon_sym__Nullable] = ACTIONS(5634), + [anon_sym__Nullable_result] = ACTIONS(5634), + [anon_sym__Null_unspecified] = ACTIONS(5634), + [anon_sym___autoreleasing] = ACTIONS(5634), + [anon_sym___block] = ACTIONS(5634), + [anon_sym___bridge] = ACTIONS(5634), + [anon_sym___bridge_retained] = ACTIONS(5634), + [anon_sym___bridge_transfer] = ACTIONS(5634), + [anon_sym___complex] = ACTIONS(5634), + [anon_sym___const] = ACTIONS(5634), + [anon_sym___imag] = ACTIONS(5634), + [anon_sym___kindof] = ACTIONS(5634), + [anon_sym___nonnull] = ACTIONS(5634), + [anon_sym___nullable] = ACTIONS(5634), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5634), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5634), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5634), + [anon_sym___real] = ACTIONS(5634), + [anon_sym___strong] = ACTIONS(5634), + [anon_sym___unsafe_unretained] = ACTIONS(5634), + [anon_sym___unused] = ACTIONS(5634), + [anon_sym___weak] = ACTIONS(5634), + [anon_sym_alignas] = ACTIONS(5634), + [anon_sym__Alignas] = ACTIONS(5634), + [sym_primitive_type] = ACTIONS(5634), + [anon_sym_enum] = ACTIONS(5634), + [anon_sym_struct] = ACTIONS(5634), + [anon_sym_union] = ACTIONS(5634), + [anon_sym_AT] = ACTIONS(6722), + [anon_sym_DQUOTE] = ACTIONS(6724), + [anon_sym_L_DQUOTE] = ACTIONS(6724), + [anon_sym_u_DQUOTE] = ACTIONS(6724), + [anon_sym_U_DQUOTE] = ACTIONS(6724), + [anon_sym_u8_DQUOTE] = ACTIONS(6724), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5634), + [anon_sym___typeof] = ACTIONS(5634), + [anon_sym_typeof] = ACTIONS(5634), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5634), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5634), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5634), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5634), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5634), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5634), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5634), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5634), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5634), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5634), + [anon_sym_NS_AVAILABLE] = ACTIONS(5634), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5634), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5634), + [anon_sym_API_AVAILABLE] = ACTIONS(5634), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5634), + [anon_sym_API_DEPRECATED] = ACTIONS(5634), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5634), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5634), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5634), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5634), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5634), + [anon_sym___deprecated_msg] = ACTIONS(5634), + [anon_sym___deprecated_enum_msg] = ACTIONS(5634), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5634), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5634), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5634), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5634), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5634), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5634), + [anon_sym_ATprotocol] = ACTIONS(5636), + [anon_sym_ATinterface] = ACTIONS(5636), + [anon_sym_ATimplementation] = ACTIONS(5636), + [anon_sym_BOOL] = ACTIONS(5634), + [anon_sym_IMP] = ACTIONS(5634), + [anon_sym_SEL] = ACTIONS(5634), + [anon_sym_Class] = ACTIONS(5634), + [anon_sym_id] = ACTIONS(5634), + }, + [2676] = { + [sym_string_literal] = STATE(1731), + [sym_identifier] = ACTIONS(5634), + [anon_sym___extension__] = ACTIONS(5634), + [anon_sym_extern] = ACTIONS(5634), + [anon_sym___attribute__] = ACTIONS(5634), + [anon_sym___attribute] = ACTIONS(5634), + [anon_sym_noreturn] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5636), + [anon_sym___declspec] = ACTIONS(5634), + [anon_sym_signed] = ACTIONS(5634), + [anon_sym_unsigned] = ACTIONS(5634), + [anon_sym_long] = ACTIONS(5634), + [anon_sym_short] = ACTIONS(5634), + [anon_sym_static] = ACTIONS(5634), + [anon_sym_auto] = ACTIONS(5634), + [anon_sym_register] = ACTIONS(5634), + [anon_sym_inline] = ACTIONS(5634), + [anon_sym___inline] = ACTIONS(5634), + [anon_sym___inline__] = ACTIONS(5634), + [anon_sym___forceinline] = ACTIONS(5634), + [anon_sym_thread_local] = ACTIONS(5634), + [anon_sym___thread] = ACTIONS(5634), + [anon_sym_CG_EXTERN] = ACTIONS(5634), + [anon_sym_CG_INLINE] = ACTIONS(5634), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5634), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5634), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5634), + [anon_sym_IBOutlet] = ACTIONS(5634), + [anon_sym_IBInspectable] = ACTIONS(5634), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5634), + [anon_sym_NS_INLINE] = ACTIONS(5634), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5634), + [anon_sym_OBJC_EXPORT] = ACTIONS(5634), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5634), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5634), + [anon_sym_const] = ACTIONS(5634), + [anon_sym_constexpr] = ACTIONS(5634), + [anon_sym_volatile] = ACTIONS(5634), + [anon_sym_restrict] = ACTIONS(5634), + [anon_sym___restrict__] = ACTIONS(5634), + [anon_sym__Atomic] = ACTIONS(5634), + [anon_sym__Noreturn] = ACTIONS(5634), + [anon_sym__Nonnull] = ACTIONS(5634), + [anon_sym_nullable] = ACTIONS(5634), + [anon_sym__Complex] = ACTIONS(5634), + [anon_sym__Nullable] = ACTIONS(5634), + [anon_sym__Nullable_result] = ACTIONS(5634), + [anon_sym__Null_unspecified] = ACTIONS(5634), + [anon_sym___autoreleasing] = ACTIONS(5634), + [anon_sym___block] = ACTIONS(5634), + [anon_sym___bridge] = ACTIONS(5634), + [anon_sym___bridge_retained] = ACTIONS(5634), + [anon_sym___bridge_transfer] = ACTIONS(5634), + [anon_sym___complex] = ACTIONS(5634), + [anon_sym___const] = ACTIONS(5634), + [anon_sym___imag] = ACTIONS(5634), + [anon_sym___kindof] = ACTIONS(5634), + [anon_sym___nonnull] = ACTIONS(5634), + [anon_sym___nullable] = ACTIONS(5634), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5634), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5634), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5634), + [anon_sym___real] = ACTIONS(5634), + [anon_sym___strong] = ACTIONS(5634), + [anon_sym___unsafe_unretained] = ACTIONS(5634), + [anon_sym___unused] = ACTIONS(5634), + [anon_sym___weak] = ACTIONS(5634), + [anon_sym_alignas] = ACTIONS(5634), + [anon_sym__Alignas] = ACTIONS(5634), + [sym_primitive_type] = ACTIONS(5634), + [anon_sym_enum] = ACTIONS(5634), + [anon_sym_struct] = ACTIONS(5634), + [anon_sym_union] = ACTIONS(5634), + [anon_sym_AT] = ACTIONS(6722), + [anon_sym_DQUOTE] = ACTIONS(6724), + [anon_sym_L_DQUOTE] = ACTIONS(6724), + [anon_sym_u_DQUOTE] = ACTIONS(6724), + [anon_sym_U_DQUOTE] = ACTIONS(6724), + [anon_sym_u8_DQUOTE] = ACTIONS(6724), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5634), + [anon_sym___typeof] = ACTIONS(5634), + [anon_sym_typeof] = ACTIONS(5634), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5634), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5634), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5634), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5634), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5634), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5634), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5634), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5634), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5634), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5634), + [anon_sym_NS_AVAILABLE] = ACTIONS(5634), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5634), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5634), + [anon_sym_API_AVAILABLE] = ACTIONS(5634), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5634), + [anon_sym_API_DEPRECATED] = ACTIONS(5634), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5634), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5634), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5634), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5634), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5634), + [anon_sym___deprecated_msg] = ACTIONS(5634), + [anon_sym___deprecated_enum_msg] = ACTIONS(5634), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5634), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5634), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5634), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5634), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5634), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5634), + [anon_sym_ATprotocol] = ACTIONS(5636), + [anon_sym_ATinterface] = ACTIONS(5636), + [anon_sym_ATimplementation] = ACTIONS(5636), + [anon_sym_BOOL] = ACTIONS(5634), + [anon_sym_IMP] = ACTIONS(5634), + [anon_sym_SEL] = ACTIONS(5634), + [anon_sym_Class] = ACTIONS(5634), + [anon_sym_id] = ACTIONS(5634), + }, + [2677] = { + [sym_identifier] = ACTIONS(6726), + [anon_sym_COMMA] = ACTIONS(6728), + [anon_sym_LPAREN2] = ACTIONS(6728), + [anon_sym_SEMI] = ACTIONS(6728), + [anon_sym___extension__] = ACTIONS(6726), + [anon_sym_extern] = ACTIONS(6726), + [anon_sym___attribute__] = ACTIONS(6726), + [anon_sym___attribute] = ACTIONS(6726), + [anon_sym_noreturn] = ACTIONS(6726), + [anon_sym_LBRACK] = ACTIONS(6728), + [anon_sym___declspec] = ACTIONS(6726), + [anon_sym_LBRACE] = ACTIONS(6728), + [anon_sym_signed] = ACTIONS(6726), + [anon_sym_unsigned] = ACTIONS(6726), + [anon_sym_long] = ACTIONS(6726), + [anon_sym_short] = ACTIONS(6726), + [anon_sym_static] = ACTIONS(6726), + [anon_sym_EQ] = ACTIONS(6728), + [anon_sym_ATautoreleasepool] = ACTIONS(6728), + [anon_sym_auto] = ACTIONS(6726), + [anon_sym_register] = ACTIONS(6726), + [anon_sym_inline] = ACTIONS(6726), + [anon_sym___inline] = ACTIONS(6726), + [anon_sym___inline__] = ACTIONS(6726), + [anon_sym___forceinline] = ACTIONS(6726), + [anon_sym_thread_local] = ACTIONS(6726), + [anon_sym___thread] = ACTIONS(6726), + [anon_sym_CG_EXTERN] = ACTIONS(6726), + [anon_sym_CG_INLINE] = ACTIONS(6726), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6726), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6726), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6726), + [anon_sym_IBOutlet] = ACTIONS(6726), + [anon_sym_IBInspectable] = ACTIONS(6726), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6726), + [anon_sym_NS_INLINE] = ACTIONS(6726), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6726), + [anon_sym_OBJC_EXPORT] = ACTIONS(6726), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6726), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6726), + [anon_sym_const] = ACTIONS(6726), + [anon_sym_constexpr] = ACTIONS(6726), + [anon_sym_volatile] = ACTIONS(6726), + [anon_sym_restrict] = ACTIONS(6726), + [anon_sym___restrict__] = ACTIONS(6726), + [anon_sym__Atomic] = ACTIONS(6726), + [anon_sym__Noreturn] = ACTIONS(6726), + [anon_sym__Nonnull] = ACTIONS(6726), + [anon_sym_nullable] = ACTIONS(6726), + [anon_sym__Complex] = ACTIONS(6726), + [anon_sym__Nullable] = ACTIONS(6726), + [anon_sym__Nullable_result] = ACTIONS(6726), + [anon_sym__Null_unspecified] = ACTIONS(6726), + [anon_sym___autoreleasing] = ACTIONS(6726), + [anon_sym___block] = ACTIONS(6726), + [anon_sym___bridge] = ACTIONS(6726), + [anon_sym___bridge_retained] = ACTIONS(6726), + [anon_sym___bridge_transfer] = ACTIONS(6726), + [anon_sym___complex] = ACTIONS(6726), + [anon_sym___const] = ACTIONS(6726), + [anon_sym___imag] = ACTIONS(6726), + [anon_sym___kindof] = ACTIONS(6726), + [anon_sym___nonnull] = ACTIONS(6726), + [anon_sym___nullable] = ACTIONS(6726), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6726), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6726), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6726), + [anon_sym___real] = ACTIONS(6726), + [anon_sym___strong] = ACTIONS(6726), + [anon_sym___unsafe_unretained] = ACTIONS(6726), + [anon_sym___unused] = ACTIONS(6726), + [anon_sym___weak] = ACTIONS(6726), + [anon_sym_alignas] = ACTIONS(6726), + [anon_sym__Alignas] = ACTIONS(6726), + [sym_primitive_type] = ACTIONS(6726), + [anon_sym_enum] = ACTIONS(6726), + [anon_sym_struct] = ACTIONS(6726), + [anon_sym_union] = ACTIONS(6726), + [anon_sym_asm] = ACTIONS(6726), + [anon_sym___asm__] = ACTIONS(6726), + [anon_sym___asm] = ACTIONS(6726), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6726), + [anon_sym___typeof] = ACTIONS(6726), + [anon_sym_typeof] = ACTIONS(6726), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6726), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6726), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6726), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6726), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6726), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6726), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6726), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6726), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6726), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6726), + [anon_sym_NS_AVAILABLE] = ACTIONS(6726), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6726), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6726), + [anon_sym_API_AVAILABLE] = ACTIONS(6726), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6726), + [anon_sym_API_DEPRECATED] = ACTIONS(6726), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6726), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6726), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6726), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6726), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6726), + [anon_sym___deprecated_msg] = ACTIONS(6726), + [anon_sym___deprecated_enum_msg] = ACTIONS(6726), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6726), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6726), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6726), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6726), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6726), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6726), + [anon_sym_BOOL] = ACTIONS(6726), + [anon_sym_IMP] = ACTIONS(6726), + [anon_sym_SEL] = ACTIONS(6726), + [anon_sym_Class] = ACTIONS(6726), + [anon_sym_id] = ACTIONS(6726), + }, + [2678] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6428), + [sym__type_declarator] = STATE(5222), + [sym_parenthesized_type_declarator] = STATE(3277), + [sym_pointer_type_declarator] = STATE(3277), + [sym_function_type_declarator] = STATE(3277), + [sym_array_type_declarator] = STATE(3277), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_type_declarator] = STATE(3277), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_STAR] = ACTIONS(5642), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(5646), + [anon_sym_unsigned] = ACTIONS(5646), + [anon_sym_long] = ACTIONS(5646), + [anon_sym_short] = ACTIONS(5646), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(5648), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2679] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6428), + [sym__type_declarator] = STATE(5238), + [sym_parenthesized_type_declarator] = STATE(3277), + [sym_pointer_type_declarator] = STATE(3277), + [sym_function_type_declarator] = STATE(3277), + [sym_array_type_declarator] = STATE(3277), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_type_declarator] = STATE(3277), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_STAR] = ACTIONS(5642), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(5646), + [anon_sym_unsigned] = ACTIONS(5646), + [anon_sym_long] = ACTIONS(5646), + [anon_sym_short] = ACTIONS(5646), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(5648), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2680] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6428), + [sym__type_declarator] = STATE(5266), + [sym_parenthesized_type_declarator] = STATE(3277), + [sym_pointer_type_declarator] = STATE(3277), + [sym_function_type_declarator] = STATE(3277), + [sym_array_type_declarator] = STATE(3277), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_type_declarator] = STATE(3277), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_STAR] = ACTIONS(5642), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(5646), + [anon_sym_unsigned] = ACTIONS(5646), + [anon_sym_long] = ACTIONS(5646), + [anon_sym_short] = ACTIONS(5646), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(5648), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2681] = { + [sym_expression] = STATE(1446), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_initializer_list] = STATE(1466), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_COMMA] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(6730), + [anon_sym_TILDE] = ACTIONS(6732), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_SLASH] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(2220), + [anon_sym_PIPE_PIPE] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2222), + [anon_sym_PIPE] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_EQ_EQ] = ACTIONS(2222), + [anon_sym_BANG_EQ] = ACTIONS(2222), + [anon_sym_GT] = ACTIONS(2220), + [anon_sym_GT_EQ] = ACTIONS(2222), + [anon_sym_LT_EQ] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2220), + [anon_sym_LT_LT] = ACTIONS(2220), + [anon_sym_GT_GT] = ACTIONS(2220), + [anon_sym___extension__] = ACTIONS(6734), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_RBRACK] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_EQ] = ACTIONS(2220), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6736), + [anon_sym___real] = ACTIONS(6736), + [anon_sym_COLON] = ACTIONS(2222), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_QMARK] = ACTIONS(2222), + [anon_sym_STAR_EQ] = ACTIONS(2222), + [anon_sym_SLASH_EQ] = ACTIONS(2222), + [anon_sym_PERCENT_EQ] = ACTIONS(2222), + [anon_sym_PLUS_EQ] = ACTIONS(2222), + [anon_sym_DASH_EQ] = ACTIONS(2222), + [anon_sym_LT_LT_EQ] = ACTIONS(2222), + [anon_sym_GT_GT_EQ] = ACTIONS(2222), + [anon_sym_AMP_EQ] = ACTIONS(2222), + [anon_sym_CARET_EQ] = ACTIONS(2222), + [anon_sym_PIPE_EQ] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_sizeof] = ACTIONS(6738), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [anon_sym_DOT] = ACTIONS(2220), + [anon_sym_DASH_GT] = ACTIONS(2222), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6740), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [2682] = { + [sym__declaration_modifiers] = STATE(2678), + [sym_attribute_specifier] = STATE(2678), + [sym_attribute_declaration] = STATE(2678), + [sym_ms_declspec_modifier] = STATE(2678), + [sym_ms_based_modifier] = STATE(6428), + [sym__type_declarator] = STATE(5307), + [sym_parenthesized_type_declarator] = STATE(3277), + [sym_pointer_type_declarator] = STATE(3277), + [sym_function_type_declarator] = STATE(3277), + [sym_array_type_declarator] = STATE(3277), + [sym_storage_class_specifier] = STATE(2678), + [sym_type_qualifier] = STATE(2678), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2678), + [sym_block_pointer_type_declarator] = STATE(3277), + [aux_sym__declaration_specifiers_repeat1] = STATE(2678), + [sym_identifier] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_STAR] = ACTIONS(5642), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(5646), + [anon_sym_unsigned] = ACTIONS(5646), + [anon_sym_long] = ACTIONS(5646), + [anon_sym_short] = ACTIONS(5646), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(5648), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2683] = { + [sym_attribute_specifier] = STATE(6437), + [sym_parameter_list] = STATE(2568), + [aux_sym_c_method_parameter_repeat1] = STATE(2803), + [sym_identifier] = ACTIONS(6742), + [anon_sym_COMMA] = ACTIONS(6744), + [anon_sym_LPAREN2] = ACTIONS(6746), + [anon_sym_SEMI] = ACTIONS(6744), + [anon_sym___extension__] = ACTIONS(6742), + [anon_sym_extern] = ACTIONS(6742), + [anon_sym___attribute__] = ACTIONS(6742), + [anon_sym___attribute] = ACTIONS(6742), + [anon_sym_noreturn] = ACTIONS(6742), + [anon_sym_LBRACK] = ACTIONS(6748), + [anon_sym___declspec] = ACTIONS(6742), + [anon_sym_LBRACE] = ACTIONS(6744), + [anon_sym_signed] = ACTIONS(6742), + [anon_sym_unsigned] = ACTIONS(6742), + [anon_sym_long] = ACTIONS(6742), + [anon_sym_short] = ACTIONS(6742), + [anon_sym_static] = ACTIONS(6742), + [anon_sym_EQ] = ACTIONS(6750), + [anon_sym_ATautoreleasepool] = ACTIONS(6744), + [anon_sym_auto] = ACTIONS(6742), + [anon_sym_register] = ACTIONS(6742), + [anon_sym_inline] = ACTIONS(6742), + [anon_sym___inline] = ACTIONS(6742), + [anon_sym___inline__] = ACTIONS(6742), + [anon_sym___forceinline] = ACTIONS(6742), + [anon_sym_thread_local] = ACTIONS(6742), + [anon_sym___thread] = ACTIONS(6742), + [anon_sym_CG_EXTERN] = ACTIONS(6742), + [anon_sym_CG_INLINE] = ACTIONS(6742), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6742), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6742), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6742), + [anon_sym_IBOutlet] = ACTIONS(6742), + [anon_sym_IBInspectable] = ACTIONS(6742), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6742), + [anon_sym_NS_INLINE] = ACTIONS(6742), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6742), + [anon_sym_OBJC_EXPORT] = ACTIONS(6742), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6742), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6742), + [anon_sym_const] = ACTIONS(6742), + [anon_sym_constexpr] = ACTIONS(6742), + [anon_sym_volatile] = ACTIONS(6742), + [anon_sym_restrict] = ACTIONS(6742), + [anon_sym___restrict__] = ACTIONS(6742), + [anon_sym__Atomic] = ACTIONS(6742), + [anon_sym__Noreturn] = ACTIONS(6742), + [anon_sym__Nonnull] = ACTIONS(6742), + [anon_sym_nullable] = ACTIONS(6742), + [anon_sym__Complex] = ACTIONS(6742), + [anon_sym__Nullable] = ACTIONS(6742), + [anon_sym__Nullable_result] = ACTIONS(6742), + [anon_sym__Null_unspecified] = ACTIONS(6742), + [anon_sym___autoreleasing] = ACTIONS(6742), + [anon_sym___block] = ACTIONS(6742), + [anon_sym___bridge] = ACTIONS(6742), + [anon_sym___bridge_retained] = ACTIONS(6742), + [anon_sym___bridge_transfer] = ACTIONS(6742), + [anon_sym___complex] = ACTIONS(6742), + [anon_sym___const] = ACTIONS(6742), + [anon_sym___imag] = ACTIONS(6742), + [anon_sym___kindof] = ACTIONS(6742), + [anon_sym___nonnull] = ACTIONS(6742), + [anon_sym___nullable] = ACTIONS(6742), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6742), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6742), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6742), + [anon_sym___real] = ACTIONS(6742), + [anon_sym___strong] = ACTIONS(6742), + [anon_sym___unsafe_unretained] = ACTIONS(6742), + [anon_sym___unused] = ACTIONS(6742), + [anon_sym___weak] = ACTIONS(6742), + [anon_sym_alignas] = ACTIONS(6742), + [anon_sym__Alignas] = ACTIONS(6742), + [sym_primitive_type] = ACTIONS(6742), + [anon_sym_enum] = ACTIONS(6742), + [anon_sym_struct] = ACTIONS(6742), + [anon_sym_union] = ACTIONS(6742), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6742), + [anon_sym___typeof] = ACTIONS(6742), + [anon_sym_typeof] = ACTIONS(6742), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6742), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6742), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6742), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6742), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6742), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6742), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6742), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6742), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6742), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6742), + [anon_sym_NS_AVAILABLE] = ACTIONS(6742), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6742), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6742), + [anon_sym_API_AVAILABLE] = ACTIONS(6742), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6742), + [anon_sym_API_DEPRECATED] = ACTIONS(6742), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6742), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6742), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6742), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6742), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6742), + [anon_sym___deprecated_msg] = ACTIONS(6742), + [anon_sym___deprecated_enum_msg] = ACTIONS(6742), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6742), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6742), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6742), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6742), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6742), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6742), + [anon_sym_BOOL] = ACTIONS(6742), + [anon_sym_IMP] = ACTIONS(6742), + [anon_sym_SEL] = ACTIONS(6742), + [anon_sym_Class] = ACTIONS(6742), + [anon_sym_id] = ACTIONS(6742), + }, + [2684] = { + [sym_identifier] = ACTIONS(6752), + [anon_sym_COMMA] = ACTIONS(6754), + [anon_sym_LPAREN2] = ACTIONS(6754), + [anon_sym_SEMI] = ACTIONS(6754), + [anon_sym___extension__] = ACTIONS(6752), + [anon_sym_extern] = ACTIONS(6752), + [anon_sym___attribute__] = ACTIONS(6752), + [anon_sym___attribute] = ACTIONS(6752), + [anon_sym_noreturn] = ACTIONS(6752), + [anon_sym_LBRACK] = ACTIONS(6754), + [anon_sym___declspec] = ACTIONS(6752), + [anon_sym_LBRACE] = ACTIONS(6754), + [anon_sym_signed] = ACTIONS(6752), + [anon_sym_unsigned] = ACTIONS(6752), + [anon_sym_long] = ACTIONS(6752), + [anon_sym_short] = ACTIONS(6752), + [anon_sym_static] = ACTIONS(6752), + [anon_sym_EQ] = ACTIONS(6754), + [anon_sym_ATautoreleasepool] = ACTIONS(6754), + [anon_sym_auto] = ACTIONS(6752), + [anon_sym_register] = ACTIONS(6752), + [anon_sym_inline] = ACTIONS(6752), + [anon_sym___inline] = ACTIONS(6752), + [anon_sym___inline__] = ACTIONS(6752), + [anon_sym___forceinline] = ACTIONS(6752), + [anon_sym_thread_local] = ACTIONS(6752), + [anon_sym___thread] = ACTIONS(6752), + [anon_sym_CG_EXTERN] = ACTIONS(6752), + [anon_sym_CG_INLINE] = ACTIONS(6752), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6752), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6752), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6752), + [anon_sym_IBOutlet] = ACTIONS(6752), + [anon_sym_IBInspectable] = ACTIONS(6752), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6752), + [anon_sym_NS_INLINE] = ACTIONS(6752), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6752), + [anon_sym_OBJC_EXPORT] = ACTIONS(6752), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6752), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6752), + [anon_sym_const] = ACTIONS(6752), + [anon_sym_constexpr] = ACTIONS(6752), + [anon_sym_volatile] = ACTIONS(6752), + [anon_sym_restrict] = ACTIONS(6752), + [anon_sym___restrict__] = ACTIONS(6752), + [anon_sym__Atomic] = ACTIONS(6752), + [anon_sym__Noreturn] = ACTIONS(6752), + [anon_sym__Nonnull] = ACTIONS(6752), + [anon_sym_nullable] = ACTIONS(6752), + [anon_sym__Complex] = ACTIONS(6752), + [anon_sym__Nullable] = ACTIONS(6752), + [anon_sym__Nullable_result] = ACTIONS(6752), + [anon_sym__Null_unspecified] = ACTIONS(6752), + [anon_sym___autoreleasing] = ACTIONS(6752), + [anon_sym___block] = ACTIONS(6752), + [anon_sym___bridge] = ACTIONS(6752), + [anon_sym___bridge_retained] = ACTIONS(6752), + [anon_sym___bridge_transfer] = ACTIONS(6752), + [anon_sym___complex] = ACTIONS(6752), + [anon_sym___const] = ACTIONS(6752), + [anon_sym___imag] = ACTIONS(6752), + [anon_sym___kindof] = ACTIONS(6752), + [anon_sym___nonnull] = ACTIONS(6752), + [anon_sym___nullable] = ACTIONS(6752), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6752), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6752), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6752), + [anon_sym___real] = ACTIONS(6752), + [anon_sym___strong] = ACTIONS(6752), + [anon_sym___unsafe_unretained] = ACTIONS(6752), + [anon_sym___unused] = ACTIONS(6752), + [anon_sym___weak] = ACTIONS(6752), + [anon_sym_alignas] = ACTIONS(6752), + [anon_sym__Alignas] = ACTIONS(6752), + [sym_primitive_type] = ACTIONS(6752), + [anon_sym_enum] = ACTIONS(6752), + [anon_sym_struct] = ACTIONS(6752), + [anon_sym_union] = ACTIONS(6752), + [anon_sym_asm] = ACTIONS(6752), + [anon_sym___asm__] = ACTIONS(6752), + [anon_sym___asm] = ACTIONS(6752), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6752), + [anon_sym___typeof] = ACTIONS(6752), + [anon_sym_typeof] = ACTIONS(6752), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6752), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6752), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6752), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6752), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6752), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6752), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6752), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6752), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6752), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6752), + [anon_sym_NS_AVAILABLE] = ACTIONS(6752), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6752), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6752), + [anon_sym_API_AVAILABLE] = ACTIONS(6752), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6752), + [anon_sym_API_DEPRECATED] = ACTIONS(6752), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6752), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6752), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6752), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6752), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6752), + [anon_sym___deprecated_msg] = ACTIONS(6752), + [anon_sym___deprecated_enum_msg] = ACTIONS(6752), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6752), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6752), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6752), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6752), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6752), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6752), + [anon_sym_BOOL] = ACTIONS(6752), + [anon_sym_IMP] = ACTIONS(6752), + [anon_sym_SEL] = ACTIONS(6752), + [anon_sym_Class] = ACTIONS(6752), + [anon_sym_id] = ACTIONS(6752), + }, + [2685] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6443), + [sym__type_declarator] = STATE(3283), + [sym_parenthesized_type_declarator] = STATE(3277), + [sym_pointer_type_declarator] = STATE(3277), + [sym_function_type_declarator] = STATE(3277), + [sym_array_type_declarator] = STATE(3277), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_type_declarator] = STATE(3277), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_STAR] = ACTIONS(5650), + [anon_sym_CARET] = ACTIONS(5652), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(5646), + [anon_sym_unsigned] = ACTIONS(5646), + [anon_sym_long] = ACTIONS(5646), + [anon_sym_short] = ACTIONS(5646), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(5648), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2686] = { + [sym_identifier] = ACTIONS(6756), + [anon_sym_COMMA] = ACTIONS(6758), + [anon_sym_LPAREN2] = ACTIONS(6758), + [anon_sym_SEMI] = ACTIONS(6758), + [anon_sym___extension__] = ACTIONS(6760), + [anon_sym_extern] = ACTIONS(6760), + [anon_sym___attribute__] = ACTIONS(6760), + [anon_sym___attribute] = ACTIONS(6760), + [anon_sym_noreturn] = ACTIONS(6760), + [anon_sym_LBRACK] = ACTIONS(6763), + [anon_sym___declspec] = ACTIONS(6760), + [anon_sym_LBRACE] = ACTIONS(6763), + [anon_sym_signed] = ACTIONS(6756), + [anon_sym_unsigned] = ACTIONS(6756), + [anon_sym_long] = ACTIONS(6756), + [anon_sym_short] = ACTIONS(6756), + [anon_sym_static] = ACTIONS(6760), + [anon_sym_EQ] = ACTIONS(6758), + [anon_sym_ATautoreleasepool] = ACTIONS(6763), + [anon_sym_auto] = ACTIONS(6760), + [anon_sym_register] = ACTIONS(6760), + [anon_sym_inline] = ACTIONS(6760), + [anon_sym___inline] = ACTIONS(6760), + [anon_sym___inline__] = ACTIONS(6760), + [anon_sym___forceinline] = ACTIONS(6760), + [anon_sym_thread_local] = ACTIONS(6760), + [anon_sym___thread] = ACTIONS(6760), + [anon_sym_CG_EXTERN] = ACTIONS(6760), + [anon_sym_CG_INLINE] = ACTIONS(6760), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6760), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6760), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6760), + [anon_sym_IBOutlet] = ACTIONS(6760), + [anon_sym_IBInspectable] = ACTIONS(6760), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6760), + [anon_sym_NS_INLINE] = ACTIONS(6760), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6760), + [anon_sym_OBJC_EXPORT] = ACTIONS(6760), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6760), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6760), + [anon_sym_const] = ACTIONS(6760), + [anon_sym_constexpr] = ACTIONS(6760), + [anon_sym_volatile] = ACTIONS(6760), + [anon_sym_restrict] = ACTIONS(6760), + [anon_sym___restrict__] = ACTIONS(6760), + [anon_sym__Atomic] = ACTIONS(6760), + [anon_sym__Noreturn] = ACTIONS(6760), + [anon_sym__Nonnull] = ACTIONS(6760), + [anon_sym_nullable] = ACTIONS(6760), + [anon_sym__Complex] = ACTIONS(6760), + [anon_sym__Nullable] = ACTIONS(6760), + [anon_sym__Nullable_result] = ACTIONS(6760), + [anon_sym__Null_unspecified] = ACTIONS(6760), + [anon_sym___autoreleasing] = ACTIONS(6760), + [anon_sym___block] = ACTIONS(6760), + [anon_sym___bridge] = ACTIONS(6760), + [anon_sym___bridge_retained] = ACTIONS(6760), + [anon_sym___bridge_transfer] = ACTIONS(6760), + [anon_sym___complex] = ACTIONS(6760), + [anon_sym___const] = ACTIONS(6760), + [anon_sym___imag] = ACTIONS(6760), + [anon_sym___kindof] = ACTIONS(6760), + [anon_sym___nonnull] = ACTIONS(6760), + [anon_sym___nullable] = ACTIONS(6760), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6760), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6760), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6760), + [anon_sym___real] = ACTIONS(6760), + [anon_sym___strong] = ACTIONS(6760), + [anon_sym___unsafe_unretained] = ACTIONS(6760), + [anon_sym___unused] = ACTIONS(6760), + [anon_sym___weak] = ACTIONS(6760), + [anon_sym_alignas] = ACTIONS(6760), + [anon_sym__Alignas] = ACTIONS(6760), + [sym_primitive_type] = ACTIONS(6756), + [anon_sym_enum] = ACTIONS(6756), + [anon_sym_struct] = ACTIONS(6756), + [anon_sym_union] = ACTIONS(6756), + [anon_sym_asm] = ACTIONS(6766), + [anon_sym___asm__] = ACTIONS(6766), + [anon_sym___asm] = ACTIONS(6766), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6756), + [anon_sym___typeof] = ACTIONS(6756), + [anon_sym_typeof] = ACTIONS(6756), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6760), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6760), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6760), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6760), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6760), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6760), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6760), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6760), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6760), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6760), + [anon_sym_NS_AVAILABLE] = ACTIONS(6760), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6760), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6760), + [anon_sym_API_AVAILABLE] = ACTIONS(6760), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6760), + [anon_sym_API_DEPRECATED] = ACTIONS(6760), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6760), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6760), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6760), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6760), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6760), + [anon_sym___deprecated_msg] = ACTIONS(6760), + [anon_sym___deprecated_enum_msg] = ACTIONS(6760), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6760), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6760), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6760), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6760), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6760), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6760), + [anon_sym_BOOL] = ACTIONS(6756), + [anon_sym_IMP] = ACTIONS(6756), + [anon_sym_SEL] = ACTIONS(6756), + [anon_sym_Class] = ACTIONS(6756), + [anon_sym_id] = ACTIONS(6756), + }, + [2687] = { + [sym_identifier] = ACTIONS(6768), + [anon_sym_COMMA] = ACTIONS(6754), + [anon_sym_LPAREN2] = ACTIONS(6754), + [anon_sym_SEMI] = ACTIONS(6754), + [anon_sym___extension__] = ACTIONS(6770), + [anon_sym_extern] = ACTIONS(6770), + [anon_sym___attribute__] = ACTIONS(6770), + [anon_sym___attribute] = ACTIONS(6770), + [anon_sym_noreturn] = ACTIONS(6770), + [anon_sym_LBRACK] = ACTIONS(6773), + [anon_sym___declspec] = ACTIONS(6770), + [anon_sym_LBRACE] = ACTIONS(6773), + [anon_sym_signed] = ACTIONS(6768), + [anon_sym_unsigned] = ACTIONS(6768), + [anon_sym_long] = ACTIONS(6768), + [anon_sym_short] = ACTIONS(6768), + [anon_sym_static] = ACTIONS(6770), + [anon_sym_EQ] = ACTIONS(6754), + [anon_sym_ATautoreleasepool] = ACTIONS(6773), + [anon_sym_auto] = ACTIONS(6770), + [anon_sym_register] = ACTIONS(6770), + [anon_sym_inline] = ACTIONS(6770), + [anon_sym___inline] = ACTIONS(6770), + [anon_sym___inline__] = ACTIONS(6770), + [anon_sym___forceinline] = ACTIONS(6770), + [anon_sym_thread_local] = ACTIONS(6770), + [anon_sym___thread] = ACTIONS(6770), + [anon_sym_CG_EXTERN] = ACTIONS(6770), + [anon_sym_CG_INLINE] = ACTIONS(6770), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6770), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6770), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6770), + [anon_sym_IBOutlet] = ACTIONS(6770), + [anon_sym_IBInspectable] = ACTIONS(6770), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6770), + [anon_sym_NS_INLINE] = ACTIONS(6770), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6770), + [anon_sym_OBJC_EXPORT] = ACTIONS(6770), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6770), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6770), + [anon_sym_const] = ACTIONS(6770), + [anon_sym_constexpr] = ACTIONS(6770), + [anon_sym_volatile] = ACTIONS(6770), + [anon_sym_restrict] = ACTIONS(6770), + [anon_sym___restrict__] = ACTIONS(6770), + [anon_sym__Atomic] = ACTIONS(6770), + [anon_sym__Noreturn] = ACTIONS(6770), + [anon_sym__Nonnull] = ACTIONS(6770), + [anon_sym_nullable] = ACTIONS(6770), + [anon_sym__Complex] = ACTIONS(6770), + [anon_sym__Nullable] = ACTIONS(6770), + [anon_sym__Nullable_result] = ACTIONS(6770), + [anon_sym__Null_unspecified] = ACTIONS(6770), + [anon_sym___autoreleasing] = ACTIONS(6770), + [anon_sym___block] = ACTIONS(6770), + [anon_sym___bridge] = ACTIONS(6770), + [anon_sym___bridge_retained] = ACTIONS(6770), + [anon_sym___bridge_transfer] = ACTIONS(6770), + [anon_sym___complex] = ACTIONS(6770), + [anon_sym___const] = ACTIONS(6770), + [anon_sym___imag] = ACTIONS(6770), + [anon_sym___kindof] = ACTIONS(6770), + [anon_sym___nonnull] = ACTIONS(6770), + [anon_sym___nullable] = ACTIONS(6770), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6770), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6770), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6770), + [anon_sym___real] = ACTIONS(6770), + [anon_sym___strong] = ACTIONS(6770), + [anon_sym___unsafe_unretained] = ACTIONS(6770), + [anon_sym___unused] = ACTIONS(6770), + [anon_sym___weak] = ACTIONS(6770), + [anon_sym_alignas] = ACTIONS(6770), + [anon_sym__Alignas] = ACTIONS(6770), + [sym_primitive_type] = ACTIONS(6768), + [anon_sym_enum] = ACTIONS(6768), + [anon_sym_struct] = ACTIONS(6768), + [anon_sym_union] = ACTIONS(6768), + [anon_sym_asm] = ACTIONS(6752), + [anon_sym___asm__] = ACTIONS(6752), + [anon_sym___asm] = ACTIONS(6752), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6768), + [anon_sym___typeof] = ACTIONS(6768), + [anon_sym_typeof] = ACTIONS(6768), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6770), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6770), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6770), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6770), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6770), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6770), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6770), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6770), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6770), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6770), + [anon_sym_NS_AVAILABLE] = ACTIONS(6770), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6770), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6770), + [anon_sym_API_AVAILABLE] = ACTIONS(6770), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6770), + [anon_sym_API_DEPRECATED] = ACTIONS(6770), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6770), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6770), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6770), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6770), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6770), + [anon_sym___deprecated_msg] = ACTIONS(6770), + [anon_sym___deprecated_enum_msg] = ACTIONS(6770), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6770), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6770), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6770), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6770), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6770), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6770), + [anon_sym_BOOL] = ACTIONS(6768), + [anon_sym_IMP] = ACTIONS(6768), + [anon_sym_SEL] = ACTIONS(6768), + [anon_sym_Class] = ACTIONS(6768), + [anon_sym_id] = ACTIONS(6768), + }, + [2688] = { + [sym_identifier] = ACTIONS(6766), + [anon_sym_COMMA] = ACTIONS(6758), + [anon_sym_LPAREN2] = ACTIONS(6758), + [anon_sym_SEMI] = ACTIONS(6758), + [anon_sym___extension__] = ACTIONS(6766), + [anon_sym_extern] = ACTIONS(6766), + [anon_sym___attribute__] = ACTIONS(6766), + [anon_sym___attribute] = ACTIONS(6766), + [anon_sym_noreturn] = ACTIONS(6766), + [anon_sym_LBRACK] = ACTIONS(6758), + [anon_sym___declspec] = ACTIONS(6766), + [anon_sym_LBRACE] = ACTIONS(6758), + [anon_sym_signed] = ACTIONS(6766), + [anon_sym_unsigned] = ACTIONS(6766), + [anon_sym_long] = ACTIONS(6766), + [anon_sym_short] = ACTIONS(6766), + [anon_sym_static] = ACTIONS(6766), + [anon_sym_EQ] = ACTIONS(6758), + [anon_sym_ATautoreleasepool] = ACTIONS(6758), + [anon_sym_auto] = ACTIONS(6766), + [anon_sym_register] = ACTIONS(6766), + [anon_sym_inline] = ACTIONS(6766), + [anon_sym___inline] = ACTIONS(6766), + [anon_sym___inline__] = ACTIONS(6766), + [anon_sym___forceinline] = ACTIONS(6766), + [anon_sym_thread_local] = ACTIONS(6766), + [anon_sym___thread] = ACTIONS(6766), + [anon_sym_CG_EXTERN] = ACTIONS(6766), + [anon_sym_CG_INLINE] = ACTIONS(6766), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6766), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6766), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6766), + [anon_sym_IBOutlet] = ACTIONS(6766), + [anon_sym_IBInspectable] = ACTIONS(6766), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6766), + [anon_sym_NS_INLINE] = ACTIONS(6766), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6766), + [anon_sym_OBJC_EXPORT] = ACTIONS(6766), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6766), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6766), + [anon_sym_const] = ACTIONS(6766), + [anon_sym_constexpr] = ACTIONS(6766), + [anon_sym_volatile] = ACTIONS(6766), + [anon_sym_restrict] = ACTIONS(6766), + [anon_sym___restrict__] = ACTIONS(6766), + [anon_sym__Atomic] = ACTIONS(6766), + [anon_sym__Noreturn] = ACTIONS(6766), + [anon_sym__Nonnull] = ACTIONS(6766), + [anon_sym_nullable] = ACTIONS(6766), + [anon_sym__Complex] = ACTIONS(6766), + [anon_sym__Nullable] = ACTIONS(6766), + [anon_sym__Nullable_result] = ACTIONS(6766), + [anon_sym__Null_unspecified] = ACTIONS(6766), + [anon_sym___autoreleasing] = ACTIONS(6766), + [anon_sym___block] = ACTIONS(6766), + [anon_sym___bridge] = ACTIONS(6766), + [anon_sym___bridge_retained] = ACTIONS(6766), + [anon_sym___bridge_transfer] = ACTIONS(6766), + [anon_sym___complex] = ACTIONS(6766), + [anon_sym___const] = ACTIONS(6766), + [anon_sym___imag] = ACTIONS(6766), + [anon_sym___kindof] = ACTIONS(6766), + [anon_sym___nonnull] = ACTIONS(6766), + [anon_sym___nullable] = ACTIONS(6766), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6766), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6766), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6766), + [anon_sym___real] = ACTIONS(6766), + [anon_sym___strong] = ACTIONS(6766), + [anon_sym___unsafe_unretained] = ACTIONS(6766), + [anon_sym___unused] = ACTIONS(6766), + [anon_sym___weak] = ACTIONS(6766), + [anon_sym_alignas] = ACTIONS(6766), + [anon_sym__Alignas] = ACTIONS(6766), + [sym_primitive_type] = ACTIONS(6766), + [anon_sym_enum] = ACTIONS(6766), + [anon_sym_struct] = ACTIONS(6766), + [anon_sym_union] = ACTIONS(6766), + [anon_sym_asm] = ACTIONS(6766), + [anon_sym___asm__] = ACTIONS(6766), + [anon_sym___asm] = ACTIONS(6766), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6766), + [anon_sym___typeof] = ACTIONS(6766), + [anon_sym_typeof] = ACTIONS(6766), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6766), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6766), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6766), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6766), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6766), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6766), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6766), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6766), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6766), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6766), + [anon_sym_NS_AVAILABLE] = ACTIONS(6766), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6766), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6766), + [anon_sym_API_AVAILABLE] = ACTIONS(6766), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6766), + [anon_sym_API_DEPRECATED] = ACTIONS(6766), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6766), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6766), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6766), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6766), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6766), + [anon_sym___deprecated_msg] = ACTIONS(6766), + [anon_sym___deprecated_enum_msg] = ACTIONS(6766), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6766), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6766), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6766), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6766), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6766), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6766), + [anon_sym_BOOL] = ACTIONS(6766), + [anon_sym_IMP] = ACTIONS(6766), + [anon_sym_SEL] = ACTIONS(6766), + [anon_sym_Class] = ACTIONS(6766), + [anon_sym_id] = ACTIONS(6766), + }, + [2689] = { + [sym_keyword_declarator] = STATE(5023), + [sym_method_parameter] = STATE(2689), + [aux_sym_method_definition_repeat1] = STATE(2689), + [aux_sym_keyword_selector_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(6776), + [anon_sym_COMMA] = ACTIONS(6779), + [anon_sym_SEMI] = ACTIONS(6779), + [anon_sym___extension__] = ACTIONS(6781), + [anon_sym_extern] = ACTIONS(6781), + [anon_sym___attribute__] = ACTIONS(6781), + [anon_sym___attribute] = ACTIONS(6781), + [anon_sym_noreturn] = ACTIONS(6781), + [anon_sym_LBRACK] = ACTIONS(6779), + [anon_sym___declspec] = ACTIONS(6781), + [anon_sym_LBRACE] = ACTIONS(6779), + [anon_sym_signed] = ACTIONS(6781), + [anon_sym_unsigned] = ACTIONS(6781), + [anon_sym_long] = ACTIONS(6781), + [anon_sym_short] = ACTIONS(6781), + [anon_sym_static] = ACTIONS(6781), + [anon_sym_ATautoreleasepool] = ACTIONS(6779), + [anon_sym_auto] = ACTIONS(6781), + [anon_sym_register] = ACTIONS(6781), + [anon_sym_inline] = ACTIONS(6781), + [anon_sym___inline] = ACTIONS(6781), + [anon_sym___inline__] = ACTIONS(6781), + [anon_sym___forceinline] = ACTIONS(6781), + [anon_sym_thread_local] = ACTIONS(6781), + [anon_sym___thread] = ACTIONS(6781), + [anon_sym_CG_EXTERN] = ACTIONS(6781), + [anon_sym_CG_INLINE] = ACTIONS(6781), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6781), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6781), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6781), + [anon_sym_IBOutlet] = ACTIONS(6781), + [anon_sym_IBInspectable] = ACTIONS(6781), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6781), + [anon_sym_NS_INLINE] = ACTIONS(6781), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6781), + [anon_sym_OBJC_EXPORT] = ACTIONS(6781), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6781), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6781), + [anon_sym_const] = ACTIONS(6781), + [anon_sym_constexpr] = ACTIONS(6781), + [anon_sym_volatile] = ACTIONS(6781), + [anon_sym_restrict] = ACTIONS(6781), + [anon_sym___restrict__] = ACTIONS(6781), + [anon_sym__Atomic] = ACTIONS(6781), + [anon_sym__Noreturn] = ACTIONS(6781), + [anon_sym__Nonnull] = ACTIONS(6781), + [anon_sym_nullable] = ACTIONS(6781), + [anon_sym__Complex] = ACTIONS(6781), + [anon_sym__Nullable] = ACTIONS(6781), + [anon_sym__Nullable_result] = ACTIONS(6781), + [anon_sym__Null_unspecified] = ACTIONS(6781), + [anon_sym___autoreleasing] = ACTIONS(6781), + [anon_sym___block] = ACTIONS(6781), + [anon_sym___bridge] = ACTIONS(6781), + [anon_sym___bridge_retained] = ACTIONS(6781), + [anon_sym___bridge_transfer] = ACTIONS(6781), + [anon_sym___complex] = ACTIONS(6781), + [anon_sym___const] = ACTIONS(6781), + [anon_sym___imag] = ACTIONS(6781), + [anon_sym___kindof] = ACTIONS(6781), + [anon_sym___nonnull] = ACTIONS(6781), + [anon_sym___nullable] = ACTIONS(6781), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6781), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6781), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6781), + [anon_sym___real] = ACTIONS(6781), + [anon_sym___strong] = ACTIONS(6781), + [anon_sym___unsafe_unretained] = ACTIONS(6781), + [anon_sym___unused] = ACTIONS(6781), + [anon_sym___weak] = ACTIONS(6781), + [anon_sym_alignas] = ACTIONS(6781), + [anon_sym__Alignas] = ACTIONS(6781), + [sym_primitive_type] = ACTIONS(6781), + [anon_sym_enum] = ACTIONS(6781), + [anon_sym_COLON] = ACTIONS(6783), + [anon_sym_struct] = ACTIONS(6781), + [anon_sym_union] = ACTIONS(6781), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6781), + [anon_sym___typeof] = ACTIONS(6781), + [anon_sym_typeof] = ACTIONS(6781), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6781), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6781), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6781), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6781), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6781), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6781), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6781), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6781), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6781), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6781), + [anon_sym_NS_AVAILABLE] = ACTIONS(6781), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6781), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6781), + [anon_sym_API_AVAILABLE] = ACTIONS(6781), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6781), + [anon_sym_API_DEPRECATED] = ACTIONS(6781), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6781), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6781), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6781), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6781), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6781), + [anon_sym___deprecated_msg] = ACTIONS(6781), + [anon_sym___deprecated_enum_msg] = ACTIONS(6781), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6781), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6781), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6781), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6781), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6781), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6781), + [anon_sym_BOOL] = ACTIONS(6781), + [anon_sym_IMP] = ACTIONS(6781), + [anon_sym_SEL] = ACTIONS(6781), + [anon_sym_Class] = ACTIONS(6781), + [anon_sym_id] = ACTIONS(6781), + }, + [2690] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6443), + [sym__type_declarator] = STATE(3279), + [sym_parenthesized_type_declarator] = STATE(3277), + [sym_pointer_type_declarator] = STATE(3277), + [sym_function_type_declarator] = STATE(3277), + [sym_array_type_declarator] = STATE(3277), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_type_declarator] = STATE(3277), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_STAR] = ACTIONS(5650), + [anon_sym_CARET] = ACTIONS(5652), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(5646), + [anon_sym_unsigned] = ACTIONS(5646), + [anon_sym_long] = ACTIONS(5646), + [anon_sym_short] = ACTIONS(5646), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(5648), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2691] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6428), + [sym__type_declarator] = STATE(5174), + [sym_parenthesized_type_declarator] = STATE(3277), + [sym_pointer_type_declarator] = STATE(3277), + [sym_function_type_declarator] = STATE(3277), + [sym_array_type_declarator] = STATE(3277), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_type_declarator] = STATE(3277), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_STAR] = ACTIONS(5642), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(5646), + [anon_sym_unsigned] = ACTIONS(5646), + [anon_sym_long] = ACTIONS(5646), + [anon_sym_short] = ACTIONS(5646), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(5648), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2692] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6443), + [sym__type_declarator] = STATE(3269), + [sym_parenthesized_type_declarator] = STATE(3277), + [sym_pointer_type_declarator] = STATE(3277), + [sym_function_type_declarator] = STATE(3277), + [sym_array_type_declarator] = STATE(3277), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_type_declarator] = STATE(3277), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_STAR] = ACTIONS(5650), + [anon_sym_CARET] = ACTIONS(5652), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(5646), + [anon_sym_unsigned] = ACTIONS(5646), + [anon_sym_long] = ACTIONS(5646), + [anon_sym_short] = ACTIONS(5646), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(5648), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2693] = { + [sym_attribute_specifier] = STATE(2694), + [aux_sym_function_declarator_repeat1] = STATE(2694), + [sym_identifier] = ACTIONS(6786), + [anon_sym_COMMA] = ACTIONS(6788), + [anon_sym_LPAREN2] = ACTIONS(6788), + [anon_sym_SEMI] = ACTIONS(6788), + [anon_sym___extension__] = ACTIONS(6786), + [anon_sym_extern] = ACTIONS(6786), + [anon_sym___attribute__] = ACTIONS(6786), + [anon_sym___attribute] = ACTIONS(6786), + [anon_sym_noreturn] = ACTIONS(6786), + [anon_sym_LBRACK] = ACTIONS(6788), + [anon_sym___declspec] = ACTIONS(6786), + [anon_sym_LBRACE] = ACTIONS(6788), + [anon_sym_signed] = ACTIONS(6786), + [anon_sym_unsigned] = ACTIONS(6786), + [anon_sym_long] = ACTIONS(6786), + [anon_sym_short] = ACTIONS(6786), + [anon_sym_static] = ACTIONS(6786), + [anon_sym_EQ] = ACTIONS(6788), + [anon_sym_ATautoreleasepool] = ACTIONS(6788), + [anon_sym_auto] = ACTIONS(6786), + [anon_sym_register] = ACTIONS(6786), + [anon_sym_inline] = ACTIONS(6786), + [anon_sym___inline] = ACTIONS(6786), + [anon_sym___inline__] = ACTIONS(6786), + [anon_sym___forceinline] = ACTIONS(6786), + [anon_sym_thread_local] = ACTIONS(6786), + [anon_sym___thread] = ACTIONS(6786), + [anon_sym_CG_EXTERN] = ACTIONS(6786), + [anon_sym_CG_INLINE] = ACTIONS(6786), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6786), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6786), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6786), + [anon_sym_IBOutlet] = ACTIONS(6786), + [anon_sym_IBInspectable] = ACTIONS(6786), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6786), + [anon_sym_NS_INLINE] = ACTIONS(6786), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6786), + [anon_sym_OBJC_EXPORT] = ACTIONS(6786), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6786), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6786), + [anon_sym_const] = ACTIONS(6786), + [anon_sym_constexpr] = ACTIONS(6786), + [anon_sym_volatile] = ACTIONS(6786), + [anon_sym_restrict] = ACTIONS(6786), + [anon_sym___restrict__] = ACTIONS(6786), + [anon_sym__Atomic] = ACTIONS(6786), + [anon_sym__Noreturn] = ACTIONS(6786), + [anon_sym__Nonnull] = ACTIONS(6786), + [anon_sym_nullable] = ACTIONS(6786), + [anon_sym__Complex] = ACTIONS(6786), + [anon_sym__Nullable] = ACTIONS(6786), + [anon_sym__Nullable_result] = ACTIONS(6786), + [anon_sym__Null_unspecified] = ACTIONS(6786), + [anon_sym___autoreleasing] = ACTIONS(6786), + [anon_sym___block] = ACTIONS(6786), + [anon_sym___bridge] = ACTIONS(6786), + [anon_sym___bridge_retained] = ACTIONS(6786), + [anon_sym___bridge_transfer] = ACTIONS(6786), + [anon_sym___complex] = ACTIONS(6786), + [anon_sym___const] = ACTIONS(6786), + [anon_sym___imag] = ACTIONS(6786), + [anon_sym___kindof] = ACTIONS(6786), + [anon_sym___nonnull] = ACTIONS(6786), + [anon_sym___nullable] = ACTIONS(6786), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6786), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6786), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6786), + [anon_sym___real] = ACTIONS(6786), + [anon_sym___strong] = ACTIONS(6786), + [anon_sym___unsafe_unretained] = ACTIONS(6786), + [anon_sym___unused] = ACTIONS(6786), + [anon_sym___weak] = ACTIONS(6786), + [anon_sym_alignas] = ACTIONS(6786), + [anon_sym__Alignas] = ACTIONS(6786), + [sym_primitive_type] = ACTIONS(6786), + [anon_sym_enum] = ACTIONS(6786), + [anon_sym_struct] = ACTIONS(6786), + [anon_sym_union] = ACTIONS(6786), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6786), + [anon_sym___typeof] = ACTIONS(6786), + [anon_sym_typeof] = ACTIONS(6786), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6786), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6786), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6786), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6786), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6786), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6786), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6786), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6786), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6786), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6786), + [anon_sym_NS_AVAILABLE] = ACTIONS(6786), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6786), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6786), + [anon_sym_API_AVAILABLE] = ACTIONS(6786), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6786), + [anon_sym_API_DEPRECATED] = ACTIONS(6786), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6786), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6786), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6786), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6786), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6786), + [anon_sym___deprecated_msg] = ACTIONS(6786), + [anon_sym___deprecated_enum_msg] = ACTIONS(6786), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6786), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6786), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6786), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6786), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6786), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6786), + [anon_sym_BOOL] = ACTIONS(6786), + [anon_sym_IMP] = ACTIONS(6786), + [anon_sym_SEL] = ACTIONS(6786), + [anon_sym_Class] = ACTIONS(6786), + [anon_sym_id] = ACTIONS(6786), + }, + [2694] = { + [sym_attribute_specifier] = STATE(2694), + [aux_sym_function_declarator_repeat1] = STATE(2694), + [sym_identifier] = ACTIONS(6790), + [anon_sym_COMMA] = ACTIONS(6792), + [anon_sym_LPAREN2] = ACTIONS(6792), + [anon_sym_SEMI] = ACTIONS(6792), + [anon_sym___extension__] = ACTIONS(6790), + [anon_sym_extern] = ACTIONS(6790), + [anon_sym___attribute__] = ACTIONS(6794), + [anon_sym___attribute] = ACTIONS(6794), + [anon_sym_noreturn] = ACTIONS(6790), + [anon_sym_LBRACK] = ACTIONS(6792), + [anon_sym___declspec] = ACTIONS(6790), + [anon_sym_LBRACE] = ACTIONS(6792), + [anon_sym_signed] = ACTIONS(6790), + [anon_sym_unsigned] = ACTIONS(6790), + [anon_sym_long] = ACTIONS(6790), + [anon_sym_short] = ACTIONS(6790), + [anon_sym_static] = ACTIONS(6790), + [anon_sym_EQ] = ACTIONS(6792), + [anon_sym_ATautoreleasepool] = ACTIONS(6792), + [anon_sym_auto] = ACTIONS(6790), + [anon_sym_register] = ACTIONS(6790), + [anon_sym_inline] = ACTIONS(6790), + [anon_sym___inline] = ACTIONS(6790), + [anon_sym___inline__] = ACTIONS(6790), + [anon_sym___forceinline] = ACTIONS(6790), + [anon_sym_thread_local] = ACTIONS(6790), + [anon_sym___thread] = ACTIONS(6790), + [anon_sym_CG_EXTERN] = ACTIONS(6790), + [anon_sym_CG_INLINE] = ACTIONS(6790), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6790), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6790), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6790), + [anon_sym_IBOutlet] = ACTIONS(6790), + [anon_sym_IBInspectable] = ACTIONS(6790), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6790), + [anon_sym_NS_INLINE] = ACTIONS(6790), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6790), + [anon_sym_OBJC_EXPORT] = ACTIONS(6790), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6790), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6790), + [anon_sym_const] = ACTIONS(6790), + [anon_sym_constexpr] = ACTIONS(6790), + [anon_sym_volatile] = ACTIONS(6790), + [anon_sym_restrict] = ACTIONS(6790), + [anon_sym___restrict__] = ACTIONS(6790), + [anon_sym__Atomic] = ACTIONS(6790), + [anon_sym__Noreturn] = ACTIONS(6790), + [anon_sym__Nonnull] = ACTIONS(6790), + [anon_sym_nullable] = ACTIONS(6790), + [anon_sym__Complex] = ACTIONS(6790), + [anon_sym__Nullable] = ACTIONS(6790), + [anon_sym__Nullable_result] = ACTIONS(6790), + [anon_sym__Null_unspecified] = ACTIONS(6790), + [anon_sym___autoreleasing] = ACTIONS(6790), + [anon_sym___block] = ACTIONS(6790), + [anon_sym___bridge] = ACTIONS(6790), + [anon_sym___bridge_retained] = ACTIONS(6790), + [anon_sym___bridge_transfer] = ACTIONS(6790), + [anon_sym___complex] = ACTIONS(6790), + [anon_sym___const] = ACTIONS(6790), + [anon_sym___imag] = ACTIONS(6790), + [anon_sym___kindof] = ACTIONS(6790), + [anon_sym___nonnull] = ACTIONS(6790), + [anon_sym___nullable] = ACTIONS(6790), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6790), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6790), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6790), + [anon_sym___real] = ACTIONS(6790), + [anon_sym___strong] = ACTIONS(6790), + [anon_sym___unsafe_unretained] = ACTIONS(6790), + [anon_sym___unused] = ACTIONS(6790), + [anon_sym___weak] = ACTIONS(6790), + [anon_sym_alignas] = ACTIONS(6790), + [anon_sym__Alignas] = ACTIONS(6790), + [sym_primitive_type] = ACTIONS(6790), + [anon_sym_enum] = ACTIONS(6790), + [anon_sym_struct] = ACTIONS(6790), + [anon_sym_union] = ACTIONS(6790), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6790), + [anon_sym___typeof] = ACTIONS(6790), + [anon_sym_typeof] = ACTIONS(6790), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6790), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6790), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6790), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6790), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6790), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6790), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6790), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6790), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6790), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6790), + [anon_sym_NS_AVAILABLE] = ACTIONS(6790), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6790), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6790), + [anon_sym_API_AVAILABLE] = ACTIONS(6790), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6790), + [anon_sym_API_DEPRECATED] = ACTIONS(6790), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6790), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6790), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6790), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6790), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6790), + [anon_sym___deprecated_msg] = ACTIONS(6790), + [anon_sym___deprecated_enum_msg] = ACTIONS(6790), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6790), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6790), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6790), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6790), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6790), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6790), + [anon_sym_BOOL] = ACTIONS(6790), + [anon_sym_IMP] = ACTIONS(6790), + [anon_sym_SEL] = ACTIONS(6790), + [anon_sym_Class] = ACTIONS(6790), + [anon_sym_id] = ACTIONS(6790), + }, + [2695] = { + [sym_attribute_specifier] = STATE(2694), + [aux_sym_function_declarator_repeat1] = STATE(2694), + [sym_identifier] = ACTIONS(6797), + [anon_sym_COMMA] = ACTIONS(6799), + [anon_sym_LPAREN2] = ACTIONS(6799), + [anon_sym_SEMI] = ACTIONS(6799), + [anon_sym___extension__] = ACTIONS(6797), + [anon_sym_extern] = ACTIONS(6797), + [anon_sym___attribute__] = ACTIONS(6797), + [anon_sym___attribute] = ACTIONS(6797), + [anon_sym_noreturn] = ACTIONS(6797), + [anon_sym_LBRACK] = ACTIONS(6799), + [anon_sym___declspec] = ACTIONS(6797), + [anon_sym_LBRACE] = ACTIONS(6799), + [anon_sym_signed] = ACTIONS(6797), + [anon_sym_unsigned] = ACTIONS(6797), + [anon_sym_long] = ACTIONS(6797), + [anon_sym_short] = ACTIONS(6797), + [anon_sym_static] = ACTIONS(6797), + [anon_sym_EQ] = ACTIONS(6799), + [anon_sym_ATautoreleasepool] = ACTIONS(6799), + [anon_sym_auto] = ACTIONS(6797), + [anon_sym_register] = ACTIONS(6797), + [anon_sym_inline] = ACTIONS(6797), + [anon_sym___inline] = ACTIONS(6797), + [anon_sym___inline__] = ACTIONS(6797), + [anon_sym___forceinline] = ACTIONS(6797), + [anon_sym_thread_local] = ACTIONS(6797), + [anon_sym___thread] = ACTIONS(6797), + [anon_sym_CG_EXTERN] = ACTIONS(6797), + [anon_sym_CG_INLINE] = ACTIONS(6797), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6797), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6797), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6797), + [anon_sym_IBOutlet] = ACTIONS(6797), + [anon_sym_IBInspectable] = ACTIONS(6797), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6797), + [anon_sym_NS_INLINE] = ACTIONS(6797), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6797), + [anon_sym_OBJC_EXPORT] = ACTIONS(6797), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6797), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6797), + [anon_sym_const] = ACTIONS(6797), + [anon_sym_constexpr] = ACTIONS(6797), + [anon_sym_volatile] = ACTIONS(6797), + [anon_sym_restrict] = ACTIONS(6797), + [anon_sym___restrict__] = ACTIONS(6797), + [anon_sym__Atomic] = ACTIONS(6797), + [anon_sym__Noreturn] = ACTIONS(6797), + [anon_sym__Nonnull] = ACTIONS(6797), + [anon_sym_nullable] = ACTIONS(6797), + [anon_sym__Complex] = ACTIONS(6797), + [anon_sym__Nullable] = ACTIONS(6797), + [anon_sym__Nullable_result] = ACTIONS(6797), + [anon_sym__Null_unspecified] = ACTIONS(6797), + [anon_sym___autoreleasing] = ACTIONS(6797), + [anon_sym___block] = ACTIONS(6797), + [anon_sym___bridge] = ACTIONS(6797), + [anon_sym___bridge_retained] = ACTIONS(6797), + [anon_sym___bridge_transfer] = ACTIONS(6797), + [anon_sym___complex] = ACTIONS(6797), + [anon_sym___const] = ACTIONS(6797), + [anon_sym___imag] = ACTIONS(6797), + [anon_sym___kindof] = ACTIONS(6797), + [anon_sym___nonnull] = ACTIONS(6797), + [anon_sym___nullable] = ACTIONS(6797), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6797), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6797), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6797), + [anon_sym___real] = ACTIONS(6797), + [anon_sym___strong] = ACTIONS(6797), + [anon_sym___unsafe_unretained] = ACTIONS(6797), + [anon_sym___unused] = ACTIONS(6797), + [anon_sym___weak] = ACTIONS(6797), + [anon_sym_alignas] = ACTIONS(6797), + [anon_sym__Alignas] = ACTIONS(6797), + [sym_primitive_type] = ACTIONS(6797), + [anon_sym_enum] = ACTIONS(6797), + [anon_sym_struct] = ACTIONS(6797), + [anon_sym_union] = ACTIONS(6797), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6797), + [anon_sym___typeof] = ACTIONS(6797), + [anon_sym_typeof] = ACTIONS(6797), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6797), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6797), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6797), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6797), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6797), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6797), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6797), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6797), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6797), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6797), + [anon_sym_NS_AVAILABLE] = ACTIONS(6797), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6797), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6797), + [anon_sym_API_AVAILABLE] = ACTIONS(6797), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6797), + [anon_sym_API_DEPRECATED] = ACTIONS(6797), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6797), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6797), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6797), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6797), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6797), + [anon_sym___deprecated_msg] = ACTIONS(6797), + [anon_sym___deprecated_enum_msg] = ACTIONS(6797), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6797), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6797), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6797), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6797), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6797), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6797), + [anon_sym_BOOL] = ACTIONS(6797), + [anon_sym_IMP] = ACTIONS(6797), + [anon_sym_SEL] = ACTIONS(6797), + [anon_sym_Class] = ACTIONS(6797), + [anon_sym_id] = ACTIONS(6797), + }, + [2696] = { + [sym_attribute_specifier] = STATE(6437), + [sym_parameter_list] = STATE(2568), + [sym_identifier] = ACTIONS(6801), + [anon_sym_COMMA] = ACTIONS(6803), + [anon_sym_LPAREN2] = ACTIONS(6746), + [anon_sym_SEMI] = ACTIONS(6803), + [anon_sym___extension__] = ACTIONS(6801), + [anon_sym_extern] = ACTIONS(6801), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6801), + [anon_sym_LBRACK] = ACTIONS(6748), + [anon_sym___declspec] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6803), + [anon_sym_signed] = ACTIONS(6801), + [anon_sym_unsigned] = ACTIONS(6801), + [anon_sym_long] = ACTIONS(6801), + [anon_sym_short] = ACTIONS(6801), + [anon_sym_static] = ACTIONS(6801), + [anon_sym_EQ] = ACTIONS(6750), + [anon_sym_ATautoreleasepool] = ACTIONS(6803), + [anon_sym_auto] = ACTIONS(6801), + [anon_sym_register] = ACTIONS(6801), + [anon_sym_inline] = ACTIONS(6801), + [anon_sym___inline] = ACTIONS(6801), + [anon_sym___inline__] = ACTIONS(6801), + [anon_sym___forceinline] = ACTIONS(6801), + [anon_sym_thread_local] = ACTIONS(6801), + [anon_sym___thread] = ACTIONS(6801), + [anon_sym_CG_EXTERN] = ACTIONS(6801), + [anon_sym_CG_INLINE] = ACTIONS(6801), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6801), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6801), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6801), + [anon_sym_IBOutlet] = ACTIONS(6801), + [anon_sym_IBInspectable] = ACTIONS(6801), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6801), + [anon_sym_NS_INLINE] = ACTIONS(6801), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6801), + [anon_sym_OBJC_EXPORT] = ACTIONS(6801), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6801), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6801), + [anon_sym_const] = ACTIONS(6801), + [anon_sym_constexpr] = ACTIONS(6801), + [anon_sym_volatile] = ACTIONS(6801), + [anon_sym_restrict] = ACTIONS(6801), + [anon_sym___restrict__] = ACTIONS(6801), + [anon_sym__Atomic] = ACTIONS(6801), + [anon_sym__Noreturn] = ACTIONS(6801), + [anon_sym__Nonnull] = ACTIONS(6801), + [anon_sym_nullable] = ACTIONS(6801), + [anon_sym__Complex] = ACTIONS(6801), + [anon_sym__Nullable] = ACTIONS(6801), + [anon_sym__Nullable_result] = ACTIONS(6801), + [anon_sym__Null_unspecified] = ACTIONS(6801), + [anon_sym___autoreleasing] = ACTIONS(6801), + [anon_sym___block] = ACTIONS(6801), + [anon_sym___bridge] = ACTIONS(6801), + [anon_sym___bridge_retained] = ACTIONS(6801), + [anon_sym___bridge_transfer] = ACTIONS(6801), + [anon_sym___complex] = ACTIONS(6801), + [anon_sym___const] = ACTIONS(6801), + [anon_sym___imag] = ACTIONS(6801), + [anon_sym___kindof] = ACTIONS(6801), + [anon_sym___nonnull] = ACTIONS(6801), + [anon_sym___nullable] = ACTIONS(6801), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6801), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6801), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6801), + [anon_sym___real] = ACTIONS(6801), + [anon_sym___strong] = ACTIONS(6801), + [anon_sym___unsafe_unretained] = ACTIONS(6801), + [anon_sym___unused] = ACTIONS(6801), + [anon_sym___weak] = ACTIONS(6801), + [anon_sym_alignas] = ACTIONS(6801), + [anon_sym__Alignas] = ACTIONS(6801), + [sym_primitive_type] = ACTIONS(6801), + [anon_sym_enum] = ACTIONS(6801), + [anon_sym_struct] = ACTIONS(6801), + [anon_sym_union] = ACTIONS(6801), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6801), + [anon_sym___typeof] = ACTIONS(6801), + [anon_sym_typeof] = ACTIONS(6801), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6801), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6801), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6801), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6801), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6801), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6801), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6801), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6801), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6801), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6801), + [anon_sym_NS_AVAILABLE] = ACTIONS(6801), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6801), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6801), + [anon_sym_API_AVAILABLE] = ACTIONS(6801), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6801), + [anon_sym_API_DEPRECATED] = ACTIONS(6801), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6801), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6801), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6801), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6801), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6801), + [anon_sym___deprecated_msg] = ACTIONS(6801), + [anon_sym___deprecated_enum_msg] = ACTIONS(6801), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6801), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6801), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6801), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6801), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6801), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6801), + [anon_sym_BOOL] = ACTIONS(6801), + [anon_sym_IMP] = ACTIONS(6801), + [anon_sym_SEL] = ACTIONS(6801), + [anon_sym_Class] = ACTIONS(6801), + [anon_sym_id] = ACTIONS(6801), + }, + [2697] = { + [sym_identifier] = ACTIONS(4110), + [anon_sym_LPAREN2] = ACTIONS(4112), + [anon_sym___extension__] = ACTIONS(4110), + [anon_sym_extern] = ACTIONS(4110), + [anon_sym___attribute__] = ACTIONS(4110), + [anon_sym___attribute] = ACTIONS(4110), + [anon_sym_noreturn] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4112), + [anon_sym___declspec] = ACTIONS(4110), + [anon_sym___cdecl] = ACTIONS(4110), + [anon_sym___clrcall] = ACTIONS(4110), + [anon_sym___stdcall] = ACTIONS(4110), + [anon_sym___fastcall] = ACTIONS(4110), + [anon_sym___thiscall] = ACTIONS(4110), + [anon_sym___vectorcall] = ACTIONS(4110), + [anon_sym_LBRACE] = ACTIONS(4112), + [anon_sym_signed] = ACTIONS(4110), + [anon_sym_unsigned] = ACTIONS(4110), + [anon_sym_long] = ACTIONS(4110), + [anon_sym_short] = ACTIONS(4110), + [anon_sym_static] = ACTIONS(4110), + [anon_sym_auto] = ACTIONS(4110), + [anon_sym_register] = ACTIONS(4110), + [anon_sym_inline] = ACTIONS(4110), + [anon_sym___inline] = ACTIONS(4110), + [anon_sym___inline__] = ACTIONS(4110), + [anon_sym___forceinline] = ACTIONS(4110), + [anon_sym_thread_local] = ACTIONS(4110), + [anon_sym___thread] = ACTIONS(4110), + [anon_sym_CG_EXTERN] = ACTIONS(4110), + [anon_sym_CG_INLINE] = ACTIONS(4110), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4110), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4110), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4110), + [anon_sym_IBOutlet] = ACTIONS(4110), + [anon_sym_IBInspectable] = ACTIONS(4110), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4110), + [anon_sym_NS_INLINE] = ACTIONS(4110), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4110), + [anon_sym_OBJC_EXPORT] = ACTIONS(4110), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4110), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4110), + [anon_sym_const] = ACTIONS(4110), + [anon_sym_constexpr] = ACTIONS(4110), + [anon_sym_volatile] = ACTIONS(4110), + [anon_sym_restrict] = ACTIONS(4110), + [anon_sym___restrict__] = ACTIONS(4110), + [anon_sym__Atomic] = ACTIONS(4110), + [anon_sym__Noreturn] = ACTIONS(4110), + [anon_sym__Nonnull] = ACTIONS(4110), + [anon_sym_nullable] = ACTIONS(4110), + [anon_sym__Complex] = ACTIONS(4110), + [anon_sym__Nullable] = ACTIONS(4110), + [anon_sym__Nullable_result] = ACTIONS(4110), + [anon_sym__Null_unspecified] = ACTIONS(4110), + [anon_sym___autoreleasing] = ACTIONS(4110), + [anon_sym___block] = ACTIONS(4110), + [anon_sym___bridge] = ACTIONS(4110), + [anon_sym___bridge_retained] = ACTIONS(4110), + [anon_sym___bridge_transfer] = ACTIONS(4110), + [anon_sym___complex] = ACTIONS(4110), + [anon_sym___const] = ACTIONS(4110), + [anon_sym___imag] = ACTIONS(4110), + [anon_sym___kindof] = ACTIONS(4110), + [anon_sym___nonnull] = ACTIONS(4110), + [anon_sym___nullable] = ACTIONS(4110), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4110), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4110), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4110), + [anon_sym___real] = ACTIONS(4110), + [anon_sym___strong] = ACTIONS(4110), + [anon_sym___unsafe_unretained] = ACTIONS(4110), + [anon_sym___unused] = ACTIONS(4110), + [anon_sym___weak] = ACTIONS(4110), + [anon_sym_alignas] = ACTIONS(4110), + [anon_sym__Alignas] = ACTIONS(4110), + [sym_primitive_type] = ACTIONS(4110), + [anon_sym_enum] = ACTIONS(4110), + [anon_sym_struct] = ACTIONS(4110), + [anon_sym_union] = ACTIONS(4110), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4110), + [anon_sym___typeof] = ACTIONS(4110), + [anon_sym_typeof] = ACTIONS(4110), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4110), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4110), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4110), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4110), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4110), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4110), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4110), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4110), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4110), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4110), + [anon_sym_NS_AVAILABLE] = ACTIONS(4110), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4110), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4110), + [anon_sym_API_AVAILABLE] = ACTIONS(4110), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4110), + [anon_sym_API_DEPRECATED] = ACTIONS(4110), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4110), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4110), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4110), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4110), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4110), + [anon_sym___deprecated_msg] = ACTIONS(4110), + [anon_sym___deprecated_enum_msg] = ACTIONS(4110), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4110), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4110), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4110), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4110), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4110), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4110), + [anon_sym_BOOL] = ACTIONS(4110), + [anon_sym_IMP] = ACTIONS(4110), + [anon_sym_SEL] = ACTIONS(4110), + [anon_sym_Class] = ACTIONS(4110), + [anon_sym_id] = ACTIONS(4110), + }, + [2698] = { + [sym_attribute_specifier] = STATE(2695), + [aux_sym_function_declarator_repeat1] = STATE(2695), + [sym_identifier] = ACTIONS(6786), + [anon_sym_COMMA] = ACTIONS(6788), + [anon_sym_LPAREN2] = ACTIONS(6788), + [anon_sym_SEMI] = ACTIONS(6788), + [anon_sym___extension__] = ACTIONS(6786), + [anon_sym_extern] = ACTIONS(6786), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6786), + [anon_sym_LBRACK] = ACTIONS(6788), + [anon_sym___declspec] = ACTIONS(6786), + [anon_sym_LBRACE] = ACTIONS(6788), + [anon_sym_signed] = ACTIONS(6786), + [anon_sym_unsigned] = ACTIONS(6786), + [anon_sym_long] = ACTIONS(6786), + [anon_sym_short] = ACTIONS(6786), + [anon_sym_static] = ACTIONS(6786), + [anon_sym_EQ] = ACTIONS(6788), + [anon_sym_ATautoreleasepool] = ACTIONS(6788), + [anon_sym_auto] = ACTIONS(6786), + [anon_sym_register] = ACTIONS(6786), + [anon_sym_inline] = ACTIONS(6786), + [anon_sym___inline] = ACTIONS(6786), + [anon_sym___inline__] = ACTIONS(6786), + [anon_sym___forceinline] = ACTIONS(6786), + [anon_sym_thread_local] = ACTIONS(6786), + [anon_sym___thread] = ACTIONS(6786), + [anon_sym_CG_EXTERN] = ACTIONS(6786), + [anon_sym_CG_INLINE] = ACTIONS(6786), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6786), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6786), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6786), + [anon_sym_IBOutlet] = ACTIONS(6786), + [anon_sym_IBInspectable] = ACTIONS(6786), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6786), + [anon_sym_NS_INLINE] = ACTIONS(6786), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6786), + [anon_sym_OBJC_EXPORT] = ACTIONS(6786), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6786), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6786), + [anon_sym_const] = ACTIONS(6786), + [anon_sym_constexpr] = ACTIONS(6786), + [anon_sym_volatile] = ACTIONS(6786), + [anon_sym_restrict] = ACTIONS(6786), + [anon_sym___restrict__] = ACTIONS(6786), + [anon_sym__Atomic] = ACTIONS(6786), + [anon_sym__Noreturn] = ACTIONS(6786), + [anon_sym__Nonnull] = ACTIONS(6786), + [anon_sym_nullable] = ACTIONS(6786), + [anon_sym__Complex] = ACTIONS(6786), + [anon_sym__Nullable] = ACTIONS(6786), + [anon_sym__Nullable_result] = ACTIONS(6786), + [anon_sym__Null_unspecified] = ACTIONS(6786), + [anon_sym___autoreleasing] = ACTIONS(6786), + [anon_sym___block] = ACTIONS(6786), + [anon_sym___bridge] = ACTIONS(6786), + [anon_sym___bridge_retained] = ACTIONS(6786), + [anon_sym___bridge_transfer] = ACTIONS(6786), + [anon_sym___complex] = ACTIONS(6786), + [anon_sym___const] = ACTIONS(6786), + [anon_sym___imag] = ACTIONS(6786), + [anon_sym___kindof] = ACTIONS(6786), + [anon_sym___nonnull] = ACTIONS(6786), + [anon_sym___nullable] = ACTIONS(6786), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6786), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6786), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6786), + [anon_sym___real] = ACTIONS(6786), + [anon_sym___strong] = ACTIONS(6786), + [anon_sym___unsafe_unretained] = ACTIONS(6786), + [anon_sym___unused] = ACTIONS(6786), + [anon_sym___weak] = ACTIONS(6786), + [anon_sym_alignas] = ACTIONS(6786), + [anon_sym__Alignas] = ACTIONS(6786), + [sym_primitive_type] = ACTIONS(6786), + [anon_sym_enum] = ACTIONS(6786), + [anon_sym_struct] = ACTIONS(6786), + [anon_sym_union] = ACTIONS(6786), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6786), + [anon_sym___typeof] = ACTIONS(6786), + [anon_sym_typeof] = ACTIONS(6786), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6786), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6786), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6786), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6786), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6786), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6786), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6786), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6786), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6786), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6786), + [anon_sym_NS_AVAILABLE] = ACTIONS(6786), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6786), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6786), + [anon_sym_API_AVAILABLE] = ACTIONS(6786), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6786), + [anon_sym_API_DEPRECATED] = ACTIONS(6786), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6786), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6786), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6786), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6786), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6786), + [anon_sym___deprecated_msg] = ACTIONS(6786), + [anon_sym___deprecated_enum_msg] = ACTIONS(6786), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6786), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6786), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6786), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6786), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6786), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6786), + [anon_sym_BOOL] = ACTIONS(6786), + [anon_sym_IMP] = ACTIONS(6786), + [anon_sym_SEL] = ACTIONS(6786), + [anon_sym_Class] = ACTIONS(6786), + [anon_sym_id] = ACTIONS(6786), + }, + [2699] = { + [sym_expression] = STATE(1446), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_initializer_list] = STATE(1466), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_COMMA] = ACTIONS(2222), + [anon_sym_RPAREN] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(6805), + [anon_sym_TILDE] = ACTIONS(6807), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_SLASH] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(2220), + [anon_sym_PIPE_PIPE] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2222), + [anon_sym_PIPE] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_EQ_EQ] = ACTIONS(2222), + [anon_sym_BANG_EQ] = ACTIONS(2222), + [anon_sym_GT] = ACTIONS(2220), + [anon_sym_GT_EQ] = ACTIONS(2222), + [anon_sym_LT_EQ] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2220), + [anon_sym_LT_LT] = ACTIONS(2220), + [anon_sym_GT_GT] = ACTIONS(2220), + [anon_sym___extension__] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_EQ] = ACTIONS(2220), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6811), + [anon_sym___real] = ACTIONS(6811), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_QMARK] = ACTIONS(2222), + [anon_sym_STAR_EQ] = ACTIONS(2222), + [anon_sym_SLASH_EQ] = ACTIONS(2222), + [anon_sym_PERCENT_EQ] = ACTIONS(2222), + [anon_sym_PLUS_EQ] = ACTIONS(2222), + [anon_sym_DASH_EQ] = ACTIONS(2222), + [anon_sym_LT_LT_EQ] = ACTIONS(2222), + [anon_sym_GT_GT_EQ] = ACTIONS(2222), + [anon_sym_AMP_EQ] = ACTIONS(2222), + [anon_sym_CARET_EQ] = ACTIONS(2222), + [anon_sym_PIPE_EQ] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_sizeof] = ACTIONS(6813), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [anon_sym_DOT] = ACTIONS(2220), + [anon_sym_DASH_GT] = ACTIONS(2222), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6815), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(6817), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [2700] = { + [sym_identifier] = ACTIONS(6683), + [aux_sym_preproc_def_token1] = ACTIONS(6683), + [aux_sym_preproc_if_token1] = ACTIONS(6683), + [aux_sym_preproc_if_token2] = ACTIONS(6683), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6683), + [sym_preproc_directive] = ACTIONS(6683), + [anon_sym___extension__] = ACTIONS(6683), + [anon_sym_extern] = ACTIONS(6683), + [anon_sym___attribute__] = ACTIONS(6683), + [anon_sym___attribute] = ACTIONS(6683), + [anon_sym_noreturn] = ACTIONS(6683), + [anon_sym_LBRACK] = ACTIONS(6685), + [anon_sym___declspec] = ACTIONS(6683), + [anon_sym_signed] = ACTIONS(6683), + [anon_sym_unsigned] = ACTIONS(6683), + [anon_sym_long] = ACTIONS(6683), + [anon_sym_short] = ACTIONS(6683), + [anon_sym_static] = ACTIONS(6683), + [anon_sym_auto] = ACTIONS(6683), + [anon_sym_register] = ACTIONS(6683), + [anon_sym_inline] = ACTIONS(6683), + [anon_sym___inline] = ACTIONS(6683), + [anon_sym___inline__] = ACTIONS(6683), + [anon_sym___forceinline] = ACTIONS(6683), + [anon_sym_thread_local] = ACTIONS(6683), + [anon_sym___thread] = ACTIONS(6683), + [anon_sym_CG_EXTERN] = ACTIONS(6683), + [anon_sym_CG_INLINE] = ACTIONS(6683), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6683), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6683), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6683), + [anon_sym_IBOutlet] = ACTIONS(6683), + [anon_sym_IBInspectable] = ACTIONS(6683), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6683), + [anon_sym_NS_INLINE] = ACTIONS(6683), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6683), + [anon_sym_OBJC_EXPORT] = ACTIONS(6683), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6683), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6683), + [anon_sym_const] = ACTIONS(6683), + [anon_sym_constexpr] = ACTIONS(6683), + [anon_sym_volatile] = ACTIONS(6683), + [anon_sym_restrict] = ACTIONS(6683), + [anon_sym___restrict__] = ACTIONS(6683), + [anon_sym__Atomic] = ACTIONS(6683), + [anon_sym__Noreturn] = ACTIONS(6683), + [anon_sym__Nonnull] = ACTIONS(6683), + [anon_sym_nullable] = ACTIONS(6683), + [anon_sym__Complex] = ACTIONS(6683), + [anon_sym__Nullable] = ACTIONS(6683), + [anon_sym__Nullable_result] = ACTIONS(6683), + [anon_sym__Null_unspecified] = ACTIONS(6683), + [anon_sym___autoreleasing] = ACTIONS(6683), + [anon_sym___block] = ACTIONS(6683), + [anon_sym___bridge] = ACTIONS(6683), + [anon_sym___bridge_retained] = ACTIONS(6683), + [anon_sym___bridge_transfer] = ACTIONS(6683), + [anon_sym___complex] = ACTIONS(6683), + [anon_sym___const] = ACTIONS(6683), + [anon_sym___imag] = ACTIONS(6683), + [anon_sym___kindof] = ACTIONS(6683), + [anon_sym___nonnull] = ACTIONS(6683), + [anon_sym___nullable] = ACTIONS(6683), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6683), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6683), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6683), + [anon_sym___real] = ACTIONS(6683), + [anon_sym___strong] = ACTIONS(6683), + [anon_sym___unsafe_unretained] = ACTIONS(6683), + [anon_sym___unused] = ACTIONS(6683), + [anon_sym___weak] = ACTIONS(6683), + [anon_sym_alignas] = ACTIONS(6683), + [anon_sym__Alignas] = ACTIONS(6683), + [sym_primitive_type] = ACTIONS(6683), + [anon_sym_enum] = ACTIONS(6683), + [anon_sym_struct] = ACTIONS(6683), + [anon_sym_union] = ACTIONS(6683), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6683), + [anon_sym___typeof] = ACTIONS(6683), + [anon_sym_typeof] = ACTIONS(6683), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6683), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6683), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6683), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6683), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6683), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6683), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6683), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6683), + [anon_sym_NS_AVAILABLE] = ACTIONS(6683), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6683), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_API_AVAILABLE] = ACTIONS(6683), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_API_DEPRECATED] = ACTIONS(6683), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6683), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6683), + [anon_sym___deprecated_msg] = ACTIONS(6683), + [anon_sym___deprecated_enum_msg] = ACTIONS(6683), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6683), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6683), + [anon_sym_BOOL] = ACTIONS(6683), + [anon_sym_IMP] = ACTIONS(6683), + [anon_sym_SEL] = ACTIONS(6683), + [anon_sym_Class] = ACTIONS(6683), + [anon_sym_id] = ACTIONS(6683), + [anon_sym_ATdefs] = ACTIONS(6685), + }, + [2701] = { + [sym_identifier] = ACTIONS(6707), + [aux_sym_preproc_def_token1] = ACTIONS(6707), + [aux_sym_preproc_if_token1] = ACTIONS(6707), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6707), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6707), + [sym_preproc_directive] = ACTIONS(6707), + [anon_sym___extension__] = ACTIONS(6707), + [anon_sym_extern] = ACTIONS(6707), + [anon_sym___attribute__] = ACTIONS(6707), + [anon_sym___attribute] = ACTIONS(6707), + [anon_sym_noreturn] = ACTIONS(6707), + [anon_sym_LBRACK] = ACTIONS(6709), + [anon_sym___declspec] = ACTIONS(6707), + [anon_sym_RBRACE] = ACTIONS(6709), + [anon_sym_signed] = ACTIONS(6707), + [anon_sym_unsigned] = ACTIONS(6707), + [anon_sym_long] = ACTIONS(6707), + [anon_sym_short] = ACTIONS(6707), + [anon_sym_static] = ACTIONS(6707), + [anon_sym_auto] = ACTIONS(6707), + [anon_sym_register] = ACTIONS(6707), + [anon_sym_inline] = ACTIONS(6707), + [anon_sym___inline] = ACTIONS(6707), + [anon_sym___inline__] = ACTIONS(6707), + [anon_sym___forceinline] = ACTIONS(6707), + [anon_sym_thread_local] = ACTIONS(6707), + [anon_sym___thread] = ACTIONS(6707), + [anon_sym_CG_EXTERN] = ACTIONS(6707), + [anon_sym_CG_INLINE] = ACTIONS(6707), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6707), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6707), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6707), + [anon_sym_IBOutlet] = ACTIONS(6707), + [anon_sym_IBInspectable] = ACTIONS(6707), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6707), + [anon_sym_NS_INLINE] = ACTIONS(6707), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6707), + [anon_sym_OBJC_EXPORT] = ACTIONS(6707), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6707), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6707), + [anon_sym_const] = ACTIONS(6707), + [anon_sym_constexpr] = ACTIONS(6707), + [anon_sym_volatile] = ACTIONS(6707), + [anon_sym_restrict] = ACTIONS(6707), + [anon_sym___restrict__] = ACTIONS(6707), + [anon_sym__Atomic] = ACTIONS(6707), + [anon_sym__Noreturn] = ACTIONS(6707), + [anon_sym__Nonnull] = ACTIONS(6707), + [anon_sym_nullable] = ACTIONS(6707), + [anon_sym__Complex] = ACTIONS(6707), + [anon_sym__Nullable] = ACTIONS(6707), + [anon_sym__Nullable_result] = ACTIONS(6707), + [anon_sym__Null_unspecified] = ACTIONS(6707), + [anon_sym___autoreleasing] = ACTIONS(6707), + [anon_sym___block] = ACTIONS(6707), + [anon_sym___bridge] = ACTIONS(6707), + [anon_sym___bridge_retained] = ACTIONS(6707), + [anon_sym___bridge_transfer] = ACTIONS(6707), + [anon_sym___complex] = ACTIONS(6707), + [anon_sym___const] = ACTIONS(6707), + [anon_sym___imag] = ACTIONS(6707), + [anon_sym___kindof] = ACTIONS(6707), + [anon_sym___nonnull] = ACTIONS(6707), + [anon_sym___nullable] = ACTIONS(6707), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6707), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6707), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6707), + [anon_sym___real] = ACTIONS(6707), + [anon_sym___strong] = ACTIONS(6707), + [anon_sym___unsafe_unretained] = ACTIONS(6707), + [anon_sym___unused] = ACTIONS(6707), + [anon_sym___weak] = ACTIONS(6707), + [anon_sym_alignas] = ACTIONS(6707), + [anon_sym__Alignas] = ACTIONS(6707), + [sym_primitive_type] = ACTIONS(6707), + [anon_sym_enum] = ACTIONS(6707), + [anon_sym_struct] = ACTIONS(6707), + [anon_sym_union] = ACTIONS(6707), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6707), + [anon_sym___typeof] = ACTIONS(6707), + [anon_sym_typeof] = ACTIONS(6707), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6707), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6707), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6707), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6707), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6707), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6707), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6707), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6707), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6707), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6707), + [anon_sym_NS_AVAILABLE] = ACTIONS(6707), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6707), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6707), + [anon_sym_API_AVAILABLE] = ACTIONS(6707), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6707), + [anon_sym_API_DEPRECATED] = ACTIONS(6707), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6707), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6707), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6707), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6707), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6707), + [anon_sym___deprecated_msg] = ACTIONS(6707), + [anon_sym___deprecated_enum_msg] = ACTIONS(6707), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6707), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6707), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6707), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6707), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6707), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6707), + [anon_sym_BOOL] = ACTIONS(6707), + [anon_sym_IMP] = ACTIONS(6707), + [anon_sym_SEL] = ACTIONS(6707), + [anon_sym_Class] = ACTIONS(6707), + [anon_sym_id] = ACTIONS(6707), + [anon_sym_ATdefs] = ACTIONS(6709), + }, + [2702] = { + [sym_identifier] = ACTIONS(6611), + [aux_sym_preproc_def_token1] = ACTIONS(6611), + [aux_sym_preproc_if_token1] = ACTIONS(6611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6611), + [sym_preproc_directive] = ACTIONS(6611), + [anon_sym___extension__] = ACTIONS(6611), + [anon_sym_extern] = ACTIONS(6611), + [anon_sym___attribute__] = ACTIONS(6611), + [anon_sym___attribute] = ACTIONS(6611), + [anon_sym_noreturn] = ACTIONS(6611), + [anon_sym_LBRACK] = ACTIONS(6613), + [anon_sym___declspec] = ACTIONS(6611), + [anon_sym_RBRACE] = ACTIONS(6613), + [anon_sym_signed] = ACTIONS(6611), + [anon_sym_unsigned] = ACTIONS(6611), + [anon_sym_long] = ACTIONS(6611), + [anon_sym_short] = ACTIONS(6611), + [anon_sym_static] = ACTIONS(6611), + [anon_sym_auto] = ACTIONS(6611), + [anon_sym_register] = ACTIONS(6611), + [anon_sym_inline] = ACTIONS(6611), + [anon_sym___inline] = ACTIONS(6611), + [anon_sym___inline__] = ACTIONS(6611), + [anon_sym___forceinline] = ACTIONS(6611), + [anon_sym_thread_local] = ACTIONS(6611), + [anon_sym___thread] = ACTIONS(6611), + [anon_sym_CG_EXTERN] = ACTIONS(6611), + [anon_sym_CG_INLINE] = ACTIONS(6611), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6611), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6611), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6611), + [anon_sym_IBOutlet] = ACTIONS(6611), + [anon_sym_IBInspectable] = ACTIONS(6611), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6611), + [anon_sym_NS_INLINE] = ACTIONS(6611), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6611), + [anon_sym_OBJC_EXPORT] = ACTIONS(6611), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6611), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6611), + [anon_sym_const] = ACTIONS(6611), + [anon_sym_constexpr] = ACTIONS(6611), + [anon_sym_volatile] = ACTIONS(6611), + [anon_sym_restrict] = ACTIONS(6611), + [anon_sym___restrict__] = ACTIONS(6611), + [anon_sym__Atomic] = ACTIONS(6611), + [anon_sym__Noreturn] = ACTIONS(6611), + [anon_sym__Nonnull] = ACTIONS(6611), + [anon_sym_nullable] = ACTIONS(6611), + [anon_sym__Complex] = ACTIONS(6611), + [anon_sym__Nullable] = ACTIONS(6611), + [anon_sym__Nullable_result] = ACTIONS(6611), + [anon_sym__Null_unspecified] = ACTIONS(6611), + [anon_sym___autoreleasing] = ACTIONS(6611), + [anon_sym___block] = ACTIONS(6611), + [anon_sym___bridge] = ACTIONS(6611), + [anon_sym___bridge_retained] = ACTIONS(6611), + [anon_sym___bridge_transfer] = ACTIONS(6611), + [anon_sym___complex] = ACTIONS(6611), + [anon_sym___const] = ACTIONS(6611), + [anon_sym___imag] = ACTIONS(6611), + [anon_sym___kindof] = ACTIONS(6611), + [anon_sym___nonnull] = ACTIONS(6611), + [anon_sym___nullable] = ACTIONS(6611), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6611), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6611), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6611), + [anon_sym___real] = ACTIONS(6611), + [anon_sym___strong] = ACTIONS(6611), + [anon_sym___unsafe_unretained] = ACTIONS(6611), + [anon_sym___unused] = ACTIONS(6611), + [anon_sym___weak] = ACTIONS(6611), + [anon_sym_alignas] = ACTIONS(6611), + [anon_sym__Alignas] = ACTIONS(6611), + [sym_primitive_type] = ACTIONS(6611), + [anon_sym_enum] = ACTIONS(6611), + [anon_sym_struct] = ACTIONS(6611), + [anon_sym_union] = ACTIONS(6611), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6611), + [anon_sym___typeof] = ACTIONS(6611), + [anon_sym_typeof] = ACTIONS(6611), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6611), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6611), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6611), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6611), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6611), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6611), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6611), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6611), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6611), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6611), + [anon_sym_NS_AVAILABLE] = ACTIONS(6611), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6611), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6611), + [anon_sym_API_AVAILABLE] = ACTIONS(6611), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6611), + [anon_sym_API_DEPRECATED] = ACTIONS(6611), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6611), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6611), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6611), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6611), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6611), + [anon_sym___deprecated_msg] = ACTIONS(6611), + [anon_sym___deprecated_enum_msg] = ACTIONS(6611), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6611), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6611), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6611), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6611), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6611), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6611), + [anon_sym_BOOL] = ACTIONS(6611), + [anon_sym_IMP] = ACTIONS(6611), + [anon_sym_SEL] = ACTIONS(6611), + [anon_sym_Class] = ACTIONS(6611), + [anon_sym_id] = ACTIONS(6611), + [anon_sym_ATdefs] = ACTIONS(6613), + }, + [2703] = { + [sym_identifier] = ACTIONS(6615), + [aux_sym_preproc_def_token1] = ACTIONS(6615), + [aux_sym_preproc_if_token1] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6615), + [sym_preproc_directive] = ACTIONS(6615), + [anon_sym___extension__] = ACTIONS(6615), + [anon_sym_extern] = ACTIONS(6615), + [anon_sym___attribute__] = ACTIONS(6615), + [anon_sym___attribute] = ACTIONS(6615), + [anon_sym_noreturn] = ACTIONS(6615), + [anon_sym_LBRACK] = ACTIONS(6617), + [anon_sym___declspec] = ACTIONS(6615), + [anon_sym_RBRACE] = ACTIONS(6617), + [anon_sym_signed] = ACTIONS(6615), + [anon_sym_unsigned] = ACTIONS(6615), + [anon_sym_long] = ACTIONS(6615), + [anon_sym_short] = ACTIONS(6615), + [anon_sym_static] = ACTIONS(6615), + [anon_sym_auto] = ACTIONS(6615), + [anon_sym_register] = ACTIONS(6615), + [anon_sym_inline] = ACTIONS(6615), + [anon_sym___inline] = ACTIONS(6615), + [anon_sym___inline__] = ACTIONS(6615), + [anon_sym___forceinline] = ACTIONS(6615), + [anon_sym_thread_local] = ACTIONS(6615), + [anon_sym___thread] = ACTIONS(6615), + [anon_sym_CG_EXTERN] = ACTIONS(6615), + [anon_sym_CG_INLINE] = ACTIONS(6615), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6615), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6615), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6615), + [anon_sym_IBOutlet] = ACTIONS(6615), + [anon_sym_IBInspectable] = ACTIONS(6615), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6615), + [anon_sym_NS_INLINE] = ACTIONS(6615), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6615), + [anon_sym_OBJC_EXPORT] = ACTIONS(6615), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6615), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6615), + [anon_sym_const] = ACTIONS(6615), + [anon_sym_constexpr] = ACTIONS(6615), + [anon_sym_volatile] = ACTIONS(6615), + [anon_sym_restrict] = ACTIONS(6615), + [anon_sym___restrict__] = ACTIONS(6615), + [anon_sym__Atomic] = ACTIONS(6615), + [anon_sym__Noreturn] = ACTIONS(6615), + [anon_sym__Nonnull] = ACTIONS(6615), + [anon_sym_nullable] = ACTIONS(6615), + [anon_sym__Complex] = ACTIONS(6615), + [anon_sym__Nullable] = ACTIONS(6615), + [anon_sym__Nullable_result] = ACTIONS(6615), + [anon_sym__Null_unspecified] = ACTIONS(6615), + [anon_sym___autoreleasing] = ACTIONS(6615), + [anon_sym___block] = ACTIONS(6615), + [anon_sym___bridge] = ACTIONS(6615), + [anon_sym___bridge_retained] = ACTIONS(6615), + [anon_sym___bridge_transfer] = ACTIONS(6615), + [anon_sym___complex] = ACTIONS(6615), + [anon_sym___const] = ACTIONS(6615), + [anon_sym___imag] = ACTIONS(6615), + [anon_sym___kindof] = ACTIONS(6615), + [anon_sym___nonnull] = ACTIONS(6615), + [anon_sym___nullable] = ACTIONS(6615), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6615), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6615), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6615), + [anon_sym___real] = ACTIONS(6615), + [anon_sym___strong] = ACTIONS(6615), + [anon_sym___unsafe_unretained] = ACTIONS(6615), + [anon_sym___unused] = ACTIONS(6615), + [anon_sym___weak] = ACTIONS(6615), + [anon_sym_alignas] = ACTIONS(6615), + [anon_sym__Alignas] = ACTIONS(6615), + [sym_primitive_type] = ACTIONS(6615), + [anon_sym_enum] = ACTIONS(6615), + [anon_sym_struct] = ACTIONS(6615), + [anon_sym_union] = ACTIONS(6615), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6615), + [anon_sym___typeof] = ACTIONS(6615), + [anon_sym_typeof] = ACTIONS(6615), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6615), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6615), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6615), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6615), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6615), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6615), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6615), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6615), + [anon_sym_NS_AVAILABLE] = ACTIONS(6615), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6615), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_API_AVAILABLE] = ACTIONS(6615), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_API_DEPRECATED] = ACTIONS(6615), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6615), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6615), + [anon_sym___deprecated_msg] = ACTIONS(6615), + [anon_sym___deprecated_enum_msg] = ACTIONS(6615), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6615), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6615), + [anon_sym_BOOL] = ACTIONS(6615), + [anon_sym_IMP] = ACTIONS(6615), + [anon_sym_SEL] = ACTIONS(6615), + [anon_sym_Class] = ACTIONS(6615), + [anon_sym_id] = ACTIONS(6615), + [anon_sym_ATdefs] = ACTIONS(6617), + }, + [2704] = { + [sym_identifier] = ACTIONS(6615), + [aux_sym_preproc_def_token1] = ACTIONS(6615), + [aux_sym_preproc_if_token1] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6615), + [sym_preproc_directive] = ACTIONS(6615), + [anon_sym___extension__] = ACTIONS(6615), + [anon_sym_extern] = ACTIONS(6615), + [anon_sym___attribute__] = ACTIONS(6615), + [anon_sym___attribute] = ACTIONS(6615), + [anon_sym_noreturn] = ACTIONS(6615), + [anon_sym_LBRACK] = ACTIONS(6617), + [anon_sym___declspec] = ACTIONS(6615), + [anon_sym_RBRACE] = ACTIONS(6617), + [anon_sym_signed] = ACTIONS(6615), + [anon_sym_unsigned] = ACTIONS(6615), + [anon_sym_long] = ACTIONS(6615), + [anon_sym_short] = ACTIONS(6615), + [anon_sym_static] = ACTIONS(6615), + [anon_sym_auto] = ACTIONS(6615), + [anon_sym_register] = ACTIONS(6615), + [anon_sym_inline] = ACTIONS(6615), + [anon_sym___inline] = ACTIONS(6615), + [anon_sym___inline__] = ACTIONS(6615), + [anon_sym___forceinline] = ACTIONS(6615), + [anon_sym_thread_local] = ACTIONS(6615), + [anon_sym___thread] = ACTIONS(6615), + [anon_sym_CG_EXTERN] = ACTIONS(6615), + [anon_sym_CG_INLINE] = ACTIONS(6615), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6615), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6615), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6615), + [anon_sym_IBOutlet] = ACTIONS(6615), + [anon_sym_IBInspectable] = ACTIONS(6615), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6615), + [anon_sym_NS_INLINE] = ACTIONS(6615), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6615), + [anon_sym_OBJC_EXPORT] = ACTIONS(6615), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6615), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6615), + [anon_sym_const] = ACTIONS(6615), + [anon_sym_constexpr] = ACTIONS(6615), + [anon_sym_volatile] = ACTIONS(6615), + [anon_sym_restrict] = ACTIONS(6615), + [anon_sym___restrict__] = ACTIONS(6615), + [anon_sym__Atomic] = ACTIONS(6615), + [anon_sym__Noreturn] = ACTIONS(6615), + [anon_sym__Nonnull] = ACTIONS(6615), + [anon_sym_nullable] = ACTIONS(6615), + [anon_sym__Complex] = ACTIONS(6615), + [anon_sym__Nullable] = ACTIONS(6615), + [anon_sym__Nullable_result] = ACTIONS(6615), + [anon_sym__Null_unspecified] = ACTIONS(6615), + [anon_sym___autoreleasing] = ACTIONS(6615), + [anon_sym___block] = ACTIONS(6615), + [anon_sym___bridge] = ACTIONS(6615), + [anon_sym___bridge_retained] = ACTIONS(6615), + [anon_sym___bridge_transfer] = ACTIONS(6615), + [anon_sym___complex] = ACTIONS(6615), + [anon_sym___const] = ACTIONS(6615), + [anon_sym___imag] = ACTIONS(6615), + [anon_sym___kindof] = ACTIONS(6615), + [anon_sym___nonnull] = ACTIONS(6615), + [anon_sym___nullable] = ACTIONS(6615), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6615), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6615), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6615), + [anon_sym___real] = ACTIONS(6615), + [anon_sym___strong] = ACTIONS(6615), + [anon_sym___unsafe_unretained] = ACTIONS(6615), + [anon_sym___unused] = ACTIONS(6615), + [anon_sym___weak] = ACTIONS(6615), + [anon_sym_alignas] = ACTIONS(6615), + [anon_sym__Alignas] = ACTIONS(6615), + [sym_primitive_type] = ACTIONS(6615), + [anon_sym_enum] = ACTIONS(6615), + [anon_sym_struct] = ACTIONS(6615), + [anon_sym_union] = ACTIONS(6615), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6615), + [anon_sym___typeof] = ACTIONS(6615), + [anon_sym_typeof] = ACTIONS(6615), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6615), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6615), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6615), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6615), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6615), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6615), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6615), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6615), + [anon_sym_NS_AVAILABLE] = ACTIONS(6615), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6615), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_API_AVAILABLE] = ACTIONS(6615), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_API_DEPRECATED] = ACTIONS(6615), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6615), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6615), + [anon_sym___deprecated_msg] = ACTIONS(6615), + [anon_sym___deprecated_enum_msg] = ACTIONS(6615), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6615), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6615), + [anon_sym_BOOL] = ACTIONS(6615), + [anon_sym_IMP] = ACTIONS(6615), + [anon_sym_SEL] = ACTIONS(6615), + [anon_sym_Class] = ACTIONS(6615), + [anon_sym_id] = ACTIONS(6615), + [anon_sym_ATdefs] = ACTIONS(6617), + }, + [2705] = { + [sym_identifier] = ACTIONS(6619), + [aux_sym_preproc_def_token1] = ACTIONS(6619), + [aux_sym_preproc_if_token1] = ACTIONS(6619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6619), + [sym_preproc_directive] = ACTIONS(6619), + [anon_sym___extension__] = ACTIONS(6619), + [anon_sym_extern] = ACTIONS(6619), + [anon_sym___attribute__] = ACTIONS(6619), + [anon_sym___attribute] = ACTIONS(6619), + [anon_sym_noreturn] = ACTIONS(6619), + [anon_sym_LBRACK] = ACTIONS(6621), + [anon_sym___declspec] = ACTIONS(6619), + [anon_sym_RBRACE] = ACTIONS(6621), + [anon_sym_signed] = ACTIONS(6619), + [anon_sym_unsigned] = ACTIONS(6619), + [anon_sym_long] = ACTIONS(6619), + [anon_sym_short] = ACTIONS(6619), + [anon_sym_static] = ACTIONS(6619), + [anon_sym_auto] = ACTIONS(6619), + [anon_sym_register] = ACTIONS(6619), + [anon_sym_inline] = ACTIONS(6619), + [anon_sym___inline] = ACTIONS(6619), + [anon_sym___inline__] = ACTIONS(6619), + [anon_sym___forceinline] = ACTIONS(6619), + [anon_sym_thread_local] = ACTIONS(6619), + [anon_sym___thread] = ACTIONS(6619), + [anon_sym_CG_EXTERN] = ACTIONS(6619), + [anon_sym_CG_INLINE] = ACTIONS(6619), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6619), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6619), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6619), + [anon_sym_IBOutlet] = ACTIONS(6619), + [anon_sym_IBInspectable] = ACTIONS(6619), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6619), + [anon_sym_NS_INLINE] = ACTIONS(6619), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6619), + [anon_sym_OBJC_EXPORT] = ACTIONS(6619), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6619), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6619), + [anon_sym_const] = ACTIONS(6619), + [anon_sym_constexpr] = ACTIONS(6619), + [anon_sym_volatile] = ACTIONS(6619), + [anon_sym_restrict] = ACTIONS(6619), + [anon_sym___restrict__] = ACTIONS(6619), + [anon_sym__Atomic] = ACTIONS(6619), + [anon_sym__Noreturn] = ACTIONS(6619), + [anon_sym__Nonnull] = ACTIONS(6619), + [anon_sym_nullable] = ACTIONS(6619), + [anon_sym__Complex] = ACTIONS(6619), + [anon_sym__Nullable] = ACTIONS(6619), + [anon_sym__Nullable_result] = ACTIONS(6619), + [anon_sym__Null_unspecified] = ACTIONS(6619), + [anon_sym___autoreleasing] = ACTIONS(6619), + [anon_sym___block] = ACTIONS(6619), + [anon_sym___bridge] = ACTIONS(6619), + [anon_sym___bridge_retained] = ACTIONS(6619), + [anon_sym___bridge_transfer] = ACTIONS(6619), + [anon_sym___complex] = ACTIONS(6619), + [anon_sym___const] = ACTIONS(6619), + [anon_sym___imag] = ACTIONS(6619), + [anon_sym___kindof] = ACTIONS(6619), + [anon_sym___nonnull] = ACTIONS(6619), + [anon_sym___nullable] = ACTIONS(6619), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6619), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6619), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6619), + [anon_sym___real] = ACTIONS(6619), + [anon_sym___strong] = ACTIONS(6619), + [anon_sym___unsafe_unretained] = ACTIONS(6619), + [anon_sym___unused] = ACTIONS(6619), + [anon_sym___weak] = ACTIONS(6619), + [anon_sym_alignas] = ACTIONS(6619), + [anon_sym__Alignas] = ACTIONS(6619), + [sym_primitive_type] = ACTIONS(6619), + [anon_sym_enum] = ACTIONS(6619), + [anon_sym_struct] = ACTIONS(6619), + [anon_sym_union] = ACTIONS(6619), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6619), + [anon_sym___typeof] = ACTIONS(6619), + [anon_sym_typeof] = ACTIONS(6619), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6619), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6619), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6619), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6619), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6619), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6619), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6619), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6619), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6619), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6619), + [anon_sym_NS_AVAILABLE] = ACTIONS(6619), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6619), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6619), + [anon_sym_API_AVAILABLE] = ACTIONS(6619), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6619), + [anon_sym_API_DEPRECATED] = ACTIONS(6619), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6619), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6619), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6619), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6619), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6619), + [anon_sym___deprecated_msg] = ACTIONS(6619), + [anon_sym___deprecated_enum_msg] = ACTIONS(6619), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6619), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6619), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6619), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6619), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6619), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6619), + [anon_sym_BOOL] = ACTIONS(6619), + [anon_sym_IMP] = ACTIONS(6619), + [anon_sym_SEL] = ACTIONS(6619), + [anon_sym_Class] = ACTIONS(6619), + [anon_sym_id] = ACTIONS(6619), + [anon_sym_ATdefs] = ACTIONS(6621), + }, + [2706] = { + [sym_identifier] = ACTIONS(6611), + [aux_sym_preproc_def_token1] = ACTIONS(6611), + [aux_sym_preproc_if_token1] = ACTIONS(6611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6611), + [sym_preproc_directive] = ACTIONS(6611), + [anon_sym___extension__] = ACTIONS(6611), + [anon_sym_extern] = ACTIONS(6611), + [anon_sym___attribute__] = ACTIONS(6611), + [anon_sym___attribute] = ACTIONS(6611), + [anon_sym_noreturn] = ACTIONS(6611), + [anon_sym_LBRACK] = ACTIONS(6613), + [anon_sym___declspec] = ACTIONS(6611), + [anon_sym_RBRACE] = ACTIONS(6613), + [anon_sym_signed] = ACTIONS(6611), + [anon_sym_unsigned] = ACTIONS(6611), + [anon_sym_long] = ACTIONS(6611), + [anon_sym_short] = ACTIONS(6611), + [anon_sym_static] = ACTIONS(6611), + [anon_sym_auto] = ACTIONS(6611), + [anon_sym_register] = ACTIONS(6611), + [anon_sym_inline] = ACTIONS(6611), + [anon_sym___inline] = ACTIONS(6611), + [anon_sym___inline__] = ACTIONS(6611), + [anon_sym___forceinline] = ACTIONS(6611), + [anon_sym_thread_local] = ACTIONS(6611), + [anon_sym___thread] = ACTIONS(6611), + [anon_sym_CG_EXTERN] = ACTIONS(6611), + [anon_sym_CG_INLINE] = ACTIONS(6611), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6611), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6611), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6611), + [anon_sym_IBOutlet] = ACTIONS(6611), + [anon_sym_IBInspectable] = ACTIONS(6611), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6611), + [anon_sym_NS_INLINE] = ACTIONS(6611), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6611), + [anon_sym_OBJC_EXPORT] = ACTIONS(6611), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6611), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6611), + [anon_sym_const] = ACTIONS(6611), + [anon_sym_constexpr] = ACTIONS(6611), + [anon_sym_volatile] = ACTIONS(6611), + [anon_sym_restrict] = ACTIONS(6611), + [anon_sym___restrict__] = ACTIONS(6611), + [anon_sym__Atomic] = ACTIONS(6611), + [anon_sym__Noreturn] = ACTIONS(6611), + [anon_sym__Nonnull] = ACTIONS(6611), + [anon_sym_nullable] = ACTIONS(6611), + [anon_sym__Complex] = ACTIONS(6611), + [anon_sym__Nullable] = ACTIONS(6611), + [anon_sym__Nullable_result] = ACTIONS(6611), + [anon_sym__Null_unspecified] = ACTIONS(6611), + [anon_sym___autoreleasing] = ACTIONS(6611), + [anon_sym___block] = ACTIONS(6611), + [anon_sym___bridge] = ACTIONS(6611), + [anon_sym___bridge_retained] = ACTIONS(6611), + [anon_sym___bridge_transfer] = ACTIONS(6611), + [anon_sym___complex] = ACTIONS(6611), + [anon_sym___const] = ACTIONS(6611), + [anon_sym___imag] = ACTIONS(6611), + [anon_sym___kindof] = ACTIONS(6611), + [anon_sym___nonnull] = ACTIONS(6611), + [anon_sym___nullable] = ACTIONS(6611), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6611), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6611), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6611), + [anon_sym___real] = ACTIONS(6611), + [anon_sym___strong] = ACTIONS(6611), + [anon_sym___unsafe_unretained] = ACTIONS(6611), + [anon_sym___unused] = ACTIONS(6611), + [anon_sym___weak] = ACTIONS(6611), + [anon_sym_alignas] = ACTIONS(6611), + [anon_sym__Alignas] = ACTIONS(6611), + [sym_primitive_type] = ACTIONS(6611), + [anon_sym_enum] = ACTIONS(6611), + [anon_sym_struct] = ACTIONS(6611), + [anon_sym_union] = ACTIONS(6611), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6611), + [anon_sym___typeof] = ACTIONS(6611), + [anon_sym_typeof] = ACTIONS(6611), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6611), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6611), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6611), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6611), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6611), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6611), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6611), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6611), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6611), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6611), + [anon_sym_NS_AVAILABLE] = ACTIONS(6611), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6611), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6611), + [anon_sym_API_AVAILABLE] = ACTIONS(6611), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6611), + [anon_sym_API_DEPRECATED] = ACTIONS(6611), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6611), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6611), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6611), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6611), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6611), + [anon_sym___deprecated_msg] = ACTIONS(6611), + [anon_sym___deprecated_enum_msg] = ACTIONS(6611), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6611), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6611), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6611), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6611), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6611), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6611), + [anon_sym_BOOL] = ACTIONS(6611), + [anon_sym_IMP] = ACTIONS(6611), + [anon_sym_SEL] = ACTIONS(6611), + [anon_sym_Class] = ACTIONS(6611), + [anon_sym_id] = ACTIONS(6611), + [anon_sym_ATdefs] = ACTIONS(6613), + }, + [2707] = { + [sym_identifier] = ACTIONS(6615), + [aux_sym_preproc_def_token1] = ACTIONS(6615), + [aux_sym_preproc_if_token1] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6615), + [sym_preproc_directive] = ACTIONS(6615), + [anon_sym___extension__] = ACTIONS(6615), + [anon_sym_extern] = ACTIONS(6615), + [anon_sym___attribute__] = ACTIONS(6615), + [anon_sym___attribute] = ACTIONS(6615), + [anon_sym_noreturn] = ACTIONS(6615), + [anon_sym_LBRACK] = ACTIONS(6617), + [anon_sym___declspec] = ACTIONS(6615), + [anon_sym_RBRACE] = ACTIONS(6617), + [anon_sym_signed] = ACTIONS(6615), + [anon_sym_unsigned] = ACTIONS(6615), + [anon_sym_long] = ACTIONS(6615), + [anon_sym_short] = ACTIONS(6615), + [anon_sym_static] = ACTIONS(6615), + [anon_sym_auto] = ACTIONS(6615), + [anon_sym_register] = ACTIONS(6615), + [anon_sym_inline] = ACTIONS(6615), + [anon_sym___inline] = ACTIONS(6615), + [anon_sym___inline__] = ACTIONS(6615), + [anon_sym___forceinline] = ACTIONS(6615), + [anon_sym_thread_local] = ACTIONS(6615), + [anon_sym___thread] = ACTIONS(6615), + [anon_sym_CG_EXTERN] = ACTIONS(6615), + [anon_sym_CG_INLINE] = ACTIONS(6615), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6615), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6615), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6615), + [anon_sym_IBOutlet] = ACTIONS(6615), + [anon_sym_IBInspectable] = ACTIONS(6615), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6615), + [anon_sym_NS_INLINE] = ACTIONS(6615), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6615), + [anon_sym_OBJC_EXPORT] = ACTIONS(6615), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6615), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6615), + [anon_sym_const] = ACTIONS(6615), + [anon_sym_constexpr] = ACTIONS(6615), + [anon_sym_volatile] = ACTIONS(6615), + [anon_sym_restrict] = ACTIONS(6615), + [anon_sym___restrict__] = ACTIONS(6615), + [anon_sym__Atomic] = ACTIONS(6615), + [anon_sym__Noreturn] = ACTIONS(6615), + [anon_sym__Nonnull] = ACTIONS(6615), + [anon_sym_nullable] = ACTIONS(6615), + [anon_sym__Complex] = ACTIONS(6615), + [anon_sym__Nullable] = ACTIONS(6615), + [anon_sym__Nullable_result] = ACTIONS(6615), + [anon_sym__Null_unspecified] = ACTIONS(6615), + [anon_sym___autoreleasing] = ACTIONS(6615), + [anon_sym___block] = ACTIONS(6615), + [anon_sym___bridge] = ACTIONS(6615), + [anon_sym___bridge_retained] = ACTIONS(6615), + [anon_sym___bridge_transfer] = ACTIONS(6615), + [anon_sym___complex] = ACTIONS(6615), + [anon_sym___const] = ACTIONS(6615), + [anon_sym___imag] = ACTIONS(6615), + [anon_sym___kindof] = ACTIONS(6615), + [anon_sym___nonnull] = ACTIONS(6615), + [anon_sym___nullable] = ACTIONS(6615), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6615), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6615), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6615), + [anon_sym___real] = ACTIONS(6615), + [anon_sym___strong] = ACTIONS(6615), + [anon_sym___unsafe_unretained] = ACTIONS(6615), + [anon_sym___unused] = ACTIONS(6615), + [anon_sym___weak] = ACTIONS(6615), + [anon_sym_alignas] = ACTIONS(6615), + [anon_sym__Alignas] = ACTIONS(6615), + [sym_primitive_type] = ACTIONS(6615), + [anon_sym_enum] = ACTIONS(6615), + [anon_sym_struct] = ACTIONS(6615), + [anon_sym_union] = ACTIONS(6615), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6615), + [anon_sym___typeof] = ACTIONS(6615), + [anon_sym_typeof] = ACTIONS(6615), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6615), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6615), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6615), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6615), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6615), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6615), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6615), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6615), + [anon_sym_NS_AVAILABLE] = ACTIONS(6615), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6615), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_API_AVAILABLE] = ACTIONS(6615), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_API_DEPRECATED] = ACTIONS(6615), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6615), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6615), + [anon_sym___deprecated_msg] = ACTIONS(6615), + [anon_sym___deprecated_enum_msg] = ACTIONS(6615), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6615), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6615), + [anon_sym_BOOL] = ACTIONS(6615), + [anon_sym_IMP] = ACTIONS(6615), + [anon_sym_SEL] = ACTIONS(6615), + [anon_sym_Class] = ACTIONS(6615), + [anon_sym_id] = ACTIONS(6615), + [anon_sym_ATdefs] = ACTIONS(6617), + }, + [2708] = { + [sym_identifier] = ACTIONS(6615), + [aux_sym_preproc_def_token1] = ACTIONS(6615), + [aux_sym_preproc_if_token1] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6615), + [sym_preproc_directive] = ACTIONS(6615), + [anon_sym___extension__] = ACTIONS(6615), + [anon_sym_extern] = ACTIONS(6615), + [anon_sym___attribute__] = ACTIONS(6615), + [anon_sym___attribute] = ACTIONS(6615), + [anon_sym_noreturn] = ACTIONS(6615), + [anon_sym_LBRACK] = ACTIONS(6617), + [anon_sym___declspec] = ACTIONS(6615), + [anon_sym_RBRACE] = ACTIONS(6617), + [anon_sym_signed] = ACTIONS(6615), + [anon_sym_unsigned] = ACTIONS(6615), + [anon_sym_long] = ACTIONS(6615), + [anon_sym_short] = ACTIONS(6615), + [anon_sym_static] = ACTIONS(6615), + [anon_sym_auto] = ACTIONS(6615), + [anon_sym_register] = ACTIONS(6615), + [anon_sym_inline] = ACTIONS(6615), + [anon_sym___inline] = ACTIONS(6615), + [anon_sym___inline__] = ACTIONS(6615), + [anon_sym___forceinline] = ACTIONS(6615), + [anon_sym_thread_local] = ACTIONS(6615), + [anon_sym___thread] = ACTIONS(6615), + [anon_sym_CG_EXTERN] = ACTIONS(6615), + [anon_sym_CG_INLINE] = ACTIONS(6615), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6615), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6615), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6615), + [anon_sym_IBOutlet] = ACTIONS(6615), + [anon_sym_IBInspectable] = ACTIONS(6615), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6615), + [anon_sym_NS_INLINE] = ACTIONS(6615), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6615), + [anon_sym_OBJC_EXPORT] = ACTIONS(6615), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6615), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6615), + [anon_sym_const] = ACTIONS(6615), + [anon_sym_constexpr] = ACTIONS(6615), + [anon_sym_volatile] = ACTIONS(6615), + [anon_sym_restrict] = ACTIONS(6615), + [anon_sym___restrict__] = ACTIONS(6615), + [anon_sym__Atomic] = ACTIONS(6615), + [anon_sym__Noreturn] = ACTIONS(6615), + [anon_sym__Nonnull] = ACTIONS(6615), + [anon_sym_nullable] = ACTIONS(6615), + [anon_sym__Complex] = ACTIONS(6615), + [anon_sym__Nullable] = ACTIONS(6615), + [anon_sym__Nullable_result] = ACTIONS(6615), + [anon_sym__Null_unspecified] = ACTIONS(6615), + [anon_sym___autoreleasing] = ACTIONS(6615), + [anon_sym___block] = ACTIONS(6615), + [anon_sym___bridge] = ACTIONS(6615), + [anon_sym___bridge_retained] = ACTIONS(6615), + [anon_sym___bridge_transfer] = ACTIONS(6615), + [anon_sym___complex] = ACTIONS(6615), + [anon_sym___const] = ACTIONS(6615), + [anon_sym___imag] = ACTIONS(6615), + [anon_sym___kindof] = ACTIONS(6615), + [anon_sym___nonnull] = ACTIONS(6615), + [anon_sym___nullable] = ACTIONS(6615), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6615), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6615), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6615), + [anon_sym___real] = ACTIONS(6615), + [anon_sym___strong] = ACTIONS(6615), + [anon_sym___unsafe_unretained] = ACTIONS(6615), + [anon_sym___unused] = ACTIONS(6615), + [anon_sym___weak] = ACTIONS(6615), + [anon_sym_alignas] = ACTIONS(6615), + [anon_sym__Alignas] = ACTIONS(6615), + [sym_primitive_type] = ACTIONS(6615), + [anon_sym_enum] = ACTIONS(6615), + [anon_sym_struct] = ACTIONS(6615), + [anon_sym_union] = ACTIONS(6615), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6615), + [anon_sym___typeof] = ACTIONS(6615), + [anon_sym_typeof] = ACTIONS(6615), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6615), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6615), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6615), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6615), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6615), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6615), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6615), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6615), + [anon_sym_NS_AVAILABLE] = ACTIONS(6615), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6615), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_API_AVAILABLE] = ACTIONS(6615), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_API_DEPRECATED] = ACTIONS(6615), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6615), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6615), + [anon_sym___deprecated_msg] = ACTIONS(6615), + [anon_sym___deprecated_enum_msg] = ACTIONS(6615), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6615), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6615), + [anon_sym_BOOL] = ACTIONS(6615), + [anon_sym_IMP] = ACTIONS(6615), + [anon_sym_SEL] = ACTIONS(6615), + [anon_sym_Class] = ACTIONS(6615), + [anon_sym_id] = ACTIONS(6615), + [anon_sym_ATdefs] = ACTIONS(6617), + }, + [2709] = { + [sym_identifier] = ACTIONS(6619), + [aux_sym_preproc_def_token1] = ACTIONS(6619), + [aux_sym_preproc_if_token1] = ACTIONS(6619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6619), + [sym_preproc_directive] = ACTIONS(6619), + [anon_sym___extension__] = ACTIONS(6619), + [anon_sym_extern] = ACTIONS(6619), + [anon_sym___attribute__] = ACTIONS(6619), + [anon_sym___attribute] = ACTIONS(6619), + [anon_sym_noreturn] = ACTIONS(6619), + [anon_sym_LBRACK] = ACTIONS(6621), + [anon_sym___declspec] = ACTIONS(6619), + [anon_sym_RBRACE] = ACTIONS(6621), + [anon_sym_signed] = ACTIONS(6619), + [anon_sym_unsigned] = ACTIONS(6619), + [anon_sym_long] = ACTIONS(6619), + [anon_sym_short] = ACTIONS(6619), + [anon_sym_static] = ACTIONS(6619), + [anon_sym_auto] = ACTIONS(6619), + [anon_sym_register] = ACTIONS(6619), + [anon_sym_inline] = ACTIONS(6619), + [anon_sym___inline] = ACTIONS(6619), + [anon_sym___inline__] = ACTIONS(6619), + [anon_sym___forceinline] = ACTIONS(6619), + [anon_sym_thread_local] = ACTIONS(6619), + [anon_sym___thread] = ACTIONS(6619), + [anon_sym_CG_EXTERN] = ACTIONS(6619), + [anon_sym_CG_INLINE] = ACTIONS(6619), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6619), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6619), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6619), + [anon_sym_IBOutlet] = ACTIONS(6619), + [anon_sym_IBInspectable] = ACTIONS(6619), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6619), + [anon_sym_NS_INLINE] = ACTIONS(6619), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6619), + [anon_sym_OBJC_EXPORT] = ACTIONS(6619), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6619), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6619), + [anon_sym_const] = ACTIONS(6619), + [anon_sym_constexpr] = ACTIONS(6619), + [anon_sym_volatile] = ACTIONS(6619), + [anon_sym_restrict] = ACTIONS(6619), + [anon_sym___restrict__] = ACTIONS(6619), + [anon_sym__Atomic] = ACTIONS(6619), + [anon_sym__Noreturn] = ACTIONS(6619), + [anon_sym__Nonnull] = ACTIONS(6619), + [anon_sym_nullable] = ACTIONS(6619), + [anon_sym__Complex] = ACTIONS(6619), + [anon_sym__Nullable] = ACTIONS(6619), + [anon_sym__Nullable_result] = ACTIONS(6619), + [anon_sym__Null_unspecified] = ACTIONS(6619), + [anon_sym___autoreleasing] = ACTIONS(6619), + [anon_sym___block] = ACTIONS(6619), + [anon_sym___bridge] = ACTIONS(6619), + [anon_sym___bridge_retained] = ACTIONS(6619), + [anon_sym___bridge_transfer] = ACTIONS(6619), + [anon_sym___complex] = ACTIONS(6619), + [anon_sym___const] = ACTIONS(6619), + [anon_sym___imag] = ACTIONS(6619), + [anon_sym___kindof] = ACTIONS(6619), + [anon_sym___nonnull] = ACTIONS(6619), + [anon_sym___nullable] = ACTIONS(6619), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6619), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6619), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6619), + [anon_sym___real] = ACTIONS(6619), + [anon_sym___strong] = ACTIONS(6619), + [anon_sym___unsafe_unretained] = ACTIONS(6619), + [anon_sym___unused] = ACTIONS(6619), + [anon_sym___weak] = ACTIONS(6619), + [anon_sym_alignas] = ACTIONS(6619), + [anon_sym__Alignas] = ACTIONS(6619), + [sym_primitive_type] = ACTIONS(6619), + [anon_sym_enum] = ACTIONS(6619), + [anon_sym_struct] = ACTIONS(6619), + [anon_sym_union] = ACTIONS(6619), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6619), + [anon_sym___typeof] = ACTIONS(6619), + [anon_sym_typeof] = ACTIONS(6619), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6619), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6619), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6619), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6619), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6619), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6619), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6619), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6619), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6619), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6619), + [anon_sym_NS_AVAILABLE] = ACTIONS(6619), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6619), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6619), + [anon_sym_API_AVAILABLE] = ACTIONS(6619), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6619), + [anon_sym_API_DEPRECATED] = ACTIONS(6619), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6619), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6619), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6619), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6619), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6619), + [anon_sym___deprecated_msg] = ACTIONS(6619), + [anon_sym___deprecated_enum_msg] = ACTIONS(6619), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6619), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6619), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6619), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6619), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6619), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6619), + [anon_sym_BOOL] = ACTIONS(6619), + [anon_sym_IMP] = ACTIONS(6619), + [anon_sym_SEL] = ACTIONS(6619), + [anon_sym_Class] = ACTIONS(6619), + [anon_sym_id] = ACTIONS(6619), + [anon_sym_ATdefs] = ACTIONS(6621), + }, + [2710] = { + [sym_parameter_list] = STATE(2568), + [sym_identifier] = ACTIONS(6819), + [anon_sym_COMMA] = ACTIONS(6821), + [anon_sym_LPAREN2] = ACTIONS(6746), + [anon_sym_SEMI] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(6819), + [anon_sym_extern] = ACTIONS(6819), + [anon_sym___attribute__] = ACTIONS(6819), + [anon_sym___attribute] = ACTIONS(6819), + [anon_sym_noreturn] = ACTIONS(6819), + [anon_sym_LBRACK] = ACTIONS(6748), + [anon_sym___declspec] = ACTIONS(6819), + [anon_sym_LBRACE] = ACTIONS(6821), + [anon_sym_signed] = ACTIONS(6819), + [anon_sym_unsigned] = ACTIONS(6819), + [anon_sym_long] = ACTIONS(6819), + [anon_sym_short] = ACTIONS(6819), + [anon_sym_static] = ACTIONS(6819), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_ATautoreleasepool] = ACTIONS(6821), + [anon_sym_auto] = ACTIONS(6819), + [anon_sym_register] = ACTIONS(6819), + [anon_sym_inline] = ACTIONS(6819), + [anon_sym___inline] = ACTIONS(6819), + [anon_sym___inline__] = ACTIONS(6819), + [anon_sym___forceinline] = ACTIONS(6819), + [anon_sym_thread_local] = ACTIONS(6819), + [anon_sym___thread] = ACTIONS(6819), + [anon_sym_CG_EXTERN] = ACTIONS(6819), + [anon_sym_CG_INLINE] = ACTIONS(6819), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6819), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6819), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6819), + [anon_sym_IBOutlet] = ACTIONS(6819), + [anon_sym_IBInspectable] = ACTIONS(6819), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6819), + [anon_sym_NS_INLINE] = ACTIONS(6819), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6819), + [anon_sym_OBJC_EXPORT] = ACTIONS(6819), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6819), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6819), + [anon_sym_const] = ACTIONS(6819), + [anon_sym_constexpr] = ACTIONS(6819), + [anon_sym_volatile] = ACTIONS(6819), + [anon_sym_restrict] = ACTIONS(6819), + [anon_sym___restrict__] = ACTIONS(6819), + [anon_sym__Atomic] = ACTIONS(6819), + [anon_sym__Noreturn] = ACTIONS(6819), + [anon_sym__Nonnull] = ACTIONS(6819), + [anon_sym_nullable] = ACTIONS(6819), + [anon_sym__Complex] = ACTIONS(6819), + [anon_sym__Nullable] = ACTIONS(6819), + [anon_sym__Nullable_result] = ACTIONS(6819), + [anon_sym__Null_unspecified] = ACTIONS(6819), + [anon_sym___autoreleasing] = ACTIONS(6819), + [anon_sym___block] = ACTIONS(6819), + [anon_sym___bridge] = ACTIONS(6819), + [anon_sym___bridge_retained] = ACTIONS(6819), + [anon_sym___bridge_transfer] = ACTIONS(6819), + [anon_sym___complex] = ACTIONS(6819), + [anon_sym___const] = ACTIONS(6819), + [anon_sym___imag] = ACTIONS(6819), + [anon_sym___kindof] = ACTIONS(6819), + [anon_sym___nonnull] = ACTIONS(6819), + [anon_sym___nullable] = ACTIONS(6819), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6819), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6819), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6819), + [anon_sym___real] = ACTIONS(6819), + [anon_sym___strong] = ACTIONS(6819), + [anon_sym___unsafe_unretained] = ACTIONS(6819), + [anon_sym___unused] = ACTIONS(6819), + [anon_sym___weak] = ACTIONS(6819), + [anon_sym_alignas] = ACTIONS(6819), + [anon_sym__Alignas] = ACTIONS(6819), + [sym_primitive_type] = ACTIONS(6819), + [anon_sym_enum] = ACTIONS(6819), + [anon_sym_struct] = ACTIONS(6819), + [anon_sym_union] = ACTIONS(6819), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6819), + [anon_sym___typeof] = ACTIONS(6819), + [anon_sym_typeof] = ACTIONS(6819), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6819), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6819), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6819), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6819), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6819), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6819), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6819), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6819), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6819), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6819), + [anon_sym_NS_AVAILABLE] = ACTIONS(6819), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6819), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6819), + [anon_sym_API_AVAILABLE] = ACTIONS(6819), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6819), + [anon_sym_API_DEPRECATED] = ACTIONS(6819), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6819), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6819), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6819), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6819), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6819), + [anon_sym___deprecated_msg] = ACTIONS(6819), + [anon_sym___deprecated_enum_msg] = ACTIONS(6819), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6819), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6819), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6819), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6819), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6819), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6819), + [anon_sym_BOOL] = ACTIONS(6819), + [anon_sym_IMP] = ACTIONS(6819), + [anon_sym_SEL] = ACTIONS(6819), + [anon_sym_Class] = ACTIONS(6819), + [anon_sym_id] = ACTIONS(6819), + }, + [2711] = { + [sym_identifier] = ACTIONS(6659), + [aux_sym_preproc_def_token1] = ACTIONS(6659), + [aux_sym_preproc_if_token1] = ACTIONS(6659), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6659), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6659), + [sym_preproc_directive] = ACTIONS(6659), + [anon_sym___extension__] = ACTIONS(6659), + [anon_sym_extern] = ACTIONS(6659), + [anon_sym___attribute__] = ACTIONS(6659), + [anon_sym___attribute] = ACTIONS(6659), + [anon_sym_noreturn] = ACTIONS(6659), + [anon_sym_LBRACK] = ACTIONS(6661), + [anon_sym___declspec] = ACTIONS(6659), + [anon_sym_RBRACE] = ACTIONS(6661), + [anon_sym_signed] = ACTIONS(6659), + [anon_sym_unsigned] = ACTIONS(6659), + [anon_sym_long] = ACTIONS(6659), + [anon_sym_short] = ACTIONS(6659), + [anon_sym_static] = ACTIONS(6659), + [anon_sym_auto] = ACTIONS(6659), + [anon_sym_register] = ACTIONS(6659), + [anon_sym_inline] = ACTIONS(6659), + [anon_sym___inline] = ACTIONS(6659), + [anon_sym___inline__] = ACTIONS(6659), + [anon_sym___forceinline] = ACTIONS(6659), + [anon_sym_thread_local] = ACTIONS(6659), + [anon_sym___thread] = ACTIONS(6659), + [anon_sym_CG_EXTERN] = ACTIONS(6659), + [anon_sym_CG_INLINE] = ACTIONS(6659), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6659), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6659), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6659), + [anon_sym_IBOutlet] = ACTIONS(6659), + [anon_sym_IBInspectable] = ACTIONS(6659), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6659), + [anon_sym_NS_INLINE] = ACTIONS(6659), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6659), + [anon_sym_OBJC_EXPORT] = ACTIONS(6659), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6659), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6659), + [anon_sym_const] = ACTIONS(6659), + [anon_sym_constexpr] = ACTIONS(6659), + [anon_sym_volatile] = ACTIONS(6659), + [anon_sym_restrict] = ACTIONS(6659), + [anon_sym___restrict__] = ACTIONS(6659), + [anon_sym__Atomic] = ACTIONS(6659), + [anon_sym__Noreturn] = ACTIONS(6659), + [anon_sym__Nonnull] = ACTIONS(6659), + [anon_sym_nullable] = ACTIONS(6659), + [anon_sym__Complex] = ACTIONS(6659), + [anon_sym__Nullable] = ACTIONS(6659), + [anon_sym__Nullable_result] = ACTIONS(6659), + [anon_sym__Null_unspecified] = ACTIONS(6659), + [anon_sym___autoreleasing] = ACTIONS(6659), + [anon_sym___block] = ACTIONS(6659), + [anon_sym___bridge] = ACTIONS(6659), + [anon_sym___bridge_retained] = ACTIONS(6659), + [anon_sym___bridge_transfer] = ACTIONS(6659), + [anon_sym___complex] = ACTIONS(6659), + [anon_sym___const] = ACTIONS(6659), + [anon_sym___imag] = ACTIONS(6659), + [anon_sym___kindof] = ACTIONS(6659), + [anon_sym___nonnull] = ACTIONS(6659), + [anon_sym___nullable] = ACTIONS(6659), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6659), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6659), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6659), + [anon_sym___real] = ACTIONS(6659), + [anon_sym___strong] = ACTIONS(6659), + [anon_sym___unsafe_unretained] = ACTIONS(6659), + [anon_sym___unused] = ACTIONS(6659), + [anon_sym___weak] = ACTIONS(6659), + [anon_sym_alignas] = ACTIONS(6659), + [anon_sym__Alignas] = ACTIONS(6659), + [sym_primitive_type] = ACTIONS(6659), + [anon_sym_enum] = ACTIONS(6659), + [anon_sym_struct] = ACTIONS(6659), + [anon_sym_union] = ACTIONS(6659), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6659), + [anon_sym___typeof] = ACTIONS(6659), + [anon_sym_typeof] = ACTIONS(6659), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6659), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6659), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6659), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6659), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6659), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6659), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6659), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6659), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6659), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6659), + [anon_sym_NS_AVAILABLE] = ACTIONS(6659), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6659), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6659), + [anon_sym_API_AVAILABLE] = ACTIONS(6659), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6659), + [anon_sym_API_DEPRECATED] = ACTIONS(6659), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6659), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6659), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6659), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6659), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6659), + [anon_sym___deprecated_msg] = ACTIONS(6659), + [anon_sym___deprecated_enum_msg] = ACTIONS(6659), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6659), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6659), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6659), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6659), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6659), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6659), + [anon_sym_BOOL] = ACTIONS(6659), + [anon_sym_IMP] = ACTIONS(6659), + [anon_sym_SEL] = ACTIONS(6659), + [anon_sym_Class] = ACTIONS(6659), + [anon_sym_id] = ACTIONS(6659), + [anon_sym_ATdefs] = ACTIONS(6661), + }, + [2712] = { + [sym_identifier] = ACTIONS(6659), + [aux_sym_preproc_def_token1] = ACTIONS(6659), + [aux_sym_preproc_if_token1] = ACTIONS(6659), + [aux_sym_preproc_if_token2] = ACTIONS(6659), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6659), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6659), + [sym_preproc_directive] = ACTIONS(6659), + [anon_sym___extension__] = ACTIONS(6659), + [anon_sym_extern] = ACTIONS(6659), + [anon_sym___attribute__] = ACTIONS(6659), + [anon_sym___attribute] = ACTIONS(6659), + [anon_sym_noreturn] = ACTIONS(6659), + [anon_sym_LBRACK] = ACTIONS(6661), + [anon_sym___declspec] = ACTIONS(6659), + [anon_sym_signed] = ACTIONS(6659), + [anon_sym_unsigned] = ACTIONS(6659), + [anon_sym_long] = ACTIONS(6659), + [anon_sym_short] = ACTIONS(6659), + [anon_sym_static] = ACTIONS(6659), + [anon_sym_auto] = ACTIONS(6659), + [anon_sym_register] = ACTIONS(6659), + [anon_sym_inline] = ACTIONS(6659), + [anon_sym___inline] = ACTIONS(6659), + [anon_sym___inline__] = ACTIONS(6659), + [anon_sym___forceinline] = ACTIONS(6659), + [anon_sym_thread_local] = ACTIONS(6659), + [anon_sym___thread] = ACTIONS(6659), + [anon_sym_CG_EXTERN] = ACTIONS(6659), + [anon_sym_CG_INLINE] = ACTIONS(6659), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6659), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6659), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6659), + [anon_sym_IBOutlet] = ACTIONS(6659), + [anon_sym_IBInspectable] = ACTIONS(6659), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6659), + [anon_sym_NS_INLINE] = ACTIONS(6659), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6659), + [anon_sym_OBJC_EXPORT] = ACTIONS(6659), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6659), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6659), + [anon_sym_const] = ACTIONS(6659), + [anon_sym_constexpr] = ACTIONS(6659), + [anon_sym_volatile] = ACTIONS(6659), + [anon_sym_restrict] = ACTIONS(6659), + [anon_sym___restrict__] = ACTIONS(6659), + [anon_sym__Atomic] = ACTIONS(6659), + [anon_sym__Noreturn] = ACTIONS(6659), + [anon_sym__Nonnull] = ACTIONS(6659), + [anon_sym_nullable] = ACTIONS(6659), + [anon_sym__Complex] = ACTIONS(6659), + [anon_sym__Nullable] = ACTIONS(6659), + [anon_sym__Nullable_result] = ACTIONS(6659), + [anon_sym__Null_unspecified] = ACTIONS(6659), + [anon_sym___autoreleasing] = ACTIONS(6659), + [anon_sym___block] = ACTIONS(6659), + [anon_sym___bridge] = ACTIONS(6659), + [anon_sym___bridge_retained] = ACTIONS(6659), + [anon_sym___bridge_transfer] = ACTIONS(6659), + [anon_sym___complex] = ACTIONS(6659), + [anon_sym___const] = ACTIONS(6659), + [anon_sym___imag] = ACTIONS(6659), + [anon_sym___kindof] = ACTIONS(6659), + [anon_sym___nonnull] = ACTIONS(6659), + [anon_sym___nullable] = ACTIONS(6659), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6659), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6659), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6659), + [anon_sym___real] = ACTIONS(6659), + [anon_sym___strong] = ACTIONS(6659), + [anon_sym___unsafe_unretained] = ACTIONS(6659), + [anon_sym___unused] = ACTIONS(6659), + [anon_sym___weak] = ACTIONS(6659), + [anon_sym_alignas] = ACTIONS(6659), + [anon_sym__Alignas] = ACTIONS(6659), + [sym_primitive_type] = ACTIONS(6659), + [anon_sym_enum] = ACTIONS(6659), + [anon_sym_struct] = ACTIONS(6659), + [anon_sym_union] = ACTIONS(6659), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6659), + [anon_sym___typeof] = ACTIONS(6659), + [anon_sym_typeof] = ACTIONS(6659), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6659), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6659), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6659), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6659), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6659), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6659), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6659), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6659), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6659), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6659), + [anon_sym_NS_AVAILABLE] = ACTIONS(6659), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6659), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6659), + [anon_sym_API_AVAILABLE] = ACTIONS(6659), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6659), + [anon_sym_API_DEPRECATED] = ACTIONS(6659), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6659), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6659), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6659), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6659), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6659), + [anon_sym___deprecated_msg] = ACTIONS(6659), + [anon_sym___deprecated_enum_msg] = ACTIONS(6659), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6659), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6659), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6659), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6659), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6659), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6659), + [anon_sym_BOOL] = ACTIONS(6659), + [anon_sym_IMP] = ACTIONS(6659), + [anon_sym_SEL] = ACTIONS(6659), + [anon_sym_Class] = ACTIONS(6659), + [anon_sym_id] = ACTIONS(6659), + [anon_sym_ATdefs] = ACTIONS(6661), + }, + [2713] = { + [sym_identifier] = ACTIONS(6663), + [aux_sym_preproc_def_token1] = ACTIONS(6663), + [aux_sym_preproc_if_token1] = ACTIONS(6663), + [aux_sym_preproc_if_token2] = ACTIONS(6663), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6663), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6663), + [sym_preproc_directive] = ACTIONS(6663), + [anon_sym___extension__] = ACTIONS(6663), + [anon_sym_extern] = ACTIONS(6663), + [anon_sym___attribute__] = ACTIONS(6663), + [anon_sym___attribute] = ACTIONS(6663), + [anon_sym_noreturn] = ACTIONS(6663), + [anon_sym_LBRACK] = ACTIONS(6665), + [anon_sym___declspec] = ACTIONS(6663), + [anon_sym_signed] = ACTIONS(6663), + [anon_sym_unsigned] = ACTIONS(6663), + [anon_sym_long] = ACTIONS(6663), + [anon_sym_short] = ACTIONS(6663), + [anon_sym_static] = ACTIONS(6663), + [anon_sym_auto] = ACTIONS(6663), + [anon_sym_register] = ACTIONS(6663), + [anon_sym_inline] = ACTIONS(6663), + [anon_sym___inline] = ACTIONS(6663), + [anon_sym___inline__] = ACTIONS(6663), + [anon_sym___forceinline] = ACTIONS(6663), + [anon_sym_thread_local] = ACTIONS(6663), + [anon_sym___thread] = ACTIONS(6663), + [anon_sym_CG_EXTERN] = ACTIONS(6663), + [anon_sym_CG_INLINE] = ACTIONS(6663), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6663), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6663), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6663), + [anon_sym_IBOutlet] = ACTIONS(6663), + [anon_sym_IBInspectable] = ACTIONS(6663), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6663), + [anon_sym_NS_INLINE] = ACTIONS(6663), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6663), + [anon_sym_OBJC_EXPORT] = ACTIONS(6663), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6663), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6663), + [anon_sym_const] = ACTIONS(6663), + [anon_sym_constexpr] = ACTIONS(6663), + [anon_sym_volatile] = ACTIONS(6663), + [anon_sym_restrict] = ACTIONS(6663), + [anon_sym___restrict__] = ACTIONS(6663), + [anon_sym__Atomic] = ACTIONS(6663), + [anon_sym__Noreturn] = ACTIONS(6663), + [anon_sym__Nonnull] = ACTIONS(6663), + [anon_sym_nullable] = ACTIONS(6663), + [anon_sym__Complex] = ACTIONS(6663), + [anon_sym__Nullable] = ACTIONS(6663), + [anon_sym__Nullable_result] = ACTIONS(6663), + [anon_sym__Null_unspecified] = ACTIONS(6663), + [anon_sym___autoreleasing] = ACTIONS(6663), + [anon_sym___block] = ACTIONS(6663), + [anon_sym___bridge] = ACTIONS(6663), + [anon_sym___bridge_retained] = ACTIONS(6663), + [anon_sym___bridge_transfer] = ACTIONS(6663), + [anon_sym___complex] = ACTIONS(6663), + [anon_sym___const] = ACTIONS(6663), + [anon_sym___imag] = ACTIONS(6663), + [anon_sym___kindof] = ACTIONS(6663), + [anon_sym___nonnull] = ACTIONS(6663), + [anon_sym___nullable] = ACTIONS(6663), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6663), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6663), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6663), + [anon_sym___real] = ACTIONS(6663), + [anon_sym___strong] = ACTIONS(6663), + [anon_sym___unsafe_unretained] = ACTIONS(6663), + [anon_sym___unused] = ACTIONS(6663), + [anon_sym___weak] = ACTIONS(6663), + [anon_sym_alignas] = ACTIONS(6663), + [anon_sym__Alignas] = ACTIONS(6663), + [sym_primitive_type] = ACTIONS(6663), + [anon_sym_enum] = ACTIONS(6663), + [anon_sym_struct] = ACTIONS(6663), + [anon_sym_union] = ACTIONS(6663), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6663), + [anon_sym___typeof] = ACTIONS(6663), + [anon_sym_typeof] = ACTIONS(6663), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6663), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6663), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6663), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6663), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6663), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6663), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6663), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6663), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6663), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6663), + [anon_sym_NS_AVAILABLE] = ACTIONS(6663), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6663), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6663), + [anon_sym_API_AVAILABLE] = ACTIONS(6663), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6663), + [anon_sym_API_DEPRECATED] = ACTIONS(6663), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6663), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6663), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6663), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6663), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6663), + [anon_sym___deprecated_msg] = ACTIONS(6663), + [anon_sym___deprecated_enum_msg] = ACTIONS(6663), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6663), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6663), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6663), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6663), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6663), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6663), + [anon_sym_BOOL] = ACTIONS(6663), + [anon_sym_IMP] = ACTIONS(6663), + [anon_sym_SEL] = ACTIONS(6663), + [anon_sym_Class] = ACTIONS(6663), + [anon_sym_id] = ACTIONS(6663), + [anon_sym_ATdefs] = ACTIONS(6665), + }, + [2714] = { + [sym_identifier] = ACTIONS(6699), + [aux_sym_preproc_def_token1] = ACTIONS(6699), + [aux_sym_preproc_if_token1] = ACTIONS(6699), + [aux_sym_preproc_if_token2] = ACTIONS(6699), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6699), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6699), + [sym_preproc_directive] = ACTIONS(6699), + [anon_sym___extension__] = ACTIONS(6699), + [anon_sym_extern] = ACTIONS(6699), + [anon_sym___attribute__] = ACTIONS(6699), + [anon_sym___attribute] = ACTIONS(6699), + [anon_sym_noreturn] = ACTIONS(6699), + [anon_sym_LBRACK] = ACTIONS(6701), + [anon_sym___declspec] = ACTIONS(6699), + [anon_sym_signed] = ACTIONS(6699), + [anon_sym_unsigned] = ACTIONS(6699), + [anon_sym_long] = ACTIONS(6699), + [anon_sym_short] = ACTIONS(6699), + [anon_sym_static] = ACTIONS(6699), + [anon_sym_auto] = ACTIONS(6699), + [anon_sym_register] = ACTIONS(6699), + [anon_sym_inline] = ACTIONS(6699), + [anon_sym___inline] = ACTIONS(6699), + [anon_sym___inline__] = ACTIONS(6699), + [anon_sym___forceinline] = ACTIONS(6699), + [anon_sym_thread_local] = ACTIONS(6699), + [anon_sym___thread] = ACTIONS(6699), + [anon_sym_CG_EXTERN] = ACTIONS(6699), + [anon_sym_CG_INLINE] = ACTIONS(6699), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6699), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6699), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6699), + [anon_sym_IBOutlet] = ACTIONS(6699), + [anon_sym_IBInspectable] = ACTIONS(6699), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6699), + [anon_sym_NS_INLINE] = ACTIONS(6699), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6699), + [anon_sym_OBJC_EXPORT] = ACTIONS(6699), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6699), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6699), + [anon_sym_const] = ACTIONS(6699), + [anon_sym_constexpr] = ACTIONS(6699), + [anon_sym_volatile] = ACTIONS(6699), + [anon_sym_restrict] = ACTIONS(6699), + [anon_sym___restrict__] = ACTIONS(6699), + [anon_sym__Atomic] = ACTIONS(6699), + [anon_sym__Noreturn] = ACTIONS(6699), + [anon_sym__Nonnull] = ACTIONS(6699), + [anon_sym_nullable] = ACTIONS(6699), + [anon_sym__Complex] = ACTIONS(6699), + [anon_sym__Nullable] = ACTIONS(6699), + [anon_sym__Nullable_result] = ACTIONS(6699), + [anon_sym__Null_unspecified] = ACTIONS(6699), + [anon_sym___autoreleasing] = ACTIONS(6699), + [anon_sym___block] = ACTIONS(6699), + [anon_sym___bridge] = ACTIONS(6699), + [anon_sym___bridge_retained] = ACTIONS(6699), + [anon_sym___bridge_transfer] = ACTIONS(6699), + [anon_sym___complex] = ACTIONS(6699), + [anon_sym___const] = ACTIONS(6699), + [anon_sym___imag] = ACTIONS(6699), + [anon_sym___kindof] = ACTIONS(6699), + [anon_sym___nonnull] = ACTIONS(6699), + [anon_sym___nullable] = ACTIONS(6699), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6699), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6699), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6699), + [anon_sym___real] = ACTIONS(6699), + [anon_sym___strong] = ACTIONS(6699), + [anon_sym___unsafe_unretained] = ACTIONS(6699), + [anon_sym___unused] = ACTIONS(6699), + [anon_sym___weak] = ACTIONS(6699), + [anon_sym_alignas] = ACTIONS(6699), + [anon_sym__Alignas] = ACTIONS(6699), + [sym_primitive_type] = ACTIONS(6699), + [anon_sym_enum] = ACTIONS(6699), + [anon_sym_struct] = ACTIONS(6699), + [anon_sym_union] = ACTIONS(6699), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6699), + [anon_sym___typeof] = ACTIONS(6699), + [anon_sym_typeof] = ACTIONS(6699), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6699), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6699), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6699), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6699), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6699), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6699), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6699), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6699), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6699), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6699), + [anon_sym_NS_AVAILABLE] = ACTIONS(6699), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6699), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6699), + [anon_sym_API_AVAILABLE] = ACTIONS(6699), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6699), + [anon_sym_API_DEPRECATED] = ACTIONS(6699), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6699), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6699), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6699), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6699), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6699), + [anon_sym___deprecated_msg] = ACTIONS(6699), + [anon_sym___deprecated_enum_msg] = ACTIONS(6699), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6699), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6699), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6699), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6699), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6699), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6699), + [anon_sym_BOOL] = ACTIONS(6699), + [anon_sym_IMP] = ACTIONS(6699), + [anon_sym_SEL] = ACTIONS(6699), + [anon_sym_Class] = ACTIONS(6699), + [anon_sym_id] = ACTIONS(6699), + [anon_sym_ATdefs] = ACTIONS(6701), + }, + [2715] = { + [sym_identifier] = ACTIONS(6627), + [aux_sym_preproc_def_token1] = ACTIONS(6627), + [aux_sym_preproc_if_token1] = ACTIONS(6627), + [aux_sym_preproc_if_token2] = ACTIONS(6627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6627), + [sym_preproc_directive] = ACTIONS(6627), + [anon_sym___extension__] = ACTIONS(6627), + [anon_sym_extern] = ACTIONS(6627), + [anon_sym___attribute__] = ACTIONS(6627), + [anon_sym___attribute] = ACTIONS(6627), + [anon_sym_noreturn] = ACTIONS(6627), + [anon_sym_LBRACK] = ACTIONS(6629), + [anon_sym___declspec] = ACTIONS(6627), + [anon_sym_signed] = ACTIONS(6627), + [anon_sym_unsigned] = ACTIONS(6627), + [anon_sym_long] = ACTIONS(6627), + [anon_sym_short] = ACTIONS(6627), + [anon_sym_static] = ACTIONS(6627), + [anon_sym_auto] = ACTIONS(6627), + [anon_sym_register] = ACTIONS(6627), + [anon_sym_inline] = ACTIONS(6627), + [anon_sym___inline] = ACTIONS(6627), + [anon_sym___inline__] = ACTIONS(6627), + [anon_sym___forceinline] = ACTIONS(6627), + [anon_sym_thread_local] = ACTIONS(6627), + [anon_sym___thread] = ACTIONS(6627), + [anon_sym_CG_EXTERN] = ACTIONS(6627), + [anon_sym_CG_INLINE] = ACTIONS(6627), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6627), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6627), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6627), + [anon_sym_IBOutlet] = ACTIONS(6627), + [anon_sym_IBInspectable] = ACTIONS(6627), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6627), + [anon_sym_NS_INLINE] = ACTIONS(6627), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6627), + [anon_sym_OBJC_EXPORT] = ACTIONS(6627), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6627), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6627), + [anon_sym_const] = ACTIONS(6627), + [anon_sym_constexpr] = ACTIONS(6627), + [anon_sym_volatile] = ACTIONS(6627), + [anon_sym_restrict] = ACTIONS(6627), + [anon_sym___restrict__] = ACTIONS(6627), + [anon_sym__Atomic] = ACTIONS(6627), + [anon_sym__Noreturn] = ACTIONS(6627), + [anon_sym__Nonnull] = ACTIONS(6627), + [anon_sym_nullable] = ACTIONS(6627), + [anon_sym__Complex] = ACTIONS(6627), + [anon_sym__Nullable] = ACTIONS(6627), + [anon_sym__Nullable_result] = ACTIONS(6627), + [anon_sym__Null_unspecified] = ACTIONS(6627), + [anon_sym___autoreleasing] = ACTIONS(6627), + [anon_sym___block] = ACTIONS(6627), + [anon_sym___bridge] = ACTIONS(6627), + [anon_sym___bridge_retained] = ACTIONS(6627), + [anon_sym___bridge_transfer] = ACTIONS(6627), + [anon_sym___complex] = ACTIONS(6627), + [anon_sym___const] = ACTIONS(6627), + [anon_sym___imag] = ACTIONS(6627), + [anon_sym___kindof] = ACTIONS(6627), + [anon_sym___nonnull] = ACTIONS(6627), + [anon_sym___nullable] = ACTIONS(6627), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6627), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6627), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6627), + [anon_sym___real] = ACTIONS(6627), + [anon_sym___strong] = ACTIONS(6627), + [anon_sym___unsafe_unretained] = ACTIONS(6627), + [anon_sym___unused] = ACTIONS(6627), + [anon_sym___weak] = ACTIONS(6627), + [anon_sym_alignas] = ACTIONS(6627), + [anon_sym__Alignas] = ACTIONS(6627), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_enum] = ACTIONS(6627), + [anon_sym_struct] = ACTIONS(6627), + [anon_sym_union] = ACTIONS(6627), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6627), + [anon_sym___typeof] = ACTIONS(6627), + [anon_sym_typeof] = ACTIONS(6627), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6627), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6627), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6627), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6627), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6627), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6627), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6627), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6627), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6627), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6627), + [anon_sym_NS_AVAILABLE] = ACTIONS(6627), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6627), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6627), + [anon_sym_API_AVAILABLE] = ACTIONS(6627), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6627), + [anon_sym_API_DEPRECATED] = ACTIONS(6627), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6627), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6627), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6627), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6627), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6627), + [anon_sym___deprecated_msg] = ACTIONS(6627), + [anon_sym___deprecated_enum_msg] = ACTIONS(6627), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6627), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6627), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6627), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6627), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6627), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6627), + [anon_sym_BOOL] = ACTIONS(6627), + [anon_sym_IMP] = ACTIONS(6627), + [anon_sym_SEL] = ACTIONS(6627), + [anon_sym_Class] = ACTIONS(6627), + [anon_sym_id] = ACTIONS(6627), + [anon_sym_ATdefs] = ACTIONS(6629), + }, + [2716] = { + [sym_identifier] = ACTIONS(6631), + [aux_sym_preproc_def_token1] = ACTIONS(6631), + [aux_sym_preproc_if_token1] = ACTIONS(6631), + [aux_sym_preproc_if_token2] = ACTIONS(6631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6631), + [sym_preproc_directive] = ACTIONS(6631), + [anon_sym___extension__] = ACTIONS(6631), + [anon_sym_extern] = ACTIONS(6631), + [anon_sym___attribute__] = ACTIONS(6631), + [anon_sym___attribute] = ACTIONS(6631), + [anon_sym_noreturn] = ACTIONS(6631), + [anon_sym_LBRACK] = ACTIONS(6633), + [anon_sym___declspec] = ACTIONS(6631), + [anon_sym_signed] = ACTIONS(6631), + [anon_sym_unsigned] = ACTIONS(6631), + [anon_sym_long] = ACTIONS(6631), + [anon_sym_short] = ACTIONS(6631), + [anon_sym_static] = ACTIONS(6631), + [anon_sym_auto] = ACTIONS(6631), + [anon_sym_register] = ACTIONS(6631), + [anon_sym_inline] = ACTIONS(6631), + [anon_sym___inline] = ACTIONS(6631), + [anon_sym___inline__] = ACTIONS(6631), + [anon_sym___forceinline] = ACTIONS(6631), + [anon_sym_thread_local] = ACTIONS(6631), + [anon_sym___thread] = ACTIONS(6631), + [anon_sym_CG_EXTERN] = ACTIONS(6631), + [anon_sym_CG_INLINE] = ACTIONS(6631), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6631), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6631), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6631), + [anon_sym_IBOutlet] = ACTIONS(6631), + [anon_sym_IBInspectable] = ACTIONS(6631), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6631), + [anon_sym_NS_INLINE] = ACTIONS(6631), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6631), + [anon_sym_OBJC_EXPORT] = ACTIONS(6631), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6631), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6631), + [anon_sym_const] = ACTIONS(6631), + [anon_sym_constexpr] = ACTIONS(6631), + [anon_sym_volatile] = ACTIONS(6631), + [anon_sym_restrict] = ACTIONS(6631), + [anon_sym___restrict__] = ACTIONS(6631), + [anon_sym__Atomic] = ACTIONS(6631), + [anon_sym__Noreturn] = ACTIONS(6631), + [anon_sym__Nonnull] = ACTIONS(6631), + [anon_sym_nullable] = ACTIONS(6631), + [anon_sym__Complex] = ACTIONS(6631), + [anon_sym__Nullable] = ACTIONS(6631), + [anon_sym__Nullable_result] = ACTIONS(6631), + [anon_sym__Null_unspecified] = ACTIONS(6631), + [anon_sym___autoreleasing] = ACTIONS(6631), + [anon_sym___block] = ACTIONS(6631), + [anon_sym___bridge] = ACTIONS(6631), + [anon_sym___bridge_retained] = ACTIONS(6631), + [anon_sym___bridge_transfer] = ACTIONS(6631), + [anon_sym___complex] = ACTIONS(6631), + [anon_sym___const] = ACTIONS(6631), + [anon_sym___imag] = ACTIONS(6631), + [anon_sym___kindof] = ACTIONS(6631), + [anon_sym___nonnull] = ACTIONS(6631), + [anon_sym___nullable] = ACTIONS(6631), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6631), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6631), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6631), + [anon_sym___real] = ACTIONS(6631), + [anon_sym___strong] = ACTIONS(6631), + [anon_sym___unsafe_unretained] = ACTIONS(6631), + [anon_sym___unused] = ACTIONS(6631), + [anon_sym___weak] = ACTIONS(6631), + [anon_sym_alignas] = ACTIONS(6631), + [anon_sym__Alignas] = ACTIONS(6631), + [sym_primitive_type] = ACTIONS(6631), + [anon_sym_enum] = ACTIONS(6631), + [anon_sym_struct] = ACTIONS(6631), + [anon_sym_union] = ACTIONS(6631), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6631), + [anon_sym___typeof] = ACTIONS(6631), + [anon_sym_typeof] = ACTIONS(6631), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6631), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6631), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6631), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6631), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6631), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6631), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6631), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6631), + [anon_sym_NS_AVAILABLE] = ACTIONS(6631), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6631), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_API_AVAILABLE] = ACTIONS(6631), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_API_DEPRECATED] = ACTIONS(6631), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6631), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6631), + [anon_sym___deprecated_msg] = ACTIONS(6631), + [anon_sym___deprecated_enum_msg] = ACTIONS(6631), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6631), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6631), + [anon_sym_BOOL] = ACTIONS(6631), + [anon_sym_IMP] = ACTIONS(6631), + [anon_sym_SEL] = ACTIONS(6631), + [anon_sym_Class] = ACTIONS(6631), + [anon_sym_id] = ACTIONS(6631), + [anon_sym_ATdefs] = ACTIONS(6633), + }, + [2717] = { + [sym_identifier] = ACTIONS(6631), + [aux_sym_preproc_def_token1] = ACTIONS(6631), + [aux_sym_preproc_if_token1] = ACTIONS(6631), + [aux_sym_preproc_if_token2] = ACTIONS(6631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6631), + [sym_preproc_directive] = ACTIONS(6631), + [anon_sym___extension__] = ACTIONS(6631), + [anon_sym_extern] = ACTIONS(6631), + [anon_sym___attribute__] = ACTIONS(6631), + [anon_sym___attribute] = ACTIONS(6631), + [anon_sym_noreturn] = ACTIONS(6631), + [anon_sym_LBRACK] = ACTIONS(6633), + [anon_sym___declspec] = ACTIONS(6631), + [anon_sym_signed] = ACTIONS(6631), + [anon_sym_unsigned] = ACTIONS(6631), + [anon_sym_long] = ACTIONS(6631), + [anon_sym_short] = ACTIONS(6631), + [anon_sym_static] = ACTIONS(6631), + [anon_sym_auto] = ACTIONS(6631), + [anon_sym_register] = ACTIONS(6631), + [anon_sym_inline] = ACTIONS(6631), + [anon_sym___inline] = ACTIONS(6631), + [anon_sym___inline__] = ACTIONS(6631), + [anon_sym___forceinline] = ACTIONS(6631), + [anon_sym_thread_local] = ACTIONS(6631), + [anon_sym___thread] = ACTIONS(6631), + [anon_sym_CG_EXTERN] = ACTIONS(6631), + [anon_sym_CG_INLINE] = ACTIONS(6631), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6631), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6631), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6631), + [anon_sym_IBOutlet] = ACTIONS(6631), + [anon_sym_IBInspectable] = ACTIONS(6631), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6631), + [anon_sym_NS_INLINE] = ACTIONS(6631), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6631), + [anon_sym_OBJC_EXPORT] = ACTIONS(6631), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6631), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6631), + [anon_sym_const] = ACTIONS(6631), + [anon_sym_constexpr] = ACTIONS(6631), + [anon_sym_volatile] = ACTIONS(6631), + [anon_sym_restrict] = ACTIONS(6631), + [anon_sym___restrict__] = ACTIONS(6631), + [anon_sym__Atomic] = ACTIONS(6631), + [anon_sym__Noreturn] = ACTIONS(6631), + [anon_sym__Nonnull] = ACTIONS(6631), + [anon_sym_nullable] = ACTIONS(6631), + [anon_sym__Complex] = ACTIONS(6631), + [anon_sym__Nullable] = ACTIONS(6631), + [anon_sym__Nullable_result] = ACTIONS(6631), + [anon_sym__Null_unspecified] = ACTIONS(6631), + [anon_sym___autoreleasing] = ACTIONS(6631), + [anon_sym___block] = ACTIONS(6631), + [anon_sym___bridge] = ACTIONS(6631), + [anon_sym___bridge_retained] = ACTIONS(6631), + [anon_sym___bridge_transfer] = ACTIONS(6631), + [anon_sym___complex] = ACTIONS(6631), + [anon_sym___const] = ACTIONS(6631), + [anon_sym___imag] = ACTIONS(6631), + [anon_sym___kindof] = ACTIONS(6631), + [anon_sym___nonnull] = ACTIONS(6631), + [anon_sym___nullable] = ACTIONS(6631), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6631), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6631), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6631), + [anon_sym___real] = ACTIONS(6631), + [anon_sym___strong] = ACTIONS(6631), + [anon_sym___unsafe_unretained] = ACTIONS(6631), + [anon_sym___unused] = ACTIONS(6631), + [anon_sym___weak] = ACTIONS(6631), + [anon_sym_alignas] = ACTIONS(6631), + [anon_sym__Alignas] = ACTIONS(6631), + [sym_primitive_type] = ACTIONS(6631), + [anon_sym_enum] = ACTIONS(6631), + [anon_sym_struct] = ACTIONS(6631), + [anon_sym_union] = ACTIONS(6631), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6631), + [anon_sym___typeof] = ACTIONS(6631), + [anon_sym_typeof] = ACTIONS(6631), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6631), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6631), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6631), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6631), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6631), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6631), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6631), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6631), + [anon_sym_NS_AVAILABLE] = ACTIONS(6631), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6631), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_API_AVAILABLE] = ACTIONS(6631), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_API_DEPRECATED] = ACTIONS(6631), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6631), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6631), + [anon_sym___deprecated_msg] = ACTIONS(6631), + [anon_sym___deprecated_enum_msg] = ACTIONS(6631), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6631), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6631), + [anon_sym_BOOL] = ACTIONS(6631), + [anon_sym_IMP] = ACTIONS(6631), + [anon_sym_SEL] = ACTIONS(6631), + [anon_sym_Class] = ACTIONS(6631), + [anon_sym_id] = ACTIONS(6631), + [anon_sym_ATdefs] = ACTIONS(6633), + }, + [2718] = { + [sym_parameter_list] = STATE(2568), + [sym_identifier] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6825), + [anon_sym_LPAREN2] = ACTIONS(6746), + [anon_sym_SEMI] = ACTIONS(6825), + [anon_sym___extension__] = ACTIONS(6823), + [anon_sym_extern] = ACTIONS(6823), + [anon_sym___attribute__] = ACTIONS(6823), + [anon_sym___attribute] = ACTIONS(6823), + [anon_sym_noreturn] = ACTIONS(6823), + [anon_sym_LBRACK] = ACTIONS(6748), + [anon_sym___declspec] = ACTIONS(6823), + [anon_sym_LBRACE] = ACTIONS(6825), + [anon_sym_signed] = ACTIONS(6823), + [anon_sym_unsigned] = ACTIONS(6823), + [anon_sym_long] = ACTIONS(6823), + [anon_sym_short] = ACTIONS(6823), + [anon_sym_static] = ACTIONS(6823), + [anon_sym_EQ] = ACTIONS(6825), + [anon_sym_ATautoreleasepool] = ACTIONS(6825), + [anon_sym_auto] = ACTIONS(6823), + [anon_sym_register] = ACTIONS(6823), + [anon_sym_inline] = ACTIONS(6823), + [anon_sym___inline] = ACTIONS(6823), + [anon_sym___inline__] = ACTIONS(6823), + [anon_sym___forceinline] = ACTIONS(6823), + [anon_sym_thread_local] = ACTIONS(6823), + [anon_sym___thread] = ACTIONS(6823), + [anon_sym_CG_EXTERN] = ACTIONS(6823), + [anon_sym_CG_INLINE] = ACTIONS(6823), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6823), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6823), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6823), + [anon_sym_IBOutlet] = ACTIONS(6823), + [anon_sym_IBInspectable] = ACTIONS(6823), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6823), + [anon_sym_NS_INLINE] = ACTIONS(6823), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6823), + [anon_sym_OBJC_EXPORT] = ACTIONS(6823), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6823), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6823), + [anon_sym_const] = ACTIONS(6823), + [anon_sym_constexpr] = ACTIONS(6823), + [anon_sym_volatile] = ACTIONS(6823), + [anon_sym_restrict] = ACTIONS(6823), + [anon_sym___restrict__] = ACTIONS(6823), + [anon_sym__Atomic] = ACTIONS(6823), + [anon_sym__Noreturn] = ACTIONS(6823), + [anon_sym__Nonnull] = ACTIONS(6823), + [anon_sym_nullable] = ACTIONS(6823), + [anon_sym__Complex] = ACTIONS(6823), + [anon_sym__Nullable] = ACTIONS(6823), + [anon_sym__Nullable_result] = ACTIONS(6823), + [anon_sym__Null_unspecified] = ACTIONS(6823), + [anon_sym___autoreleasing] = ACTIONS(6823), + [anon_sym___block] = ACTIONS(6823), + [anon_sym___bridge] = ACTIONS(6823), + [anon_sym___bridge_retained] = ACTIONS(6823), + [anon_sym___bridge_transfer] = ACTIONS(6823), + [anon_sym___complex] = ACTIONS(6823), + [anon_sym___const] = ACTIONS(6823), + [anon_sym___imag] = ACTIONS(6823), + [anon_sym___kindof] = ACTIONS(6823), + [anon_sym___nonnull] = ACTIONS(6823), + [anon_sym___nullable] = ACTIONS(6823), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6823), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6823), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6823), + [anon_sym___real] = ACTIONS(6823), + [anon_sym___strong] = ACTIONS(6823), + [anon_sym___unsafe_unretained] = ACTIONS(6823), + [anon_sym___unused] = ACTIONS(6823), + [anon_sym___weak] = ACTIONS(6823), + [anon_sym_alignas] = ACTIONS(6823), + [anon_sym__Alignas] = ACTIONS(6823), + [sym_primitive_type] = ACTIONS(6823), + [anon_sym_enum] = ACTIONS(6823), + [anon_sym_struct] = ACTIONS(6823), + [anon_sym_union] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6823), + [anon_sym___typeof] = ACTIONS(6823), + [anon_sym_typeof] = ACTIONS(6823), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6823), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6823), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6823), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6823), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6823), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6823), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6823), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6823), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6823), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6823), + [anon_sym_NS_AVAILABLE] = ACTIONS(6823), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6823), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6823), + [anon_sym_API_AVAILABLE] = ACTIONS(6823), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6823), + [anon_sym_API_DEPRECATED] = ACTIONS(6823), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6823), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6823), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6823), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6823), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6823), + [anon_sym___deprecated_msg] = ACTIONS(6823), + [anon_sym___deprecated_enum_msg] = ACTIONS(6823), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6823), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6823), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6823), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6823), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6823), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6823), + [anon_sym_BOOL] = ACTIONS(6823), + [anon_sym_IMP] = ACTIONS(6823), + [anon_sym_SEL] = ACTIONS(6823), + [anon_sym_Class] = ACTIONS(6823), + [anon_sym_id] = ACTIONS(6823), + }, + [2719] = { + [sym_identifier] = ACTIONS(6635), + [aux_sym_preproc_def_token1] = ACTIONS(6635), + [aux_sym_preproc_if_token1] = ACTIONS(6635), + [aux_sym_preproc_if_token2] = ACTIONS(6635), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6635), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6635), + [sym_preproc_directive] = ACTIONS(6635), + [anon_sym___extension__] = ACTIONS(6635), + [anon_sym_extern] = ACTIONS(6635), + [anon_sym___attribute__] = ACTIONS(6635), + [anon_sym___attribute] = ACTIONS(6635), + [anon_sym_noreturn] = ACTIONS(6635), + [anon_sym_LBRACK] = ACTIONS(6637), + [anon_sym___declspec] = ACTIONS(6635), + [anon_sym_signed] = ACTIONS(6635), + [anon_sym_unsigned] = ACTIONS(6635), + [anon_sym_long] = ACTIONS(6635), + [anon_sym_short] = ACTIONS(6635), + [anon_sym_static] = ACTIONS(6635), + [anon_sym_auto] = ACTIONS(6635), + [anon_sym_register] = ACTIONS(6635), + [anon_sym_inline] = ACTIONS(6635), + [anon_sym___inline] = ACTIONS(6635), + [anon_sym___inline__] = ACTIONS(6635), + [anon_sym___forceinline] = ACTIONS(6635), + [anon_sym_thread_local] = ACTIONS(6635), + [anon_sym___thread] = ACTIONS(6635), + [anon_sym_CG_EXTERN] = ACTIONS(6635), + [anon_sym_CG_INLINE] = ACTIONS(6635), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6635), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6635), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6635), + [anon_sym_IBOutlet] = ACTIONS(6635), + [anon_sym_IBInspectable] = ACTIONS(6635), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6635), + [anon_sym_NS_INLINE] = ACTIONS(6635), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6635), + [anon_sym_OBJC_EXPORT] = ACTIONS(6635), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6635), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6635), + [anon_sym_const] = ACTIONS(6635), + [anon_sym_constexpr] = ACTIONS(6635), + [anon_sym_volatile] = ACTIONS(6635), + [anon_sym_restrict] = ACTIONS(6635), + [anon_sym___restrict__] = ACTIONS(6635), + [anon_sym__Atomic] = ACTIONS(6635), + [anon_sym__Noreturn] = ACTIONS(6635), + [anon_sym__Nonnull] = ACTIONS(6635), + [anon_sym_nullable] = ACTIONS(6635), + [anon_sym__Complex] = ACTIONS(6635), + [anon_sym__Nullable] = ACTIONS(6635), + [anon_sym__Nullable_result] = ACTIONS(6635), + [anon_sym__Null_unspecified] = ACTIONS(6635), + [anon_sym___autoreleasing] = ACTIONS(6635), + [anon_sym___block] = ACTIONS(6635), + [anon_sym___bridge] = ACTIONS(6635), + [anon_sym___bridge_retained] = ACTIONS(6635), + [anon_sym___bridge_transfer] = ACTIONS(6635), + [anon_sym___complex] = ACTIONS(6635), + [anon_sym___const] = ACTIONS(6635), + [anon_sym___imag] = ACTIONS(6635), + [anon_sym___kindof] = ACTIONS(6635), + [anon_sym___nonnull] = ACTIONS(6635), + [anon_sym___nullable] = ACTIONS(6635), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6635), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6635), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6635), + [anon_sym___real] = ACTIONS(6635), + [anon_sym___strong] = ACTIONS(6635), + [anon_sym___unsafe_unretained] = ACTIONS(6635), + [anon_sym___unused] = ACTIONS(6635), + [anon_sym___weak] = ACTIONS(6635), + [anon_sym_alignas] = ACTIONS(6635), + [anon_sym__Alignas] = ACTIONS(6635), + [sym_primitive_type] = ACTIONS(6635), + [anon_sym_enum] = ACTIONS(6635), + [anon_sym_struct] = ACTIONS(6635), + [anon_sym_union] = ACTIONS(6635), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6635), + [anon_sym___typeof] = ACTIONS(6635), + [anon_sym_typeof] = ACTIONS(6635), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6635), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6635), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6635), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6635), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6635), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6635), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6635), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6635), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6635), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6635), + [anon_sym_NS_AVAILABLE] = ACTIONS(6635), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6635), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6635), + [anon_sym_API_AVAILABLE] = ACTIONS(6635), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6635), + [anon_sym_API_DEPRECATED] = ACTIONS(6635), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6635), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6635), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6635), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6635), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6635), + [anon_sym___deprecated_msg] = ACTIONS(6635), + [anon_sym___deprecated_enum_msg] = ACTIONS(6635), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6635), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6635), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6635), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6635), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6635), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6635), + [anon_sym_BOOL] = ACTIONS(6635), + [anon_sym_IMP] = ACTIONS(6635), + [anon_sym_SEL] = ACTIONS(6635), + [anon_sym_Class] = ACTIONS(6635), + [anon_sym_id] = ACTIONS(6635), + [anon_sym_ATdefs] = ACTIONS(6637), + }, + [2720] = { + [sym_identifier] = ACTIONS(6631), + [aux_sym_preproc_def_token1] = ACTIONS(6631), + [aux_sym_preproc_if_token1] = ACTIONS(6631), + [aux_sym_preproc_if_token2] = ACTIONS(6631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6631), + [sym_preproc_directive] = ACTIONS(6631), + [anon_sym___extension__] = ACTIONS(6631), + [anon_sym_extern] = ACTIONS(6631), + [anon_sym___attribute__] = ACTIONS(6631), + [anon_sym___attribute] = ACTIONS(6631), + [anon_sym_noreturn] = ACTIONS(6631), + [anon_sym_LBRACK] = ACTIONS(6633), + [anon_sym___declspec] = ACTIONS(6631), + [anon_sym_signed] = ACTIONS(6631), + [anon_sym_unsigned] = ACTIONS(6631), + [anon_sym_long] = ACTIONS(6631), + [anon_sym_short] = ACTIONS(6631), + [anon_sym_static] = ACTIONS(6631), + [anon_sym_auto] = ACTIONS(6631), + [anon_sym_register] = ACTIONS(6631), + [anon_sym_inline] = ACTIONS(6631), + [anon_sym___inline] = ACTIONS(6631), + [anon_sym___inline__] = ACTIONS(6631), + [anon_sym___forceinline] = ACTIONS(6631), + [anon_sym_thread_local] = ACTIONS(6631), + [anon_sym___thread] = ACTIONS(6631), + [anon_sym_CG_EXTERN] = ACTIONS(6631), + [anon_sym_CG_INLINE] = ACTIONS(6631), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6631), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6631), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6631), + [anon_sym_IBOutlet] = ACTIONS(6631), + [anon_sym_IBInspectable] = ACTIONS(6631), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6631), + [anon_sym_NS_INLINE] = ACTIONS(6631), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6631), + [anon_sym_OBJC_EXPORT] = ACTIONS(6631), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6631), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6631), + [anon_sym_const] = ACTIONS(6631), + [anon_sym_constexpr] = ACTIONS(6631), + [anon_sym_volatile] = ACTIONS(6631), + [anon_sym_restrict] = ACTIONS(6631), + [anon_sym___restrict__] = ACTIONS(6631), + [anon_sym__Atomic] = ACTIONS(6631), + [anon_sym__Noreturn] = ACTIONS(6631), + [anon_sym__Nonnull] = ACTIONS(6631), + [anon_sym_nullable] = ACTIONS(6631), + [anon_sym__Complex] = ACTIONS(6631), + [anon_sym__Nullable] = ACTIONS(6631), + [anon_sym__Nullable_result] = ACTIONS(6631), + [anon_sym__Null_unspecified] = ACTIONS(6631), + [anon_sym___autoreleasing] = ACTIONS(6631), + [anon_sym___block] = ACTIONS(6631), + [anon_sym___bridge] = ACTIONS(6631), + [anon_sym___bridge_retained] = ACTIONS(6631), + [anon_sym___bridge_transfer] = ACTIONS(6631), + [anon_sym___complex] = ACTIONS(6631), + [anon_sym___const] = ACTIONS(6631), + [anon_sym___imag] = ACTIONS(6631), + [anon_sym___kindof] = ACTIONS(6631), + [anon_sym___nonnull] = ACTIONS(6631), + [anon_sym___nullable] = ACTIONS(6631), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6631), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6631), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6631), + [anon_sym___real] = ACTIONS(6631), + [anon_sym___strong] = ACTIONS(6631), + [anon_sym___unsafe_unretained] = ACTIONS(6631), + [anon_sym___unused] = ACTIONS(6631), + [anon_sym___weak] = ACTIONS(6631), + [anon_sym_alignas] = ACTIONS(6631), + [anon_sym__Alignas] = ACTIONS(6631), + [sym_primitive_type] = ACTIONS(6631), + [anon_sym_enum] = ACTIONS(6631), + [anon_sym_struct] = ACTIONS(6631), + [anon_sym_union] = ACTIONS(6631), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6631), + [anon_sym___typeof] = ACTIONS(6631), + [anon_sym_typeof] = ACTIONS(6631), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6631), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6631), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6631), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6631), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6631), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6631), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6631), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6631), + [anon_sym_NS_AVAILABLE] = ACTIONS(6631), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6631), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_API_AVAILABLE] = ACTIONS(6631), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_API_DEPRECATED] = ACTIONS(6631), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6631), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6631), + [anon_sym___deprecated_msg] = ACTIONS(6631), + [anon_sym___deprecated_enum_msg] = ACTIONS(6631), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6631), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6631), + [anon_sym_BOOL] = ACTIONS(6631), + [anon_sym_IMP] = ACTIONS(6631), + [anon_sym_SEL] = ACTIONS(6631), + [anon_sym_Class] = ACTIONS(6631), + [anon_sym_id] = ACTIONS(6631), + [anon_sym_ATdefs] = ACTIONS(6633), + }, + [2721] = { + [sym_identifier] = ACTIONS(6631), + [aux_sym_preproc_def_token1] = ACTIONS(6631), + [aux_sym_preproc_if_token1] = ACTIONS(6631), + [aux_sym_preproc_if_token2] = ACTIONS(6631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6631), + [sym_preproc_directive] = ACTIONS(6631), + [anon_sym___extension__] = ACTIONS(6631), + [anon_sym_extern] = ACTIONS(6631), + [anon_sym___attribute__] = ACTIONS(6631), + [anon_sym___attribute] = ACTIONS(6631), + [anon_sym_noreturn] = ACTIONS(6631), + [anon_sym_LBRACK] = ACTIONS(6633), + [anon_sym___declspec] = ACTIONS(6631), + [anon_sym_signed] = ACTIONS(6631), + [anon_sym_unsigned] = ACTIONS(6631), + [anon_sym_long] = ACTIONS(6631), + [anon_sym_short] = ACTIONS(6631), + [anon_sym_static] = ACTIONS(6631), + [anon_sym_auto] = ACTIONS(6631), + [anon_sym_register] = ACTIONS(6631), + [anon_sym_inline] = ACTIONS(6631), + [anon_sym___inline] = ACTIONS(6631), + [anon_sym___inline__] = ACTIONS(6631), + [anon_sym___forceinline] = ACTIONS(6631), + [anon_sym_thread_local] = ACTIONS(6631), + [anon_sym___thread] = ACTIONS(6631), + [anon_sym_CG_EXTERN] = ACTIONS(6631), + [anon_sym_CG_INLINE] = ACTIONS(6631), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6631), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6631), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6631), + [anon_sym_IBOutlet] = ACTIONS(6631), + [anon_sym_IBInspectable] = ACTIONS(6631), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6631), + [anon_sym_NS_INLINE] = ACTIONS(6631), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6631), + [anon_sym_OBJC_EXPORT] = ACTIONS(6631), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6631), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6631), + [anon_sym_const] = ACTIONS(6631), + [anon_sym_constexpr] = ACTIONS(6631), + [anon_sym_volatile] = ACTIONS(6631), + [anon_sym_restrict] = ACTIONS(6631), + [anon_sym___restrict__] = ACTIONS(6631), + [anon_sym__Atomic] = ACTIONS(6631), + [anon_sym__Noreturn] = ACTIONS(6631), + [anon_sym__Nonnull] = ACTIONS(6631), + [anon_sym_nullable] = ACTIONS(6631), + [anon_sym__Complex] = ACTIONS(6631), + [anon_sym__Nullable] = ACTIONS(6631), + [anon_sym__Nullable_result] = ACTIONS(6631), + [anon_sym__Null_unspecified] = ACTIONS(6631), + [anon_sym___autoreleasing] = ACTIONS(6631), + [anon_sym___block] = ACTIONS(6631), + [anon_sym___bridge] = ACTIONS(6631), + [anon_sym___bridge_retained] = ACTIONS(6631), + [anon_sym___bridge_transfer] = ACTIONS(6631), + [anon_sym___complex] = ACTIONS(6631), + [anon_sym___const] = ACTIONS(6631), + [anon_sym___imag] = ACTIONS(6631), + [anon_sym___kindof] = ACTIONS(6631), + [anon_sym___nonnull] = ACTIONS(6631), + [anon_sym___nullable] = ACTIONS(6631), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6631), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6631), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6631), + [anon_sym___real] = ACTIONS(6631), + [anon_sym___strong] = ACTIONS(6631), + [anon_sym___unsafe_unretained] = ACTIONS(6631), + [anon_sym___unused] = ACTIONS(6631), + [anon_sym___weak] = ACTIONS(6631), + [anon_sym_alignas] = ACTIONS(6631), + [anon_sym__Alignas] = ACTIONS(6631), + [sym_primitive_type] = ACTIONS(6631), + [anon_sym_enum] = ACTIONS(6631), + [anon_sym_struct] = ACTIONS(6631), + [anon_sym_union] = ACTIONS(6631), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6631), + [anon_sym___typeof] = ACTIONS(6631), + [anon_sym_typeof] = ACTIONS(6631), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6631), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6631), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6631), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6631), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6631), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6631), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6631), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6631), + [anon_sym_NS_AVAILABLE] = ACTIONS(6631), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6631), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_API_AVAILABLE] = ACTIONS(6631), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_API_DEPRECATED] = ACTIONS(6631), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6631), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6631), + [anon_sym___deprecated_msg] = ACTIONS(6631), + [anon_sym___deprecated_enum_msg] = ACTIONS(6631), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6631), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6631), + [anon_sym_BOOL] = ACTIONS(6631), + [anon_sym_IMP] = ACTIONS(6631), + [anon_sym_SEL] = ACTIONS(6631), + [anon_sym_Class] = ACTIONS(6631), + [anon_sym_id] = ACTIONS(6631), + [anon_sym_ATdefs] = ACTIONS(6633), + }, + [2722] = { + [sym_identifier] = ACTIONS(6635), + [aux_sym_preproc_def_token1] = ACTIONS(6635), + [aux_sym_preproc_if_token1] = ACTIONS(6635), + [aux_sym_preproc_if_token2] = ACTIONS(6635), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6635), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6635), + [sym_preproc_directive] = ACTIONS(6635), + [anon_sym___extension__] = ACTIONS(6635), + [anon_sym_extern] = ACTIONS(6635), + [anon_sym___attribute__] = ACTIONS(6635), + [anon_sym___attribute] = ACTIONS(6635), + [anon_sym_noreturn] = ACTIONS(6635), + [anon_sym_LBRACK] = ACTIONS(6637), + [anon_sym___declspec] = ACTIONS(6635), + [anon_sym_signed] = ACTIONS(6635), + [anon_sym_unsigned] = ACTIONS(6635), + [anon_sym_long] = ACTIONS(6635), + [anon_sym_short] = ACTIONS(6635), + [anon_sym_static] = ACTIONS(6635), + [anon_sym_auto] = ACTIONS(6635), + [anon_sym_register] = ACTIONS(6635), + [anon_sym_inline] = ACTIONS(6635), + [anon_sym___inline] = ACTIONS(6635), + [anon_sym___inline__] = ACTIONS(6635), + [anon_sym___forceinline] = ACTIONS(6635), + [anon_sym_thread_local] = ACTIONS(6635), + [anon_sym___thread] = ACTIONS(6635), + [anon_sym_CG_EXTERN] = ACTIONS(6635), + [anon_sym_CG_INLINE] = ACTIONS(6635), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6635), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6635), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6635), + [anon_sym_IBOutlet] = ACTIONS(6635), + [anon_sym_IBInspectable] = ACTIONS(6635), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6635), + [anon_sym_NS_INLINE] = ACTIONS(6635), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6635), + [anon_sym_OBJC_EXPORT] = ACTIONS(6635), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6635), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6635), + [anon_sym_const] = ACTIONS(6635), + [anon_sym_constexpr] = ACTIONS(6635), + [anon_sym_volatile] = ACTIONS(6635), + [anon_sym_restrict] = ACTIONS(6635), + [anon_sym___restrict__] = ACTIONS(6635), + [anon_sym__Atomic] = ACTIONS(6635), + [anon_sym__Noreturn] = ACTIONS(6635), + [anon_sym__Nonnull] = ACTIONS(6635), + [anon_sym_nullable] = ACTIONS(6635), + [anon_sym__Complex] = ACTIONS(6635), + [anon_sym__Nullable] = ACTIONS(6635), + [anon_sym__Nullable_result] = ACTIONS(6635), + [anon_sym__Null_unspecified] = ACTIONS(6635), + [anon_sym___autoreleasing] = ACTIONS(6635), + [anon_sym___block] = ACTIONS(6635), + [anon_sym___bridge] = ACTIONS(6635), + [anon_sym___bridge_retained] = ACTIONS(6635), + [anon_sym___bridge_transfer] = ACTIONS(6635), + [anon_sym___complex] = ACTIONS(6635), + [anon_sym___const] = ACTIONS(6635), + [anon_sym___imag] = ACTIONS(6635), + [anon_sym___kindof] = ACTIONS(6635), + [anon_sym___nonnull] = ACTIONS(6635), + [anon_sym___nullable] = ACTIONS(6635), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6635), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6635), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6635), + [anon_sym___real] = ACTIONS(6635), + [anon_sym___strong] = ACTIONS(6635), + [anon_sym___unsafe_unretained] = ACTIONS(6635), + [anon_sym___unused] = ACTIONS(6635), + [anon_sym___weak] = ACTIONS(6635), + [anon_sym_alignas] = ACTIONS(6635), + [anon_sym__Alignas] = ACTIONS(6635), + [sym_primitive_type] = ACTIONS(6635), + [anon_sym_enum] = ACTIONS(6635), + [anon_sym_struct] = ACTIONS(6635), + [anon_sym_union] = ACTIONS(6635), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6635), + [anon_sym___typeof] = ACTIONS(6635), + [anon_sym_typeof] = ACTIONS(6635), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6635), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6635), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6635), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6635), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6635), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6635), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6635), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6635), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6635), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6635), + [anon_sym_NS_AVAILABLE] = ACTIONS(6635), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6635), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6635), + [anon_sym_API_AVAILABLE] = ACTIONS(6635), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6635), + [anon_sym_API_DEPRECATED] = ACTIONS(6635), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6635), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6635), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6635), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6635), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6635), + [anon_sym___deprecated_msg] = ACTIONS(6635), + [anon_sym___deprecated_enum_msg] = ACTIONS(6635), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6635), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6635), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6635), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6635), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6635), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6635), + [anon_sym_BOOL] = ACTIONS(6635), + [anon_sym_IMP] = ACTIONS(6635), + [anon_sym_SEL] = ACTIONS(6635), + [anon_sym_Class] = ACTIONS(6635), + [anon_sym_id] = ACTIONS(6635), + [anon_sym_ATdefs] = ACTIONS(6637), + }, + [2723] = { + [sym_identifier] = ACTIONS(6655), + [aux_sym_preproc_def_token1] = ACTIONS(6655), + [aux_sym_preproc_if_token1] = ACTIONS(6655), + [aux_sym_preproc_if_token2] = ACTIONS(6655), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6655), + [sym_preproc_directive] = ACTIONS(6655), + [anon_sym___extension__] = ACTIONS(6655), + [anon_sym_extern] = ACTIONS(6655), + [anon_sym___attribute__] = ACTIONS(6655), + [anon_sym___attribute] = ACTIONS(6655), + [anon_sym_noreturn] = ACTIONS(6655), + [anon_sym_LBRACK] = ACTIONS(6657), + [anon_sym___declspec] = ACTIONS(6655), + [anon_sym_signed] = ACTIONS(6655), + [anon_sym_unsigned] = ACTIONS(6655), + [anon_sym_long] = ACTIONS(6655), + [anon_sym_short] = ACTIONS(6655), + [anon_sym_static] = ACTIONS(6655), + [anon_sym_auto] = ACTIONS(6655), + [anon_sym_register] = ACTIONS(6655), + [anon_sym_inline] = ACTIONS(6655), + [anon_sym___inline] = ACTIONS(6655), + [anon_sym___inline__] = ACTIONS(6655), + [anon_sym___forceinline] = ACTIONS(6655), + [anon_sym_thread_local] = ACTIONS(6655), + [anon_sym___thread] = ACTIONS(6655), + [anon_sym_CG_EXTERN] = ACTIONS(6655), + [anon_sym_CG_INLINE] = ACTIONS(6655), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6655), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6655), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6655), + [anon_sym_IBOutlet] = ACTIONS(6655), + [anon_sym_IBInspectable] = ACTIONS(6655), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6655), + [anon_sym_NS_INLINE] = ACTIONS(6655), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6655), + [anon_sym_OBJC_EXPORT] = ACTIONS(6655), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6655), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6655), + [anon_sym_const] = ACTIONS(6655), + [anon_sym_constexpr] = ACTIONS(6655), + [anon_sym_volatile] = ACTIONS(6655), + [anon_sym_restrict] = ACTIONS(6655), + [anon_sym___restrict__] = ACTIONS(6655), + [anon_sym__Atomic] = ACTIONS(6655), + [anon_sym__Noreturn] = ACTIONS(6655), + [anon_sym__Nonnull] = ACTIONS(6655), + [anon_sym_nullable] = ACTIONS(6655), + [anon_sym__Complex] = ACTIONS(6655), + [anon_sym__Nullable] = ACTIONS(6655), + [anon_sym__Nullable_result] = ACTIONS(6655), + [anon_sym__Null_unspecified] = ACTIONS(6655), + [anon_sym___autoreleasing] = ACTIONS(6655), + [anon_sym___block] = ACTIONS(6655), + [anon_sym___bridge] = ACTIONS(6655), + [anon_sym___bridge_retained] = ACTIONS(6655), + [anon_sym___bridge_transfer] = ACTIONS(6655), + [anon_sym___complex] = ACTIONS(6655), + [anon_sym___const] = ACTIONS(6655), + [anon_sym___imag] = ACTIONS(6655), + [anon_sym___kindof] = ACTIONS(6655), + [anon_sym___nonnull] = ACTIONS(6655), + [anon_sym___nullable] = ACTIONS(6655), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6655), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6655), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6655), + [anon_sym___real] = ACTIONS(6655), + [anon_sym___strong] = ACTIONS(6655), + [anon_sym___unsafe_unretained] = ACTIONS(6655), + [anon_sym___unused] = ACTIONS(6655), + [anon_sym___weak] = ACTIONS(6655), + [anon_sym_alignas] = ACTIONS(6655), + [anon_sym__Alignas] = ACTIONS(6655), + [sym_primitive_type] = ACTIONS(6655), + [anon_sym_enum] = ACTIONS(6655), + [anon_sym_struct] = ACTIONS(6655), + [anon_sym_union] = ACTIONS(6655), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6655), + [anon_sym___typeof] = ACTIONS(6655), + [anon_sym_typeof] = ACTIONS(6655), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6655), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6655), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6655), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6655), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6655), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6655), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6655), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6655), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6655), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6655), + [anon_sym_NS_AVAILABLE] = ACTIONS(6655), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6655), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6655), + [anon_sym_API_AVAILABLE] = ACTIONS(6655), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6655), + [anon_sym_API_DEPRECATED] = ACTIONS(6655), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6655), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6655), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6655), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6655), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6655), + [anon_sym___deprecated_msg] = ACTIONS(6655), + [anon_sym___deprecated_enum_msg] = ACTIONS(6655), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6655), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6655), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6655), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6655), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6655), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6655), + [anon_sym_BOOL] = ACTIONS(6655), + [anon_sym_IMP] = ACTIONS(6655), + [anon_sym_SEL] = ACTIONS(6655), + [anon_sym_Class] = ACTIONS(6655), + [anon_sym_id] = ACTIONS(6655), + [anon_sym_ATdefs] = ACTIONS(6657), + }, + [2724] = { + [sym_identifier] = ACTIONS(6667), + [aux_sym_preproc_def_token1] = ACTIONS(6667), + [aux_sym_preproc_if_token1] = ACTIONS(6667), + [aux_sym_preproc_if_token2] = ACTIONS(6667), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6667), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6667), + [sym_preproc_directive] = ACTIONS(6667), + [anon_sym___extension__] = ACTIONS(6667), + [anon_sym_extern] = ACTIONS(6667), + [anon_sym___attribute__] = ACTIONS(6667), + [anon_sym___attribute] = ACTIONS(6667), + [anon_sym_noreturn] = ACTIONS(6667), + [anon_sym_LBRACK] = ACTIONS(6669), + [anon_sym___declspec] = ACTIONS(6667), + [anon_sym_signed] = ACTIONS(6667), + [anon_sym_unsigned] = ACTIONS(6667), + [anon_sym_long] = ACTIONS(6667), + [anon_sym_short] = ACTIONS(6667), + [anon_sym_static] = ACTIONS(6667), + [anon_sym_auto] = ACTIONS(6667), + [anon_sym_register] = ACTIONS(6667), + [anon_sym_inline] = ACTIONS(6667), + [anon_sym___inline] = ACTIONS(6667), + [anon_sym___inline__] = ACTIONS(6667), + [anon_sym___forceinline] = ACTIONS(6667), + [anon_sym_thread_local] = ACTIONS(6667), + [anon_sym___thread] = ACTIONS(6667), + [anon_sym_CG_EXTERN] = ACTIONS(6667), + [anon_sym_CG_INLINE] = ACTIONS(6667), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6667), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6667), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6667), + [anon_sym_IBOutlet] = ACTIONS(6667), + [anon_sym_IBInspectable] = ACTIONS(6667), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6667), + [anon_sym_NS_INLINE] = ACTIONS(6667), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6667), + [anon_sym_OBJC_EXPORT] = ACTIONS(6667), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6667), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6667), + [anon_sym_const] = ACTIONS(6667), + [anon_sym_constexpr] = ACTIONS(6667), + [anon_sym_volatile] = ACTIONS(6667), + [anon_sym_restrict] = ACTIONS(6667), + [anon_sym___restrict__] = ACTIONS(6667), + [anon_sym__Atomic] = ACTIONS(6667), + [anon_sym__Noreturn] = ACTIONS(6667), + [anon_sym__Nonnull] = ACTIONS(6667), + [anon_sym_nullable] = ACTIONS(6667), + [anon_sym__Complex] = ACTIONS(6667), + [anon_sym__Nullable] = ACTIONS(6667), + [anon_sym__Nullable_result] = ACTIONS(6667), + [anon_sym__Null_unspecified] = ACTIONS(6667), + [anon_sym___autoreleasing] = ACTIONS(6667), + [anon_sym___block] = ACTIONS(6667), + [anon_sym___bridge] = ACTIONS(6667), + [anon_sym___bridge_retained] = ACTIONS(6667), + [anon_sym___bridge_transfer] = ACTIONS(6667), + [anon_sym___complex] = ACTIONS(6667), + [anon_sym___const] = ACTIONS(6667), + [anon_sym___imag] = ACTIONS(6667), + [anon_sym___kindof] = ACTIONS(6667), + [anon_sym___nonnull] = ACTIONS(6667), + [anon_sym___nullable] = ACTIONS(6667), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6667), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6667), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6667), + [anon_sym___real] = ACTIONS(6667), + [anon_sym___strong] = ACTIONS(6667), + [anon_sym___unsafe_unretained] = ACTIONS(6667), + [anon_sym___unused] = ACTIONS(6667), + [anon_sym___weak] = ACTIONS(6667), + [anon_sym_alignas] = ACTIONS(6667), + [anon_sym__Alignas] = ACTIONS(6667), + [sym_primitive_type] = ACTIONS(6667), + [anon_sym_enum] = ACTIONS(6667), + [anon_sym_struct] = ACTIONS(6667), + [anon_sym_union] = ACTIONS(6667), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6667), + [anon_sym___typeof] = ACTIONS(6667), + [anon_sym_typeof] = ACTIONS(6667), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6667), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6667), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6667), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6667), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6667), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6667), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6667), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6667), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6667), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6667), + [anon_sym_NS_AVAILABLE] = ACTIONS(6667), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6667), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6667), + [anon_sym_API_AVAILABLE] = ACTIONS(6667), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6667), + [anon_sym_API_DEPRECATED] = ACTIONS(6667), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6667), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6667), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6667), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6667), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6667), + [anon_sym___deprecated_msg] = ACTIONS(6667), + [anon_sym___deprecated_enum_msg] = ACTIONS(6667), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6667), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6667), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6667), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6667), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6667), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6667), + [anon_sym_BOOL] = ACTIONS(6667), + [anon_sym_IMP] = ACTIONS(6667), + [anon_sym_SEL] = ACTIONS(6667), + [anon_sym_Class] = ACTIONS(6667), + [anon_sym_id] = ACTIONS(6667), + [anon_sym_ATdefs] = ACTIONS(6669), + }, + [2725] = { + [sym_identifier] = ACTIONS(6675), + [aux_sym_preproc_def_token1] = ACTIONS(6675), + [aux_sym_preproc_if_token1] = ACTIONS(6675), + [aux_sym_preproc_if_token2] = ACTIONS(6675), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6675), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6675), + [sym_preproc_directive] = ACTIONS(6675), + [anon_sym___extension__] = ACTIONS(6675), + [anon_sym_extern] = ACTIONS(6675), + [anon_sym___attribute__] = ACTIONS(6675), + [anon_sym___attribute] = ACTIONS(6675), + [anon_sym_noreturn] = ACTIONS(6675), + [anon_sym_LBRACK] = ACTIONS(6677), + [anon_sym___declspec] = ACTIONS(6675), + [anon_sym_signed] = ACTIONS(6675), + [anon_sym_unsigned] = ACTIONS(6675), + [anon_sym_long] = ACTIONS(6675), + [anon_sym_short] = ACTIONS(6675), + [anon_sym_static] = ACTIONS(6675), + [anon_sym_auto] = ACTIONS(6675), + [anon_sym_register] = ACTIONS(6675), + [anon_sym_inline] = ACTIONS(6675), + [anon_sym___inline] = ACTIONS(6675), + [anon_sym___inline__] = ACTIONS(6675), + [anon_sym___forceinline] = ACTIONS(6675), + [anon_sym_thread_local] = ACTIONS(6675), + [anon_sym___thread] = ACTIONS(6675), + [anon_sym_CG_EXTERN] = ACTIONS(6675), + [anon_sym_CG_INLINE] = ACTIONS(6675), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6675), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6675), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6675), + [anon_sym_IBOutlet] = ACTIONS(6675), + [anon_sym_IBInspectable] = ACTIONS(6675), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6675), + [anon_sym_NS_INLINE] = ACTIONS(6675), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6675), + [anon_sym_OBJC_EXPORT] = ACTIONS(6675), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6675), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6675), + [anon_sym_const] = ACTIONS(6675), + [anon_sym_constexpr] = ACTIONS(6675), + [anon_sym_volatile] = ACTIONS(6675), + [anon_sym_restrict] = ACTIONS(6675), + [anon_sym___restrict__] = ACTIONS(6675), + [anon_sym__Atomic] = ACTIONS(6675), + [anon_sym__Noreturn] = ACTIONS(6675), + [anon_sym__Nonnull] = ACTIONS(6675), + [anon_sym_nullable] = ACTIONS(6675), + [anon_sym__Complex] = ACTIONS(6675), + [anon_sym__Nullable] = ACTIONS(6675), + [anon_sym__Nullable_result] = ACTIONS(6675), + [anon_sym__Null_unspecified] = ACTIONS(6675), + [anon_sym___autoreleasing] = ACTIONS(6675), + [anon_sym___block] = ACTIONS(6675), + [anon_sym___bridge] = ACTIONS(6675), + [anon_sym___bridge_retained] = ACTIONS(6675), + [anon_sym___bridge_transfer] = ACTIONS(6675), + [anon_sym___complex] = ACTIONS(6675), + [anon_sym___const] = ACTIONS(6675), + [anon_sym___imag] = ACTIONS(6675), + [anon_sym___kindof] = ACTIONS(6675), + [anon_sym___nonnull] = ACTIONS(6675), + [anon_sym___nullable] = ACTIONS(6675), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6675), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6675), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6675), + [anon_sym___real] = ACTIONS(6675), + [anon_sym___strong] = ACTIONS(6675), + [anon_sym___unsafe_unretained] = ACTIONS(6675), + [anon_sym___unused] = ACTIONS(6675), + [anon_sym___weak] = ACTIONS(6675), + [anon_sym_alignas] = ACTIONS(6675), + [anon_sym__Alignas] = ACTIONS(6675), + [sym_primitive_type] = ACTIONS(6675), + [anon_sym_enum] = ACTIONS(6675), + [anon_sym_struct] = ACTIONS(6675), + [anon_sym_union] = ACTIONS(6675), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6675), + [anon_sym___typeof] = ACTIONS(6675), + [anon_sym_typeof] = ACTIONS(6675), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6675), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6675), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6675), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6675), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6675), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6675), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6675), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6675), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6675), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6675), + [anon_sym_NS_AVAILABLE] = ACTIONS(6675), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6675), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6675), + [anon_sym_API_AVAILABLE] = ACTIONS(6675), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6675), + [anon_sym_API_DEPRECATED] = ACTIONS(6675), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6675), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6675), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6675), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6675), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6675), + [anon_sym___deprecated_msg] = ACTIONS(6675), + [anon_sym___deprecated_enum_msg] = ACTIONS(6675), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6675), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6675), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6675), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6675), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6675), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6675), + [anon_sym_BOOL] = ACTIONS(6675), + [anon_sym_IMP] = ACTIONS(6675), + [anon_sym_SEL] = ACTIONS(6675), + [anon_sym_Class] = ACTIONS(6675), + [anon_sym_id] = ACTIONS(6675), + [anon_sym_ATdefs] = ACTIONS(6677), + }, + [2726] = { + [sym_identifier] = ACTIONS(6679), + [aux_sym_preproc_def_token1] = ACTIONS(6679), + [aux_sym_preproc_if_token1] = ACTIONS(6679), + [aux_sym_preproc_if_token2] = ACTIONS(6679), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6679), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6679), + [sym_preproc_directive] = ACTIONS(6679), + [anon_sym___extension__] = ACTIONS(6679), + [anon_sym_extern] = ACTIONS(6679), + [anon_sym___attribute__] = ACTIONS(6679), + [anon_sym___attribute] = ACTIONS(6679), + [anon_sym_noreturn] = ACTIONS(6679), + [anon_sym_LBRACK] = ACTIONS(6681), + [anon_sym___declspec] = ACTIONS(6679), + [anon_sym_signed] = ACTIONS(6679), + [anon_sym_unsigned] = ACTIONS(6679), + [anon_sym_long] = ACTIONS(6679), + [anon_sym_short] = ACTIONS(6679), + [anon_sym_static] = ACTIONS(6679), + [anon_sym_auto] = ACTIONS(6679), + [anon_sym_register] = ACTIONS(6679), + [anon_sym_inline] = ACTIONS(6679), + [anon_sym___inline] = ACTIONS(6679), + [anon_sym___inline__] = ACTIONS(6679), + [anon_sym___forceinline] = ACTIONS(6679), + [anon_sym_thread_local] = ACTIONS(6679), + [anon_sym___thread] = ACTIONS(6679), + [anon_sym_CG_EXTERN] = ACTIONS(6679), + [anon_sym_CG_INLINE] = ACTIONS(6679), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6679), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6679), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6679), + [anon_sym_IBOutlet] = ACTIONS(6679), + [anon_sym_IBInspectable] = ACTIONS(6679), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6679), + [anon_sym_NS_INLINE] = ACTIONS(6679), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6679), + [anon_sym_OBJC_EXPORT] = ACTIONS(6679), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6679), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6679), + [anon_sym_const] = ACTIONS(6679), + [anon_sym_constexpr] = ACTIONS(6679), + [anon_sym_volatile] = ACTIONS(6679), + [anon_sym_restrict] = ACTIONS(6679), + [anon_sym___restrict__] = ACTIONS(6679), + [anon_sym__Atomic] = ACTIONS(6679), + [anon_sym__Noreturn] = ACTIONS(6679), + [anon_sym__Nonnull] = ACTIONS(6679), + [anon_sym_nullable] = ACTIONS(6679), + [anon_sym__Complex] = ACTIONS(6679), + [anon_sym__Nullable] = ACTIONS(6679), + [anon_sym__Nullable_result] = ACTIONS(6679), + [anon_sym__Null_unspecified] = ACTIONS(6679), + [anon_sym___autoreleasing] = ACTIONS(6679), + [anon_sym___block] = ACTIONS(6679), + [anon_sym___bridge] = ACTIONS(6679), + [anon_sym___bridge_retained] = ACTIONS(6679), + [anon_sym___bridge_transfer] = ACTIONS(6679), + [anon_sym___complex] = ACTIONS(6679), + [anon_sym___const] = ACTIONS(6679), + [anon_sym___imag] = ACTIONS(6679), + [anon_sym___kindof] = ACTIONS(6679), + [anon_sym___nonnull] = ACTIONS(6679), + [anon_sym___nullable] = ACTIONS(6679), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6679), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6679), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6679), + [anon_sym___real] = ACTIONS(6679), + [anon_sym___strong] = ACTIONS(6679), + [anon_sym___unsafe_unretained] = ACTIONS(6679), + [anon_sym___unused] = ACTIONS(6679), + [anon_sym___weak] = ACTIONS(6679), + [anon_sym_alignas] = ACTIONS(6679), + [anon_sym__Alignas] = ACTIONS(6679), + [sym_primitive_type] = ACTIONS(6679), + [anon_sym_enum] = ACTIONS(6679), + [anon_sym_struct] = ACTIONS(6679), + [anon_sym_union] = ACTIONS(6679), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6679), + [anon_sym___typeof] = ACTIONS(6679), + [anon_sym_typeof] = ACTIONS(6679), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6679), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6679), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6679), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6679), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6679), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6679), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6679), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6679), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6679), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6679), + [anon_sym_NS_AVAILABLE] = ACTIONS(6679), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6679), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6679), + [anon_sym_API_AVAILABLE] = ACTIONS(6679), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6679), + [anon_sym_API_DEPRECATED] = ACTIONS(6679), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6679), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6679), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6679), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6679), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6679), + [anon_sym___deprecated_msg] = ACTIONS(6679), + [anon_sym___deprecated_enum_msg] = ACTIONS(6679), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6679), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6679), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6679), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6679), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6679), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6679), + [anon_sym_BOOL] = ACTIONS(6679), + [anon_sym_IMP] = ACTIONS(6679), + [anon_sym_SEL] = ACTIONS(6679), + [anon_sym_Class] = ACTIONS(6679), + [anon_sym_id] = ACTIONS(6679), + [anon_sym_ATdefs] = ACTIONS(6681), + }, + [2727] = { + [sym_identifier] = ACTIONS(6683), + [aux_sym_preproc_def_token1] = ACTIONS(6683), + [aux_sym_preproc_if_token1] = ACTIONS(6683), + [aux_sym_preproc_if_token2] = ACTIONS(6683), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6683), + [sym_preproc_directive] = ACTIONS(6683), + [anon_sym___extension__] = ACTIONS(6683), + [anon_sym_extern] = ACTIONS(6683), + [anon_sym___attribute__] = ACTIONS(6683), + [anon_sym___attribute] = ACTIONS(6683), + [anon_sym_noreturn] = ACTIONS(6683), + [anon_sym_LBRACK] = ACTIONS(6685), + [anon_sym___declspec] = ACTIONS(6683), + [anon_sym_signed] = ACTIONS(6683), + [anon_sym_unsigned] = ACTIONS(6683), + [anon_sym_long] = ACTIONS(6683), + [anon_sym_short] = ACTIONS(6683), + [anon_sym_static] = ACTIONS(6683), + [anon_sym_auto] = ACTIONS(6683), + [anon_sym_register] = ACTIONS(6683), + [anon_sym_inline] = ACTIONS(6683), + [anon_sym___inline] = ACTIONS(6683), + [anon_sym___inline__] = ACTIONS(6683), + [anon_sym___forceinline] = ACTIONS(6683), + [anon_sym_thread_local] = ACTIONS(6683), + [anon_sym___thread] = ACTIONS(6683), + [anon_sym_CG_EXTERN] = ACTIONS(6683), + [anon_sym_CG_INLINE] = ACTIONS(6683), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6683), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6683), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6683), + [anon_sym_IBOutlet] = ACTIONS(6683), + [anon_sym_IBInspectable] = ACTIONS(6683), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6683), + [anon_sym_NS_INLINE] = ACTIONS(6683), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6683), + [anon_sym_OBJC_EXPORT] = ACTIONS(6683), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6683), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6683), + [anon_sym_const] = ACTIONS(6683), + [anon_sym_constexpr] = ACTIONS(6683), + [anon_sym_volatile] = ACTIONS(6683), + [anon_sym_restrict] = ACTIONS(6683), + [anon_sym___restrict__] = ACTIONS(6683), + [anon_sym__Atomic] = ACTIONS(6683), + [anon_sym__Noreturn] = ACTIONS(6683), + [anon_sym__Nonnull] = ACTIONS(6683), + [anon_sym_nullable] = ACTIONS(6683), + [anon_sym__Complex] = ACTIONS(6683), + [anon_sym__Nullable] = ACTIONS(6683), + [anon_sym__Nullable_result] = ACTIONS(6683), + [anon_sym__Null_unspecified] = ACTIONS(6683), + [anon_sym___autoreleasing] = ACTIONS(6683), + [anon_sym___block] = ACTIONS(6683), + [anon_sym___bridge] = ACTIONS(6683), + [anon_sym___bridge_retained] = ACTIONS(6683), + [anon_sym___bridge_transfer] = ACTIONS(6683), + [anon_sym___complex] = ACTIONS(6683), + [anon_sym___const] = ACTIONS(6683), + [anon_sym___imag] = ACTIONS(6683), + [anon_sym___kindof] = ACTIONS(6683), + [anon_sym___nonnull] = ACTIONS(6683), + [anon_sym___nullable] = ACTIONS(6683), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6683), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6683), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6683), + [anon_sym___real] = ACTIONS(6683), + [anon_sym___strong] = ACTIONS(6683), + [anon_sym___unsafe_unretained] = ACTIONS(6683), + [anon_sym___unused] = ACTIONS(6683), + [anon_sym___weak] = ACTIONS(6683), + [anon_sym_alignas] = ACTIONS(6683), + [anon_sym__Alignas] = ACTIONS(6683), + [sym_primitive_type] = ACTIONS(6683), + [anon_sym_enum] = ACTIONS(6683), + [anon_sym_struct] = ACTIONS(6683), + [anon_sym_union] = ACTIONS(6683), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6683), + [anon_sym___typeof] = ACTIONS(6683), + [anon_sym_typeof] = ACTIONS(6683), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6683), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6683), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6683), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6683), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6683), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6683), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6683), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6683), + [anon_sym_NS_AVAILABLE] = ACTIONS(6683), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6683), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_API_AVAILABLE] = ACTIONS(6683), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_API_DEPRECATED] = ACTIONS(6683), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6683), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6683), + [anon_sym___deprecated_msg] = ACTIONS(6683), + [anon_sym___deprecated_enum_msg] = ACTIONS(6683), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6683), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6683), + [anon_sym_BOOL] = ACTIONS(6683), + [anon_sym_IMP] = ACTIONS(6683), + [anon_sym_SEL] = ACTIONS(6683), + [anon_sym_Class] = ACTIONS(6683), + [anon_sym_id] = ACTIONS(6683), + [anon_sym_ATdefs] = ACTIONS(6685), + }, + [2728] = { + [sym_identifier] = ACTIONS(6687), + [aux_sym_preproc_def_token1] = ACTIONS(6687), + [aux_sym_preproc_if_token1] = ACTIONS(6687), + [aux_sym_preproc_if_token2] = ACTIONS(6687), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6687), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6687), + [sym_preproc_directive] = ACTIONS(6687), + [anon_sym___extension__] = ACTIONS(6687), + [anon_sym_extern] = ACTIONS(6687), + [anon_sym___attribute__] = ACTIONS(6687), + [anon_sym___attribute] = ACTIONS(6687), + [anon_sym_noreturn] = ACTIONS(6687), + [anon_sym_LBRACK] = ACTIONS(6689), + [anon_sym___declspec] = ACTIONS(6687), + [anon_sym_signed] = ACTIONS(6687), + [anon_sym_unsigned] = ACTIONS(6687), + [anon_sym_long] = ACTIONS(6687), + [anon_sym_short] = ACTIONS(6687), + [anon_sym_static] = ACTIONS(6687), + [anon_sym_auto] = ACTIONS(6687), + [anon_sym_register] = ACTIONS(6687), + [anon_sym_inline] = ACTIONS(6687), + [anon_sym___inline] = ACTIONS(6687), + [anon_sym___inline__] = ACTIONS(6687), + [anon_sym___forceinline] = ACTIONS(6687), + [anon_sym_thread_local] = ACTIONS(6687), + [anon_sym___thread] = ACTIONS(6687), + [anon_sym_CG_EXTERN] = ACTIONS(6687), + [anon_sym_CG_INLINE] = ACTIONS(6687), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6687), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6687), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6687), + [anon_sym_IBOutlet] = ACTIONS(6687), + [anon_sym_IBInspectable] = ACTIONS(6687), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6687), + [anon_sym_NS_INLINE] = ACTIONS(6687), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6687), + [anon_sym_OBJC_EXPORT] = ACTIONS(6687), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6687), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6687), + [anon_sym_const] = ACTIONS(6687), + [anon_sym_constexpr] = ACTIONS(6687), + [anon_sym_volatile] = ACTIONS(6687), + [anon_sym_restrict] = ACTIONS(6687), + [anon_sym___restrict__] = ACTIONS(6687), + [anon_sym__Atomic] = ACTIONS(6687), + [anon_sym__Noreturn] = ACTIONS(6687), + [anon_sym__Nonnull] = ACTIONS(6687), + [anon_sym_nullable] = ACTIONS(6687), + [anon_sym__Complex] = ACTIONS(6687), + [anon_sym__Nullable] = ACTIONS(6687), + [anon_sym__Nullable_result] = ACTIONS(6687), + [anon_sym__Null_unspecified] = ACTIONS(6687), + [anon_sym___autoreleasing] = ACTIONS(6687), + [anon_sym___block] = ACTIONS(6687), + [anon_sym___bridge] = ACTIONS(6687), + [anon_sym___bridge_retained] = ACTIONS(6687), + [anon_sym___bridge_transfer] = ACTIONS(6687), + [anon_sym___complex] = ACTIONS(6687), + [anon_sym___const] = ACTIONS(6687), + [anon_sym___imag] = ACTIONS(6687), + [anon_sym___kindof] = ACTIONS(6687), + [anon_sym___nonnull] = ACTIONS(6687), + [anon_sym___nullable] = ACTIONS(6687), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6687), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6687), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6687), + [anon_sym___real] = ACTIONS(6687), + [anon_sym___strong] = ACTIONS(6687), + [anon_sym___unsafe_unretained] = ACTIONS(6687), + [anon_sym___unused] = ACTIONS(6687), + [anon_sym___weak] = ACTIONS(6687), + [anon_sym_alignas] = ACTIONS(6687), + [anon_sym__Alignas] = ACTIONS(6687), + [sym_primitive_type] = ACTIONS(6687), + [anon_sym_enum] = ACTIONS(6687), + [anon_sym_struct] = ACTIONS(6687), + [anon_sym_union] = ACTIONS(6687), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6687), + [anon_sym___typeof] = ACTIONS(6687), + [anon_sym_typeof] = ACTIONS(6687), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6687), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6687), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6687), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6687), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6687), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6687), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6687), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6687), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6687), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6687), + [anon_sym_NS_AVAILABLE] = ACTIONS(6687), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6687), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6687), + [anon_sym_API_AVAILABLE] = ACTIONS(6687), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6687), + [anon_sym_API_DEPRECATED] = ACTIONS(6687), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6687), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6687), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6687), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6687), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6687), + [anon_sym___deprecated_msg] = ACTIONS(6687), + [anon_sym___deprecated_enum_msg] = ACTIONS(6687), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6687), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6687), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6687), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6687), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6687), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6687), + [anon_sym_BOOL] = ACTIONS(6687), + [anon_sym_IMP] = ACTIONS(6687), + [anon_sym_SEL] = ACTIONS(6687), + [anon_sym_Class] = ACTIONS(6687), + [anon_sym_id] = ACTIONS(6687), + [anon_sym_ATdefs] = ACTIONS(6689), + }, + [2729] = { + [sym_identifier] = ACTIONS(6695), + [aux_sym_preproc_def_token1] = ACTIONS(6695), + [aux_sym_preproc_if_token1] = ACTIONS(6695), + [aux_sym_preproc_if_token2] = ACTIONS(6695), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6695), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6695), + [sym_preproc_directive] = ACTIONS(6695), + [anon_sym___extension__] = ACTIONS(6695), + [anon_sym_extern] = ACTIONS(6695), + [anon_sym___attribute__] = ACTIONS(6695), + [anon_sym___attribute] = ACTIONS(6695), + [anon_sym_noreturn] = ACTIONS(6695), + [anon_sym_LBRACK] = ACTIONS(6697), + [anon_sym___declspec] = ACTIONS(6695), + [anon_sym_signed] = ACTIONS(6695), + [anon_sym_unsigned] = ACTIONS(6695), + [anon_sym_long] = ACTIONS(6695), + [anon_sym_short] = ACTIONS(6695), + [anon_sym_static] = ACTIONS(6695), + [anon_sym_auto] = ACTIONS(6695), + [anon_sym_register] = ACTIONS(6695), + [anon_sym_inline] = ACTIONS(6695), + [anon_sym___inline] = ACTIONS(6695), + [anon_sym___inline__] = ACTIONS(6695), + [anon_sym___forceinline] = ACTIONS(6695), + [anon_sym_thread_local] = ACTIONS(6695), + [anon_sym___thread] = ACTIONS(6695), + [anon_sym_CG_EXTERN] = ACTIONS(6695), + [anon_sym_CG_INLINE] = ACTIONS(6695), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6695), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6695), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6695), + [anon_sym_IBOutlet] = ACTIONS(6695), + [anon_sym_IBInspectable] = ACTIONS(6695), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6695), + [anon_sym_NS_INLINE] = ACTIONS(6695), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6695), + [anon_sym_OBJC_EXPORT] = ACTIONS(6695), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6695), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6695), + [anon_sym_const] = ACTIONS(6695), + [anon_sym_constexpr] = ACTIONS(6695), + [anon_sym_volatile] = ACTIONS(6695), + [anon_sym_restrict] = ACTIONS(6695), + [anon_sym___restrict__] = ACTIONS(6695), + [anon_sym__Atomic] = ACTIONS(6695), + [anon_sym__Noreturn] = ACTIONS(6695), + [anon_sym__Nonnull] = ACTIONS(6695), + [anon_sym_nullable] = ACTIONS(6695), + [anon_sym__Complex] = ACTIONS(6695), + [anon_sym__Nullable] = ACTIONS(6695), + [anon_sym__Nullable_result] = ACTIONS(6695), + [anon_sym__Null_unspecified] = ACTIONS(6695), + [anon_sym___autoreleasing] = ACTIONS(6695), + [anon_sym___block] = ACTIONS(6695), + [anon_sym___bridge] = ACTIONS(6695), + [anon_sym___bridge_retained] = ACTIONS(6695), + [anon_sym___bridge_transfer] = ACTIONS(6695), + [anon_sym___complex] = ACTIONS(6695), + [anon_sym___const] = ACTIONS(6695), + [anon_sym___imag] = ACTIONS(6695), + [anon_sym___kindof] = ACTIONS(6695), + [anon_sym___nonnull] = ACTIONS(6695), + [anon_sym___nullable] = ACTIONS(6695), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6695), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6695), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6695), + [anon_sym___real] = ACTIONS(6695), + [anon_sym___strong] = ACTIONS(6695), + [anon_sym___unsafe_unretained] = ACTIONS(6695), + [anon_sym___unused] = ACTIONS(6695), + [anon_sym___weak] = ACTIONS(6695), + [anon_sym_alignas] = ACTIONS(6695), + [anon_sym__Alignas] = ACTIONS(6695), + [sym_primitive_type] = ACTIONS(6695), + [anon_sym_enum] = ACTIONS(6695), + [anon_sym_struct] = ACTIONS(6695), + [anon_sym_union] = ACTIONS(6695), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6695), + [anon_sym___typeof] = ACTIONS(6695), + [anon_sym_typeof] = ACTIONS(6695), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6695), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6695), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6695), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6695), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6695), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6695), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6695), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6695), + [anon_sym_NS_AVAILABLE] = ACTIONS(6695), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6695), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_API_AVAILABLE] = ACTIONS(6695), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_API_DEPRECATED] = ACTIONS(6695), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6695), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6695), + [anon_sym___deprecated_msg] = ACTIONS(6695), + [anon_sym___deprecated_enum_msg] = ACTIONS(6695), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6695), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6695), + [anon_sym_BOOL] = ACTIONS(6695), + [anon_sym_IMP] = ACTIONS(6695), + [anon_sym_SEL] = ACTIONS(6695), + [anon_sym_Class] = ACTIONS(6695), + [anon_sym_id] = ACTIONS(6695), + [anon_sym_ATdefs] = ACTIONS(6697), + }, + [2730] = { + [sym_identifier] = ACTIONS(6695), + [aux_sym_preproc_def_token1] = ACTIONS(6695), + [aux_sym_preproc_if_token1] = ACTIONS(6695), + [aux_sym_preproc_if_token2] = ACTIONS(6695), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6695), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6695), + [sym_preproc_directive] = ACTIONS(6695), + [anon_sym___extension__] = ACTIONS(6695), + [anon_sym_extern] = ACTIONS(6695), + [anon_sym___attribute__] = ACTIONS(6695), + [anon_sym___attribute] = ACTIONS(6695), + [anon_sym_noreturn] = ACTIONS(6695), + [anon_sym_LBRACK] = ACTIONS(6697), + [anon_sym___declspec] = ACTIONS(6695), + [anon_sym_signed] = ACTIONS(6695), + [anon_sym_unsigned] = ACTIONS(6695), + [anon_sym_long] = ACTIONS(6695), + [anon_sym_short] = ACTIONS(6695), + [anon_sym_static] = ACTIONS(6695), + [anon_sym_auto] = ACTIONS(6695), + [anon_sym_register] = ACTIONS(6695), + [anon_sym_inline] = ACTIONS(6695), + [anon_sym___inline] = ACTIONS(6695), + [anon_sym___inline__] = ACTIONS(6695), + [anon_sym___forceinline] = ACTIONS(6695), + [anon_sym_thread_local] = ACTIONS(6695), + [anon_sym___thread] = ACTIONS(6695), + [anon_sym_CG_EXTERN] = ACTIONS(6695), + [anon_sym_CG_INLINE] = ACTIONS(6695), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6695), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6695), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6695), + [anon_sym_IBOutlet] = ACTIONS(6695), + [anon_sym_IBInspectable] = ACTIONS(6695), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6695), + [anon_sym_NS_INLINE] = ACTIONS(6695), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6695), + [anon_sym_OBJC_EXPORT] = ACTIONS(6695), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6695), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6695), + [anon_sym_const] = ACTIONS(6695), + [anon_sym_constexpr] = ACTIONS(6695), + [anon_sym_volatile] = ACTIONS(6695), + [anon_sym_restrict] = ACTIONS(6695), + [anon_sym___restrict__] = ACTIONS(6695), + [anon_sym__Atomic] = ACTIONS(6695), + [anon_sym__Noreturn] = ACTIONS(6695), + [anon_sym__Nonnull] = ACTIONS(6695), + [anon_sym_nullable] = ACTIONS(6695), + [anon_sym__Complex] = ACTIONS(6695), + [anon_sym__Nullable] = ACTIONS(6695), + [anon_sym__Nullable_result] = ACTIONS(6695), + [anon_sym__Null_unspecified] = ACTIONS(6695), + [anon_sym___autoreleasing] = ACTIONS(6695), + [anon_sym___block] = ACTIONS(6695), + [anon_sym___bridge] = ACTIONS(6695), + [anon_sym___bridge_retained] = ACTIONS(6695), + [anon_sym___bridge_transfer] = ACTIONS(6695), + [anon_sym___complex] = ACTIONS(6695), + [anon_sym___const] = ACTIONS(6695), + [anon_sym___imag] = ACTIONS(6695), + [anon_sym___kindof] = ACTIONS(6695), + [anon_sym___nonnull] = ACTIONS(6695), + [anon_sym___nullable] = ACTIONS(6695), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6695), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6695), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6695), + [anon_sym___real] = ACTIONS(6695), + [anon_sym___strong] = ACTIONS(6695), + [anon_sym___unsafe_unretained] = ACTIONS(6695), + [anon_sym___unused] = ACTIONS(6695), + [anon_sym___weak] = ACTIONS(6695), + [anon_sym_alignas] = ACTIONS(6695), + [anon_sym__Alignas] = ACTIONS(6695), + [sym_primitive_type] = ACTIONS(6695), + [anon_sym_enum] = ACTIONS(6695), + [anon_sym_struct] = ACTIONS(6695), + [anon_sym_union] = ACTIONS(6695), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6695), + [anon_sym___typeof] = ACTIONS(6695), + [anon_sym_typeof] = ACTIONS(6695), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6695), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6695), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6695), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6695), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6695), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6695), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6695), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6695), + [anon_sym_NS_AVAILABLE] = ACTIONS(6695), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6695), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_API_AVAILABLE] = ACTIONS(6695), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_API_DEPRECATED] = ACTIONS(6695), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6695), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6695), + [anon_sym___deprecated_msg] = ACTIONS(6695), + [anon_sym___deprecated_enum_msg] = ACTIONS(6695), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6695), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6695), + [anon_sym_BOOL] = ACTIONS(6695), + [anon_sym_IMP] = ACTIONS(6695), + [anon_sym_SEL] = ACTIONS(6695), + [anon_sym_Class] = ACTIONS(6695), + [anon_sym_id] = ACTIONS(6695), + [anon_sym_ATdefs] = ACTIONS(6697), + }, + [2731] = { + [sym_identifier] = ACTIONS(6683), + [aux_sym_preproc_def_token1] = ACTIONS(6683), + [aux_sym_preproc_if_token1] = ACTIONS(6683), + [aux_sym_preproc_if_token2] = ACTIONS(6683), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6683), + [sym_preproc_directive] = ACTIONS(6683), + [anon_sym___extension__] = ACTIONS(6683), + [anon_sym_extern] = ACTIONS(6683), + [anon_sym___attribute__] = ACTIONS(6683), + [anon_sym___attribute] = ACTIONS(6683), + [anon_sym_noreturn] = ACTIONS(6683), + [anon_sym_LBRACK] = ACTIONS(6685), + [anon_sym___declspec] = ACTIONS(6683), + [anon_sym_signed] = ACTIONS(6683), + [anon_sym_unsigned] = ACTIONS(6683), + [anon_sym_long] = ACTIONS(6683), + [anon_sym_short] = ACTIONS(6683), + [anon_sym_static] = ACTIONS(6683), + [anon_sym_auto] = ACTIONS(6683), + [anon_sym_register] = ACTIONS(6683), + [anon_sym_inline] = ACTIONS(6683), + [anon_sym___inline] = ACTIONS(6683), + [anon_sym___inline__] = ACTIONS(6683), + [anon_sym___forceinline] = ACTIONS(6683), + [anon_sym_thread_local] = ACTIONS(6683), + [anon_sym___thread] = ACTIONS(6683), + [anon_sym_CG_EXTERN] = ACTIONS(6683), + [anon_sym_CG_INLINE] = ACTIONS(6683), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6683), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6683), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6683), + [anon_sym_IBOutlet] = ACTIONS(6683), + [anon_sym_IBInspectable] = ACTIONS(6683), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6683), + [anon_sym_NS_INLINE] = ACTIONS(6683), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6683), + [anon_sym_OBJC_EXPORT] = ACTIONS(6683), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6683), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6683), + [anon_sym_const] = ACTIONS(6683), + [anon_sym_constexpr] = ACTIONS(6683), + [anon_sym_volatile] = ACTIONS(6683), + [anon_sym_restrict] = ACTIONS(6683), + [anon_sym___restrict__] = ACTIONS(6683), + [anon_sym__Atomic] = ACTIONS(6683), + [anon_sym__Noreturn] = ACTIONS(6683), + [anon_sym__Nonnull] = ACTIONS(6683), + [anon_sym_nullable] = ACTIONS(6683), + [anon_sym__Complex] = ACTIONS(6683), + [anon_sym__Nullable] = ACTIONS(6683), + [anon_sym__Nullable_result] = ACTIONS(6683), + [anon_sym__Null_unspecified] = ACTIONS(6683), + [anon_sym___autoreleasing] = ACTIONS(6683), + [anon_sym___block] = ACTIONS(6683), + [anon_sym___bridge] = ACTIONS(6683), + [anon_sym___bridge_retained] = ACTIONS(6683), + [anon_sym___bridge_transfer] = ACTIONS(6683), + [anon_sym___complex] = ACTIONS(6683), + [anon_sym___const] = ACTIONS(6683), + [anon_sym___imag] = ACTIONS(6683), + [anon_sym___kindof] = ACTIONS(6683), + [anon_sym___nonnull] = ACTIONS(6683), + [anon_sym___nullable] = ACTIONS(6683), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6683), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6683), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6683), + [anon_sym___real] = ACTIONS(6683), + [anon_sym___strong] = ACTIONS(6683), + [anon_sym___unsafe_unretained] = ACTIONS(6683), + [anon_sym___unused] = ACTIONS(6683), + [anon_sym___weak] = ACTIONS(6683), + [anon_sym_alignas] = ACTIONS(6683), + [anon_sym__Alignas] = ACTIONS(6683), + [sym_primitive_type] = ACTIONS(6683), + [anon_sym_enum] = ACTIONS(6683), + [anon_sym_struct] = ACTIONS(6683), + [anon_sym_union] = ACTIONS(6683), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6683), + [anon_sym___typeof] = ACTIONS(6683), + [anon_sym_typeof] = ACTIONS(6683), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6683), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6683), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6683), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6683), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6683), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6683), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6683), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6683), + [anon_sym_NS_AVAILABLE] = ACTIONS(6683), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6683), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_API_AVAILABLE] = ACTIONS(6683), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_API_DEPRECATED] = ACTIONS(6683), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6683), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6683), + [anon_sym___deprecated_msg] = ACTIONS(6683), + [anon_sym___deprecated_enum_msg] = ACTIONS(6683), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6683), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6683), + [anon_sym_BOOL] = ACTIONS(6683), + [anon_sym_IMP] = ACTIONS(6683), + [anon_sym_SEL] = ACTIONS(6683), + [anon_sym_Class] = ACTIONS(6683), + [anon_sym_id] = ACTIONS(6683), + [anon_sym_ATdefs] = ACTIONS(6685), + }, + [2732] = { + [sym_identifier] = ACTIONS(6683), + [aux_sym_preproc_def_token1] = ACTIONS(6683), + [aux_sym_preproc_if_token1] = ACTIONS(6683), + [aux_sym_preproc_if_token2] = ACTIONS(6683), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6683), + [sym_preproc_directive] = ACTIONS(6683), + [anon_sym___extension__] = ACTIONS(6683), + [anon_sym_extern] = ACTIONS(6683), + [anon_sym___attribute__] = ACTIONS(6683), + [anon_sym___attribute] = ACTIONS(6683), + [anon_sym_noreturn] = ACTIONS(6683), + [anon_sym_LBRACK] = ACTIONS(6685), + [anon_sym___declspec] = ACTIONS(6683), + [anon_sym_signed] = ACTIONS(6683), + [anon_sym_unsigned] = ACTIONS(6683), + [anon_sym_long] = ACTIONS(6683), + [anon_sym_short] = ACTIONS(6683), + [anon_sym_static] = ACTIONS(6683), + [anon_sym_auto] = ACTIONS(6683), + [anon_sym_register] = ACTIONS(6683), + [anon_sym_inline] = ACTIONS(6683), + [anon_sym___inline] = ACTIONS(6683), + [anon_sym___inline__] = ACTIONS(6683), + [anon_sym___forceinline] = ACTIONS(6683), + [anon_sym_thread_local] = ACTIONS(6683), + [anon_sym___thread] = ACTIONS(6683), + [anon_sym_CG_EXTERN] = ACTIONS(6683), + [anon_sym_CG_INLINE] = ACTIONS(6683), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6683), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6683), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6683), + [anon_sym_IBOutlet] = ACTIONS(6683), + [anon_sym_IBInspectable] = ACTIONS(6683), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6683), + [anon_sym_NS_INLINE] = ACTIONS(6683), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6683), + [anon_sym_OBJC_EXPORT] = ACTIONS(6683), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6683), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6683), + [anon_sym_const] = ACTIONS(6683), + [anon_sym_constexpr] = ACTIONS(6683), + [anon_sym_volatile] = ACTIONS(6683), + [anon_sym_restrict] = ACTIONS(6683), + [anon_sym___restrict__] = ACTIONS(6683), + [anon_sym__Atomic] = ACTIONS(6683), + [anon_sym__Noreturn] = ACTIONS(6683), + [anon_sym__Nonnull] = ACTIONS(6683), + [anon_sym_nullable] = ACTIONS(6683), + [anon_sym__Complex] = ACTIONS(6683), + [anon_sym__Nullable] = ACTIONS(6683), + [anon_sym__Nullable_result] = ACTIONS(6683), + [anon_sym__Null_unspecified] = ACTIONS(6683), + [anon_sym___autoreleasing] = ACTIONS(6683), + [anon_sym___block] = ACTIONS(6683), + [anon_sym___bridge] = ACTIONS(6683), + [anon_sym___bridge_retained] = ACTIONS(6683), + [anon_sym___bridge_transfer] = ACTIONS(6683), + [anon_sym___complex] = ACTIONS(6683), + [anon_sym___const] = ACTIONS(6683), + [anon_sym___imag] = ACTIONS(6683), + [anon_sym___kindof] = ACTIONS(6683), + [anon_sym___nonnull] = ACTIONS(6683), + [anon_sym___nullable] = ACTIONS(6683), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6683), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6683), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6683), + [anon_sym___real] = ACTIONS(6683), + [anon_sym___strong] = ACTIONS(6683), + [anon_sym___unsafe_unretained] = ACTIONS(6683), + [anon_sym___unused] = ACTIONS(6683), + [anon_sym___weak] = ACTIONS(6683), + [anon_sym_alignas] = ACTIONS(6683), + [anon_sym__Alignas] = ACTIONS(6683), + [sym_primitive_type] = ACTIONS(6683), + [anon_sym_enum] = ACTIONS(6683), + [anon_sym_struct] = ACTIONS(6683), + [anon_sym_union] = ACTIONS(6683), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6683), + [anon_sym___typeof] = ACTIONS(6683), + [anon_sym_typeof] = ACTIONS(6683), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6683), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6683), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6683), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6683), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6683), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6683), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6683), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6683), + [anon_sym_NS_AVAILABLE] = ACTIONS(6683), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6683), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_API_AVAILABLE] = ACTIONS(6683), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_API_DEPRECATED] = ACTIONS(6683), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6683), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6683), + [anon_sym___deprecated_msg] = ACTIONS(6683), + [anon_sym___deprecated_enum_msg] = ACTIONS(6683), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6683), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6683), + [anon_sym_BOOL] = ACTIONS(6683), + [anon_sym_IMP] = ACTIONS(6683), + [anon_sym_SEL] = ACTIONS(6683), + [anon_sym_Class] = ACTIONS(6683), + [anon_sym_id] = ACTIONS(6683), + [anon_sym_ATdefs] = ACTIONS(6685), + }, + [2733] = { + [sym_identifier] = ACTIONS(6687), + [aux_sym_preproc_def_token1] = ACTIONS(6687), + [aux_sym_preproc_if_token1] = ACTIONS(6687), + [aux_sym_preproc_if_token2] = ACTIONS(6687), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6687), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6687), + [sym_preproc_directive] = ACTIONS(6687), + [anon_sym___extension__] = ACTIONS(6687), + [anon_sym_extern] = ACTIONS(6687), + [anon_sym___attribute__] = ACTIONS(6687), + [anon_sym___attribute] = ACTIONS(6687), + [anon_sym_noreturn] = ACTIONS(6687), + [anon_sym_LBRACK] = ACTIONS(6689), + [anon_sym___declspec] = ACTIONS(6687), + [anon_sym_signed] = ACTIONS(6687), + [anon_sym_unsigned] = ACTIONS(6687), + [anon_sym_long] = ACTIONS(6687), + [anon_sym_short] = ACTIONS(6687), + [anon_sym_static] = ACTIONS(6687), + [anon_sym_auto] = ACTIONS(6687), + [anon_sym_register] = ACTIONS(6687), + [anon_sym_inline] = ACTIONS(6687), + [anon_sym___inline] = ACTIONS(6687), + [anon_sym___inline__] = ACTIONS(6687), + [anon_sym___forceinline] = ACTIONS(6687), + [anon_sym_thread_local] = ACTIONS(6687), + [anon_sym___thread] = ACTIONS(6687), + [anon_sym_CG_EXTERN] = ACTIONS(6687), + [anon_sym_CG_INLINE] = ACTIONS(6687), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6687), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6687), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6687), + [anon_sym_IBOutlet] = ACTIONS(6687), + [anon_sym_IBInspectable] = ACTIONS(6687), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6687), + [anon_sym_NS_INLINE] = ACTIONS(6687), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6687), + [anon_sym_OBJC_EXPORT] = ACTIONS(6687), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6687), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6687), + [anon_sym_const] = ACTIONS(6687), + [anon_sym_constexpr] = ACTIONS(6687), + [anon_sym_volatile] = ACTIONS(6687), + [anon_sym_restrict] = ACTIONS(6687), + [anon_sym___restrict__] = ACTIONS(6687), + [anon_sym__Atomic] = ACTIONS(6687), + [anon_sym__Noreturn] = ACTIONS(6687), + [anon_sym__Nonnull] = ACTIONS(6687), + [anon_sym_nullable] = ACTIONS(6687), + [anon_sym__Complex] = ACTIONS(6687), + [anon_sym__Nullable] = ACTIONS(6687), + [anon_sym__Nullable_result] = ACTIONS(6687), + [anon_sym__Null_unspecified] = ACTIONS(6687), + [anon_sym___autoreleasing] = ACTIONS(6687), + [anon_sym___block] = ACTIONS(6687), + [anon_sym___bridge] = ACTIONS(6687), + [anon_sym___bridge_retained] = ACTIONS(6687), + [anon_sym___bridge_transfer] = ACTIONS(6687), + [anon_sym___complex] = ACTIONS(6687), + [anon_sym___const] = ACTIONS(6687), + [anon_sym___imag] = ACTIONS(6687), + [anon_sym___kindof] = ACTIONS(6687), + [anon_sym___nonnull] = ACTIONS(6687), + [anon_sym___nullable] = ACTIONS(6687), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6687), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6687), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6687), + [anon_sym___real] = ACTIONS(6687), + [anon_sym___strong] = ACTIONS(6687), + [anon_sym___unsafe_unretained] = ACTIONS(6687), + [anon_sym___unused] = ACTIONS(6687), + [anon_sym___weak] = ACTIONS(6687), + [anon_sym_alignas] = ACTIONS(6687), + [anon_sym__Alignas] = ACTIONS(6687), + [sym_primitive_type] = ACTIONS(6687), + [anon_sym_enum] = ACTIONS(6687), + [anon_sym_struct] = ACTIONS(6687), + [anon_sym_union] = ACTIONS(6687), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6687), + [anon_sym___typeof] = ACTIONS(6687), + [anon_sym_typeof] = ACTIONS(6687), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6687), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6687), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6687), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6687), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6687), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6687), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6687), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6687), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6687), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6687), + [anon_sym_NS_AVAILABLE] = ACTIONS(6687), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6687), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6687), + [anon_sym_API_AVAILABLE] = ACTIONS(6687), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6687), + [anon_sym_API_DEPRECATED] = ACTIONS(6687), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6687), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6687), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6687), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6687), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6687), + [anon_sym___deprecated_msg] = ACTIONS(6687), + [anon_sym___deprecated_enum_msg] = ACTIONS(6687), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6687), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6687), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6687), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6687), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6687), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6687), + [anon_sym_BOOL] = ACTIONS(6687), + [anon_sym_IMP] = ACTIONS(6687), + [anon_sym_SEL] = ACTIONS(6687), + [anon_sym_Class] = ACTIONS(6687), + [anon_sym_id] = ACTIONS(6687), + [anon_sym_ATdefs] = ACTIONS(6689), + }, + [2734] = { + [sym_identifier] = ACTIONS(6695), + [aux_sym_preproc_def_token1] = ACTIONS(6695), + [aux_sym_preproc_if_token1] = ACTIONS(6695), + [aux_sym_preproc_if_token2] = ACTIONS(6695), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6695), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6695), + [sym_preproc_directive] = ACTIONS(6695), + [anon_sym___extension__] = ACTIONS(6695), + [anon_sym_extern] = ACTIONS(6695), + [anon_sym___attribute__] = ACTIONS(6695), + [anon_sym___attribute] = ACTIONS(6695), + [anon_sym_noreturn] = ACTIONS(6695), + [anon_sym_LBRACK] = ACTIONS(6697), + [anon_sym___declspec] = ACTIONS(6695), + [anon_sym_signed] = ACTIONS(6695), + [anon_sym_unsigned] = ACTIONS(6695), + [anon_sym_long] = ACTIONS(6695), + [anon_sym_short] = ACTIONS(6695), + [anon_sym_static] = ACTIONS(6695), + [anon_sym_auto] = ACTIONS(6695), + [anon_sym_register] = ACTIONS(6695), + [anon_sym_inline] = ACTIONS(6695), + [anon_sym___inline] = ACTIONS(6695), + [anon_sym___inline__] = ACTIONS(6695), + [anon_sym___forceinline] = ACTIONS(6695), + [anon_sym_thread_local] = ACTIONS(6695), + [anon_sym___thread] = ACTIONS(6695), + [anon_sym_CG_EXTERN] = ACTIONS(6695), + [anon_sym_CG_INLINE] = ACTIONS(6695), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6695), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6695), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6695), + [anon_sym_IBOutlet] = ACTIONS(6695), + [anon_sym_IBInspectable] = ACTIONS(6695), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6695), + [anon_sym_NS_INLINE] = ACTIONS(6695), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6695), + [anon_sym_OBJC_EXPORT] = ACTIONS(6695), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6695), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6695), + [anon_sym_const] = ACTIONS(6695), + [anon_sym_constexpr] = ACTIONS(6695), + [anon_sym_volatile] = ACTIONS(6695), + [anon_sym_restrict] = ACTIONS(6695), + [anon_sym___restrict__] = ACTIONS(6695), + [anon_sym__Atomic] = ACTIONS(6695), + [anon_sym__Noreturn] = ACTIONS(6695), + [anon_sym__Nonnull] = ACTIONS(6695), + [anon_sym_nullable] = ACTIONS(6695), + [anon_sym__Complex] = ACTIONS(6695), + [anon_sym__Nullable] = ACTIONS(6695), + [anon_sym__Nullable_result] = ACTIONS(6695), + [anon_sym__Null_unspecified] = ACTIONS(6695), + [anon_sym___autoreleasing] = ACTIONS(6695), + [anon_sym___block] = ACTIONS(6695), + [anon_sym___bridge] = ACTIONS(6695), + [anon_sym___bridge_retained] = ACTIONS(6695), + [anon_sym___bridge_transfer] = ACTIONS(6695), + [anon_sym___complex] = ACTIONS(6695), + [anon_sym___const] = ACTIONS(6695), + [anon_sym___imag] = ACTIONS(6695), + [anon_sym___kindof] = ACTIONS(6695), + [anon_sym___nonnull] = ACTIONS(6695), + [anon_sym___nullable] = ACTIONS(6695), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6695), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6695), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6695), + [anon_sym___real] = ACTIONS(6695), + [anon_sym___strong] = ACTIONS(6695), + [anon_sym___unsafe_unretained] = ACTIONS(6695), + [anon_sym___unused] = ACTIONS(6695), + [anon_sym___weak] = ACTIONS(6695), + [anon_sym_alignas] = ACTIONS(6695), + [anon_sym__Alignas] = ACTIONS(6695), + [sym_primitive_type] = ACTIONS(6695), + [anon_sym_enum] = ACTIONS(6695), + [anon_sym_struct] = ACTIONS(6695), + [anon_sym_union] = ACTIONS(6695), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6695), + [anon_sym___typeof] = ACTIONS(6695), + [anon_sym_typeof] = ACTIONS(6695), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6695), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6695), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6695), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6695), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6695), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6695), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6695), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6695), + [anon_sym_NS_AVAILABLE] = ACTIONS(6695), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6695), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_API_AVAILABLE] = ACTIONS(6695), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_API_DEPRECATED] = ACTIONS(6695), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6695), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6695), + [anon_sym___deprecated_msg] = ACTIONS(6695), + [anon_sym___deprecated_enum_msg] = ACTIONS(6695), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6695), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6695), + [anon_sym_BOOL] = ACTIONS(6695), + [anon_sym_IMP] = ACTIONS(6695), + [anon_sym_SEL] = ACTIONS(6695), + [anon_sym_Class] = ACTIONS(6695), + [anon_sym_id] = ACTIONS(6695), + [anon_sym_ATdefs] = ACTIONS(6697), + }, + [2735] = { + [sym_identifier] = ACTIONS(6695), + [aux_sym_preproc_def_token1] = ACTIONS(6695), + [aux_sym_preproc_if_token1] = ACTIONS(6695), + [aux_sym_preproc_if_token2] = ACTIONS(6695), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6695), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6695), + [sym_preproc_directive] = ACTIONS(6695), + [anon_sym___extension__] = ACTIONS(6695), + [anon_sym_extern] = ACTIONS(6695), + [anon_sym___attribute__] = ACTIONS(6695), + [anon_sym___attribute] = ACTIONS(6695), + [anon_sym_noreturn] = ACTIONS(6695), + [anon_sym_LBRACK] = ACTIONS(6697), + [anon_sym___declspec] = ACTIONS(6695), + [anon_sym_signed] = ACTIONS(6695), + [anon_sym_unsigned] = ACTIONS(6695), + [anon_sym_long] = ACTIONS(6695), + [anon_sym_short] = ACTIONS(6695), + [anon_sym_static] = ACTIONS(6695), + [anon_sym_auto] = ACTIONS(6695), + [anon_sym_register] = ACTIONS(6695), + [anon_sym_inline] = ACTIONS(6695), + [anon_sym___inline] = ACTIONS(6695), + [anon_sym___inline__] = ACTIONS(6695), + [anon_sym___forceinline] = ACTIONS(6695), + [anon_sym_thread_local] = ACTIONS(6695), + [anon_sym___thread] = ACTIONS(6695), + [anon_sym_CG_EXTERN] = ACTIONS(6695), + [anon_sym_CG_INLINE] = ACTIONS(6695), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6695), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6695), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6695), + [anon_sym_IBOutlet] = ACTIONS(6695), + [anon_sym_IBInspectable] = ACTIONS(6695), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6695), + [anon_sym_NS_INLINE] = ACTIONS(6695), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6695), + [anon_sym_OBJC_EXPORT] = ACTIONS(6695), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6695), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6695), + [anon_sym_const] = ACTIONS(6695), + [anon_sym_constexpr] = ACTIONS(6695), + [anon_sym_volatile] = ACTIONS(6695), + [anon_sym_restrict] = ACTIONS(6695), + [anon_sym___restrict__] = ACTIONS(6695), + [anon_sym__Atomic] = ACTIONS(6695), + [anon_sym__Noreturn] = ACTIONS(6695), + [anon_sym__Nonnull] = ACTIONS(6695), + [anon_sym_nullable] = ACTIONS(6695), + [anon_sym__Complex] = ACTIONS(6695), + [anon_sym__Nullable] = ACTIONS(6695), + [anon_sym__Nullable_result] = ACTIONS(6695), + [anon_sym__Null_unspecified] = ACTIONS(6695), + [anon_sym___autoreleasing] = ACTIONS(6695), + [anon_sym___block] = ACTIONS(6695), + [anon_sym___bridge] = ACTIONS(6695), + [anon_sym___bridge_retained] = ACTIONS(6695), + [anon_sym___bridge_transfer] = ACTIONS(6695), + [anon_sym___complex] = ACTIONS(6695), + [anon_sym___const] = ACTIONS(6695), + [anon_sym___imag] = ACTIONS(6695), + [anon_sym___kindof] = ACTIONS(6695), + [anon_sym___nonnull] = ACTIONS(6695), + [anon_sym___nullable] = ACTIONS(6695), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6695), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6695), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6695), + [anon_sym___real] = ACTIONS(6695), + [anon_sym___strong] = ACTIONS(6695), + [anon_sym___unsafe_unretained] = ACTIONS(6695), + [anon_sym___unused] = ACTIONS(6695), + [anon_sym___weak] = ACTIONS(6695), + [anon_sym_alignas] = ACTIONS(6695), + [anon_sym__Alignas] = ACTIONS(6695), + [sym_primitive_type] = ACTIONS(6695), + [anon_sym_enum] = ACTIONS(6695), + [anon_sym_struct] = ACTIONS(6695), + [anon_sym_union] = ACTIONS(6695), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6695), + [anon_sym___typeof] = ACTIONS(6695), + [anon_sym_typeof] = ACTIONS(6695), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6695), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6695), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6695), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6695), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6695), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6695), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6695), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6695), + [anon_sym_NS_AVAILABLE] = ACTIONS(6695), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6695), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_API_AVAILABLE] = ACTIONS(6695), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_API_DEPRECATED] = ACTIONS(6695), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6695), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6695), + [anon_sym___deprecated_msg] = ACTIONS(6695), + [anon_sym___deprecated_enum_msg] = ACTIONS(6695), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6695), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6695), + [anon_sym_BOOL] = ACTIONS(6695), + [anon_sym_IMP] = ACTIONS(6695), + [anon_sym_SEL] = ACTIONS(6695), + [anon_sym_Class] = ACTIONS(6695), + [anon_sym_id] = ACTIONS(6695), + [anon_sym_ATdefs] = ACTIONS(6697), + }, + [2736] = { + [sym_parameter_list] = STATE(2568), + [sym_identifier] = ACTIONS(6827), + [anon_sym_COMMA] = ACTIONS(6829), + [anon_sym_LPAREN2] = ACTIONS(6746), + [anon_sym_SEMI] = ACTIONS(6829), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym_extern] = ACTIONS(6827), + [anon_sym___attribute__] = ACTIONS(6827), + [anon_sym___attribute] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym_LBRACK] = ACTIONS(6748), + [anon_sym___declspec] = ACTIONS(6827), + [anon_sym_LBRACE] = ACTIONS(6829), + [anon_sym_signed] = ACTIONS(6827), + [anon_sym_unsigned] = ACTIONS(6827), + [anon_sym_long] = ACTIONS(6827), + [anon_sym_short] = ACTIONS(6827), + [anon_sym_static] = ACTIONS(6827), + [anon_sym_EQ] = ACTIONS(6829), + [anon_sym_ATautoreleasepool] = ACTIONS(6829), + [anon_sym_auto] = ACTIONS(6827), + [anon_sym_register] = ACTIONS(6827), + [anon_sym_inline] = ACTIONS(6827), + [anon_sym___inline] = ACTIONS(6827), + [anon_sym___inline__] = ACTIONS(6827), + [anon_sym___forceinline] = ACTIONS(6827), + [anon_sym_thread_local] = ACTIONS(6827), + [anon_sym___thread] = ACTIONS(6827), + [anon_sym_CG_EXTERN] = ACTIONS(6827), + [anon_sym_CG_INLINE] = ACTIONS(6827), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6827), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6827), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6827), + [anon_sym_IBOutlet] = ACTIONS(6827), + [anon_sym_IBInspectable] = ACTIONS(6827), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6827), + [anon_sym_NS_INLINE] = ACTIONS(6827), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6827), + [anon_sym_OBJC_EXPORT] = ACTIONS(6827), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6827), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6827), + [anon_sym_const] = ACTIONS(6827), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_nullable] = ACTIONS(6827), + [anon_sym__Complex] = ACTIONS(6827), + [anon_sym__Nullable] = ACTIONS(6827), + [anon_sym__Nullable_result] = ACTIONS(6827), + [anon_sym__Null_unspecified] = ACTIONS(6827), + [anon_sym___autoreleasing] = ACTIONS(6827), + [anon_sym___block] = ACTIONS(6827), + [anon_sym___bridge] = ACTIONS(6827), + [anon_sym___bridge_retained] = ACTIONS(6827), + [anon_sym___bridge_transfer] = ACTIONS(6827), + [anon_sym___complex] = ACTIONS(6827), + [anon_sym___const] = ACTIONS(6827), + [anon_sym___imag] = ACTIONS(6827), + [anon_sym___kindof] = ACTIONS(6827), + [anon_sym___nonnull] = ACTIONS(6827), + [anon_sym___nullable] = ACTIONS(6827), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6827), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6827), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6827), + [anon_sym___real] = ACTIONS(6827), + [anon_sym___strong] = ACTIONS(6827), + [anon_sym___unsafe_unretained] = ACTIONS(6827), + [anon_sym___unused] = ACTIONS(6827), + [anon_sym___weak] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6827), + [anon_sym__Alignas] = ACTIONS(6827), + [sym_primitive_type] = ACTIONS(6827), + [anon_sym_enum] = ACTIONS(6827), + [anon_sym_struct] = ACTIONS(6827), + [anon_sym_union] = ACTIONS(6827), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6827), + [anon_sym___typeof] = ACTIONS(6827), + [anon_sym_typeof] = ACTIONS(6827), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6827), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6827), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6827), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6827), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6827), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6827), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6827), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6827), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6827), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6827), + [anon_sym_NS_AVAILABLE] = ACTIONS(6827), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6827), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6827), + [anon_sym_API_AVAILABLE] = ACTIONS(6827), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6827), + [anon_sym_API_DEPRECATED] = ACTIONS(6827), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6827), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6827), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6827), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6827), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6827), + [anon_sym___deprecated_msg] = ACTIONS(6827), + [anon_sym___deprecated_enum_msg] = ACTIONS(6827), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6827), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6827), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6827), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6827), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6827), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6827), + [anon_sym_BOOL] = ACTIONS(6827), + [anon_sym_IMP] = ACTIONS(6827), + [anon_sym_SEL] = ACTIONS(6827), + [anon_sym_Class] = ACTIONS(6827), + [anon_sym_id] = ACTIONS(6827), + }, + [2737] = { + [sym_identifier] = ACTIONS(6623), + [aux_sym_preproc_def_token1] = ACTIONS(6623), + [aux_sym_preproc_if_token1] = ACTIONS(6623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6623), + [sym_preproc_directive] = ACTIONS(6623), + [anon_sym___extension__] = ACTIONS(6623), + [anon_sym_extern] = ACTIONS(6623), + [anon_sym___attribute__] = ACTIONS(6623), + [anon_sym___attribute] = ACTIONS(6623), + [anon_sym_noreturn] = ACTIONS(6623), + [anon_sym_LBRACK] = ACTIONS(6625), + [anon_sym___declspec] = ACTIONS(6623), + [anon_sym_RBRACE] = ACTIONS(6625), + [anon_sym_signed] = ACTIONS(6623), + [anon_sym_unsigned] = ACTIONS(6623), + [anon_sym_long] = ACTIONS(6623), + [anon_sym_short] = ACTIONS(6623), + [anon_sym_static] = ACTIONS(6623), + [anon_sym_auto] = ACTIONS(6623), + [anon_sym_register] = ACTIONS(6623), + [anon_sym_inline] = ACTIONS(6623), + [anon_sym___inline] = ACTIONS(6623), + [anon_sym___inline__] = ACTIONS(6623), + [anon_sym___forceinline] = ACTIONS(6623), + [anon_sym_thread_local] = ACTIONS(6623), + [anon_sym___thread] = ACTIONS(6623), + [anon_sym_CG_EXTERN] = ACTIONS(6623), + [anon_sym_CG_INLINE] = ACTIONS(6623), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6623), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6623), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6623), + [anon_sym_IBOutlet] = ACTIONS(6623), + [anon_sym_IBInspectable] = ACTIONS(6623), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6623), + [anon_sym_NS_INLINE] = ACTIONS(6623), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6623), + [anon_sym_OBJC_EXPORT] = ACTIONS(6623), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6623), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6623), + [anon_sym_const] = ACTIONS(6623), + [anon_sym_constexpr] = ACTIONS(6623), + [anon_sym_volatile] = ACTIONS(6623), + [anon_sym_restrict] = ACTIONS(6623), + [anon_sym___restrict__] = ACTIONS(6623), + [anon_sym__Atomic] = ACTIONS(6623), + [anon_sym__Noreturn] = ACTIONS(6623), + [anon_sym__Nonnull] = ACTIONS(6623), + [anon_sym_nullable] = ACTIONS(6623), + [anon_sym__Complex] = ACTIONS(6623), + [anon_sym__Nullable] = ACTIONS(6623), + [anon_sym__Nullable_result] = ACTIONS(6623), + [anon_sym__Null_unspecified] = ACTIONS(6623), + [anon_sym___autoreleasing] = ACTIONS(6623), + [anon_sym___block] = ACTIONS(6623), + [anon_sym___bridge] = ACTIONS(6623), + [anon_sym___bridge_retained] = ACTIONS(6623), + [anon_sym___bridge_transfer] = ACTIONS(6623), + [anon_sym___complex] = ACTIONS(6623), + [anon_sym___const] = ACTIONS(6623), + [anon_sym___imag] = ACTIONS(6623), + [anon_sym___kindof] = ACTIONS(6623), + [anon_sym___nonnull] = ACTIONS(6623), + [anon_sym___nullable] = ACTIONS(6623), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6623), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6623), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6623), + [anon_sym___real] = ACTIONS(6623), + [anon_sym___strong] = ACTIONS(6623), + [anon_sym___unsafe_unretained] = ACTIONS(6623), + [anon_sym___unused] = ACTIONS(6623), + [anon_sym___weak] = ACTIONS(6623), + [anon_sym_alignas] = ACTIONS(6623), + [anon_sym__Alignas] = ACTIONS(6623), + [sym_primitive_type] = ACTIONS(6623), + [anon_sym_enum] = ACTIONS(6623), + [anon_sym_struct] = ACTIONS(6623), + [anon_sym_union] = ACTIONS(6623), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6623), + [anon_sym___typeof] = ACTIONS(6623), + [anon_sym_typeof] = ACTIONS(6623), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6623), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6623), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6623), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6623), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6623), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6623), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6623), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6623), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6623), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6623), + [anon_sym_NS_AVAILABLE] = ACTIONS(6623), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6623), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6623), + [anon_sym_API_AVAILABLE] = ACTIONS(6623), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6623), + [anon_sym_API_DEPRECATED] = ACTIONS(6623), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6623), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6623), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6623), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6623), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6623), + [anon_sym___deprecated_msg] = ACTIONS(6623), + [anon_sym___deprecated_enum_msg] = ACTIONS(6623), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6623), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6623), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6623), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6623), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6623), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6623), + [anon_sym_BOOL] = ACTIONS(6623), + [anon_sym_IMP] = ACTIONS(6623), + [anon_sym_SEL] = ACTIONS(6623), + [anon_sym_Class] = ACTIONS(6623), + [anon_sym_id] = ACTIONS(6623), + [anon_sym_ATdefs] = ACTIONS(6625), + }, + [2738] = { + [sym_identifier] = ACTIONS(6623), + [aux_sym_preproc_def_token1] = ACTIONS(6623), + [aux_sym_preproc_if_token1] = ACTIONS(6623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6623), + [sym_preproc_directive] = ACTIONS(6623), + [anon_sym___extension__] = ACTIONS(6623), + [anon_sym_extern] = ACTIONS(6623), + [anon_sym___attribute__] = ACTIONS(6623), + [anon_sym___attribute] = ACTIONS(6623), + [anon_sym_noreturn] = ACTIONS(6623), + [anon_sym_LBRACK] = ACTIONS(6625), + [anon_sym___declspec] = ACTIONS(6623), + [anon_sym_RBRACE] = ACTIONS(6625), + [anon_sym_signed] = ACTIONS(6623), + [anon_sym_unsigned] = ACTIONS(6623), + [anon_sym_long] = ACTIONS(6623), + [anon_sym_short] = ACTIONS(6623), + [anon_sym_static] = ACTIONS(6623), + [anon_sym_auto] = ACTIONS(6623), + [anon_sym_register] = ACTIONS(6623), + [anon_sym_inline] = ACTIONS(6623), + [anon_sym___inline] = ACTIONS(6623), + [anon_sym___inline__] = ACTIONS(6623), + [anon_sym___forceinline] = ACTIONS(6623), + [anon_sym_thread_local] = ACTIONS(6623), + [anon_sym___thread] = ACTIONS(6623), + [anon_sym_CG_EXTERN] = ACTIONS(6623), + [anon_sym_CG_INLINE] = ACTIONS(6623), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6623), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6623), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6623), + [anon_sym_IBOutlet] = ACTIONS(6623), + [anon_sym_IBInspectable] = ACTIONS(6623), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6623), + [anon_sym_NS_INLINE] = ACTIONS(6623), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6623), + [anon_sym_OBJC_EXPORT] = ACTIONS(6623), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6623), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6623), + [anon_sym_const] = ACTIONS(6623), + [anon_sym_constexpr] = ACTIONS(6623), + [anon_sym_volatile] = ACTIONS(6623), + [anon_sym_restrict] = ACTIONS(6623), + [anon_sym___restrict__] = ACTIONS(6623), + [anon_sym__Atomic] = ACTIONS(6623), + [anon_sym__Noreturn] = ACTIONS(6623), + [anon_sym__Nonnull] = ACTIONS(6623), + [anon_sym_nullable] = ACTIONS(6623), + [anon_sym__Complex] = ACTIONS(6623), + [anon_sym__Nullable] = ACTIONS(6623), + [anon_sym__Nullable_result] = ACTIONS(6623), + [anon_sym__Null_unspecified] = ACTIONS(6623), + [anon_sym___autoreleasing] = ACTIONS(6623), + [anon_sym___block] = ACTIONS(6623), + [anon_sym___bridge] = ACTIONS(6623), + [anon_sym___bridge_retained] = ACTIONS(6623), + [anon_sym___bridge_transfer] = ACTIONS(6623), + [anon_sym___complex] = ACTIONS(6623), + [anon_sym___const] = ACTIONS(6623), + [anon_sym___imag] = ACTIONS(6623), + [anon_sym___kindof] = ACTIONS(6623), + [anon_sym___nonnull] = ACTIONS(6623), + [anon_sym___nullable] = ACTIONS(6623), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6623), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6623), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6623), + [anon_sym___real] = ACTIONS(6623), + [anon_sym___strong] = ACTIONS(6623), + [anon_sym___unsafe_unretained] = ACTIONS(6623), + [anon_sym___unused] = ACTIONS(6623), + [anon_sym___weak] = ACTIONS(6623), + [anon_sym_alignas] = ACTIONS(6623), + [anon_sym__Alignas] = ACTIONS(6623), + [sym_primitive_type] = ACTIONS(6623), + [anon_sym_enum] = ACTIONS(6623), + [anon_sym_struct] = ACTIONS(6623), + [anon_sym_union] = ACTIONS(6623), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6623), + [anon_sym___typeof] = ACTIONS(6623), + [anon_sym_typeof] = ACTIONS(6623), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6623), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6623), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6623), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6623), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6623), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6623), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6623), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6623), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6623), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6623), + [anon_sym_NS_AVAILABLE] = ACTIONS(6623), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6623), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6623), + [anon_sym_API_AVAILABLE] = ACTIONS(6623), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6623), + [anon_sym_API_DEPRECATED] = ACTIONS(6623), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6623), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6623), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6623), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6623), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6623), + [anon_sym___deprecated_msg] = ACTIONS(6623), + [anon_sym___deprecated_enum_msg] = ACTIONS(6623), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6623), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6623), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6623), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6623), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6623), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6623), + [anon_sym_BOOL] = ACTIONS(6623), + [anon_sym_IMP] = ACTIONS(6623), + [anon_sym_SEL] = ACTIONS(6623), + [anon_sym_Class] = ACTIONS(6623), + [anon_sym_id] = ACTIONS(6623), + [anon_sym_ATdefs] = ACTIONS(6625), + }, + [2739] = { + [sym_identifier] = ACTIONS(6707), + [aux_sym_preproc_def_token1] = ACTIONS(6707), + [aux_sym_preproc_if_token1] = ACTIONS(6707), + [aux_sym_preproc_if_token2] = ACTIONS(6707), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6707), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6707), + [sym_preproc_directive] = ACTIONS(6707), + [anon_sym___extension__] = ACTIONS(6707), + [anon_sym_extern] = ACTIONS(6707), + [anon_sym___attribute__] = ACTIONS(6707), + [anon_sym___attribute] = ACTIONS(6707), + [anon_sym_noreturn] = ACTIONS(6707), + [anon_sym_LBRACK] = ACTIONS(6709), + [anon_sym___declspec] = ACTIONS(6707), + [anon_sym_signed] = ACTIONS(6707), + [anon_sym_unsigned] = ACTIONS(6707), + [anon_sym_long] = ACTIONS(6707), + [anon_sym_short] = ACTIONS(6707), + [anon_sym_static] = ACTIONS(6707), + [anon_sym_auto] = ACTIONS(6707), + [anon_sym_register] = ACTIONS(6707), + [anon_sym_inline] = ACTIONS(6707), + [anon_sym___inline] = ACTIONS(6707), + [anon_sym___inline__] = ACTIONS(6707), + [anon_sym___forceinline] = ACTIONS(6707), + [anon_sym_thread_local] = ACTIONS(6707), + [anon_sym___thread] = ACTIONS(6707), + [anon_sym_CG_EXTERN] = ACTIONS(6707), + [anon_sym_CG_INLINE] = ACTIONS(6707), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6707), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6707), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6707), + [anon_sym_IBOutlet] = ACTIONS(6707), + [anon_sym_IBInspectable] = ACTIONS(6707), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6707), + [anon_sym_NS_INLINE] = ACTIONS(6707), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6707), + [anon_sym_OBJC_EXPORT] = ACTIONS(6707), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6707), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6707), + [anon_sym_const] = ACTIONS(6707), + [anon_sym_constexpr] = ACTIONS(6707), + [anon_sym_volatile] = ACTIONS(6707), + [anon_sym_restrict] = ACTIONS(6707), + [anon_sym___restrict__] = ACTIONS(6707), + [anon_sym__Atomic] = ACTIONS(6707), + [anon_sym__Noreturn] = ACTIONS(6707), + [anon_sym__Nonnull] = ACTIONS(6707), + [anon_sym_nullable] = ACTIONS(6707), + [anon_sym__Complex] = ACTIONS(6707), + [anon_sym__Nullable] = ACTIONS(6707), + [anon_sym__Nullable_result] = ACTIONS(6707), + [anon_sym__Null_unspecified] = ACTIONS(6707), + [anon_sym___autoreleasing] = ACTIONS(6707), + [anon_sym___block] = ACTIONS(6707), + [anon_sym___bridge] = ACTIONS(6707), + [anon_sym___bridge_retained] = ACTIONS(6707), + [anon_sym___bridge_transfer] = ACTIONS(6707), + [anon_sym___complex] = ACTIONS(6707), + [anon_sym___const] = ACTIONS(6707), + [anon_sym___imag] = ACTIONS(6707), + [anon_sym___kindof] = ACTIONS(6707), + [anon_sym___nonnull] = ACTIONS(6707), + [anon_sym___nullable] = ACTIONS(6707), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6707), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6707), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6707), + [anon_sym___real] = ACTIONS(6707), + [anon_sym___strong] = ACTIONS(6707), + [anon_sym___unsafe_unretained] = ACTIONS(6707), + [anon_sym___unused] = ACTIONS(6707), + [anon_sym___weak] = ACTIONS(6707), + [anon_sym_alignas] = ACTIONS(6707), + [anon_sym__Alignas] = ACTIONS(6707), + [sym_primitive_type] = ACTIONS(6707), + [anon_sym_enum] = ACTIONS(6707), + [anon_sym_struct] = ACTIONS(6707), + [anon_sym_union] = ACTIONS(6707), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6707), + [anon_sym___typeof] = ACTIONS(6707), + [anon_sym_typeof] = ACTIONS(6707), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6707), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6707), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6707), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6707), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6707), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6707), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6707), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6707), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6707), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6707), + [anon_sym_NS_AVAILABLE] = ACTIONS(6707), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6707), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6707), + [anon_sym_API_AVAILABLE] = ACTIONS(6707), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6707), + [anon_sym_API_DEPRECATED] = ACTIONS(6707), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6707), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6707), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6707), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6707), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6707), + [anon_sym___deprecated_msg] = ACTIONS(6707), + [anon_sym___deprecated_enum_msg] = ACTIONS(6707), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6707), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6707), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6707), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6707), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6707), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6707), + [anon_sym_BOOL] = ACTIONS(6707), + [anon_sym_IMP] = ACTIONS(6707), + [anon_sym_SEL] = ACTIONS(6707), + [anon_sym_Class] = ACTIONS(6707), + [anon_sym_id] = ACTIONS(6707), + [anon_sym_ATdefs] = ACTIONS(6709), + }, + [2740] = { + [sym_identifier] = ACTIONS(6611), + [aux_sym_preproc_def_token1] = ACTIONS(6611), + [aux_sym_preproc_if_token1] = ACTIONS(6611), + [aux_sym_preproc_if_token2] = ACTIONS(6611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6611), + [sym_preproc_directive] = ACTIONS(6611), + [anon_sym___extension__] = ACTIONS(6611), + [anon_sym_extern] = ACTIONS(6611), + [anon_sym___attribute__] = ACTIONS(6611), + [anon_sym___attribute] = ACTIONS(6611), + [anon_sym_noreturn] = ACTIONS(6611), + [anon_sym_LBRACK] = ACTIONS(6613), + [anon_sym___declspec] = ACTIONS(6611), + [anon_sym_signed] = ACTIONS(6611), + [anon_sym_unsigned] = ACTIONS(6611), + [anon_sym_long] = ACTIONS(6611), + [anon_sym_short] = ACTIONS(6611), + [anon_sym_static] = ACTIONS(6611), + [anon_sym_auto] = ACTIONS(6611), + [anon_sym_register] = ACTIONS(6611), + [anon_sym_inline] = ACTIONS(6611), + [anon_sym___inline] = ACTIONS(6611), + [anon_sym___inline__] = ACTIONS(6611), + [anon_sym___forceinline] = ACTIONS(6611), + [anon_sym_thread_local] = ACTIONS(6611), + [anon_sym___thread] = ACTIONS(6611), + [anon_sym_CG_EXTERN] = ACTIONS(6611), + [anon_sym_CG_INLINE] = ACTIONS(6611), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6611), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6611), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6611), + [anon_sym_IBOutlet] = ACTIONS(6611), + [anon_sym_IBInspectable] = ACTIONS(6611), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6611), + [anon_sym_NS_INLINE] = ACTIONS(6611), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6611), + [anon_sym_OBJC_EXPORT] = ACTIONS(6611), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6611), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6611), + [anon_sym_const] = ACTIONS(6611), + [anon_sym_constexpr] = ACTIONS(6611), + [anon_sym_volatile] = ACTIONS(6611), + [anon_sym_restrict] = ACTIONS(6611), + [anon_sym___restrict__] = ACTIONS(6611), + [anon_sym__Atomic] = ACTIONS(6611), + [anon_sym__Noreturn] = ACTIONS(6611), + [anon_sym__Nonnull] = ACTIONS(6611), + [anon_sym_nullable] = ACTIONS(6611), + [anon_sym__Complex] = ACTIONS(6611), + [anon_sym__Nullable] = ACTIONS(6611), + [anon_sym__Nullable_result] = ACTIONS(6611), + [anon_sym__Null_unspecified] = ACTIONS(6611), + [anon_sym___autoreleasing] = ACTIONS(6611), + [anon_sym___block] = ACTIONS(6611), + [anon_sym___bridge] = ACTIONS(6611), + [anon_sym___bridge_retained] = ACTIONS(6611), + [anon_sym___bridge_transfer] = ACTIONS(6611), + [anon_sym___complex] = ACTIONS(6611), + [anon_sym___const] = ACTIONS(6611), + [anon_sym___imag] = ACTIONS(6611), + [anon_sym___kindof] = ACTIONS(6611), + [anon_sym___nonnull] = ACTIONS(6611), + [anon_sym___nullable] = ACTIONS(6611), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6611), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6611), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6611), + [anon_sym___real] = ACTIONS(6611), + [anon_sym___strong] = ACTIONS(6611), + [anon_sym___unsafe_unretained] = ACTIONS(6611), + [anon_sym___unused] = ACTIONS(6611), + [anon_sym___weak] = ACTIONS(6611), + [anon_sym_alignas] = ACTIONS(6611), + [anon_sym__Alignas] = ACTIONS(6611), + [sym_primitive_type] = ACTIONS(6611), + [anon_sym_enum] = ACTIONS(6611), + [anon_sym_struct] = ACTIONS(6611), + [anon_sym_union] = ACTIONS(6611), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6611), + [anon_sym___typeof] = ACTIONS(6611), + [anon_sym_typeof] = ACTIONS(6611), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6611), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6611), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6611), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6611), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6611), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6611), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6611), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6611), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6611), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6611), + [anon_sym_NS_AVAILABLE] = ACTIONS(6611), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6611), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6611), + [anon_sym_API_AVAILABLE] = ACTIONS(6611), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6611), + [anon_sym_API_DEPRECATED] = ACTIONS(6611), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6611), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6611), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6611), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6611), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6611), + [anon_sym___deprecated_msg] = ACTIONS(6611), + [anon_sym___deprecated_enum_msg] = ACTIONS(6611), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6611), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6611), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6611), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6611), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6611), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6611), + [anon_sym_BOOL] = ACTIONS(6611), + [anon_sym_IMP] = ACTIONS(6611), + [anon_sym_SEL] = ACTIONS(6611), + [anon_sym_Class] = ACTIONS(6611), + [anon_sym_id] = ACTIONS(6611), + [anon_sym_ATdefs] = ACTIONS(6613), + }, + [2741] = { + [sym_identifier] = ACTIONS(6615), + [aux_sym_preproc_def_token1] = ACTIONS(6615), + [aux_sym_preproc_if_token1] = ACTIONS(6615), + [aux_sym_preproc_if_token2] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6615), + [sym_preproc_directive] = ACTIONS(6615), + [anon_sym___extension__] = ACTIONS(6615), + [anon_sym_extern] = ACTIONS(6615), + [anon_sym___attribute__] = ACTIONS(6615), + [anon_sym___attribute] = ACTIONS(6615), + [anon_sym_noreturn] = ACTIONS(6615), + [anon_sym_LBRACK] = ACTIONS(6617), + [anon_sym___declspec] = ACTIONS(6615), + [anon_sym_signed] = ACTIONS(6615), + [anon_sym_unsigned] = ACTIONS(6615), + [anon_sym_long] = ACTIONS(6615), + [anon_sym_short] = ACTIONS(6615), + [anon_sym_static] = ACTIONS(6615), + [anon_sym_auto] = ACTIONS(6615), + [anon_sym_register] = ACTIONS(6615), + [anon_sym_inline] = ACTIONS(6615), + [anon_sym___inline] = ACTIONS(6615), + [anon_sym___inline__] = ACTIONS(6615), + [anon_sym___forceinline] = ACTIONS(6615), + [anon_sym_thread_local] = ACTIONS(6615), + [anon_sym___thread] = ACTIONS(6615), + [anon_sym_CG_EXTERN] = ACTIONS(6615), + [anon_sym_CG_INLINE] = ACTIONS(6615), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6615), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6615), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6615), + [anon_sym_IBOutlet] = ACTIONS(6615), + [anon_sym_IBInspectable] = ACTIONS(6615), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6615), + [anon_sym_NS_INLINE] = ACTIONS(6615), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6615), + [anon_sym_OBJC_EXPORT] = ACTIONS(6615), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6615), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6615), + [anon_sym_const] = ACTIONS(6615), + [anon_sym_constexpr] = ACTIONS(6615), + [anon_sym_volatile] = ACTIONS(6615), + [anon_sym_restrict] = ACTIONS(6615), + [anon_sym___restrict__] = ACTIONS(6615), + [anon_sym__Atomic] = ACTIONS(6615), + [anon_sym__Noreturn] = ACTIONS(6615), + [anon_sym__Nonnull] = ACTIONS(6615), + [anon_sym_nullable] = ACTIONS(6615), + [anon_sym__Complex] = ACTIONS(6615), + [anon_sym__Nullable] = ACTIONS(6615), + [anon_sym__Nullable_result] = ACTIONS(6615), + [anon_sym__Null_unspecified] = ACTIONS(6615), + [anon_sym___autoreleasing] = ACTIONS(6615), + [anon_sym___block] = ACTIONS(6615), + [anon_sym___bridge] = ACTIONS(6615), + [anon_sym___bridge_retained] = ACTIONS(6615), + [anon_sym___bridge_transfer] = ACTIONS(6615), + [anon_sym___complex] = ACTIONS(6615), + [anon_sym___const] = ACTIONS(6615), + [anon_sym___imag] = ACTIONS(6615), + [anon_sym___kindof] = ACTIONS(6615), + [anon_sym___nonnull] = ACTIONS(6615), + [anon_sym___nullable] = ACTIONS(6615), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6615), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6615), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6615), + [anon_sym___real] = ACTIONS(6615), + [anon_sym___strong] = ACTIONS(6615), + [anon_sym___unsafe_unretained] = ACTIONS(6615), + [anon_sym___unused] = ACTIONS(6615), + [anon_sym___weak] = ACTIONS(6615), + [anon_sym_alignas] = ACTIONS(6615), + [anon_sym__Alignas] = ACTIONS(6615), + [sym_primitive_type] = ACTIONS(6615), + [anon_sym_enum] = ACTIONS(6615), + [anon_sym_struct] = ACTIONS(6615), + [anon_sym_union] = ACTIONS(6615), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6615), + [anon_sym___typeof] = ACTIONS(6615), + [anon_sym_typeof] = ACTIONS(6615), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6615), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6615), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6615), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6615), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6615), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6615), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6615), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6615), + [anon_sym_NS_AVAILABLE] = ACTIONS(6615), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6615), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_API_AVAILABLE] = ACTIONS(6615), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_API_DEPRECATED] = ACTIONS(6615), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6615), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6615), + [anon_sym___deprecated_msg] = ACTIONS(6615), + [anon_sym___deprecated_enum_msg] = ACTIONS(6615), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6615), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6615), + [anon_sym_BOOL] = ACTIONS(6615), + [anon_sym_IMP] = ACTIONS(6615), + [anon_sym_SEL] = ACTIONS(6615), + [anon_sym_Class] = ACTIONS(6615), + [anon_sym_id] = ACTIONS(6615), + [anon_sym_ATdefs] = ACTIONS(6617), + }, + [2742] = { + [sym_identifier] = ACTIONS(6615), + [aux_sym_preproc_def_token1] = ACTIONS(6615), + [aux_sym_preproc_if_token1] = ACTIONS(6615), + [aux_sym_preproc_if_token2] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6615), + [sym_preproc_directive] = ACTIONS(6615), + [anon_sym___extension__] = ACTIONS(6615), + [anon_sym_extern] = ACTIONS(6615), + [anon_sym___attribute__] = ACTIONS(6615), + [anon_sym___attribute] = ACTIONS(6615), + [anon_sym_noreturn] = ACTIONS(6615), + [anon_sym_LBRACK] = ACTIONS(6617), + [anon_sym___declspec] = ACTIONS(6615), + [anon_sym_signed] = ACTIONS(6615), + [anon_sym_unsigned] = ACTIONS(6615), + [anon_sym_long] = ACTIONS(6615), + [anon_sym_short] = ACTIONS(6615), + [anon_sym_static] = ACTIONS(6615), + [anon_sym_auto] = ACTIONS(6615), + [anon_sym_register] = ACTIONS(6615), + [anon_sym_inline] = ACTIONS(6615), + [anon_sym___inline] = ACTIONS(6615), + [anon_sym___inline__] = ACTIONS(6615), + [anon_sym___forceinline] = ACTIONS(6615), + [anon_sym_thread_local] = ACTIONS(6615), + [anon_sym___thread] = ACTIONS(6615), + [anon_sym_CG_EXTERN] = ACTIONS(6615), + [anon_sym_CG_INLINE] = ACTIONS(6615), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6615), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6615), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6615), + [anon_sym_IBOutlet] = ACTIONS(6615), + [anon_sym_IBInspectable] = ACTIONS(6615), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6615), + [anon_sym_NS_INLINE] = ACTIONS(6615), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6615), + [anon_sym_OBJC_EXPORT] = ACTIONS(6615), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6615), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6615), + [anon_sym_const] = ACTIONS(6615), + [anon_sym_constexpr] = ACTIONS(6615), + [anon_sym_volatile] = ACTIONS(6615), + [anon_sym_restrict] = ACTIONS(6615), + [anon_sym___restrict__] = ACTIONS(6615), + [anon_sym__Atomic] = ACTIONS(6615), + [anon_sym__Noreturn] = ACTIONS(6615), + [anon_sym__Nonnull] = ACTIONS(6615), + [anon_sym_nullable] = ACTIONS(6615), + [anon_sym__Complex] = ACTIONS(6615), + [anon_sym__Nullable] = ACTIONS(6615), + [anon_sym__Nullable_result] = ACTIONS(6615), + [anon_sym__Null_unspecified] = ACTIONS(6615), + [anon_sym___autoreleasing] = ACTIONS(6615), + [anon_sym___block] = ACTIONS(6615), + [anon_sym___bridge] = ACTIONS(6615), + [anon_sym___bridge_retained] = ACTIONS(6615), + [anon_sym___bridge_transfer] = ACTIONS(6615), + [anon_sym___complex] = ACTIONS(6615), + [anon_sym___const] = ACTIONS(6615), + [anon_sym___imag] = ACTIONS(6615), + [anon_sym___kindof] = ACTIONS(6615), + [anon_sym___nonnull] = ACTIONS(6615), + [anon_sym___nullable] = ACTIONS(6615), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6615), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6615), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6615), + [anon_sym___real] = ACTIONS(6615), + [anon_sym___strong] = ACTIONS(6615), + [anon_sym___unsafe_unretained] = ACTIONS(6615), + [anon_sym___unused] = ACTIONS(6615), + [anon_sym___weak] = ACTIONS(6615), + [anon_sym_alignas] = ACTIONS(6615), + [anon_sym__Alignas] = ACTIONS(6615), + [sym_primitive_type] = ACTIONS(6615), + [anon_sym_enum] = ACTIONS(6615), + [anon_sym_struct] = ACTIONS(6615), + [anon_sym_union] = ACTIONS(6615), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6615), + [anon_sym___typeof] = ACTIONS(6615), + [anon_sym_typeof] = ACTIONS(6615), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6615), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6615), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6615), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6615), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6615), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6615), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6615), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6615), + [anon_sym_NS_AVAILABLE] = ACTIONS(6615), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6615), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_API_AVAILABLE] = ACTIONS(6615), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_API_DEPRECATED] = ACTIONS(6615), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6615), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6615), + [anon_sym___deprecated_msg] = ACTIONS(6615), + [anon_sym___deprecated_enum_msg] = ACTIONS(6615), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6615), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6615), + [anon_sym_BOOL] = ACTIONS(6615), + [anon_sym_IMP] = ACTIONS(6615), + [anon_sym_SEL] = ACTIONS(6615), + [anon_sym_Class] = ACTIONS(6615), + [anon_sym_id] = ACTIONS(6615), + [anon_sym_ATdefs] = ACTIONS(6617), + }, + [2743] = { + [sym_identifier] = ACTIONS(6619), + [aux_sym_preproc_def_token1] = ACTIONS(6619), + [aux_sym_preproc_if_token1] = ACTIONS(6619), + [aux_sym_preproc_if_token2] = ACTIONS(6619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6619), + [sym_preproc_directive] = ACTIONS(6619), + [anon_sym___extension__] = ACTIONS(6619), + [anon_sym_extern] = ACTIONS(6619), + [anon_sym___attribute__] = ACTIONS(6619), + [anon_sym___attribute] = ACTIONS(6619), + [anon_sym_noreturn] = ACTIONS(6619), + [anon_sym_LBRACK] = ACTIONS(6621), + [anon_sym___declspec] = ACTIONS(6619), + [anon_sym_signed] = ACTIONS(6619), + [anon_sym_unsigned] = ACTIONS(6619), + [anon_sym_long] = ACTIONS(6619), + [anon_sym_short] = ACTIONS(6619), + [anon_sym_static] = ACTIONS(6619), + [anon_sym_auto] = ACTIONS(6619), + [anon_sym_register] = ACTIONS(6619), + [anon_sym_inline] = ACTIONS(6619), + [anon_sym___inline] = ACTIONS(6619), + [anon_sym___inline__] = ACTIONS(6619), + [anon_sym___forceinline] = ACTIONS(6619), + [anon_sym_thread_local] = ACTIONS(6619), + [anon_sym___thread] = ACTIONS(6619), + [anon_sym_CG_EXTERN] = ACTIONS(6619), + [anon_sym_CG_INLINE] = ACTIONS(6619), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6619), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6619), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6619), + [anon_sym_IBOutlet] = ACTIONS(6619), + [anon_sym_IBInspectable] = ACTIONS(6619), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6619), + [anon_sym_NS_INLINE] = ACTIONS(6619), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6619), + [anon_sym_OBJC_EXPORT] = ACTIONS(6619), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6619), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6619), + [anon_sym_const] = ACTIONS(6619), + [anon_sym_constexpr] = ACTIONS(6619), + [anon_sym_volatile] = ACTIONS(6619), + [anon_sym_restrict] = ACTIONS(6619), + [anon_sym___restrict__] = ACTIONS(6619), + [anon_sym__Atomic] = ACTIONS(6619), + [anon_sym__Noreturn] = ACTIONS(6619), + [anon_sym__Nonnull] = ACTIONS(6619), + [anon_sym_nullable] = ACTIONS(6619), + [anon_sym__Complex] = ACTIONS(6619), + [anon_sym__Nullable] = ACTIONS(6619), + [anon_sym__Nullable_result] = ACTIONS(6619), + [anon_sym__Null_unspecified] = ACTIONS(6619), + [anon_sym___autoreleasing] = ACTIONS(6619), + [anon_sym___block] = ACTIONS(6619), + [anon_sym___bridge] = ACTIONS(6619), + [anon_sym___bridge_retained] = ACTIONS(6619), + [anon_sym___bridge_transfer] = ACTIONS(6619), + [anon_sym___complex] = ACTIONS(6619), + [anon_sym___const] = ACTIONS(6619), + [anon_sym___imag] = ACTIONS(6619), + [anon_sym___kindof] = ACTIONS(6619), + [anon_sym___nonnull] = ACTIONS(6619), + [anon_sym___nullable] = ACTIONS(6619), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6619), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6619), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6619), + [anon_sym___real] = ACTIONS(6619), + [anon_sym___strong] = ACTIONS(6619), + [anon_sym___unsafe_unretained] = ACTIONS(6619), + [anon_sym___unused] = ACTIONS(6619), + [anon_sym___weak] = ACTIONS(6619), + [anon_sym_alignas] = ACTIONS(6619), + [anon_sym__Alignas] = ACTIONS(6619), + [sym_primitive_type] = ACTIONS(6619), + [anon_sym_enum] = ACTIONS(6619), + [anon_sym_struct] = ACTIONS(6619), + [anon_sym_union] = ACTIONS(6619), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6619), + [anon_sym___typeof] = ACTIONS(6619), + [anon_sym_typeof] = ACTIONS(6619), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6619), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6619), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6619), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6619), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6619), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6619), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6619), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6619), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6619), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6619), + [anon_sym_NS_AVAILABLE] = ACTIONS(6619), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6619), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6619), + [anon_sym_API_AVAILABLE] = ACTIONS(6619), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6619), + [anon_sym_API_DEPRECATED] = ACTIONS(6619), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6619), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6619), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6619), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6619), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6619), + [anon_sym___deprecated_msg] = ACTIONS(6619), + [anon_sym___deprecated_enum_msg] = ACTIONS(6619), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6619), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6619), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6619), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6619), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6619), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6619), + [anon_sym_BOOL] = ACTIONS(6619), + [anon_sym_IMP] = ACTIONS(6619), + [anon_sym_SEL] = ACTIONS(6619), + [anon_sym_Class] = ACTIONS(6619), + [anon_sym_id] = ACTIONS(6619), + [anon_sym_ATdefs] = ACTIONS(6621), + }, + [2744] = { + [sym_identifier] = ACTIONS(6611), + [aux_sym_preproc_def_token1] = ACTIONS(6611), + [aux_sym_preproc_if_token1] = ACTIONS(6611), + [aux_sym_preproc_if_token2] = ACTIONS(6611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6611), + [sym_preproc_directive] = ACTIONS(6611), + [anon_sym___extension__] = ACTIONS(6611), + [anon_sym_extern] = ACTIONS(6611), + [anon_sym___attribute__] = ACTIONS(6611), + [anon_sym___attribute] = ACTIONS(6611), + [anon_sym_noreturn] = ACTIONS(6611), + [anon_sym_LBRACK] = ACTIONS(6613), + [anon_sym___declspec] = ACTIONS(6611), + [anon_sym_signed] = ACTIONS(6611), + [anon_sym_unsigned] = ACTIONS(6611), + [anon_sym_long] = ACTIONS(6611), + [anon_sym_short] = ACTIONS(6611), + [anon_sym_static] = ACTIONS(6611), + [anon_sym_auto] = ACTIONS(6611), + [anon_sym_register] = ACTIONS(6611), + [anon_sym_inline] = ACTIONS(6611), + [anon_sym___inline] = ACTIONS(6611), + [anon_sym___inline__] = ACTIONS(6611), + [anon_sym___forceinline] = ACTIONS(6611), + [anon_sym_thread_local] = ACTIONS(6611), + [anon_sym___thread] = ACTIONS(6611), + [anon_sym_CG_EXTERN] = ACTIONS(6611), + [anon_sym_CG_INLINE] = ACTIONS(6611), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6611), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6611), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6611), + [anon_sym_IBOutlet] = ACTIONS(6611), + [anon_sym_IBInspectable] = ACTIONS(6611), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6611), + [anon_sym_NS_INLINE] = ACTIONS(6611), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6611), + [anon_sym_OBJC_EXPORT] = ACTIONS(6611), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6611), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6611), + [anon_sym_const] = ACTIONS(6611), + [anon_sym_constexpr] = ACTIONS(6611), + [anon_sym_volatile] = ACTIONS(6611), + [anon_sym_restrict] = ACTIONS(6611), + [anon_sym___restrict__] = ACTIONS(6611), + [anon_sym__Atomic] = ACTIONS(6611), + [anon_sym__Noreturn] = ACTIONS(6611), + [anon_sym__Nonnull] = ACTIONS(6611), + [anon_sym_nullable] = ACTIONS(6611), + [anon_sym__Complex] = ACTIONS(6611), + [anon_sym__Nullable] = ACTIONS(6611), + [anon_sym__Nullable_result] = ACTIONS(6611), + [anon_sym__Null_unspecified] = ACTIONS(6611), + [anon_sym___autoreleasing] = ACTIONS(6611), + [anon_sym___block] = ACTIONS(6611), + [anon_sym___bridge] = ACTIONS(6611), + [anon_sym___bridge_retained] = ACTIONS(6611), + [anon_sym___bridge_transfer] = ACTIONS(6611), + [anon_sym___complex] = ACTIONS(6611), + [anon_sym___const] = ACTIONS(6611), + [anon_sym___imag] = ACTIONS(6611), + [anon_sym___kindof] = ACTIONS(6611), + [anon_sym___nonnull] = ACTIONS(6611), + [anon_sym___nullable] = ACTIONS(6611), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6611), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6611), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6611), + [anon_sym___real] = ACTIONS(6611), + [anon_sym___strong] = ACTIONS(6611), + [anon_sym___unsafe_unretained] = ACTIONS(6611), + [anon_sym___unused] = ACTIONS(6611), + [anon_sym___weak] = ACTIONS(6611), + [anon_sym_alignas] = ACTIONS(6611), + [anon_sym__Alignas] = ACTIONS(6611), + [sym_primitive_type] = ACTIONS(6611), + [anon_sym_enum] = ACTIONS(6611), + [anon_sym_struct] = ACTIONS(6611), + [anon_sym_union] = ACTIONS(6611), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6611), + [anon_sym___typeof] = ACTIONS(6611), + [anon_sym_typeof] = ACTIONS(6611), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6611), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6611), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6611), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6611), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6611), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6611), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6611), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6611), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6611), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6611), + [anon_sym_NS_AVAILABLE] = ACTIONS(6611), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6611), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6611), + [anon_sym_API_AVAILABLE] = ACTIONS(6611), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6611), + [anon_sym_API_DEPRECATED] = ACTIONS(6611), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6611), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6611), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6611), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6611), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6611), + [anon_sym___deprecated_msg] = ACTIONS(6611), + [anon_sym___deprecated_enum_msg] = ACTIONS(6611), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6611), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6611), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6611), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6611), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6611), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6611), + [anon_sym_BOOL] = ACTIONS(6611), + [anon_sym_IMP] = ACTIONS(6611), + [anon_sym_SEL] = ACTIONS(6611), + [anon_sym_Class] = ACTIONS(6611), + [anon_sym_id] = ACTIONS(6611), + [anon_sym_ATdefs] = ACTIONS(6613), + }, + [2745] = { + [sym_identifier] = ACTIONS(6615), + [aux_sym_preproc_def_token1] = ACTIONS(6615), + [aux_sym_preproc_if_token1] = ACTIONS(6615), + [aux_sym_preproc_if_token2] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6615), + [sym_preproc_directive] = ACTIONS(6615), + [anon_sym___extension__] = ACTIONS(6615), + [anon_sym_extern] = ACTIONS(6615), + [anon_sym___attribute__] = ACTIONS(6615), + [anon_sym___attribute] = ACTIONS(6615), + [anon_sym_noreturn] = ACTIONS(6615), + [anon_sym_LBRACK] = ACTIONS(6617), + [anon_sym___declspec] = ACTIONS(6615), + [anon_sym_signed] = ACTIONS(6615), + [anon_sym_unsigned] = ACTIONS(6615), + [anon_sym_long] = ACTIONS(6615), + [anon_sym_short] = ACTIONS(6615), + [anon_sym_static] = ACTIONS(6615), + [anon_sym_auto] = ACTIONS(6615), + [anon_sym_register] = ACTIONS(6615), + [anon_sym_inline] = ACTIONS(6615), + [anon_sym___inline] = ACTIONS(6615), + [anon_sym___inline__] = ACTIONS(6615), + [anon_sym___forceinline] = ACTIONS(6615), + [anon_sym_thread_local] = ACTIONS(6615), + [anon_sym___thread] = ACTIONS(6615), + [anon_sym_CG_EXTERN] = ACTIONS(6615), + [anon_sym_CG_INLINE] = ACTIONS(6615), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6615), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6615), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6615), + [anon_sym_IBOutlet] = ACTIONS(6615), + [anon_sym_IBInspectable] = ACTIONS(6615), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6615), + [anon_sym_NS_INLINE] = ACTIONS(6615), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6615), + [anon_sym_OBJC_EXPORT] = ACTIONS(6615), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6615), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6615), + [anon_sym_const] = ACTIONS(6615), + [anon_sym_constexpr] = ACTIONS(6615), + [anon_sym_volatile] = ACTIONS(6615), + [anon_sym_restrict] = ACTIONS(6615), + [anon_sym___restrict__] = ACTIONS(6615), + [anon_sym__Atomic] = ACTIONS(6615), + [anon_sym__Noreturn] = ACTIONS(6615), + [anon_sym__Nonnull] = ACTIONS(6615), + [anon_sym_nullable] = ACTIONS(6615), + [anon_sym__Complex] = ACTIONS(6615), + [anon_sym__Nullable] = ACTIONS(6615), + [anon_sym__Nullable_result] = ACTIONS(6615), + [anon_sym__Null_unspecified] = ACTIONS(6615), + [anon_sym___autoreleasing] = ACTIONS(6615), + [anon_sym___block] = ACTIONS(6615), + [anon_sym___bridge] = ACTIONS(6615), + [anon_sym___bridge_retained] = ACTIONS(6615), + [anon_sym___bridge_transfer] = ACTIONS(6615), + [anon_sym___complex] = ACTIONS(6615), + [anon_sym___const] = ACTIONS(6615), + [anon_sym___imag] = ACTIONS(6615), + [anon_sym___kindof] = ACTIONS(6615), + [anon_sym___nonnull] = ACTIONS(6615), + [anon_sym___nullable] = ACTIONS(6615), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6615), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6615), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6615), + [anon_sym___real] = ACTIONS(6615), + [anon_sym___strong] = ACTIONS(6615), + [anon_sym___unsafe_unretained] = ACTIONS(6615), + [anon_sym___unused] = ACTIONS(6615), + [anon_sym___weak] = ACTIONS(6615), + [anon_sym_alignas] = ACTIONS(6615), + [anon_sym__Alignas] = ACTIONS(6615), + [sym_primitive_type] = ACTIONS(6615), + [anon_sym_enum] = ACTIONS(6615), + [anon_sym_struct] = ACTIONS(6615), + [anon_sym_union] = ACTIONS(6615), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6615), + [anon_sym___typeof] = ACTIONS(6615), + [anon_sym_typeof] = ACTIONS(6615), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6615), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6615), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6615), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6615), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6615), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6615), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6615), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6615), + [anon_sym_NS_AVAILABLE] = ACTIONS(6615), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6615), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_API_AVAILABLE] = ACTIONS(6615), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_API_DEPRECATED] = ACTIONS(6615), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6615), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6615), + [anon_sym___deprecated_msg] = ACTIONS(6615), + [anon_sym___deprecated_enum_msg] = ACTIONS(6615), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6615), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6615), + [anon_sym_BOOL] = ACTIONS(6615), + [anon_sym_IMP] = ACTIONS(6615), + [anon_sym_SEL] = ACTIONS(6615), + [anon_sym_Class] = ACTIONS(6615), + [anon_sym_id] = ACTIONS(6615), + [anon_sym_ATdefs] = ACTIONS(6617), + }, + [2746] = { + [sym_identifier] = ACTIONS(6615), + [aux_sym_preproc_def_token1] = ACTIONS(6615), + [aux_sym_preproc_if_token1] = ACTIONS(6615), + [aux_sym_preproc_if_token2] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6615), + [sym_preproc_directive] = ACTIONS(6615), + [anon_sym___extension__] = ACTIONS(6615), + [anon_sym_extern] = ACTIONS(6615), + [anon_sym___attribute__] = ACTIONS(6615), + [anon_sym___attribute] = ACTIONS(6615), + [anon_sym_noreturn] = ACTIONS(6615), + [anon_sym_LBRACK] = ACTIONS(6617), + [anon_sym___declspec] = ACTIONS(6615), + [anon_sym_signed] = ACTIONS(6615), + [anon_sym_unsigned] = ACTIONS(6615), + [anon_sym_long] = ACTIONS(6615), + [anon_sym_short] = ACTIONS(6615), + [anon_sym_static] = ACTIONS(6615), + [anon_sym_auto] = ACTIONS(6615), + [anon_sym_register] = ACTIONS(6615), + [anon_sym_inline] = ACTIONS(6615), + [anon_sym___inline] = ACTIONS(6615), + [anon_sym___inline__] = ACTIONS(6615), + [anon_sym___forceinline] = ACTIONS(6615), + [anon_sym_thread_local] = ACTIONS(6615), + [anon_sym___thread] = ACTIONS(6615), + [anon_sym_CG_EXTERN] = ACTIONS(6615), + [anon_sym_CG_INLINE] = ACTIONS(6615), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6615), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6615), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6615), + [anon_sym_IBOutlet] = ACTIONS(6615), + [anon_sym_IBInspectable] = ACTIONS(6615), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6615), + [anon_sym_NS_INLINE] = ACTIONS(6615), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6615), + [anon_sym_OBJC_EXPORT] = ACTIONS(6615), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6615), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6615), + [anon_sym_const] = ACTIONS(6615), + [anon_sym_constexpr] = ACTIONS(6615), + [anon_sym_volatile] = ACTIONS(6615), + [anon_sym_restrict] = ACTIONS(6615), + [anon_sym___restrict__] = ACTIONS(6615), + [anon_sym__Atomic] = ACTIONS(6615), + [anon_sym__Noreturn] = ACTIONS(6615), + [anon_sym__Nonnull] = ACTIONS(6615), + [anon_sym_nullable] = ACTIONS(6615), + [anon_sym__Complex] = ACTIONS(6615), + [anon_sym__Nullable] = ACTIONS(6615), + [anon_sym__Nullable_result] = ACTIONS(6615), + [anon_sym__Null_unspecified] = ACTIONS(6615), + [anon_sym___autoreleasing] = ACTIONS(6615), + [anon_sym___block] = ACTIONS(6615), + [anon_sym___bridge] = ACTIONS(6615), + [anon_sym___bridge_retained] = ACTIONS(6615), + [anon_sym___bridge_transfer] = ACTIONS(6615), + [anon_sym___complex] = ACTIONS(6615), + [anon_sym___const] = ACTIONS(6615), + [anon_sym___imag] = ACTIONS(6615), + [anon_sym___kindof] = ACTIONS(6615), + [anon_sym___nonnull] = ACTIONS(6615), + [anon_sym___nullable] = ACTIONS(6615), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6615), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6615), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6615), + [anon_sym___real] = ACTIONS(6615), + [anon_sym___strong] = ACTIONS(6615), + [anon_sym___unsafe_unretained] = ACTIONS(6615), + [anon_sym___unused] = ACTIONS(6615), + [anon_sym___weak] = ACTIONS(6615), + [anon_sym_alignas] = ACTIONS(6615), + [anon_sym__Alignas] = ACTIONS(6615), + [sym_primitive_type] = ACTIONS(6615), + [anon_sym_enum] = ACTIONS(6615), + [anon_sym_struct] = ACTIONS(6615), + [anon_sym_union] = ACTIONS(6615), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6615), + [anon_sym___typeof] = ACTIONS(6615), + [anon_sym_typeof] = ACTIONS(6615), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6615), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6615), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6615), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6615), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6615), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6615), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6615), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6615), + [anon_sym_NS_AVAILABLE] = ACTIONS(6615), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6615), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_API_AVAILABLE] = ACTIONS(6615), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_API_DEPRECATED] = ACTIONS(6615), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6615), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6615), + [anon_sym___deprecated_msg] = ACTIONS(6615), + [anon_sym___deprecated_enum_msg] = ACTIONS(6615), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6615), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6615), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6615), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6615), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6615), + [anon_sym_BOOL] = ACTIONS(6615), + [anon_sym_IMP] = ACTIONS(6615), + [anon_sym_SEL] = ACTIONS(6615), + [anon_sym_Class] = ACTIONS(6615), + [anon_sym_id] = ACTIONS(6615), + [anon_sym_ATdefs] = ACTIONS(6617), + }, + [2747] = { + [sym_identifier] = ACTIONS(6619), + [aux_sym_preproc_def_token1] = ACTIONS(6619), + [aux_sym_preproc_if_token1] = ACTIONS(6619), + [aux_sym_preproc_if_token2] = ACTIONS(6619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6619), + [sym_preproc_directive] = ACTIONS(6619), + [anon_sym___extension__] = ACTIONS(6619), + [anon_sym_extern] = ACTIONS(6619), + [anon_sym___attribute__] = ACTIONS(6619), + [anon_sym___attribute] = ACTIONS(6619), + [anon_sym_noreturn] = ACTIONS(6619), + [anon_sym_LBRACK] = ACTIONS(6621), + [anon_sym___declspec] = ACTIONS(6619), + [anon_sym_signed] = ACTIONS(6619), + [anon_sym_unsigned] = ACTIONS(6619), + [anon_sym_long] = ACTIONS(6619), + [anon_sym_short] = ACTIONS(6619), + [anon_sym_static] = ACTIONS(6619), + [anon_sym_auto] = ACTIONS(6619), + [anon_sym_register] = ACTIONS(6619), + [anon_sym_inline] = ACTIONS(6619), + [anon_sym___inline] = ACTIONS(6619), + [anon_sym___inline__] = ACTIONS(6619), + [anon_sym___forceinline] = ACTIONS(6619), + [anon_sym_thread_local] = ACTIONS(6619), + [anon_sym___thread] = ACTIONS(6619), + [anon_sym_CG_EXTERN] = ACTIONS(6619), + [anon_sym_CG_INLINE] = ACTIONS(6619), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6619), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6619), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6619), + [anon_sym_IBOutlet] = ACTIONS(6619), + [anon_sym_IBInspectable] = ACTIONS(6619), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6619), + [anon_sym_NS_INLINE] = ACTIONS(6619), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6619), + [anon_sym_OBJC_EXPORT] = ACTIONS(6619), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6619), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6619), + [anon_sym_const] = ACTIONS(6619), + [anon_sym_constexpr] = ACTIONS(6619), + [anon_sym_volatile] = ACTIONS(6619), + [anon_sym_restrict] = ACTIONS(6619), + [anon_sym___restrict__] = ACTIONS(6619), + [anon_sym__Atomic] = ACTIONS(6619), + [anon_sym__Noreturn] = ACTIONS(6619), + [anon_sym__Nonnull] = ACTIONS(6619), + [anon_sym_nullable] = ACTIONS(6619), + [anon_sym__Complex] = ACTIONS(6619), + [anon_sym__Nullable] = ACTIONS(6619), + [anon_sym__Nullable_result] = ACTIONS(6619), + [anon_sym__Null_unspecified] = ACTIONS(6619), + [anon_sym___autoreleasing] = ACTIONS(6619), + [anon_sym___block] = ACTIONS(6619), + [anon_sym___bridge] = ACTIONS(6619), + [anon_sym___bridge_retained] = ACTIONS(6619), + [anon_sym___bridge_transfer] = ACTIONS(6619), + [anon_sym___complex] = ACTIONS(6619), + [anon_sym___const] = ACTIONS(6619), + [anon_sym___imag] = ACTIONS(6619), + [anon_sym___kindof] = ACTIONS(6619), + [anon_sym___nonnull] = ACTIONS(6619), + [anon_sym___nullable] = ACTIONS(6619), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6619), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6619), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6619), + [anon_sym___real] = ACTIONS(6619), + [anon_sym___strong] = ACTIONS(6619), + [anon_sym___unsafe_unretained] = ACTIONS(6619), + [anon_sym___unused] = ACTIONS(6619), + [anon_sym___weak] = ACTIONS(6619), + [anon_sym_alignas] = ACTIONS(6619), + [anon_sym__Alignas] = ACTIONS(6619), + [sym_primitive_type] = ACTIONS(6619), + [anon_sym_enum] = ACTIONS(6619), + [anon_sym_struct] = ACTIONS(6619), + [anon_sym_union] = ACTIONS(6619), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6619), + [anon_sym___typeof] = ACTIONS(6619), + [anon_sym_typeof] = ACTIONS(6619), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6619), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6619), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6619), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6619), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6619), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6619), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6619), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6619), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6619), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6619), + [anon_sym_NS_AVAILABLE] = ACTIONS(6619), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6619), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6619), + [anon_sym_API_AVAILABLE] = ACTIONS(6619), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6619), + [anon_sym_API_DEPRECATED] = ACTIONS(6619), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6619), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6619), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6619), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6619), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6619), + [anon_sym___deprecated_msg] = ACTIONS(6619), + [anon_sym___deprecated_enum_msg] = ACTIONS(6619), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6619), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6619), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6619), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6619), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6619), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6619), + [anon_sym_BOOL] = ACTIONS(6619), + [anon_sym_IMP] = ACTIONS(6619), + [anon_sym_SEL] = ACTIONS(6619), + [anon_sym_Class] = ACTIONS(6619), + [anon_sym_id] = ACTIONS(6619), + [anon_sym_ATdefs] = ACTIONS(6621), + }, + [2748] = { + [sym_identifier] = ACTIONS(6671), + [aux_sym_preproc_def_token1] = ACTIONS(6671), + [aux_sym_preproc_if_token1] = ACTIONS(6671), + [aux_sym_preproc_if_token2] = ACTIONS(6671), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6671), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6671), + [sym_preproc_directive] = ACTIONS(6671), + [anon_sym___extension__] = ACTIONS(6671), + [anon_sym_extern] = ACTIONS(6671), + [anon_sym___attribute__] = ACTIONS(6671), + [anon_sym___attribute] = ACTIONS(6671), + [anon_sym_noreturn] = ACTIONS(6671), + [anon_sym_LBRACK] = ACTIONS(6673), + [anon_sym___declspec] = ACTIONS(6671), + [anon_sym_signed] = ACTIONS(6671), + [anon_sym_unsigned] = ACTIONS(6671), + [anon_sym_long] = ACTIONS(6671), + [anon_sym_short] = ACTIONS(6671), + [anon_sym_static] = ACTIONS(6671), + [anon_sym_auto] = ACTIONS(6671), + [anon_sym_register] = ACTIONS(6671), + [anon_sym_inline] = ACTIONS(6671), + [anon_sym___inline] = ACTIONS(6671), + [anon_sym___inline__] = ACTIONS(6671), + [anon_sym___forceinline] = ACTIONS(6671), + [anon_sym_thread_local] = ACTIONS(6671), + [anon_sym___thread] = ACTIONS(6671), + [anon_sym_CG_EXTERN] = ACTIONS(6671), + [anon_sym_CG_INLINE] = ACTIONS(6671), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6671), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6671), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6671), + [anon_sym_IBOutlet] = ACTIONS(6671), + [anon_sym_IBInspectable] = ACTIONS(6671), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6671), + [anon_sym_NS_INLINE] = ACTIONS(6671), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6671), + [anon_sym_OBJC_EXPORT] = ACTIONS(6671), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6671), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6671), + [anon_sym_const] = ACTIONS(6671), + [anon_sym_constexpr] = ACTIONS(6671), + [anon_sym_volatile] = ACTIONS(6671), + [anon_sym_restrict] = ACTIONS(6671), + [anon_sym___restrict__] = ACTIONS(6671), + [anon_sym__Atomic] = ACTIONS(6671), + [anon_sym__Noreturn] = ACTIONS(6671), + [anon_sym__Nonnull] = ACTIONS(6671), + [anon_sym_nullable] = ACTIONS(6671), + [anon_sym__Complex] = ACTIONS(6671), + [anon_sym__Nullable] = ACTIONS(6671), + [anon_sym__Nullable_result] = ACTIONS(6671), + [anon_sym__Null_unspecified] = ACTIONS(6671), + [anon_sym___autoreleasing] = ACTIONS(6671), + [anon_sym___block] = ACTIONS(6671), + [anon_sym___bridge] = ACTIONS(6671), + [anon_sym___bridge_retained] = ACTIONS(6671), + [anon_sym___bridge_transfer] = ACTIONS(6671), + [anon_sym___complex] = ACTIONS(6671), + [anon_sym___const] = ACTIONS(6671), + [anon_sym___imag] = ACTIONS(6671), + [anon_sym___kindof] = ACTIONS(6671), + [anon_sym___nonnull] = ACTIONS(6671), + [anon_sym___nullable] = ACTIONS(6671), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6671), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6671), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6671), + [anon_sym___real] = ACTIONS(6671), + [anon_sym___strong] = ACTIONS(6671), + [anon_sym___unsafe_unretained] = ACTIONS(6671), + [anon_sym___unused] = ACTIONS(6671), + [anon_sym___weak] = ACTIONS(6671), + [anon_sym_alignas] = ACTIONS(6671), + [anon_sym__Alignas] = ACTIONS(6671), + [sym_primitive_type] = ACTIONS(6671), + [anon_sym_enum] = ACTIONS(6671), + [anon_sym_struct] = ACTIONS(6671), + [anon_sym_union] = ACTIONS(6671), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6671), + [anon_sym___typeof] = ACTIONS(6671), + [anon_sym_typeof] = ACTIONS(6671), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6671), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6671), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6671), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6671), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6671), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6671), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6671), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6671), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6671), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6671), + [anon_sym_NS_AVAILABLE] = ACTIONS(6671), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6671), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6671), + [anon_sym_API_AVAILABLE] = ACTIONS(6671), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6671), + [anon_sym_API_DEPRECATED] = ACTIONS(6671), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6671), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6671), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6671), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6671), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6671), + [anon_sym___deprecated_msg] = ACTIONS(6671), + [anon_sym___deprecated_enum_msg] = ACTIONS(6671), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6671), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6671), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6671), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6671), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6671), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6671), + [anon_sym_BOOL] = ACTIONS(6671), + [anon_sym_IMP] = ACTIONS(6671), + [anon_sym_SEL] = ACTIONS(6671), + [anon_sym_Class] = ACTIONS(6671), + [anon_sym_id] = ACTIONS(6671), + [anon_sym_ATdefs] = ACTIONS(6673), + }, + [2749] = { + [sym_identifier] = ACTIONS(6663), + [aux_sym_preproc_def_token1] = ACTIONS(6663), + [aux_sym_preproc_if_token1] = ACTIONS(6663), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6663), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6663), + [sym_preproc_directive] = ACTIONS(6663), + [anon_sym___extension__] = ACTIONS(6663), + [anon_sym_extern] = ACTIONS(6663), + [anon_sym___attribute__] = ACTIONS(6663), + [anon_sym___attribute] = ACTIONS(6663), + [anon_sym_noreturn] = ACTIONS(6663), + [anon_sym_LBRACK] = ACTIONS(6665), + [anon_sym___declspec] = ACTIONS(6663), + [anon_sym_RBRACE] = ACTIONS(6665), + [anon_sym_signed] = ACTIONS(6663), + [anon_sym_unsigned] = ACTIONS(6663), + [anon_sym_long] = ACTIONS(6663), + [anon_sym_short] = ACTIONS(6663), + [anon_sym_static] = ACTIONS(6663), + [anon_sym_auto] = ACTIONS(6663), + [anon_sym_register] = ACTIONS(6663), + [anon_sym_inline] = ACTIONS(6663), + [anon_sym___inline] = ACTIONS(6663), + [anon_sym___inline__] = ACTIONS(6663), + [anon_sym___forceinline] = ACTIONS(6663), + [anon_sym_thread_local] = ACTIONS(6663), + [anon_sym___thread] = ACTIONS(6663), + [anon_sym_CG_EXTERN] = ACTIONS(6663), + [anon_sym_CG_INLINE] = ACTIONS(6663), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6663), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6663), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6663), + [anon_sym_IBOutlet] = ACTIONS(6663), + [anon_sym_IBInspectable] = ACTIONS(6663), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6663), + [anon_sym_NS_INLINE] = ACTIONS(6663), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6663), + [anon_sym_OBJC_EXPORT] = ACTIONS(6663), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6663), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6663), + [anon_sym_const] = ACTIONS(6663), + [anon_sym_constexpr] = ACTIONS(6663), + [anon_sym_volatile] = ACTIONS(6663), + [anon_sym_restrict] = ACTIONS(6663), + [anon_sym___restrict__] = ACTIONS(6663), + [anon_sym__Atomic] = ACTIONS(6663), + [anon_sym__Noreturn] = ACTIONS(6663), + [anon_sym__Nonnull] = ACTIONS(6663), + [anon_sym_nullable] = ACTIONS(6663), + [anon_sym__Complex] = ACTIONS(6663), + [anon_sym__Nullable] = ACTIONS(6663), + [anon_sym__Nullable_result] = ACTIONS(6663), + [anon_sym__Null_unspecified] = ACTIONS(6663), + [anon_sym___autoreleasing] = ACTIONS(6663), + [anon_sym___block] = ACTIONS(6663), + [anon_sym___bridge] = ACTIONS(6663), + [anon_sym___bridge_retained] = ACTIONS(6663), + [anon_sym___bridge_transfer] = ACTIONS(6663), + [anon_sym___complex] = ACTIONS(6663), + [anon_sym___const] = ACTIONS(6663), + [anon_sym___imag] = ACTIONS(6663), + [anon_sym___kindof] = ACTIONS(6663), + [anon_sym___nonnull] = ACTIONS(6663), + [anon_sym___nullable] = ACTIONS(6663), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6663), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6663), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6663), + [anon_sym___real] = ACTIONS(6663), + [anon_sym___strong] = ACTIONS(6663), + [anon_sym___unsafe_unretained] = ACTIONS(6663), + [anon_sym___unused] = ACTIONS(6663), + [anon_sym___weak] = ACTIONS(6663), + [anon_sym_alignas] = ACTIONS(6663), + [anon_sym__Alignas] = ACTIONS(6663), + [sym_primitive_type] = ACTIONS(6663), + [anon_sym_enum] = ACTIONS(6663), + [anon_sym_struct] = ACTIONS(6663), + [anon_sym_union] = ACTIONS(6663), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6663), + [anon_sym___typeof] = ACTIONS(6663), + [anon_sym_typeof] = ACTIONS(6663), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6663), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6663), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6663), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6663), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6663), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6663), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6663), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6663), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6663), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6663), + [anon_sym_NS_AVAILABLE] = ACTIONS(6663), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6663), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6663), + [anon_sym_API_AVAILABLE] = ACTIONS(6663), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6663), + [anon_sym_API_DEPRECATED] = ACTIONS(6663), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6663), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6663), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6663), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6663), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6663), + [anon_sym___deprecated_msg] = ACTIONS(6663), + [anon_sym___deprecated_enum_msg] = ACTIONS(6663), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6663), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6663), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6663), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6663), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6663), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6663), + [anon_sym_BOOL] = ACTIONS(6663), + [anon_sym_IMP] = ACTIONS(6663), + [anon_sym_SEL] = ACTIONS(6663), + [anon_sym_Class] = ACTIONS(6663), + [anon_sym_id] = ACTIONS(6663), + [anon_sym_ATdefs] = ACTIONS(6665), + }, + [2750] = { + [sym_identifier] = ACTIONS(6699), + [aux_sym_preproc_def_token1] = ACTIONS(6699), + [aux_sym_preproc_if_token1] = ACTIONS(6699), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6699), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6699), + [sym_preproc_directive] = ACTIONS(6699), + [anon_sym___extension__] = ACTIONS(6699), + [anon_sym_extern] = ACTIONS(6699), + [anon_sym___attribute__] = ACTIONS(6699), + [anon_sym___attribute] = ACTIONS(6699), + [anon_sym_noreturn] = ACTIONS(6699), + [anon_sym_LBRACK] = ACTIONS(6701), + [anon_sym___declspec] = ACTIONS(6699), + [anon_sym_RBRACE] = ACTIONS(6701), + [anon_sym_signed] = ACTIONS(6699), + [anon_sym_unsigned] = ACTIONS(6699), + [anon_sym_long] = ACTIONS(6699), + [anon_sym_short] = ACTIONS(6699), + [anon_sym_static] = ACTIONS(6699), + [anon_sym_auto] = ACTIONS(6699), + [anon_sym_register] = ACTIONS(6699), + [anon_sym_inline] = ACTIONS(6699), + [anon_sym___inline] = ACTIONS(6699), + [anon_sym___inline__] = ACTIONS(6699), + [anon_sym___forceinline] = ACTIONS(6699), + [anon_sym_thread_local] = ACTIONS(6699), + [anon_sym___thread] = ACTIONS(6699), + [anon_sym_CG_EXTERN] = ACTIONS(6699), + [anon_sym_CG_INLINE] = ACTIONS(6699), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6699), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6699), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6699), + [anon_sym_IBOutlet] = ACTIONS(6699), + [anon_sym_IBInspectable] = ACTIONS(6699), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6699), + [anon_sym_NS_INLINE] = ACTIONS(6699), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6699), + [anon_sym_OBJC_EXPORT] = ACTIONS(6699), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6699), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6699), + [anon_sym_const] = ACTIONS(6699), + [anon_sym_constexpr] = ACTIONS(6699), + [anon_sym_volatile] = ACTIONS(6699), + [anon_sym_restrict] = ACTIONS(6699), + [anon_sym___restrict__] = ACTIONS(6699), + [anon_sym__Atomic] = ACTIONS(6699), + [anon_sym__Noreturn] = ACTIONS(6699), + [anon_sym__Nonnull] = ACTIONS(6699), + [anon_sym_nullable] = ACTIONS(6699), + [anon_sym__Complex] = ACTIONS(6699), + [anon_sym__Nullable] = ACTIONS(6699), + [anon_sym__Nullable_result] = ACTIONS(6699), + [anon_sym__Null_unspecified] = ACTIONS(6699), + [anon_sym___autoreleasing] = ACTIONS(6699), + [anon_sym___block] = ACTIONS(6699), + [anon_sym___bridge] = ACTIONS(6699), + [anon_sym___bridge_retained] = ACTIONS(6699), + [anon_sym___bridge_transfer] = ACTIONS(6699), + [anon_sym___complex] = ACTIONS(6699), + [anon_sym___const] = ACTIONS(6699), + [anon_sym___imag] = ACTIONS(6699), + [anon_sym___kindof] = ACTIONS(6699), + [anon_sym___nonnull] = ACTIONS(6699), + [anon_sym___nullable] = ACTIONS(6699), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6699), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6699), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6699), + [anon_sym___real] = ACTIONS(6699), + [anon_sym___strong] = ACTIONS(6699), + [anon_sym___unsafe_unretained] = ACTIONS(6699), + [anon_sym___unused] = ACTIONS(6699), + [anon_sym___weak] = ACTIONS(6699), + [anon_sym_alignas] = ACTIONS(6699), + [anon_sym__Alignas] = ACTIONS(6699), + [sym_primitive_type] = ACTIONS(6699), + [anon_sym_enum] = ACTIONS(6699), + [anon_sym_struct] = ACTIONS(6699), + [anon_sym_union] = ACTIONS(6699), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6699), + [anon_sym___typeof] = ACTIONS(6699), + [anon_sym_typeof] = ACTIONS(6699), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6699), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6699), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6699), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6699), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6699), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6699), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6699), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6699), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6699), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6699), + [anon_sym_NS_AVAILABLE] = ACTIONS(6699), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6699), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6699), + [anon_sym_API_AVAILABLE] = ACTIONS(6699), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6699), + [anon_sym_API_DEPRECATED] = ACTIONS(6699), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6699), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6699), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6699), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6699), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6699), + [anon_sym___deprecated_msg] = ACTIONS(6699), + [anon_sym___deprecated_enum_msg] = ACTIONS(6699), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6699), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6699), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6699), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6699), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6699), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6699), + [anon_sym_BOOL] = ACTIONS(6699), + [anon_sym_IMP] = ACTIONS(6699), + [anon_sym_SEL] = ACTIONS(6699), + [anon_sym_Class] = ACTIONS(6699), + [anon_sym_id] = ACTIONS(6699), + [anon_sym_ATdefs] = ACTIONS(6701), + }, + [2751] = { + [sym_identifier] = ACTIONS(6623), + [aux_sym_preproc_def_token1] = ACTIONS(6623), + [aux_sym_preproc_if_token1] = ACTIONS(6623), + [aux_sym_preproc_if_token2] = ACTIONS(6623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6623), + [sym_preproc_directive] = ACTIONS(6623), + [anon_sym___extension__] = ACTIONS(6623), + [anon_sym_extern] = ACTIONS(6623), + [anon_sym___attribute__] = ACTIONS(6623), + [anon_sym___attribute] = ACTIONS(6623), + [anon_sym_noreturn] = ACTIONS(6623), + [anon_sym_LBRACK] = ACTIONS(6625), + [anon_sym___declspec] = ACTIONS(6623), + [anon_sym_signed] = ACTIONS(6623), + [anon_sym_unsigned] = ACTIONS(6623), + [anon_sym_long] = ACTIONS(6623), + [anon_sym_short] = ACTIONS(6623), + [anon_sym_static] = ACTIONS(6623), + [anon_sym_auto] = ACTIONS(6623), + [anon_sym_register] = ACTIONS(6623), + [anon_sym_inline] = ACTIONS(6623), + [anon_sym___inline] = ACTIONS(6623), + [anon_sym___inline__] = ACTIONS(6623), + [anon_sym___forceinline] = ACTIONS(6623), + [anon_sym_thread_local] = ACTIONS(6623), + [anon_sym___thread] = ACTIONS(6623), + [anon_sym_CG_EXTERN] = ACTIONS(6623), + [anon_sym_CG_INLINE] = ACTIONS(6623), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6623), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6623), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6623), + [anon_sym_IBOutlet] = ACTIONS(6623), + [anon_sym_IBInspectable] = ACTIONS(6623), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6623), + [anon_sym_NS_INLINE] = ACTIONS(6623), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6623), + [anon_sym_OBJC_EXPORT] = ACTIONS(6623), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6623), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6623), + [anon_sym_const] = ACTIONS(6623), + [anon_sym_constexpr] = ACTIONS(6623), + [anon_sym_volatile] = ACTIONS(6623), + [anon_sym_restrict] = ACTIONS(6623), + [anon_sym___restrict__] = ACTIONS(6623), + [anon_sym__Atomic] = ACTIONS(6623), + [anon_sym__Noreturn] = ACTIONS(6623), + [anon_sym__Nonnull] = ACTIONS(6623), + [anon_sym_nullable] = ACTIONS(6623), + [anon_sym__Complex] = ACTIONS(6623), + [anon_sym__Nullable] = ACTIONS(6623), + [anon_sym__Nullable_result] = ACTIONS(6623), + [anon_sym__Null_unspecified] = ACTIONS(6623), + [anon_sym___autoreleasing] = ACTIONS(6623), + [anon_sym___block] = ACTIONS(6623), + [anon_sym___bridge] = ACTIONS(6623), + [anon_sym___bridge_retained] = ACTIONS(6623), + [anon_sym___bridge_transfer] = ACTIONS(6623), + [anon_sym___complex] = ACTIONS(6623), + [anon_sym___const] = ACTIONS(6623), + [anon_sym___imag] = ACTIONS(6623), + [anon_sym___kindof] = ACTIONS(6623), + [anon_sym___nonnull] = ACTIONS(6623), + [anon_sym___nullable] = ACTIONS(6623), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6623), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6623), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6623), + [anon_sym___real] = ACTIONS(6623), + [anon_sym___strong] = ACTIONS(6623), + [anon_sym___unsafe_unretained] = ACTIONS(6623), + [anon_sym___unused] = ACTIONS(6623), + [anon_sym___weak] = ACTIONS(6623), + [anon_sym_alignas] = ACTIONS(6623), + [anon_sym__Alignas] = ACTIONS(6623), + [sym_primitive_type] = ACTIONS(6623), + [anon_sym_enum] = ACTIONS(6623), + [anon_sym_struct] = ACTIONS(6623), + [anon_sym_union] = ACTIONS(6623), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6623), + [anon_sym___typeof] = ACTIONS(6623), + [anon_sym_typeof] = ACTIONS(6623), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6623), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6623), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6623), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6623), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6623), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6623), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6623), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6623), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6623), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6623), + [anon_sym_NS_AVAILABLE] = ACTIONS(6623), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6623), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6623), + [anon_sym_API_AVAILABLE] = ACTIONS(6623), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6623), + [anon_sym_API_DEPRECATED] = ACTIONS(6623), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6623), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6623), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6623), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6623), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6623), + [anon_sym___deprecated_msg] = ACTIONS(6623), + [anon_sym___deprecated_enum_msg] = ACTIONS(6623), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6623), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6623), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6623), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6623), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6623), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6623), + [anon_sym_BOOL] = ACTIONS(6623), + [anon_sym_IMP] = ACTIONS(6623), + [anon_sym_SEL] = ACTIONS(6623), + [anon_sym_Class] = ACTIONS(6623), + [anon_sym_id] = ACTIONS(6623), + [anon_sym_ATdefs] = ACTIONS(6625), + }, + [2752] = { + [sym_identifier] = ACTIONS(6623), + [aux_sym_preproc_def_token1] = ACTIONS(6623), + [aux_sym_preproc_if_token1] = ACTIONS(6623), + [aux_sym_preproc_if_token2] = ACTIONS(6623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6623), + [sym_preproc_directive] = ACTIONS(6623), + [anon_sym___extension__] = ACTIONS(6623), + [anon_sym_extern] = ACTIONS(6623), + [anon_sym___attribute__] = ACTIONS(6623), + [anon_sym___attribute] = ACTIONS(6623), + [anon_sym_noreturn] = ACTIONS(6623), + [anon_sym_LBRACK] = ACTIONS(6625), + [anon_sym___declspec] = ACTIONS(6623), + [anon_sym_signed] = ACTIONS(6623), + [anon_sym_unsigned] = ACTIONS(6623), + [anon_sym_long] = ACTIONS(6623), + [anon_sym_short] = ACTIONS(6623), + [anon_sym_static] = ACTIONS(6623), + [anon_sym_auto] = ACTIONS(6623), + [anon_sym_register] = ACTIONS(6623), + [anon_sym_inline] = ACTIONS(6623), + [anon_sym___inline] = ACTIONS(6623), + [anon_sym___inline__] = ACTIONS(6623), + [anon_sym___forceinline] = ACTIONS(6623), + [anon_sym_thread_local] = ACTIONS(6623), + [anon_sym___thread] = ACTIONS(6623), + [anon_sym_CG_EXTERN] = ACTIONS(6623), + [anon_sym_CG_INLINE] = ACTIONS(6623), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6623), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6623), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6623), + [anon_sym_IBOutlet] = ACTIONS(6623), + [anon_sym_IBInspectable] = ACTIONS(6623), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6623), + [anon_sym_NS_INLINE] = ACTIONS(6623), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6623), + [anon_sym_OBJC_EXPORT] = ACTIONS(6623), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6623), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6623), + [anon_sym_const] = ACTIONS(6623), + [anon_sym_constexpr] = ACTIONS(6623), + [anon_sym_volatile] = ACTIONS(6623), + [anon_sym_restrict] = ACTIONS(6623), + [anon_sym___restrict__] = ACTIONS(6623), + [anon_sym__Atomic] = ACTIONS(6623), + [anon_sym__Noreturn] = ACTIONS(6623), + [anon_sym__Nonnull] = ACTIONS(6623), + [anon_sym_nullable] = ACTIONS(6623), + [anon_sym__Complex] = ACTIONS(6623), + [anon_sym__Nullable] = ACTIONS(6623), + [anon_sym__Nullable_result] = ACTIONS(6623), + [anon_sym__Null_unspecified] = ACTIONS(6623), + [anon_sym___autoreleasing] = ACTIONS(6623), + [anon_sym___block] = ACTIONS(6623), + [anon_sym___bridge] = ACTIONS(6623), + [anon_sym___bridge_retained] = ACTIONS(6623), + [anon_sym___bridge_transfer] = ACTIONS(6623), + [anon_sym___complex] = ACTIONS(6623), + [anon_sym___const] = ACTIONS(6623), + [anon_sym___imag] = ACTIONS(6623), + [anon_sym___kindof] = ACTIONS(6623), + [anon_sym___nonnull] = ACTIONS(6623), + [anon_sym___nullable] = ACTIONS(6623), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6623), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6623), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6623), + [anon_sym___real] = ACTIONS(6623), + [anon_sym___strong] = ACTIONS(6623), + [anon_sym___unsafe_unretained] = ACTIONS(6623), + [anon_sym___unused] = ACTIONS(6623), + [anon_sym___weak] = ACTIONS(6623), + [anon_sym_alignas] = ACTIONS(6623), + [anon_sym__Alignas] = ACTIONS(6623), + [sym_primitive_type] = ACTIONS(6623), + [anon_sym_enum] = ACTIONS(6623), + [anon_sym_struct] = ACTIONS(6623), + [anon_sym_union] = ACTIONS(6623), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6623), + [anon_sym___typeof] = ACTIONS(6623), + [anon_sym_typeof] = ACTIONS(6623), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6623), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6623), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6623), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6623), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6623), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6623), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6623), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6623), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6623), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6623), + [anon_sym_NS_AVAILABLE] = ACTIONS(6623), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6623), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6623), + [anon_sym_API_AVAILABLE] = ACTIONS(6623), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6623), + [anon_sym_API_DEPRECATED] = ACTIONS(6623), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6623), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6623), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6623), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6623), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6623), + [anon_sym___deprecated_msg] = ACTIONS(6623), + [anon_sym___deprecated_enum_msg] = ACTIONS(6623), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6623), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6623), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6623), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6623), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6623), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6623), + [anon_sym_BOOL] = ACTIONS(6623), + [anon_sym_IMP] = ACTIONS(6623), + [anon_sym_SEL] = ACTIONS(6623), + [anon_sym_Class] = ACTIONS(6623), + [anon_sym_id] = ACTIONS(6623), + [anon_sym_ATdefs] = ACTIONS(6625), + }, + [2753] = { + [sym_identifier] = ACTIONS(4074), + [anon_sym___extension__] = ACTIONS(4074), + [anon_sym_extern] = ACTIONS(4074), + [anon_sym___attribute__] = ACTIONS(4074), + [anon_sym___attribute] = ACTIONS(4074), + [anon_sym_noreturn] = ACTIONS(4074), + [anon_sym_LBRACK] = ACTIONS(4076), + [anon_sym___declspec] = ACTIONS(4074), + [anon_sym___cdecl] = ACTIONS(4074), + [anon_sym___clrcall] = ACTIONS(4074), + [anon_sym___stdcall] = ACTIONS(4074), + [anon_sym___fastcall] = ACTIONS(4074), + [anon_sym___thiscall] = ACTIONS(4074), + [anon_sym___vectorcall] = ACTIONS(4074), + [anon_sym_LBRACE] = ACTIONS(4076), + [anon_sym_signed] = ACTIONS(4074), + [anon_sym_unsigned] = ACTIONS(4074), + [anon_sym_long] = ACTIONS(4074), + [anon_sym_short] = ACTIONS(4074), + [anon_sym_static] = ACTIONS(4074), + [anon_sym_auto] = ACTIONS(4074), + [anon_sym_register] = ACTIONS(4074), + [anon_sym_inline] = ACTIONS(4074), + [anon_sym___inline] = ACTIONS(4074), + [anon_sym___inline__] = ACTIONS(4074), + [anon_sym___forceinline] = ACTIONS(4074), + [anon_sym_thread_local] = ACTIONS(4074), + [anon_sym___thread] = ACTIONS(4074), + [anon_sym_CG_EXTERN] = ACTIONS(4074), + [anon_sym_CG_INLINE] = ACTIONS(4074), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4074), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4074), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4074), + [anon_sym_IBOutlet] = ACTIONS(4074), + [anon_sym_IBInspectable] = ACTIONS(4074), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4074), + [anon_sym_NS_INLINE] = ACTIONS(4074), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4074), + [anon_sym_OBJC_EXPORT] = ACTIONS(4074), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4074), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4074), + [anon_sym_const] = ACTIONS(4074), + [anon_sym_constexpr] = ACTIONS(4074), + [anon_sym_volatile] = ACTIONS(4074), + [anon_sym_restrict] = ACTIONS(4074), + [anon_sym___restrict__] = ACTIONS(4074), + [anon_sym__Atomic] = ACTIONS(4074), + [anon_sym__Noreturn] = ACTIONS(4074), + [anon_sym__Nonnull] = ACTIONS(4074), + [anon_sym_nullable] = ACTIONS(4074), + [anon_sym__Complex] = ACTIONS(4074), + [anon_sym__Nullable] = ACTIONS(4074), + [anon_sym__Nullable_result] = ACTIONS(4074), + [anon_sym__Null_unspecified] = ACTIONS(4074), + [anon_sym___autoreleasing] = ACTIONS(4074), + [anon_sym___block] = ACTIONS(4074), + [anon_sym___bridge] = ACTIONS(4074), + [anon_sym___bridge_retained] = ACTIONS(4074), + [anon_sym___bridge_transfer] = ACTIONS(4074), + [anon_sym___complex] = ACTIONS(4074), + [anon_sym___const] = ACTIONS(4074), + [anon_sym___imag] = ACTIONS(4074), + [anon_sym___kindof] = ACTIONS(4074), + [anon_sym___nonnull] = ACTIONS(4074), + [anon_sym___nullable] = ACTIONS(4074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4074), + [anon_sym___real] = ACTIONS(4074), + [anon_sym___strong] = ACTIONS(4074), + [anon_sym___unsafe_unretained] = ACTIONS(4074), + [anon_sym___unused] = ACTIONS(4074), + [anon_sym___weak] = ACTIONS(4074), + [anon_sym_alignas] = ACTIONS(4074), + [anon_sym__Alignas] = ACTIONS(4074), + [sym_primitive_type] = ACTIONS(4074), + [anon_sym_enum] = ACTIONS(4074), + [anon_sym_struct] = ACTIONS(4074), + [anon_sym_union] = ACTIONS(4074), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4074), + [anon_sym___typeof] = ACTIONS(4074), + [anon_sym_typeof] = ACTIONS(4074), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4074), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4074), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4074), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4074), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4074), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4074), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4074), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4074), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4074), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4074), + [anon_sym_NS_AVAILABLE] = ACTIONS(4074), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4074), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4074), + [anon_sym_API_AVAILABLE] = ACTIONS(4074), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4074), + [anon_sym_API_DEPRECATED] = ACTIONS(4074), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4074), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4074), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4074), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4074), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4074), + [anon_sym___deprecated_msg] = ACTIONS(4074), + [anon_sym___deprecated_enum_msg] = ACTIONS(4074), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4074), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4074), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4074), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4074), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4074), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4074), + [anon_sym_BOOL] = ACTIONS(4074), + [anon_sym_IMP] = ACTIONS(4074), + [anon_sym_SEL] = ACTIONS(4074), + [anon_sym_Class] = ACTIONS(4074), + [anon_sym_id] = ACTIONS(4074), + }, + [2754] = { + [sym_identifier] = ACTIONS(6627), + [aux_sym_preproc_def_token1] = ACTIONS(6627), + [aux_sym_preproc_if_token1] = ACTIONS(6627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6627), + [sym_preproc_directive] = ACTIONS(6627), + [anon_sym___extension__] = ACTIONS(6627), + [anon_sym_extern] = ACTIONS(6627), + [anon_sym___attribute__] = ACTIONS(6627), + [anon_sym___attribute] = ACTIONS(6627), + [anon_sym_noreturn] = ACTIONS(6627), + [anon_sym_LBRACK] = ACTIONS(6629), + [anon_sym___declspec] = ACTIONS(6627), + [anon_sym_RBRACE] = ACTIONS(6629), + [anon_sym_signed] = ACTIONS(6627), + [anon_sym_unsigned] = ACTIONS(6627), + [anon_sym_long] = ACTIONS(6627), + [anon_sym_short] = ACTIONS(6627), + [anon_sym_static] = ACTIONS(6627), + [anon_sym_auto] = ACTIONS(6627), + [anon_sym_register] = ACTIONS(6627), + [anon_sym_inline] = ACTIONS(6627), + [anon_sym___inline] = ACTIONS(6627), + [anon_sym___inline__] = ACTIONS(6627), + [anon_sym___forceinline] = ACTIONS(6627), + [anon_sym_thread_local] = ACTIONS(6627), + [anon_sym___thread] = ACTIONS(6627), + [anon_sym_CG_EXTERN] = ACTIONS(6627), + [anon_sym_CG_INLINE] = ACTIONS(6627), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6627), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6627), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6627), + [anon_sym_IBOutlet] = ACTIONS(6627), + [anon_sym_IBInspectable] = ACTIONS(6627), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6627), + [anon_sym_NS_INLINE] = ACTIONS(6627), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6627), + [anon_sym_OBJC_EXPORT] = ACTIONS(6627), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6627), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6627), + [anon_sym_const] = ACTIONS(6627), + [anon_sym_constexpr] = ACTIONS(6627), + [anon_sym_volatile] = ACTIONS(6627), + [anon_sym_restrict] = ACTIONS(6627), + [anon_sym___restrict__] = ACTIONS(6627), + [anon_sym__Atomic] = ACTIONS(6627), + [anon_sym__Noreturn] = ACTIONS(6627), + [anon_sym__Nonnull] = ACTIONS(6627), + [anon_sym_nullable] = ACTIONS(6627), + [anon_sym__Complex] = ACTIONS(6627), + [anon_sym__Nullable] = ACTIONS(6627), + [anon_sym__Nullable_result] = ACTIONS(6627), + [anon_sym__Null_unspecified] = ACTIONS(6627), + [anon_sym___autoreleasing] = ACTIONS(6627), + [anon_sym___block] = ACTIONS(6627), + [anon_sym___bridge] = ACTIONS(6627), + [anon_sym___bridge_retained] = ACTIONS(6627), + [anon_sym___bridge_transfer] = ACTIONS(6627), + [anon_sym___complex] = ACTIONS(6627), + [anon_sym___const] = ACTIONS(6627), + [anon_sym___imag] = ACTIONS(6627), + [anon_sym___kindof] = ACTIONS(6627), + [anon_sym___nonnull] = ACTIONS(6627), + [anon_sym___nullable] = ACTIONS(6627), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6627), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6627), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6627), + [anon_sym___real] = ACTIONS(6627), + [anon_sym___strong] = ACTIONS(6627), + [anon_sym___unsafe_unretained] = ACTIONS(6627), + [anon_sym___unused] = ACTIONS(6627), + [anon_sym___weak] = ACTIONS(6627), + [anon_sym_alignas] = ACTIONS(6627), + [anon_sym__Alignas] = ACTIONS(6627), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_enum] = ACTIONS(6627), + [anon_sym_struct] = ACTIONS(6627), + [anon_sym_union] = ACTIONS(6627), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6627), + [anon_sym___typeof] = ACTIONS(6627), + [anon_sym_typeof] = ACTIONS(6627), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6627), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6627), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6627), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6627), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6627), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6627), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6627), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6627), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6627), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6627), + [anon_sym_NS_AVAILABLE] = ACTIONS(6627), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6627), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6627), + [anon_sym_API_AVAILABLE] = ACTIONS(6627), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6627), + [anon_sym_API_DEPRECATED] = ACTIONS(6627), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6627), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6627), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6627), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6627), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6627), + [anon_sym___deprecated_msg] = ACTIONS(6627), + [anon_sym___deprecated_enum_msg] = ACTIONS(6627), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6627), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6627), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6627), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6627), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6627), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6627), + [anon_sym_BOOL] = ACTIONS(6627), + [anon_sym_IMP] = ACTIONS(6627), + [anon_sym_SEL] = ACTIONS(6627), + [anon_sym_Class] = ACTIONS(6627), + [anon_sym_id] = ACTIONS(6627), + [anon_sym_ATdefs] = ACTIONS(6629), + }, + [2755] = { + [sym_identifier] = ACTIONS(4090), + [anon_sym___extension__] = ACTIONS(4090), + [anon_sym_extern] = ACTIONS(4090), + [anon_sym___attribute__] = ACTIONS(4090), + [anon_sym___attribute] = ACTIONS(4090), + [anon_sym_noreturn] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(4092), + [anon_sym___declspec] = ACTIONS(4090), + [anon_sym___cdecl] = ACTIONS(4090), + [anon_sym___clrcall] = ACTIONS(4090), + [anon_sym___stdcall] = ACTIONS(4090), + [anon_sym___fastcall] = ACTIONS(4090), + [anon_sym___thiscall] = ACTIONS(4090), + [anon_sym___vectorcall] = ACTIONS(4090), + [anon_sym_LBRACE] = ACTIONS(4092), + [anon_sym_signed] = ACTIONS(4090), + [anon_sym_unsigned] = ACTIONS(4090), + [anon_sym_long] = ACTIONS(4090), + [anon_sym_short] = ACTIONS(4090), + [anon_sym_static] = ACTIONS(4090), + [anon_sym_auto] = ACTIONS(4090), + [anon_sym_register] = ACTIONS(4090), + [anon_sym_inline] = ACTIONS(4090), + [anon_sym___inline] = ACTIONS(4090), + [anon_sym___inline__] = ACTIONS(4090), + [anon_sym___forceinline] = ACTIONS(4090), + [anon_sym_thread_local] = ACTIONS(4090), + [anon_sym___thread] = ACTIONS(4090), + [anon_sym_CG_EXTERN] = ACTIONS(4090), + [anon_sym_CG_INLINE] = ACTIONS(4090), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4090), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4090), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4090), + [anon_sym_IBOutlet] = ACTIONS(4090), + [anon_sym_IBInspectable] = ACTIONS(4090), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4090), + [anon_sym_NS_INLINE] = ACTIONS(4090), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4090), + [anon_sym_OBJC_EXPORT] = ACTIONS(4090), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4090), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4090), + [anon_sym_const] = ACTIONS(4090), + [anon_sym_constexpr] = ACTIONS(4090), + [anon_sym_volatile] = ACTIONS(4090), + [anon_sym_restrict] = ACTIONS(4090), + [anon_sym___restrict__] = ACTIONS(4090), + [anon_sym__Atomic] = ACTIONS(4090), + [anon_sym__Noreturn] = ACTIONS(4090), + [anon_sym__Nonnull] = ACTIONS(4090), + [anon_sym_nullable] = ACTIONS(4090), + [anon_sym__Complex] = ACTIONS(4090), + [anon_sym__Nullable] = ACTIONS(4090), + [anon_sym__Nullable_result] = ACTIONS(4090), + [anon_sym__Null_unspecified] = ACTIONS(4090), + [anon_sym___autoreleasing] = ACTIONS(4090), + [anon_sym___block] = ACTIONS(4090), + [anon_sym___bridge] = ACTIONS(4090), + [anon_sym___bridge_retained] = ACTIONS(4090), + [anon_sym___bridge_transfer] = ACTIONS(4090), + [anon_sym___complex] = ACTIONS(4090), + [anon_sym___const] = ACTIONS(4090), + [anon_sym___imag] = ACTIONS(4090), + [anon_sym___kindof] = ACTIONS(4090), + [anon_sym___nonnull] = ACTIONS(4090), + [anon_sym___nullable] = ACTIONS(4090), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4090), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4090), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4090), + [anon_sym___real] = ACTIONS(4090), + [anon_sym___strong] = ACTIONS(4090), + [anon_sym___unsafe_unretained] = ACTIONS(4090), + [anon_sym___unused] = ACTIONS(4090), + [anon_sym___weak] = ACTIONS(4090), + [anon_sym_alignas] = ACTIONS(4090), + [anon_sym__Alignas] = ACTIONS(4090), + [sym_primitive_type] = ACTIONS(4090), + [anon_sym_enum] = ACTIONS(4090), + [anon_sym_struct] = ACTIONS(4090), + [anon_sym_union] = ACTIONS(4090), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4090), + [anon_sym___typeof] = ACTIONS(4090), + [anon_sym_typeof] = ACTIONS(4090), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4090), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4090), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4090), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4090), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4090), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4090), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4090), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4090), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4090), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4090), + [anon_sym_NS_AVAILABLE] = ACTIONS(4090), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4090), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4090), + [anon_sym_API_AVAILABLE] = ACTIONS(4090), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4090), + [anon_sym_API_DEPRECATED] = ACTIONS(4090), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4090), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4090), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4090), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4090), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4090), + [anon_sym___deprecated_msg] = ACTIONS(4090), + [anon_sym___deprecated_enum_msg] = ACTIONS(4090), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4090), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4090), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4090), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4090), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4090), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4090), + [anon_sym_BOOL] = ACTIONS(4090), + [anon_sym_IMP] = ACTIONS(4090), + [anon_sym_SEL] = ACTIONS(4090), + [anon_sym_Class] = ACTIONS(4090), + [anon_sym_id] = ACTIONS(4090), + }, + [2756] = { + [sym_identifier] = ACTIONS(6703), + [aux_sym_preproc_def_token1] = ACTIONS(6703), + [aux_sym_preproc_if_token1] = ACTIONS(6703), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6703), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6703), + [sym_preproc_directive] = ACTIONS(6703), + [anon_sym___extension__] = ACTIONS(6703), + [anon_sym_extern] = ACTIONS(6703), + [anon_sym___attribute__] = ACTIONS(6703), + [anon_sym___attribute] = ACTIONS(6703), + [anon_sym_noreturn] = ACTIONS(6703), + [anon_sym_LBRACK] = ACTIONS(6705), + [anon_sym___declspec] = ACTIONS(6703), + [anon_sym_RBRACE] = ACTIONS(6705), + [anon_sym_signed] = ACTIONS(6703), + [anon_sym_unsigned] = ACTIONS(6703), + [anon_sym_long] = ACTIONS(6703), + [anon_sym_short] = ACTIONS(6703), + [anon_sym_static] = ACTIONS(6703), + [anon_sym_auto] = ACTIONS(6703), + [anon_sym_register] = ACTIONS(6703), + [anon_sym_inline] = ACTIONS(6703), + [anon_sym___inline] = ACTIONS(6703), + [anon_sym___inline__] = ACTIONS(6703), + [anon_sym___forceinline] = ACTIONS(6703), + [anon_sym_thread_local] = ACTIONS(6703), + [anon_sym___thread] = ACTIONS(6703), + [anon_sym_CG_EXTERN] = ACTIONS(6703), + [anon_sym_CG_INLINE] = ACTIONS(6703), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6703), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6703), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6703), + [anon_sym_IBOutlet] = ACTIONS(6703), + [anon_sym_IBInspectable] = ACTIONS(6703), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6703), + [anon_sym_NS_INLINE] = ACTIONS(6703), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6703), + [anon_sym_OBJC_EXPORT] = ACTIONS(6703), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6703), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6703), + [anon_sym_const] = ACTIONS(6703), + [anon_sym_constexpr] = ACTIONS(6703), + [anon_sym_volatile] = ACTIONS(6703), + [anon_sym_restrict] = ACTIONS(6703), + [anon_sym___restrict__] = ACTIONS(6703), + [anon_sym__Atomic] = ACTIONS(6703), + [anon_sym__Noreturn] = ACTIONS(6703), + [anon_sym__Nonnull] = ACTIONS(6703), + [anon_sym_nullable] = ACTIONS(6703), + [anon_sym__Complex] = ACTIONS(6703), + [anon_sym__Nullable] = ACTIONS(6703), + [anon_sym__Nullable_result] = ACTIONS(6703), + [anon_sym__Null_unspecified] = ACTIONS(6703), + [anon_sym___autoreleasing] = ACTIONS(6703), + [anon_sym___block] = ACTIONS(6703), + [anon_sym___bridge] = ACTIONS(6703), + [anon_sym___bridge_retained] = ACTIONS(6703), + [anon_sym___bridge_transfer] = ACTIONS(6703), + [anon_sym___complex] = ACTIONS(6703), + [anon_sym___const] = ACTIONS(6703), + [anon_sym___imag] = ACTIONS(6703), + [anon_sym___kindof] = ACTIONS(6703), + [anon_sym___nonnull] = ACTIONS(6703), + [anon_sym___nullable] = ACTIONS(6703), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6703), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6703), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6703), + [anon_sym___real] = ACTIONS(6703), + [anon_sym___strong] = ACTIONS(6703), + [anon_sym___unsafe_unretained] = ACTIONS(6703), + [anon_sym___unused] = ACTIONS(6703), + [anon_sym___weak] = ACTIONS(6703), + [anon_sym_alignas] = ACTIONS(6703), + [anon_sym__Alignas] = ACTIONS(6703), + [sym_primitive_type] = ACTIONS(6703), + [anon_sym_enum] = ACTIONS(6703), + [anon_sym_struct] = ACTIONS(6703), + [anon_sym_union] = ACTIONS(6703), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6703), + [anon_sym___typeof] = ACTIONS(6703), + [anon_sym_typeof] = ACTIONS(6703), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6703), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6703), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6703), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6703), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6703), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6703), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6703), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6703), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6703), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6703), + [anon_sym_NS_AVAILABLE] = ACTIONS(6703), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6703), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6703), + [anon_sym_API_AVAILABLE] = ACTIONS(6703), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6703), + [anon_sym_API_DEPRECATED] = ACTIONS(6703), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6703), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6703), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6703), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6703), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6703), + [anon_sym___deprecated_msg] = ACTIONS(6703), + [anon_sym___deprecated_enum_msg] = ACTIONS(6703), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6703), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6703), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6703), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6703), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6703), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6703), + [anon_sym_BOOL] = ACTIONS(6703), + [anon_sym_IMP] = ACTIONS(6703), + [anon_sym_SEL] = ACTIONS(6703), + [anon_sym_Class] = ACTIONS(6703), + [anon_sym_id] = ACTIONS(6703), + [anon_sym_ATdefs] = ACTIONS(6705), + }, + [2757] = { + [sym_parameter_list] = STATE(2568), + [sym_identifier] = ACTIONS(6831), + [anon_sym_COMMA] = ACTIONS(6833), + [anon_sym_LPAREN2] = ACTIONS(6746), + [anon_sym_SEMI] = ACTIONS(6833), + [anon_sym___extension__] = ACTIONS(6831), + [anon_sym_extern] = ACTIONS(6831), + [anon_sym___attribute__] = ACTIONS(6831), + [anon_sym___attribute] = ACTIONS(6831), + [anon_sym_noreturn] = ACTIONS(6831), + [anon_sym_LBRACK] = ACTIONS(6748), + [anon_sym___declspec] = ACTIONS(6831), + [anon_sym_LBRACE] = ACTIONS(6833), + [anon_sym_signed] = ACTIONS(6831), + [anon_sym_unsigned] = ACTIONS(6831), + [anon_sym_long] = ACTIONS(6831), + [anon_sym_short] = ACTIONS(6831), + [anon_sym_static] = ACTIONS(6831), + [anon_sym_EQ] = ACTIONS(6833), + [anon_sym_ATautoreleasepool] = ACTIONS(6833), + [anon_sym_auto] = ACTIONS(6831), + [anon_sym_register] = ACTIONS(6831), + [anon_sym_inline] = ACTIONS(6831), + [anon_sym___inline] = ACTIONS(6831), + [anon_sym___inline__] = ACTIONS(6831), + [anon_sym___forceinline] = ACTIONS(6831), + [anon_sym_thread_local] = ACTIONS(6831), + [anon_sym___thread] = ACTIONS(6831), + [anon_sym_CG_EXTERN] = ACTIONS(6831), + [anon_sym_CG_INLINE] = ACTIONS(6831), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6831), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6831), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6831), + [anon_sym_IBOutlet] = ACTIONS(6831), + [anon_sym_IBInspectable] = ACTIONS(6831), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6831), + [anon_sym_NS_INLINE] = ACTIONS(6831), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6831), + [anon_sym_OBJC_EXPORT] = ACTIONS(6831), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6831), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6831), + [anon_sym_const] = ACTIONS(6831), + [anon_sym_constexpr] = ACTIONS(6831), + [anon_sym_volatile] = ACTIONS(6831), + [anon_sym_restrict] = ACTIONS(6831), + [anon_sym___restrict__] = ACTIONS(6831), + [anon_sym__Atomic] = ACTIONS(6831), + [anon_sym__Noreturn] = ACTIONS(6831), + [anon_sym__Nonnull] = ACTIONS(6831), + [anon_sym_nullable] = ACTIONS(6831), + [anon_sym__Complex] = ACTIONS(6831), + [anon_sym__Nullable] = ACTIONS(6831), + [anon_sym__Nullable_result] = ACTIONS(6831), + [anon_sym__Null_unspecified] = ACTIONS(6831), + [anon_sym___autoreleasing] = ACTIONS(6831), + [anon_sym___block] = ACTIONS(6831), + [anon_sym___bridge] = ACTIONS(6831), + [anon_sym___bridge_retained] = ACTIONS(6831), + [anon_sym___bridge_transfer] = ACTIONS(6831), + [anon_sym___complex] = ACTIONS(6831), + [anon_sym___const] = ACTIONS(6831), + [anon_sym___imag] = ACTIONS(6831), + [anon_sym___kindof] = ACTIONS(6831), + [anon_sym___nonnull] = ACTIONS(6831), + [anon_sym___nullable] = ACTIONS(6831), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6831), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6831), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6831), + [anon_sym___real] = ACTIONS(6831), + [anon_sym___strong] = ACTIONS(6831), + [anon_sym___unsafe_unretained] = ACTIONS(6831), + [anon_sym___unused] = ACTIONS(6831), + [anon_sym___weak] = ACTIONS(6831), + [anon_sym_alignas] = ACTIONS(6831), + [anon_sym__Alignas] = ACTIONS(6831), + [sym_primitive_type] = ACTIONS(6831), + [anon_sym_enum] = ACTIONS(6831), + [anon_sym_struct] = ACTIONS(6831), + [anon_sym_union] = ACTIONS(6831), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6831), + [anon_sym___typeof] = ACTIONS(6831), + [anon_sym_typeof] = ACTIONS(6831), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6831), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6831), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6831), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6831), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6831), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6831), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6831), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6831), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6831), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6831), + [anon_sym_NS_AVAILABLE] = ACTIONS(6831), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6831), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6831), + [anon_sym_API_AVAILABLE] = ACTIONS(6831), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6831), + [anon_sym_API_DEPRECATED] = ACTIONS(6831), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6831), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6831), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6831), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6831), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6831), + [anon_sym___deprecated_msg] = ACTIONS(6831), + [anon_sym___deprecated_enum_msg] = ACTIONS(6831), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6831), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6831), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6831), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6831), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6831), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6831), + [anon_sym_BOOL] = ACTIONS(6831), + [anon_sym_IMP] = ACTIONS(6831), + [anon_sym_SEL] = ACTIONS(6831), + [anon_sym_Class] = ACTIONS(6831), + [anon_sym_id] = ACTIONS(6831), + }, + [2758] = { + [sym_parameter_list] = STATE(2568), + [sym_identifier] = ACTIONS(6835), + [anon_sym_COMMA] = ACTIONS(6837), + [anon_sym_LPAREN2] = ACTIONS(6746), + [anon_sym_SEMI] = ACTIONS(6837), + [anon_sym___extension__] = ACTIONS(6835), + [anon_sym_extern] = ACTIONS(6835), + [anon_sym___attribute__] = ACTIONS(6835), + [anon_sym___attribute] = ACTIONS(6835), + [anon_sym_noreturn] = ACTIONS(6835), + [anon_sym_LBRACK] = ACTIONS(6748), + [anon_sym___declspec] = ACTIONS(6835), + [anon_sym_LBRACE] = ACTIONS(6837), + [anon_sym_signed] = ACTIONS(6835), + [anon_sym_unsigned] = ACTIONS(6835), + [anon_sym_long] = ACTIONS(6835), + [anon_sym_short] = ACTIONS(6835), + [anon_sym_static] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(6837), + [anon_sym_ATautoreleasepool] = ACTIONS(6837), + [anon_sym_auto] = ACTIONS(6835), + [anon_sym_register] = ACTIONS(6835), + [anon_sym_inline] = ACTIONS(6835), + [anon_sym___inline] = ACTIONS(6835), + [anon_sym___inline__] = ACTIONS(6835), + [anon_sym___forceinline] = ACTIONS(6835), + [anon_sym_thread_local] = ACTIONS(6835), + [anon_sym___thread] = ACTIONS(6835), + [anon_sym_CG_EXTERN] = ACTIONS(6835), + [anon_sym_CG_INLINE] = ACTIONS(6835), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6835), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6835), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6835), + [anon_sym_IBOutlet] = ACTIONS(6835), + [anon_sym_IBInspectable] = ACTIONS(6835), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6835), + [anon_sym_NS_INLINE] = ACTIONS(6835), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6835), + [anon_sym_OBJC_EXPORT] = ACTIONS(6835), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6835), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6835), + [anon_sym_const] = ACTIONS(6835), + [anon_sym_constexpr] = ACTIONS(6835), + [anon_sym_volatile] = ACTIONS(6835), + [anon_sym_restrict] = ACTIONS(6835), + [anon_sym___restrict__] = ACTIONS(6835), + [anon_sym__Atomic] = ACTIONS(6835), + [anon_sym__Noreturn] = ACTIONS(6835), + [anon_sym__Nonnull] = ACTIONS(6835), + [anon_sym_nullable] = ACTIONS(6835), + [anon_sym__Complex] = ACTIONS(6835), + [anon_sym__Nullable] = ACTIONS(6835), + [anon_sym__Nullable_result] = ACTIONS(6835), + [anon_sym__Null_unspecified] = ACTIONS(6835), + [anon_sym___autoreleasing] = ACTIONS(6835), + [anon_sym___block] = ACTIONS(6835), + [anon_sym___bridge] = ACTIONS(6835), + [anon_sym___bridge_retained] = ACTIONS(6835), + [anon_sym___bridge_transfer] = ACTIONS(6835), + [anon_sym___complex] = ACTIONS(6835), + [anon_sym___const] = ACTIONS(6835), + [anon_sym___imag] = ACTIONS(6835), + [anon_sym___kindof] = ACTIONS(6835), + [anon_sym___nonnull] = ACTIONS(6835), + [anon_sym___nullable] = ACTIONS(6835), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6835), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6835), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6835), + [anon_sym___real] = ACTIONS(6835), + [anon_sym___strong] = ACTIONS(6835), + [anon_sym___unsafe_unretained] = ACTIONS(6835), + [anon_sym___unused] = ACTIONS(6835), + [anon_sym___weak] = ACTIONS(6835), + [anon_sym_alignas] = ACTIONS(6835), + [anon_sym__Alignas] = ACTIONS(6835), + [sym_primitive_type] = ACTIONS(6835), + [anon_sym_enum] = ACTIONS(6835), + [anon_sym_struct] = ACTIONS(6835), + [anon_sym_union] = ACTIONS(6835), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6835), + [anon_sym___typeof] = ACTIONS(6835), + [anon_sym_typeof] = ACTIONS(6835), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6835), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6835), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6835), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6835), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6835), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6835), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6835), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6835), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6835), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6835), + [anon_sym_NS_AVAILABLE] = ACTIONS(6835), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6835), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6835), + [anon_sym_API_AVAILABLE] = ACTIONS(6835), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6835), + [anon_sym_API_DEPRECATED] = ACTIONS(6835), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6835), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6835), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6835), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6835), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6835), + [anon_sym___deprecated_msg] = ACTIONS(6835), + [anon_sym___deprecated_enum_msg] = ACTIONS(6835), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6835), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6835), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6835), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6835), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6835), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6835), + [anon_sym_BOOL] = ACTIONS(6835), + [anon_sym_IMP] = ACTIONS(6835), + [anon_sym_SEL] = ACTIONS(6835), + [anon_sym_Class] = ACTIONS(6835), + [anon_sym_id] = ACTIONS(6835), + }, + [2759] = { + [sym_identifier] = ACTIONS(6631), + [aux_sym_preproc_def_token1] = ACTIONS(6631), + [aux_sym_preproc_if_token1] = ACTIONS(6631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6631), + [sym_preproc_directive] = ACTIONS(6631), + [anon_sym___extension__] = ACTIONS(6631), + [anon_sym_extern] = ACTIONS(6631), + [anon_sym___attribute__] = ACTIONS(6631), + [anon_sym___attribute] = ACTIONS(6631), + [anon_sym_noreturn] = ACTIONS(6631), + [anon_sym_LBRACK] = ACTIONS(6633), + [anon_sym___declspec] = ACTIONS(6631), + [anon_sym_RBRACE] = ACTIONS(6633), + [anon_sym_signed] = ACTIONS(6631), + [anon_sym_unsigned] = ACTIONS(6631), + [anon_sym_long] = ACTIONS(6631), + [anon_sym_short] = ACTIONS(6631), + [anon_sym_static] = ACTIONS(6631), + [anon_sym_auto] = ACTIONS(6631), + [anon_sym_register] = ACTIONS(6631), + [anon_sym_inline] = ACTIONS(6631), + [anon_sym___inline] = ACTIONS(6631), + [anon_sym___inline__] = ACTIONS(6631), + [anon_sym___forceinline] = ACTIONS(6631), + [anon_sym_thread_local] = ACTIONS(6631), + [anon_sym___thread] = ACTIONS(6631), + [anon_sym_CG_EXTERN] = ACTIONS(6631), + [anon_sym_CG_INLINE] = ACTIONS(6631), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6631), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6631), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6631), + [anon_sym_IBOutlet] = ACTIONS(6631), + [anon_sym_IBInspectable] = ACTIONS(6631), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6631), + [anon_sym_NS_INLINE] = ACTIONS(6631), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6631), + [anon_sym_OBJC_EXPORT] = ACTIONS(6631), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6631), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6631), + [anon_sym_const] = ACTIONS(6631), + [anon_sym_constexpr] = ACTIONS(6631), + [anon_sym_volatile] = ACTIONS(6631), + [anon_sym_restrict] = ACTIONS(6631), + [anon_sym___restrict__] = ACTIONS(6631), + [anon_sym__Atomic] = ACTIONS(6631), + [anon_sym__Noreturn] = ACTIONS(6631), + [anon_sym__Nonnull] = ACTIONS(6631), + [anon_sym_nullable] = ACTIONS(6631), + [anon_sym__Complex] = ACTIONS(6631), + [anon_sym__Nullable] = ACTIONS(6631), + [anon_sym__Nullable_result] = ACTIONS(6631), + [anon_sym__Null_unspecified] = ACTIONS(6631), + [anon_sym___autoreleasing] = ACTIONS(6631), + [anon_sym___block] = ACTIONS(6631), + [anon_sym___bridge] = ACTIONS(6631), + [anon_sym___bridge_retained] = ACTIONS(6631), + [anon_sym___bridge_transfer] = ACTIONS(6631), + [anon_sym___complex] = ACTIONS(6631), + [anon_sym___const] = ACTIONS(6631), + [anon_sym___imag] = ACTIONS(6631), + [anon_sym___kindof] = ACTIONS(6631), + [anon_sym___nonnull] = ACTIONS(6631), + [anon_sym___nullable] = ACTIONS(6631), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6631), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6631), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6631), + [anon_sym___real] = ACTIONS(6631), + [anon_sym___strong] = ACTIONS(6631), + [anon_sym___unsafe_unretained] = ACTIONS(6631), + [anon_sym___unused] = ACTIONS(6631), + [anon_sym___weak] = ACTIONS(6631), + [anon_sym_alignas] = ACTIONS(6631), + [anon_sym__Alignas] = ACTIONS(6631), + [sym_primitive_type] = ACTIONS(6631), + [anon_sym_enum] = ACTIONS(6631), + [anon_sym_struct] = ACTIONS(6631), + [anon_sym_union] = ACTIONS(6631), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6631), + [anon_sym___typeof] = ACTIONS(6631), + [anon_sym_typeof] = ACTIONS(6631), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6631), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6631), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6631), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6631), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6631), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6631), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6631), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6631), + [anon_sym_NS_AVAILABLE] = ACTIONS(6631), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6631), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_API_AVAILABLE] = ACTIONS(6631), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_API_DEPRECATED] = ACTIONS(6631), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6631), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6631), + [anon_sym___deprecated_msg] = ACTIONS(6631), + [anon_sym___deprecated_enum_msg] = ACTIONS(6631), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6631), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6631), + [anon_sym_BOOL] = ACTIONS(6631), + [anon_sym_IMP] = ACTIONS(6631), + [anon_sym_SEL] = ACTIONS(6631), + [anon_sym_Class] = ACTIONS(6631), + [anon_sym_id] = ACTIONS(6631), + [anon_sym_ATdefs] = ACTIONS(6633), + }, + [2760] = { + [sym_identifier] = ACTIONS(6631), + [aux_sym_preproc_def_token1] = ACTIONS(6631), + [aux_sym_preproc_if_token1] = ACTIONS(6631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6631), + [sym_preproc_directive] = ACTIONS(6631), + [anon_sym___extension__] = ACTIONS(6631), + [anon_sym_extern] = ACTIONS(6631), + [anon_sym___attribute__] = ACTIONS(6631), + [anon_sym___attribute] = ACTIONS(6631), + [anon_sym_noreturn] = ACTIONS(6631), + [anon_sym_LBRACK] = ACTIONS(6633), + [anon_sym___declspec] = ACTIONS(6631), + [anon_sym_RBRACE] = ACTIONS(6633), + [anon_sym_signed] = ACTIONS(6631), + [anon_sym_unsigned] = ACTIONS(6631), + [anon_sym_long] = ACTIONS(6631), + [anon_sym_short] = ACTIONS(6631), + [anon_sym_static] = ACTIONS(6631), + [anon_sym_auto] = ACTIONS(6631), + [anon_sym_register] = ACTIONS(6631), + [anon_sym_inline] = ACTIONS(6631), + [anon_sym___inline] = ACTIONS(6631), + [anon_sym___inline__] = ACTIONS(6631), + [anon_sym___forceinline] = ACTIONS(6631), + [anon_sym_thread_local] = ACTIONS(6631), + [anon_sym___thread] = ACTIONS(6631), + [anon_sym_CG_EXTERN] = ACTIONS(6631), + [anon_sym_CG_INLINE] = ACTIONS(6631), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6631), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6631), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6631), + [anon_sym_IBOutlet] = ACTIONS(6631), + [anon_sym_IBInspectable] = ACTIONS(6631), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6631), + [anon_sym_NS_INLINE] = ACTIONS(6631), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6631), + [anon_sym_OBJC_EXPORT] = ACTIONS(6631), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6631), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6631), + [anon_sym_const] = ACTIONS(6631), + [anon_sym_constexpr] = ACTIONS(6631), + [anon_sym_volatile] = ACTIONS(6631), + [anon_sym_restrict] = ACTIONS(6631), + [anon_sym___restrict__] = ACTIONS(6631), + [anon_sym__Atomic] = ACTIONS(6631), + [anon_sym__Noreturn] = ACTIONS(6631), + [anon_sym__Nonnull] = ACTIONS(6631), + [anon_sym_nullable] = ACTIONS(6631), + [anon_sym__Complex] = ACTIONS(6631), + [anon_sym__Nullable] = ACTIONS(6631), + [anon_sym__Nullable_result] = ACTIONS(6631), + [anon_sym__Null_unspecified] = ACTIONS(6631), + [anon_sym___autoreleasing] = ACTIONS(6631), + [anon_sym___block] = ACTIONS(6631), + [anon_sym___bridge] = ACTIONS(6631), + [anon_sym___bridge_retained] = ACTIONS(6631), + [anon_sym___bridge_transfer] = ACTIONS(6631), + [anon_sym___complex] = ACTIONS(6631), + [anon_sym___const] = ACTIONS(6631), + [anon_sym___imag] = ACTIONS(6631), + [anon_sym___kindof] = ACTIONS(6631), + [anon_sym___nonnull] = ACTIONS(6631), + [anon_sym___nullable] = ACTIONS(6631), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6631), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6631), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6631), + [anon_sym___real] = ACTIONS(6631), + [anon_sym___strong] = ACTIONS(6631), + [anon_sym___unsafe_unretained] = ACTIONS(6631), + [anon_sym___unused] = ACTIONS(6631), + [anon_sym___weak] = ACTIONS(6631), + [anon_sym_alignas] = ACTIONS(6631), + [anon_sym__Alignas] = ACTIONS(6631), + [sym_primitive_type] = ACTIONS(6631), + [anon_sym_enum] = ACTIONS(6631), + [anon_sym_struct] = ACTIONS(6631), + [anon_sym_union] = ACTIONS(6631), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6631), + [anon_sym___typeof] = ACTIONS(6631), + [anon_sym_typeof] = ACTIONS(6631), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6631), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6631), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6631), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6631), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6631), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6631), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6631), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6631), + [anon_sym_NS_AVAILABLE] = ACTIONS(6631), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6631), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_API_AVAILABLE] = ACTIONS(6631), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_API_DEPRECATED] = ACTIONS(6631), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6631), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6631), + [anon_sym___deprecated_msg] = ACTIONS(6631), + [anon_sym___deprecated_enum_msg] = ACTIONS(6631), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6631), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6631), + [anon_sym_BOOL] = ACTIONS(6631), + [anon_sym_IMP] = ACTIONS(6631), + [anon_sym_SEL] = ACTIONS(6631), + [anon_sym_Class] = ACTIONS(6631), + [anon_sym_id] = ACTIONS(6631), + [anon_sym_ATdefs] = ACTIONS(6633), + }, + [2761] = { + [sym_identifier] = ACTIONS(6703), + [aux_sym_preproc_def_token1] = ACTIONS(6703), + [aux_sym_preproc_if_token1] = ACTIONS(6703), + [aux_sym_preproc_if_token2] = ACTIONS(6703), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6703), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6703), + [sym_preproc_directive] = ACTIONS(6703), + [anon_sym___extension__] = ACTIONS(6703), + [anon_sym_extern] = ACTIONS(6703), + [anon_sym___attribute__] = ACTIONS(6703), + [anon_sym___attribute] = ACTIONS(6703), + [anon_sym_noreturn] = ACTIONS(6703), + [anon_sym_LBRACK] = ACTIONS(6705), + [anon_sym___declspec] = ACTIONS(6703), + [anon_sym_signed] = ACTIONS(6703), + [anon_sym_unsigned] = ACTIONS(6703), + [anon_sym_long] = ACTIONS(6703), + [anon_sym_short] = ACTIONS(6703), + [anon_sym_static] = ACTIONS(6703), + [anon_sym_auto] = ACTIONS(6703), + [anon_sym_register] = ACTIONS(6703), + [anon_sym_inline] = ACTIONS(6703), + [anon_sym___inline] = ACTIONS(6703), + [anon_sym___inline__] = ACTIONS(6703), + [anon_sym___forceinline] = ACTIONS(6703), + [anon_sym_thread_local] = ACTIONS(6703), + [anon_sym___thread] = ACTIONS(6703), + [anon_sym_CG_EXTERN] = ACTIONS(6703), + [anon_sym_CG_INLINE] = ACTIONS(6703), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6703), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6703), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6703), + [anon_sym_IBOutlet] = ACTIONS(6703), + [anon_sym_IBInspectable] = ACTIONS(6703), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6703), + [anon_sym_NS_INLINE] = ACTIONS(6703), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6703), + [anon_sym_OBJC_EXPORT] = ACTIONS(6703), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6703), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6703), + [anon_sym_const] = ACTIONS(6703), + [anon_sym_constexpr] = ACTIONS(6703), + [anon_sym_volatile] = ACTIONS(6703), + [anon_sym_restrict] = ACTIONS(6703), + [anon_sym___restrict__] = ACTIONS(6703), + [anon_sym__Atomic] = ACTIONS(6703), + [anon_sym__Noreturn] = ACTIONS(6703), + [anon_sym__Nonnull] = ACTIONS(6703), + [anon_sym_nullable] = ACTIONS(6703), + [anon_sym__Complex] = ACTIONS(6703), + [anon_sym__Nullable] = ACTIONS(6703), + [anon_sym__Nullable_result] = ACTIONS(6703), + [anon_sym__Null_unspecified] = ACTIONS(6703), + [anon_sym___autoreleasing] = ACTIONS(6703), + [anon_sym___block] = ACTIONS(6703), + [anon_sym___bridge] = ACTIONS(6703), + [anon_sym___bridge_retained] = ACTIONS(6703), + [anon_sym___bridge_transfer] = ACTIONS(6703), + [anon_sym___complex] = ACTIONS(6703), + [anon_sym___const] = ACTIONS(6703), + [anon_sym___imag] = ACTIONS(6703), + [anon_sym___kindof] = ACTIONS(6703), + [anon_sym___nonnull] = ACTIONS(6703), + [anon_sym___nullable] = ACTIONS(6703), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6703), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6703), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6703), + [anon_sym___real] = ACTIONS(6703), + [anon_sym___strong] = ACTIONS(6703), + [anon_sym___unsafe_unretained] = ACTIONS(6703), + [anon_sym___unused] = ACTIONS(6703), + [anon_sym___weak] = ACTIONS(6703), + [anon_sym_alignas] = ACTIONS(6703), + [anon_sym__Alignas] = ACTIONS(6703), + [sym_primitive_type] = ACTIONS(6703), + [anon_sym_enum] = ACTIONS(6703), + [anon_sym_struct] = ACTIONS(6703), + [anon_sym_union] = ACTIONS(6703), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6703), + [anon_sym___typeof] = ACTIONS(6703), + [anon_sym_typeof] = ACTIONS(6703), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6703), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6703), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6703), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6703), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6703), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6703), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6703), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6703), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6703), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6703), + [anon_sym_NS_AVAILABLE] = ACTIONS(6703), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6703), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6703), + [anon_sym_API_AVAILABLE] = ACTIONS(6703), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6703), + [anon_sym_API_DEPRECATED] = ACTIONS(6703), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6703), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6703), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6703), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6703), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6703), + [anon_sym___deprecated_msg] = ACTIONS(6703), + [anon_sym___deprecated_enum_msg] = ACTIONS(6703), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6703), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6703), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6703), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6703), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6703), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6703), + [anon_sym_BOOL] = ACTIONS(6703), + [anon_sym_IMP] = ACTIONS(6703), + [anon_sym_SEL] = ACTIONS(6703), + [anon_sym_Class] = ACTIONS(6703), + [anon_sym_id] = ACTIONS(6703), + [anon_sym_ATdefs] = ACTIONS(6705), + }, + [2762] = { + [sym_identifier] = ACTIONS(6667), + [aux_sym_preproc_def_token1] = ACTIONS(6667), + [aux_sym_preproc_if_token1] = ACTIONS(6667), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6667), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6667), + [sym_preproc_directive] = ACTIONS(6667), + [anon_sym___extension__] = ACTIONS(6667), + [anon_sym_extern] = ACTIONS(6667), + [anon_sym___attribute__] = ACTIONS(6667), + [anon_sym___attribute] = ACTIONS(6667), + [anon_sym_noreturn] = ACTIONS(6667), + [anon_sym_LBRACK] = ACTIONS(6669), + [anon_sym___declspec] = ACTIONS(6667), + [anon_sym_RBRACE] = ACTIONS(6669), + [anon_sym_signed] = ACTIONS(6667), + [anon_sym_unsigned] = ACTIONS(6667), + [anon_sym_long] = ACTIONS(6667), + [anon_sym_short] = ACTIONS(6667), + [anon_sym_static] = ACTIONS(6667), + [anon_sym_auto] = ACTIONS(6667), + [anon_sym_register] = ACTIONS(6667), + [anon_sym_inline] = ACTIONS(6667), + [anon_sym___inline] = ACTIONS(6667), + [anon_sym___inline__] = ACTIONS(6667), + [anon_sym___forceinline] = ACTIONS(6667), + [anon_sym_thread_local] = ACTIONS(6667), + [anon_sym___thread] = ACTIONS(6667), + [anon_sym_CG_EXTERN] = ACTIONS(6667), + [anon_sym_CG_INLINE] = ACTIONS(6667), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6667), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6667), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6667), + [anon_sym_IBOutlet] = ACTIONS(6667), + [anon_sym_IBInspectable] = ACTIONS(6667), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6667), + [anon_sym_NS_INLINE] = ACTIONS(6667), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6667), + [anon_sym_OBJC_EXPORT] = ACTIONS(6667), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6667), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6667), + [anon_sym_const] = ACTIONS(6667), + [anon_sym_constexpr] = ACTIONS(6667), + [anon_sym_volatile] = ACTIONS(6667), + [anon_sym_restrict] = ACTIONS(6667), + [anon_sym___restrict__] = ACTIONS(6667), + [anon_sym__Atomic] = ACTIONS(6667), + [anon_sym__Noreturn] = ACTIONS(6667), + [anon_sym__Nonnull] = ACTIONS(6667), + [anon_sym_nullable] = ACTIONS(6667), + [anon_sym__Complex] = ACTIONS(6667), + [anon_sym__Nullable] = ACTIONS(6667), + [anon_sym__Nullable_result] = ACTIONS(6667), + [anon_sym__Null_unspecified] = ACTIONS(6667), + [anon_sym___autoreleasing] = ACTIONS(6667), + [anon_sym___block] = ACTIONS(6667), + [anon_sym___bridge] = ACTIONS(6667), + [anon_sym___bridge_retained] = ACTIONS(6667), + [anon_sym___bridge_transfer] = ACTIONS(6667), + [anon_sym___complex] = ACTIONS(6667), + [anon_sym___const] = ACTIONS(6667), + [anon_sym___imag] = ACTIONS(6667), + [anon_sym___kindof] = ACTIONS(6667), + [anon_sym___nonnull] = ACTIONS(6667), + [anon_sym___nullable] = ACTIONS(6667), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6667), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6667), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6667), + [anon_sym___real] = ACTIONS(6667), + [anon_sym___strong] = ACTIONS(6667), + [anon_sym___unsafe_unretained] = ACTIONS(6667), + [anon_sym___unused] = ACTIONS(6667), + [anon_sym___weak] = ACTIONS(6667), + [anon_sym_alignas] = ACTIONS(6667), + [anon_sym__Alignas] = ACTIONS(6667), + [sym_primitive_type] = ACTIONS(6667), + [anon_sym_enum] = ACTIONS(6667), + [anon_sym_struct] = ACTIONS(6667), + [anon_sym_union] = ACTIONS(6667), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6667), + [anon_sym___typeof] = ACTIONS(6667), + [anon_sym_typeof] = ACTIONS(6667), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6667), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6667), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6667), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6667), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6667), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6667), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6667), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6667), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6667), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6667), + [anon_sym_NS_AVAILABLE] = ACTIONS(6667), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6667), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6667), + [anon_sym_API_AVAILABLE] = ACTIONS(6667), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6667), + [anon_sym_API_DEPRECATED] = ACTIONS(6667), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6667), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6667), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6667), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6667), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6667), + [anon_sym___deprecated_msg] = ACTIONS(6667), + [anon_sym___deprecated_enum_msg] = ACTIONS(6667), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6667), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6667), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6667), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6667), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6667), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6667), + [anon_sym_BOOL] = ACTIONS(6667), + [anon_sym_IMP] = ACTIONS(6667), + [anon_sym_SEL] = ACTIONS(6667), + [anon_sym_Class] = ACTIONS(6667), + [anon_sym_id] = ACTIONS(6667), + [anon_sym_ATdefs] = ACTIONS(6669), + }, + [2763] = { + [sym_identifier] = ACTIONS(6675), + [aux_sym_preproc_def_token1] = ACTIONS(6675), + [aux_sym_preproc_if_token1] = ACTIONS(6675), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6675), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6675), + [sym_preproc_directive] = ACTIONS(6675), + [anon_sym___extension__] = ACTIONS(6675), + [anon_sym_extern] = ACTIONS(6675), + [anon_sym___attribute__] = ACTIONS(6675), + [anon_sym___attribute] = ACTIONS(6675), + [anon_sym_noreturn] = ACTIONS(6675), + [anon_sym_LBRACK] = ACTIONS(6677), + [anon_sym___declspec] = ACTIONS(6675), + [anon_sym_RBRACE] = ACTIONS(6677), + [anon_sym_signed] = ACTIONS(6675), + [anon_sym_unsigned] = ACTIONS(6675), + [anon_sym_long] = ACTIONS(6675), + [anon_sym_short] = ACTIONS(6675), + [anon_sym_static] = ACTIONS(6675), + [anon_sym_auto] = ACTIONS(6675), + [anon_sym_register] = ACTIONS(6675), + [anon_sym_inline] = ACTIONS(6675), + [anon_sym___inline] = ACTIONS(6675), + [anon_sym___inline__] = ACTIONS(6675), + [anon_sym___forceinline] = ACTIONS(6675), + [anon_sym_thread_local] = ACTIONS(6675), + [anon_sym___thread] = ACTIONS(6675), + [anon_sym_CG_EXTERN] = ACTIONS(6675), + [anon_sym_CG_INLINE] = ACTIONS(6675), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6675), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6675), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6675), + [anon_sym_IBOutlet] = ACTIONS(6675), + [anon_sym_IBInspectable] = ACTIONS(6675), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6675), + [anon_sym_NS_INLINE] = ACTIONS(6675), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6675), + [anon_sym_OBJC_EXPORT] = ACTIONS(6675), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6675), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6675), + [anon_sym_const] = ACTIONS(6675), + [anon_sym_constexpr] = ACTIONS(6675), + [anon_sym_volatile] = ACTIONS(6675), + [anon_sym_restrict] = ACTIONS(6675), + [anon_sym___restrict__] = ACTIONS(6675), + [anon_sym__Atomic] = ACTIONS(6675), + [anon_sym__Noreturn] = ACTIONS(6675), + [anon_sym__Nonnull] = ACTIONS(6675), + [anon_sym_nullable] = ACTIONS(6675), + [anon_sym__Complex] = ACTIONS(6675), + [anon_sym__Nullable] = ACTIONS(6675), + [anon_sym__Nullable_result] = ACTIONS(6675), + [anon_sym__Null_unspecified] = ACTIONS(6675), + [anon_sym___autoreleasing] = ACTIONS(6675), + [anon_sym___block] = ACTIONS(6675), + [anon_sym___bridge] = ACTIONS(6675), + [anon_sym___bridge_retained] = ACTIONS(6675), + [anon_sym___bridge_transfer] = ACTIONS(6675), + [anon_sym___complex] = ACTIONS(6675), + [anon_sym___const] = ACTIONS(6675), + [anon_sym___imag] = ACTIONS(6675), + [anon_sym___kindof] = ACTIONS(6675), + [anon_sym___nonnull] = ACTIONS(6675), + [anon_sym___nullable] = ACTIONS(6675), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6675), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6675), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6675), + [anon_sym___real] = ACTIONS(6675), + [anon_sym___strong] = ACTIONS(6675), + [anon_sym___unsafe_unretained] = ACTIONS(6675), + [anon_sym___unused] = ACTIONS(6675), + [anon_sym___weak] = ACTIONS(6675), + [anon_sym_alignas] = ACTIONS(6675), + [anon_sym__Alignas] = ACTIONS(6675), + [sym_primitive_type] = ACTIONS(6675), + [anon_sym_enum] = ACTIONS(6675), + [anon_sym_struct] = ACTIONS(6675), + [anon_sym_union] = ACTIONS(6675), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6675), + [anon_sym___typeof] = ACTIONS(6675), + [anon_sym_typeof] = ACTIONS(6675), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6675), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6675), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6675), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6675), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6675), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6675), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6675), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6675), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6675), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6675), + [anon_sym_NS_AVAILABLE] = ACTIONS(6675), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6675), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6675), + [anon_sym_API_AVAILABLE] = ACTIONS(6675), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6675), + [anon_sym_API_DEPRECATED] = ACTIONS(6675), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6675), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6675), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6675), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6675), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6675), + [anon_sym___deprecated_msg] = ACTIONS(6675), + [anon_sym___deprecated_enum_msg] = ACTIONS(6675), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6675), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6675), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6675), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6675), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6675), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6675), + [anon_sym_BOOL] = ACTIONS(6675), + [anon_sym_IMP] = ACTIONS(6675), + [anon_sym_SEL] = ACTIONS(6675), + [anon_sym_Class] = ACTIONS(6675), + [anon_sym_id] = ACTIONS(6675), + [anon_sym_ATdefs] = ACTIONS(6677), + }, + [2764] = { + [sym_identifier] = ACTIONS(6679), + [aux_sym_preproc_def_token1] = ACTIONS(6679), + [aux_sym_preproc_if_token1] = ACTIONS(6679), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6679), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6679), + [sym_preproc_directive] = ACTIONS(6679), + [anon_sym___extension__] = ACTIONS(6679), + [anon_sym_extern] = ACTIONS(6679), + [anon_sym___attribute__] = ACTIONS(6679), + [anon_sym___attribute] = ACTIONS(6679), + [anon_sym_noreturn] = ACTIONS(6679), + [anon_sym_LBRACK] = ACTIONS(6681), + [anon_sym___declspec] = ACTIONS(6679), + [anon_sym_RBRACE] = ACTIONS(6681), + [anon_sym_signed] = ACTIONS(6679), + [anon_sym_unsigned] = ACTIONS(6679), + [anon_sym_long] = ACTIONS(6679), + [anon_sym_short] = ACTIONS(6679), + [anon_sym_static] = ACTIONS(6679), + [anon_sym_auto] = ACTIONS(6679), + [anon_sym_register] = ACTIONS(6679), + [anon_sym_inline] = ACTIONS(6679), + [anon_sym___inline] = ACTIONS(6679), + [anon_sym___inline__] = ACTIONS(6679), + [anon_sym___forceinline] = ACTIONS(6679), + [anon_sym_thread_local] = ACTIONS(6679), + [anon_sym___thread] = ACTIONS(6679), + [anon_sym_CG_EXTERN] = ACTIONS(6679), + [anon_sym_CG_INLINE] = ACTIONS(6679), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6679), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6679), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6679), + [anon_sym_IBOutlet] = ACTIONS(6679), + [anon_sym_IBInspectable] = ACTIONS(6679), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6679), + [anon_sym_NS_INLINE] = ACTIONS(6679), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6679), + [anon_sym_OBJC_EXPORT] = ACTIONS(6679), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6679), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6679), + [anon_sym_const] = ACTIONS(6679), + [anon_sym_constexpr] = ACTIONS(6679), + [anon_sym_volatile] = ACTIONS(6679), + [anon_sym_restrict] = ACTIONS(6679), + [anon_sym___restrict__] = ACTIONS(6679), + [anon_sym__Atomic] = ACTIONS(6679), + [anon_sym__Noreturn] = ACTIONS(6679), + [anon_sym__Nonnull] = ACTIONS(6679), + [anon_sym_nullable] = ACTIONS(6679), + [anon_sym__Complex] = ACTIONS(6679), + [anon_sym__Nullable] = ACTIONS(6679), + [anon_sym__Nullable_result] = ACTIONS(6679), + [anon_sym__Null_unspecified] = ACTIONS(6679), + [anon_sym___autoreleasing] = ACTIONS(6679), + [anon_sym___block] = ACTIONS(6679), + [anon_sym___bridge] = ACTIONS(6679), + [anon_sym___bridge_retained] = ACTIONS(6679), + [anon_sym___bridge_transfer] = ACTIONS(6679), + [anon_sym___complex] = ACTIONS(6679), + [anon_sym___const] = ACTIONS(6679), + [anon_sym___imag] = ACTIONS(6679), + [anon_sym___kindof] = ACTIONS(6679), + [anon_sym___nonnull] = ACTIONS(6679), + [anon_sym___nullable] = ACTIONS(6679), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6679), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6679), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6679), + [anon_sym___real] = ACTIONS(6679), + [anon_sym___strong] = ACTIONS(6679), + [anon_sym___unsafe_unretained] = ACTIONS(6679), + [anon_sym___unused] = ACTIONS(6679), + [anon_sym___weak] = ACTIONS(6679), + [anon_sym_alignas] = ACTIONS(6679), + [anon_sym__Alignas] = ACTIONS(6679), + [sym_primitive_type] = ACTIONS(6679), + [anon_sym_enum] = ACTIONS(6679), + [anon_sym_struct] = ACTIONS(6679), + [anon_sym_union] = ACTIONS(6679), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6679), + [anon_sym___typeof] = ACTIONS(6679), + [anon_sym_typeof] = ACTIONS(6679), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6679), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6679), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6679), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6679), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6679), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6679), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6679), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6679), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6679), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6679), + [anon_sym_NS_AVAILABLE] = ACTIONS(6679), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6679), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6679), + [anon_sym_API_AVAILABLE] = ACTIONS(6679), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6679), + [anon_sym_API_DEPRECATED] = ACTIONS(6679), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6679), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6679), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6679), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6679), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6679), + [anon_sym___deprecated_msg] = ACTIONS(6679), + [anon_sym___deprecated_enum_msg] = ACTIONS(6679), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6679), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6679), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6679), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6679), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6679), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6679), + [anon_sym_BOOL] = ACTIONS(6679), + [anon_sym_IMP] = ACTIONS(6679), + [anon_sym_SEL] = ACTIONS(6679), + [anon_sym_Class] = ACTIONS(6679), + [anon_sym_id] = ACTIONS(6679), + [anon_sym_ATdefs] = ACTIONS(6681), + }, + [2765] = { + [sym_identifier] = ACTIONS(6683), + [aux_sym_preproc_def_token1] = ACTIONS(6683), + [aux_sym_preproc_if_token1] = ACTIONS(6683), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6683), + [sym_preproc_directive] = ACTIONS(6683), + [anon_sym___extension__] = ACTIONS(6683), + [anon_sym_extern] = ACTIONS(6683), + [anon_sym___attribute__] = ACTIONS(6683), + [anon_sym___attribute] = ACTIONS(6683), + [anon_sym_noreturn] = ACTIONS(6683), + [anon_sym_LBRACK] = ACTIONS(6685), + [anon_sym___declspec] = ACTIONS(6683), + [anon_sym_RBRACE] = ACTIONS(6685), + [anon_sym_signed] = ACTIONS(6683), + [anon_sym_unsigned] = ACTIONS(6683), + [anon_sym_long] = ACTIONS(6683), + [anon_sym_short] = ACTIONS(6683), + [anon_sym_static] = ACTIONS(6683), + [anon_sym_auto] = ACTIONS(6683), + [anon_sym_register] = ACTIONS(6683), + [anon_sym_inline] = ACTIONS(6683), + [anon_sym___inline] = ACTIONS(6683), + [anon_sym___inline__] = ACTIONS(6683), + [anon_sym___forceinline] = ACTIONS(6683), + [anon_sym_thread_local] = ACTIONS(6683), + [anon_sym___thread] = ACTIONS(6683), + [anon_sym_CG_EXTERN] = ACTIONS(6683), + [anon_sym_CG_INLINE] = ACTIONS(6683), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6683), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6683), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6683), + [anon_sym_IBOutlet] = ACTIONS(6683), + [anon_sym_IBInspectable] = ACTIONS(6683), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6683), + [anon_sym_NS_INLINE] = ACTIONS(6683), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6683), + [anon_sym_OBJC_EXPORT] = ACTIONS(6683), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6683), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6683), + [anon_sym_const] = ACTIONS(6683), + [anon_sym_constexpr] = ACTIONS(6683), + [anon_sym_volatile] = ACTIONS(6683), + [anon_sym_restrict] = ACTIONS(6683), + [anon_sym___restrict__] = ACTIONS(6683), + [anon_sym__Atomic] = ACTIONS(6683), + [anon_sym__Noreturn] = ACTIONS(6683), + [anon_sym__Nonnull] = ACTIONS(6683), + [anon_sym_nullable] = ACTIONS(6683), + [anon_sym__Complex] = ACTIONS(6683), + [anon_sym__Nullable] = ACTIONS(6683), + [anon_sym__Nullable_result] = ACTIONS(6683), + [anon_sym__Null_unspecified] = ACTIONS(6683), + [anon_sym___autoreleasing] = ACTIONS(6683), + [anon_sym___block] = ACTIONS(6683), + [anon_sym___bridge] = ACTIONS(6683), + [anon_sym___bridge_retained] = ACTIONS(6683), + [anon_sym___bridge_transfer] = ACTIONS(6683), + [anon_sym___complex] = ACTIONS(6683), + [anon_sym___const] = ACTIONS(6683), + [anon_sym___imag] = ACTIONS(6683), + [anon_sym___kindof] = ACTIONS(6683), + [anon_sym___nonnull] = ACTIONS(6683), + [anon_sym___nullable] = ACTIONS(6683), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6683), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6683), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6683), + [anon_sym___real] = ACTIONS(6683), + [anon_sym___strong] = ACTIONS(6683), + [anon_sym___unsafe_unretained] = ACTIONS(6683), + [anon_sym___unused] = ACTIONS(6683), + [anon_sym___weak] = ACTIONS(6683), + [anon_sym_alignas] = ACTIONS(6683), + [anon_sym__Alignas] = ACTIONS(6683), + [sym_primitive_type] = ACTIONS(6683), + [anon_sym_enum] = ACTIONS(6683), + [anon_sym_struct] = ACTIONS(6683), + [anon_sym_union] = ACTIONS(6683), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6683), + [anon_sym___typeof] = ACTIONS(6683), + [anon_sym_typeof] = ACTIONS(6683), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6683), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6683), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6683), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6683), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6683), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6683), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6683), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6683), + [anon_sym_NS_AVAILABLE] = ACTIONS(6683), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6683), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_API_AVAILABLE] = ACTIONS(6683), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_API_DEPRECATED] = ACTIONS(6683), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6683), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6683), + [anon_sym___deprecated_msg] = ACTIONS(6683), + [anon_sym___deprecated_enum_msg] = ACTIONS(6683), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6683), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6683), + [anon_sym_BOOL] = ACTIONS(6683), + [anon_sym_IMP] = ACTIONS(6683), + [anon_sym_SEL] = ACTIONS(6683), + [anon_sym_Class] = ACTIONS(6683), + [anon_sym_id] = ACTIONS(6683), + [anon_sym_ATdefs] = ACTIONS(6685), + }, + [2766] = { + [sym_identifier] = ACTIONS(6718), + [aux_sym_preproc_def_token1] = ACTIONS(6718), + [aux_sym_preproc_if_token1] = ACTIONS(6718), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6718), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6718), + [sym_preproc_directive] = ACTIONS(6718), + [anon_sym___extension__] = ACTIONS(6718), + [anon_sym_extern] = ACTIONS(6718), + [anon_sym___attribute__] = ACTIONS(6718), + [anon_sym___attribute] = ACTIONS(6718), + [anon_sym_noreturn] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6720), + [anon_sym___declspec] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(6720), + [anon_sym_signed] = ACTIONS(6718), + [anon_sym_unsigned] = ACTIONS(6718), + [anon_sym_long] = ACTIONS(6718), + [anon_sym_short] = ACTIONS(6718), + [anon_sym_static] = ACTIONS(6718), + [anon_sym_auto] = ACTIONS(6718), + [anon_sym_register] = ACTIONS(6718), + [anon_sym_inline] = ACTIONS(6718), + [anon_sym___inline] = ACTIONS(6718), + [anon_sym___inline__] = ACTIONS(6718), + [anon_sym___forceinline] = ACTIONS(6718), + [anon_sym_thread_local] = ACTIONS(6718), + [anon_sym___thread] = ACTIONS(6718), + [anon_sym_CG_EXTERN] = ACTIONS(6718), + [anon_sym_CG_INLINE] = ACTIONS(6718), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6718), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6718), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6718), + [anon_sym_IBOutlet] = ACTIONS(6718), + [anon_sym_IBInspectable] = ACTIONS(6718), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6718), + [anon_sym_NS_INLINE] = ACTIONS(6718), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6718), + [anon_sym_OBJC_EXPORT] = ACTIONS(6718), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6718), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6718), + [anon_sym_const] = ACTIONS(6718), + [anon_sym_constexpr] = ACTIONS(6718), + [anon_sym_volatile] = ACTIONS(6718), + [anon_sym_restrict] = ACTIONS(6718), + [anon_sym___restrict__] = ACTIONS(6718), + [anon_sym__Atomic] = ACTIONS(6718), + [anon_sym__Noreturn] = ACTIONS(6718), + [anon_sym__Nonnull] = ACTIONS(6718), + [anon_sym_nullable] = ACTIONS(6718), + [anon_sym__Complex] = ACTIONS(6718), + [anon_sym__Nullable] = ACTIONS(6718), + [anon_sym__Nullable_result] = ACTIONS(6718), + [anon_sym__Null_unspecified] = ACTIONS(6718), + [anon_sym___autoreleasing] = ACTIONS(6718), + [anon_sym___block] = ACTIONS(6718), + [anon_sym___bridge] = ACTIONS(6718), + [anon_sym___bridge_retained] = ACTIONS(6718), + [anon_sym___bridge_transfer] = ACTIONS(6718), + [anon_sym___complex] = ACTIONS(6718), + [anon_sym___const] = ACTIONS(6718), + [anon_sym___imag] = ACTIONS(6718), + [anon_sym___kindof] = ACTIONS(6718), + [anon_sym___nonnull] = ACTIONS(6718), + [anon_sym___nullable] = ACTIONS(6718), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6718), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6718), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6718), + [anon_sym___real] = ACTIONS(6718), + [anon_sym___strong] = ACTIONS(6718), + [anon_sym___unsafe_unretained] = ACTIONS(6718), + [anon_sym___unused] = ACTIONS(6718), + [anon_sym___weak] = ACTIONS(6718), + [anon_sym_alignas] = ACTIONS(6718), + [anon_sym__Alignas] = ACTIONS(6718), + [sym_primitive_type] = ACTIONS(6718), + [anon_sym_enum] = ACTIONS(6718), + [anon_sym_struct] = ACTIONS(6718), + [anon_sym_union] = ACTIONS(6718), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6718), + [anon_sym___typeof] = ACTIONS(6718), + [anon_sym_typeof] = ACTIONS(6718), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6718), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6718), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6718), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6718), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6718), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6718), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6718), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6718), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6718), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6718), + [anon_sym_NS_AVAILABLE] = ACTIONS(6718), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6718), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6718), + [anon_sym_API_AVAILABLE] = ACTIONS(6718), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6718), + [anon_sym_API_DEPRECATED] = ACTIONS(6718), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6718), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6718), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6718), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6718), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6718), + [anon_sym___deprecated_msg] = ACTIONS(6718), + [anon_sym___deprecated_enum_msg] = ACTIONS(6718), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6718), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6718), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6718), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6718), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6718), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6718), + [anon_sym_BOOL] = ACTIONS(6718), + [anon_sym_IMP] = ACTIONS(6718), + [anon_sym_SEL] = ACTIONS(6718), + [anon_sym_Class] = ACTIONS(6718), + [anon_sym_id] = ACTIONS(6718), + [anon_sym_ATdefs] = ACTIONS(6720), + }, + [2767] = { + [sym_identifier] = ACTIONS(6683), + [aux_sym_preproc_def_token1] = ACTIONS(6683), + [aux_sym_preproc_if_token1] = ACTIONS(6683), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6683), + [sym_preproc_directive] = ACTIONS(6683), + [anon_sym___extension__] = ACTIONS(6683), + [anon_sym_extern] = ACTIONS(6683), + [anon_sym___attribute__] = ACTIONS(6683), + [anon_sym___attribute] = ACTIONS(6683), + [anon_sym_noreturn] = ACTIONS(6683), + [anon_sym_LBRACK] = ACTIONS(6685), + [anon_sym___declspec] = ACTIONS(6683), + [anon_sym_RBRACE] = ACTIONS(6685), + [anon_sym_signed] = ACTIONS(6683), + [anon_sym_unsigned] = ACTIONS(6683), + [anon_sym_long] = ACTIONS(6683), + [anon_sym_short] = ACTIONS(6683), + [anon_sym_static] = ACTIONS(6683), + [anon_sym_auto] = ACTIONS(6683), + [anon_sym_register] = ACTIONS(6683), + [anon_sym_inline] = ACTIONS(6683), + [anon_sym___inline] = ACTIONS(6683), + [anon_sym___inline__] = ACTIONS(6683), + [anon_sym___forceinline] = ACTIONS(6683), + [anon_sym_thread_local] = ACTIONS(6683), + [anon_sym___thread] = ACTIONS(6683), + [anon_sym_CG_EXTERN] = ACTIONS(6683), + [anon_sym_CG_INLINE] = ACTIONS(6683), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6683), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6683), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6683), + [anon_sym_IBOutlet] = ACTIONS(6683), + [anon_sym_IBInspectable] = ACTIONS(6683), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6683), + [anon_sym_NS_INLINE] = ACTIONS(6683), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6683), + [anon_sym_OBJC_EXPORT] = ACTIONS(6683), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6683), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6683), + [anon_sym_const] = ACTIONS(6683), + [anon_sym_constexpr] = ACTIONS(6683), + [anon_sym_volatile] = ACTIONS(6683), + [anon_sym_restrict] = ACTIONS(6683), + [anon_sym___restrict__] = ACTIONS(6683), + [anon_sym__Atomic] = ACTIONS(6683), + [anon_sym__Noreturn] = ACTIONS(6683), + [anon_sym__Nonnull] = ACTIONS(6683), + [anon_sym_nullable] = ACTIONS(6683), + [anon_sym__Complex] = ACTIONS(6683), + [anon_sym__Nullable] = ACTIONS(6683), + [anon_sym__Nullable_result] = ACTIONS(6683), + [anon_sym__Null_unspecified] = ACTIONS(6683), + [anon_sym___autoreleasing] = ACTIONS(6683), + [anon_sym___block] = ACTIONS(6683), + [anon_sym___bridge] = ACTIONS(6683), + [anon_sym___bridge_retained] = ACTIONS(6683), + [anon_sym___bridge_transfer] = ACTIONS(6683), + [anon_sym___complex] = ACTIONS(6683), + [anon_sym___const] = ACTIONS(6683), + [anon_sym___imag] = ACTIONS(6683), + [anon_sym___kindof] = ACTIONS(6683), + [anon_sym___nonnull] = ACTIONS(6683), + [anon_sym___nullable] = ACTIONS(6683), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6683), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6683), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6683), + [anon_sym___real] = ACTIONS(6683), + [anon_sym___strong] = ACTIONS(6683), + [anon_sym___unsafe_unretained] = ACTIONS(6683), + [anon_sym___unused] = ACTIONS(6683), + [anon_sym___weak] = ACTIONS(6683), + [anon_sym_alignas] = ACTIONS(6683), + [anon_sym__Alignas] = ACTIONS(6683), + [sym_primitive_type] = ACTIONS(6683), + [anon_sym_enum] = ACTIONS(6683), + [anon_sym_struct] = ACTIONS(6683), + [anon_sym_union] = ACTIONS(6683), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6683), + [anon_sym___typeof] = ACTIONS(6683), + [anon_sym_typeof] = ACTIONS(6683), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6683), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6683), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6683), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6683), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6683), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6683), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6683), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6683), + [anon_sym_NS_AVAILABLE] = ACTIONS(6683), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6683), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_API_AVAILABLE] = ACTIONS(6683), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_API_DEPRECATED] = ACTIONS(6683), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6683), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6683), + [anon_sym___deprecated_msg] = ACTIONS(6683), + [anon_sym___deprecated_enum_msg] = ACTIONS(6683), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6683), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6683), + [anon_sym_BOOL] = ACTIONS(6683), + [anon_sym_IMP] = ACTIONS(6683), + [anon_sym_SEL] = ACTIONS(6683), + [anon_sym_Class] = ACTIONS(6683), + [anon_sym_id] = ACTIONS(6683), + [anon_sym_ATdefs] = ACTIONS(6685), + }, + [2768] = { + [sym_identifier] = ACTIONS(6687), + [aux_sym_preproc_def_token1] = ACTIONS(6687), + [aux_sym_preproc_if_token1] = ACTIONS(6687), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6687), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6687), + [sym_preproc_directive] = ACTIONS(6687), + [anon_sym___extension__] = ACTIONS(6687), + [anon_sym_extern] = ACTIONS(6687), + [anon_sym___attribute__] = ACTIONS(6687), + [anon_sym___attribute] = ACTIONS(6687), + [anon_sym_noreturn] = ACTIONS(6687), + [anon_sym_LBRACK] = ACTIONS(6689), + [anon_sym___declspec] = ACTIONS(6687), + [anon_sym_RBRACE] = ACTIONS(6689), + [anon_sym_signed] = ACTIONS(6687), + [anon_sym_unsigned] = ACTIONS(6687), + [anon_sym_long] = ACTIONS(6687), + [anon_sym_short] = ACTIONS(6687), + [anon_sym_static] = ACTIONS(6687), + [anon_sym_auto] = ACTIONS(6687), + [anon_sym_register] = ACTIONS(6687), + [anon_sym_inline] = ACTIONS(6687), + [anon_sym___inline] = ACTIONS(6687), + [anon_sym___inline__] = ACTIONS(6687), + [anon_sym___forceinline] = ACTIONS(6687), + [anon_sym_thread_local] = ACTIONS(6687), + [anon_sym___thread] = ACTIONS(6687), + [anon_sym_CG_EXTERN] = ACTIONS(6687), + [anon_sym_CG_INLINE] = ACTIONS(6687), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6687), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6687), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6687), + [anon_sym_IBOutlet] = ACTIONS(6687), + [anon_sym_IBInspectable] = ACTIONS(6687), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6687), + [anon_sym_NS_INLINE] = ACTIONS(6687), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6687), + [anon_sym_OBJC_EXPORT] = ACTIONS(6687), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6687), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6687), + [anon_sym_const] = ACTIONS(6687), + [anon_sym_constexpr] = ACTIONS(6687), + [anon_sym_volatile] = ACTIONS(6687), + [anon_sym_restrict] = ACTIONS(6687), + [anon_sym___restrict__] = ACTIONS(6687), + [anon_sym__Atomic] = ACTIONS(6687), + [anon_sym__Noreturn] = ACTIONS(6687), + [anon_sym__Nonnull] = ACTIONS(6687), + [anon_sym_nullable] = ACTIONS(6687), + [anon_sym__Complex] = ACTIONS(6687), + [anon_sym__Nullable] = ACTIONS(6687), + [anon_sym__Nullable_result] = ACTIONS(6687), + [anon_sym__Null_unspecified] = ACTIONS(6687), + [anon_sym___autoreleasing] = ACTIONS(6687), + [anon_sym___block] = ACTIONS(6687), + [anon_sym___bridge] = ACTIONS(6687), + [anon_sym___bridge_retained] = ACTIONS(6687), + [anon_sym___bridge_transfer] = ACTIONS(6687), + [anon_sym___complex] = ACTIONS(6687), + [anon_sym___const] = ACTIONS(6687), + [anon_sym___imag] = ACTIONS(6687), + [anon_sym___kindof] = ACTIONS(6687), + [anon_sym___nonnull] = ACTIONS(6687), + [anon_sym___nullable] = ACTIONS(6687), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6687), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6687), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6687), + [anon_sym___real] = ACTIONS(6687), + [anon_sym___strong] = ACTIONS(6687), + [anon_sym___unsafe_unretained] = ACTIONS(6687), + [anon_sym___unused] = ACTIONS(6687), + [anon_sym___weak] = ACTIONS(6687), + [anon_sym_alignas] = ACTIONS(6687), + [anon_sym__Alignas] = ACTIONS(6687), + [sym_primitive_type] = ACTIONS(6687), + [anon_sym_enum] = ACTIONS(6687), + [anon_sym_struct] = ACTIONS(6687), + [anon_sym_union] = ACTIONS(6687), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6687), + [anon_sym___typeof] = ACTIONS(6687), + [anon_sym_typeof] = ACTIONS(6687), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6687), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6687), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6687), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6687), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6687), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6687), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6687), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6687), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6687), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6687), + [anon_sym_NS_AVAILABLE] = ACTIONS(6687), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6687), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6687), + [anon_sym_API_AVAILABLE] = ACTIONS(6687), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6687), + [anon_sym_API_DEPRECATED] = ACTIONS(6687), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6687), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6687), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6687), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6687), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6687), + [anon_sym___deprecated_msg] = ACTIONS(6687), + [anon_sym___deprecated_enum_msg] = ACTIONS(6687), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6687), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6687), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6687), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6687), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6687), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6687), + [anon_sym_BOOL] = ACTIONS(6687), + [anon_sym_IMP] = ACTIONS(6687), + [anon_sym_SEL] = ACTIONS(6687), + [anon_sym_Class] = ACTIONS(6687), + [anon_sym_id] = ACTIONS(6687), + [anon_sym_ATdefs] = ACTIONS(6689), + }, + [2769] = { + [sym_identifier] = ACTIONS(6671), + [aux_sym_preproc_def_token1] = ACTIONS(6671), + [aux_sym_preproc_if_token1] = ACTIONS(6671), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6671), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6671), + [sym_preproc_directive] = ACTIONS(6671), + [anon_sym___extension__] = ACTIONS(6671), + [anon_sym_extern] = ACTIONS(6671), + [anon_sym___attribute__] = ACTIONS(6671), + [anon_sym___attribute] = ACTIONS(6671), + [anon_sym_noreturn] = ACTIONS(6671), + [anon_sym_LBRACK] = ACTIONS(6673), + [anon_sym___declspec] = ACTIONS(6671), + [anon_sym_RBRACE] = ACTIONS(6673), + [anon_sym_signed] = ACTIONS(6671), + [anon_sym_unsigned] = ACTIONS(6671), + [anon_sym_long] = ACTIONS(6671), + [anon_sym_short] = ACTIONS(6671), + [anon_sym_static] = ACTIONS(6671), + [anon_sym_auto] = ACTIONS(6671), + [anon_sym_register] = ACTIONS(6671), + [anon_sym_inline] = ACTIONS(6671), + [anon_sym___inline] = ACTIONS(6671), + [anon_sym___inline__] = ACTIONS(6671), + [anon_sym___forceinline] = ACTIONS(6671), + [anon_sym_thread_local] = ACTIONS(6671), + [anon_sym___thread] = ACTIONS(6671), + [anon_sym_CG_EXTERN] = ACTIONS(6671), + [anon_sym_CG_INLINE] = ACTIONS(6671), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6671), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6671), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6671), + [anon_sym_IBOutlet] = ACTIONS(6671), + [anon_sym_IBInspectable] = ACTIONS(6671), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6671), + [anon_sym_NS_INLINE] = ACTIONS(6671), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6671), + [anon_sym_OBJC_EXPORT] = ACTIONS(6671), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6671), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6671), + [anon_sym_const] = ACTIONS(6671), + [anon_sym_constexpr] = ACTIONS(6671), + [anon_sym_volatile] = ACTIONS(6671), + [anon_sym_restrict] = ACTIONS(6671), + [anon_sym___restrict__] = ACTIONS(6671), + [anon_sym__Atomic] = ACTIONS(6671), + [anon_sym__Noreturn] = ACTIONS(6671), + [anon_sym__Nonnull] = ACTIONS(6671), + [anon_sym_nullable] = ACTIONS(6671), + [anon_sym__Complex] = ACTIONS(6671), + [anon_sym__Nullable] = ACTIONS(6671), + [anon_sym__Nullable_result] = ACTIONS(6671), + [anon_sym__Null_unspecified] = ACTIONS(6671), + [anon_sym___autoreleasing] = ACTIONS(6671), + [anon_sym___block] = ACTIONS(6671), + [anon_sym___bridge] = ACTIONS(6671), + [anon_sym___bridge_retained] = ACTIONS(6671), + [anon_sym___bridge_transfer] = ACTIONS(6671), + [anon_sym___complex] = ACTIONS(6671), + [anon_sym___const] = ACTIONS(6671), + [anon_sym___imag] = ACTIONS(6671), + [anon_sym___kindof] = ACTIONS(6671), + [anon_sym___nonnull] = ACTIONS(6671), + [anon_sym___nullable] = ACTIONS(6671), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6671), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6671), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6671), + [anon_sym___real] = ACTIONS(6671), + [anon_sym___strong] = ACTIONS(6671), + [anon_sym___unsafe_unretained] = ACTIONS(6671), + [anon_sym___unused] = ACTIONS(6671), + [anon_sym___weak] = ACTIONS(6671), + [anon_sym_alignas] = ACTIONS(6671), + [anon_sym__Alignas] = ACTIONS(6671), + [sym_primitive_type] = ACTIONS(6671), + [anon_sym_enum] = ACTIONS(6671), + [anon_sym_struct] = ACTIONS(6671), + [anon_sym_union] = ACTIONS(6671), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6671), + [anon_sym___typeof] = ACTIONS(6671), + [anon_sym_typeof] = ACTIONS(6671), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6671), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6671), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6671), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6671), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6671), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6671), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6671), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6671), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6671), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6671), + [anon_sym_NS_AVAILABLE] = ACTIONS(6671), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6671), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6671), + [anon_sym_API_AVAILABLE] = ACTIONS(6671), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6671), + [anon_sym_API_DEPRECATED] = ACTIONS(6671), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6671), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6671), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6671), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6671), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6671), + [anon_sym___deprecated_msg] = ACTIONS(6671), + [anon_sym___deprecated_enum_msg] = ACTIONS(6671), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6671), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6671), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6671), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6671), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6671), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6671), + [anon_sym_BOOL] = ACTIONS(6671), + [anon_sym_IMP] = ACTIONS(6671), + [anon_sym_SEL] = ACTIONS(6671), + [anon_sym_Class] = ACTIONS(6671), + [anon_sym_id] = ACTIONS(6671), + [anon_sym_ATdefs] = ACTIONS(6673), + }, + [2770] = { + [sym_identifier] = ACTIONS(6695), + [aux_sym_preproc_def_token1] = ACTIONS(6695), + [aux_sym_preproc_if_token1] = ACTIONS(6695), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6695), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6695), + [sym_preproc_directive] = ACTIONS(6695), + [anon_sym___extension__] = ACTIONS(6695), + [anon_sym_extern] = ACTIONS(6695), + [anon_sym___attribute__] = ACTIONS(6695), + [anon_sym___attribute] = ACTIONS(6695), + [anon_sym_noreturn] = ACTIONS(6695), + [anon_sym_LBRACK] = ACTIONS(6697), + [anon_sym___declspec] = ACTIONS(6695), + [anon_sym_RBRACE] = ACTIONS(6697), + [anon_sym_signed] = ACTIONS(6695), + [anon_sym_unsigned] = ACTIONS(6695), + [anon_sym_long] = ACTIONS(6695), + [anon_sym_short] = ACTIONS(6695), + [anon_sym_static] = ACTIONS(6695), + [anon_sym_auto] = ACTIONS(6695), + [anon_sym_register] = ACTIONS(6695), + [anon_sym_inline] = ACTIONS(6695), + [anon_sym___inline] = ACTIONS(6695), + [anon_sym___inline__] = ACTIONS(6695), + [anon_sym___forceinline] = ACTIONS(6695), + [anon_sym_thread_local] = ACTIONS(6695), + [anon_sym___thread] = ACTIONS(6695), + [anon_sym_CG_EXTERN] = ACTIONS(6695), + [anon_sym_CG_INLINE] = ACTIONS(6695), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6695), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6695), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6695), + [anon_sym_IBOutlet] = ACTIONS(6695), + [anon_sym_IBInspectable] = ACTIONS(6695), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6695), + [anon_sym_NS_INLINE] = ACTIONS(6695), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6695), + [anon_sym_OBJC_EXPORT] = ACTIONS(6695), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6695), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6695), + [anon_sym_const] = ACTIONS(6695), + [anon_sym_constexpr] = ACTIONS(6695), + [anon_sym_volatile] = ACTIONS(6695), + [anon_sym_restrict] = ACTIONS(6695), + [anon_sym___restrict__] = ACTIONS(6695), + [anon_sym__Atomic] = ACTIONS(6695), + [anon_sym__Noreturn] = ACTIONS(6695), + [anon_sym__Nonnull] = ACTIONS(6695), + [anon_sym_nullable] = ACTIONS(6695), + [anon_sym__Complex] = ACTIONS(6695), + [anon_sym__Nullable] = ACTIONS(6695), + [anon_sym__Nullable_result] = ACTIONS(6695), + [anon_sym__Null_unspecified] = ACTIONS(6695), + [anon_sym___autoreleasing] = ACTIONS(6695), + [anon_sym___block] = ACTIONS(6695), + [anon_sym___bridge] = ACTIONS(6695), + [anon_sym___bridge_retained] = ACTIONS(6695), + [anon_sym___bridge_transfer] = ACTIONS(6695), + [anon_sym___complex] = ACTIONS(6695), + [anon_sym___const] = ACTIONS(6695), + [anon_sym___imag] = ACTIONS(6695), + [anon_sym___kindof] = ACTIONS(6695), + [anon_sym___nonnull] = ACTIONS(6695), + [anon_sym___nullable] = ACTIONS(6695), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6695), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6695), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6695), + [anon_sym___real] = ACTIONS(6695), + [anon_sym___strong] = ACTIONS(6695), + [anon_sym___unsafe_unretained] = ACTIONS(6695), + [anon_sym___unused] = ACTIONS(6695), + [anon_sym___weak] = ACTIONS(6695), + [anon_sym_alignas] = ACTIONS(6695), + [anon_sym__Alignas] = ACTIONS(6695), + [sym_primitive_type] = ACTIONS(6695), + [anon_sym_enum] = ACTIONS(6695), + [anon_sym_struct] = ACTIONS(6695), + [anon_sym_union] = ACTIONS(6695), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6695), + [anon_sym___typeof] = ACTIONS(6695), + [anon_sym_typeof] = ACTIONS(6695), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6695), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6695), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6695), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6695), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6695), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6695), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6695), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6695), + [anon_sym_NS_AVAILABLE] = ACTIONS(6695), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6695), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_API_AVAILABLE] = ACTIONS(6695), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_API_DEPRECATED] = ACTIONS(6695), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6695), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6695), + [anon_sym___deprecated_msg] = ACTIONS(6695), + [anon_sym___deprecated_enum_msg] = ACTIONS(6695), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6695), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6695), + [anon_sym_BOOL] = ACTIONS(6695), + [anon_sym_IMP] = ACTIONS(6695), + [anon_sym_SEL] = ACTIONS(6695), + [anon_sym_Class] = ACTIONS(6695), + [anon_sym_id] = ACTIONS(6695), + [anon_sym_ATdefs] = ACTIONS(6697), + }, + [2771] = { + [sym_identifier] = ACTIONS(6711), + [aux_sym_preproc_def_token1] = ACTIONS(6711), + [aux_sym_preproc_if_token1] = ACTIONS(6711), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6711), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6711), + [sym_preproc_directive] = ACTIONS(6711), + [anon_sym___extension__] = ACTIONS(6711), + [anon_sym_extern] = ACTIONS(6711), + [anon_sym___attribute__] = ACTIONS(6711), + [anon_sym___attribute] = ACTIONS(6711), + [anon_sym_noreturn] = ACTIONS(6711), + [anon_sym_LBRACK] = ACTIONS(6713), + [anon_sym___declspec] = ACTIONS(6711), + [anon_sym_RBRACE] = ACTIONS(6713), + [anon_sym_signed] = ACTIONS(6711), + [anon_sym_unsigned] = ACTIONS(6711), + [anon_sym_long] = ACTIONS(6711), + [anon_sym_short] = ACTIONS(6711), + [anon_sym_static] = ACTIONS(6711), + [anon_sym_auto] = ACTIONS(6711), + [anon_sym_register] = ACTIONS(6711), + [anon_sym_inline] = ACTIONS(6711), + [anon_sym___inline] = ACTIONS(6711), + [anon_sym___inline__] = ACTIONS(6711), + [anon_sym___forceinline] = ACTIONS(6711), + [anon_sym_thread_local] = ACTIONS(6711), + [anon_sym___thread] = ACTIONS(6711), + [anon_sym_CG_EXTERN] = ACTIONS(6711), + [anon_sym_CG_INLINE] = ACTIONS(6711), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6711), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6711), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6711), + [anon_sym_IBOutlet] = ACTIONS(6711), + [anon_sym_IBInspectable] = ACTIONS(6711), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6711), + [anon_sym_NS_INLINE] = ACTIONS(6711), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6711), + [anon_sym_OBJC_EXPORT] = ACTIONS(6711), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6711), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6711), + [anon_sym_const] = ACTIONS(6711), + [anon_sym_constexpr] = ACTIONS(6711), + [anon_sym_volatile] = ACTIONS(6711), + [anon_sym_restrict] = ACTIONS(6711), + [anon_sym___restrict__] = ACTIONS(6711), + [anon_sym__Atomic] = ACTIONS(6711), + [anon_sym__Noreturn] = ACTIONS(6711), + [anon_sym__Nonnull] = ACTIONS(6711), + [anon_sym_nullable] = ACTIONS(6711), + [anon_sym__Complex] = ACTIONS(6711), + [anon_sym__Nullable] = ACTIONS(6711), + [anon_sym__Nullable_result] = ACTIONS(6711), + [anon_sym__Null_unspecified] = ACTIONS(6711), + [anon_sym___autoreleasing] = ACTIONS(6711), + [anon_sym___block] = ACTIONS(6711), + [anon_sym___bridge] = ACTIONS(6711), + [anon_sym___bridge_retained] = ACTIONS(6711), + [anon_sym___bridge_transfer] = ACTIONS(6711), + [anon_sym___complex] = ACTIONS(6711), + [anon_sym___const] = ACTIONS(6711), + [anon_sym___imag] = ACTIONS(6711), + [anon_sym___kindof] = ACTIONS(6711), + [anon_sym___nonnull] = ACTIONS(6711), + [anon_sym___nullable] = ACTIONS(6711), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6711), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6711), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6711), + [anon_sym___real] = ACTIONS(6711), + [anon_sym___strong] = ACTIONS(6711), + [anon_sym___unsafe_unretained] = ACTIONS(6711), + [anon_sym___unused] = ACTIONS(6711), + [anon_sym___weak] = ACTIONS(6711), + [anon_sym_alignas] = ACTIONS(6711), + [anon_sym__Alignas] = ACTIONS(6711), + [sym_primitive_type] = ACTIONS(6711), + [anon_sym_enum] = ACTIONS(6711), + [anon_sym_struct] = ACTIONS(6711), + [anon_sym_union] = ACTIONS(6711), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6711), + [anon_sym___typeof] = ACTIONS(6711), + [anon_sym_typeof] = ACTIONS(6711), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6711), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6711), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6711), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6711), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6711), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6711), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6711), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6711), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6711), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6711), + [anon_sym_NS_AVAILABLE] = ACTIONS(6711), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6711), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6711), + [anon_sym_API_AVAILABLE] = ACTIONS(6711), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6711), + [anon_sym_API_DEPRECATED] = ACTIONS(6711), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6711), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6711), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6711), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6711), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6711), + [anon_sym___deprecated_msg] = ACTIONS(6711), + [anon_sym___deprecated_enum_msg] = ACTIONS(6711), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6711), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6711), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6711), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6711), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6711), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6711), + [anon_sym_BOOL] = ACTIONS(6711), + [anon_sym_IMP] = ACTIONS(6711), + [anon_sym_SEL] = ACTIONS(6711), + [anon_sym_Class] = ACTIONS(6711), + [anon_sym_id] = ACTIONS(6711), + [anon_sym_ATdefs] = ACTIONS(6713), + }, + [2772] = { + [sym_identifier] = ACTIONS(6711), + [aux_sym_preproc_def_token1] = ACTIONS(6711), + [aux_sym_preproc_if_token1] = ACTIONS(6711), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6711), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6711), + [sym_preproc_directive] = ACTIONS(6711), + [anon_sym___extension__] = ACTIONS(6711), + [anon_sym_extern] = ACTIONS(6711), + [anon_sym___attribute__] = ACTIONS(6711), + [anon_sym___attribute] = ACTIONS(6711), + [anon_sym_noreturn] = ACTIONS(6711), + [anon_sym_LBRACK] = ACTIONS(6713), + [anon_sym___declspec] = ACTIONS(6711), + [anon_sym_RBRACE] = ACTIONS(6713), + [anon_sym_signed] = ACTIONS(6711), + [anon_sym_unsigned] = ACTIONS(6711), + [anon_sym_long] = ACTIONS(6711), + [anon_sym_short] = ACTIONS(6711), + [anon_sym_static] = ACTIONS(6711), + [anon_sym_auto] = ACTIONS(6711), + [anon_sym_register] = ACTIONS(6711), + [anon_sym_inline] = ACTIONS(6711), + [anon_sym___inline] = ACTIONS(6711), + [anon_sym___inline__] = ACTIONS(6711), + [anon_sym___forceinline] = ACTIONS(6711), + [anon_sym_thread_local] = ACTIONS(6711), + [anon_sym___thread] = ACTIONS(6711), + [anon_sym_CG_EXTERN] = ACTIONS(6711), + [anon_sym_CG_INLINE] = ACTIONS(6711), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6711), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6711), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6711), + [anon_sym_IBOutlet] = ACTIONS(6711), + [anon_sym_IBInspectable] = ACTIONS(6711), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6711), + [anon_sym_NS_INLINE] = ACTIONS(6711), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6711), + [anon_sym_OBJC_EXPORT] = ACTIONS(6711), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6711), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6711), + [anon_sym_const] = ACTIONS(6711), + [anon_sym_constexpr] = ACTIONS(6711), + [anon_sym_volatile] = ACTIONS(6711), + [anon_sym_restrict] = ACTIONS(6711), + [anon_sym___restrict__] = ACTIONS(6711), + [anon_sym__Atomic] = ACTIONS(6711), + [anon_sym__Noreturn] = ACTIONS(6711), + [anon_sym__Nonnull] = ACTIONS(6711), + [anon_sym_nullable] = ACTIONS(6711), + [anon_sym__Complex] = ACTIONS(6711), + [anon_sym__Nullable] = ACTIONS(6711), + [anon_sym__Nullable_result] = ACTIONS(6711), + [anon_sym__Null_unspecified] = ACTIONS(6711), + [anon_sym___autoreleasing] = ACTIONS(6711), + [anon_sym___block] = ACTIONS(6711), + [anon_sym___bridge] = ACTIONS(6711), + [anon_sym___bridge_retained] = ACTIONS(6711), + [anon_sym___bridge_transfer] = ACTIONS(6711), + [anon_sym___complex] = ACTIONS(6711), + [anon_sym___const] = ACTIONS(6711), + [anon_sym___imag] = ACTIONS(6711), + [anon_sym___kindof] = ACTIONS(6711), + [anon_sym___nonnull] = ACTIONS(6711), + [anon_sym___nullable] = ACTIONS(6711), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6711), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6711), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6711), + [anon_sym___real] = ACTIONS(6711), + [anon_sym___strong] = ACTIONS(6711), + [anon_sym___unsafe_unretained] = ACTIONS(6711), + [anon_sym___unused] = ACTIONS(6711), + [anon_sym___weak] = ACTIONS(6711), + [anon_sym_alignas] = ACTIONS(6711), + [anon_sym__Alignas] = ACTIONS(6711), + [sym_primitive_type] = ACTIONS(6711), + [anon_sym_enum] = ACTIONS(6711), + [anon_sym_struct] = ACTIONS(6711), + [anon_sym_union] = ACTIONS(6711), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6711), + [anon_sym___typeof] = ACTIONS(6711), + [anon_sym_typeof] = ACTIONS(6711), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6711), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6711), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6711), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6711), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6711), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6711), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6711), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6711), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6711), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6711), + [anon_sym_NS_AVAILABLE] = ACTIONS(6711), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6711), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6711), + [anon_sym_API_AVAILABLE] = ACTIONS(6711), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6711), + [anon_sym_API_DEPRECATED] = ACTIONS(6711), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6711), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6711), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6711), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6711), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6711), + [anon_sym___deprecated_msg] = ACTIONS(6711), + [anon_sym___deprecated_enum_msg] = ACTIONS(6711), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6711), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6711), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6711), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6711), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6711), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6711), + [anon_sym_BOOL] = ACTIONS(6711), + [anon_sym_IMP] = ACTIONS(6711), + [anon_sym_SEL] = ACTIONS(6711), + [anon_sym_Class] = ACTIONS(6711), + [anon_sym_id] = ACTIONS(6711), + [anon_sym_ATdefs] = ACTIONS(6713), + }, + [2773] = { + [sym_identifier] = ACTIONS(6671), + [aux_sym_preproc_def_token1] = ACTIONS(6671), + [aux_sym_preproc_if_token1] = ACTIONS(6671), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6671), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6671), + [sym_preproc_directive] = ACTIONS(6671), + [anon_sym___extension__] = ACTIONS(6671), + [anon_sym_extern] = ACTIONS(6671), + [anon_sym___attribute__] = ACTIONS(6671), + [anon_sym___attribute] = ACTIONS(6671), + [anon_sym_noreturn] = ACTIONS(6671), + [anon_sym_LBRACK] = ACTIONS(6673), + [anon_sym___declspec] = ACTIONS(6671), + [anon_sym_RBRACE] = ACTIONS(6673), + [anon_sym_signed] = ACTIONS(6671), + [anon_sym_unsigned] = ACTIONS(6671), + [anon_sym_long] = ACTIONS(6671), + [anon_sym_short] = ACTIONS(6671), + [anon_sym_static] = ACTIONS(6671), + [anon_sym_auto] = ACTIONS(6671), + [anon_sym_register] = ACTIONS(6671), + [anon_sym_inline] = ACTIONS(6671), + [anon_sym___inline] = ACTIONS(6671), + [anon_sym___inline__] = ACTIONS(6671), + [anon_sym___forceinline] = ACTIONS(6671), + [anon_sym_thread_local] = ACTIONS(6671), + [anon_sym___thread] = ACTIONS(6671), + [anon_sym_CG_EXTERN] = ACTIONS(6671), + [anon_sym_CG_INLINE] = ACTIONS(6671), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6671), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6671), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6671), + [anon_sym_IBOutlet] = ACTIONS(6671), + [anon_sym_IBInspectable] = ACTIONS(6671), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6671), + [anon_sym_NS_INLINE] = ACTIONS(6671), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6671), + [anon_sym_OBJC_EXPORT] = ACTIONS(6671), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6671), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6671), + [anon_sym_const] = ACTIONS(6671), + [anon_sym_constexpr] = ACTIONS(6671), + [anon_sym_volatile] = ACTIONS(6671), + [anon_sym_restrict] = ACTIONS(6671), + [anon_sym___restrict__] = ACTIONS(6671), + [anon_sym__Atomic] = ACTIONS(6671), + [anon_sym__Noreturn] = ACTIONS(6671), + [anon_sym__Nonnull] = ACTIONS(6671), + [anon_sym_nullable] = ACTIONS(6671), + [anon_sym__Complex] = ACTIONS(6671), + [anon_sym__Nullable] = ACTIONS(6671), + [anon_sym__Nullable_result] = ACTIONS(6671), + [anon_sym__Null_unspecified] = ACTIONS(6671), + [anon_sym___autoreleasing] = ACTIONS(6671), + [anon_sym___block] = ACTIONS(6671), + [anon_sym___bridge] = ACTIONS(6671), + [anon_sym___bridge_retained] = ACTIONS(6671), + [anon_sym___bridge_transfer] = ACTIONS(6671), + [anon_sym___complex] = ACTIONS(6671), + [anon_sym___const] = ACTIONS(6671), + [anon_sym___imag] = ACTIONS(6671), + [anon_sym___kindof] = ACTIONS(6671), + [anon_sym___nonnull] = ACTIONS(6671), + [anon_sym___nullable] = ACTIONS(6671), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6671), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6671), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6671), + [anon_sym___real] = ACTIONS(6671), + [anon_sym___strong] = ACTIONS(6671), + [anon_sym___unsafe_unretained] = ACTIONS(6671), + [anon_sym___unused] = ACTIONS(6671), + [anon_sym___weak] = ACTIONS(6671), + [anon_sym_alignas] = ACTIONS(6671), + [anon_sym__Alignas] = ACTIONS(6671), + [sym_primitive_type] = ACTIONS(6671), + [anon_sym_enum] = ACTIONS(6671), + [anon_sym_struct] = ACTIONS(6671), + [anon_sym_union] = ACTIONS(6671), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6671), + [anon_sym___typeof] = ACTIONS(6671), + [anon_sym_typeof] = ACTIONS(6671), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6671), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6671), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6671), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6671), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6671), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6671), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6671), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6671), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6671), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6671), + [anon_sym_NS_AVAILABLE] = ACTIONS(6671), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6671), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6671), + [anon_sym_API_AVAILABLE] = ACTIONS(6671), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6671), + [anon_sym_API_DEPRECATED] = ACTIONS(6671), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6671), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6671), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6671), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6671), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6671), + [anon_sym___deprecated_msg] = ACTIONS(6671), + [anon_sym___deprecated_enum_msg] = ACTIONS(6671), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6671), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6671), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6671), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6671), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6671), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6671), + [anon_sym_BOOL] = ACTIONS(6671), + [anon_sym_IMP] = ACTIONS(6671), + [anon_sym_SEL] = ACTIONS(6671), + [anon_sym_Class] = ACTIONS(6671), + [anon_sym_id] = ACTIONS(6671), + [anon_sym_ATdefs] = ACTIONS(6673), + }, + [2774] = { + [sym_identifier] = ACTIONS(6695), + [aux_sym_preproc_def_token1] = ACTIONS(6695), + [aux_sym_preproc_if_token1] = ACTIONS(6695), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6695), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6695), + [sym_preproc_directive] = ACTIONS(6695), + [anon_sym___extension__] = ACTIONS(6695), + [anon_sym_extern] = ACTIONS(6695), + [anon_sym___attribute__] = ACTIONS(6695), + [anon_sym___attribute] = ACTIONS(6695), + [anon_sym_noreturn] = ACTIONS(6695), + [anon_sym_LBRACK] = ACTIONS(6697), + [anon_sym___declspec] = ACTIONS(6695), + [anon_sym_RBRACE] = ACTIONS(6697), + [anon_sym_signed] = ACTIONS(6695), + [anon_sym_unsigned] = ACTIONS(6695), + [anon_sym_long] = ACTIONS(6695), + [anon_sym_short] = ACTIONS(6695), + [anon_sym_static] = ACTIONS(6695), + [anon_sym_auto] = ACTIONS(6695), + [anon_sym_register] = ACTIONS(6695), + [anon_sym_inline] = ACTIONS(6695), + [anon_sym___inline] = ACTIONS(6695), + [anon_sym___inline__] = ACTIONS(6695), + [anon_sym___forceinline] = ACTIONS(6695), + [anon_sym_thread_local] = ACTIONS(6695), + [anon_sym___thread] = ACTIONS(6695), + [anon_sym_CG_EXTERN] = ACTIONS(6695), + [anon_sym_CG_INLINE] = ACTIONS(6695), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6695), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6695), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6695), + [anon_sym_IBOutlet] = ACTIONS(6695), + [anon_sym_IBInspectable] = ACTIONS(6695), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6695), + [anon_sym_NS_INLINE] = ACTIONS(6695), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6695), + [anon_sym_OBJC_EXPORT] = ACTIONS(6695), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6695), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6695), + [anon_sym_const] = ACTIONS(6695), + [anon_sym_constexpr] = ACTIONS(6695), + [anon_sym_volatile] = ACTIONS(6695), + [anon_sym_restrict] = ACTIONS(6695), + [anon_sym___restrict__] = ACTIONS(6695), + [anon_sym__Atomic] = ACTIONS(6695), + [anon_sym__Noreturn] = ACTIONS(6695), + [anon_sym__Nonnull] = ACTIONS(6695), + [anon_sym_nullable] = ACTIONS(6695), + [anon_sym__Complex] = ACTIONS(6695), + [anon_sym__Nullable] = ACTIONS(6695), + [anon_sym__Nullable_result] = ACTIONS(6695), + [anon_sym__Null_unspecified] = ACTIONS(6695), + [anon_sym___autoreleasing] = ACTIONS(6695), + [anon_sym___block] = ACTIONS(6695), + [anon_sym___bridge] = ACTIONS(6695), + [anon_sym___bridge_retained] = ACTIONS(6695), + [anon_sym___bridge_transfer] = ACTIONS(6695), + [anon_sym___complex] = ACTIONS(6695), + [anon_sym___const] = ACTIONS(6695), + [anon_sym___imag] = ACTIONS(6695), + [anon_sym___kindof] = ACTIONS(6695), + [anon_sym___nonnull] = ACTIONS(6695), + [anon_sym___nullable] = ACTIONS(6695), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6695), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6695), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6695), + [anon_sym___real] = ACTIONS(6695), + [anon_sym___strong] = ACTIONS(6695), + [anon_sym___unsafe_unretained] = ACTIONS(6695), + [anon_sym___unused] = ACTIONS(6695), + [anon_sym___weak] = ACTIONS(6695), + [anon_sym_alignas] = ACTIONS(6695), + [anon_sym__Alignas] = ACTIONS(6695), + [sym_primitive_type] = ACTIONS(6695), + [anon_sym_enum] = ACTIONS(6695), + [anon_sym_struct] = ACTIONS(6695), + [anon_sym_union] = ACTIONS(6695), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6695), + [anon_sym___typeof] = ACTIONS(6695), + [anon_sym_typeof] = ACTIONS(6695), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6695), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6695), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6695), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6695), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6695), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6695), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6695), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6695), + [anon_sym_NS_AVAILABLE] = ACTIONS(6695), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6695), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_API_AVAILABLE] = ACTIONS(6695), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_API_DEPRECATED] = ACTIONS(6695), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6695), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6695), + [anon_sym___deprecated_msg] = ACTIONS(6695), + [anon_sym___deprecated_enum_msg] = ACTIONS(6695), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6695), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6695), + [anon_sym_BOOL] = ACTIONS(6695), + [anon_sym_IMP] = ACTIONS(6695), + [anon_sym_SEL] = ACTIONS(6695), + [anon_sym_Class] = ACTIONS(6695), + [anon_sym_id] = ACTIONS(6695), + [anon_sym_ATdefs] = ACTIONS(6697), + }, + [2775] = { + [sym_identifier] = ACTIONS(6683), + [aux_sym_preproc_def_token1] = ACTIONS(6683), + [aux_sym_preproc_if_token1] = ACTIONS(6683), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6683), + [sym_preproc_directive] = ACTIONS(6683), + [anon_sym___extension__] = ACTIONS(6683), + [anon_sym_extern] = ACTIONS(6683), + [anon_sym___attribute__] = ACTIONS(6683), + [anon_sym___attribute] = ACTIONS(6683), + [anon_sym_noreturn] = ACTIONS(6683), + [anon_sym_LBRACK] = ACTIONS(6685), + [anon_sym___declspec] = ACTIONS(6683), + [anon_sym_RBRACE] = ACTIONS(6685), + [anon_sym_signed] = ACTIONS(6683), + [anon_sym_unsigned] = ACTIONS(6683), + [anon_sym_long] = ACTIONS(6683), + [anon_sym_short] = ACTIONS(6683), + [anon_sym_static] = ACTIONS(6683), + [anon_sym_auto] = ACTIONS(6683), + [anon_sym_register] = ACTIONS(6683), + [anon_sym_inline] = ACTIONS(6683), + [anon_sym___inline] = ACTIONS(6683), + [anon_sym___inline__] = ACTIONS(6683), + [anon_sym___forceinline] = ACTIONS(6683), + [anon_sym_thread_local] = ACTIONS(6683), + [anon_sym___thread] = ACTIONS(6683), + [anon_sym_CG_EXTERN] = ACTIONS(6683), + [anon_sym_CG_INLINE] = ACTIONS(6683), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6683), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6683), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6683), + [anon_sym_IBOutlet] = ACTIONS(6683), + [anon_sym_IBInspectable] = ACTIONS(6683), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6683), + [anon_sym_NS_INLINE] = ACTIONS(6683), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6683), + [anon_sym_OBJC_EXPORT] = ACTIONS(6683), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6683), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6683), + [anon_sym_const] = ACTIONS(6683), + [anon_sym_constexpr] = ACTIONS(6683), + [anon_sym_volatile] = ACTIONS(6683), + [anon_sym_restrict] = ACTIONS(6683), + [anon_sym___restrict__] = ACTIONS(6683), + [anon_sym__Atomic] = ACTIONS(6683), + [anon_sym__Noreturn] = ACTIONS(6683), + [anon_sym__Nonnull] = ACTIONS(6683), + [anon_sym_nullable] = ACTIONS(6683), + [anon_sym__Complex] = ACTIONS(6683), + [anon_sym__Nullable] = ACTIONS(6683), + [anon_sym__Nullable_result] = ACTIONS(6683), + [anon_sym__Null_unspecified] = ACTIONS(6683), + [anon_sym___autoreleasing] = ACTIONS(6683), + [anon_sym___block] = ACTIONS(6683), + [anon_sym___bridge] = ACTIONS(6683), + [anon_sym___bridge_retained] = ACTIONS(6683), + [anon_sym___bridge_transfer] = ACTIONS(6683), + [anon_sym___complex] = ACTIONS(6683), + [anon_sym___const] = ACTIONS(6683), + [anon_sym___imag] = ACTIONS(6683), + [anon_sym___kindof] = ACTIONS(6683), + [anon_sym___nonnull] = ACTIONS(6683), + [anon_sym___nullable] = ACTIONS(6683), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6683), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6683), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6683), + [anon_sym___real] = ACTIONS(6683), + [anon_sym___strong] = ACTIONS(6683), + [anon_sym___unsafe_unretained] = ACTIONS(6683), + [anon_sym___unused] = ACTIONS(6683), + [anon_sym___weak] = ACTIONS(6683), + [anon_sym_alignas] = ACTIONS(6683), + [anon_sym__Alignas] = ACTIONS(6683), + [sym_primitive_type] = ACTIONS(6683), + [anon_sym_enum] = ACTIONS(6683), + [anon_sym_struct] = ACTIONS(6683), + [anon_sym_union] = ACTIONS(6683), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6683), + [anon_sym___typeof] = ACTIONS(6683), + [anon_sym_typeof] = ACTIONS(6683), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6683), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6683), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6683), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6683), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6683), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6683), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6683), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6683), + [anon_sym_NS_AVAILABLE] = ACTIONS(6683), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6683), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_API_AVAILABLE] = ACTIONS(6683), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_API_DEPRECATED] = ACTIONS(6683), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6683), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6683), + [anon_sym___deprecated_msg] = ACTIONS(6683), + [anon_sym___deprecated_enum_msg] = ACTIONS(6683), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6683), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6683), + [anon_sym_BOOL] = ACTIONS(6683), + [anon_sym_IMP] = ACTIONS(6683), + [anon_sym_SEL] = ACTIONS(6683), + [anon_sym_Class] = ACTIONS(6683), + [anon_sym_id] = ACTIONS(6683), + [anon_sym_ATdefs] = ACTIONS(6685), + }, + [2776] = { + [sym_identifier] = ACTIONS(6683), + [aux_sym_preproc_def_token1] = ACTIONS(6683), + [aux_sym_preproc_if_token1] = ACTIONS(6683), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6683), + [sym_preproc_directive] = ACTIONS(6683), + [anon_sym___extension__] = ACTIONS(6683), + [anon_sym_extern] = ACTIONS(6683), + [anon_sym___attribute__] = ACTIONS(6683), + [anon_sym___attribute] = ACTIONS(6683), + [anon_sym_noreturn] = ACTIONS(6683), + [anon_sym_LBRACK] = ACTIONS(6685), + [anon_sym___declspec] = ACTIONS(6683), + [anon_sym_RBRACE] = ACTIONS(6685), + [anon_sym_signed] = ACTIONS(6683), + [anon_sym_unsigned] = ACTIONS(6683), + [anon_sym_long] = ACTIONS(6683), + [anon_sym_short] = ACTIONS(6683), + [anon_sym_static] = ACTIONS(6683), + [anon_sym_auto] = ACTIONS(6683), + [anon_sym_register] = ACTIONS(6683), + [anon_sym_inline] = ACTIONS(6683), + [anon_sym___inline] = ACTIONS(6683), + [anon_sym___inline__] = ACTIONS(6683), + [anon_sym___forceinline] = ACTIONS(6683), + [anon_sym_thread_local] = ACTIONS(6683), + [anon_sym___thread] = ACTIONS(6683), + [anon_sym_CG_EXTERN] = ACTIONS(6683), + [anon_sym_CG_INLINE] = ACTIONS(6683), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6683), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6683), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6683), + [anon_sym_IBOutlet] = ACTIONS(6683), + [anon_sym_IBInspectable] = ACTIONS(6683), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6683), + [anon_sym_NS_INLINE] = ACTIONS(6683), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6683), + [anon_sym_OBJC_EXPORT] = ACTIONS(6683), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6683), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6683), + [anon_sym_const] = ACTIONS(6683), + [anon_sym_constexpr] = ACTIONS(6683), + [anon_sym_volatile] = ACTIONS(6683), + [anon_sym_restrict] = ACTIONS(6683), + [anon_sym___restrict__] = ACTIONS(6683), + [anon_sym__Atomic] = ACTIONS(6683), + [anon_sym__Noreturn] = ACTIONS(6683), + [anon_sym__Nonnull] = ACTIONS(6683), + [anon_sym_nullable] = ACTIONS(6683), + [anon_sym__Complex] = ACTIONS(6683), + [anon_sym__Nullable] = ACTIONS(6683), + [anon_sym__Nullable_result] = ACTIONS(6683), + [anon_sym__Null_unspecified] = ACTIONS(6683), + [anon_sym___autoreleasing] = ACTIONS(6683), + [anon_sym___block] = ACTIONS(6683), + [anon_sym___bridge] = ACTIONS(6683), + [anon_sym___bridge_retained] = ACTIONS(6683), + [anon_sym___bridge_transfer] = ACTIONS(6683), + [anon_sym___complex] = ACTIONS(6683), + [anon_sym___const] = ACTIONS(6683), + [anon_sym___imag] = ACTIONS(6683), + [anon_sym___kindof] = ACTIONS(6683), + [anon_sym___nonnull] = ACTIONS(6683), + [anon_sym___nullable] = ACTIONS(6683), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6683), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6683), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6683), + [anon_sym___real] = ACTIONS(6683), + [anon_sym___strong] = ACTIONS(6683), + [anon_sym___unsafe_unretained] = ACTIONS(6683), + [anon_sym___unused] = ACTIONS(6683), + [anon_sym___weak] = ACTIONS(6683), + [anon_sym_alignas] = ACTIONS(6683), + [anon_sym__Alignas] = ACTIONS(6683), + [sym_primitive_type] = ACTIONS(6683), + [anon_sym_enum] = ACTIONS(6683), + [anon_sym_struct] = ACTIONS(6683), + [anon_sym_union] = ACTIONS(6683), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6683), + [anon_sym___typeof] = ACTIONS(6683), + [anon_sym_typeof] = ACTIONS(6683), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6683), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6683), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6683), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6683), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6683), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6683), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6683), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6683), + [anon_sym_NS_AVAILABLE] = ACTIONS(6683), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6683), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_API_AVAILABLE] = ACTIONS(6683), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_API_DEPRECATED] = ACTIONS(6683), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6683), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6683), + [anon_sym___deprecated_msg] = ACTIONS(6683), + [anon_sym___deprecated_enum_msg] = ACTIONS(6683), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6683), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6683), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6683), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6683), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6683), + [anon_sym_BOOL] = ACTIONS(6683), + [anon_sym_IMP] = ACTIONS(6683), + [anon_sym_SEL] = ACTIONS(6683), + [anon_sym_Class] = ACTIONS(6683), + [anon_sym_id] = ACTIONS(6683), + [anon_sym_ATdefs] = ACTIONS(6685), + }, + [2777] = { + [sym_identifier] = ACTIONS(6687), + [aux_sym_preproc_def_token1] = ACTIONS(6687), + [aux_sym_preproc_if_token1] = ACTIONS(6687), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6687), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6687), + [sym_preproc_directive] = ACTIONS(6687), + [anon_sym___extension__] = ACTIONS(6687), + [anon_sym_extern] = ACTIONS(6687), + [anon_sym___attribute__] = ACTIONS(6687), + [anon_sym___attribute] = ACTIONS(6687), + [anon_sym_noreturn] = ACTIONS(6687), + [anon_sym_LBRACK] = ACTIONS(6689), + [anon_sym___declspec] = ACTIONS(6687), + [anon_sym_RBRACE] = ACTIONS(6689), + [anon_sym_signed] = ACTIONS(6687), + [anon_sym_unsigned] = ACTIONS(6687), + [anon_sym_long] = ACTIONS(6687), + [anon_sym_short] = ACTIONS(6687), + [anon_sym_static] = ACTIONS(6687), + [anon_sym_auto] = ACTIONS(6687), + [anon_sym_register] = ACTIONS(6687), + [anon_sym_inline] = ACTIONS(6687), + [anon_sym___inline] = ACTIONS(6687), + [anon_sym___inline__] = ACTIONS(6687), + [anon_sym___forceinline] = ACTIONS(6687), + [anon_sym_thread_local] = ACTIONS(6687), + [anon_sym___thread] = ACTIONS(6687), + [anon_sym_CG_EXTERN] = ACTIONS(6687), + [anon_sym_CG_INLINE] = ACTIONS(6687), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6687), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6687), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6687), + [anon_sym_IBOutlet] = ACTIONS(6687), + [anon_sym_IBInspectable] = ACTIONS(6687), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6687), + [anon_sym_NS_INLINE] = ACTIONS(6687), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6687), + [anon_sym_OBJC_EXPORT] = ACTIONS(6687), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6687), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6687), + [anon_sym_const] = ACTIONS(6687), + [anon_sym_constexpr] = ACTIONS(6687), + [anon_sym_volatile] = ACTIONS(6687), + [anon_sym_restrict] = ACTIONS(6687), + [anon_sym___restrict__] = ACTIONS(6687), + [anon_sym__Atomic] = ACTIONS(6687), + [anon_sym__Noreturn] = ACTIONS(6687), + [anon_sym__Nonnull] = ACTIONS(6687), + [anon_sym_nullable] = ACTIONS(6687), + [anon_sym__Complex] = ACTIONS(6687), + [anon_sym__Nullable] = ACTIONS(6687), + [anon_sym__Nullable_result] = ACTIONS(6687), + [anon_sym__Null_unspecified] = ACTIONS(6687), + [anon_sym___autoreleasing] = ACTIONS(6687), + [anon_sym___block] = ACTIONS(6687), + [anon_sym___bridge] = ACTIONS(6687), + [anon_sym___bridge_retained] = ACTIONS(6687), + [anon_sym___bridge_transfer] = ACTIONS(6687), + [anon_sym___complex] = ACTIONS(6687), + [anon_sym___const] = ACTIONS(6687), + [anon_sym___imag] = ACTIONS(6687), + [anon_sym___kindof] = ACTIONS(6687), + [anon_sym___nonnull] = ACTIONS(6687), + [anon_sym___nullable] = ACTIONS(6687), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6687), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6687), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6687), + [anon_sym___real] = ACTIONS(6687), + [anon_sym___strong] = ACTIONS(6687), + [anon_sym___unsafe_unretained] = ACTIONS(6687), + [anon_sym___unused] = ACTIONS(6687), + [anon_sym___weak] = ACTIONS(6687), + [anon_sym_alignas] = ACTIONS(6687), + [anon_sym__Alignas] = ACTIONS(6687), + [sym_primitive_type] = ACTIONS(6687), + [anon_sym_enum] = ACTIONS(6687), + [anon_sym_struct] = ACTIONS(6687), + [anon_sym_union] = ACTIONS(6687), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6687), + [anon_sym___typeof] = ACTIONS(6687), + [anon_sym_typeof] = ACTIONS(6687), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6687), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6687), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6687), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6687), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6687), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6687), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6687), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6687), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6687), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6687), + [anon_sym_NS_AVAILABLE] = ACTIONS(6687), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6687), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6687), + [anon_sym_API_AVAILABLE] = ACTIONS(6687), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6687), + [anon_sym_API_DEPRECATED] = ACTIONS(6687), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6687), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6687), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6687), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6687), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6687), + [anon_sym___deprecated_msg] = ACTIONS(6687), + [anon_sym___deprecated_enum_msg] = ACTIONS(6687), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6687), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6687), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6687), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6687), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6687), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6687), + [anon_sym_BOOL] = ACTIONS(6687), + [anon_sym_IMP] = ACTIONS(6687), + [anon_sym_SEL] = ACTIONS(6687), + [anon_sym_Class] = ACTIONS(6687), + [anon_sym_id] = ACTIONS(6687), + [anon_sym_ATdefs] = ACTIONS(6689), + }, + [2778] = { + [sym_identifier] = ACTIONS(6695), + [aux_sym_preproc_def_token1] = ACTIONS(6695), + [aux_sym_preproc_if_token1] = ACTIONS(6695), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6695), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6695), + [sym_preproc_directive] = ACTIONS(6695), + [anon_sym___extension__] = ACTIONS(6695), + [anon_sym_extern] = ACTIONS(6695), + [anon_sym___attribute__] = ACTIONS(6695), + [anon_sym___attribute] = ACTIONS(6695), + [anon_sym_noreturn] = ACTIONS(6695), + [anon_sym_LBRACK] = ACTIONS(6697), + [anon_sym___declspec] = ACTIONS(6695), + [anon_sym_RBRACE] = ACTIONS(6697), + [anon_sym_signed] = ACTIONS(6695), + [anon_sym_unsigned] = ACTIONS(6695), + [anon_sym_long] = ACTIONS(6695), + [anon_sym_short] = ACTIONS(6695), + [anon_sym_static] = ACTIONS(6695), + [anon_sym_auto] = ACTIONS(6695), + [anon_sym_register] = ACTIONS(6695), + [anon_sym_inline] = ACTIONS(6695), + [anon_sym___inline] = ACTIONS(6695), + [anon_sym___inline__] = ACTIONS(6695), + [anon_sym___forceinline] = ACTIONS(6695), + [anon_sym_thread_local] = ACTIONS(6695), + [anon_sym___thread] = ACTIONS(6695), + [anon_sym_CG_EXTERN] = ACTIONS(6695), + [anon_sym_CG_INLINE] = ACTIONS(6695), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6695), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6695), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6695), + [anon_sym_IBOutlet] = ACTIONS(6695), + [anon_sym_IBInspectable] = ACTIONS(6695), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6695), + [anon_sym_NS_INLINE] = ACTIONS(6695), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6695), + [anon_sym_OBJC_EXPORT] = ACTIONS(6695), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6695), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6695), + [anon_sym_const] = ACTIONS(6695), + [anon_sym_constexpr] = ACTIONS(6695), + [anon_sym_volatile] = ACTIONS(6695), + [anon_sym_restrict] = ACTIONS(6695), + [anon_sym___restrict__] = ACTIONS(6695), + [anon_sym__Atomic] = ACTIONS(6695), + [anon_sym__Noreturn] = ACTIONS(6695), + [anon_sym__Nonnull] = ACTIONS(6695), + [anon_sym_nullable] = ACTIONS(6695), + [anon_sym__Complex] = ACTIONS(6695), + [anon_sym__Nullable] = ACTIONS(6695), + [anon_sym__Nullable_result] = ACTIONS(6695), + [anon_sym__Null_unspecified] = ACTIONS(6695), + [anon_sym___autoreleasing] = ACTIONS(6695), + [anon_sym___block] = ACTIONS(6695), + [anon_sym___bridge] = ACTIONS(6695), + [anon_sym___bridge_retained] = ACTIONS(6695), + [anon_sym___bridge_transfer] = ACTIONS(6695), + [anon_sym___complex] = ACTIONS(6695), + [anon_sym___const] = ACTIONS(6695), + [anon_sym___imag] = ACTIONS(6695), + [anon_sym___kindof] = ACTIONS(6695), + [anon_sym___nonnull] = ACTIONS(6695), + [anon_sym___nullable] = ACTIONS(6695), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6695), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6695), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6695), + [anon_sym___real] = ACTIONS(6695), + [anon_sym___strong] = ACTIONS(6695), + [anon_sym___unsafe_unretained] = ACTIONS(6695), + [anon_sym___unused] = ACTIONS(6695), + [anon_sym___weak] = ACTIONS(6695), + [anon_sym_alignas] = ACTIONS(6695), + [anon_sym__Alignas] = ACTIONS(6695), + [sym_primitive_type] = ACTIONS(6695), + [anon_sym_enum] = ACTIONS(6695), + [anon_sym_struct] = ACTIONS(6695), + [anon_sym_union] = ACTIONS(6695), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6695), + [anon_sym___typeof] = ACTIONS(6695), + [anon_sym_typeof] = ACTIONS(6695), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6695), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6695), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6695), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6695), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6695), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6695), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6695), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6695), + [anon_sym_NS_AVAILABLE] = ACTIONS(6695), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6695), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_API_AVAILABLE] = ACTIONS(6695), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_API_DEPRECATED] = ACTIONS(6695), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6695), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6695), + [anon_sym___deprecated_msg] = ACTIONS(6695), + [anon_sym___deprecated_enum_msg] = ACTIONS(6695), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6695), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6695), + [anon_sym_BOOL] = ACTIONS(6695), + [anon_sym_IMP] = ACTIONS(6695), + [anon_sym_SEL] = ACTIONS(6695), + [anon_sym_Class] = ACTIONS(6695), + [anon_sym_id] = ACTIONS(6695), + [anon_sym_ATdefs] = ACTIONS(6697), + }, + [2779] = { + [sym_identifier] = ACTIONS(6695), + [aux_sym_preproc_def_token1] = ACTIONS(6695), + [aux_sym_preproc_if_token1] = ACTIONS(6695), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6695), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6695), + [sym_preproc_directive] = ACTIONS(6695), + [anon_sym___extension__] = ACTIONS(6695), + [anon_sym_extern] = ACTIONS(6695), + [anon_sym___attribute__] = ACTIONS(6695), + [anon_sym___attribute] = ACTIONS(6695), + [anon_sym_noreturn] = ACTIONS(6695), + [anon_sym_LBRACK] = ACTIONS(6697), + [anon_sym___declspec] = ACTIONS(6695), + [anon_sym_RBRACE] = ACTIONS(6697), + [anon_sym_signed] = ACTIONS(6695), + [anon_sym_unsigned] = ACTIONS(6695), + [anon_sym_long] = ACTIONS(6695), + [anon_sym_short] = ACTIONS(6695), + [anon_sym_static] = ACTIONS(6695), + [anon_sym_auto] = ACTIONS(6695), + [anon_sym_register] = ACTIONS(6695), + [anon_sym_inline] = ACTIONS(6695), + [anon_sym___inline] = ACTIONS(6695), + [anon_sym___inline__] = ACTIONS(6695), + [anon_sym___forceinline] = ACTIONS(6695), + [anon_sym_thread_local] = ACTIONS(6695), + [anon_sym___thread] = ACTIONS(6695), + [anon_sym_CG_EXTERN] = ACTIONS(6695), + [anon_sym_CG_INLINE] = ACTIONS(6695), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6695), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6695), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6695), + [anon_sym_IBOutlet] = ACTIONS(6695), + [anon_sym_IBInspectable] = ACTIONS(6695), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6695), + [anon_sym_NS_INLINE] = ACTIONS(6695), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6695), + [anon_sym_OBJC_EXPORT] = ACTIONS(6695), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6695), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6695), + [anon_sym_const] = ACTIONS(6695), + [anon_sym_constexpr] = ACTIONS(6695), + [anon_sym_volatile] = ACTIONS(6695), + [anon_sym_restrict] = ACTIONS(6695), + [anon_sym___restrict__] = ACTIONS(6695), + [anon_sym__Atomic] = ACTIONS(6695), + [anon_sym__Noreturn] = ACTIONS(6695), + [anon_sym__Nonnull] = ACTIONS(6695), + [anon_sym_nullable] = ACTIONS(6695), + [anon_sym__Complex] = ACTIONS(6695), + [anon_sym__Nullable] = ACTIONS(6695), + [anon_sym__Nullable_result] = ACTIONS(6695), + [anon_sym__Null_unspecified] = ACTIONS(6695), + [anon_sym___autoreleasing] = ACTIONS(6695), + [anon_sym___block] = ACTIONS(6695), + [anon_sym___bridge] = ACTIONS(6695), + [anon_sym___bridge_retained] = ACTIONS(6695), + [anon_sym___bridge_transfer] = ACTIONS(6695), + [anon_sym___complex] = ACTIONS(6695), + [anon_sym___const] = ACTIONS(6695), + [anon_sym___imag] = ACTIONS(6695), + [anon_sym___kindof] = ACTIONS(6695), + [anon_sym___nonnull] = ACTIONS(6695), + [anon_sym___nullable] = ACTIONS(6695), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6695), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6695), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6695), + [anon_sym___real] = ACTIONS(6695), + [anon_sym___strong] = ACTIONS(6695), + [anon_sym___unsafe_unretained] = ACTIONS(6695), + [anon_sym___unused] = ACTIONS(6695), + [anon_sym___weak] = ACTIONS(6695), + [anon_sym_alignas] = ACTIONS(6695), + [anon_sym__Alignas] = ACTIONS(6695), + [sym_primitive_type] = ACTIONS(6695), + [anon_sym_enum] = ACTIONS(6695), + [anon_sym_struct] = ACTIONS(6695), + [anon_sym_union] = ACTIONS(6695), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6695), + [anon_sym___typeof] = ACTIONS(6695), + [anon_sym_typeof] = ACTIONS(6695), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6695), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6695), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6695), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6695), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6695), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6695), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6695), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6695), + [anon_sym_NS_AVAILABLE] = ACTIONS(6695), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6695), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_API_AVAILABLE] = ACTIONS(6695), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_API_DEPRECATED] = ACTIONS(6695), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6695), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6695), + [anon_sym___deprecated_msg] = ACTIONS(6695), + [anon_sym___deprecated_enum_msg] = ACTIONS(6695), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6695), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6695), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6695), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6695), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6695), + [anon_sym_BOOL] = ACTIONS(6695), + [anon_sym_IMP] = ACTIONS(6695), + [anon_sym_SEL] = ACTIONS(6695), + [anon_sym_Class] = ACTIONS(6695), + [anon_sym_id] = ACTIONS(6695), + [anon_sym_ATdefs] = ACTIONS(6697), + }, + [2780] = { + [sym_identifier] = ACTIONS(6635), + [aux_sym_preproc_def_token1] = ACTIONS(6635), + [aux_sym_preproc_if_token1] = ACTIONS(6635), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6635), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6635), + [sym_preproc_directive] = ACTIONS(6635), + [anon_sym___extension__] = ACTIONS(6635), + [anon_sym_extern] = ACTIONS(6635), + [anon_sym___attribute__] = ACTIONS(6635), + [anon_sym___attribute] = ACTIONS(6635), + [anon_sym_noreturn] = ACTIONS(6635), + [anon_sym_LBRACK] = ACTIONS(6637), + [anon_sym___declspec] = ACTIONS(6635), + [anon_sym_RBRACE] = ACTIONS(6637), + [anon_sym_signed] = ACTIONS(6635), + [anon_sym_unsigned] = ACTIONS(6635), + [anon_sym_long] = ACTIONS(6635), + [anon_sym_short] = ACTIONS(6635), + [anon_sym_static] = ACTIONS(6635), + [anon_sym_auto] = ACTIONS(6635), + [anon_sym_register] = ACTIONS(6635), + [anon_sym_inline] = ACTIONS(6635), + [anon_sym___inline] = ACTIONS(6635), + [anon_sym___inline__] = ACTIONS(6635), + [anon_sym___forceinline] = ACTIONS(6635), + [anon_sym_thread_local] = ACTIONS(6635), + [anon_sym___thread] = ACTIONS(6635), + [anon_sym_CG_EXTERN] = ACTIONS(6635), + [anon_sym_CG_INLINE] = ACTIONS(6635), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6635), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6635), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6635), + [anon_sym_IBOutlet] = ACTIONS(6635), + [anon_sym_IBInspectable] = ACTIONS(6635), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6635), + [anon_sym_NS_INLINE] = ACTIONS(6635), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6635), + [anon_sym_OBJC_EXPORT] = ACTIONS(6635), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6635), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6635), + [anon_sym_const] = ACTIONS(6635), + [anon_sym_constexpr] = ACTIONS(6635), + [anon_sym_volatile] = ACTIONS(6635), + [anon_sym_restrict] = ACTIONS(6635), + [anon_sym___restrict__] = ACTIONS(6635), + [anon_sym__Atomic] = ACTIONS(6635), + [anon_sym__Noreturn] = ACTIONS(6635), + [anon_sym__Nonnull] = ACTIONS(6635), + [anon_sym_nullable] = ACTIONS(6635), + [anon_sym__Complex] = ACTIONS(6635), + [anon_sym__Nullable] = ACTIONS(6635), + [anon_sym__Nullable_result] = ACTIONS(6635), + [anon_sym__Null_unspecified] = ACTIONS(6635), + [anon_sym___autoreleasing] = ACTIONS(6635), + [anon_sym___block] = ACTIONS(6635), + [anon_sym___bridge] = ACTIONS(6635), + [anon_sym___bridge_retained] = ACTIONS(6635), + [anon_sym___bridge_transfer] = ACTIONS(6635), + [anon_sym___complex] = ACTIONS(6635), + [anon_sym___const] = ACTIONS(6635), + [anon_sym___imag] = ACTIONS(6635), + [anon_sym___kindof] = ACTIONS(6635), + [anon_sym___nonnull] = ACTIONS(6635), + [anon_sym___nullable] = ACTIONS(6635), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6635), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6635), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6635), + [anon_sym___real] = ACTIONS(6635), + [anon_sym___strong] = ACTIONS(6635), + [anon_sym___unsafe_unretained] = ACTIONS(6635), + [anon_sym___unused] = ACTIONS(6635), + [anon_sym___weak] = ACTIONS(6635), + [anon_sym_alignas] = ACTIONS(6635), + [anon_sym__Alignas] = ACTIONS(6635), + [sym_primitive_type] = ACTIONS(6635), + [anon_sym_enum] = ACTIONS(6635), + [anon_sym_struct] = ACTIONS(6635), + [anon_sym_union] = ACTIONS(6635), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6635), + [anon_sym___typeof] = ACTIONS(6635), + [anon_sym_typeof] = ACTIONS(6635), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6635), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6635), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6635), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6635), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6635), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6635), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6635), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6635), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6635), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6635), + [anon_sym_NS_AVAILABLE] = ACTIONS(6635), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6635), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6635), + [anon_sym_API_AVAILABLE] = ACTIONS(6635), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6635), + [anon_sym_API_DEPRECATED] = ACTIONS(6635), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6635), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6635), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6635), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6635), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6635), + [anon_sym___deprecated_msg] = ACTIONS(6635), + [anon_sym___deprecated_enum_msg] = ACTIONS(6635), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6635), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6635), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6635), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6635), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6635), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6635), + [anon_sym_BOOL] = ACTIONS(6635), + [anon_sym_IMP] = ACTIONS(6635), + [anon_sym_SEL] = ACTIONS(6635), + [anon_sym_Class] = ACTIONS(6635), + [anon_sym_id] = ACTIONS(6635), + [anon_sym_ATdefs] = ACTIONS(6637), + }, + [2781] = { + [sym_identifier] = ACTIONS(6631), + [aux_sym_preproc_def_token1] = ACTIONS(6631), + [aux_sym_preproc_if_token1] = ACTIONS(6631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6631), + [sym_preproc_directive] = ACTIONS(6631), + [anon_sym___extension__] = ACTIONS(6631), + [anon_sym_extern] = ACTIONS(6631), + [anon_sym___attribute__] = ACTIONS(6631), + [anon_sym___attribute] = ACTIONS(6631), + [anon_sym_noreturn] = ACTIONS(6631), + [anon_sym_LBRACK] = ACTIONS(6633), + [anon_sym___declspec] = ACTIONS(6631), + [anon_sym_RBRACE] = ACTIONS(6633), + [anon_sym_signed] = ACTIONS(6631), + [anon_sym_unsigned] = ACTIONS(6631), + [anon_sym_long] = ACTIONS(6631), + [anon_sym_short] = ACTIONS(6631), + [anon_sym_static] = ACTIONS(6631), + [anon_sym_auto] = ACTIONS(6631), + [anon_sym_register] = ACTIONS(6631), + [anon_sym_inline] = ACTIONS(6631), + [anon_sym___inline] = ACTIONS(6631), + [anon_sym___inline__] = ACTIONS(6631), + [anon_sym___forceinline] = ACTIONS(6631), + [anon_sym_thread_local] = ACTIONS(6631), + [anon_sym___thread] = ACTIONS(6631), + [anon_sym_CG_EXTERN] = ACTIONS(6631), + [anon_sym_CG_INLINE] = ACTIONS(6631), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6631), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6631), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6631), + [anon_sym_IBOutlet] = ACTIONS(6631), + [anon_sym_IBInspectable] = ACTIONS(6631), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6631), + [anon_sym_NS_INLINE] = ACTIONS(6631), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6631), + [anon_sym_OBJC_EXPORT] = ACTIONS(6631), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6631), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6631), + [anon_sym_const] = ACTIONS(6631), + [anon_sym_constexpr] = ACTIONS(6631), + [anon_sym_volatile] = ACTIONS(6631), + [anon_sym_restrict] = ACTIONS(6631), + [anon_sym___restrict__] = ACTIONS(6631), + [anon_sym__Atomic] = ACTIONS(6631), + [anon_sym__Noreturn] = ACTIONS(6631), + [anon_sym__Nonnull] = ACTIONS(6631), + [anon_sym_nullable] = ACTIONS(6631), + [anon_sym__Complex] = ACTIONS(6631), + [anon_sym__Nullable] = ACTIONS(6631), + [anon_sym__Nullable_result] = ACTIONS(6631), + [anon_sym__Null_unspecified] = ACTIONS(6631), + [anon_sym___autoreleasing] = ACTIONS(6631), + [anon_sym___block] = ACTIONS(6631), + [anon_sym___bridge] = ACTIONS(6631), + [anon_sym___bridge_retained] = ACTIONS(6631), + [anon_sym___bridge_transfer] = ACTIONS(6631), + [anon_sym___complex] = ACTIONS(6631), + [anon_sym___const] = ACTIONS(6631), + [anon_sym___imag] = ACTIONS(6631), + [anon_sym___kindof] = ACTIONS(6631), + [anon_sym___nonnull] = ACTIONS(6631), + [anon_sym___nullable] = ACTIONS(6631), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6631), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6631), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6631), + [anon_sym___real] = ACTIONS(6631), + [anon_sym___strong] = ACTIONS(6631), + [anon_sym___unsafe_unretained] = ACTIONS(6631), + [anon_sym___unused] = ACTIONS(6631), + [anon_sym___weak] = ACTIONS(6631), + [anon_sym_alignas] = ACTIONS(6631), + [anon_sym__Alignas] = ACTIONS(6631), + [sym_primitive_type] = ACTIONS(6631), + [anon_sym_enum] = ACTIONS(6631), + [anon_sym_struct] = ACTIONS(6631), + [anon_sym_union] = ACTIONS(6631), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6631), + [anon_sym___typeof] = ACTIONS(6631), + [anon_sym_typeof] = ACTIONS(6631), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6631), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6631), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6631), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6631), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6631), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6631), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6631), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6631), + [anon_sym_NS_AVAILABLE] = ACTIONS(6631), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6631), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_API_AVAILABLE] = ACTIONS(6631), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_API_DEPRECATED] = ACTIONS(6631), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6631), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6631), + [anon_sym___deprecated_msg] = ACTIONS(6631), + [anon_sym___deprecated_enum_msg] = ACTIONS(6631), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6631), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6631), + [anon_sym_BOOL] = ACTIONS(6631), + [anon_sym_IMP] = ACTIONS(6631), + [anon_sym_SEL] = ACTIONS(6631), + [anon_sym_Class] = ACTIONS(6631), + [anon_sym_id] = ACTIONS(6631), + [anon_sym_ATdefs] = ACTIONS(6633), + }, + [2782] = { + [sym_identifier] = ACTIONS(6631), + [aux_sym_preproc_def_token1] = ACTIONS(6631), + [aux_sym_preproc_if_token1] = ACTIONS(6631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6631), + [sym_preproc_directive] = ACTIONS(6631), + [anon_sym___extension__] = ACTIONS(6631), + [anon_sym_extern] = ACTIONS(6631), + [anon_sym___attribute__] = ACTIONS(6631), + [anon_sym___attribute] = ACTIONS(6631), + [anon_sym_noreturn] = ACTIONS(6631), + [anon_sym_LBRACK] = ACTIONS(6633), + [anon_sym___declspec] = ACTIONS(6631), + [anon_sym_RBRACE] = ACTIONS(6633), + [anon_sym_signed] = ACTIONS(6631), + [anon_sym_unsigned] = ACTIONS(6631), + [anon_sym_long] = ACTIONS(6631), + [anon_sym_short] = ACTIONS(6631), + [anon_sym_static] = ACTIONS(6631), + [anon_sym_auto] = ACTIONS(6631), + [anon_sym_register] = ACTIONS(6631), + [anon_sym_inline] = ACTIONS(6631), + [anon_sym___inline] = ACTIONS(6631), + [anon_sym___inline__] = ACTIONS(6631), + [anon_sym___forceinline] = ACTIONS(6631), + [anon_sym_thread_local] = ACTIONS(6631), + [anon_sym___thread] = ACTIONS(6631), + [anon_sym_CG_EXTERN] = ACTIONS(6631), + [anon_sym_CG_INLINE] = ACTIONS(6631), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6631), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6631), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6631), + [anon_sym_IBOutlet] = ACTIONS(6631), + [anon_sym_IBInspectable] = ACTIONS(6631), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6631), + [anon_sym_NS_INLINE] = ACTIONS(6631), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6631), + [anon_sym_OBJC_EXPORT] = ACTIONS(6631), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6631), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6631), + [anon_sym_const] = ACTIONS(6631), + [anon_sym_constexpr] = ACTIONS(6631), + [anon_sym_volatile] = ACTIONS(6631), + [anon_sym_restrict] = ACTIONS(6631), + [anon_sym___restrict__] = ACTIONS(6631), + [anon_sym__Atomic] = ACTIONS(6631), + [anon_sym__Noreturn] = ACTIONS(6631), + [anon_sym__Nonnull] = ACTIONS(6631), + [anon_sym_nullable] = ACTIONS(6631), + [anon_sym__Complex] = ACTIONS(6631), + [anon_sym__Nullable] = ACTIONS(6631), + [anon_sym__Nullable_result] = ACTIONS(6631), + [anon_sym__Null_unspecified] = ACTIONS(6631), + [anon_sym___autoreleasing] = ACTIONS(6631), + [anon_sym___block] = ACTIONS(6631), + [anon_sym___bridge] = ACTIONS(6631), + [anon_sym___bridge_retained] = ACTIONS(6631), + [anon_sym___bridge_transfer] = ACTIONS(6631), + [anon_sym___complex] = ACTIONS(6631), + [anon_sym___const] = ACTIONS(6631), + [anon_sym___imag] = ACTIONS(6631), + [anon_sym___kindof] = ACTIONS(6631), + [anon_sym___nonnull] = ACTIONS(6631), + [anon_sym___nullable] = ACTIONS(6631), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6631), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6631), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6631), + [anon_sym___real] = ACTIONS(6631), + [anon_sym___strong] = ACTIONS(6631), + [anon_sym___unsafe_unretained] = ACTIONS(6631), + [anon_sym___unused] = ACTIONS(6631), + [anon_sym___weak] = ACTIONS(6631), + [anon_sym_alignas] = ACTIONS(6631), + [anon_sym__Alignas] = ACTIONS(6631), + [sym_primitive_type] = ACTIONS(6631), + [anon_sym_enum] = ACTIONS(6631), + [anon_sym_struct] = ACTIONS(6631), + [anon_sym_union] = ACTIONS(6631), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6631), + [anon_sym___typeof] = ACTIONS(6631), + [anon_sym_typeof] = ACTIONS(6631), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6631), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6631), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6631), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6631), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6631), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6631), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6631), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6631), + [anon_sym_NS_AVAILABLE] = ACTIONS(6631), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6631), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_API_AVAILABLE] = ACTIONS(6631), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_API_DEPRECATED] = ACTIONS(6631), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6631), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6631), + [anon_sym___deprecated_msg] = ACTIONS(6631), + [anon_sym___deprecated_enum_msg] = ACTIONS(6631), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6631), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6631), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6631), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6631), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6631), + [anon_sym_BOOL] = ACTIONS(6631), + [anon_sym_IMP] = ACTIONS(6631), + [anon_sym_SEL] = ACTIONS(6631), + [anon_sym_Class] = ACTIONS(6631), + [anon_sym_id] = ACTIONS(6631), + [anon_sym_ATdefs] = ACTIONS(6633), + }, + [2783] = { + [sym_parameter_list] = STATE(2568), + [sym_identifier] = ACTIONS(6839), + [anon_sym_COMMA] = ACTIONS(6841), + [anon_sym_LPAREN2] = ACTIONS(6746), + [anon_sym_SEMI] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(6839), + [anon_sym_extern] = ACTIONS(6839), + [anon_sym___attribute__] = ACTIONS(6839), + [anon_sym___attribute] = ACTIONS(6839), + [anon_sym_noreturn] = ACTIONS(6839), + [anon_sym_LBRACK] = ACTIONS(6748), + [anon_sym___declspec] = ACTIONS(6839), + [anon_sym_LBRACE] = ACTIONS(6841), + [anon_sym_signed] = ACTIONS(6839), + [anon_sym_unsigned] = ACTIONS(6839), + [anon_sym_long] = ACTIONS(6839), + [anon_sym_short] = ACTIONS(6839), + [anon_sym_static] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_ATautoreleasepool] = ACTIONS(6841), + [anon_sym_auto] = ACTIONS(6839), + [anon_sym_register] = ACTIONS(6839), + [anon_sym_inline] = ACTIONS(6839), + [anon_sym___inline] = ACTIONS(6839), + [anon_sym___inline__] = ACTIONS(6839), + [anon_sym___forceinline] = ACTIONS(6839), + [anon_sym_thread_local] = ACTIONS(6839), + [anon_sym___thread] = ACTIONS(6839), + [anon_sym_CG_EXTERN] = ACTIONS(6839), + [anon_sym_CG_INLINE] = ACTIONS(6839), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6839), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6839), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6839), + [anon_sym_IBOutlet] = ACTIONS(6839), + [anon_sym_IBInspectable] = ACTIONS(6839), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6839), + [anon_sym_NS_INLINE] = ACTIONS(6839), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6839), + [anon_sym_OBJC_EXPORT] = ACTIONS(6839), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6839), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6839), + [anon_sym_const] = ACTIONS(6839), + [anon_sym_constexpr] = ACTIONS(6839), + [anon_sym_volatile] = ACTIONS(6839), + [anon_sym_restrict] = ACTIONS(6839), + [anon_sym___restrict__] = ACTIONS(6839), + [anon_sym__Atomic] = ACTIONS(6839), + [anon_sym__Noreturn] = ACTIONS(6839), + [anon_sym__Nonnull] = ACTIONS(6839), + [anon_sym_nullable] = ACTIONS(6839), + [anon_sym__Complex] = ACTIONS(6839), + [anon_sym__Nullable] = ACTIONS(6839), + [anon_sym__Nullable_result] = ACTIONS(6839), + [anon_sym__Null_unspecified] = ACTIONS(6839), + [anon_sym___autoreleasing] = ACTIONS(6839), + [anon_sym___block] = ACTIONS(6839), + [anon_sym___bridge] = ACTIONS(6839), + [anon_sym___bridge_retained] = ACTIONS(6839), + [anon_sym___bridge_transfer] = ACTIONS(6839), + [anon_sym___complex] = ACTIONS(6839), + [anon_sym___const] = ACTIONS(6839), + [anon_sym___imag] = ACTIONS(6839), + [anon_sym___kindof] = ACTIONS(6839), + [anon_sym___nonnull] = ACTIONS(6839), + [anon_sym___nullable] = ACTIONS(6839), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6839), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6839), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6839), + [anon_sym___real] = ACTIONS(6839), + [anon_sym___strong] = ACTIONS(6839), + [anon_sym___unsafe_unretained] = ACTIONS(6839), + [anon_sym___unused] = ACTIONS(6839), + [anon_sym___weak] = ACTIONS(6839), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [sym_primitive_type] = ACTIONS(6839), + [anon_sym_enum] = ACTIONS(6839), + [anon_sym_struct] = ACTIONS(6839), + [anon_sym_union] = ACTIONS(6839), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6839), + [anon_sym___typeof] = ACTIONS(6839), + [anon_sym_typeof] = ACTIONS(6839), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6839), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6839), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6839), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6839), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6839), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6839), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6839), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6839), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6839), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6839), + [anon_sym_NS_AVAILABLE] = ACTIONS(6839), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6839), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6839), + [anon_sym_API_AVAILABLE] = ACTIONS(6839), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6839), + [anon_sym_API_DEPRECATED] = ACTIONS(6839), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6839), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6839), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6839), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6839), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6839), + [anon_sym___deprecated_msg] = ACTIONS(6839), + [anon_sym___deprecated_enum_msg] = ACTIONS(6839), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6839), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6839), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6839), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6839), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6839), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6839), + [anon_sym_BOOL] = ACTIONS(6839), + [anon_sym_IMP] = ACTIONS(6839), + [anon_sym_SEL] = ACTIONS(6839), + [anon_sym_Class] = ACTIONS(6839), + [anon_sym_id] = ACTIONS(6839), + }, + [2784] = { + [sym_identifier] = ACTIONS(6635), + [aux_sym_preproc_def_token1] = ACTIONS(6635), + [aux_sym_preproc_if_token1] = ACTIONS(6635), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6635), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6635), + [sym_preproc_directive] = ACTIONS(6635), + [anon_sym___extension__] = ACTIONS(6635), + [anon_sym_extern] = ACTIONS(6635), + [anon_sym___attribute__] = ACTIONS(6635), + [anon_sym___attribute] = ACTIONS(6635), + [anon_sym_noreturn] = ACTIONS(6635), + [anon_sym_LBRACK] = ACTIONS(6637), + [anon_sym___declspec] = ACTIONS(6635), + [anon_sym_RBRACE] = ACTIONS(6637), + [anon_sym_signed] = ACTIONS(6635), + [anon_sym_unsigned] = ACTIONS(6635), + [anon_sym_long] = ACTIONS(6635), + [anon_sym_short] = ACTIONS(6635), + [anon_sym_static] = ACTIONS(6635), + [anon_sym_auto] = ACTIONS(6635), + [anon_sym_register] = ACTIONS(6635), + [anon_sym_inline] = ACTIONS(6635), + [anon_sym___inline] = ACTIONS(6635), + [anon_sym___inline__] = ACTIONS(6635), + [anon_sym___forceinline] = ACTIONS(6635), + [anon_sym_thread_local] = ACTIONS(6635), + [anon_sym___thread] = ACTIONS(6635), + [anon_sym_CG_EXTERN] = ACTIONS(6635), + [anon_sym_CG_INLINE] = ACTIONS(6635), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6635), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6635), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6635), + [anon_sym_IBOutlet] = ACTIONS(6635), + [anon_sym_IBInspectable] = ACTIONS(6635), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6635), + [anon_sym_NS_INLINE] = ACTIONS(6635), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6635), + [anon_sym_OBJC_EXPORT] = ACTIONS(6635), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6635), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6635), + [anon_sym_const] = ACTIONS(6635), + [anon_sym_constexpr] = ACTIONS(6635), + [anon_sym_volatile] = ACTIONS(6635), + [anon_sym_restrict] = ACTIONS(6635), + [anon_sym___restrict__] = ACTIONS(6635), + [anon_sym__Atomic] = ACTIONS(6635), + [anon_sym__Noreturn] = ACTIONS(6635), + [anon_sym__Nonnull] = ACTIONS(6635), + [anon_sym_nullable] = ACTIONS(6635), + [anon_sym__Complex] = ACTIONS(6635), + [anon_sym__Nullable] = ACTIONS(6635), + [anon_sym__Nullable_result] = ACTIONS(6635), + [anon_sym__Null_unspecified] = ACTIONS(6635), + [anon_sym___autoreleasing] = ACTIONS(6635), + [anon_sym___block] = ACTIONS(6635), + [anon_sym___bridge] = ACTIONS(6635), + [anon_sym___bridge_retained] = ACTIONS(6635), + [anon_sym___bridge_transfer] = ACTIONS(6635), + [anon_sym___complex] = ACTIONS(6635), + [anon_sym___const] = ACTIONS(6635), + [anon_sym___imag] = ACTIONS(6635), + [anon_sym___kindof] = ACTIONS(6635), + [anon_sym___nonnull] = ACTIONS(6635), + [anon_sym___nullable] = ACTIONS(6635), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6635), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6635), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6635), + [anon_sym___real] = ACTIONS(6635), + [anon_sym___strong] = ACTIONS(6635), + [anon_sym___unsafe_unretained] = ACTIONS(6635), + [anon_sym___unused] = ACTIONS(6635), + [anon_sym___weak] = ACTIONS(6635), + [anon_sym_alignas] = ACTIONS(6635), + [anon_sym__Alignas] = ACTIONS(6635), + [sym_primitive_type] = ACTIONS(6635), + [anon_sym_enum] = ACTIONS(6635), + [anon_sym_struct] = ACTIONS(6635), + [anon_sym_union] = ACTIONS(6635), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6635), + [anon_sym___typeof] = ACTIONS(6635), + [anon_sym_typeof] = ACTIONS(6635), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6635), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6635), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6635), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6635), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6635), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6635), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6635), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6635), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6635), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6635), + [anon_sym_NS_AVAILABLE] = ACTIONS(6635), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6635), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6635), + [anon_sym_API_AVAILABLE] = ACTIONS(6635), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6635), + [anon_sym_API_DEPRECATED] = ACTIONS(6635), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6635), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6635), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6635), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6635), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6635), + [anon_sym___deprecated_msg] = ACTIONS(6635), + [anon_sym___deprecated_enum_msg] = ACTIONS(6635), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6635), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6635), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6635), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6635), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6635), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6635), + [anon_sym_BOOL] = ACTIONS(6635), + [anon_sym_IMP] = ACTIONS(6635), + [anon_sym_SEL] = ACTIONS(6635), + [anon_sym_Class] = ACTIONS(6635), + [anon_sym_id] = ACTIONS(6635), + [anon_sym_ATdefs] = ACTIONS(6637), + }, + [2785] = { + [sym_identifier] = ACTIONS(6655), + [aux_sym_preproc_def_token1] = ACTIONS(6655), + [aux_sym_preproc_if_token1] = ACTIONS(6655), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6655), + [sym_preproc_directive] = ACTIONS(6655), + [anon_sym___extension__] = ACTIONS(6655), + [anon_sym_extern] = ACTIONS(6655), + [anon_sym___attribute__] = ACTIONS(6655), + [anon_sym___attribute] = ACTIONS(6655), + [anon_sym_noreturn] = ACTIONS(6655), + [anon_sym_LBRACK] = ACTIONS(6657), + [anon_sym___declspec] = ACTIONS(6655), + [anon_sym_RBRACE] = ACTIONS(6657), + [anon_sym_signed] = ACTIONS(6655), + [anon_sym_unsigned] = ACTIONS(6655), + [anon_sym_long] = ACTIONS(6655), + [anon_sym_short] = ACTIONS(6655), + [anon_sym_static] = ACTIONS(6655), + [anon_sym_auto] = ACTIONS(6655), + [anon_sym_register] = ACTIONS(6655), + [anon_sym_inline] = ACTIONS(6655), + [anon_sym___inline] = ACTIONS(6655), + [anon_sym___inline__] = ACTIONS(6655), + [anon_sym___forceinline] = ACTIONS(6655), + [anon_sym_thread_local] = ACTIONS(6655), + [anon_sym___thread] = ACTIONS(6655), + [anon_sym_CG_EXTERN] = ACTIONS(6655), + [anon_sym_CG_INLINE] = ACTIONS(6655), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6655), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6655), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6655), + [anon_sym_IBOutlet] = ACTIONS(6655), + [anon_sym_IBInspectable] = ACTIONS(6655), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6655), + [anon_sym_NS_INLINE] = ACTIONS(6655), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6655), + [anon_sym_OBJC_EXPORT] = ACTIONS(6655), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6655), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6655), + [anon_sym_const] = ACTIONS(6655), + [anon_sym_constexpr] = ACTIONS(6655), + [anon_sym_volatile] = ACTIONS(6655), + [anon_sym_restrict] = ACTIONS(6655), + [anon_sym___restrict__] = ACTIONS(6655), + [anon_sym__Atomic] = ACTIONS(6655), + [anon_sym__Noreturn] = ACTIONS(6655), + [anon_sym__Nonnull] = ACTIONS(6655), + [anon_sym_nullable] = ACTIONS(6655), + [anon_sym__Complex] = ACTIONS(6655), + [anon_sym__Nullable] = ACTIONS(6655), + [anon_sym__Nullable_result] = ACTIONS(6655), + [anon_sym__Null_unspecified] = ACTIONS(6655), + [anon_sym___autoreleasing] = ACTIONS(6655), + [anon_sym___block] = ACTIONS(6655), + [anon_sym___bridge] = ACTIONS(6655), + [anon_sym___bridge_retained] = ACTIONS(6655), + [anon_sym___bridge_transfer] = ACTIONS(6655), + [anon_sym___complex] = ACTIONS(6655), + [anon_sym___const] = ACTIONS(6655), + [anon_sym___imag] = ACTIONS(6655), + [anon_sym___kindof] = ACTIONS(6655), + [anon_sym___nonnull] = ACTIONS(6655), + [anon_sym___nullable] = ACTIONS(6655), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6655), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6655), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6655), + [anon_sym___real] = ACTIONS(6655), + [anon_sym___strong] = ACTIONS(6655), + [anon_sym___unsafe_unretained] = ACTIONS(6655), + [anon_sym___unused] = ACTIONS(6655), + [anon_sym___weak] = ACTIONS(6655), + [anon_sym_alignas] = ACTIONS(6655), + [anon_sym__Alignas] = ACTIONS(6655), + [sym_primitive_type] = ACTIONS(6655), + [anon_sym_enum] = ACTIONS(6655), + [anon_sym_struct] = ACTIONS(6655), + [anon_sym_union] = ACTIONS(6655), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6655), + [anon_sym___typeof] = ACTIONS(6655), + [anon_sym_typeof] = ACTIONS(6655), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6655), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6655), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6655), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6655), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6655), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6655), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6655), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6655), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6655), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6655), + [anon_sym_NS_AVAILABLE] = ACTIONS(6655), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6655), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6655), + [anon_sym_API_AVAILABLE] = ACTIONS(6655), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6655), + [anon_sym_API_DEPRECATED] = ACTIONS(6655), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6655), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6655), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6655), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6655), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6655), + [anon_sym___deprecated_msg] = ACTIONS(6655), + [anon_sym___deprecated_enum_msg] = ACTIONS(6655), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6655), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6655), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6655), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6655), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6655), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6655), + [anon_sym_BOOL] = ACTIONS(6655), + [anon_sym_IMP] = ACTIONS(6655), + [anon_sym_SEL] = ACTIONS(6655), + [anon_sym_Class] = ACTIONS(6655), + [anon_sym_id] = ACTIONS(6655), + [anon_sym_ATdefs] = ACTIONS(6657), + }, + [2786] = { + [sym_identifier] = ACTIONS(6718), + [aux_sym_preproc_def_token1] = ACTIONS(6718), + [aux_sym_preproc_if_token1] = ACTIONS(6718), + [aux_sym_preproc_if_token2] = ACTIONS(6718), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6718), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6718), + [sym_preproc_directive] = ACTIONS(6718), + [anon_sym___extension__] = ACTIONS(6718), + [anon_sym_extern] = ACTIONS(6718), + [anon_sym___attribute__] = ACTIONS(6718), + [anon_sym___attribute] = ACTIONS(6718), + [anon_sym_noreturn] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6720), + [anon_sym___declspec] = ACTIONS(6718), + [anon_sym_signed] = ACTIONS(6718), + [anon_sym_unsigned] = ACTIONS(6718), + [anon_sym_long] = ACTIONS(6718), + [anon_sym_short] = ACTIONS(6718), + [anon_sym_static] = ACTIONS(6718), + [anon_sym_auto] = ACTIONS(6718), + [anon_sym_register] = ACTIONS(6718), + [anon_sym_inline] = ACTIONS(6718), + [anon_sym___inline] = ACTIONS(6718), + [anon_sym___inline__] = ACTIONS(6718), + [anon_sym___forceinline] = ACTIONS(6718), + [anon_sym_thread_local] = ACTIONS(6718), + [anon_sym___thread] = ACTIONS(6718), + [anon_sym_CG_EXTERN] = ACTIONS(6718), + [anon_sym_CG_INLINE] = ACTIONS(6718), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6718), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6718), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6718), + [anon_sym_IBOutlet] = ACTIONS(6718), + [anon_sym_IBInspectable] = ACTIONS(6718), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6718), + [anon_sym_NS_INLINE] = ACTIONS(6718), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6718), + [anon_sym_OBJC_EXPORT] = ACTIONS(6718), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6718), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6718), + [anon_sym_const] = ACTIONS(6718), + [anon_sym_constexpr] = ACTIONS(6718), + [anon_sym_volatile] = ACTIONS(6718), + [anon_sym_restrict] = ACTIONS(6718), + [anon_sym___restrict__] = ACTIONS(6718), + [anon_sym__Atomic] = ACTIONS(6718), + [anon_sym__Noreturn] = ACTIONS(6718), + [anon_sym__Nonnull] = ACTIONS(6718), + [anon_sym_nullable] = ACTIONS(6718), + [anon_sym__Complex] = ACTIONS(6718), + [anon_sym__Nullable] = ACTIONS(6718), + [anon_sym__Nullable_result] = ACTIONS(6718), + [anon_sym__Null_unspecified] = ACTIONS(6718), + [anon_sym___autoreleasing] = ACTIONS(6718), + [anon_sym___block] = ACTIONS(6718), + [anon_sym___bridge] = ACTIONS(6718), + [anon_sym___bridge_retained] = ACTIONS(6718), + [anon_sym___bridge_transfer] = ACTIONS(6718), + [anon_sym___complex] = ACTIONS(6718), + [anon_sym___const] = ACTIONS(6718), + [anon_sym___imag] = ACTIONS(6718), + [anon_sym___kindof] = ACTIONS(6718), + [anon_sym___nonnull] = ACTIONS(6718), + [anon_sym___nullable] = ACTIONS(6718), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6718), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6718), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6718), + [anon_sym___real] = ACTIONS(6718), + [anon_sym___strong] = ACTIONS(6718), + [anon_sym___unsafe_unretained] = ACTIONS(6718), + [anon_sym___unused] = ACTIONS(6718), + [anon_sym___weak] = ACTIONS(6718), + [anon_sym_alignas] = ACTIONS(6718), + [anon_sym__Alignas] = ACTIONS(6718), + [sym_primitive_type] = ACTIONS(6718), + [anon_sym_enum] = ACTIONS(6718), + [anon_sym_struct] = ACTIONS(6718), + [anon_sym_union] = ACTIONS(6718), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6718), + [anon_sym___typeof] = ACTIONS(6718), + [anon_sym_typeof] = ACTIONS(6718), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6718), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6718), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6718), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6718), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6718), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6718), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6718), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6718), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6718), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6718), + [anon_sym_NS_AVAILABLE] = ACTIONS(6718), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6718), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6718), + [anon_sym_API_AVAILABLE] = ACTIONS(6718), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6718), + [anon_sym_API_DEPRECATED] = ACTIONS(6718), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6718), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6718), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6718), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6718), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6718), + [anon_sym___deprecated_msg] = ACTIONS(6718), + [anon_sym___deprecated_enum_msg] = ACTIONS(6718), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6718), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6718), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6718), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6718), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6718), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6718), + [anon_sym_BOOL] = ACTIONS(6718), + [anon_sym_IMP] = ACTIONS(6718), + [anon_sym_SEL] = ACTIONS(6718), + [anon_sym_Class] = ACTIONS(6718), + [anon_sym_id] = ACTIONS(6718), + [anon_sym_ATdefs] = ACTIONS(6720), + }, + [2787] = { + [sym_identifier] = ACTIONS(6671), + [aux_sym_preproc_def_token1] = ACTIONS(6671), + [aux_sym_preproc_if_token1] = ACTIONS(6671), + [aux_sym_preproc_if_token2] = ACTIONS(6671), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6671), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6671), + [sym_preproc_directive] = ACTIONS(6671), + [anon_sym___extension__] = ACTIONS(6671), + [anon_sym_extern] = ACTIONS(6671), + [anon_sym___attribute__] = ACTIONS(6671), + [anon_sym___attribute] = ACTIONS(6671), + [anon_sym_noreturn] = ACTIONS(6671), + [anon_sym_LBRACK] = ACTIONS(6673), + [anon_sym___declspec] = ACTIONS(6671), + [anon_sym_signed] = ACTIONS(6671), + [anon_sym_unsigned] = ACTIONS(6671), + [anon_sym_long] = ACTIONS(6671), + [anon_sym_short] = ACTIONS(6671), + [anon_sym_static] = ACTIONS(6671), + [anon_sym_auto] = ACTIONS(6671), + [anon_sym_register] = ACTIONS(6671), + [anon_sym_inline] = ACTIONS(6671), + [anon_sym___inline] = ACTIONS(6671), + [anon_sym___inline__] = ACTIONS(6671), + [anon_sym___forceinline] = ACTIONS(6671), + [anon_sym_thread_local] = ACTIONS(6671), + [anon_sym___thread] = ACTIONS(6671), + [anon_sym_CG_EXTERN] = ACTIONS(6671), + [anon_sym_CG_INLINE] = ACTIONS(6671), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6671), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6671), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6671), + [anon_sym_IBOutlet] = ACTIONS(6671), + [anon_sym_IBInspectable] = ACTIONS(6671), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6671), + [anon_sym_NS_INLINE] = ACTIONS(6671), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6671), + [anon_sym_OBJC_EXPORT] = ACTIONS(6671), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6671), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6671), + [anon_sym_const] = ACTIONS(6671), + [anon_sym_constexpr] = ACTIONS(6671), + [anon_sym_volatile] = ACTIONS(6671), + [anon_sym_restrict] = ACTIONS(6671), + [anon_sym___restrict__] = ACTIONS(6671), + [anon_sym__Atomic] = ACTIONS(6671), + [anon_sym__Noreturn] = ACTIONS(6671), + [anon_sym__Nonnull] = ACTIONS(6671), + [anon_sym_nullable] = ACTIONS(6671), + [anon_sym__Complex] = ACTIONS(6671), + [anon_sym__Nullable] = ACTIONS(6671), + [anon_sym__Nullable_result] = ACTIONS(6671), + [anon_sym__Null_unspecified] = ACTIONS(6671), + [anon_sym___autoreleasing] = ACTIONS(6671), + [anon_sym___block] = ACTIONS(6671), + [anon_sym___bridge] = ACTIONS(6671), + [anon_sym___bridge_retained] = ACTIONS(6671), + [anon_sym___bridge_transfer] = ACTIONS(6671), + [anon_sym___complex] = ACTIONS(6671), + [anon_sym___const] = ACTIONS(6671), + [anon_sym___imag] = ACTIONS(6671), + [anon_sym___kindof] = ACTIONS(6671), + [anon_sym___nonnull] = ACTIONS(6671), + [anon_sym___nullable] = ACTIONS(6671), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6671), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6671), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6671), + [anon_sym___real] = ACTIONS(6671), + [anon_sym___strong] = ACTIONS(6671), + [anon_sym___unsafe_unretained] = ACTIONS(6671), + [anon_sym___unused] = ACTIONS(6671), + [anon_sym___weak] = ACTIONS(6671), + [anon_sym_alignas] = ACTIONS(6671), + [anon_sym__Alignas] = ACTIONS(6671), + [sym_primitive_type] = ACTIONS(6671), + [anon_sym_enum] = ACTIONS(6671), + [anon_sym_struct] = ACTIONS(6671), + [anon_sym_union] = ACTIONS(6671), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6671), + [anon_sym___typeof] = ACTIONS(6671), + [anon_sym_typeof] = ACTIONS(6671), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6671), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6671), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6671), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6671), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6671), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6671), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6671), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6671), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6671), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6671), + [anon_sym_NS_AVAILABLE] = ACTIONS(6671), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6671), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6671), + [anon_sym_API_AVAILABLE] = ACTIONS(6671), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6671), + [anon_sym_API_DEPRECATED] = ACTIONS(6671), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6671), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6671), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6671), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6671), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6671), + [anon_sym___deprecated_msg] = ACTIONS(6671), + [anon_sym___deprecated_enum_msg] = ACTIONS(6671), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6671), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6671), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6671), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6671), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6671), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6671), + [anon_sym_BOOL] = ACTIONS(6671), + [anon_sym_IMP] = ACTIONS(6671), + [anon_sym_SEL] = ACTIONS(6671), + [anon_sym_Class] = ACTIONS(6671), + [anon_sym_id] = ACTIONS(6671), + [anon_sym_ATdefs] = ACTIONS(6673), + }, + [2788] = { + [sym_identifier] = ACTIONS(6711), + [aux_sym_preproc_def_token1] = ACTIONS(6711), + [aux_sym_preproc_if_token1] = ACTIONS(6711), + [aux_sym_preproc_if_token2] = ACTIONS(6711), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6711), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6711), + [sym_preproc_directive] = ACTIONS(6711), + [anon_sym___extension__] = ACTIONS(6711), + [anon_sym_extern] = ACTIONS(6711), + [anon_sym___attribute__] = ACTIONS(6711), + [anon_sym___attribute] = ACTIONS(6711), + [anon_sym_noreturn] = ACTIONS(6711), + [anon_sym_LBRACK] = ACTIONS(6713), + [anon_sym___declspec] = ACTIONS(6711), + [anon_sym_signed] = ACTIONS(6711), + [anon_sym_unsigned] = ACTIONS(6711), + [anon_sym_long] = ACTIONS(6711), + [anon_sym_short] = ACTIONS(6711), + [anon_sym_static] = ACTIONS(6711), + [anon_sym_auto] = ACTIONS(6711), + [anon_sym_register] = ACTIONS(6711), + [anon_sym_inline] = ACTIONS(6711), + [anon_sym___inline] = ACTIONS(6711), + [anon_sym___inline__] = ACTIONS(6711), + [anon_sym___forceinline] = ACTIONS(6711), + [anon_sym_thread_local] = ACTIONS(6711), + [anon_sym___thread] = ACTIONS(6711), + [anon_sym_CG_EXTERN] = ACTIONS(6711), + [anon_sym_CG_INLINE] = ACTIONS(6711), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6711), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6711), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6711), + [anon_sym_IBOutlet] = ACTIONS(6711), + [anon_sym_IBInspectable] = ACTIONS(6711), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6711), + [anon_sym_NS_INLINE] = ACTIONS(6711), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6711), + [anon_sym_OBJC_EXPORT] = ACTIONS(6711), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6711), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6711), + [anon_sym_const] = ACTIONS(6711), + [anon_sym_constexpr] = ACTIONS(6711), + [anon_sym_volatile] = ACTIONS(6711), + [anon_sym_restrict] = ACTIONS(6711), + [anon_sym___restrict__] = ACTIONS(6711), + [anon_sym__Atomic] = ACTIONS(6711), + [anon_sym__Noreturn] = ACTIONS(6711), + [anon_sym__Nonnull] = ACTIONS(6711), + [anon_sym_nullable] = ACTIONS(6711), + [anon_sym__Complex] = ACTIONS(6711), + [anon_sym__Nullable] = ACTIONS(6711), + [anon_sym__Nullable_result] = ACTIONS(6711), + [anon_sym__Null_unspecified] = ACTIONS(6711), + [anon_sym___autoreleasing] = ACTIONS(6711), + [anon_sym___block] = ACTIONS(6711), + [anon_sym___bridge] = ACTIONS(6711), + [anon_sym___bridge_retained] = ACTIONS(6711), + [anon_sym___bridge_transfer] = ACTIONS(6711), + [anon_sym___complex] = ACTIONS(6711), + [anon_sym___const] = ACTIONS(6711), + [anon_sym___imag] = ACTIONS(6711), + [anon_sym___kindof] = ACTIONS(6711), + [anon_sym___nonnull] = ACTIONS(6711), + [anon_sym___nullable] = ACTIONS(6711), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6711), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6711), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6711), + [anon_sym___real] = ACTIONS(6711), + [anon_sym___strong] = ACTIONS(6711), + [anon_sym___unsafe_unretained] = ACTIONS(6711), + [anon_sym___unused] = ACTIONS(6711), + [anon_sym___weak] = ACTIONS(6711), + [anon_sym_alignas] = ACTIONS(6711), + [anon_sym__Alignas] = ACTIONS(6711), + [sym_primitive_type] = ACTIONS(6711), + [anon_sym_enum] = ACTIONS(6711), + [anon_sym_struct] = ACTIONS(6711), + [anon_sym_union] = ACTIONS(6711), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6711), + [anon_sym___typeof] = ACTIONS(6711), + [anon_sym_typeof] = ACTIONS(6711), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6711), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6711), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6711), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6711), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6711), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6711), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6711), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6711), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6711), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6711), + [anon_sym_NS_AVAILABLE] = ACTIONS(6711), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6711), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6711), + [anon_sym_API_AVAILABLE] = ACTIONS(6711), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6711), + [anon_sym_API_DEPRECATED] = ACTIONS(6711), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6711), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6711), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6711), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6711), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6711), + [anon_sym___deprecated_msg] = ACTIONS(6711), + [anon_sym___deprecated_enum_msg] = ACTIONS(6711), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6711), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6711), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6711), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6711), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6711), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6711), + [anon_sym_BOOL] = ACTIONS(6711), + [anon_sym_IMP] = ACTIONS(6711), + [anon_sym_SEL] = ACTIONS(6711), + [anon_sym_Class] = ACTIONS(6711), + [anon_sym_id] = ACTIONS(6711), + [anon_sym_ATdefs] = ACTIONS(6713), + }, + [2789] = { + [sym_identifier] = ACTIONS(6711), + [aux_sym_preproc_def_token1] = ACTIONS(6711), + [aux_sym_preproc_if_token1] = ACTIONS(6711), + [aux_sym_preproc_if_token2] = ACTIONS(6711), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6711), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6711), + [sym_preproc_directive] = ACTIONS(6711), + [anon_sym___extension__] = ACTIONS(6711), + [anon_sym_extern] = ACTIONS(6711), + [anon_sym___attribute__] = ACTIONS(6711), + [anon_sym___attribute] = ACTIONS(6711), + [anon_sym_noreturn] = ACTIONS(6711), + [anon_sym_LBRACK] = ACTIONS(6713), + [anon_sym___declspec] = ACTIONS(6711), + [anon_sym_signed] = ACTIONS(6711), + [anon_sym_unsigned] = ACTIONS(6711), + [anon_sym_long] = ACTIONS(6711), + [anon_sym_short] = ACTIONS(6711), + [anon_sym_static] = ACTIONS(6711), + [anon_sym_auto] = ACTIONS(6711), + [anon_sym_register] = ACTIONS(6711), + [anon_sym_inline] = ACTIONS(6711), + [anon_sym___inline] = ACTIONS(6711), + [anon_sym___inline__] = ACTIONS(6711), + [anon_sym___forceinline] = ACTIONS(6711), + [anon_sym_thread_local] = ACTIONS(6711), + [anon_sym___thread] = ACTIONS(6711), + [anon_sym_CG_EXTERN] = ACTIONS(6711), + [anon_sym_CG_INLINE] = ACTIONS(6711), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6711), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6711), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6711), + [anon_sym_IBOutlet] = ACTIONS(6711), + [anon_sym_IBInspectable] = ACTIONS(6711), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6711), + [anon_sym_NS_INLINE] = ACTIONS(6711), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6711), + [anon_sym_OBJC_EXPORT] = ACTIONS(6711), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6711), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6711), + [anon_sym_const] = ACTIONS(6711), + [anon_sym_constexpr] = ACTIONS(6711), + [anon_sym_volatile] = ACTIONS(6711), + [anon_sym_restrict] = ACTIONS(6711), + [anon_sym___restrict__] = ACTIONS(6711), + [anon_sym__Atomic] = ACTIONS(6711), + [anon_sym__Noreturn] = ACTIONS(6711), + [anon_sym__Nonnull] = ACTIONS(6711), + [anon_sym_nullable] = ACTIONS(6711), + [anon_sym__Complex] = ACTIONS(6711), + [anon_sym__Nullable] = ACTIONS(6711), + [anon_sym__Nullable_result] = ACTIONS(6711), + [anon_sym__Null_unspecified] = ACTIONS(6711), + [anon_sym___autoreleasing] = ACTIONS(6711), + [anon_sym___block] = ACTIONS(6711), + [anon_sym___bridge] = ACTIONS(6711), + [anon_sym___bridge_retained] = ACTIONS(6711), + [anon_sym___bridge_transfer] = ACTIONS(6711), + [anon_sym___complex] = ACTIONS(6711), + [anon_sym___const] = ACTIONS(6711), + [anon_sym___imag] = ACTIONS(6711), + [anon_sym___kindof] = ACTIONS(6711), + [anon_sym___nonnull] = ACTIONS(6711), + [anon_sym___nullable] = ACTIONS(6711), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6711), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6711), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6711), + [anon_sym___real] = ACTIONS(6711), + [anon_sym___strong] = ACTIONS(6711), + [anon_sym___unsafe_unretained] = ACTIONS(6711), + [anon_sym___unused] = ACTIONS(6711), + [anon_sym___weak] = ACTIONS(6711), + [anon_sym_alignas] = ACTIONS(6711), + [anon_sym__Alignas] = ACTIONS(6711), + [sym_primitive_type] = ACTIONS(6711), + [anon_sym_enum] = ACTIONS(6711), + [anon_sym_struct] = ACTIONS(6711), + [anon_sym_union] = ACTIONS(6711), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6711), + [anon_sym___typeof] = ACTIONS(6711), + [anon_sym_typeof] = ACTIONS(6711), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6711), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6711), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6711), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6711), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6711), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6711), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6711), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6711), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6711), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6711), + [anon_sym_NS_AVAILABLE] = ACTIONS(6711), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6711), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6711), + [anon_sym_API_AVAILABLE] = ACTIONS(6711), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6711), + [anon_sym_API_DEPRECATED] = ACTIONS(6711), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6711), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6711), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6711), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6711), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6711), + [anon_sym___deprecated_msg] = ACTIONS(6711), + [anon_sym___deprecated_enum_msg] = ACTIONS(6711), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6711), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6711), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6711), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6711), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6711), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6711), + [anon_sym_BOOL] = ACTIONS(6711), + [anon_sym_IMP] = ACTIONS(6711), + [anon_sym_SEL] = ACTIONS(6711), + [anon_sym_Class] = ACTIONS(6711), + [anon_sym_id] = ACTIONS(6711), + [anon_sym_ATdefs] = ACTIONS(6713), + }, + [2790] = { + [sym_keyword_declarator] = STATE(2790), + [aux_sym_keyword_selector_repeat1] = STATE(2790), + [sym_identifier] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6846), + [anon_sym_SEMI] = ACTIONS(6846), + [anon_sym___extension__] = ACTIONS(6848), + [anon_sym_extern] = ACTIONS(6848), + [anon_sym___attribute__] = ACTIONS(6848), + [anon_sym___attribute] = ACTIONS(6848), + [anon_sym_noreturn] = ACTIONS(6848), + [anon_sym_LBRACK] = ACTIONS(6846), + [anon_sym___declspec] = ACTIONS(6848), + [anon_sym_LBRACE] = ACTIONS(6846), + [anon_sym_signed] = ACTIONS(6848), + [anon_sym_unsigned] = ACTIONS(6848), + [anon_sym_long] = ACTIONS(6848), + [anon_sym_short] = ACTIONS(6848), + [anon_sym_static] = ACTIONS(6848), + [anon_sym_ATautoreleasepool] = ACTIONS(6846), + [anon_sym_auto] = ACTIONS(6848), + [anon_sym_register] = ACTIONS(6848), + [anon_sym_inline] = ACTIONS(6848), + [anon_sym___inline] = ACTIONS(6848), + [anon_sym___inline__] = ACTIONS(6848), + [anon_sym___forceinline] = ACTIONS(6848), + [anon_sym_thread_local] = ACTIONS(6848), + [anon_sym___thread] = ACTIONS(6848), + [anon_sym_CG_EXTERN] = ACTIONS(6848), + [anon_sym_CG_INLINE] = ACTIONS(6848), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6848), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6848), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6848), + [anon_sym_IBOutlet] = ACTIONS(6848), + [anon_sym_IBInspectable] = ACTIONS(6848), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6848), + [anon_sym_NS_INLINE] = ACTIONS(6848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6848), + [anon_sym_OBJC_EXPORT] = ACTIONS(6848), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6848), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6848), + [anon_sym_const] = ACTIONS(6848), + [anon_sym_constexpr] = ACTIONS(6848), + [anon_sym_volatile] = ACTIONS(6848), + [anon_sym_restrict] = ACTIONS(6848), + [anon_sym___restrict__] = ACTIONS(6848), + [anon_sym__Atomic] = ACTIONS(6848), + [anon_sym__Noreturn] = ACTIONS(6848), + [anon_sym__Nonnull] = ACTIONS(6848), + [anon_sym_nullable] = ACTIONS(6848), + [anon_sym__Complex] = ACTIONS(6848), + [anon_sym__Nullable] = ACTIONS(6848), + [anon_sym__Nullable_result] = ACTIONS(6848), + [anon_sym__Null_unspecified] = ACTIONS(6848), + [anon_sym___autoreleasing] = ACTIONS(6848), + [anon_sym___block] = ACTIONS(6848), + [anon_sym___bridge] = ACTIONS(6848), + [anon_sym___bridge_retained] = ACTIONS(6848), + [anon_sym___bridge_transfer] = ACTIONS(6848), + [anon_sym___complex] = ACTIONS(6848), + [anon_sym___const] = ACTIONS(6848), + [anon_sym___imag] = ACTIONS(6848), + [anon_sym___kindof] = ACTIONS(6848), + [anon_sym___nonnull] = ACTIONS(6848), + [anon_sym___nullable] = ACTIONS(6848), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6848), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6848), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6848), + [anon_sym___real] = ACTIONS(6848), + [anon_sym___strong] = ACTIONS(6848), + [anon_sym___unsafe_unretained] = ACTIONS(6848), + [anon_sym___unused] = ACTIONS(6848), + [anon_sym___weak] = ACTIONS(6848), + [anon_sym_alignas] = ACTIONS(6848), + [anon_sym__Alignas] = ACTIONS(6848), + [sym_primitive_type] = ACTIONS(6848), + [anon_sym_enum] = ACTIONS(6848), + [anon_sym_COLON] = ACTIONS(6850), + [anon_sym_struct] = ACTIONS(6848), + [anon_sym_union] = ACTIONS(6848), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6848), + [anon_sym___typeof] = ACTIONS(6848), + [anon_sym_typeof] = ACTIONS(6848), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6848), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6848), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6848), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6848), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6848), + [anon_sym_NS_AVAILABLE] = ACTIONS(6848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6848), + [anon_sym_API_AVAILABLE] = ACTIONS(6848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6848), + [anon_sym_API_DEPRECATED] = ACTIONS(6848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6848), + [anon_sym___deprecated_msg] = ACTIONS(6848), + [anon_sym___deprecated_enum_msg] = ACTIONS(6848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6848), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6848), + [anon_sym_BOOL] = ACTIONS(6848), + [anon_sym_IMP] = ACTIONS(6848), + [anon_sym_SEL] = ACTIONS(6848), + [anon_sym_Class] = ACTIONS(6848), + [anon_sym_id] = ACTIONS(6848), + }, + [2791] = { + [sym_identifier] = ACTIONS(6756), + [anon_sym_LPAREN2] = ACTIONS(6758), + [anon_sym___extension__] = ACTIONS(6756), + [anon_sym_extern] = ACTIONS(6756), + [anon_sym___attribute__] = ACTIONS(6760), + [anon_sym___attribute] = ACTIONS(6760), + [anon_sym_noreturn] = ACTIONS(6756), + [anon_sym_LBRACK] = ACTIONS(6763), + [anon_sym___declspec] = ACTIONS(6756), + [anon_sym_LBRACE] = ACTIONS(6763), + [anon_sym_signed] = ACTIONS(6756), + [anon_sym_unsigned] = ACTIONS(6756), + [anon_sym_long] = ACTIONS(6756), + [anon_sym_short] = ACTIONS(6756), + [anon_sym_static] = ACTIONS(6756), + [anon_sym_ATautoreleasepool] = ACTIONS(6763), + [anon_sym_auto] = ACTIONS(6756), + [anon_sym_register] = ACTIONS(6756), + [anon_sym_inline] = ACTIONS(6756), + [anon_sym___inline] = ACTIONS(6756), + [anon_sym___inline__] = ACTIONS(6756), + [anon_sym___forceinline] = ACTIONS(6756), + [anon_sym_thread_local] = ACTIONS(6756), + [anon_sym___thread] = ACTIONS(6756), + [anon_sym_CG_EXTERN] = ACTIONS(6756), + [anon_sym_CG_INLINE] = ACTIONS(6756), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6756), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6756), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6756), + [anon_sym_IBOutlet] = ACTIONS(6756), + [anon_sym_IBInspectable] = ACTIONS(6756), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6756), + [anon_sym_NS_INLINE] = ACTIONS(6756), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6756), + [anon_sym_OBJC_EXPORT] = ACTIONS(6756), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6756), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6756), + [anon_sym_const] = ACTIONS(6756), + [anon_sym_constexpr] = ACTIONS(6756), + [anon_sym_volatile] = ACTIONS(6756), + [anon_sym_restrict] = ACTIONS(6756), + [anon_sym___restrict__] = ACTIONS(6756), + [anon_sym__Atomic] = ACTIONS(6756), + [anon_sym__Noreturn] = ACTIONS(6756), + [anon_sym__Nonnull] = ACTIONS(6756), + [anon_sym_nullable] = ACTIONS(6756), + [anon_sym__Complex] = ACTIONS(6756), + [anon_sym__Nullable] = ACTIONS(6756), + [anon_sym__Nullable_result] = ACTIONS(6756), + [anon_sym__Null_unspecified] = ACTIONS(6756), + [anon_sym___autoreleasing] = ACTIONS(6756), + [anon_sym___block] = ACTIONS(6756), + [anon_sym___bridge] = ACTIONS(6756), + [anon_sym___bridge_retained] = ACTIONS(6756), + [anon_sym___bridge_transfer] = ACTIONS(6756), + [anon_sym___complex] = ACTIONS(6756), + [anon_sym___const] = ACTIONS(6756), + [anon_sym___imag] = ACTIONS(6756), + [anon_sym___kindof] = ACTIONS(6756), + [anon_sym___nonnull] = ACTIONS(6756), + [anon_sym___nullable] = ACTIONS(6756), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6756), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6756), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6756), + [anon_sym___real] = ACTIONS(6756), + [anon_sym___strong] = ACTIONS(6756), + [anon_sym___unsafe_unretained] = ACTIONS(6756), + [anon_sym___unused] = ACTIONS(6756), + [anon_sym___weak] = ACTIONS(6756), + [anon_sym_alignas] = ACTIONS(6756), + [anon_sym__Alignas] = ACTIONS(6756), + [sym_primitive_type] = ACTIONS(6756), + [anon_sym_enum] = ACTIONS(6756), + [anon_sym_struct] = ACTIONS(6756), + [anon_sym_union] = ACTIONS(6756), + [anon_sym_asm] = ACTIONS(6766), + [anon_sym___asm__] = ACTIONS(6766), + [anon_sym___asm] = ACTIONS(6766), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6756), + [anon_sym___typeof] = ACTIONS(6756), + [anon_sym_typeof] = ACTIONS(6756), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6756), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6756), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6756), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6756), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6756), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6756), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6756), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6756), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6756), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6756), + [anon_sym_NS_AVAILABLE] = ACTIONS(6756), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6756), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6756), + [anon_sym_API_AVAILABLE] = ACTIONS(6756), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6756), + [anon_sym_API_DEPRECATED] = ACTIONS(6756), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6756), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6756), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6756), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6756), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6756), + [anon_sym___deprecated_msg] = ACTIONS(6756), + [anon_sym___deprecated_enum_msg] = ACTIONS(6756), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6756), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6756), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6756), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6756), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6756), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6756), + [anon_sym_BOOL] = ACTIONS(6756), + [anon_sym_IMP] = ACTIONS(6756), + [anon_sym_SEL] = ACTIONS(6756), + [anon_sym_Class] = ACTIONS(6756), + [anon_sym_id] = ACTIONS(6756), + }, + [2792] = { + [sym_identifier] = ACTIONS(5939), + [anon_sym_COMMA] = ACTIONS(5926), + [anon_sym_LPAREN2] = ACTIONS(5926), + [anon_sym_SEMI] = ACTIONS(5926), + [anon_sym___extension__] = ACTIONS(5939), + [anon_sym_extern] = ACTIONS(5939), + [anon_sym___attribute__] = ACTIONS(5939), + [anon_sym___attribute] = ACTIONS(5939), + [anon_sym_noreturn] = ACTIONS(5939), + [anon_sym_LBRACK] = ACTIONS(5926), + [anon_sym___declspec] = ACTIONS(5939), + [anon_sym_LBRACE] = ACTIONS(5926), + [anon_sym_signed] = ACTIONS(5939), + [anon_sym_unsigned] = ACTIONS(5939), + [anon_sym_long] = ACTIONS(5939), + [anon_sym_short] = ACTIONS(5939), + [anon_sym_static] = ACTIONS(5939), + [anon_sym_EQ] = ACTIONS(5926), + [anon_sym_ATautoreleasepool] = ACTIONS(5926), + [anon_sym_auto] = ACTIONS(5939), + [anon_sym_register] = ACTIONS(5939), + [anon_sym_inline] = ACTIONS(5939), + [anon_sym___inline] = ACTIONS(5939), + [anon_sym___inline__] = ACTIONS(5939), + [anon_sym___forceinline] = ACTIONS(5939), + [anon_sym_thread_local] = ACTIONS(5939), + [anon_sym___thread] = ACTIONS(5939), + [anon_sym_CG_EXTERN] = ACTIONS(5939), + [anon_sym_CG_INLINE] = ACTIONS(5939), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5939), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5939), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5939), + [anon_sym_IBOutlet] = ACTIONS(5939), + [anon_sym_IBInspectable] = ACTIONS(5939), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5939), + [anon_sym_NS_INLINE] = ACTIONS(5939), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5939), + [anon_sym_OBJC_EXPORT] = ACTIONS(5939), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5939), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5939), + [anon_sym_const] = ACTIONS(5939), + [anon_sym_constexpr] = ACTIONS(5939), + [anon_sym_volatile] = ACTIONS(5939), + [anon_sym_restrict] = ACTIONS(5939), + [anon_sym___restrict__] = ACTIONS(5939), + [anon_sym__Atomic] = ACTIONS(5939), + [anon_sym__Noreturn] = ACTIONS(5939), + [anon_sym__Nonnull] = ACTIONS(5939), + [anon_sym_nullable] = ACTIONS(5939), + [anon_sym__Complex] = ACTIONS(5939), + [anon_sym__Nullable] = ACTIONS(5939), + [anon_sym__Nullable_result] = ACTIONS(5939), + [anon_sym__Null_unspecified] = ACTIONS(5939), + [anon_sym___autoreleasing] = ACTIONS(5939), + [anon_sym___block] = ACTIONS(5939), + [anon_sym___bridge] = ACTIONS(5939), + [anon_sym___bridge_retained] = ACTIONS(5939), + [anon_sym___bridge_transfer] = ACTIONS(5939), + [anon_sym___complex] = ACTIONS(5939), + [anon_sym___const] = ACTIONS(5939), + [anon_sym___imag] = ACTIONS(5939), + [anon_sym___kindof] = ACTIONS(5939), + [anon_sym___nonnull] = ACTIONS(5939), + [anon_sym___nullable] = ACTIONS(5939), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5939), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5939), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5939), + [anon_sym___real] = ACTIONS(5939), + [anon_sym___strong] = ACTIONS(5939), + [anon_sym___unsafe_unretained] = ACTIONS(5939), + [anon_sym___unused] = ACTIONS(5939), + [anon_sym___weak] = ACTIONS(5939), + [anon_sym_alignas] = ACTIONS(5939), + [anon_sym__Alignas] = ACTIONS(5939), + [sym_primitive_type] = ACTIONS(5939), + [anon_sym_enum] = ACTIONS(5939), + [anon_sym_struct] = ACTIONS(5939), + [anon_sym_union] = ACTIONS(5939), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5939), + [anon_sym___typeof] = ACTIONS(5939), + [anon_sym_typeof] = ACTIONS(5939), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5939), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5939), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5939), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5939), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5939), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5939), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5939), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5939), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5939), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5939), + [anon_sym_NS_AVAILABLE] = ACTIONS(5939), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5939), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5939), + [anon_sym_API_AVAILABLE] = ACTIONS(5939), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5939), + [anon_sym_API_DEPRECATED] = ACTIONS(5939), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5939), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5939), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5939), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5939), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5939), + [anon_sym___deprecated_msg] = ACTIONS(5939), + [anon_sym___deprecated_enum_msg] = ACTIONS(5939), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5939), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5939), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5939), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5939), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5939), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5939), + [anon_sym_BOOL] = ACTIONS(5939), + [anon_sym_IMP] = ACTIONS(5939), + [anon_sym_SEL] = ACTIONS(5939), + [anon_sym_Class] = ACTIONS(5939), + [anon_sym_id] = ACTIONS(5939), + }, + [2793] = { + [sym_identifier] = ACTIONS(6853), + [anon_sym_COMMA] = ACTIONS(6855), + [anon_sym_LPAREN2] = ACTIONS(6855), + [anon_sym_SEMI] = ACTIONS(6855), + [anon_sym___extension__] = ACTIONS(6853), + [anon_sym_extern] = ACTIONS(6853), + [anon_sym___attribute__] = ACTIONS(6853), + [anon_sym___attribute] = ACTIONS(6853), + [anon_sym_noreturn] = ACTIONS(6853), + [anon_sym_LBRACK] = ACTIONS(6855), + [anon_sym___declspec] = ACTIONS(6853), + [anon_sym_LBRACE] = ACTIONS(6855), + [anon_sym_signed] = ACTIONS(6853), + [anon_sym_unsigned] = ACTIONS(6853), + [anon_sym_long] = ACTIONS(6853), + [anon_sym_short] = ACTIONS(6853), + [anon_sym_static] = ACTIONS(6853), + [anon_sym_EQ] = ACTIONS(6855), + [anon_sym_ATautoreleasepool] = ACTIONS(6855), + [anon_sym_auto] = ACTIONS(6853), + [anon_sym_register] = ACTIONS(6853), + [anon_sym_inline] = ACTIONS(6853), + [anon_sym___inline] = ACTIONS(6853), + [anon_sym___inline__] = ACTIONS(6853), + [anon_sym___forceinline] = ACTIONS(6853), + [anon_sym_thread_local] = ACTIONS(6853), + [anon_sym___thread] = ACTIONS(6853), + [anon_sym_CG_EXTERN] = ACTIONS(6853), + [anon_sym_CG_INLINE] = ACTIONS(6853), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6853), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6853), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6853), + [anon_sym_IBOutlet] = ACTIONS(6853), + [anon_sym_IBInspectable] = ACTIONS(6853), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6853), + [anon_sym_NS_INLINE] = ACTIONS(6853), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6853), + [anon_sym_OBJC_EXPORT] = ACTIONS(6853), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6853), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6853), + [anon_sym_const] = ACTIONS(6853), + [anon_sym_constexpr] = ACTIONS(6853), + [anon_sym_volatile] = ACTIONS(6853), + [anon_sym_restrict] = ACTIONS(6853), + [anon_sym___restrict__] = ACTIONS(6853), + [anon_sym__Atomic] = ACTIONS(6853), + [anon_sym__Noreturn] = ACTIONS(6853), + [anon_sym__Nonnull] = ACTIONS(6853), + [anon_sym_nullable] = ACTIONS(6853), + [anon_sym__Complex] = ACTIONS(6853), + [anon_sym__Nullable] = ACTIONS(6853), + [anon_sym__Nullable_result] = ACTIONS(6853), + [anon_sym__Null_unspecified] = ACTIONS(6853), + [anon_sym___autoreleasing] = ACTIONS(6853), + [anon_sym___block] = ACTIONS(6853), + [anon_sym___bridge] = ACTIONS(6853), + [anon_sym___bridge_retained] = ACTIONS(6853), + [anon_sym___bridge_transfer] = ACTIONS(6853), + [anon_sym___complex] = ACTIONS(6853), + [anon_sym___const] = ACTIONS(6853), + [anon_sym___imag] = ACTIONS(6853), + [anon_sym___kindof] = ACTIONS(6853), + [anon_sym___nonnull] = ACTIONS(6853), + [anon_sym___nullable] = ACTIONS(6853), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6853), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6853), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6853), + [anon_sym___real] = ACTIONS(6853), + [anon_sym___strong] = ACTIONS(6853), + [anon_sym___unsafe_unretained] = ACTIONS(6853), + [anon_sym___unused] = ACTIONS(6853), + [anon_sym___weak] = ACTIONS(6853), + [anon_sym_alignas] = ACTIONS(6853), + [anon_sym__Alignas] = ACTIONS(6853), + [sym_primitive_type] = ACTIONS(6853), + [anon_sym_enum] = ACTIONS(6853), + [anon_sym_struct] = ACTIONS(6853), + [anon_sym_union] = ACTIONS(6853), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6853), + [anon_sym___typeof] = ACTIONS(6853), + [anon_sym_typeof] = ACTIONS(6853), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6853), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6853), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6853), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6853), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6853), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6853), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6853), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6853), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6853), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6853), + [anon_sym_NS_AVAILABLE] = ACTIONS(6853), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6853), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6853), + [anon_sym_API_AVAILABLE] = ACTIONS(6853), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6853), + [anon_sym_API_DEPRECATED] = ACTIONS(6853), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6853), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6853), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6853), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6853), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6853), + [anon_sym___deprecated_msg] = ACTIONS(6853), + [anon_sym___deprecated_enum_msg] = ACTIONS(6853), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6853), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6853), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6853), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6853), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6853), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6853), + [anon_sym_BOOL] = ACTIONS(6853), + [anon_sym_IMP] = ACTIONS(6853), + [anon_sym_SEL] = ACTIONS(6853), + [anon_sym_Class] = ACTIONS(6853), + [anon_sym_id] = ACTIONS(6853), + }, + [2794] = { + [sym_identifier] = ACTIONS(6857), + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(6859), + [anon_sym_SEMI] = ACTIONS(6859), + [anon_sym___extension__] = ACTIONS(6857), + [anon_sym_extern] = ACTIONS(6857), + [anon_sym___attribute__] = ACTIONS(6857), + [anon_sym___attribute] = ACTIONS(6857), + [anon_sym_noreturn] = ACTIONS(6857), + [anon_sym_LBRACK] = ACTIONS(6859), + [anon_sym___declspec] = ACTIONS(6857), + [anon_sym_LBRACE] = ACTIONS(6859), + [anon_sym_signed] = ACTIONS(6857), + [anon_sym_unsigned] = ACTIONS(6857), + [anon_sym_long] = ACTIONS(6857), + [anon_sym_short] = ACTIONS(6857), + [anon_sym_static] = ACTIONS(6857), + [anon_sym_EQ] = ACTIONS(6859), + [anon_sym_ATautoreleasepool] = ACTIONS(6859), + [anon_sym_auto] = ACTIONS(6857), + [anon_sym_register] = ACTIONS(6857), + [anon_sym_inline] = ACTIONS(6857), + [anon_sym___inline] = ACTIONS(6857), + [anon_sym___inline__] = ACTIONS(6857), + [anon_sym___forceinline] = ACTIONS(6857), + [anon_sym_thread_local] = ACTIONS(6857), + [anon_sym___thread] = ACTIONS(6857), + [anon_sym_CG_EXTERN] = ACTIONS(6857), + [anon_sym_CG_INLINE] = ACTIONS(6857), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6857), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6857), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6857), + [anon_sym_IBOutlet] = ACTIONS(6857), + [anon_sym_IBInspectable] = ACTIONS(6857), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6857), + [anon_sym_NS_INLINE] = ACTIONS(6857), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6857), + [anon_sym_OBJC_EXPORT] = ACTIONS(6857), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6857), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6857), + [anon_sym_const] = ACTIONS(6857), + [anon_sym_constexpr] = ACTIONS(6857), + [anon_sym_volatile] = ACTIONS(6857), + [anon_sym_restrict] = ACTIONS(6857), + [anon_sym___restrict__] = ACTIONS(6857), + [anon_sym__Atomic] = ACTIONS(6857), + [anon_sym__Noreturn] = ACTIONS(6857), + [anon_sym__Nonnull] = ACTIONS(6857), + [anon_sym_nullable] = ACTIONS(6857), + [anon_sym__Complex] = ACTIONS(6857), + [anon_sym__Nullable] = ACTIONS(6857), + [anon_sym__Nullable_result] = ACTIONS(6857), + [anon_sym__Null_unspecified] = ACTIONS(6857), + [anon_sym___autoreleasing] = ACTIONS(6857), + [anon_sym___block] = ACTIONS(6857), + [anon_sym___bridge] = ACTIONS(6857), + [anon_sym___bridge_retained] = ACTIONS(6857), + [anon_sym___bridge_transfer] = ACTIONS(6857), + [anon_sym___complex] = ACTIONS(6857), + [anon_sym___const] = ACTIONS(6857), + [anon_sym___imag] = ACTIONS(6857), + [anon_sym___kindof] = ACTIONS(6857), + [anon_sym___nonnull] = ACTIONS(6857), + [anon_sym___nullable] = ACTIONS(6857), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6857), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6857), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6857), + [anon_sym___real] = ACTIONS(6857), + [anon_sym___strong] = ACTIONS(6857), + [anon_sym___unsafe_unretained] = ACTIONS(6857), + [anon_sym___unused] = ACTIONS(6857), + [anon_sym___weak] = ACTIONS(6857), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [sym_primitive_type] = ACTIONS(6857), + [anon_sym_enum] = ACTIONS(6857), + [anon_sym_struct] = ACTIONS(6857), + [anon_sym_union] = ACTIONS(6857), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6857), + [anon_sym___typeof] = ACTIONS(6857), + [anon_sym_typeof] = ACTIONS(6857), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6857), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6857), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6857), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6857), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6857), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6857), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6857), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6857), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6857), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6857), + [anon_sym_NS_AVAILABLE] = ACTIONS(6857), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6857), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6857), + [anon_sym_API_AVAILABLE] = ACTIONS(6857), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6857), + [anon_sym_API_DEPRECATED] = ACTIONS(6857), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6857), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6857), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6857), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6857), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6857), + [anon_sym___deprecated_msg] = ACTIONS(6857), + [anon_sym___deprecated_enum_msg] = ACTIONS(6857), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6857), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6857), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6857), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6857), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6857), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6857), + [anon_sym_BOOL] = ACTIONS(6857), + [anon_sym_IMP] = ACTIONS(6857), + [anon_sym_SEL] = ACTIONS(6857), + [anon_sym_Class] = ACTIONS(6857), + [anon_sym_id] = ACTIONS(6857), + }, + [2795] = { + [sym__declaration_modifiers] = STATE(2800), + [sym_attribute_specifier] = STATE(2800), + [sym_attribute_declaration] = STATE(2800), + [sym_ms_declspec_modifier] = STATE(2800), + [sym__abstract_declarator] = STATE(5020), + [sym_abstract_parenthesized_declarator] = STATE(4894), + [sym_abstract_pointer_declarator] = STATE(4894), + [sym_abstract_function_declarator] = STATE(4894), + [sym_abstract_array_declarator] = STATE(4894), + [sym_storage_class_specifier] = STATE(2800), + [sym_type_qualifier] = STATE(2800), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(4295), + [sym_availability_attribute_specifier] = STATE(2800), + [sym_abstract_block_pointer_declarator] = STATE(4894), + [aux_sym__declaration_specifiers_repeat1] = STATE(2800), + [anon_sym_COMMA] = ACTIONS(5283), + [anon_sym_RPAREN] = ACTIONS(5283), + [anon_sym_LPAREN2] = ACTIONS(4496), + [anon_sym_STAR] = ACTIONS(4498), + [anon_sym_CARET] = ACTIONS(4500), + [anon_sym_GT] = ACTIONS(5283), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6867), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_COLON] = ACTIONS(5283), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2796] = { + [sym_identifier] = ACTIONS(6768), + [anon_sym_LPAREN2] = ACTIONS(6754), + [anon_sym___extension__] = ACTIONS(6768), + [anon_sym_extern] = ACTIONS(6768), + [anon_sym___attribute__] = ACTIONS(6770), + [anon_sym___attribute] = ACTIONS(6770), + [anon_sym_noreturn] = ACTIONS(6768), + [anon_sym_LBRACK] = ACTIONS(6773), + [anon_sym___declspec] = ACTIONS(6768), + [anon_sym_LBRACE] = ACTIONS(6773), + [anon_sym_signed] = ACTIONS(6768), + [anon_sym_unsigned] = ACTIONS(6768), + [anon_sym_long] = ACTIONS(6768), + [anon_sym_short] = ACTIONS(6768), + [anon_sym_static] = ACTIONS(6768), + [anon_sym_ATautoreleasepool] = ACTIONS(6773), + [anon_sym_auto] = ACTIONS(6768), + [anon_sym_register] = ACTIONS(6768), + [anon_sym_inline] = ACTIONS(6768), + [anon_sym___inline] = ACTIONS(6768), + [anon_sym___inline__] = ACTIONS(6768), + [anon_sym___forceinline] = ACTIONS(6768), + [anon_sym_thread_local] = ACTIONS(6768), + [anon_sym___thread] = ACTIONS(6768), + [anon_sym_CG_EXTERN] = ACTIONS(6768), + [anon_sym_CG_INLINE] = ACTIONS(6768), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6768), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6768), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6768), + [anon_sym_IBOutlet] = ACTIONS(6768), + [anon_sym_IBInspectable] = ACTIONS(6768), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6768), + [anon_sym_NS_INLINE] = ACTIONS(6768), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6768), + [anon_sym_OBJC_EXPORT] = ACTIONS(6768), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6768), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6768), + [anon_sym_const] = ACTIONS(6768), + [anon_sym_constexpr] = ACTIONS(6768), + [anon_sym_volatile] = ACTIONS(6768), + [anon_sym_restrict] = ACTIONS(6768), + [anon_sym___restrict__] = ACTIONS(6768), + [anon_sym__Atomic] = ACTIONS(6768), + [anon_sym__Noreturn] = ACTIONS(6768), + [anon_sym__Nonnull] = ACTIONS(6768), + [anon_sym_nullable] = ACTIONS(6768), + [anon_sym__Complex] = ACTIONS(6768), + [anon_sym__Nullable] = ACTIONS(6768), + [anon_sym__Nullable_result] = ACTIONS(6768), + [anon_sym__Null_unspecified] = ACTIONS(6768), + [anon_sym___autoreleasing] = ACTIONS(6768), + [anon_sym___block] = ACTIONS(6768), + [anon_sym___bridge] = ACTIONS(6768), + [anon_sym___bridge_retained] = ACTIONS(6768), + [anon_sym___bridge_transfer] = ACTIONS(6768), + [anon_sym___complex] = ACTIONS(6768), + [anon_sym___const] = ACTIONS(6768), + [anon_sym___imag] = ACTIONS(6768), + [anon_sym___kindof] = ACTIONS(6768), + [anon_sym___nonnull] = ACTIONS(6768), + [anon_sym___nullable] = ACTIONS(6768), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6768), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6768), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6768), + [anon_sym___real] = ACTIONS(6768), + [anon_sym___strong] = ACTIONS(6768), + [anon_sym___unsafe_unretained] = ACTIONS(6768), + [anon_sym___unused] = ACTIONS(6768), + [anon_sym___weak] = ACTIONS(6768), + [anon_sym_alignas] = ACTIONS(6768), + [anon_sym__Alignas] = ACTIONS(6768), + [sym_primitive_type] = ACTIONS(6768), + [anon_sym_enum] = ACTIONS(6768), + [anon_sym_struct] = ACTIONS(6768), + [anon_sym_union] = ACTIONS(6768), + [anon_sym_asm] = ACTIONS(6752), + [anon_sym___asm__] = ACTIONS(6752), + [anon_sym___asm] = ACTIONS(6752), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6768), + [anon_sym___typeof] = ACTIONS(6768), + [anon_sym_typeof] = ACTIONS(6768), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6768), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6768), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6768), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6768), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6768), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6768), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6768), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6768), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6768), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6768), + [anon_sym_NS_AVAILABLE] = ACTIONS(6768), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6768), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6768), + [anon_sym_API_AVAILABLE] = ACTIONS(6768), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6768), + [anon_sym_API_DEPRECATED] = ACTIONS(6768), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6768), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6768), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6768), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6768), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6768), + [anon_sym___deprecated_msg] = ACTIONS(6768), + [anon_sym___deprecated_enum_msg] = ACTIONS(6768), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6768), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6768), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6768), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6768), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6768), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6768), + [anon_sym_BOOL] = ACTIONS(6768), + [anon_sym_IMP] = ACTIONS(6768), + [anon_sym_SEL] = ACTIONS(6768), + [anon_sym_Class] = ACTIONS(6768), + [anon_sym_id] = ACTIONS(6768), + }, + [2797] = { + [sym_identifier] = ACTIONS(6877), + [anon_sym_COMMA] = ACTIONS(6879), + [anon_sym_LPAREN2] = ACTIONS(6879), + [anon_sym_SEMI] = ACTIONS(6879), + [anon_sym___extension__] = ACTIONS(6877), + [anon_sym_extern] = ACTIONS(6877), + [anon_sym___attribute__] = ACTIONS(6877), + [anon_sym___attribute] = ACTIONS(6877), + [anon_sym_noreturn] = ACTIONS(6877), + [anon_sym_LBRACK] = ACTIONS(6879), + [anon_sym___declspec] = ACTIONS(6877), + [anon_sym_LBRACE] = ACTIONS(6879), + [anon_sym_signed] = ACTIONS(6877), + [anon_sym_unsigned] = ACTIONS(6877), + [anon_sym_long] = ACTIONS(6877), + [anon_sym_short] = ACTIONS(6877), + [anon_sym_static] = ACTIONS(6877), + [anon_sym_EQ] = ACTIONS(6879), + [anon_sym_ATautoreleasepool] = ACTIONS(6879), + [anon_sym_auto] = ACTIONS(6877), + [anon_sym_register] = ACTIONS(6877), + [anon_sym_inline] = ACTIONS(6877), + [anon_sym___inline] = ACTIONS(6877), + [anon_sym___inline__] = ACTIONS(6877), + [anon_sym___forceinline] = ACTIONS(6877), + [anon_sym_thread_local] = ACTIONS(6877), + [anon_sym___thread] = ACTIONS(6877), + [anon_sym_CG_EXTERN] = ACTIONS(6877), + [anon_sym_CG_INLINE] = ACTIONS(6877), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6877), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6877), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6877), + [anon_sym_IBOutlet] = ACTIONS(6877), + [anon_sym_IBInspectable] = ACTIONS(6877), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6877), + [anon_sym_NS_INLINE] = ACTIONS(6877), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6877), + [anon_sym_OBJC_EXPORT] = ACTIONS(6877), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6877), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6877), + [anon_sym_const] = ACTIONS(6877), + [anon_sym_constexpr] = ACTIONS(6877), + [anon_sym_volatile] = ACTIONS(6877), + [anon_sym_restrict] = ACTIONS(6877), + [anon_sym___restrict__] = ACTIONS(6877), + [anon_sym__Atomic] = ACTIONS(6877), + [anon_sym__Noreturn] = ACTIONS(6877), + [anon_sym__Nonnull] = ACTIONS(6877), + [anon_sym_nullable] = ACTIONS(6877), + [anon_sym__Complex] = ACTIONS(6877), + [anon_sym__Nullable] = ACTIONS(6877), + [anon_sym__Nullable_result] = ACTIONS(6877), + [anon_sym__Null_unspecified] = ACTIONS(6877), + [anon_sym___autoreleasing] = ACTIONS(6877), + [anon_sym___block] = ACTIONS(6877), + [anon_sym___bridge] = ACTIONS(6877), + [anon_sym___bridge_retained] = ACTIONS(6877), + [anon_sym___bridge_transfer] = ACTIONS(6877), + [anon_sym___complex] = ACTIONS(6877), + [anon_sym___const] = ACTIONS(6877), + [anon_sym___imag] = ACTIONS(6877), + [anon_sym___kindof] = ACTIONS(6877), + [anon_sym___nonnull] = ACTIONS(6877), + [anon_sym___nullable] = ACTIONS(6877), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6877), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6877), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6877), + [anon_sym___real] = ACTIONS(6877), + [anon_sym___strong] = ACTIONS(6877), + [anon_sym___unsafe_unretained] = ACTIONS(6877), + [anon_sym___unused] = ACTIONS(6877), + [anon_sym___weak] = ACTIONS(6877), + [anon_sym_alignas] = ACTIONS(6877), + [anon_sym__Alignas] = ACTIONS(6877), + [sym_primitive_type] = ACTIONS(6877), + [anon_sym_enum] = ACTIONS(6877), + [anon_sym_struct] = ACTIONS(6877), + [anon_sym_union] = ACTIONS(6877), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6877), + [anon_sym___typeof] = ACTIONS(6877), + [anon_sym_typeof] = ACTIONS(6877), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6877), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6877), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6877), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6877), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6877), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6877), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6877), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6877), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6877), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6877), + [anon_sym_NS_AVAILABLE] = ACTIONS(6877), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6877), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6877), + [anon_sym_API_AVAILABLE] = ACTIONS(6877), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6877), + [anon_sym_API_DEPRECATED] = ACTIONS(6877), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6877), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6877), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6877), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6877), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6877), + [anon_sym___deprecated_msg] = ACTIONS(6877), + [anon_sym___deprecated_enum_msg] = ACTIONS(6877), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6877), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6877), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6877), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6877), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6877), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6877), + [anon_sym_BOOL] = ACTIONS(6877), + [anon_sym_IMP] = ACTIONS(6877), + [anon_sym_SEL] = ACTIONS(6877), + [anon_sym_Class] = ACTIONS(6877), + [anon_sym_id] = ACTIONS(6877), + }, + [2798] = { + [sym_identifier] = ACTIONS(6881), + [anon_sym_COMMA] = ACTIONS(6883), + [anon_sym_LPAREN2] = ACTIONS(6883), + [anon_sym_SEMI] = ACTIONS(6883), + [anon_sym___extension__] = ACTIONS(6881), + [anon_sym_extern] = ACTIONS(6881), + [anon_sym___attribute__] = ACTIONS(6881), + [anon_sym___attribute] = ACTIONS(6881), + [anon_sym_noreturn] = ACTIONS(6881), + [anon_sym_LBRACK] = ACTIONS(6883), + [anon_sym___declspec] = ACTIONS(6881), + [anon_sym_LBRACE] = ACTIONS(6883), + [anon_sym_signed] = ACTIONS(6881), + [anon_sym_unsigned] = ACTIONS(6881), + [anon_sym_long] = ACTIONS(6881), + [anon_sym_short] = ACTIONS(6881), + [anon_sym_static] = ACTIONS(6881), + [anon_sym_EQ] = ACTIONS(6883), + [anon_sym_ATautoreleasepool] = ACTIONS(6883), + [anon_sym_auto] = ACTIONS(6881), + [anon_sym_register] = ACTIONS(6881), + [anon_sym_inline] = ACTIONS(6881), + [anon_sym___inline] = ACTIONS(6881), + [anon_sym___inline__] = ACTIONS(6881), + [anon_sym___forceinline] = ACTIONS(6881), + [anon_sym_thread_local] = ACTIONS(6881), + [anon_sym___thread] = ACTIONS(6881), + [anon_sym_CG_EXTERN] = ACTIONS(6881), + [anon_sym_CG_INLINE] = ACTIONS(6881), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6881), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6881), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6881), + [anon_sym_IBOutlet] = ACTIONS(6881), + [anon_sym_IBInspectable] = ACTIONS(6881), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6881), + [anon_sym_NS_INLINE] = ACTIONS(6881), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6881), + [anon_sym_OBJC_EXPORT] = ACTIONS(6881), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6881), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6881), + [anon_sym_const] = ACTIONS(6881), + [anon_sym_constexpr] = ACTIONS(6881), + [anon_sym_volatile] = ACTIONS(6881), + [anon_sym_restrict] = ACTIONS(6881), + [anon_sym___restrict__] = ACTIONS(6881), + [anon_sym__Atomic] = ACTIONS(6881), + [anon_sym__Noreturn] = ACTIONS(6881), + [anon_sym__Nonnull] = ACTIONS(6881), + [anon_sym_nullable] = ACTIONS(6881), + [anon_sym__Complex] = ACTIONS(6881), + [anon_sym__Nullable] = ACTIONS(6881), + [anon_sym__Nullable_result] = ACTIONS(6881), + [anon_sym__Null_unspecified] = ACTIONS(6881), + [anon_sym___autoreleasing] = ACTIONS(6881), + [anon_sym___block] = ACTIONS(6881), + [anon_sym___bridge] = ACTIONS(6881), + [anon_sym___bridge_retained] = ACTIONS(6881), + [anon_sym___bridge_transfer] = ACTIONS(6881), + [anon_sym___complex] = ACTIONS(6881), + [anon_sym___const] = ACTIONS(6881), + [anon_sym___imag] = ACTIONS(6881), + [anon_sym___kindof] = ACTIONS(6881), + [anon_sym___nonnull] = ACTIONS(6881), + [anon_sym___nullable] = ACTIONS(6881), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6881), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6881), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6881), + [anon_sym___real] = ACTIONS(6881), + [anon_sym___strong] = ACTIONS(6881), + [anon_sym___unsafe_unretained] = ACTIONS(6881), + [anon_sym___unused] = ACTIONS(6881), + [anon_sym___weak] = ACTIONS(6881), + [anon_sym_alignas] = ACTIONS(6881), + [anon_sym__Alignas] = ACTIONS(6881), + [sym_primitive_type] = ACTIONS(6881), + [anon_sym_enum] = ACTIONS(6881), + [anon_sym_struct] = ACTIONS(6881), + [anon_sym_union] = ACTIONS(6881), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6881), + [anon_sym___typeof] = ACTIONS(6881), + [anon_sym_typeof] = ACTIONS(6881), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6881), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6881), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6881), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6881), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6881), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6881), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6881), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6881), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6881), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6881), + [anon_sym_NS_AVAILABLE] = ACTIONS(6881), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6881), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6881), + [anon_sym_API_AVAILABLE] = ACTIONS(6881), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6881), + [anon_sym_API_DEPRECATED] = ACTIONS(6881), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6881), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6881), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6881), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6881), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6881), + [anon_sym___deprecated_msg] = ACTIONS(6881), + [anon_sym___deprecated_enum_msg] = ACTIONS(6881), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6881), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6881), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6881), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6881), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6881), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6881), + [anon_sym_BOOL] = ACTIONS(6881), + [anon_sym_IMP] = ACTIONS(6881), + [anon_sym_SEL] = ACTIONS(6881), + [anon_sym_Class] = ACTIONS(6881), + [anon_sym_id] = ACTIONS(6881), + }, + [2799] = { + [sym_identifier] = ACTIONS(6885), + [anon_sym_COMMA] = ACTIONS(6887), + [anon_sym_LPAREN2] = ACTIONS(6887), + [anon_sym_SEMI] = ACTIONS(6887), + [anon_sym___extension__] = ACTIONS(6885), + [anon_sym_extern] = ACTIONS(6885), + [anon_sym___attribute__] = ACTIONS(6885), + [anon_sym___attribute] = ACTIONS(6885), + [anon_sym_noreturn] = ACTIONS(6885), + [anon_sym_LBRACK] = ACTIONS(6887), + [anon_sym___declspec] = ACTIONS(6885), + [anon_sym_LBRACE] = ACTIONS(6887), + [anon_sym_signed] = ACTIONS(6885), + [anon_sym_unsigned] = ACTIONS(6885), + [anon_sym_long] = ACTIONS(6885), + [anon_sym_short] = ACTIONS(6885), + [anon_sym_static] = ACTIONS(6885), + [anon_sym_EQ] = ACTIONS(6887), + [anon_sym_ATautoreleasepool] = ACTIONS(6887), + [anon_sym_auto] = ACTIONS(6885), + [anon_sym_register] = ACTIONS(6885), + [anon_sym_inline] = ACTIONS(6885), + [anon_sym___inline] = ACTIONS(6885), + [anon_sym___inline__] = ACTIONS(6885), + [anon_sym___forceinline] = ACTIONS(6885), + [anon_sym_thread_local] = ACTIONS(6885), + [anon_sym___thread] = ACTIONS(6885), + [anon_sym_CG_EXTERN] = ACTIONS(6885), + [anon_sym_CG_INLINE] = ACTIONS(6885), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6885), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6885), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6885), + [anon_sym_IBOutlet] = ACTIONS(6885), + [anon_sym_IBInspectable] = ACTIONS(6885), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6885), + [anon_sym_NS_INLINE] = ACTIONS(6885), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6885), + [anon_sym_OBJC_EXPORT] = ACTIONS(6885), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6885), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6885), + [anon_sym_const] = ACTIONS(6885), + [anon_sym_constexpr] = ACTIONS(6885), + [anon_sym_volatile] = ACTIONS(6885), + [anon_sym_restrict] = ACTIONS(6885), + [anon_sym___restrict__] = ACTIONS(6885), + [anon_sym__Atomic] = ACTIONS(6885), + [anon_sym__Noreturn] = ACTIONS(6885), + [anon_sym__Nonnull] = ACTIONS(6885), + [anon_sym_nullable] = ACTIONS(6885), + [anon_sym__Complex] = ACTIONS(6885), + [anon_sym__Nullable] = ACTIONS(6885), + [anon_sym__Nullable_result] = ACTIONS(6885), + [anon_sym__Null_unspecified] = ACTIONS(6885), + [anon_sym___autoreleasing] = ACTIONS(6885), + [anon_sym___block] = ACTIONS(6885), + [anon_sym___bridge] = ACTIONS(6885), + [anon_sym___bridge_retained] = ACTIONS(6885), + [anon_sym___bridge_transfer] = ACTIONS(6885), + [anon_sym___complex] = ACTIONS(6885), + [anon_sym___const] = ACTIONS(6885), + [anon_sym___imag] = ACTIONS(6885), + [anon_sym___kindof] = ACTIONS(6885), + [anon_sym___nonnull] = ACTIONS(6885), + [anon_sym___nullable] = ACTIONS(6885), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6885), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6885), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6885), + [anon_sym___real] = ACTIONS(6885), + [anon_sym___strong] = ACTIONS(6885), + [anon_sym___unsafe_unretained] = ACTIONS(6885), + [anon_sym___unused] = ACTIONS(6885), + [anon_sym___weak] = ACTIONS(6885), + [anon_sym_alignas] = ACTIONS(6885), + [anon_sym__Alignas] = ACTIONS(6885), + [sym_primitive_type] = ACTIONS(6885), + [anon_sym_enum] = ACTIONS(6885), + [anon_sym_struct] = ACTIONS(6885), + [anon_sym_union] = ACTIONS(6885), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6885), + [anon_sym___typeof] = ACTIONS(6885), + [anon_sym_typeof] = ACTIONS(6885), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6885), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6885), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6885), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6885), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6885), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6885), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6885), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6885), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6885), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6885), + [anon_sym_NS_AVAILABLE] = ACTIONS(6885), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6885), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6885), + [anon_sym_API_AVAILABLE] = ACTIONS(6885), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6885), + [anon_sym_API_DEPRECATED] = ACTIONS(6885), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6885), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6885), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6885), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6885), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6885), + [anon_sym___deprecated_msg] = ACTIONS(6885), + [anon_sym___deprecated_enum_msg] = ACTIONS(6885), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6885), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6885), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6885), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6885), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6885), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6885), + [anon_sym_BOOL] = ACTIONS(6885), + [anon_sym_IMP] = ACTIONS(6885), + [anon_sym_SEL] = ACTIONS(6885), + [anon_sym_Class] = ACTIONS(6885), + [anon_sym_id] = ACTIONS(6885), + }, + [2800] = { + [sym__declaration_modifiers] = STATE(2879), + [sym_attribute_specifier] = STATE(2879), + [sym_attribute_declaration] = STATE(2879), + [sym_ms_declspec_modifier] = STATE(2879), + [sym__abstract_declarator] = STATE(5004), + [sym_abstract_parenthesized_declarator] = STATE(4894), + [sym_abstract_pointer_declarator] = STATE(4894), + [sym_abstract_function_declarator] = STATE(4894), + [sym_abstract_array_declarator] = STATE(4894), + [sym_storage_class_specifier] = STATE(2879), + [sym_type_qualifier] = STATE(2879), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(4295), + [sym_availability_attribute_specifier] = STATE(2879), + [sym_abstract_block_pointer_declarator] = STATE(4894), + [aux_sym__declaration_specifiers_repeat1] = STATE(2879), + [anon_sym_COMMA] = ACTIONS(6354), + [anon_sym_RPAREN] = ACTIONS(6354), + [anon_sym_LPAREN2] = ACTIONS(4496), + [anon_sym_STAR] = ACTIONS(4498), + [anon_sym_CARET] = ACTIONS(4500), + [anon_sym_GT] = ACTIONS(6354), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6867), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_COLON] = ACTIONS(6354), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2801] = { + [sym_identifier] = ACTIONS(6889), + [anon_sym_COMMA] = ACTIONS(6891), + [anon_sym_LPAREN2] = ACTIONS(6891), + [anon_sym_SEMI] = ACTIONS(6891), + [anon_sym___extension__] = ACTIONS(6889), + [anon_sym_extern] = ACTIONS(6889), + [anon_sym___attribute__] = ACTIONS(6889), + [anon_sym___attribute] = ACTIONS(6889), + [anon_sym_noreturn] = ACTIONS(6889), + [anon_sym_LBRACK] = ACTIONS(6891), + [anon_sym___declspec] = ACTIONS(6889), + [anon_sym_LBRACE] = ACTIONS(6891), + [anon_sym_signed] = ACTIONS(6889), + [anon_sym_unsigned] = ACTIONS(6889), + [anon_sym_long] = ACTIONS(6889), + [anon_sym_short] = ACTIONS(6889), + [anon_sym_static] = ACTIONS(6889), + [anon_sym_EQ] = ACTIONS(6891), + [anon_sym_ATautoreleasepool] = ACTIONS(6891), + [anon_sym_auto] = ACTIONS(6889), + [anon_sym_register] = ACTIONS(6889), + [anon_sym_inline] = ACTIONS(6889), + [anon_sym___inline] = ACTIONS(6889), + [anon_sym___inline__] = ACTIONS(6889), + [anon_sym___forceinline] = ACTIONS(6889), + [anon_sym_thread_local] = ACTIONS(6889), + [anon_sym___thread] = ACTIONS(6889), + [anon_sym_CG_EXTERN] = ACTIONS(6889), + [anon_sym_CG_INLINE] = ACTIONS(6889), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6889), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6889), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6889), + [anon_sym_IBOutlet] = ACTIONS(6889), + [anon_sym_IBInspectable] = ACTIONS(6889), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6889), + [anon_sym_NS_INLINE] = ACTIONS(6889), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6889), + [anon_sym_OBJC_EXPORT] = ACTIONS(6889), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6889), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6889), + [anon_sym_const] = ACTIONS(6889), + [anon_sym_constexpr] = ACTIONS(6889), + [anon_sym_volatile] = ACTIONS(6889), + [anon_sym_restrict] = ACTIONS(6889), + [anon_sym___restrict__] = ACTIONS(6889), + [anon_sym__Atomic] = ACTIONS(6889), + [anon_sym__Noreturn] = ACTIONS(6889), + [anon_sym__Nonnull] = ACTIONS(6889), + [anon_sym_nullable] = ACTIONS(6889), + [anon_sym__Complex] = ACTIONS(6889), + [anon_sym__Nullable] = ACTIONS(6889), + [anon_sym__Nullable_result] = ACTIONS(6889), + [anon_sym__Null_unspecified] = ACTIONS(6889), + [anon_sym___autoreleasing] = ACTIONS(6889), + [anon_sym___block] = ACTIONS(6889), + [anon_sym___bridge] = ACTIONS(6889), + [anon_sym___bridge_retained] = ACTIONS(6889), + [anon_sym___bridge_transfer] = ACTIONS(6889), + [anon_sym___complex] = ACTIONS(6889), + [anon_sym___const] = ACTIONS(6889), + [anon_sym___imag] = ACTIONS(6889), + [anon_sym___kindof] = ACTIONS(6889), + [anon_sym___nonnull] = ACTIONS(6889), + [anon_sym___nullable] = ACTIONS(6889), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6889), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6889), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6889), + [anon_sym___real] = ACTIONS(6889), + [anon_sym___strong] = ACTIONS(6889), + [anon_sym___unsafe_unretained] = ACTIONS(6889), + [anon_sym___unused] = ACTIONS(6889), + [anon_sym___weak] = ACTIONS(6889), + [anon_sym_alignas] = ACTIONS(6889), + [anon_sym__Alignas] = ACTIONS(6889), + [sym_primitive_type] = ACTIONS(6889), + [anon_sym_enum] = ACTIONS(6889), + [anon_sym_struct] = ACTIONS(6889), + [anon_sym_union] = ACTIONS(6889), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6889), + [anon_sym___typeof] = ACTIONS(6889), + [anon_sym_typeof] = ACTIONS(6889), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6889), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6889), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6889), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6889), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6889), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6889), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6889), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6889), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6889), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6889), + [anon_sym_NS_AVAILABLE] = ACTIONS(6889), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6889), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6889), + [anon_sym_API_AVAILABLE] = ACTIONS(6889), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6889), + [anon_sym_API_DEPRECATED] = ACTIONS(6889), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6889), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6889), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6889), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6889), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6889), + [anon_sym___deprecated_msg] = ACTIONS(6889), + [anon_sym___deprecated_enum_msg] = ACTIONS(6889), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6889), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6889), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6889), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6889), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6889), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6889), + [anon_sym_BOOL] = ACTIONS(6889), + [anon_sym_IMP] = ACTIONS(6889), + [anon_sym_SEL] = ACTIONS(6889), + [anon_sym_Class] = ACTIONS(6889), + [anon_sym_id] = ACTIONS(6889), + }, + [2802] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6258), + [sym__field_declarator] = STATE(5040), + [sym_parenthesized_field_declarator] = STATE(4955), + [sym_attributed_field_declarator] = STATE(4955), + [sym_pointer_field_declarator] = STATE(4955), + [sym_function_field_declarator] = STATE(4955), + [sym_array_field_declarator] = STATE(4955), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_field_declarator] = STATE(4955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(6493), + [anon_sym_LPAREN2] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6525), + [anon_sym_CARET] = ACTIONS(6527), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2803] = { + [aux_sym_c_method_parameter_repeat1] = STATE(2806), + [sym_identifier] = ACTIONS(6893), + [anon_sym_COMMA] = ACTIONS(6895), + [anon_sym_SEMI] = ACTIONS(6895), + [anon_sym___extension__] = ACTIONS(6893), + [anon_sym_extern] = ACTIONS(6893), + [anon_sym___attribute__] = ACTIONS(6893), + [anon_sym___attribute] = ACTIONS(6893), + [anon_sym_noreturn] = ACTIONS(6893), + [anon_sym_LBRACK] = ACTIONS(6895), + [anon_sym___declspec] = ACTIONS(6893), + [anon_sym_LBRACE] = ACTIONS(6895), + [anon_sym_signed] = ACTIONS(6893), + [anon_sym_unsigned] = ACTIONS(6893), + [anon_sym_long] = ACTIONS(6893), + [anon_sym_short] = ACTIONS(6893), + [anon_sym_static] = ACTIONS(6893), + [anon_sym_ATautoreleasepool] = ACTIONS(6895), + [anon_sym_auto] = ACTIONS(6893), + [anon_sym_register] = ACTIONS(6893), + [anon_sym_inline] = ACTIONS(6893), + [anon_sym___inline] = ACTIONS(6893), + [anon_sym___inline__] = ACTIONS(6893), + [anon_sym___forceinline] = ACTIONS(6893), + [anon_sym_thread_local] = ACTIONS(6893), + [anon_sym___thread] = ACTIONS(6893), + [anon_sym_CG_EXTERN] = ACTIONS(6893), + [anon_sym_CG_INLINE] = ACTIONS(6893), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6893), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6893), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6893), + [anon_sym_IBOutlet] = ACTIONS(6893), + [anon_sym_IBInspectable] = ACTIONS(6893), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6893), + [anon_sym_NS_INLINE] = ACTIONS(6893), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6893), + [anon_sym_OBJC_EXPORT] = ACTIONS(6893), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6893), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6893), + [anon_sym_const] = ACTIONS(6893), + [anon_sym_constexpr] = ACTIONS(6893), + [anon_sym_volatile] = ACTIONS(6893), + [anon_sym_restrict] = ACTIONS(6893), + [anon_sym___restrict__] = ACTIONS(6893), + [anon_sym__Atomic] = ACTIONS(6893), + [anon_sym__Noreturn] = ACTIONS(6893), + [anon_sym__Nonnull] = ACTIONS(6893), + [anon_sym_nullable] = ACTIONS(6893), + [anon_sym__Complex] = ACTIONS(6893), + [anon_sym__Nullable] = ACTIONS(6893), + [anon_sym__Nullable_result] = ACTIONS(6893), + [anon_sym__Null_unspecified] = ACTIONS(6893), + [anon_sym___autoreleasing] = ACTIONS(6893), + [anon_sym___block] = ACTIONS(6893), + [anon_sym___bridge] = ACTIONS(6893), + [anon_sym___bridge_retained] = ACTIONS(6893), + [anon_sym___bridge_transfer] = ACTIONS(6893), + [anon_sym___complex] = ACTIONS(6893), + [anon_sym___const] = ACTIONS(6893), + [anon_sym___imag] = ACTIONS(6893), + [anon_sym___kindof] = ACTIONS(6893), + [anon_sym___nonnull] = ACTIONS(6893), + [anon_sym___nullable] = ACTIONS(6893), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6893), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6893), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6893), + [anon_sym___real] = ACTIONS(6893), + [anon_sym___strong] = ACTIONS(6893), + [anon_sym___unsafe_unretained] = ACTIONS(6893), + [anon_sym___unused] = ACTIONS(6893), + [anon_sym___weak] = ACTIONS(6893), + [anon_sym_alignas] = ACTIONS(6893), + [anon_sym__Alignas] = ACTIONS(6893), + [sym_primitive_type] = ACTIONS(6893), + [anon_sym_enum] = ACTIONS(6893), + [anon_sym_struct] = ACTIONS(6893), + [anon_sym_union] = ACTIONS(6893), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6893), + [anon_sym___typeof] = ACTIONS(6893), + [anon_sym_typeof] = ACTIONS(6893), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6893), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6893), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6893), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6893), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6893), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6893), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6893), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6893), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6893), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6893), + [anon_sym_NS_AVAILABLE] = ACTIONS(6893), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6893), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6893), + [anon_sym_API_AVAILABLE] = ACTIONS(6893), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6893), + [anon_sym_API_DEPRECATED] = ACTIONS(6893), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6893), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6893), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6893), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6893), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6893), + [anon_sym___deprecated_msg] = ACTIONS(6893), + [anon_sym___deprecated_enum_msg] = ACTIONS(6893), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6893), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6893), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6893), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6893), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6893), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6893), + [anon_sym_BOOL] = ACTIONS(6893), + [anon_sym_IMP] = ACTIONS(6893), + [anon_sym_SEL] = ACTIONS(6893), + [anon_sym_Class] = ACTIONS(6893), + [anon_sym_id] = ACTIONS(6893), + }, + [2804] = { + [aux_sym_c_method_parameter_repeat1] = STATE(2806), + [sym_identifier] = ACTIONS(6893), + [anon_sym_COMMA] = ACTIONS(6895), + [anon_sym_SEMI] = ACTIONS(6895), + [anon_sym___extension__] = ACTIONS(6893), + [anon_sym_extern] = ACTIONS(6893), + [anon_sym___attribute__] = ACTIONS(6893), + [anon_sym___attribute] = ACTIONS(6893), + [anon_sym_noreturn] = ACTIONS(6893), + [anon_sym_LBRACK] = ACTIONS(6895), + [anon_sym___declspec] = ACTIONS(6893), + [anon_sym_LBRACE] = ACTIONS(6895), + [anon_sym_signed] = ACTIONS(6893), + [anon_sym_unsigned] = ACTIONS(6893), + [anon_sym_long] = ACTIONS(6893), + [anon_sym_short] = ACTIONS(6893), + [anon_sym_static] = ACTIONS(6893), + [anon_sym_ATautoreleasepool] = ACTIONS(6895), + [anon_sym_auto] = ACTIONS(6893), + [anon_sym_register] = ACTIONS(6893), + [anon_sym_inline] = ACTIONS(6893), + [anon_sym___inline] = ACTIONS(6893), + [anon_sym___inline__] = ACTIONS(6893), + [anon_sym___forceinline] = ACTIONS(6893), + [anon_sym_thread_local] = ACTIONS(6893), + [anon_sym___thread] = ACTIONS(6893), + [anon_sym_CG_EXTERN] = ACTIONS(6893), + [anon_sym_CG_INLINE] = ACTIONS(6893), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6893), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6893), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6893), + [anon_sym_IBOutlet] = ACTIONS(6893), + [anon_sym_IBInspectable] = ACTIONS(6893), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6893), + [anon_sym_NS_INLINE] = ACTIONS(6893), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6893), + [anon_sym_OBJC_EXPORT] = ACTIONS(6893), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6893), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6893), + [anon_sym_const] = ACTIONS(6893), + [anon_sym_constexpr] = ACTIONS(6893), + [anon_sym_volatile] = ACTIONS(6893), + [anon_sym_restrict] = ACTIONS(6893), + [anon_sym___restrict__] = ACTIONS(6893), + [anon_sym__Atomic] = ACTIONS(6893), + [anon_sym__Noreturn] = ACTIONS(6893), + [anon_sym__Nonnull] = ACTIONS(6893), + [anon_sym_nullable] = ACTIONS(6893), + [anon_sym__Complex] = ACTIONS(6893), + [anon_sym__Nullable] = ACTIONS(6893), + [anon_sym__Nullable_result] = ACTIONS(6893), + [anon_sym__Null_unspecified] = ACTIONS(6893), + [anon_sym___autoreleasing] = ACTIONS(6893), + [anon_sym___block] = ACTIONS(6893), + [anon_sym___bridge] = ACTIONS(6893), + [anon_sym___bridge_retained] = ACTIONS(6893), + [anon_sym___bridge_transfer] = ACTIONS(6893), + [anon_sym___complex] = ACTIONS(6893), + [anon_sym___const] = ACTIONS(6893), + [anon_sym___imag] = ACTIONS(6893), + [anon_sym___kindof] = ACTIONS(6893), + [anon_sym___nonnull] = ACTIONS(6893), + [anon_sym___nullable] = ACTIONS(6893), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6893), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6893), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6893), + [anon_sym___real] = ACTIONS(6893), + [anon_sym___strong] = ACTIONS(6893), + [anon_sym___unsafe_unretained] = ACTIONS(6893), + [anon_sym___unused] = ACTIONS(6893), + [anon_sym___weak] = ACTIONS(6893), + [anon_sym_alignas] = ACTIONS(6893), + [anon_sym__Alignas] = ACTIONS(6893), + [sym_primitive_type] = ACTIONS(6893), + [anon_sym_enum] = ACTIONS(6893), + [anon_sym_struct] = ACTIONS(6893), + [anon_sym_union] = ACTIONS(6893), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6893), + [anon_sym___typeof] = ACTIONS(6893), + [anon_sym_typeof] = ACTIONS(6893), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6893), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6893), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6893), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6893), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6893), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6893), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6893), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6893), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6893), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6893), + [anon_sym_NS_AVAILABLE] = ACTIONS(6893), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6893), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6893), + [anon_sym_API_AVAILABLE] = ACTIONS(6893), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6893), + [anon_sym_API_DEPRECATED] = ACTIONS(6893), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6893), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6893), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6893), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6893), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6893), + [anon_sym___deprecated_msg] = ACTIONS(6893), + [anon_sym___deprecated_enum_msg] = ACTIONS(6893), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6893), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6893), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6893), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6893), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6893), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6893), + [anon_sym_BOOL] = ACTIONS(6893), + [anon_sym_IMP] = ACTIONS(6893), + [anon_sym_SEL] = ACTIONS(6893), + [anon_sym_Class] = ACTIONS(6893), + [anon_sym_id] = ACTIONS(6893), + }, + [2805] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6162), + [sym__field_declarator] = STATE(4873), + [sym_parenthesized_field_declarator] = STATE(4955), + [sym_attributed_field_declarator] = STATE(4955), + [sym_pointer_field_declarator] = STATE(4955), + [sym_function_field_declarator] = STATE(4955), + [sym_array_field_declarator] = STATE(4955), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_field_declarator] = STATE(4955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(6493), + [anon_sym_LPAREN2] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6497), + [anon_sym_CARET] = ACTIONS(6499), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2806] = { + [aux_sym_c_method_parameter_repeat1] = STATE(2806), + [sym_identifier] = ACTIONS(6897), + [anon_sym_COMMA] = ACTIONS(6899), + [anon_sym_SEMI] = ACTIONS(6902), + [anon_sym___extension__] = ACTIONS(6897), + [anon_sym_extern] = ACTIONS(6897), + [anon_sym___attribute__] = ACTIONS(6897), + [anon_sym___attribute] = ACTIONS(6897), + [anon_sym_noreturn] = ACTIONS(6897), + [anon_sym_LBRACK] = ACTIONS(6902), + [anon_sym___declspec] = ACTIONS(6897), + [anon_sym_LBRACE] = ACTIONS(6902), + [anon_sym_signed] = ACTIONS(6897), + [anon_sym_unsigned] = ACTIONS(6897), + [anon_sym_long] = ACTIONS(6897), + [anon_sym_short] = ACTIONS(6897), + [anon_sym_static] = ACTIONS(6897), + [anon_sym_ATautoreleasepool] = ACTIONS(6902), + [anon_sym_auto] = ACTIONS(6897), + [anon_sym_register] = ACTIONS(6897), + [anon_sym_inline] = ACTIONS(6897), + [anon_sym___inline] = ACTIONS(6897), + [anon_sym___inline__] = ACTIONS(6897), + [anon_sym___forceinline] = ACTIONS(6897), + [anon_sym_thread_local] = ACTIONS(6897), + [anon_sym___thread] = ACTIONS(6897), + [anon_sym_CG_EXTERN] = ACTIONS(6897), + [anon_sym_CG_INLINE] = ACTIONS(6897), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6897), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6897), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6897), + [anon_sym_IBOutlet] = ACTIONS(6897), + [anon_sym_IBInspectable] = ACTIONS(6897), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6897), + [anon_sym_NS_INLINE] = ACTIONS(6897), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6897), + [anon_sym_OBJC_EXPORT] = ACTIONS(6897), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6897), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6897), + [anon_sym_const] = ACTIONS(6897), + [anon_sym_constexpr] = ACTIONS(6897), + [anon_sym_volatile] = ACTIONS(6897), + [anon_sym_restrict] = ACTIONS(6897), + [anon_sym___restrict__] = ACTIONS(6897), + [anon_sym__Atomic] = ACTIONS(6897), + [anon_sym__Noreturn] = ACTIONS(6897), + [anon_sym__Nonnull] = ACTIONS(6897), + [anon_sym_nullable] = ACTIONS(6897), + [anon_sym__Complex] = ACTIONS(6897), + [anon_sym__Nullable] = ACTIONS(6897), + [anon_sym__Nullable_result] = ACTIONS(6897), + [anon_sym__Null_unspecified] = ACTIONS(6897), + [anon_sym___autoreleasing] = ACTIONS(6897), + [anon_sym___block] = ACTIONS(6897), + [anon_sym___bridge] = ACTIONS(6897), + [anon_sym___bridge_retained] = ACTIONS(6897), + [anon_sym___bridge_transfer] = ACTIONS(6897), + [anon_sym___complex] = ACTIONS(6897), + [anon_sym___const] = ACTIONS(6897), + [anon_sym___imag] = ACTIONS(6897), + [anon_sym___kindof] = ACTIONS(6897), + [anon_sym___nonnull] = ACTIONS(6897), + [anon_sym___nullable] = ACTIONS(6897), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6897), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6897), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6897), + [anon_sym___real] = ACTIONS(6897), + [anon_sym___strong] = ACTIONS(6897), + [anon_sym___unsafe_unretained] = ACTIONS(6897), + [anon_sym___unused] = ACTIONS(6897), + [anon_sym___weak] = ACTIONS(6897), + [anon_sym_alignas] = ACTIONS(6897), + [anon_sym__Alignas] = ACTIONS(6897), + [sym_primitive_type] = ACTIONS(6897), + [anon_sym_enum] = ACTIONS(6897), + [anon_sym_struct] = ACTIONS(6897), + [anon_sym_union] = ACTIONS(6897), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6897), + [anon_sym___typeof] = ACTIONS(6897), + [anon_sym_typeof] = ACTIONS(6897), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6897), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6897), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6897), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6897), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6897), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6897), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6897), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6897), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6897), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6897), + [anon_sym_NS_AVAILABLE] = ACTIONS(6897), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6897), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6897), + [anon_sym_API_AVAILABLE] = ACTIONS(6897), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6897), + [anon_sym_API_DEPRECATED] = ACTIONS(6897), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6897), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6897), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6897), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6897), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6897), + [anon_sym___deprecated_msg] = ACTIONS(6897), + [anon_sym___deprecated_enum_msg] = ACTIONS(6897), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6897), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6897), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6897), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6897), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6897), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6897), + [anon_sym_BOOL] = ACTIONS(6897), + [anon_sym_IMP] = ACTIONS(6897), + [anon_sym_SEL] = ACTIONS(6897), + [anon_sym_Class] = ACTIONS(6897), + [anon_sym_id] = ACTIONS(6897), + }, + [2807] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6258), + [sym__field_declarator] = STATE(5071), + [sym_parenthesized_field_declarator] = STATE(4955), + [sym_attributed_field_declarator] = STATE(4955), + [sym_pointer_field_declarator] = STATE(4955), + [sym_function_field_declarator] = STATE(4955), + [sym_array_field_declarator] = STATE(4955), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_field_declarator] = STATE(4955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(6493), + [anon_sym_LPAREN2] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6525), + [anon_sym_CARET] = ACTIONS(6527), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2808] = { + [sym__declaration_modifiers] = STATE(6370), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(6370), + [sym_ms_declspec_modifier] = STATE(6370), + [sym_compound_statement] = STATE(278), + [sym_storage_class_specifier] = STATE(6370), + [sym_type_qualifier] = STATE(6370), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3030), + [sym__old_style_parameter_list] = STATE(2887), + [sym_gnu_asm_expression] = STATE(3103), + [sym_availability_attribute_specifier] = STATE(6370), + [aux_sym_declaration_repeat1] = STATE(3104), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6906), + [anon_sym_SEMI] = ACTIONS(6908), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2809] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6162), + [sym__field_declarator] = STATE(4866), + [sym_parenthesized_field_declarator] = STATE(4955), + [sym_attributed_field_declarator] = STATE(4955), + [sym_pointer_field_declarator] = STATE(4955), + [sym_function_field_declarator] = STATE(4955), + [sym_array_field_declarator] = STATE(4955), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_field_declarator] = STATE(4955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(6493), + [anon_sym_LPAREN2] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6497), + [anon_sym_CARET] = ACTIONS(6499), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2810] = { + [sym_identifier] = ACTIONS(6916), + [anon_sym_COMMA] = ACTIONS(6918), + [anon_sym_SEMI] = ACTIONS(6918), + [anon_sym___extension__] = ACTIONS(6916), + [anon_sym_extern] = ACTIONS(6916), + [anon_sym___attribute__] = ACTIONS(6916), + [anon_sym___attribute] = ACTIONS(6916), + [anon_sym_noreturn] = ACTIONS(6916), + [anon_sym_LBRACK] = ACTIONS(6918), + [anon_sym___declspec] = ACTIONS(6916), + [anon_sym_LBRACE] = ACTIONS(6918), + [anon_sym_signed] = ACTIONS(6916), + [anon_sym_unsigned] = ACTIONS(6916), + [anon_sym_long] = ACTIONS(6916), + [anon_sym_short] = ACTIONS(6916), + [anon_sym_static] = ACTIONS(6916), + [anon_sym_ATautoreleasepool] = ACTIONS(6918), + [anon_sym_auto] = ACTIONS(6916), + [anon_sym_register] = ACTIONS(6916), + [anon_sym_inline] = ACTIONS(6916), + [anon_sym___inline] = ACTIONS(6916), + [anon_sym___inline__] = ACTIONS(6916), + [anon_sym___forceinline] = ACTIONS(6916), + [anon_sym_thread_local] = ACTIONS(6916), + [anon_sym___thread] = ACTIONS(6916), + [anon_sym_CG_EXTERN] = ACTIONS(6916), + [anon_sym_CG_INLINE] = ACTIONS(6916), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6916), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6916), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6916), + [anon_sym_IBOutlet] = ACTIONS(6916), + [anon_sym_IBInspectable] = ACTIONS(6916), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6916), + [anon_sym_NS_INLINE] = ACTIONS(6916), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6916), + [anon_sym_OBJC_EXPORT] = ACTIONS(6916), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6916), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6916), + [anon_sym_const] = ACTIONS(6916), + [anon_sym_constexpr] = ACTIONS(6916), + [anon_sym_volatile] = ACTIONS(6916), + [anon_sym_restrict] = ACTIONS(6916), + [anon_sym___restrict__] = ACTIONS(6916), + [anon_sym__Atomic] = ACTIONS(6916), + [anon_sym__Noreturn] = ACTIONS(6916), + [anon_sym__Nonnull] = ACTIONS(6916), + [anon_sym_nullable] = ACTIONS(6916), + [anon_sym__Complex] = ACTIONS(6916), + [anon_sym__Nullable] = ACTIONS(6916), + [anon_sym__Nullable_result] = ACTIONS(6916), + [anon_sym__Null_unspecified] = ACTIONS(6916), + [anon_sym___autoreleasing] = ACTIONS(6916), + [anon_sym___block] = ACTIONS(6916), + [anon_sym___bridge] = ACTIONS(6916), + [anon_sym___bridge_retained] = ACTIONS(6916), + [anon_sym___bridge_transfer] = ACTIONS(6916), + [anon_sym___complex] = ACTIONS(6916), + [anon_sym___const] = ACTIONS(6916), + [anon_sym___imag] = ACTIONS(6916), + [anon_sym___kindof] = ACTIONS(6916), + [anon_sym___nonnull] = ACTIONS(6916), + [anon_sym___nullable] = ACTIONS(6916), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6916), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6916), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6916), + [anon_sym___real] = ACTIONS(6916), + [anon_sym___strong] = ACTIONS(6916), + [anon_sym___unsafe_unretained] = ACTIONS(6916), + [anon_sym___unused] = ACTIONS(6916), + [anon_sym___weak] = ACTIONS(6916), + [anon_sym_alignas] = ACTIONS(6916), + [anon_sym__Alignas] = ACTIONS(6916), + [sym_primitive_type] = ACTIONS(6916), + [anon_sym_enum] = ACTIONS(6916), + [anon_sym_COLON] = ACTIONS(6918), + [anon_sym_struct] = ACTIONS(6916), + [anon_sym_union] = ACTIONS(6916), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6916), + [anon_sym___typeof] = ACTIONS(6916), + [anon_sym_typeof] = ACTIONS(6916), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6916), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6916), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6916), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6916), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6916), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6916), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6916), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6916), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6916), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6916), + [anon_sym_NS_AVAILABLE] = ACTIONS(6916), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6916), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6916), + [anon_sym_API_AVAILABLE] = ACTIONS(6916), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6916), + [anon_sym_API_DEPRECATED] = ACTIONS(6916), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6916), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6916), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6916), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6916), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6916), + [anon_sym___deprecated_msg] = ACTIONS(6916), + [anon_sym___deprecated_enum_msg] = ACTIONS(6916), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6916), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6916), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6916), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6916), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6916), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6916), + [anon_sym_BOOL] = ACTIONS(6916), + [anon_sym_IMP] = ACTIONS(6916), + [anon_sym_SEL] = ACTIONS(6916), + [anon_sym_Class] = ACTIONS(6916), + [anon_sym_id] = ACTIONS(6916), + }, + [2811] = { + [sym_identifier] = ACTIONS(6920), + [anon_sym_COMMA] = ACTIONS(6922), + [anon_sym_SEMI] = ACTIONS(6922), + [anon_sym___extension__] = ACTIONS(6920), + [anon_sym_extern] = ACTIONS(6920), + [anon_sym___attribute__] = ACTIONS(6920), + [anon_sym___attribute] = ACTIONS(6920), + [anon_sym_noreturn] = ACTIONS(6920), + [anon_sym_LBRACK] = ACTIONS(6922), + [anon_sym___declspec] = ACTIONS(6920), + [anon_sym_LBRACE] = ACTIONS(6922), + [anon_sym_signed] = ACTIONS(6920), + [anon_sym_unsigned] = ACTIONS(6920), + [anon_sym_long] = ACTIONS(6920), + [anon_sym_short] = ACTIONS(6920), + [anon_sym_static] = ACTIONS(6920), + [anon_sym_ATautoreleasepool] = ACTIONS(6922), + [anon_sym_auto] = ACTIONS(6920), + [anon_sym_register] = ACTIONS(6920), + [anon_sym_inline] = ACTIONS(6920), + [anon_sym___inline] = ACTIONS(6920), + [anon_sym___inline__] = ACTIONS(6920), + [anon_sym___forceinline] = ACTIONS(6920), + [anon_sym_thread_local] = ACTIONS(6920), + [anon_sym___thread] = ACTIONS(6920), + [anon_sym_CG_EXTERN] = ACTIONS(6920), + [anon_sym_CG_INLINE] = ACTIONS(6920), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6920), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6920), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6920), + [anon_sym_IBOutlet] = ACTIONS(6920), + [anon_sym_IBInspectable] = ACTIONS(6920), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6920), + [anon_sym_NS_INLINE] = ACTIONS(6920), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6920), + [anon_sym_OBJC_EXPORT] = ACTIONS(6920), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6920), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6920), + [anon_sym_const] = ACTIONS(6920), + [anon_sym_constexpr] = ACTIONS(6920), + [anon_sym_volatile] = ACTIONS(6920), + [anon_sym_restrict] = ACTIONS(6920), + [anon_sym___restrict__] = ACTIONS(6920), + [anon_sym__Atomic] = ACTIONS(6920), + [anon_sym__Noreturn] = ACTIONS(6920), + [anon_sym__Nonnull] = ACTIONS(6920), + [anon_sym_nullable] = ACTIONS(6920), + [anon_sym__Complex] = ACTIONS(6920), + [anon_sym__Nullable] = ACTIONS(6920), + [anon_sym__Nullable_result] = ACTIONS(6920), + [anon_sym__Null_unspecified] = ACTIONS(6920), + [anon_sym___autoreleasing] = ACTIONS(6920), + [anon_sym___block] = ACTIONS(6920), + [anon_sym___bridge] = ACTIONS(6920), + [anon_sym___bridge_retained] = ACTIONS(6920), + [anon_sym___bridge_transfer] = ACTIONS(6920), + [anon_sym___complex] = ACTIONS(6920), + [anon_sym___const] = ACTIONS(6920), + [anon_sym___imag] = ACTIONS(6920), + [anon_sym___kindof] = ACTIONS(6920), + [anon_sym___nonnull] = ACTIONS(6920), + [anon_sym___nullable] = ACTIONS(6920), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6920), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6920), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6920), + [anon_sym___real] = ACTIONS(6920), + [anon_sym___strong] = ACTIONS(6920), + [anon_sym___unsafe_unretained] = ACTIONS(6920), + [anon_sym___unused] = ACTIONS(6920), + [anon_sym___weak] = ACTIONS(6920), + [anon_sym_alignas] = ACTIONS(6920), + [anon_sym__Alignas] = ACTIONS(6920), + [sym_primitive_type] = ACTIONS(6920), + [anon_sym_enum] = ACTIONS(6920), + [anon_sym_COLON] = ACTIONS(6922), + [anon_sym_struct] = ACTIONS(6920), + [anon_sym_union] = ACTIONS(6920), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6920), + [anon_sym___typeof] = ACTIONS(6920), + [anon_sym_typeof] = ACTIONS(6920), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6920), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6920), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6920), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6920), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6920), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6920), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6920), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6920), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6920), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6920), + [anon_sym_NS_AVAILABLE] = ACTIONS(6920), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6920), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6920), + [anon_sym_API_AVAILABLE] = ACTIONS(6920), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6920), + [anon_sym_API_DEPRECATED] = ACTIONS(6920), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6920), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6920), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6920), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6920), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6920), + [anon_sym___deprecated_msg] = ACTIONS(6920), + [anon_sym___deprecated_enum_msg] = ACTIONS(6920), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6920), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6920), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6920), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6920), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6920), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6920), + [anon_sym_BOOL] = ACTIONS(6920), + [anon_sym_IMP] = ACTIONS(6920), + [anon_sym_SEL] = ACTIONS(6920), + [anon_sym_Class] = ACTIONS(6920), + [anon_sym_id] = ACTIONS(6920), + }, + [2812] = { + [aux_sym_c_method_parameter_repeat1] = STATE(2804), + [sym_identifier] = ACTIONS(6742), + [anon_sym_COMMA] = ACTIONS(6744), + [anon_sym_SEMI] = ACTIONS(6744), + [anon_sym___extension__] = ACTIONS(6742), + [anon_sym_extern] = ACTIONS(6742), + [anon_sym___attribute__] = ACTIONS(6742), + [anon_sym___attribute] = ACTIONS(6742), + [anon_sym_noreturn] = ACTIONS(6742), + [anon_sym_LBRACK] = ACTIONS(6744), + [anon_sym___declspec] = ACTIONS(6742), + [anon_sym_LBRACE] = ACTIONS(6744), + [anon_sym_signed] = ACTIONS(6742), + [anon_sym_unsigned] = ACTIONS(6742), + [anon_sym_long] = ACTIONS(6742), + [anon_sym_short] = ACTIONS(6742), + [anon_sym_static] = ACTIONS(6742), + [anon_sym_ATautoreleasepool] = ACTIONS(6744), + [anon_sym_auto] = ACTIONS(6742), + [anon_sym_register] = ACTIONS(6742), + [anon_sym_inline] = ACTIONS(6742), + [anon_sym___inline] = ACTIONS(6742), + [anon_sym___inline__] = ACTIONS(6742), + [anon_sym___forceinline] = ACTIONS(6742), + [anon_sym_thread_local] = ACTIONS(6742), + [anon_sym___thread] = ACTIONS(6742), + [anon_sym_CG_EXTERN] = ACTIONS(6742), + [anon_sym_CG_INLINE] = ACTIONS(6742), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6742), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6742), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6742), + [anon_sym_IBOutlet] = ACTIONS(6742), + [anon_sym_IBInspectable] = ACTIONS(6742), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6742), + [anon_sym_NS_INLINE] = ACTIONS(6742), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6742), + [anon_sym_OBJC_EXPORT] = ACTIONS(6742), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6742), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6742), + [anon_sym_const] = ACTIONS(6742), + [anon_sym_constexpr] = ACTIONS(6742), + [anon_sym_volatile] = ACTIONS(6742), + [anon_sym_restrict] = ACTIONS(6742), + [anon_sym___restrict__] = ACTIONS(6742), + [anon_sym__Atomic] = ACTIONS(6742), + [anon_sym__Noreturn] = ACTIONS(6742), + [anon_sym__Nonnull] = ACTIONS(6742), + [anon_sym_nullable] = ACTIONS(6742), + [anon_sym__Complex] = ACTIONS(6742), + [anon_sym__Nullable] = ACTIONS(6742), + [anon_sym__Nullable_result] = ACTIONS(6742), + [anon_sym__Null_unspecified] = ACTIONS(6742), + [anon_sym___autoreleasing] = ACTIONS(6742), + [anon_sym___block] = ACTIONS(6742), + [anon_sym___bridge] = ACTIONS(6742), + [anon_sym___bridge_retained] = ACTIONS(6742), + [anon_sym___bridge_transfer] = ACTIONS(6742), + [anon_sym___complex] = ACTIONS(6742), + [anon_sym___const] = ACTIONS(6742), + [anon_sym___imag] = ACTIONS(6742), + [anon_sym___kindof] = ACTIONS(6742), + [anon_sym___nonnull] = ACTIONS(6742), + [anon_sym___nullable] = ACTIONS(6742), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6742), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6742), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6742), + [anon_sym___real] = ACTIONS(6742), + [anon_sym___strong] = ACTIONS(6742), + [anon_sym___unsafe_unretained] = ACTIONS(6742), + [anon_sym___unused] = ACTIONS(6742), + [anon_sym___weak] = ACTIONS(6742), + [anon_sym_alignas] = ACTIONS(6742), + [anon_sym__Alignas] = ACTIONS(6742), + [sym_primitive_type] = ACTIONS(6742), + [anon_sym_enum] = ACTIONS(6742), + [anon_sym_struct] = ACTIONS(6742), + [anon_sym_union] = ACTIONS(6742), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6742), + [anon_sym___typeof] = ACTIONS(6742), + [anon_sym_typeof] = ACTIONS(6742), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6742), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6742), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6742), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6742), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6742), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6742), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6742), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6742), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6742), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6742), + [anon_sym_NS_AVAILABLE] = ACTIONS(6742), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6742), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6742), + [anon_sym_API_AVAILABLE] = ACTIONS(6742), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6742), + [anon_sym_API_DEPRECATED] = ACTIONS(6742), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6742), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6742), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6742), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6742), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6742), + [anon_sym___deprecated_msg] = ACTIONS(6742), + [anon_sym___deprecated_enum_msg] = ACTIONS(6742), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6742), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6742), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6742), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6742), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6742), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6742), + [anon_sym_BOOL] = ACTIONS(6742), + [anon_sym_IMP] = ACTIONS(6742), + [anon_sym_SEL] = ACTIONS(6742), + [anon_sym_Class] = ACTIONS(6742), + [anon_sym_id] = ACTIONS(6742), + }, + [2813] = { + [sym__declaration_modifiers] = STATE(6792), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(6792), + [sym_ms_declspec_modifier] = STATE(6792), + [sym_compound_statement] = STATE(851), + [sym_storage_class_specifier] = STATE(6792), + [sym_type_qualifier] = STATE(6792), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3030), + [sym__old_style_parameter_list] = STATE(2887), + [sym_gnu_asm_expression] = STATE(3207), + [sym_availability_attribute_specifier] = STATE(6792), + [aux_sym_declaration_repeat1] = STATE(3208), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6906), + [anon_sym_SEMI] = ACTIONS(6924), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2814] = { + [sym__declaration_modifiers] = STATE(6653), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(6653), + [sym_ms_declspec_modifier] = STATE(6653), + [sym_compound_statement] = STATE(460), + [sym_storage_class_specifier] = STATE(6653), + [sym_type_qualifier] = STATE(6653), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3030), + [sym__old_style_parameter_list] = STATE(2887), + [sym_gnu_asm_expression] = STATE(3144), + [sym_availability_attribute_specifier] = STATE(6653), + [aux_sym_declaration_repeat1] = STATE(3145), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6906), + [anon_sym_SEMI] = ACTIONS(6926), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2815] = { + [sym__declaration_modifiers] = STATE(6473), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(6473), + [sym_ms_declspec_modifier] = STATE(6473), + [sym_compound_statement] = STATE(1059), + [sym_storage_class_specifier] = STATE(6473), + [sym_type_qualifier] = STATE(6473), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3030), + [sym__old_style_parameter_list] = STATE(2887), + [sym_gnu_asm_expression] = STATE(3115), + [sym_availability_attribute_specifier] = STATE(6473), + [aux_sym_declaration_repeat1] = STATE(3116), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6906), + [anon_sym_SEMI] = ACTIONS(6928), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2816] = { + [sym_identifier] = ACTIONS(6781), + [anon_sym_COMMA] = ACTIONS(6779), + [anon_sym_SEMI] = ACTIONS(6779), + [anon_sym___extension__] = ACTIONS(6781), + [anon_sym_extern] = ACTIONS(6781), + [anon_sym___attribute__] = ACTIONS(6781), + [anon_sym___attribute] = ACTIONS(6781), + [anon_sym_noreturn] = ACTIONS(6781), + [anon_sym_LBRACK] = ACTIONS(6779), + [anon_sym___declspec] = ACTIONS(6781), + [anon_sym_LBRACE] = ACTIONS(6779), + [anon_sym_signed] = ACTIONS(6781), + [anon_sym_unsigned] = ACTIONS(6781), + [anon_sym_long] = ACTIONS(6781), + [anon_sym_short] = ACTIONS(6781), + [anon_sym_static] = ACTIONS(6781), + [anon_sym_ATautoreleasepool] = ACTIONS(6779), + [anon_sym_auto] = ACTIONS(6781), + [anon_sym_register] = ACTIONS(6781), + [anon_sym_inline] = ACTIONS(6781), + [anon_sym___inline] = ACTIONS(6781), + [anon_sym___inline__] = ACTIONS(6781), + [anon_sym___forceinline] = ACTIONS(6781), + [anon_sym_thread_local] = ACTIONS(6781), + [anon_sym___thread] = ACTIONS(6781), + [anon_sym_CG_EXTERN] = ACTIONS(6781), + [anon_sym_CG_INLINE] = ACTIONS(6781), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6781), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6781), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6781), + [anon_sym_IBOutlet] = ACTIONS(6781), + [anon_sym_IBInspectable] = ACTIONS(6781), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6781), + [anon_sym_NS_INLINE] = ACTIONS(6781), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6781), + [anon_sym_OBJC_EXPORT] = ACTIONS(6781), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6781), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6781), + [anon_sym_const] = ACTIONS(6781), + [anon_sym_constexpr] = ACTIONS(6781), + [anon_sym_volatile] = ACTIONS(6781), + [anon_sym_restrict] = ACTIONS(6781), + [anon_sym___restrict__] = ACTIONS(6781), + [anon_sym__Atomic] = ACTIONS(6781), + [anon_sym__Noreturn] = ACTIONS(6781), + [anon_sym__Nonnull] = ACTIONS(6781), + [anon_sym_nullable] = ACTIONS(6781), + [anon_sym__Complex] = ACTIONS(6781), + [anon_sym__Nullable] = ACTIONS(6781), + [anon_sym__Nullable_result] = ACTIONS(6781), + [anon_sym__Null_unspecified] = ACTIONS(6781), + [anon_sym___autoreleasing] = ACTIONS(6781), + [anon_sym___block] = ACTIONS(6781), + [anon_sym___bridge] = ACTIONS(6781), + [anon_sym___bridge_retained] = ACTIONS(6781), + [anon_sym___bridge_transfer] = ACTIONS(6781), + [anon_sym___complex] = ACTIONS(6781), + [anon_sym___const] = ACTIONS(6781), + [anon_sym___imag] = ACTIONS(6781), + [anon_sym___kindof] = ACTIONS(6781), + [anon_sym___nonnull] = ACTIONS(6781), + [anon_sym___nullable] = ACTIONS(6781), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6781), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6781), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6781), + [anon_sym___real] = ACTIONS(6781), + [anon_sym___strong] = ACTIONS(6781), + [anon_sym___unsafe_unretained] = ACTIONS(6781), + [anon_sym___unused] = ACTIONS(6781), + [anon_sym___weak] = ACTIONS(6781), + [anon_sym_alignas] = ACTIONS(6781), + [anon_sym__Alignas] = ACTIONS(6781), + [sym_primitive_type] = ACTIONS(6781), + [anon_sym_enum] = ACTIONS(6781), + [anon_sym_COLON] = ACTIONS(6779), + [anon_sym_struct] = ACTIONS(6781), + [anon_sym_union] = ACTIONS(6781), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6781), + [anon_sym___typeof] = ACTIONS(6781), + [anon_sym_typeof] = ACTIONS(6781), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6781), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6781), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6781), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6781), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6781), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6781), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6781), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6781), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6781), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6781), + [anon_sym_NS_AVAILABLE] = ACTIONS(6781), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6781), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6781), + [anon_sym_API_AVAILABLE] = ACTIONS(6781), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6781), + [anon_sym_API_DEPRECATED] = ACTIONS(6781), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6781), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6781), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6781), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6781), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6781), + [anon_sym___deprecated_msg] = ACTIONS(6781), + [anon_sym___deprecated_enum_msg] = ACTIONS(6781), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6781), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6781), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6781), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6781), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6781), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6781), + [anon_sym_BOOL] = ACTIONS(6781), + [anon_sym_IMP] = ACTIONS(6781), + [anon_sym_SEL] = ACTIONS(6781), + [anon_sym_Class] = ACTIONS(6781), + [anon_sym_id] = ACTIONS(6781), + }, + [2817] = { + [sym__declaration_modifiers] = STATE(2807), + [sym_attribute_specifier] = STATE(2807), + [sym_attribute_declaration] = STATE(2807), + [sym_ms_declspec_modifier] = STATE(2807), + [sym_ms_based_modifier] = STATE(6258), + [sym__field_declarator] = STATE(5029), + [sym_parenthesized_field_declarator] = STATE(4955), + [sym_attributed_field_declarator] = STATE(4955), + [sym_pointer_field_declarator] = STATE(4955), + [sym_function_field_declarator] = STATE(4955), + [sym_array_field_declarator] = STATE(4955), + [sym_storage_class_specifier] = STATE(2807), + [sym_type_qualifier] = STATE(2807), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2807), + [sym_block_pointer_field_declarator] = STATE(4955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2807), + [sym_identifier] = ACTIONS(6493), + [anon_sym_LPAREN2] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6525), + [anon_sym_CARET] = ACTIONS(6527), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2818] = { + [sym_identifier] = ACTIONS(6930), + [anon_sym_COMMA] = ACTIONS(6932), + [anon_sym_SEMI] = ACTIONS(6932), + [anon_sym___extension__] = ACTIONS(6930), + [anon_sym_extern] = ACTIONS(6930), + [anon_sym___attribute__] = ACTIONS(6930), + [anon_sym___attribute] = ACTIONS(6930), + [anon_sym_noreturn] = ACTIONS(6930), + [anon_sym_LBRACK] = ACTIONS(6932), + [anon_sym___declspec] = ACTIONS(6930), + [anon_sym_LBRACE] = ACTIONS(6932), + [anon_sym_signed] = ACTIONS(6930), + [anon_sym_unsigned] = ACTIONS(6930), + [anon_sym_long] = ACTIONS(6930), + [anon_sym_short] = ACTIONS(6930), + [anon_sym_static] = ACTIONS(6930), + [anon_sym_ATautoreleasepool] = ACTIONS(6932), + [anon_sym_auto] = ACTIONS(6930), + [anon_sym_register] = ACTIONS(6930), + [anon_sym_inline] = ACTIONS(6930), + [anon_sym___inline] = ACTIONS(6930), + [anon_sym___inline__] = ACTIONS(6930), + [anon_sym___forceinline] = ACTIONS(6930), + [anon_sym_thread_local] = ACTIONS(6930), + [anon_sym___thread] = ACTIONS(6930), + [anon_sym_CG_EXTERN] = ACTIONS(6930), + [anon_sym_CG_INLINE] = ACTIONS(6930), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6930), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6930), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6930), + [anon_sym_IBOutlet] = ACTIONS(6930), + [anon_sym_IBInspectable] = ACTIONS(6930), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6930), + [anon_sym_NS_INLINE] = ACTIONS(6930), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6930), + [anon_sym_OBJC_EXPORT] = ACTIONS(6930), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6930), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6930), + [anon_sym_const] = ACTIONS(6930), + [anon_sym_constexpr] = ACTIONS(6930), + [anon_sym_volatile] = ACTIONS(6930), + [anon_sym_restrict] = ACTIONS(6930), + [anon_sym___restrict__] = ACTIONS(6930), + [anon_sym__Atomic] = ACTIONS(6930), + [anon_sym__Noreturn] = ACTIONS(6930), + [anon_sym__Nonnull] = ACTIONS(6930), + [anon_sym_nullable] = ACTIONS(6930), + [anon_sym__Complex] = ACTIONS(6930), + [anon_sym__Nullable] = ACTIONS(6930), + [anon_sym__Nullable_result] = ACTIONS(6930), + [anon_sym__Null_unspecified] = ACTIONS(6930), + [anon_sym___autoreleasing] = ACTIONS(6930), + [anon_sym___block] = ACTIONS(6930), + [anon_sym___bridge] = ACTIONS(6930), + [anon_sym___bridge_retained] = ACTIONS(6930), + [anon_sym___bridge_transfer] = ACTIONS(6930), + [anon_sym___complex] = ACTIONS(6930), + [anon_sym___const] = ACTIONS(6930), + [anon_sym___imag] = ACTIONS(6930), + [anon_sym___kindof] = ACTIONS(6930), + [anon_sym___nonnull] = ACTIONS(6930), + [anon_sym___nullable] = ACTIONS(6930), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6930), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6930), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6930), + [anon_sym___real] = ACTIONS(6930), + [anon_sym___strong] = ACTIONS(6930), + [anon_sym___unsafe_unretained] = ACTIONS(6930), + [anon_sym___unused] = ACTIONS(6930), + [anon_sym___weak] = ACTIONS(6930), + [anon_sym_alignas] = ACTIONS(6930), + [anon_sym__Alignas] = ACTIONS(6930), + [sym_primitive_type] = ACTIONS(6930), + [anon_sym_enum] = ACTIONS(6930), + [anon_sym_COLON] = ACTIONS(6932), + [anon_sym_struct] = ACTIONS(6930), + [anon_sym_union] = ACTIONS(6930), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6930), + [anon_sym___typeof] = ACTIONS(6930), + [anon_sym_typeof] = ACTIONS(6930), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6930), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6930), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6930), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6930), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6930), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6930), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6930), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6930), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6930), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6930), + [anon_sym_NS_AVAILABLE] = ACTIONS(6930), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6930), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6930), + [anon_sym_API_AVAILABLE] = ACTIONS(6930), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6930), + [anon_sym_API_DEPRECATED] = ACTIONS(6930), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6930), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6930), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6930), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6930), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6930), + [anon_sym___deprecated_msg] = ACTIONS(6930), + [anon_sym___deprecated_enum_msg] = ACTIONS(6930), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6930), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6930), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6930), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6930), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6930), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6930), + [anon_sym_BOOL] = ACTIONS(6930), + [anon_sym_IMP] = ACTIONS(6930), + [anon_sym_SEL] = ACTIONS(6930), + [anon_sym_Class] = ACTIONS(6930), + [anon_sym_id] = ACTIONS(6930), + }, + [2819] = { + [aux_sym_method_definition_repeat2] = STATE(2819), + [sym_identifier] = ACTIONS(6934), + [anon_sym_COMMA] = ACTIONS(6936), + [anon_sym_SEMI] = ACTIONS(6939), + [anon_sym___extension__] = ACTIONS(6934), + [anon_sym_extern] = ACTIONS(6934), + [anon_sym___attribute__] = ACTIONS(6934), + [anon_sym___attribute] = ACTIONS(6934), + [anon_sym_noreturn] = ACTIONS(6934), + [anon_sym_LBRACK] = ACTIONS(6939), + [anon_sym___declspec] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6939), + [anon_sym_signed] = ACTIONS(6934), + [anon_sym_unsigned] = ACTIONS(6934), + [anon_sym_long] = ACTIONS(6934), + [anon_sym_short] = ACTIONS(6934), + [anon_sym_static] = ACTIONS(6934), + [anon_sym_ATautoreleasepool] = ACTIONS(6939), + [anon_sym_auto] = ACTIONS(6934), + [anon_sym_register] = ACTIONS(6934), + [anon_sym_inline] = ACTIONS(6934), + [anon_sym___inline] = ACTIONS(6934), + [anon_sym___inline__] = ACTIONS(6934), + [anon_sym___forceinline] = ACTIONS(6934), + [anon_sym_thread_local] = ACTIONS(6934), + [anon_sym___thread] = ACTIONS(6934), + [anon_sym_CG_EXTERN] = ACTIONS(6934), + [anon_sym_CG_INLINE] = ACTIONS(6934), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6934), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6934), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6934), + [anon_sym_IBOutlet] = ACTIONS(6934), + [anon_sym_IBInspectable] = ACTIONS(6934), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6934), + [anon_sym_NS_INLINE] = ACTIONS(6934), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6934), + [anon_sym_OBJC_EXPORT] = ACTIONS(6934), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6934), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6934), + [anon_sym_const] = ACTIONS(6934), + [anon_sym_constexpr] = ACTIONS(6934), + [anon_sym_volatile] = ACTIONS(6934), + [anon_sym_restrict] = ACTIONS(6934), + [anon_sym___restrict__] = ACTIONS(6934), + [anon_sym__Atomic] = ACTIONS(6934), + [anon_sym__Noreturn] = ACTIONS(6934), + [anon_sym__Nonnull] = ACTIONS(6934), + [anon_sym_nullable] = ACTIONS(6934), + [anon_sym__Complex] = ACTIONS(6934), + [anon_sym__Nullable] = ACTIONS(6934), + [anon_sym__Nullable_result] = ACTIONS(6934), + [anon_sym__Null_unspecified] = ACTIONS(6934), + [anon_sym___autoreleasing] = ACTIONS(6934), + [anon_sym___block] = ACTIONS(6934), + [anon_sym___bridge] = ACTIONS(6934), + [anon_sym___bridge_retained] = ACTIONS(6934), + [anon_sym___bridge_transfer] = ACTIONS(6934), + [anon_sym___complex] = ACTIONS(6934), + [anon_sym___const] = ACTIONS(6934), + [anon_sym___imag] = ACTIONS(6934), + [anon_sym___kindof] = ACTIONS(6934), + [anon_sym___nonnull] = ACTIONS(6934), + [anon_sym___nullable] = ACTIONS(6934), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6934), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6934), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6934), + [anon_sym___real] = ACTIONS(6934), + [anon_sym___strong] = ACTIONS(6934), + [anon_sym___unsafe_unretained] = ACTIONS(6934), + [anon_sym___unused] = ACTIONS(6934), + [anon_sym___weak] = ACTIONS(6934), + [anon_sym_alignas] = ACTIONS(6934), + [anon_sym__Alignas] = ACTIONS(6934), + [sym_primitive_type] = ACTIONS(6934), + [anon_sym_enum] = ACTIONS(6934), + [anon_sym_struct] = ACTIONS(6934), + [anon_sym_union] = ACTIONS(6934), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6934), + [anon_sym___typeof] = ACTIONS(6934), + [anon_sym_typeof] = ACTIONS(6934), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6934), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6934), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6934), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6934), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6934), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6934), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6934), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6934), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6934), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6934), + [anon_sym_NS_AVAILABLE] = ACTIONS(6934), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6934), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6934), + [anon_sym_API_AVAILABLE] = ACTIONS(6934), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6934), + [anon_sym_API_DEPRECATED] = ACTIONS(6934), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6934), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6934), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6934), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6934), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6934), + [anon_sym___deprecated_msg] = ACTIONS(6934), + [anon_sym___deprecated_enum_msg] = ACTIONS(6934), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6934), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6934), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6934), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6934), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6934), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6934), + [anon_sym_BOOL] = ACTIONS(6934), + [anon_sym_IMP] = ACTIONS(6934), + [anon_sym_SEL] = ACTIONS(6934), + [anon_sym_Class] = ACTIONS(6934), + [anon_sym_id] = ACTIONS(6934), + }, + [2820] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6258), + [sym__field_declarator] = STATE(5077), + [sym_parenthesized_field_declarator] = STATE(4955), + [sym_attributed_field_declarator] = STATE(4955), + [sym_pointer_field_declarator] = STATE(4955), + [sym_function_field_declarator] = STATE(4955), + [sym_array_field_declarator] = STATE(4955), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_field_declarator] = STATE(4955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(6493), + [anon_sym_LPAREN2] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6525), + [anon_sym_CARET] = ACTIONS(6527), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2821] = { + [sym_identifier] = ACTIONS(6941), + [anon_sym_COMMA] = ACTIONS(6943), + [anon_sym_SEMI] = ACTIONS(6943), + [anon_sym___extension__] = ACTIONS(6941), + [anon_sym_extern] = ACTIONS(6941), + [anon_sym___attribute__] = ACTIONS(6941), + [anon_sym___attribute] = ACTIONS(6941), + [anon_sym_noreturn] = ACTIONS(6941), + [anon_sym_LBRACK] = ACTIONS(6943), + [anon_sym___declspec] = ACTIONS(6941), + [anon_sym_LBRACE] = ACTIONS(6943), + [anon_sym_signed] = ACTIONS(6941), + [anon_sym_unsigned] = ACTIONS(6941), + [anon_sym_long] = ACTIONS(6941), + [anon_sym_short] = ACTIONS(6941), + [anon_sym_static] = ACTIONS(6941), + [anon_sym_ATautoreleasepool] = ACTIONS(6943), + [anon_sym_auto] = ACTIONS(6941), + [anon_sym_register] = ACTIONS(6941), + [anon_sym_inline] = ACTIONS(6941), + [anon_sym___inline] = ACTIONS(6941), + [anon_sym___inline__] = ACTIONS(6941), + [anon_sym___forceinline] = ACTIONS(6941), + [anon_sym_thread_local] = ACTIONS(6941), + [anon_sym___thread] = ACTIONS(6941), + [anon_sym_CG_EXTERN] = ACTIONS(6941), + [anon_sym_CG_INLINE] = ACTIONS(6941), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6941), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6941), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6941), + [anon_sym_IBOutlet] = ACTIONS(6941), + [anon_sym_IBInspectable] = ACTIONS(6941), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6941), + [anon_sym_NS_INLINE] = ACTIONS(6941), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6941), + [anon_sym_OBJC_EXPORT] = ACTIONS(6941), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6941), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6941), + [anon_sym_const] = ACTIONS(6941), + [anon_sym_constexpr] = ACTIONS(6941), + [anon_sym_volatile] = ACTIONS(6941), + [anon_sym_restrict] = ACTIONS(6941), + [anon_sym___restrict__] = ACTIONS(6941), + [anon_sym__Atomic] = ACTIONS(6941), + [anon_sym__Noreturn] = ACTIONS(6941), + [anon_sym__Nonnull] = ACTIONS(6941), + [anon_sym_nullable] = ACTIONS(6941), + [anon_sym__Complex] = ACTIONS(6941), + [anon_sym__Nullable] = ACTIONS(6941), + [anon_sym__Nullable_result] = ACTIONS(6941), + [anon_sym__Null_unspecified] = ACTIONS(6941), + [anon_sym___autoreleasing] = ACTIONS(6941), + [anon_sym___block] = ACTIONS(6941), + [anon_sym___bridge] = ACTIONS(6941), + [anon_sym___bridge_retained] = ACTIONS(6941), + [anon_sym___bridge_transfer] = ACTIONS(6941), + [anon_sym___complex] = ACTIONS(6941), + [anon_sym___const] = ACTIONS(6941), + [anon_sym___imag] = ACTIONS(6941), + [anon_sym___kindof] = ACTIONS(6941), + [anon_sym___nonnull] = ACTIONS(6941), + [anon_sym___nullable] = ACTIONS(6941), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6941), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6941), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6941), + [anon_sym___real] = ACTIONS(6941), + [anon_sym___strong] = ACTIONS(6941), + [anon_sym___unsafe_unretained] = ACTIONS(6941), + [anon_sym___unused] = ACTIONS(6941), + [anon_sym___weak] = ACTIONS(6941), + [anon_sym_alignas] = ACTIONS(6941), + [anon_sym__Alignas] = ACTIONS(6941), + [sym_primitive_type] = ACTIONS(6941), + [anon_sym_enum] = ACTIONS(6941), + [anon_sym_COLON] = ACTIONS(6943), + [anon_sym_struct] = ACTIONS(6941), + [anon_sym_union] = ACTIONS(6941), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6941), + [anon_sym___typeof] = ACTIONS(6941), + [anon_sym_typeof] = ACTIONS(6941), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6941), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6941), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6941), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6941), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6941), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6941), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6941), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6941), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6941), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6941), + [anon_sym_NS_AVAILABLE] = ACTIONS(6941), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6941), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6941), + [anon_sym_API_AVAILABLE] = ACTIONS(6941), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6941), + [anon_sym_API_DEPRECATED] = ACTIONS(6941), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6941), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6941), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6941), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6941), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6941), + [anon_sym___deprecated_msg] = ACTIONS(6941), + [anon_sym___deprecated_enum_msg] = ACTIONS(6941), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6941), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6941), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6941), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6941), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6941), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6941), + [anon_sym_BOOL] = ACTIONS(6941), + [anon_sym_IMP] = ACTIONS(6941), + [anon_sym_SEL] = ACTIONS(6941), + [anon_sym_Class] = ACTIONS(6941), + [anon_sym_id] = ACTIONS(6941), + }, + [2822] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6162), + [sym__field_declarator] = STATE(4880), + [sym_parenthesized_field_declarator] = STATE(4955), + [sym_attributed_field_declarator] = STATE(4955), + [sym_pointer_field_declarator] = STATE(4955), + [sym_function_field_declarator] = STATE(4955), + [sym_array_field_declarator] = STATE(4955), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_field_declarator] = STATE(4955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(6493), + [anon_sym_LPAREN2] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6497), + [anon_sym_CARET] = ACTIONS(6499), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2823] = { + [sym_identifier] = ACTIONS(6945), + [anon_sym_COMMA] = ACTIONS(6947), + [anon_sym_SEMI] = ACTIONS(6947), + [anon_sym___extension__] = ACTIONS(6945), + [anon_sym_extern] = ACTIONS(6945), + [anon_sym___attribute__] = ACTIONS(6945), + [anon_sym___attribute] = ACTIONS(6945), + [anon_sym_noreturn] = ACTIONS(6945), + [anon_sym_LBRACK] = ACTIONS(6947), + [anon_sym___declspec] = ACTIONS(6945), + [anon_sym_LBRACE] = ACTIONS(6947), + [anon_sym_signed] = ACTIONS(6945), + [anon_sym_unsigned] = ACTIONS(6945), + [anon_sym_long] = ACTIONS(6945), + [anon_sym_short] = ACTIONS(6945), + [anon_sym_static] = ACTIONS(6945), + [anon_sym_ATautoreleasepool] = ACTIONS(6947), + [anon_sym_auto] = ACTIONS(6945), + [anon_sym_register] = ACTIONS(6945), + [anon_sym_inline] = ACTIONS(6945), + [anon_sym___inline] = ACTIONS(6945), + [anon_sym___inline__] = ACTIONS(6945), + [anon_sym___forceinline] = ACTIONS(6945), + [anon_sym_thread_local] = ACTIONS(6945), + [anon_sym___thread] = ACTIONS(6945), + [anon_sym_CG_EXTERN] = ACTIONS(6945), + [anon_sym_CG_INLINE] = ACTIONS(6945), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6945), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6945), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6945), + [anon_sym_IBOutlet] = ACTIONS(6945), + [anon_sym_IBInspectable] = ACTIONS(6945), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6945), + [anon_sym_NS_INLINE] = ACTIONS(6945), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6945), + [anon_sym_OBJC_EXPORT] = ACTIONS(6945), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6945), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6945), + [anon_sym_const] = ACTIONS(6945), + [anon_sym_constexpr] = ACTIONS(6945), + [anon_sym_volatile] = ACTIONS(6945), + [anon_sym_restrict] = ACTIONS(6945), + [anon_sym___restrict__] = ACTIONS(6945), + [anon_sym__Atomic] = ACTIONS(6945), + [anon_sym__Noreturn] = ACTIONS(6945), + [anon_sym__Nonnull] = ACTIONS(6945), + [anon_sym_nullable] = ACTIONS(6945), + [anon_sym__Complex] = ACTIONS(6945), + [anon_sym__Nullable] = ACTIONS(6945), + [anon_sym__Nullable_result] = ACTIONS(6945), + [anon_sym__Null_unspecified] = ACTIONS(6945), + [anon_sym___autoreleasing] = ACTIONS(6945), + [anon_sym___block] = ACTIONS(6945), + [anon_sym___bridge] = ACTIONS(6945), + [anon_sym___bridge_retained] = ACTIONS(6945), + [anon_sym___bridge_transfer] = ACTIONS(6945), + [anon_sym___complex] = ACTIONS(6945), + [anon_sym___const] = ACTIONS(6945), + [anon_sym___imag] = ACTIONS(6945), + [anon_sym___kindof] = ACTIONS(6945), + [anon_sym___nonnull] = ACTIONS(6945), + [anon_sym___nullable] = ACTIONS(6945), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6945), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6945), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6945), + [anon_sym___real] = ACTIONS(6945), + [anon_sym___strong] = ACTIONS(6945), + [anon_sym___unsafe_unretained] = ACTIONS(6945), + [anon_sym___unused] = ACTIONS(6945), + [anon_sym___weak] = ACTIONS(6945), + [anon_sym_alignas] = ACTIONS(6945), + [anon_sym__Alignas] = ACTIONS(6945), + [sym_primitive_type] = ACTIONS(6945), + [anon_sym_enum] = ACTIONS(6945), + [anon_sym_COLON] = ACTIONS(6947), + [anon_sym_struct] = ACTIONS(6945), + [anon_sym_union] = ACTIONS(6945), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6945), + [anon_sym___typeof] = ACTIONS(6945), + [anon_sym_typeof] = ACTIONS(6945), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6945), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6945), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6945), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6945), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6945), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6945), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6945), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6945), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6945), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6945), + [anon_sym_NS_AVAILABLE] = ACTIONS(6945), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6945), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6945), + [anon_sym_API_AVAILABLE] = ACTIONS(6945), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6945), + [anon_sym_API_DEPRECATED] = ACTIONS(6945), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6945), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6945), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6945), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6945), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6945), + [anon_sym___deprecated_msg] = ACTIONS(6945), + [anon_sym___deprecated_enum_msg] = ACTIONS(6945), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6945), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6945), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6945), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6945), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6945), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6945), + [anon_sym_BOOL] = ACTIONS(6945), + [anon_sym_IMP] = ACTIONS(6945), + [anon_sym_SEL] = ACTIONS(6945), + [anon_sym_Class] = ACTIONS(6945), + [anon_sym_id] = ACTIONS(6945), + }, + [2824] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6258), + [sym__field_declarator] = STATE(5080), + [sym_parenthesized_field_declarator] = STATE(4955), + [sym_attributed_field_declarator] = STATE(4955), + [sym_pointer_field_declarator] = STATE(4955), + [sym_function_field_declarator] = STATE(4955), + [sym_array_field_declarator] = STATE(4955), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_field_declarator] = STATE(4955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(6493), + [anon_sym_LPAREN2] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6525), + [anon_sym_CARET] = ACTIONS(6527), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2825] = { + [sym__declaration_modifiers] = STATE(5969), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(5969), + [sym_ms_declspec_modifier] = STATE(5969), + [sym_compound_statement] = STATE(675), + [sym_storage_class_specifier] = STATE(5969), + [sym_type_qualifier] = STATE(5969), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3030), + [sym__old_style_parameter_list] = STATE(2887), + [sym_gnu_asm_expression] = STATE(3151), + [sym_availability_attribute_specifier] = STATE(5969), + [aux_sym_declaration_repeat1] = STATE(3152), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6906), + [anon_sym_SEMI] = ACTIONS(6949), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_ATautoreleasepool] = ACTIONS(761), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2826] = { + [sym__declaration_modifiers] = STATE(6370), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(6370), + [sym_ms_declspec_modifier] = STATE(6370), + [sym_compound_statement] = STATE(278), + [sym_storage_class_specifier] = STATE(6370), + [sym_type_qualifier] = STATE(6370), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3030), + [sym_gnu_asm_expression] = STATE(3103), + [sym_availability_attribute_specifier] = STATE(6370), + [aux_sym_declaration_repeat1] = STATE(3104), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6908), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_ATautoreleasepool] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2827] = { + [sym_identifier] = ACTIONS(2995), + [anon_sym___extension__] = ACTIONS(2995), + [anon_sym_typedef] = ACTIONS(2930), + [anon_sym_extern] = ACTIONS(2995), + [anon_sym___attribute__] = ACTIONS(2995), + [anon_sym___attribute] = ACTIONS(2995), + [anon_sym_noreturn] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3000), + [anon_sym___declspec] = ACTIONS(2995), + [anon_sym_signed] = ACTIONS(2995), + [anon_sym_unsigned] = ACTIONS(2995), + [anon_sym_long] = ACTIONS(2995), + [anon_sym_short] = ACTIONS(2995), + [anon_sym_static] = ACTIONS(2995), + [anon_sym_auto] = ACTIONS(2995), + [anon_sym_register] = ACTIONS(2995), + [anon_sym_inline] = ACTIONS(2995), + [anon_sym___inline] = ACTIONS(2995), + [anon_sym___inline__] = ACTIONS(2995), + [anon_sym___forceinline] = ACTIONS(2995), + [anon_sym_thread_local] = ACTIONS(2995), + [anon_sym___thread] = ACTIONS(2995), + [anon_sym_CG_EXTERN] = ACTIONS(2995), + [anon_sym_CG_INLINE] = ACTIONS(2995), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2995), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2995), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2995), + [anon_sym_IBOutlet] = ACTIONS(2995), + [anon_sym_IBInspectable] = ACTIONS(2995), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2995), + [anon_sym_NS_INLINE] = ACTIONS(2995), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2995), + [anon_sym_OBJC_EXPORT] = ACTIONS(2995), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2995), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2995), + [anon_sym_const] = ACTIONS(2995), + [anon_sym_constexpr] = ACTIONS(2995), + [anon_sym_volatile] = ACTIONS(2995), + [anon_sym_restrict] = ACTIONS(2995), + [anon_sym___restrict__] = ACTIONS(2995), + [anon_sym__Atomic] = ACTIONS(2995), + [anon_sym__Noreturn] = ACTIONS(2995), + [anon_sym__Nonnull] = ACTIONS(2995), + [anon_sym_nullable] = ACTIONS(2995), + [anon_sym__Complex] = ACTIONS(2995), + [anon_sym__Nullable] = ACTIONS(2995), + [anon_sym__Nullable_result] = ACTIONS(2995), + [anon_sym__Null_unspecified] = ACTIONS(2995), + [anon_sym___autoreleasing] = ACTIONS(2995), + [anon_sym___block] = ACTIONS(2995), + [anon_sym___bridge] = ACTIONS(2995), + [anon_sym___bridge_retained] = ACTIONS(2995), + [anon_sym___bridge_transfer] = ACTIONS(2995), + [anon_sym___complex] = ACTIONS(2995), + [anon_sym___const] = ACTIONS(2995), + [anon_sym___imag] = ACTIONS(2995), + [anon_sym___kindof] = ACTIONS(2995), + [anon_sym___nonnull] = ACTIONS(2995), + [anon_sym___nullable] = ACTIONS(2995), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2995), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2995), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2995), + [anon_sym___real] = ACTIONS(2995), + [anon_sym___strong] = ACTIONS(2995), + [anon_sym___unsafe_unretained] = ACTIONS(2995), + [anon_sym___unused] = ACTIONS(2995), + [anon_sym___weak] = ACTIONS(2995), + [anon_sym_alignas] = ACTIONS(2995), + [anon_sym__Alignas] = ACTIONS(2995), + [sym_primitive_type] = ACTIONS(2995), + [anon_sym_enum] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2995), + [anon_sym_union] = ACTIONS(2995), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2995), + [anon_sym___typeof] = ACTIONS(2995), + [anon_sym_typeof] = ACTIONS(2995), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2995), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2995), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2995), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2995), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2995), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2995), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2995), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2995), + [anon_sym_NS_AVAILABLE] = ACTIONS(2995), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2995), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_API_AVAILABLE] = ACTIONS(2995), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_API_DEPRECATED] = ACTIONS(2995), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2995), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2995), + [anon_sym___deprecated_msg] = ACTIONS(2995), + [anon_sym___deprecated_enum_msg] = ACTIONS(2995), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2995), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2995), + [anon_sym_ATprotocol] = ACTIONS(3000), + [anon_sym_ATinterface] = ACTIONS(3000), + [anon_sym_ATimplementation] = ACTIONS(3000), + [anon_sym_BOOL] = ACTIONS(2995), + [anon_sym_IMP] = ACTIONS(2995), + [anon_sym_SEL] = ACTIONS(2995), + [anon_sym_Class] = ACTIONS(2995), + [anon_sym_id] = ACTIONS(2995), + }, + [2828] = { + [sym_identifier] = ACTIONS(4836), + [anon_sym_COMMA] = ACTIONS(4838), + [anon_sym_SEMI] = ACTIONS(4838), + [anon_sym___extension__] = ACTIONS(4836), + [anon_sym_extern] = ACTIONS(4836), + [anon_sym___attribute__] = ACTIONS(4836), + [anon_sym___attribute] = ACTIONS(4836), + [anon_sym_noreturn] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(4838), + [anon_sym___declspec] = ACTIONS(4836), + [anon_sym_LBRACE] = ACTIONS(4838), + [anon_sym_signed] = ACTIONS(4836), + [anon_sym_unsigned] = ACTIONS(4836), + [anon_sym_long] = ACTIONS(4836), + [anon_sym_short] = ACTIONS(4836), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_ATautoreleasepool] = ACTIONS(4838), + [anon_sym_auto] = ACTIONS(4836), + [anon_sym_register] = ACTIONS(4836), + [anon_sym_inline] = ACTIONS(4836), + [anon_sym___inline] = ACTIONS(4836), + [anon_sym___inline__] = ACTIONS(4836), + [anon_sym___forceinline] = ACTIONS(4836), + [anon_sym_thread_local] = ACTIONS(4836), + [anon_sym___thread] = ACTIONS(4836), + [anon_sym_CG_EXTERN] = ACTIONS(4836), + [anon_sym_CG_INLINE] = ACTIONS(4836), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4836), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4836), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4836), + [anon_sym_IBOutlet] = ACTIONS(4836), + [anon_sym_IBInspectable] = ACTIONS(4836), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4836), + [anon_sym_NS_INLINE] = ACTIONS(4836), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4836), + [anon_sym_OBJC_EXPORT] = ACTIONS(4836), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4836), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4836), + [anon_sym_const] = ACTIONS(4836), + [anon_sym_constexpr] = ACTIONS(4836), + [anon_sym_volatile] = ACTIONS(4836), + [anon_sym_restrict] = ACTIONS(4836), + [anon_sym___restrict__] = ACTIONS(4836), + [anon_sym__Atomic] = ACTIONS(4836), + [anon_sym__Noreturn] = ACTIONS(4836), + [anon_sym__Nonnull] = ACTIONS(4836), + [anon_sym_nullable] = ACTIONS(4836), + [anon_sym__Complex] = ACTIONS(4836), + [anon_sym__Nullable] = ACTIONS(4836), + [anon_sym__Nullable_result] = ACTIONS(4836), + [anon_sym__Null_unspecified] = ACTIONS(4836), + [anon_sym___autoreleasing] = ACTIONS(4836), + [anon_sym___block] = ACTIONS(4836), + [anon_sym___bridge] = ACTIONS(4836), + [anon_sym___bridge_retained] = ACTIONS(4836), + [anon_sym___bridge_transfer] = ACTIONS(4836), + [anon_sym___complex] = ACTIONS(4836), + [anon_sym___const] = ACTIONS(4836), + [anon_sym___imag] = ACTIONS(4836), + [anon_sym___kindof] = ACTIONS(4836), + [anon_sym___nonnull] = ACTIONS(4836), + [anon_sym___nullable] = ACTIONS(4836), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4836), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4836), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4836), + [anon_sym___real] = ACTIONS(4836), + [anon_sym___strong] = ACTIONS(4836), + [anon_sym___unsafe_unretained] = ACTIONS(4836), + [anon_sym___unused] = ACTIONS(4836), + [anon_sym___weak] = ACTIONS(4836), + [anon_sym_alignas] = ACTIONS(4836), + [anon_sym__Alignas] = ACTIONS(4836), + [sym_primitive_type] = ACTIONS(4836), + [anon_sym_enum] = ACTIONS(4836), + [anon_sym_struct] = ACTIONS(4836), + [anon_sym_union] = ACTIONS(4836), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4836), + [anon_sym___typeof] = ACTIONS(4836), + [anon_sym_typeof] = ACTIONS(4836), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4836), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4836), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4836), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4836), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4836), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4836), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4836), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4836), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4836), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4836), + [anon_sym_NS_AVAILABLE] = ACTIONS(4836), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4836), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4836), + [anon_sym_API_AVAILABLE] = ACTIONS(4836), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4836), + [anon_sym_API_DEPRECATED] = ACTIONS(4836), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4836), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4836), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4836), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4836), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4836), + [anon_sym___deprecated_msg] = ACTIONS(4836), + [anon_sym___deprecated_enum_msg] = ACTIONS(4836), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4836), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4836), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4836), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4836), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4836), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4836), + [anon_sym_BOOL] = ACTIONS(4836), + [anon_sym_IMP] = ACTIONS(4836), + [anon_sym_SEL] = ACTIONS(4836), + [anon_sym_Class] = ACTIONS(4836), + [anon_sym_id] = ACTIONS(4836), + }, + [2829] = { + [sym__declaration_modifiers] = STATE(2835), + [sym_attribute_specifier] = STATE(2835), + [sym_attribute_declaration] = STATE(2835), + [sym_ms_declspec_modifier] = STATE(2835), + [sym_ms_based_modifier] = STATE(6199), + [sym__declarator] = STATE(5214), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_storage_class_specifier] = STATE(2835), + [sym_type_qualifier] = STATE(2835), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2835), + [sym_block_pointer_declarator] = STATE(4011), + [aux_sym__declaration_specifiers_repeat1] = STATE(2835), + [sym_identifier] = ACTIONS(5281), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(4492), + [anon_sym_CARET] = ACTIONS(4494), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2830] = { + [sym__declaration_modifiers] = STATE(2841), + [sym_attribute_specifier] = STATE(2841), + [sym_attribute_declaration] = STATE(2841), + [sym_ms_declspec_modifier] = STATE(2841), + [sym__abstract_declarator] = STATE(4979), + [sym_abstract_parenthesized_declarator] = STATE(4894), + [sym_abstract_pointer_declarator] = STATE(4894), + [sym_abstract_function_declarator] = STATE(4894), + [sym_abstract_array_declarator] = STATE(4894), + [sym_storage_class_specifier] = STATE(2841), + [sym_type_qualifier] = STATE(2841), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(4315), + [sym_availability_attribute_specifier] = STATE(2841), + [sym_abstract_block_pointer_declarator] = STATE(4894), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [anon_sym_LPAREN2] = ACTIONS(4496), + [anon_sym_STAR] = ACTIONS(6953), + [anon_sym_CARET] = ACTIONS(6955), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6867), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_LBRACE] = ACTIONS(5283), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_ATautoreleasepool] = ACTIONS(5283), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2831] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6199), + [sym__declarator] = STATE(5037), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_declarator] = STATE(4011), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5281), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(4492), + [anon_sym_CARET] = ACTIONS(4494), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2832] = { + [sym__declaration_modifiers] = STATE(6792), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(6792), + [sym_ms_declspec_modifier] = STATE(6792), + [sym_compound_statement] = STATE(851), + [sym_storage_class_specifier] = STATE(6792), + [sym_type_qualifier] = STATE(6792), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3030), + [sym_gnu_asm_expression] = STATE(3207), + [sym_availability_attribute_specifier] = STATE(6792), + [aux_sym_declaration_repeat1] = STATE(3208), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6924), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_ATautoreleasepool] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2833] = { + [sym_identifier] = ACTIONS(6801), + [anon_sym_COMMA] = ACTIONS(6803), + [anon_sym_SEMI] = ACTIONS(6803), + [anon_sym___extension__] = ACTIONS(6801), + [anon_sym_extern] = ACTIONS(6801), + [anon_sym___attribute__] = ACTIONS(6801), + [anon_sym___attribute] = ACTIONS(6801), + [anon_sym_noreturn] = ACTIONS(6801), + [anon_sym_LBRACK] = ACTIONS(6803), + [anon_sym___declspec] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6803), + [anon_sym_signed] = ACTIONS(6801), + [anon_sym_unsigned] = ACTIONS(6801), + [anon_sym_long] = ACTIONS(6801), + [anon_sym_short] = ACTIONS(6801), + [anon_sym_static] = ACTIONS(6801), + [anon_sym_ATautoreleasepool] = ACTIONS(6803), + [anon_sym_auto] = ACTIONS(6801), + [anon_sym_register] = ACTIONS(6801), + [anon_sym_inline] = ACTIONS(6801), + [anon_sym___inline] = ACTIONS(6801), + [anon_sym___inline__] = ACTIONS(6801), + [anon_sym___forceinline] = ACTIONS(6801), + [anon_sym_thread_local] = ACTIONS(6801), + [anon_sym___thread] = ACTIONS(6801), + [anon_sym_CG_EXTERN] = ACTIONS(6801), + [anon_sym_CG_INLINE] = ACTIONS(6801), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6801), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6801), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6801), + [anon_sym_IBOutlet] = ACTIONS(6801), + [anon_sym_IBInspectable] = ACTIONS(6801), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6801), + [anon_sym_NS_INLINE] = ACTIONS(6801), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6801), + [anon_sym_OBJC_EXPORT] = ACTIONS(6801), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6801), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6801), + [anon_sym_const] = ACTIONS(6801), + [anon_sym_constexpr] = ACTIONS(6801), + [anon_sym_volatile] = ACTIONS(6801), + [anon_sym_restrict] = ACTIONS(6801), + [anon_sym___restrict__] = ACTIONS(6801), + [anon_sym__Atomic] = ACTIONS(6801), + [anon_sym__Noreturn] = ACTIONS(6801), + [anon_sym__Nonnull] = ACTIONS(6801), + [anon_sym_nullable] = ACTIONS(6801), + [anon_sym__Complex] = ACTIONS(6801), + [anon_sym__Nullable] = ACTIONS(6801), + [anon_sym__Nullable_result] = ACTIONS(6801), + [anon_sym__Null_unspecified] = ACTIONS(6801), + [anon_sym___autoreleasing] = ACTIONS(6801), + [anon_sym___block] = ACTIONS(6801), + [anon_sym___bridge] = ACTIONS(6801), + [anon_sym___bridge_retained] = ACTIONS(6801), + [anon_sym___bridge_transfer] = ACTIONS(6801), + [anon_sym___complex] = ACTIONS(6801), + [anon_sym___const] = ACTIONS(6801), + [anon_sym___imag] = ACTIONS(6801), + [anon_sym___kindof] = ACTIONS(6801), + [anon_sym___nonnull] = ACTIONS(6801), + [anon_sym___nullable] = ACTIONS(6801), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6801), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6801), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6801), + [anon_sym___real] = ACTIONS(6801), + [anon_sym___strong] = ACTIONS(6801), + [anon_sym___unsafe_unretained] = ACTIONS(6801), + [anon_sym___unused] = ACTIONS(6801), + [anon_sym___weak] = ACTIONS(6801), + [anon_sym_alignas] = ACTIONS(6801), + [anon_sym__Alignas] = ACTIONS(6801), + [sym_primitive_type] = ACTIONS(6801), + [anon_sym_enum] = ACTIONS(6801), + [anon_sym_struct] = ACTIONS(6801), + [anon_sym_union] = ACTIONS(6801), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6801), + [anon_sym___typeof] = ACTIONS(6801), + [anon_sym_typeof] = ACTIONS(6801), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6801), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6801), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6801), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6801), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6801), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6801), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6801), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6801), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6801), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6801), + [anon_sym_NS_AVAILABLE] = ACTIONS(6801), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6801), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6801), + [anon_sym_API_AVAILABLE] = ACTIONS(6801), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6801), + [anon_sym_API_DEPRECATED] = ACTIONS(6801), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6801), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6801), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6801), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6801), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6801), + [anon_sym___deprecated_msg] = ACTIONS(6801), + [anon_sym___deprecated_enum_msg] = ACTIONS(6801), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6801), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6801), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6801), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6801), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6801), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6801), + [anon_sym_BOOL] = ACTIONS(6801), + [anon_sym_IMP] = ACTIONS(6801), + [anon_sym_SEL] = ACTIONS(6801), + [anon_sym_Class] = ACTIONS(6801), + [anon_sym_id] = ACTIONS(6801), + }, + [2834] = { + [sym_identifier] = ACTIONS(2995), + [anon_sym___extension__] = ACTIONS(2995), + [anon_sym_typedef] = ACTIONS(2932), + [anon_sym_extern] = ACTIONS(2995), + [anon_sym___attribute__] = ACTIONS(2995), + [anon_sym___attribute] = ACTIONS(2995), + [anon_sym_noreturn] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3000), + [anon_sym___declspec] = ACTIONS(2995), + [anon_sym_signed] = ACTIONS(2995), + [anon_sym_unsigned] = ACTIONS(2995), + [anon_sym_long] = ACTIONS(2995), + [anon_sym_short] = ACTIONS(2995), + [anon_sym_static] = ACTIONS(2995), + [anon_sym_auto] = ACTIONS(2995), + [anon_sym_register] = ACTIONS(2995), + [anon_sym_inline] = ACTIONS(2995), + [anon_sym___inline] = ACTIONS(2995), + [anon_sym___inline__] = ACTIONS(2995), + [anon_sym___forceinline] = ACTIONS(2995), + [anon_sym_thread_local] = ACTIONS(2995), + [anon_sym___thread] = ACTIONS(2995), + [anon_sym_CG_EXTERN] = ACTIONS(2995), + [anon_sym_CG_INLINE] = ACTIONS(2995), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2995), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2995), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2995), + [anon_sym_IBOutlet] = ACTIONS(2995), + [anon_sym_IBInspectable] = ACTIONS(2995), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2995), + [anon_sym_NS_INLINE] = ACTIONS(2995), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2995), + [anon_sym_OBJC_EXPORT] = ACTIONS(2995), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2995), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2995), + [anon_sym_const] = ACTIONS(2995), + [anon_sym_constexpr] = ACTIONS(2995), + [anon_sym_volatile] = ACTIONS(2995), + [anon_sym_restrict] = ACTIONS(2995), + [anon_sym___restrict__] = ACTIONS(2995), + [anon_sym__Atomic] = ACTIONS(2995), + [anon_sym__Noreturn] = ACTIONS(2995), + [anon_sym__Nonnull] = ACTIONS(2995), + [anon_sym_nullable] = ACTIONS(2995), + [anon_sym__Complex] = ACTIONS(2995), + [anon_sym__Nullable] = ACTIONS(2995), + [anon_sym__Nullable_result] = ACTIONS(2995), + [anon_sym__Null_unspecified] = ACTIONS(2995), + [anon_sym___autoreleasing] = ACTIONS(2995), + [anon_sym___block] = ACTIONS(2995), + [anon_sym___bridge] = ACTIONS(2995), + [anon_sym___bridge_retained] = ACTIONS(2995), + [anon_sym___bridge_transfer] = ACTIONS(2995), + [anon_sym___complex] = ACTIONS(2995), + [anon_sym___const] = ACTIONS(2995), + [anon_sym___imag] = ACTIONS(2995), + [anon_sym___kindof] = ACTIONS(2995), + [anon_sym___nonnull] = ACTIONS(2995), + [anon_sym___nullable] = ACTIONS(2995), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2995), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2995), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2995), + [anon_sym___real] = ACTIONS(2995), + [anon_sym___strong] = ACTIONS(2995), + [anon_sym___unsafe_unretained] = ACTIONS(2995), + [anon_sym___unused] = ACTIONS(2995), + [anon_sym___weak] = ACTIONS(2995), + [anon_sym_alignas] = ACTIONS(2995), + [anon_sym__Alignas] = ACTIONS(2995), + [sym_primitive_type] = ACTIONS(2995), + [anon_sym_enum] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2995), + [anon_sym_union] = ACTIONS(2995), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2995), + [anon_sym___typeof] = ACTIONS(2995), + [anon_sym_typeof] = ACTIONS(2995), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2995), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2995), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2995), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2995), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2995), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2995), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2995), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2995), + [anon_sym_NS_AVAILABLE] = ACTIONS(2995), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2995), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_API_AVAILABLE] = ACTIONS(2995), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_API_DEPRECATED] = ACTIONS(2995), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2995), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2995), + [anon_sym___deprecated_msg] = ACTIONS(2995), + [anon_sym___deprecated_enum_msg] = ACTIONS(2995), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2995), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2995), + [anon_sym_ATprotocol] = ACTIONS(3000), + [anon_sym_ATinterface] = ACTIONS(3000), + [anon_sym_ATimplementation] = ACTIONS(3000), + [anon_sym_BOOL] = ACTIONS(2995), + [anon_sym_IMP] = ACTIONS(2995), + [anon_sym_SEL] = ACTIONS(2995), + [anon_sym_Class] = ACTIONS(2995), + [anon_sym_id] = ACTIONS(2995), + }, + [2835] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6199), + [sym__declarator] = STATE(5288), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_declarator] = STATE(4011), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5281), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(4492), + [anon_sym_CARET] = ACTIONS(4494), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2836] = { + [sym__declaration_modifiers] = STATE(6334), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(6334), + [sym_ms_declspec_modifier] = STATE(6334), + [sym_compound_statement] = STATE(2182), + [sym_storage_class_specifier] = STATE(6334), + [sym_type_qualifier] = STATE(6334), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3030), + [sym_gnu_asm_expression] = STATE(3139), + [sym_availability_attribute_specifier] = STATE(6334), + [aux_sym_declaration_repeat1] = STATE(3140), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6957), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_LBRACE] = ACTIONS(4657), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_ATautoreleasepool] = ACTIONS(4659), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2837] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3850), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_declarator] = STATE(4011), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5281), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2838] = { + [sym__declaration_modifiers] = STATE(2843), + [sym_attribute_specifier] = STATE(2843), + [sym_attribute_declaration] = STATE(2843), + [sym_ms_declspec_modifier] = STATE(2843), + [sym_ms_based_modifier] = STATE(6199), + [sym__declarator] = STATE(5261), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_storage_class_specifier] = STATE(2843), + [sym_type_qualifier] = STATE(2843), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2843), + [sym_block_pointer_declarator] = STATE(4011), + [aux_sym__declaration_specifiers_repeat1] = STATE(2843), + [sym_identifier] = ACTIONS(5281), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(4492), + [anon_sym_CARET] = ACTIONS(4494), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2839] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6199), + [sym__declarator] = STATE(5061), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_declarator] = STATE(4011), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5281), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(4492), + [anon_sym_CARET] = ACTIONS(4494), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2840] = { + [sym__declaration_modifiers] = STATE(6131), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(6131), + [sym_ms_declspec_modifier] = STATE(6131), + [sym_compound_statement] = STATE(2206), + [sym_storage_class_specifier] = STATE(6131), + [sym_type_qualifier] = STATE(6131), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3030), + [sym_gnu_asm_expression] = STATE(3165), + [sym_availability_attribute_specifier] = STATE(6131), + [aux_sym_declaration_repeat1] = STATE(3166), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6959), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_ATautoreleasepool] = ACTIONS(4681), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2841] = { + [sym__declaration_modifiers] = STATE(2879), + [sym_attribute_specifier] = STATE(2879), + [sym_attribute_declaration] = STATE(2879), + [sym_ms_declspec_modifier] = STATE(2879), + [sym__abstract_declarator] = STATE(5006), + [sym_abstract_parenthesized_declarator] = STATE(4894), + [sym_abstract_pointer_declarator] = STATE(4894), + [sym_abstract_function_declarator] = STATE(4894), + [sym_abstract_array_declarator] = STATE(4894), + [sym_storage_class_specifier] = STATE(2879), + [sym_type_qualifier] = STATE(2879), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(4315), + [sym_availability_attribute_specifier] = STATE(2879), + [sym_abstract_block_pointer_declarator] = STATE(4894), + [aux_sym__declaration_specifiers_repeat1] = STATE(2879), + [anon_sym_LPAREN2] = ACTIONS(4496), + [anon_sym_STAR] = ACTIONS(6953), + [anon_sym_CARET] = ACTIONS(6955), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6867), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_LBRACE] = ACTIONS(6354), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_ATautoreleasepool] = ACTIONS(6354), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2842] = { + [sym__declaration_modifiers] = STATE(5969), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(5969), + [sym_ms_declspec_modifier] = STATE(5969), + [sym_compound_statement] = STATE(675), + [sym_storage_class_specifier] = STATE(5969), + [sym_type_qualifier] = STATE(5969), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3030), + [sym_gnu_asm_expression] = STATE(3151), + [sym_availability_attribute_specifier] = STATE(5969), + [aux_sym_declaration_repeat1] = STATE(3152), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6949), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_ATautoreleasepool] = ACTIONS(761), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2843] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6199), + [sym__declarator] = STATE(5279), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_declarator] = STATE(4011), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5281), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(4492), + [anon_sym_CARET] = ACTIONS(4494), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2844] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6199), + [sym__declarator] = STATE(5074), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_declarator] = STATE(4011), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5281), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(4492), + [anon_sym_CARET] = ACTIONS(4494), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2845] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3857), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_declarator] = STATE(4011), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5281), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2846] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6315), + [sym__declarator] = STATE(2710), + [sym_parenthesized_declarator] = STATE(2792), + [sym_pointer_declarator] = STATE(2792), + [sym_function_declarator] = STATE(2792), + [sym_array_declarator] = STATE(2792), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_declarator] = STATE(2792), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(6567), + [anon_sym_LPAREN2] = ACTIONS(6569), + [anon_sym_STAR] = ACTIONS(6571), + [anon_sym_CARET] = ACTIONS(6573), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2847] = { + [sym_identifier] = ACTIONS(4797), + [anon_sym_COMMA] = ACTIONS(4801), + [anon_sym_SEMI] = ACTIONS(4801), + [anon_sym___extension__] = ACTIONS(4797), + [anon_sym_extern] = ACTIONS(4797), + [anon_sym___attribute__] = ACTIONS(4797), + [anon_sym___attribute] = ACTIONS(4797), + [anon_sym_noreturn] = ACTIONS(4797), + [anon_sym_LBRACK] = ACTIONS(4801), + [anon_sym___declspec] = ACTIONS(4797), + [anon_sym_LBRACE] = ACTIONS(4801), + [anon_sym_signed] = ACTIONS(4797), + [anon_sym_unsigned] = ACTIONS(4797), + [anon_sym_long] = ACTIONS(4797), + [anon_sym_short] = ACTIONS(4797), + [anon_sym_static] = ACTIONS(4797), + [anon_sym_ATautoreleasepool] = ACTIONS(4801), + [anon_sym_auto] = ACTIONS(4797), + [anon_sym_register] = ACTIONS(4797), + [anon_sym_inline] = ACTIONS(4797), + [anon_sym___inline] = ACTIONS(4797), + [anon_sym___inline__] = ACTIONS(4797), + [anon_sym___forceinline] = ACTIONS(4797), + [anon_sym_thread_local] = ACTIONS(4797), + [anon_sym___thread] = ACTIONS(4797), + [anon_sym_CG_EXTERN] = ACTIONS(4797), + [anon_sym_CG_INLINE] = ACTIONS(4797), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4797), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4797), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4797), + [anon_sym_IBOutlet] = ACTIONS(4797), + [anon_sym_IBInspectable] = ACTIONS(4797), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4797), + [anon_sym_NS_INLINE] = ACTIONS(4797), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4797), + [anon_sym_OBJC_EXPORT] = ACTIONS(4797), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4797), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4797), + [anon_sym_const] = ACTIONS(4797), + [anon_sym_constexpr] = ACTIONS(4797), + [anon_sym_volatile] = ACTIONS(4797), + [anon_sym_restrict] = ACTIONS(4797), + [anon_sym___restrict__] = ACTIONS(4797), + [anon_sym__Atomic] = ACTIONS(4797), + [anon_sym__Noreturn] = ACTIONS(4797), + [anon_sym__Nonnull] = ACTIONS(4797), + [anon_sym_nullable] = ACTIONS(4797), + [anon_sym__Complex] = ACTIONS(4797), + [anon_sym__Nullable] = ACTIONS(4797), + [anon_sym__Nullable_result] = ACTIONS(4797), + [anon_sym__Null_unspecified] = ACTIONS(4797), + [anon_sym___autoreleasing] = ACTIONS(4797), + [anon_sym___block] = ACTIONS(4797), + [anon_sym___bridge] = ACTIONS(4797), + [anon_sym___bridge_retained] = ACTIONS(4797), + [anon_sym___bridge_transfer] = ACTIONS(4797), + [anon_sym___complex] = ACTIONS(4797), + [anon_sym___const] = ACTIONS(4797), + [anon_sym___imag] = ACTIONS(4797), + [anon_sym___kindof] = ACTIONS(4797), + [anon_sym___nonnull] = ACTIONS(4797), + [anon_sym___nullable] = ACTIONS(4797), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4797), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4797), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4797), + [anon_sym___real] = ACTIONS(4797), + [anon_sym___strong] = ACTIONS(4797), + [anon_sym___unsafe_unretained] = ACTIONS(4797), + [anon_sym___unused] = ACTIONS(4797), + [anon_sym___weak] = ACTIONS(4797), + [anon_sym_alignas] = ACTIONS(4797), + [anon_sym__Alignas] = ACTIONS(4797), + [sym_primitive_type] = ACTIONS(4797), + [anon_sym_enum] = ACTIONS(4797), + [anon_sym_struct] = ACTIONS(4797), + [anon_sym_union] = ACTIONS(4797), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4797), + [anon_sym___typeof] = ACTIONS(4797), + [anon_sym_typeof] = ACTIONS(4797), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4797), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4797), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4797), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4797), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4797), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4797), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4797), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4797), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4797), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4797), + [anon_sym_NS_AVAILABLE] = ACTIONS(4797), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4797), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4797), + [anon_sym_API_AVAILABLE] = ACTIONS(4797), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4797), + [anon_sym_API_DEPRECATED] = ACTIONS(4797), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4797), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4797), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4797), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4797), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4797), + [anon_sym___deprecated_msg] = ACTIONS(4797), + [anon_sym___deprecated_enum_msg] = ACTIONS(4797), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4797), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4797), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4797), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4797), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4797), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4797), + [anon_sym_BOOL] = ACTIONS(4797), + [anon_sym_IMP] = ACTIONS(4797), + [anon_sym_SEL] = ACTIONS(4797), + [anon_sym_Class] = ACTIONS(4797), + [anon_sym_id] = ACTIONS(4797), + }, + [2848] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6199), + [sym__declarator] = STATE(5199), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_declarator] = STATE(4011), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5281), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(4492), + [anon_sym_CARET] = ACTIONS(4494), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2849] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6660), + [sym__declarator] = STATE(3239), + [sym_parenthesized_declarator] = STATE(3076), + [sym_pointer_declarator] = STATE(3076), + [sym_function_declarator] = STATE(3076), + [sym_array_declarator] = STATE(3076), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_declarator] = STATE(3076), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5328), + [anon_sym_LPAREN2] = ACTIONS(6579), + [anon_sym_STAR] = ACTIONS(6591), + [anon_sym_CARET] = ACTIONS(6593), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2850] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6315), + [sym__declarator] = STATE(2783), + [sym_parenthesized_declarator] = STATE(2792), + [sym_pointer_declarator] = STATE(2792), + [sym_function_declarator] = STATE(2792), + [sym_array_declarator] = STATE(2792), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_declarator] = STATE(2792), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(6567), + [anon_sym_LPAREN2] = ACTIONS(6569), + [anon_sym_STAR] = ACTIONS(6571), + [anon_sym_CARET] = ACTIONS(6573), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2851] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6315), + [sym__declarator] = STATE(2757), + [sym_parenthesized_declarator] = STATE(2792), + [sym_pointer_declarator] = STATE(2792), + [sym_function_declarator] = STATE(2792), + [sym_array_declarator] = STATE(2792), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_declarator] = STATE(2792), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(6567), + [anon_sym_LPAREN2] = ACTIONS(6569), + [anon_sym_STAR] = ACTIONS(6571), + [anon_sym_CARET] = ACTIONS(6573), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2852] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6660), + [sym__declarator] = STATE(3240), + [sym_parenthesized_declarator] = STATE(3076), + [sym_pointer_declarator] = STATE(3076), + [sym_function_declarator] = STATE(3076), + [sym_array_declarator] = STATE(3076), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_declarator] = STATE(3076), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5328), + [anon_sym_LPAREN2] = ACTIONS(6579), + [anon_sym_STAR] = ACTIONS(6591), + [anon_sym_CARET] = ACTIONS(6593), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2853] = { + [sym__declaration_modifiers] = STATE(6195), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(6195), + [sym_ms_declspec_modifier] = STATE(6195), + [sym_compound_statement] = STATE(2318), + [sym_storage_class_specifier] = STATE(6195), + [sym_type_qualifier] = STATE(6195), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3030), + [sym_gnu_asm_expression] = STATE(3173), + [sym_availability_attribute_specifier] = STATE(6195), + [aux_sym_declaration_repeat1] = STATE(3174), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6961), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_ATautoreleasepool] = ACTIONS(4669), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2854] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6660), + [sym__declarator] = STATE(3242), + [sym_parenthesized_declarator] = STATE(3076), + [sym_pointer_declarator] = STATE(3076), + [sym_function_declarator] = STATE(3076), + [sym_array_declarator] = STATE(3076), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_declarator] = STATE(3076), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5328), + [anon_sym_LPAREN2] = ACTIONS(6579), + [anon_sym_STAR] = ACTIONS(6591), + [anon_sym_CARET] = ACTIONS(6593), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2855] = { + [sym__declaration_modifiers] = STATE(6473), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(6473), + [sym_ms_declspec_modifier] = STATE(6473), + [sym_compound_statement] = STATE(1059), + [sym_storage_class_specifier] = STATE(6473), + [sym_type_qualifier] = STATE(6473), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3030), + [sym_gnu_asm_expression] = STATE(3115), + [sym_availability_attribute_specifier] = STATE(6473), + [aux_sym_declaration_repeat1] = STATE(3116), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6928), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2856] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6197), + [sym__declarator] = STATE(3071), + [sym_parenthesized_declarator] = STATE(3076), + [sym_pointer_declarator] = STATE(3076), + [sym_function_declarator] = STATE(3076), + [sym_array_declarator] = STATE(3076), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_declarator] = STATE(3076), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5328), + [anon_sym_LPAREN2] = ACTIONS(6579), + [anon_sym_STAR] = ACTIONS(6581), + [anon_sym_CARET] = ACTIONS(6583), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2857] = { + [sym_identifier] = ACTIONS(6934), + [anon_sym_COMMA] = ACTIONS(6939), + [anon_sym_SEMI] = ACTIONS(6939), + [anon_sym___extension__] = ACTIONS(6934), + [anon_sym_extern] = ACTIONS(6934), + [anon_sym___attribute__] = ACTIONS(6934), + [anon_sym___attribute] = ACTIONS(6934), + [anon_sym_noreturn] = ACTIONS(6934), + [anon_sym_LBRACK] = ACTIONS(6939), + [anon_sym___declspec] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6939), + [anon_sym_signed] = ACTIONS(6934), + [anon_sym_unsigned] = ACTIONS(6934), + [anon_sym_long] = ACTIONS(6934), + [anon_sym_short] = ACTIONS(6934), + [anon_sym_static] = ACTIONS(6934), + [anon_sym_ATautoreleasepool] = ACTIONS(6939), + [anon_sym_auto] = ACTIONS(6934), + [anon_sym_register] = ACTIONS(6934), + [anon_sym_inline] = ACTIONS(6934), + [anon_sym___inline] = ACTIONS(6934), + [anon_sym___inline__] = ACTIONS(6934), + [anon_sym___forceinline] = ACTIONS(6934), + [anon_sym_thread_local] = ACTIONS(6934), + [anon_sym___thread] = ACTIONS(6934), + [anon_sym_CG_EXTERN] = ACTIONS(6934), + [anon_sym_CG_INLINE] = ACTIONS(6934), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6934), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6934), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6934), + [anon_sym_IBOutlet] = ACTIONS(6934), + [anon_sym_IBInspectable] = ACTIONS(6934), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6934), + [anon_sym_NS_INLINE] = ACTIONS(6934), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6934), + [anon_sym_OBJC_EXPORT] = ACTIONS(6934), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6934), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6934), + [anon_sym_const] = ACTIONS(6934), + [anon_sym_constexpr] = ACTIONS(6934), + [anon_sym_volatile] = ACTIONS(6934), + [anon_sym_restrict] = ACTIONS(6934), + [anon_sym___restrict__] = ACTIONS(6934), + [anon_sym__Atomic] = ACTIONS(6934), + [anon_sym__Noreturn] = ACTIONS(6934), + [anon_sym__Nonnull] = ACTIONS(6934), + [anon_sym_nullable] = ACTIONS(6934), + [anon_sym__Complex] = ACTIONS(6934), + [anon_sym__Nullable] = ACTIONS(6934), + [anon_sym__Nullable_result] = ACTIONS(6934), + [anon_sym__Null_unspecified] = ACTIONS(6934), + [anon_sym___autoreleasing] = ACTIONS(6934), + [anon_sym___block] = ACTIONS(6934), + [anon_sym___bridge] = ACTIONS(6934), + [anon_sym___bridge_retained] = ACTIONS(6934), + [anon_sym___bridge_transfer] = ACTIONS(6934), + [anon_sym___complex] = ACTIONS(6934), + [anon_sym___const] = ACTIONS(6934), + [anon_sym___imag] = ACTIONS(6934), + [anon_sym___kindof] = ACTIONS(6934), + [anon_sym___nonnull] = ACTIONS(6934), + [anon_sym___nullable] = ACTIONS(6934), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6934), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6934), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6934), + [anon_sym___real] = ACTIONS(6934), + [anon_sym___strong] = ACTIONS(6934), + [anon_sym___unsafe_unretained] = ACTIONS(6934), + [anon_sym___unused] = ACTIONS(6934), + [anon_sym___weak] = ACTIONS(6934), + [anon_sym_alignas] = ACTIONS(6934), + [anon_sym__Alignas] = ACTIONS(6934), + [sym_primitive_type] = ACTIONS(6934), + [anon_sym_enum] = ACTIONS(6934), + [anon_sym_struct] = ACTIONS(6934), + [anon_sym_union] = ACTIONS(6934), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6934), + [anon_sym___typeof] = ACTIONS(6934), + [anon_sym_typeof] = ACTIONS(6934), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6934), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6934), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6934), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6934), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6934), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6934), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6934), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6934), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6934), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6934), + [anon_sym_NS_AVAILABLE] = ACTIONS(6934), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6934), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6934), + [anon_sym_API_AVAILABLE] = ACTIONS(6934), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6934), + [anon_sym_API_DEPRECATED] = ACTIONS(6934), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6934), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6934), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6934), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6934), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6934), + [anon_sym___deprecated_msg] = ACTIONS(6934), + [anon_sym___deprecated_enum_msg] = ACTIONS(6934), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6934), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6934), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6934), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6934), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6934), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6934), + [anon_sym_BOOL] = ACTIONS(6934), + [anon_sym_IMP] = ACTIONS(6934), + [anon_sym_SEL] = ACTIONS(6934), + [anon_sym_Class] = ACTIONS(6934), + [anon_sym_id] = ACTIONS(6934), + }, + [2858] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6197), + [sym__declarator] = STATE(3080), + [sym_parenthesized_declarator] = STATE(3076), + [sym_pointer_declarator] = STATE(3076), + [sym_function_declarator] = STATE(3076), + [sym_array_declarator] = STATE(3076), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_declarator] = STATE(3076), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5328), + [anon_sym_LPAREN2] = ACTIONS(6579), + [anon_sym_STAR] = ACTIONS(6581), + [anon_sym_CARET] = ACTIONS(6583), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2859] = { + [sym_identifier] = ACTIONS(2995), + [anon_sym___extension__] = ACTIONS(2995), + [anon_sym_typedef] = ACTIONS(2934), + [anon_sym_extern] = ACTIONS(2995), + [anon_sym___attribute__] = ACTIONS(2995), + [anon_sym___attribute] = ACTIONS(2995), + [anon_sym_noreturn] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3000), + [anon_sym___declspec] = ACTIONS(2995), + [anon_sym_signed] = ACTIONS(2995), + [anon_sym_unsigned] = ACTIONS(2995), + [anon_sym_long] = ACTIONS(2995), + [anon_sym_short] = ACTIONS(2995), + [anon_sym_static] = ACTIONS(2995), + [anon_sym_auto] = ACTIONS(2995), + [anon_sym_register] = ACTIONS(2995), + [anon_sym_inline] = ACTIONS(2995), + [anon_sym___inline] = ACTIONS(2995), + [anon_sym___inline__] = ACTIONS(2995), + [anon_sym___forceinline] = ACTIONS(2995), + [anon_sym_thread_local] = ACTIONS(2995), + [anon_sym___thread] = ACTIONS(2995), + [anon_sym_CG_EXTERN] = ACTIONS(2995), + [anon_sym_CG_INLINE] = ACTIONS(2995), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2995), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2995), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2995), + [anon_sym_IBOutlet] = ACTIONS(2995), + [anon_sym_IBInspectable] = ACTIONS(2995), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2995), + [anon_sym_NS_INLINE] = ACTIONS(2995), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2995), + [anon_sym_OBJC_EXPORT] = ACTIONS(2995), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2995), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2995), + [anon_sym_const] = ACTIONS(2995), + [anon_sym_constexpr] = ACTIONS(2995), + [anon_sym_volatile] = ACTIONS(2995), + [anon_sym_restrict] = ACTIONS(2995), + [anon_sym___restrict__] = ACTIONS(2995), + [anon_sym__Atomic] = ACTIONS(2995), + [anon_sym__Noreturn] = ACTIONS(2995), + [anon_sym__Nonnull] = ACTIONS(2995), + [anon_sym_nullable] = ACTIONS(2995), + [anon_sym__Complex] = ACTIONS(2995), + [anon_sym__Nullable] = ACTIONS(2995), + [anon_sym__Nullable_result] = ACTIONS(2995), + [anon_sym__Null_unspecified] = ACTIONS(2995), + [anon_sym___autoreleasing] = ACTIONS(2995), + [anon_sym___block] = ACTIONS(2995), + [anon_sym___bridge] = ACTIONS(2995), + [anon_sym___bridge_retained] = ACTIONS(2995), + [anon_sym___bridge_transfer] = ACTIONS(2995), + [anon_sym___complex] = ACTIONS(2995), + [anon_sym___const] = ACTIONS(2995), + [anon_sym___imag] = ACTIONS(2995), + [anon_sym___kindof] = ACTIONS(2995), + [anon_sym___nonnull] = ACTIONS(2995), + [anon_sym___nullable] = ACTIONS(2995), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2995), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2995), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2995), + [anon_sym___real] = ACTIONS(2995), + [anon_sym___strong] = ACTIONS(2995), + [anon_sym___unsafe_unretained] = ACTIONS(2995), + [anon_sym___unused] = ACTIONS(2995), + [anon_sym___weak] = ACTIONS(2995), + [anon_sym_alignas] = ACTIONS(2995), + [anon_sym__Alignas] = ACTIONS(2995), + [sym_primitive_type] = ACTIONS(2995), + [anon_sym_enum] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2995), + [anon_sym_union] = ACTIONS(2995), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2995), + [anon_sym___typeof] = ACTIONS(2995), + [anon_sym_typeof] = ACTIONS(2995), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2995), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2995), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2995), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2995), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2995), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2995), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2995), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2995), + [anon_sym_NS_AVAILABLE] = ACTIONS(2995), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2995), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_API_AVAILABLE] = ACTIONS(2995), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_API_DEPRECATED] = ACTIONS(2995), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2995), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2995), + [anon_sym___deprecated_msg] = ACTIONS(2995), + [anon_sym___deprecated_enum_msg] = ACTIONS(2995), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2995), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2995), + [anon_sym_ATprotocol] = ACTIONS(3000), + [anon_sym_ATinterface] = ACTIONS(3000), + [anon_sym_ATimplementation] = ACTIONS(3000), + [anon_sym_BOOL] = ACTIONS(2995), + [anon_sym_IMP] = ACTIONS(2995), + [anon_sym_SEL] = ACTIONS(2995), + [anon_sym_Class] = ACTIONS(2995), + [anon_sym_id] = ACTIONS(2995), + }, + [2860] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3903), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_declarator] = STATE(4011), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5281), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2861] = { + [sym_identifier] = ACTIONS(2995), + [anon_sym___extension__] = ACTIONS(2995), + [anon_sym_typedef] = ACTIONS(2936), + [anon_sym_extern] = ACTIONS(2995), + [anon_sym___attribute__] = ACTIONS(2995), + [anon_sym___attribute] = ACTIONS(2995), + [anon_sym_noreturn] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3000), + [anon_sym___declspec] = ACTIONS(2995), + [anon_sym_signed] = ACTIONS(2995), + [anon_sym_unsigned] = ACTIONS(2995), + [anon_sym_long] = ACTIONS(2995), + [anon_sym_short] = ACTIONS(2995), + [anon_sym_static] = ACTIONS(2995), + [anon_sym_auto] = ACTIONS(2995), + [anon_sym_register] = ACTIONS(2995), + [anon_sym_inline] = ACTIONS(2995), + [anon_sym___inline] = ACTIONS(2995), + [anon_sym___inline__] = ACTIONS(2995), + [anon_sym___forceinline] = ACTIONS(2995), + [anon_sym_thread_local] = ACTIONS(2995), + [anon_sym___thread] = ACTIONS(2995), + [anon_sym_CG_EXTERN] = ACTIONS(2995), + [anon_sym_CG_INLINE] = ACTIONS(2995), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2995), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2995), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2995), + [anon_sym_IBOutlet] = ACTIONS(2995), + [anon_sym_IBInspectable] = ACTIONS(2995), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2995), + [anon_sym_NS_INLINE] = ACTIONS(2995), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2995), + [anon_sym_OBJC_EXPORT] = ACTIONS(2995), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2995), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2995), + [anon_sym_const] = ACTIONS(2995), + [anon_sym_constexpr] = ACTIONS(2995), + [anon_sym_volatile] = ACTIONS(2995), + [anon_sym_restrict] = ACTIONS(2995), + [anon_sym___restrict__] = ACTIONS(2995), + [anon_sym__Atomic] = ACTIONS(2995), + [anon_sym__Noreturn] = ACTIONS(2995), + [anon_sym__Nonnull] = ACTIONS(2995), + [anon_sym_nullable] = ACTIONS(2995), + [anon_sym__Complex] = ACTIONS(2995), + [anon_sym__Nullable] = ACTIONS(2995), + [anon_sym__Nullable_result] = ACTIONS(2995), + [anon_sym__Null_unspecified] = ACTIONS(2995), + [anon_sym___autoreleasing] = ACTIONS(2995), + [anon_sym___block] = ACTIONS(2995), + [anon_sym___bridge] = ACTIONS(2995), + [anon_sym___bridge_retained] = ACTIONS(2995), + [anon_sym___bridge_transfer] = ACTIONS(2995), + [anon_sym___complex] = ACTIONS(2995), + [anon_sym___const] = ACTIONS(2995), + [anon_sym___imag] = ACTIONS(2995), + [anon_sym___kindof] = ACTIONS(2995), + [anon_sym___nonnull] = ACTIONS(2995), + [anon_sym___nullable] = ACTIONS(2995), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2995), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2995), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2995), + [anon_sym___real] = ACTIONS(2995), + [anon_sym___strong] = ACTIONS(2995), + [anon_sym___unsafe_unretained] = ACTIONS(2995), + [anon_sym___unused] = ACTIONS(2995), + [anon_sym___weak] = ACTIONS(2995), + [anon_sym_alignas] = ACTIONS(2995), + [anon_sym__Alignas] = ACTIONS(2995), + [sym_primitive_type] = ACTIONS(2995), + [anon_sym_enum] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2995), + [anon_sym_union] = ACTIONS(2995), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2995), + [anon_sym___typeof] = ACTIONS(2995), + [anon_sym_typeof] = ACTIONS(2995), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2995), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2995), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2995), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2995), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2995), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2995), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2995), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2995), + [anon_sym_NS_AVAILABLE] = ACTIONS(2995), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2995), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_API_AVAILABLE] = ACTIONS(2995), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_API_DEPRECATED] = ACTIONS(2995), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2995), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2995), + [anon_sym___deprecated_msg] = ACTIONS(2995), + [anon_sym___deprecated_enum_msg] = ACTIONS(2995), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2995), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2995), + [anon_sym_ATprotocol] = ACTIONS(3000), + [anon_sym_ATinterface] = ACTIONS(3000), + [anon_sym_ATimplementation] = ACTIONS(3000), + [anon_sym_BOOL] = ACTIONS(2995), + [anon_sym_IMP] = ACTIONS(2995), + [anon_sym_SEL] = ACTIONS(2995), + [anon_sym_Class] = ACTIONS(2995), + [anon_sym_id] = ACTIONS(2995), + }, + [2862] = { + [sym__declaration_modifiers] = STATE(2848), + [sym_attribute_specifier] = STATE(2848), + [sym_attribute_declaration] = STATE(2848), + [sym_ms_declspec_modifier] = STATE(2848), + [sym_ms_based_modifier] = STATE(6199), + [sym__declarator] = STATE(5164), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_storage_class_specifier] = STATE(2848), + [sym_type_qualifier] = STATE(2848), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2848), + [sym_block_pointer_declarator] = STATE(4011), + [aux_sym__declaration_specifiers_repeat1] = STATE(2848), + [sym_identifier] = ACTIONS(5281), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(4492), + [anon_sym_CARET] = ACTIONS(4494), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2863] = { + [sym__declaration_modifiers] = STATE(6653), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(6653), + [sym_ms_declspec_modifier] = STATE(6653), + [sym_compound_statement] = STATE(460), + [sym_storage_class_specifier] = STATE(6653), + [sym_type_qualifier] = STATE(6653), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3030), + [sym_gnu_asm_expression] = STATE(3144), + [sym_availability_attribute_specifier] = STATE(6653), + [aux_sym_declaration_repeat1] = STATE(3145), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6926), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_ATautoreleasepool] = ACTIONS(305), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2864] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_ms_based_modifier] = STATE(6197), + [sym__declarator] = STATE(3094), + [sym_parenthesized_declarator] = STATE(3076), + [sym_pointer_declarator] = STATE(3076), + [sym_function_declarator] = STATE(3076), + [sym_array_declarator] = STATE(3076), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [sym_block_pointer_declarator] = STATE(3076), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(5328), + [anon_sym_LPAREN2] = ACTIONS(6579), + [anon_sym_STAR] = ACTIONS(6581), + [anon_sym_CARET] = ACTIONS(6583), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2865] = { + [sym_identifier] = ACTIONS(2995), + [anon_sym___extension__] = ACTIONS(2995), + [anon_sym_typedef] = ACTIONS(2920), + [anon_sym_extern] = ACTIONS(2995), + [anon_sym___attribute__] = ACTIONS(2995), + [anon_sym___attribute] = ACTIONS(2995), + [anon_sym_noreturn] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3000), + [anon_sym___declspec] = ACTIONS(2995), + [anon_sym_signed] = ACTIONS(2995), + [anon_sym_unsigned] = ACTIONS(2995), + [anon_sym_long] = ACTIONS(2995), + [anon_sym_short] = ACTIONS(2995), + [anon_sym_static] = ACTIONS(2995), + [anon_sym_auto] = ACTIONS(2995), + [anon_sym_register] = ACTIONS(2995), + [anon_sym_inline] = ACTIONS(2995), + [anon_sym___inline] = ACTIONS(2995), + [anon_sym___inline__] = ACTIONS(2995), + [anon_sym___forceinline] = ACTIONS(2995), + [anon_sym_thread_local] = ACTIONS(2995), + [anon_sym___thread] = ACTIONS(2995), + [anon_sym_CG_EXTERN] = ACTIONS(2995), + [anon_sym_CG_INLINE] = ACTIONS(2995), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2995), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2995), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2995), + [anon_sym_IBOutlet] = ACTIONS(2995), + [anon_sym_IBInspectable] = ACTIONS(2995), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2995), + [anon_sym_NS_INLINE] = ACTIONS(2995), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2995), + [anon_sym_OBJC_EXPORT] = ACTIONS(2995), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2995), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2995), + [anon_sym_const] = ACTIONS(2995), + [anon_sym_constexpr] = ACTIONS(2995), + [anon_sym_volatile] = ACTIONS(2995), + [anon_sym_restrict] = ACTIONS(2995), + [anon_sym___restrict__] = ACTIONS(2995), + [anon_sym__Atomic] = ACTIONS(2995), + [anon_sym__Noreturn] = ACTIONS(2995), + [anon_sym__Nonnull] = ACTIONS(2995), + [anon_sym_nullable] = ACTIONS(2995), + [anon_sym__Complex] = ACTIONS(2995), + [anon_sym__Nullable] = ACTIONS(2995), + [anon_sym__Nullable_result] = ACTIONS(2995), + [anon_sym__Null_unspecified] = ACTIONS(2995), + [anon_sym___autoreleasing] = ACTIONS(2995), + [anon_sym___block] = ACTIONS(2995), + [anon_sym___bridge] = ACTIONS(2995), + [anon_sym___bridge_retained] = ACTIONS(2995), + [anon_sym___bridge_transfer] = ACTIONS(2995), + [anon_sym___complex] = ACTIONS(2995), + [anon_sym___const] = ACTIONS(2995), + [anon_sym___imag] = ACTIONS(2995), + [anon_sym___kindof] = ACTIONS(2995), + [anon_sym___nonnull] = ACTIONS(2995), + [anon_sym___nullable] = ACTIONS(2995), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2995), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2995), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2995), + [anon_sym___real] = ACTIONS(2995), + [anon_sym___strong] = ACTIONS(2995), + [anon_sym___unsafe_unretained] = ACTIONS(2995), + [anon_sym___unused] = ACTIONS(2995), + [anon_sym___weak] = ACTIONS(2995), + [anon_sym_alignas] = ACTIONS(2995), + [anon_sym__Alignas] = ACTIONS(2995), + [sym_primitive_type] = ACTIONS(2995), + [anon_sym_enum] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2995), + [anon_sym_union] = ACTIONS(2995), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2995), + [anon_sym___typeof] = ACTIONS(2995), + [anon_sym_typeof] = ACTIONS(2995), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2995), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2995), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2995), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2995), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2995), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2995), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2995), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2995), + [anon_sym_NS_AVAILABLE] = ACTIONS(2995), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2995), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_API_AVAILABLE] = ACTIONS(2995), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_API_DEPRECATED] = ACTIONS(2995), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2995), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2995), + [anon_sym___deprecated_msg] = ACTIONS(2995), + [anon_sym___deprecated_enum_msg] = ACTIONS(2995), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2995), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2995), + [anon_sym_ATprotocol] = ACTIONS(3000), + [anon_sym_ATinterface] = ACTIONS(3000), + [anon_sym_ATimplementation] = ACTIONS(3000), + [anon_sym_BOOL] = ACTIONS(2995), + [anon_sym_IMP] = ACTIONS(2995), + [anon_sym_SEL] = ACTIONS(2995), + [anon_sym_Class] = ACTIONS(2995), + [anon_sym_id] = ACTIONS(2995), + }, + [2866] = { + [sym_ms_declspec_modifier] = STATE(6680), + [sym_identifier] = ACTIONS(2922), + [anon_sym___extension__] = ACTIONS(2922), + [anon_sym_typedef] = ACTIONS(6963), + [anon_sym_extern] = ACTIONS(2922), + [anon_sym___attribute__] = ACTIONS(2922), + [anon_sym___attribute] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2928), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_auto] = ACTIONS(2922), + [anon_sym_register] = ACTIONS(2922), + [anon_sym_inline] = ACTIONS(2922), + [anon_sym___inline] = ACTIONS(2922), + [anon_sym___inline__] = ACTIONS(2922), + [anon_sym___forceinline] = ACTIONS(2922), + [anon_sym_thread_local] = ACTIONS(2922), + [anon_sym___thread] = ACTIONS(2922), + [anon_sym_CG_EXTERN] = ACTIONS(2922), + [anon_sym_CG_INLINE] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2922), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2922), + [anon_sym_IBOutlet] = ACTIONS(2922), + [anon_sym_IBInspectable] = ACTIONS(2922), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2922), + [anon_sym_NS_INLINE] = ACTIONS(2922), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2922), + [anon_sym_OBJC_EXPORT] = ACTIONS(2922), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2922), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2922), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(2922), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2922), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2922), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2922), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2922), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE] = ACTIONS(2922), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_API_AVAILABLE] = ACTIONS(2922), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_API_DEPRECATED] = ACTIONS(2922), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2922), + [anon_sym___deprecated_msg] = ACTIONS(2922), + [anon_sym___deprecated_enum_msg] = ACTIONS(2922), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2922), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2922), + [anon_sym_ATproperty] = ACTIONS(2928), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(2922), + }, + [2867] = { + [sym_ms_declspec_modifier] = STATE(6772), + [sym_identifier] = ACTIONS(2922), + [anon_sym___extension__] = ACTIONS(2922), + [anon_sym_typedef] = ACTIONS(6965), + [anon_sym_extern] = ACTIONS(2922), + [anon_sym___attribute__] = ACTIONS(2922), + [anon_sym___attribute] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2928), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_auto] = ACTIONS(2922), + [anon_sym_register] = ACTIONS(2922), + [anon_sym_inline] = ACTIONS(2922), + [anon_sym___inline] = ACTIONS(2922), + [anon_sym___inline__] = ACTIONS(2922), + [anon_sym___forceinline] = ACTIONS(2922), + [anon_sym_thread_local] = ACTIONS(2922), + [anon_sym___thread] = ACTIONS(2922), + [anon_sym_CG_EXTERN] = ACTIONS(2922), + [anon_sym_CG_INLINE] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2922), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2922), + [anon_sym_IBOutlet] = ACTIONS(2922), + [anon_sym_IBInspectable] = ACTIONS(2922), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2922), + [anon_sym_NS_INLINE] = ACTIONS(2922), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2922), + [anon_sym_OBJC_EXPORT] = ACTIONS(2922), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2922), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2922), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(2922), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2922), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2922), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2922), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2922), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE] = ACTIONS(2922), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_API_AVAILABLE] = ACTIONS(2922), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_API_DEPRECATED] = ACTIONS(2922), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2922), + [anon_sym___deprecated_msg] = ACTIONS(2922), + [anon_sym___deprecated_enum_msg] = ACTIONS(2922), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2922), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2922), + [anon_sym_ATproperty] = ACTIONS(2928), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(2922), + }, + [2868] = { + [sym_ms_declspec_modifier] = STATE(6770), + [sym_identifier] = ACTIONS(2922), + [anon_sym___extension__] = ACTIONS(2922), + [anon_sym_typedef] = ACTIONS(6967), + [anon_sym_extern] = ACTIONS(2922), + [anon_sym___attribute__] = ACTIONS(2922), + [anon_sym___attribute] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2928), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_auto] = ACTIONS(2922), + [anon_sym_register] = ACTIONS(2922), + [anon_sym_inline] = ACTIONS(2922), + [anon_sym___inline] = ACTIONS(2922), + [anon_sym___inline__] = ACTIONS(2922), + [anon_sym___forceinline] = ACTIONS(2922), + [anon_sym_thread_local] = ACTIONS(2922), + [anon_sym___thread] = ACTIONS(2922), + [anon_sym_CG_EXTERN] = ACTIONS(2922), + [anon_sym_CG_INLINE] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2922), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2922), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2922), + [anon_sym_IBOutlet] = ACTIONS(2922), + [anon_sym_IBInspectable] = ACTIONS(2922), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2922), + [anon_sym_NS_INLINE] = ACTIONS(2922), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2922), + [anon_sym_OBJC_EXPORT] = ACTIONS(2922), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2922), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2922), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(2922), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2922), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2922), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2922), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2922), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2922), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2922), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE] = ACTIONS(2922), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2922), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_API_AVAILABLE] = ACTIONS(2922), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_API_DEPRECATED] = ACTIONS(2922), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2922), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2922), + [anon_sym___deprecated_msg] = ACTIONS(2922), + [anon_sym___deprecated_enum_msg] = ACTIONS(2922), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2922), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2922), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2922), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2922), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2922), + [anon_sym_ATproperty] = ACTIONS(2928), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(2922), + }, + [2869] = { + [sym_type_qualifier] = STATE(2508), + [sym_alignas_qualifier] = STATE(2368), + [aux_sym__type_definition_type_repeat1] = STATE(2508), + [aux_sym_sized_type_specifier_repeat1] = STATE(2988), + [sym_identifier] = ACTIONS(6969), + [anon_sym_COMMA] = ACTIONS(6972), + [anon_sym_RPAREN] = ACTIONS(6972), + [anon_sym_LPAREN2] = ACTIONS(6972), + [anon_sym_STAR] = ACTIONS(6972), + [anon_sym_CARET] = ACTIONS(6972), + [anon_sym_SEMI] = ACTIONS(6972), + [anon_sym___extension__] = ACTIONS(6974), + [anon_sym_extern] = ACTIONS(6977), + [anon_sym___attribute__] = ACTIONS(6977), + [anon_sym___attribute] = ACTIONS(6977), + [anon_sym_noreturn] = ACTIONS(6974), + [anon_sym_LBRACK] = ACTIONS(6972), + [anon_sym___declspec] = ACTIONS(6977), + [anon_sym___based] = ACTIONS(6977), + [anon_sym_signed] = ACTIONS(6979), + [anon_sym_unsigned] = ACTIONS(6979), + [anon_sym_long] = ACTIONS(6979), + [anon_sym_short] = ACTIONS(6979), + [anon_sym_static] = ACTIONS(6977), + [anon_sym_auto] = ACTIONS(6977), + [anon_sym_register] = ACTIONS(6977), + [anon_sym_inline] = ACTIONS(6977), + [anon_sym___inline] = ACTIONS(6977), + [anon_sym___inline__] = ACTIONS(6977), + [anon_sym___forceinline] = ACTIONS(6977), + [anon_sym_thread_local] = ACTIONS(6977), + [anon_sym___thread] = ACTIONS(6977), + [anon_sym_CG_EXTERN] = ACTIONS(6977), + [anon_sym_CG_INLINE] = ACTIONS(6977), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6977), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6977), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6977), + [anon_sym_IBOutlet] = ACTIONS(6977), + [anon_sym_IBInspectable] = ACTIONS(6977), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6977), + [anon_sym_NS_INLINE] = ACTIONS(6977), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6977), + [anon_sym_OBJC_EXPORT] = ACTIONS(6977), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6977), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6977), + [anon_sym_const] = ACTIONS(6974), + [anon_sym_constexpr] = ACTIONS(6974), + [anon_sym_volatile] = ACTIONS(6974), + [anon_sym_restrict] = ACTIONS(6974), + [anon_sym___restrict__] = ACTIONS(6974), + [anon_sym__Atomic] = ACTIONS(6974), + [anon_sym__Noreturn] = ACTIONS(6974), + [anon_sym__Nonnull] = ACTIONS(6974), + [anon_sym_nullable] = ACTIONS(6974), + [anon_sym__Complex] = ACTIONS(6974), + [anon_sym__Nullable] = ACTIONS(6974), + [anon_sym__Nullable_result] = ACTIONS(6974), + [anon_sym__Null_unspecified] = ACTIONS(6974), + [anon_sym___autoreleasing] = ACTIONS(6974), + [anon_sym___block] = ACTIONS(6974), + [anon_sym___bridge] = ACTIONS(6974), + [anon_sym___bridge_retained] = ACTIONS(6974), + [anon_sym___bridge_transfer] = ACTIONS(6974), + [anon_sym___complex] = ACTIONS(6974), + [anon_sym___const] = ACTIONS(6974), + [anon_sym___imag] = ACTIONS(6974), + [anon_sym___kindof] = ACTIONS(6974), + [anon_sym___nonnull] = ACTIONS(6974), + [anon_sym___nullable] = ACTIONS(6974), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6974), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6974), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6974), + [anon_sym___real] = ACTIONS(6974), + [anon_sym___strong] = ACTIONS(6974), + [anon_sym___unsafe_unretained] = ACTIONS(6974), + [anon_sym___unused] = ACTIONS(6974), + [anon_sym___weak] = ACTIONS(6974), + [anon_sym_alignas] = ACTIONS(6981), + [anon_sym__Alignas] = ACTIONS(6981), + [sym_primitive_type] = ACTIONS(6984), + [anon_sym_enum] = ACTIONS(6977), + [anon_sym_COLON] = ACTIONS(6972), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6977), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6977), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6977), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6977), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6977), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6977), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6977), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6977), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6977), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6977), + [anon_sym_NS_AVAILABLE] = ACTIONS(6977), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6977), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6977), + [anon_sym_API_AVAILABLE] = ACTIONS(6977), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6977), + [anon_sym_API_DEPRECATED] = ACTIONS(6977), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6977), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6977), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6977), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6977), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6977), + [anon_sym___deprecated_msg] = ACTIONS(6977), + [anon_sym___deprecated_enum_msg] = ACTIONS(6977), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6977), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6977), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6977), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6977), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6977), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6977), + }, + [2870] = { + [sym_type_qualifier] = STATE(2869), + [sym_alignas_qualifier] = STATE(2368), + [aux_sym__type_definition_type_repeat1] = STATE(2869), + [aux_sym_sized_type_specifier_repeat1] = STATE(2944), + [sym_identifier] = ACTIONS(6986), + [anon_sym_COMMA] = ACTIONS(6989), + [anon_sym_RPAREN] = ACTIONS(6989), + [anon_sym_LPAREN2] = ACTIONS(6989), + [anon_sym_STAR] = ACTIONS(6989), + [anon_sym_CARET] = ACTIONS(6989), + [anon_sym_SEMI] = ACTIONS(6989), + [anon_sym___extension__] = ACTIONS(6991), + [anon_sym_extern] = ACTIONS(6994), + [anon_sym___attribute__] = ACTIONS(6994), + [anon_sym___attribute] = ACTIONS(6994), + [anon_sym_noreturn] = ACTIONS(6991), + [anon_sym_LBRACK] = ACTIONS(6989), + [anon_sym___declspec] = ACTIONS(6994), + [anon_sym___based] = ACTIONS(6994), + [anon_sym_signed] = ACTIONS(6996), + [anon_sym_unsigned] = ACTIONS(6996), + [anon_sym_long] = ACTIONS(6996), + [anon_sym_short] = ACTIONS(6996), + [anon_sym_static] = ACTIONS(6994), + [anon_sym_auto] = ACTIONS(6994), + [anon_sym_register] = ACTIONS(6994), + [anon_sym_inline] = ACTIONS(6994), + [anon_sym___inline] = ACTIONS(6994), + [anon_sym___inline__] = ACTIONS(6994), + [anon_sym___forceinline] = ACTIONS(6994), + [anon_sym_thread_local] = ACTIONS(6994), + [anon_sym___thread] = ACTIONS(6994), + [anon_sym_CG_EXTERN] = ACTIONS(6994), + [anon_sym_CG_INLINE] = ACTIONS(6994), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6994), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6994), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6994), + [anon_sym_IBOutlet] = ACTIONS(6994), + [anon_sym_IBInspectable] = ACTIONS(6994), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6994), + [anon_sym_NS_INLINE] = ACTIONS(6994), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6994), + [anon_sym_OBJC_EXPORT] = ACTIONS(6994), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6994), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6994), + [anon_sym_const] = ACTIONS(6991), + [anon_sym_constexpr] = ACTIONS(6991), + [anon_sym_volatile] = ACTIONS(6991), + [anon_sym_restrict] = ACTIONS(6991), + [anon_sym___restrict__] = ACTIONS(6991), + [anon_sym__Atomic] = ACTIONS(6991), + [anon_sym__Noreturn] = ACTIONS(6991), + [anon_sym__Nonnull] = ACTIONS(6991), + [anon_sym_nullable] = ACTIONS(6991), + [anon_sym__Complex] = ACTIONS(6991), + [anon_sym__Nullable] = ACTIONS(6991), + [anon_sym__Nullable_result] = ACTIONS(6991), + [anon_sym__Null_unspecified] = ACTIONS(6991), + [anon_sym___autoreleasing] = ACTIONS(6991), + [anon_sym___block] = ACTIONS(6991), + [anon_sym___bridge] = ACTIONS(6991), + [anon_sym___bridge_retained] = ACTIONS(6991), + [anon_sym___bridge_transfer] = ACTIONS(6991), + [anon_sym___complex] = ACTIONS(6991), + [anon_sym___const] = ACTIONS(6991), + [anon_sym___imag] = ACTIONS(6991), + [anon_sym___kindof] = ACTIONS(6991), + [anon_sym___nonnull] = ACTIONS(6991), + [anon_sym___nullable] = ACTIONS(6991), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6991), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6991), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6991), + [anon_sym___real] = ACTIONS(6991), + [anon_sym___strong] = ACTIONS(6991), + [anon_sym___unsafe_unretained] = ACTIONS(6991), + [anon_sym___unused] = ACTIONS(6991), + [anon_sym___weak] = ACTIONS(6991), + [anon_sym_alignas] = ACTIONS(6998), + [anon_sym__Alignas] = ACTIONS(6998), + [sym_primitive_type] = ACTIONS(7001), + [anon_sym_enum] = ACTIONS(6994), + [anon_sym_COLON] = ACTIONS(6989), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6994), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6994), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6994), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6994), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6994), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6994), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6994), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6994), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6994), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6994), + [anon_sym_NS_AVAILABLE] = ACTIONS(6994), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6994), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6994), + [anon_sym_API_AVAILABLE] = ACTIONS(6994), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6994), + [anon_sym_API_DEPRECATED] = ACTIONS(6994), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6994), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6994), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6994), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6994), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6994), + [anon_sym___deprecated_msg] = ACTIONS(6994), + [anon_sym___deprecated_enum_msg] = ACTIONS(6994), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6994), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6994), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6994), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6994), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6994), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6994), + }, + [2871] = { + [sym__declaration_modifiers] = STATE(6263), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(6263), + [sym_ms_declspec_modifier] = STATE(6263), + [sym_storage_class_specifier] = STATE(6263), + [sym_type_qualifier] = STATE(6263), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3198), + [sym_gnu_asm_expression] = STATE(3135), + [sym_availability_attribute_specifier] = STATE(6263), + [aux_sym_declaration_repeat1] = STATE(3136), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(7003), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_in] = ACTIONS(7005), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2872] = { + [sym__declaration_modifiers] = STATE(2876), + [sym_attribute_specifier] = STATE(2876), + [sym_attribute_declaration] = STATE(2876), + [sym_ms_declspec_modifier] = STATE(2876), + [sym_storage_class_specifier] = STATE(2876), + [sym_type_qualifier] = STATE(2876), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2876), + [aux_sym__declaration_specifiers_repeat1] = STATE(2876), + [sym_identifier] = ACTIONS(7007), + [anon_sym_COMMA] = ACTIONS(7009), + [anon_sym_RPAREN] = ACTIONS(7009), + [anon_sym_LPAREN2] = ACTIONS(7009), + [anon_sym_STAR] = ACTIONS(7009), + [anon_sym_CARET] = ACTIONS(7009), + [anon_sym_SEMI] = ACTIONS(7009), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(7011), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(7007), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [anon_sym_enum] = ACTIONS(7007), + [anon_sym_COLON] = ACTIONS(7009), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2873] = { + [sym__declaration_modifiers] = STATE(6263), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(6263), + [sym_ms_declspec_modifier] = STATE(6263), + [sym_storage_class_specifier] = STATE(6263), + [sym_type_qualifier] = STATE(6263), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3198), + [sym_gnu_asm_expression] = STATE(3135), + [sym_availability_attribute_specifier] = STATE(6263), + [aux_sym_declaration_repeat1] = STATE(3136), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(7003), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_in] = ACTIONS(7013), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2874] = { + [sym_expression] = STATE(1637), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_initializer_list] = STATE(1655), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_COMMA] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(2222), + [anon_sym_PIPE_PIPE] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2222), + [anon_sym_PIPE] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2222), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_EQ_EQ] = ACTIONS(2222), + [anon_sym_BANG_EQ] = ACTIONS(2222), + [anon_sym_GT] = ACTIONS(2220), + [anon_sym_GT_EQ] = ACTIONS(2222), + [anon_sym_LT_EQ] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2220), + [anon_sym_LT_LT] = ACTIONS(2222), + [anon_sym_GT_GT] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym___attribute__] = ACTIONS(2220), + [anon_sym___attribute] = ACTIONS(2220), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_RBRACK] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_COLON] = ACTIONS(2222), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [anon_sym_DOT] = ACTIONS(2220), + [anon_sym_DASH_GT] = ACTIONS(2222), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [2875] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(7015), + [anon_sym_COMMA] = ACTIONS(7017), + [anon_sym_RPAREN] = ACTIONS(7017), + [anon_sym_LPAREN2] = ACTIONS(7017), + [anon_sym_STAR] = ACTIONS(7017), + [anon_sym_CARET] = ACTIONS(7017), + [anon_sym_SEMI] = ACTIONS(7017), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(7015), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [anon_sym_enum] = ACTIONS(7015), + [anon_sym_COLON] = ACTIONS(7017), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2876] = { + [sym__declaration_modifiers] = STATE(2046), + [sym_attribute_specifier] = STATE(2046), + [sym_attribute_declaration] = STATE(2046), + [sym_ms_declspec_modifier] = STATE(2046), + [sym_storage_class_specifier] = STATE(2046), + [sym_type_qualifier] = STATE(2046), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2046), + [aux_sym__declaration_specifiers_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(7019), + [anon_sym_COMMA] = ACTIONS(7021), + [anon_sym_RPAREN] = ACTIONS(7021), + [anon_sym_LPAREN2] = ACTIONS(7021), + [anon_sym_STAR] = ACTIONS(7021), + [anon_sym_CARET] = ACTIONS(7021), + [anon_sym_SEMI] = ACTIONS(7021), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(7019), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [anon_sym_enum] = ACTIONS(7019), + [anon_sym_COLON] = ACTIONS(7021), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2877] = { + [sym_identifier] = ACTIONS(2995), + [anon_sym___extension__] = ACTIONS(2995), + [anon_sym_typedef] = ACTIONS(6963), + [anon_sym_extern] = ACTIONS(2995), + [anon_sym___attribute__] = ACTIONS(2995), + [anon_sym___attribute] = ACTIONS(2995), + [anon_sym_noreturn] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3000), + [anon_sym___declspec] = ACTIONS(2995), + [anon_sym_signed] = ACTIONS(2995), + [anon_sym_unsigned] = ACTIONS(2995), + [anon_sym_long] = ACTIONS(2995), + [anon_sym_short] = ACTIONS(2995), + [anon_sym_static] = ACTIONS(2995), + [anon_sym_auto] = ACTIONS(2995), + [anon_sym_register] = ACTIONS(2995), + [anon_sym_inline] = ACTIONS(2995), + [anon_sym___inline] = ACTIONS(2995), + [anon_sym___inline__] = ACTIONS(2995), + [anon_sym___forceinline] = ACTIONS(2995), + [anon_sym_thread_local] = ACTIONS(2995), + [anon_sym___thread] = ACTIONS(2995), + [anon_sym_CG_EXTERN] = ACTIONS(2995), + [anon_sym_CG_INLINE] = ACTIONS(2995), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2995), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2995), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2995), + [anon_sym_IBOutlet] = ACTIONS(2995), + [anon_sym_IBInspectable] = ACTIONS(2995), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2995), + [anon_sym_NS_INLINE] = ACTIONS(2995), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2995), + [anon_sym_OBJC_EXPORT] = ACTIONS(2995), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2995), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2995), + [anon_sym_const] = ACTIONS(2995), + [anon_sym_constexpr] = ACTIONS(2995), + [anon_sym_volatile] = ACTIONS(2995), + [anon_sym_restrict] = ACTIONS(2995), + [anon_sym___restrict__] = ACTIONS(2995), + [anon_sym__Atomic] = ACTIONS(2995), + [anon_sym__Noreturn] = ACTIONS(2995), + [anon_sym__Nonnull] = ACTIONS(2995), + [anon_sym_nullable] = ACTIONS(2995), + [anon_sym__Complex] = ACTIONS(2995), + [anon_sym__Nullable] = ACTIONS(2995), + [anon_sym__Nullable_result] = ACTIONS(2995), + [anon_sym__Null_unspecified] = ACTIONS(2995), + [anon_sym___autoreleasing] = ACTIONS(2995), + [anon_sym___block] = ACTIONS(2995), + [anon_sym___bridge] = ACTIONS(2995), + [anon_sym___bridge_retained] = ACTIONS(2995), + [anon_sym___bridge_transfer] = ACTIONS(2995), + [anon_sym___complex] = ACTIONS(2995), + [anon_sym___const] = ACTIONS(2995), + [anon_sym___imag] = ACTIONS(2995), + [anon_sym___kindof] = ACTIONS(2995), + [anon_sym___nonnull] = ACTIONS(2995), + [anon_sym___nullable] = ACTIONS(2995), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2995), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2995), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2995), + [anon_sym___real] = ACTIONS(2995), + [anon_sym___strong] = ACTIONS(2995), + [anon_sym___unsafe_unretained] = ACTIONS(2995), + [anon_sym___unused] = ACTIONS(2995), + [anon_sym___weak] = ACTIONS(2995), + [anon_sym_alignas] = ACTIONS(2995), + [anon_sym__Alignas] = ACTIONS(2995), + [sym_primitive_type] = ACTIONS(2995), + [anon_sym_enum] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2995), + [anon_sym_union] = ACTIONS(2995), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2995), + [anon_sym___typeof] = ACTIONS(2995), + [anon_sym_typeof] = ACTIONS(2995), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2995), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2995), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2995), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2995), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2995), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2995), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2995), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2995), + [anon_sym_NS_AVAILABLE] = ACTIONS(2995), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2995), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_API_AVAILABLE] = ACTIONS(2995), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_API_DEPRECATED] = ACTIONS(2995), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2995), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2995), + [anon_sym___deprecated_msg] = ACTIONS(2995), + [anon_sym___deprecated_enum_msg] = ACTIONS(2995), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2995), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2995), + [anon_sym_ATproperty] = ACTIONS(3000), + [anon_sym_BOOL] = ACTIONS(2995), + [anon_sym_IMP] = ACTIONS(2995), + [anon_sym_SEL] = ACTIONS(2995), + [anon_sym_Class] = ACTIONS(2995), + [anon_sym_id] = ACTIONS(2995), + }, + [2878] = { + [sym_identifier] = ACTIONS(6756), + [anon_sym___extension__] = ACTIONS(6756), + [anon_sym_extern] = ACTIONS(6756), + [anon_sym___attribute__] = ACTIONS(6756), + [anon_sym___attribute] = ACTIONS(6756), + [anon_sym_noreturn] = ACTIONS(6756), + [anon_sym_LBRACK] = ACTIONS(7023), + [anon_sym___declspec] = ACTIONS(6756), + [anon_sym_LBRACE] = ACTIONS(7023), + [anon_sym_signed] = ACTIONS(6756), + [anon_sym_unsigned] = ACTIONS(6756), + [anon_sym_long] = ACTIONS(6756), + [anon_sym_short] = ACTIONS(6756), + [anon_sym_static] = ACTIONS(6756), + [anon_sym_ATautoreleasepool] = ACTIONS(7023), + [anon_sym_auto] = ACTIONS(6756), + [anon_sym_register] = ACTIONS(6756), + [anon_sym_inline] = ACTIONS(6756), + [anon_sym___inline] = ACTIONS(6756), + [anon_sym___inline__] = ACTIONS(6756), + [anon_sym___forceinline] = ACTIONS(6756), + [anon_sym_thread_local] = ACTIONS(6756), + [anon_sym___thread] = ACTIONS(6756), + [anon_sym_CG_EXTERN] = ACTIONS(6756), + [anon_sym_CG_INLINE] = ACTIONS(6756), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6756), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6756), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6756), + [anon_sym_IBOutlet] = ACTIONS(6756), + [anon_sym_IBInspectable] = ACTIONS(6756), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6756), + [anon_sym_NS_INLINE] = ACTIONS(6756), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6756), + [anon_sym_OBJC_EXPORT] = ACTIONS(6756), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6756), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6756), + [anon_sym_const] = ACTIONS(6756), + [anon_sym_constexpr] = ACTIONS(6756), + [anon_sym_volatile] = ACTIONS(6756), + [anon_sym_restrict] = ACTIONS(6756), + [anon_sym___restrict__] = ACTIONS(6756), + [anon_sym__Atomic] = ACTIONS(6756), + [anon_sym__Noreturn] = ACTIONS(6756), + [anon_sym__Nonnull] = ACTIONS(6756), + [anon_sym_nullable] = ACTIONS(6756), + [anon_sym__Complex] = ACTIONS(6756), + [anon_sym__Nullable] = ACTIONS(6756), + [anon_sym__Nullable_result] = ACTIONS(6756), + [anon_sym__Null_unspecified] = ACTIONS(6756), + [anon_sym___autoreleasing] = ACTIONS(6756), + [anon_sym___block] = ACTIONS(6756), + [anon_sym___bridge] = ACTIONS(6756), + [anon_sym___bridge_retained] = ACTIONS(6756), + [anon_sym___bridge_transfer] = ACTIONS(6756), + [anon_sym___complex] = ACTIONS(6756), + [anon_sym___const] = ACTIONS(6756), + [anon_sym___imag] = ACTIONS(6756), + [anon_sym___kindof] = ACTIONS(6756), + [anon_sym___nonnull] = ACTIONS(6756), + [anon_sym___nullable] = ACTIONS(6756), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6756), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6756), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6756), + [anon_sym___real] = ACTIONS(6756), + [anon_sym___strong] = ACTIONS(6756), + [anon_sym___unsafe_unretained] = ACTIONS(6756), + [anon_sym___unused] = ACTIONS(6756), + [anon_sym___weak] = ACTIONS(6756), + [anon_sym_alignas] = ACTIONS(6756), + [anon_sym__Alignas] = ACTIONS(6756), + [sym_primitive_type] = ACTIONS(6756), + [anon_sym_enum] = ACTIONS(6756), + [anon_sym_struct] = ACTIONS(6756), + [anon_sym_union] = ACTIONS(6756), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6756), + [anon_sym___typeof] = ACTIONS(6756), + [anon_sym_typeof] = ACTIONS(6756), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6756), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6756), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6756), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6756), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6756), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6756), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6756), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6756), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6756), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6756), + [anon_sym_NS_AVAILABLE] = ACTIONS(6756), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6756), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6756), + [anon_sym_API_AVAILABLE] = ACTIONS(6756), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6756), + [anon_sym_API_DEPRECATED] = ACTIONS(6756), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6756), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6756), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6756), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6756), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6756), + [anon_sym___deprecated_msg] = ACTIONS(6756), + [anon_sym___deprecated_enum_msg] = ACTIONS(6756), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6756), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6756), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6756), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6756), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6756), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6756), + [anon_sym_BOOL] = ACTIONS(6756), + [anon_sym_IMP] = ACTIONS(6756), + [anon_sym_SEL] = ACTIONS(6756), + [anon_sym_Class] = ACTIONS(6756), + [anon_sym_id] = ACTIONS(6756), + }, + [2879] = { + [sym__declaration_modifiers] = STATE(2879), + [sym_attribute_specifier] = STATE(2879), + [sym_attribute_declaration] = STATE(2879), + [sym_ms_declspec_modifier] = STATE(2879), + [sym_storage_class_specifier] = STATE(2879), + [sym_type_qualifier] = STATE(2879), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2879), + [aux_sym__declaration_specifiers_repeat1] = STATE(2879), + [anon_sym_COMMA] = ACTIONS(5150), + [anon_sym_RPAREN] = ACTIONS(5150), + [anon_sym_LPAREN2] = ACTIONS(5150), + [anon_sym_STAR] = ACTIONS(5150), + [anon_sym_CARET] = ACTIONS(5150), + [anon_sym_GT] = ACTIONS(5150), + [anon_sym_SEMI] = ACTIONS(5150), + [anon_sym___extension__] = ACTIONS(7025), + [anon_sym_extern] = ACTIONS(7028), + [anon_sym___attribute__] = ACTIONS(7031), + [anon_sym___attribute] = ACTIONS(5158), + [anon_sym_noreturn] = ACTIONS(7025), + [anon_sym_LBRACK] = ACTIONS(7034), + [anon_sym___declspec] = ACTIONS(7037), + [anon_sym_LBRACE] = ACTIONS(5150), + [anon_sym_static] = ACTIONS(7028), + [anon_sym_ATautoreleasepool] = ACTIONS(5150), + [anon_sym_auto] = ACTIONS(7028), + [anon_sym_register] = ACTIONS(7028), + [anon_sym_inline] = ACTIONS(7028), + [anon_sym___inline] = ACTIONS(5155), + [anon_sym___inline__] = ACTIONS(7028), + [anon_sym___forceinline] = ACTIONS(7028), + [anon_sym_thread_local] = ACTIONS(7028), + [anon_sym___thread] = ACTIONS(7028), + [anon_sym_CG_EXTERN] = ACTIONS(7028), + [anon_sym_CG_INLINE] = ACTIONS(7028), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7028), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7028), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7028), + [anon_sym_IBOutlet] = ACTIONS(7028), + [anon_sym_IBInspectable] = ACTIONS(7028), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7028), + [anon_sym_NS_INLINE] = ACTIONS(7028), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7028), + [anon_sym_OBJC_EXPORT] = ACTIONS(7028), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7028), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7028), + [anon_sym_const] = ACTIONS(5152), + [anon_sym_constexpr] = ACTIONS(7025), + [anon_sym_volatile] = ACTIONS(7025), + [anon_sym_restrict] = ACTIONS(7025), + [anon_sym___restrict__] = ACTIONS(7025), + [anon_sym__Atomic] = ACTIONS(7025), + [anon_sym__Noreturn] = ACTIONS(7025), + [anon_sym__Nonnull] = ACTIONS(7025), + [anon_sym_nullable] = ACTIONS(7025), + [anon_sym__Complex] = ACTIONS(7025), + [anon_sym__Nullable] = ACTIONS(5152), + [anon_sym__Nullable_result] = ACTIONS(7025), + [anon_sym__Null_unspecified] = ACTIONS(7025), + [anon_sym___autoreleasing] = ACTIONS(7025), + [anon_sym___block] = ACTIONS(7025), + [anon_sym___bridge] = ACTIONS(5152), + [anon_sym___bridge_retained] = ACTIONS(7025), + [anon_sym___bridge_transfer] = ACTIONS(7025), + [anon_sym___complex] = ACTIONS(7025), + [anon_sym___const] = ACTIONS(7025), + [anon_sym___imag] = ACTIONS(7025), + [anon_sym___kindof] = ACTIONS(7025), + [anon_sym___nonnull] = ACTIONS(7025), + [anon_sym___nullable] = ACTIONS(7025), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7025), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7025), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7025), + [anon_sym___real] = ACTIONS(7025), + [anon_sym___strong] = ACTIONS(7025), + [anon_sym___unsafe_unretained] = ACTIONS(7025), + [anon_sym___unused] = ACTIONS(7025), + [anon_sym___weak] = ACTIONS(7025), + [anon_sym_alignas] = ACTIONS(7040), + [anon_sym__Alignas] = ACTIONS(7040), + [anon_sym_COLON] = ACTIONS(5150), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7043), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7043), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7043), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7043), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7043), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7043), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7043), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7043), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7043), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7046), + [anon_sym_NS_AVAILABLE] = ACTIONS(5173), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7046), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7046), + [anon_sym_API_AVAILABLE] = ACTIONS(7046), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7046), + [anon_sym_API_DEPRECATED] = ACTIONS(7046), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7046), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7046), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7046), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7046), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7046), + [anon_sym___deprecated_msg] = ACTIONS(7046), + [anon_sym___deprecated_enum_msg] = ACTIONS(7046), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7046), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7046), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7046), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7046), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7046), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7046), + }, + [2880] = { + [sym__declaration_modifiers] = STATE(6263), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(6263), + [sym_ms_declspec_modifier] = STATE(6263), + [sym_storage_class_specifier] = STATE(6263), + [sym_type_qualifier] = STATE(6263), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3198), + [sym_gnu_asm_expression] = STATE(3135), + [sym_availability_attribute_specifier] = STATE(6263), + [aux_sym_declaration_repeat1] = STATE(3136), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(7003), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_in] = ACTIONS(7049), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2881] = { + [sym__declaration_modifiers] = STATE(6263), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(6263), + [sym_ms_declspec_modifier] = STATE(6263), + [sym_storage_class_specifier] = STATE(6263), + [sym_type_qualifier] = STATE(6263), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3198), + [sym_gnu_asm_expression] = STATE(3135), + [sym_availability_attribute_specifier] = STATE(6263), + [aux_sym_declaration_repeat1] = STATE(3136), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(7003), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_in] = ACTIONS(7051), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2882] = { + [sym__declaration_modifiers] = STATE(6263), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(6263), + [sym_ms_declspec_modifier] = STATE(6263), + [sym_storage_class_specifier] = STATE(6263), + [sym_type_qualifier] = STATE(6263), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3198), + [sym_gnu_asm_expression] = STATE(3135), + [sym_availability_attribute_specifier] = STATE(6263), + [aux_sym_declaration_repeat1] = STATE(3136), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(7003), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_in] = ACTIONS(7053), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2883] = { + [sym_identifier] = ACTIONS(7055), + [anon_sym___extension__] = ACTIONS(7055), + [anon_sym_extern] = ACTIONS(7055), + [anon_sym___attribute__] = ACTIONS(7055), + [anon_sym___attribute] = ACTIONS(7055), + [anon_sym_noreturn] = ACTIONS(7055), + [anon_sym_LBRACK] = ACTIONS(7057), + [anon_sym___declspec] = ACTIONS(7055), + [anon_sym_LBRACE] = ACTIONS(7057), + [anon_sym_signed] = ACTIONS(7055), + [anon_sym_unsigned] = ACTIONS(7055), + [anon_sym_long] = ACTIONS(7055), + [anon_sym_short] = ACTIONS(7055), + [anon_sym_static] = ACTIONS(7055), + [anon_sym_ATautoreleasepool] = ACTIONS(7057), + [anon_sym_auto] = ACTIONS(7055), + [anon_sym_register] = ACTIONS(7055), + [anon_sym_inline] = ACTIONS(7055), + [anon_sym___inline] = ACTIONS(7055), + [anon_sym___inline__] = ACTIONS(7055), + [anon_sym___forceinline] = ACTIONS(7055), + [anon_sym_thread_local] = ACTIONS(7055), + [anon_sym___thread] = ACTIONS(7055), + [anon_sym_CG_EXTERN] = ACTIONS(7055), + [anon_sym_CG_INLINE] = ACTIONS(7055), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7055), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7055), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7055), + [anon_sym_IBOutlet] = ACTIONS(7055), + [anon_sym_IBInspectable] = ACTIONS(7055), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7055), + [anon_sym_NS_INLINE] = ACTIONS(7055), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7055), + [anon_sym_OBJC_EXPORT] = ACTIONS(7055), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7055), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7055), + [anon_sym_const] = ACTIONS(7055), + [anon_sym_constexpr] = ACTIONS(7055), + [anon_sym_volatile] = ACTIONS(7055), + [anon_sym_restrict] = ACTIONS(7055), + [anon_sym___restrict__] = ACTIONS(7055), + [anon_sym__Atomic] = ACTIONS(7055), + [anon_sym__Noreturn] = ACTIONS(7055), + [anon_sym__Nonnull] = ACTIONS(7055), + [anon_sym_nullable] = ACTIONS(7055), + [anon_sym__Complex] = ACTIONS(7055), + [anon_sym__Nullable] = ACTIONS(7055), + [anon_sym__Nullable_result] = ACTIONS(7055), + [anon_sym__Null_unspecified] = ACTIONS(7055), + [anon_sym___autoreleasing] = ACTIONS(7055), + [anon_sym___block] = ACTIONS(7055), + [anon_sym___bridge] = ACTIONS(7055), + [anon_sym___bridge_retained] = ACTIONS(7055), + [anon_sym___bridge_transfer] = ACTIONS(7055), + [anon_sym___complex] = ACTIONS(7055), + [anon_sym___const] = ACTIONS(7055), + [anon_sym___imag] = ACTIONS(7055), + [anon_sym___kindof] = ACTIONS(7055), + [anon_sym___nonnull] = ACTIONS(7055), + [anon_sym___nullable] = ACTIONS(7055), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7055), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7055), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7055), + [anon_sym___real] = ACTIONS(7055), + [anon_sym___strong] = ACTIONS(7055), + [anon_sym___unsafe_unretained] = ACTIONS(7055), + [anon_sym___unused] = ACTIONS(7055), + [anon_sym___weak] = ACTIONS(7055), + [anon_sym_alignas] = ACTIONS(7055), + [anon_sym__Alignas] = ACTIONS(7055), + [sym_primitive_type] = ACTIONS(7055), + [anon_sym_enum] = ACTIONS(7055), + [anon_sym_struct] = ACTIONS(7055), + [anon_sym_union] = ACTIONS(7055), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7055), + [anon_sym___typeof] = ACTIONS(7055), + [anon_sym_typeof] = ACTIONS(7055), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7055), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7055), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7055), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7055), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7055), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7055), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7055), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7055), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7055), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7055), + [anon_sym_NS_AVAILABLE] = ACTIONS(7055), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7055), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7055), + [anon_sym_API_AVAILABLE] = ACTIONS(7055), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7055), + [anon_sym_API_DEPRECATED] = ACTIONS(7055), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7055), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7055), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7055), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7055), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7055), + [anon_sym___deprecated_msg] = ACTIONS(7055), + [anon_sym___deprecated_enum_msg] = ACTIONS(7055), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7055), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7055), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7055), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7055), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7055), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7055), + [anon_sym_BOOL] = ACTIONS(7055), + [anon_sym_IMP] = ACTIONS(7055), + [anon_sym_SEL] = ACTIONS(7055), + [anon_sym_Class] = ACTIONS(7055), + [anon_sym_id] = ACTIONS(7055), + }, + [2884] = { + [sym__declaration_modifiers] = STATE(2875), + [sym_attribute_specifier] = STATE(2875), + [sym_attribute_declaration] = STATE(2875), + [sym_ms_declspec_modifier] = STATE(2875), + [sym_storage_class_specifier] = STATE(2875), + [sym_type_qualifier] = STATE(2875), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2875), + [aux_sym__declaration_specifiers_repeat1] = STATE(2875), + [sym_identifier] = ACTIONS(7059), + [anon_sym_COMMA] = ACTIONS(7061), + [anon_sym_RPAREN] = ACTIONS(7061), + [anon_sym_LPAREN2] = ACTIONS(7061), + [anon_sym_STAR] = ACTIONS(7061), + [anon_sym_CARET] = ACTIONS(7061), + [anon_sym_SEMI] = ACTIONS(7061), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(7011), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(7059), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [anon_sym_enum] = ACTIONS(7059), + [anon_sym_COLON] = ACTIONS(7061), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2885] = { + [sym__declaration_modifiers] = STATE(6263), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(6263), + [sym_ms_declspec_modifier] = STATE(6263), + [sym_storage_class_specifier] = STATE(6263), + [sym_type_qualifier] = STATE(6263), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3198), + [sym_gnu_asm_expression] = STATE(3135), + [sym_availability_attribute_specifier] = STATE(6263), + [aux_sym_declaration_repeat1] = STATE(3136), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(7003), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_in] = ACTIONS(7063), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2886] = { + [sym__declaration_modifiers] = STATE(6263), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(6263), + [sym_ms_declspec_modifier] = STATE(6263), + [sym_storage_class_specifier] = STATE(6263), + [sym_type_qualifier] = STATE(6263), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3198), + [sym_gnu_asm_expression] = STATE(3135), + [sym_availability_attribute_specifier] = STATE(6263), + [aux_sym_declaration_repeat1] = STATE(3136), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(7003), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_in] = ACTIONS(7065), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2887] = { + [sym_identifier] = ACTIONS(7067), + [anon_sym___extension__] = ACTIONS(7067), + [anon_sym_extern] = ACTIONS(7067), + [anon_sym___attribute__] = ACTIONS(7067), + [anon_sym___attribute] = ACTIONS(7067), + [anon_sym_noreturn] = ACTIONS(7067), + [anon_sym_LBRACK] = ACTIONS(7069), + [anon_sym___declspec] = ACTIONS(7067), + [anon_sym_LBRACE] = ACTIONS(7069), + [anon_sym_signed] = ACTIONS(7067), + [anon_sym_unsigned] = ACTIONS(7067), + [anon_sym_long] = ACTIONS(7067), + [anon_sym_short] = ACTIONS(7067), + [anon_sym_static] = ACTIONS(7067), + [anon_sym_ATautoreleasepool] = ACTIONS(7069), + [anon_sym_auto] = ACTIONS(7067), + [anon_sym_register] = ACTIONS(7067), + [anon_sym_inline] = ACTIONS(7067), + [anon_sym___inline] = ACTIONS(7067), + [anon_sym___inline__] = ACTIONS(7067), + [anon_sym___forceinline] = ACTIONS(7067), + [anon_sym_thread_local] = ACTIONS(7067), + [anon_sym___thread] = ACTIONS(7067), + [anon_sym_CG_EXTERN] = ACTIONS(7067), + [anon_sym_CG_INLINE] = ACTIONS(7067), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7067), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7067), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7067), + [anon_sym_IBOutlet] = ACTIONS(7067), + [anon_sym_IBInspectable] = ACTIONS(7067), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7067), + [anon_sym_NS_INLINE] = ACTIONS(7067), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7067), + [anon_sym_OBJC_EXPORT] = ACTIONS(7067), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7067), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7067), + [anon_sym_const] = ACTIONS(7067), + [anon_sym_constexpr] = ACTIONS(7067), + [anon_sym_volatile] = ACTIONS(7067), + [anon_sym_restrict] = ACTIONS(7067), + [anon_sym___restrict__] = ACTIONS(7067), + [anon_sym__Atomic] = ACTIONS(7067), + [anon_sym__Noreturn] = ACTIONS(7067), + [anon_sym__Nonnull] = ACTIONS(7067), + [anon_sym_nullable] = ACTIONS(7067), + [anon_sym__Complex] = ACTIONS(7067), + [anon_sym__Nullable] = ACTIONS(7067), + [anon_sym__Nullable_result] = ACTIONS(7067), + [anon_sym__Null_unspecified] = ACTIONS(7067), + [anon_sym___autoreleasing] = ACTIONS(7067), + [anon_sym___block] = ACTIONS(7067), + [anon_sym___bridge] = ACTIONS(7067), + [anon_sym___bridge_retained] = ACTIONS(7067), + [anon_sym___bridge_transfer] = ACTIONS(7067), + [anon_sym___complex] = ACTIONS(7067), + [anon_sym___const] = ACTIONS(7067), + [anon_sym___imag] = ACTIONS(7067), + [anon_sym___kindof] = ACTIONS(7067), + [anon_sym___nonnull] = ACTIONS(7067), + [anon_sym___nullable] = ACTIONS(7067), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7067), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7067), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7067), + [anon_sym___real] = ACTIONS(7067), + [anon_sym___strong] = ACTIONS(7067), + [anon_sym___unsafe_unretained] = ACTIONS(7067), + [anon_sym___unused] = ACTIONS(7067), + [anon_sym___weak] = ACTIONS(7067), + [anon_sym_alignas] = ACTIONS(7067), + [anon_sym__Alignas] = ACTIONS(7067), + [sym_primitive_type] = ACTIONS(7067), + [anon_sym_enum] = ACTIONS(7067), + [anon_sym_struct] = ACTIONS(7067), + [anon_sym_union] = ACTIONS(7067), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7067), + [anon_sym___typeof] = ACTIONS(7067), + [anon_sym_typeof] = ACTIONS(7067), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7067), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7067), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7067), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7067), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7067), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7067), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7067), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7067), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7067), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7067), + [anon_sym_NS_AVAILABLE] = ACTIONS(7067), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7067), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7067), + [anon_sym_API_AVAILABLE] = ACTIONS(7067), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7067), + [anon_sym_API_DEPRECATED] = ACTIONS(7067), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7067), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7067), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7067), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7067), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7067), + [anon_sym___deprecated_msg] = ACTIONS(7067), + [anon_sym___deprecated_enum_msg] = ACTIONS(7067), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7067), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7067), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7067), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7067), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7067), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7067), + [anon_sym_BOOL] = ACTIONS(7067), + [anon_sym_IMP] = ACTIONS(7067), + [anon_sym_SEL] = ACTIONS(7067), + [anon_sym_Class] = ACTIONS(7067), + [anon_sym_id] = ACTIONS(7067), + }, + [2888] = { + [sym__declaration_modifiers] = STATE(6263), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(6263), + [sym_ms_declspec_modifier] = STATE(6263), + [sym_storage_class_specifier] = STATE(6263), + [sym_type_qualifier] = STATE(6263), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3198), + [sym_gnu_asm_expression] = STATE(3135), + [sym_availability_attribute_specifier] = STATE(6263), + [aux_sym_declaration_repeat1] = STATE(3136), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(7003), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_in] = ACTIONS(7071), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2889] = { + [sym_identifier] = ACTIONS(2995), + [anon_sym___extension__] = ACTIONS(2995), + [anon_sym_typedef] = ACTIONS(6965), + [anon_sym_extern] = ACTIONS(2995), + [anon_sym___attribute__] = ACTIONS(2995), + [anon_sym___attribute] = ACTIONS(2995), + [anon_sym_noreturn] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3000), + [anon_sym___declspec] = ACTIONS(2995), + [anon_sym_signed] = ACTIONS(2995), + [anon_sym_unsigned] = ACTIONS(2995), + [anon_sym_long] = ACTIONS(2995), + [anon_sym_short] = ACTIONS(2995), + [anon_sym_static] = ACTIONS(2995), + [anon_sym_auto] = ACTIONS(2995), + [anon_sym_register] = ACTIONS(2995), + [anon_sym_inline] = ACTIONS(2995), + [anon_sym___inline] = ACTIONS(2995), + [anon_sym___inline__] = ACTIONS(2995), + [anon_sym___forceinline] = ACTIONS(2995), + [anon_sym_thread_local] = ACTIONS(2995), + [anon_sym___thread] = ACTIONS(2995), + [anon_sym_CG_EXTERN] = ACTIONS(2995), + [anon_sym_CG_INLINE] = ACTIONS(2995), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2995), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2995), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2995), + [anon_sym_IBOutlet] = ACTIONS(2995), + [anon_sym_IBInspectable] = ACTIONS(2995), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2995), + [anon_sym_NS_INLINE] = ACTIONS(2995), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2995), + [anon_sym_OBJC_EXPORT] = ACTIONS(2995), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2995), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2995), + [anon_sym_const] = ACTIONS(2995), + [anon_sym_constexpr] = ACTIONS(2995), + [anon_sym_volatile] = ACTIONS(2995), + [anon_sym_restrict] = ACTIONS(2995), + [anon_sym___restrict__] = ACTIONS(2995), + [anon_sym__Atomic] = ACTIONS(2995), + [anon_sym__Noreturn] = ACTIONS(2995), + [anon_sym__Nonnull] = ACTIONS(2995), + [anon_sym_nullable] = ACTIONS(2995), + [anon_sym__Complex] = ACTIONS(2995), + [anon_sym__Nullable] = ACTIONS(2995), + [anon_sym__Nullable_result] = ACTIONS(2995), + [anon_sym__Null_unspecified] = ACTIONS(2995), + [anon_sym___autoreleasing] = ACTIONS(2995), + [anon_sym___block] = ACTIONS(2995), + [anon_sym___bridge] = ACTIONS(2995), + [anon_sym___bridge_retained] = ACTIONS(2995), + [anon_sym___bridge_transfer] = ACTIONS(2995), + [anon_sym___complex] = ACTIONS(2995), + [anon_sym___const] = ACTIONS(2995), + [anon_sym___imag] = ACTIONS(2995), + [anon_sym___kindof] = ACTIONS(2995), + [anon_sym___nonnull] = ACTIONS(2995), + [anon_sym___nullable] = ACTIONS(2995), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2995), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2995), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2995), + [anon_sym___real] = ACTIONS(2995), + [anon_sym___strong] = ACTIONS(2995), + [anon_sym___unsafe_unretained] = ACTIONS(2995), + [anon_sym___unused] = ACTIONS(2995), + [anon_sym___weak] = ACTIONS(2995), + [anon_sym_alignas] = ACTIONS(2995), + [anon_sym__Alignas] = ACTIONS(2995), + [sym_primitive_type] = ACTIONS(2995), + [anon_sym_enum] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2995), + [anon_sym_union] = ACTIONS(2995), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2995), + [anon_sym___typeof] = ACTIONS(2995), + [anon_sym_typeof] = ACTIONS(2995), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2995), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2995), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2995), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2995), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2995), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2995), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2995), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2995), + [anon_sym_NS_AVAILABLE] = ACTIONS(2995), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2995), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_API_AVAILABLE] = ACTIONS(2995), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_API_DEPRECATED] = ACTIONS(2995), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2995), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2995), + [anon_sym___deprecated_msg] = ACTIONS(2995), + [anon_sym___deprecated_enum_msg] = ACTIONS(2995), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2995), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2995), + [anon_sym_ATproperty] = ACTIONS(3000), + [anon_sym_BOOL] = ACTIONS(2995), + [anon_sym_IMP] = ACTIONS(2995), + [anon_sym_SEL] = ACTIONS(2995), + [anon_sym_Class] = ACTIONS(2995), + [anon_sym_id] = ACTIONS(2995), + }, + [2890] = { + [sym_identifier] = ACTIONS(2995), + [anon_sym___extension__] = ACTIONS(2995), + [anon_sym_typedef] = ACTIONS(6967), + [anon_sym_extern] = ACTIONS(2995), + [anon_sym___attribute__] = ACTIONS(2995), + [anon_sym___attribute] = ACTIONS(2995), + [anon_sym_noreturn] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3000), + [anon_sym___declspec] = ACTIONS(2995), + [anon_sym_signed] = ACTIONS(2995), + [anon_sym_unsigned] = ACTIONS(2995), + [anon_sym_long] = ACTIONS(2995), + [anon_sym_short] = ACTIONS(2995), + [anon_sym_static] = ACTIONS(2995), + [anon_sym_auto] = ACTIONS(2995), + [anon_sym_register] = ACTIONS(2995), + [anon_sym_inline] = ACTIONS(2995), + [anon_sym___inline] = ACTIONS(2995), + [anon_sym___inline__] = ACTIONS(2995), + [anon_sym___forceinline] = ACTIONS(2995), + [anon_sym_thread_local] = ACTIONS(2995), + [anon_sym___thread] = ACTIONS(2995), + [anon_sym_CG_EXTERN] = ACTIONS(2995), + [anon_sym_CG_INLINE] = ACTIONS(2995), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2995), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2995), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2995), + [anon_sym_IBOutlet] = ACTIONS(2995), + [anon_sym_IBInspectable] = ACTIONS(2995), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2995), + [anon_sym_NS_INLINE] = ACTIONS(2995), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2995), + [anon_sym_OBJC_EXPORT] = ACTIONS(2995), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2995), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2995), + [anon_sym_const] = ACTIONS(2995), + [anon_sym_constexpr] = ACTIONS(2995), + [anon_sym_volatile] = ACTIONS(2995), + [anon_sym_restrict] = ACTIONS(2995), + [anon_sym___restrict__] = ACTIONS(2995), + [anon_sym__Atomic] = ACTIONS(2995), + [anon_sym__Noreturn] = ACTIONS(2995), + [anon_sym__Nonnull] = ACTIONS(2995), + [anon_sym_nullable] = ACTIONS(2995), + [anon_sym__Complex] = ACTIONS(2995), + [anon_sym__Nullable] = ACTIONS(2995), + [anon_sym__Nullable_result] = ACTIONS(2995), + [anon_sym__Null_unspecified] = ACTIONS(2995), + [anon_sym___autoreleasing] = ACTIONS(2995), + [anon_sym___block] = ACTIONS(2995), + [anon_sym___bridge] = ACTIONS(2995), + [anon_sym___bridge_retained] = ACTIONS(2995), + [anon_sym___bridge_transfer] = ACTIONS(2995), + [anon_sym___complex] = ACTIONS(2995), + [anon_sym___const] = ACTIONS(2995), + [anon_sym___imag] = ACTIONS(2995), + [anon_sym___kindof] = ACTIONS(2995), + [anon_sym___nonnull] = ACTIONS(2995), + [anon_sym___nullable] = ACTIONS(2995), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2995), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2995), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2995), + [anon_sym___real] = ACTIONS(2995), + [anon_sym___strong] = ACTIONS(2995), + [anon_sym___unsafe_unretained] = ACTIONS(2995), + [anon_sym___unused] = ACTIONS(2995), + [anon_sym___weak] = ACTIONS(2995), + [anon_sym_alignas] = ACTIONS(2995), + [anon_sym__Alignas] = ACTIONS(2995), + [sym_primitive_type] = ACTIONS(2995), + [anon_sym_enum] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2995), + [anon_sym_union] = ACTIONS(2995), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2995), + [anon_sym___typeof] = ACTIONS(2995), + [anon_sym_typeof] = ACTIONS(2995), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2995), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2995), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2995), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2995), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2995), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2995), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2995), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2995), + [anon_sym_NS_AVAILABLE] = ACTIONS(2995), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2995), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_API_AVAILABLE] = ACTIONS(2995), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_API_DEPRECATED] = ACTIONS(2995), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2995), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2995), + [anon_sym___deprecated_msg] = ACTIONS(2995), + [anon_sym___deprecated_enum_msg] = ACTIONS(2995), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2995), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2995), + [anon_sym_ATproperty] = ACTIONS(3000), + [anon_sym_BOOL] = ACTIONS(2995), + [anon_sym_IMP] = ACTIONS(2995), + [anon_sym_SEL] = ACTIONS(2995), + [anon_sym_Class] = ACTIONS(2995), + [anon_sym_id] = ACTIONS(2995), + }, + [2891] = { + [sym_attribute_specifier] = STATE(2971), + [sym_field_declaration_list] = STATE(2935), + [sym_identifier] = ACTIONS(7073), + [anon_sym_COMMA] = ACTIONS(7075), + [anon_sym_RPAREN] = ACTIONS(7075), + [anon_sym_LPAREN2] = ACTIONS(7075), + [anon_sym_STAR] = ACTIONS(7075), + [anon_sym_CARET] = ACTIONS(7075), + [anon_sym_SEMI] = ACTIONS(7075), + [anon_sym___extension__] = ACTIONS(7073), + [anon_sym_extern] = ACTIONS(7073), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(7073), + [anon_sym_LBRACK] = ACTIONS(7075), + [anon_sym___declspec] = ACTIONS(7073), + [anon_sym___based] = ACTIONS(7073), + [anon_sym_LBRACE] = ACTIONS(7077), + [anon_sym_signed] = ACTIONS(7073), + [anon_sym_unsigned] = ACTIONS(7073), + [anon_sym_long] = ACTIONS(7073), + [anon_sym_short] = ACTIONS(7073), + [anon_sym_static] = ACTIONS(7073), + [anon_sym_auto] = ACTIONS(7073), + [anon_sym_register] = ACTIONS(7073), + [anon_sym_inline] = ACTIONS(7073), + [anon_sym___inline] = ACTIONS(7073), + [anon_sym___inline__] = ACTIONS(7073), + [anon_sym___forceinline] = ACTIONS(7073), + [anon_sym_thread_local] = ACTIONS(7073), + [anon_sym___thread] = ACTIONS(7073), + [anon_sym_CG_EXTERN] = ACTIONS(7073), + [anon_sym_CG_INLINE] = ACTIONS(7073), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7073), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7073), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7073), + [anon_sym_IBOutlet] = ACTIONS(7073), + [anon_sym_IBInspectable] = ACTIONS(7073), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7073), + [anon_sym_NS_INLINE] = ACTIONS(7073), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7073), + [anon_sym_OBJC_EXPORT] = ACTIONS(7073), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7073), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7073), + [anon_sym_const] = ACTIONS(7073), + [anon_sym_constexpr] = ACTIONS(7073), + [anon_sym_volatile] = ACTIONS(7073), + [anon_sym_restrict] = ACTIONS(7073), + [anon_sym___restrict__] = ACTIONS(7073), + [anon_sym__Atomic] = ACTIONS(7073), + [anon_sym__Noreturn] = ACTIONS(7073), + [anon_sym__Nonnull] = ACTIONS(7073), + [anon_sym_nullable] = ACTIONS(7073), + [anon_sym__Complex] = ACTIONS(7073), + [anon_sym__Nullable] = ACTIONS(7073), + [anon_sym__Nullable_result] = ACTIONS(7073), + [anon_sym__Null_unspecified] = ACTIONS(7073), + [anon_sym___autoreleasing] = ACTIONS(7073), + [anon_sym___block] = ACTIONS(7073), + [anon_sym___bridge] = ACTIONS(7073), + [anon_sym___bridge_retained] = ACTIONS(7073), + [anon_sym___bridge_transfer] = ACTIONS(7073), + [anon_sym___complex] = ACTIONS(7073), + [anon_sym___const] = ACTIONS(7073), + [anon_sym___imag] = ACTIONS(7073), + [anon_sym___kindof] = ACTIONS(7073), + [anon_sym___nonnull] = ACTIONS(7073), + [anon_sym___nullable] = ACTIONS(7073), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7073), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7073), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7073), + [anon_sym___real] = ACTIONS(7073), + [anon_sym___strong] = ACTIONS(7073), + [anon_sym___unsafe_unretained] = ACTIONS(7073), + [anon_sym___unused] = ACTIONS(7073), + [anon_sym___weak] = ACTIONS(7073), + [anon_sym_alignas] = ACTIONS(7073), + [anon_sym__Alignas] = ACTIONS(7073), + [sym_primitive_type] = ACTIONS(7073), + [anon_sym_enum] = ACTIONS(7073), + [anon_sym_COLON] = ACTIONS(7075), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7073), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7073), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7073), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7073), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7073), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7073), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7073), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7073), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7073), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7073), + [anon_sym_NS_AVAILABLE] = ACTIONS(7073), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7073), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7073), + [anon_sym_API_AVAILABLE] = ACTIONS(7073), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7073), + [anon_sym_API_DEPRECATED] = ACTIONS(7073), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7073), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7073), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7073), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7073), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7073), + [anon_sym___deprecated_msg] = ACTIONS(7073), + [anon_sym___deprecated_enum_msg] = ACTIONS(7073), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7073), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7073), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7073), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7073), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7073), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7073), + }, + [2892] = { + [sym__declaration_modifiers] = STATE(3126), + [sym_attribute_specifier] = STATE(3126), + [sym_attribute_declaration] = STATE(3126), + [sym_ms_declspec_modifier] = STATE(3126), + [sym_storage_class_specifier] = STATE(3126), + [sym_type_qualifier] = STATE(3126), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3126), + [sym_keyword_declarator] = STATE(3247), + [sym_method_parameter] = STATE(3245), + [aux_sym__declaration_specifiers_repeat1] = STATE(3126), + [aux_sym_keyword_selector_repeat1] = STATE(3247), + [aux_sym_method_declaration_repeat1] = STATE(3245), + [aux_sym_method_declaration_repeat2] = STATE(2349), + [sym_identifier] = ACTIONS(7079), + [anon_sym_COMMA] = ACTIONS(7081), + [anon_sym_SEMI] = ACTIONS(7083), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [anon_sym_COLON] = ACTIONS(7087), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2893] = { + [sym__declaration_modifiers] = STATE(3219), + [sym_attribute_specifier] = STATE(3219), + [sym_attribute_declaration] = STATE(3219), + [sym_ms_declspec_modifier] = STATE(3219), + [sym_storage_class_specifier] = STATE(3219), + [sym_type_qualifier] = STATE(3219), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3219), + [sym_keyword_declarator] = STATE(3247), + [sym_method_parameter] = STATE(3245), + [aux_sym__declaration_specifiers_repeat1] = STATE(3219), + [aux_sym_keyword_selector_repeat1] = STATE(3247), + [aux_sym_method_declaration_repeat1] = STATE(3245), + [aux_sym_method_declaration_repeat2] = STATE(2323), + [sym_identifier] = ACTIONS(7079), + [anon_sym_COMMA] = ACTIONS(7089), + [anon_sym_SEMI] = ACTIONS(7091), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [anon_sym_COLON] = ACTIONS(7087), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2894] = { + [sym__declaration_modifiers] = STATE(3100), + [sym_attribute_specifier] = STATE(3100), + [sym_attribute_declaration] = STATE(3100), + [sym_ms_declspec_modifier] = STATE(3100), + [sym_storage_class_specifier] = STATE(3100), + [sym_type_qualifier] = STATE(3100), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3100), + [sym_keyword_declarator] = STATE(3247), + [sym_method_parameter] = STATE(3245), + [aux_sym__declaration_specifiers_repeat1] = STATE(3100), + [aux_sym_keyword_selector_repeat1] = STATE(3247), + [aux_sym_method_declaration_repeat1] = STATE(3245), + [aux_sym_method_declaration_repeat2] = STATE(2142), + [sym_identifier] = ACTIONS(7079), + [anon_sym_COMMA] = ACTIONS(7093), + [anon_sym_SEMI] = ACTIONS(7095), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [anon_sym_COLON] = ACTIONS(7087), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2895] = { + [sym_attribute_specifier] = STATE(2953), + [sym_field_declaration_list] = STATE(2940), + [sym_identifier] = ACTIONS(7097), + [anon_sym_COMMA] = ACTIONS(7099), + [anon_sym_RPAREN] = ACTIONS(7099), + [anon_sym_LPAREN2] = ACTIONS(7099), + [anon_sym_STAR] = ACTIONS(7099), + [anon_sym_CARET] = ACTIONS(7099), + [anon_sym_SEMI] = ACTIONS(7099), + [anon_sym___extension__] = ACTIONS(7097), + [anon_sym_extern] = ACTIONS(7097), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(7097), + [anon_sym_LBRACK] = ACTIONS(7099), + [anon_sym___declspec] = ACTIONS(7097), + [anon_sym___based] = ACTIONS(7097), + [anon_sym_LBRACE] = ACTIONS(7077), + [anon_sym_signed] = ACTIONS(7097), + [anon_sym_unsigned] = ACTIONS(7097), + [anon_sym_long] = ACTIONS(7097), + [anon_sym_short] = ACTIONS(7097), + [anon_sym_static] = ACTIONS(7097), + [anon_sym_auto] = ACTIONS(7097), + [anon_sym_register] = ACTIONS(7097), + [anon_sym_inline] = ACTIONS(7097), + [anon_sym___inline] = ACTIONS(7097), + [anon_sym___inline__] = ACTIONS(7097), + [anon_sym___forceinline] = ACTIONS(7097), + [anon_sym_thread_local] = ACTIONS(7097), + [anon_sym___thread] = ACTIONS(7097), + [anon_sym_CG_EXTERN] = ACTIONS(7097), + [anon_sym_CG_INLINE] = ACTIONS(7097), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7097), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7097), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7097), + [anon_sym_IBOutlet] = ACTIONS(7097), + [anon_sym_IBInspectable] = ACTIONS(7097), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7097), + [anon_sym_NS_INLINE] = ACTIONS(7097), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7097), + [anon_sym_OBJC_EXPORT] = ACTIONS(7097), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7097), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7097), + [anon_sym_const] = ACTIONS(7097), + [anon_sym_constexpr] = ACTIONS(7097), + [anon_sym_volatile] = ACTIONS(7097), + [anon_sym_restrict] = ACTIONS(7097), + [anon_sym___restrict__] = ACTIONS(7097), + [anon_sym__Atomic] = ACTIONS(7097), + [anon_sym__Noreturn] = ACTIONS(7097), + [anon_sym__Nonnull] = ACTIONS(7097), + [anon_sym_nullable] = ACTIONS(7097), + [anon_sym__Complex] = ACTIONS(7097), + [anon_sym__Nullable] = ACTIONS(7097), + [anon_sym__Nullable_result] = ACTIONS(7097), + [anon_sym__Null_unspecified] = ACTIONS(7097), + [anon_sym___autoreleasing] = ACTIONS(7097), + [anon_sym___block] = ACTIONS(7097), + [anon_sym___bridge] = ACTIONS(7097), + [anon_sym___bridge_retained] = ACTIONS(7097), + [anon_sym___bridge_transfer] = ACTIONS(7097), + [anon_sym___complex] = ACTIONS(7097), + [anon_sym___const] = ACTIONS(7097), + [anon_sym___imag] = ACTIONS(7097), + [anon_sym___kindof] = ACTIONS(7097), + [anon_sym___nonnull] = ACTIONS(7097), + [anon_sym___nullable] = ACTIONS(7097), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7097), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7097), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7097), + [anon_sym___real] = ACTIONS(7097), + [anon_sym___strong] = ACTIONS(7097), + [anon_sym___unsafe_unretained] = ACTIONS(7097), + [anon_sym___unused] = ACTIONS(7097), + [anon_sym___weak] = ACTIONS(7097), + [anon_sym_alignas] = ACTIONS(7097), + [anon_sym__Alignas] = ACTIONS(7097), + [sym_primitive_type] = ACTIONS(7097), + [anon_sym_enum] = ACTIONS(7097), + [anon_sym_COLON] = ACTIONS(7099), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7097), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7097), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7097), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7097), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7097), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7097), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7097), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7097), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7097), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7097), + [anon_sym_NS_AVAILABLE] = ACTIONS(7097), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7097), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7097), + [anon_sym_API_AVAILABLE] = ACTIONS(7097), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7097), + [anon_sym_API_DEPRECATED] = ACTIONS(7097), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7097), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7097), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7097), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7097), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7097), + [anon_sym___deprecated_msg] = ACTIONS(7097), + [anon_sym___deprecated_enum_msg] = ACTIONS(7097), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7097), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7097), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7097), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7097), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7097), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7097), + }, + [2896] = { + [sym__declaration_modifiers] = STATE(6792), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(6792), + [sym_ms_declspec_modifier] = STATE(6792), + [sym_storage_class_specifier] = STATE(6792), + [sym_type_qualifier] = STATE(6792), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3030), + [sym_gnu_asm_expression] = STATE(3207), + [sym_availability_attribute_specifier] = STATE(6792), + [aux_sym_declaration_repeat1] = STATE(3208), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6924), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2897] = { + [sym__declaration_modifiers] = STATE(3181), + [sym_attribute_specifier] = STATE(3181), + [sym_attribute_declaration] = STATE(3181), + [sym_ms_declspec_modifier] = STATE(3181), + [sym_storage_class_specifier] = STATE(3181), + [sym_type_qualifier] = STATE(3181), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3181), + [sym_keyword_declarator] = STATE(3247), + [sym_method_parameter] = STATE(3245), + [aux_sym__declaration_specifiers_repeat1] = STATE(3181), + [aux_sym_keyword_selector_repeat1] = STATE(3247), + [aux_sym_method_declaration_repeat1] = STATE(3245), + [aux_sym_method_declaration_repeat2] = STATE(2250), + [sym_identifier] = ACTIONS(7079), + [anon_sym_COMMA] = ACTIONS(7101), + [anon_sym_SEMI] = ACTIONS(7103), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [anon_sym_COLON] = ACTIONS(7087), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2898] = { + [sym_ms_unaligned_ptr_modifier] = STATE(3015), + [sym_ms_pointer_modifier] = STATE(2898), + [aux_sym_pointer_declarator_repeat1] = STATE(2898), + [sym_identifier] = ACTIONS(7105), + [anon_sym_LPAREN2] = ACTIONS(7107), + [anon_sym_STAR] = ACTIONS(7107), + [anon_sym_CARET] = ACTIONS(7107), + [anon_sym___extension__] = ACTIONS(7105), + [anon_sym_extern] = ACTIONS(7105), + [anon_sym___attribute__] = ACTIONS(7105), + [anon_sym___attribute] = ACTIONS(7105), + [anon_sym_noreturn] = ACTIONS(7105), + [anon_sym_LBRACK] = ACTIONS(7107), + [anon_sym___declspec] = ACTIONS(7105), + [anon_sym___based] = ACTIONS(7105), + [sym_ms_restrict_modifier] = ACTIONS(7109), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7109), + [sym_ms_signed_ptr_modifier] = ACTIONS(7109), + [anon_sym__unaligned] = ACTIONS(7112), + [anon_sym___unaligned] = ACTIONS(7112), + [anon_sym_signed] = ACTIONS(7105), + [anon_sym_unsigned] = ACTIONS(7105), + [anon_sym_long] = ACTIONS(7105), + [anon_sym_short] = ACTIONS(7105), + [anon_sym_static] = ACTIONS(7105), + [anon_sym_auto] = ACTIONS(7105), + [anon_sym_register] = ACTIONS(7105), + [anon_sym_inline] = ACTIONS(7105), + [anon_sym___inline] = ACTIONS(7105), + [anon_sym___inline__] = ACTIONS(7105), + [anon_sym___forceinline] = ACTIONS(7105), + [anon_sym_thread_local] = ACTIONS(7105), + [anon_sym___thread] = ACTIONS(7105), + [anon_sym_CG_EXTERN] = ACTIONS(7105), + [anon_sym_CG_INLINE] = ACTIONS(7105), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7105), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7105), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7105), + [anon_sym_IBOutlet] = ACTIONS(7105), + [anon_sym_IBInspectable] = ACTIONS(7105), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7105), + [anon_sym_NS_INLINE] = ACTIONS(7105), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7105), + [anon_sym_OBJC_EXPORT] = ACTIONS(7105), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7105), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7105), + [anon_sym_const] = ACTIONS(7105), + [anon_sym_constexpr] = ACTIONS(7105), + [anon_sym_volatile] = ACTIONS(7105), + [anon_sym_restrict] = ACTIONS(7105), + [anon_sym___restrict__] = ACTIONS(7105), + [anon_sym__Atomic] = ACTIONS(7105), + [anon_sym__Noreturn] = ACTIONS(7105), + [anon_sym__Nonnull] = ACTIONS(7105), + [anon_sym_nullable] = ACTIONS(7105), + [anon_sym__Complex] = ACTIONS(7105), + [anon_sym__Nullable] = ACTIONS(7105), + [anon_sym__Nullable_result] = ACTIONS(7105), + [anon_sym__Null_unspecified] = ACTIONS(7105), + [anon_sym___autoreleasing] = ACTIONS(7105), + [anon_sym___block] = ACTIONS(7105), + [anon_sym___bridge] = ACTIONS(7105), + [anon_sym___bridge_retained] = ACTIONS(7105), + [anon_sym___bridge_transfer] = ACTIONS(7105), + [anon_sym___complex] = ACTIONS(7105), + [anon_sym___const] = ACTIONS(7105), + [anon_sym___imag] = ACTIONS(7105), + [anon_sym___kindof] = ACTIONS(7105), + [anon_sym___nonnull] = ACTIONS(7105), + [anon_sym___nullable] = ACTIONS(7105), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7105), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7105), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7105), + [anon_sym___real] = ACTIONS(7105), + [anon_sym___strong] = ACTIONS(7105), + [anon_sym___unsafe_unretained] = ACTIONS(7105), + [anon_sym___unused] = ACTIONS(7105), + [anon_sym___weak] = ACTIONS(7105), + [anon_sym_alignas] = ACTIONS(7105), + [anon_sym__Alignas] = ACTIONS(7105), + [sym_primitive_type] = ACTIONS(7105), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7105), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7105), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7105), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7105), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7105), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7105), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7105), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7105), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7105), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7105), + [anon_sym_NS_AVAILABLE] = ACTIONS(7105), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7105), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7105), + [anon_sym_API_AVAILABLE] = ACTIONS(7105), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7105), + [anon_sym_API_DEPRECATED] = ACTIONS(7105), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7105), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7105), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7105), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7105), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7105), + [anon_sym___deprecated_msg] = ACTIONS(7105), + [anon_sym___deprecated_enum_msg] = ACTIONS(7105), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7105), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7105), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7105), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7105), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7105), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7105), + }, + [2899] = { + [sym__declaration_modifiers] = STATE(3202), + [sym_attribute_specifier] = STATE(3202), + [sym_attribute_declaration] = STATE(3202), + [sym_ms_declspec_modifier] = STATE(3202), + [sym_storage_class_specifier] = STATE(3202), + [sym_type_qualifier] = STATE(3202), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3202), + [sym_keyword_declarator] = STATE(3247), + [sym_method_parameter] = STATE(3245), + [aux_sym__declaration_specifiers_repeat1] = STATE(3202), + [aux_sym_keyword_selector_repeat1] = STATE(3247), + [aux_sym_method_declaration_repeat1] = STATE(3245), + [aux_sym_method_declaration_repeat2] = STATE(2136), + [sym_identifier] = ACTIONS(7079), + [anon_sym_COMMA] = ACTIONS(7115), + [anon_sym_SEMI] = ACTIONS(7117), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [anon_sym_COLON] = ACTIONS(7087), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2900] = { + [sym_attribute_specifier] = STATE(3020), + [sym_field_declaration_list] = STATE(2943), + [sym_identifier] = ACTIONS(7119), + [anon_sym_COMMA] = ACTIONS(7121), + [anon_sym_RPAREN] = ACTIONS(7121), + [anon_sym_LPAREN2] = ACTIONS(7121), + [anon_sym_STAR] = ACTIONS(7121), + [anon_sym_CARET] = ACTIONS(7121), + [anon_sym_SEMI] = ACTIONS(7121), + [anon_sym___extension__] = ACTIONS(7119), + [anon_sym_extern] = ACTIONS(7119), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(7119), + [anon_sym_LBRACK] = ACTIONS(7121), + [anon_sym___declspec] = ACTIONS(7119), + [anon_sym___based] = ACTIONS(7119), + [anon_sym_LBRACE] = ACTIONS(7077), + [anon_sym_signed] = ACTIONS(7119), + [anon_sym_unsigned] = ACTIONS(7119), + [anon_sym_long] = ACTIONS(7119), + [anon_sym_short] = ACTIONS(7119), + [anon_sym_static] = ACTIONS(7119), + [anon_sym_auto] = ACTIONS(7119), + [anon_sym_register] = ACTIONS(7119), + [anon_sym_inline] = ACTIONS(7119), + [anon_sym___inline] = ACTIONS(7119), + [anon_sym___inline__] = ACTIONS(7119), + [anon_sym___forceinline] = ACTIONS(7119), + [anon_sym_thread_local] = ACTIONS(7119), + [anon_sym___thread] = ACTIONS(7119), + [anon_sym_CG_EXTERN] = ACTIONS(7119), + [anon_sym_CG_INLINE] = ACTIONS(7119), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7119), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7119), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7119), + [anon_sym_IBOutlet] = ACTIONS(7119), + [anon_sym_IBInspectable] = ACTIONS(7119), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7119), + [anon_sym_NS_INLINE] = ACTIONS(7119), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7119), + [anon_sym_OBJC_EXPORT] = ACTIONS(7119), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7119), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7119), + [anon_sym_const] = ACTIONS(7119), + [anon_sym_constexpr] = ACTIONS(7119), + [anon_sym_volatile] = ACTIONS(7119), + [anon_sym_restrict] = ACTIONS(7119), + [anon_sym___restrict__] = ACTIONS(7119), + [anon_sym__Atomic] = ACTIONS(7119), + [anon_sym__Noreturn] = ACTIONS(7119), + [anon_sym__Nonnull] = ACTIONS(7119), + [anon_sym_nullable] = ACTIONS(7119), + [anon_sym__Complex] = ACTIONS(7119), + [anon_sym__Nullable] = ACTIONS(7119), + [anon_sym__Nullable_result] = ACTIONS(7119), + [anon_sym__Null_unspecified] = ACTIONS(7119), + [anon_sym___autoreleasing] = ACTIONS(7119), + [anon_sym___block] = ACTIONS(7119), + [anon_sym___bridge] = ACTIONS(7119), + [anon_sym___bridge_retained] = ACTIONS(7119), + [anon_sym___bridge_transfer] = ACTIONS(7119), + [anon_sym___complex] = ACTIONS(7119), + [anon_sym___const] = ACTIONS(7119), + [anon_sym___imag] = ACTIONS(7119), + [anon_sym___kindof] = ACTIONS(7119), + [anon_sym___nonnull] = ACTIONS(7119), + [anon_sym___nullable] = ACTIONS(7119), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7119), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7119), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7119), + [anon_sym___real] = ACTIONS(7119), + [anon_sym___strong] = ACTIONS(7119), + [anon_sym___unsafe_unretained] = ACTIONS(7119), + [anon_sym___unused] = ACTIONS(7119), + [anon_sym___weak] = ACTIONS(7119), + [anon_sym_alignas] = ACTIONS(7119), + [anon_sym__Alignas] = ACTIONS(7119), + [sym_primitive_type] = ACTIONS(7119), + [anon_sym_enum] = ACTIONS(7119), + [anon_sym_COLON] = ACTIONS(7121), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7119), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7119), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7119), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7119), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7119), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7119), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7119), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7119), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7119), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7119), + [anon_sym_NS_AVAILABLE] = ACTIONS(7119), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7119), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7119), + [anon_sym_API_AVAILABLE] = ACTIONS(7119), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7119), + [anon_sym_API_DEPRECATED] = ACTIONS(7119), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7119), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7119), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7119), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7119), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7119), + [anon_sym___deprecated_msg] = ACTIONS(7119), + [anon_sym___deprecated_enum_msg] = ACTIONS(7119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7119), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7119), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7119), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7119), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7119), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7119), + }, + [2901] = { + [sym__declaration_modifiers] = STATE(6061), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(6061), + [sym_ms_declspec_modifier] = STATE(6061), + [sym_storage_class_specifier] = STATE(6061), + [sym_type_qualifier] = STATE(6061), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3030), + [sym_gnu_asm_expression] = STATE(3158), + [sym_availability_attribute_specifier] = STATE(6061), + [aux_sym_declaration_repeat1] = STATE(3159), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(7123), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2902] = { + [sym_attribute_specifier] = STATE(3002), + [sym_field_declaration_list] = STATE(2932), + [sym_identifier] = ACTIONS(7125), + [anon_sym_COMMA] = ACTIONS(7127), + [anon_sym_RPAREN] = ACTIONS(7127), + [anon_sym_LPAREN2] = ACTIONS(7127), + [anon_sym_STAR] = ACTIONS(7127), + [anon_sym_CARET] = ACTIONS(7127), + [anon_sym_SEMI] = ACTIONS(7127), + [anon_sym___extension__] = ACTIONS(7125), + [anon_sym_extern] = ACTIONS(7125), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(7125), + [anon_sym_LBRACK] = ACTIONS(7127), + [anon_sym___declspec] = ACTIONS(7125), + [anon_sym___based] = ACTIONS(7125), + [anon_sym_LBRACE] = ACTIONS(7077), + [anon_sym_signed] = ACTIONS(7125), + [anon_sym_unsigned] = ACTIONS(7125), + [anon_sym_long] = ACTIONS(7125), + [anon_sym_short] = ACTIONS(7125), + [anon_sym_static] = ACTIONS(7125), + [anon_sym_auto] = ACTIONS(7125), + [anon_sym_register] = ACTIONS(7125), + [anon_sym_inline] = ACTIONS(7125), + [anon_sym___inline] = ACTIONS(7125), + [anon_sym___inline__] = ACTIONS(7125), + [anon_sym___forceinline] = ACTIONS(7125), + [anon_sym_thread_local] = ACTIONS(7125), + [anon_sym___thread] = ACTIONS(7125), + [anon_sym_CG_EXTERN] = ACTIONS(7125), + [anon_sym_CG_INLINE] = ACTIONS(7125), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7125), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7125), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7125), + [anon_sym_IBOutlet] = ACTIONS(7125), + [anon_sym_IBInspectable] = ACTIONS(7125), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7125), + [anon_sym_NS_INLINE] = ACTIONS(7125), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7125), + [anon_sym_OBJC_EXPORT] = ACTIONS(7125), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7125), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7125), + [anon_sym_const] = ACTIONS(7125), + [anon_sym_constexpr] = ACTIONS(7125), + [anon_sym_volatile] = ACTIONS(7125), + [anon_sym_restrict] = ACTIONS(7125), + [anon_sym___restrict__] = ACTIONS(7125), + [anon_sym__Atomic] = ACTIONS(7125), + [anon_sym__Noreturn] = ACTIONS(7125), + [anon_sym__Nonnull] = ACTIONS(7125), + [anon_sym_nullable] = ACTIONS(7125), + [anon_sym__Complex] = ACTIONS(7125), + [anon_sym__Nullable] = ACTIONS(7125), + [anon_sym__Nullable_result] = ACTIONS(7125), + [anon_sym__Null_unspecified] = ACTIONS(7125), + [anon_sym___autoreleasing] = ACTIONS(7125), + [anon_sym___block] = ACTIONS(7125), + [anon_sym___bridge] = ACTIONS(7125), + [anon_sym___bridge_retained] = ACTIONS(7125), + [anon_sym___bridge_transfer] = ACTIONS(7125), + [anon_sym___complex] = ACTIONS(7125), + [anon_sym___const] = ACTIONS(7125), + [anon_sym___imag] = ACTIONS(7125), + [anon_sym___kindof] = ACTIONS(7125), + [anon_sym___nonnull] = ACTIONS(7125), + [anon_sym___nullable] = ACTIONS(7125), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7125), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7125), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7125), + [anon_sym___real] = ACTIONS(7125), + [anon_sym___strong] = ACTIONS(7125), + [anon_sym___unsafe_unretained] = ACTIONS(7125), + [anon_sym___unused] = ACTIONS(7125), + [anon_sym___weak] = ACTIONS(7125), + [anon_sym_alignas] = ACTIONS(7125), + [anon_sym__Alignas] = ACTIONS(7125), + [sym_primitive_type] = ACTIONS(7125), + [anon_sym_enum] = ACTIONS(7125), + [anon_sym_COLON] = ACTIONS(7127), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7125), + [anon_sym_NS_AVAILABLE] = ACTIONS(7125), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7125), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7125), + [anon_sym_API_AVAILABLE] = ACTIONS(7125), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7125), + [anon_sym_API_DEPRECATED] = ACTIONS(7125), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7125), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7125), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7125), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7125), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7125), + [anon_sym___deprecated_msg] = ACTIONS(7125), + [anon_sym___deprecated_enum_msg] = ACTIONS(7125), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7125), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7125), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7125), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7125), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7125), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7125), + }, + [2903] = { + [sym__declaration_modifiers] = STATE(6370), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(6370), + [sym_ms_declspec_modifier] = STATE(6370), + [sym_storage_class_specifier] = STATE(6370), + [sym_type_qualifier] = STATE(6370), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3030), + [sym_gnu_asm_expression] = STATE(3103), + [sym_availability_attribute_specifier] = STATE(6370), + [aux_sym_declaration_repeat1] = STATE(3104), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6908), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2904] = { + [sym__declaration_modifiers] = STATE(3200), + [sym_attribute_specifier] = STATE(3200), + [sym_attribute_declaration] = STATE(3200), + [sym_ms_declspec_modifier] = STATE(3200), + [sym_storage_class_specifier] = STATE(3200), + [sym_type_qualifier] = STATE(3200), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3200), + [sym_keyword_declarator] = STATE(3247), + [sym_method_parameter] = STATE(3245), + [aux_sym__declaration_specifiers_repeat1] = STATE(3200), + [aux_sym_keyword_selector_repeat1] = STATE(3247), + [aux_sym_method_declaration_repeat1] = STATE(3245), + [aux_sym_method_declaration_repeat2] = STATE(2170), + [sym_identifier] = ACTIONS(7079), + [anon_sym_COMMA] = ACTIONS(7129), + [anon_sym_SEMI] = ACTIONS(7131), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [anon_sym_COLON] = ACTIONS(7087), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2905] = { + [sym__declaration_modifiers] = STATE(5969), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(5969), + [sym_ms_declspec_modifier] = STATE(5969), + [sym_storage_class_specifier] = STATE(5969), + [sym_type_qualifier] = STATE(5969), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3030), + [sym_gnu_asm_expression] = STATE(3151), + [sym_availability_attribute_specifier] = STATE(5969), + [aux_sym_declaration_repeat1] = STATE(3152), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6949), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2906] = { + [sym_identifier] = ACTIONS(7133), + [anon_sym___extension__] = ACTIONS(7133), + [anon_sym_extern] = ACTIONS(7133), + [anon_sym___attribute__] = ACTIONS(7133), + [anon_sym___attribute] = ACTIONS(7133), + [anon_sym_noreturn] = ACTIONS(7133), + [anon_sym_LBRACK] = ACTIONS(7135), + [anon_sym___declspec] = ACTIONS(7133), + [anon_sym_signed] = ACTIONS(7133), + [anon_sym_unsigned] = ACTIONS(7133), + [anon_sym_long] = ACTIONS(7133), + [anon_sym_short] = ACTIONS(7133), + [anon_sym_static] = ACTIONS(7133), + [anon_sym_auto] = ACTIONS(7133), + [anon_sym_register] = ACTIONS(7133), + [anon_sym_inline] = ACTIONS(7133), + [anon_sym___inline] = ACTIONS(7133), + [anon_sym___inline__] = ACTIONS(7133), + [anon_sym___forceinline] = ACTIONS(7133), + [anon_sym_thread_local] = ACTIONS(7133), + [anon_sym___thread] = ACTIONS(7133), + [anon_sym_CG_EXTERN] = ACTIONS(7133), + [anon_sym_CG_INLINE] = ACTIONS(7133), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7133), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7133), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7133), + [anon_sym_IBOutlet] = ACTIONS(7133), + [anon_sym_IBInspectable] = ACTIONS(7133), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7133), + [anon_sym_NS_INLINE] = ACTIONS(7133), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7133), + [anon_sym_OBJC_EXPORT] = ACTIONS(7133), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7133), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7133), + [anon_sym_const] = ACTIONS(7133), + [anon_sym_constexpr] = ACTIONS(7133), + [anon_sym_volatile] = ACTIONS(7133), + [anon_sym_restrict] = ACTIONS(7133), + [anon_sym___restrict__] = ACTIONS(7133), + [anon_sym__Atomic] = ACTIONS(7133), + [anon_sym__Noreturn] = ACTIONS(7133), + [anon_sym__Nonnull] = ACTIONS(7133), + [anon_sym_nullable] = ACTIONS(7133), + [anon_sym__Complex] = ACTIONS(7133), + [anon_sym__Nullable] = ACTIONS(7133), + [anon_sym__Nullable_result] = ACTIONS(7133), + [anon_sym__Null_unspecified] = ACTIONS(7133), + [anon_sym___autoreleasing] = ACTIONS(7133), + [anon_sym___block] = ACTIONS(7133), + [anon_sym___bridge] = ACTIONS(7133), + [anon_sym___bridge_retained] = ACTIONS(7133), + [anon_sym___bridge_transfer] = ACTIONS(7133), + [anon_sym___complex] = ACTIONS(7133), + [anon_sym___const] = ACTIONS(7133), + [anon_sym___imag] = ACTIONS(7133), + [anon_sym___kindof] = ACTIONS(7133), + [anon_sym___nonnull] = ACTIONS(7133), + [anon_sym___nullable] = ACTIONS(7133), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7133), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7133), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7133), + [anon_sym___real] = ACTIONS(7133), + [anon_sym___strong] = ACTIONS(7133), + [anon_sym___unsafe_unretained] = ACTIONS(7133), + [anon_sym___unused] = ACTIONS(7133), + [anon_sym___weak] = ACTIONS(7133), + [anon_sym_alignas] = ACTIONS(7133), + [anon_sym__Alignas] = ACTIONS(7133), + [sym_primitive_type] = ACTIONS(7133), + [anon_sym_enum] = ACTIONS(7133), + [anon_sym_struct] = ACTIONS(7133), + [anon_sym_union] = ACTIONS(7133), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7133), + [anon_sym___typeof] = ACTIONS(7133), + [anon_sym_typeof] = ACTIONS(7133), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7133), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7133), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7133), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7133), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7133), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7133), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7133), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7133), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7133), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7133), + [anon_sym_NS_AVAILABLE] = ACTIONS(7133), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7133), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7133), + [anon_sym_API_AVAILABLE] = ACTIONS(7133), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7133), + [anon_sym_API_DEPRECATED] = ACTIONS(7133), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7133), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7133), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7133), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7133), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7133), + [anon_sym___deprecated_msg] = ACTIONS(7133), + [anon_sym___deprecated_enum_msg] = ACTIONS(7133), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7133), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7133), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7133), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7133), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7133), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7133), + [anon_sym_ATproperty] = ACTIONS(7137), + [anon_sym_BOOL] = ACTIONS(7133), + [anon_sym_IMP] = ACTIONS(7133), + [anon_sym_SEL] = ACTIONS(7133), + [anon_sym_Class] = ACTIONS(7133), + [anon_sym_id] = ACTIONS(7133), + }, + [2907] = { + [sym_attribute_specifier] = STATE(3005), + [sym_field_declaration_list] = STATE(2933), + [sym_identifier] = ACTIONS(7139), + [anon_sym_COMMA] = ACTIONS(7141), + [anon_sym_RPAREN] = ACTIONS(7141), + [anon_sym_LPAREN2] = ACTIONS(7141), + [anon_sym_STAR] = ACTIONS(7141), + [anon_sym_CARET] = ACTIONS(7141), + [anon_sym_SEMI] = ACTIONS(7141), + [anon_sym___extension__] = ACTIONS(7139), + [anon_sym_extern] = ACTIONS(7139), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(7139), + [anon_sym_LBRACK] = ACTIONS(7141), + [anon_sym___declspec] = ACTIONS(7139), + [anon_sym___based] = ACTIONS(7139), + [anon_sym_LBRACE] = ACTIONS(7077), + [anon_sym_signed] = ACTIONS(7139), + [anon_sym_unsigned] = ACTIONS(7139), + [anon_sym_long] = ACTIONS(7139), + [anon_sym_short] = ACTIONS(7139), + [anon_sym_static] = ACTIONS(7139), + [anon_sym_auto] = ACTIONS(7139), + [anon_sym_register] = ACTIONS(7139), + [anon_sym_inline] = ACTIONS(7139), + [anon_sym___inline] = ACTIONS(7139), + [anon_sym___inline__] = ACTIONS(7139), + [anon_sym___forceinline] = ACTIONS(7139), + [anon_sym_thread_local] = ACTIONS(7139), + [anon_sym___thread] = ACTIONS(7139), + [anon_sym_CG_EXTERN] = ACTIONS(7139), + [anon_sym_CG_INLINE] = ACTIONS(7139), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7139), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7139), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7139), + [anon_sym_IBOutlet] = ACTIONS(7139), + [anon_sym_IBInspectable] = ACTIONS(7139), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7139), + [anon_sym_NS_INLINE] = ACTIONS(7139), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7139), + [anon_sym_OBJC_EXPORT] = ACTIONS(7139), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7139), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7139), + [anon_sym_const] = ACTIONS(7139), + [anon_sym_constexpr] = ACTIONS(7139), + [anon_sym_volatile] = ACTIONS(7139), + [anon_sym_restrict] = ACTIONS(7139), + [anon_sym___restrict__] = ACTIONS(7139), + [anon_sym__Atomic] = ACTIONS(7139), + [anon_sym__Noreturn] = ACTIONS(7139), + [anon_sym__Nonnull] = ACTIONS(7139), + [anon_sym_nullable] = ACTIONS(7139), + [anon_sym__Complex] = ACTIONS(7139), + [anon_sym__Nullable] = ACTIONS(7139), + [anon_sym__Nullable_result] = ACTIONS(7139), + [anon_sym__Null_unspecified] = ACTIONS(7139), + [anon_sym___autoreleasing] = ACTIONS(7139), + [anon_sym___block] = ACTIONS(7139), + [anon_sym___bridge] = ACTIONS(7139), + [anon_sym___bridge_retained] = ACTIONS(7139), + [anon_sym___bridge_transfer] = ACTIONS(7139), + [anon_sym___complex] = ACTIONS(7139), + [anon_sym___const] = ACTIONS(7139), + [anon_sym___imag] = ACTIONS(7139), + [anon_sym___kindof] = ACTIONS(7139), + [anon_sym___nonnull] = ACTIONS(7139), + [anon_sym___nullable] = ACTIONS(7139), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7139), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7139), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7139), + [anon_sym___real] = ACTIONS(7139), + [anon_sym___strong] = ACTIONS(7139), + [anon_sym___unsafe_unretained] = ACTIONS(7139), + [anon_sym___unused] = ACTIONS(7139), + [anon_sym___weak] = ACTIONS(7139), + [anon_sym_alignas] = ACTIONS(7139), + [anon_sym__Alignas] = ACTIONS(7139), + [sym_primitive_type] = ACTIONS(7139), + [anon_sym_enum] = ACTIONS(7139), + [anon_sym_COLON] = ACTIONS(7141), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7139), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7139), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7139), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7139), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7139), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7139), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7139), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7139), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7139), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7139), + [anon_sym_NS_AVAILABLE] = ACTIONS(7139), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7139), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7139), + [anon_sym_API_AVAILABLE] = ACTIONS(7139), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7139), + [anon_sym_API_DEPRECATED] = ACTIONS(7139), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7139), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7139), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7139), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7139), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7139), + [anon_sym___deprecated_msg] = ACTIONS(7139), + [anon_sym___deprecated_enum_msg] = ACTIONS(7139), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7139), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7139), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7139), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7139), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7139), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7139), + }, + [2908] = { + [sym_identifier] = ACTIONS(7133), + [anon_sym___extension__] = ACTIONS(7133), + [anon_sym_extern] = ACTIONS(7133), + [anon_sym___attribute__] = ACTIONS(7133), + [anon_sym___attribute] = ACTIONS(7133), + [anon_sym_noreturn] = ACTIONS(7133), + [anon_sym_LBRACK] = ACTIONS(7135), + [anon_sym___declspec] = ACTIONS(7133), + [anon_sym_signed] = ACTIONS(7133), + [anon_sym_unsigned] = ACTIONS(7133), + [anon_sym_long] = ACTIONS(7133), + [anon_sym_short] = ACTIONS(7133), + [anon_sym_static] = ACTIONS(7133), + [anon_sym_auto] = ACTIONS(7133), + [anon_sym_register] = ACTIONS(7133), + [anon_sym_inline] = ACTIONS(7133), + [anon_sym___inline] = ACTIONS(7133), + [anon_sym___inline__] = ACTIONS(7133), + [anon_sym___forceinline] = ACTIONS(7133), + [anon_sym_thread_local] = ACTIONS(7133), + [anon_sym___thread] = ACTIONS(7133), + [anon_sym_CG_EXTERN] = ACTIONS(7133), + [anon_sym_CG_INLINE] = ACTIONS(7133), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7133), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7133), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7133), + [anon_sym_IBOutlet] = ACTIONS(7133), + [anon_sym_IBInspectable] = ACTIONS(7133), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7133), + [anon_sym_NS_INLINE] = ACTIONS(7133), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7133), + [anon_sym_OBJC_EXPORT] = ACTIONS(7133), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7133), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7133), + [anon_sym_const] = ACTIONS(7133), + [anon_sym_constexpr] = ACTIONS(7133), + [anon_sym_volatile] = ACTIONS(7133), + [anon_sym_restrict] = ACTIONS(7133), + [anon_sym___restrict__] = ACTIONS(7133), + [anon_sym__Atomic] = ACTIONS(7133), + [anon_sym__Noreturn] = ACTIONS(7133), + [anon_sym__Nonnull] = ACTIONS(7133), + [anon_sym_nullable] = ACTIONS(7133), + [anon_sym__Complex] = ACTIONS(7133), + [anon_sym__Nullable] = ACTIONS(7133), + [anon_sym__Nullable_result] = ACTIONS(7133), + [anon_sym__Null_unspecified] = ACTIONS(7133), + [anon_sym___autoreleasing] = ACTIONS(7133), + [anon_sym___block] = ACTIONS(7133), + [anon_sym___bridge] = ACTIONS(7133), + [anon_sym___bridge_retained] = ACTIONS(7133), + [anon_sym___bridge_transfer] = ACTIONS(7133), + [anon_sym___complex] = ACTIONS(7133), + [anon_sym___const] = ACTIONS(7133), + [anon_sym___imag] = ACTIONS(7133), + [anon_sym___kindof] = ACTIONS(7133), + [anon_sym___nonnull] = ACTIONS(7133), + [anon_sym___nullable] = ACTIONS(7133), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7133), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7133), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7133), + [anon_sym___real] = ACTIONS(7133), + [anon_sym___strong] = ACTIONS(7133), + [anon_sym___unsafe_unretained] = ACTIONS(7133), + [anon_sym___unused] = ACTIONS(7133), + [anon_sym___weak] = ACTIONS(7133), + [anon_sym_alignas] = ACTIONS(7133), + [anon_sym__Alignas] = ACTIONS(7133), + [sym_primitive_type] = ACTIONS(7133), + [anon_sym_enum] = ACTIONS(7133), + [anon_sym_struct] = ACTIONS(7133), + [anon_sym_union] = ACTIONS(7133), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7133), + [anon_sym___typeof] = ACTIONS(7133), + [anon_sym_typeof] = ACTIONS(7133), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7133), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7133), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7133), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7133), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7133), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7133), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7133), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7133), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7133), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7133), + [anon_sym_NS_AVAILABLE] = ACTIONS(7133), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7133), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7133), + [anon_sym_API_AVAILABLE] = ACTIONS(7133), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7133), + [anon_sym_API_DEPRECATED] = ACTIONS(7133), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7133), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7133), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7133), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7133), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7133), + [anon_sym___deprecated_msg] = ACTIONS(7133), + [anon_sym___deprecated_enum_msg] = ACTIONS(7133), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7133), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7133), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7133), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7133), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7133), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7133), + [anon_sym_ATproperty] = ACTIONS(7143), + [anon_sym_BOOL] = ACTIONS(7133), + [anon_sym_IMP] = ACTIONS(7133), + [anon_sym_SEL] = ACTIONS(7133), + [anon_sym_Class] = ACTIONS(7133), + [anon_sym_id] = ACTIONS(7133), + }, + [2909] = { + [sym__declaration_modifiers] = STATE(3212), + [sym_attribute_specifier] = STATE(3212), + [sym_attribute_declaration] = STATE(3212), + [sym_ms_declspec_modifier] = STATE(3212), + [sym_storage_class_specifier] = STATE(3212), + [sym_type_qualifier] = STATE(3212), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3212), + [sym_keyword_declarator] = STATE(3247), + [sym_method_parameter] = STATE(3245), + [aux_sym__declaration_specifiers_repeat1] = STATE(3212), + [aux_sym_keyword_selector_repeat1] = STATE(3247), + [aux_sym_method_declaration_repeat1] = STATE(3245), + [aux_sym_method_declaration_repeat2] = STATE(2135), + [sym_identifier] = ACTIONS(7079), + [anon_sym_COMMA] = ACTIONS(7145), + [anon_sym_SEMI] = ACTIONS(7147), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [anon_sym_COLON] = ACTIONS(7087), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2910] = { + [sym__declaration_modifiers] = STATE(6473), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(6473), + [sym_ms_declspec_modifier] = STATE(6473), + [sym_storage_class_specifier] = STATE(6473), + [sym_type_qualifier] = STATE(6473), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3030), + [sym_gnu_asm_expression] = STATE(3115), + [sym_availability_attribute_specifier] = STATE(6473), + [aux_sym_declaration_repeat1] = STATE(3116), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6928), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2911] = { + [sym_identifier] = ACTIONS(2995), + [anon_sym___extension__] = ACTIONS(2995), + [anon_sym_typedef] = ACTIONS(2964), + [anon_sym_extern] = ACTIONS(2995), + [anon_sym___attribute__] = ACTIONS(2995), + [anon_sym___attribute] = ACTIONS(2995), + [anon_sym_noreturn] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3000), + [anon_sym___declspec] = ACTIONS(2995), + [anon_sym_signed] = ACTIONS(2995), + [anon_sym_unsigned] = ACTIONS(2995), + [anon_sym_long] = ACTIONS(2995), + [anon_sym_short] = ACTIONS(2995), + [anon_sym_static] = ACTIONS(2995), + [anon_sym_auto] = ACTIONS(2995), + [anon_sym_register] = ACTIONS(2995), + [anon_sym_inline] = ACTIONS(2995), + [anon_sym___inline] = ACTIONS(2995), + [anon_sym___inline__] = ACTIONS(2995), + [anon_sym___forceinline] = ACTIONS(2995), + [anon_sym_thread_local] = ACTIONS(2995), + [anon_sym___thread] = ACTIONS(2995), + [anon_sym_CG_EXTERN] = ACTIONS(2995), + [anon_sym_CG_INLINE] = ACTIONS(2995), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2995), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2995), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2995), + [anon_sym_IBOutlet] = ACTIONS(2995), + [anon_sym_IBInspectable] = ACTIONS(2995), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2995), + [anon_sym_NS_INLINE] = ACTIONS(2995), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2995), + [anon_sym_OBJC_EXPORT] = ACTIONS(2995), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2995), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2995), + [anon_sym_const] = ACTIONS(2995), + [anon_sym_constexpr] = ACTIONS(2995), + [anon_sym_volatile] = ACTIONS(2995), + [anon_sym_restrict] = ACTIONS(2995), + [anon_sym___restrict__] = ACTIONS(2995), + [anon_sym__Atomic] = ACTIONS(2995), + [anon_sym__Noreturn] = ACTIONS(2995), + [anon_sym__Nonnull] = ACTIONS(2995), + [anon_sym_nullable] = ACTIONS(2995), + [anon_sym__Complex] = ACTIONS(2995), + [anon_sym__Nullable] = ACTIONS(2995), + [anon_sym__Nullable_result] = ACTIONS(2995), + [anon_sym__Null_unspecified] = ACTIONS(2995), + [anon_sym___autoreleasing] = ACTIONS(2995), + [anon_sym___block] = ACTIONS(2995), + [anon_sym___bridge] = ACTIONS(2995), + [anon_sym___bridge_retained] = ACTIONS(2995), + [anon_sym___bridge_transfer] = ACTIONS(2995), + [anon_sym___complex] = ACTIONS(2995), + [anon_sym___const] = ACTIONS(2995), + [anon_sym___imag] = ACTIONS(2995), + [anon_sym___kindof] = ACTIONS(2995), + [anon_sym___nonnull] = ACTIONS(2995), + [anon_sym___nullable] = ACTIONS(2995), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2995), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2995), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2995), + [anon_sym___real] = ACTIONS(2995), + [anon_sym___strong] = ACTIONS(2995), + [anon_sym___unsafe_unretained] = ACTIONS(2995), + [anon_sym___unused] = ACTIONS(2995), + [anon_sym___weak] = ACTIONS(2995), + [anon_sym_alignas] = ACTIONS(2995), + [anon_sym__Alignas] = ACTIONS(2995), + [sym_primitive_type] = ACTIONS(2995), + [anon_sym_enum] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2995), + [anon_sym_union] = ACTIONS(2995), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2995), + [anon_sym___typeof] = ACTIONS(2995), + [anon_sym_typeof] = ACTIONS(2995), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2995), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2995), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2995), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2995), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2995), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2995), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2995), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2995), + [anon_sym_NS_AVAILABLE] = ACTIONS(2995), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2995), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_API_AVAILABLE] = ACTIONS(2995), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_API_DEPRECATED] = ACTIONS(2995), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2995), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2995), + [anon_sym___deprecated_msg] = ACTIONS(2995), + [anon_sym___deprecated_enum_msg] = ACTIONS(2995), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2995), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2995), + [anon_sym_BOOL] = ACTIONS(2995), + [anon_sym_IMP] = ACTIONS(2995), + [anon_sym_SEL] = ACTIONS(2995), + [anon_sym_Class] = ACTIONS(2995), + [anon_sym_id] = ACTIONS(2995), + }, + [2912] = { + [sym__declaration_modifiers] = STATE(3205), + [sym_attribute_specifier] = STATE(3205), + [sym_attribute_declaration] = STATE(3205), + [sym_ms_declspec_modifier] = STATE(3205), + [sym_storage_class_specifier] = STATE(3205), + [sym_type_qualifier] = STATE(3205), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3205), + [sym_keyword_declarator] = STATE(3247), + [sym_method_parameter] = STATE(3245), + [aux_sym__declaration_specifiers_repeat1] = STATE(3205), + [aux_sym_keyword_selector_repeat1] = STATE(3247), + [aux_sym_method_declaration_repeat1] = STATE(3245), + [aux_sym_method_declaration_repeat2] = STATE(2171), + [sym_identifier] = ACTIONS(7079), + [anon_sym_COMMA] = ACTIONS(7149), + [anon_sym_SEMI] = ACTIONS(7151), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [anon_sym_COLON] = ACTIONS(7087), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2913] = { + [sym_identifier] = ACTIONS(7133), + [anon_sym___extension__] = ACTIONS(7133), + [anon_sym_extern] = ACTIONS(7133), + [anon_sym___attribute__] = ACTIONS(7133), + [anon_sym___attribute] = ACTIONS(7133), + [anon_sym_noreturn] = ACTIONS(7133), + [anon_sym_LBRACK] = ACTIONS(7135), + [anon_sym___declspec] = ACTIONS(7133), + [anon_sym_signed] = ACTIONS(7133), + [anon_sym_unsigned] = ACTIONS(7133), + [anon_sym_long] = ACTIONS(7133), + [anon_sym_short] = ACTIONS(7133), + [anon_sym_static] = ACTIONS(7133), + [anon_sym_auto] = ACTIONS(7133), + [anon_sym_register] = ACTIONS(7133), + [anon_sym_inline] = ACTIONS(7133), + [anon_sym___inline] = ACTIONS(7133), + [anon_sym___inline__] = ACTIONS(7133), + [anon_sym___forceinline] = ACTIONS(7133), + [anon_sym_thread_local] = ACTIONS(7133), + [anon_sym___thread] = ACTIONS(7133), + [anon_sym_CG_EXTERN] = ACTIONS(7133), + [anon_sym_CG_INLINE] = ACTIONS(7133), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7133), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7133), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7133), + [anon_sym_IBOutlet] = ACTIONS(7133), + [anon_sym_IBInspectable] = ACTIONS(7133), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7133), + [anon_sym_NS_INLINE] = ACTIONS(7133), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7133), + [anon_sym_OBJC_EXPORT] = ACTIONS(7133), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7133), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7133), + [anon_sym_const] = ACTIONS(7133), + [anon_sym_constexpr] = ACTIONS(7133), + [anon_sym_volatile] = ACTIONS(7133), + [anon_sym_restrict] = ACTIONS(7133), + [anon_sym___restrict__] = ACTIONS(7133), + [anon_sym__Atomic] = ACTIONS(7133), + [anon_sym__Noreturn] = ACTIONS(7133), + [anon_sym__Nonnull] = ACTIONS(7133), + [anon_sym_nullable] = ACTIONS(7133), + [anon_sym__Complex] = ACTIONS(7133), + [anon_sym__Nullable] = ACTIONS(7133), + [anon_sym__Nullable_result] = ACTIONS(7133), + [anon_sym__Null_unspecified] = ACTIONS(7133), + [anon_sym___autoreleasing] = ACTIONS(7133), + [anon_sym___block] = ACTIONS(7133), + [anon_sym___bridge] = ACTIONS(7133), + [anon_sym___bridge_retained] = ACTIONS(7133), + [anon_sym___bridge_transfer] = ACTIONS(7133), + [anon_sym___complex] = ACTIONS(7133), + [anon_sym___const] = ACTIONS(7133), + [anon_sym___imag] = ACTIONS(7133), + [anon_sym___kindof] = ACTIONS(7133), + [anon_sym___nonnull] = ACTIONS(7133), + [anon_sym___nullable] = ACTIONS(7133), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7133), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7133), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7133), + [anon_sym___real] = ACTIONS(7133), + [anon_sym___strong] = ACTIONS(7133), + [anon_sym___unsafe_unretained] = ACTIONS(7133), + [anon_sym___unused] = ACTIONS(7133), + [anon_sym___weak] = ACTIONS(7133), + [anon_sym_alignas] = ACTIONS(7133), + [anon_sym__Alignas] = ACTIONS(7133), + [sym_primitive_type] = ACTIONS(7133), + [anon_sym_enum] = ACTIONS(7133), + [anon_sym_struct] = ACTIONS(7133), + [anon_sym_union] = ACTIONS(7133), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7133), + [anon_sym___typeof] = ACTIONS(7133), + [anon_sym_typeof] = ACTIONS(7133), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7133), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7133), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7133), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7133), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7133), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7133), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7133), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7133), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7133), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7133), + [anon_sym_NS_AVAILABLE] = ACTIONS(7133), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7133), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7133), + [anon_sym_API_AVAILABLE] = ACTIONS(7133), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7133), + [anon_sym_API_DEPRECATED] = ACTIONS(7133), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7133), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7133), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7133), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7133), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7133), + [anon_sym___deprecated_msg] = ACTIONS(7133), + [anon_sym___deprecated_enum_msg] = ACTIONS(7133), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7133), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7133), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7133), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7133), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7133), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7133), + [anon_sym_ATproperty] = ACTIONS(7153), + [anon_sym_BOOL] = ACTIONS(7133), + [anon_sym_IMP] = ACTIONS(7133), + [anon_sym_SEL] = ACTIONS(7133), + [anon_sym_Class] = ACTIONS(7133), + [anon_sym_id] = ACTIONS(7133), + }, + [2914] = { + [sym_attribute_specifier] = STATE(2951), + [sym_field_declaration_list] = STATE(2936), + [sym_identifier] = ACTIONS(7155), + [anon_sym_COMMA] = ACTIONS(7157), + [anon_sym_RPAREN] = ACTIONS(7157), + [anon_sym_LPAREN2] = ACTIONS(7157), + [anon_sym_STAR] = ACTIONS(7157), + [anon_sym_CARET] = ACTIONS(7157), + [anon_sym_SEMI] = ACTIONS(7157), + [anon_sym___extension__] = ACTIONS(7155), + [anon_sym_extern] = ACTIONS(7155), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(7155), + [anon_sym_LBRACK] = ACTIONS(7157), + [anon_sym___declspec] = ACTIONS(7155), + [anon_sym___based] = ACTIONS(7155), + [anon_sym_LBRACE] = ACTIONS(7077), + [anon_sym_signed] = ACTIONS(7155), + [anon_sym_unsigned] = ACTIONS(7155), + [anon_sym_long] = ACTIONS(7155), + [anon_sym_short] = ACTIONS(7155), + [anon_sym_static] = ACTIONS(7155), + [anon_sym_auto] = ACTIONS(7155), + [anon_sym_register] = ACTIONS(7155), + [anon_sym_inline] = ACTIONS(7155), + [anon_sym___inline] = ACTIONS(7155), + [anon_sym___inline__] = ACTIONS(7155), + [anon_sym___forceinline] = ACTIONS(7155), + [anon_sym_thread_local] = ACTIONS(7155), + [anon_sym___thread] = ACTIONS(7155), + [anon_sym_CG_EXTERN] = ACTIONS(7155), + [anon_sym_CG_INLINE] = ACTIONS(7155), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7155), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7155), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7155), + [anon_sym_IBOutlet] = ACTIONS(7155), + [anon_sym_IBInspectable] = ACTIONS(7155), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7155), + [anon_sym_NS_INLINE] = ACTIONS(7155), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7155), + [anon_sym_OBJC_EXPORT] = ACTIONS(7155), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7155), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7155), + [anon_sym_const] = ACTIONS(7155), + [anon_sym_constexpr] = ACTIONS(7155), + [anon_sym_volatile] = ACTIONS(7155), + [anon_sym_restrict] = ACTIONS(7155), + [anon_sym___restrict__] = ACTIONS(7155), + [anon_sym__Atomic] = ACTIONS(7155), + [anon_sym__Noreturn] = ACTIONS(7155), + [anon_sym__Nonnull] = ACTIONS(7155), + [anon_sym_nullable] = ACTIONS(7155), + [anon_sym__Complex] = ACTIONS(7155), + [anon_sym__Nullable] = ACTIONS(7155), + [anon_sym__Nullable_result] = ACTIONS(7155), + [anon_sym__Null_unspecified] = ACTIONS(7155), + [anon_sym___autoreleasing] = ACTIONS(7155), + [anon_sym___block] = ACTIONS(7155), + [anon_sym___bridge] = ACTIONS(7155), + [anon_sym___bridge_retained] = ACTIONS(7155), + [anon_sym___bridge_transfer] = ACTIONS(7155), + [anon_sym___complex] = ACTIONS(7155), + [anon_sym___const] = ACTIONS(7155), + [anon_sym___imag] = ACTIONS(7155), + [anon_sym___kindof] = ACTIONS(7155), + [anon_sym___nonnull] = ACTIONS(7155), + [anon_sym___nullable] = ACTIONS(7155), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7155), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7155), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7155), + [anon_sym___real] = ACTIONS(7155), + [anon_sym___strong] = ACTIONS(7155), + [anon_sym___unsafe_unretained] = ACTIONS(7155), + [anon_sym___unused] = ACTIONS(7155), + [anon_sym___weak] = ACTIONS(7155), + [anon_sym_alignas] = ACTIONS(7155), + [anon_sym__Alignas] = ACTIONS(7155), + [sym_primitive_type] = ACTIONS(7155), + [anon_sym_enum] = ACTIONS(7155), + [anon_sym_COLON] = ACTIONS(7157), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7155), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7155), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7155), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7155), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7155), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7155), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7155), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7155), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7155), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7155), + [anon_sym_NS_AVAILABLE] = ACTIONS(7155), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7155), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7155), + [anon_sym_API_AVAILABLE] = ACTIONS(7155), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7155), + [anon_sym_API_DEPRECATED] = ACTIONS(7155), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7155), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7155), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7155), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7155), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7155), + [anon_sym___deprecated_msg] = ACTIONS(7155), + [anon_sym___deprecated_enum_msg] = ACTIONS(7155), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7155), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7155), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7155), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7155), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7155), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7155), + }, + [2915] = { + [sym__declaration_modifiers] = STATE(6025), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(6025), + [sym_ms_declspec_modifier] = STATE(6025), + [sym_storage_class_specifier] = STATE(6025), + [sym_type_qualifier] = STATE(6025), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3030), + [sym_gnu_asm_expression] = STATE(3122), + [sym_availability_attribute_specifier] = STATE(6025), + [aux_sym_declaration_repeat1] = STATE(3123), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(7159), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2916] = { + [sym__declaration_modifiers] = STATE(6334), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(6334), + [sym_ms_declspec_modifier] = STATE(6334), + [sym_storage_class_specifier] = STATE(6334), + [sym_type_qualifier] = STATE(6334), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3030), + [sym_gnu_asm_expression] = STATE(3139), + [sym_availability_attribute_specifier] = STATE(6334), + [aux_sym_declaration_repeat1] = STATE(3140), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6957), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2917] = { + [sym_identifier] = ACTIONS(2995), + [anon_sym___extension__] = ACTIONS(2995), + [anon_sym_typedef] = ACTIONS(2962), + [anon_sym_extern] = ACTIONS(2995), + [anon_sym___attribute__] = ACTIONS(2995), + [anon_sym___attribute] = ACTIONS(2995), + [anon_sym_noreturn] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3000), + [anon_sym___declspec] = ACTIONS(2995), + [anon_sym_signed] = ACTIONS(2995), + [anon_sym_unsigned] = ACTIONS(2995), + [anon_sym_long] = ACTIONS(2995), + [anon_sym_short] = ACTIONS(2995), + [anon_sym_static] = ACTIONS(2995), + [anon_sym_auto] = ACTIONS(2995), + [anon_sym_register] = ACTIONS(2995), + [anon_sym_inline] = ACTIONS(2995), + [anon_sym___inline] = ACTIONS(2995), + [anon_sym___inline__] = ACTIONS(2995), + [anon_sym___forceinline] = ACTIONS(2995), + [anon_sym_thread_local] = ACTIONS(2995), + [anon_sym___thread] = ACTIONS(2995), + [anon_sym_CG_EXTERN] = ACTIONS(2995), + [anon_sym_CG_INLINE] = ACTIONS(2995), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2995), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2995), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2995), + [anon_sym_IBOutlet] = ACTIONS(2995), + [anon_sym_IBInspectable] = ACTIONS(2995), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2995), + [anon_sym_NS_INLINE] = ACTIONS(2995), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2995), + [anon_sym_OBJC_EXPORT] = ACTIONS(2995), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2995), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2995), + [anon_sym_const] = ACTIONS(2995), + [anon_sym_constexpr] = ACTIONS(2995), + [anon_sym_volatile] = ACTIONS(2995), + [anon_sym_restrict] = ACTIONS(2995), + [anon_sym___restrict__] = ACTIONS(2995), + [anon_sym__Atomic] = ACTIONS(2995), + [anon_sym__Noreturn] = ACTIONS(2995), + [anon_sym__Nonnull] = ACTIONS(2995), + [anon_sym_nullable] = ACTIONS(2995), + [anon_sym__Complex] = ACTIONS(2995), + [anon_sym__Nullable] = ACTIONS(2995), + [anon_sym__Nullable_result] = ACTIONS(2995), + [anon_sym__Null_unspecified] = ACTIONS(2995), + [anon_sym___autoreleasing] = ACTIONS(2995), + [anon_sym___block] = ACTIONS(2995), + [anon_sym___bridge] = ACTIONS(2995), + [anon_sym___bridge_retained] = ACTIONS(2995), + [anon_sym___bridge_transfer] = ACTIONS(2995), + [anon_sym___complex] = ACTIONS(2995), + [anon_sym___const] = ACTIONS(2995), + [anon_sym___imag] = ACTIONS(2995), + [anon_sym___kindof] = ACTIONS(2995), + [anon_sym___nonnull] = ACTIONS(2995), + [anon_sym___nullable] = ACTIONS(2995), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2995), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2995), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2995), + [anon_sym___real] = ACTIONS(2995), + [anon_sym___strong] = ACTIONS(2995), + [anon_sym___unsafe_unretained] = ACTIONS(2995), + [anon_sym___unused] = ACTIONS(2995), + [anon_sym___weak] = ACTIONS(2995), + [anon_sym_alignas] = ACTIONS(2995), + [anon_sym__Alignas] = ACTIONS(2995), + [sym_primitive_type] = ACTIONS(2995), + [anon_sym_enum] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2995), + [anon_sym_union] = ACTIONS(2995), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2995), + [anon_sym___typeof] = ACTIONS(2995), + [anon_sym_typeof] = ACTIONS(2995), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2995), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2995), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2995), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2995), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2995), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2995), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2995), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2995), + [anon_sym_NS_AVAILABLE] = ACTIONS(2995), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2995), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_API_AVAILABLE] = ACTIONS(2995), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_API_DEPRECATED] = ACTIONS(2995), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2995), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2995), + [anon_sym___deprecated_msg] = ACTIONS(2995), + [anon_sym___deprecated_enum_msg] = ACTIONS(2995), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2995), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2995), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2995), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2995), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2995), + [anon_sym_BOOL] = ACTIONS(2995), + [anon_sym_IMP] = ACTIONS(2995), + [anon_sym_SEL] = ACTIONS(2995), + [anon_sym_Class] = ACTIONS(2995), + [anon_sym_id] = ACTIONS(2995), + }, + [2918] = { + [sym__declaration_modifiers] = STATE(3221), + [sym_attribute_specifier] = STATE(3221), + [sym_attribute_declaration] = STATE(3221), + [sym_ms_declspec_modifier] = STATE(3221), + [sym_storage_class_specifier] = STATE(3221), + [sym_type_qualifier] = STATE(3221), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3221), + [sym_keyword_declarator] = STATE(3247), + [sym_method_parameter] = STATE(3245), + [aux_sym__declaration_specifiers_repeat1] = STATE(3221), + [aux_sym_keyword_selector_repeat1] = STATE(3247), + [aux_sym_method_declaration_repeat1] = STATE(3245), + [aux_sym_method_declaration_repeat2] = STATE(2147), + [sym_identifier] = ACTIONS(7079), + [anon_sym_COMMA] = ACTIONS(7161), + [anon_sym_SEMI] = ACTIONS(7163), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [anon_sym_COLON] = ACTIONS(7087), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2919] = { + [sym__declaration_modifiers] = STATE(6653), + [sym_attribute_specifier] = STATE(5754), + [sym_attribute_declaration] = STATE(6653), + [sym_ms_declspec_modifier] = STATE(6653), + [sym_storage_class_specifier] = STATE(6653), + [sym_type_qualifier] = STATE(6653), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3030), + [sym_gnu_asm_expression] = STATE(3144), + [sym_availability_attribute_specifier] = STATE(6653), + [aux_sym_declaration_repeat1] = STATE(3145), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6926), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [2920] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_COMMA] = ACTIONS(5932), + [anon_sym_RPAREN] = ACTIONS(5932), + [anon_sym_LPAREN2] = ACTIONS(7165), + [anon_sym_STAR] = ACTIONS(5932), + [anon_sym_CARET] = ACTIONS(5932), + [anon_sym_LT] = ACTIONS(7168), + [anon_sym_SEMI] = ACTIONS(5932), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(5932), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [anon_sym_enum] = ACTIONS(4502), + [anon_sym_COLON] = ACTIONS(5932), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [2921] = { + [sym_protocol_reference_list] = STATE(2961), + [sym_identifier] = ACTIONS(6446), + [anon_sym_COMMA] = ACTIONS(6448), + [anon_sym_RPAREN] = ACTIONS(6448), + [anon_sym_LPAREN2] = ACTIONS(6448), + [anon_sym_STAR] = ACTIONS(6448), + [anon_sym_CARET] = ACTIONS(6448), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_SEMI] = ACTIONS(6448), + [anon_sym___extension__] = ACTIONS(6446), + [anon_sym_extern] = ACTIONS(6446), + [anon_sym___attribute__] = ACTIONS(6446), + [anon_sym___attribute] = ACTIONS(6446), + [anon_sym_noreturn] = ACTIONS(6446), + [anon_sym_LBRACK] = ACTIONS(6448), + [anon_sym___declspec] = ACTIONS(6446), + [anon_sym___based] = ACTIONS(6446), + [anon_sym_signed] = ACTIONS(6446), + [anon_sym_unsigned] = ACTIONS(6446), + [anon_sym_long] = ACTIONS(6446), + [anon_sym_short] = ACTIONS(6446), + [anon_sym_static] = ACTIONS(6446), + [anon_sym_auto] = ACTIONS(6446), + [anon_sym_register] = ACTIONS(6446), + [anon_sym_inline] = ACTIONS(6446), + [anon_sym___inline] = ACTIONS(6446), + [anon_sym___inline__] = ACTIONS(6446), + [anon_sym___forceinline] = ACTIONS(6446), + [anon_sym_thread_local] = ACTIONS(6446), + [anon_sym___thread] = ACTIONS(6446), + [anon_sym_CG_EXTERN] = ACTIONS(6446), + [anon_sym_CG_INLINE] = ACTIONS(6446), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6446), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6446), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6446), + [anon_sym_IBOutlet] = ACTIONS(6446), + [anon_sym_IBInspectable] = ACTIONS(6446), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6446), + [anon_sym_NS_INLINE] = ACTIONS(6446), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6446), + [anon_sym_OBJC_EXPORT] = ACTIONS(6446), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6446), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6446), + [anon_sym_const] = ACTIONS(6446), + [anon_sym_constexpr] = ACTIONS(6446), + [anon_sym_volatile] = ACTIONS(6446), + [anon_sym_restrict] = ACTIONS(6446), + [anon_sym___restrict__] = ACTIONS(6446), + [anon_sym__Atomic] = ACTIONS(6446), + [anon_sym__Noreturn] = ACTIONS(6446), + [anon_sym__Nonnull] = ACTIONS(6446), + [anon_sym_nullable] = ACTIONS(6446), + [anon_sym__Complex] = ACTIONS(6446), + [anon_sym__Nullable] = ACTIONS(6446), + [anon_sym__Nullable_result] = ACTIONS(6446), + [anon_sym__Null_unspecified] = ACTIONS(6446), + [anon_sym___autoreleasing] = ACTIONS(6446), + [anon_sym___block] = ACTIONS(6446), + [anon_sym___bridge] = ACTIONS(6446), + [anon_sym___bridge_retained] = ACTIONS(6446), + [anon_sym___bridge_transfer] = ACTIONS(6446), + [anon_sym___complex] = ACTIONS(6446), + [anon_sym___const] = ACTIONS(6446), + [anon_sym___imag] = ACTIONS(6446), + [anon_sym___kindof] = ACTIONS(6446), + [anon_sym___nonnull] = ACTIONS(6446), + [anon_sym___nullable] = ACTIONS(6446), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6446), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6446), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6446), + [anon_sym___real] = ACTIONS(6446), + [anon_sym___strong] = ACTIONS(6446), + [anon_sym___unsafe_unretained] = ACTIONS(6446), + [anon_sym___unused] = ACTIONS(6446), + [anon_sym___weak] = ACTIONS(6446), + [anon_sym_alignas] = ACTIONS(6446), + [anon_sym__Alignas] = ACTIONS(6446), + [sym_primitive_type] = ACTIONS(6446), + [anon_sym_enum] = ACTIONS(6446), + [anon_sym_COLON] = ACTIONS(6448), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6446), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6446), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6446), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6446), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6446), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6446), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6446), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6446), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6446), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6446), + [anon_sym_NS_AVAILABLE] = ACTIONS(6446), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6446), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6446), + [anon_sym_API_AVAILABLE] = ACTIONS(6446), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6446), + [anon_sym_API_DEPRECATED] = ACTIONS(6446), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6446), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6446), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6446), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6446), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6446), + [anon_sym___deprecated_msg] = ACTIONS(6446), + [anon_sym___deprecated_enum_msg] = ACTIONS(6446), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6446), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6446), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6446), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6446), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6446), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6446), + }, + [2922] = { + [aux_sym_generic_specifier_repeat1] = STATE(2924), + [sym_identifier] = ACTIONS(7170), + [anon_sym_COMMA] = ACTIONS(7172), + [anon_sym_RPAREN] = ACTIONS(7172), + [anon_sym_LPAREN2] = ACTIONS(7172), + [anon_sym_STAR] = ACTIONS(7172), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_LT] = ACTIONS(7168), + [anon_sym_SEMI] = ACTIONS(7172), + [anon_sym___extension__] = ACTIONS(7170), + [anon_sym_extern] = ACTIONS(7170), + [anon_sym___attribute__] = ACTIONS(7170), + [anon_sym___attribute] = ACTIONS(7170), + [anon_sym_noreturn] = ACTIONS(7170), + [anon_sym_LBRACK] = ACTIONS(7172), + [anon_sym___declspec] = ACTIONS(7170), + [anon_sym___based] = ACTIONS(7170), + [anon_sym_signed] = ACTIONS(7170), + [anon_sym_unsigned] = ACTIONS(7170), + [anon_sym_long] = ACTIONS(7170), + [anon_sym_short] = ACTIONS(7170), + [anon_sym_static] = ACTIONS(7170), + [anon_sym_auto] = ACTIONS(7170), + [anon_sym_register] = ACTIONS(7170), + [anon_sym_inline] = ACTIONS(7170), + [anon_sym___inline] = ACTIONS(7170), + [anon_sym___inline__] = ACTIONS(7170), + [anon_sym___forceinline] = ACTIONS(7170), + [anon_sym_thread_local] = ACTIONS(7170), + [anon_sym___thread] = ACTIONS(7170), + [anon_sym_CG_EXTERN] = ACTIONS(7170), + [anon_sym_CG_INLINE] = ACTIONS(7170), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7170), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7170), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7170), + [anon_sym_IBOutlet] = ACTIONS(7170), + [anon_sym_IBInspectable] = ACTIONS(7170), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7170), + [anon_sym_NS_INLINE] = ACTIONS(7170), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7170), + [anon_sym_OBJC_EXPORT] = ACTIONS(7170), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7170), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7170), + [anon_sym_const] = ACTIONS(7170), + [anon_sym_constexpr] = ACTIONS(7170), + [anon_sym_volatile] = ACTIONS(7170), + [anon_sym_restrict] = ACTIONS(7170), + [anon_sym___restrict__] = ACTIONS(7170), + [anon_sym__Atomic] = ACTIONS(7170), + [anon_sym__Noreturn] = ACTIONS(7170), + [anon_sym__Nonnull] = ACTIONS(7170), + [anon_sym_nullable] = ACTIONS(7170), + [anon_sym__Complex] = ACTIONS(7170), + [anon_sym__Nullable] = ACTIONS(7170), + [anon_sym__Nullable_result] = ACTIONS(7170), + [anon_sym__Null_unspecified] = ACTIONS(7170), + [anon_sym___autoreleasing] = ACTIONS(7170), + [anon_sym___block] = ACTIONS(7170), + [anon_sym___bridge] = ACTIONS(7170), + [anon_sym___bridge_retained] = ACTIONS(7170), + [anon_sym___bridge_transfer] = ACTIONS(7170), + [anon_sym___complex] = ACTIONS(7170), + [anon_sym___const] = ACTIONS(7170), + [anon_sym___imag] = ACTIONS(7170), + [anon_sym___kindof] = ACTIONS(7170), + [anon_sym___nonnull] = ACTIONS(7170), + [anon_sym___nullable] = ACTIONS(7170), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7170), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7170), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7170), + [anon_sym___real] = ACTIONS(7170), + [anon_sym___strong] = ACTIONS(7170), + [anon_sym___unsafe_unretained] = ACTIONS(7170), + [anon_sym___unused] = ACTIONS(7170), + [anon_sym___weak] = ACTIONS(7170), + [anon_sym_alignas] = ACTIONS(7170), + [anon_sym__Alignas] = ACTIONS(7170), + [sym_primitive_type] = ACTIONS(7170), + [anon_sym_enum] = ACTIONS(7170), + [anon_sym_COLON] = ACTIONS(7172), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7170), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7170), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7170), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7170), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7170), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7170), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7170), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7170), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7170), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7170), + [anon_sym_NS_AVAILABLE] = ACTIONS(7170), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7170), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7170), + [anon_sym_API_AVAILABLE] = ACTIONS(7170), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7170), + [anon_sym_API_DEPRECATED] = ACTIONS(7170), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7170), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7170), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7170), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7170), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7170), + [anon_sym___deprecated_msg] = ACTIONS(7170), + [anon_sym___deprecated_enum_msg] = ACTIONS(7170), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7170), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7170), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7170), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7170), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7170), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7170), + }, + [2923] = { + [sym_identifier] = ACTIONS(7174), + [anon_sym___extension__] = ACTIONS(7174), + [anon_sym_extern] = ACTIONS(7174), + [anon_sym___attribute__] = ACTIONS(7174), + [anon_sym___attribute] = ACTIONS(7174), + [anon_sym_noreturn] = ACTIONS(7174), + [anon_sym_LBRACK] = ACTIONS(7176), + [anon_sym___declspec] = ACTIONS(7174), + [anon_sym_signed] = ACTIONS(7174), + [anon_sym_unsigned] = ACTIONS(7174), + [anon_sym_long] = ACTIONS(7174), + [anon_sym_short] = ACTIONS(7174), + [anon_sym_static] = ACTIONS(7174), + [anon_sym_auto] = ACTIONS(7174), + [anon_sym_register] = ACTIONS(7174), + [anon_sym_inline] = ACTIONS(7174), + [anon_sym___inline] = ACTIONS(7174), + [anon_sym___inline__] = ACTIONS(7174), + [anon_sym___forceinline] = ACTIONS(7174), + [anon_sym_thread_local] = ACTIONS(7174), + [anon_sym___thread] = ACTIONS(7174), + [anon_sym_CG_EXTERN] = ACTIONS(7174), + [anon_sym_CG_INLINE] = ACTIONS(7174), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7174), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7174), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7174), + [anon_sym_IBOutlet] = ACTIONS(7174), + [anon_sym_IBInspectable] = ACTIONS(7174), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7174), + [anon_sym_NS_INLINE] = ACTIONS(7174), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7174), + [anon_sym_OBJC_EXPORT] = ACTIONS(7174), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7174), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7174), + [anon_sym_const] = ACTIONS(7174), + [anon_sym_constexpr] = ACTIONS(7174), + [anon_sym_volatile] = ACTIONS(7174), + [anon_sym_restrict] = ACTIONS(7174), + [anon_sym___restrict__] = ACTIONS(7174), + [anon_sym__Atomic] = ACTIONS(7174), + [anon_sym__Noreturn] = ACTIONS(7174), + [anon_sym__Nonnull] = ACTIONS(7174), + [anon_sym_nullable] = ACTIONS(7174), + [anon_sym__Complex] = ACTIONS(7174), + [anon_sym__Nullable] = ACTIONS(7174), + [anon_sym__Nullable_result] = ACTIONS(7174), + [anon_sym__Null_unspecified] = ACTIONS(7174), + [anon_sym___autoreleasing] = ACTIONS(7174), + [anon_sym___block] = ACTIONS(7174), + [anon_sym___bridge] = ACTIONS(7174), + [anon_sym___bridge_retained] = ACTIONS(7174), + [anon_sym___bridge_transfer] = ACTIONS(7174), + [anon_sym___complex] = ACTIONS(7174), + [anon_sym___const] = ACTIONS(7174), + [anon_sym___imag] = ACTIONS(7174), + [anon_sym___kindof] = ACTIONS(7174), + [anon_sym___nonnull] = ACTIONS(7174), + [anon_sym___nullable] = ACTIONS(7174), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7174), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7174), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7174), + [anon_sym___real] = ACTIONS(7174), + [anon_sym___strong] = ACTIONS(7174), + [anon_sym___unsafe_unretained] = ACTIONS(7174), + [anon_sym___unused] = ACTIONS(7174), + [anon_sym___weak] = ACTIONS(7174), + [anon_sym_alignas] = ACTIONS(7174), + [anon_sym__Alignas] = ACTIONS(7174), + [sym_primitive_type] = ACTIONS(7174), + [anon_sym_enum] = ACTIONS(7174), + [anon_sym_struct] = ACTIONS(7174), + [anon_sym_union] = ACTIONS(7174), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7174), + [anon_sym___typeof] = ACTIONS(7174), + [anon_sym_typeof] = ACTIONS(7174), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7174), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7174), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7174), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7174), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7174), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7174), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7174), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7174), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7174), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7174), + [anon_sym_NS_AVAILABLE] = ACTIONS(7174), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7174), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7174), + [anon_sym_API_AVAILABLE] = ACTIONS(7174), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7174), + [anon_sym_API_DEPRECATED] = ACTIONS(7174), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7174), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7174), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7174), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7174), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7174), + [anon_sym___deprecated_msg] = ACTIONS(7174), + [anon_sym___deprecated_enum_msg] = ACTIONS(7174), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7174), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7174), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7174), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7174), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7174), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7174), + [anon_sym_BOOL] = ACTIONS(7174), + [anon_sym_IMP] = ACTIONS(7174), + [anon_sym_SEL] = ACTIONS(7174), + [anon_sym_Class] = ACTIONS(7174), + [anon_sym_id] = ACTIONS(7174), + }, + [2924] = { + [aux_sym_generic_specifier_repeat1] = STATE(2924), + [sym_identifier] = ACTIONS(7178), + [anon_sym_COMMA] = ACTIONS(7180), + [anon_sym_RPAREN] = ACTIONS(7180), + [anon_sym_LPAREN2] = ACTIONS(7180), + [anon_sym_STAR] = ACTIONS(7180), + [anon_sym_CARET] = ACTIONS(7180), + [anon_sym_LT] = ACTIONS(7182), + [anon_sym_SEMI] = ACTIONS(7180), + [anon_sym___extension__] = ACTIONS(7178), + [anon_sym_extern] = ACTIONS(7178), + [anon_sym___attribute__] = ACTIONS(7178), + [anon_sym___attribute] = ACTIONS(7178), + [anon_sym_noreturn] = ACTIONS(7178), + [anon_sym_LBRACK] = ACTIONS(7180), + [anon_sym___declspec] = ACTIONS(7178), + [anon_sym___based] = ACTIONS(7178), + [anon_sym_signed] = ACTIONS(7178), + [anon_sym_unsigned] = ACTIONS(7178), + [anon_sym_long] = ACTIONS(7178), + [anon_sym_short] = ACTIONS(7178), + [anon_sym_static] = ACTIONS(7178), + [anon_sym_auto] = ACTIONS(7178), + [anon_sym_register] = ACTIONS(7178), + [anon_sym_inline] = ACTIONS(7178), + [anon_sym___inline] = ACTIONS(7178), + [anon_sym___inline__] = ACTIONS(7178), + [anon_sym___forceinline] = ACTIONS(7178), + [anon_sym_thread_local] = ACTIONS(7178), + [anon_sym___thread] = ACTIONS(7178), + [anon_sym_CG_EXTERN] = ACTIONS(7178), + [anon_sym_CG_INLINE] = ACTIONS(7178), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7178), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7178), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7178), + [anon_sym_IBOutlet] = ACTIONS(7178), + [anon_sym_IBInspectable] = ACTIONS(7178), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7178), + [anon_sym_NS_INLINE] = ACTIONS(7178), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7178), + [anon_sym_OBJC_EXPORT] = ACTIONS(7178), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7178), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7178), + [anon_sym_const] = ACTIONS(7178), + [anon_sym_constexpr] = ACTIONS(7178), + [anon_sym_volatile] = ACTIONS(7178), + [anon_sym_restrict] = ACTIONS(7178), + [anon_sym___restrict__] = ACTIONS(7178), + [anon_sym__Atomic] = ACTIONS(7178), + [anon_sym__Noreturn] = ACTIONS(7178), + [anon_sym__Nonnull] = ACTIONS(7178), + [anon_sym_nullable] = ACTIONS(7178), + [anon_sym__Complex] = ACTIONS(7178), + [anon_sym__Nullable] = ACTIONS(7178), + [anon_sym__Nullable_result] = ACTIONS(7178), + [anon_sym__Null_unspecified] = ACTIONS(7178), + [anon_sym___autoreleasing] = ACTIONS(7178), + [anon_sym___block] = ACTIONS(7178), + [anon_sym___bridge] = ACTIONS(7178), + [anon_sym___bridge_retained] = ACTIONS(7178), + [anon_sym___bridge_transfer] = ACTIONS(7178), + [anon_sym___complex] = ACTIONS(7178), + [anon_sym___const] = ACTIONS(7178), + [anon_sym___imag] = ACTIONS(7178), + [anon_sym___kindof] = ACTIONS(7178), + [anon_sym___nonnull] = ACTIONS(7178), + [anon_sym___nullable] = ACTIONS(7178), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7178), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7178), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7178), + [anon_sym___real] = ACTIONS(7178), + [anon_sym___strong] = ACTIONS(7178), + [anon_sym___unsafe_unretained] = ACTIONS(7178), + [anon_sym___unused] = ACTIONS(7178), + [anon_sym___weak] = ACTIONS(7178), + [anon_sym_alignas] = ACTIONS(7178), + [anon_sym__Alignas] = ACTIONS(7178), + [sym_primitive_type] = ACTIONS(7178), + [anon_sym_enum] = ACTIONS(7178), + [anon_sym_COLON] = ACTIONS(7180), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7178), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7178), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7178), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7178), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7178), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7178), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7178), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7178), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7178), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7178), + [anon_sym_NS_AVAILABLE] = ACTIONS(7178), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7178), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7178), + [anon_sym_API_AVAILABLE] = ACTIONS(7178), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7178), + [anon_sym_API_DEPRECATED] = ACTIONS(7178), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7178), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7178), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7178), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7178), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7178), + [anon_sym___deprecated_msg] = ACTIONS(7178), + [anon_sym___deprecated_enum_msg] = ACTIONS(7178), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7178), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7178), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7178), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7178), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7178), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7178), + }, + [2925] = { + [sym_identifier] = ACTIONS(7185), + [anon_sym_COMMA] = ACTIONS(7187), + [anon_sym_RPAREN] = ACTIONS(7187), + [anon_sym_LPAREN2] = ACTIONS(7187), + [anon_sym_STAR] = ACTIONS(7187), + [anon_sym_CARET] = ACTIONS(7187), + [anon_sym_LT] = ACTIONS(7187), + [anon_sym_SEMI] = ACTIONS(7187), + [anon_sym___extension__] = ACTIONS(7185), + [anon_sym_extern] = ACTIONS(7185), + [anon_sym___attribute__] = ACTIONS(7185), + [anon_sym___attribute] = ACTIONS(7185), + [anon_sym_noreturn] = ACTIONS(7185), + [anon_sym_LBRACK] = ACTIONS(7187), + [anon_sym___declspec] = ACTIONS(7185), + [anon_sym___based] = ACTIONS(7185), + [anon_sym_signed] = ACTIONS(7185), + [anon_sym_unsigned] = ACTIONS(7185), + [anon_sym_long] = ACTIONS(7185), + [anon_sym_short] = ACTIONS(7185), + [anon_sym_static] = ACTIONS(7185), + [anon_sym_auto] = ACTIONS(7185), + [anon_sym_register] = ACTIONS(7185), + [anon_sym_inline] = ACTIONS(7185), + [anon_sym___inline] = ACTIONS(7185), + [anon_sym___inline__] = ACTIONS(7185), + [anon_sym___forceinline] = ACTIONS(7185), + [anon_sym_thread_local] = ACTIONS(7185), + [anon_sym___thread] = ACTIONS(7185), + [anon_sym_CG_EXTERN] = ACTIONS(7185), + [anon_sym_CG_INLINE] = ACTIONS(7185), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7185), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7185), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7185), + [anon_sym_IBOutlet] = ACTIONS(7185), + [anon_sym_IBInspectable] = ACTIONS(7185), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7185), + [anon_sym_NS_INLINE] = ACTIONS(7185), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7185), + [anon_sym_OBJC_EXPORT] = ACTIONS(7185), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7185), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7185), + [anon_sym_const] = ACTIONS(7185), + [anon_sym_constexpr] = ACTIONS(7185), + [anon_sym_volatile] = ACTIONS(7185), + [anon_sym_restrict] = ACTIONS(7185), + [anon_sym___restrict__] = ACTIONS(7185), + [anon_sym__Atomic] = ACTIONS(7185), + [anon_sym__Noreturn] = ACTIONS(7185), + [anon_sym__Nonnull] = ACTIONS(7185), + [anon_sym_nullable] = ACTIONS(7185), + [anon_sym__Complex] = ACTIONS(7185), + [anon_sym__Nullable] = ACTIONS(7185), + [anon_sym__Nullable_result] = ACTIONS(7185), + [anon_sym__Null_unspecified] = ACTIONS(7185), + [anon_sym___autoreleasing] = ACTIONS(7185), + [anon_sym___block] = ACTIONS(7185), + [anon_sym___bridge] = ACTIONS(7185), + [anon_sym___bridge_retained] = ACTIONS(7185), + [anon_sym___bridge_transfer] = ACTIONS(7185), + [anon_sym___complex] = ACTIONS(7185), + [anon_sym___const] = ACTIONS(7185), + [anon_sym___imag] = ACTIONS(7185), + [anon_sym___kindof] = ACTIONS(7185), + [anon_sym___nonnull] = ACTIONS(7185), + [anon_sym___nullable] = ACTIONS(7185), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7185), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7185), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7185), + [anon_sym___real] = ACTIONS(7185), + [anon_sym___strong] = ACTIONS(7185), + [anon_sym___unsafe_unretained] = ACTIONS(7185), + [anon_sym___unused] = ACTIONS(7185), + [anon_sym___weak] = ACTIONS(7185), + [anon_sym_alignas] = ACTIONS(7185), + [anon_sym__Alignas] = ACTIONS(7185), + [sym_primitive_type] = ACTIONS(7185), + [anon_sym_enum] = ACTIONS(7185), + [anon_sym_COLON] = ACTIONS(7187), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7185), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7185), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7185), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7185), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7185), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7185), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7185), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7185), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7185), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7185), + [anon_sym_NS_AVAILABLE] = ACTIONS(7185), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7185), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7185), + [anon_sym_API_AVAILABLE] = ACTIONS(7185), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7185), + [anon_sym_API_DEPRECATED] = ACTIONS(7185), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7185), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7185), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7185), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7185), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7185), + [anon_sym___deprecated_msg] = ACTIONS(7185), + [anon_sym___deprecated_enum_msg] = ACTIONS(7185), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7185), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7185), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7185), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7185), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7185), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7185), + }, + [2926] = { + [sym_attribute_specifier] = STATE(2952), + [sym_identifier] = ACTIONS(7189), + [anon_sym_COMMA] = ACTIONS(7191), + [anon_sym_RPAREN] = ACTIONS(7191), + [anon_sym_LPAREN2] = ACTIONS(7191), + [anon_sym_STAR] = ACTIONS(7191), + [anon_sym_CARET] = ACTIONS(7191), + [anon_sym_SEMI] = ACTIONS(7191), + [anon_sym___extension__] = ACTIONS(7189), + [anon_sym_extern] = ACTIONS(7189), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(7189), + [anon_sym_LBRACK] = ACTIONS(7191), + [anon_sym___declspec] = ACTIONS(7189), + [anon_sym___based] = ACTIONS(7189), + [anon_sym_signed] = ACTIONS(7189), + [anon_sym_unsigned] = ACTIONS(7189), + [anon_sym_long] = ACTIONS(7189), + [anon_sym_short] = ACTIONS(7189), + [anon_sym_static] = ACTIONS(7189), + [anon_sym_auto] = ACTIONS(7189), + [anon_sym_register] = ACTIONS(7189), + [anon_sym_inline] = ACTIONS(7189), + [anon_sym___inline] = ACTIONS(7189), + [anon_sym___inline__] = ACTIONS(7189), + [anon_sym___forceinline] = ACTIONS(7189), + [anon_sym_thread_local] = ACTIONS(7189), + [anon_sym___thread] = ACTIONS(7189), + [anon_sym_CG_EXTERN] = ACTIONS(7189), + [anon_sym_CG_INLINE] = ACTIONS(7189), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7189), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7189), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7189), + [anon_sym_IBOutlet] = ACTIONS(7189), + [anon_sym_IBInspectable] = ACTIONS(7189), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7189), + [anon_sym_NS_INLINE] = ACTIONS(7189), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7189), + [anon_sym_OBJC_EXPORT] = ACTIONS(7189), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7189), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7189), + [anon_sym_const] = ACTIONS(7189), + [anon_sym_constexpr] = ACTIONS(7189), + [anon_sym_volatile] = ACTIONS(7189), + [anon_sym_restrict] = ACTIONS(7189), + [anon_sym___restrict__] = ACTIONS(7189), + [anon_sym__Atomic] = ACTIONS(7189), + [anon_sym__Noreturn] = ACTIONS(7189), + [anon_sym__Nonnull] = ACTIONS(7189), + [anon_sym_nullable] = ACTIONS(7189), + [anon_sym__Complex] = ACTIONS(7189), + [anon_sym__Nullable] = ACTIONS(7189), + [anon_sym__Nullable_result] = ACTIONS(7189), + [anon_sym__Null_unspecified] = ACTIONS(7189), + [anon_sym___autoreleasing] = ACTIONS(7189), + [anon_sym___block] = ACTIONS(7189), + [anon_sym___bridge] = ACTIONS(7189), + [anon_sym___bridge_retained] = ACTIONS(7189), + [anon_sym___bridge_transfer] = ACTIONS(7189), + [anon_sym___complex] = ACTIONS(7189), + [anon_sym___const] = ACTIONS(7189), + [anon_sym___imag] = ACTIONS(7189), + [anon_sym___kindof] = ACTIONS(7189), + [anon_sym___nonnull] = ACTIONS(7189), + [anon_sym___nullable] = ACTIONS(7189), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7189), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7189), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7189), + [anon_sym___real] = ACTIONS(7189), + [anon_sym___strong] = ACTIONS(7189), + [anon_sym___unsafe_unretained] = ACTIONS(7189), + [anon_sym___unused] = ACTIONS(7189), + [anon_sym___weak] = ACTIONS(7189), + [anon_sym_alignas] = ACTIONS(7189), + [anon_sym__Alignas] = ACTIONS(7189), + [sym_primitive_type] = ACTIONS(7189), + [anon_sym_enum] = ACTIONS(7189), + [anon_sym_COLON] = ACTIONS(7191), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7189), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7189), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7189), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7189), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7189), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7189), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7189), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7189), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7189), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7189), + [anon_sym_NS_AVAILABLE] = ACTIONS(7189), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7189), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7189), + [anon_sym_API_AVAILABLE] = ACTIONS(7189), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7189), + [anon_sym_API_DEPRECATED] = ACTIONS(7189), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7189), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7189), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7189), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7189), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7189), + [anon_sym___deprecated_msg] = ACTIONS(7189), + [anon_sym___deprecated_enum_msg] = ACTIONS(7189), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7189), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7189), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7189), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7189), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7189), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7189), + }, + [2927] = { + [sym_attribute_specifier] = STATE(3008), + [sym_identifier] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7195), + [anon_sym_RPAREN] = ACTIONS(7195), + [anon_sym_LPAREN2] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7195), + [anon_sym_SEMI] = ACTIONS(7195), + [anon_sym___extension__] = ACTIONS(7193), + [anon_sym_extern] = ACTIONS(7193), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(7193), + [anon_sym_LBRACK] = ACTIONS(7195), + [anon_sym___declspec] = ACTIONS(7193), + [anon_sym___based] = ACTIONS(7193), + [anon_sym_signed] = ACTIONS(7193), + [anon_sym_unsigned] = ACTIONS(7193), + [anon_sym_long] = ACTIONS(7193), + [anon_sym_short] = ACTIONS(7193), + [anon_sym_static] = ACTIONS(7193), + [anon_sym_auto] = ACTIONS(7193), + [anon_sym_register] = ACTIONS(7193), + [anon_sym_inline] = ACTIONS(7193), + [anon_sym___inline] = ACTIONS(7193), + [anon_sym___inline__] = ACTIONS(7193), + [anon_sym___forceinline] = ACTIONS(7193), + [anon_sym_thread_local] = ACTIONS(7193), + [anon_sym___thread] = ACTIONS(7193), + [anon_sym_CG_EXTERN] = ACTIONS(7193), + [anon_sym_CG_INLINE] = ACTIONS(7193), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7193), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7193), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7193), + [anon_sym_IBOutlet] = ACTIONS(7193), + [anon_sym_IBInspectable] = ACTIONS(7193), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7193), + [anon_sym_NS_INLINE] = ACTIONS(7193), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7193), + [anon_sym_OBJC_EXPORT] = ACTIONS(7193), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7193), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7193), + [anon_sym_const] = ACTIONS(7193), + [anon_sym_constexpr] = ACTIONS(7193), + [anon_sym_volatile] = ACTIONS(7193), + [anon_sym_restrict] = ACTIONS(7193), + [anon_sym___restrict__] = ACTIONS(7193), + [anon_sym__Atomic] = ACTIONS(7193), + [anon_sym__Noreturn] = ACTIONS(7193), + [anon_sym__Nonnull] = ACTIONS(7193), + [anon_sym_nullable] = ACTIONS(7193), + [anon_sym__Complex] = ACTIONS(7193), + [anon_sym__Nullable] = ACTIONS(7193), + [anon_sym__Nullable_result] = ACTIONS(7193), + [anon_sym__Null_unspecified] = ACTIONS(7193), + [anon_sym___autoreleasing] = ACTIONS(7193), + [anon_sym___block] = ACTIONS(7193), + [anon_sym___bridge] = ACTIONS(7193), + [anon_sym___bridge_retained] = ACTIONS(7193), + [anon_sym___bridge_transfer] = ACTIONS(7193), + [anon_sym___complex] = ACTIONS(7193), + [anon_sym___const] = ACTIONS(7193), + [anon_sym___imag] = ACTIONS(7193), + [anon_sym___kindof] = ACTIONS(7193), + [anon_sym___nonnull] = ACTIONS(7193), + [anon_sym___nullable] = ACTIONS(7193), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7193), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7193), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7193), + [anon_sym___real] = ACTIONS(7193), + [anon_sym___strong] = ACTIONS(7193), + [anon_sym___unsafe_unretained] = ACTIONS(7193), + [anon_sym___unused] = ACTIONS(7193), + [anon_sym___weak] = ACTIONS(7193), + [anon_sym_alignas] = ACTIONS(7193), + [anon_sym__Alignas] = ACTIONS(7193), + [sym_primitive_type] = ACTIONS(7193), + [anon_sym_enum] = ACTIONS(7193), + [anon_sym_COLON] = ACTIONS(7195), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7193), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7193), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7193), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7193), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7193), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7193), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7193), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7193), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7193), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7193), + [anon_sym_NS_AVAILABLE] = ACTIONS(7193), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7193), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7193), + [anon_sym_API_AVAILABLE] = ACTIONS(7193), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7193), + [anon_sym_API_DEPRECATED] = ACTIONS(7193), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7193), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7193), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7193), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7193), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7193), + [anon_sym___deprecated_msg] = ACTIONS(7193), + [anon_sym___deprecated_enum_msg] = ACTIONS(7193), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7193), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7193), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7193), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7193), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7193), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7193), + }, + [2928] = { + [sym__declaration_modifiers] = STATE(2522), + [sym_attribute_specifier] = STATE(2522), + [sym_attribute_declaration] = STATE(2522), + [sym_ms_declspec_modifier] = STATE(2522), + [sym_storage_class_specifier] = STATE(2522), + [sym_type_qualifier] = STATE(2522), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2522), + [aux_sym__declaration_specifiers_repeat1] = STATE(2522), + [sym_identifier] = ACTIONS(2922), + [anon_sym_COMMA] = ACTIONS(6210), + [anon_sym_SEMI] = ACTIONS(6210), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [anon_sym_COLON] = ACTIONS(6210), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(2922), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_id] = ACTIONS(2922), + }, + [2929] = { + [sym_identifier] = ACTIONS(7197), + [anon_sym_COMMA] = ACTIONS(7199), + [anon_sym_RPAREN] = ACTIONS(7199), + [anon_sym_LPAREN2] = ACTIONS(7199), + [anon_sym_STAR] = ACTIONS(7199), + [anon_sym_CARET] = ACTIONS(7199), + [anon_sym_LT] = ACTIONS(7199), + [anon_sym_SEMI] = ACTIONS(7199), + [anon_sym___extension__] = ACTIONS(7197), + [anon_sym_extern] = ACTIONS(7197), + [anon_sym___attribute__] = ACTIONS(7197), + [anon_sym___attribute] = ACTIONS(7197), + [anon_sym_noreturn] = ACTIONS(7197), + [anon_sym_LBRACK] = ACTIONS(7199), + [anon_sym___declspec] = ACTIONS(7197), + [anon_sym___based] = ACTIONS(7197), + [anon_sym_signed] = ACTIONS(7197), + [anon_sym_unsigned] = ACTIONS(7197), + [anon_sym_long] = ACTIONS(7197), + [anon_sym_short] = ACTIONS(7197), + [anon_sym_static] = ACTIONS(7197), + [anon_sym_auto] = ACTIONS(7197), + [anon_sym_register] = ACTIONS(7197), + [anon_sym_inline] = ACTIONS(7197), + [anon_sym___inline] = ACTIONS(7197), + [anon_sym___inline__] = ACTIONS(7197), + [anon_sym___forceinline] = ACTIONS(7197), + [anon_sym_thread_local] = ACTIONS(7197), + [anon_sym___thread] = ACTIONS(7197), + [anon_sym_CG_EXTERN] = ACTIONS(7197), + [anon_sym_CG_INLINE] = ACTIONS(7197), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7197), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7197), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7197), + [anon_sym_IBOutlet] = ACTIONS(7197), + [anon_sym_IBInspectable] = ACTIONS(7197), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7197), + [anon_sym_NS_INLINE] = ACTIONS(7197), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7197), + [anon_sym_OBJC_EXPORT] = ACTIONS(7197), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7197), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7197), + [anon_sym_const] = ACTIONS(7197), + [anon_sym_constexpr] = ACTIONS(7197), + [anon_sym_volatile] = ACTIONS(7197), + [anon_sym_restrict] = ACTIONS(7197), + [anon_sym___restrict__] = ACTIONS(7197), + [anon_sym__Atomic] = ACTIONS(7197), + [anon_sym__Noreturn] = ACTIONS(7197), + [anon_sym__Nonnull] = ACTIONS(7197), + [anon_sym_nullable] = ACTIONS(7197), + [anon_sym__Complex] = ACTIONS(7197), + [anon_sym__Nullable] = ACTIONS(7197), + [anon_sym__Nullable_result] = ACTIONS(7197), + [anon_sym__Null_unspecified] = ACTIONS(7197), + [anon_sym___autoreleasing] = ACTIONS(7197), + [anon_sym___block] = ACTIONS(7197), + [anon_sym___bridge] = ACTIONS(7197), + [anon_sym___bridge_retained] = ACTIONS(7197), + [anon_sym___bridge_transfer] = ACTIONS(7197), + [anon_sym___complex] = ACTIONS(7197), + [anon_sym___const] = ACTIONS(7197), + [anon_sym___imag] = ACTIONS(7197), + [anon_sym___kindof] = ACTIONS(7197), + [anon_sym___nonnull] = ACTIONS(7197), + [anon_sym___nullable] = ACTIONS(7197), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7197), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7197), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7197), + [anon_sym___real] = ACTIONS(7197), + [anon_sym___strong] = ACTIONS(7197), + [anon_sym___unsafe_unretained] = ACTIONS(7197), + [anon_sym___unused] = ACTIONS(7197), + [anon_sym___weak] = ACTIONS(7197), + [anon_sym_alignas] = ACTIONS(7197), + [anon_sym__Alignas] = ACTIONS(7197), + [sym_primitive_type] = ACTIONS(7197), + [anon_sym_enum] = ACTIONS(7197), + [anon_sym_COLON] = ACTIONS(7199), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7197), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7197), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7197), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7197), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7197), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7197), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7197), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7197), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7197), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7197), + [anon_sym_NS_AVAILABLE] = ACTIONS(7197), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7197), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7197), + [anon_sym_API_AVAILABLE] = ACTIONS(7197), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7197), + [anon_sym_API_DEPRECATED] = ACTIONS(7197), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7197), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7197), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7197), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7197), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7197), + [anon_sym___deprecated_msg] = ACTIONS(7197), + [anon_sym___deprecated_enum_msg] = ACTIONS(7197), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7197), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7197), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7197), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7197), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7197), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7197), + }, + [2930] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2930), + [sym_identifier] = ACTIONS(7201), + [anon_sym_COMMA] = ACTIONS(7203), + [anon_sym_RPAREN] = ACTIONS(7203), + [anon_sym_LPAREN2] = ACTIONS(7203), + [anon_sym_STAR] = ACTIONS(7203), + [anon_sym_CARET] = ACTIONS(7203), + [anon_sym_SEMI] = ACTIONS(7203), + [anon_sym___extension__] = ACTIONS(7201), + [anon_sym_extern] = ACTIONS(7201), + [anon_sym___attribute__] = ACTIONS(7201), + [anon_sym___attribute] = ACTIONS(7201), + [anon_sym_noreturn] = ACTIONS(7201), + [anon_sym_LBRACK] = ACTIONS(7203), + [anon_sym___declspec] = ACTIONS(7201), + [anon_sym___based] = ACTIONS(7201), + [anon_sym_signed] = ACTIONS(7205), + [anon_sym_unsigned] = ACTIONS(7205), + [anon_sym_long] = ACTIONS(7205), + [anon_sym_short] = ACTIONS(7205), + [anon_sym_static] = ACTIONS(7201), + [anon_sym_auto] = ACTIONS(7201), + [anon_sym_register] = ACTIONS(7201), + [anon_sym_inline] = ACTIONS(7201), + [anon_sym___inline] = ACTIONS(7201), + [anon_sym___inline__] = ACTIONS(7201), + [anon_sym___forceinline] = ACTIONS(7201), + [anon_sym_thread_local] = ACTIONS(7201), + [anon_sym___thread] = ACTIONS(7201), + [anon_sym_CG_EXTERN] = ACTIONS(7201), + [anon_sym_CG_INLINE] = ACTIONS(7201), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7201), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7201), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7201), + [anon_sym_IBOutlet] = ACTIONS(7201), + [anon_sym_IBInspectable] = ACTIONS(7201), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7201), + [anon_sym_NS_INLINE] = ACTIONS(7201), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7201), + [anon_sym_OBJC_EXPORT] = ACTIONS(7201), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7201), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7201), + [anon_sym_const] = ACTIONS(7201), + [anon_sym_constexpr] = ACTIONS(7201), + [anon_sym_volatile] = ACTIONS(7201), + [anon_sym_restrict] = ACTIONS(7201), + [anon_sym___restrict__] = ACTIONS(7201), + [anon_sym__Atomic] = ACTIONS(7201), + [anon_sym__Noreturn] = ACTIONS(7201), + [anon_sym__Nonnull] = ACTIONS(7201), + [anon_sym_nullable] = ACTIONS(7201), + [anon_sym__Complex] = ACTIONS(7201), + [anon_sym__Nullable] = ACTIONS(7201), + [anon_sym__Nullable_result] = ACTIONS(7201), + [anon_sym__Null_unspecified] = ACTIONS(7201), + [anon_sym___autoreleasing] = ACTIONS(7201), + [anon_sym___block] = ACTIONS(7201), + [anon_sym___bridge] = ACTIONS(7201), + [anon_sym___bridge_retained] = ACTIONS(7201), + [anon_sym___bridge_transfer] = ACTIONS(7201), + [anon_sym___complex] = ACTIONS(7201), + [anon_sym___const] = ACTIONS(7201), + [anon_sym___imag] = ACTIONS(7201), + [anon_sym___kindof] = ACTIONS(7201), + [anon_sym___nonnull] = ACTIONS(7201), + [anon_sym___nullable] = ACTIONS(7201), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7201), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7201), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7201), + [anon_sym___real] = ACTIONS(7201), + [anon_sym___strong] = ACTIONS(7201), + [anon_sym___unsafe_unretained] = ACTIONS(7201), + [anon_sym___unused] = ACTIONS(7201), + [anon_sym___weak] = ACTIONS(7201), + [anon_sym_alignas] = ACTIONS(7201), + [anon_sym__Alignas] = ACTIONS(7201), + [sym_primitive_type] = ACTIONS(7201), + [anon_sym_enum] = ACTIONS(7201), + [anon_sym_COLON] = ACTIONS(7203), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7201), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7201), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7201), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7201), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7201), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7201), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7201), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7201), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7201), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7201), + [anon_sym_NS_AVAILABLE] = ACTIONS(7201), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7201), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7201), + [anon_sym_API_AVAILABLE] = ACTIONS(7201), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7201), + [anon_sym_API_DEPRECATED] = ACTIONS(7201), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7201), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7201), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7201), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7201), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7201), + [anon_sym___deprecated_msg] = ACTIONS(7201), + [anon_sym___deprecated_enum_msg] = ACTIONS(7201), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7201), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7201), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7201), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7201), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7201), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7201), + }, + [2931] = { + [sym__declaration_modifiers] = STATE(4950), + [sym_attribute_specifier] = STATE(4950), + [sym_attribute_declaration] = STATE(4950), + [sym_ms_declspec_modifier] = STATE(4950), + [sym_storage_class_specifier] = STATE(4950), + [sym_type_qualifier] = STATE(4950), + [sym_alignas_qualifier] = STATE(2368), + [sym_enumerator] = STATE(3062), + [sym_preproc_ifdef_in_enumerator] = STATE(4951), + [sym_availability_attribute_specifier] = STATE(4950), + [aux_sym_enumerator_list_repeat1] = STATE(4951), + [sym_identifier] = ACTIONS(7208), + [anon_sym_COMMA] = ACTIONS(7210), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7212), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(7214), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2932] = { + [sym_attribute_specifier] = STATE(2976), + [sym_identifier] = ACTIONS(7216), + [anon_sym_COMMA] = ACTIONS(7218), + [anon_sym_RPAREN] = ACTIONS(7218), + [anon_sym_LPAREN2] = ACTIONS(7218), + [anon_sym_STAR] = ACTIONS(7218), + [anon_sym_CARET] = ACTIONS(7218), + [anon_sym_SEMI] = ACTIONS(7218), + [anon_sym___extension__] = ACTIONS(7216), + [anon_sym_extern] = ACTIONS(7216), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(7216), + [anon_sym_LBRACK] = ACTIONS(7218), + [anon_sym___declspec] = ACTIONS(7216), + [anon_sym___based] = ACTIONS(7216), + [anon_sym_signed] = ACTIONS(7216), + [anon_sym_unsigned] = ACTIONS(7216), + [anon_sym_long] = ACTIONS(7216), + [anon_sym_short] = ACTIONS(7216), + [anon_sym_static] = ACTIONS(7216), + [anon_sym_auto] = ACTIONS(7216), + [anon_sym_register] = ACTIONS(7216), + [anon_sym_inline] = ACTIONS(7216), + [anon_sym___inline] = ACTIONS(7216), + [anon_sym___inline__] = ACTIONS(7216), + [anon_sym___forceinline] = ACTIONS(7216), + [anon_sym_thread_local] = ACTIONS(7216), + [anon_sym___thread] = ACTIONS(7216), + [anon_sym_CG_EXTERN] = ACTIONS(7216), + [anon_sym_CG_INLINE] = ACTIONS(7216), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7216), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7216), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7216), + [anon_sym_IBOutlet] = ACTIONS(7216), + [anon_sym_IBInspectable] = ACTIONS(7216), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7216), + [anon_sym_NS_INLINE] = ACTIONS(7216), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7216), + [anon_sym_OBJC_EXPORT] = ACTIONS(7216), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7216), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7216), + [anon_sym_const] = ACTIONS(7216), + [anon_sym_constexpr] = ACTIONS(7216), + [anon_sym_volatile] = ACTIONS(7216), + [anon_sym_restrict] = ACTIONS(7216), + [anon_sym___restrict__] = ACTIONS(7216), + [anon_sym__Atomic] = ACTIONS(7216), + [anon_sym__Noreturn] = ACTIONS(7216), + [anon_sym__Nonnull] = ACTIONS(7216), + [anon_sym_nullable] = ACTIONS(7216), + [anon_sym__Complex] = ACTIONS(7216), + [anon_sym__Nullable] = ACTIONS(7216), + [anon_sym__Nullable_result] = ACTIONS(7216), + [anon_sym__Null_unspecified] = ACTIONS(7216), + [anon_sym___autoreleasing] = ACTIONS(7216), + [anon_sym___block] = ACTIONS(7216), + [anon_sym___bridge] = ACTIONS(7216), + [anon_sym___bridge_retained] = ACTIONS(7216), + [anon_sym___bridge_transfer] = ACTIONS(7216), + [anon_sym___complex] = ACTIONS(7216), + [anon_sym___const] = ACTIONS(7216), + [anon_sym___imag] = ACTIONS(7216), + [anon_sym___kindof] = ACTIONS(7216), + [anon_sym___nonnull] = ACTIONS(7216), + [anon_sym___nullable] = ACTIONS(7216), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7216), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7216), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7216), + [anon_sym___real] = ACTIONS(7216), + [anon_sym___strong] = ACTIONS(7216), + [anon_sym___unsafe_unretained] = ACTIONS(7216), + [anon_sym___unused] = ACTIONS(7216), + [anon_sym___weak] = ACTIONS(7216), + [anon_sym_alignas] = ACTIONS(7216), + [anon_sym__Alignas] = ACTIONS(7216), + [sym_primitive_type] = ACTIONS(7216), + [anon_sym_enum] = ACTIONS(7216), + [anon_sym_COLON] = ACTIONS(7218), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7216), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7216), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7216), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7216), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7216), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7216), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7216), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7216), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7216), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7216), + [anon_sym_NS_AVAILABLE] = ACTIONS(7216), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7216), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7216), + [anon_sym_API_AVAILABLE] = ACTIONS(7216), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7216), + [anon_sym_API_DEPRECATED] = ACTIONS(7216), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7216), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7216), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7216), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7216), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7216), + [anon_sym___deprecated_msg] = ACTIONS(7216), + [anon_sym___deprecated_enum_msg] = ACTIONS(7216), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7216), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7216), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7216), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7216), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7216), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7216), + }, + [2933] = { + [sym_attribute_specifier] = STATE(2984), + [sym_identifier] = ACTIONS(7220), + [anon_sym_COMMA] = ACTIONS(7222), + [anon_sym_RPAREN] = ACTIONS(7222), + [anon_sym_LPAREN2] = ACTIONS(7222), + [anon_sym_STAR] = ACTIONS(7222), + [anon_sym_CARET] = ACTIONS(7222), + [anon_sym_SEMI] = ACTIONS(7222), + [anon_sym___extension__] = ACTIONS(7220), + [anon_sym_extern] = ACTIONS(7220), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(7220), + [anon_sym_LBRACK] = ACTIONS(7222), + [anon_sym___declspec] = ACTIONS(7220), + [anon_sym___based] = ACTIONS(7220), + [anon_sym_signed] = ACTIONS(7220), + [anon_sym_unsigned] = ACTIONS(7220), + [anon_sym_long] = ACTIONS(7220), + [anon_sym_short] = ACTIONS(7220), + [anon_sym_static] = ACTIONS(7220), + [anon_sym_auto] = ACTIONS(7220), + [anon_sym_register] = ACTIONS(7220), + [anon_sym_inline] = ACTIONS(7220), + [anon_sym___inline] = ACTIONS(7220), + [anon_sym___inline__] = ACTIONS(7220), + [anon_sym___forceinline] = ACTIONS(7220), + [anon_sym_thread_local] = ACTIONS(7220), + [anon_sym___thread] = ACTIONS(7220), + [anon_sym_CG_EXTERN] = ACTIONS(7220), + [anon_sym_CG_INLINE] = ACTIONS(7220), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7220), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7220), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7220), + [anon_sym_IBOutlet] = ACTIONS(7220), + [anon_sym_IBInspectable] = ACTIONS(7220), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7220), + [anon_sym_NS_INLINE] = ACTIONS(7220), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7220), + [anon_sym_OBJC_EXPORT] = ACTIONS(7220), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7220), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7220), + [anon_sym_const] = ACTIONS(7220), + [anon_sym_constexpr] = ACTIONS(7220), + [anon_sym_volatile] = ACTIONS(7220), + [anon_sym_restrict] = ACTIONS(7220), + [anon_sym___restrict__] = ACTIONS(7220), + [anon_sym__Atomic] = ACTIONS(7220), + [anon_sym__Noreturn] = ACTIONS(7220), + [anon_sym__Nonnull] = ACTIONS(7220), + [anon_sym_nullable] = ACTIONS(7220), + [anon_sym__Complex] = ACTIONS(7220), + [anon_sym__Nullable] = ACTIONS(7220), + [anon_sym__Nullable_result] = ACTIONS(7220), + [anon_sym__Null_unspecified] = ACTIONS(7220), + [anon_sym___autoreleasing] = ACTIONS(7220), + [anon_sym___block] = ACTIONS(7220), + [anon_sym___bridge] = ACTIONS(7220), + [anon_sym___bridge_retained] = ACTIONS(7220), + [anon_sym___bridge_transfer] = ACTIONS(7220), + [anon_sym___complex] = ACTIONS(7220), + [anon_sym___const] = ACTIONS(7220), + [anon_sym___imag] = ACTIONS(7220), + [anon_sym___kindof] = ACTIONS(7220), + [anon_sym___nonnull] = ACTIONS(7220), + [anon_sym___nullable] = ACTIONS(7220), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7220), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7220), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7220), + [anon_sym___real] = ACTIONS(7220), + [anon_sym___strong] = ACTIONS(7220), + [anon_sym___unsafe_unretained] = ACTIONS(7220), + [anon_sym___unused] = ACTIONS(7220), + [anon_sym___weak] = ACTIONS(7220), + [anon_sym_alignas] = ACTIONS(7220), + [anon_sym__Alignas] = ACTIONS(7220), + [sym_primitive_type] = ACTIONS(7220), + [anon_sym_enum] = ACTIONS(7220), + [anon_sym_COLON] = ACTIONS(7222), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7220), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7220), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7220), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7220), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7220), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7220), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7220), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7220), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7220), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7220), + [anon_sym_NS_AVAILABLE] = ACTIONS(7220), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7220), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7220), + [anon_sym_API_AVAILABLE] = ACTIONS(7220), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7220), + [anon_sym_API_DEPRECATED] = ACTIONS(7220), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7220), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7220), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7220), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7220), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7220), + [anon_sym___deprecated_msg] = ACTIONS(7220), + [anon_sym___deprecated_enum_msg] = ACTIONS(7220), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7220), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7220), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7220), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7220), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7220), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7220), + }, + [2934] = { + [sym_attribute_specifier] = STATE(2955), + [sym_identifier] = ACTIONS(7224), + [anon_sym_COMMA] = ACTIONS(7226), + [anon_sym_RPAREN] = ACTIONS(7226), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_STAR] = ACTIONS(7226), + [anon_sym_CARET] = ACTIONS(7226), + [anon_sym_SEMI] = ACTIONS(7226), + [anon_sym___extension__] = ACTIONS(7224), + [anon_sym_extern] = ACTIONS(7224), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(7224), + [anon_sym_LBRACK] = ACTIONS(7226), + [anon_sym___declspec] = ACTIONS(7224), + [anon_sym___based] = ACTIONS(7224), + [anon_sym_signed] = ACTIONS(7224), + [anon_sym_unsigned] = ACTIONS(7224), + [anon_sym_long] = ACTIONS(7224), + [anon_sym_short] = ACTIONS(7224), + [anon_sym_static] = ACTIONS(7224), + [anon_sym_auto] = ACTIONS(7224), + [anon_sym_register] = ACTIONS(7224), + [anon_sym_inline] = ACTIONS(7224), + [anon_sym___inline] = ACTIONS(7224), + [anon_sym___inline__] = ACTIONS(7224), + [anon_sym___forceinline] = ACTIONS(7224), + [anon_sym_thread_local] = ACTIONS(7224), + [anon_sym___thread] = ACTIONS(7224), + [anon_sym_CG_EXTERN] = ACTIONS(7224), + [anon_sym_CG_INLINE] = ACTIONS(7224), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7224), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7224), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7224), + [anon_sym_IBOutlet] = ACTIONS(7224), + [anon_sym_IBInspectable] = ACTIONS(7224), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7224), + [anon_sym_NS_INLINE] = ACTIONS(7224), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7224), + [anon_sym_OBJC_EXPORT] = ACTIONS(7224), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7224), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7224), + [anon_sym_const] = ACTIONS(7224), + [anon_sym_constexpr] = ACTIONS(7224), + [anon_sym_volatile] = ACTIONS(7224), + [anon_sym_restrict] = ACTIONS(7224), + [anon_sym___restrict__] = ACTIONS(7224), + [anon_sym__Atomic] = ACTIONS(7224), + [anon_sym__Noreturn] = ACTIONS(7224), + [anon_sym__Nonnull] = ACTIONS(7224), + [anon_sym_nullable] = ACTIONS(7224), + [anon_sym__Complex] = ACTIONS(7224), + [anon_sym__Nullable] = ACTIONS(7224), + [anon_sym__Nullable_result] = ACTIONS(7224), + [anon_sym__Null_unspecified] = ACTIONS(7224), + [anon_sym___autoreleasing] = ACTIONS(7224), + [anon_sym___block] = ACTIONS(7224), + [anon_sym___bridge] = ACTIONS(7224), + [anon_sym___bridge_retained] = ACTIONS(7224), + [anon_sym___bridge_transfer] = ACTIONS(7224), + [anon_sym___complex] = ACTIONS(7224), + [anon_sym___const] = ACTIONS(7224), + [anon_sym___imag] = ACTIONS(7224), + [anon_sym___kindof] = ACTIONS(7224), + [anon_sym___nonnull] = ACTIONS(7224), + [anon_sym___nullable] = ACTIONS(7224), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7224), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7224), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7224), + [anon_sym___real] = ACTIONS(7224), + [anon_sym___strong] = ACTIONS(7224), + [anon_sym___unsafe_unretained] = ACTIONS(7224), + [anon_sym___unused] = ACTIONS(7224), + [anon_sym___weak] = ACTIONS(7224), + [anon_sym_alignas] = ACTIONS(7224), + [anon_sym__Alignas] = ACTIONS(7224), + [sym_primitive_type] = ACTIONS(7224), + [anon_sym_enum] = ACTIONS(7224), + [anon_sym_COLON] = ACTIONS(7226), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7224), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7224), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7224), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7224), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7224), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7224), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7224), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7224), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7224), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7224), + [anon_sym_NS_AVAILABLE] = ACTIONS(7224), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7224), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7224), + [anon_sym_API_AVAILABLE] = ACTIONS(7224), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7224), + [anon_sym_API_DEPRECATED] = ACTIONS(7224), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7224), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7224), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7224), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7224), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7224), + [anon_sym___deprecated_msg] = ACTIONS(7224), + [anon_sym___deprecated_enum_msg] = ACTIONS(7224), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7224), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7224), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7224), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7224), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7224), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7224), + }, + [2935] = { + [sym_attribute_specifier] = STATE(3001), + [sym_identifier] = ACTIONS(7228), + [anon_sym_COMMA] = ACTIONS(7230), + [anon_sym_RPAREN] = ACTIONS(7230), + [anon_sym_LPAREN2] = ACTIONS(7230), + [anon_sym_STAR] = ACTIONS(7230), + [anon_sym_CARET] = ACTIONS(7230), + [anon_sym_SEMI] = ACTIONS(7230), + [anon_sym___extension__] = ACTIONS(7228), + [anon_sym_extern] = ACTIONS(7228), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(7228), + [anon_sym_LBRACK] = ACTIONS(7230), + [anon_sym___declspec] = ACTIONS(7228), + [anon_sym___based] = ACTIONS(7228), + [anon_sym_signed] = ACTIONS(7228), + [anon_sym_unsigned] = ACTIONS(7228), + [anon_sym_long] = ACTIONS(7228), + [anon_sym_short] = ACTIONS(7228), + [anon_sym_static] = ACTIONS(7228), + [anon_sym_auto] = ACTIONS(7228), + [anon_sym_register] = ACTIONS(7228), + [anon_sym_inline] = ACTIONS(7228), + [anon_sym___inline] = ACTIONS(7228), + [anon_sym___inline__] = ACTIONS(7228), + [anon_sym___forceinline] = ACTIONS(7228), + [anon_sym_thread_local] = ACTIONS(7228), + [anon_sym___thread] = ACTIONS(7228), + [anon_sym_CG_EXTERN] = ACTIONS(7228), + [anon_sym_CG_INLINE] = ACTIONS(7228), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7228), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7228), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7228), + [anon_sym_IBOutlet] = ACTIONS(7228), + [anon_sym_IBInspectable] = ACTIONS(7228), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7228), + [anon_sym_NS_INLINE] = ACTIONS(7228), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7228), + [anon_sym_OBJC_EXPORT] = ACTIONS(7228), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7228), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7228), + [anon_sym_const] = ACTIONS(7228), + [anon_sym_constexpr] = ACTIONS(7228), + [anon_sym_volatile] = ACTIONS(7228), + [anon_sym_restrict] = ACTIONS(7228), + [anon_sym___restrict__] = ACTIONS(7228), + [anon_sym__Atomic] = ACTIONS(7228), + [anon_sym__Noreturn] = ACTIONS(7228), + [anon_sym__Nonnull] = ACTIONS(7228), + [anon_sym_nullable] = ACTIONS(7228), + [anon_sym__Complex] = ACTIONS(7228), + [anon_sym__Nullable] = ACTIONS(7228), + [anon_sym__Nullable_result] = ACTIONS(7228), + [anon_sym__Null_unspecified] = ACTIONS(7228), + [anon_sym___autoreleasing] = ACTIONS(7228), + [anon_sym___block] = ACTIONS(7228), + [anon_sym___bridge] = ACTIONS(7228), + [anon_sym___bridge_retained] = ACTIONS(7228), + [anon_sym___bridge_transfer] = ACTIONS(7228), + [anon_sym___complex] = ACTIONS(7228), + [anon_sym___const] = ACTIONS(7228), + [anon_sym___imag] = ACTIONS(7228), + [anon_sym___kindof] = ACTIONS(7228), + [anon_sym___nonnull] = ACTIONS(7228), + [anon_sym___nullable] = ACTIONS(7228), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7228), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7228), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7228), + [anon_sym___real] = ACTIONS(7228), + [anon_sym___strong] = ACTIONS(7228), + [anon_sym___unsafe_unretained] = ACTIONS(7228), + [anon_sym___unused] = ACTIONS(7228), + [anon_sym___weak] = ACTIONS(7228), + [anon_sym_alignas] = ACTIONS(7228), + [anon_sym__Alignas] = ACTIONS(7228), + [sym_primitive_type] = ACTIONS(7228), + [anon_sym_enum] = ACTIONS(7228), + [anon_sym_COLON] = ACTIONS(7230), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7228), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7228), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7228), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7228), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7228), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7228), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7228), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7228), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7228), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7228), + [anon_sym_NS_AVAILABLE] = ACTIONS(7228), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7228), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7228), + [anon_sym_API_AVAILABLE] = ACTIONS(7228), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7228), + [anon_sym_API_DEPRECATED] = ACTIONS(7228), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7228), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7228), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7228), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7228), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7228), + [anon_sym___deprecated_msg] = ACTIONS(7228), + [anon_sym___deprecated_enum_msg] = ACTIONS(7228), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7228), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7228), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7228), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7228), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7228), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7228), + }, + [2936] = { + [sym_attribute_specifier] = STATE(2970), + [sym_identifier] = ACTIONS(7232), + [anon_sym_COMMA] = ACTIONS(7234), + [anon_sym_RPAREN] = ACTIONS(7234), + [anon_sym_LPAREN2] = ACTIONS(7234), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_CARET] = ACTIONS(7234), + [anon_sym_SEMI] = ACTIONS(7234), + [anon_sym___extension__] = ACTIONS(7232), + [anon_sym_extern] = ACTIONS(7232), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(7232), + [anon_sym_LBRACK] = ACTIONS(7234), + [anon_sym___declspec] = ACTIONS(7232), + [anon_sym___based] = ACTIONS(7232), + [anon_sym_signed] = ACTIONS(7232), + [anon_sym_unsigned] = ACTIONS(7232), + [anon_sym_long] = ACTIONS(7232), + [anon_sym_short] = ACTIONS(7232), + [anon_sym_static] = ACTIONS(7232), + [anon_sym_auto] = ACTIONS(7232), + [anon_sym_register] = ACTIONS(7232), + [anon_sym_inline] = ACTIONS(7232), + [anon_sym___inline] = ACTIONS(7232), + [anon_sym___inline__] = ACTIONS(7232), + [anon_sym___forceinline] = ACTIONS(7232), + [anon_sym_thread_local] = ACTIONS(7232), + [anon_sym___thread] = ACTIONS(7232), + [anon_sym_CG_EXTERN] = ACTIONS(7232), + [anon_sym_CG_INLINE] = ACTIONS(7232), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7232), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7232), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7232), + [anon_sym_IBOutlet] = ACTIONS(7232), + [anon_sym_IBInspectable] = ACTIONS(7232), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7232), + [anon_sym_NS_INLINE] = ACTIONS(7232), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7232), + [anon_sym_OBJC_EXPORT] = ACTIONS(7232), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7232), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7232), + [anon_sym_const] = ACTIONS(7232), + [anon_sym_constexpr] = ACTIONS(7232), + [anon_sym_volatile] = ACTIONS(7232), + [anon_sym_restrict] = ACTIONS(7232), + [anon_sym___restrict__] = ACTIONS(7232), + [anon_sym__Atomic] = ACTIONS(7232), + [anon_sym__Noreturn] = ACTIONS(7232), + [anon_sym__Nonnull] = ACTIONS(7232), + [anon_sym_nullable] = ACTIONS(7232), + [anon_sym__Complex] = ACTIONS(7232), + [anon_sym__Nullable] = ACTIONS(7232), + [anon_sym__Nullable_result] = ACTIONS(7232), + [anon_sym__Null_unspecified] = ACTIONS(7232), + [anon_sym___autoreleasing] = ACTIONS(7232), + [anon_sym___block] = ACTIONS(7232), + [anon_sym___bridge] = ACTIONS(7232), + [anon_sym___bridge_retained] = ACTIONS(7232), + [anon_sym___bridge_transfer] = ACTIONS(7232), + [anon_sym___complex] = ACTIONS(7232), + [anon_sym___const] = ACTIONS(7232), + [anon_sym___imag] = ACTIONS(7232), + [anon_sym___kindof] = ACTIONS(7232), + [anon_sym___nonnull] = ACTIONS(7232), + [anon_sym___nullable] = ACTIONS(7232), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7232), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7232), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7232), + [anon_sym___real] = ACTIONS(7232), + [anon_sym___strong] = ACTIONS(7232), + [anon_sym___unsafe_unretained] = ACTIONS(7232), + [anon_sym___unused] = ACTIONS(7232), + [anon_sym___weak] = ACTIONS(7232), + [anon_sym_alignas] = ACTIONS(7232), + [anon_sym__Alignas] = ACTIONS(7232), + [sym_primitive_type] = ACTIONS(7232), + [anon_sym_enum] = ACTIONS(7232), + [anon_sym_COLON] = ACTIONS(7234), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7232), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7232), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7232), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7232), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7232), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7232), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7232), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7232), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7232), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7232), + [anon_sym_NS_AVAILABLE] = ACTIONS(7232), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7232), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7232), + [anon_sym_API_AVAILABLE] = ACTIONS(7232), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7232), + [anon_sym_API_DEPRECATED] = ACTIONS(7232), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7232), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7232), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7232), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7232), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7232), + [anon_sym___deprecated_msg] = ACTIONS(7232), + [anon_sym___deprecated_enum_msg] = ACTIONS(7232), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7232), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7232), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7232), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7232), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7232), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7232), + }, + [2937] = { + [sym__declaration_modifiers] = STATE(2516), + [sym_attribute_specifier] = STATE(2516), + [sym_attribute_declaration] = STATE(2516), + [sym_ms_declspec_modifier] = STATE(2516), + [sym_storage_class_specifier] = STATE(2516), + [sym_type_qualifier] = STATE(2516), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2516), + [aux_sym__declaration_specifiers_repeat1] = STATE(2516), + [sym_identifier] = ACTIONS(2922), + [anon_sym_COMMA] = ACTIONS(6206), + [anon_sym_SEMI] = ACTIONS(6206), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [anon_sym_COLON] = ACTIONS(6206), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(2922), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + [anon_sym_id] = ACTIONS(2922), + }, + [2938] = { + [sym_attribute_specifier] = STATE(3003), + [sym_identifier] = ACTIONS(7236), + [anon_sym_COMMA] = ACTIONS(7238), + [anon_sym_RPAREN] = ACTIONS(7238), + [anon_sym_LPAREN2] = ACTIONS(7238), + [anon_sym_STAR] = ACTIONS(7238), + [anon_sym_CARET] = ACTIONS(7238), + [anon_sym_SEMI] = ACTIONS(7238), + [anon_sym___extension__] = ACTIONS(7236), + [anon_sym_extern] = ACTIONS(7236), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(7236), + [anon_sym_LBRACK] = ACTIONS(7238), + [anon_sym___declspec] = ACTIONS(7236), + [anon_sym___based] = ACTIONS(7236), + [anon_sym_signed] = ACTIONS(7236), + [anon_sym_unsigned] = ACTIONS(7236), + [anon_sym_long] = ACTIONS(7236), + [anon_sym_short] = ACTIONS(7236), + [anon_sym_static] = ACTIONS(7236), + [anon_sym_auto] = ACTIONS(7236), + [anon_sym_register] = ACTIONS(7236), + [anon_sym_inline] = ACTIONS(7236), + [anon_sym___inline] = ACTIONS(7236), + [anon_sym___inline__] = ACTIONS(7236), + [anon_sym___forceinline] = ACTIONS(7236), + [anon_sym_thread_local] = ACTIONS(7236), + [anon_sym___thread] = ACTIONS(7236), + [anon_sym_CG_EXTERN] = ACTIONS(7236), + [anon_sym_CG_INLINE] = ACTIONS(7236), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7236), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7236), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7236), + [anon_sym_IBOutlet] = ACTIONS(7236), + [anon_sym_IBInspectable] = ACTIONS(7236), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7236), + [anon_sym_NS_INLINE] = ACTIONS(7236), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7236), + [anon_sym_OBJC_EXPORT] = ACTIONS(7236), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7236), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7236), + [anon_sym_const] = ACTIONS(7236), + [anon_sym_constexpr] = ACTIONS(7236), + [anon_sym_volatile] = ACTIONS(7236), + [anon_sym_restrict] = ACTIONS(7236), + [anon_sym___restrict__] = ACTIONS(7236), + [anon_sym__Atomic] = ACTIONS(7236), + [anon_sym__Noreturn] = ACTIONS(7236), + [anon_sym__Nonnull] = ACTIONS(7236), + [anon_sym_nullable] = ACTIONS(7236), + [anon_sym__Complex] = ACTIONS(7236), + [anon_sym__Nullable] = ACTIONS(7236), + [anon_sym__Nullable_result] = ACTIONS(7236), + [anon_sym__Null_unspecified] = ACTIONS(7236), + [anon_sym___autoreleasing] = ACTIONS(7236), + [anon_sym___block] = ACTIONS(7236), + [anon_sym___bridge] = ACTIONS(7236), + [anon_sym___bridge_retained] = ACTIONS(7236), + [anon_sym___bridge_transfer] = ACTIONS(7236), + [anon_sym___complex] = ACTIONS(7236), + [anon_sym___const] = ACTIONS(7236), + [anon_sym___imag] = ACTIONS(7236), + [anon_sym___kindof] = ACTIONS(7236), + [anon_sym___nonnull] = ACTIONS(7236), + [anon_sym___nullable] = ACTIONS(7236), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7236), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7236), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7236), + [anon_sym___real] = ACTIONS(7236), + [anon_sym___strong] = ACTIONS(7236), + [anon_sym___unsafe_unretained] = ACTIONS(7236), + [anon_sym___unused] = ACTIONS(7236), + [anon_sym___weak] = ACTIONS(7236), + [anon_sym_alignas] = ACTIONS(7236), + [anon_sym__Alignas] = ACTIONS(7236), + [sym_primitive_type] = ACTIONS(7236), + [anon_sym_enum] = ACTIONS(7236), + [anon_sym_COLON] = ACTIONS(7238), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7236), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7236), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7236), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7236), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7236), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7236), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7236), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7236), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7236), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7236), + [anon_sym_NS_AVAILABLE] = ACTIONS(7236), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7236), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7236), + [anon_sym_API_AVAILABLE] = ACTIONS(7236), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7236), + [anon_sym_API_DEPRECATED] = ACTIONS(7236), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7236), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7236), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7236), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7236), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7236), + [anon_sym___deprecated_msg] = ACTIONS(7236), + [anon_sym___deprecated_enum_msg] = ACTIONS(7236), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7236), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7236), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7236), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7236), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7236), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7236), + }, + [2939] = { + [sym_attribute_specifier] = STATE(2977), + [sym_identifier] = ACTIONS(7240), + [anon_sym_COMMA] = ACTIONS(7242), + [anon_sym_RPAREN] = ACTIONS(7242), + [anon_sym_LPAREN2] = ACTIONS(7242), + [anon_sym_STAR] = ACTIONS(7242), + [anon_sym_CARET] = ACTIONS(7242), + [anon_sym_SEMI] = ACTIONS(7242), + [anon_sym___extension__] = ACTIONS(7240), + [anon_sym_extern] = ACTIONS(7240), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(7240), + [anon_sym_LBRACK] = ACTIONS(7242), + [anon_sym___declspec] = ACTIONS(7240), + [anon_sym___based] = ACTIONS(7240), + [anon_sym_signed] = ACTIONS(7240), + [anon_sym_unsigned] = ACTIONS(7240), + [anon_sym_long] = ACTIONS(7240), + [anon_sym_short] = ACTIONS(7240), + [anon_sym_static] = ACTIONS(7240), + [anon_sym_auto] = ACTIONS(7240), + [anon_sym_register] = ACTIONS(7240), + [anon_sym_inline] = ACTIONS(7240), + [anon_sym___inline] = ACTIONS(7240), + [anon_sym___inline__] = ACTIONS(7240), + [anon_sym___forceinline] = ACTIONS(7240), + [anon_sym_thread_local] = ACTIONS(7240), + [anon_sym___thread] = ACTIONS(7240), + [anon_sym_CG_EXTERN] = ACTIONS(7240), + [anon_sym_CG_INLINE] = ACTIONS(7240), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7240), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7240), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7240), + [anon_sym_IBOutlet] = ACTIONS(7240), + [anon_sym_IBInspectable] = ACTIONS(7240), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7240), + [anon_sym_NS_INLINE] = ACTIONS(7240), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7240), + [anon_sym_OBJC_EXPORT] = ACTIONS(7240), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7240), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7240), + [anon_sym_const] = ACTIONS(7240), + [anon_sym_constexpr] = ACTIONS(7240), + [anon_sym_volatile] = ACTIONS(7240), + [anon_sym_restrict] = ACTIONS(7240), + [anon_sym___restrict__] = ACTIONS(7240), + [anon_sym__Atomic] = ACTIONS(7240), + [anon_sym__Noreturn] = ACTIONS(7240), + [anon_sym__Nonnull] = ACTIONS(7240), + [anon_sym_nullable] = ACTIONS(7240), + [anon_sym__Complex] = ACTIONS(7240), + [anon_sym__Nullable] = ACTIONS(7240), + [anon_sym__Nullable_result] = ACTIONS(7240), + [anon_sym__Null_unspecified] = ACTIONS(7240), + [anon_sym___autoreleasing] = ACTIONS(7240), + [anon_sym___block] = ACTIONS(7240), + [anon_sym___bridge] = ACTIONS(7240), + [anon_sym___bridge_retained] = ACTIONS(7240), + [anon_sym___bridge_transfer] = ACTIONS(7240), + [anon_sym___complex] = ACTIONS(7240), + [anon_sym___const] = ACTIONS(7240), + [anon_sym___imag] = ACTIONS(7240), + [anon_sym___kindof] = ACTIONS(7240), + [anon_sym___nonnull] = ACTIONS(7240), + [anon_sym___nullable] = ACTIONS(7240), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7240), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7240), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7240), + [anon_sym___real] = ACTIONS(7240), + [anon_sym___strong] = ACTIONS(7240), + [anon_sym___unsafe_unretained] = ACTIONS(7240), + [anon_sym___unused] = ACTIONS(7240), + [anon_sym___weak] = ACTIONS(7240), + [anon_sym_alignas] = ACTIONS(7240), + [anon_sym__Alignas] = ACTIONS(7240), + [sym_primitive_type] = ACTIONS(7240), + [anon_sym_enum] = ACTIONS(7240), + [anon_sym_COLON] = ACTIONS(7242), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7240), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7240), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7240), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7240), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7240), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7240), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7240), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7240), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7240), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7240), + [anon_sym_NS_AVAILABLE] = ACTIONS(7240), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7240), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7240), + [anon_sym_API_AVAILABLE] = ACTIONS(7240), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7240), + [anon_sym_API_DEPRECATED] = ACTIONS(7240), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7240), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7240), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7240), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7240), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7240), + [anon_sym___deprecated_msg] = ACTIONS(7240), + [anon_sym___deprecated_enum_msg] = ACTIONS(7240), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7240), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7240), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7240), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7240), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7240), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7240), + }, + [2940] = { + [sym_attribute_specifier] = STATE(2981), + [sym_identifier] = ACTIONS(7244), + [anon_sym_COMMA] = ACTIONS(7246), + [anon_sym_RPAREN] = ACTIONS(7246), + [anon_sym_LPAREN2] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_SEMI] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7244), + [anon_sym_extern] = ACTIONS(7244), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(7244), + [anon_sym_LBRACK] = ACTIONS(7246), + [anon_sym___declspec] = ACTIONS(7244), + [anon_sym___based] = ACTIONS(7244), + [anon_sym_signed] = ACTIONS(7244), + [anon_sym_unsigned] = ACTIONS(7244), + [anon_sym_long] = ACTIONS(7244), + [anon_sym_short] = ACTIONS(7244), + [anon_sym_static] = ACTIONS(7244), + [anon_sym_auto] = ACTIONS(7244), + [anon_sym_register] = ACTIONS(7244), + [anon_sym_inline] = ACTIONS(7244), + [anon_sym___inline] = ACTIONS(7244), + [anon_sym___inline__] = ACTIONS(7244), + [anon_sym___forceinline] = ACTIONS(7244), + [anon_sym_thread_local] = ACTIONS(7244), + [anon_sym___thread] = ACTIONS(7244), + [anon_sym_CG_EXTERN] = ACTIONS(7244), + [anon_sym_CG_INLINE] = ACTIONS(7244), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7244), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7244), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7244), + [anon_sym_IBOutlet] = ACTIONS(7244), + [anon_sym_IBInspectable] = ACTIONS(7244), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7244), + [anon_sym_NS_INLINE] = ACTIONS(7244), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7244), + [anon_sym_OBJC_EXPORT] = ACTIONS(7244), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7244), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7244), + [anon_sym_const] = ACTIONS(7244), + [anon_sym_constexpr] = ACTIONS(7244), + [anon_sym_volatile] = ACTIONS(7244), + [anon_sym_restrict] = ACTIONS(7244), + [anon_sym___restrict__] = ACTIONS(7244), + [anon_sym__Atomic] = ACTIONS(7244), + [anon_sym__Noreturn] = ACTIONS(7244), + [anon_sym__Nonnull] = ACTIONS(7244), + [anon_sym_nullable] = ACTIONS(7244), + [anon_sym__Complex] = ACTIONS(7244), + [anon_sym__Nullable] = ACTIONS(7244), + [anon_sym__Nullable_result] = ACTIONS(7244), + [anon_sym__Null_unspecified] = ACTIONS(7244), + [anon_sym___autoreleasing] = ACTIONS(7244), + [anon_sym___block] = ACTIONS(7244), + [anon_sym___bridge] = ACTIONS(7244), + [anon_sym___bridge_retained] = ACTIONS(7244), + [anon_sym___bridge_transfer] = ACTIONS(7244), + [anon_sym___complex] = ACTIONS(7244), + [anon_sym___const] = ACTIONS(7244), + [anon_sym___imag] = ACTIONS(7244), + [anon_sym___kindof] = ACTIONS(7244), + [anon_sym___nonnull] = ACTIONS(7244), + [anon_sym___nullable] = ACTIONS(7244), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7244), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7244), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7244), + [anon_sym___real] = ACTIONS(7244), + [anon_sym___strong] = ACTIONS(7244), + [anon_sym___unsafe_unretained] = ACTIONS(7244), + [anon_sym___unused] = ACTIONS(7244), + [anon_sym___weak] = ACTIONS(7244), + [anon_sym_alignas] = ACTIONS(7244), + [anon_sym__Alignas] = ACTIONS(7244), + [sym_primitive_type] = ACTIONS(7244), + [anon_sym_enum] = ACTIONS(7244), + [anon_sym_COLON] = ACTIONS(7246), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7244), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7244), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7244), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7244), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7244), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7244), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7244), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7244), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7244), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7244), + [anon_sym_NS_AVAILABLE] = ACTIONS(7244), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7244), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7244), + [anon_sym_API_AVAILABLE] = ACTIONS(7244), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7244), + [anon_sym_API_DEPRECATED] = ACTIONS(7244), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7244), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7244), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7244), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7244), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7244), + [anon_sym___deprecated_msg] = ACTIONS(7244), + [anon_sym___deprecated_enum_msg] = ACTIONS(7244), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7244), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7244), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7244), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7244), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7244), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7244), + }, + [2941] = { + [sym__declaration_modifiers] = STATE(4918), + [sym_attribute_specifier] = STATE(4918), + [sym_attribute_declaration] = STATE(4918), + [sym_ms_declspec_modifier] = STATE(4918), + [sym_storage_class_specifier] = STATE(4918), + [sym_type_qualifier] = STATE(4918), + [sym_alignas_qualifier] = STATE(2368), + [sym_enumerator] = STATE(3062), + [sym_preproc_ifdef_in_enumerator] = STATE(4919), + [sym_availability_attribute_specifier] = STATE(4918), + [aux_sym_enumerator_list_repeat1] = STATE(4919), + [sym_identifier] = ACTIONS(7208), + [anon_sym_COMMA] = ACTIONS(7248), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7212), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(7250), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2942] = { + [sym_attribute_specifier] = STATE(2994), + [sym_identifier] = ACTIONS(7252), + [anon_sym_COMMA] = ACTIONS(7254), + [anon_sym_RPAREN] = ACTIONS(7254), + [anon_sym_LPAREN2] = ACTIONS(7254), + [anon_sym_STAR] = ACTIONS(7254), + [anon_sym_CARET] = ACTIONS(7254), + [anon_sym_SEMI] = ACTIONS(7254), + [anon_sym___extension__] = ACTIONS(7252), + [anon_sym_extern] = ACTIONS(7252), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(7252), + [anon_sym_LBRACK] = ACTIONS(7254), + [anon_sym___declspec] = ACTIONS(7252), + [anon_sym___based] = ACTIONS(7252), + [anon_sym_signed] = ACTIONS(7252), + [anon_sym_unsigned] = ACTIONS(7252), + [anon_sym_long] = ACTIONS(7252), + [anon_sym_short] = ACTIONS(7252), + [anon_sym_static] = ACTIONS(7252), + [anon_sym_auto] = ACTIONS(7252), + [anon_sym_register] = ACTIONS(7252), + [anon_sym_inline] = ACTIONS(7252), + [anon_sym___inline] = ACTIONS(7252), + [anon_sym___inline__] = ACTIONS(7252), + [anon_sym___forceinline] = ACTIONS(7252), + [anon_sym_thread_local] = ACTIONS(7252), + [anon_sym___thread] = ACTIONS(7252), + [anon_sym_CG_EXTERN] = ACTIONS(7252), + [anon_sym_CG_INLINE] = ACTIONS(7252), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7252), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7252), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7252), + [anon_sym_IBOutlet] = ACTIONS(7252), + [anon_sym_IBInspectable] = ACTIONS(7252), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7252), + [anon_sym_NS_INLINE] = ACTIONS(7252), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7252), + [anon_sym_OBJC_EXPORT] = ACTIONS(7252), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7252), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7252), + [anon_sym_const] = ACTIONS(7252), + [anon_sym_constexpr] = ACTIONS(7252), + [anon_sym_volatile] = ACTIONS(7252), + [anon_sym_restrict] = ACTIONS(7252), + [anon_sym___restrict__] = ACTIONS(7252), + [anon_sym__Atomic] = ACTIONS(7252), + [anon_sym__Noreturn] = ACTIONS(7252), + [anon_sym__Nonnull] = ACTIONS(7252), + [anon_sym_nullable] = ACTIONS(7252), + [anon_sym__Complex] = ACTIONS(7252), + [anon_sym__Nullable] = ACTIONS(7252), + [anon_sym__Nullable_result] = ACTIONS(7252), + [anon_sym__Null_unspecified] = ACTIONS(7252), + [anon_sym___autoreleasing] = ACTIONS(7252), + [anon_sym___block] = ACTIONS(7252), + [anon_sym___bridge] = ACTIONS(7252), + [anon_sym___bridge_retained] = ACTIONS(7252), + [anon_sym___bridge_transfer] = ACTIONS(7252), + [anon_sym___complex] = ACTIONS(7252), + [anon_sym___const] = ACTIONS(7252), + [anon_sym___imag] = ACTIONS(7252), + [anon_sym___kindof] = ACTIONS(7252), + [anon_sym___nonnull] = ACTIONS(7252), + [anon_sym___nullable] = ACTIONS(7252), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7252), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7252), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7252), + [anon_sym___real] = ACTIONS(7252), + [anon_sym___strong] = ACTIONS(7252), + [anon_sym___unsafe_unretained] = ACTIONS(7252), + [anon_sym___unused] = ACTIONS(7252), + [anon_sym___weak] = ACTIONS(7252), + [anon_sym_alignas] = ACTIONS(7252), + [anon_sym__Alignas] = ACTIONS(7252), + [sym_primitive_type] = ACTIONS(7252), + [anon_sym_enum] = ACTIONS(7252), + [anon_sym_COLON] = ACTIONS(7254), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7252), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7252), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7252), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7252), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7252), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7252), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7252), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7252), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7252), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7252), + [anon_sym_NS_AVAILABLE] = ACTIONS(7252), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7252), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7252), + [anon_sym_API_AVAILABLE] = ACTIONS(7252), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7252), + [anon_sym_API_DEPRECATED] = ACTIONS(7252), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7252), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7252), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7252), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7252), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7252), + [anon_sym___deprecated_msg] = ACTIONS(7252), + [anon_sym___deprecated_enum_msg] = ACTIONS(7252), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7252), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7252), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7252), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7252), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7252), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7252), + }, + [2943] = { + [sym_attribute_specifier] = STATE(3004), + [sym_identifier] = ACTIONS(7256), + [anon_sym_COMMA] = ACTIONS(7258), + [anon_sym_RPAREN] = ACTIONS(7258), + [anon_sym_LPAREN2] = ACTIONS(7258), + [anon_sym_STAR] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7258), + [anon_sym_SEMI] = ACTIONS(7258), + [anon_sym___extension__] = ACTIONS(7256), + [anon_sym_extern] = ACTIONS(7256), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(7256), + [anon_sym_LBRACK] = ACTIONS(7258), + [anon_sym___declspec] = ACTIONS(7256), + [anon_sym___based] = ACTIONS(7256), + [anon_sym_signed] = ACTIONS(7256), + [anon_sym_unsigned] = ACTIONS(7256), + [anon_sym_long] = ACTIONS(7256), + [anon_sym_short] = ACTIONS(7256), + [anon_sym_static] = ACTIONS(7256), + [anon_sym_auto] = ACTIONS(7256), + [anon_sym_register] = ACTIONS(7256), + [anon_sym_inline] = ACTIONS(7256), + [anon_sym___inline] = ACTIONS(7256), + [anon_sym___inline__] = ACTIONS(7256), + [anon_sym___forceinline] = ACTIONS(7256), + [anon_sym_thread_local] = ACTIONS(7256), + [anon_sym___thread] = ACTIONS(7256), + [anon_sym_CG_EXTERN] = ACTIONS(7256), + [anon_sym_CG_INLINE] = ACTIONS(7256), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7256), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7256), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7256), + [anon_sym_IBOutlet] = ACTIONS(7256), + [anon_sym_IBInspectable] = ACTIONS(7256), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7256), + [anon_sym_NS_INLINE] = ACTIONS(7256), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7256), + [anon_sym_OBJC_EXPORT] = ACTIONS(7256), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7256), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7256), + [anon_sym_const] = ACTIONS(7256), + [anon_sym_constexpr] = ACTIONS(7256), + [anon_sym_volatile] = ACTIONS(7256), + [anon_sym_restrict] = ACTIONS(7256), + [anon_sym___restrict__] = ACTIONS(7256), + [anon_sym__Atomic] = ACTIONS(7256), + [anon_sym__Noreturn] = ACTIONS(7256), + [anon_sym__Nonnull] = ACTIONS(7256), + [anon_sym_nullable] = ACTIONS(7256), + [anon_sym__Complex] = ACTIONS(7256), + [anon_sym__Nullable] = ACTIONS(7256), + [anon_sym__Nullable_result] = ACTIONS(7256), + [anon_sym__Null_unspecified] = ACTIONS(7256), + [anon_sym___autoreleasing] = ACTIONS(7256), + [anon_sym___block] = ACTIONS(7256), + [anon_sym___bridge] = ACTIONS(7256), + [anon_sym___bridge_retained] = ACTIONS(7256), + [anon_sym___bridge_transfer] = ACTIONS(7256), + [anon_sym___complex] = ACTIONS(7256), + [anon_sym___const] = ACTIONS(7256), + [anon_sym___imag] = ACTIONS(7256), + [anon_sym___kindof] = ACTIONS(7256), + [anon_sym___nonnull] = ACTIONS(7256), + [anon_sym___nullable] = ACTIONS(7256), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7256), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7256), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7256), + [anon_sym___real] = ACTIONS(7256), + [anon_sym___strong] = ACTIONS(7256), + [anon_sym___unsafe_unretained] = ACTIONS(7256), + [anon_sym___unused] = ACTIONS(7256), + [anon_sym___weak] = ACTIONS(7256), + [anon_sym_alignas] = ACTIONS(7256), + [anon_sym__Alignas] = ACTIONS(7256), + [sym_primitive_type] = ACTIONS(7256), + [anon_sym_enum] = ACTIONS(7256), + [anon_sym_COLON] = ACTIONS(7258), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7256), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7256), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7256), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7256), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7256), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7256), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7256), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7256), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7256), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7256), + [anon_sym_NS_AVAILABLE] = ACTIONS(7256), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7256), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7256), + [anon_sym_API_AVAILABLE] = ACTIONS(7256), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7256), + [anon_sym_API_DEPRECATED] = ACTIONS(7256), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7256), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7256), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7256), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7256), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7256), + [anon_sym___deprecated_msg] = ACTIONS(7256), + [anon_sym___deprecated_enum_msg] = ACTIONS(7256), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7256), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7256), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7256), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7256), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7256), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7256), + }, + [2944] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2930), + [sym_identifier] = ACTIONS(7260), + [anon_sym_COMMA] = ACTIONS(7263), + [anon_sym_RPAREN] = ACTIONS(7263), + [anon_sym_LPAREN2] = ACTIONS(7263), + [anon_sym_STAR] = ACTIONS(7263), + [anon_sym_CARET] = ACTIONS(7263), + [anon_sym_SEMI] = ACTIONS(7263), + [anon_sym___extension__] = ACTIONS(7260), + [anon_sym_extern] = ACTIONS(7260), + [anon_sym___attribute__] = ACTIONS(7260), + [anon_sym___attribute] = ACTIONS(7260), + [anon_sym_noreturn] = ACTIONS(7260), + [anon_sym_LBRACK] = ACTIONS(7263), + [anon_sym___declspec] = ACTIONS(7260), + [anon_sym___based] = ACTIONS(7260), + [anon_sym_signed] = ACTIONS(7205), + [anon_sym_unsigned] = ACTIONS(7205), + [anon_sym_long] = ACTIONS(7205), + [anon_sym_short] = ACTIONS(7205), + [anon_sym_static] = ACTIONS(7260), + [anon_sym_auto] = ACTIONS(7260), + [anon_sym_register] = ACTIONS(7260), + [anon_sym_inline] = ACTIONS(7260), + [anon_sym___inline] = ACTIONS(7260), + [anon_sym___inline__] = ACTIONS(7260), + [anon_sym___forceinline] = ACTIONS(7260), + [anon_sym_thread_local] = ACTIONS(7260), + [anon_sym___thread] = ACTIONS(7260), + [anon_sym_CG_EXTERN] = ACTIONS(7260), + [anon_sym_CG_INLINE] = ACTIONS(7260), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7260), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7260), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7260), + [anon_sym_IBOutlet] = ACTIONS(7260), + [anon_sym_IBInspectable] = ACTIONS(7260), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7260), + [anon_sym_NS_INLINE] = ACTIONS(7260), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7260), + [anon_sym_OBJC_EXPORT] = ACTIONS(7260), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7260), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7260), + [anon_sym_const] = ACTIONS(7260), + [anon_sym_constexpr] = ACTIONS(7260), + [anon_sym_volatile] = ACTIONS(7260), + [anon_sym_restrict] = ACTIONS(7260), + [anon_sym___restrict__] = ACTIONS(7260), + [anon_sym__Atomic] = ACTIONS(7260), + [anon_sym__Noreturn] = ACTIONS(7260), + [anon_sym__Nonnull] = ACTIONS(7260), + [anon_sym_nullable] = ACTIONS(7260), + [anon_sym__Complex] = ACTIONS(7260), + [anon_sym__Nullable] = ACTIONS(7260), + [anon_sym__Nullable_result] = ACTIONS(7260), + [anon_sym__Null_unspecified] = ACTIONS(7260), + [anon_sym___autoreleasing] = ACTIONS(7260), + [anon_sym___block] = ACTIONS(7260), + [anon_sym___bridge] = ACTIONS(7260), + [anon_sym___bridge_retained] = ACTIONS(7260), + [anon_sym___bridge_transfer] = ACTIONS(7260), + [anon_sym___complex] = ACTIONS(7260), + [anon_sym___const] = ACTIONS(7260), + [anon_sym___imag] = ACTIONS(7260), + [anon_sym___kindof] = ACTIONS(7260), + [anon_sym___nonnull] = ACTIONS(7260), + [anon_sym___nullable] = ACTIONS(7260), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7260), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7260), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7260), + [anon_sym___real] = ACTIONS(7260), + [anon_sym___strong] = ACTIONS(7260), + [anon_sym___unsafe_unretained] = ACTIONS(7260), + [anon_sym___unused] = ACTIONS(7260), + [anon_sym___weak] = ACTIONS(7260), + [anon_sym_alignas] = ACTIONS(7260), + [anon_sym__Alignas] = ACTIONS(7260), + [sym_primitive_type] = ACTIONS(7201), + [anon_sym_enum] = ACTIONS(7260), + [anon_sym_COLON] = ACTIONS(7263), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7260), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7260), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7260), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7260), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7260), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7260), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7260), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7260), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7260), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7260), + [anon_sym_NS_AVAILABLE] = ACTIONS(7260), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7260), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7260), + [anon_sym_API_AVAILABLE] = ACTIONS(7260), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7260), + [anon_sym_API_DEPRECATED] = ACTIONS(7260), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7260), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7260), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7260), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7260), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7260), + [anon_sym___deprecated_msg] = ACTIONS(7260), + [anon_sym___deprecated_enum_msg] = ACTIONS(7260), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7260), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7260), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7260), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7260), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7260), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7260), + }, + [2945] = { + [sym_identifier] = ACTIONS(7266), + [anon_sym_COMMA] = ACTIONS(7268), + [anon_sym_RPAREN] = ACTIONS(7268), + [anon_sym_LPAREN2] = ACTIONS(7268), + [anon_sym_STAR] = ACTIONS(7268), + [anon_sym_CARET] = ACTIONS(7268), + [anon_sym_SEMI] = ACTIONS(7268), + [anon_sym___extension__] = ACTIONS(7266), + [anon_sym_extern] = ACTIONS(7266), + [anon_sym___attribute__] = ACTIONS(7266), + [anon_sym___attribute] = ACTIONS(7266), + [anon_sym_noreturn] = ACTIONS(7266), + [anon_sym_LBRACK] = ACTIONS(7268), + [anon_sym___declspec] = ACTIONS(7266), + [anon_sym___based] = ACTIONS(7266), + [anon_sym_signed] = ACTIONS(7266), + [anon_sym_unsigned] = ACTIONS(7266), + [anon_sym_long] = ACTIONS(7266), + [anon_sym_short] = ACTIONS(7266), + [anon_sym_static] = ACTIONS(7266), + [anon_sym_auto] = ACTIONS(7266), + [anon_sym_register] = ACTIONS(7266), + [anon_sym_inline] = ACTIONS(7266), + [anon_sym___inline] = ACTIONS(7266), + [anon_sym___inline__] = ACTIONS(7266), + [anon_sym___forceinline] = ACTIONS(7266), + [anon_sym_thread_local] = ACTIONS(7266), + [anon_sym___thread] = ACTIONS(7266), + [anon_sym_CG_EXTERN] = ACTIONS(7266), + [anon_sym_CG_INLINE] = ACTIONS(7266), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7266), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7266), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7266), + [anon_sym_IBOutlet] = ACTIONS(7266), + [anon_sym_IBInspectable] = ACTIONS(7266), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7266), + [anon_sym_NS_INLINE] = ACTIONS(7266), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7266), + [anon_sym_OBJC_EXPORT] = ACTIONS(7266), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7266), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7266), + [anon_sym_const] = ACTIONS(7266), + [anon_sym_constexpr] = ACTIONS(7266), + [anon_sym_volatile] = ACTIONS(7266), + [anon_sym_restrict] = ACTIONS(7266), + [anon_sym___restrict__] = ACTIONS(7266), + [anon_sym__Atomic] = ACTIONS(7266), + [anon_sym__Noreturn] = ACTIONS(7266), + [anon_sym__Nonnull] = ACTIONS(7266), + [anon_sym_nullable] = ACTIONS(7266), + [anon_sym__Complex] = ACTIONS(7266), + [anon_sym__Nullable] = ACTIONS(7266), + [anon_sym__Nullable_result] = ACTIONS(7266), + [anon_sym__Null_unspecified] = ACTIONS(7266), + [anon_sym___autoreleasing] = ACTIONS(7266), + [anon_sym___block] = ACTIONS(7266), + [anon_sym___bridge] = ACTIONS(7266), + [anon_sym___bridge_retained] = ACTIONS(7266), + [anon_sym___bridge_transfer] = ACTIONS(7266), + [anon_sym___complex] = ACTIONS(7266), + [anon_sym___const] = ACTIONS(7266), + [anon_sym___imag] = ACTIONS(7266), + [anon_sym___kindof] = ACTIONS(7266), + [anon_sym___nonnull] = ACTIONS(7266), + [anon_sym___nullable] = ACTIONS(7266), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7266), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7266), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7266), + [anon_sym___real] = ACTIONS(7266), + [anon_sym___strong] = ACTIONS(7266), + [anon_sym___unsafe_unretained] = ACTIONS(7266), + [anon_sym___unused] = ACTIONS(7266), + [anon_sym___weak] = ACTIONS(7266), + [anon_sym_alignas] = ACTIONS(7266), + [anon_sym__Alignas] = ACTIONS(7266), + [sym_primitive_type] = ACTIONS(7266), + [anon_sym_enum] = ACTIONS(7266), + [anon_sym_COLON] = ACTIONS(7268), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7266), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7266), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7266), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7266), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7266), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7266), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7266), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7266), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7266), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7266), + [anon_sym_NS_AVAILABLE] = ACTIONS(7266), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7266), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7266), + [anon_sym_API_AVAILABLE] = ACTIONS(7266), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7266), + [anon_sym_API_DEPRECATED] = ACTIONS(7266), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7266), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7266), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7266), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7266), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7266), + [anon_sym___deprecated_msg] = ACTIONS(7266), + [anon_sym___deprecated_enum_msg] = ACTIONS(7266), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7266), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7266), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7266), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7266), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7266), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7266), + }, + [2946] = { + [sym_identifier] = ACTIONS(7270), + [anon_sym_COMMA] = ACTIONS(7272), + [anon_sym_RPAREN] = ACTIONS(7272), + [anon_sym_LPAREN2] = ACTIONS(7272), + [anon_sym_STAR] = ACTIONS(7272), + [anon_sym_CARET] = ACTIONS(7272), + [anon_sym_SEMI] = ACTIONS(7272), + [anon_sym___extension__] = ACTIONS(7270), + [anon_sym_extern] = ACTIONS(7270), + [anon_sym___attribute__] = ACTIONS(7270), + [anon_sym___attribute] = ACTIONS(7270), + [anon_sym_noreturn] = ACTIONS(7270), + [anon_sym_LBRACK] = ACTIONS(7272), + [anon_sym___declspec] = ACTIONS(7270), + [anon_sym___based] = ACTIONS(7270), + [anon_sym_signed] = ACTIONS(7270), + [anon_sym_unsigned] = ACTIONS(7270), + [anon_sym_long] = ACTIONS(7270), + [anon_sym_short] = ACTIONS(7270), + [anon_sym_static] = ACTIONS(7270), + [anon_sym_auto] = ACTIONS(7270), + [anon_sym_register] = ACTIONS(7270), + [anon_sym_inline] = ACTIONS(7270), + [anon_sym___inline] = ACTIONS(7270), + [anon_sym___inline__] = ACTIONS(7270), + [anon_sym___forceinline] = ACTIONS(7270), + [anon_sym_thread_local] = ACTIONS(7270), + [anon_sym___thread] = ACTIONS(7270), + [anon_sym_CG_EXTERN] = ACTIONS(7270), + [anon_sym_CG_INLINE] = ACTIONS(7270), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7270), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7270), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7270), + [anon_sym_IBOutlet] = ACTIONS(7270), + [anon_sym_IBInspectable] = ACTIONS(7270), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7270), + [anon_sym_NS_INLINE] = ACTIONS(7270), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7270), + [anon_sym_OBJC_EXPORT] = ACTIONS(7270), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7270), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7270), + [anon_sym_const] = ACTIONS(7270), + [anon_sym_constexpr] = ACTIONS(7270), + [anon_sym_volatile] = ACTIONS(7270), + [anon_sym_restrict] = ACTIONS(7270), + [anon_sym___restrict__] = ACTIONS(7270), + [anon_sym__Atomic] = ACTIONS(7270), + [anon_sym__Noreturn] = ACTIONS(7270), + [anon_sym__Nonnull] = ACTIONS(7270), + [anon_sym_nullable] = ACTIONS(7270), + [anon_sym__Complex] = ACTIONS(7270), + [anon_sym__Nullable] = ACTIONS(7270), + [anon_sym__Nullable_result] = ACTIONS(7270), + [anon_sym__Null_unspecified] = ACTIONS(7270), + [anon_sym___autoreleasing] = ACTIONS(7270), + [anon_sym___block] = ACTIONS(7270), + [anon_sym___bridge] = ACTIONS(7270), + [anon_sym___bridge_retained] = ACTIONS(7270), + [anon_sym___bridge_transfer] = ACTIONS(7270), + [anon_sym___complex] = ACTIONS(7270), + [anon_sym___const] = ACTIONS(7270), + [anon_sym___imag] = ACTIONS(7270), + [anon_sym___kindof] = ACTIONS(7270), + [anon_sym___nonnull] = ACTIONS(7270), + [anon_sym___nullable] = ACTIONS(7270), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7270), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7270), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7270), + [anon_sym___real] = ACTIONS(7270), + [anon_sym___strong] = ACTIONS(7270), + [anon_sym___unsafe_unretained] = ACTIONS(7270), + [anon_sym___unused] = ACTIONS(7270), + [anon_sym___weak] = ACTIONS(7270), + [anon_sym_alignas] = ACTIONS(7270), + [anon_sym__Alignas] = ACTIONS(7270), + [sym_primitive_type] = ACTIONS(7270), + [anon_sym_enum] = ACTIONS(7270), + [anon_sym_COLON] = ACTIONS(7272), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7270), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7270), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7270), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7270), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7270), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7270), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7270), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7270), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7270), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7270), + [anon_sym_NS_AVAILABLE] = ACTIONS(7270), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7270), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7270), + [anon_sym_API_AVAILABLE] = ACTIONS(7270), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7270), + [anon_sym_API_DEPRECATED] = ACTIONS(7270), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7270), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7270), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7270), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7270), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7270), + [anon_sym___deprecated_msg] = ACTIONS(7270), + [anon_sym___deprecated_enum_msg] = ACTIONS(7270), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7270), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7270), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7270), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7270), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7270), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7270), + }, + [2947] = { + [sym_identifier] = ACTIONS(7274), + [anon_sym_COMMA] = ACTIONS(7276), + [anon_sym_RPAREN] = ACTIONS(7276), + [anon_sym_LPAREN2] = ACTIONS(7276), + [anon_sym_STAR] = ACTIONS(7276), + [anon_sym_CARET] = ACTIONS(7276), + [anon_sym_SEMI] = ACTIONS(7276), + [anon_sym___extension__] = ACTIONS(7274), + [anon_sym_extern] = ACTIONS(7274), + [anon_sym___attribute__] = ACTIONS(7274), + [anon_sym___attribute] = ACTIONS(7274), + [anon_sym_noreturn] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(7276), + [anon_sym___declspec] = ACTIONS(7274), + [anon_sym___based] = ACTIONS(7274), + [anon_sym_signed] = ACTIONS(7274), + [anon_sym_unsigned] = ACTIONS(7274), + [anon_sym_long] = ACTIONS(7274), + [anon_sym_short] = ACTIONS(7274), + [anon_sym_static] = ACTIONS(7274), + [anon_sym_auto] = ACTIONS(7274), + [anon_sym_register] = ACTIONS(7274), + [anon_sym_inline] = ACTIONS(7274), + [anon_sym___inline] = ACTIONS(7274), + [anon_sym___inline__] = ACTIONS(7274), + [anon_sym___forceinline] = ACTIONS(7274), + [anon_sym_thread_local] = ACTIONS(7274), + [anon_sym___thread] = ACTIONS(7274), + [anon_sym_CG_EXTERN] = ACTIONS(7274), + [anon_sym_CG_INLINE] = ACTIONS(7274), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7274), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7274), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7274), + [anon_sym_IBOutlet] = ACTIONS(7274), + [anon_sym_IBInspectable] = ACTIONS(7274), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7274), + [anon_sym_NS_INLINE] = ACTIONS(7274), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7274), + [anon_sym_OBJC_EXPORT] = ACTIONS(7274), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7274), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7274), + [anon_sym_const] = ACTIONS(7274), + [anon_sym_constexpr] = ACTIONS(7274), + [anon_sym_volatile] = ACTIONS(7274), + [anon_sym_restrict] = ACTIONS(7274), + [anon_sym___restrict__] = ACTIONS(7274), + [anon_sym__Atomic] = ACTIONS(7274), + [anon_sym__Noreturn] = ACTIONS(7274), + [anon_sym__Nonnull] = ACTIONS(7274), + [anon_sym_nullable] = ACTIONS(7274), + [anon_sym__Complex] = ACTIONS(7274), + [anon_sym__Nullable] = ACTIONS(7274), + [anon_sym__Nullable_result] = ACTIONS(7274), + [anon_sym__Null_unspecified] = ACTIONS(7274), + [anon_sym___autoreleasing] = ACTIONS(7274), + [anon_sym___block] = ACTIONS(7274), + [anon_sym___bridge] = ACTIONS(7274), + [anon_sym___bridge_retained] = ACTIONS(7274), + [anon_sym___bridge_transfer] = ACTIONS(7274), + [anon_sym___complex] = ACTIONS(7274), + [anon_sym___const] = ACTIONS(7274), + [anon_sym___imag] = ACTIONS(7274), + [anon_sym___kindof] = ACTIONS(7274), + [anon_sym___nonnull] = ACTIONS(7274), + [anon_sym___nullable] = ACTIONS(7274), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7274), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7274), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7274), + [anon_sym___real] = ACTIONS(7274), + [anon_sym___strong] = ACTIONS(7274), + [anon_sym___unsafe_unretained] = ACTIONS(7274), + [anon_sym___unused] = ACTIONS(7274), + [anon_sym___weak] = ACTIONS(7274), + [anon_sym_alignas] = ACTIONS(7274), + [anon_sym__Alignas] = ACTIONS(7274), + [sym_primitive_type] = ACTIONS(7274), + [anon_sym_enum] = ACTIONS(7274), + [anon_sym_COLON] = ACTIONS(7276), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7274), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7274), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7274), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7274), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7274), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7274), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7274), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7274), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7274), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7274), + [anon_sym_NS_AVAILABLE] = ACTIONS(7274), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7274), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7274), + [anon_sym_API_AVAILABLE] = ACTIONS(7274), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7274), + [anon_sym_API_DEPRECATED] = ACTIONS(7274), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7274), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7274), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7274), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7274), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7274), + [anon_sym___deprecated_msg] = ACTIONS(7274), + [anon_sym___deprecated_enum_msg] = ACTIONS(7274), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7274), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7274), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7274), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7274), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7274), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7274), + }, + [2948] = { + [sym_identifier] = ACTIONS(5034), + [anon_sym_COMMA] = ACTIONS(5030), + [anon_sym_RPAREN] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(5030), + [anon_sym___extension__] = ACTIONS(5034), + [anon_sym_extern] = ACTIONS(5034), + [anon_sym___attribute__] = ACTIONS(5034), + [anon_sym___attribute] = ACTIONS(5034), + [anon_sym_noreturn] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym___declspec] = ACTIONS(5034), + [anon_sym___based] = ACTIONS(5034), + [anon_sym_signed] = ACTIONS(5034), + [anon_sym_unsigned] = ACTIONS(5034), + [anon_sym_long] = ACTIONS(5034), + [anon_sym_short] = ACTIONS(5034), + [anon_sym_static] = ACTIONS(5034), + [anon_sym_auto] = ACTIONS(5034), + [anon_sym_register] = ACTIONS(5034), + [anon_sym_inline] = ACTIONS(5034), + [anon_sym___inline] = ACTIONS(5034), + [anon_sym___inline__] = ACTIONS(5034), + [anon_sym___forceinline] = ACTIONS(5034), + [anon_sym_thread_local] = ACTIONS(5034), + [anon_sym___thread] = ACTIONS(5034), + [anon_sym_CG_EXTERN] = ACTIONS(5034), + [anon_sym_CG_INLINE] = ACTIONS(5034), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5034), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5034), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5034), + [anon_sym_IBOutlet] = ACTIONS(5034), + [anon_sym_IBInspectable] = ACTIONS(5034), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5034), + [anon_sym_NS_INLINE] = ACTIONS(5034), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5034), + [anon_sym_OBJC_EXPORT] = ACTIONS(5034), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5034), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5034), + [anon_sym_const] = ACTIONS(5034), + [anon_sym_constexpr] = ACTIONS(5034), + [anon_sym_volatile] = ACTIONS(5034), + [anon_sym_restrict] = ACTIONS(5034), + [anon_sym___restrict__] = ACTIONS(5034), + [anon_sym__Atomic] = ACTIONS(5034), + [anon_sym__Noreturn] = ACTIONS(5034), + [anon_sym__Nonnull] = ACTIONS(5034), + [anon_sym_nullable] = ACTIONS(5034), + [anon_sym__Complex] = ACTIONS(5034), + [anon_sym__Nullable] = ACTIONS(5034), + [anon_sym__Nullable_result] = ACTIONS(5034), + [anon_sym__Null_unspecified] = ACTIONS(5034), + [anon_sym___autoreleasing] = ACTIONS(5034), + [anon_sym___block] = ACTIONS(5034), + [anon_sym___bridge] = ACTIONS(5034), + [anon_sym___bridge_retained] = ACTIONS(5034), + [anon_sym___bridge_transfer] = ACTIONS(5034), + [anon_sym___complex] = ACTIONS(5034), + [anon_sym___const] = ACTIONS(5034), + [anon_sym___imag] = ACTIONS(5034), + [anon_sym___kindof] = ACTIONS(5034), + [anon_sym___nonnull] = ACTIONS(5034), + [anon_sym___nullable] = ACTIONS(5034), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5034), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5034), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5034), + [anon_sym___real] = ACTIONS(5034), + [anon_sym___strong] = ACTIONS(5034), + [anon_sym___unsafe_unretained] = ACTIONS(5034), + [anon_sym___unused] = ACTIONS(5034), + [anon_sym___weak] = ACTIONS(5034), + [anon_sym_alignas] = ACTIONS(5034), + [anon_sym__Alignas] = ACTIONS(5034), + [sym_primitive_type] = ACTIONS(5034), + [anon_sym_enum] = ACTIONS(5034), + [anon_sym_COLON] = ACTIONS(5030), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5034), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5034), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5034), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5034), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5034), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5034), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5034), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5034), + [anon_sym_NS_AVAILABLE] = ACTIONS(5034), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5034), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_API_AVAILABLE] = ACTIONS(5034), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_API_DEPRECATED] = ACTIONS(5034), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5034), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5034), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5034), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5034), + [anon_sym___deprecated_msg] = ACTIONS(5034), + [anon_sym___deprecated_enum_msg] = ACTIONS(5034), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5034), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5034), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5034), + }, + [2949] = { + [sym_identifier] = ACTIONS(7278), + [anon_sym_COMMA] = ACTIONS(7280), + [anon_sym_RPAREN] = ACTIONS(7280), + [anon_sym_LPAREN2] = ACTIONS(7280), + [anon_sym_STAR] = ACTIONS(7280), + [anon_sym_CARET] = ACTIONS(7280), + [anon_sym_SEMI] = ACTIONS(7280), + [anon_sym___extension__] = ACTIONS(7278), + [anon_sym_extern] = ACTIONS(7278), + [anon_sym___attribute__] = ACTIONS(7278), + [anon_sym___attribute] = ACTIONS(7278), + [anon_sym_noreturn] = ACTIONS(7278), + [anon_sym_LBRACK] = ACTIONS(7280), + [anon_sym___declspec] = ACTIONS(7278), + [anon_sym___based] = ACTIONS(7278), + [anon_sym_signed] = ACTIONS(7278), + [anon_sym_unsigned] = ACTIONS(7278), + [anon_sym_long] = ACTIONS(7278), + [anon_sym_short] = ACTIONS(7278), + [anon_sym_static] = ACTIONS(7278), + [anon_sym_auto] = ACTIONS(7278), + [anon_sym_register] = ACTIONS(7278), + [anon_sym_inline] = ACTIONS(7278), + [anon_sym___inline] = ACTIONS(7278), + [anon_sym___inline__] = ACTIONS(7278), + [anon_sym___forceinline] = ACTIONS(7278), + [anon_sym_thread_local] = ACTIONS(7278), + [anon_sym___thread] = ACTIONS(7278), + [anon_sym_CG_EXTERN] = ACTIONS(7278), + [anon_sym_CG_INLINE] = ACTIONS(7278), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7278), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7278), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7278), + [anon_sym_IBOutlet] = ACTIONS(7278), + [anon_sym_IBInspectable] = ACTIONS(7278), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7278), + [anon_sym_NS_INLINE] = ACTIONS(7278), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7278), + [anon_sym_OBJC_EXPORT] = ACTIONS(7278), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7278), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7278), + [anon_sym_const] = ACTIONS(7278), + [anon_sym_constexpr] = ACTIONS(7278), + [anon_sym_volatile] = ACTIONS(7278), + [anon_sym_restrict] = ACTIONS(7278), + [anon_sym___restrict__] = ACTIONS(7278), + [anon_sym__Atomic] = ACTIONS(7278), + [anon_sym__Noreturn] = ACTIONS(7278), + [anon_sym__Nonnull] = ACTIONS(7278), + [anon_sym_nullable] = ACTIONS(7278), + [anon_sym__Complex] = ACTIONS(7278), + [anon_sym__Nullable] = ACTIONS(7278), + [anon_sym__Nullable_result] = ACTIONS(7278), + [anon_sym__Null_unspecified] = ACTIONS(7278), + [anon_sym___autoreleasing] = ACTIONS(7278), + [anon_sym___block] = ACTIONS(7278), + [anon_sym___bridge] = ACTIONS(7278), + [anon_sym___bridge_retained] = ACTIONS(7278), + [anon_sym___bridge_transfer] = ACTIONS(7278), + [anon_sym___complex] = ACTIONS(7278), + [anon_sym___const] = ACTIONS(7278), + [anon_sym___imag] = ACTIONS(7278), + [anon_sym___kindof] = ACTIONS(7278), + [anon_sym___nonnull] = ACTIONS(7278), + [anon_sym___nullable] = ACTIONS(7278), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7278), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7278), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7278), + [anon_sym___real] = ACTIONS(7278), + [anon_sym___strong] = ACTIONS(7278), + [anon_sym___unsafe_unretained] = ACTIONS(7278), + [anon_sym___unused] = ACTIONS(7278), + [anon_sym___weak] = ACTIONS(7278), + [anon_sym_alignas] = ACTIONS(7278), + [anon_sym__Alignas] = ACTIONS(7278), + [sym_primitive_type] = ACTIONS(7278), + [anon_sym_enum] = ACTIONS(7278), + [anon_sym_COLON] = ACTIONS(7280), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7278), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7278), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7278), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7278), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7278), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7278), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7278), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7278), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7278), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7278), + [anon_sym_NS_AVAILABLE] = ACTIONS(7278), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7278), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7278), + [anon_sym_API_AVAILABLE] = ACTIONS(7278), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7278), + [anon_sym_API_DEPRECATED] = ACTIONS(7278), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7278), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7278), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7278), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7278), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7278), + [anon_sym___deprecated_msg] = ACTIONS(7278), + [anon_sym___deprecated_enum_msg] = ACTIONS(7278), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7278), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7278), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7278), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7278), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7278), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7278), + }, + [2950] = { + [sym_identifier] = ACTIONS(7282), + [anon_sym_COMMA] = ACTIONS(7284), + [anon_sym_RPAREN] = ACTIONS(7284), + [anon_sym_LPAREN2] = ACTIONS(7284), + [anon_sym_STAR] = ACTIONS(7284), + [anon_sym_CARET] = ACTIONS(7284), + [anon_sym_SEMI] = ACTIONS(7284), + [anon_sym___extension__] = ACTIONS(7282), + [anon_sym_extern] = ACTIONS(7282), + [anon_sym___attribute__] = ACTIONS(7282), + [anon_sym___attribute] = ACTIONS(7282), + [anon_sym_noreturn] = ACTIONS(7282), + [anon_sym_LBRACK] = ACTIONS(7284), + [anon_sym___declspec] = ACTIONS(7282), + [anon_sym___based] = ACTIONS(7282), + [anon_sym_signed] = ACTIONS(7282), + [anon_sym_unsigned] = ACTIONS(7282), + [anon_sym_long] = ACTIONS(7282), + [anon_sym_short] = ACTIONS(7282), + [anon_sym_static] = ACTIONS(7282), + [anon_sym_auto] = ACTIONS(7282), + [anon_sym_register] = ACTIONS(7282), + [anon_sym_inline] = ACTIONS(7282), + [anon_sym___inline] = ACTIONS(7282), + [anon_sym___inline__] = ACTIONS(7282), + [anon_sym___forceinline] = ACTIONS(7282), + [anon_sym_thread_local] = ACTIONS(7282), + [anon_sym___thread] = ACTIONS(7282), + [anon_sym_CG_EXTERN] = ACTIONS(7282), + [anon_sym_CG_INLINE] = ACTIONS(7282), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7282), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7282), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7282), + [anon_sym_IBOutlet] = ACTIONS(7282), + [anon_sym_IBInspectable] = ACTIONS(7282), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7282), + [anon_sym_NS_INLINE] = ACTIONS(7282), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7282), + [anon_sym_OBJC_EXPORT] = ACTIONS(7282), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7282), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7282), + [anon_sym_const] = ACTIONS(7282), + [anon_sym_constexpr] = ACTIONS(7282), + [anon_sym_volatile] = ACTIONS(7282), + [anon_sym_restrict] = ACTIONS(7282), + [anon_sym___restrict__] = ACTIONS(7282), + [anon_sym__Atomic] = ACTIONS(7282), + [anon_sym__Noreturn] = ACTIONS(7282), + [anon_sym__Nonnull] = ACTIONS(7282), + [anon_sym_nullable] = ACTIONS(7282), + [anon_sym__Complex] = ACTIONS(7282), + [anon_sym__Nullable] = ACTIONS(7282), + [anon_sym__Nullable_result] = ACTIONS(7282), + [anon_sym__Null_unspecified] = ACTIONS(7282), + [anon_sym___autoreleasing] = ACTIONS(7282), + [anon_sym___block] = ACTIONS(7282), + [anon_sym___bridge] = ACTIONS(7282), + [anon_sym___bridge_retained] = ACTIONS(7282), + [anon_sym___bridge_transfer] = ACTIONS(7282), + [anon_sym___complex] = ACTIONS(7282), + [anon_sym___const] = ACTIONS(7282), + [anon_sym___imag] = ACTIONS(7282), + [anon_sym___kindof] = ACTIONS(7282), + [anon_sym___nonnull] = ACTIONS(7282), + [anon_sym___nullable] = ACTIONS(7282), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7282), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7282), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7282), + [anon_sym___real] = ACTIONS(7282), + [anon_sym___strong] = ACTIONS(7282), + [anon_sym___unsafe_unretained] = ACTIONS(7282), + [anon_sym___unused] = ACTIONS(7282), + [anon_sym___weak] = ACTIONS(7282), + [anon_sym_alignas] = ACTIONS(7282), + [anon_sym__Alignas] = ACTIONS(7282), + [sym_primitive_type] = ACTIONS(7282), + [anon_sym_enum] = ACTIONS(7282), + [anon_sym_COLON] = ACTIONS(7284), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7282), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7282), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7282), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7282), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7282), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7282), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7282), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7282), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7282), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7282), + [anon_sym_NS_AVAILABLE] = ACTIONS(7282), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7282), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7282), + [anon_sym_API_AVAILABLE] = ACTIONS(7282), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7282), + [anon_sym_API_DEPRECATED] = ACTIONS(7282), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7282), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7282), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7282), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7282), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7282), + [anon_sym___deprecated_msg] = ACTIONS(7282), + [anon_sym___deprecated_enum_msg] = ACTIONS(7282), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7282), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7282), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7282), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7282), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7282), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7282), + }, + [2951] = { + [sym_identifier] = ACTIONS(7286), + [anon_sym_COMMA] = ACTIONS(7288), + [anon_sym_RPAREN] = ACTIONS(7288), + [anon_sym_LPAREN2] = ACTIONS(7288), + [anon_sym_STAR] = ACTIONS(7288), + [anon_sym_CARET] = ACTIONS(7288), + [anon_sym_SEMI] = ACTIONS(7288), + [anon_sym___extension__] = ACTIONS(7286), + [anon_sym_extern] = ACTIONS(7286), + [anon_sym___attribute__] = ACTIONS(7286), + [anon_sym___attribute] = ACTIONS(7286), + [anon_sym_noreturn] = ACTIONS(7286), + [anon_sym_LBRACK] = ACTIONS(7288), + [anon_sym___declspec] = ACTIONS(7286), + [anon_sym___based] = ACTIONS(7286), + [anon_sym_signed] = ACTIONS(7286), + [anon_sym_unsigned] = ACTIONS(7286), + [anon_sym_long] = ACTIONS(7286), + [anon_sym_short] = ACTIONS(7286), + [anon_sym_static] = ACTIONS(7286), + [anon_sym_auto] = ACTIONS(7286), + [anon_sym_register] = ACTIONS(7286), + [anon_sym_inline] = ACTIONS(7286), + [anon_sym___inline] = ACTIONS(7286), + [anon_sym___inline__] = ACTIONS(7286), + [anon_sym___forceinline] = ACTIONS(7286), + [anon_sym_thread_local] = ACTIONS(7286), + [anon_sym___thread] = ACTIONS(7286), + [anon_sym_CG_EXTERN] = ACTIONS(7286), + [anon_sym_CG_INLINE] = ACTIONS(7286), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7286), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7286), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7286), + [anon_sym_IBOutlet] = ACTIONS(7286), + [anon_sym_IBInspectable] = ACTIONS(7286), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7286), + [anon_sym_NS_INLINE] = ACTIONS(7286), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7286), + [anon_sym_OBJC_EXPORT] = ACTIONS(7286), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7286), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7286), + [anon_sym_const] = ACTIONS(7286), + [anon_sym_constexpr] = ACTIONS(7286), + [anon_sym_volatile] = ACTIONS(7286), + [anon_sym_restrict] = ACTIONS(7286), + [anon_sym___restrict__] = ACTIONS(7286), + [anon_sym__Atomic] = ACTIONS(7286), + [anon_sym__Noreturn] = ACTIONS(7286), + [anon_sym__Nonnull] = ACTIONS(7286), + [anon_sym_nullable] = ACTIONS(7286), + [anon_sym__Complex] = ACTIONS(7286), + [anon_sym__Nullable] = ACTIONS(7286), + [anon_sym__Nullable_result] = ACTIONS(7286), + [anon_sym__Null_unspecified] = ACTIONS(7286), + [anon_sym___autoreleasing] = ACTIONS(7286), + [anon_sym___block] = ACTIONS(7286), + [anon_sym___bridge] = ACTIONS(7286), + [anon_sym___bridge_retained] = ACTIONS(7286), + [anon_sym___bridge_transfer] = ACTIONS(7286), + [anon_sym___complex] = ACTIONS(7286), + [anon_sym___const] = ACTIONS(7286), + [anon_sym___imag] = ACTIONS(7286), + [anon_sym___kindof] = ACTIONS(7286), + [anon_sym___nonnull] = ACTIONS(7286), + [anon_sym___nullable] = ACTIONS(7286), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7286), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7286), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7286), + [anon_sym___real] = ACTIONS(7286), + [anon_sym___strong] = ACTIONS(7286), + [anon_sym___unsafe_unretained] = ACTIONS(7286), + [anon_sym___unused] = ACTIONS(7286), + [anon_sym___weak] = ACTIONS(7286), + [anon_sym_alignas] = ACTIONS(7286), + [anon_sym__Alignas] = ACTIONS(7286), + [sym_primitive_type] = ACTIONS(7286), + [anon_sym_enum] = ACTIONS(7286), + [anon_sym_COLON] = ACTIONS(7288), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7286), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7286), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7286), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7286), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7286), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7286), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7286), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7286), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7286), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7286), + [anon_sym_NS_AVAILABLE] = ACTIONS(7286), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7286), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7286), + [anon_sym_API_AVAILABLE] = ACTIONS(7286), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7286), + [anon_sym_API_DEPRECATED] = ACTIONS(7286), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7286), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7286), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7286), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7286), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7286), + [anon_sym___deprecated_msg] = ACTIONS(7286), + [anon_sym___deprecated_enum_msg] = ACTIONS(7286), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7286), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7286), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7286), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7286), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7286), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7286), + }, + [2952] = { + [sym_identifier] = ACTIONS(7290), + [anon_sym_COMMA] = ACTIONS(7292), + [anon_sym_RPAREN] = ACTIONS(7292), + [anon_sym_LPAREN2] = ACTIONS(7292), + [anon_sym_STAR] = ACTIONS(7292), + [anon_sym_CARET] = ACTIONS(7292), + [anon_sym_SEMI] = ACTIONS(7292), + [anon_sym___extension__] = ACTIONS(7290), + [anon_sym_extern] = ACTIONS(7290), + [anon_sym___attribute__] = ACTIONS(7290), + [anon_sym___attribute] = ACTIONS(7290), + [anon_sym_noreturn] = ACTIONS(7290), + [anon_sym_LBRACK] = ACTIONS(7292), + [anon_sym___declspec] = ACTIONS(7290), + [anon_sym___based] = ACTIONS(7290), + [anon_sym_signed] = ACTIONS(7290), + [anon_sym_unsigned] = ACTIONS(7290), + [anon_sym_long] = ACTIONS(7290), + [anon_sym_short] = ACTIONS(7290), + [anon_sym_static] = ACTIONS(7290), + [anon_sym_auto] = ACTIONS(7290), + [anon_sym_register] = ACTIONS(7290), + [anon_sym_inline] = ACTIONS(7290), + [anon_sym___inline] = ACTIONS(7290), + [anon_sym___inline__] = ACTIONS(7290), + [anon_sym___forceinline] = ACTIONS(7290), + [anon_sym_thread_local] = ACTIONS(7290), + [anon_sym___thread] = ACTIONS(7290), + [anon_sym_CG_EXTERN] = ACTIONS(7290), + [anon_sym_CG_INLINE] = ACTIONS(7290), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7290), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7290), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7290), + [anon_sym_IBOutlet] = ACTIONS(7290), + [anon_sym_IBInspectable] = ACTIONS(7290), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7290), + [anon_sym_NS_INLINE] = ACTIONS(7290), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7290), + [anon_sym_OBJC_EXPORT] = ACTIONS(7290), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7290), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7290), + [anon_sym_const] = ACTIONS(7290), + [anon_sym_constexpr] = ACTIONS(7290), + [anon_sym_volatile] = ACTIONS(7290), + [anon_sym_restrict] = ACTIONS(7290), + [anon_sym___restrict__] = ACTIONS(7290), + [anon_sym__Atomic] = ACTIONS(7290), + [anon_sym__Noreturn] = ACTIONS(7290), + [anon_sym__Nonnull] = ACTIONS(7290), + [anon_sym_nullable] = ACTIONS(7290), + [anon_sym__Complex] = ACTIONS(7290), + [anon_sym__Nullable] = ACTIONS(7290), + [anon_sym__Nullable_result] = ACTIONS(7290), + [anon_sym__Null_unspecified] = ACTIONS(7290), + [anon_sym___autoreleasing] = ACTIONS(7290), + [anon_sym___block] = ACTIONS(7290), + [anon_sym___bridge] = ACTIONS(7290), + [anon_sym___bridge_retained] = ACTIONS(7290), + [anon_sym___bridge_transfer] = ACTIONS(7290), + [anon_sym___complex] = ACTIONS(7290), + [anon_sym___const] = ACTIONS(7290), + [anon_sym___imag] = ACTIONS(7290), + [anon_sym___kindof] = ACTIONS(7290), + [anon_sym___nonnull] = ACTIONS(7290), + [anon_sym___nullable] = ACTIONS(7290), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7290), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7290), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7290), + [anon_sym___real] = ACTIONS(7290), + [anon_sym___strong] = ACTIONS(7290), + [anon_sym___unsafe_unretained] = ACTIONS(7290), + [anon_sym___unused] = ACTIONS(7290), + [anon_sym___weak] = ACTIONS(7290), + [anon_sym_alignas] = ACTIONS(7290), + [anon_sym__Alignas] = ACTIONS(7290), + [sym_primitive_type] = ACTIONS(7290), + [anon_sym_enum] = ACTIONS(7290), + [anon_sym_COLON] = ACTIONS(7292), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7290), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7290), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7290), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7290), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7290), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7290), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7290), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7290), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7290), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7290), + [anon_sym_NS_AVAILABLE] = ACTIONS(7290), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7290), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7290), + [anon_sym_API_AVAILABLE] = ACTIONS(7290), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7290), + [anon_sym_API_DEPRECATED] = ACTIONS(7290), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7290), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7290), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7290), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7290), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7290), + [anon_sym___deprecated_msg] = ACTIONS(7290), + [anon_sym___deprecated_enum_msg] = ACTIONS(7290), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7290), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7290), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7290), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7290), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7290), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7290), + }, + [2953] = { + [sym_identifier] = ACTIONS(7294), + [anon_sym_COMMA] = ACTIONS(7296), + [anon_sym_RPAREN] = ACTIONS(7296), + [anon_sym_LPAREN2] = ACTIONS(7296), + [anon_sym_STAR] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7296), + [anon_sym_SEMI] = ACTIONS(7296), + [anon_sym___extension__] = ACTIONS(7294), + [anon_sym_extern] = ACTIONS(7294), + [anon_sym___attribute__] = ACTIONS(7294), + [anon_sym___attribute] = ACTIONS(7294), + [anon_sym_noreturn] = ACTIONS(7294), + [anon_sym_LBRACK] = ACTIONS(7296), + [anon_sym___declspec] = ACTIONS(7294), + [anon_sym___based] = ACTIONS(7294), + [anon_sym_signed] = ACTIONS(7294), + [anon_sym_unsigned] = ACTIONS(7294), + [anon_sym_long] = ACTIONS(7294), + [anon_sym_short] = ACTIONS(7294), + [anon_sym_static] = ACTIONS(7294), + [anon_sym_auto] = ACTIONS(7294), + [anon_sym_register] = ACTIONS(7294), + [anon_sym_inline] = ACTIONS(7294), + [anon_sym___inline] = ACTIONS(7294), + [anon_sym___inline__] = ACTIONS(7294), + [anon_sym___forceinline] = ACTIONS(7294), + [anon_sym_thread_local] = ACTIONS(7294), + [anon_sym___thread] = ACTIONS(7294), + [anon_sym_CG_EXTERN] = ACTIONS(7294), + [anon_sym_CG_INLINE] = ACTIONS(7294), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7294), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7294), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7294), + [anon_sym_IBOutlet] = ACTIONS(7294), + [anon_sym_IBInspectable] = ACTIONS(7294), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7294), + [anon_sym_NS_INLINE] = ACTIONS(7294), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7294), + [anon_sym_OBJC_EXPORT] = ACTIONS(7294), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7294), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7294), + [anon_sym_const] = ACTIONS(7294), + [anon_sym_constexpr] = ACTIONS(7294), + [anon_sym_volatile] = ACTIONS(7294), + [anon_sym_restrict] = ACTIONS(7294), + [anon_sym___restrict__] = ACTIONS(7294), + [anon_sym__Atomic] = ACTIONS(7294), + [anon_sym__Noreturn] = ACTIONS(7294), + [anon_sym__Nonnull] = ACTIONS(7294), + [anon_sym_nullable] = ACTIONS(7294), + [anon_sym__Complex] = ACTIONS(7294), + [anon_sym__Nullable] = ACTIONS(7294), + [anon_sym__Nullable_result] = ACTIONS(7294), + [anon_sym__Null_unspecified] = ACTIONS(7294), + [anon_sym___autoreleasing] = ACTIONS(7294), + [anon_sym___block] = ACTIONS(7294), + [anon_sym___bridge] = ACTIONS(7294), + [anon_sym___bridge_retained] = ACTIONS(7294), + [anon_sym___bridge_transfer] = ACTIONS(7294), + [anon_sym___complex] = ACTIONS(7294), + [anon_sym___const] = ACTIONS(7294), + [anon_sym___imag] = ACTIONS(7294), + [anon_sym___kindof] = ACTIONS(7294), + [anon_sym___nonnull] = ACTIONS(7294), + [anon_sym___nullable] = ACTIONS(7294), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7294), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7294), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7294), + [anon_sym___real] = ACTIONS(7294), + [anon_sym___strong] = ACTIONS(7294), + [anon_sym___unsafe_unretained] = ACTIONS(7294), + [anon_sym___unused] = ACTIONS(7294), + [anon_sym___weak] = ACTIONS(7294), + [anon_sym_alignas] = ACTIONS(7294), + [anon_sym__Alignas] = ACTIONS(7294), + [sym_primitive_type] = ACTIONS(7294), + [anon_sym_enum] = ACTIONS(7294), + [anon_sym_COLON] = ACTIONS(7296), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7294), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7294), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7294), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7294), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7294), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7294), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7294), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7294), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7294), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7294), + [anon_sym_NS_AVAILABLE] = ACTIONS(7294), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7294), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7294), + [anon_sym_API_AVAILABLE] = ACTIONS(7294), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7294), + [anon_sym_API_DEPRECATED] = ACTIONS(7294), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7294), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7294), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7294), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7294), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7294), + [anon_sym___deprecated_msg] = ACTIONS(7294), + [anon_sym___deprecated_enum_msg] = ACTIONS(7294), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7294), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7294), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7294), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7294), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7294), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7294), + }, + [2954] = { + [sym_identifier] = ACTIONS(7298), + [anon_sym_COMMA] = ACTIONS(7300), + [anon_sym_RPAREN] = ACTIONS(7300), + [anon_sym_LPAREN2] = ACTIONS(7300), + [anon_sym_STAR] = ACTIONS(7300), + [anon_sym_CARET] = ACTIONS(7300), + [anon_sym_SEMI] = ACTIONS(7300), + [anon_sym___extension__] = ACTIONS(7298), + [anon_sym_extern] = ACTIONS(7298), + [anon_sym___attribute__] = ACTIONS(7298), + [anon_sym___attribute] = ACTIONS(7298), + [anon_sym_noreturn] = ACTIONS(7298), + [anon_sym_LBRACK] = ACTIONS(7300), + [anon_sym___declspec] = ACTIONS(7298), + [anon_sym___based] = ACTIONS(7298), + [anon_sym_signed] = ACTIONS(7298), + [anon_sym_unsigned] = ACTIONS(7298), + [anon_sym_long] = ACTIONS(7298), + [anon_sym_short] = ACTIONS(7298), + [anon_sym_static] = ACTIONS(7298), + [anon_sym_auto] = ACTIONS(7298), + [anon_sym_register] = ACTIONS(7298), + [anon_sym_inline] = ACTIONS(7298), + [anon_sym___inline] = ACTIONS(7298), + [anon_sym___inline__] = ACTIONS(7298), + [anon_sym___forceinline] = ACTIONS(7298), + [anon_sym_thread_local] = ACTIONS(7298), + [anon_sym___thread] = ACTIONS(7298), + [anon_sym_CG_EXTERN] = ACTIONS(7298), + [anon_sym_CG_INLINE] = ACTIONS(7298), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7298), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7298), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7298), + [anon_sym_IBOutlet] = ACTIONS(7298), + [anon_sym_IBInspectable] = ACTIONS(7298), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7298), + [anon_sym_NS_INLINE] = ACTIONS(7298), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7298), + [anon_sym_OBJC_EXPORT] = ACTIONS(7298), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7298), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7298), + [anon_sym_const] = ACTIONS(7298), + [anon_sym_constexpr] = ACTIONS(7298), + [anon_sym_volatile] = ACTIONS(7298), + [anon_sym_restrict] = ACTIONS(7298), + [anon_sym___restrict__] = ACTIONS(7298), + [anon_sym__Atomic] = ACTIONS(7298), + [anon_sym__Noreturn] = ACTIONS(7298), + [anon_sym__Nonnull] = ACTIONS(7298), + [anon_sym_nullable] = ACTIONS(7298), + [anon_sym__Complex] = ACTIONS(7298), + [anon_sym__Nullable] = ACTIONS(7298), + [anon_sym__Nullable_result] = ACTIONS(7298), + [anon_sym__Null_unspecified] = ACTIONS(7298), + [anon_sym___autoreleasing] = ACTIONS(7298), + [anon_sym___block] = ACTIONS(7298), + [anon_sym___bridge] = ACTIONS(7298), + [anon_sym___bridge_retained] = ACTIONS(7298), + [anon_sym___bridge_transfer] = ACTIONS(7298), + [anon_sym___complex] = ACTIONS(7298), + [anon_sym___const] = ACTIONS(7298), + [anon_sym___imag] = ACTIONS(7298), + [anon_sym___kindof] = ACTIONS(7298), + [anon_sym___nonnull] = ACTIONS(7298), + [anon_sym___nullable] = ACTIONS(7298), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7298), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7298), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7298), + [anon_sym___real] = ACTIONS(7298), + [anon_sym___strong] = ACTIONS(7298), + [anon_sym___unsafe_unretained] = ACTIONS(7298), + [anon_sym___unused] = ACTIONS(7298), + [anon_sym___weak] = ACTIONS(7298), + [anon_sym_alignas] = ACTIONS(7298), + [anon_sym__Alignas] = ACTIONS(7298), + [sym_primitive_type] = ACTIONS(7298), + [anon_sym_enum] = ACTIONS(7298), + [anon_sym_COLON] = ACTIONS(7300), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7298), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7298), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7298), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7298), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7298), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7298), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7298), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7298), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7298), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7298), + [anon_sym_NS_AVAILABLE] = ACTIONS(7298), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7298), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7298), + [anon_sym_API_AVAILABLE] = ACTIONS(7298), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7298), + [anon_sym_API_DEPRECATED] = ACTIONS(7298), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7298), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7298), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7298), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7298), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7298), + [anon_sym___deprecated_msg] = ACTIONS(7298), + [anon_sym___deprecated_enum_msg] = ACTIONS(7298), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7298), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7298), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7298), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7298), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7298), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7298), + }, + [2955] = { + [sym_identifier] = ACTIONS(7302), + [anon_sym_COMMA] = ACTIONS(7304), + [anon_sym_RPAREN] = ACTIONS(7304), + [anon_sym_LPAREN2] = ACTIONS(7304), + [anon_sym_STAR] = ACTIONS(7304), + [anon_sym_CARET] = ACTIONS(7304), + [anon_sym_SEMI] = ACTIONS(7304), + [anon_sym___extension__] = ACTIONS(7302), + [anon_sym_extern] = ACTIONS(7302), + [anon_sym___attribute__] = ACTIONS(7302), + [anon_sym___attribute] = ACTIONS(7302), + [anon_sym_noreturn] = ACTIONS(7302), + [anon_sym_LBRACK] = ACTIONS(7304), + [anon_sym___declspec] = ACTIONS(7302), + [anon_sym___based] = ACTIONS(7302), + [anon_sym_signed] = ACTIONS(7302), + [anon_sym_unsigned] = ACTIONS(7302), + [anon_sym_long] = ACTIONS(7302), + [anon_sym_short] = ACTIONS(7302), + [anon_sym_static] = ACTIONS(7302), + [anon_sym_auto] = ACTIONS(7302), + [anon_sym_register] = ACTIONS(7302), + [anon_sym_inline] = ACTIONS(7302), + [anon_sym___inline] = ACTIONS(7302), + [anon_sym___inline__] = ACTIONS(7302), + [anon_sym___forceinline] = ACTIONS(7302), + [anon_sym_thread_local] = ACTIONS(7302), + [anon_sym___thread] = ACTIONS(7302), + [anon_sym_CG_EXTERN] = ACTIONS(7302), + [anon_sym_CG_INLINE] = ACTIONS(7302), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7302), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7302), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7302), + [anon_sym_IBOutlet] = ACTIONS(7302), + [anon_sym_IBInspectable] = ACTIONS(7302), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7302), + [anon_sym_NS_INLINE] = ACTIONS(7302), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7302), + [anon_sym_OBJC_EXPORT] = ACTIONS(7302), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7302), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7302), + [anon_sym_const] = ACTIONS(7302), + [anon_sym_constexpr] = ACTIONS(7302), + [anon_sym_volatile] = ACTIONS(7302), + [anon_sym_restrict] = ACTIONS(7302), + [anon_sym___restrict__] = ACTIONS(7302), + [anon_sym__Atomic] = ACTIONS(7302), + [anon_sym__Noreturn] = ACTIONS(7302), + [anon_sym__Nonnull] = ACTIONS(7302), + [anon_sym_nullable] = ACTIONS(7302), + [anon_sym__Complex] = ACTIONS(7302), + [anon_sym__Nullable] = ACTIONS(7302), + [anon_sym__Nullable_result] = ACTIONS(7302), + [anon_sym__Null_unspecified] = ACTIONS(7302), + [anon_sym___autoreleasing] = ACTIONS(7302), + [anon_sym___block] = ACTIONS(7302), + [anon_sym___bridge] = ACTIONS(7302), + [anon_sym___bridge_retained] = ACTIONS(7302), + [anon_sym___bridge_transfer] = ACTIONS(7302), + [anon_sym___complex] = ACTIONS(7302), + [anon_sym___const] = ACTIONS(7302), + [anon_sym___imag] = ACTIONS(7302), + [anon_sym___kindof] = ACTIONS(7302), + [anon_sym___nonnull] = ACTIONS(7302), + [anon_sym___nullable] = ACTIONS(7302), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7302), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7302), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7302), + [anon_sym___real] = ACTIONS(7302), + [anon_sym___strong] = ACTIONS(7302), + [anon_sym___unsafe_unretained] = ACTIONS(7302), + [anon_sym___unused] = ACTIONS(7302), + [anon_sym___weak] = ACTIONS(7302), + [anon_sym_alignas] = ACTIONS(7302), + [anon_sym__Alignas] = ACTIONS(7302), + [sym_primitive_type] = ACTIONS(7302), + [anon_sym_enum] = ACTIONS(7302), + [anon_sym_COLON] = ACTIONS(7304), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7302), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7302), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7302), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7302), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7302), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7302), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7302), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7302), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7302), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7302), + [anon_sym_NS_AVAILABLE] = ACTIONS(7302), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7302), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7302), + [anon_sym_API_AVAILABLE] = ACTIONS(7302), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7302), + [anon_sym_API_DEPRECATED] = ACTIONS(7302), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7302), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7302), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7302), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7302), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7302), + [anon_sym___deprecated_msg] = ACTIONS(7302), + [anon_sym___deprecated_enum_msg] = ACTIONS(7302), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7302), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7302), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7302), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7302), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7302), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7302), + }, + [2956] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2930), + [sym_identifier] = ACTIONS(7306), + [anon_sym_COMMA] = ACTIONS(7308), + [anon_sym_RPAREN] = ACTIONS(7308), + [anon_sym_LPAREN2] = ACTIONS(7308), + [anon_sym_STAR] = ACTIONS(7308), + [anon_sym_CARET] = ACTIONS(7308), + [anon_sym_SEMI] = ACTIONS(7308), + [anon_sym___extension__] = ACTIONS(7306), + [anon_sym_extern] = ACTIONS(7306), + [anon_sym___attribute__] = ACTIONS(7306), + [anon_sym___attribute] = ACTIONS(7306), + [anon_sym_noreturn] = ACTIONS(7306), + [anon_sym_LBRACK] = ACTIONS(7308), + [anon_sym___declspec] = ACTIONS(7306), + [anon_sym___based] = ACTIONS(7306), + [anon_sym_signed] = ACTIONS(7310), + [anon_sym_unsigned] = ACTIONS(7310), + [anon_sym_long] = ACTIONS(7310), + [anon_sym_short] = ACTIONS(7310), + [anon_sym_static] = ACTIONS(7306), + [anon_sym_auto] = ACTIONS(7306), + [anon_sym_register] = ACTIONS(7306), + [anon_sym_inline] = ACTIONS(7306), + [anon_sym___inline] = ACTIONS(7306), + [anon_sym___inline__] = ACTIONS(7306), + [anon_sym___forceinline] = ACTIONS(7306), + [anon_sym_thread_local] = ACTIONS(7306), + [anon_sym___thread] = ACTIONS(7306), + [anon_sym_CG_EXTERN] = ACTIONS(7306), + [anon_sym_CG_INLINE] = ACTIONS(7306), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7306), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7306), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7306), + [anon_sym_IBOutlet] = ACTIONS(7306), + [anon_sym_IBInspectable] = ACTIONS(7306), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7306), + [anon_sym_NS_INLINE] = ACTIONS(7306), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7306), + [anon_sym_OBJC_EXPORT] = ACTIONS(7306), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7306), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7306), + [anon_sym_const] = ACTIONS(7306), + [anon_sym_constexpr] = ACTIONS(7306), + [anon_sym_volatile] = ACTIONS(7306), + [anon_sym_restrict] = ACTIONS(7306), + [anon_sym___restrict__] = ACTIONS(7306), + [anon_sym__Atomic] = ACTIONS(7306), + [anon_sym__Noreturn] = ACTIONS(7306), + [anon_sym__Nonnull] = ACTIONS(7306), + [anon_sym_nullable] = ACTIONS(7306), + [anon_sym__Complex] = ACTIONS(7306), + [anon_sym__Nullable] = ACTIONS(7306), + [anon_sym__Nullable_result] = ACTIONS(7306), + [anon_sym__Null_unspecified] = ACTIONS(7306), + [anon_sym___autoreleasing] = ACTIONS(7306), + [anon_sym___block] = ACTIONS(7306), + [anon_sym___bridge] = ACTIONS(7306), + [anon_sym___bridge_retained] = ACTIONS(7306), + [anon_sym___bridge_transfer] = ACTIONS(7306), + [anon_sym___complex] = ACTIONS(7306), + [anon_sym___const] = ACTIONS(7306), + [anon_sym___imag] = ACTIONS(7306), + [anon_sym___kindof] = ACTIONS(7306), + [anon_sym___nonnull] = ACTIONS(7306), + [anon_sym___nullable] = ACTIONS(7306), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7306), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7306), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7306), + [anon_sym___real] = ACTIONS(7306), + [anon_sym___strong] = ACTIONS(7306), + [anon_sym___unsafe_unretained] = ACTIONS(7306), + [anon_sym___unused] = ACTIONS(7306), + [anon_sym___weak] = ACTIONS(7306), + [anon_sym_alignas] = ACTIONS(7306), + [anon_sym__Alignas] = ACTIONS(7306), + [anon_sym_enum] = ACTIONS(7306), + [anon_sym_COLON] = ACTIONS(7308), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7306), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7306), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7306), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7306), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7306), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7306), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7306), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7306), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7306), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7306), + [anon_sym_NS_AVAILABLE] = ACTIONS(7306), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7306), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7306), + [anon_sym_API_AVAILABLE] = ACTIONS(7306), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7306), + [anon_sym_API_DEPRECATED] = ACTIONS(7306), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7306), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7306), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7306), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7306), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7306), + [anon_sym___deprecated_msg] = ACTIONS(7306), + [anon_sym___deprecated_enum_msg] = ACTIONS(7306), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7306), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7306), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7306), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7306), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7306), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7306), + }, + [2957] = { + [sym_identifier] = ACTIONS(7312), + [anon_sym_COMMA] = ACTIONS(7314), + [anon_sym_RPAREN] = ACTIONS(7314), + [anon_sym_LPAREN2] = ACTIONS(7314), + [anon_sym_STAR] = ACTIONS(7314), + [anon_sym_CARET] = ACTIONS(7314), + [anon_sym_SEMI] = ACTIONS(7314), + [anon_sym___extension__] = ACTIONS(7312), + [anon_sym_extern] = ACTIONS(7312), + [anon_sym___attribute__] = ACTIONS(7312), + [anon_sym___attribute] = ACTIONS(7312), + [anon_sym_noreturn] = ACTIONS(7312), + [anon_sym_LBRACK] = ACTIONS(7314), + [anon_sym___declspec] = ACTIONS(7312), + [anon_sym___based] = ACTIONS(7312), + [anon_sym_signed] = ACTIONS(7312), + [anon_sym_unsigned] = ACTIONS(7312), + [anon_sym_long] = ACTIONS(7312), + [anon_sym_short] = ACTIONS(7312), + [anon_sym_static] = ACTIONS(7312), + [anon_sym_auto] = ACTIONS(7312), + [anon_sym_register] = ACTIONS(7312), + [anon_sym_inline] = ACTIONS(7312), + [anon_sym___inline] = ACTIONS(7312), + [anon_sym___inline__] = ACTIONS(7312), + [anon_sym___forceinline] = ACTIONS(7312), + [anon_sym_thread_local] = ACTIONS(7312), + [anon_sym___thread] = ACTIONS(7312), + [anon_sym_CG_EXTERN] = ACTIONS(7312), + [anon_sym_CG_INLINE] = ACTIONS(7312), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7312), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7312), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7312), + [anon_sym_IBOutlet] = ACTIONS(7312), + [anon_sym_IBInspectable] = ACTIONS(7312), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7312), + [anon_sym_NS_INLINE] = ACTIONS(7312), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7312), + [anon_sym_OBJC_EXPORT] = ACTIONS(7312), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7312), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7312), + [anon_sym_const] = ACTIONS(7312), + [anon_sym_constexpr] = ACTIONS(7312), + [anon_sym_volatile] = ACTIONS(7312), + [anon_sym_restrict] = ACTIONS(7312), + [anon_sym___restrict__] = ACTIONS(7312), + [anon_sym__Atomic] = ACTIONS(7312), + [anon_sym__Noreturn] = ACTIONS(7312), + [anon_sym__Nonnull] = ACTIONS(7312), + [anon_sym_nullable] = ACTIONS(7312), + [anon_sym__Complex] = ACTIONS(7312), + [anon_sym__Nullable] = ACTIONS(7312), + [anon_sym__Nullable_result] = ACTIONS(7312), + [anon_sym__Null_unspecified] = ACTIONS(7312), + [anon_sym___autoreleasing] = ACTIONS(7312), + [anon_sym___block] = ACTIONS(7312), + [anon_sym___bridge] = ACTIONS(7312), + [anon_sym___bridge_retained] = ACTIONS(7312), + [anon_sym___bridge_transfer] = ACTIONS(7312), + [anon_sym___complex] = ACTIONS(7312), + [anon_sym___const] = ACTIONS(7312), + [anon_sym___imag] = ACTIONS(7312), + [anon_sym___kindof] = ACTIONS(7312), + [anon_sym___nonnull] = ACTIONS(7312), + [anon_sym___nullable] = ACTIONS(7312), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7312), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7312), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7312), + [anon_sym___real] = ACTIONS(7312), + [anon_sym___strong] = ACTIONS(7312), + [anon_sym___unsafe_unretained] = ACTIONS(7312), + [anon_sym___unused] = ACTIONS(7312), + [anon_sym___weak] = ACTIONS(7312), + [anon_sym_alignas] = ACTIONS(7312), + [anon_sym__Alignas] = ACTIONS(7312), + [sym_primitive_type] = ACTIONS(7312), + [anon_sym_enum] = ACTIONS(7312), + [anon_sym_COLON] = ACTIONS(7314), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7312), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7312), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7312), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7312), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7312), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7312), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7312), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7312), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7312), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7312), + [anon_sym_NS_AVAILABLE] = ACTIONS(7312), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7312), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7312), + [anon_sym_API_AVAILABLE] = ACTIONS(7312), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7312), + [anon_sym_API_DEPRECATED] = ACTIONS(7312), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7312), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7312), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7312), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7312), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7312), + [anon_sym___deprecated_msg] = ACTIONS(7312), + [anon_sym___deprecated_enum_msg] = ACTIONS(7312), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7312), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7312), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7312), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7312), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7312), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7312), + }, + [2958] = { + [sym__declaration_modifiers] = STATE(2875), + [sym_attribute_specifier] = STATE(2875), + [sym_attribute_declaration] = STATE(2875), + [sym_ms_declspec_modifier] = STATE(2875), + [sym_storage_class_specifier] = STATE(2875), + [sym_type_qualifier] = STATE(2875), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2875), + [aux_sym__declaration_specifiers_repeat1] = STATE(2875), + [sym_identifier] = ACTIONS(7059), + [anon_sym_LPAREN2] = ACTIONS(7061), + [anon_sym_STAR] = ACTIONS(7061), + [anon_sym_CARET] = ACTIONS(7061), + [anon_sym_SEMI] = ACTIONS(7316), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(7011), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(7059), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2959] = { + [sym_identifier] = ACTIONS(7318), + [anon_sym_COMMA] = ACTIONS(7320), + [anon_sym_RPAREN] = ACTIONS(7320), + [anon_sym_LPAREN2] = ACTIONS(7320), + [anon_sym_STAR] = ACTIONS(7320), + [anon_sym_CARET] = ACTIONS(7320), + [anon_sym_SEMI] = ACTIONS(7320), + [anon_sym___extension__] = ACTIONS(7318), + [anon_sym_extern] = ACTIONS(7318), + [anon_sym___attribute__] = ACTIONS(7318), + [anon_sym___attribute] = ACTIONS(7318), + [anon_sym_noreturn] = ACTIONS(7318), + [anon_sym_LBRACK] = ACTIONS(7320), + [anon_sym___declspec] = ACTIONS(7318), + [anon_sym___based] = ACTIONS(7318), + [anon_sym_signed] = ACTIONS(7318), + [anon_sym_unsigned] = ACTIONS(7318), + [anon_sym_long] = ACTIONS(7318), + [anon_sym_short] = ACTIONS(7318), + [anon_sym_static] = ACTIONS(7318), + [anon_sym_auto] = ACTIONS(7318), + [anon_sym_register] = ACTIONS(7318), + [anon_sym_inline] = ACTIONS(7318), + [anon_sym___inline] = ACTIONS(7318), + [anon_sym___inline__] = ACTIONS(7318), + [anon_sym___forceinline] = ACTIONS(7318), + [anon_sym_thread_local] = ACTIONS(7318), + [anon_sym___thread] = ACTIONS(7318), + [anon_sym_CG_EXTERN] = ACTIONS(7318), + [anon_sym_CG_INLINE] = ACTIONS(7318), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7318), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7318), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7318), + [anon_sym_IBOutlet] = ACTIONS(7318), + [anon_sym_IBInspectable] = ACTIONS(7318), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7318), + [anon_sym_NS_INLINE] = ACTIONS(7318), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7318), + [anon_sym_OBJC_EXPORT] = ACTIONS(7318), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7318), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7318), + [anon_sym_const] = ACTIONS(7318), + [anon_sym_constexpr] = ACTIONS(7318), + [anon_sym_volatile] = ACTIONS(7318), + [anon_sym_restrict] = ACTIONS(7318), + [anon_sym___restrict__] = ACTIONS(7318), + [anon_sym__Atomic] = ACTIONS(7318), + [anon_sym__Noreturn] = ACTIONS(7318), + [anon_sym__Nonnull] = ACTIONS(7318), + [anon_sym_nullable] = ACTIONS(7318), + [anon_sym__Complex] = ACTIONS(7318), + [anon_sym__Nullable] = ACTIONS(7318), + [anon_sym__Nullable_result] = ACTIONS(7318), + [anon_sym__Null_unspecified] = ACTIONS(7318), + [anon_sym___autoreleasing] = ACTIONS(7318), + [anon_sym___block] = ACTIONS(7318), + [anon_sym___bridge] = ACTIONS(7318), + [anon_sym___bridge_retained] = ACTIONS(7318), + [anon_sym___bridge_transfer] = ACTIONS(7318), + [anon_sym___complex] = ACTIONS(7318), + [anon_sym___const] = ACTIONS(7318), + [anon_sym___imag] = ACTIONS(7318), + [anon_sym___kindof] = ACTIONS(7318), + [anon_sym___nonnull] = ACTIONS(7318), + [anon_sym___nullable] = ACTIONS(7318), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7318), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7318), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7318), + [anon_sym___real] = ACTIONS(7318), + [anon_sym___strong] = ACTIONS(7318), + [anon_sym___unsafe_unretained] = ACTIONS(7318), + [anon_sym___unused] = ACTIONS(7318), + [anon_sym___weak] = ACTIONS(7318), + [anon_sym_alignas] = ACTIONS(7318), + [anon_sym__Alignas] = ACTIONS(7318), + [sym_primitive_type] = ACTIONS(7318), + [anon_sym_enum] = ACTIONS(7318), + [anon_sym_COLON] = ACTIONS(7320), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7318), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7318), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7318), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7318), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7318), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7318), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7318), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7318), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7318), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7318), + [anon_sym_NS_AVAILABLE] = ACTIONS(7318), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7318), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7318), + [anon_sym_API_AVAILABLE] = ACTIONS(7318), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7318), + [anon_sym_API_DEPRECATED] = ACTIONS(7318), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7318), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7318), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7318), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7318), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7318), + [anon_sym___deprecated_msg] = ACTIONS(7318), + [anon_sym___deprecated_enum_msg] = ACTIONS(7318), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7318), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7318), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7318), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7318), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7318), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7318), + }, + [2960] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2930), + [sym_identifier] = ACTIONS(7322), + [anon_sym_COMMA] = ACTIONS(7324), + [anon_sym_RPAREN] = ACTIONS(7324), + [anon_sym_LPAREN2] = ACTIONS(7324), + [anon_sym_STAR] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(7324), + [anon_sym_SEMI] = ACTIONS(7324), + [anon_sym___extension__] = ACTIONS(7322), + [anon_sym_extern] = ACTIONS(7322), + [anon_sym___attribute__] = ACTIONS(7322), + [anon_sym___attribute] = ACTIONS(7322), + [anon_sym_noreturn] = ACTIONS(7322), + [anon_sym_LBRACK] = ACTIONS(7324), + [anon_sym___declspec] = ACTIONS(7322), + [anon_sym___based] = ACTIONS(7322), + [anon_sym_signed] = ACTIONS(7310), + [anon_sym_unsigned] = ACTIONS(7310), + [anon_sym_long] = ACTIONS(7310), + [anon_sym_short] = ACTIONS(7310), + [anon_sym_static] = ACTIONS(7322), + [anon_sym_auto] = ACTIONS(7322), + [anon_sym_register] = ACTIONS(7322), + [anon_sym_inline] = ACTIONS(7322), + [anon_sym___inline] = ACTIONS(7322), + [anon_sym___inline__] = ACTIONS(7322), + [anon_sym___forceinline] = ACTIONS(7322), + [anon_sym_thread_local] = ACTIONS(7322), + [anon_sym___thread] = ACTIONS(7322), + [anon_sym_CG_EXTERN] = ACTIONS(7322), + [anon_sym_CG_INLINE] = ACTIONS(7322), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7322), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7322), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7322), + [anon_sym_IBOutlet] = ACTIONS(7322), + [anon_sym_IBInspectable] = ACTIONS(7322), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7322), + [anon_sym_NS_INLINE] = ACTIONS(7322), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7322), + [anon_sym_OBJC_EXPORT] = ACTIONS(7322), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7322), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7322), + [anon_sym_const] = ACTIONS(7322), + [anon_sym_constexpr] = ACTIONS(7322), + [anon_sym_volatile] = ACTIONS(7322), + [anon_sym_restrict] = ACTIONS(7322), + [anon_sym___restrict__] = ACTIONS(7322), + [anon_sym__Atomic] = ACTIONS(7322), + [anon_sym__Noreturn] = ACTIONS(7322), + [anon_sym__Nonnull] = ACTIONS(7322), + [anon_sym_nullable] = ACTIONS(7322), + [anon_sym__Complex] = ACTIONS(7322), + [anon_sym__Nullable] = ACTIONS(7322), + [anon_sym__Nullable_result] = ACTIONS(7322), + [anon_sym__Null_unspecified] = ACTIONS(7322), + [anon_sym___autoreleasing] = ACTIONS(7322), + [anon_sym___block] = ACTIONS(7322), + [anon_sym___bridge] = ACTIONS(7322), + [anon_sym___bridge_retained] = ACTIONS(7322), + [anon_sym___bridge_transfer] = ACTIONS(7322), + [anon_sym___complex] = ACTIONS(7322), + [anon_sym___const] = ACTIONS(7322), + [anon_sym___imag] = ACTIONS(7322), + [anon_sym___kindof] = ACTIONS(7322), + [anon_sym___nonnull] = ACTIONS(7322), + [anon_sym___nullable] = ACTIONS(7322), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7322), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7322), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7322), + [anon_sym___real] = ACTIONS(7322), + [anon_sym___strong] = ACTIONS(7322), + [anon_sym___unsafe_unretained] = ACTIONS(7322), + [anon_sym___unused] = ACTIONS(7322), + [anon_sym___weak] = ACTIONS(7322), + [anon_sym_alignas] = ACTIONS(7322), + [anon_sym__Alignas] = ACTIONS(7322), + [anon_sym_enum] = ACTIONS(7322), + [anon_sym_COLON] = ACTIONS(7324), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7322), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7322), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7322), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7322), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7322), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7322), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7322), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7322), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7322), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7322), + [anon_sym_NS_AVAILABLE] = ACTIONS(7322), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7322), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7322), + [anon_sym_API_AVAILABLE] = ACTIONS(7322), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7322), + [anon_sym_API_DEPRECATED] = ACTIONS(7322), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7322), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7322), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7322), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7322), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7322), + [anon_sym___deprecated_msg] = ACTIONS(7322), + [anon_sym___deprecated_enum_msg] = ACTIONS(7322), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7322), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7322), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7322), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7322), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7322), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7322), + }, + [2961] = { + [sym_identifier] = ACTIONS(7326), + [anon_sym_COMMA] = ACTIONS(7328), + [anon_sym_RPAREN] = ACTIONS(7328), + [anon_sym_LPAREN2] = ACTIONS(7328), + [anon_sym_STAR] = ACTIONS(7328), + [anon_sym_CARET] = ACTIONS(7328), + [anon_sym_SEMI] = ACTIONS(7328), + [anon_sym___extension__] = ACTIONS(7326), + [anon_sym_extern] = ACTIONS(7326), + [anon_sym___attribute__] = ACTIONS(7326), + [anon_sym___attribute] = ACTIONS(7326), + [anon_sym_noreturn] = ACTIONS(7326), + [anon_sym_LBRACK] = ACTIONS(7328), + [anon_sym___declspec] = ACTIONS(7326), + [anon_sym___based] = ACTIONS(7326), + [anon_sym_signed] = ACTIONS(7326), + [anon_sym_unsigned] = ACTIONS(7326), + [anon_sym_long] = ACTIONS(7326), + [anon_sym_short] = ACTIONS(7326), + [anon_sym_static] = ACTIONS(7326), + [anon_sym_auto] = ACTIONS(7326), + [anon_sym_register] = ACTIONS(7326), + [anon_sym_inline] = ACTIONS(7326), + [anon_sym___inline] = ACTIONS(7326), + [anon_sym___inline__] = ACTIONS(7326), + [anon_sym___forceinline] = ACTIONS(7326), + [anon_sym_thread_local] = ACTIONS(7326), + [anon_sym___thread] = ACTIONS(7326), + [anon_sym_CG_EXTERN] = ACTIONS(7326), + [anon_sym_CG_INLINE] = ACTIONS(7326), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7326), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7326), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7326), + [anon_sym_IBOutlet] = ACTIONS(7326), + [anon_sym_IBInspectable] = ACTIONS(7326), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7326), + [anon_sym_NS_INLINE] = ACTIONS(7326), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7326), + [anon_sym_OBJC_EXPORT] = ACTIONS(7326), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7326), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7326), + [anon_sym_const] = ACTIONS(7326), + [anon_sym_constexpr] = ACTIONS(7326), + [anon_sym_volatile] = ACTIONS(7326), + [anon_sym_restrict] = ACTIONS(7326), + [anon_sym___restrict__] = ACTIONS(7326), + [anon_sym__Atomic] = ACTIONS(7326), + [anon_sym__Noreturn] = ACTIONS(7326), + [anon_sym__Nonnull] = ACTIONS(7326), + [anon_sym_nullable] = ACTIONS(7326), + [anon_sym__Complex] = ACTIONS(7326), + [anon_sym__Nullable] = ACTIONS(7326), + [anon_sym__Nullable_result] = ACTIONS(7326), + [anon_sym__Null_unspecified] = ACTIONS(7326), + [anon_sym___autoreleasing] = ACTIONS(7326), + [anon_sym___block] = ACTIONS(7326), + [anon_sym___bridge] = ACTIONS(7326), + [anon_sym___bridge_retained] = ACTIONS(7326), + [anon_sym___bridge_transfer] = ACTIONS(7326), + [anon_sym___complex] = ACTIONS(7326), + [anon_sym___const] = ACTIONS(7326), + [anon_sym___imag] = ACTIONS(7326), + [anon_sym___kindof] = ACTIONS(7326), + [anon_sym___nonnull] = ACTIONS(7326), + [anon_sym___nullable] = ACTIONS(7326), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7326), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7326), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7326), + [anon_sym___real] = ACTIONS(7326), + [anon_sym___strong] = ACTIONS(7326), + [anon_sym___unsafe_unretained] = ACTIONS(7326), + [anon_sym___unused] = ACTIONS(7326), + [anon_sym___weak] = ACTIONS(7326), + [anon_sym_alignas] = ACTIONS(7326), + [anon_sym__Alignas] = ACTIONS(7326), + [sym_primitive_type] = ACTIONS(7326), + [anon_sym_enum] = ACTIONS(7326), + [anon_sym_COLON] = ACTIONS(7328), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7326), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7326), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7326), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7326), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7326), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7326), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7326), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7326), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7326), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7326), + [anon_sym_NS_AVAILABLE] = ACTIONS(7326), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7326), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7326), + [anon_sym_API_AVAILABLE] = ACTIONS(7326), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7326), + [anon_sym_API_DEPRECATED] = ACTIONS(7326), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7326), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7326), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7326), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7326), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7326), + [anon_sym___deprecated_msg] = ACTIONS(7326), + [anon_sym___deprecated_enum_msg] = ACTIONS(7326), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7326), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7326), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7326), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7326), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7326), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7326), + }, + [2962] = { + [sym_identifier] = ACTIONS(7330), + [anon_sym_COMMA] = ACTIONS(7332), + [anon_sym_RPAREN] = ACTIONS(7332), + [anon_sym_LPAREN2] = ACTIONS(7332), + [anon_sym_STAR] = ACTIONS(7332), + [anon_sym_CARET] = ACTIONS(7332), + [anon_sym_SEMI] = ACTIONS(7332), + [anon_sym___extension__] = ACTIONS(7330), + [anon_sym_extern] = ACTIONS(7330), + [anon_sym___attribute__] = ACTIONS(7330), + [anon_sym___attribute] = ACTIONS(7330), + [anon_sym_noreturn] = ACTIONS(7330), + [anon_sym_LBRACK] = ACTIONS(7332), + [anon_sym___declspec] = ACTIONS(7330), + [anon_sym___based] = ACTIONS(7330), + [anon_sym_signed] = ACTIONS(7330), + [anon_sym_unsigned] = ACTIONS(7330), + [anon_sym_long] = ACTIONS(7330), + [anon_sym_short] = ACTIONS(7330), + [anon_sym_static] = ACTIONS(7330), + [anon_sym_auto] = ACTIONS(7330), + [anon_sym_register] = ACTIONS(7330), + [anon_sym_inline] = ACTIONS(7330), + [anon_sym___inline] = ACTIONS(7330), + [anon_sym___inline__] = ACTIONS(7330), + [anon_sym___forceinline] = ACTIONS(7330), + [anon_sym_thread_local] = ACTIONS(7330), + [anon_sym___thread] = ACTIONS(7330), + [anon_sym_CG_EXTERN] = ACTIONS(7330), + [anon_sym_CG_INLINE] = ACTIONS(7330), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7330), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7330), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7330), + [anon_sym_IBOutlet] = ACTIONS(7330), + [anon_sym_IBInspectable] = ACTIONS(7330), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7330), + [anon_sym_NS_INLINE] = ACTIONS(7330), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7330), + [anon_sym_OBJC_EXPORT] = ACTIONS(7330), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7330), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7330), + [anon_sym_const] = ACTIONS(7330), + [anon_sym_constexpr] = ACTIONS(7330), + [anon_sym_volatile] = ACTIONS(7330), + [anon_sym_restrict] = ACTIONS(7330), + [anon_sym___restrict__] = ACTIONS(7330), + [anon_sym__Atomic] = ACTIONS(7330), + [anon_sym__Noreturn] = ACTIONS(7330), + [anon_sym__Nonnull] = ACTIONS(7330), + [anon_sym_nullable] = ACTIONS(7330), + [anon_sym__Complex] = ACTIONS(7330), + [anon_sym__Nullable] = ACTIONS(7330), + [anon_sym__Nullable_result] = ACTIONS(7330), + [anon_sym__Null_unspecified] = ACTIONS(7330), + [anon_sym___autoreleasing] = ACTIONS(7330), + [anon_sym___block] = ACTIONS(7330), + [anon_sym___bridge] = ACTIONS(7330), + [anon_sym___bridge_retained] = ACTIONS(7330), + [anon_sym___bridge_transfer] = ACTIONS(7330), + [anon_sym___complex] = ACTIONS(7330), + [anon_sym___const] = ACTIONS(7330), + [anon_sym___imag] = ACTIONS(7330), + [anon_sym___kindof] = ACTIONS(7330), + [anon_sym___nonnull] = ACTIONS(7330), + [anon_sym___nullable] = ACTIONS(7330), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7330), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7330), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7330), + [anon_sym___real] = ACTIONS(7330), + [anon_sym___strong] = ACTIONS(7330), + [anon_sym___unsafe_unretained] = ACTIONS(7330), + [anon_sym___unused] = ACTIONS(7330), + [anon_sym___weak] = ACTIONS(7330), + [anon_sym_alignas] = ACTIONS(7330), + [anon_sym__Alignas] = ACTIONS(7330), + [sym_primitive_type] = ACTIONS(7330), + [anon_sym_enum] = ACTIONS(7330), + [anon_sym_COLON] = ACTIONS(7332), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7330), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7330), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7330), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7330), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7330), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7330), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7330), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7330), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7330), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7330), + [anon_sym_NS_AVAILABLE] = ACTIONS(7330), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7330), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7330), + [anon_sym_API_AVAILABLE] = ACTIONS(7330), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7330), + [anon_sym_API_DEPRECATED] = ACTIONS(7330), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7330), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7330), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7330), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7330), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7330), + [anon_sym___deprecated_msg] = ACTIONS(7330), + [anon_sym___deprecated_enum_msg] = ACTIONS(7330), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7330), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7330), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7330), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7330), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7330), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7330), + }, + [2963] = { + [sym_identifier] = ACTIONS(7334), + [anon_sym_COMMA] = ACTIONS(7336), + [anon_sym_RPAREN] = ACTIONS(7336), + [anon_sym_LPAREN2] = ACTIONS(7336), + [anon_sym_STAR] = ACTIONS(7336), + [anon_sym_CARET] = ACTIONS(7336), + [anon_sym_SEMI] = ACTIONS(7336), + [anon_sym___extension__] = ACTIONS(7334), + [anon_sym_extern] = ACTIONS(7334), + [anon_sym___attribute__] = ACTIONS(7334), + [anon_sym___attribute] = ACTIONS(7334), + [anon_sym_noreturn] = ACTIONS(7334), + [anon_sym_LBRACK] = ACTIONS(7336), + [anon_sym___declspec] = ACTIONS(7334), + [anon_sym___based] = ACTIONS(7334), + [anon_sym_signed] = ACTIONS(7334), + [anon_sym_unsigned] = ACTIONS(7334), + [anon_sym_long] = ACTIONS(7334), + [anon_sym_short] = ACTIONS(7334), + [anon_sym_static] = ACTIONS(7334), + [anon_sym_auto] = ACTIONS(7334), + [anon_sym_register] = ACTIONS(7334), + [anon_sym_inline] = ACTIONS(7334), + [anon_sym___inline] = ACTIONS(7334), + [anon_sym___inline__] = ACTIONS(7334), + [anon_sym___forceinline] = ACTIONS(7334), + [anon_sym_thread_local] = ACTIONS(7334), + [anon_sym___thread] = ACTIONS(7334), + [anon_sym_CG_EXTERN] = ACTIONS(7334), + [anon_sym_CG_INLINE] = ACTIONS(7334), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7334), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7334), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7334), + [anon_sym_IBOutlet] = ACTIONS(7334), + [anon_sym_IBInspectable] = ACTIONS(7334), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7334), + [anon_sym_NS_INLINE] = ACTIONS(7334), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7334), + [anon_sym_OBJC_EXPORT] = ACTIONS(7334), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7334), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7334), + [anon_sym_const] = ACTIONS(7334), + [anon_sym_constexpr] = ACTIONS(7334), + [anon_sym_volatile] = ACTIONS(7334), + [anon_sym_restrict] = ACTIONS(7334), + [anon_sym___restrict__] = ACTIONS(7334), + [anon_sym__Atomic] = ACTIONS(7334), + [anon_sym__Noreturn] = ACTIONS(7334), + [anon_sym__Nonnull] = ACTIONS(7334), + [anon_sym_nullable] = ACTIONS(7334), + [anon_sym__Complex] = ACTIONS(7334), + [anon_sym__Nullable] = ACTIONS(7334), + [anon_sym__Nullable_result] = ACTIONS(7334), + [anon_sym__Null_unspecified] = ACTIONS(7334), + [anon_sym___autoreleasing] = ACTIONS(7334), + [anon_sym___block] = ACTIONS(7334), + [anon_sym___bridge] = ACTIONS(7334), + [anon_sym___bridge_retained] = ACTIONS(7334), + [anon_sym___bridge_transfer] = ACTIONS(7334), + [anon_sym___complex] = ACTIONS(7334), + [anon_sym___const] = ACTIONS(7334), + [anon_sym___imag] = ACTIONS(7334), + [anon_sym___kindof] = ACTIONS(7334), + [anon_sym___nonnull] = ACTIONS(7334), + [anon_sym___nullable] = ACTIONS(7334), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7334), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7334), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7334), + [anon_sym___real] = ACTIONS(7334), + [anon_sym___strong] = ACTIONS(7334), + [anon_sym___unsafe_unretained] = ACTIONS(7334), + [anon_sym___unused] = ACTIONS(7334), + [anon_sym___weak] = ACTIONS(7334), + [anon_sym_alignas] = ACTIONS(7334), + [anon_sym__Alignas] = ACTIONS(7334), + [sym_primitive_type] = ACTIONS(7334), + [anon_sym_enum] = ACTIONS(7334), + [anon_sym_COLON] = ACTIONS(7336), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7334), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7334), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7334), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7334), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7334), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7334), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7334), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7334), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7334), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7334), + [anon_sym_NS_AVAILABLE] = ACTIONS(7334), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7334), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7334), + [anon_sym_API_AVAILABLE] = ACTIONS(7334), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7334), + [anon_sym_API_DEPRECATED] = ACTIONS(7334), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7334), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7334), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7334), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7334), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7334), + [anon_sym___deprecated_msg] = ACTIONS(7334), + [anon_sym___deprecated_enum_msg] = ACTIONS(7334), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7334), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7334), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7334), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7334), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7334), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7334), + }, + [2964] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2930), + [sym_identifier] = ACTIONS(7338), + [anon_sym_COMMA] = ACTIONS(7340), + [anon_sym_RPAREN] = ACTIONS(7340), + [anon_sym_LPAREN2] = ACTIONS(7340), + [anon_sym_STAR] = ACTIONS(7340), + [anon_sym_CARET] = ACTIONS(7340), + [anon_sym_SEMI] = ACTIONS(7340), + [anon_sym___extension__] = ACTIONS(7338), + [anon_sym_extern] = ACTIONS(7338), + [anon_sym___attribute__] = ACTIONS(7338), + [anon_sym___attribute] = ACTIONS(7338), + [anon_sym_noreturn] = ACTIONS(7338), + [anon_sym_LBRACK] = ACTIONS(7340), + [anon_sym___declspec] = ACTIONS(7338), + [anon_sym___based] = ACTIONS(7338), + [anon_sym_signed] = ACTIONS(7310), + [anon_sym_unsigned] = ACTIONS(7310), + [anon_sym_long] = ACTIONS(7310), + [anon_sym_short] = ACTIONS(7310), + [anon_sym_static] = ACTIONS(7338), + [anon_sym_auto] = ACTIONS(7338), + [anon_sym_register] = ACTIONS(7338), + [anon_sym_inline] = ACTIONS(7338), + [anon_sym___inline] = ACTIONS(7338), + [anon_sym___inline__] = ACTIONS(7338), + [anon_sym___forceinline] = ACTIONS(7338), + [anon_sym_thread_local] = ACTIONS(7338), + [anon_sym___thread] = ACTIONS(7338), + [anon_sym_CG_EXTERN] = ACTIONS(7338), + [anon_sym_CG_INLINE] = ACTIONS(7338), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7338), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7338), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7338), + [anon_sym_IBOutlet] = ACTIONS(7338), + [anon_sym_IBInspectable] = ACTIONS(7338), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7338), + [anon_sym_NS_INLINE] = ACTIONS(7338), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7338), + [anon_sym_OBJC_EXPORT] = ACTIONS(7338), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7338), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7338), + [anon_sym_const] = ACTIONS(7338), + [anon_sym_constexpr] = ACTIONS(7338), + [anon_sym_volatile] = ACTIONS(7338), + [anon_sym_restrict] = ACTIONS(7338), + [anon_sym___restrict__] = ACTIONS(7338), + [anon_sym__Atomic] = ACTIONS(7338), + [anon_sym__Noreturn] = ACTIONS(7338), + [anon_sym__Nonnull] = ACTIONS(7338), + [anon_sym_nullable] = ACTIONS(7338), + [anon_sym__Complex] = ACTIONS(7338), + [anon_sym__Nullable] = ACTIONS(7338), + [anon_sym__Nullable_result] = ACTIONS(7338), + [anon_sym__Null_unspecified] = ACTIONS(7338), + [anon_sym___autoreleasing] = ACTIONS(7338), + [anon_sym___block] = ACTIONS(7338), + [anon_sym___bridge] = ACTIONS(7338), + [anon_sym___bridge_retained] = ACTIONS(7338), + [anon_sym___bridge_transfer] = ACTIONS(7338), + [anon_sym___complex] = ACTIONS(7338), + [anon_sym___const] = ACTIONS(7338), + [anon_sym___imag] = ACTIONS(7338), + [anon_sym___kindof] = ACTIONS(7338), + [anon_sym___nonnull] = ACTIONS(7338), + [anon_sym___nullable] = ACTIONS(7338), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7338), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7338), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7338), + [anon_sym___real] = ACTIONS(7338), + [anon_sym___strong] = ACTIONS(7338), + [anon_sym___unsafe_unretained] = ACTIONS(7338), + [anon_sym___unused] = ACTIONS(7338), + [anon_sym___weak] = ACTIONS(7338), + [anon_sym_alignas] = ACTIONS(7338), + [anon_sym__Alignas] = ACTIONS(7338), + [anon_sym_enum] = ACTIONS(7338), + [anon_sym_COLON] = ACTIONS(7340), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7338), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7338), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7338), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7338), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7338), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7338), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7338), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7338), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7338), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7338), + [anon_sym_NS_AVAILABLE] = ACTIONS(7338), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7338), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7338), + [anon_sym_API_AVAILABLE] = ACTIONS(7338), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7338), + [anon_sym_API_DEPRECATED] = ACTIONS(7338), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7338), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7338), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7338), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7338), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7338), + [anon_sym___deprecated_msg] = ACTIONS(7338), + [anon_sym___deprecated_enum_msg] = ACTIONS(7338), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7338), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7338), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7338), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7338), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7338), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7338), + }, + [2965] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2930), + [sym_identifier] = ACTIONS(7342), + [anon_sym_COMMA] = ACTIONS(7344), + [anon_sym_RPAREN] = ACTIONS(7344), + [anon_sym_LPAREN2] = ACTIONS(7344), + [anon_sym_STAR] = ACTIONS(7344), + [anon_sym_CARET] = ACTIONS(7344), + [anon_sym_SEMI] = ACTIONS(7344), + [anon_sym___extension__] = ACTIONS(7342), + [anon_sym_extern] = ACTIONS(7342), + [anon_sym___attribute__] = ACTIONS(7342), + [anon_sym___attribute] = ACTIONS(7342), + [anon_sym_noreturn] = ACTIONS(7342), + [anon_sym_LBRACK] = ACTIONS(7344), + [anon_sym___declspec] = ACTIONS(7342), + [anon_sym___based] = ACTIONS(7342), + [anon_sym_signed] = ACTIONS(7310), + [anon_sym_unsigned] = ACTIONS(7310), + [anon_sym_long] = ACTIONS(7310), + [anon_sym_short] = ACTIONS(7310), + [anon_sym_static] = ACTIONS(7342), + [anon_sym_auto] = ACTIONS(7342), + [anon_sym_register] = ACTIONS(7342), + [anon_sym_inline] = ACTIONS(7342), + [anon_sym___inline] = ACTIONS(7342), + [anon_sym___inline__] = ACTIONS(7342), + [anon_sym___forceinline] = ACTIONS(7342), + [anon_sym_thread_local] = ACTIONS(7342), + [anon_sym___thread] = ACTIONS(7342), + [anon_sym_CG_EXTERN] = ACTIONS(7342), + [anon_sym_CG_INLINE] = ACTIONS(7342), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7342), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7342), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7342), + [anon_sym_IBOutlet] = ACTIONS(7342), + [anon_sym_IBInspectable] = ACTIONS(7342), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7342), + [anon_sym_NS_INLINE] = ACTIONS(7342), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7342), + [anon_sym_OBJC_EXPORT] = ACTIONS(7342), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7342), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7342), + [anon_sym_const] = ACTIONS(7342), + [anon_sym_constexpr] = ACTIONS(7342), + [anon_sym_volatile] = ACTIONS(7342), + [anon_sym_restrict] = ACTIONS(7342), + [anon_sym___restrict__] = ACTIONS(7342), + [anon_sym__Atomic] = ACTIONS(7342), + [anon_sym__Noreturn] = ACTIONS(7342), + [anon_sym__Nonnull] = ACTIONS(7342), + [anon_sym_nullable] = ACTIONS(7342), + [anon_sym__Complex] = ACTIONS(7342), + [anon_sym__Nullable] = ACTIONS(7342), + [anon_sym__Nullable_result] = ACTIONS(7342), + [anon_sym__Null_unspecified] = ACTIONS(7342), + [anon_sym___autoreleasing] = ACTIONS(7342), + [anon_sym___block] = ACTIONS(7342), + [anon_sym___bridge] = ACTIONS(7342), + [anon_sym___bridge_retained] = ACTIONS(7342), + [anon_sym___bridge_transfer] = ACTIONS(7342), + [anon_sym___complex] = ACTIONS(7342), + [anon_sym___const] = ACTIONS(7342), + [anon_sym___imag] = ACTIONS(7342), + [anon_sym___kindof] = ACTIONS(7342), + [anon_sym___nonnull] = ACTIONS(7342), + [anon_sym___nullable] = ACTIONS(7342), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7342), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7342), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7342), + [anon_sym___real] = ACTIONS(7342), + [anon_sym___strong] = ACTIONS(7342), + [anon_sym___unsafe_unretained] = ACTIONS(7342), + [anon_sym___unused] = ACTIONS(7342), + [anon_sym___weak] = ACTIONS(7342), + [anon_sym_alignas] = ACTIONS(7342), + [anon_sym__Alignas] = ACTIONS(7342), + [anon_sym_enum] = ACTIONS(7342), + [anon_sym_COLON] = ACTIONS(7344), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7342), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7342), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7342), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7342), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7342), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7342), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7342), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7342), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7342), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7342), + [anon_sym_NS_AVAILABLE] = ACTIONS(7342), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7342), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7342), + [anon_sym_API_AVAILABLE] = ACTIONS(7342), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7342), + [anon_sym_API_DEPRECATED] = ACTIONS(7342), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7342), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7342), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7342), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7342), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7342), + [anon_sym___deprecated_msg] = ACTIONS(7342), + [anon_sym___deprecated_enum_msg] = ACTIONS(7342), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7342), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7342), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7342), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7342), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7342), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7342), + }, + [2966] = { + [sym_identifier] = ACTIONS(7346), + [anon_sym_COMMA] = ACTIONS(7348), + [anon_sym_RPAREN] = ACTIONS(7348), + [anon_sym_LPAREN2] = ACTIONS(7348), + [anon_sym_STAR] = ACTIONS(7348), + [anon_sym_CARET] = ACTIONS(7348), + [anon_sym_SEMI] = ACTIONS(7348), + [anon_sym___extension__] = ACTIONS(7346), + [anon_sym_extern] = ACTIONS(7346), + [anon_sym___attribute__] = ACTIONS(7346), + [anon_sym___attribute] = ACTIONS(7346), + [anon_sym_noreturn] = ACTIONS(7346), + [anon_sym_LBRACK] = ACTIONS(7348), + [anon_sym___declspec] = ACTIONS(7346), + [anon_sym___based] = ACTIONS(7346), + [anon_sym_signed] = ACTIONS(7346), + [anon_sym_unsigned] = ACTIONS(7346), + [anon_sym_long] = ACTIONS(7346), + [anon_sym_short] = ACTIONS(7346), + [anon_sym_static] = ACTIONS(7346), + [anon_sym_auto] = ACTIONS(7346), + [anon_sym_register] = ACTIONS(7346), + [anon_sym_inline] = ACTIONS(7346), + [anon_sym___inline] = ACTIONS(7346), + [anon_sym___inline__] = ACTIONS(7346), + [anon_sym___forceinline] = ACTIONS(7346), + [anon_sym_thread_local] = ACTIONS(7346), + [anon_sym___thread] = ACTIONS(7346), + [anon_sym_CG_EXTERN] = ACTIONS(7346), + [anon_sym_CG_INLINE] = ACTIONS(7346), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7346), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7346), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7346), + [anon_sym_IBOutlet] = ACTIONS(7346), + [anon_sym_IBInspectable] = ACTIONS(7346), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7346), + [anon_sym_NS_INLINE] = ACTIONS(7346), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7346), + [anon_sym_OBJC_EXPORT] = ACTIONS(7346), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7346), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7346), + [anon_sym_const] = ACTIONS(7346), + [anon_sym_constexpr] = ACTIONS(7346), + [anon_sym_volatile] = ACTIONS(7346), + [anon_sym_restrict] = ACTIONS(7346), + [anon_sym___restrict__] = ACTIONS(7346), + [anon_sym__Atomic] = ACTIONS(7346), + [anon_sym__Noreturn] = ACTIONS(7346), + [anon_sym__Nonnull] = ACTIONS(7346), + [anon_sym_nullable] = ACTIONS(7346), + [anon_sym__Complex] = ACTIONS(7346), + [anon_sym__Nullable] = ACTIONS(7346), + [anon_sym__Nullable_result] = ACTIONS(7346), + [anon_sym__Null_unspecified] = ACTIONS(7346), + [anon_sym___autoreleasing] = ACTIONS(7346), + [anon_sym___block] = ACTIONS(7346), + [anon_sym___bridge] = ACTIONS(7346), + [anon_sym___bridge_retained] = ACTIONS(7346), + [anon_sym___bridge_transfer] = ACTIONS(7346), + [anon_sym___complex] = ACTIONS(7346), + [anon_sym___const] = ACTIONS(7346), + [anon_sym___imag] = ACTIONS(7346), + [anon_sym___kindof] = ACTIONS(7346), + [anon_sym___nonnull] = ACTIONS(7346), + [anon_sym___nullable] = ACTIONS(7346), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7346), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7346), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7346), + [anon_sym___real] = ACTIONS(7346), + [anon_sym___strong] = ACTIONS(7346), + [anon_sym___unsafe_unretained] = ACTIONS(7346), + [anon_sym___unused] = ACTIONS(7346), + [anon_sym___weak] = ACTIONS(7346), + [anon_sym_alignas] = ACTIONS(7346), + [anon_sym__Alignas] = ACTIONS(7346), + [sym_primitive_type] = ACTIONS(7346), + [anon_sym_enum] = ACTIONS(7346), + [anon_sym_COLON] = ACTIONS(7348), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7346), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7346), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7346), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7346), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7346), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7346), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7346), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7346), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7346), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7346), + [anon_sym_NS_AVAILABLE] = ACTIONS(7346), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7346), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7346), + [anon_sym_API_AVAILABLE] = ACTIONS(7346), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7346), + [anon_sym_API_DEPRECATED] = ACTIONS(7346), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7346), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7346), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7346), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7346), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7346), + [anon_sym___deprecated_msg] = ACTIONS(7346), + [anon_sym___deprecated_enum_msg] = ACTIONS(7346), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7346), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7346), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7346), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7346), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7346), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7346), + }, + [2967] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2930), + [sym_identifier] = ACTIONS(7350), + [anon_sym_COMMA] = ACTIONS(7352), + [anon_sym_RPAREN] = ACTIONS(7352), + [anon_sym_LPAREN2] = ACTIONS(7352), + [anon_sym_STAR] = ACTIONS(7352), + [anon_sym_CARET] = ACTIONS(7352), + [anon_sym_SEMI] = ACTIONS(7352), + [anon_sym___extension__] = ACTIONS(7350), + [anon_sym_extern] = ACTIONS(7350), + [anon_sym___attribute__] = ACTIONS(7350), + [anon_sym___attribute] = ACTIONS(7350), + [anon_sym_noreturn] = ACTIONS(7350), + [anon_sym_LBRACK] = ACTIONS(7352), + [anon_sym___declspec] = ACTIONS(7350), + [anon_sym___based] = ACTIONS(7350), + [anon_sym_signed] = ACTIONS(7310), + [anon_sym_unsigned] = ACTIONS(7310), + [anon_sym_long] = ACTIONS(7310), + [anon_sym_short] = ACTIONS(7310), + [anon_sym_static] = ACTIONS(7350), + [anon_sym_auto] = ACTIONS(7350), + [anon_sym_register] = ACTIONS(7350), + [anon_sym_inline] = ACTIONS(7350), + [anon_sym___inline] = ACTIONS(7350), + [anon_sym___inline__] = ACTIONS(7350), + [anon_sym___forceinline] = ACTIONS(7350), + [anon_sym_thread_local] = ACTIONS(7350), + [anon_sym___thread] = ACTIONS(7350), + [anon_sym_CG_EXTERN] = ACTIONS(7350), + [anon_sym_CG_INLINE] = ACTIONS(7350), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7350), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7350), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7350), + [anon_sym_IBOutlet] = ACTIONS(7350), + [anon_sym_IBInspectable] = ACTIONS(7350), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7350), + [anon_sym_NS_INLINE] = ACTIONS(7350), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7350), + [anon_sym_OBJC_EXPORT] = ACTIONS(7350), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7350), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7350), + [anon_sym_const] = ACTIONS(7350), + [anon_sym_constexpr] = ACTIONS(7350), + [anon_sym_volatile] = ACTIONS(7350), + [anon_sym_restrict] = ACTIONS(7350), + [anon_sym___restrict__] = ACTIONS(7350), + [anon_sym__Atomic] = ACTIONS(7350), + [anon_sym__Noreturn] = ACTIONS(7350), + [anon_sym__Nonnull] = ACTIONS(7350), + [anon_sym_nullable] = ACTIONS(7350), + [anon_sym__Complex] = ACTIONS(7350), + [anon_sym__Nullable] = ACTIONS(7350), + [anon_sym__Nullable_result] = ACTIONS(7350), + [anon_sym__Null_unspecified] = ACTIONS(7350), + [anon_sym___autoreleasing] = ACTIONS(7350), + [anon_sym___block] = ACTIONS(7350), + [anon_sym___bridge] = ACTIONS(7350), + [anon_sym___bridge_retained] = ACTIONS(7350), + [anon_sym___bridge_transfer] = ACTIONS(7350), + [anon_sym___complex] = ACTIONS(7350), + [anon_sym___const] = ACTIONS(7350), + [anon_sym___imag] = ACTIONS(7350), + [anon_sym___kindof] = ACTIONS(7350), + [anon_sym___nonnull] = ACTIONS(7350), + [anon_sym___nullable] = ACTIONS(7350), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7350), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7350), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7350), + [anon_sym___real] = ACTIONS(7350), + [anon_sym___strong] = ACTIONS(7350), + [anon_sym___unsafe_unretained] = ACTIONS(7350), + [anon_sym___unused] = ACTIONS(7350), + [anon_sym___weak] = ACTIONS(7350), + [anon_sym_alignas] = ACTIONS(7350), + [anon_sym__Alignas] = ACTIONS(7350), + [anon_sym_enum] = ACTIONS(7350), + [anon_sym_COLON] = ACTIONS(7352), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7350), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7350), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7350), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7350), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7350), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7350), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7350), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7350), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7350), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7350), + [anon_sym_NS_AVAILABLE] = ACTIONS(7350), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7350), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7350), + [anon_sym_API_AVAILABLE] = ACTIONS(7350), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7350), + [anon_sym_API_DEPRECATED] = ACTIONS(7350), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7350), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7350), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7350), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7350), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7350), + [anon_sym___deprecated_msg] = ACTIONS(7350), + [anon_sym___deprecated_enum_msg] = ACTIONS(7350), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7350), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7350), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7350), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7350), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7350), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7350), + }, + [2968] = { + [sym__declaration_modifiers] = STATE(2875), + [sym_attribute_specifier] = STATE(2875), + [sym_attribute_declaration] = STATE(2875), + [sym_ms_declspec_modifier] = STATE(2875), + [sym_storage_class_specifier] = STATE(2875), + [sym_type_qualifier] = STATE(2875), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2875), + [aux_sym__declaration_specifiers_repeat1] = STATE(2875), + [sym_identifier] = ACTIONS(7059), + [anon_sym_LPAREN2] = ACTIONS(7061), + [anon_sym_STAR] = ACTIONS(7061), + [anon_sym_CARET] = ACTIONS(7061), + [anon_sym_SEMI] = ACTIONS(7354), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(7011), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(7059), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2969] = { + [sym_identifier] = ACTIONS(7356), + [anon_sym_COMMA] = ACTIONS(7358), + [anon_sym_RPAREN] = ACTIONS(7358), + [anon_sym_LPAREN2] = ACTIONS(7358), + [anon_sym_STAR] = ACTIONS(7358), + [anon_sym_CARET] = ACTIONS(7358), + [anon_sym_SEMI] = ACTIONS(7358), + [anon_sym___extension__] = ACTIONS(7356), + [anon_sym_extern] = ACTIONS(7356), + [anon_sym___attribute__] = ACTIONS(7356), + [anon_sym___attribute] = ACTIONS(7356), + [anon_sym_noreturn] = ACTIONS(7356), + [anon_sym_LBRACK] = ACTIONS(7358), + [anon_sym___declspec] = ACTIONS(7356), + [anon_sym___based] = ACTIONS(7356), + [anon_sym_signed] = ACTIONS(7356), + [anon_sym_unsigned] = ACTIONS(7356), + [anon_sym_long] = ACTIONS(7356), + [anon_sym_short] = ACTIONS(7356), + [anon_sym_static] = ACTIONS(7356), + [anon_sym_auto] = ACTIONS(7356), + [anon_sym_register] = ACTIONS(7356), + [anon_sym_inline] = ACTIONS(7356), + [anon_sym___inline] = ACTIONS(7356), + [anon_sym___inline__] = ACTIONS(7356), + [anon_sym___forceinline] = ACTIONS(7356), + [anon_sym_thread_local] = ACTIONS(7356), + [anon_sym___thread] = ACTIONS(7356), + [anon_sym_CG_EXTERN] = ACTIONS(7356), + [anon_sym_CG_INLINE] = ACTIONS(7356), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7356), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7356), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7356), + [anon_sym_IBOutlet] = ACTIONS(7356), + [anon_sym_IBInspectable] = ACTIONS(7356), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7356), + [anon_sym_NS_INLINE] = ACTIONS(7356), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7356), + [anon_sym_OBJC_EXPORT] = ACTIONS(7356), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7356), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7356), + [anon_sym_const] = ACTIONS(7356), + [anon_sym_constexpr] = ACTIONS(7356), + [anon_sym_volatile] = ACTIONS(7356), + [anon_sym_restrict] = ACTIONS(7356), + [anon_sym___restrict__] = ACTIONS(7356), + [anon_sym__Atomic] = ACTIONS(7356), + [anon_sym__Noreturn] = ACTIONS(7356), + [anon_sym__Nonnull] = ACTIONS(7356), + [anon_sym_nullable] = ACTIONS(7356), + [anon_sym__Complex] = ACTIONS(7356), + [anon_sym__Nullable] = ACTIONS(7356), + [anon_sym__Nullable_result] = ACTIONS(7356), + [anon_sym__Null_unspecified] = ACTIONS(7356), + [anon_sym___autoreleasing] = ACTIONS(7356), + [anon_sym___block] = ACTIONS(7356), + [anon_sym___bridge] = ACTIONS(7356), + [anon_sym___bridge_retained] = ACTIONS(7356), + [anon_sym___bridge_transfer] = ACTIONS(7356), + [anon_sym___complex] = ACTIONS(7356), + [anon_sym___const] = ACTIONS(7356), + [anon_sym___imag] = ACTIONS(7356), + [anon_sym___kindof] = ACTIONS(7356), + [anon_sym___nonnull] = ACTIONS(7356), + [anon_sym___nullable] = ACTIONS(7356), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7356), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7356), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7356), + [anon_sym___real] = ACTIONS(7356), + [anon_sym___strong] = ACTIONS(7356), + [anon_sym___unsafe_unretained] = ACTIONS(7356), + [anon_sym___unused] = ACTIONS(7356), + [anon_sym___weak] = ACTIONS(7356), + [anon_sym_alignas] = ACTIONS(7356), + [anon_sym__Alignas] = ACTIONS(7356), + [sym_primitive_type] = ACTIONS(7356), + [anon_sym_enum] = ACTIONS(7356), + [anon_sym_COLON] = ACTIONS(7358), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7356), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7356), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7356), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7356), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7356), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7356), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7356), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7356), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7356), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7356), + [anon_sym_NS_AVAILABLE] = ACTIONS(7356), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7356), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7356), + [anon_sym_API_AVAILABLE] = ACTIONS(7356), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7356), + [anon_sym_API_DEPRECATED] = ACTIONS(7356), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7356), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7356), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7356), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7356), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7356), + [anon_sym___deprecated_msg] = ACTIONS(7356), + [anon_sym___deprecated_enum_msg] = ACTIONS(7356), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7356), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7356), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7356), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7356), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7356), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7356), + }, + [2970] = { + [sym_identifier] = ACTIONS(7360), + [anon_sym_COMMA] = ACTIONS(7362), + [anon_sym_RPAREN] = ACTIONS(7362), + [anon_sym_LPAREN2] = ACTIONS(7362), + [anon_sym_STAR] = ACTIONS(7362), + [anon_sym_CARET] = ACTIONS(7362), + [anon_sym_SEMI] = ACTIONS(7362), + [anon_sym___extension__] = ACTIONS(7360), + [anon_sym_extern] = ACTIONS(7360), + [anon_sym___attribute__] = ACTIONS(7360), + [anon_sym___attribute] = ACTIONS(7360), + [anon_sym_noreturn] = ACTIONS(7360), + [anon_sym_LBRACK] = ACTIONS(7362), + [anon_sym___declspec] = ACTIONS(7360), + [anon_sym___based] = ACTIONS(7360), + [anon_sym_signed] = ACTIONS(7360), + [anon_sym_unsigned] = ACTIONS(7360), + [anon_sym_long] = ACTIONS(7360), + [anon_sym_short] = ACTIONS(7360), + [anon_sym_static] = ACTIONS(7360), + [anon_sym_auto] = ACTIONS(7360), + [anon_sym_register] = ACTIONS(7360), + [anon_sym_inline] = ACTIONS(7360), + [anon_sym___inline] = ACTIONS(7360), + [anon_sym___inline__] = ACTIONS(7360), + [anon_sym___forceinline] = ACTIONS(7360), + [anon_sym_thread_local] = ACTIONS(7360), + [anon_sym___thread] = ACTIONS(7360), + [anon_sym_CG_EXTERN] = ACTIONS(7360), + [anon_sym_CG_INLINE] = ACTIONS(7360), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7360), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7360), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7360), + [anon_sym_IBOutlet] = ACTIONS(7360), + [anon_sym_IBInspectable] = ACTIONS(7360), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7360), + [anon_sym_NS_INLINE] = ACTIONS(7360), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7360), + [anon_sym_OBJC_EXPORT] = ACTIONS(7360), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7360), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7360), + [anon_sym_const] = ACTIONS(7360), + [anon_sym_constexpr] = ACTIONS(7360), + [anon_sym_volatile] = ACTIONS(7360), + [anon_sym_restrict] = ACTIONS(7360), + [anon_sym___restrict__] = ACTIONS(7360), + [anon_sym__Atomic] = ACTIONS(7360), + [anon_sym__Noreturn] = ACTIONS(7360), + [anon_sym__Nonnull] = ACTIONS(7360), + [anon_sym_nullable] = ACTIONS(7360), + [anon_sym__Complex] = ACTIONS(7360), + [anon_sym__Nullable] = ACTIONS(7360), + [anon_sym__Nullable_result] = ACTIONS(7360), + [anon_sym__Null_unspecified] = ACTIONS(7360), + [anon_sym___autoreleasing] = ACTIONS(7360), + [anon_sym___block] = ACTIONS(7360), + [anon_sym___bridge] = ACTIONS(7360), + [anon_sym___bridge_retained] = ACTIONS(7360), + [anon_sym___bridge_transfer] = ACTIONS(7360), + [anon_sym___complex] = ACTIONS(7360), + [anon_sym___const] = ACTIONS(7360), + [anon_sym___imag] = ACTIONS(7360), + [anon_sym___kindof] = ACTIONS(7360), + [anon_sym___nonnull] = ACTIONS(7360), + [anon_sym___nullable] = ACTIONS(7360), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7360), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7360), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7360), + [anon_sym___real] = ACTIONS(7360), + [anon_sym___strong] = ACTIONS(7360), + [anon_sym___unsafe_unretained] = ACTIONS(7360), + [anon_sym___unused] = ACTIONS(7360), + [anon_sym___weak] = ACTIONS(7360), + [anon_sym_alignas] = ACTIONS(7360), + [anon_sym__Alignas] = ACTIONS(7360), + [sym_primitive_type] = ACTIONS(7360), + [anon_sym_enum] = ACTIONS(7360), + [anon_sym_COLON] = ACTIONS(7362), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7360), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7360), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7360), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7360), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7360), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7360), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7360), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7360), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7360), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7360), + [anon_sym_NS_AVAILABLE] = ACTIONS(7360), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7360), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7360), + [anon_sym_API_AVAILABLE] = ACTIONS(7360), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7360), + [anon_sym_API_DEPRECATED] = ACTIONS(7360), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7360), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7360), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7360), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7360), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7360), + [anon_sym___deprecated_msg] = ACTIONS(7360), + [anon_sym___deprecated_enum_msg] = ACTIONS(7360), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7360), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7360), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7360), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7360), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7360), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7360), + }, + [2971] = { + [sym_identifier] = ACTIONS(7364), + [anon_sym_COMMA] = ACTIONS(7366), + [anon_sym_RPAREN] = ACTIONS(7366), + [anon_sym_LPAREN2] = ACTIONS(7366), + [anon_sym_STAR] = ACTIONS(7366), + [anon_sym_CARET] = ACTIONS(7366), + [anon_sym_SEMI] = ACTIONS(7366), + [anon_sym___extension__] = ACTIONS(7364), + [anon_sym_extern] = ACTIONS(7364), + [anon_sym___attribute__] = ACTIONS(7364), + [anon_sym___attribute] = ACTIONS(7364), + [anon_sym_noreturn] = ACTIONS(7364), + [anon_sym_LBRACK] = ACTIONS(7366), + [anon_sym___declspec] = ACTIONS(7364), + [anon_sym___based] = ACTIONS(7364), + [anon_sym_signed] = ACTIONS(7364), + [anon_sym_unsigned] = ACTIONS(7364), + [anon_sym_long] = ACTIONS(7364), + [anon_sym_short] = ACTIONS(7364), + [anon_sym_static] = ACTIONS(7364), + [anon_sym_auto] = ACTIONS(7364), + [anon_sym_register] = ACTIONS(7364), + [anon_sym_inline] = ACTIONS(7364), + [anon_sym___inline] = ACTIONS(7364), + [anon_sym___inline__] = ACTIONS(7364), + [anon_sym___forceinline] = ACTIONS(7364), + [anon_sym_thread_local] = ACTIONS(7364), + [anon_sym___thread] = ACTIONS(7364), + [anon_sym_CG_EXTERN] = ACTIONS(7364), + [anon_sym_CG_INLINE] = ACTIONS(7364), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7364), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7364), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7364), + [anon_sym_IBOutlet] = ACTIONS(7364), + [anon_sym_IBInspectable] = ACTIONS(7364), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7364), + [anon_sym_NS_INLINE] = ACTIONS(7364), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7364), + [anon_sym_OBJC_EXPORT] = ACTIONS(7364), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7364), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7364), + [anon_sym_const] = ACTIONS(7364), + [anon_sym_constexpr] = ACTIONS(7364), + [anon_sym_volatile] = ACTIONS(7364), + [anon_sym_restrict] = ACTIONS(7364), + [anon_sym___restrict__] = ACTIONS(7364), + [anon_sym__Atomic] = ACTIONS(7364), + [anon_sym__Noreturn] = ACTIONS(7364), + [anon_sym__Nonnull] = ACTIONS(7364), + [anon_sym_nullable] = ACTIONS(7364), + [anon_sym__Complex] = ACTIONS(7364), + [anon_sym__Nullable] = ACTIONS(7364), + [anon_sym__Nullable_result] = ACTIONS(7364), + [anon_sym__Null_unspecified] = ACTIONS(7364), + [anon_sym___autoreleasing] = ACTIONS(7364), + [anon_sym___block] = ACTIONS(7364), + [anon_sym___bridge] = ACTIONS(7364), + [anon_sym___bridge_retained] = ACTIONS(7364), + [anon_sym___bridge_transfer] = ACTIONS(7364), + [anon_sym___complex] = ACTIONS(7364), + [anon_sym___const] = ACTIONS(7364), + [anon_sym___imag] = ACTIONS(7364), + [anon_sym___kindof] = ACTIONS(7364), + [anon_sym___nonnull] = ACTIONS(7364), + [anon_sym___nullable] = ACTIONS(7364), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7364), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7364), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7364), + [anon_sym___real] = ACTIONS(7364), + [anon_sym___strong] = ACTIONS(7364), + [anon_sym___unsafe_unretained] = ACTIONS(7364), + [anon_sym___unused] = ACTIONS(7364), + [anon_sym___weak] = ACTIONS(7364), + [anon_sym_alignas] = ACTIONS(7364), + [anon_sym__Alignas] = ACTIONS(7364), + [sym_primitive_type] = ACTIONS(7364), + [anon_sym_enum] = ACTIONS(7364), + [anon_sym_COLON] = ACTIONS(7366), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7364), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7364), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7364), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7364), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7364), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7364), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7364), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7364), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7364), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7364), + [anon_sym_NS_AVAILABLE] = ACTIONS(7364), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7364), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7364), + [anon_sym_API_AVAILABLE] = ACTIONS(7364), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7364), + [anon_sym_API_DEPRECATED] = ACTIONS(7364), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7364), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7364), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7364), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7364), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7364), + [anon_sym___deprecated_msg] = ACTIONS(7364), + [anon_sym___deprecated_enum_msg] = ACTIONS(7364), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7364), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7364), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7364), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7364), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7364), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7364), + }, + [2972] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym__old_style_parameter_list_repeat1] = STATE(5684), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_COMMA] = ACTIONS(7368), + [anon_sym_RPAREN] = ACTIONS(7371), + [anon_sym_LPAREN2] = ACTIONS(7165), + [anon_sym_STAR] = ACTIONS(5932), + [anon_sym_CARET] = ACTIONS(5932), + [anon_sym_LT] = ACTIONS(7168), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(5932), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [2973] = { + [sym_identifier] = ACTIONS(7374), + [anon_sym_COMMA] = ACTIONS(7376), + [anon_sym_RPAREN] = ACTIONS(7376), + [anon_sym_LPAREN2] = ACTIONS(7376), + [anon_sym_STAR] = ACTIONS(7376), + [anon_sym_CARET] = ACTIONS(7376), + [anon_sym_SEMI] = ACTIONS(7376), + [anon_sym___extension__] = ACTIONS(7374), + [anon_sym_extern] = ACTIONS(7374), + [anon_sym___attribute__] = ACTIONS(7374), + [anon_sym___attribute] = ACTIONS(7374), + [anon_sym_noreturn] = ACTIONS(7374), + [anon_sym_LBRACK] = ACTIONS(7376), + [anon_sym___declspec] = ACTIONS(7374), + [anon_sym___based] = ACTIONS(7374), + [anon_sym_signed] = ACTIONS(7374), + [anon_sym_unsigned] = ACTIONS(7374), + [anon_sym_long] = ACTIONS(7374), + [anon_sym_short] = ACTIONS(7374), + [anon_sym_static] = ACTIONS(7374), + [anon_sym_auto] = ACTIONS(7374), + [anon_sym_register] = ACTIONS(7374), + [anon_sym_inline] = ACTIONS(7374), + [anon_sym___inline] = ACTIONS(7374), + [anon_sym___inline__] = ACTIONS(7374), + [anon_sym___forceinline] = ACTIONS(7374), + [anon_sym_thread_local] = ACTIONS(7374), + [anon_sym___thread] = ACTIONS(7374), + [anon_sym_CG_EXTERN] = ACTIONS(7374), + [anon_sym_CG_INLINE] = ACTIONS(7374), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7374), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7374), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7374), + [anon_sym_IBOutlet] = ACTIONS(7374), + [anon_sym_IBInspectable] = ACTIONS(7374), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7374), + [anon_sym_NS_INLINE] = ACTIONS(7374), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7374), + [anon_sym_OBJC_EXPORT] = ACTIONS(7374), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7374), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7374), + [anon_sym_const] = ACTIONS(7374), + [anon_sym_constexpr] = ACTIONS(7374), + [anon_sym_volatile] = ACTIONS(7374), + [anon_sym_restrict] = ACTIONS(7374), + [anon_sym___restrict__] = ACTIONS(7374), + [anon_sym__Atomic] = ACTIONS(7374), + [anon_sym__Noreturn] = ACTIONS(7374), + [anon_sym__Nonnull] = ACTIONS(7374), + [anon_sym_nullable] = ACTIONS(7374), + [anon_sym__Complex] = ACTIONS(7374), + [anon_sym__Nullable] = ACTIONS(7374), + [anon_sym__Nullable_result] = ACTIONS(7374), + [anon_sym__Null_unspecified] = ACTIONS(7374), + [anon_sym___autoreleasing] = ACTIONS(7374), + [anon_sym___block] = ACTIONS(7374), + [anon_sym___bridge] = ACTIONS(7374), + [anon_sym___bridge_retained] = ACTIONS(7374), + [anon_sym___bridge_transfer] = ACTIONS(7374), + [anon_sym___complex] = ACTIONS(7374), + [anon_sym___const] = ACTIONS(7374), + [anon_sym___imag] = ACTIONS(7374), + [anon_sym___kindof] = ACTIONS(7374), + [anon_sym___nonnull] = ACTIONS(7374), + [anon_sym___nullable] = ACTIONS(7374), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7374), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7374), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7374), + [anon_sym___real] = ACTIONS(7374), + [anon_sym___strong] = ACTIONS(7374), + [anon_sym___unsafe_unretained] = ACTIONS(7374), + [anon_sym___unused] = ACTIONS(7374), + [anon_sym___weak] = ACTIONS(7374), + [anon_sym_alignas] = ACTIONS(7374), + [anon_sym__Alignas] = ACTIONS(7374), + [sym_primitive_type] = ACTIONS(7374), + [anon_sym_enum] = ACTIONS(7374), + [anon_sym_COLON] = ACTIONS(7376), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7374), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7374), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7374), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7374), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7374), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7374), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7374), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7374), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7374), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7374), + [anon_sym_NS_AVAILABLE] = ACTIONS(7374), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7374), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7374), + [anon_sym_API_AVAILABLE] = ACTIONS(7374), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7374), + [anon_sym_API_DEPRECATED] = ACTIONS(7374), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7374), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7374), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7374), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7374), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7374), + [anon_sym___deprecated_msg] = ACTIONS(7374), + [anon_sym___deprecated_enum_msg] = ACTIONS(7374), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7374), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7374), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7374), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7374), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7374), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7374), + }, + [2974] = { + [sym__declaration_modifiers] = STATE(2875), + [sym_attribute_specifier] = STATE(2875), + [sym_attribute_declaration] = STATE(2875), + [sym_ms_declspec_modifier] = STATE(2875), + [sym_storage_class_specifier] = STATE(2875), + [sym_type_qualifier] = STATE(2875), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2875), + [aux_sym__declaration_specifiers_repeat1] = STATE(2875), + [sym_identifier] = ACTIONS(7059), + [anon_sym_LPAREN2] = ACTIONS(7061), + [anon_sym_STAR] = ACTIONS(7061), + [anon_sym_CARET] = ACTIONS(7061), + [anon_sym_SEMI] = ACTIONS(7378), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(7011), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(7059), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2975] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2930), + [sym_identifier] = ACTIONS(7380), + [anon_sym_COMMA] = ACTIONS(7382), + [anon_sym_RPAREN] = ACTIONS(7382), + [anon_sym_LPAREN2] = ACTIONS(7382), + [anon_sym_STAR] = ACTIONS(7382), + [anon_sym_CARET] = ACTIONS(7382), + [anon_sym_SEMI] = ACTIONS(7382), + [anon_sym___extension__] = ACTIONS(7380), + [anon_sym_extern] = ACTIONS(7380), + [anon_sym___attribute__] = ACTIONS(7380), + [anon_sym___attribute] = ACTIONS(7380), + [anon_sym_noreturn] = ACTIONS(7380), + [anon_sym_LBRACK] = ACTIONS(7382), + [anon_sym___declspec] = ACTIONS(7380), + [anon_sym___based] = ACTIONS(7380), + [anon_sym_signed] = ACTIONS(7310), + [anon_sym_unsigned] = ACTIONS(7310), + [anon_sym_long] = ACTIONS(7310), + [anon_sym_short] = ACTIONS(7310), + [anon_sym_static] = ACTIONS(7380), + [anon_sym_auto] = ACTIONS(7380), + [anon_sym_register] = ACTIONS(7380), + [anon_sym_inline] = ACTIONS(7380), + [anon_sym___inline] = ACTIONS(7380), + [anon_sym___inline__] = ACTIONS(7380), + [anon_sym___forceinline] = ACTIONS(7380), + [anon_sym_thread_local] = ACTIONS(7380), + [anon_sym___thread] = ACTIONS(7380), + [anon_sym_CG_EXTERN] = ACTIONS(7380), + [anon_sym_CG_INLINE] = ACTIONS(7380), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7380), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7380), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7380), + [anon_sym_IBOutlet] = ACTIONS(7380), + [anon_sym_IBInspectable] = ACTIONS(7380), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7380), + [anon_sym_NS_INLINE] = ACTIONS(7380), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7380), + [anon_sym_OBJC_EXPORT] = ACTIONS(7380), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7380), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7380), + [anon_sym_const] = ACTIONS(7380), + [anon_sym_constexpr] = ACTIONS(7380), + [anon_sym_volatile] = ACTIONS(7380), + [anon_sym_restrict] = ACTIONS(7380), + [anon_sym___restrict__] = ACTIONS(7380), + [anon_sym__Atomic] = ACTIONS(7380), + [anon_sym__Noreturn] = ACTIONS(7380), + [anon_sym__Nonnull] = ACTIONS(7380), + [anon_sym_nullable] = ACTIONS(7380), + [anon_sym__Complex] = ACTIONS(7380), + [anon_sym__Nullable] = ACTIONS(7380), + [anon_sym__Nullable_result] = ACTIONS(7380), + [anon_sym__Null_unspecified] = ACTIONS(7380), + [anon_sym___autoreleasing] = ACTIONS(7380), + [anon_sym___block] = ACTIONS(7380), + [anon_sym___bridge] = ACTIONS(7380), + [anon_sym___bridge_retained] = ACTIONS(7380), + [anon_sym___bridge_transfer] = ACTIONS(7380), + [anon_sym___complex] = ACTIONS(7380), + [anon_sym___const] = ACTIONS(7380), + [anon_sym___imag] = ACTIONS(7380), + [anon_sym___kindof] = ACTIONS(7380), + [anon_sym___nonnull] = ACTIONS(7380), + [anon_sym___nullable] = ACTIONS(7380), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7380), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7380), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7380), + [anon_sym___real] = ACTIONS(7380), + [anon_sym___strong] = ACTIONS(7380), + [anon_sym___unsafe_unretained] = ACTIONS(7380), + [anon_sym___unused] = ACTIONS(7380), + [anon_sym___weak] = ACTIONS(7380), + [anon_sym_alignas] = ACTIONS(7380), + [anon_sym__Alignas] = ACTIONS(7380), + [anon_sym_enum] = ACTIONS(7380), + [anon_sym_COLON] = ACTIONS(7382), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7380), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7380), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7380), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7380), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7380), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7380), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7380), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7380), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7380), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7380), + [anon_sym_NS_AVAILABLE] = ACTIONS(7380), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7380), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7380), + [anon_sym_API_AVAILABLE] = ACTIONS(7380), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7380), + [anon_sym_API_DEPRECATED] = ACTIONS(7380), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7380), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7380), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7380), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7380), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7380), + [anon_sym___deprecated_msg] = ACTIONS(7380), + [anon_sym___deprecated_enum_msg] = ACTIONS(7380), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7380), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7380), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7380), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7380), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7380), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7380), + }, + [2976] = { + [sym_identifier] = ACTIONS(7384), + [anon_sym_COMMA] = ACTIONS(7386), + [anon_sym_RPAREN] = ACTIONS(7386), + [anon_sym_LPAREN2] = ACTIONS(7386), + [anon_sym_STAR] = ACTIONS(7386), + [anon_sym_CARET] = ACTIONS(7386), + [anon_sym_SEMI] = ACTIONS(7386), + [anon_sym___extension__] = ACTIONS(7384), + [anon_sym_extern] = ACTIONS(7384), + [anon_sym___attribute__] = ACTIONS(7384), + [anon_sym___attribute] = ACTIONS(7384), + [anon_sym_noreturn] = ACTIONS(7384), + [anon_sym_LBRACK] = ACTIONS(7386), + [anon_sym___declspec] = ACTIONS(7384), + [anon_sym___based] = ACTIONS(7384), + [anon_sym_signed] = ACTIONS(7384), + [anon_sym_unsigned] = ACTIONS(7384), + [anon_sym_long] = ACTIONS(7384), + [anon_sym_short] = ACTIONS(7384), + [anon_sym_static] = ACTIONS(7384), + [anon_sym_auto] = ACTIONS(7384), + [anon_sym_register] = ACTIONS(7384), + [anon_sym_inline] = ACTIONS(7384), + [anon_sym___inline] = ACTIONS(7384), + [anon_sym___inline__] = ACTIONS(7384), + [anon_sym___forceinline] = ACTIONS(7384), + [anon_sym_thread_local] = ACTIONS(7384), + [anon_sym___thread] = ACTIONS(7384), + [anon_sym_CG_EXTERN] = ACTIONS(7384), + [anon_sym_CG_INLINE] = ACTIONS(7384), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7384), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7384), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7384), + [anon_sym_IBOutlet] = ACTIONS(7384), + [anon_sym_IBInspectable] = ACTIONS(7384), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7384), + [anon_sym_NS_INLINE] = ACTIONS(7384), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7384), + [anon_sym_OBJC_EXPORT] = ACTIONS(7384), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7384), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7384), + [anon_sym_const] = ACTIONS(7384), + [anon_sym_constexpr] = ACTIONS(7384), + [anon_sym_volatile] = ACTIONS(7384), + [anon_sym_restrict] = ACTIONS(7384), + [anon_sym___restrict__] = ACTIONS(7384), + [anon_sym__Atomic] = ACTIONS(7384), + [anon_sym__Noreturn] = ACTIONS(7384), + [anon_sym__Nonnull] = ACTIONS(7384), + [anon_sym_nullable] = ACTIONS(7384), + [anon_sym__Complex] = ACTIONS(7384), + [anon_sym__Nullable] = ACTIONS(7384), + [anon_sym__Nullable_result] = ACTIONS(7384), + [anon_sym__Null_unspecified] = ACTIONS(7384), + [anon_sym___autoreleasing] = ACTIONS(7384), + [anon_sym___block] = ACTIONS(7384), + [anon_sym___bridge] = ACTIONS(7384), + [anon_sym___bridge_retained] = ACTIONS(7384), + [anon_sym___bridge_transfer] = ACTIONS(7384), + [anon_sym___complex] = ACTIONS(7384), + [anon_sym___const] = ACTIONS(7384), + [anon_sym___imag] = ACTIONS(7384), + [anon_sym___kindof] = ACTIONS(7384), + [anon_sym___nonnull] = ACTIONS(7384), + [anon_sym___nullable] = ACTIONS(7384), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7384), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7384), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7384), + [anon_sym___real] = ACTIONS(7384), + [anon_sym___strong] = ACTIONS(7384), + [anon_sym___unsafe_unretained] = ACTIONS(7384), + [anon_sym___unused] = ACTIONS(7384), + [anon_sym___weak] = ACTIONS(7384), + [anon_sym_alignas] = ACTIONS(7384), + [anon_sym__Alignas] = ACTIONS(7384), + [sym_primitive_type] = ACTIONS(7384), + [anon_sym_enum] = ACTIONS(7384), + [anon_sym_COLON] = ACTIONS(7386), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7384), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7384), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7384), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7384), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7384), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7384), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7384), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7384), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7384), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7384), + [anon_sym_NS_AVAILABLE] = ACTIONS(7384), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7384), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7384), + [anon_sym_API_AVAILABLE] = ACTIONS(7384), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7384), + [anon_sym_API_DEPRECATED] = ACTIONS(7384), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7384), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7384), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7384), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7384), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7384), + [anon_sym___deprecated_msg] = ACTIONS(7384), + [anon_sym___deprecated_enum_msg] = ACTIONS(7384), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7384), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7384), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7384), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7384), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7384), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7384), + }, + [2977] = { + [sym_identifier] = ACTIONS(7388), + [anon_sym_COMMA] = ACTIONS(7390), + [anon_sym_RPAREN] = ACTIONS(7390), + [anon_sym_LPAREN2] = ACTIONS(7390), + [anon_sym_STAR] = ACTIONS(7390), + [anon_sym_CARET] = ACTIONS(7390), + [anon_sym_SEMI] = ACTIONS(7390), + [anon_sym___extension__] = ACTIONS(7388), + [anon_sym_extern] = ACTIONS(7388), + [anon_sym___attribute__] = ACTIONS(7388), + [anon_sym___attribute] = ACTIONS(7388), + [anon_sym_noreturn] = ACTIONS(7388), + [anon_sym_LBRACK] = ACTIONS(7390), + [anon_sym___declspec] = ACTIONS(7388), + [anon_sym___based] = ACTIONS(7388), + [anon_sym_signed] = ACTIONS(7388), + [anon_sym_unsigned] = ACTIONS(7388), + [anon_sym_long] = ACTIONS(7388), + [anon_sym_short] = ACTIONS(7388), + [anon_sym_static] = ACTIONS(7388), + [anon_sym_auto] = ACTIONS(7388), + [anon_sym_register] = ACTIONS(7388), + [anon_sym_inline] = ACTIONS(7388), + [anon_sym___inline] = ACTIONS(7388), + [anon_sym___inline__] = ACTIONS(7388), + [anon_sym___forceinline] = ACTIONS(7388), + [anon_sym_thread_local] = ACTIONS(7388), + [anon_sym___thread] = ACTIONS(7388), + [anon_sym_CG_EXTERN] = ACTIONS(7388), + [anon_sym_CG_INLINE] = ACTIONS(7388), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7388), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7388), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7388), + [anon_sym_IBOutlet] = ACTIONS(7388), + [anon_sym_IBInspectable] = ACTIONS(7388), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7388), + [anon_sym_NS_INLINE] = ACTIONS(7388), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7388), + [anon_sym_OBJC_EXPORT] = ACTIONS(7388), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7388), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7388), + [anon_sym_const] = ACTIONS(7388), + [anon_sym_constexpr] = ACTIONS(7388), + [anon_sym_volatile] = ACTIONS(7388), + [anon_sym_restrict] = ACTIONS(7388), + [anon_sym___restrict__] = ACTIONS(7388), + [anon_sym__Atomic] = ACTIONS(7388), + [anon_sym__Noreturn] = ACTIONS(7388), + [anon_sym__Nonnull] = ACTIONS(7388), + [anon_sym_nullable] = ACTIONS(7388), + [anon_sym__Complex] = ACTIONS(7388), + [anon_sym__Nullable] = ACTIONS(7388), + [anon_sym__Nullable_result] = ACTIONS(7388), + [anon_sym__Null_unspecified] = ACTIONS(7388), + [anon_sym___autoreleasing] = ACTIONS(7388), + [anon_sym___block] = ACTIONS(7388), + [anon_sym___bridge] = ACTIONS(7388), + [anon_sym___bridge_retained] = ACTIONS(7388), + [anon_sym___bridge_transfer] = ACTIONS(7388), + [anon_sym___complex] = ACTIONS(7388), + [anon_sym___const] = ACTIONS(7388), + [anon_sym___imag] = ACTIONS(7388), + [anon_sym___kindof] = ACTIONS(7388), + [anon_sym___nonnull] = ACTIONS(7388), + [anon_sym___nullable] = ACTIONS(7388), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7388), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7388), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7388), + [anon_sym___real] = ACTIONS(7388), + [anon_sym___strong] = ACTIONS(7388), + [anon_sym___unsafe_unretained] = ACTIONS(7388), + [anon_sym___unused] = ACTIONS(7388), + [anon_sym___weak] = ACTIONS(7388), + [anon_sym_alignas] = ACTIONS(7388), + [anon_sym__Alignas] = ACTIONS(7388), + [sym_primitive_type] = ACTIONS(7388), + [anon_sym_enum] = ACTIONS(7388), + [anon_sym_COLON] = ACTIONS(7390), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7388), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7388), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7388), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7388), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7388), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7388), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7388), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7388), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7388), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7388), + [anon_sym_NS_AVAILABLE] = ACTIONS(7388), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7388), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7388), + [anon_sym_API_AVAILABLE] = ACTIONS(7388), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7388), + [anon_sym_API_DEPRECATED] = ACTIONS(7388), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7388), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7388), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7388), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7388), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7388), + [anon_sym___deprecated_msg] = ACTIONS(7388), + [anon_sym___deprecated_enum_msg] = ACTIONS(7388), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7388), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7388), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7388), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7388), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7388), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7388), + }, + [2978] = { + [sym_identifier] = ACTIONS(7392), + [anon_sym_COMMA] = ACTIONS(7394), + [anon_sym_RPAREN] = ACTIONS(7394), + [anon_sym_LPAREN2] = ACTIONS(7394), + [anon_sym_STAR] = ACTIONS(7394), + [anon_sym_CARET] = ACTIONS(7394), + [anon_sym_SEMI] = ACTIONS(7394), + [anon_sym___extension__] = ACTIONS(7392), + [anon_sym_extern] = ACTIONS(7392), + [anon_sym___attribute__] = ACTIONS(7392), + [anon_sym___attribute] = ACTIONS(7392), + [anon_sym_noreturn] = ACTIONS(7392), + [anon_sym_LBRACK] = ACTIONS(7394), + [anon_sym___declspec] = ACTIONS(7392), + [anon_sym___based] = ACTIONS(7392), + [anon_sym_signed] = ACTIONS(7392), + [anon_sym_unsigned] = ACTIONS(7392), + [anon_sym_long] = ACTIONS(7392), + [anon_sym_short] = ACTIONS(7392), + [anon_sym_static] = ACTIONS(7392), + [anon_sym_auto] = ACTIONS(7392), + [anon_sym_register] = ACTIONS(7392), + [anon_sym_inline] = ACTIONS(7392), + [anon_sym___inline] = ACTIONS(7392), + [anon_sym___inline__] = ACTIONS(7392), + [anon_sym___forceinline] = ACTIONS(7392), + [anon_sym_thread_local] = ACTIONS(7392), + [anon_sym___thread] = ACTIONS(7392), + [anon_sym_CG_EXTERN] = ACTIONS(7392), + [anon_sym_CG_INLINE] = ACTIONS(7392), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7392), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7392), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7392), + [anon_sym_IBOutlet] = ACTIONS(7392), + [anon_sym_IBInspectable] = ACTIONS(7392), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7392), + [anon_sym_NS_INLINE] = ACTIONS(7392), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7392), + [anon_sym_OBJC_EXPORT] = ACTIONS(7392), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7392), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7392), + [anon_sym_const] = ACTIONS(7392), + [anon_sym_constexpr] = ACTIONS(7392), + [anon_sym_volatile] = ACTIONS(7392), + [anon_sym_restrict] = ACTIONS(7392), + [anon_sym___restrict__] = ACTIONS(7392), + [anon_sym__Atomic] = ACTIONS(7392), + [anon_sym__Noreturn] = ACTIONS(7392), + [anon_sym__Nonnull] = ACTIONS(7392), + [anon_sym_nullable] = ACTIONS(7392), + [anon_sym__Complex] = ACTIONS(7392), + [anon_sym__Nullable] = ACTIONS(7392), + [anon_sym__Nullable_result] = ACTIONS(7392), + [anon_sym__Null_unspecified] = ACTIONS(7392), + [anon_sym___autoreleasing] = ACTIONS(7392), + [anon_sym___block] = ACTIONS(7392), + [anon_sym___bridge] = ACTIONS(7392), + [anon_sym___bridge_retained] = ACTIONS(7392), + [anon_sym___bridge_transfer] = ACTIONS(7392), + [anon_sym___complex] = ACTIONS(7392), + [anon_sym___const] = ACTIONS(7392), + [anon_sym___imag] = ACTIONS(7392), + [anon_sym___kindof] = ACTIONS(7392), + [anon_sym___nonnull] = ACTIONS(7392), + [anon_sym___nullable] = ACTIONS(7392), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7392), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7392), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7392), + [anon_sym___real] = ACTIONS(7392), + [anon_sym___strong] = ACTIONS(7392), + [anon_sym___unsafe_unretained] = ACTIONS(7392), + [anon_sym___unused] = ACTIONS(7392), + [anon_sym___weak] = ACTIONS(7392), + [anon_sym_alignas] = ACTIONS(7392), + [anon_sym__Alignas] = ACTIONS(7392), + [sym_primitive_type] = ACTIONS(7392), + [anon_sym_enum] = ACTIONS(7392), + [anon_sym_COLON] = ACTIONS(7394), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7392), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7392), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7392), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7392), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7392), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7392), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7392), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7392), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7392), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7392), + [anon_sym_NS_AVAILABLE] = ACTIONS(7392), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7392), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7392), + [anon_sym_API_AVAILABLE] = ACTIONS(7392), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7392), + [anon_sym_API_DEPRECATED] = ACTIONS(7392), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7392), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7392), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7392), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7392), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7392), + [anon_sym___deprecated_msg] = ACTIONS(7392), + [anon_sym___deprecated_enum_msg] = ACTIONS(7392), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7392), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7392), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7392), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7392), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7392), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7392), + }, + [2979] = { + [sym_identifier] = ACTIONS(7396), + [anon_sym_COMMA] = ACTIONS(7398), + [anon_sym_RPAREN] = ACTIONS(7398), + [anon_sym_LPAREN2] = ACTIONS(7398), + [anon_sym_STAR] = ACTIONS(7398), + [anon_sym_CARET] = ACTIONS(7398), + [anon_sym_SEMI] = ACTIONS(7398), + [anon_sym___extension__] = ACTIONS(7396), + [anon_sym_extern] = ACTIONS(7396), + [anon_sym___attribute__] = ACTIONS(7396), + [anon_sym___attribute] = ACTIONS(7396), + [anon_sym_noreturn] = ACTIONS(7396), + [anon_sym_LBRACK] = ACTIONS(7398), + [anon_sym___declspec] = ACTIONS(7396), + [anon_sym___based] = ACTIONS(7396), + [anon_sym_signed] = ACTIONS(7396), + [anon_sym_unsigned] = ACTIONS(7396), + [anon_sym_long] = ACTIONS(7396), + [anon_sym_short] = ACTIONS(7396), + [anon_sym_static] = ACTIONS(7396), + [anon_sym_auto] = ACTIONS(7396), + [anon_sym_register] = ACTIONS(7396), + [anon_sym_inline] = ACTIONS(7396), + [anon_sym___inline] = ACTIONS(7396), + [anon_sym___inline__] = ACTIONS(7396), + [anon_sym___forceinline] = ACTIONS(7396), + [anon_sym_thread_local] = ACTIONS(7396), + [anon_sym___thread] = ACTIONS(7396), + [anon_sym_CG_EXTERN] = ACTIONS(7396), + [anon_sym_CG_INLINE] = ACTIONS(7396), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7396), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7396), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7396), + [anon_sym_IBOutlet] = ACTIONS(7396), + [anon_sym_IBInspectable] = ACTIONS(7396), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7396), + [anon_sym_NS_INLINE] = ACTIONS(7396), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7396), + [anon_sym_OBJC_EXPORT] = ACTIONS(7396), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7396), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7396), + [anon_sym_const] = ACTIONS(7396), + [anon_sym_constexpr] = ACTIONS(7396), + [anon_sym_volatile] = ACTIONS(7396), + [anon_sym_restrict] = ACTIONS(7396), + [anon_sym___restrict__] = ACTIONS(7396), + [anon_sym__Atomic] = ACTIONS(7396), + [anon_sym__Noreturn] = ACTIONS(7396), + [anon_sym__Nonnull] = ACTIONS(7396), + [anon_sym_nullable] = ACTIONS(7396), + [anon_sym__Complex] = ACTIONS(7396), + [anon_sym__Nullable] = ACTIONS(7396), + [anon_sym__Nullable_result] = ACTIONS(7396), + [anon_sym__Null_unspecified] = ACTIONS(7396), + [anon_sym___autoreleasing] = ACTIONS(7396), + [anon_sym___block] = ACTIONS(7396), + [anon_sym___bridge] = ACTIONS(7396), + [anon_sym___bridge_retained] = ACTIONS(7396), + [anon_sym___bridge_transfer] = ACTIONS(7396), + [anon_sym___complex] = ACTIONS(7396), + [anon_sym___const] = ACTIONS(7396), + [anon_sym___imag] = ACTIONS(7396), + [anon_sym___kindof] = ACTIONS(7396), + [anon_sym___nonnull] = ACTIONS(7396), + [anon_sym___nullable] = ACTIONS(7396), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7396), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7396), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7396), + [anon_sym___real] = ACTIONS(7396), + [anon_sym___strong] = ACTIONS(7396), + [anon_sym___unsafe_unretained] = ACTIONS(7396), + [anon_sym___unused] = ACTIONS(7396), + [anon_sym___weak] = ACTIONS(7396), + [anon_sym_alignas] = ACTIONS(7396), + [anon_sym__Alignas] = ACTIONS(7396), + [sym_primitive_type] = ACTIONS(7396), + [anon_sym_enum] = ACTIONS(7396), + [anon_sym_COLON] = ACTIONS(7398), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7396), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7396), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7396), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7396), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7396), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7396), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7396), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7396), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7396), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7396), + [anon_sym_NS_AVAILABLE] = ACTIONS(7396), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7396), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7396), + [anon_sym_API_AVAILABLE] = ACTIONS(7396), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7396), + [anon_sym_API_DEPRECATED] = ACTIONS(7396), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7396), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7396), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7396), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7396), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7396), + [anon_sym___deprecated_msg] = ACTIONS(7396), + [anon_sym___deprecated_enum_msg] = ACTIONS(7396), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7396), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7396), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7396), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7396), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7396), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7396), + }, + [2980] = { + [sym_identifier] = ACTIONS(7400), + [anon_sym_COMMA] = ACTIONS(7402), + [anon_sym_RPAREN] = ACTIONS(7402), + [anon_sym_LPAREN2] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7402), + [anon_sym_SEMI] = ACTIONS(7402), + [anon_sym___extension__] = ACTIONS(7400), + [anon_sym_extern] = ACTIONS(7400), + [anon_sym___attribute__] = ACTIONS(7400), + [anon_sym___attribute] = ACTIONS(7400), + [anon_sym_noreturn] = ACTIONS(7400), + [anon_sym_LBRACK] = ACTIONS(7402), + [anon_sym___declspec] = ACTIONS(7400), + [anon_sym___based] = ACTIONS(7400), + [anon_sym_signed] = ACTIONS(7400), + [anon_sym_unsigned] = ACTIONS(7400), + [anon_sym_long] = ACTIONS(7400), + [anon_sym_short] = ACTIONS(7400), + [anon_sym_static] = ACTIONS(7400), + [anon_sym_auto] = ACTIONS(7400), + [anon_sym_register] = ACTIONS(7400), + [anon_sym_inline] = ACTIONS(7400), + [anon_sym___inline] = ACTIONS(7400), + [anon_sym___inline__] = ACTIONS(7400), + [anon_sym___forceinline] = ACTIONS(7400), + [anon_sym_thread_local] = ACTIONS(7400), + [anon_sym___thread] = ACTIONS(7400), + [anon_sym_CG_EXTERN] = ACTIONS(7400), + [anon_sym_CG_INLINE] = ACTIONS(7400), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7400), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7400), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7400), + [anon_sym_IBOutlet] = ACTIONS(7400), + [anon_sym_IBInspectable] = ACTIONS(7400), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7400), + [anon_sym_NS_INLINE] = ACTIONS(7400), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7400), + [anon_sym_OBJC_EXPORT] = ACTIONS(7400), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7400), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7400), + [anon_sym_const] = ACTIONS(7400), + [anon_sym_constexpr] = ACTIONS(7400), + [anon_sym_volatile] = ACTIONS(7400), + [anon_sym_restrict] = ACTIONS(7400), + [anon_sym___restrict__] = ACTIONS(7400), + [anon_sym__Atomic] = ACTIONS(7400), + [anon_sym__Noreturn] = ACTIONS(7400), + [anon_sym__Nonnull] = ACTIONS(7400), + [anon_sym_nullable] = ACTIONS(7400), + [anon_sym__Complex] = ACTIONS(7400), + [anon_sym__Nullable] = ACTIONS(7400), + [anon_sym__Nullable_result] = ACTIONS(7400), + [anon_sym__Null_unspecified] = ACTIONS(7400), + [anon_sym___autoreleasing] = ACTIONS(7400), + [anon_sym___block] = ACTIONS(7400), + [anon_sym___bridge] = ACTIONS(7400), + [anon_sym___bridge_retained] = ACTIONS(7400), + [anon_sym___bridge_transfer] = ACTIONS(7400), + [anon_sym___complex] = ACTIONS(7400), + [anon_sym___const] = ACTIONS(7400), + [anon_sym___imag] = ACTIONS(7400), + [anon_sym___kindof] = ACTIONS(7400), + [anon_sym___nonnull] = ACTIONS(7400), + [anon_sym___nullable] = ACTIONS(7400), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7400), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7400), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7400), + [anon_sym___real] = ACTIONS(7400), + [anon_sym___strong] = ACTIONS(7400), + [anon_sym___unsafe_unretained] = ACTIONS(7400), + [anon_sym___unused] = ACTIONS(7400), + [anon_sym___weak] = ACTIONS(7400), + [anon_sym_alignas] = ACTIONS(7400), + [anon_sym__Alignas] = ACTIONS(7400), + [sym_primitive_type] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7400), + [anon_sym_COLON] = ACTIONS(7402), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7400), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7400), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7400), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7400), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7400), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7400), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7400), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7400), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7400), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7400), + [anon_sym_NS_AVAILABLE] = ACTIONS(7400), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7400), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7400), + [anon_sym_API_AVAILABLE] = ACTIONS(7400), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7400), + [anon_sym_API_DEPRECATED] = ACTIONS(7400), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7400), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7400), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7400), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7400), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7400), + [anon_sym___deprecated_msg] = ACTIONS(7400), + [anon_sym___deprecated_enum_msg] = ACTIONS(7400), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7400), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7400), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7400), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7400), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7400), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7400), + }, + [2981] = { + [sym_identifier] = ACTIONS(7404), + [anon_sym_COMMA] = ACTIONS(7406), + [anon_sym_RPAREN] = ACTIONS(7406), + [anon_sym_LPAREN2] = ACTIONS(7406), + [anon_sym_STAR] = ACTIONS(7406), + [anon_sym_CARET] = ACTIONS(7406), + [anon_sym_SEMI] = ACTIONS(7406), + [anon_sym___extension__] = ACTIONS(7404), + [anon_sym_extern] = ACTIONS(7404), + [anon_sym___attribute__] = ACTIONS(7404), + [anon_sym___attribute] = ACTIONS(7404), + [anon_sym_noreturn] = ACTIONS(7404), + [anon_sym_LBRACK] = ACTIONS(7406), + [anon_sym___declspec] = ACTIONS(7404), + [anon_sym___based] = ACTIONS(7404), + [anon_sym_signed] = ACTIONS(7404), + [anon_sym_unsigned] = ACTIONS(7404), + [anon_sym_long] = ACTIONS(7404), + [anon_sym_short] = ACTIONS(7404), + [anon_sym_static] = ACTIONS(7404), + [anon_sym_auto] = ACTIONS(7404), + [anon_sym_register] = ACTIONS(7404), + [anon_sym_inline] = ACTIONS(7404), + [anon_sym___inline] = ACTIONS(7404), + [anon_sym___inline__] = ACTIONS(7404), + [anon_sym___forceinline] = ACTIONS(7404), + [anon_sym_thread_local] = ACTIONS(7404), + [anon_sym___thread] = ACTIONS(7404), + [anon_sym_CG_EXTERN] = ACTIONS(7404), + [anon_sym_CG_INLINE] = ACTIONS(7404), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7404), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7404), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7404), + [anon_sym_IBOutlet] = ACTIONS(7404), + [anon_sym_IBInspectable] = ACTIONS(7404), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7404), + [anon_sym_NS_INLINE] = ACTIONS(7404), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7404), + [anon_sym_OBJC_EXPORT] = ACTIONS(7404), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7404), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7404), + [anon_sym_const] = ACTIONS(7404), + [anon_sym_constexpr] = ACTIONS(7404), + [anon_sym_volatile] = ACTIONS(7404), + [anon_sym_restrict] = ACTIONS(7404), + [anon_sym___restrict__] = ACTIONS(7404), + [anon_sym__Atomic] = ACTIONS(7404), + [anon_sym__Noreturn] = ACTIONS(7404), + [anon_sym__Nonnull] = ACTIONS(7404), + [anon_sym_nullable] = ACTIONS(7404), + [anon_sym__Complex] = ACTIONS(7404), + [anon_sym__Nullable] = ACTIONS(7404), + [anon_sym__Nullable_result] = ACTIONS(7404), + [anon_sym__Null_unspecified] = ACTIONS(7404), + [anon_sym___autoreleasing] = ACTIONS(7404), + [anon_sym___block] = ACTIONS(7404), + [anon_sym___bridge] = ACTIONS(7404), + [anon_sym___bridge_retained] = ACTIONS(7404), + [anon_sym___bridge_transfer] = ACTIONS(7404), + [anon_sym___complex] = ACTIONS(7404), + [anon_sym___const] = ACTIONS(7404), + [anon_sym___imag] = ACTIONS(7404), + [anon_sym___kindof] = ACTIONS(7404), + [anon_sym___nonnull] = ACTIONS(7404), + [anon_sym___nullable] = ACTIONS(7404), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7404), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7404), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7404), + [anon_sym___real] = ACTIONS(7404), + [anon_sym___strong] = ACTIONS(7404), + [anon_sym___unsafe_unretained] = ACTIONS(7404), + [anon_sym___unused] = ACTIONS(7404), + [anon_sym___weak] = ACTIONS(7404), + [anon_sym_alignas] = ACTIONS(7404), + [anon_sym__Alignas] = ACTIONS(7404), + [sym_primitive_type] = ACTIONS(7404), + [anon_sym_enum] = ACTIONS(7404), + [anon_sym_COLON] = ACTIONS(7406), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7404), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7404), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7404), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7404), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7404), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7404), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7404), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7404), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7404), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7404), + [anon_sym_NS_AVAILABLE] = ACTIONS(7404), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7404), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7404), + [anon_sym_API_AVAILABLE] = ACTIONS(7404), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7404), + [anon_sym_API_DEPRECATED] = ACTIONS(7404), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7404), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7404), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7404), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7404), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7404), + [anon_sym___deprecated_msg] = ACTIONS(7404), + [anon_sym___deprecated_enum_msg] = ACTIONS(7404), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7404), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7404), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7404), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7404), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7404), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7404), + }, + [2982] = { + [sym_identifier] = ACTIONS(7408), + [anon_sym_COMMA] = ACTIONS(7410), + [anon_sym_RPAREN] = ACTIONS(7410), + [anon_sym_LPAREN2] = ACTIONS(7410), + [anon_sym_STAR] = ACTIONS(7410), + [anon_sym_CARET] = ACTIONS(7410), + [anon_sym_SEMI] = ACTIONS(7410), + [anon_sym___extension__] = ACTIONS(7408), + [anon_sym_extern] = ACTIONS(7408), + [anon_sym___attribute__] = ACTIONS(7408), + [anon_sym___attribute] = ACTIONS(7408), + [anon_sym_noreturn] = ACTIONS(7408), + [anon_sym_LBRACK] = ACTIONS(7410), + [anon_sym___declspec] = ACTIONS(7408), + [anon_sym___based] = ACTIONS(7408), + [anon_sym_signed] = ACTIONS(7408), + [anon_sym_unsigned] = ACTIONS(7408), + [anon_sym_long] = ACTIONS(7408), + [anon_sym_short] = ACTIONS(7408), + [anon_sym_static] = ACTIONS(7408), + [anon_sym_auto] = ACTIONS(7408), + [anon_sym_register] = ACTIONS(7408), + [anon_sym_inline] = ACTIONS(7408), + [anon_sym___inline] = ACTIONS(7408), + [anon_sym___inline__] = ACTIONS(7408), + [anon_sym___forceinline] = ACTIONS(7408), + [anon_sym_thread_local] = ACTIONS(7408), + [anon_sym___thread] = ACTIONS(7408), + [anon_sym_CG_EXTERN] = ACTIONS(7408), + [anon_sym_CG_INLINE] = ACTIONS(7408), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7408), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7408), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7408), + [anon_sym_IBOutlet] = ACTIONS(7408), + [anon_sym_IBInspectable] = ACTIONS(7408), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7408), + [anon_sym_NS_INLINE] = ACTIONS(7408), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7408), + [anon_sym_OBJC_EXPORT] = ACTIONS(7408), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7408), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7408), + [anon_sym_const] = ACTIONS(7408), + [anon_sym_constexpr] = ACTIONS(7408), + [anon_sym_volatile] = ACTIONS(7408), + [anon_sym_restrict] = ACTIONS(7408), + [anon_sym___restrict__] = ACTIONS(7408), + [anon_sym__Atomic] = ACTIONS(7408), + [anon_sym__Noreturn] = ACTIONS(7408), + [anon_sym__Nonnull] = ACTIONS(7408), + [anon_sym_nullable] = ACTIONS(7408), + [anon_sym__Complex] = ACTIONS(7408), + [anon_sym__Nullable] = ACTIONS(7408), + [anon_sym__Nullable_result] = ACTIONS(7408), + [anon_sym__Null_unspecified] = ACTIONS(7408), + [anon_sym___autoreleasing] = ACTIONS(7408), + [anon_sym___block] = ACTIONS(7408), + [anon_sym___bridge] = ACTIONS(7408), + [anon_sym___bridge_retained] = ACTIONS(7408), + [anon_sym___bridge_transfer] = ACTIONS(7408), + [anon_sym___complex] = ACTIONS(7408), + [anon_sym___const] = ACTIONS(7408), + [anon_sym___imag] = ACTIONS(7408), + [anon_sym___kindof] = ACTIONS(7408), + [anon_sym___nonnull] = ACTIONS(7408), + [anon_sym___nullable] = ACTIONS(7408), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7408), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7408), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7408), + [anon_sym___real] = ACTIONS(7408), + [anon_sym___strong] = ACTIONS(7408), + [anon_sym___unsafe_unretained] = ACTIONS(7408), + [anon_sym___unused] = ACTIONS(7408), + [anon_sym___weak] = ACTIONS(7408), + [anon_sym_alignas] = ACTIONS(7408), + [anon_sym__Alignas] = ACTIONS(7408), + [sym_primitive_type] = ACTIONS(7408), + [anon_sym_enum] = ACTIONS(7408), + [anon_sym_COLON] = ACTIONS(7410), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7408), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7408), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7408), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7408), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7408), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7408), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7408), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7408), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7408), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7408), + [anon_sym_NS_AVAILABLE] = ACTIONS(7408), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7408), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7408), + [anon_sym_API_AVAILABLE] = ACTIONS(7408), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7408), + [anon_sym_API_DEPRECATED] = ACTIONS(7408), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7408), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7408), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7408), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7408), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7408), + [anon_sym___deprecated_msg] = ACTIONS(7408), + [anon_sym___deprecated_enum_msg] = ACTIONS(7408), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7408), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7408), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7408), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7408), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7408), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7408), + }, + [2983] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2960), + [sym_identifier] = ACTIONS(5034), + [anon_sym_COMMA] = ACTIONS(5030), + [anon_sym_RPAREN] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(5030), + [anon_sym___extension__] = ACTIONS(5034), + [anon_sym_extern] = ACTIONS(5034), + [anon_sym___attribute__] = ACTIONS(5034), + [anon_sym___attribute] = ACTIONS(5034), + [anon_sym_noreturn] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym___declspec] = ACTIONS(5034), + [anon_sym___based] = ACTIONS(5034), + [anon_sym_signed] = ACTIONS(7412), + [anon_sym_unsigned] = ACTIONS(7412), + [anon_sym_long] = ACTIONS(7412), + [anon_sym_short] = ACTIONS(7412), + [anon_sym_static] = ACTIONS(5034), + [anon_sym_auto] = ACTIONS(5034), + [anon_sym_register] = ACTIONS(5034), + [anon_sym_inline] = ACTIONS(5034), + [anon_sym___inline] = ACTIONS(5034), + [anon_sym___inline__] = ACTIONS(5034), + [anon_sym___forceinline] = ACTIONS(5034), + [anon_sym_thread_local] = ACTIONS(5034), + [anon_sym___thread] = ACTIONS(5034), + [anon_sym_CG_EXTERN] = ACTIONS(5034), + [anon_sym_CG_INLINE] = ACTIONS(5034), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5034), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5034), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5034), + [anon_sym_IBOutlet] = ACTIONS(5034), + [anon_sym_IBInspectable] = ACTIONS(5034), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5034), + [anon_sym_NS_INLINE] = ACTIONS(5034), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5034), + [anon_sym_OBJC_EXPORT] = ACTIONS(5034), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5034), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5034), + [anon_sym_const] = ACTIONS(5034), + [anon_sym_constexpr] = ACTIONS(5034), + [anon_sym_volatile] = ACTIONS(5034), + [anon_sym_restrict] = ACTIONS(5034), + [anon_sym___restrict__] = ACTIONS(5034), + [anon_sym__Atomic] = ACTIONS(5034), + [anon_sym__Noreturn] = ACTIONS(5034), + [anon_sym__Nonnull] = ACTIONS(5034), + [anon_sym_nullable] = ACTIONS(5034), + [anon_sym__Complex] = ACTIONS(5034), + [anon_sym__Nullable] = ACTIONS(5034), + [anon_sym__Nullable_result] = ACTIONS(5034), + [anon_sym__Null_unspecified] = ACTIONS(5034), + [anon_sym___autoreleasing] = ACTIONS(5034), + [anon_sym___block] = ACTIONS(5034), + [anon_sym___bridge] = ACTIONS(5034), + [anon_sym___bridge_retained] = ACTIONS(5034), + [anon_sym___bridge_transfer] = ACTIONS(5034), + [anon_sym___complex] = ACTIONS(5034), + [anon_sym___const] = ACTIONS(5034), + [anon_sym___imag] = ACTIONS(5034), + [anon_sym___kindof] = ACTIONS(5034), + [anon_sym___nonnull] = ACTIONS(5034), + [anon_sym___nullable] = ACTIONS(5034), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5034), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5034), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5034), + [anon_sym___real] = ACTIONS(5034), + [anon_sym___strong] = ACTIONS(5034), + [anon_sym___unsafe_unretained] = ACTIONS(5034), + [anon_sym___unused] = ACTIONS(5034), + [anon_sym___weak] = ACTIONS(5034), + [anon_sym_alignas] = ACTIONS(5034), + [anon_sym__Alignas] = ACTIONS(5034), + [anon_sym_enum] = ACTIONS(5034), + [anon_sym_COLON] = ACTIONS(5030), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5034), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5034), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5034), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5034), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5034), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5034), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5034), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5034), + [anon_sym_NS_AVAILABLE] = ACTIONS(5034), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5034), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_API_AVAILABLE] = ACTIONS(5034), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_API_DEPRECATED] = ACTIONS(5034), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5034), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5034), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5034), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5034), + [anon_sym___deprecated_msg] = ACTIONS(5034), + [anon_sym___deprecated_enum_msg] = ACTIONS(5034), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5034), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5034), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5034), + }, + [2984] = { + [sym_identifier] = ACTIONS(7414), + [anon_sym_COMMA] = ACTIONS(7416), + [anon_sym_RPAREN] = ACTIONS(7416), + [anon_sym_LPAREN2] = ACTIONS(7416), + [anon_sym_STAR] = ACTIONS(7416), + [anon_sym_CARET] = ACTIONS(7416), + [anon_sym_SEMI] = ACTIONS(7416), + [anon_sym___extension__] = ACTIONS(7414), + [anon_sym_extern] = ACTIONS(7414), + [anon_sym___attribute__] = ACTIONS(7414), + [anon_sym___attribute] = ACTIONS(7414), + [anon_sym_noreturn] = ACTIONS(7414), + [anon_sym_LBRACK] = ACTIONS(7416), + [anon_sym___declspec] = ACTIONS(7414), + [anon_sym___based] = ACTIONS(7414), + [anon_sym_signed] = ACTIONS(7414), + [anon_sym_unsigned] = ACTIONS(7414), + [anon_sym_long] = ACTIONS(7414), + [anon_sym_short] = ACTIONS(7414), + [anon_sym_static] = ACTIONS(7414), + [anon_sym_auto] = ACTIONS(7414), + [anon_sym_register] = ACTIONS(7414), + [anon_sym_inline] = ACTIONS(7414), + [anon_sym___inline] = ACTIONS(7414), + [anon_sym___inline__] = ACTIONS(7414), + [anon_sym___forceinline] = ACTIONS(7414), + [anon_sym_thread_local] = ACTIONS(7414), + [anon_sym___thread] = ACTIONS(7414), + [anon_sym_CG_EXTERN] = ACTIONS(7414), + [anon_sym_CG_INLINE] = ACTIONS(7414), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7414), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7414), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7414), + [anon_sym_IBOutlet] = ACTIONS(7414), + [anon_sym_IBInspectable] = ACTIONS(7414), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7414), + [anon_sym_NS_INLINE] = ACTIONS(7414), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7414), + [anon_sym_OBJC_EXPORT] = ACTIONS(7414), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7414), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7414), + [anon_sym_const] = ACTIONS(7414), + [anon_sym_constexpr] = ACTIONS(7414), + [anon_sym_volatile] = ACTIONS(7414), + [anon_sym_restrict] = ACTIONS(7414), + [anon_sym___restrict__] = ACTIONS(7414), + [anon_sym__Atomic] = ACTIONS(7414), + [anon_sym__Noreturn] = ACTIONS(7414), + [anon_sym__Nonnull] = ACTIONS(7414), + [anon_sym_nullable] = ACTIONS(7414), + [anon_sym__Complex] = ACTIONS(7414), + [anon_sym__Nullable] = ACTIONS(7414), + [anon_sym__Nullable_result] = ACTIONS(7414), + [anon_sym__Null_unspecified] = ACTIONS(7414), + [anon_sym___autoreleasing] = ACTIONS(7414), + [anon_sym___block] = ACTIONS(7414), + [anon_sym___bridge] = ACTIONS(7414), + [anon_sym___bridge_retained] = ACTIONS(7414), + [anon_sym___bridge_transfer] = ACTIONS(7414), + [anon_sym___complex] = ACTIONS(7414), + [anon_sym___const] = ACTIONS(7414), + [anon_sym___imag] = ACTIONS(7414), + [anon_sym___kindof] = ACTIONS(7414), + [anon_sym___nonnull] = ACTIONS(7414), + [anon_sym___nullable] = ACTIONS(7414), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7414), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7414), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7414), + [anon_sym___real] = ACTIONS(7414), + [anon_sym___strong] = ACTIONS(7414), + [anon_sym___unsafe_unretained] = ACTIONS(7414), + [anon_sym___unused] = ACTIONS(7414), + [anon_sym___weak] = ACTIONS(7414), + [anon_sym_alignas] = ACTIONS(7414), + [anon_sym__Alignas] = ACTIONS(7414), + [sym_primitive_type] = ACTIONS(7414), + [anon_sym_enum] = ACTIONS(7414), + [anon_sym_COLON] = ACTIONS(7416), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7414), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7414), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7414), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7414), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7414), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7414), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7414), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7414), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7414), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7414), + [anon_sym_NS_AVAILABLE] = ACTIONS(7414), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7414), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7414), + [anon_sym_API_AVAILABLE] = ACTIONS(7414), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7414), + [anon_sym_API_DEPRECATED] = ACTIONS(7414), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7414), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7414), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7414), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7414), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7414), + [anon_sym___deprecated_msg] = ACTIONS(7414), + [anon_sym___deprecated_enum_msg] = ACTIONS(7414), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7414), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7414), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7414), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7414), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7414), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7414), + }, + [2985] = { + [sym__declaration_modifiers] = STATE(2875), + [sym_attribute_specifier] = STATE(2875), + [sym_attribute_declaration] = STATE(2875), + [sym_ms_declspec_modifier] = STATE(2875), + [sym_storage_class_specifier] = STATE(2875), + [sym_type_qualifier] = STATE(2875), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2875), + [aux_sym__declaration_specifiers_repeat1] = STATE(2875), + [sym_identifier] = ACTIONS(7059), + [anon_sym_LPAREN2] = ACTIONS(7061), + [anon_sym_STAR] = ACTIONS(7061), + [anon_sym_CARET] = ACTIONS(7061), + [anon_sym_SEMI] = ACTIONS(7418), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(7011), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(7059), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [2986] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2964), + [sym_identifier] = ACTIONS(7420), + [anon_sym_COMMA] = ACTIONS(7422), + [anon_sym_RPAREN] = ACTIONS(7422), + [anon_sym_LPAREN2] = ACTIONS(7422), + [anon_sym_STAR] = ACTIONS(7422), + [anon_sym_CARET] = ACTIONS(7422), + [anon_sym_SEMI] = ACTIONS(7422), + [anon_sym___extension__] = ACTIONS(7420), + [anon_sym_extern] = ACTIONS(7420), + [anon_sym___attribute__] = ACTIONS(7420), + [anon_sym___attribute] = ACTIONS(7420), + [anon_sym_noreturn] = ACTIONS(7420), + [anon_sym_LBRACK] = ACTIONS(7422), + [anon_sym___declspec] = ACTIONS(7420), + [anon_sym___based] = ACTIONS(7420), + [anon_sym_signed] = ACTIONS(7424), + [anon_sym_unsigned] = ACTIONS(7424), + [anon_sym_long] = ACTIONS(7424), + [anon_sym_short] = ACTIONS(7424), + [anon_sym_static] = ACTIONS(7420), + [anon_sym_auto] = ACTIONS(7420), + [anon_sym_register] = ACTIONS(7420), + [anon_sym_inline] = ACTIONS(7420), + [anon_sym___inline] = ACTIONS(7420), + [anon_sym___inline__] = ACTIONS(7420), + [anon_sym___forceinline] = ACTIONS(7420), + [anon_sym_thread_local] = ACTIONS(7420), + [anon_sym___thread] = ACTIONS(7420), + [anon_sym_CG_EXTERN] = ACTIONS(7420), + [anon_sym_CG_INLINE] = ACTIONS(7420), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7420), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7420), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7420), + [anon_sym_IBOutlet] = ACTIONS(7420), + [anon_sym_IBInspectable] = ACTIONS(7420), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7420), + [anon_sym_NS_INLINE] = ACTIONS(7420), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7420), + [anon_sym_OBJC_EXPORT] = ACTIONS(7420), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7420), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7420), + [anon_sym_const] = ACTIONS(7420), + [anon_sym_constexpr] = ACTIONS(7420), + [anon_sym_volatile] = ACTIONS(7420), + [anon_sym_restrict] = ACTIONS(7420), + [anon_sym___restrict__] = ACTIONS(7420), + [anon_sym__Atomic] = ACTIONS(7420), + [anon_sym__Noreturn] = ACTIONS(7420), + [anon_sym__Nonnull] = ACTIONS(7420), + [anon_sym_nullable] = ACTIONS(7420), + [anon_sym__Complex] = ACTIONS(7420), + [anon_sym__Nullable] = ACTIONS(7420), + [anon_sym__Nullable_result] = ACTIONS(7420), + [anon_sym__Null_unspecified] = ACTIONS(7420), + [anon_sym___autoreleasing] = ACTIONS(7420), + [anon_sym___block] = ACTIONS(7420), + [anon_sym___bridge] = ACTIONS(7420), + [anon_sym___bridge_retained] = ACTIONS(7420), + [anon_sym___bridge_transfer] = ACTIONS(7420), + [anon_sym___complex] = ACTIONS(7420), + [anon_sym___const] = ACTIONS(7420), + [anon_sym___imag] = ACTIONS(7420), + [anon_sym___kindof] = ACTIONS(7420), + [anon_sym___nonnull] = ACTIONS(7420), + [anon_sym___nullable] = ACTIONS(7420), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7420), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7420), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7420), + [anon_sym___real] = ACTIONS(7420), + [anon_sym___strong] = ACTIONS(7420), + [anon_sym___unsafe_unretained] = ACTIONS(7420), + [anon_sym___unused] = ACTIONS(7420), + [anon_sym___weak] = ACTIONS(7420), + [anon_sym_alignas] = ACTIONS(7420), + [anon_sym__Alignas] = ACTIONS(7420), + [anon_sym_enum] = ACTIONS(7420), + [anon_sym_COLON] = ACTIONS(7422), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7420), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7420), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7420), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7420), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7420), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7420), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7420), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7420), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7420), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7420), + [anon_sym_NS_AVAILABLE] = ACTIONS(7420), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7420), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7420), + [anon_sym_API_AVAILABLE] = ACTIONS(7420), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7420), + [anon_sym_API_DEPRECATED] = ACTIONS(7420), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7420), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7420), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7420), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7420), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7420), + [anon_sym___deprecated_msg] = ACTIONS(7420), + [anon_sym___deprecated_enum_msg] = ACTIONS(7420), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7420), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7420), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7420), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7420), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7420), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7420), + }, + [2987] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2965), + [sym_identifier] = ACTIONS(7426), + [anon_sym_COMMA] = ACTIONS(7428), + [anon_sym_RPAREN] = ACTIONS(7428), + [anon_sym_LPAREN2] = ACTIONS(7428), + [anon_sym_STAR] = ACTIONS(7428), + [anon_sym_CARET] = ACTIONS(7428), + [anon_sym_SEMI] = ACTIONS(7428), + [anon_sym___extension__] = ACTIONS(7426), + [anon_sym_extern] = ACTIONS(7426), + [anon_sym___attribute__] = ACTIONS(7426), + [anon_sym___attribute] = ACTIONS(7426), + [anon_sym_noreturn] = ACTIONS(7426), + [anon_sym_LBRACK] = ACTIONS(7428), + [anon_sym___declspec] = ACTIONS(7426), + [anon_sym___based] = ACTIONS(7426), + [anon_sym_signed] = ACTIONS(7430), + [anon_sym_unsigned] = ACTIONS(7430), + [anon_sym_long] = ACTIONS(7430), + [anon_sym_short] = ACTIONS(7430), + [anon_sym_static] = ACTIONS(7426), + [anon_sym_auto] = ACTIONS(7426), + [anon_sym_register] = ACTIONS(7426), + [anon_sym_inline] = ACTIONS(7426), + [anon_sym___inline] = ACTIONS(7426), + [anon_sym___inline__] = ACTIONS(7426), + [anon_sym___forceinline] = ACTIONS(7426), + [anon_sym_thread_local] = ACTIONS(7426), + [anon_sym___thread] = ACTIONS(7426), + [anon_sym_CG_EXTERN] = ACTIONS(7426), + [anon_sym_CG_INLINE] = ACTIONS(7426), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7426), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7426), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7426), + [anon_sym_IBOutlet] = ACTIONS(7426), + [anon_sym_IBInspectable] = ACTIONS(7426), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7426), + [anon_sym_NS_INLINE] = ACTIONS(7426), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7426), + [anon_sym_OBJC_EXPORT] = ACTIONS(7426), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7426), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7426), + [anon_sym_const] = ACTIONS(7426), + [anon_sym_constexpr] = ACTIONS(7426), + [anon_sym_volatile] = ACTIONS(7426), + [anon_sym_restrict] = ACTIONS(7426), + [anon_sym___restrict__] = ACTIONS(7426), + [anon_sym__Atomic] = ACTIONS(7426), + [anon_sym__Noreturn] = ACTIONS(7426), + [anon_sym__Nonnull] = ACTIONS(7426), + [anon_sym_nullable] = ACTIONS(7426), + [anon_sym__Complex] = ACTIONS(7426), + [anon_sym__Nullable] = ACTIONS(7426), + [anon_sym__Nullable_result] = ACTIONS(7426), + [anon_sym__Null_unspecified] = ACTIONS(7426), + [anon_sym___autoreleasing] = ACTIONS(7426), + [anon_sym___block] = ACTIONS(7426), + [anon_sym___bridge] = ACTIONS(7426), + [anon_sym___bridge_retained] = ACTIONS(7426), + [anon_sym___bridge_transfer] = ACTIONS(7426), + [anon_sym___complex] = ACTIONS(7426), + [anon_sym___const] = ACTIONS(7426), + [anon_sym___imag] = ACTIONS(7426), + [anon_sym___kindof] = ACTIONS(7426), + [anon_sym___nonnull] = ACTIONS(7426), + [anon_sym___nullable] = ACTIONS(7426), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7426), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7426), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7426), + [anon_sym___real] = ACTIONS(7426), + [anon_sym___strong] = ACTIONS(7426), + [anon_sym___unsafe_unretained] = ACTIONS(7426), + [anon_sym___unused] = ACTIONS(7426), + [anon_sym___weak] = ACTIONS(7426), + [anon_sym_alignas] = ACTIONS(7426), + [anon_sym__Alignas] = ACTIONS(7426), + [anon_sym_enum] = ACTIONS(7426), + [anon_sym_COLON] = ACTIONS(7428), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7426), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7426), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7426), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7426), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7426), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7426), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7426), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7426), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7426), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7426), + [anon_sym_NS_AVAILABLE] = ACTIONS(7426), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7426), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7426), + [anon_sym_API_AVAILABLE] = ACTIONS(7426), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7426), + [anon_sym_API_DEPRECATED] = ACTIONS(7426), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7426), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7426), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7426), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7426), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7426), + [anon_sym___deprecated_msg] = ACTIONS(7426), + [anon_sym___deprecated_enum_msg] = ACTIONS(7426), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7426), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7426), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7426), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7426), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7426), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7426), + }, + [2988] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2930), + [sym_identifier] = ACTIONS(7432), + [anon_sym_COMMA] = ACTIONS(7434), + [anon_sym_RPAREN] = ACTIONS(7434), + [anon_sym_LPAREN2] = ACTIONS(7434), + [anon_sym_STAR] = ACTIONS(7434), + [anon_sym_CARET] = ACTIONS(7434), + [anon_sym_SEMI] = ACTIONS(7434), + [anon_sym___extension__] = ACTIONS(7432), + [anon_sym_extern] = ACTIONS(7432), + [anon_sym___attribute__] = ACTIONS(7432), + [anon_sym___attribute] = ACTIONS(7432), + [anon_sym_noreturn] = ACTIONS(7432), + [anon_sym_LBRACK] = ACTIONS(7434), + [anon_sym___declspec] = ACTIONS(7432), + [anon_sym___based] = ACTIONS(7432), + [anon_sym_signed] = ACTIONS(7310), + [anon_sym_unsigned] = ACTIONS(7310), + [anon_sym_long] = ACTIONS(7310), + [anon_sym_short] = ACTIONS(7310), + [anon_sym_static] = ACTIONS(7432), + [anon_sym_auto] = ACTIONS(7432), + [anon_sym_register] = ACTIONS(7432), + [anon_sym_inline] = ACTIONS(7432), + [anon_sym___inline] = ACTIONS(7432), + [anon_sym___inline__] = ACTIONS(7432), + [anon_sym___forceinline] = ACTIONS(7432), + [anon_sym_thread_local] = ACTIONS(7432), + [anon_sym___thread] = ACTIONS(7432), + [anon_sym_CG_EXTERN] = ACTIONS(7432), + [anon_sym_CG_INLINE] = ACTIONS(7432), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7432), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7432), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7432), + [anon_sym_IBOutlet] = ACTIONS(7432), + [anon_sym_IBInspectable] = ACTIONS(7432), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7432), + [anon_sym_NS_INLINE] = ACTIONS(7432), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7432), + [anon_sym_OBJC_EXPORT] = ACTIONS(7432), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7432), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7432), + [anon_sym_const] = ACTIONS(7432), + [anon_sym_constexpr] = ACTIONS(7432), + [anon_sym_volatile] = ACTIONS(7432), + [anon_sym_restrict] = ACTIONS(7432), + [anon_sym___restrict__] = ACTIONS(7432), + [anon_sym__Atomic] = ACTIONS(7432), + [anon_sym__Noreturn] = ACTIONS(7432), + [anon_sym__Nonnull] = ACTIONS(7432), + [anon_sym_nullable] = ACTIONS(7432), + [anon_sym__Complex] = ACTIONS(7432), + [anon_sym__Nullable] = ACTIONS(7432), + [anon_sym__Nullable_result] = ACTIONS(7432), + [anon_sym__Null_unspecified] = ACTIONS(7432), + [anon_sym___autoreleasing] = ACTIONS(7432), + [anon_sym___block] = ACTIONS(7432), + [anon_sym___bridge] = ACTIONS(7432), + [anon_sym___bridge_retained] = ACTIONS(7432), + [anon_sym___bridge_transfer] = ACTIONS(7432), + [anon_sym___complex] = ACTIONS(7432), + [anon_sym___const] = ACTIONS(7432), + [anon_sym___imag] = ACTIONS(7432), + [anon_sym___kindof] = ACTIONS(7432), + [anon_sym___nonnull] = ACTIONS(7432), + [anon_sym___nullable] = ACTIONS(7432), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7432), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7432), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7432), + [anon_sym___real] = ACTIONS(7432), + [anon_sym___strong] = ACTIONS(7432), + [anon_sym___unsafe_unretained] = ACTIONS(7432), + [anon_sym___unused] = ACTIONS(7432), + [anon_sym___weak] = ACTIONS(7432), + [anon_sym_alignas] = ACTIONS(7432), + [anon_sym__Alignas] = ACTIONS(7432), + [anon_sym_enum] = ACTIONS(7432), + [anon_sym_COLON] = ACTIONS(7434), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7432), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7432), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7432), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7432), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7432), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7432), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7432), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7432), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7432), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7432), + [anon_sym_NS_AVAILABLE] = ACTIONS(7432), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7432), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7432), + [anon_sym_API_AVAILABLE] = ACTIONS(7432), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7432), + [anon_sym_API_DEPRECATED] = ACTIONS(7432), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7432), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7432), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7432), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7432), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7432), + [anon_sym___deprecated_msg] = ACTIONS(7432), + [anon_sym___deprecated_enum_msg] = ACTIONS(7432), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7432), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7432), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7432), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7432), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7432), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7432), + }, + [2989] = { + [sym_identifier] = ACTIONS(7436), + [anon_sym_COMMA] = ACTIONS(7438), + [anon_sym_RPAREN] = ACTIONS(7438), + [anon_sym_LPAREN2] = ACTIONS(7438), + [anon_sym_STAR] = ACTIONS(7438), + [anon_sym_CARET] = ACTIONS(7438), + [anon_sym_SEMI] = ACTIONS(7438), + [anon_sym___extension__] = ACTIONS(7436), + [anon_sym_extern] = ACTIONS(7436), + [anon_sym___attribute__] = ACTIONS(7436), + [anon_sym___attribute] = ACTIONS(7436), + [anon_sym_noreturn] = ACTIONS(7436), + [anon_sym_LBRACK] = ACTIONS(7438), + [anon_sym___declspec] = ACTIONS(7436), + [anon_sym___based] = ACTIONS(7436), + [anon_sym_signed] = ACTIONS(7436), + [anon_sym_unsigned] = ACTIONS(7436), + [anon_sym_long] = ACTIONS(7436), + [anon_sym_short] = ACTIONS(7436), + [anon_sym_static] = ACTIONS(7436), + [anon_sym_auto] = ACTIONS(7436), + [anon_sym_register] = ACTIONS(7436), + [anon_sym_inline] = ACTIONS(7436), + [anon_sym___inline] = ACTIONS(7436), + [anon_sym___inline__] = ACTIONS(7436), + [anon_sym___forceinline] = ACTIONS(7436), + [anon_sym_thread_local] = ACTIONS(7436), + [anon_sym___thread] = ACTIONS(7436), + [anon_sym_CG_EXTERN] = ACTIONS(7436), + [anon_sym_CG_INLINE] = ACTIONS(7436), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7436), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7436), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7436), + [anon_sym_IBOutlet] = ACTIONS(7436), + [anon_sym_IBInspectable] = ACTIONS(7436), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7436), + [anon_sym_NS_INLINE] = ACTIONS(7436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7436), + [anon_sym_OBJC_EXPORT] = ACTIONS(7436), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7436), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7436), + [anon_sym_const] = ACTIONS(7436), + [anon_sym_constexpr] = ACTIONS(7436), + [anon_sym_volatile] = ACTIONS(7436), + [anon_sym_restrict] = ACTIONS(7436), + [anon_sym___restrict__] = ACTIONS(7436), + [anon_sym__Atomic] = ACTIONS(7436), + [anon_sym__Noreturn] = ACTIONS(7436), + [anon_sym__Nonnull] = ACTIONS(7436), + [anon_sym_nullable] = ACTIONS(7436), + [anon_sym__Complex] = ACTIONS(7436), + [anon_sym__Nullable] = ACTIONS(7436), + [anon_sym__Nullable_result] = ACTIONS(7436), + [anon_sym__Null_unspecified] = ACTIONS(7436), + [anon_sym___autoreleasing] = ACTIONS(7436), + [anon_sym___block] = ACTIONS(7436), + [anon_sym___bridge] = ACTIONS(7436), + [anon_sym___bridge_retained] = ACTIONS(7436), + [anon_sym___bridge_transfer] = ACTIONS(7436), + [anon_sym___complex] = ACTIONS(7436), + [anon_sym___const] = ACTIONS(7436), + [anon_sym___imag] = ACTIONS(7436), + [anon_sym___kindof] = ACTIONS(7436), + [anon_sym___nonnull] = ACTIONS(7436), + [anon_sym___nullable] = ACTIONS(7436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7436), + [anon_sym___real] = ACTIONS(7436), + [anon_sym___strong] = ACTIONS(7436), + [anon_sym___unsafe_unretained] = ACTIONS(7436), + [anon_sym___unused] = ACTIONS(7436), + [anon_sym___weak] = ACTIONS(7436), + [anon_sym_alignas] = ACTIONS(7436), + [anon_sym__Alignas] = ACTIONS(7436), + [sym_primitive_type] = ACTIONS(7436), + [anon_sym_enum] = ACTIONS(7436), + [anon_sym_COLON] = ACTIONS(7438), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7436), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7436), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7436), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7436), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7436), + [anon_sym_NS_AVAILABLE] = ACTIONS(7436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7436), + [anon_sym_API_AVAILABLE] = ACTIONS(7436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7436), + [anon_sym_API_DEPRECATED] = ACTIONS(7436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7436), + [anon_sym___deprecated_msg] = ACTIONS(7436), + [anon_sym___deprecated_enum_msg] = ACTIONS(7436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7436), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7436), + }, + [2990] = { + [sym_identifier] = ACTIONS(7440), + [anon_sym_COMMA] = ACTIONS(7442), + [anon_sym_RPAREN] = ACTIONS(7442), + [anon_sym_LPAREN2] = ACTIONS(7442), + [anon_sym_STAR] = ACTIONS(7442), + [anon_sym_CARET] = ACTIONS(7442), + [anon_sym_SEMI] = ACTIONS(7442), + [anon_sym___extension__] = ACTIONS(7440), + [anon_sym_extern] = ACTIONS(7440), + [anon_sym___attribute__] = ACTIONS(7440), + [anon_sym___attribute] = ACTIONS(7440), + [anon_sym_noreturn] = ACTIONS(7440), + [anon_sym_LBRACK] = ACTIONS(7442), + [anon_sym___declspec] = ACTIONS(7440), + [anon_sym___based] = ACTIONS(7440), + [anon_sym_signed] = ACTIONS(7440), + [anon_sym_unsigned] = ACTIONS(7440), + [anon_sym_long] = ACTIONS(7440), + [anon_sym_short] = ACTIONS(7440), + [anon_sym_static] = ACTIONS(7440), + [anon_sym_auto] = ACTIONS(7440), + [anon_sym_register] = ACTIONS(7440), + [anon_sym_inline] = ACTIONS(7440), + [anon_sym___inline] = ACTIONS(7440), + [anon_sym___inline__] = ACTIONS(7440), + [anon_sym___forceinline] = ACTIONS(7440), + [anon_sym_thread_local] = ACTIONS(7440), + [anon_sym___thread] = ACTIONS(7440), + [anon_sym_CG_EXTERN] = ACTIONS(7440), + [anon_sym_CG_INLINE] = ACTIONS(7440), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7440), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7440), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7440), + [anon_sym_IBOutlet] = ACTIONS(7440), + [anon_sym_IBInspectable] = ACTIONS(7440), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7440), + [anon_sym_NS_INLINE] = ACTIONS(7440), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7440), + [anon_sym_OBJC_EXPORT] = ACTIONS(7440), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7440), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7440), + [anon_sym_const] = ACTIONS(7440), + [anon_sym_constexpr] = ACTIONS(7440), + [anon_sym_volatile] = ACTIONS(7440), + [anon_sym_restrict] = ACTIONS(7440), + [anon_sym___restrict__] = ACTIONS(7440), + [anon_sym__Atomic] = ACTIONS(7440), + [anon_sym__Noreturn] = ACTIONS(7440), + [anon_sym__Nonnull] = ACTIONS(7440), + [anon_sym_nullable] = ACTIONS(7440), + [anon_sym__Complex] = ACTIONS(7440), + [anon_sym__Nullable] = ACTIONS(7440), + [anon_sym__Nullable_result] = ACTIONS(7440), + [anon_sym__Null_unspecified] = ACTIONS(7440), + [anon_sym___autoreleasing] = ACTIONS(7440), + [anon_sym___block] = ACTIONS(7440), + [anon_sym___bridge] = ACTIONS(7440), + [anon_sym___bridge_retained] = ACTIONS(7440), + [anon_sym___bridge_transfer] = ACTIONS(7440), + [anon_sym___complex] = ACTIONS(7440), + [anon_sym___const] = ACTIONS(7440), + [anon_sym___imag] = ACTIONS(7440), + [anon_sym___kindof] = ACTIONS(7440), + [anon_sym___nonnull] = ACTIONS(7440), + [anon_sym___nullable] = ACTIONS(7440), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7440), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7440), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7440), + [anon_sym___real] = ACTIONS(7440), + [anon_sym___strong] = ACTIONS(7440), + [anon_sym___unsafe_unretained] = ACTIONS(7440), + [anon_sym___unused] = ACTIONS(7440), + [anon_sym___weak] = ACTIONS(7440), + [anon_sym_alignas] = ACTIONS(7440), + [anon_sym__Alignas] = ACTIONS(7440), + [sym_primitive_type] = ACTIONS(7440), + [anon_sym_enum] = ACTIONS(7440), + [anon_sym_COLON] = ACTIONS(7442), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7440), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7440), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7440), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7440), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7440), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7440), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7440), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7440), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7440), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7440), + [anon_sym_NS_AVAILABLE] = ACTIONS(7440), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7440), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7440), + [anon_sym_API_AVAILABLE] = ACTIONS(7440), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7440), + [anon_sym_API_DEPRECATED] = ACTIONS(7440), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7440), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7440), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7440), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7440), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7440), + [anon_sym___deprecated_msg] = ACTIONS(7440), + [anon_sym___deprecated_enum_msg] = ACTIONS(7440), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7440), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7440), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7440), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7440), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7440), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7440), + }, + [2991] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2967), + [sym_identifier] = ACTIONS(7444), + [anon_sym_COMMA] = ACTIONS(7446), + [anon_sym_RPAREN] = ACTIONS(7446), + [anon_sym_LPAREN2] = ACTIONS(7446), + [anon_sym_STAR] = ACTIONS(7446), + [anon_sym_CARET] = ACTIONS(7446), + [anon_sym_SEMI] = ACTIONS(7446), + [anon_sym___extension__] = ACTIONS(7444), + [anon_sym_extern] = ACTIONS(7444), + [anon_sym___attribute__] = ACTIONS(7444), + [anon_sym___attribute] = ACTIONS(7444), + [anon_sym_noreturn] = ACTIONS(7444), + [anon_sym_LBRACK] = ACTIONS(7446), + [anon_sym___declspec] = ACTIONS(7444), + [anon_sym___based] = ACTIONS(7444), + [anon_sym_signed] = ACTIONS(7448), + [anon_sym_unsigned] = ACTIONS(7448), + [anon_sym_long] = ACTIONS(7448), + [anon_sym_short] = ACTIONS(7448), + [anon_sym_static] = ACTIONS(7444), + [anon_sym_auto] = ACTIONS(7444), + [anon_sym_register] = ACTIONS(7444), + [anon_sym_inline] = ACTIONS(7444), + [anon_sym___inline] = ACTIONS(7444), + [anon_sym___inline__] = ACTIONS(7444), + [anon_sym___forceinline] = ACTIONS(7444), + [anon_sym_thread_local] = ACTIONS(7444), + [anon_sym___thread] = ACTIONS(7444), + [anon_sym_CG_EXTERN] = ACTIONS(7444), + [anon_sym_CG_INLINE] = ACTIONS(7444), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7444), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7444), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7444), + [anon_sym_IBOutlet] = ACTIONS(7444), + [anon_sym_IBInspectable] = ACTIONS(7444), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7444), + [anon_sym_NS_INLINE] = ACTIONS(7444), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7444), + [anon_sym_OBJC_EXPORT] = ACTIONS(7444), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7444), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7444), + [anon_sym_const] = ACTIONS(7444), + [anon_sym_constexpr] = ACTIONS(7444), + [anon_sym_volatile] = ACTIONS(7444), + [anon_sym_restrict] = ACTIONS(7444), + [anon_sym___restrict__] = ACTIONS(7444), + [anon_sym__Atomic] = ACTIONS(7444), + [anon_sym__Noreturn] = ACTIONS(7444), + [anon_sym__Nonnull] = ACTIONS(7444), + [anon_sym_nullable] = ACTIONS(7444), + [anon_sym__Complex] = ACTIONS(7444), + [anon_sym__Nullable] = ACTIONS(7444), + [anon_sym__Nullable_result] = ACTIONS(7444), + [anon_sym__Null_unspecified] = ACTIONS(7444), + [anon_sym___autoreleasing] = ACTIONS(7444), + [anon_sym___block] = ACTIONS(7444), + [anon_sym___bridge] = ACTIONS(7444), + [anon_sym___bridge_retained] = ACTIONS(7444), + [anon_sym___bridge_transfer] = ACTIONS(7444), + [anon_sym___complex] = ACTIONS(7444), + [anon_sym___const] = ACTIONS(7444), + [anon_sym___imag] = ACTIONS(7444), + [anon_sym___kindof] = ACTIONS(7444), + [anon_sym___nonnull] = ACTIONS(7444), + [anon_sym___nullable] = ACTIONS(7444), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7444), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7444), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7444), + [anon_sym___real] = ACTIONS(7444), + [anon_sym___strong] = ACTIONS(7444), + [anon_sym___unsafe_unretained] = ACTIONS(7444), + [anon_sym___unused] = ACTIONS(7444), + [anon_sym___weak] = ACTIONS(7444), + [anon_sym_alignas] = ACTIONS(7444), + [anon_sym__Alignas] = ACTIONS(7444), + [anon_sym_enum] = ACTIONS(7444), + [anon_sym_COLON] = ACTIONS(7446), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7444), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7444), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7444), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7444), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7444), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7444), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7444), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7444), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7444), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7444), + [anon_sym_NS_AVAILABLE] = ACTIONS(7444), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7444), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7444), + [anon_sym_API_AVAILABLE] = ACTIONS(7444), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7444), + [anon_sym_API_DEPRECATED] = ACTIONS(7444), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7444), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7444), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7444), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7444), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7444), + [anon_sym___deprecated_msg] = ACTIONS(7444), + [anon_sym___deprecated_enum_msg] = ACTIONS(7444), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7444), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7444), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7444), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7444), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7444), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7444), + }, + [2992] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2975), + [sym_identifier] = ACTIONS(7450), + [anon_sym_COMMA] = ACTIONS(7452), + [anon_sym_RPAREN] = ACTIONS(7452), + [anon_sym_LPAREN2] = ACTIONS(7452), + [anon_sym_STAR] = ACTIONS(7452), + [anon_sym_CARET] = ACTIONS(7452), + [anon_sym_SEMI] = ACTIONS(7452), + [anon_sym___extension__] = ACTIONS(7450), + [anon_sym_extern] = ACTIONS(7450), + [anon_sym___attribute__] = ACTIONS(7450), + [anon_sym___attribute] = ACTIONS(7450), + [anon_sym_noreturn] = ACTIONS(7450), + [anon_sym_LBRACK] = ACTIONS(7452), + [anon_sym___declspec] = ACTIONS(7450), + [anon_sym___based] = ACTIONS(7450), + [anon_sym_signed] = ACTIONS(7454), + [anon_sym_unsigned] = ACTIONS(7454), + [anon_sym_long] = ACTIONS(7454), + [anon_sym_short] = ACTIONS(7454), + [anon_sym_static] = ACTIONS(7450), + [anon_sym_auto] = ACTIONS(7450), + [anon_sym_register] = ACTIONS(7450), + [anon_sym_inline] = ACTIONS(7450), + [anon_sym___inline] = ACTIONS(7450), + [anon_sym___inline__] = ACTIONS(7450), + [anon_sym___forceinline] = ACTIONS(7450), + [anon_sym_thread_local] = ACTIONS(7450), + [anon_sym___thread] = ACTIONS(7450), + [anon_sym_CG_EXTERN] = ACTIONS(7450), + [anon_sym_CG_INLINE] = ACTIONS(7450), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7450), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7450), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7450), + [anon_sym_IBOutlet] = ACTIONS(7450), + [anon_sym_IBInspectable] = ACTIONS(7450), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7450), + [anon_sym_NS_INLINE] = ACTIONS(7450), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7450), + [anon_sym_OBJC_EXPORT] = ACTIONS(7450), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7450), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7450), + [anon_sym_const] = ACTIONS(7450), + [anon_sym_constexpr] = ACTIONS(7450), + [anon_sym_volatile] = ACTIONS(7450), + [anon_sym_restrict] = ACTIONS(7450), + [anon_sym___restrict__] = ACTIONS(7450), + [anon_sym__Atomic] = ACTIONS(7450), + [anon_sym__Noreturn] = ACTIONS(7450), + [anon_sym__Nonnull] = ACTIONS(7450), + [anon_sym_nullable] = ACTIONS(7450), + [anon_sym__Complex] = ACTIONS(7450), + [anon_sym__Nullable] = ACTIONS(7450), + [anon_sym__Nullable_result] = ACTIONS(7450), + [anon_sym__Null_unspecified] = ACTIONS(7450), + [anon_sym___autoreleasing] = ACTIONS(7450), + [anon_sym___block] = ACTIONS(7450), + [anon_sym___bridge] = ACTIONS(7450), + [anon_sym___bridge_retained] = ACTIONS(7450), + [anon_sym___bridge_transfer] = ACTIONS(7450), + [anon_sym___complex] = ACTIONS(7450), + [anon_sym___const] = ACTIONS(7450), + [anon_sym___imag] = ACTIONS(7450), + [anon_sym___kindof] = ACTIONS(7450), + [anon_sym___nonnull] = ACTIONS(7450), + [anon_sym___nullable] = ACTIONS(7450), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7450), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7450), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7450), + [anon_sym___real] = ACTIONS(7450), + [anon_sym___strong] = ACTIONS(7450), + [anon_sym___unsafe_unretained] = ACTIONS(7450), + [anon_sym___unused] = ACTIONS(7450), + [anon_sym___weak] = ACTIONS(7450), + [anon_sym_alignas] = ACTIONS(7450), + [anon_sym__Alignas] = ACTIONS(7450), + [anon_sym_enum] = ACTIONS(7450), + [anon_sym_COLON] = ACTIONS(7452), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7450), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7450), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7450), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7450), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7450), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7450), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7450), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7450), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7450), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7450), + [anon_sym_NS_AVAILABLE] = ACTIONS(7450), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7450), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7450), + [anon_sym_API_AVAILABLE] = ACTIONS(7450), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7450), + [anon_sym_API_DEPRECATED] = ACTIONS(7450), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7450), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7450), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7450), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7450), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7450), + [anon_sym___deprecated_msg] = ACTIONS(7450), + [anon_sym___deprecated_enum_msg] = ACTIONS(7450), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7450), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7450), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7450), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7450), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7450), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7450), + }, + [2993] = { + [sym_identifier] = ACTIONS(7456), + [anon_sym_COMMA] = ACTIONS(7458), + [anon_sym_RPAREN] = ACTIONS(7458), + [anon_sym_LPAREN2] = ACTIONS(7458), + [anon_sym_STAR] = ACTIONS(7458), + [anon_sym_CARET] = ACTIONS(7458), + [anon_sym_SEMI] = ACTIONS(7458), + [anon_sym___extension__] = ACTIONS(7456), + [anon_sym_extern] = ACTIONS(7456), + [anon_sym___attribute__] = ACTIONS(7456), + [anon_sym___attribute] = ACTIONS(7456), + [anon_sym_noreturn] = ACTIONS(7456), + [anon_sym_LBRACK] = ACTIONS(7458), + [anon_sym___declspec] = ACTIONS(7456), + [anon_sym___based] = ACTIONS(7456), + [anon_sym_signed] = ACTIONS(7456), + [anon_sym_unsigned] = ACTIONS(7456), + [anon_sym_long] = ACTIONS(7456), + [anon_sym_short] = ACTIONS(7456), + [anon_sym_static] = ACTIONS(7456), + [anon_sym_auto] = ACTIONS(7456), + [anon_sym_register] = ACTIONS(7456), + [anon_sym_inline] = ACTIONS(7456), + [anon_sym___inline] = ACTIONS(7456), + [anon_sym___inline__] = ACTIONS(7456), + [anon_sym___forceinline] = ACTIONS(7456), + [anon_sym_thread_local] = ACTIONS(7456), + [anon_sym___thread] = ACTIONS(7456), + [anon_sym_CG_EXTERN] = ACTIONS(7456), + [anon_sym_CG_INLINE] = ACTIONS(7456), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7456), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7456), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7456), + [anon_sym_IBOutlet] = ACTIONS(7456), + [anon_sym_IBInspectable] = ACTIONS(7456), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7456), + [anon_sym_NS_INLINE] = ACTIONS(7456), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7456), + [anon_sym_OBJC_EXPORT] = ACTIONS(7456), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7456), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7456), + [anon_sym_const] = ACTIONS(7456), + [anon_sym_constexpr] = ACTIONS(7456), + [anon_sym_volatile] = ACTIONS(7456), + [anon_sym_restrict] = ACTIONS(7456), + [anon_sym___restrict__] = ACTIONS(7456), + [anon_sym__Atomic] = ACTIONS(7456), + [anon_sym__Noreturn] = ACTIONS(7456), + [anon_sym__Nonnull] = ACTIONS(7456), + [anon_sym_nullable] = ACTIONS(7456), + [anon_sym__Complex] = ACTIONS(7456), + [anon_sym__Nullable] = ACTIONS(7456), + [anon_sym__Nullable_result] = ACTIONS(7456), + [anon_sym__Null_unspecified] = ACTIONS(7456), + [anon_sym___autoreleasing] = ACTIONS(7456), + [anon_sym___block] = ACTIONS(7456), + [anon_sym___bridge] = ACTIONS(7456), + [anon_sym___bridge_retained] = ACTIONS(7456), + [anon_sym___bridge_transfer] = ACTIONS(7456), + [anon_sym___complex] = ACTIONS(7456), + [anon_sym___const] = ACTIONS(7456), + [anon_sym___imag] = ACTIONS(7456), + [anon_sym___kindof] = ACTIONS(7456), + [anon_sym___nonnull] = ACTIONS(7456), + [anon_sym___nullable] = ACTIONS(7456), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7456), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7456), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7456), + [anon_sym___real] = ACTIONS(7456), + [anon_sym___strong] = ACTIONS(7456), + [anon_sym___unsafe_unretained] = ACTIONS(7456), + [anon_sym___unused] = ACTIONS(7456), + [anon_sym___weak] = ACTIONS(7456), + [anon_sym_alignas] = ACTIONS(7456), + [anon_sym__Alignas] = ACTIONS(7456), + [sym_primitive_type] = ACTIONS(7456), + [anon_sym_enum] = ACTIONS(7456), + [anon_sym_COLON] = ACTIONS(7458), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7456), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7456), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7456), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7456), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7456), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7456), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7456), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7456), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7456), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7456), + [anon_sym_NS_AVAILABLE] = ACTIONS(7456), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7456), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7456), + [anon_sym_API_AVAILABLE] = ACTIONS(7456), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7456), + [anon_sym_API_DEPRECATED] = ACTIONS(7456), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7456), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7456), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7456), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7456), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7456), + [anon_sym___deprecated_msg] = ACTIONS(7456), + [anon_sym___deprecated_enum_msg] = ACTIONS(7456), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7456), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7456), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7456), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7456), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7456), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7456), + }, + [2994] = { + [sym_identifier] = ACTIONS(7460), + [anon_sym_COMMA] = ACTIONS(7462), + [anon_sym_RPAREN] = ACTIONS(7462), + [anon_sym_LPAREN2] = ACTIONS(7462), + [anon_sym_STAR] = ACTIONS(7462), + [anon_sym_CARET] = ACTIONS(7462), + [anon_sym_SEMI] = ACTIONS(7462), + [anon_sym___extension__] = ACTIONS(7460), + [anon_sym_extern] = ACTIONS(7460), + [anon_sym___attribute__] = ACTIONS(7460), + [anon_sym___attribute] = ACTIONS(7460), + [anon_sym_noreturn] = ACTIONS(7460), + [anon_sym_LBRACK] = ACTIONS(7462), + [anon_sym___declspec] = ACTIONS(7460), + [anon_sym___based] = ACTIONS(7460), + [anon_sym_signed] = ACTIONS(7460), + [anon_sym_unsigned] = ACTIONS(7460), + [anon_sym_long] = ACTIONS(7460), + [anon_sym_short] = ACTIONS(7460), + [anon_sym_static] = ACTIONS(7460), + [anon_sym_auto] = ACTIONS(7460), + [anon_sym_register] = ACTIONS(7460), + [anon_sym_inline] = ACTIONS(7460), + [anon_sym___inline] = ACTIONS(7460), + [anon_sym___inline__] = ACTIONS(7460), + [anon_sym___forceinline] = ACTIONS(7460), + [anon_sym_thread_local] = ACTIONS(7460), + [anon_sym___thread] = ACTIONS(7460), + [anon_sym_CG_EXTERN] = ACTIONS(7460), + [anon_sym_CG_INLINE] = ACTIONS(7460), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7460), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7460), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7460), + [anon_sym_IBOutlet] = ACTIONS(7460), + [anon_sym_IBInspectable] = ACTIONS(7460), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7460), + [anon_sym_NS_INLINE] = ACTIONS(7460), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7460), + [anon_sym_OBJC_EXPORT] = ACTIONS(7460), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7460), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7460), + [anon_sym_const] = ACTIONS(7460), + [anon_sym_constexpr] = ACTIONS(7460), + [anon_sym_volatile] = ACTIONS(7460), + [anon_sym_restrict] = ACTIONS(7460), + [anon_sym___restrict__] = ACTIONS(7460), + [anon_sym__Atomic] = ACTIONS(7460), + [anon_sym__Noreturn] = ACTIONS(7460), + [anon_sym__Nonnull] = ACTIONS(7460), + [anon_sym_nullable] = ACTIONS(7460), + [anon_sym__Complex] = ACTIONS(7460), + [anon_sym__Nullable] = ACTIONS(7460), + [anon_sym__Nullable_result] = ACTIONS(7460), + [anon_sym__Null_unspecified] = ACTIONS(7460), + [anon_sym___autoreleasing] = ACTIONS(7460), + [anon_sym___block] = ACTIONS(7460), + [anon_sym___bridge] = ACTIONS(7460), + [anon_sym___bridge_retained] = ACTIONS(7460), + [anon_sym___bridge_transfer] = ACTIONS(7460), + [anon_sym___complex] = ACTIONS(7460), + [anon_sym___const] = ACTIONS(7460), + [anon_sym___imag] = ACTIONS(7460), + [anon_sym___kindof] = ACTIONS(7460), + [anon_sym___nonnull] = ACTIONS(7460), + [anon_sym___nullable] = ACTIONS(7460), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7460), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7460), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7460), + [anon_sym___real] = ACTIONS(7460), + [anon_sym___strong] = ACTIONS(7460), + [anon_sym___unsafe_unretained] = ACTIONS(7460), + [anon_sym___unused] = ACTIONS(7460), + [anon_sym___weak] = ACTIONS(7460), + [anon_sym_alignas] = ACTIONS(7460), + [anon_sym__Alignas] = ACTIONS(7460), + [sym_primitive_type] = ACTIONS(7460), + [anon_sym_enum] = ACTIONS(7460), + [anon_sym_COLON] = ACTIONS(7462), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7460), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7460), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7460), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7460), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7460), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7460), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7460), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7460), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7460), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7460), + [anon_sym_NS_AVAILABLE] = ACTIONS(7460), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7460), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7460), + [anon_sym_API_AVAILABLE] = ACTIONS(7460), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7460), + [anon_sym_API_DEPRECATED] = ACTIONS(7460), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7460), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7460), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7460), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7460), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7460), + [anon_sym___deprecated_msg] = ACTIONS(7460), + [anon_sym___deprecated_enum_msg] = ACTIONS(7460), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7460), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7460), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7460), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7460), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7460), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7460), + }, + [2995] = { + [sym_identifier] = ACTIONS(7464), + [anon_sym_COMMA] = ACTIONS(7466), + [anon_sym_RPAREN] = ACTIONS(7466), + [anon_sym_LPAREN2] = ACTIONS(7466), + [anon_sym_STAR] = ACTIONS(7466), + [anon_sym_CARET] = ACTIONS(7466), + [anon_sym_SEMI] = ACTIONS(7466), + [anon_sym___extension__] = ACTIONS(7464), + [anon_sym_extern] = ACTIONS(7464), + [anon_sym___attribute__] = ACTIONS(7464), + [anon_sym___attribute] = ACTIONS(7464), + [anon_sym_noreturn] = ACTIONS(7464), + [anon_sym_LBRACK] = ACTIONS(7466), + [anon_sym___declspec] = ACTIONS(7464), + [anon_sym___based] = ACTIONS(7464), + [anon_sym_signed] = ACTIONS(7464), + [anon_sym_unsigned] = ACTIONS(7464), + [anon_sym_long] = ACTIONS(7464), + [anon_sym_short] = ACTIONS(7464), + [anon_sym_static] = ACTIONS(7464), + [anon_sym_auto] = ACTIONS(7464), + [anon_sym_register] = ACTIONS(7464), + [anon_sym_inline] = ACTIONS(7464), + [anon_sym___inline] = ACTIONS(7464), + [anon_sym___inline__] = ACTIONS(7464), + [anon_sym___forceinline] = ACTIONS(7464), + [anon_sym_thread_local] = ACTIONS(7464), + [anon_sym___thread] = ACTIONS(7464), + [anon_sym_CG_EXTERN] = ACTIONS(7464), + [anon_sym_CG_INLINE] = ACTIONS(7464), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7464), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7464), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7464), + [anon_sym_IBOutlet] = ACTIONS(7464), + [anon_sym_IBInspectable] = ACTIONS(7464), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7464), + [anon_sym_NS_INLINE] = ACTIONS(7464), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7464), + [anon_sym_OBJC_EXPORT] = ACTIONS(7464), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7464), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7464), + [anon_sym_const] = ACTIONS(7464), + [anon_sym_constexpr] = ACTIONS(7464), + [anon_sym_volatile] = ACTIONS(7464), + [anon_sym_restrict] = ACTIONS(7464), + [anon_sym___restrict__] = ACTIONS(7464), + [anon_sym__Atomic] = ACTIONS(7464), + [anon_sym__Noreturn] = ACTIONS(7464), + [anon_sym__Nonnull] = ACTIONS(7464), + [anon_sym_nullable] = ACTIONS(7464), + [anon_sym__Complex] = ACTIONS(7464), + [anon_sym__Nullable] = ACTIONS(7464), + [anon_sym__Nullable_result] = ACTIONS(7464), + [anon_sym__Null_unspecified] = ACTIONS(7464), + [anon_sym___autoreleasing] = ACTIONS(7464), + [anon_sym___block] = ACTIONS(7464), + [anon_sym___bridge] = ACTIONS(7464), + [anon_sym___bridge_retained] = ACTIONS(7464), + [anon_sym___bridge_transfer] = ACTIONS(7464), + [anon_sym___complex] = ACTIONS(7464), + [anon_sym___const] = ACTIONS(7464), + [anon_sym___imag] = ACTIONS(7464), + [anon_sym___kindof] = ACTIONS(7464), + [anon_sym___nonnull] = ACTIONS(7464), + [anon_sym___nullable] = ACTIONS(7464), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7464), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7464), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7464), + [anon_sym___real] = ACTIONS(7464), + [anon_sym___strong] = ACTIONS(7464), + [anon_sym___unsafe_unretained] = ACTIONS(7464), + [anon_sym___unused] = ACTIONS(7464), + [anon_sym___weak] = ACTIONS(7464), + [anon_sym_alignas] = ACTIONS(7464), + [anon_sym__Alignas] = ACTIONS(7464), + [sym_primitive_type] = ACTIONS(7464), + [anon_sym_enum] = ACTIONS(7464), + [anon_sym_COLON] = ACTIONS(7466), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7464), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7464), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7464), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7464), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7464), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7464), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7464), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7464), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7464), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7464), + [anon_sym_NS_AVAILABLE] = ACTIONS(7464), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7464), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7464), + [anon_sym_API_AVAILABLE] = ACTIONS(7464), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7464), + [anon_sym_API_DEPRECATED] = ACTIONS(7464), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7464), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7464), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7464), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7464), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7464), + [anon_sym___deprecated_msg] = ACTIONS(7464), + [anon_sym___deprecated_enum_msg] = ACTIONS(7464), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7464), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7464), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7464), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7464), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7464), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7464), + }, + [2996] = { + [sym_identifier] = ACTIONS(7468), + [anon_sym_COMMA] = ACTIONS(7470), + [anon_sym_RPAREN] = ACTIONS(7470), + [anon_sym_LPAREN2] = ACTIONS(7470), + [anon_sym_STAR] = ACTIONS(7470), + [anon_sym_CARET] = ACTIONS(7470), + [anon_sym_SEMI] = ACTIONS(7470), + [anon_sym___extension__] = ACTIONS(7468), + [anon_sym_extern] = ACTIONS(7468), + [anon_sym___attribute__] = ACTIONS(7468), + [anon_sym___attribute] = ACTIONS(7468), + [anon_sym_noreturn] = ACTIONS(7468), + [anon_sym_LBRACK] = ACTIONS(7470), + [anon_sym___declspec] = ACTIONS(7468), + [anon_sym___based] = ACTIONS(7468), + [anon_sym_signed] = ACTIONS(7468), + [anon_sym_unsigned] = ACTIONS(7468), + [anon_sym_long] = ACTIONS(7468), + [anon_sym_short] = ACTIONS(7468), + [anon_sym_static] = ACTIONS(7468), + [anon_sym_auto] = ACTIONS(7468), + [anon_sym_register] = ACTIONS(7468), + [anon_sym_inline] = ACTIONS(7468), + [anon_sym___inline] = ACTIONS(7468), + [anon_sym___inline__] = ACTIONS(7468), + [anon_sym___forceinline] = ACTIONS(7468), + [anon_sym_thread_local] = ACTIONS(7468), + [anon_sym___thread] = ACTIONS(7468), + [anon_sym_CG_EXTERN] = ACTIONS(7468), + [anon_sym_CG_INLINE] = ACTIONS(7468), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7468), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7468), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7468), + [anon_sym_IBOutlet] = ACTIONS(7468), + [anon_sym_IBInspectable] = ACTIONS(7468), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7468), + [anon_sym_NS_INLINE] = ACTIONS(7468), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7468), + [anon_sym_OBJC_EXPORT] = ACTIONS(7468), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7468), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7468), + [anon_sym_const] = ACTIONS(7468), + [anon_sym_constexpr] = ACTIONS(7468), + [anon_sym_volatile] = ACTIONS(7468), + [anon_sym_restrict] = ACTIONS(7468), + [anon_sym___restrict__] = ACTIONS(7468), + [anon_sym__Atomic] = ACTIONS(7468), + [anon_sym__Noreturn] = ACTIONS(7468), + [anon_sym__Nonnull] = ACTIONS(7468), + [anon_sym_nullable] = ACTIONS(7468), + [anon_sym__Complex] = ACTIONS(7468), + [anon_sym__Nullable] = ACTIONS(7468), + [anon_sym__Nullable_result] = ACTIONS(7468), + [anon_sym__Null_unspecified] = ACTIONS(7468), + [anon_sym___autoreleasing] = ACTIONS(7468), + [anon_sym___block] = ACTIONS(7468), + [anon_sym___bridge] = ACTIONS(7468), + [anon_sym___bridge_retained] = ACTIONS(7468), + [anon_sym___bridge_transfer] = ACTIONS(7468), + [anon_sym___complex] = ACTIONS(7468), + [anon_sym___const] = ACTIONS(7468), + [anon_sym___imag] = ACTIONS(7468), + [anon_sym___kindof] = ACTIONS(7468), + [anon_sym___nonnull] = ACTIONS(7468), + [anon_sym___nullable] = ACTIONS(7468), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7468), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7468), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7468), + [anon_sym___real] = ACTIONS(7468), + [anon_sym___strong] = ACTIONS(7468), + [anon_sym___unsafe_unretained] = ACTIONS(7468), + [anon_sym___unused] = ACTIONS(7468), + [anon_sym___weak] = ACTIONS(7468), + [anon_sym_alignas] = ACTIONS(7468), + [anon_sym__Alignas] = ACTIONS(7468), + [sym_primitive_type] = ACTIONS(7468), + [anon_sym_enum] = ACTIONS(7468), + [anon_sym_COLON] = ACTIONS(7470), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7468), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7468), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7468), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7468), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7468), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7468), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7468), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7468), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7468), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7468), + [anon_sym_NS_AVAILABLE] = ACTIONS(7468), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7468), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7468), + [anon_sym_API_AVAILABLE] = ACTIONS(7468), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7468), + [anon_sym_API_DEPRECATED] = ACTIONS(7468), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7468), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7468), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7468), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7468), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7468), + [anon_sym___deprecated_msg] = ACTIONS(7468), + [anon_sym___deprecated_enum_msg] = ACTIONS(7468), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7468), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7468), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7468), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7468), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7468), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7468), + }, + [2997] = { + [sym_identifier] = ACTIONS(7472), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_STAR] = ACTIONS(7474), + [anon_sym_CARET] = ACTIONS(7474), + [anon_sym_SEMI] = ACTIONS(7474), + [anon_sym___extension__] = ACTIONS(7472), + [anon_sym_extern] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(7472), + [anon_sym___attribute] = ACTIONS(7472), + [anon_sym_noreturn] = ACTIONS(7472), + [anon_sym_LBRACK] = ACTIONS(7474), + [anon_sym___declspec] = ACTIONS(7472), + [anon_sym___based] = ACTIONS(7472), + [anon_sym_signed] = ACTIONS(7472), + [anon_sym_unsigned] = ACTIONS(7472), + [anon_sym_long] = ACTIONS(7472), + [anon_sym_short] = ACTIONS(7472), + [anon_sym_static] = ACTIONS(7472), + [anon_sym_auto] = ACTIONS(7472), + [anon_sym_register] = ACTIONS(7472), + [anon_sym_inline] = ACTIONS(7472), + [anon_sym___inline] = ACTIONS(7472), + [anon_sym___inline__] = ACTIONS(7472), + [anon_sym___forceinline] = ACTIONS(7472), + [anon_sym_thread_local] = ACTIONS(7472), + [anon_sym___thread] = ACTIONS(7472), + [anon_sym_CG_EXTERN] = ACTIONS(7472), + [anon_sym_CG_INLINE] = ACTIONS(7472), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7472), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7472), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7472), + [anon_sym_IBOutlet] = ACTIONS(7472), + [anon_sym_IBInspectable] = ACTIONS(7472), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7472), + [anon_sym_NS_INLINE] = ACTIONS(7472), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7472), + [anon_sym_OBJC_EXPORT] = ACTIONS(7472), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7472), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7472), + [anon_sym_const] = ACTIONS(7472), + [anon_sym_constexpr] = ACTIONS(7472), + [anon_sym_volatile] = ACTIONS(7472), + [anon_sym_restrict] = ACTIONS(7472), + [anon_sym___restrict__] = ACTIONS(7472), + [anon_sym__Atomic] = ACTIONS(7472), + [anon_sym__Noreturn] = ACTIONS(7472), + [anon_sym__Nonnull] = ACTIONS(7472), + [anon_sym_nullable] = ACTIONS(7472), + [anon_sym__Complex] = ACTIONS(7472), + [anon_sym__Nullable] = ACTIONS(7472), + [anon_sym__Nullable_result] = ACTIONS(7472), + [anon_sym__Null_unspecified] = ACTIONS(7472), + [anon_sym___autoreleasing] = ACTIONS(7472), + [anon_sym___block] = ACTIONS(7472), + [anon_sym___bridge] = ACTIONS(7472), + [anon_sym___bridge_retained] = ACTIONS(7472), + [anon_sym___bridge_transfer] = ACTIONS(7472), + [anon_sym___complex] = ACTIONS(7472), + [anon_sym___const] = ACTIONS(7472), + [anon_sym___imag] = ACTIONS(7472), + [anon_sym___kindof] = ACTIONS(7472), + [anon_sym___nonnull] = ACTIONS(7472), + [anon_sym___nullable] = ACTIONS(7472), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7472), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7472), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7472), + [anon_sym___real] = ACTIONS(7472), + [anon_sym___strong] = ACTIONS(7472), + [anon_sym___unsafe_unretained] = ACTIONS(7472), + [anon_sym___unused] = ACTIONS(7472), + [anon_sym___weak] = ACTIONS(7472), + [anon_sym_alignas] = ACTIONS(7472), + [anon_sym__Alignas] = ACTIONS(7472), + [sym_primitive_type] = ACTIONS(7472), + [anon_sym_enum] = ACTIONS(7472), + [anon_sym_COLON] = ACTIONS(7474), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7472), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7472), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7472), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7472), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7472), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7472), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7472), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7472), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7472), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7472), + [anon_sym_NS_AVAILABLE] = ACTIONS(7472), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7472), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7472), + [anon_sym_API_AVAILABLE] = ACTIONS(7472), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7472), + [anon_sym_API_DEPRECATED] = ACTIONS(7472), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7472), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7472), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7472), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7472), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7472), + [anon_sym___deprecated_msg] = ACTIONS(7472), + [anon_sym___deprecated_enum_msg] = ACTIONS(7472), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7472), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7472), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7472), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7472), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7472), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7472), + }, + [2998] = { + [sym_identifier] = ACTIONS(7476), + [anon_sym_COMMA] = ACTIONS(7478), + [anon_sym_RPAREN] = ACTIONS(7478), + [anon_sym_LPAREN2] = ACTIONS(7478), + [anon_sym_STAR] = ACTIONS(7478), + [anon_sym_CARET] = ACTIONS(7478), + [anon_sym_SEMI] = ACTIONS(7478), + [anon_sym___extension__] = ACTIONS(7476), + [anon_sym_extern] = ACTIONS(7476), + [anon_sym___attribute__] = ACTIONS(7476), + [anon_sym___attribute] = ACTIONS(7476), + [anon_sym_noreturn] = ACTIONS(7476), + [anon_sym_LBRACK] = ACTIONS(7478), + [anon_sym___declspec] = ACTIONS(7476), + [anon_sym___based] = ACTIONS(7476), + [anon_sym_signed] = ACTIONS(7476), + [anon_sym_unsigned] = ACTIONS(7476), + [anon_sym_long] = ACTIONS(7476), + [anon_sym_short] = ACTIONS(7476), + [anon_sym_static] = ACTIONS(7476), + [anon_sym_auto] = ACTIONS(7476), + [anon_sym_register] = ACTIONS(7476), + [anon_sym_inline] = ACTIONS(7476), + [anon_sym___inline] = ACTIONS(7476), + [anon_sym___inline__] = ACTIONS(7476), + [anon_sym___forceinline] = ACTIONS(7476), + [anon_sym_thread_local] = ACTIONS(7476), + [anon_sym___thread] = ACTIONS(7476), + [anon_sym_CG_EXTERN] = ACTIONS(7476), + [anon_sym_CG_INLINE] = ACTIONS(7476), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7476), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7476), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7476), + [anon_sym_IBOutlet] = ACTIONS(7476), + [anon_sym_IBInspectable] = ACTIONS(7476), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7476), + [anon_sym_NS_INLINE] = ACTIONS(7476), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7476), + [anon_sym_OBJC_EXPORT] = ACTIONS(7476), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7476), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7476), + [anon_sym_const] = ACTIONS(7476), + [anon_sym_constexpr] = ACTIONS(7476), + [anon_sym_volatile] = ACTIONS(7476), + [anon_sym_restrict] = ACTIONS(7476), + [anon_sym___restrict__] = ACTIONS(7476), + [anon_sym__Atomic] = ACTIONS(7476), + [anon_sym__Noreturn] = ACTIONS(7476), + [anon_sym__Nonnull] = ACTIONS(7476), + [anon_sym_nullable] = ACTIONS(7476), + [anon_sym__Complex] = ACTIONS(7476), + [anon_sym__Nullable] = ACTIONS(7476), + [anon_sym__Nullable_result] = ACTIONS(7476), + [anon_sym__Null_unspecified] = ACTIONS(7476), + [anon_sym___autoreleasing] = ACTIONS(7476), + [anon_sym___block] = ACTIONS(7476), + [anon_sym___bridge] = ACTIONS(7476), + [anon_sym___bridge_retained] = ACTIONS(7476), + [anon_sym___bridge_transfer] = ACTIONS(7476), + [anon_sym___complex] = ACTIONS(7476), + [anon_sym___const] = ACTIONS(7476), + [anon_sym___imag] = ACTIONS(7476), + [anon_sym___kindof] = ACTIONS(7476), + [anon_sym___nonnull] = ACTIONS(7476), + [anon_sym___nullable] = ACTIONS(7476), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7476), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7476), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7476), + [anon_sym___real] = ACTIONS(7476), + [anon_sym___strong] = ACTIONS(7476), + [anon_sym___unsafe_unretained] = ACTIONS(7476), + [anon_sym___unused] = ACTIONS(7476), + [anon_sym___weak] = ACTIONS(7476), + [anon_sym_alignas] = ACTIONS(7476), + [anon_sym__Alignas] = ACTIONS(7476), + [sym_primitive_type] = ACTIONS(7476), + [anon_sym_enum] = ACTIONS(7476), + [anon_sym_COLON] = ACTIONS(7478), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7476), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7476), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7476), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7476), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7476), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7476), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7476), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7476), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7476), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7476), + [anon_sym_NS_AVAILABLE] = ACTIONS(7476), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7476), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7476), + [anon_sym_API_AVAILABLE] = ACTIONS(7476), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7476), + [anon_sym_API_DEPRECATED] = ACTIONS(7476), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7476), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7476), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7476), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7476), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7476), + [anon_sym___deprecated_msg] = ACTIONS(7476), + [anon_sym___deprecated_enum_msg] = ACTIONS(7476), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7476), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7476), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7476), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7476), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7476), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7476), + }, + [2999] = { + [sym_identifier] = ACTIONS(7480), + [anon_sym_COMMA] = ACTIONS(7482), + [anon_sym_RPAREN] = ACTIONS(7482), + [anon_sym_LPAREN2] = ACTIONS(7482), + [anon_sym_STAR] = ACTIONS(7482), + [anon_sym_CARET] = ACTIONS(7482), + [anon_sym_SEMI] = ACTIONS(7482), + [anon_sym___extension__] = ACTIONS(7480), + [anon_sym_extern] = ACTIONS(7480), + [anon_sym___attribute__] = ACTIONS(7480), + [anon_sym___attribute] = ACTIONS(7480), + [anon_sym_noreturn] = ACTIONS(7480), + [anon_sym_LBRACK] = ACTIONS(7482), + [anon_sym___declspec] = ACTIONS(7480), + [anon_sym___based] = ACTIONS(7480), + [anon_sym_signed] = ACTIONS(7480), + [anon_sym_unsigned] = ACTIONS(7480), + [anon_sym_long] = ACTIONS(7480), + [anon_sym_short] = ACTIONS(7480), + [anon_sym_static] = ACTIONS(7480), + [anon_sym_auto] = ACTIONS(7480), + [anon_sym_register] = ACTIONS(7480), + [anon_sym_inline] = ACTIONS(7480), + [anon_sym___inline] = ACTIONS(7480), + [anon_sym___inline__] = ACTIONS(7480), + [anon_sym___forceinline] = ACTIONS(7480), + [anon_sym_thread_local] = ACTIONS(7480), + [anon_sym___thread] = ACTIONS(7480), + [anon_sym_CG_EXTERN] = ACTIONS(7480), + [anon_sym_CG_INLINE] = ACTIONS(7480), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7480), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7480), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7480), + [anon_sym_IBOutlet] = ACTIONS(7480), + [anon_sym_IBInspectable] = ACTIONS(7480), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7480), + [anon_sym_NS_INLINE] = ACTIONS(7480), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7480), + [anon_sym_OBJC_EXPORT] = ACTIONS(7480), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7480), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7480), + [anon_sym_const] = ACTIONS(7480), + [anon_sym_constexpr] = ACTIONS(7480), + [anon_sym_volatile] = ACTIONS(7480), + [anon_sym_restrict] = ACTIONS(7480), + [anon_sym___restrict__] = ACTIONS(7480), + [anon_sym__Atomic] = ACTIONS(7480), + [anon_sym__Noreturn] = ACTIONS(7480), + [anon_sym__Nonnull] = ACTIONS(7480), + [anon_sym_nullable] = ACTIONS(7480), + [anon_sym__Complex] = ACTIONS(7480), + [anon_sym__Nullable] = ACTIONS(7480), + [anon_sym__Nullable_result] = ACTIONS(7480), + [anon_sym__Null_unspecified] = ACTIONS(7480), + [anon_sym___autoreleasing] = ACTIONS(7480), + [anon_sym___block] = ACTIONS(7480), + [anon_sym___bridge] = ACTIONS(7480), + [anon_sym___bridge_retained] = ACTIONS(7480), + [anon_sym___bridge_transfer] = ACTIONS(7480), + [anon_sym___complex] = ACTIONS(7480), + [anon_sym___const] = ACTIONS(7480), + [anon_sym___imag] = ACTIONS(7480), + [anon_sym___kindof] = ACTIONS(7480), + [anon_sym___nonnull] = ACTIONS(7480), + [anon_sym___nullable] = ACTIONS(7480), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7480), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7480), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7480), + [anon_sym___real] = ACTIONS(7480), + [anon_sym___strong] = ACTIONS(7480), + [anon_sym___unsafe_unretained] = ACTIONS(7480), + [anon_sym___unused] = ACTIONS(7480), + [anon_sym___weak] = ACTIONS(7480), + [anon_sym_alignas] = ACTIONS(7480), + [anon_sym__Alignas] = ACTIONS(7480), + [sym_primitive_type] = ACTIONS(7480), + [anon_sym_enum] = ACTIONS(7480), + [anon_sym_COLON] = ACTIONS(7482), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7480), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7480), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7480), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7480), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7480), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7480), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7480), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7480), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7480), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7480), + [anon_sym_NS_AVAILABLE] = ACTIONS(7480), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7480), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7480), + [anon_sym_API_AVAILABLE] = ACTIONS(7480), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7480), + [anon_sym_API_DEPRECATED] = ACTIONS(7480), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7480), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7480), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7480), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7480), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7480), + [anon_sym___deprecated_msg] = ACTIONS(7480), + [anon_sym___deprecated_enum_msg] = ACTIONS(7480), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7480), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7480), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7480), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7480), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7480), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7480), + }, + [3000] = { + [sym_identifier] = ACTIONS(7484), + [anon_sym_COMMA] = ACTIONS(7486), + [anon_sym_RPAREN] = ACTIONS(7486), + [anon_sym_LPAREN2] = ACTIONS(7486), + [anon_sym_STAR] = ACTIONS(7486), + [anon_sym_CARET] = ACTIONS(7486), + [anon_sym_SEMI] = ACTIONS(7486), + [anon_sym___extension__] = ACTIONS(7484), + [anon_sym_extern] = ACTIONS(7484), + [anon_sym___attribute__] = ACTIONS(7484), + [anon_sym___attribute] = ACTIONS(7484), + [anon_sym_noreturn] = ACTIONS(7484), + [anon_sym_LBRACK] = ACTIONS(7486), + [anon_sym___declspec] = ACTIONS(7484), + [anon_sym___based] = ACTIONS(7484), + [anon_sym_signed] = ACTIONS(7484), + [anon_sym_unsigned] = ACTIONS(7484), + [anon_sym_long] = ACTIONS(7484), + [anon_sym_short] = ACTIONS(7484), + [anon_sym_static] = ACTIONS(7484), + [anon_sym_auto] = ACTIONS(7484), + [anon_sym_register] = ACTIONS(7484), + [anon_sym_inline] = ACTIONS(7484), + [anon_sym___inline] = ACTIONS(7484), + [anon_sym___inline__] = ACTIONS(7484), + [anon_sym___forceinline] = ACTIONS(7484), + [anon_sym_thread_local] = ACTIONS(7484), + [anon_sym___thread] = ACTIONS(7484), + [anon_sym_CG_EXTERN] = ACTIONS(7484), + [anon_sym_CG_INLINE] = ACTIONS(7484), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7484), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7484), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7484), + [anon_sym_IBOutlet] = ACTIONS(7484), + [anon_sym_IBInspectable] = ACTIONS(7484), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7484), + [anon_sym_NS_INLINE] = ACTIONS(7484), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7484), + [anon_sym_OBJC_EXPORT] = ACTIONS(7484), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7484), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7484), + [anon_sym_const] = ACTIONS(7484), + [anon_sym_constexpr] = ACTIONS(7484), + [anon_sym_volatile] = ACTIONS(7484), + [anon_sym_restrict] = ACTIONS(7484), + [anon_sym___restrict__] = ACTIONS(7484), + [anon_sym__Atomic] = ACTIONS(7484), + [anon_sym__Noreturn] = ACTIONS(7484), + [anon_sym__Nonnull] = ACTIONS(7484), + [anon_sym_nullable] = ACTIONS(7484), + [anon_sym__Complex] = ACTIONS(7484), + [anon_sym__Nullable] = ACTIONS(7484), + [anon_sym__Nullable_result] = ACTIONS(7484), + [anon_sym__Null_unspecified] = ACTIONS(7484), + [anon_sym___autoreleasing] = ACTIONS(7484), + [anon_sym___block] = ACTIONS(7484), + [anon_sym___bridge] = ACTIONS(7484), + [anon_sym___bridge_retained] = ACTIONS(7484), + [anon_sym___bridge_transfer] = ACTIONS(7484), + [anon_sym___complex] = ACTIONS(7484), + [anon_sym___const] = ACTIONS(7484), + [anon_sym___imag] = ACTIONS(7484), + [anon_sym___kindof] = ACTIONS(7484), + [anon_sym___nonnull] = ACTIONS(7484), + [anon_sym___nullable] = ACTIONS(7484), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7484), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7484), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7484), + [anon_sym___real] = ACTIONS(7484), + [anon_sym___strong] = ACTIONS(7484), + [anon_sym___unsafe_unretained] = ACTIONS(7484), + [anon_sym___unused] = ACTIONS(7484), + [anon_sym___weak] = ACTIONS(7484), + [anon_sym_alignas] = ACTIONS(7484), + [anon_sym__Alignas] = ACTIONS(7484), + [sym_primitive_type] = ACTIONS(7484), + [anon_sym_enum] = ACTIONS(7484), + [anon_sym_COLON] = ACTIONS(7486), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7484), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7484), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7484), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7484), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7484), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7484), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7484), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7484), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7484), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7484), + [anon_sym_NS_AVAILABLE] = ACTIONS(7484), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7484), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7484), + [anon_sym_API_AVAILABLE] = ACTIONS(7484), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7484), + [anon_sym_API_DEPRECATED] = ACTIONS(7484), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7484), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7484), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7484), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7484), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7484), + [anon_sym___deprecated_msg] = ACTIONS(7484), + [anon_sym___deprecated_enum_msg] = ACTIONS(7484), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7484), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7484), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7484), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7484), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7484), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7484), + }, + [3001] = { + [sym_identifier] = ACTIONS(7488), + [anon_sym_COMMA] = ACTIONS(7490), + [anon_sym_RPAREN] = ACTIONS(7490), + [anon_sym_LPAREN2] = ACTIONS(7490), + [anon_sym_STAR] = ACTIONS(7490), + [anon_sym_CARET] = ACTIONS(7490), + [anon_sym_SEMI] = ACTIONS(7490), + [anon_sym___extension__] = ACTIONS(7488), + [anon_sym_extern] = ACTIONS(7488), + [anon_sym___attribute__] = ACTIONS(7488), + [anon_sym___attribute] = ACTIONS(7488), + [anon_sym_noreturn] = ACTIONS(7488), + [anon_sym_LBRACK] = ACTIONS(7490), + [anon_sym___declspec] = ACTIONS(7488), + [anon_sym___based] = ACTIONS(7488), + [anon_sym_signed] = ACTIONS(7488), + [anon_sym_unsigned] = ACTIONS(7488), + [anon_sym_long] = ACTIONS(7488), + [anon_sym_short] = ACTIONS(7488), + [anon_sym_static] = ACTIONS(7488), + [anon_sym_auto] = ACTIONS(7488), + [anon_sym_register] = ACTIONS(7488), + [anon_sym_inline] = ACTIONS(7488), + [anon_sym___inline] = ACTIONS(7488), + [anon_sym___inline__] = ACTIONS(7488), + [anon_sym___forceinline] = ACTIONS(7488), + [anon_sym_thread_local] = ACTIONS(7488), + [anon_sym___thread] = ACTIONS(7488), + [anon_sym_CG_EXTERN] = ACTIONS(7488), + [anon_sym_CG_INLINE] = ACTIONS(7488), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7488), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7488), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7488), + [anon_sym_IBOutlet] = ACTIONS(7488), + [anon_sym_IBInspectable] = ACTIONS(7488), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7488), + [anon_sym_NS_INLINE] = ACTIONS(7488), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7488), + [anon_sym_OBJC_EXPORT] = ACTIONS(7488), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7488), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7488), + [anon_sym_const] = ACTIONS(7488), + [anon_sym_constexpr] = ACTIONS(7488), + [anon_sym_volatile] = ACTIONS(7488), + [anon_sym_restrict] = ACTIONS(7488), + [anon_sym___restrict__] = ACTIONS(7488), + [anon_sym__Atomic] = ACTIONS(7488), + [anon_sym__Noreturn] = ACTIONS(7488), + [anon_sym__Nonnull] = ACTIONS(7488), + [anon_sym_nullable] = ACTIONS(7488), + [anon_sym__Complex] = ACTIONS(7488), + [anon_sym__Nullable] = ACTIONS(7488), + [anon_sym__Nullable_result] = ACTIONS(7488), + [anon_sym__Null_unspecified] = ACTIONS(7488), + [anon_sym___autoreleasing] = ACTIONS(7488), + [anon_sym___block] = ACTIONS(7488), + [anon_sym___bridge] = ACTIONS(7488), + [anon_sym___bridge_retained] = ACTIONS(7488), + [anon_sym___bridge_transfer] = ACTIONS(7488), + [anon_sym___complex] = ACTIONS(7488), + [anon_sym___const] = ACTIONS(7488), + [anon_sym___imag] = ACTIONS(7488), + [anon_sym___kindof] = ACTIONS(7488), + [anon_sym___nonnull] = ACTIONS(7488), + [anon_sym___nullable] = ACTIONS(7488), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7488), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7488), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7488), + [anon_sym___real] = ACTIONS(7488), + [anon_sym___strong] = ACTIONS(7488), + [anon_sym___unsafe_unretained] = ACTIONS(7488), + [anon_sym___unused] = ACTIONS(7488), + [anon_sym___weak] = ACTIONS(7488), + [anon_sym_alignas] = ACTIONS(7488), + [anon_sym__Alignas] = ACTIONS(7488), + [sym_primitive_type] = ACTIONS(7488), + [anon_sym_enum] = ACTIONS(7488), + [anon_sym_COLON] = ACTIONS(7490), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7488), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7488), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7488), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7488), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7488), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7488), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7488), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7488), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7488), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7488), + [anon_sym_NS_AVAILABLE] = ACTIONS(7488), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7488), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7488), + [anon_sym_API_AVAILABLE] = ACTIONS(7488), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7488), + [anon_sym_API_DEPRECATED] = ACTIONS(7488), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7488), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7488), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7488), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7488), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7488), + [anon_sym___deprecated_msg] = ACTIONS(7488), + [anon_sym___deprecated_enum_msg] = ACTIONS(7488), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7488), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7488), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7488), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7488), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7488), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7488), + }, + [3002] = { + [sym_identifier] = ACTIONS(7492), + [anon_sym_COMMA] = ACTIONS(7494), + [anon_sym_RPAREN] = ACTIONS(7494), + [anon_sym_LPAREN2] = ACTIONS(7494), + [anon_sym_STAR] = ACTIONS(7494), + [anon_sym_CARET] = ACTIONS(7494), + [anon_sym_SEMI] = ACTIONS(7494), + [anon_sym___extension__] = ACTIONS(7492), + [anon_sym_extern] = ACTIONS(7492), + [anon_sym___attribute__] = ACTIONS(7492), + [anon_sym___attribute] = ACTIONS(7492), + [anon_sym_noreturn] = ACTIONS(7492), + [anon_sym_LBRACK] = ACTIONS(7494), + [anon_sym___declspec] = ACTIONS(7492), + [anon_sym___based] = ACTIONS(7492), + [anon_sym_signed] = ACTIONS(7492), + [anon_sym_unsigned] = ACTIONS(7492), + [anon_sym_long] = ACTIONS(7492), + [anon_sym_short] = ACTIONS(7492), + [anon_sym_static] = ACTIONS(7492), + [anon_sym_auto] = ACTIONS(7492), + [anon_sym_register] = ACTIONS(7492), + [anon_sym_inline] = ACTIONS(7492), + [anon_sym___inline] = ACTIONS(7492), + [anon_sym___inline__] = ACTIONS(7492), + [anon_sym___forceinline] = ACTIONS(7492), + [anon_sym_thread_local] = ACTIONS(7492), + [anon_sym___thread] = ACTIONS(7492), + [anon_sym_CG_EXTERN] = ACTIONS(7492), + [anon_sym_CG_INLINE] = ACTIONS(7492), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7492), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7492), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7492), + [anon_sym_IBOutlet] = ACTIONS(7492), + [anon_sym_IBInspectable] = ACTIONS(7492), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7492), + [anon_sym_NS_INLINE] = ACTIONS(7492), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7492), + [anon_sym_OBJC_EXPORT] = ACTIONS(7492), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7492), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7492), + [anon_sym_const] = ACTIONS(7492), + [anon_sym_constexpr] = ACTIONS(7492), + [anon_sym_volatile] = ACTIONS(7492), + [anon_sym_restrict] = ACTIONS(7492), + [anon_sym___restrict__] = ACTIONS(7492), + [anon_sym__Atomic] = ACTIONS(7492), + [anon_sym__Noreturn] = ACTIONS(7492), + [anon_sym__Nonnull] = ACTIONS(7492), + [anon_sym_nullable] = ACTIONS(7492), + [anon_sym__Complex] = ACTIONS(7492), + [anon_sym__Nullable] = ACTIONS(7492), + [anon_sym__Nullable_result] = ACTIONS(7492), + [anon_sym__Null_unspecified] = ACTIONS(7492), + [anon_sym___autoreleasing] = ACTIONS(7492), + [anon_sym___block] = ACTIONS(7492), + [anon_sym___bridge] = ACTIONS(7492), + [anon_sym___bridge_retained] = ACTIONS(7492), + [anon_sym___bridge_transfer] = ACTIONS(7492), + [anon_sym___complex] = ACTIONS(7492), + [anon_sym___const] = ACTIONS(7492), + [anon_sym___imag] = ACTIONS(7492), + [anon_sym___kindof] = ACTIONS(7492), + [anon_sym___nonnull] = ACTIONS(7492), + [anon_sym___nullable] = ACTIONS(7492), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7492), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7492), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7492), + [anon_sym___real] = ACTIONS(7492), + [anon_sym___strong] = ACTIONS(7492), + [anon_sym___unsafe_unretained] = ACTIONS(7492), + [anon_sym___unused] = ACTIONS(7492), + [anon_sym___weak] = ACTIONS(7492), + [anon_sym_alignas] = ACTIONS(7492), + [anon_sym__Alignas] = ACTIONS(7492), + [sym_primitive_type] = ACTIONS(7492), + [anon_sym_enum] = ACTIONS(7492), + [anon_sym_COLON] = ACTIONS(7494), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7492), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7492), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7492), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7492), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7492), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7492), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7492), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7492), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7492), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7492), + [anon_sym_NS_AVAILABLE] = ACTIONS(7492), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7492), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7492), + [anon_sym_API_AVAILABLE] = ACTIONS(7492), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7492), + [anon_sym_API_DEPRECATED] = ACTIONS(7492), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7492), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7492), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7492), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7492), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7492), + [anon_sym___deprecated_msg] = ACTIONS(7492), + [anon_sym___deprecated_enum_msg] = ACTIONS(7492), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7492), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7492), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7492), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7492), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7492), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7492), + }, + [3003] = { + [sym_identifier] = ACTIONS(7496), + [anon_sym_COMMA] = ACTIONS(7498), + [anon_sym_RPAREN] = ACTIONS(7498), + [anon_sym_LPAREN2] = ACTIONS(7498), + [anon_sym_STAR] = ACTIONS(7498), + [anon_sym_CARET] = ACTIONS(7498), + [anon_sym_SEMI] = ACTIONS(7498), + [anon_sym___extension__] = ACTIONS(7496), + [anon_sym_extern] = ACTIONS(7496), + [anon_sym___attribute__] = ACTIONS(7496), + [anon_sym___attribute] = ACTIONS(7496), + [anon_sym_noreturn] = ACTIONS(7496), + [anon_sym_LBRACK] = ACTIONS(7498), + [anon_sym___declspec] = ACTIONS(7496), + [anon_sym___based] = ACTIONS(7496), + [anon_sym_signed] = ACTIONS(7496), + [anon_sym_unsigned] = ACTIONS(7496), + [anon_sym_long] = ACTIONS(7496), + [anon_sym_short] = ACTIONS(7496), + [anon_sym_static] = ACTIONS(7496), + [anon_sym_auto] = ACTIONS(7496), + [anon_sym_register] = ACTIONS(7496), + [anon_sym_inline] = ACTIONS(7496), + [anon_sym___inline] = ACTIONS(7496), + [anon_sym___inline__] = ACTIONS(7496), + [anon_sym___forceinline] = ACTIONS(7496), + [anon_sym_thread_local] = ACTIONS(7496), + [anon_sym___thread] = ACTIONS(7496), + [anon_sym_CG_EXTERN] = ACTIONS(7496), + [anon_sym_CG_INLINE] = ACTIONS(7496), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7496), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7496), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7496), + [anon_sym_IBOutlet] = ACTIONS(7496), + [anon_sym_IBInspectable] = ACTIONS(7496), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7496), + [anon_sym_NS_INLINE] = ACTIONS(7496), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7496), + [anon_sym_OBJC_EXPORT] = ACTIONS(7496), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7496), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7496), + [anon_sym_const] = ACTIONS(7496), + [anon_sym_constexpr] = ACTIONS(7496), + [anon_sym_volatile] = ACTIONS(7496), + [anon_sym_restrict] = ACTIONS(7496), + [anon_sym___restrict__] = ACTIONS(7496), + [anon_sym__Atomic] = ACTIONS(7496), + [anon_sym__Noreturn] = ACTIONS(7496), + [anon_sym__Nonnull] = ACTIONS(7496), + [anon_sym_nullable] = ACTIONS(7496), + [anon_sym__Complex] = ACTIONS(7496), + [anon_sym__Nullable] = ACTIONS(7496), + [anon_sym__Nullable_result] = ACTIONS(7496), + [anon_sym__Null_unspecified] = ACTIONS(7496), + [anon_sym___autoreleasing] = ACTIONS(7496), + [anon_sym___block] = ACTIONS(7496), + [anon_sym___bridge] = ACTIONS(7496), + [anon_sym___bridge_retained] = ACTIONS(7496), + [anon_sym___bridge_transfer] = ACTIONS(7496), + [anon_sym___complex] = ACTIONS(7496), + [anon_sym___const] = ACTIONS(7496), + [anon_sym___imag] = ACTIONS(7496), + [anon_sym___kindof] = ACTIONS(7496), + [anon_sym___nonnull] = ACTIONS(7496), + [anon_sym___nullable] = ACTIONS(7496), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7496), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7496), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7496), + [anon_sym___real] = ACTIONS(7496), + [anon_sym___strong] = ACTIONS(7496), + [anon_sym___unsafe_unretained] = ACTIONS(7496), + [anon_sym___unused] = ACTIONS(7496), + [anon_sym___weak] = ACTIONS(7496), + [anon_sym_alignas] = ACTIONS(7496), + [anon_sym__Alignas] = ACTIONS(7496), + [sym_primitive_type] = ACTIONS(7496), + [anon_sym_enum] = ACTIONS(7496), + [anon_sym_COLON] = ACTIONS(7498), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7496), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7496), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7496), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7496), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7496), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7496), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7496), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7496), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7496), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7496), + [anon_sym_NS_AVAILABLE] = ACTIONS(7496), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7496), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7496), + [anon_sym_API_AVAILABLE] = ACTIONS(7496), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7496), + [anon_sym_API_DEPRECATED] = ACTIONS(7496), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7496), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7496), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7496), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7496), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7496), + [anon_sym___deprecated_msg] = ACTIONS(7496), + [anon_sym___deprecated_enum_msg] = ACTIONS(7496), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7496), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7496), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7496), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7496), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7496), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7496), + }, + [3004] = { + [sym_identifier] = ACTIONS(7500), + [anon_sym_COMMA] = ACTIONS(7502), + [anon_sym_RPAREN] = ACTIONS(7502), + [anon_sym_LPAREN2] = ACTIONS(7502), + [anon_sym_STAR] = ACTIONS(7502), + [anon_sym_CARET] = ACTIONS(7502), + [anon_sym_SEMI] = ACTIONS(7502), + [anon_sym___extension__] = ACTIONS(7500), + [anon_sym_extern] = ACTIONS(7500), + [anon_sym___attribute__] = ACTIONS(7500), + [anon_sym___attribute] = ACTIONS(7500), + [anon_sym_noreturn] = ACTIONS(7500), + [anon_sym_LBRACK] = ACTIONS(7502), + [anon_sym___declspec] = ACTIONS(7500), + [anon_sym___based] = ACTIONS(7500), + [anon_sym_signed] = ACTIONS(7500), + [anon_sym_unsigned] = ACTIONS(7500), + [anon_sym_long] = ACTIONS(7500), + [anon_sym_short] = ACTIONS(7500), + [anon_sym_static] = ACTIONS(7500), + [anon_sym_auto] = ACTIONS(7500), + [anon_sym_register] = ACTIONS(7500), + [anon_sym_inline] = ACTIONS(7500), + [anon_sym___inline] = ACTIONS(7500), + [anon_sym___inline__] = ACTIONS(7500), + [anon_sym___forceinline] = ACTIONS(7500), + [anon_sym_thread_local] = ACTIONS(7500), + [anon_sym___thread] = ACTIONS(7500), + [anon_sym_CG_EXTERN] = ACTIONS(7500), + [anon_sym_CG_INLINE] = ACTIONS(7500), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7500), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7500), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7500), + [anon_sym_IBOutlet] = ACTIONS(7500), + [anon_sym_IBInspectable] = ACTIONS(7500), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7500), + [anon_sym_NS_INLINE] = ACTIONS(7500), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7500), + [anon_sym_OBJC_EXPORT] = ACTIONS(7500), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7500), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7500), + [anon_sym_const] = ACTIONS(7500), + [anon_sym_constexpr] = ACTIONS(7500), + [anon_sym_volatile] = ACTIONS(7500), + [anon_sym_restrict] = ACTIONS(7500), + [anon_sym___restrict__] = ACTIONS(7500), + [anon_sym__Atomic] = ACTIONS(7500), + [anon_sym__Noreturn] = ACTIONS(7500), + [anon_sym__Nonnull] = ACTIONS(7500), + [anon_sym_nullable] = ACTIONS(7500), + [anon_sym__Complex] = ACTIONS(7500), + [anon_sym__Nullable] = ACTIONS(7500), + [anon_sym__Nullable_result] = ACTIONS(7500), + [anon_sym__Null_unspecified] = ACTIONS(7500), + [anon_sym___autoreleasing] = ACTIONS(7500), + [anon_sym___block] = ACTIONS(7500), + [anon_sym___bridge] = ACTIONS(7500), + [anon_sym___bridge_retained] = ACTIONS(7500), + [anon_sym___bridge_transfer] = ACTIONS(7500), + [anon_sym___complex] = ACTIONS(7500), + [anon_sym___const] = ACTIONS(7500), + [anon_sym___imag] = ACTIONS(7500), + [anon_sym___kindof] = ACTIONS(7500), + [anon_sym___nonnull] = ACTIONS(7500), + [anon_sym___nullable] = ACTIONS(7500), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7500), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7500), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7500), + [anon_sym___real] = ACTIONS(7500), + [anon_sym___strong] = ACTIONS(7500), + [anon_sym___unsafe_unretained] = ACTIONS(7500), + [anon_sym___unused] = ACTIONS(7500), + [anon_sym___weak] = ACTIONS(7500), + [anon_sym_alignas] = ACTIONS(7500), + [anon_sym__Alignas] = ACTIONS(7500), + [sym_primitive_type] = ACTIONS(7500), + [anon_sym_enum] = ACTIONS(7500), + [anon_sym_COLON] = ACTIONS(7502), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7500), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7500), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7500), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7500), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7500), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7500), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7500), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7500), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7500), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7500), + [anon_sym_NS_AVAILABLE] = ACTIONS(7500), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7500), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7500), + [anon_sym_API_AVAILABLE] = ACTIONS(7500), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7500), + [anon_sym_API_DEPRECATED] = ACTIONS(7500), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7500), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7500), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7500), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7500), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7500), + [anon_sym___deprecated_msg] = ACTIONS(7500), + [anon_sym___deprecated_enum_msg] = ACTIONS(7500), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7500), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7500), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7500), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7500), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7500), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7500), + }, + [3005] = { + [sym_identifier] = ACTIONS(7504), + [anon_sym_COMMA] = ACTIONS(7506), + [anon_sym_RPAREN] = ACTIONS(7506), + [anon_sym_LPAREN2] = ACTIONS(7506), + [anon_sym_STAR] = ACTIONS(7506), + [anon_sym_CARET] = ACTIONS(7506), + [anon_sym_SEMI] = ACTIONS(7506), + [anon_sym___extension__] = ACTIONS(7504), + [anon_sym_extern] = ACTIONS(7504), + [anon_sym___attribute__] = ACTIONS(7504), + [anon_sym___attribute] = ACTIONS(7504), + [anon_sym_noreturn] = ACTIONS(7504), + [anon_sym_LBRACK] = ACTIONS(7506), + [anon_sym___declspec] = ACTIONS(7504), + [anon_sym___based] = ACTIONS(7504), + [anon_sym_signed] = ACTIONS(7504), + [anon_sym_unsigned] = ACTIONS(7504), + [anon_sym_long] = ACTIONS(7504), + [anon_sym_short] = ACTIONS(7504), + [anon_sym_static] = ACTIONS(7504), + [anon_sym_auto] = ACTIONS(7504), + [anon_sym_register] = ACTIONS(7504), + [anon_sym_inline] = ACTIONS(7504), + [anon_sym___inline] = ACTIONS(7504), + [anon_sym___inline__] = ACTIONS(7504), + [anon_sym___forceinline] = ACTIONS(7504), + [anon_sym_thread_local] = ACTIONS(7504), + [anon_sym___thread] = ACTIONS(7504), + [anon_sym_CG_EXTERN] = ACTIONS(7504), + [anon_sym_CG_INLINE] = ACTIONS(7504), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7504), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7504), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7504), + [anon_sym_IBOutlet] = ACTIONS(7504), + [anon_sym_IBInspectable] = ACTIONS(7504), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7504), + [anon_sym_NS_INLINE] = ACTIONS(7504), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7504), + [anon_sym_OBJC_EXPORT] = ACTIONS(7504), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7504), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7504), + [anon_sym_const] = ACTIONS(7504), + [anon_sym_constexpr] = ACTIONS(7504), + [anon_sym_volatile] = ACTIONS(7504), + [anon_sym_restrict] = ACTIONS(7504), + [anon_sym___restrict__] = ACTIONS(7504), + [anon_sym__Atomic] = ACTIONS(7504), + [anon_sym__Noreturn] = ACTIONS(7504), + [anon_sym__Nonnull] = ACTIONS(7504), + [anon_sym_nullable] = ACTIONS(7504), + [anon_sym__Complex] = ACTIONS(7504), + [anon_sym__Nullable] = ACTIONS(7504), + [anon_sym__Nullable_result] = ACTIONS(7504), + [anon_sym__Null_unspecified] = ACTIONS(7504), + [anon_sym___autoreleasing] = ACTIONS(7504), + [anon_sym___block] = ACTIONS(7504), + [anon_sym___bridge] = ACTIONS(7504), + [anon_sym___bridge_retained] = ACTIONS(7504), + [anon_sym___bridge_transfer] = ACTIONS(7504), + [anon_sym___complex] = ACTIONS(7504), + [anon_sym___const] = ACTIONS(7504), + [anon_sym___imag] = ACTIONS(7504), + [anon_sym___kindof] = ACTIONS(7504), + [anon_sym___nonnull] = ACTIONS(7504), + [anon_sym___nullable] = ACTIONS(7504), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7504), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7504), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7504), + [anon_sym___real] = ACTIONS(7504), + [anon_sym___strong] = ACTIONS(7504), + [anon_sym___unsafe_unretained] = ACTIONS(7504), + [anon_sym___unused] = ACTIONS(7504), + [anon_sym___weak] = ACTIONS(7504), + [anon_sym_alignas] = ACTIONS(7504), + [anon_sym__Alignas] = ACTIONS(7504), + [sym_primitive_type] = ACTIONS(7504), + [anon_sym_enum] = ACTIONS(7504), + [anon_sym_COLON] = ACTIONS(7506), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7504), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7504), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7504), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7504), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7504), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7504), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7504), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7504), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7504), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7504), + [anon_sym_NS_AVAILABLE] = ACTIONS(7504), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7504), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7504), + [anon_sym_API_AVAILABLE] = ACTIONS(7504), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7504), + [anon_sym_API_DEPRECATED] = ACTIONS(7504), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7504), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7504), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7504), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7504), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7504), + [anon_sym___deprecated_msg] = ACTIONS(7504), + [anon_sym___deprecated_enum_msg] = ACTIONS(7504), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7504), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7504), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7504), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7504), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7504), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7504), + }, + [3006] = { + [sym_identifier] = ACTIONS(7508), + [anon_sym_COMMA] = ACTIONS(7510), + [anon_sym_RPAREN] = ACTIONS(7510), + [anon_sym_LPAREN2] = ACTIONS(7510), + [anon_sym_STAR] = ACTIONS(7510), + [anon_sym_CARET] = ACTIONS(7510), + [anon_sym_SEMI] = ACTIONS(7510), + [anon_sym___extension__] = ACTIONS(7508), + [anon_sym_extern] = ACTIONS(7508), + [anon_sym___attribute__] = ACTIONS(7508), + [anon_sym___attribute] = ACTIONS(7508), + [anon_sym_noreturn] = ACTIONS(7508), + [anon_sym_LBRACK] = ACTIONS(7510), + [anon_sym___declspec] = ACTIONS(7508), + [anon_sym___based] = ACTIONS(7508), + [anon_sym_signed] = ACTIONS(7508), + [anon_sym_unsigned] = ACTIONS(7508), + [anon_sym_long] = ACTIONS(7508), + [anon_sym_short] = ACTIONS(7508), + [anon_sym_static] = ACTIONS(7508), + [anon_sym_auto] = ACTIONS(7508), + [anon_sym_register] = ACTIONS(7508), + [anon_sym_inline] = ACTIONS(7508), + [anon_sym___inline] = ACTIONS(7508), + [anon_sym___inline__] = ACTIONS(7508), + [anon_sym___forceinline] = ACTIONS(7508), + [anon_sym_thread_local] = ACTIONS(7508), + [anon_sym___thread] = ACTIONS(7508), + [anon_sym_CG_EXTERN] = ACTIONS(7508), + [anon_sym_CG_INLINE] = ACTIONS(7508), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7508), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7508), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7508), + [anon_sym_IBOutlet] = ACTIONS(7508), + [anon_sym_IBInspectable] = ACTIONS(7508), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7508), + [anon_sym_NS_INLINE] = ACTIONS(7508), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7508), + [anon_sym_OBJC_EXPORT] = ACTIONS(7508), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7508), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7508), + [anon_sym_const] = ACTIONS(7508), + [anon_sym_constexpr] = ACTIONS(7508), + [anon_sym_volatile] = ACTIONS(7508), + [anon_sym_restrict] = ACTIONS(7508), + [anon_sym___restrict__] = ACTIONS(7508), + [anon_sym__Atomic] = ACTIONS(7508), + [anon_sym__Noreturn] = ACTIONS(7508), + [anon_sym__Nonnull] = ACTIONS(7508), + [anon_sym_nullable] = ACTIONS(7508), + [anon_sym__Complex] = ACTIONS(7508), + [anon_sym__Nullable] = ACTIONS(7508), + [anon_sym__Nullable_result] = ACTIONS(7508), + [anon_sym__Null_unspecified] = ACTIONS(7508), + [anon_sym___autoreleasing] = ACTIONS(7508), + [anon_sym___block] = ACTIONS(7508), + [anon_sym___bridge] = ACTIONS(7508), + [anon_sym___bridge_retained] = ACTIONS(7508), + [anon_sym___bridge_transfer] = ACTIONS(7508), + [anon_sym___complex] = ACTIONS(7508), + [anon_sym___const] = ACTIONS(7508), + [anon_sym___imag] = ACTIONS(7508), + [anon_sym___kindof] = ACTIONS(7508), + [anon_sym___nonnull] = ACTIONS(7508), + [anon_sym___nullable] = ACTIONS(7508), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7508), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7508), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7508), + [anon_sym___real] = ACTIONS(7508), + [anon_sym___strong] = ACTIONS(7508), + [anon_sym___unsafe_unretained] = ACTIONS(7508), + [anon_sym___unused] = ACTIONS(7508), + [anon_sym___weak] = ACTIONS(7508), + [anon_sym_alignas] = ACTIONS(7508), + [anon_sym__Alignas] = ACTIONS(7508), + [sym_primitive_type] = ACTIONS(7508), + [anon_sym_enum] = ACTIONS(7508), + [anon_sym_COLON] = ACTIONS(7510), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7508), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7508), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7508), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7508), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7508), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7508), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7508), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7508), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7508), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7508), + [anon_sym_NS_AVAILABLE] = ACTIONS(7508), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7508), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7508), + [anon_sym_API_AVAILABLE] = ACTIONS(7508), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7508), + [anon_sym_API_DEPRECATED] = ACTIONS(7508), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7508), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7508), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7508), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7508), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7508), + [anon_sym___deprecated_msg] = ACTIONS(7508), + [anon_sym___deprecated_enum_msg] = ACTIONS(7508), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7508), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7508), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7508), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7508), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7508), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7508), + }, + [3007] = { + [sym_expression] = STATE(1637), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_initializer_list] = STATE(1655), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_COMMA] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(7512), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(2222), + [anon_sym_PIPE_PIPE] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2222), + [anon_sym_PIPE] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2222), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_EQ_EQ] = ACTIONS(2222), + [anon_sym_BANG_EQ] = ACTIONS(2222), + [anon_sym_GT] = ACTIONS(2220), + [anon_sym_GT_EQ] = ACTIONS(2222), + [anon_sym_LT_EQ] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2220), + [anon_sym_LT_LT] = ACTIONS(2222), + [anon_sym_GT_GT] = ACTIONS(2222), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_RBRACK] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_COLON] = ACTIONS(2222), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [anon_sym_DOT] = ACTIONS(2220), + [anon_sym_DASH_GT] = ACTIONS(2222), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3008] = { + [sym_identifier] = ACTIONS(7524), + [anon_sym_COMMA] = ACTIONS(7526), + [anon_sym_RPAREN] = ACTIONS(7526), + [anon_sym_LPAREN2] = ACTIONS(7526), + [anon_sym_STAR] = ACTIONS(7526), + [anon_sym_CARET] = ACTIONS(7526), + [anon_sym_SEMI] = ACTIONS(7526), + [anon_sym___extension__] = ACTIONS(7524), + [anon_sym_extern] = ACTIONS(7524), + [anon_sym___attribute__] = ACTIONS(7524), + [anon_sym___attribute] = ACTIONS(7524), + [anon_sym_noreturn] = ACTIONS(7524), + [anon_sym_LBRACK] = ACTIONS(7526), + [anon_sym___declspec] = ACTIONS(7524), + [anon_sym___based] = ACTIONS(7524), + [anon_sym_signed] = ACTIONS(7524), + [anon_sym_unsigned] = ACTIONS(7524), + [anon_sym_long] = ACTIONS(7524), + [anon_sym_short] = ACTIONS(7524), + [anon_sym_static] = ACTIONS(7524), + [anon_sym_auto] = ACTIONS(7524), + [anon_sym_register] = ACTIONS(7524), + [anon_sym_inline] = ACTIONS(7524), + [anon_sym___inline] = ACTIONS(7524), + [anon_sym___inline__] = ACTIONS(7524), + [anon_sym___forceinline] = ACTIONS(7524), + [anon_sym_thread_local] = ACTIONS(7524), + [anon_sym___thread] = ACTIONS(7524), + [anon_sym_CG_EXTERN] = ACTIONS(7524), + [anon_sym_CG_INLINE] = ACTIONS(7524), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7524), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7524), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7524), + [anon_sym_IBOutlet] = ACTIONS(7524), + [anon_sym_IBInspectable] = ACTIONS(7524), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7524), + [anon_sym_NS_INLINE] = ACTIONS(7524), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7524), + [anon_sym_OBJC_EXPORT] = ACTIONS(7524), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7524), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7524), + [anon_sym_const] = ACTIONS(7524), + [anon_sym_constexpr] = ACTIONS(7524), + [anon_sym_volatile] = ACTIONS(7524), + [anon_sym_restrict] = ACTIONS(7524), + [anon_sym___restrict__] = ACTIONS(7524), + [anon_sym__Atomic] = ACTIONS(7524), + [anon_sym__Noreturn] = ACTIONS(7524), + [anon_sym__Nonnull] = ACTIONS(7524), + [anon_sym_nullable] = ACTIONS(7524), + [anon_sym__Complex] = ACTIONS(7524), + [anon_sym__Nullable] = ACTIONS(7524), + [anon_sym__Nullable_result] = ACTIONS(7524), + [anon_sym__Null_unspecified] = ACTIONS(7524), + [anon_sym___autoreleasing] = ACTIONS(7524), + [anon_sym___block] = ACTIONS(7524), + [anon_sym___bridge] = ACTIONS(7524), + [anon_sym___bridge_retained] = ACTIONS(7524), + [anon_sym___bridge_transfer] = ACTIONS(7524), + [anon_sym___complex] = ACTIONS(7524), + [anon_sym___const] = ACTIONS(7524), + [anon_sym___imag] = ACTIONS(7524), + [anon_sym___kindof] = ACTIONS(7524), + [anon_sym___nonnull] = ACTIONS(7524), + [anon_sym___nullable] = ACTIONS(7524), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7524), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7524), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7524), + [anon_sym___real] = ACTIONS(7524), + [anon_sym___strong] = ACTIONS(7524), + [anon_sym___unsafe_unretained] = ACTIONS(7524), + [anon_sym___unused] = ACTIONS(7524), + [anon_sym___weak] = ACTIONS(7524), + [anon_sym_alignas] = ACTIONS(7524), + [anon_sym__Alignas] = ACTIONS(7524), + [sym_primitive_type] = ACTIONS(7524), + [anon_sym_enum] = ACTIONS(7524), + [anon_sym_COLON] = ACTIONS(7526), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7524), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7524), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7524), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7524), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7524), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7524), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7524), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7524), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7524), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7524), + [anon_sym_NS_AVAILABLE] = ACTIONS(7524), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7524), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7524), + [anon_sym_API_AVAILABLE] = ACTIONS(7524), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7524), + [anon_sym_API_DEPRECATED] = ACTIONS(7524), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7524), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7524), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7524), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7524), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7524), + [anon_sym___deprecated_msg] = ACTIONS(7524), + [anon_sym___deprecated_enum_msg] = ACTIONS(7524), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7524), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7524), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7524), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7524), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7524), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7524), + }, + [3009] = { + [sym_identifier] = ACTIONS(7528), + [anon_sym_COMMA] = ACTIONS(7530), + [anon_sym_RPAREN] = ACTIONS(7530), + [anon_sym_LPAREN2] = ACTIONS(7530), + [anon_sym_STAR] = ACTIONS(7530), + [anon_sym_CARET] = ACTIONS(7530), + [anon_sym_SEMI] = ACTIONS(7530), + [anon_sym___extension__] = ACTIONS(7528), + [anon_sym_extern] = ACTIONS(7528), + [anon_sym___attribute__] = ACTIONS(7528), + [anon_sym___attribute] = ACTIONS(7528), + [anon_sym_noreturn] = ACTIONS(7528), + [anon_sym_LBRACK] = ACTIONS(7530), + [anon_sym___declspec] = ACTIONS(7528), + [anon_sym___based] = ACTIONS(7528), + [anon_sym_signed] = ACTIONS(7528), + [anon_sym_unsigned] = ACTIONS(7528), + [anon_sym_long] = ACTIONS(7528), + [anon_sym_short] = ACTIONS(7528), + [anon_sym_static] = ACTIONS(7528), + [anon_sym_auto] = ACTIONS(7528), + [anon_sym_register] = ACTIONS(7528), + [anon_sym_inline] = ACTIONS(7528), + [anon_sym___inline] = ACTIONS(7528), + [anon_sym___inline__] = ACTIONS(7528), + [anon_sym___forceinline] = ACTIONS(7528), + [anon_sym_thread_local] = ACTIONS(7528), + [anon_sym___thread] = ACTIONS(7528), + [anon_sym_CG_EXTERN] = ACTIONS(7528), + [anon_sym_CG_INLINE] = ACTIONS(7528), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7528), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7528), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7528), + [anon_sym_IBOutlet] = ACTIONS(7528), + [anon_sym_IBInspectable] = ACTIONS(7528), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7528), + [anon_sym_NS_INLINE] = ACTIONS(7528), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7528), + [anon_sym_OBJC_EXPORT] = ACTIONS(7528), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7528), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7528), + [anon_sym_const] = ACTIONS(7528), + [anon_sym_constexpr] = ACTIONS(7528), + [anon_sym_volatile] = ACTIONS(7528), + [anon_sym_restrict] = ACTIONS(7528), + [anon_sym___restrict__] = ACTIONS(7528), + [anon_sym__Atomic] = ACTIONS(7528), + [anon_sym__Noreturn] = ACTIONS(7528), + [anon_sym__Nonnull] = ACTIONS(7528), + [anon_sym_nullable] = ACTIONS(7528), + [anon_sym__Complex] = ACTIONS(7528), + [anon_sym__Nullable] = ACTIONS(7528), + [anon_sym__Nullable_result] = ACTIONS(7528), + [anon_sym__Null_unspecified] = ACTIONS(7528), + [anon_sym___autoreleasing] = ACTIONS(7528), + [anon_sym___block] = ACTIONS(7528), + [anon_sym___bridge] = ACTIONS(7528), + [anon_sym___bridge_retained] = ACTIONS(7528), + [anon_sym___bridge_transfer] = ACTIONS(7528), + [anon_sym___complex] = ACTIONS(7528), + [anon_sym___const] = ACTIONS(7528), + [anon_sym___imag] = ACTIONS(7528), + [anon_sym___kindof] = ACTIONS(7528), + [anon_sym___nonnull] = ACTIONS(7528), + [anon_sym___nullable] = ACTIONS(7528), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7528), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7528), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7528), + [anon_sym___real] = ACTIONS(7528), + [anon_sym___strong] = ACTIONS(7528), + [anon_sym___unsafe_unretained] = ACTIONS(7528), + [anon_sym___unused] = ACTIONS(7528), + [anon_sym___weak] = ACTIONS(7528), + [anon_sym_alignas] = ACTIONS(7528), + [anon_sym__Alignas] = ACTIONS(7528), + [sym_primitive_type] = ACTIONS(7528), + [anon_sym_enum] = ACTIONS(7528), + [anon_sym_COLON] = ACTIONS(7530), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7528), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7528), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7528), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7528), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7528), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7528), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7528), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7528), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7528), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7528), + [anon_sym_NS_AVAILABLE] = ACTIONS(7528), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7528), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7528), + [anon_sym_API_AVAILABLE] = ACTIONS(7528), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7528), + [anon_sym_API_DEPRECATED] = ACTIONS(7528), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7528), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7528), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7528), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7528), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7528), + [anon_sym___deprecated_msg] = ACTIONS(7528), + [anon_sym___deprecated_enum_msg] = ACTIONS(7528), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7528), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7528), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7528), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7528), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7528), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7528), + }, + [3010] = { + [sym_identifier] = ACTIONS(7532), + [anon_sym_COMMA] = ACTIONS(7534), + [anon_sym_RPAREN] = ACTIONS(7534), + [anon_sym_LPAREN2] = ACTIONS(7534), + [anon_sym_STAR] = ACTIONS(7534), + [anon_sym_CARET] = ACTIONS(7534), + [anon_sym_SEMI] = ACTIONS(7534), + [anon_sym___extension__] = ACTIONS(7532), + [anon_sym_extern] = ACTIONS(7532), + [anon_sym___attribute__] = ACTIONS(7532), + [anon_sym___attribute] = ACTIONS(7532), + [anon_sym_noreturn] = ACTIONS(7532), + [anon_sym_LBRACK] = ACTIONS(7534), + [anon_sym___declspec] = ACTIONS(7532), + [anon_sym___based] = ACTIONS(7532), + [anon_sym_signed] = ACTIONS(7532), + [anon_sym_unsigned] = ACTIONS(7532), + [anon_sym_long] = ACTIONS(7532), + [anon_sym_short] = ACTIONS(7532), + [anon_sym_static] = ACTIONS(7532), + [anon_sym_auto] = ACTIONS(7532), + [anon_sym_register] = ACTIONS(7532), + [anon_sym_inline] = ACTIONS(7532), + [anon_sym___inline] = ACTIONS(7532), + [anon_sym___inline__] = ACTIONS(7532), + [anon_sym___forceinline] = ACTIONS(7532), + [anon_sym_thread_local] = ACTIONS(7532), + [anon_sym___thread] = ACTIONS(7532), + [anon_sym_CG_EXTERN] = ACTIONS(7532), + [anon_sym_CG_INLINE] = ACTIONS(7532), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7532), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7532), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7532), + [anon_sym_IBOutlet] = ACTIONS(7532), + [anon_sym_IBInspectable] = ACTIONS(7532), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7532), + [anon_sym_NS_INLINE] = ACTIONS(7532), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7532), + [anon_sym_OBJC_EXPORT] = ACTIONS(7532), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7532), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7532), + [anon_sym_const] = ACTIONS(7532), + [anon_sym_constexpr] = ACTIONS(7532), + [anon_sym_volatile] = ACTIONS(7532), + [anon_sym_restrict] = ACTIONS(7532), + [anon_sym___restrict__] = ACTIONS(7532), + [anon_sym__Atomic] = ACTIONS(7532), + [anon_sym__Noreturn] = ACTIONS(7532), + [anon_sym__Nonnull] = ACTIONS(7532), + [anon_sym_nullable] = ACTIONS(7532), + [anon_sym__Complex] = ACTIONS(7532), + [anon_sym__Nullable] = ACTIONS(7532), + [anon_sym__Nullable_result] = ACTIONS(7532), + [anon_sym__Null_unspecified] = ACTIONS(7532), + [anon_sym___autoreleasing] = ACTIONS(7532), + [anon_sym___block] = ACTIONS(7532), + [anon_sym___bridge] = ACTIONS(7532), + [anon_sym___bridge_retained] = ACTIONS(7532), + [anon_sym___bridge_transfer] = ACTIONS(7532), + [anon_sym___complex] = ACTIONS(7532), + [anon_sym___const] = ACTIONS(7532), + [anon_sym___imag] = ACTIONS(7532), + [anon_sym___kindof] = ACTIONS(7532), + [anon_sym___nonnull] = ACTIONS(7532), + [anon_sym___nullable] = ACTIONS(7532), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7532), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7532), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7532), + [anon_sym___real] = ACTIONS(7532), + [anon_sym___strong] = ACTIONS(7532), + [anon_sym___unsafe_unretained] = ACTIONS(7532), + [anon_sym___unused] = ACTIONS(7532), + [anon_sym___weak] = ACTIONS(7532), + [anon_sym_alignas] = ACTIONS(7532), + [anon_sym__Alignas] = ACTIONS(7532), + [sym_primitive_type] = ACTIONS(7532), + [anon_sym_enum] = ACTIONS(7532), + [anon_sym_COLON] = ACTIONS(7534), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7532), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7532), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7532), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7532), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7532), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7532), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7532), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7532), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7532), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7532), + [anon_sym_NS_AVAILABLE] = ACTIONS(7532), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7532), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7532), + [anon_sym_API_AVAILABLE] = ACTIONS(7532), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7532), + [anon_sym_API_DEPRECATED] = ACTIONS(7532), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7532), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7532), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7532), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7532), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7532), + [anon_sym___deprecated_msg] = ACTIONS(7532), + [anon_sym___deprecated_enum_msg] = ACTIONS(7532), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7532), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7532), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7532), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7532), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7532), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7532), + }, + [3011] = { + [sym_identifier] = ACTIONS(7536), + [anon_sym_COMMA] = ACTIONS(7538), + [anon_sym_RPAREN] = ACTIONS(7538), + [anon_sym_LPAREN2] = ACTIONS(7538), + [anon_sym_STAR] = ACTIONS(7538), + [anon_sym_CARET] = ACTIONS(7538), + [anon_sym_SEMI] = ACTIONS(7538), + [anon_sym___extension__] = ACTIONS(7536), + [anon_sym_extern] = ACTIONS(7536), + [anon_sym___attribute__] = ACTIONS(7536), + [anon_sym___attribute] = ACTIONS(7536), + [anon_sym_noreturn] = ACTIONS(7536), + [anon_sym_LBRACK] = ACTIONS(7538), + [anon_sym___declspec] = ACTIONS(7536), + [anon_sym___based] = ACTIONS(7536), + [anon_sym_signed] = ACTIONS(7536), + [anon_sym_unsigned] = ACTIONS(7536), + [anon_sym_long] = ACTIONS(7536), + [anon_sym_short] = ACTIONS(7536), + [anon_sym_static] = ACTIONS(7536), + [anon_sym_auto] = ACTIONS(7536), + [anon_sym_register] = ACTIONS(7536), + [anon_sym_inline] = ACTIONS(7536), + [anon_sym___inline] = ACTIONS(7536), + [anon_sym___inline__] = ACTIONS(7536), + [anon_sym___forceinline] = ACTIONS(7536), + [anon_sym_thread_local] = ACTIONS(7536), + [anon_sym___thread] = ACTIONS(7536), + [anon_sym_CG_EXTERN] = ACTIONS(7536), + [anon_sym_CG_INLINE] = ACTIONS(7536), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7536), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7536), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7536), + [anon_sym_IBOutlet] = ACTIONS(7536), + [anon_sym_IBInspectable] = ACTIONS(7536), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7536), + [anon_sym_NS_INLINE] = ACTIONS(7536), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7536), + [anon_sym_OBJC_EXPORT] = ACTIONS(7536), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7536), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7536), + [anon_sym_const] = ACTIONS(7536), + [anon_sym_constexpr] = ACTIONS(7536), + [anon_sym_volatile] = ACTIONS(7536), + [anon_sym_restrict] = ACTIONS(7536), + [anon_sym___restrict__] = ACTIONS(7536), + [anon_sym__Atomic] = ACTIONS(7536), + [anon_sym__Noreturn] = ACTIONS(7536), + [anon_sym__Nonnull] = ACTIONS(7536), + [anon_sym_nullable] = ACTIONS(7536), + [anon_sym__Complex] = ACTIONS(7536), + [anon_sym__Nullable] = ACTIONS(7536), + [anon_sym__Nullable_result] = ACTIONS(7536), + [anon_sym__Null_unspecified] = ACTIONS(7536), + [anon_sym___autoreleasing] = ACTIONS(7536), + [anon_sym___block] = ACTIONS(7536), + [anon_sym___bridge] = ACTIONS(7536), + [anon_sym___bridge_retained] = ACTIONS(7536), + [anon_sym___bridge_transfer] = ACTIONS(7536), + [anon_sym___complex] = ACTIONS(7536), + [anon_sym___const] = ACTIONS(7536), + [anon_sym___imag] = ACTIONS(7536), + [anon_sym___kindof] = ACTIONS(7536), + [anon_sym___nonnull] = ACTIONS(7536), + [anon_sym___nullable] = ACTIONS(7536), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7536), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7536), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7536), + [anon_sym___real] = ACTIONS(7536), + [anon_sym___strong] = ACTIONS(7536), + [anon_sym___unsafe_unretained] = ACTIONS(7536), + [anon_sym___unused] = ACTIONS(7536), + [anon_sym___weak] = ACTIONS(7536), + [anon_sym_alignas] = ACTIONS(7536), + [anon_sym__Alignas] = ACTIONS(7536), + [sym_primitive_type] = ACTIONS(7536), + [anon_sym_enum] = ACTIONS(7536), + [anon_sym_COLON] = ACTIONS(7538), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7536), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7536), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7536), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7536), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7536), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7536), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7536), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7536), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7536), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7536), + [anon_sym_NS_AVAILABLE] = ACTIONS(7536), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7536), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7536), + [anon_sym_API_AVAILABLE] = ACTIONS(7536), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7536), + [anon_sym_API_DEPRECATED] = ACTIONS(7536), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7536), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7536), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7536), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7536), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7536), + [anon_sym___deprecated_msg] = ACTIONS(7536), + [anon_sym___deprecated_enum_msg] = ACTIONS(7536), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7536), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7536), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7536), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7536), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7536), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7536), + }, + [3012] = { + [sym_identifier] = ACTIONS(7540), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(7542), + [anon_sym_LPAREN2] = ACTIONS(7542), + [anon_sym_STAR] = ACTIONS(7542), + [anon_sym_CARET] = ACTIONS(7542), + [anon_sym_SEMI] = ACTIONS(7542), + [anon_sym___extension__] = ACTIONS(7540), + [anon_sym_extern] = ACTIONS(7540), + [anon_sym___attribute__] = ACTIONS(7540), + [anon_sym___attribute] = ACTIONS(7540), + [anon_sym_noreturn] = ACTIONS(7540), + [anon_sym_LBRACK] = ACTIONS(7542), + [anon_sym___declspec] = ACTIONS(7540), + [anon_sym___based] = ACTIONS(7540), + [anon_sym_signed] = ACTIONS(7540), + [anon_sym_unsigned] = ACTIONS(7540), + [anon_sym_long] = ACTIONS(7540), + [anon_sym_short] = ACTIONS(7540), + [anon_sym_static] = ACTIONS(7540), + [anon_sym_auto] = ACTIONS(7540), + [anon_sym_register] = ACTIONS(7540), + [anon_sym_inline] = ACTIONS(7540), + [anon_sym___inline] = ACTIONS(7540), + [anon_sym___inline__] = ACTIONS(7540), + [anon_sym___forceinline] = ACTIONS(7540), + [anon_sym_thread_local] = ACTIONS(7540), + [anon_sym___thread] = ACTIONS(7540), + [anon_sym_CG_EXTERN] = ACTIONS(7540), + [anon_sym_CG_INLINE] = ACTIONS(7540), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7540), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7540), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7540), + [anon_sym_IBOutlet] = ACTIONS(7540), + [anon_sym_IBInspectable] = ACTIONS(7540), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7540), + [anon_sym_NS_INLINE] = ACTIONS(7540), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7540), + [anon_sym_OBJC_EXPORT] = ACTIONS(7540), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7540), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7540), + [anon_sym_const] = ACTIONS(7540), + [anon_sym_constexpr] = ACTIONS(7540), + [anon_sym_volatile] = ACTIONS(7540), + [anon_sym_restrict] = ACTIONS(7540), + [anon_sym___restrict__] = ACTIONS(7540), + [anon_sym__Atomic] = ACTIONS(7540), + [anon_sym__Noreturn] = ACTIONS(7540), + [anon_sym__Nonnull] = ACTIONS(7540), + [anon_sym_nullable] = ACTIONS(7540), + [anon_sym__Complex] = ACTIONS(7540), + [anon_sym__Nullable] = ACTIONS(7540), + [anon_sym__Nullable_result] = ACTIONS(7540), + [anon_sym__Null_unspecified] = ACTIONS(7540), + [anon_sym___autoreleasing] = ACTIONS(7540), + [anon_sym___block] = ACTIONS(7540), + [anon_sym___bridge] = ACTIONS(7540), + [anon_sym___bridge_retained] = ACTIONS(7540), + [anon_sym___bridge_transfer] = ACTIONS(7540), + [anon_sym___complex] = ACTIONS(7540), + [anon_sym___const] = ACTIONS(7540), + [anon_sym___imag] = ACTIONS(7540), + [anon_sym___kindof] = ACTIONS(7540), + [anon_sym___nonnull] = ACTIONS(7540), + [anon_sym___nullable] = ACTIONS(7540), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7540), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7540), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7540), + [anon_sym___real] = ACTIONS(7540), + [anon_sym___strong] = ACTIONS(7540), + [anon_sym___unsafe_unretained] = ACTIONS(7540), + [anon_sym___unused] = ACTIONS(7540), + [anon_sym___weak] = ACTIONS(7540), + [anon_sym_alignas] = ACTIONS(7540), + [anon_sym__Alignas] = ACTIONS(7540), + [sym_primitive_type] = ACTIONS(7540), + [anon_sym_enum] = ACTIONS(7540), + [anon_sym_COLON] = ACTIONS(7542), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7540), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7540), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7540), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7540), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7540), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7540), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7540), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7540), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7540), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7540), + [anon_sym_NS_AVAILABLE] = ACTIONS(7540), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7540), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7540), + [anon_sym_API_AVAILABLE] = ACTIONS(7540), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7540), + [anon_sym_API_DEPRECATED] = ACTIONS(7540), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7540), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7540), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7540), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7540), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7540), + [anon_sym___deprecated_msg] = ACTIONS(7540), + [anon_sym___deprecated_enum_msg] = ACTIONS(7540), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7540), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7540), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7540), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7540), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7540), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7540), + }, + [3013] = { + [sym__declaration_modifiers] = STATE(2875), + [sym_attribute_specifier] = STATE(2875), + [sym_attribute_declaration] = STATE(2875), + [sym_ms_declspec_modifier] = STATE(2875), + [sym_storage_class_specifier] = STATE(2875), + [sym_type_qualifier] = STATE(2875), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2875), + [aux_sym__declaration_specifiers_repeat1] = STATE(2875), + [sym_identifier] = ACTIONS(7059), + [anon_sym_LPAREN2] = ACTIONS(7061), + [anon_sym_STAR] = ACTIONS(7061), + [anon_sym_CARET] = ACTIONS(7061), + [anon_sym_SEMI] = ACTIONS(7544), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(7011), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(7059), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [3014] = { + [sym_identifier] = ACTIONS(7546), + [anon_sym_COMMA] = ACTIONS(7548), + [anon_sym_RPAREN] = ACTIONS(7548), + [anon_sym_LPAREN2] = ACTIONS(7548), + [anon_sym_STAR] = ACTIONS(7548), + [anon_sym_CARET] = ACTIONS(7548), + [anon_sym_SEMI] = ACTIONS(7548), + [anon_sym___extension__] = ACTIONS(7546), + [anon_sym_extern] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(7546), + [anon_sym___attribute] = ACTIONS(7546), + [anon_sym_noreturn] = ACTIONS(7546), + [anon_sym_LBRACK] = ACTIONS(7548), + [anon_sym___declspec] = ACTIONS(7546), + [anon_sym___based] = ACTIONS(7546), + [anon_sym_signed] = ACTIONS(7546), + [anon_sym_unsigned] = ACTIONS(7546), + [anon_sym_long] = ACTIONS(7546), + [anon_sym_short] = ACTIONS(7546), + [anon_sym_static] = ACTIONS(7546), + [anon_sym_auto] = ACTIONS(7546), + [anon_sym_register] = ACTIONS(7546), + [anon_sym_inline] = ACTIONS(7546), + [anon_sym___inline] = ACTIONS(7546), + [anon_sym___inline__] = ACTIONS(7546), + [anon_sym___forceinline] = ACTIONS(7546), + [anon_sym_thread_local] = ACTIONS(7546), + [anon_sym___thread] = ACTIONS(7546), + [anon_sym_CG_EXTERN] = ACTIONS(7546), + [anon_sym_CG_INLINE] = ACTIONS(7546), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7546), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7546), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7546), + [anon_sym_IBOutlet] = ACTIONS(7546), + [anon_sym_IBInspectable] = ACTIONS(7546), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7546), + [anon_sym_NS_INLINE] = ACTIONS(7546), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7546), + [anon_sym_OBJC_EXPORT] = ACTIONS(7546), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7546), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7546), + [anon_sym_const] = ACTIONS(7546), + [anon_sym_constexpr] = ACTIONS(7546), + [anon_sym_volatile] = ACTIONS(7546), + [anon_sym_restrict] = ACTIONS(7546), + [anon_sym___restrict__] = ACTIONS(7546), + [anon_sym__Atomic] = ACTIONS(7546), + [anon_sym__Noreturn] = ACTIONS(7546), + [anon_sym__Nonnull] = ACTIONS(7546), + [anon_sym_nullable] = ACTIONS(7546), + [anon_sym__Complex] = ACTIONS(7546), + [anon_sym__Nullable] = ACTIONS(7546), + [anon_sym__Nullable_result] = ACTIONS(7546), + [anon_sym__Null_unspecified] = ACTIONS(7546), + [anon_sym___autoreleasing] = ACTIONS(7546), + [anon_sym___block] = ACTIONS(7546), + [anon_sym___bridge] = ACTIONS(7546), + [anon_sym___bridge_retained] = ACTIONS(7546), + [anon_sym___bridge_transfer] = ACTIONS(7546), + [anon_sym___complex] = ACTIONS(7546), + [anon_sym___const] = ACTIONS(7546), + [anon_sym___imag] = ACTIONS(7546), + [anon_sym___kindof] = ACTIONS(7546), + [anon_sym___nonnull] = ACTIONS(7546), + [anon_sym___nullable] = ACTIONS(7546), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7546), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7546), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7546), + [anon_sym___real] = ACTIONS(7546), + [anon_sym___strong] = ACTIONS(7546), + [anon_sym___unsafe_unretained] = ACTIONS(7546), + [anon_sym___unused] = ACTIONS(7546), + [anon_sym___weak] = ACTIONS(7546), + [anon_sym_alignas] = ACTIONS(7546), + [anon_sym__Alignas] = ACTIONS(7546), + [sym_primitive_type] = ACTIONS(7546), + [anon_sym_enum] = ACTIONS(7546), + [anon_sym_COLON] = ACTIONS(7548), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7546), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7546), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7546), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7546), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7546), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7546), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7546), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7546), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7546), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7546), + [anon_sym_NS_AVAILABLE] = ACTIONS(7546), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7546), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7546), + [anon_sym_API_AVAILABLE] = ACTIONS(7546), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7546), + [anon_sym_API_DEPRECATED] = ACTIONS(7546), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7546), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7546), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7546), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7546), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7546), + [anon_sym___deprecated_msg] = ACTIONS(7546), + [anon_sym___deprecated_enum_msg] = ACTIONS(7546), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7546), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7546), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7546), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7546), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7546), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7546), + }, + [3015] = { + [sym_identifier] = ACTIONS(7550), + [anon_sym_LPAREN2] = ACTIONS(7552), + [anon_sym_STAR] = ACTIONS(7552), + [anon_sym_CARET] = ACTIONS(7552), + [anon_sym___extension__] = ACTIONS(7550), + [anon_sym_extern] = ACTIONS(7550), + [anon_sym___attribute__] = ACTIONS(7550), + [anon_sym___attribute] = ACTIONS(7550), + [anon_sym_noreturn] = ACTIONS(7550), + [anon_sym_LBRACK] = ACTIONS(7552), + [anon_sym___declspec] = ACTIONS(7550), + [anon_sym___based] = ACTIONS(7550), + [sym_ms_restrict_modifier] = ACTIONS(7550), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7550), + [sym_ms_signed_ptr_modifier] = ACTIONS(7550), + [anon_sym__unaligned] = ACTIONS(7550), + [anon_sym___unaligned] = ACTIONS(7550), + [anon_sym_signed] = ACTIONS(7550), + [anon_sym_unsigned] = ACTIONS(7550), + [anon_sym_long] = ACTIONS(7550), + [anon_sym_short] = ACTIONS(7550), + [anon_sym_static] = ACTIONS(7550), + [anon_sym_auto] = ACTIONS(7550), + [anon_sym_register] = ACTIONS(7550), + [anon_sym_inline] = ACTIONS(7550), + [anon_sym___inline] = ACTIONS(7550), + [anon_sym___inline__] = ACTIONS(7550), + [anon_sym___forceinline] = ACTIONS(7550), + [anon_sym_thread_local] = ACTIONS(7550), + [anon_sym___thread] = ACTIONS(7550), + [anon_sym_CG_EXTERN] = ACTIONS(7550), + [anon_sym_CG_INLINE] = ACTIONS(7550), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7550), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7550), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7550), + [anon_sym_IBOutlet] = ACTIONS(7550), + [anon_sym_IBInspectable] = ACTIONS(7550), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7550), + [anon_sym_NS_INLINE] = ACTIONS(7550), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7550), + [anon_sym_OBJC_EXPORT] = ACTIONS(7550), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7550), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7550), + [anon_sym_const] = ACTIONS(7550), + [anon_sym_constexpr] = ACTIONS(7550), + [anon_sym_volatile] = ACTIONS(7550), + [anon_sym_restrict] = ACTIONS(7550), + [anon_sym___restrict__] = ACTIONS(7550), + [anon_sym__Atomic] = ACTIONS(7550), + [anon_sym__Noreturn] = ACTIONS(7550), + [anon_sym__Nonnull] = ACTIONS(7550), + [anon_sym_nullable] = ACTIONS(7550), + [anon_sym__Complex] = ACTIONS(7550), + [anon_sym__Nullable] = ACTIONS(7550), + [anon_sym__Nullable_result] = ACTIONS(7550), + [anon_sym__Null_unspecified] = ACTIONS(7550), + [anon_sym___autoreleasing] = ACTIONS(7550), + [anon_sym___block] = ACTIONS(7550), + [anon_sym___bridge] = ACTIONS(7550), + [anon_sym___bridge_retained] = ACTIONS(7550), + [anon_sym___bridge_transfer] = ACTIONS(7550), + [anon_sym___complex] = ACTIONS(7550), + [anon_sym___const] = ACTIONS(7550), + [anon_sym___imag] = ACTIONS(7550), + [anon_sym___kindof] = ACTIONS(7550), + [anon_sym___nonnull] = ACTIONS(7550), + [anon_sym___nullable] = ACTIONS(7550), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7550), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7550), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7550), + [anon_sym___real] = ACTIONS(7550), + [anon_sym___strong] = ACTIONS(7550), + [anon_sym___unsafe_unretained] = ACTIONS(7550), + [anon_sym___unused] = ACTIONS(7550), + [anon_sym___weak] = ACTIONS(7550), + [anon_sym_alignas] = ACTIONS(7550), + [anon_sym__Alignas] = ACTIONS(7550), + [sym_primitive_type] = ACTIONS(7550), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7550), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7550), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7550), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7550), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7550), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7550), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7550), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7550), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7550), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7550), + [anon_sym_NS_AVAILABLE] = ACTIONS(7550), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7550), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7550), + [anon_sym_API_AVAILABLE] = ACTIONS(7550), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7550), + [anon_sym_API_DEPRECATED] = ACTIONS(7550), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7550), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7550), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7550), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7550), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7550), + [anon_sym___deprecated_msg] = ACTIONS(7550), + [anon_sym___deprecated_enum_msg] = ACTIONS(7550), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7550), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7550), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7550), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7550), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7550), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7550), + }, + [3016] = { + [sym_identifier] = ACTIONS(7554), + [anon_sym_LPAREN2] = ACTIONS(7556), + [anon_sym_STAR] = ACTIONS(7556), + [anon_sym_CARET] = ACTIONS(7556), + [anon_sym___extension__] = ACTIONS(7554), + [anon_sym_extern] = ACTIONS(7554), + [anon_sym___attribute__] = ACTIONS(7554), + [anon_sym___attribute] = ACTIONS(7554), + [anon_sym_noreturn] = ACTIONS(7554), + [anon_sym_LBRACK] = ACTIONS(7556), + [anon_sym___declspec] = ACTIONS(7554), + [anon_sym___based] = ACTIONS(7554), + [sym_ms_restrict_modifier] = ACTIONS(7554), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7554), + [sym_ms_signed_ptr_modifier] = ACTIONS(7554), + [anon_sym__unaligned] = ACTIONS(7554), + [anon_sym___unaligned] = ACTIONS(7554), + [anon_sym_signed] = ACTIONS(7554), + [anon_sym_unsigned] = ACTIONS(7554), + [anon_sym_long] = ACTIONS(7554), + [anon_sym_short] = ACTIONS(7554), + [anon_sym_static] = ACTIONS(7554), + [anon_sym_auto] = ACTIONS(7554), + [anon_sym_register] = ACTIONS(7554), + [anon_sym_inline] = ACTIONS(7554), + [anon_sym___inline] = ACTIONS(7554), + [anon_sym___inline__] = ACTIONS(7554), + [anon_sym___forceinline] = ACTIONS(7554), + [anon_sym_thread_local] = ACTIONS(7554), + [anon_sym___thread] = ACTIONS(7554), + [anon_sym_CG_EXTERN] = ACTIONS(7554), + [anon_sym_CG_INLINE] = ACTIONS(7554), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7554), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7554), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7554), + [anon_sym_IBOutlet] = ACTIONS(7554), + [anon_sym_IBInspectable] = ACTIONS(7554), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7554), + [anon_sym_NS_INLINE] = ACTIONS(7554), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7554), + [anon_sym_OBJC_EXPORT] = ACTIONS(7554), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7554), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7554), + [anon_sym_const] = ACTIONS(7554), + [anon_sym_constexpr] = ACTIONS(7554), + [anon_sym_volatile] = ACTIONS(7554), + [anon_sym_restrict] = ACTIONS(7554), + [anon_sym___restrict__] = ACTIONS(7554), + [anon_sym__Atomic] = ACTIONS(7554), + [anon_sym__Noreturn] = ACTIONS(7554), + [anon_sym__Nonnull] = ACTIONS(7554), + [anon_sym_nullable] = ACTIONS(7554), + [anon_sym__Complex] = ACTIONS(7554), + [anon_sym__Nullable] = ACTIONS(7554), + [anon_sym__Nullable_result] = ACTIONS(7554), + [anon_sym__Null_unspecified] = ACTIONS(7554), + [anon_sym___autoreleasing] = ACTIONS(7554), + [anon_sym___block] = ACTIONS(7554), + [anon_sym___bridge] = ACTIONS(7554), + [anon_sym___bridge_retained] = ACTIONS(7554), + [anon_sym___bridge_transfer] = ACTIONS(7554), + [anon_sym___complex] = ACTIONS(7554), + [anon_sym___const] = ACTIONS(7554), + [anon_sym___imag] = ACTIONS(7554), + [anon_sym___kindof] = ACTIONS(7554), + [anon_sym___nonnull] = ACTIONS(7554), + [anon_sym___nullable] = ACTIONS(7554), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7554), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7554), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7554), + [anon_sym___real] = ACTIONS(7554), + [anon_sym___strong] = ACTIONS(7554), + [anon_sym___unsafe_unretained] = ACTIONS(7554), + [anon_sym___unused] = ACTIONS(7554), + [anon_sym___weak] = ACTIONS(7554), + [anon_sym_alignas] = ACTIONS(7554), + [anon_sym__Alignas] = ACTIONS(7554), + [sym_primitive_type] = ACTIONS(7554), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7554), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7554), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7554), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7554), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7554), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7554), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7554), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7554), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7554), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7554), + [anon_sym_NS_AVAILABLE] = ACTIONS(7554), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7554), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7554), + [anon_sym_API_AVAILABLE] = ACTIONS(7554), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7554), + [anon_sym_API_DEPRECATED] = ACTIONS(7554), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7554), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7554), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7554), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7554), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7554), + [anon_sym___deprecated_msg] = ACTIONS(7554), + [anon_sym___deprecated_enum_msg] = ACTIONS(7554), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7554), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7554), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7554), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7554), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7554), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7554), + }, + [3017] = { + [sym_identifier] = ACTIONS(7558), + [anon_sym_COMMA] = ACTIONS(7560), + [anon_sym_RPAREN] = ACTIONS(7560), + [anon_sym_LPAREN2] = ACTIONS(7560), + [anon_sym_STAR] = ACTIONS(7560), + [anon_sym_CARET] = ACTIONS(7560), + [anon_sym_SEMI] = ACTIONS(7560), + [anon_sym___extension__] = ACTIONS(7558), + [anon_sym_extern] = ACTIONS(7558), + [anon_sym___attribute__] = ACTIONS(7558), + [anon_sym___attribute] = ACTIONS(7558), + [anon_sym_noreturn] = ACTIONS(7558), + [anon_sym_LBRACK] = ACTIONS(7560), + [anon_sym___declspec] = ACTIONS(7558), + [anon_sym___based] = ACTIONS(7558), + [anon_sym_signed] = ACTIONS(7558), + [anon_sym_unsigned] = ACTIONS(7558), + [anon_sym_long] = ACTIONS(7558), + [anon_sym_short] = ACTIONS(7558), + [anon_sym_static] = ACTIONS(7558), + [anon_sym_auto] = ACTIONS(7558), + [anon_sym_register] = ACTIONS(7558), + [anon_sym_inline] = ACTIONS(7558), + [anon_sym___inline] = ACTIONS(7558), + [anon_sym___inline__] = ACTIONS(7558), + [anon_sym___forceinline] = ACTIONS(7558), + [anon_sym_thread_local] = ACTIONS(7558), + [anon_sym___thread] = ACTIONS(7558), + [anon_sym_CG_EXTERN] = ACTIONS(7558), + [anon_sym_CG_INLINE] = ACTIONS(7558), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7558), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7558), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7558), + [anon_sym_IBOutlet] = ACTIONS(7558), + [anon_sym_IBInspectable] = ACTIONS(7558), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7558), + [anon_sym_NS_INLINE] = ACTIONS(7558), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7558), + [anon_sym_OBJC_EXPORT] = ACTIONS(7558), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7558), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7558), + [anon_sym_const] = ACTIONS(7558), + [anon_sym_constexpr] = ACTIONS(7558), + [anon_sym_volatile] = ACTIONS(7558), + [anon_sym_restrict] = ACTIONS(7558), + [anon_sym___restrict__] = ACTIONS(7558), + [anon_sym__Atomic] = ACTIONS(7558), + [anon_sym__Noreturn] = ACTIONS(7558), + [anon_sym__Nonnull] = ACTIONS(7558), + [anon_sym_nullable] = ACTIONS(7558), + [anon_sym__Complex] = ACTIONS(7558), + [anon_sym__Nullable] = ACTIONS(7558), + [anon_sym__Nullable_result] = ACTIONS(7558), + [anon_sym__Null_unspecified] = ACTIONS(7558), + [anon_sym___autoreleasing] = ACTIONS(7558), + [anon_sym___block] = ACTIONS(7558), + [anon_sym___bridge] = ACTIONS(7558), + [anon_sym___bridge_retained] = ACTIONS(7558), + [anon_sym___bridge_transfer] = ACTIONS(7558), + [anon_sym___complex] = ACTIONS(7558), + [anon_sym___const] = ACTIONS(7558), + [anon_sym___imag] = ACTIONS(7558), + [anon_sym___kindof] = ACTIONS(7558), + [anon_sym___nonnull] = ACTIONS(7558), + [anon_sym___nullable] = ACTIONS(7558), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7558), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7558), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7558), + [anon_sym___real] = ACTIONS(7558), + [anon_sym___strong] = ACTIONS(7558), + [anon_sym___unsafe_unretained] = ACTIONS(7558), + [anon_sym___unused] = ACTIONS(7558), + [anon_sym___weak] = ACTIONS(7558), + [anon_sym_alignas] = ACTIONS(7558), + [anon_sym__Alignas] = ACTIONS(7558), + [sym_primitive_type] = ACTIONS(7558), + [anon_sym_enum] = ACTIONS(7558), + [anon_sym_COLON] = ACTIONS(7560), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7558), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7558), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7558), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7558), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7558), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7558), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7558), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7558), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7558), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7558), + [anon_sym_NS_AVAILABLE] = ACTIONS(7558), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7558), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7558), + [anon_sym_API_AVAILABLE] = ACTIONS(7558), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7558), + [anon_sym_API_DEPRECATED] = ACTIONS(7558), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7558), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7558), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7558), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7558), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7558), + [anon_sym___deprecated_msg] = ACTIONS(7558), + [anon_sym___deprecated_enum_msg] = ACTIONS(7558), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7558), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7558), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7558), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7558), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7558), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7558), + }, + [3018] = { + [sym_identifier] = ACTIONS(7562), + [anon_sym_COMMA] = ACTIONS(7564), + [anon_sym_RPAREN] = ACTIONS(7564), + [anon_sym_LPAREN2] = ACTIONS(7564), + [anon_sym_STAR] = ACTIONS(7564), + [anon_sym_CARET] = ACTIONS(7564), + [anon_sym_SEMI] = ACTIONS(7564), + [anon_sym___extension__] = ACTIONS(7562), + [anon_sym_extern] = ACTIONS(7562), + [anon_sym___attribute__] = ACTIONS(7562), + [anon_sym___attribute] = ACTIONS(7562), + [anon_sym_noreturn] = ACTIONS(7562), + [anon_sym_LBRACK] = ACTIONS(7564), + [anon_sym___declspec] = ACTIONS(7562), + [anon_sym___based] = ACTIONS(7562), + [anon_sym_signed] = ACTIONS(7562), + [anon_sym_unsigned] = ACTIONS(7562), + [anon_sym_long] = ACTIONS(7562), + [anon_sym_short] = ACTIONS(7562), + [anon_sym_static] = ACTIONS(7562), + [anon_sym_auto] = ACTIONS(7562), + [anon_sym_register] = ACTIONS(7562), + [anon_sym_inline] = ACTIONS(7562), + [anon_sym___inline] = ACTIONS(7562), + [anon_sym___inline__] = ACTIONS(7562), + [anon_sym___forceinline] = ACTIONS(7562), + [anon_sym_thread_local] = ACTIONS(7562), + [anon_sym___thread] = ACTIONS(7562), + [anon_sym_CG_EXTERN] = ACTIONS(7562), + [anon_sym_CG_INLINE] = ACTIONS(7562), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7562), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7562), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7562), + [anon_sym_IBOutlet] = ACTIONS(7562), + [anon_sym_IBInspectable] = ACTIONS(7562), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7562), + [anon_sym_NS_INLINE] = ACTIONS(7562), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7562), + [anon_sym_OBJC_EXPORT] = ACTIONS(7562), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7562), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7562), + [anon_sym_const] = ACTIONS(7562), + [anon_sym_constexpr] = ACTIONS(7562), + [anon_sym_volatile] = ACTIONS(7562), + [anon_sym_restrict] = ACTIONS(7562), + [anon_sym___restrict__] = ACTIONS(7562), + [anon_sym__Atomic] = ACTIONS(7562), + [anon_sym__Noreturn] = ACTIONS(7562), + [anon_sym__Nonnull] = ACTIONS(7562), + [anon_sym_nullable] = ACTIONS(7562), + [anon_sym__Complex] = ACTIONS(7562), + [anon_sym__Nullable] = ACTIONS(7562), + [anon_sym__Nullable_result] = ACTIONS(7562), + [anon_sym__Null_unspecified] = ACTIONS(7562), + [anon_sym___autoreleasing] = ACTIONS(7562), + [anon_sym___block] = ACTIONS(7562), + [anon_sym___bridge] = ACTIONS(7562), + [anon_sym___bridge_retained] = ACTIONS(7562), + [anon_sym___bridge_transfer] = ACTIONS(7562), + [anon_sym___complex] = ACTIONS(7562), + [anon_sym___const] = ACTIONS(7562), + [anon_sym___imag] = ACTIONS(7562), + [anon_sym___kindof] = ACTIONS(7562), + [anon_sym___nonnull] = ACTIONS(7562), + [anon_sym___nullable] = ACTIONS(7562), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7562), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7562), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7562), + [anon_sym___real] = ACTIONS(7562), + [anon_sym___strong] = ACTIONS(7562), + [anon_sym___unsafe_unretained] = ACTIONS(7562), + [anon_sym___unused] = ACTIONS(7562), + [anon_sym___weak] = ACTIONS(7562), + [anon_sym_alignas] = ACTIONS(7562), + [anon_sym__Alignas] = ACTIONS(7562), + [sym_primitive_type] = ACTIONS(7562), + [anon_sym_enum] = ACTIONS(7562), + [anon_sym_COLON] = ACTIONS(7564), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7562), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7562), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7562), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7562), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7562), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7562), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7562), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7562), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7562), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7562), + [anon_sym_NS_AVAILABLE] = ACTIONS(7562), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7562), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7562), + [anon_sym_API_AVAILABLE] = ACTIONS(7562), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7562), + [anon_sym_API_DEPRECATED] = ACTIONS(7562), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7562), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7562), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7562), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7562), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7562), + [anon_sym___deprecated_msg] = ACTIONS(7562), + [anon_sym___deprecated_enum_msg] = ACTIONS(7562), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7562), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7562), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7562), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7562), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7562), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7562), + }, + [3019] = { + [sym_identifier] = ACTIONS(7566), + [anon_sym_COMMA] = ACTIONS(7568), + [anon_sym_RPAREN] = ACTIONS(7568), + [anon_sym_LPAREN2] = ACTIONS(7568), + [anon_sym_STAR] = ACTIONS(7568), + [anon_sym_CARET] = ACTIONS(7568), + [anon_sym_SEMI] = ACTIONS(7568), + [anon_sym___extension__] = ACTIONS(7566), + [anon_sym_extern] = ACTIONS(7566), + [anon_sym___attribute__] = ACTIONS(7566), + [anon_sym___attribute] = ACTIONS(7566), + [anon_sym_noreturn] = ACTIONS(7566), + [anon_sym_LBRACK] = ACTIONS(7568), + [anon_sym___declspec] = ACTIONS(7566), + [anon_sym___based] = ACTIONS(7566), + [anon_sym_signed] = ACTIONS(7566), + [anon_sym_unsigned] = ACTIONS(7566), + [anon_sym_long] = ACTIONS(7566), + [anon_sym_short] = ACTIONS(7566), + [anon_sym_static] = ACTIONS(7566), + [anon_sym_auto] = ACTIONS(7566), + [anon_sym_register] = ACTIONS(7566), + [anon_sym_inline] = ACTIONS(7566), + [anon_sym___inline] = ACTIONS(7566), + [anon_sym___inline__] = ACTIONS(7566), + [anon_sym___forceinline] = ACTIONS(7566), + [anon_sym_thread_local] = ACTIONS(7566), + [anon_sym___thread] = ACTIONS(7566), + [anon_sym_CG_EXTERN] = ACTIONS(7566), + [anon_sym_CG_INLINE] = ACTIONS(7566), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7566), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7566), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7566), + [anon_sym_IBOutlet] = ACTIONS(7566), + [anon_sym_IBInspectable] = ACTIONS(7566), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7566), + [anon_sym_NS_INLINE] = ACTIONS(7566), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7566), + [anon_sym_OBJC_EXPORT] = ACTIONS(7566), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7566), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7566), + [anon_sym_const] = ACTIONS(7566), + [anon_sym_constexpr] = ACTIONS(7566), + [anon_sym_volatile] = ACTIONS(7566), + [anon_sym_restrict] = ACTIONS(7566), + [anon_sym___restrict__] = ACTIONS(7566), + [anon_sym__Atomic] = ACTIONS(7566), + [anon_sym__Noreturn] = ACTIONS(7566), + [anon_sym__Nonnull] = ACTIONS(7566), + [anon_sym_nullable] = ACTIONS(7566), + [anon_sym__Complex] = ACTIONS(7566), + [anon_sym__Nullable] = ACTIONS(7566), + [anon_sym__Nullable_result] = ACTIONS(7566), + [anon_sym__Null_unspecified] = ACTIONS(7566), + [anon_sym___autoreleasing] = ACTIONS(7566), + [anon_sym___block] = ACTIONS(7566), + [anon_sym___bridge] = ACTIONS(7566), + [anon_sym___bridge_retained] = ACTIONS(7566), + [anon_sym___bridge_transfer] = ACTIONS(7566), + [anon_sym___complex] = ACTIONS(7566), + [anon_sym___const] = ACTIONS(7566), + [anon_sym___imag] = ACTIONS(7566), + [anon_sym___kindof] = ACTIONS(7566), + [anon_sym___nonnull] = ACTIONS(7566), + [anon_sym___nullable] = ACTIONS(7566), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7566), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7566), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7566), + [anon_sym___real] = ACTIONS(7566), + [anon_sym___strong] = ACTIONS(7566), + [anon_sym___unsafe_unretained] = ACTIONS(7566), + [anon_sym___unused] = ACTIONS(7566), + [anon_sym___weak] = ACTIONS(7566), + [anon_sym_alignas] = ACTIONS(7566), + [anon_sym__Alignas] = ACTIONS(7566), + [sym_primitive_type] = ACTIONS(7566), + [anon_sym_enum] = ACTIONS(7566), + [anon_sym_COLON] = ACTIONS(7568), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7566), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7566), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7566), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7566), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7566), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7566), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7566), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7566), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7566), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7566), + [anon_sym_NS_AVAILABLE] = ACTIONS(7566), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7566), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7566), + [anon_sym_API_AVAILABLE] = ACTIONS(7566), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7566), + [anon_sym_API_DEPRECATED] = ACTIONS(7566), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7566), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7566), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7566), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7566), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7566), + [anon_sym___deprecated_msg] = ACTIONS(7566), + [anon_sym___deprecated_enum_msg] = ACTIONS(7566), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7566), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7566), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7566), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7566), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7566), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7566), + }, + [3020] = { + [sym_identifier] = ACTIONS(7570), + [anon_sym_COMMA] = ACTIONS(7572), + [anon_sym_RPAREN] = ACTIONS(7572), + [anon_sym_LPAREN2] = ACTIONS(7572), + [anon_sym_STAR] = ACTIONS(7572), + [anon_sym_CARET] = ACTIONS(7572), + [anon_sym_SEMI] = ACTIONS(7572), + [anon_sym___extension__] = ACTIONS(7570), + [anon_sym_extern] = ACTIONS(7570), + [anon_sym___attribute__] = ACTIONS(7570), + [anon_sym___attribute] = ACTIONS(7570), + [anon_sym_noreturn] = ACTIONS(7570), + [anon_sym_LBRACK] = ACTIONS(7572), + [anon_sym___declspec] = ACTIONS(7570), + [anon_sym___based] = ACTIONS(7570), + [anon_sym_signed] = ACTIONS(7570), + [anon_sym_unsigned] = ACTIONS(7570), + [anon_sym_long] = ACTIONS(7570), + [anon_sym_short] = ACTIONS(7570), + [anon_sym_static] = ACTIONS(7570), + [anon_sym_auto] = ACTIONS(7570), + [anon_sym_register] = ACTIONS(7570), + [anon_sym_inline] = ACTIONS(7570), + [anon_sym___inline] = ACTIONS(7570), + [anon_sym___inline__] = ACTIONS(7570), + [anon_sym___forceinline] = ACTIONS(7570), + [anon_sym_thread_local] = ACTIONS(7570), + [anon_sym___thread] = ACTIONS(7570), + [anon_sym_CG_EXTERN] = ACTIONS(7570), + [anon_sym_CG_INLINE] = ACTIONS(7570), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7570), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7570), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7570), + [anon_sym_IBOutlet] = ACTIONS(7570), + [anon_sym_IBInspectable] = ACTIONS(7570), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7570), + [anon_sym_NS_INLINE] = ACTIONS(7570), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7570), + [anon_sym_OBJC_EXPORT] = ACTIONS(7570), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7570), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7570), + [anon_sym_const] = ACTIONS(7570), + [anon_sym_constexpr] = ACTIONS(7570), + [anon_sym_volatile] = ACTIONS(7570), + [anon_sym_restrict] = ACTIONS(7570), + [anon_sym___restrict__] = ACTIONS(7570), + [anon_sym__Atomic] = ACTIONS(7570), + [anon_sym__Noreturn] = ACTIONS(7570), + [anon_sym__Nonnull] = ACTIONS(7570), + [anon_sym_nullable] = ACTIONS(7570), + [anon_sym__Complex] = ACTIONS(7570), + [anon_sym__Nullable] = ACTIONS(7570), + [anon_sym__Nullable_result] = ACTIONS(7570), + [anon_sym__Null_unspecified] = ACTIONS(7570), + [anon_sym___autoreleasing] = ACTIONS(7570), + [anon_sym___block] = ACTIONS(7570), + [anon_sym___bridge] = ACTIONS(7570), + [anon_sym___bridge_retained] = ACTIONS(7570), + [anon_sym___bridge_transfer] = ACTIONS(7570), + [anon_sym___complex] = ACTIONS(7570), + [anon_sym___const] = ACTIONS(7570), + [anon_sym___imag] = ACTIONS(7570), + [anon_sym___kindof] = ACTIONS(7570), + [anon_sym___nonnull] = ACTIONS(7570), + [anon_sym___nullable] = ACTIONS(7570), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7570), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7570), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7570), + [anon_sym___real] = ACTIONS(7570), + [anon_sym___strong] = ACTIONS(7570), + [anon_sym___unsafe_unretained] = ACTIONS(7570), + [anon_sym___unused] = ACTIONS(7570), + [anon_sym___weak] = ACTIONS(7570), + [anon_sym_alignas] = ACTIONS(7570), + [anon_sym__Alignas] = ACTIONS(7570), + [sym_primitive_type] = ACTIONS(7570), + [anon_sym_enum] = ACTIONS(7570), + [anon_sym_COLON] = ACTIONS(7572), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7570), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7570), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7570), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7570), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7570), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7570), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7570), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7570), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7570), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7570), + [anon_sym_NS_AVAILABLE] = ACTIONS(7570), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7570), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7570), + [anon_sym_API_AVAILABLE] = ACTIONS(7570), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7570), + [anon_sym_API_DEPRECATED] = ACTIONS(7570), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7570), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7570), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7570), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7570), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7570), + [anon_sym___deprecated_msg] = ACTIONS(7570), + [anon_sym___deprecated_enum_msg] = ACTIONS(7570), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7570), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7570), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7570), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7570), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7570), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7570), + }, + [3021] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_COMMA] = ACTIONS(5932), + [anon_sym_RPAREN] = ACTIONS(5941), + [anon_sym_LPAREN2] = ACTIONS(7574), + [anon_sym_STAR] = ACTIONS(5932), + [anon_sym_CARET] = ACTIONS(5932), + [anon_sym_LT] = ACTIONS(7168), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(5941), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [3022] = { + [sym__declaration_modifiers] = STATE(5097), + [sym_attribute_specifier] = STATE(5097), + [sym_attribute_declaration] = STATE(5097), + [sym_ms_declspec_modifier] = STATE(5097), + [sym_storage_class_specifier] = STATE(5097), + [sym_type_qualifier] = STATE(5097), + [sym_alignas_qualifier] = STATE(5101), + [sym_availability_attribute_specifier] = STATE(5097), + [sym_method_type] = STATE(3095), + [sym_identifier] = ACTIONS(7578), + [anon_sym_LPAREN2] = ACTIONS(7580), + [anon_sym___extension__] = ACTIONS(7582), + [anon_sym_extern] = ACTIONS(7584), + [anon_sym___attribute__] = ACTIONS(7586), + [anon_sym___attribute] = ACTIONS(7586), + [anon_sym_noreturn] = ACTIONS(7582), + [anon_sym_LBRACK] = ACTIONS(7588), + [anon_sym___declspec] = ACTIONS(7590), + [anon_sym_static] = ACTIONS(7584), + [anon_sym_auto] = ACTIONS(7584), + [anon_sym_register] = ACTIONS(7584), + [anon_sym_inline] = ACTIONS(7584), + [anon_sym___inline] = ACTIONS(7584), + [anon_sym___inline__] = ACTIONS(7584), + [anon_sym___forceinline] = ACTIONS(7584), + [anon_sym_thread_local] = ACTIONS(7584), + [anon_sym___thread] = ACTIONS(7584), + [anon_sym_CG_EXTERN] = ACTIONS(7584), + [anon_sym_CG_INLINE] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7584), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7584), + [anon_sym_IBOutlet] = ACTIONS(7584), + [anon_sym_IBInspectable] = ACTIONS(7584), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7584), + [anon_sym_NS_INLINE] = ACTIONS(7584), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7584), + [anon_sym_OBJC_EXPORT] = ACTIONS(7584), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7584), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7592), + [anon_sym_constexpr] = ACTIONS(7582), + [anon_sym_volatile] = ACTIONS(7582), + [anon_sym_restrict] = ACTIONS(7582), + [anon_sym___restrict__] = ACTIONS(7582), + [anon_sym__Atomic] = ACTIONS(7582), + [anon_sym__Noreturn] = ACTIONS(7582), + [anon_sym__Nonnull] = ACTIONS(7582), + [anon_sym_nullable] = ACTIONS(7582), + [anon_sym__Complex] = ACTIONS(7582), + [anon_sym__Nullable] = ACTIONS(7582), + [anon_sym__Nullable_result] = ACTIONS(7582), + [anon_sym__Null_unspecified] = ACTIONS(7582), + [anon_sym___autoreleasing] = ACTIONS(7582), + [anon_sym___block] = ACTIONS(7582), + [anon_sym___bridge] = ACTIONS(7582), + [anon_sym___bridge_retained] = ACTIONS(7582), + [anon_sym___bridge_transfer] = ACTIONS(7582), + [anon_sym___complex] = ACTIONS(7582), + [anon_sym___const] = ACTIONS(7582), + [anon_sym___imag] = ACTIONS(7582), + [anon_sym___kindof] = ACTIONS(7582), + [anon_sym___nonnull] = ACTIONS(7582), + [anon_sym___nullable] = ACTIONS(7582), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7582), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7582), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7582), + [anon_sym___real] = ACTIONS(7582), + [anon_sym___strong] = ACTIONS(7582), + [anon_sym___unsafe_unretained] = ACTIONS(7582), + [anon_sym___unused] = ACTIONS(7582), + [anon_sym___weak] = ACTIONS(7582), + [anon_sym_alignas] = ACTIONS(7594), + [anon_sym__Alignas] = ACTIONS(7594), + [anon_sym_struct] = ACTIONS(7596), + [anon_sym_in] = ACTIONS(7596), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7598), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7598), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7598), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7598), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7598), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE] = ACTIONS(7600), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_API_AVAILABLE] = ACTIONS(7600), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_API_DEPRECATED] = ACTIONS(7600), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7600), + [anon_sym___deprecated_msg] = ACTIONS(7600), + [anon_sym___deprecated_enum_msg] = ACTIONS(7600), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7600), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7600), + [anon_sym_id] = ACTIONS(7596), + }, + [3023] = { + [sym__declaration_modifiers] = STATE(5097), + [sym_attribute_specifier] = STATE(5097), + [sym_attribute_declaration] = STATE(5097), + [sym_ms_declspec_modifier] = STATE(5097), + [sym_storage_class_specifier] = STATE(5097), + [sym_type_qualifier] = STATE(5097), + [sym_alignas_qualifier] = STATE(5101), + [sym_availability_attribute_specifier] = STATE(5097), + [sym_method_type] = STATE(3097), + [sym_identifier] = ACTIONS(7602), + [anon_sym_LPAREN2] = ACTIONS(7580), + [anon_sym___extension__] = ACTIONS(7582), + [anon_sym_extern] = ACTIONS(7584), + [anon_sym___attribute__] = ACTIONS(7586), + [anon_sym___attribute] = ACTIONS(7586), + [anon_sym_noreturn] = ACTIONS(7582), + [anon_sym_LBRACK] = ACTIONS(7588), + [anon_sym___declspec] = ACTIONS(7590), + [anon_sym_static] = ACTIONS(7584), + [anon_sym_auto] = ACTIONS(7584), + [anon_sym_register] = ACTIONS(7584), + [anon_sym_inline] = ACTIONS(7584), + [anon_sym___inline] = ACTIONS(7584), + [anon_sym___inline__] = ACTIONS(7584), + [anon_sym___forceinline] = ACTIONS(7584), + [anon_sym_thread_local] = ACTIONS(7584), + [anon_sym___thread] = ACTIONS(7584), + [anon_sym_CG_EXTERN] = ACTIONS(7584), + [anon_sym_CG_INLINE] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7584), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7584), + [anon_sym_IBOutlet] = ACTIONS(7584), + [anon_sym_IBInspectable] = ACTIONS(7584), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7584), + [anon_sym_NS_INLINE] = ACTIONS(7584), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7584), + [anon_sym_OBJC_EXPORT] = ACTIONS(7584), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7584), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7592), + [anon_sym_constexpr] = ACTIONS(7582), + [anon_sym_volatile] = ACTIONS(7582), + [anon_sym_restrict] = ACTIONS(7582), + [anon_sym___restrict__] = ACTIONS(7582), + [anon_sym__Atomic] = ACTIONS(7582), + [anon_sym__Noreturn] = ACTIONS(7582), + [anon_sym__Nonnull] = ACTIONS(7582), + [anon_sym_nullable] = ACTIONS(7582), + [anon_sym__Complex] = ACTIONS(7582), + [anon_sym__Nullable] = ACTIONS(7582), + [anon_sym__Nullable_result] = ACTIONS(7582), + [anon_sym__Null_unspecified] = ACTIONS(7582), + [anon_sym___autoreleasing] = ACTIONS(7582), + [anon_sym___block] = ACTIONS(7582), + [anon_sym___bridge] = ACTIONS(7582), + [anon_sym___bridge_retained] = ACTIONS(7582), + [anon_sym___bridge_transfer] = ACTIONS(7582), + [anon_sym___complex] = ACTIONS(7582), + [anon_sym___const] = ACTIONS(7582), + [anon_sym___imag] = ACTIONS(7582), + [anon_sym___kindof] = ACTIONS(7582), + [anon_sym___nonnull] = ACTIONS(7582), + [anon_sym___nullable] = ACTIONS(7582), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7582), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7582), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7582), + [anon_sym___real] = ACTIONS(7582), + [anon_sym___strong] = ACTIONS(7582), + [anon_sym___unsafe_unretained] = ACTIONS(7582), + [anon_sym___unused] = ACTIONS(7582), + [anon_sym___weak] = ACTIONS(7582), + [anon_sym_alignas] = ACTIONS(7594), + [anon_sym__Alignas] = ACTIONS(7594), + [anon_sym_struct] = ACTIONS(7596), + [anon_sym_in] = ACTIONS(7596), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7598), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7598), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7598), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7598), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7598), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE] = ACTIONS(7600), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_API_AVAILABLE] = ACTIONS(7600), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_API_DEPRECATED] = ACTIONS(7600), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7600), + [anon_sym___deprecated_msg] = ACTIONS(7600), + [anon_sym___deprecated_enum_msg] = ACTIONS(7600), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7600), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7600), + [anon_sym_id] = ACTIONS(7596), + }, + [3024] = { + [sym_method_parameter] = STATE(2816), + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_LPAREN2] = ACTIONS(7165), + [anon_sym_STAR] = ACTIONS(5932), + [anon_sym_CARET] = ACTIONS(5932), + [anon_sym_LT] = ACTIONS(7168), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(5932), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [anon_sym_COLON] = ACTIONS(7604), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [3025] = { + [sym__declaration_modifiers] = STATE(5097), + [sym_attribute_specifier] = STATE(5097), + [sym_attribute_declaration] = STATE(5097), + [sym_ms_declspec_modifier] = STATE(5097), + [sym_storage_class_specifier] = STATE(5097), + [sym_type_qualifier] = STATE(5097), + [sym_alignas_qualifier] = STATE(5101), + [sym_availability_attribute_specifier] = STATE(5097), + [sym_method_type] = STATE(3088), + [sym_identifier] = ACTIONS(7606), + [anon_sym_LPAREN2] = ACTIONS(7580), + [anon_sym___extension__] = ACTIONS(7582), + [anon_sym_extern] = ACTIONS(7584), + [anon_sym___attribute__] = ACTIONS(7586), + [anon_sym___attribute] = ACTIONS(7586), + [anon_sym_noreturn] = ACTIONS(7582), + [anon_sym_LBRACK] = ACTIONS(7588), + [anon_sym___declspec] = ACTIONS(7590), + [anon_sym_static] = ACTIONS(7584), + [anon_sym_auto] = ACTIONS(7584), + [anon_sym_register] = ACTIONS(7584), + [anon_sym_inline] = ACTIONS(7584), + [anon_sym___inline] = ACTIONS(7584), + [anon_sym___inline__] = ACTIONS(7584), + [anon_sym___forceinline] = ACTIONS(7584), + [anon_sym_thread_local] = ACTIONS(7584), + [anon_sym___thread] = ACTIONS(7584), + [anon_sym_CG_EXTERN] = ACTIONS(7584), + [anon_sym_CG_INLINE] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7584), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7584), + [anon_sym_IBOutlet] = ACTIONS(7584), + [anon_sym_IBInspectable] = ACTIONS(7584), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7584), + [anon_sym_NS_INLINE] = ACTIONS(7584), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7584), + [anon_sym_OBJC_EXPORT] = ACTIONS(7584), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7584), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7592), + [anon_sym_constexpr] = ACTIONS(7582), + [anon_sym_volatile] = ACTIONS(7582), + [anon_sym_restrict] = ACTIONS(7582), + [anon_sym___restrict__] = ACTIONS(7582), + [anon_sym__Atomic] = ACTIONS(7582), + [anon_sym__Noreturn] = ACTIONS(7582), + [anon_sym__Nonnull] = ACTIONS(7582), + [anon_sym_nullable] = ACTIONS(7582), + [anon_sym__Complex] = ACTIONS(7582), + [anon_sym__Nullable] = ACTIONS(7582), + [anon_sym__Nullable_result] = ACTIONS(7582), + [anon_sym__Null_unspecified] = ACTIONS(7582), + [anon_sym___autoreleasing] = ACTIONS(7582), + [anon_sym___block] = ACTIONS(7582), + [anon_sym___bridge] = ACTIONS(7582), + [anon_sym___bridge_retained] = ACTIONS(7582), + [anon_sym___bridge_transfer] = ACTIONS(7582), + [anon_sym___complex] = ACTIONS(7582), + [anon_sym___const] = ACTIONS(7582), + [anon_sym___imag] = ACTIONS(7582), + [anon_sym___kindof] = ACTIONS(7582), + [anon_sym___nonnull] = ACTIONS(7582), + [anon_sym___nullable] = ACTIONS(7582), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7582), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7582), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7582), + [anon_sym___real] = ACTIONS(7582), + [anon_sym___strong] = ACTIONS(7582), + [anon_sym___unsafe_unretained] = ACTIONS(7582), + [anon_sym___unused] = ACTIONS(7582), + [anon_sym___weak] = ACTIONS(7582), + [anon_sym_alignas] = ACTIONS(7594), + [anon_sym__Alignas] = ACTIONS(7594), + [anon_sym_struct] = ACTIONS(7596), + [anon_sym_in] = ACTIONS(7596), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7598), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7598), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7598), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7598), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7598), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE] = ACTIONS(7600), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_API_AVAILABLE] = ACTIONS(7600), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_API_DEPRECATED] = ACTIONS(7600), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7600), + [anon_sym___deprecated_msg] = ACTIONS(7600), + [anon_sym___deprecated_enum_msg] = ACTIONS(7600), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7600), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7600), + [anon_sym_id] = ACTIONS(7596), + }, + [3026] = { + [sym_expression] = STATE(1637), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_initializer_list] = STATE(1655), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_COMMA] = ACTIONS(2222), + [anon_sym_RPAREN] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(4350), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(2222), + [anon_sym_PIPE_PIPE] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2222), + [anon_sym_PIPE] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2222), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_EQ_EQ] = ACTIONS(2222), + [anon_sym_BANG_EQ] = ACTIONS(2222), + [anon_sym_GT] = ACTIONS(2220), + [anon_sym_GT_EQ] = ACTIONS(2222), + [anon_sym_LT_EQ] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2220), + [anon_sym_LT_LT] = ACTIONS(2222), + [anon_sym_GT_GT] = ACTIONS(2222), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [anon_sym_DOT] = ACTIONS(2220), + [anon_sym_DASH_GT] = ACTIONS(2222), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3027] = { + [sym__declaration_modifiers] = STATE(5097), + [sym_attribute_specifier] = STATE(5097), + [sym_attribute_declaration] = STATE(5097), + [sym_ms_declspec_modifier] = STATE(5097), + [sym_storage_class_specifier] = STATE(5097), + [sym_type_qualifier] = STATE(5097), + [sym_alignas_qualifier] = STATE(5101), + [sym_availability_attribute_specifier] = STATE(5097), + [sym_method_type] = STATE(3084), + [sym_identifier] = ACTIONS(7606), + [anon_sym_LPAREN2] = ACTIONS(7580), + [anon_sym___extension__] = ACTIONS(7582), + [anon_sym_extern] = ACTIONS(7584), + [anon_sym___attribute__] = ACTIONS(7586), + [anon_sym___attribute] = ACTIONS(7586), + [anon_sym_noreturn] = ACTIONS(7582), + [anon_sym_LBRACK] = ACTIONS(7588), + [anon_sym___declspec] = ACTIONS(7590), + [anon_sym_static] = ACTIONS(7584), + [anon_sym_auto] = ACTIONS(7584), + [anon_sym_register] = ACTIONS(7584), + [anon_sym_inline] = ACTIONS(7584), + [anon_sym___inline] = ACTIONS(7584), + [anon_sym___inline__] = ACTIONS(7584), + [anon_sym___forceinline] = ACTIONS(7584), + [anon_sym_thread_local] = ACTIONS(7584), + [anon_sym___thread] = ACTIONS(7584), + [anon_sym_CG_EXTERN] = ACTIONS(7584), + [anon_sym_CG_INLINE] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7584), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7584), + [anon_sym_IBOutlet] = ACTIONS(7584), + [anon_sym_IBInspectable] = ACTIONS(7584), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7584), + [anon_sym_NS_INLINE] = ACTIONS(7584), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7584), + [anon_sym_OBJC_EXPORT] = ACTIONS(7584), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7584), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7608), + [anon_sym_constexpr] = ACTIONS(7582), + [anon_sym_volatile] = ACTIONS(7582), + [anon_sym_restrict] = ACTIONS(7582), + [anon_sym___restrict__] = ACTIONS(7582), + [anon_sym__Atomic] = ACTIONS(7582), + [anon_sym__Noreturn] = ACTIONS(7582), + [anon_sym__Nonnull] = ACTIONS(7582), + [anon_sym_nullable] = ACTIONS(7582), + [anon_sym__Complex] = ACTIONS(7582), + [anon_sym__Nullable] = ACTIONS(7582), + [anon_sym__Nullable_result] = ACTIONS(7582), + [anon_sym__Null_unspecified] = ACTIONS(7582), + [anon_sym___autoreleasing] = ACTIONS(7582), + [anon_sym___block] = ACTIONS(7582), + [anon_sym___bridge] = ACTIONS(7582), + [anon_sym___bridge_retained] = ACTIONS(7582), + [anon_sym___bridge_transfer] = ACTIONS(7582), + [anon_sym___complex] = ACTIONS(7582), + [anon_sym___const] = ACTIONS(7582), + [anon_sym___imag] = ACTIONS(7582), + [anon_sym___kindof] = ACTIONS(7582), + [anon_sym___nonnull] = ACTIONS(7582), + [anon_sym___nullable] = ACTIONS(7582), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7582), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7582), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7582), + [anon_sym___real] = ACTIONS(7582), + [anon_sym___strong] = ACTIONS(7582), + [anon_sym___unsafe_unretained] = ACTIONS(7582), + [anon_sym___unused] = ACTIONS(7582), + [anon_sym___weak] = ACTIONS(7582), + [anon_sym_alignas] = ACTIONS(7594), + [anon_sym__Alignas] = ACTIONS(7594), + [anon_sym_struct] = ACTIONS(7596), + [anon_sym_in] = ACTIONS(7596), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7598), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7598), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7598), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7598), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7598), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE] = ACTIONS(7600), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_API_AVAILABLE] = ACTIONS(7600), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_API_DEPRECATED] = ACTIONS(7600), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7600), + [anon_sym___deprecated_msg] = ACTIONS(7600), + [anon_sym___deprecated_enum_msg] = ACTIONS(7600), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7600), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7600), + [anon_sym_id] = ACTIONS(7596), + }, + [3028] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_COMMA] = ACTIONS(7610), + [anon_sym_RPAREN] = ACTIONS(7610), + [anon_sym_LPAREN2] = ACTIONS(7165), + [anon_sym_STAR] = ACTIONS(5932), + [anon_sym_CARET] = ACTIONS(5932), + [anon_sym_LT] = ACTIONS(7168), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(5932), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [3029] = { + [sym__declaration_modifiers] = STATE(5097), + [sym_attribute_specifier] = STATE(5097), + [sym_attribute_declaration] = STATE(5097), + [sym_ms_declspec_modifier] = STATE(5097), + [sym_storage_class_specifier] = STATE(5097), + [sym_type_qualifier] = STATE(5097), + [sym_alignas_qualifier] = STATE(5101), + [sym_availability_attribute_specifier] = STATE(5097), + [sym_method_type] = STATE(3068), + [sym_identifier] = ACTIONS(7613), + [anon_sym_LPAREN2] = ACTIONS(7580), + [anon_sym___extension__] = ACTIONS(7582), + [anon_sym_extern] = ACTIONS(7584), + [anon_sym___attribute__] = ACTIONS(7586), + [anon_sym___attribute] = ACTIONS(7586), + [anon_sym_noreturn] = ACTIONS(7582), + [anon_sym_LBRACK] = ACTIONS(7588), + [anon_sym___declspec] = ACTIONS(7590), + [anon_sym_static] = ACTIONS(7584), + [anon_sym_auto] = ACTIONS(7584), + [anon_sym_register] = ACTIONS(7584), + [anon_sym_inline] = ACTIONS(7584), + [anon_sym___inline] = ACTIONS(7584), + [anon_sym___inline__] = ACTIONS(7584), + [anon_sym___forceinline] = ACTIONS(7584), + [anon_sym_thread_local] = ACTIONS(7584), + [anon_sym___thread] = ACTIONS(7584), + [anon_sym_CG_EXTERN] = ACTIONS(7584), + [anon_sym_CG_INLINE] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7584), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7584), + [anon_sym_IBOutlet] = ACTIONS(7584), + [anon_sym_IBInspectable] = ACTIONS(7584), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7584), + [anon_sym_NS_INLINE] = ACTIONS(7584), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7584), + [anon_sym_OBJC_EXPORT] = ACTIONS(7584), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7584), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7592), + [anon_sym_constexpr] = ACTIONS(7582), + [anon_sym_volatile] = ACTIONS(7582), + [anon_sym_restrict] = ACTIONS(7582), + [anon_sym___restrict__] = ACTIONS(7582), + [anon_sym__Atomic] = ACTIONS(7582), + [anon_sym__Noreturn] = ACTIONS(7582), + [anon_sym__Nonnull] = ACTIONS(7582), + [anon_sym_nullable] = ACTIONS(7582), + [anon_sym__Complex] = ACTIONS(7582), + [anon_sym__Nullable] = ACTIONS(7582), + [anon_sym__Nullable_result] = ACTIONS(7582), + [anon_sym__Null_unspecified] = ACTIONS(7582), + [anon_sym___autoreleasing] = ACTIONS(7582), + [anon_sym___block] = ACTIONS(7582), + [anon_sym___bridge] = ACTIONS(7582), + [anon_sym___bridge_retained] = ACTIONS(7582), + [anon_sym___bridge_transfer] = ACTIONS(7582), + [anon_sym___complex] = ACTIONS(7582), + [anon_sym___const] = ACTIONS(7582), + [anon_sym___imag] = ACTIONS(7582), + [anon_sym___kindof] = ACTIONS(7582), + [anon_sym___nonnull] = ACTIONS(7582), + [anon_sym___nullable] = ACTIONS(7582), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7582), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7582), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7582), + [anon_sym___real] = ACTIONS(7582), + [anon_sym___strong] = ACTIONS(7582), + [anon_sym___unsafe_unretained] = ACTIONS(7582), + [anon_sym___unused] = ACTIONS(7582), + [anon_sym___weak] = ACTIONS(7582), + [anon_sym_alignas] = ACTIONS(7594), + [anon_sym__Alignas] = ACTIONS(7594), + [anon_sym_struct] = ACTIONS(7596), + [anon_sym_in] = ACTIONS(7596), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7598), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7598), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7598), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7598), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7598), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE] = ACTIONS(7600), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_API_AVAILABLE] = ACTIONS(7600), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_API_DEPRECATED] = ACTIONS(7600), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7600), + [anon_sym___deprecated_msg] = ACTIONS(7600), + [anon_sym___deprecated_enum_msg] = ACTIONS(7600), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7600), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7600), + [anon_sym_id] = ACTIONS(7596), + }, + [3030] = { + [sym_attribute_specifier] = STATE(3052), + [sym_gnu_asm_expression] = STATE(3051), + [aux_sym_function_declarator_repeat1] = STATE(3052), + [anon_sym_COMMA] = ACTIONS(6577), + [anon_sym_RPAREN] = ACTIONS(6577), + [anon_sym_LPAREN2] = ACTIONS(6577), + [anon_sym_SEMI] = ACTIONS(6577), + [anon_sym___extension__] = ACTIONS(6577), + [anon_sym_extern] = ACTIONS(6577), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6577), + [anon_sym_LBRACK] = ACTIONS(6577), + [anon_sym___declspec] = ACTIONS(6577), + [anon_sym_LBRACE] = ACTIONS(6577), + [anon_sym_static] = ACTIONS(6577), + [anon_sym_EQ] = ACTIONS(6577), + [anon_sym_ATautoreleasepool] = ACTIONS(6577), + [anon_sym_auto] = ACTIONS(6577), + [anon_sym_register] = ACTIONS(6577), + [anon_sym_inline] = ACTIONS(6577), + [anon_sym___inline] = ACTIONS(6575), + [anon_sym___inline__] = ACTIONS(6577), + [anon_sym___forceinline] = ACTIONS(6577), + [anon_sym_thread_local] = ACTIONS(6577), + [anon_sym___thread] = ACTIONS(6577), + [anon_sym_CG_EXTERN] = ACTIONS(6577), + [anon_sym_CG_INLINE] = ACTIONS(6577), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6577), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6577), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6577), + [anon_sym_IBOutlet] = ACTIONS(6577), + [anon_sym_IBInspectable] = ACTIONS(6577), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6577), + [anon_sym_NS_INLINE] = ACTIONS(6577), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6577), + [anon_sym_OBJC_EXPORT] = ACTIONS(6577), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6577), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6577), + [anon_sym_const] = ACTIONS(6575), + [anon_sym_constexpr] = ACTIONS(6577), + [anon_sym_volatile] = ACTIONS(6577), + [anon_sym_restrict] = ACTIONS(6577), + [anon_sym___restrict__] = ACTIONS(6577), + [anon_sym__Atomic] = ACTIONS(6577), + [anon_sym__Noreturn] = ACTIONS(6577), + [anon_sym__Nonnull] = ACTIONS(6577), + [anon_sym_nullable] = ACTIONS(6577), + [anon_sym__Complex] = ACTIONS(6577), + [anon_sym__Nullable] = ACTIONS(6575), + [anon_sym__Nullable_result] = ACTIONS(6577), + [anon_sym__Null_unspecified] = ACTIONS(6577), + [anon_sym___autoreleasing] = ACTIONS(6577), + [anon_sym___block] = ACTIONS(6577), + [anon_sym___bridge] = ACTIONS(6575), + [anon_sym___bridge_retained] = ACTIONS(6577), + [anon_sym___bridge_transfer] = ACTIONS(6577), + [anon_sym___complex] = ACTIONS(6577), + [anon_sym___const] = ACTIONS(6577), + [anon_sym___imag] = ACTIONS(6577), + [anon_sym___kindof] = ACTIONS(6577), + [anon_sym___nonnull] = ACTIONS(6577), + [anon_sym___nullable] = ACTIONS(6577), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6577), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6577), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6577), + [anon_sym___real] = ACTIONS(6577), + [anon_sym___strong] = ACTIONS(6577), + [anon_sym___unsafe_unretained] = ACTIONS(6577), + [anon_sym___unused] = ACTIONS(6577), + [anon_sym___weak] = ACTIONS(6577), + [anon_sym_alignas] = ACTIONS(6577), + [anon_sym__Alignas] = ACTIONS(6577), + [anon_sym_COLON] = ACTIONS(6577), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6577), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6577), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6577), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6577), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6577), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6577), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6577), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6577), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6577), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6577), + [anon_sym_NS_AVAILABLE] = ACTIONS(6575), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6577), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6577), + [anon_sym_API_AVAILABLE] = ACTIONS(6577), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6577), + [anon_sym_API_DEPRECATED] = ACTIONS(6577), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6577), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6577), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6577), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6577), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6577), + [anon_sym___deprecated_msg] = ACTIONS(6577), + [anon_sym___deprecated_enum_msg] = ACTIONS(6577), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6577), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6577), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6577), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6577), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6577), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6577), + }, + [3031] = { + [sym__declaration_modifiers] = STATE(5097), + [sym_attribute_specifier] = STATE(5097), + [sym_attribute_declaration] = STATE(5097), + [sym_ms_declspec_modifier] = STATE(5097), + [sym_storage_class_specifier] = STATE(5097), + [sym_type_qualifier] = STATE(5097), + [sym_alignas_qualifier] = STATE(5101), + [sym_availability_attribute_specifier] = STATE(5097), + [sym_method_type] = STATE(3075), + [sym_identifier] = ACTIONS(7615), + [anon_sym_LPAREN2] = ACTIONS(7580), + [anon_sym___extension__] = ACTIONS(7582), + [anon_sym_extern] = ACTIONS(7584), + [anon_sym___attribute__] = ACTIONS(7586), + [anon_sym___attribute] = ACTIONS(7586), + [anon_sym_noreturn] = ACTIONS(7582), + [anon_sym_LBRACK] = ACTIONS(7588), + [anon_sym___declspec] = ACTIONS(7590), + [anon_sym_static] = ACTIONS(7584), + [anon_sym_auto] = ACTIONS(7584), + [anon_sym_register] = ACTIONS(7584), + [anon_sym_inline] = ACTIONS(7584), + [anon_sym___inline] = ACTIONS(7584), + [anon_sym___inline__] = ACTIONS(7584), + [anon_sym___forceinline] = ACTIONS(7584), + [anon_sym_thread_local] = ACTIONS(7584), + [anon_sym___thread] = ACTIONS(7584), + [anon_sym_CG_EXTERN] = ACTIONS(7584), + [anon_sym_CG_INLINE] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7584), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7584), + [anon_sym_IBOutlet] = ACTIONS(7584), + [anon_sym_IBInspectable] = ACTIONS(7584), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7584), + [anon_sym_NS_INLINE] = ACTIONS(7584), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7584), + [anon_sym_OBJC_EXPORT] = ACTIONS(7584), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7584), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7592), + [anon_sym_constexpr] = ACTIONS(7582), + [anon_sym_volatile] = ACTIONS(7582), + [anon_sym_restrict] = ACTIONS(7582), + [anon_sym___restrict__] = ACTIONS(7582), + [anon_sym__Atomic] = ACTIONS(7582), + [anon_sym__Noreturn] = ACTIONS(7582), + [anon_sym__Nonnull] = ACTIONS(7582), + [anon_sym_nullable] = ACTIONS(7582), + [anon_sym__Complex] = ACTIONS(7582), + [anon_sym__Nullable] = ACTIONS(7582), + [anon_sym__Nullable_result] = ACTIONS(7582), + [anon_sym__Null_unspecified] = ACTIONS(7582), + [anon_sym___autoreleasing] = ACTIONS(7582), + [anon_sym___block] = ACTIONS(7582), + [anon_sym___bridge] = ACTIONS(7582), + [anon_sym___bridge_retained] = ACTIONS(7582), + [anon_sym___bridge_transfer] = ACTIONS(7582), + [anon_sym___complex] = ACTIONS(7582), + [anon_sym___const] = ACTIONS(7582), + [anon_sym___imag] = ACTIONS(7582), + [anon_sym___kindof] = ACTIONS(7582), + [anon_sym___nonnull] = ACTIONS(7582), + [anon_sym___nullable] = ACTIONS(7582), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7582), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7582), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7582), + [anon_sym___real] = ACTIONS(7582), + [anon_sym___strong] = ACTIONS(7582), + [anon_sym___unsafe_unretained] = ACTIONS(7582), + [anon_sym___unused] = ACTIONS(7582), + [anon_sym___weak] = ACTIONS(7582), + [anon_sym_alignas] = ACTIONS(7594), + [anon_sym__Alignas] = ACTIONS(7594), + [anon_sym_struct] = ACTIONS(7596), + [anon_sym_in] = ACTIONS(7596), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7598), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7598), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7598), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7598), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7598), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE] = ACTIONS(7600), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_API_AVAILABLE] = ACTIONS(7600), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_API_DEPRECATED] = ACTIONS(7600), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7600), + [anon_sym___deprecated_msg] = ACTIONS(7600), + [anon_sym___deprecated_enum_msg] = ACTIONS(7600), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7600), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7600), + [anon_sym_id] = ACTIONS(7596), + }, + [3032] = { + [sym__declaration_modifiers] = STATE(5097), + [sym_attribute_specifier] = STATE(5097), + [sym_attribute_declaration] = STATE(5097), + [sym_ms_declspec_modifier] = STATE(5097), + [sym_storage_class_specifier] = STATE(5097), + [sym_type_qualifier] = STATE(5097), + [sym_alignas_qualifier] = STATE(5101), + [sym_availability_attribute_specifier] = STATE(5097), + [sym_method_type] = STATE(3077), + [sym_identifier] = ACTIONS(7578), + [anon_sym_LPAREN2] = ACTIONS(7580), + [anon_sym___extension__] = ACTIONS(7582), + [anon_sym_extern] = ACTIONS(7584), + [anon_sym___attribute__] = ACTIONS(7586), + [anon_sym___attribute] = ACTIONS(7586), + [anon_sym_noreturn] = ACTIONS(7582), + [anon_sym_LBRACK] = ACTIONS(7588), + [anon_sym___declspec] = ACTIONS(7590), + [anon_sym_static] = ACTIONS(7584), + [anon_sym_auto] = ACTIONS(7584), + [anon_sym_register] = ACTIONS(7584), + [anon_sym_inline] = ACTIONS(7584), + [anon_sym___inline] = ACTIONS(7584), + [anon_sym___inline__] = ACTIONS(7584), + [anon_sym___forceinline] = ACTIONS(7584), + [anon_sym_thread_local] = ACTIONS(7584), + [anon_sym___thread] = ACTIONS(7584), + [anon_sym_CG_EXTERN] = ACTIONS(7584), + [anon_sym_CG_INLINE] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7584), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7584), + [anon_sym_IBOutlet] = ACTIONS(7584), + [anon_sym_IBInspectable] = ACTIONS(7584), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7584), + [anon_sym_NS_INLINE] = ACTIONS(7584), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7584), + [anon_sym_OBJC_EXPORT] = ACTIONS(7584), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7584), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7608), + [anon_sym_constexpr] = ACTIONS(7582), + [anon_sym_volatile] = ACTIONS(7582), + [anon_sym_restrict] = ACTIONS(7582), + [anon_sym___restrict__] = ACTIONS(7582), + [anon_sym__Atomic] = ACTIONS(7582), + [anon_sym__Noreturn] = ACTIONS(7582), + [anon_sym__Nonnull] = ACTIONS(7582), + [anon_sym_nullable] = ACTIONS(7582), + [anon_sym__Complex] = ACTIONS(7582), + [anon_sym__Nullable] = ACTIONS(7582), + [anon_sym__Nullable_result] = ACTIONS(7582), + [anon_sym__Null_unspecified] = ACTIONS(7582), + [anon_sym___autoreleasing] = ACTIONS(7582), + [anon_sym___block] = ACTIONS(7582), + [anon_sym___bridge] = ACTIONS(7582), + [anon_sym___bridge_retained] = ACTIONS(7582), + [anon_sym___bridge_transfer] = ACTIONS(7582), + [anon_sym___complex] = ACTIONS(7582), + [anon_sym___const] = ACTIONS(7582), + [anon_sym___imag] = ACTIONS(7582), + [anon_sym___kindof] = ACTIONS(7582), + [anon_sym___nonnull] = ACTIONS(7582), + [anon_sym___nullable] = ACTIONS(7582), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7582), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7582), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7582), + [anon_sym___real] = ACTIONS(7582), + [anon_sym___strong] = ACTIONS(7582), + [anon_sym___unsafe_unretained] = ACTIONS(7582), + [anon_sym___unused] = ACTIONS(7582), + [anon_sym___weak] = ACTIONS(7582), + [anon_sym_alignas] = ACTIONS(7594), + [anon_sym__Alignas] = ACTIONS(7594), + [anon_sym_struct] = ACTIONS(7596), + [anon_sym_in] = ACTIONS(7596), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7598), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7598), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7598), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7598), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7598), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE] = ACTIONS(7600), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_API_AVAILABLE] = ACTIONS(7600), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_API_DEPRECATED] = ACTIONS(7600), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7600), + [anon_sym___deprecated_msg] = ACTIONS(7600), + [anon_sym___deprecated_enum_msg] = ACTIONS(7600), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7600), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7600), + [anon_sym_id] = ACTIONS(7596), + }, + [3033] = { + [sym__declaration_modifiers] = STATE(3129), + [sym_attribute_specifier] = STATE(3129), + [sym_attribute_declaration] = STATE(3129), + [sym_ms_declspec_modifier] = STATE(3129), + [sym_storage_class_specifier] = STATE(3129), + [sym_type_qualifier] = STATE(3129), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3129), + [aux_sym__declaration_specifiers_repeat1] = STATE(3129), + [aux_sym_method_definition_repeat2] = STATE(3305), + [aux_sym_method_declaration_repeat2] = STATE(2174), + [anon_sym_COMMA] = ACTIONS(7617), + [anon_sym_SEMI] = ACTIONS(7619), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3034] = { + [sym__declaration_modifiers] = STATE(3216), + [sym_attribute_specifier] = STATE(3216), + [sym_attribute_declaration] = STATE(3216), + [sym_ms_declspec_modifier] = STATE(3216), + [sym_storage_class_specifier] = STATE(3216), + [sym_type_qualifier] = STATE(3216), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3216), + [aux_sym__declaration_specifiers_repeat1] = STATE(3216), + [aux_sym_method_definition_repeat2] = STATE(3305), + [aux_sym_method_declaration_repeat2] = STATE(2320), + [anon_sym_COMMA] = ACTIONS(7617), + [anon_sym_SEMI] = ACTIONS(7621), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3035] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_LPAREN2] = ACTIONS(7165), + [anon_sym_STAR] = ACTIONS(5932), + [anon_sym_CARET] = ACTIONS(5932), + [anon_sym_LT] = ACTIONS(7168), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(5932), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [anon_sym_COLON] = ACTIONS(7623), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [3036] = { + [sym__declaration_modifiers] = STATE(3214), + [sym_attribute_specifier] = STATE(3214), + [sym_attribute_declaration] = STATE(3214), + [sym_ms_declspec_modifier] = STATE(3214), + [sym_storage_class_specifier] = STATE(3214), + [sym_type_qualifier] = STATE(3214), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3214), + [aux_sym__declaration_specifiers_repeat1] = STATE(3214), + [aux_sym_method_definition_repeat2] = STATE(3305), + [aux_sym_method_declaration_repeat2] = STATE(2143), + [anon_sym_COMMA] = ACTIONS(7617), + [anon_sym_SEMI] = ACTIONS(7625), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3037] = { + [sym__declaration_modifiers] = STATE(3187), + [sym_attribute_specifier] = STATE(3187), + [sym_attribute_declaration] = STATE(3187), + [sym_ms_declspec_modifier] = STATE(3187), + [sym_storage_class_specifier] = STATE(3187), + [sym_type_qualifier] = STATE(3187), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3187), + [aux_sym__declaration_specifiers_repeat1] = STATE(3187), + [aux_sym_method_definition_repeat2] = STATE(3034), + [aux_sym_method_declaration_repeat2] = STATE(2299), + [anon_sym_COMMA] = ACTIONS(7617), + [anon_sym_SEMI] = ACTIONS(7627), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3038] = { + [sym__declaration_modifiers] = STATE(3187), + [sym_attribute_specifier] = STATE(3187), + [sym_attribute_declaration] = STATE(3187), + [sym_ms_declspec_modifier] = STATE(3187), + [sym_storage_class_specifier] = STATE(3187), + [sym_type_qualifier] = STATE(3187), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3187), + [aux_sym__declaration_specifiers_repeat1] = STATE(3187), + [aux_sym_method_definition_repeat2] = STATE(3305), + [aux_sym_method_declaration_repeat2] = STATE(2299), + [anon_sym_COMMA] = ACTIONS(7617), + [anon_sym_SEMI] = ACTIONS(7627), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3039] = { + [sym__declaration_modifiers] = STATE(3129), + [sym_attribute_specifier] = STATE(3129), + [sym_attribute_declaration] = STATE(3129), + [sym_ms_declspec_modifier] = STATE(3129), + [sym_storage_class_specifier] = STATE(3129), + [sym_type_qualifier] = STATE(3129), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3129), + [aux_sym__declaration_specifiers_repeat1] = STATE(3129), + [aux_sym_method_definition_repeat2] = STATE(3041), + [aux_sym_method_declaration_repeat2] = STATE(2174), + [anon_sym_COMMA] = ACTIONS(7617), + [anon_sym_SEMI] = ACTIONS(7619), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3040] = { + [sym__declaration_modifiers] = STATE(3100), + [sym_attribute_specifier] = STATE(3100), + [sym_attribute_declaration] = STATE(3100), + [sym_ms_declspec_modifier] = STATE(3100), + [sym_storage_class_specifier] = STATE(3100), + [sym_type_qualifier] = STATE(3100), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3100), + [aux_sym__declaration_specifiers_repeat1] = STATE(3100), + [aux_sym_method_definition_repeat2] = STATE(3036), + [aux_sym_method_declaration_repeat2] = STATE(2142), + [anon_sym_COMMA] = ACTIONS(7617), + [anon_sym_SEMI] = ACTIONS(7095), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3041] = { + [sym__declaration_modifiers] = STATE(3203), + [sym_attribute_specifier] = STATE(3203), + [sym_attribute_declaration] = STATE(3203), + [sym_ms_declspec_modifier] = STATE(3203), + [sym_storage_class_specifier] = STATE(3203), + [sym_type_qualifier] = STATE(3203), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3203), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_method_definition_repeat2] = STATE(3305), + [aux_sym_method_declaration_repeat2] = STATE(2195), + [anon_sym_COMMA] = ACTIONS(7617), + [anon_sym_SEMI] = ACTIONS(7629), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3042] = { + [sym_attribute_specifier] = STATE(2980), + [sym_enumerator_list] = STATE(3179), + [sym_identifier] = ACTIONS(7631), + [anon_sym_COMMA] = ACTIONS(7633), + [anon_sym_RPAREN] = ACTIONS(7633), + [anon_sym_LPAREN2] = ACTIONS(7633), + [anon_sym_STAR] = ACTIONS(7633), + [anon_sym_CARET] = ACTIONS(7633), + [anon_sym_SEMI] = ACTIONS(7633), + [anon_sym___extension__] = ACTIONS(7631), + [anon_sym_extern] = ACTIONS(7631), + [anon_sym___attribute__] = ACTIONS(7635), + [anon_sym___attribute] = ACTIONS(7635), + [anon_sym_noreturn] = ACTIONS(7631), + [anon_sym_LBRACK] = ACTIONS(7633), + [anon_sym___declspec] = ACTIONS(7631), + [anon_sym___based] = ACTIONS(7631), + [anon_sym_LBRACE] = ACTIONS(7638), + [anon_sym_static] = ACTIONS(7631), + [anon_sym_auto] = ACTIONS(7631), + [anon_sym_register] = ACTIONS(7631), + [anon_sym_inline] = ACTIONS(7631), + [anon_sym___inline] = ACTIONS(7631), + [anon_sym___inline__] = ACTIONS(7631), + [anon_sym___forceinline] = ACTIONS(7631), + [anon_sym_thread_local] = ACTIONS(7631), + [anon_sym___thread] = ACTIONS(7631), + [anon_sym_CG_EXTERN] = ACTIONS(7631), + [anon_sym_CG_INLINE] = ACTIONS(7631), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7631), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7631), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7631), + [anon_sym_IBOutlet] = ACTIONS(7631), + [anon_sym_IBInspectable] = ACTIONS(7631), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7631), + [anon_sym_NS_INLINE] = ACTIONS(7631), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7631), + [anon_sym_OBJC_EXPORT] = ACTIONS(7631), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7631), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7631), + [anon_sym_const] = ACTIONS(7631), + [anon_sym_constexpr] = ACTIONS(7631), + [anon_sym_volatile] = ACTIONS(7631), + [anon_sym_restrict] = ACTIONS(7631), + [anon_sym___restrict__] = ACTIONS(7631), + [anon_sym__Atomic] = ACTIONS(7631), + [anon_sym__Noreturn] = ACTIONS(7631), + [anon_sym__Nonnull] = ACTIONS(7631), + [anon_sym_nullable] = ACTIONS(7631), + [anon_sym__Complex] = ACTIONS(7631), + [anon_sym__Nullable] = ACTIONS(7631), + [anon_sym__Nullable_result] = ACTIONS(7631), + [anon_sym__Null_unspecified] = ACTIONS(7631), + [anon_sym___autoreleasing] = ACTIONS(7631), + [anon_sym___block] = ACTIONS(7631), + [anon_sym___bridge] = ACTIONS(7631), + [anon_sym___bridge_retained] = ACTIONS(7631), + [anon_sym___bridge_transfer] = ACTIONS(7631), + [anon_sym___complex] = ACTIONS(7631), + [anon_sym___const] = ACTIONS(7631), + [anon_sym___imag] = ACTIONS(7631), + [anon_sym___kindof] = ACTIONS(7631), + [anon_sym___nonnull] = ACTIONS(7631), + [anon_sym___nullable] = ACTIONS(7631), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7631), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7631), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7631), + [anon_sym___real] = ACTIONS(7631), + [anon_sym___strong] = ACTIONS(7631), + [anon_sym___unsafe_unretained] = ACTIONS(7631), + [anon_sym___unused] = ACTIONS(7631), + [anon_sym___weak] = ACTIONS(7631), + [anon_sym_alignas] = ACTIONS(7631), + [anon_sym__Alignas] = ACTIONS(7631), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_COLON] = ACTIONS(7633), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7631), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7631), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7631), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7631), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7631), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7631), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7631), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7631), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7631), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7631), + [anon_sym_NS_AVAILABLE] = ACTIONS(7631), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7631), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7631), + [anon_sym_API_AVAILABLE] = ACTIONS(7631), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7631), + [anon_sym_API_DEPRECATED] = ACTIONS(7631), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7631), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7631), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7631), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7631), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7631), + [anon_sym___deprecated_msg] = ACTIONS(7631), + [anon_sym___deprecated_enum_msg] = ACTIONS(7631), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7631), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7631), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7631), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7631), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7631), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7631), + }, + [3043] = { + [sym_attribute_specifier] = STATE(2982), + [sym_enumerator_list] = STATE(3182), + [sym_identifier] = ACTIONS(7640), + [anon_sym_COMMA] = ACTIONS(7642), + [anon_sym_RPAREN] = ACTIONS(7642), + [anon_sym_LPAREN2] = ACTIONS(7642), + [anon_sym_STAR] = ACTIONS(7642), + [anon_sym_CARET] = ACTIONS(7642), + [anon_sym_SEMI] = ACTIONS(7642), + [anon_sym___extension__] = ACTIONS(7640), + [anon_sym_extern] = ACTIONS(7640), + [anon_sym___attribute__] = ACTIONS(7644), + [anon_sym___attribute] = ACTIONS(7644), + [anon_sym_noreturn] = ACTIONS(7640), + [anon_sym_LBRACK] = ACTIONS(7642), + [anon_sym___declspec] = ACTIONS(7640), + [anon_sym___based] = ACTIONS(7640), + [anon_sym_LBRACE] = ACTIONS(7638), + [anon_sym_static] = ACTIONS(7640), + [anon_sym_auto] = ACTIONS(7640), + [anon_sym_register] = ACTIONS(7640), + [anon_sym_inline] = ACTIONS(7640), + [anon_sym___inline] = ACTIONS(7640), + [anon_sym___inline__] = ACTIONS(7640), + [anon_sym___forceinline] = ACTIONS(7640), + [anon_sym_thread_local] = ACTIONS(7640), + [anon_sym___thread] = ACTIONS(7640), + [anon_sym_CG_EXTERN] = ACTIONS(7640), + [anon_sym_CG_INLINE] = ACTIONS(7640), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7640), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7640), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7640), + [anon_sym_IBOutlet] = ACTIONS(7640), + [anon_sym_IBInspectable] = ACTIONS(7640), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7640), + [anon_sym_NS_INLINE] = ACTIONS(7640), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7640), + [anon_sym_OBJC_EXPORT] = ACTIONS(7640), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7640), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7640), + [anon_sym_const] = ACTIONS(7640), + [anon_sym_constexpr] = ACTIONS(7640), + [anon_sym_volatile] = ACTIONS(7640), + [anon_sym_restrict] = ACTIONS(7640), + [anon_sym___restrict__] = ACTIONS(7640), + [anon_sym__Atomic] = ACTIONS(7640), + [anon_sym__Noreturn] = ACTIONS(7640), + [anon_sym__Nonnull] = ACTIONS(7640), + [anon_sym_nullable] = ACTIONS(7640), + [anon_sym__Complex] = ACTIONS(7640), + [anon_sym__Nullable] = ACTIONS(7640), + [anon_sym__Nullable_result] = ACTIONS(7640), + [anon_sym__Null_unspecified] = ACTIONS(7640), + [anon_sym___autoreleasing] = ACTIONS(7640), + [anon_sym___block] = ACTIONS(7640), + [anon_sym___bridge] = ACTIONS(7640), + [anon_sym___bridge_retained] = ACTIONS(7640), + [anon_sym___bridge_transfer] = ACTIONS(7640), + [anon_sym___complex] = ACTIONS(7640), + [anon_sym___const] = ACTIONS(7640), + [anon_sym___imag] = ACTIONS(7640), + [anon_sym___kindof] = ACTIONS(7640), + [anon_sym___nonnull] = ACTIONS(7640), + [anon_sym___nullable] = ACTIONS(7640), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7640), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7640), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7640), + [anon_sym___real] = ACTIONS(7640), + [anon_sym___strong] = ACTIONS(7640), + [anon_sym___unsafe_unretained] = ACTIONS(7640), + [anon_sym___unused] = ACTIONS(7640), + [anon_sym___weak] = ACTIONS(7640), + [anon_sym_alignas] = ACTIONS(7640), + [anon_sym__Alignas] = ACTIONS(7640), + [anon_sym_enum] = ACTIONS(7640), + [anon_sym_COLON] = ACTIONS(7642), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7640), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7640), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7640), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7640), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7640), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7640), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7640), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7640), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7640), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7640), + [anon_sym_NS_AVAILABLE] = ACTIONS(7640), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7640), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7640), + [anon_sym_API_AVAILABLE] = ACTIONS(7640), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7640), + [anon_sym_API_DEPRECATED] = ACTIONS(7640), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7640), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7640), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7640), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7640), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7640), + [anon_sym___deprecated_msg] = ACTIONS(7640), + [anon_sym___deprecated_enum_msg] = ACTIONS(7640), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7640), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7640), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7640), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7640), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7640), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7640), + }, + [3044] = { + [sym__declaration_modifiers] = STATE(3126), + [sym_attribute_specifier] = STATE(3126), + [sym_attribute_declaration] = STATE(3126), + [sym_ms_declspec_modifier] = STATE(3126), + [sym_storage_class_specifier] = STATE(3126), + [sym_type_qualifier] = STATE(3126), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3126), + [aux_sym__declaration_specifiers_repeat1] = STATE(3126), + [aux_sym_method_definition_repeat2] = STATE(3038), + [aux_sym_method_declaration_repeat2] = STATE(2349), + [anon_sym_COMMA] = ACTIONS(7617), + [anon_sym_SEMI] = ACTIONS(7083), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3045] = { + [sym__declaration_modifiers] = STATE(3214), + [sym_attribute_specifier] = STATE(3214), + [sym_attribute_declaration] = STATE(3214), + [sym_ms_declspec_modifier] = STATE(3214), + [sym_storage_class_specifier] = STATE(3214), + [sym_type_qualifier] = STATE(3214), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3214), + [aux_sym__declaration_specifiers_repeat1] = STATE(3214), + [aux_sym_method_definition_repeat2] = STATE(3054), + [aux_sym_method_declaration_repeat2] = STATE(2143), + [anon_sym_COMMA] = ACTIONS(7617), + [anon_sym_SEMI] = ACTIONS(7625), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3046] = { + [sym__declaration_modifiers] = STATE(6379), + [sym_attribute_specifier] = STATE(6379), + [sym_attribute_declaration] = STATE(6379), + [sym_ms_declspec_modifier] = STATE(6379), + [sym_storage_class_specifier] = STATE(6379), + [sym_type_qualifier] = STATE(6379), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3248), + [sym_availability_attribute_specifier] = STATE(6379), + [aux_sym__type_definition_declarators_repeat1] = STATE(3108), + [anon_sym_COMMA] = ACTIONS(7647), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(7649), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7651), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3047] = { + [sym__declaration_modifiers] = STATE(3223), + [sym_attribute_specifier] = STATE(3223), + [sym_attribute_declaration] = STATE(3223), + [sym_ms_declspec_modifier] = STATE(3223), + [sym_storage_class_specifier] = STATE(3223), + [sym_type_qualifier] = STATE(3223), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3223), + [aux_sym__declaration_specifiers_repeat1] = STATE(3223), + [aux_sym_method_definition_repeat2] = STATE(3305), + [aux_sym_method_declaration_repeat2] = STATE(2172), + [anon_sym_COMMA] = ACTIONS(7617), + [anon_sym_SEMI] = ACTIONS(7653), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3048] = { + [sym__declaration_modifiers] = STATE(3200), + [sym_attribute_specifier] = STATE(3200), + [sym_attribute_declaration] = STATE(3200), + [sym_ms_declspec_modifier] = STATE(3200), + [sym_storage_class_specifier] = STATE(3200), + [sym_type_qualifier] = STATE(3200), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3200), + [aux_sym__declaration_specifiers_repeat1] = STATE(3200), + [aux_sym_method_definition_repeat2] = STATE(3059), + [aux_sym_method_declaration_repeat2] = STATE(2170), + [anon_sym_COMMA] = ACTIONS(7617), + [anon_sym_SEMI] = ACTIONS(7131), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3049] = { + [sym__declaration_modifiers] = STATE(5149), + [sym_attribute_specifier] = STATE(5149), + [sym_attribute_declaration] = STATE(5149), + [sym_ms_declspec_modifier] = STATE(5149), + [sym_storage_class_specifier] = STATE(5149), + [sym_type_qualifier] = STATE(5149), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(5149), + [sym_identifier] = ACTIONS(7655), + [anon_sym_COMMA] = ACTIONS(7657), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7657), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7657), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(7657), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [3050] = { + [sym__declaration_modifiers] = STATE(3216), + [sym_attribute_specifier] = STATE(3216), + [sym_attribute_declaration] = STATE(3216), + [sym_ms_declspec_modifier] = STATE(3216), + [sym_storage_class_specifier] = STATE(3216), + [sym_type_qualifier] = STATE(3216), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3216), + [aux_sym__declaration_specifiers_repeat1] = STATE(3216), + [aux_sym_method_definition_repeat2] = STATE(3057), + [aux_sym_method_declaration_repeat2] = STATE(2320), + [anon_sym_COMMA] = ACTIONS(7617), + [anon_sym_SEMI] = ACTIONS(7621), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3051] = { + [sym_attribute_specifier] = STATE(3058), + [aux_sym_function_declarator_repeat1] = STATE(3058), + [anon_sym_COMMA] = ACTIONS(6788), + [anon_sym_RPAREN] = ACTIONS(6788), + [anon_sym_LPAREN2] = ACTIONS(6788), + [anon_sym_SEMI] = ACTIONS(6788), + [anon_sym___extension__] = ACTIONS(6788), + [anon_sym_extern] = ACTIONS(6788), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6788), + [anon_sym_LBRACK] = ACTIONS(6788), + [anon_sym___declspec] = ACTIONS(6788), + [anon_sym_LBRACE] = ACTIONS(6788), + [anon_sym_static] = ACTIONS(6788), + [anon_sym_EQ] = ACTIONS(6788), + [anon_sym_ATautoreleasepool] = ACTIONS(6788), + [anon_sym_auto] = ACTIONS(6788), + [anon_sym_register] = ACTIONS(6788), + [anon_sym_inline] = ACTIONS(6788), + [anon_sym___inline] = ACTIONS(6786), + [anon_sym___inline__] = ACTIONS(6788), + [anon_sym___forceinline] = ACTIONS(6788), + [anon_sym_thread_local] = ACTIONS(6788), + [anon_sym___thread] = ACTIONS(6788), + [anon_sym_CG_EXTERN] = ACTIONS(6788), + [anon_sym_CG_INLINE] = ACTIONS(6788), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6788), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6788), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6788), + [anon_sym_IBOutlet] = ACTIONS(6788), + [anon_sym_IBInspectable] = ACTIONS(6788), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6788), + [anon_sym_NS_INLINE] = ACTIONS(6788), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6788), + [anon_sym_OBJC_EXPORT] = ACTIONS(6788), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6788), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6788), + [anon_sym_const] = ACTIONS(6786), + [anon_sym_constexpr] = ACTIONS(6788), + [anon_sym_volatile] = ACTIONS(6788), + [anon_sym_restrict] = ACTIONS(6788), + [anon_sym___restrict__] = ACTIONS(6788), + [anon_sym__Atomic] = ACTIONS(6788), + [anon_sym__Noreturn] = ACTIONS(6788), + [anon_sym__Nonnull] = ACTIONS(6788), + [anon_sym_nullable] = ACTIONS(6788), + [anon_sym__Complex] = ACTIONS(6788), + [anon_sym__Nullable] = ACTIONS(6786), + [anon_sym__Nullable_result] = ACTIONS(6788), + [anon_sym__Null_unspecified] = ACTIONS(6788), + [anon_sym___autoreleasing] = ACTIONS(6788), + [anon_sym___block] = ACTIONS(6788), + [anon_sym___bridge] = ACTIONS(6786), + [anon_sym___bridge_retained] = ACTIONS(6788), + [anon_sym___bridge_transfer] = ACTIONS(6788), + [anon_sym___complex] = ACTIONS(6788), + [anon_sym___const] = ACTIONS(6788), + [anon_sym___imag] = ACTIONS(6788), + [anon_sym___kindof] = ACTIONS(6788), + [anon_sym___nonnull] = ACTIONS(6788), + [anon_sym___nullable] = ACTIONS(6788), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6788), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6788), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6788), + [anon_sym___real] = ACTIONS(6788), + [anon_sym___strong] = ACTIONS(6788), + [anon_sym___unsafe_unretained] = ACTIONS(6788), + [anon_sym___unused] = ACTIONS(6788), + [anon_sym___weak] = ACTIONS(6788), + [anon_sym_alignas] = ACTIONS(6788), + [anon_sym__Alignas] = ACTIONS(6788), + [anon_sym_COLON] = ACTIONS(6788), + [anon_sym_asm] = ACTIONS(6788), + [anon_sym___asm__] = ACTIONS(6788), + [anon_sym___asm] = ACTIONS(6786), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6788), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6788), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6788), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6788), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6788), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6788), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6788), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6788), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6788), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6788), + [anon_sym_NS_AVAILABLE] = ACTIONS(6786), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6788), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6788), + [anon_sym_API_AVAILABLE] = ACTIONS(6788), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6788), + [anon_sym_API_DEPRECATED] = ACTIONS(6788), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6788), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6788), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6788), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6788), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6788), + [anon_sym___deprecated_msg] = ACTIONS(6788), + [anon_sym___deprecated_enum_msg] = ACTIONS(6788), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6788), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6788), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6788), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6788), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6788), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6788), + }, + [3052] = { + [sym_attribute_specifier] = STATE(3060), + [aux_sym_function_declarator_repeat1] = STATE(3060), + [anon_sym_COMMA] = ACTIONS(6788), + [anon_sym_RPAREN] = ACTIONS(6788), + [anon_sym_LPAREN2] = ACTIONS(6788), + [anon_sym_SEMI] = ACTIONS(6788), + [anon_sym___extension__] = ACTIONS(6788), + [anon_sym_extern] = ACTIONS(6788), + [anon_sym___attribute__] = ACTIONS(6788), + [anon_sym___attribute] = ACTIONS(6786), + [anon_sym_noreturn] = ACTIONS(6788), + [anon_sym_LBRACK] = ACTIONS(6788), + [anon_sym___declspec] = ACTIONS(6788), + [anon_sym_LBRACE] = ACTIONS(6788), + [anon_sym_static] = ACTIONS(6788), + [anon_sym_EQ] = ACTIONS(6788), + [anon_sym_ATautoreleasepool] = ACTIONS(6788), + [anon_sym_auto] = ACTIONS(6788), + [anon_sym_register] = ACTIONS(6788), + [anon_sym_inline] = ACTIONS(6788), + [anon_sym___inline] = ACTIONS(6786), + [anon_sym___inline__] = ACTIONS(6788), + [anon_sym___forceinline] = ACTIONS(6788), + [anon_sym_thread_local] = ACTIONS(6788), + [anon_sym___thread] = ACTIONS(6788), + [anon_sym_CG_EXTERN] = ACTIONS(6788), + [anon_sym_CG_INLINE] = ACTIONS(6788), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6788), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6788), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6788), + [anon_sym_IBOutlet] = ACTIONS(6788), + [anon_sym_IBInspectable] = ACTIONS(6788), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6788), + [anon_sym_NS_INLINE] = ACTIONS(6788), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6788), + [anon_sym_OBJC_EXPORT] = ACTIONS(6788), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6788), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6788), + [anon_sym_const] = ACTIONS(6786), + [anon_sym_constexpr] = ACTIONS(6788), + [anon_sym_volatile] = ACTIONS(6788), + [anon_sym_restrict] = ACTIONS(6788), + [anon_sym___restrict__] = ACTIONS(6788), + [anon_sym__Atomic] = ACTIONS(6788), + [anon_sym__Noreturn] = ACTIONS(6788), + [anon_sym__Nonnull] = ACTIONS(6788), + [anon_sym_nullable] = ACTIONS(6788), + [anon_sym__Complex] = ACTIONS(6788), + [anon_sym__Nullable] = ACTIONS(6786), + [anon_sym__Nullable_result] = ACTIONS(6788), + [anon_sym__Null_unspecified] = ACTIONS(6788), + [anon_sym___autoreleasing] = ACTIONS(6788), + [anon_sym___block] = ACTIONS(6788), + [anon_sym___bridge] = ACTIONS(6786), + [anon_sym___bridge_retained] = ACTIONS(6788), + [anon_sym___bridge_transfer] = ACTIONS(6788), + [anon_sym___complex] = ACTIONS(6788), + [anon_sym___const] = ACTIONS(6788), + [anon_sym___imag] = ACTIONS(6788), + [anon_sym___kindof] = ACTIONS(6788), + [anon_sym___nonnull] = ACTIONS(6788), + [anon_sym___nullable] = ACTIONS(6788), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6788), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6788), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6788), + [anon_sym___real] = ACTIONS(6788), + [anon_sym___strong] = ACTIONS(6788), + [anon_sym___unsafe_unretained] = ACTIONS(6788), + [anon_sym___unused] = ACTIONS(6788), + [anon_sym___weak] = ACTIONS(6788), + [anon_sym_alignas] = ACTIONS(6788), + [anon_sym__Alignas] = ACTIONS(6788), + [anon_sym_COLON] = ACTIONS(6788), + [anon_sym_asm] = ACTIONS(6788), + [anon_sym___asm__] = ACTIONS(6788), + [anon_sym___asm] = ACTIONS(6786), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6788), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6788), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6788), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6788), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6788), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6788), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6788), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6788), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6788), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6788), + [anon_sym_NS_AVAILABLE] = ACTIONS(6786), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6788), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6788), + [anon_sym_API_AVAILABLE] = ACTIONS(6788), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6788), + [anon_sym_API_DEPRECATED] = ACTIONS(6788), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6788), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6788), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6788), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6788), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6788), + [anon_sym___deprecated_msg] = ACTIONS(6788), + [anon_sym___deprecated_enum_msg] = ACTIONS(6788), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6788), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6788), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6788), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6788), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6788), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6788), + }, + [3053] = { + [sym_attribute_specifier] = STATE(3012), + [sym_enumerator_list] = STATE(3201), + [sym_identifier] = ACTIONS(7659), + [anon_sym_COMMA] = ACTIONS(7661), + [anon_sym_RPAREN] = ACTIONS(7661), + [anon_sym_LPAREN2] = ACTIONS(7661), + [anon_sym_STAR] = ACTIONS(7661), + [anon_sym_CARET] = ACTIONS(7661), + [anon_sym_SEMI] = ACTIONS(7661), + [anon_sym___extension__] = ACTIONS(7659), + [anon_sym_extern] = ACTIONS(7659), + [anon_sym___attribute__] = ACTIONS(7663), + [anon_sym___attribute] = ACTIONS(7663), + [anon_sym_noreturn] = ACTIONS(7659), + [anon_sym_LBRACK] = ACTIONS(7661), + [anon_sym___declspec] = ACTIONS(7659), + [anon_sym___based] = ACTIONS(7659), + [anon_sym_LBRACE] = ACTIONS(7638), + [anon_sym_static] = ACTIONS(7659), + [anon_sym_auto] = ACTIONS(7659), + [anon_sym_register] = ACTIONS(7659), + [anon_sym_inline] = ACTIONS(7659), + [anon_sym___inline] = ACTIONS(7659), + [anon_sym___inline__] = ACTIONS(7659), + [anon_sym___forceinline] = ACTIONS(7659), + [anon_sym_thread_local] = ACTIONS(7659), + [anon_sym___thread] = ACTIONS(7659), + [anon_sym_CG_EXTERN] = ACTIONS(7659), + [anon_sym_CG_INLINE] = ACTIONS(7659), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7659), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7659), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7659), + [anon_sym_IBOutlet] = ACTIONS(7659), + [anon_sym_IBInspectable] = ACTIONS(7659), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7659), + [anon_sym_NS_INLINE] = ACTIONS(7659), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7659), + [anon_sym_OBJC_EXPORT] = ACTIONS(7659), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7659), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7659), + [anon_sym_const] = ACTIONS(7659), + [anon_sym_constexpr] = ACTIONS(7659), + [anon_sym_volatile] = ACTIONS(7659), + [anon_sym_restrict] = ACTIONS(7659), + [anon_sym___restrict__] = ACTIONS(7659), + [anon_sym__Atomic] = ACTIONS(7659), + [anon_sym__Noreturn] = ACTIONS(7659), + [anon_sym__Nonnull] = ACTIONS(7659), + [anon_sym_nullable] = ACTIONS(7659), + [anon_sym__Complex] = ACTIONS(7659), + [anon_sym__Nullable] = ACTIONS(7659), + [anon_sym__Nullable_result] = ACTIONS(7659), + [anon_sym__Null_unspecified] = ACTIONS(7659), + [anon_sym___autoreleasing] = ACTIONS(7659), + [anon_sym___block] = ACTIONS(7659), + [anon_sym___bridge] = ACTIONS(7659), + [anon_sym___bridge_retained] = ACTIONS(7659), + [anon_sym___bridge_transfer] = ACTIONS(7659), + [anon_sym___complex] = ACTIONS(7659), + [anon_sym___const] = ACTIONS(7659), + [anon_sym___imag] = ACTIONS(7659), + [anon_sym___kindof] = ACTIONS(7659), + [anon_sym___nonnull] = ACTIONS(7659), + [anon_sym___nullable] = ACTIONS(7659), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7659), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7659), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7659), + [anon_sym___real] = ACTIONS(7659), + [anon_sym___strong] = ACTIONS(7659), + [anon_sym___unsafe_unretained] = ACTIONS(7659), + [anon_sym___unused] = ACTIONS(7659), + [anon_sym___weak] = ACTIONS(7659), + [anon_sym_alignas] = ACTIONS(7659), + [anon_sym__Alignas] = ACTIONS(7659), + [anon_sym_enum] = ACTIONS(7659), + [anon_sym_COLON] = ACTIONS(7661), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7659), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7659), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7659), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7659), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7659), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7659), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7659), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7659), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7659), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7659), + [anon_sym_NS_AVAILABLE] = ACTIONS(7659), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7659), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7659), + [anon_sym_API_AVAILABLE] = ACTIONS(7659), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7659), + [anon_sym_API_DEPRECATED] = ACTIONS(7659), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7659), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7659), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7659), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7659), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7659), + [anon_sym___deprecated_msg] = ACTIONS(7659), + [anon_sym___deprecated_enum_msg] = ACTIONS(7659), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7659), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7659), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7659), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7659), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7659), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7659), + }, + [3054] = { + [sym__declaration_modifiers] = STATE(3196), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3196), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3196), + [aux_sym__declaration_specifiers_repeat1] = STATE(3196), + [aux_sym_method_definition_repeat2] = STATE(3305), + [aux_sym_method_declaration_repeat2] = STATE(2152), + [anon_sym_COMMA] = ACTIONS(7617), + [anon_sym_SEMI] = ACTIONS(7666), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3055] = { + [sym__declaration_modifiers] = STATE(3196), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3196), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3196), + [aux_sym__declaration_specifiers_repeat1] = STATE(3196), + [aux_sym_method_definition_repeat2] = STATE(3047), + [aux_sym_method_declaration_repeat2] = STATE(2152), + [anon_sym_COMMA] = ACTIONS(7617), + [anon_sym_SEMI] = ACTIONS(7666), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3056] = { + [sym_attribute_specifier] = STATE(3014), + [sym_enumerator_list] = STATE(3215), + [sym_identifier] = ACTIONS(7668), + [anon_sym_COMMA] = ACTIONS(7670), + [anon_sym_RPAREN] = ACTIONS(7670), + [anon_sym_LPAREN2] = ACTIONS(7670), + [anon_sym_STAR] = ACTIONS(7670), + [anon_sym_CARET] = ACTIONS(7670), + [anon_sym_SEMI] = ACTIONS(7670), + [anon_sym___extension__] = ACTIONS(7668), + [anon_sym_extern] = ACTIONS(7668), + [anon_sym___attribute__] = ACTIONS(7672), + [anon_sym___attribute] = ACTIONS(7672), + [anon_sym_noreturn] = ACTIONS(7668), + [anon_sym_LBRACK] = ACTIONS(7670), + [anon_sym___declspec] = ACTIONS(7668), + [anon_sym___based] = ACTIONS(7668), + [anon_sym_LBRACE] = ACTIONS(7638), + [anon_sym_static] = ACTIONS(7668), + [anon_sym_auto] = ACTIONS(7668), + [anon_sym_register] = ACTIONS(7668), + [anon_sym_inline] = ACTIONS(7668), + [anon_sym___inline] = ACTIONS(7668), + [anon_sym___inline__] = ACTIONS(7668), + [anon_sym___forceinline] = ACTIONS(7668), + [anon_sym_thread_local] = ACTIONS(7668), + [anon_sym___thread] = ACTIONS(7668), + [anon_sym_CG_EXTERN] = ACTIONS(7668), + [anon_sym_CG_INLINE] = ACTIONS(7668), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7668), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7668), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7668), + [anon_sym_IBOutlet] = ACTIONS(7668), + [anon_sym_IBInspectable] = ACTIONS(7668), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7668), + [anon_sym_NS_INLINE] = ACTIONS(7668), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7668), + [anon_sym_OBJC_EXPORT] = ACTIONS(7668), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7668), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7668), + [anon_sym_const] = ACTIONS(7668), + [anon_sym_constexpr] = ACTIONS(7668), + [anon_sym_volatile] = ACTIONS(7668), + [anon_sym_restrict] = ACTIONS(7668), + [anon_sym___restrict__] = ACTIONS(7668), + [anon_sym__Atomic] = ACTIONS(7668), + [anon_sym__Noreturn] = ACTIONS(7668), + [anon_sym__Nonnull] = ACTIONS(7668), + [anon_sym_nullable] = ACTIONS(7668), + [anon_sym__Complex] = ACTIONS(7668), + [anon_sym__Nullable] = ACTIONS(7668), + [anon_sym__Nullable_result] = ACTIONS(7668), + [anon_sym__Null_unspecified] = ACTIONS(7668), + [anon_sym___autoreleasing] = ACTIONS(7668), + [anon_sym___block] = ACTIONS(7668), + [anon_sym___bridge] = ACTIONS(7668), + [anon_sym___bridge_retained] = ACTIONS(7668), + [anon_sym___bridge_transfer] = ACTIONS(7668), + [anon_sym___complex] = ACTIONS(7668), + [anon_sym___const] = ACTIONS(7668), + [anon_sym___imag] = ACTIONS(7668), + [anon_sym___kindof] = ACTIONS(7668), + [anon_sym___nonnull] = ACTIONS(7668), + [anon_sym___nullable] = ACTIONS(7668), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7668), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7668), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7668), + [anon_sym___real] = ACTIONS(7668), + [anon_sym___strong] = ACTIONS(7668), + [anon_sym___unsafe_unretained] = ACTIONS(7668), + [anon_sym___unused] = ACTIONS(7668), + [anon_sym___weak] = ACTIONS(7668), + [anon_sym_alignas] = ACTIONS(7668), + [anon_sym__Alignas] = ACTIONS(7668), + [anon_sym_enum] = ACTIONS(7668), + [anon_sym_COLON] = ACTIONS(7670), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7668), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7668), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7668), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7668), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7668), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7668), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7668), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7668), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7668), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7668), + [anon_sym_NS_AVAILABLE] = ACTIONS(7668), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7668), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7668), + [anon_sym_API_AVAILABLE] = ACTIONS(7668), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7668), + [anon_sym_API_DEPRECATED] = ACTIONS(7668), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7668), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7668), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7668), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7668), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7668), + [anon_sym___deprecated_msg] = ACTIONS(7668), + [anon_sym___deprecated_enum_msg] = ACTIONS(7668), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7668), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7668), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7668), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7668), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7668), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7668), + }, + [3057] = { + [sym__declaration_modifiers] = STATE(3218), + [sym_attribute_specifier] = STATE(3218), + [sym_attribute_declaration] = STATE(3218), + [sym_ms_declspec_modifier] = STATE(3218), + [sym_storage_class_specifier] = STATE(3218), + [sym_type_qualifier] = STATE(3218), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3218), + [aux_sym__declaration_specifiers_repeat1] = STATE(3218), + [aux_sym_method_definition_repeat2] = STATE(3305), + [aux_sym_method_declaration_repeat2] = STATE(2327), + [anon_sym_COMMA] = ACTIONS(7617), + [anon_sym_SEMI] = ACTIONS(7675), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3058] = { + [sym_attribute_specifier] = STATE(3060), + [aux_sym_function_declarator_repeat1] = STATE(3060), + [anon_sym_COMMA] = ACTIONS(6799), + [anon_sym_RPAREN] = ACTIONS(6799), + [anon_sym_LPAREN2] = ACTIONS(6799), + [anon_sym_SEMI] = ACTIONS(6799), + [anon_sym___extension__] = ACTIONS(6799), + [anon_sym_extern] = ACTIONS(6799), + [anon_sym___attribute__] = ACTIONS(6799), + [anon_sym___attribute] = ACTIONS(6797), + [anon_sym_noreturn] = ACTIONS(6799), + [anon_sym_LBRACK] = ACTIONS(6799), + [anon_sym___declspec] = ACTIONS(6799), + [anon_sym_LBRACE] = ACTIONS(6799), + [anon_sym_static] = ACTIONS(6799), + [anon_sym_EQ] = ACTIONS(6799), + [anon_sym_ATautoreleasepool] = ACTIONS(6799), + [anon_sym_auto] = ACTIONS(6799), + [anon_sym_register] = ACTIONS(6799), + [anon_sym_inline] = ACTIONS(6799), + [anon_sym___inline] = ACTIONS(6797), + [anon_sym___inline__] = ACTIONS(6799), + [anon_sym___forceinline] = ACTIONS(6799), + [anon_sym_thread_local] = ACTIONS(6799), + [anon_sym___thread] = ACTIONS(6799), + [anon_sym_CG_EXTERN] = ACTIONS(6799), + [anon_sym_CG_INLINE] = ACTIONS(6799), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6799), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6799), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6799), + [anon_sym_IBOutlet] = ACTIONS(6799), + [anon_sym_IBInspectable] = ACTIONS(6799), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6799), + [anon_sym_NS_INLINE] = ACTIONS(6799), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6799), + [anon_sym_OBJC_EXPORT] = ACTIONS(6799), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6799), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6799), + [anon_sym_const] = ACTIONS(6797), + [anon_sym_constexpr] = ACTIONS(6799), + [anon_sym_volatile] = ACTIONS(6799), + [anon_sym_restrict] = ACTIONS(6799), + [anon_sym___restrict__] = ACTIONS(6799), + [anon_sym__Atomic] = ACTIONS(6799), + [anon_sym__Noreturn] = ACTIONS(6799), + [anon_sym__Nonnull] = ACTIONS(6799), + [anon_sym_nullable] = ACTIONS(6799), + [anon_sym__Complex] = ACTIONS(6799), + [anon_sym__Nullable] = ACTIONS(6797), + [anon_sym__Nullable_result] = ACTIONS(6799), + [anon_sym__Null_unspecified] = ACTIONS(6799), + [anon_sym___autoreleasing] = ACTIONS(6799), + [anon_sym___block] = ACTIONS(6799), + [anon_sym___bridge] = ACTIONS(6797), + [anon_sym___bridge_retained] = ACTIONS(6799), + [anon_sym___bridge_transfer] = ACTIONS(6799), + [anon_sym___complex] = ACTIONS(6799), + [anon_sym___const] = ACTIONS(6799), + [anon_sym___imag] = ACTIONS(6799), + [anon_sym___kindof] = ACTIONS(6799), + [anon_sym___nonnull] = ACTIONS(6799), + [anon_sym___nullable] = ACTIONS(6799), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6799), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6799), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6799), + [anon_sym___real] = ACTIONS(6799), + [anon_sym___strong] = ACTIONS(6799), + [anon_sym___unsafe_unretained] = ACTIONS(6799), + [anon_sym___unused] = ACTIONS(6799), + [anon_sym___weak] = ACTIONS(6799), + [anon_sym_alignas] = ACTIONS(6799), + [anon_sym__Alignas] = ACTIONS(6799), + [anon_sym_COLON] = ACTIONS(6799), + [anon_sym_asm] = ACTIONS(6799), + [anon_sym___asm__] = ACTIONS(6799), + [anon_sym___asm] = ACTIONS(6797), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6799), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6799), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6799), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6799), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6799), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6799), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6799), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6799), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6799), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6799), + [anon_sym_NS_AVAILABLE] = ACTIONS(6797), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6799), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6799), + [anon_sym_API_AVAILABLE] = ACTIONS(6799), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6799), + [anon_sym_API_DEPRECATED] = ACTIONS(6799), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6799), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6799), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6799), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6799), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6799), + [anon_sym___deprecated_msg] = ACTIONS(6799), + [anon_sym___deprecated_enum_msg] = ACTIONS(6799), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6799), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6799), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6799), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6799), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6799), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6799), + }, + [3059] = { + [sym__declaration_modifiers] = STATE(3180), + [sym_attribute_specifier] = STATE(3180), + [sym_attribute_declaration] = STATE(3180), + [sym_ms_declspec_modifier] = STATE(3180), + [sym_storage_class_specifier] = STATE(3180), + [sym_type_qualifier] = STATE(3180), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3180), + [aux_sym__declaration_specifiers_repeat1] = STATE(3180), + [aux_sym_method_definition_repeat2] = STATE(3305), + [aux_sym_method_declaration_repeat2] = STATE(2149), + [anon_sym_COMMA] = ACTIONS(7617), + [anon_sym_SEMI] = ACTIONS(7677), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3060] = { + [sym_attribute_specifier] = STATE(3060), + [aux_sym_function_declarator_repeat1] = STATE(3060), + [anon_sym_COMMA] = ACTIONS(6792), + [anon_sym_RPAREN] = ACTIONS(6792), + [anon_sym_LPAREN2] = ACTIONS(6792), + [anon_sym_SEMI] = ACTIONS(6792), + [anon_sym___extension__] = ACTIONS(6792), + [anon_sym_extern] = ACTIONS(6792), + [anon_sym___attribute__] = ACTIONS(7679), + [anon_sym___attribute] = ACTIONS(6794), + [anon_sym_noreturn] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(6792), + [anon_sym___declspec] = ACTIONS(6792), + [anon_sym_LBRACE] = ACTIONS(6792), + [anon_sym_static] = ACTIONS(6792), + [anon_sym_EQ] = ACTIONS(6792), + [anon_sym_ATautoreleasepool] = ACTIONS(6792), + [anon_sym_auto] = ACTIONS(6792), + [anon_sym_register] = ACTIONS(6792), + [anon_sym_inline] = ACTIONS(6792), + [anon_sym___inline] = ACTIONS(6790), + [anon_sym___inline__] = ACTIONS(6792), + [anon_sym___forceinline] = ACTIONS(6792), + [anon_sym_thread_local] = ACTIONS(6792), + [anon_sym___thread] = ACTIONS(6792), + [anon_sym_CG_EXTERN] = ACTIONS(6792), + [anon_sym_CG_INLINE] = ACTIONS(6792), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6792), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6792), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6792), + [anon_sym_IBOutlet] = ACTIONS(6792), + [anon_sym_IBInspectable] = ACTIONS(6792), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6792), + [anon_sym_NS_INLINE] = ACTIONS(6792), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6792), + [anon_sym_OBJC_EXPORT] = ACTIONS(6792), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6792), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6792), + [anon_sym_const] = ACTIONS(6790), + [anon_sym_constexpr] = ACTIONS(6792), + [anon_sym_volatile] = ACTIONS(6792), + [anon_sym_restrict] = ACTIONS(6792), + [anon_sym___restrict__] = ACTIONS(6792), + [anon_sym__Atomic] = ACTIONS(6792), + [anon_sym__Noreturn] = ACTIONS(6792), + [anon_sym__Nonnull] = ACTIONS(6792), + [anon_sym_nullable] = ACTIONS(6792), + [anon_sym__Complex] = ACTIONS(6792), + [anon_sym__Nullable] = ACTIONS(6790), + [anon_sym__Nullable_result] = ACTIONS(6792), + [anon_sym__Null_unspecified] = ACTIONS(6792), + [anon_sym___autoreleasing] = ACTIONS(6792), + [anon_sym___block] = ACTIONS(6792), + [anon_sym___bridge] = ACTIONS(6790), + [anon_sym___bridge_retained] = ACTIONS(6792), + [anon_sym___bridge_transfer] = ACTIONS(6792), + [anon_sym___complex] = ACTIONS(6792), + [anon_sym___const] = ACTIONS(6792), + [anon_sym___imag] = ACTIONS(6792), + [anon_sym___kindof] = ACTIONS(6792), + [anon_sym___nonnull] = ACTIONS(6792), + [anon_sym___nullable] = ACTIONS(6792), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6792), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6792), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6792), + [anon_sym___real] = ACTIONS(6792), + [anon_sym___strong] = ACTIONS(6792), + [anon_sym___unsafe_unretained] = ACTIONS(6792), + [anon_sym___unused] = ACTIONS(6792), + [anon_sym___weak] = ACTIONS(6792), + [anon_sym_alignas] = ACTIONS(6792), + [anon_sym__Alignas] = ACTIONS(6792), + [anon_sym_COLON] = ACTIONS(6792), + [anon_sym_asm] = ACTIONS(6792), + [anon_sym___asm__] = ACTIONS(6792), + [anon_sym___asm] = ACTIONS(6790), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6792), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6792), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6792), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6792), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6792), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6792), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6792), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6792), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6792), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6792), + [anon_sym_NS_AVAILABLE] = ACTIONS(6790), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6792), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6792), + [anon_sym_API_AVAILABLE] = ACTIONS(6792), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6792), + [anon_sym_API_DEPRECATED] = ACTIONS(6792), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6792), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6792), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6792), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6792), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6792), + [anon_sym___deprecated_msg] = ACTIONS(6792), + [anon_sym___deprecated_enum_msg] = ACTIONS(6792), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6792), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6792), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6792), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6792), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6792), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6792), + }, + [3061] = { + [sym__declaration_modifiers] = STATE(3180), + [sym_attribute_specifier] = STATE(3180), + [sym_attribute_declaration] = STATE(3180), + [sym_ms_declspec_modifier] = STATE(3180), + [sym_storage_class_specifier] = STATE(3180), + [sym_type_qualifier] = STATE(3180), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3180), + [aux_sym__declaration_specifiers_repeat1] = STATE(3180), + [aux_sym_method_definition_repeat2] = STATE(3033), + [aux_sym_method_declaration_repeat2] = STATE(2149), + [anon_sym_COMMA] = ACTIONS(7617), + [anon_sym_SEMI] = ACTIONS(7677), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3062] = { + [sym__declaration_modifiers] = STATE(5147), + [sym_attribute_specifier] = STATE(5147), + [sym_attribute_declaration] = STATE(5147), + [sym_ms_declspec_modifier] = STATE(5147), + [sym_storage_class_specifier] = STATE(5147), + [sym_type_qualifier] = STATE(5147), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(5147), + [sym_identifier] = ACTIONS(7682), + [anon_sym_COMMA] = ACTIONS(7684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7684), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(7684), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_CG_EXTERN] = ACTIONS(51), + [anon_sym_CG_INLINE] = ACTIONS(51), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(51), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(51), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(51), + [anon_sym_IBOutlet] = ACTIONS(51), + [anon_sym_IBInspectable] = ACTIONS(51), + [anon_sym_IB_DESIGNABLE] = ACTIONS(51), + [anon_sym_NS_INLINE] = ACTIONS(51), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(51), + [anon_sym_OBJC_EXPORT] = ACTIONS(51), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(51), + [anon_sym_UIKIT_EXTERN] = ACTIONS(51), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(125), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(125), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(125), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(125), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(125), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(125), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(125), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(125), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(127), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_API_AVAILABLE] = ACTIONS(127), + [anon_sym_API_UNAVAILABLE] = ACTIONS(127), + [anon_sym_API_DEPRECATED] = ACTIONS(127), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(127), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(127), + [anon_sym___deprecated_msg] = ACTIONS(127), + [anon_sym___deprecated_enum_msg] = ACTIONS(127), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(127), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(127), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(127), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(127), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(127), + }, + [3063] = { + [sym_attribute_specifier] = STATE(3000), + [sym_enumerator_list] = STATE(3206), + [sym_identifier] = ACTIONS(7686), + [anon_sym_COMMA] = ACTIONS(7688), + [anon_sym_RPAREN] = ACTIONS(7688), + [anon_sym_LPAREN2] = ACTIONS(7688), + [anon_sym_STAR] = ACTIONS(7688), + [anon_sym_CARET] = ACTIONS(7688), + [anon_sym_SEMI] = ACTIONS(7688), + [anon_sym___extension__] = ACTIONS(7686), + [anon_sym_extern] = ACTIONS(7686), + [anon_sym___attribute__] = ACTIONS(7690), + [anon_sym___attribute] = ACTIONS(7690), + [anon_sym_noreturn] = ACTIONS(7686), + [anon_sym_LBRACK] = ACTIONS(7688), + [anon_sym___declspec] = ACTIONS(7686), + [anon_sym___based] = ACTIONS(7686), + [anon_sym_LBRACE] = ACTIONS(7638), + [anon_sym_static] = ACTIONS(7686), + [anon_sym_auto] = ACTIONS(7686), + [anon_sym_register] = ACTIONS(7686), + [anon_sym_inline] = ACTIONS(7686), + [anon_sym___inline] = ACTIONS(7686), + [anon_sym___inline__] = ACTIONS(7686), + [anon_sym___forceinline] = ACTIONS(7686), + [anon_sym_thread_local] = ACTIONS(7686), + [anon_sym___thread] = ACTIONS(7686), + [anon_sym_CG_EXTERN] = ACTIONS(7686), + [anon_sym_CG_INLINE] = ACTIONS(7686), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7686), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7686), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7686), + [anon_sym_IBOutlet] = ACTIONS(7686), + [anon_sym_IBInspectable] = ACTIONS(7686), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7686), + [anon_sym_NS_INLINE] = ACTIONS(7686), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7686), + [anon_sym_OBJC_EXPORT] = ACTIONS(7686), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7686), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7686), + [anon_sym_const] = ACTIONS(7686), + [anon_sym_constexpr] = ACTIONS(7686), + [anon_sym_volatile] = ACTIONS(7686), + [anon_sym_restrict] = ACTIONS(7686), + [anon_sym___restrict__] = ACTIONS(7686), + [anon_sym__Atomic] = ACTIONS(7686), + [anon_sym__Noreturn] = ACTIONS(7686), + [anon_sym__Nonnull] = ACTIONS(7686), + [anon_sym_nullable] = ACTIONS(7686), + [anon_sym__Complex] = ACTIONS(7686), + [anon_sym__Nullable] = ACTIONS(7686), + [anon_sym__Nullable_result] = ACTIONS(7686), + [anon_sym__Null_unspecified] = ACTIONS(7686), + [anon_sym___autoreleasing] = ACTIONS(7686), + [anon_sym___block] = ACTIONS(7686), + [anon_sym___bridge] = ACTIONS(7686), + [anon_sym___bridge_retained] = ACTIONS(7686), + [anon_sym___bridge_transfer] = ACTIONS(7686), + [anon_sym___complex] = ACTIONS(7686), + [anon_sym___const] = ACTIONS(7686), + [anon_sym___imag] = ACTIONS(7686), + [anon_sym___kindof] = ACTIONS(7686), + [anon_sym___nonnull] = ACTIONS(7686), + [anon_sym___nullable] = ACTIONS(7686), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7686), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7686), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7686), + [anon_sym___real] = ACTIONS(7686), + [anon_sym___strong] = ACTIONS(7686), + [anon_sym___unsafe_unretained] = ACTIONS(7686), + [anon_sym___unused] = ACTIONS(7686), + [anon_sym___weak] = ACTIONS(7686), + [anon_sym_alignas] = ACTIONS(7686), + [anon_sym__Alignas] = ACTIONS(7686), + [anon_sym_enum] = ACTIONS(7686), + [anon_sym_COLON] = ACTIONS(7688), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7686), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7686), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7686), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7686), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7686), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7686), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7686), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7686), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7686), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7686), + [anon_sym_NS_AVAILABLE] = ACTIONS(7686), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7686), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7686), + [anon_sym_API_AVAILABLE] = ACTIONS(7686), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7686), + [anon_sym_API_DEPRECATED] = ACTIONS(7686), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7686), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7686), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7686), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7686), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7686), + [anon_sym___deprecated_msg] = ACTIONS(7686), + [anon_sym___deprecated_enum_msg] = ACTIONS(7686), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7686), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7686), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7686), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7686), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7686), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7686), + }, + [3064] = { + [sym_attribute_specifier] = STATE(3010), + [sym_enumerator_list] = STATE(3211), + [sym_identifier] = ACTIONS(7693), + [anon_sym_COMMA] = ACTIONS(7695), + [anon_sym_RPAREN] = ACTIONS(7695), + [anon_sym_LPAREN2] = ACTIONS(7695), + [anon_sym_STAR] = ACTIONS(7695), + [anon_sym_CARET] = ACTIONS(7695), + [anon_sym_SEMI] = ACTIONS(7695), + [anon_sym___extension__] = ACTIONS(7693), + [anon_sym_extern] = ACTIONS(7693), + [anon_sym___attribute__] = ACTIONS(7697), + [anon_sym___attribute] = ACTIONS(7697), + [anon_sym_noreturn] = ACTIONS(7693), + [anon_sym_LBRACK] = ACTIONS(7695), + [anon_sym___declspec] = ACTIONS(7693), + [anon_sym___based] = ACTIONS(7693), + [anon_sym_LBRACE] = ACTIONS(7638), + [anon_sym_static] = ACTIONS(7693), + [anon_sym_auto] = ACTIONS(7693), + [anon_sym_register] = ACTIONS(7693), + [anon_sym_inline] = ACTIONS(7693), + [anon_sym___inline] = ACTIONS(7693), + [anon_sym___inline__] = ACTIONS(7693), + [anon_sym___forceinline] = ACTIONS(7693), + [anon_sym_thread_local] = ACTIONS(7693), + [anon_sym___thread] = ACTIONS(7693), + [anon_sym_CG_EXTERN] = ACTIONS(7693), + [anon_sym_CG_INLINE] = ACTIONS(7693), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7693), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7693), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7693), + [anon_sym_IBOutlet] = ACTIONS(7693), + [anon_sym_IBInspectable] = ACTIONS(7693), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7693), + [anon_sym_NS_INLINE] = ACTIONS(7693), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7693), + [anon_sym_OBJC_EXPORT] = ACTIONS(7693), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7693), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7693), + [anon_sym_const] = ACTIONS(7693), + [anon_sym_constexpr] = ACTIONS(7693), + [anon_sym_volatile] = ACTIONS(7693), + [anon_sym_restrict] = ACTIONS(7693), + [anon_sym___restrict__] = ACTIONS(7693), + [anon_sym__Atomic] = ACTIONS(7693), + [anon_sym__Noreturn] = ACTIONS(7693), + [anon_sym__Nonnull] = ACTIONS(7693), + [anon_sym_nullable] = ACTIONS(7693), + [anon_sym__Complex] = ACTIONS(7693), + [anon_sym__Nullable] = ACTIONS(7693), + [anon_sym__Nullable_result] = ACTIONS(7693), + [anon_sym__Null_unspecified] = ACTIONS(7693), + [anon_sym___autoreleasing] = ACTIONS(7693), + [anon_sym___block] = ACTIONS(7693), + [anon_sym___bridge] = ACTIONS(7693), + [anon_sym___bridge_retained] = ACTIONS(7693), + [anon_sym___bridge_transfer] = ACTIONS(7693), + [anon_sym___complex] = ACTIONS(7693), + [anon_sym___const] = ACTIONS(7693), + [anon_sym___imag] = ACTIONS(7693), + [anon_sym___kindof] = ACTIONS(7693), + [anon_sym___nonnull] = ACTIONS(7693), + [anon_sym___nullable] = ACTIONS(7693), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7693), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7693), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7693), + [anon_sym___real] = ACTIONS(7693), + [anon_sym___strong] = ACTIONS(7693), + [anon_sym___unsafe_unretained] = ACTIONS(7693), + [anon_sym___unused] = ACTIONS(7693), + [anon_sym___weak] = ACTIONS(7693), + [anon_sym_alignas] = ACTIONS(7693), + [anon_sym__Alignas] = ACTIONS(7693), + [anon_sym_enum] = ACTIONS(7693), + [anon_sym_COLON] = ACTIONS(7695), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7693), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7693), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7693), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7693), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7693), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7693), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7693), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7693), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7693), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7693), + [anon_sym_NS_AVAILABLE] = ACTIONS(7693), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7693), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7693), + [anon_sym_API_AVAILABLE] = ACTIONS(7693), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7693), + [anon_sym_API_DEPRECATED] = ACTIONS(7693), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7693), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7693), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7693), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7693), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7693), + [anon_sym___deprecated_msg] = ACTIONS(7693), + [anon_sym___deprecated_enum_msg] = ACTIONS(7693), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7693), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7693), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7693), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7693), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7693), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7693), + }, + [3065] = { + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_RPAREN] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(6859), + [anon_sym_SEMI] = ACTIONS(6859), + [anon_sym___extension__] = ACTIONS(6859), + [anon_sym_extern] = ACTIONS(6859), + [anon_sym___attribute__] = ACTIONS(6859), + [anon_sym___attribute] = ACTIONS(6857), + [anon_sym_noreturn] = ACTIONS(6859), + [anon_sym_LBRACK] = ACTIONS(6859), + [anon_sym___declspec] = ACTIONS(6859), + [anon_sym_LBRACE] = ACTIONS(6859), + [anon_sym_static] = ACTIONS(6859), + [anon_sym_EQ] = ACTIONS(6859), + [anon_sym_ATautoreleasepool] = ACTIONS(6859), + [anon_sym_auto] = ACTIONS(6859), + [anon_sym_register] = ACTIONS(6859), + [anon_sym_inline] = ACTIONS(6859), + [anon_sym___inline] = ACTIONS(6857), + [anon_sym___inline__] = ACTIONS(6859), + [anon_sym___forceinline] = ACTIONS(6859), + [anon_sym_thread_local] = ACTIONS(6859), + [anon_sym___thread] = ACTIONS(6859), + [anon_sym_CG_EXTERN] = ACTIONS(6859), + [anon_sym_CG_INLINE] = ACTIONS(6859), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6859), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6859), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6859), + [anon_sym_IBOutlet] = ACTIONS(6859), + [anon_sym_IBInspectable] = ACTIONS(6859), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6859), + [anon_sym_NS_INLINE] = ACTIONS(6859), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6859), + [anon_sym_OBJC_EXPORT] = ACTIONS(6859), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6859), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6859), + [anon_sym_const] = ACTIONS(6857), + [anon_sym_constexpr] = ACTIONS(6859), + [anon_sym_volatile] = ACTIONS(6859), + [anon_sym_restrict] = ACTIONS(6859), + [anon_sym___restrict__] = ACTIONS(6859), + [anon_sym__Atomic] = ACTIONS(6859), + [anon_sym__Noreturn] = ACTIONS(6859), + [anon_sym__Nonnull] = ACTIONS(6859), + [anon_sym_nullable] = ACTIONS(6859), + [anon_sym__Complex] = ACTIONS(6859), + [anon_sym__Nullable] = ACTIONS(6857), + [anon_sym__Nullable_result] = ACTIONS(6859), + [anon_sym__Null_unspecified] = ACTIONS(6859), + [anon_sym___autoreleasing] = ACTIONS(6859), + [anon_sym___block] = ACTIONS(6859), + [anon_sym___bridge] = ACTIONS(6857), + [anon_sym___bridge_retained] = ACTIONS(6859), + [anon_sym___bridge_transfer] = ACTIONS(6859), + [anon_sym___complex] = ACTIONS(6859), + [anon_sym___const] = ACTIONS(6859), + [anon_sym___imag] = ACTIONS(6859), + [anon_sym___kindof] = ACTIONS(6859), + [anon_sym___nonnull] = ACTIONS(6859), + [anon_sym___nullable] = ACTIONS(6859), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6859), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6859), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6859), + [anon_sym___real] = ACTIONS(6859), + [anon_sym___strong] = ACTIONS(6859), + [anon_sym___unsafe_unretained] = ACTIONS(6859), + [anon_sym___unused] = ACTIONS(6859), + [anon_sym___weak] = ACTIONS(6859), + [anon_sym_alignas] = ACTIONS(6859), + [anon_sym__Alignas] = ACTIONS(6859), + [anon_sym_COLON] = ACTIONS(6859), + [anon_sym_in] = ACTIONS(6857), + [anon_sym_asm] = ACTIONS(6859), + [anon_sym___asm__] = ACTIONS(6859), + [anon_sym___asm] = ACTIONS(6857), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6859), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6859), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6859), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6859), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6859), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6859), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6859), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6859), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6859), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6859), + [anon_sym_NS_AVAILABLE] = ACTIONS(6857), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6859), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6859), + [anon_sym_API_AVAILABLE] = ACTIONS(6859), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6859), + [anon_sym_API_DEPRECATED] = ACTIONS(6859), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6859), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6859), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6859), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6859), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6859), + [anon_sym___deprecated_msg] = ACTIONS(6859), + [anon_sym___deprecated_enum_msg] = ACTIONS(6859), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6859), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6859), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6859), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6859), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6859), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6859), + }, + [3066] = { + [sym_attribute_specifier] = STATE(2946), + [sym_enumerator_list] = STATE(3194), + [sym_identifier] = ACTIONS(7700), + [anon_sym_COMMA] = ACTIONS(7702), + [anon_sym_RPAREN] = ACTIONS(7702), + [anon_sym_LPAREN2] = ACTIONS(7702), + [anon_sym_STAR] = ACTIONS(7702), + [anon_sym_CARET] = ACTIONS(7702), + [anon_sym_SEMI] = ACTIONS(7702), + [anon_sym___extension__] = ACTIONS(7700), + [anon_sym_extern] = ACTIONS(7700), + [anon_sym___attribute__] = ACTIONS(7704), + [anon_sym___attribute] = ACTIONS(7704), + [anon_sym_noreturn] = ACTIONS(7700), + [anon_sym_LBRACK] = ACTIONS(7702), + [anon_sym___declspec] = ACTIONS(7700), + [anon_sym___based] = ACTIONS(7700), + [anon_sym_LBRACE] = ACTIONS(7638), + [anon_sym_static] = ACTIONS(7700), + [anon_sym_auto] = ACTIONS(7700), + [anon_sym_register] = ACTIONS(7700), + [anon_sym_inline] = ACTIONS(7700), + [anon_sym___inline] = ACTIONS(7700), + [anon_sym___inline__] = ACTIONS(7700), + [anon_sym___forceinline] = ACTIONS(7700), + [anon_sym_thread_local] = ACTIONS(7700), + [anon_sym___thread] = ACTIONS(7700), + [anon_sym_CG_EXTERN] = ACTIONS(7700), + [anon_sym_CG_INLINE] = ACTIONS(7700), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7700), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7700), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7700), + [anon_sym_IBOutlet] = ACTIONS(7700), + [anon_sym_IBInspectable] = ACTIONS(7700), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7700), + [anon_sym_NS_INLINE] = ACTIONS(7700), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7700), + [anon_sym_OBJC_EXPORT] = ACTIONS(7700), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7700), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7700), + [anon_sym_const] = ACTIONS(7700), + [anon_sym_constexpr] = ACTIONS(7700), + [anon_sym_volatile] = ACTIONS(7700), + [anon_sym_restrict] = ACTIONS(7700), + [anon_sym___restrict__] = ACTIONS(7700), + [anon_sym__Atomic] = ACTIONS(7700), + [anon_sym__Noreturn] = ACTIONS(7700), + [anon_sym__Nonnull] = ACTIONS(7700), + [anon_sym_nullable] = ACTIONS(7700), + [anon_sym__Complex] = ACTIONS(7700), + [anon_sym__Nullable] = ACTIONS(7700), + [anon_sym__Nullable_result] = ACTIONS(7700), + [anon_sym__Null_unspecified] = ACTIONS(7700), + [anon_sym___autoreleasing] = ACTIONS(7700), + [anon_sym___block] = ACTIONS(7700), + [anon_sym___bridge] = ACTIONS(7700), + [anon_sym___bridge_retained] = ACTIONS(7700), + [anon_sym___bridge_transfer] = ACTIONS(7700), + [anon_sym___complex] = ACTIONS(7700), + [anon_sym___const] = ACTIONS(7700), + [anon_sym___imag] = ACTIONS(7700), + [anon_sym___kindof] = ACTIONS(7700), + [anon_sym___nonnull] = ACTIONS(7700), + [anon_sym___nullable] = ACTIONS(7700), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7700), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7700), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7700), + [anon_sym___real] = ACTIONS(7700), + [anon_sym___strong] = ACTIONS(7700), + [anon_sym___unsafe_unretained] = ACTIONS(7700), + [anon_sym___unused] = ACTIONS(7700), + [anon_sym___weak] = ACTIONS(7700), + [anon_sym_alignas] = ACTIONS(7700), + [anon_sym__Alignas] = ACTIONS(7700), + [anon_sym_COLON] = ACTIONS(7707), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7700), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7700), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7700), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7700), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7700), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7700), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7700), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7700), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7700), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7700), + [anon_sym_NS_AVAILABLE] = ACTIONS(7700), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7700), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7700), + [anon_sym_API_AVAILABLE] = ACTIONS(7700), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7700), + [anon_sym_API_DEPRECATED] = ACTIONS(7700), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7700), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7700), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7700), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7700), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7700), + [anon_sym___deprecated_msg] = ACTIONS(7700), + [anon_sym___deprecated_enum_msg] = ACTIONS(7700), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7700), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7700), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7700), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7700), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7700), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7700), + }, + [3067] = { + [sym_parameter_list] = STATE(3030), + [anon_sym_COMMA] = ACTIONS(6837), + [anon_sym_RPAREN] = ACTIONS(6837), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6837), + [anon_sym___extension__] = ACTIONS(6837), + [anon_sym_extern] = ACTIONS(6837), + [anon_sym___attribute__] = ACTIONS(6837), + [anon_sym___attribute] = ACTIONS(6835), + [anon_sym_noreturn] = ACTIONS(6837), + [anon_sym_LBRACK] = ACTIONS(7709), + [anon_sym___declspec] = ACTIONS(6837), + [anon_sym_LBRACE] = ACTIONS(6837), + [anon_sym_static] = ACTIONS(6837), + [anon_sym_EQ] = ACTIONS(6837), + [anon_sym_ATautoreleasepool] = ACTIONS(6837), + [anon_sym_auto] = ACTIONS(6837), + [anon_sym_register] = ACTIONS(6837), + [anon_sym_inline] = ACTIONS(6837), + [anon_sym___inline] = ACTIONS(6835), + [anon_sym___inline__] = ACTIONS(6837), + [anon_sym___forceinline] = ACTIONS(6837), + [anon_sym_thread_local] = ACTIONS(6837), + [anon_sym___thread] = ACTIONS(6837), + [anon_sym_CG_EXTERN] = ACTIONS(6837), + [anon_sym_CG_INLINE] = ACTIONS(6837), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6837), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6837), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6837), + [anon_sym_IBOutlet] = ACTIONS(6837), + [anon_sym_IBInspectable] = ACTIONS(6837), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6837), + [anon_sym_NS_INLINE] = ACTIONS(6837), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6837), + [anon_sym_OBJC_EXPORT] = ACTIONS(6837), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6837), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6837), + [anon_sym_const] = ACTIONS(6835), + [anon_sym_constexpr] = ACTIONS(6837), + [anon_sym_volatile] = ACTIONS(6837), + [anon_sym_restrict] = ACTIONS(6837), + [anon_sym___restrict__] = ACTIONS(6837), + [anon_sym__Atomic] = ACTIONS(6837), + [anon_sym__Noreturn] = ACTIONS(6837), + [anon_sym__Nonnull] = ACTIONS(6837), + [anon_sym_nullable] = ACTIONS(6837), + [anon_sym__Complex] = ACTIONS(6837), + [anon_sym__Nullable] = ACTIONS(6835), + [anon_sym__Nullable_result] = ACTIONS(6837), + [anon_sym__Null_unspecified] = ACTIONS(6837), + [anon_sym___autoreleasing] = ACTIONS(6837), + [anon_sym___block] = ACTIONS(6837), + [anon_sym___bridge] = ACTIONS(6835), + [anon_sym___bridge_retained] = ACTIONS(6837), + [anon_sym___bridge_transfer] = ACTIONS(6837), + [anon_sym___complex] = ACTIONS(6837), + [anon_sym___const] = ACTIONS(6837), + [anon_sym___imag] = ACTIONS(6837), + [anon_sym___kindof] = ACTIONS(6837), + [anon_sym___nonnull] = ACTIONS(6837), + [anon_sym___nullable] = ACTIONS(6837), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6837), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6837), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6837), + [anon_sym___real] = ACTIONS(6837), + [anon_sym___strong] = ACTIONS(6837), + [anon_sym___unsafe_unretained] = ACTIONS(6837), + [anon_sym___unused] = ACTIONS(6837), + [anon_sym___weak] = ACTIONS(6837), + [anon_sym_alignas] = ACTIONS(6837), + [anon_sym__Alignas] = ACTIONS(6837), + [anon_sym_COLON] = ACTIONS(6837), + [anon_sym_asm] = ACTIONS(6837), + [anon_sym___asm__] = ACTIONS(6837), + [anon_sym___asm] = ACTIONS(6835), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6837), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6837), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6837), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6837), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6837), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6837), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6837), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6837), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6837), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6837), + [anon_sym_NS_AVAILABLE] = ACTIONS(6835), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6837), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6837), + [anon_sym_API_AVAILABLE] = ACTIONS(6837), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6837), + [anon_sym_API_DEPRECATED] = ACTIONS(6837), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6837), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6837), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6837), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6837), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6837), + [anon_sym___deprecated_msg] = ACTIONS(6837), + [anon_sym___deprecated_enum_msg] = ACTIONS(6837), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6837), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6837), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6837), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6837), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6837), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6837), + }, + [3068] = { + [sym__declaration_modifiers] = STATE(5122), + [sym_attribute_specifier] = STATE(5122), + [sym_attribute_declaration] = STATE(5122), + [sym_ms_declspec_modifier] = STATE(5122), + [sym_storage_class_specifier] = STATE(5122), + [sym_type_qualifier] = STATE(5122), + [sym_alignas_qualifier] = STATE(5101), + [sym_availability_attribute_specifier] = STATE(5122), + [sym_identifier] = ACTIONS(7711), + [anon_sym___extension__] = ACTIONS(7582), + [anon_sym_extern] = ACTIONS(7584), + [anon_sym___attribute__] = ACTIONS(7586), + [anon_sym___attribute] = ACTIONS(7586), + [anon_sym_noreturn] = ACTIONS(7582), + [anon_sym_LBRACK] = ACTIONS(7588), + [anon_sym___declspec] = ACTIONS(7590), + [anon_sym_static] = ACTIONS(7584), + [anon_sym_auto] = ACTIONS(7584), + [anon_sym_register] = ACTIONS(7584), + [anon_sym_inline] = ACTIONS(7584), + [anon_sym___inline] = ACTIONS(7584), + [anon_sym___inline__] = ACTIONS(7584), + [anon_sym___forceinline] = ACTIONS(7584), + [anon_sym_thread_local] = ACTIONS(7584), + [anon_sym___thread] = ACTIONS(7584), + [anon_sym_CG_EXTERN] = ACTIONS(7584), + [anon_sym_CG_INLINE] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7584), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7584), + [anon_sym_IBOutlet] = ACTIONS(7584), + [anon_sym_IBInspectable] = ACTIONS(7584), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7584), + [anon_sym_NS_INLINE] = ACTIONS(7584), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7584), + [anon_sym_OBJC_EXPORT] = ACTIONS(7584), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7584), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7713), + [anon_sym_constexpr] = ACTIONS(7582), + [anon_sym_volatile] = ACTIONS(7582), + [anon_sym_restrict] = ACTIONS(7582), + [anon_sym___restrict__] = ACTIONS(7582), + [anon_sym__Atomic] = ACTIONS(7582), + [anon_sym__Noreturn] = ACTIONS(7582), + [anon_sym__Nonnull] = ACTIONS(7582), + [anon_sym_nullable] = ACTIONS(7582), + [anon_sym__Complex] = ACTIONS(7582), + [anon_sym__Nullable] = ACTIONS(7582), + [anon_sym__Nullable_result] = ACTIONS(7582), + [anon_sym__Null_unspecified] = ACTIONS(7582), + [anon_sym___autoreleasing] = ACTIONS(7582), + [anon_sym___block] = ACTIONS(7582), + [anon_sym___bridge] = ACTIONS(7582), + [anon_sym___bridge_retained] = ACTIONS(7582), + [anon_sym___bridge_transfer] = ACTIONS(7582), + [anon_sym___complex] = ACTIONS(7582), + [anon_sym___const] = ACTIONS(7582), + [anon_sym___imag] = ACTIONS(7582), + [anon_sym___kindof] = ACTIONS(7582), + [anon_sym___nonnull] = ACTIONS(7582), + [anon_sym___nullable] = ACTIONS(7582), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7582), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7582), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7582), + [anon_sym___real] = ACTIONS(7582), + [anon_sym___strong] = ACTIONS(7582), + [anon_sym___unsafe_unretained] = ACTIONS(7582), + [anon_sym___unused] = ACTIONS(7582), + [anon_sym___weak] = ACTIONS(7582), + [anon_sym_alignas] = ACTIONS(7594), + [anon_sym__Alignas] = ACTIONS(7594), + [anon_sym_struct] = ACTIONS(7715), + [anon_sym_in] = ACTIONS(7715), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7598), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7598), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7598), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7598), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7598), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE] = ACTIONS(7600), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_API_AVAILABLE] = ACTIONS(7600), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_API_DEPRECATED] = ACTIONS(7600), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7600), + [anon_sym___deprecated_msg] = ACTIONS(7600), + [anon_sym___deprecated_enum_msg] = ACTIONS(7600), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7600), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7600), + [anon_sym_id] = ACTIONS(7715), + }, + [3069] = { + [anon_sym_COMMA] = ACTIONS(6754), + [anon_sym_RPAREN] = ACTIONS(6754), + [anon_sym_LPAREN2] = ACTIONS(6754), + [anon_sym_SEMI] = ACTIONS(6754), + [anon_sym___extension__] = ACTIONS(6754), + [anon_sym_extern] = ACTIONS(6754), + [anon_sym___attribute__] = ACTIONS(6754), + [anon_sym___attribute] = ACTIONS(6752), + [anon_sym_noreturn] = ACTIONS(6754), + [anon_sym_LBRACK] = ACTIONS(6754), + [anon_sym___declspec] = ACTIONS(6754), + [anon_sym_LBRACE] = ACTIONS(6754), + [anon_sym_static] = ACTIONS(6754), + [anon_sym_EQ] = ACTIONS(6754), + [anon_sym_ATautoreleasepool] = ACTIONS(6754), + [anon_sym_auto] = ACTIONS(6754), + [anon_sym_register] = ACTIONS(6754), + [anon_sym_inline] = ACTIONS(6754), + [anon_sym___inline] = ACTIONS(6752), + [anon_sym___inline__] = ACTIONS(6754), + [anon_sym___forceinline] = ACTIONS(6754), + [anon_sym_thread_local] = ACTIONS(6754), + [anon_sym___thread] = ACTIONS(6754), + [anon_sym_CG_EXTERN] = ACTIONS(6754), + [anon_sym_CG_INLINE] = ACTIONS(6754), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6754), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6754), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6754), + [anon_sym_IBOutlet] = ACTIONS(6754), + [anon_sym_IBInspectable] = ACTIONS(6754), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6754), + [anon_sym_NS_INLINE] = ACTIONS(6754), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6754), + [anon_sym_OBJC_EXPORT] = ACTIONS(6754), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6754), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6754), + [anon_sym_const] = ACTIONS(6752), + [anon_sym_constexpr] = ACTIONS(6754), + [anon_sym_volatile] = ACTIONS(6754), + [anon_sym_restrict] = ACTIONS(6754), + [anon_sym___restrict__] = ACTIONS(6754), + [anon_sym__Atomic] = ACTIONS(6754), + [anon_sym__Noreturn] = ACTIONS(6754), + [anon_sym__Nonnull] = ACTIONS(6754), + [anon_sym_nullable] = ACTIONS(6754), + [anon_sym__Complex] = ACTIONS(6754), + [anon_sym__Nullable] = ACTIONS(6752), + [anon_sym__Nullable_result] = ACTIONS(6754), + [anon_sym__Null_unspecified] = ACTIONS(6754), + [anon_sym___autoreleasing] = ACTIONS(6754), + [anon_sym___block] = ACTIONS(6754), + [anon_sym___bridge] = ACTIONS(6752), + [anon_sym___bridge_retained] = ACTIONS(6754), + [anon_sym___bridge_transfer] = ACTIONS(6754), + [anon_sym___complex] = ACTIONS(6754), + [anon_sym___const] = ACTIONS(6754), + [anon_sym___imag] = ACTIONS(6754), + [anon_sym___kindof] = ACTIONS(6754), + [anon_sym___nonnull] = ACTIONS(6754), + [anon_sym___nullable] = ACTIONS(6754), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6754), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6754), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6754), + [anon_sym___real] = ACTIONS(6754), + [anon_sym___strong] = ACTIONS(6754), + [anon_sym___unsafe_unretained] = ACTIONS(6754), + [anon_sym___unused] = ACTIONS(6754), + [anon_sym___weak] = ACTIONS(6754), + [anon_sym_alignas] = ACTIONS(6754), + [anon_sym__Alignas] = ACTIONS(6754), + [anon_sym_COLON] = ACTIONS(6754), + [anon_sym_in] = ACTIONS(6752), + [anon_sym_asm] = ACTIONS(6754), + [anon_sym___asm__] = ACTIONS(6754), + [anon_sym___asm] = ACTIONS(6752), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6754), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6754), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6754), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6754), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6754), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6754), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6754), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6754), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6754), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6754), + [anon_sym_NS_AVAILABLE] = ACTIONS(6752), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6754), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6754), + [anon_sym_API_AVAILABLE] = ACTIONS(6754), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6754), + [anon_sym_API_DEPRECATED] = ACTIONS(6754), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6754), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6754), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6754), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6754), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6754), + [anon_sym___deprecated_msg] = ACTIONS(6754), + [anon_sym___deprecated_enum_msg] = ACTIONS(6754), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6754), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6754), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6754), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6754), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6754), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6754), + }, + [3070] = { + [sym_attribute_specifier] = STATE(2963), + [sym_enumerator_list] = STATE(3109), + [sym_identifier] = ACTIONS(7717), + [anon_sym_COMMA] = ACTIONS(7719), + [anon_sym_LPAREN2] = ACTIONS(7719), + [anon_sym_STAR] = ACTIONS(7719), + [anon_sym_CARET] = ACTIONS(7719), + [anon_sym_SEMI] = ACTIONS(7719), + [anon_sym___extension__] = ACTIONS(7717), + [anon_sym_extern] = ACTIONS(7717), + [anon_sym___attribute__] = ACTIONS(7721), + [anon_sym___attribute] = ACTIONS(7721), + [anon_sym_noreturn] = ACTIONS(7717), + [anon_sym_LBRACK] = ACTIONS(7719), + [anon_sym___declspec] = ACTIONS(7717), + [anon_sym___based] = ACTIONS(7717), + [anon_sym_LBRACE] = ACTIONS(7638), + [anon_sym_static] = ACTIONS(7717), + [anon_sym_auto] = ACTIONS(7717), + [anon_sym_register] = ACTIONS(7717), + [anon_sym_inline] = ACTIONS(7717), + [anon_sym___inline] = ACTIONS(7717), + [anon_sym___inline__] = ACTIONS(7717), + [anon_sym___forceinline] = ACTIONS(7717), + [anon_sym_thread_local] = ACTIONS(7717), + [anon_sym___thread] = ACTIONS(7717), + [anon_sym_CG_EXTERN] = ACTIONS(7717), + [anon_sym_CG_INLINE] = ACTIONS(7717), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7717), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7717), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7717), + [anon_sym_IBOutlet] = ACTIONS(7717), + [anon_sym_IBInspectable] = ACTIONS(7717), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7717), + [anon_sym_NS_INLINE] = ACTIONS(7717), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7717), + [anon_sym_OBJC_EXPORT] = ACTIONS(7717), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7717), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7717), + [anon_sym_const] = ACTIONS(7717), + [anon_sym_constexpr] = ACTIONS(7717), + [anon_sym_volatile] = ACTIONS(7717), + [anon_sym_restrict] = ACTIONS(7717), + [anon_sym___restrict__] = ACTIONS(7717), + [anon_sym__Atomic] = ACTIONS(7717), + [anon_sym__Noreturn] = ACTIONS(7717), + [anon_sym__Nonnull] = ACTIONS(7717), + [anon_sym_nullable] = ACTIONS(7717), + [anon_sym__Complex] = ACTIONS(7717), + [anon_sym__Nullable] = ACTIONS(7717), + [anon_sym__Nullable_result] = ACTIONS(7717), + [anon_sym__Null_unspecified] = ACTIONS(7717), + [anon_sym___autoreleasing] = ACTIONS(7717), + [anon_sym___block] = ACTIONS(7717), + [anon_sym___bridge] = ACTIONS(7717), + [anon_sym___bridge_retained] = ACTIONS(7717), + [anon_sym___bridge_transfer] = ACTIONS(7717), + [anon_sym___complex] = ACTIONS(7717), + [anon_sym___const] = ACTIONS(7717), + [anon_sym___imag] = ACTIONS(7717), + [anon_sym___kindof] = ACTIONS(7717), + [anon_sym___nonnull] = ACTIONS(7717), + [anon_sym___nullable] = ACTIONS(7717), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7717), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7717), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7717), + [anon_sym___real] = ACTIONS(7717), + [anon_sym___strong] = ACTIONS(7717), + [anon_sym___unsafe_unretained] = ACTIONS(7717), + [anon_sym___unused] = ACTIONS(7717), + [anon_sym___weak] = ACTIONS(7717), + [anon_sym_alignas] = ACTIONS(7717), + [anon_sym__Alignas] = ACTIONS(7717), + [anon_sym_enum] = ACTIONS(7717), + [anon_sym_COLON] = ACTIONS(7724), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7717), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7717), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7717), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7717), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7717), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7717), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7717), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7717), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7717), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7717), + [anon_sym_NS_AVAILABLE] = ACTIONS(7717), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7717), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7717), + [anon_sym_API_AVAILABLE] = ACTIONS(7717), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7717), + [anon_sym_API_DEPRECATED] = ACTIONS(7717), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7717), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7717), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7717), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7717), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7717), + [anon_sym___deprecated_msg] = ACTIONS(7717), + [anon_sym___deprecated_enum_msg] = ACTIONS(7717), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7717), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7717), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7717), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7717), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7717), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7717), + }, + [3071] = { + [sym_parameter_list] = STATE(3030), + [anon_sym_COMMA] = ACTIONS(6821), + [anon_sym_RPAREN] = ACTIONS(6821), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(6821), + [anon_sym_extern] = ACTIONS(6821), + [anon_sym___attribute__] = ACTIONS(6821), + [anon_sym___attribute] = ACTIONS(6819), + [anon_sym_noreturn] = ACTIONS(6821), + [anon_sym_LBRACK] = ACTIONS(7709), + [anon_sym___declspec] = ACTIONS(6821), + [anon_sym_LBRACE] = ACTIONS(6821), + [anon_sym_static] = ACTIONS(6821), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_ATautoreleasepool] = ACTIONS(6821), + [anon_sym_auto] = ACTIONS(6821), + [anon_sym_register] = ACTIONS(6821), + [anon_sym_inline] = ACTIONS(6821), + [anon_sym___inline] = ACTIONS(6819), + [anon_sym___inline__] = ACTIONS(6821), + [anon_sym___forceinline] = ACTIONS(6821), + [anon_sym_thread_local] = ACTIONS(6821), + [anon_sym___thread] = ACTIONS(6821), + [anon_sym_CG_EXTERN] = ACTIONS(6821), + [anon_sym_CG_INLINE] = ACTIONS(6821), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6821), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6821), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6821), + [anon_sym_IBOutlet] = ACTIONS(6821), + [anon_sym_IBInspectable] = ACTIONS(6821), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6821), + [anon_sym_NS_INLINE] = ACTIONS(6821), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6821), + [anon_sym_OBJC_EXPORT] = ACTIONS(6821), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6821), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(6819), + [anon_sym_constexpr] = ACTIONS(6821), + [anon_sym_volatile] = ACTIONS(6821), + [anon_sym_restrict] = ACTIONS(6821), + [anon_sym___restrict__] = ACTIONS(6821), + [anon_sym__Atomic] = ACTIONS(6821), + [anon_sym__Noreturn] = ACTIONS(6821), + [anon_sym__Nonnull] = ACTIONS(6821), + [anon_sym_nullable] = ACTIONS(6821), + [anon_sym__Complex] = ACTIONS(6821), + [anon_sym__Nullable] = ACTIONS(6819), + [anon_sym__Nullable_result] = ACTIONS(6821), + [anon_sym__Null_unspecified] = ACTIONS(6821), + [anon_sym___autoreleasing] = ACTIONS(6821), + [anon_sym___block] = ACTIONS(6821), + [anon_sym___bridge] = ACTIONS(6819), + [anon_sym___bridge_retained] = ACTIONS(6821), + [anon_sym___bridge_transfer] = ACTIONS(6821), + [anon_sym___complex] = ACTIONS(6821), + [anon_sym___const] = ACTIONS(6821), + [anon_sym___imag] = ACTIONS(6821), + [anon_sym___kindof] = ACTIONS(6821), + [anon_sym___nonnull] = ACTIONS(6821), + [anon_sym___nullable] = ACTIONS(6821), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6821), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6821), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6821), + [anon_sym___real] = ACTIONS(6821), + [anon_sym___strong] = ACTIONS(6821), + [anon_sym___unsafe_unretained] = ACTIONS(6821), + [anon_sym___unused] = ACTIONS(6821), + [anon_sym___weak] = ACTIONS(6821), + [anon_sym_alignas] = ACTIONS(6821), + [anon_sym__Alignas] = ACTIONS(6821), + [anon_sym_COLON] = ACTIONS(6821), + [anon_sym_asm] = ACTIONS(6821), + [anon_sym___asm__] = ACTIONS(6821), + [anon_sym___asm] = ACTIONS(6819), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6821), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6821), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6821), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6821), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6821), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6821), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6821), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6821), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6821), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6821), + [anon_sym_NS_AVAILABLE] = ACTIONS(6819), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6821), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6821), + [anon_sym_API_AVAILABLE] = ACTIONS(6821), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6821), + [anon_sym_API_DEPRECATED] = ACTIONS(6821), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6821), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6821), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6821), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6821), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6821), + [anon_sym___deprecated_msg] = ACTIONS(6821), + [anon_sym___deprecated_enum_msg] = ACTIONS(6821), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6821), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6821), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6821), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6821), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6821), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6821), + }, + [3072] = { + [anon_sym_COMMA] = ACTIONS(6855), + [anon_sym_RPAREN] = ACTIONS(6855), + [anon_sym_LPAREN2] = ACTIONS(6855), + [anon_sym_SEMI] = ACTIONS(6855), + [anon_sym___extension__] = ACTIONS(6855), + [anon_sym_extern] = ACTIONS(6855), + [anon_sym___attribute__] = ACTIONS(6855), + [anon_sym___attribute] = ACTIONS(6853), + [anon_sym_noreturn] = ACTIONS(6855), + [anon_sym_LBRACK] = ACTIONS(6855), + [anon_sym___declspec] = ACTIONS(6855), + [anon_sym_LBRACE] = ACTIONS(6855), + [anon_sym_static] = ACTIONS(6855), + [anon_sym_EQ] = ACTIONS(6855), + [anon_sym_ATautoreleasepool] = ACTIONS(6855), + [anon_sym_auto] = ACTIONS(6855), + [anon_sym_register] = ACTIONS(6855), + [anon_sym_inline] = ACTIONS(6855), + [anon_sym___inline] = ACTIONS(6853), + [anon_sym___inline__] = ACTIONS(6855), + [anon_sym___forceinline] = ACTIONS(6855), + [anon_sym_thread_local] = ACTIONS(6855), + [anon_sym___thread] = ACTIONS(6855), + [anon_sym_CG_EXTERN] = ACTIONS(6855), + [anon_sym_CG_INLINE] = ACTIONS(6855), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6855), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6855), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6855), + [anon_sym_IBOutlet] = ACTIONS(6855), + [anon_sym_IBInspectable] = ACTIONS(6855), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6855), + [anon_sym_NS_INLINE] = ACTIONS(6855), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6855), + [anon_sym_OBJC_EXPORT] = ACTIONS(6855), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6855), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6855), + [anon_sym_const] = ACTIONS(6853), + [anon_sym_constexpr] = ACTIONS(6855), + [anon_sym_volatile] = ACTIONS(6855), + [anon_sym_restrict] = ACTIONS(6855), + [anon_sym___restrict__] = ACTIONS(6855), + [anon_sym__Atomic] = ACTIONS(6855), + [anon_sym__Noreturn] = ACTIONS(6855), + [anon_sym__Nonnull] = ACTIONS(6855), + [anon_sym_nullable] = ACTIONS(6855), + [anon_sym__Complex] = ACTIONS(6855), + [anon_sym__Nullable] = ACTIONS(6853), + [anon_sym__Nullable_result] = ACTIONS(6855), + [anon_sym__Null_unspecified] = ACTIONS(6855), + [anon_sym___autoreleasing] = ACTIONS(6855), + [anon_sym___block] = ACTIONS(6855), + [anon_sym___bridge] = ACTIONS(6853), + [anon_sym___bridge_retained] = ACTIONS(6855), + [anon_sym___bridge_transfer] = ACTIONS(6855), + [anon_sym___complex] = ACTIONS(6855), + [anon_sym___const] = ACTIONS(6855), + [anon_sym___imag] = ACTIONS(6855), + [anon_sym___kindof] = ACTIONS(6855), + [anon_sym___nonnull] = ACTIONS(6855), + [anon_sym___nullable] = ACTIONS(6855), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6855), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6855), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6855), + [anon_sym___real] = ACTIONS(6855), + [anon_sym___strong] = ACTIONS(6855), + [anon_sym___unsafe_unretained] = ACTIONS(6855), + [anon_sym___unused] = ACTIONS(6855), + [anon_sym___weak] = ACTIONS(6855), + [anon_sym_alignas] = ACTIONS(6855), + [anon_sym__Alignas] = ACTIONS(6855), + [anon_sym_COLON] = ACTIONS(6855), + [anon_sym_in] = ACTIONS(6853), + [anon_sym_asm] = ACTIONS(6855), + [anon_sym___asm__] = ACTIONS(6855), + [anon_sym___asm] = ACTIONS(6853), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6855), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6855), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6855), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6855), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6855), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6855), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6855), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6855), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6855), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6855), + [anon_sym_NS_AVAILABLE] = ACTIONS(6853), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6855), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6855), + [anon_sym_API_AVAILABLE] = ACTIONS(6855), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6855), + [anon_sym_API_DEPRECATED] = ACTIONS(6855), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6855), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6855), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6855), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6855), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6855), + [anon_sym___deprecated_msg] = ACTIONS(6855), + [anon_sym___deprecated_enum_msg] = ACTIONS(6855), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6855), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6855), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6855), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6855), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6855), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6855), + }, + [3073] = { + [sym__declaration_modifiers] = STATE(5894), + [sym_attribute_specifier] = STATE(5894), + [sym_attribute_declaration] = STATE(5894), + [sym_ms_declspec_modifier] = STATE(5894), + [sym_storage_class_specifier] = STATE(5894), + [sym_type_qualifier] = STATE(5894), + [sym_alignas_qualifier] = STATE(2368), + [sym_parameter_list] = STATE(3030), + [sym_availability_attribute_specifier] = STATE(5894), + [anon_sym_COMMA] = ACTIONS(7727), + [anon_sym_RPAREN] = ACTIONS(7727), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6910), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3074] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_LPAREN2] = ACTIONS(7729), + [anon_sym_STAR] = ACTIONS(5932), + [anon_sym_CARET] = ACTIONS(5932), + [anon_sym_LT] = ACTIONS(7168), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(5932), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [3075] = { + [sym__declaration_modifiers] = STATE(5122), + [sym_attribute_specifier] = STATE(5122), + [sym_attribute_declaration] = STATE(5122), + [sym_ms_declspec_modifier] = STATE(5122), + [sym_storage_class_specifier] = STATE(5122), + [sym_type_qualifier] = STATE(5122), + [sym_alignas_qualifier] = STATE(5101), + [sym_availability_attribute_specifier] = STATE(5122), + [sym_identifier] = ACTIONS(7732), + [anon_sym___extension__] = ACTIONS(7582), + [anon_sym_extern] = ACTIONS(7584), + [anon_sym___attribute__] = ACTIONS(7586), + [anon_sym___attribute] = ACTIONS(7586), + [anon_sym_noreturn] = ACTIONS(7582), + [anon_sym_LBRACK] = ACTIONS(7588), + [anon_sym___declspec] = ACTIONS(7590), + [anon_sym_static] = ACTIONS(7584), + [anon_sym_auto] = ACTIONS(7584), + [anon_sym_register] = ACTIONS(7584), + [anon_sym_inline] = ACTIONS(7584), + [anon_sym___inline] = ACTIONS(7584), + [anon_sym___inline__] = ACTIONS(7584), + [anon_sym___forceinline] = ACTIONS(7584), + [anon_sym_thread_local] = ACTIONS(7584), + [anon_sym___thread] = ACTIONS(7584), + [anon_sym_CG_EXTERN] = ACTIONS(7584), + [anon_sym_CG_INLINE] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7584), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7584), + [anon_sym_IBOutlet] = ACTIONS(7584), + [anon_sym_IBInspectable] = ACTIONS(7584), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7584), + [anon_sym_NS_INLINE] = ACTIONS(7584), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7584), + [anon_sym_OBJC_EXPORT] = ACTIONS(7584), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7584), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7713), + [anon_sym_constexpr] = ACTIONS(7582), + [anon_sym_volatile] = ACTIONS(7582), + [anon_sym_restrict] = ACTIONS(7582), + [anon_sym___restrict__] = ACTIONS(7582), + [anon_sym__Atomic] = ACTIONS(7582), + [anon_sym__Noreturn] = ACTIONS(7582), + [anon_sym__Nonnull] = ACTIONS(7582), + [anon_sym_nullable] = ACTIONS(7582), + [anon_sym__Complex] = ACTIONS(7582), + [anon_sym__Nullable] = ACTIONS(7582), + [anon_sym__Nullable_result] = ACTIONS(7582), + [anon_sym__Null_unspecified] = ACTIONS(7582), + [anon_sym___autoreleasing] = ACTIONS(7582), + [anon_sym___block] = ACTIONS(7582), + [anon_sym___bridge] = ACTIONS(7582), + [anon_sym___bridge_retained] = ACTIONS(7582), + [anon_sym___bridge_transfer] = ACTIONS(7582), + [anon_sym___complex] = ACTIONS(7582), + [anon_sym___const] = ACTIONS(7582), + [anon_sym___imag] = ACTIONS(7582), + [anon_sym___kindof] = ACTIONS(7582), + [anon_sym___nonnull] = ACTIONS(7582), + [anon_sym___nullable] = ACTIONS(7582), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7582), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7582), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7582), + [anon_sym___real] = ACTIONS(7582), + [anon_sym___strong] = ACTIONS(7582), + [anon_sym___unsafe_unretained] = ACTIONS(7582), + [anon_sym___unused] = ACTIONS(7582), + [anon_sym___weak] = ACTIONS(7582), + [anon_sym_alignas] = ACTIONS(7594), + [anon_sym__Alignas] = ACTIONS(7594), + [anon_sym_struct] = ACTIONS(7715), + [anon_sym_in] = ACTIONS(7715), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7598), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7598), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7598), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7598), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7598), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE] = ACTIONS(7600), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_API_AVAILABLE] = ACTIONS(7600), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_API_DEPRECATED] = ACTIONS(7600), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7600), + [anon_sym___deprecated_msg] = ACTIONS(7600), + [anon_sym___deprecated_enum_msg] = ACTIONS(7600), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7600), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7600), + [anon_sym_id] = ACTIONS(7715), + }, + [3076] = { + [anon_sym_COMMA] = ACTIONS(5926), + [anon_sym_RPAREN] = ACTIONS(5926), + [anon_sym_LPAREN2] = ACTIONS(5926), + [anon_sym_SEMI] = ACTIONS(5926), + [anon_sym___extension__] = ACTIONS(5926), + [anon_sym_extern] = ACTIONS(5926), + [anon_sym___attribute__] = ACTIONS(5926), + [anon_sym___attribute] = ACTIONS(5939), + [anon_sym_noreturn] = ACTIONS(5926), + [anon_sym_LBRACK] = ACTIONS(5926), + [anon_sym___declspec] = ACTIONS(5926), + [anon_sym_LBRACE] = ACTIONS(5926), + [anon_sym_static] = ACTIONS(5926), + [anon_sym_EQ] = ACTIONS(5926), + [anon_sym_ATautoreleasepool] = ACTIONS(5926), + [anon_sym_auto] = ACTIONS(5926), + [anon_sym_register] = ACTIONS(5926), + [anon_sym_inline] = ACTIONS(5926), + [anon_sym___inline] = ACTIONS(5939), + [anon_sym___inline__] = ACTIONS(5926), + [anon_sym___forceinline] = ACTIONS(5926), + [anon_sym_thread_local] = ACTIONS(5926), + [anon_sym___thread] = ACTIONS(5926), + [anon_sym_CG_EXTERN] = ACTIONS(5926), + [anon_sym_CG_INLINE] = ACTIONS(5926), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5926), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5926), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5926), + [anon_sym_IBOutlet] = ACTIONS(5926), + [anon_sym_IBInspectable] = ACTIONS(5926), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5926), + [anon_sym_NS_INLINE] = ACTIONS(5926), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5926), + [anon_sym_OBJC_EXPORT] = ACTIONS(5926), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5926), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5926), + [anon_sym_const] = ACTIONS(5939), + [anon_sym_constexpr] = ACTIONS(5926), + [anon_sym_volatile] = ACTIONS(5926), + [anon_sym_restrict] = ACTIONS(5926), + [anon_sym___restrict__] = ACTIONS(5926), + [anon_sym__Atomic] = ACTIONS(5926), + [anon_sym__Noreturn] = ACTIONS(5926), + [anon_sym__Nonnull] = ACTIONS(5926), + [anon_sym_nullable] = ACTIONS(5926), + [anon_sym__Complex] = ACTIONS(5926), + [anon_sym__Nullable] = ACTIONS(5939), + [anon_sym__Nullable_result] = ACTIONS(5926), + [anon_sym__Null_unspecified] = ACTIONS(5926), + [anon_sym___autoreleasing] = ACTIONS(5926), + [anon_sym___block] = ACTIONS(5926), + [anon_sym___bridge] = ACTIONS(5939), + [anon_sym___bridge_retained] = ACTIONS(5926), + [anon_sym___bridge_transfer] = ACTIONS(5926), + [anon_sym___complex] = ACTIONS(5926), + [anon_sym___const] = ACTIONS(5926), + [anon_sym___imag] = ACTIONS(5926), + [anon_sym___kindof] = ACTIONS(5926), + [anon_sym___nonnull] = ACTIONS(5926), + [anon_sym___nullable] = ACTIONS(5926), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5926), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5926), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5926), + [anon_sym___real] = ACTIONS(5926), + [anon_sym___strong] = ACTIONS(5926), + [anon_sym___unsafe_unretained] = ACTIONS(5926), + [anon_sym___unused] = ACTIONS(5926), + [anon_sym___weak] = ACTIONS(5926), + [anon_sym_alignas] = ACTIONS(5926), + [anon_sym__Alignas] = ACTIONS(5926), + [anon_sym_COLON] = ACTIONS(5926), + [anon_sym_in] = ACTIONS(5939), + [anon_sym_asm] = ACTIONS(5926), + [anon_sym___asm__] = ACTIONS(5926), + [anon_sym___asm] = ACTIONS(5939), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5926), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5926), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5926), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5926), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5926), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5926), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5926), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5926), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5926), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5926), + [anon_sym_NS_AVAILABLE] = ACTIONS(5939), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5926), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5926), + [anon_sym_API_AVAILABLE] = ACTIONS(5926), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5926), + [anon_sym_API_DEPRECATED] = ACTIONS(5926), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5926), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5926), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5926), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5926), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5926), + [anon_sym___deprecated_msg] = ACTIONS(5926), + [anon_sym___deprecated_enum_msg] = ACTIONS(5926), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5926), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5926), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5926), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5926), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5926), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5926), + }, + [3077] = { + [sym__declaration_modifiers] = STATE(5122), + [sym_attribute_specifier] = STATE(5122), + [sym_attribute_declaration] = STATE(5122), + [sym_ms_declspec_modifier] = STATE(5122), + [sym_storage_class_specifier] = STATE(5122), + [sym_type_qualifier] = STATE(5122), + [sym_alignas_qualifier] = STATE(5101), + [sym_availability_attribute_specifier] = STATE(5122), + [sym_identifier] = ACTIONS(7734), + [anon_sym___extension__] = ACTIONS(7582), + [anon_sym_extern] = ACTIONS(7584), + [anon_sym___attribute__] = ACTIONS(7586), + [anon_sym___attribute] = ACTIONS(7586), + [anon_sym_noreturn] = ACTIONS(7582), + [anon_sym_LBRACK] = ACTIONS(7588), + [anon_sym___declspec] = ACTIONS(7590), + [anon_sym_static] = ACTIONS(7584), + [anon_sym_auto] = ACTIONS(7584), + [anon_sym_register] = ACTIONS(7584), + [anon_sym_inline] = ACTIONS(7584), + [anon_sym___inline] = ACTIONS(7584), + [anon_sym___inline__] = ACTIONS(7584), + [anon_sym___forceinline] = ACTIONS(7584), + [anon_sym_thread_local] = ACTIONS(7584), + [anon_sym___thread] = ACTIONS(7584), + [anon_sym_CG_EXTERN] = ACTIONS(7584), + [anon_sym_CG_INLINE] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7584), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7584), + [anon_sym_IBOutlet] = ACTIONS(7584), + [anon_sym_IBInspectable] = ACTIONS(7584), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7584), + [anon_sym_NS_INLINE] = ACTIONS(7584), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7584), + [anon_sym_OBJC_EXPORT] = ACTIONS(7584), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7584), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7736), + [anon_sym_constexpr] = ACTIONS(7582), + [anon_sym_volatile] = ACTIONS(7582), + [anon_sym_restrict] = ACTIONS(7582), + [anon_sym___restrict__] = ACTIONS(7582), + [anon_sym__Atomic] = ACTIONS(7582), + [anon_sym__Noreturn] = ACTIONS(7582), + [anon_sym__Nonnull] = ACTIONS(7582), + [anon_sym_nullable] = ACTIONS(7582), + [anon_sym__Complex] = ACTIONS(7582), + [anon_sym__Nullable] = ACTIONS(7582), + [anon_sym__Nullable_result] = ACTIONS(7582), + [anon_sym__Null_unspecified] = ACTIONS(7582), + [anon_sym___autoreleasing] = ACTIONS(7582), + [anon_sym___block] = ACTIONS(7582), + [anon_sym___bridge] = ACTIONS(7582), + [anon_sym___bridge_retained] = ACTIONS(7582), + [anon_sym___bridge_transfer] = ACTIONS(7582), + [anon_sym___complex] = ACTIONS(7582), + [anon_sym___const] = ACTIONS(7582), + [anon_sym___imag] = ACTIONS(7582), + [anon_sym___kindof] = ACTIONS(7582), + [anon_sym___nonnull] = ACTIONS(7582), + [anon_sym___nullable] = ACTIONS(7582), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7582), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7582), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7582), + [anon_sym___real] = ACTIONS(7582), + [anon_sym___strong] = ACTIONS(7582), + [anon_sym___unsafe_unretained] = ACTIONS(7582), + [anon_sym___unused] = ACTIONS(7582), + [anon_sym___weak] = ACTIONS(7582), + [anon_sym_alignas] = ACTIONS(7594), + [anon_sym__Alignas] = ACTIONS(7594), + [anon_sym_struct] = ACTIONS(7715), + [anon_sym_in] = ACTIONS(7715), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7598), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7598), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7598), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7598), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7598), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE] = ACTIONS(7600), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_API_AVAILABLE] = ACTIONS(7600), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_API_DEPRECATED] = ACTIONS(7600), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7600), + [anon_sym___deprecated_msg] = ACTIONS(7600), + [anon_sym___deprecated_enum_msg] = ACTIONS(7600), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7600), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7600), + [anon_sym_id] = ACTIONS(7715), + }, + [3078] = { + [anon_sym_COMMA] = ACTIONS(6728), + [anon_sym_RPAREN] = ACTIONS(6728), + [anon_sym_LPAREN2] = ACTIONS(6728), + [anon_sym_SEMI] = ACTIONS(6728), + [anon_sym___extension__] = ACTIONS(6728), + [anon_sym_extern] = ACTIONS(6728), + [anon_sym___attribute__] = ACTIONS(6728), + [anon_sym___attribute] = ACTIONS(6726), + [anon_sym_noreturn] = ACTIONS(6728), + [anon_sym_LBRACK] = ACTIONS(6728), + [anon_sym___declspec] = ACTIONS(6728), + [anon_sym_LBRACE] = ACTIONS(6728), + [anon_sym_static] = ACTIONS(6728), + [anon_sym_EQ] = ACTIONS(6728), + [anon_sym_ATautoreleasepool] = ACTIONS(6728), + [anon_sym_auto] = ACTIONS(6728), + [anon_sym_register] = ACTIONS(6728), + [anon_sym_inline] = ACTIONS(6728), + [anon_sym___inline] = ACTIONS(6726), + [anon_sym___inline__] = ACTIONS(6728), + [anon_sym___forceinline] = ACTIONS(6728), + [anon_sym_thread_local] = ACTIONS(6728), + [anon_sym___thread] = ACTIONS(6728), + [anon_sym_CG_EXTERN] = ACTIONS(6728), + [anon_sym_CG_INLINE] = ACTIONS(6728), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6728), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6728), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6728), + [anon_sym_IBOutlet] = ACTIONS(6728), + [anon_sym_IBInspectable] = ACTIONS(6728), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6728), + [anon_sym_NS_INLINE] = ACTIONS(6728), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6728), + [anon_sym_OBJC_EXPORT] = ACTIONS(6728), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6728), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6728), + [anon_sym_const] = ACTIONS(6726), + [anon_sym_constexpr] = ACTIONS(6728), + [anon_sym_volatile] = ACTIONS(6728), + [anon_sym_restrict] = ACTIONS(6728), + [anon_sym___restrict__] = ACTIONS(6728), + [anon_sym__Atomic] = ACTIONS(6728), + [anon_sym__Noreturn] = ACTIONS(6728), + [anon_sym__Nonnull] = ACTIONS(6728), + [anon_sym_nullable] = ACTIONS(6728), + [anon_sym__Complex] = ACTIONS(6728), + [anon_sym__Nullable] = ACTIONS(6726), + [anon_sym__Nullable_result] = ACTIONS(6728), + [anon_sym__Null_unspecified] = ACTIONS(6728), + [anon_sym___autoreleasing] = ACTIONS(6728), + [anon_sym___block] = ACTIONS(6728), + [anon_sym___bridge] = ACTIONS(6726), + [anon_sym___bridge_retained] = ACTIONS(6728), + [anon_sym___bridge_transfer] = ACTIONS(6728), + [anon_sym___complex] = ACTIONS(6728), + [anon_sym___const] = ACTIONS(6728), + [anon_sym___imag] = ACTIONS(6728), + [anon_sym___kindof] = ACTIONS(6728), + [anon_sym___nonnull] = ACTIONS(6728), + [anon_sym___nullable] = ACTIONS(6728), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6728), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6728), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6728), + [anon_sym___real] = ACTIONS(6728), + [anon_sym___strong] = ACTIONS(6728), + [anon_sym___unsafe_unretained] = ACTIONS(6728), + [anon_sym___unused] = ACTIONS(6728), + [anon_sym___weak] = ACTIONS(6728), + [anon_sym_alignas] = ACTIONS(6728), + [anon_sym__Alignas] = ACTIONS(6728), + [anon_sym_COLON] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(6726), + [anon_sym_asm] = ACTIONS(6728), + [anon_sym___asm__] = ACTIONS(6728), + [anon_sym___asm] = ACTIONS(6726), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6728), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6728), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6728), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6728), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6728), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6728), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6728), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6728), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6728), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6728), + [anon_sym_NS_AVAILABLE] = ACTIONS(6726), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6728), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6728), + [anon_sym_API_AVAILABLE] = ACTIONS(6728), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6728), + [anon_sym_API_DEPRECATED] = ACTIONS(6728), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6728), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6728), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6728), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6728), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6728), + [anon_sym___deprecated_msg] = ACTIONS(6728), + [anon_sym___deprecated_enum_msg] = ACTIONS(6728), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6728), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6728), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6728), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6728), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6728), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6728), + }, + [3079] = { + [anon_sym_COMMA] = ACTIONS(6879), + [anon_sym_RPAREN] = ACTIONS(6879), + [anon_sym_LPAREN2] = ACTIONS(6879), + [anon_sym_SEMI] = ACTIONS(6879), + [anon_sym___extension__] = ACTIONS(6879), + [anon_sym_extern] = ACTIONS(6879), + [anon_sym___attribute__] = ACTIONS(6879), + [anon_sym___attribute] = ACTIONS(6877), + [anon_sym_noreturn] = ACTIONS(6879), + [anon_sym_LBRACK] = ACTIONS(6879), + [anon_sym___declspec] = ACTIONS(6879), + [anon_sym_LBRACE] = ACTIONS(6879), + [anon_sym_static] = ACTIONS(6879), + [anon_sym_EQ] = ACTIONS(6879), + [anon_sym_ATautoreleasepool] = ACTIONS(6879), + [anon_sym_auto] = ACTIONS(6879), + [anon_sym_register] = ACTIONS(6879), + [anon_sym_inline] = ACTIONS(6879), + [anon_sym___inline] = ACTIONS(6877), + [anon_sym___inline__] = ACTIONS(6879), + [anon_sym___forceinline] = ACTIONS(6879), + [anon_sym_thread_local] = ACTIONS(6879), + [anon_sym___thread] = ACTIONS(6879), + [anon_sym_CG_EXTERN] = ACTIONS(6879), + [anon_sym_CG_INLINE] = ACTIONS(6879), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6879), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6879), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6879), + [anon_sym_IBOutlet] = ACTIONS(6879), + [anon_sym_IBInspectable] = ACTIONS(6879), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6879), + [anon_sym_NS_INLINE] = ACTIONS(6879), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6879), + [anon_sym_OBJC_EXPORT] = ACTIONS(6879), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6879), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6879), + [anon_sym_const] = ACTIONS(6877), + [anon_sym_constexpr] = ACTIONS(6879), + [anon_sym_volatile] = ACTIONS(6879), + [anon_sym_restrict] = ACTIONS(6879), + [anon_sym___restrict__] = ACTIONS(6879), + [anon_sym__Atomic] = ACTIONS(6879), + [anon_sym__Noreturn] = ACTIONS(6879), + [anon_sym__Nonnull] = ACTIONS(6879), + [anon_sym_nullable] = ACTIONS(6879), + [anon_sym__Complex] = ACTIONS(6879), + [anon_sym__Nullable] = ACTIONS(6877), + [anon_sym__Nullable_result] = ACTIONS(6879), + [anon_sym__Null_unspecified] = ACTIONS(6879), + [anon_sym___autoreleasing] = ACTIONS(6879), + [anon_sym___block] = ACTIONS(6879), + [anon_sym___bridge] = ACTIONS(6877), + [anon_sym___bridge_retained] = ACTIONS(6879), + [anon_sym___bridge_transfer] = ACTIONS(6879), + [anon_sym___complex] = ACTIONS(6879), + [anon_sym___const] = ACTIONS(6879), + [anon_sym___imag] = ACTIONS(6879), + [anon_sym___kindof] = ACTIONS(6879), + [anon_sym___nonnull] = ACTIONS(6879), + [anon_sym___nullable] = ACTIONS(6879), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6879), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6879), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6879), + [anon_sym___real] = ACTIONS(6879), + [anon_sym___strong] = ACTIONS(6879), + [anon_sym___unsafe_unretained] = ACTIONS(6879), + [anon_sym___unused] = ACTIONS(6879), + [anon_sym___weak] = ACTIONS(6879), + [anon_sym_alignas] = ACTIONS(6879), + [anon_sym__Alignas] = ACTIONS(6879), + [anon_sym_COLON] = ACTIONS(6879), + [anon_sym_in] = ACTIONS(6877), + [anon_sym_asm] = ACTIONS(6879), + [anon_sym___asm__] = ACTIONS(6879), + [anon_sym___asm] = ACTIONS(6877), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6879), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6879), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6879), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6879), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6879), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6879), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6879), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6879), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6879), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6879), + [anon_sym_NS_AVAILABLE] = ACTIONS(6877), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6879), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6879), + [anon_sym_API_AVAILABLE] = ACTIONS(6879), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6879), + [anon_sym_API_DEPRECATED] = ACTIONS(6879), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6879), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6879), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6879), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6879), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6879), + [anon_sym___deprecated_msg] = ACTIONS(6879), + [anon_sym___deprecated_enum_msg] = ACTIONS(6879), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6879), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6879), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6879), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6879), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6879), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6879), + }, + [3080] = { + [sym_parameter_list] = STATE(3030), + [anon_sym_COMMA] = ACTIONS(6841), + [anon_sym_RPAREN] = ACTIONS(6841), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(6841), + [anon_sym_extern] = ACTIONS(6841), + [anon_sym___attribute__] = ACTIONS(6841), + [anon_sym___attribute] = ACTIONS(6839), + [anon_sym_noreturn] = ACTIONS(6841), + [anon_sym_LBRACK] = ACTIONS(7709), + [anon_sym___declspec] = ACTIONS(6841), + [anon_sym_LBRACE] = ACTIONS(6841), + [anon_sym_static] = ACTIONS(6841), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_ATautoreleasepool] = ACTIONS(6841), + [anon_sym_auto] = ACTIONS(6841), + [anon_sym_register] = ACTIONS(6841), + [anon_sym_inline] = ACTIONS(6841), + [anon_sym___inline] = ACTIONS(6839), + [anon_sym___inline__] = ACTIONS(6841), + [anon_sym___forceinline] = ACTIONS(6841), + [anon_sym_thread_local] = ACTIONS(6841), + [anon_sym___thread] = ACTIONS(6841), + [anon_sym_CG_EXTERN] = ACTIONS(6841), + [anon_sym_CG_INLINE] = ACTIONS(6841), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6841), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6841), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6841), + [anon_sym_IBOutlet] = ACTIONS(6841), + [anon_sym_IBInspectable] = ACTIONS(6841), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6841), + [anon_sym_NS_INLINE] = ACTIONS(6841), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6841), + [anon_sym_OBJC_EXPORT] = ACTIONS(6841), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6841), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(6839), + [anon_sym_constexpr] = ACTIONS(6841), + [anon_sym_volatile] = ACTIONS(6841), + [anon_sym_restrict] = ACTIONS(6841), + [anon_sym___restrict__] = ACTIONS(6841), + [anon_sym__Atomic] = ACTIONS(6841), + [anon_sym__Noreturn] = ACTIONS(6841), + [anon_sym__Nonnull] = ACTIONS(6841), + [anon_sym_nullable] = ACTIONS(6841), + [anon_sym__Complex] = ACTIONS(6841), + [anon_sym__Nullable] = ACTIONS(6839), + [anon_sym__Nullable_result] = ACTIONS(6841), + [anon_sym__Null_unspecified] = ACTIONS(6841), + [anon_sym___autoreleasing] = ACTIONS(6841), + [anon_sym___block] = ACTIONS(6841), + [anon_sym___bridge] = ACTIONS(6839), + [anon_sym___bridge_retained] = ACTIONS(6841), + [anon_sym___bridge_transfer] = ACTIONS(6841), + [anon_sym___complex] = ACTIONS(6841), + [anon_sym___const] = ACTIONS(6841), + [anon_sym___imag] = ACTIONS(6841), + [anon_sym___kindof] = ACTIONS(6841), + [anon_sym___nonnull] = ACTIONS(6841), + [anon_sym___nullable] = ACTIONS(6841), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6841), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6841), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6841), + [anon_sym___real] = ACTIONS(6841), + [anon_sym___strong] = ACTIONS(6841), + [anon_sym___unsafe_unretained] = ACTIONS(6841), + [anon_sym___unused] = ACTIONS(6841), + [anon_sym___weak] = ACTIONS(6841), + [anon_sym_alignas] = ACTIONS(6841), + [anon_sym__Alignas] = ACTIONS(6841), + [anon_sym_COLON] = ACTIONS(6841), + [anon_sym_asm] = ACTIONS(6841), + [anon_sym___asm__] = ACTIONS(6841), + [anon_sym___asm] = ACTIONS(6839), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6841), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6841), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6841), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6841), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6841), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6841), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6841), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6841), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6841), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6841), + [anon_sym_NS_AVAILABLE] = ACTIONS(6839), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6841), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6841), + [anon_sym_API_AVAILABLE] = ACTIONS(6841), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6841), + [anon_sym_API_DEPRECATED] = ACTIONS(6841), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6841), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6841), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6841), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6841), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6841), + [anon_sym___deprecated_msg] = ACTIONS(6841), + [anon_sym___deprecated_enum_msg] = ACTIONS(6841), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6841), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6841), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6841), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6841), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6841), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6841), + }, + [3081] = { + [sym_parameter_list] = STATE(3030), + [anon_sym_COMMA] = ACTIONS(6825), + [anon_sym_RPAREN] = ACTIONS(6825), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6825), + [anon_sym___extension__] = ACTIONS(6825), + [anon_sym_extern] = ACTIONS(6825), + [anon_sym___attribute__] = ACTIONS(6825), + [anon_sym___attribute] = ACTIONS(6823), + [anon_sym_noreturn] = ACTIONS(6825), + [anon_sym_LBRACK] = ACTIONS(7709), + [anon_sym___declspec] = ACTIONS(6825), + [anon_sym_LBRACE] = ACTIONS(6825), + [anon_sym_static] = ACTIONS(6825), + [anon_sym_EQ] = ACTIONS(6825), + [anon_sym_ATautoreleasepool] = ACTIONS(6825), + [anon_sym_auto] = ACTIONS(6825), + [anon_sym_register] = ACTIONS(6825), + [anon_sym_inline] = ACTIONS(6825), + [anon_sym___inline] = ACTIONS(6823), + [anon_sym___inline__] = ACTIONS(6825), + [anon_sym___forceinline] = ACTIONS(6825), + [anon_sym_thread_local] = ACTIONS(6825), + [anon_sym___thread] = ACTIONS(6825), + [anon_sym_CG_EXTERN] = ACTIONS(6825), + [anon_sym_CG_INLINE] = ACTIONS(6825), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6825), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6825), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6825), + [anon_sym_IBOutlet] = ACTIONS(6825), + [anon_sym_IBInspectable] = ACTIONS(6825), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6825), + [anon_sym_NS_INLINE] = ACTIONS(6825), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6825), + [anon_sym_OBJC_EXPORT] = ACTIONS(6825), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6825), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6825), + [anon_sym_const] = ACTIONS(6823), + [anon_sym_constexpr] = ACTIONS(6825), + [anon_sym_volatile] = ACTIONS(6825), + [anon_sym_restrict] = ACTIONS(6825), + [anon_sym___restrict__] = ACTIONS(6825), + [anon_sym__Atomic] = ACTIONS(6825), + [anon_sym__Noreturn] = ACTIONS(6825), + [anon_sym__Nonnull] = ACTIONS(6825), + [anon_sym_nullable] = ACTIONS(6825), + [anon_sym__Complex] = ACTIONS(6825), + [anon_sym__Nullable] = ACTIONS(6823), + [anon_sym__Nullable_result] = ACTIONS(6825), + [anon_sym__Null_unspecified] = ACTIONS(6825), + [anon_sym___autoreleasing] = ACTIONS(6825), + [anon_sym___block] = ACTIONS(6825), + [anon_sym___bridge] = ACTIONS(6823), + [anon_sym___bridge_retained] = ACTIONS(6825), + [anon_sym___bridge_transfer] = ACTIONS(6825), + [anon_sym___complex] = ACTIONS(6825), + [anon_sym___const] = ACTIONS(6825), + [anon_sym___imag] = ACTIONS(6825), + [anon_sym___kindof] = ACTIONS(6825), + [anon_sym___nonnull] = ACTIONS(6825), + [anon_sym___nullable] = ACTIONS(6825), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6825), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6825), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6825), + [anon_sym___real] = ACTIONS(6825), + [anon_sym___strong] = ACTIONS(6825), + [anon_sym___unsafe_unretained] = ACTIONS(6825), + [anon_sym___unused] = ACTIONS(6825), + [anon_sym___weak] = ACTIONS(6825), + [anon_sym_alignas] = ACTIONS(6825), + [anon_sym__Alignas] = ACTIONS(6825), + [anon_sym_COLON] = ACTIONS(6825), + [anon_sym_asm] = ACTIONS(6825), + [anon_sym___asm__] = ACTIONS(6825), + [anon_sym___asm] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6825), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6825), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6825), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6825), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6825), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6825), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6825), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6825), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6825), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6825), + [anon_sym_NS_AVAILABLE] = ACTIONS(6823), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6825), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6825), + [anon_sym_API_AVAILABLE] = ACTIONS(6825), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6825), + [anon_sym_API_DEPRECATED] = ACTIONS(6825), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6825), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6825), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6825), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6825), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6825), + [anon_sym___deprecated_msg] = ACTIONS(6825), + [anon_sym___deprecated_enum_msg] = ACTIONS(6825), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6825), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6825), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6825), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6825), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6825), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6825), + }, + [3082] = { + [sym_attribute_specifier] = STATE(2946), + [sym_enumerator_list] = STATE(3194), + [sym_identifier] = ACTIONS(7700), + [anon_sym_COMMA] = ACTIONS(7702), + [anon_sym_LPAREN2] = ACTIONS(7702), + [anon_sym_STAR] = ACTIONS(7702), + [anon_sym_CARET] = ACTIONS(7702), + [anon_sym_SEMI] = ACTIONS(7702), + [anon_sym___extension__] = ACTIONS(7700), + [anon_sym_extern] = ACTIONS(7700), + [anon_sym___attribute__] = ACTIONS(7704), + [anon_sym___attribute] = ACTIONS(7704), + [anon_sym_noreturn] = ACTIONS(7700), + [anon_sym_LBRACK] = ACTIONS(7702), + [anon_sym___declspec] = ACTIONS(7700), + [anon_sym___based] = ACTIONS(7700), + [anon_sym_LBRACE] = ACTIONS(7638), + [anon_sym_static] = ACTIONS(7700), + [anon_sym_auto] = ACTIONS(7700), + [anon_sym_register] = ACTIONS(7700), + [anon_sym_inline] = ACTIONS(7700), + [anon_sym___inline] = ACTIONS(7700), + [anon_sym___inline__] = ACTIONS(7700), + [anon_sym___forceinline] = ACTIONS(7700), + [anon_sym_thread_local] = ACTIONS(7700), + [anon_sym___thread] = ACTIONS(7700), + [anon_sym_CG_EXTERN] = ACTIONS(7700), + [anon_sym_CG_INLINE] = ACTIONS(7700), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7700), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7700), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7700), + [anon_sym_IBOutlet] = ACTIONS(7700), + [anon_sym_IBInspectable] = ACTIONS(7700), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7700), + [anon_sym_NS_INLINE] = ACTIONS(7700), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7700), + [anon_sym_OBJC_EXPORT] = ACTIONS(7700), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7700), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7700), + [anon_sym_const] = ACTIONS(7700), + [anon_sym_constexpr] = ACTIONS(7700), + [anon_sym_volatile] = ACTIONS(7700), + [anon_sym_restrict] = ACTIONS(7700), + [anon_sym___restrict__] = ACTIONS(7700), + [anon_sym__Atomic] = ACTIONS(7700), + [anon_sym__Noreturn] = ACTIONS(7700), + [anon_sym__Nonnull] = ACTIONS(7700), + [anon_sym_nullable] = ACTIONS(7700), + [anon_sym__Complex] = ACTIONS(7700), + [anon_sym__Nullable] = ACTIONS(7700), + [anon_sym__Nullable_result] = ACTIONS(7700), + [anon_sym__Null_unspecified] = ACTIONS(7700), + [anon_sym___autoreleasing] = ACTIONS(7700), + [anon_sym___block] = ACTIONS(7700), + [anon_sym___bridge] = ACTIONS(7700), + [anon_sym___bridge_retained] = ACTIONS(7700), + [anon_sym___bridge_transfer] = ACTIONS(7700), + [anon_sym___complex] = ACTIONS(7700), + [anon_sym___const] = ACTIONS(7700), + [anon_sym___imag] = ACTIONS(7700), + [anon_sym___kindof] = ACTIONS(7700), + [anon_sym___nonnull] = ACTIONS(7700), + [anon_sym___nullable] = ACTIONS(7700), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7700), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7700), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7700), + [anon_sym___real] = ACTIONS(7700), + [anon_sym___strong] = ACTIONS(7700), + [anon_sym___unsafe_unretained] = ACTIONS(7700), + [anon_sym___unused] = ACTIONS(7700), + [anon_sym___weak] = ACTIONS(7700), + [anon_sym_alignas] = ACTIONS(7700), + [anon_sym__Alignas] = ACTIONS(7700), + [anon_sym_enum] = ACTIONS(7700), + [anon_sym_COLON] = ACTIONS(7738), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7700), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7700), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7700), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7700), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7700), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7700), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7700), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7700), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7700), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7700), + [anon_sym_NS_AVAILABLE] = ACTIONS(7700), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7700), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7700), + [anon_sym_API_AVAILABLE] = ACTIONS(7700), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7700), + [anon_sym_API_DEPRECATED] = ACTIONS(7700), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7700), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7700), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7700), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7700), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7700), + [anon_sym___deprecated_msg] = ACTIONS(7700), + [anon_sym___deprecated_enum_msg] = ACTIONS(7700), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7700), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7700), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7700), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7700), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7700), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7700), + }, + [3083] = { + [sym_attribute_specifier] = STATE(2963), + [sym_enumerator_list] = STATE(3109), + [sym_identifier] = ACTIONS(7717), + [anon_sym_COMMA] = ACTIONS(7719), + [anon_sym_RPAREN] = ACTIONS(7719), + [anon_sym_LPAREN2] = ACTIONS(7719), + [anon_sym_STAR] = ACTIONS(7719), + [anon_sym_CARET] = ACTIONS(7719), + [anon_sym_SEMI] = ACTIONS(7719), + [anon_sym___extension__] = ACTIONS(7717), + [anon_sym_extern] = ACTIONS(7717), + [anon_sym___attribute__] = ACTIONS(7721), + [anon_sym___attribute] = ACTIONS(7721), + [anon_sym_noreturn] = ACTIONS(7717), + [anon_sym_LBRACK] = ACTIONS(7719), + [anon_sym___declspec] = ACTIONS(7717), + [anon_sym___based] = ACTIONS(7717), + [anon_sym_LBRACE] = ACTIONS(7638), + [anon_sym_static] = ACTIONS(7717), + [anon_sym_auto] = ACTIONS(7717), + [anon_sym_register] = ACTIONS(7717), + [anon_sym_inline] = ACTIONS(7717), + [anon_sym___inline] = ACTIONS(7717), + [anon_sym___inline__] = ACTIONS(7717), + [anon_sym___forceinline] = ACTIONS(7717), + [anon_sym_thread_local] = ACTIONS(7717), + [anon_sym___thread] = ACTIONS(7717), + [anon_sym_CG_EXTERN] = ACTIONS(7717), + [anon_sym_CG_INLINE] = ACTIONS(7717), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7717), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7717), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7717), + [anon_sym_IBOutlet] = ACTIONS(7717), + [anon_sym_IBInspectable] = ACTIONS(7717), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7717), + [anon_sym_NS_INLINE] = ACTIONS(7717), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7717), + [anon_sym_OBJC_EXPORT] = ACTIONS(7717), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7717), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7717), + [anon_sym_const] = ACTIONS(7717), + [anon_sym_constexpr] = ACTIONS(7717), + [anon_sym_volatile] = ACTIONS(7717), + [anon_sym_restrict] = ACTIONS(7717), + [anon_sym___restrict__] = ACTIONS(7717), + [anon_sym__Atomic] = ACTIONS(7717), + [anon_sym__Noreturn] = ACTIONS(7717), + [anon_sym__Nonnull] = ACTIONS(7717), + [anon_sym_nullable] = ACTIONS(7717), + [anon_sym__Complex] = ACTIONS(7717), + [anon_sym__Nullable] = ACTIONS(7717), + [anon_sym__Nullable_result] = ACTIONS(7717), + [anon_sym__Null_unspecified] = ACTIONS(7717), + [anon_sym___autoreleasing] = ACTIONS(7717), + [anon_sym___block] = ACTIONS(7717), + [anon_sym___bridge] = ACTIONS(7717), + [anon_sym___bridge_retained] = ACTIONS(7717), + [anon_sym___bridge_transfer] = ACTIONS(7717), + [anon_sym___complex] = ACTIONS(7717), + [anon_sym___const] = ACTIONS(7717), + [anon_sym___imag] = ACTIONS(7717), + [anon_sym___kindof] = ACTIONS(7717), + [anon_sym___nonnull] = ACTIONS(7717), + [anon_sym___nullable] = ACTIONS(7717), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7717), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7717), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7717), + [anon_sym___real] = ACTIONS(7717), + [anon_sym___strong] = ACTIONS(7717), + [anon_sym___unsafe_unretained] = ACTIONS(7717), + [anon_sym___unused] = ACTIONS(7717), + [anon_sym___weak] = ACTIONS(7717), + [anon_sym_alignas] = ACTIONS(7717), + [anon_sym__Alignas] = ACTIONS(7717), + [anon_sym_COLON] = ACTIONS(7741), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7717), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7717), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7717), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7717), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7717), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7717), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7717), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7717), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7717), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7717), + [anon_sym_NS_AVAILABLE] = ACTIONS(7717), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7717), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7717), + [anon_sym_API_AVAILABLE] = ACTIONS(7717), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7717), + [anon_sym_API_DEPRECATED] = ACTIONS(7717), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7717), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7717), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7717), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7717), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7717), + [anon_sym___deprecated_msg] = ACTIONS(7717), + [anon_sym___deprecated_enum_msg] = ACTIONS(7717), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7717), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7717), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7717), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7717), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7717), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7717), + }, + [3084] = { + [sym__declaration_modifiers] = STATE(5122), + [sym_attribute_specifier] = STATE(5122), + [sym_attribute_declaration] = STATE(5122), + [sym_ms_declspec_modifier] = STATE(5122), + [sym_storage_class_specifier] = STATE(5122), + [sym_type_qualifier] = STATE(5122), + [sym_alignas_qualifier] = STATE(5101), + [sym_availability_attribute_specifier] = STATE(5122), + [sym_identifier] = ACTIONS(7743), + [anon_sym___extension__] = ACTIONS(7582), + [anon_sym_extern] = ACTIONS(7584), + [anon_sym___attribute__] = ACTIONS(7586), + [anon_sym___attribute] = ACTIONS(7586), + [anon_sym_noreturn] = ACTIONS(7582), + [anon_sym_LBRACK] = ACTIONS(7588), + [anon_sym___declspec] = ACTIONS(7590), + [anon_sym_static] = ACTIONS(7584), + [anon_sym_auto] = ACTIONS(7584), + [anon_sym_register] = ACTIONS(7584), + [anon_sym_inline] = ACTIONS(7584), + [anon_sym___inline] = ACTIONS(7584), + [anon_sym___inline__] = ACTIONS(7584), + [anon_sym___forceinline] = ACTIONS(7584), + [anon_sym_thread_local] = ACTIONS(7584), + [anon_sym___thread] = ACTIONS(7584), + [anon_sym_CG_EXTERN] = ACTIONS(7584), + [anon_sym_CG_INLINE] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7584), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7584), + [anon_sym_IBOutlet] = ACTIONS(7584), + [anon_sym_IBInspectable] = ACTIONS(7584), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7584), + [anon_sym_NS_INLINE] = ACTIONS(7584), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7584), + [anon_sym_OBJC_EXPORT] = ACTIONS(7584), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7584), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7736), + [anon_sym_constexpr] = ACTIONS(7582), + [anon_sym_volatile] = ACTIONS(7582), + [anon_sym_restrict] = ACTIONS(7582), + [anon_sym___restrict__] = ACTIONS(7582), + [anon_sym__Atomic] = ACTIONS(7582), + [anon_sym__Noreturn] = ACTIONS(7582), + [anon_sym__Nonnull] = ACTIONS(7582), + [anon_sym_nullable] = ACTIONS(7582), + [anon_sym__Complex] = ACTIONS(7582), + [anon_sym__Nullable] = ACTIONS(7582), + [anon_sym__Nullable_result] = ACTIONS(7582), + [anon_sym__Null_unspecified] = ACTIONS(7582), + [anon_sym___autoreleasing] = ACTIONS(7582), + [anon_sym___block] = ACTIONS(7582), + [anon_sym___bridge] = ACTIONS(7582), + [anon_sym___bridge_retained] = ACTIONS(7582), + [anon_sym___bridge_transfer] = ACTIONS(7582), + [anon_sym___complex] = ACTIONS(7582), + [anon_sym___const] = ACTIONS(7582), + [anon_sym___imag] = ACTIONS(7582), + [anon_sym___kindof] = ACTIONS(7582), + [anon_sym___nonnull] = ACTIONS(7582), + [anon_sym___nullable] = ACTIONS(7582), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7582), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7582), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7582), + [anon_sym___real] = ACTIONS(7582), + [anon_sym___strong] = ACTIONS(7582), + [anon_sym___unsafe_unretained] = ACTIONS(7582), + [anon_sym___unused] = ACTIONS(7582), + [anon_sym___weak] = ACTIONS(7582), + [anon_sym_alignas] = ACTIONS(7594), + [anon_sym__Alignas] = ACTIONS(7594), + [anon_sym_struct] = ACTIONS(7715), + [anon_sym_in] = ACTIONS(7715), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7598), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7598), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7598), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7598), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7598), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE] = ACTIONS(7600), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_API_AVAILABLE] = ACTIONS(7600), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_API_DEPRECATED] = ACTIONS(7600), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7600), + [anon_sym___deprecated_msg] = ACTIONS(7600), + [anon_sym___deprecated_enum_msg] = ACTIONS(7600), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7600), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7600), + [anon_sym_id] = ACTIONS(7715), + }, + [3085] = { + [anon_sym_COMMA] = ACTIONS(6883), + [anon_sym_RPAREN] = ACTIONS(6883), + [anon_sym_LPAREN2] = ACTIONS(6883), + [anon_sym_SEMI] = ACTIONS(6883), + [anon_sym___extension__] = ACTIONS(6883), + [anon_sym_extern] = ACTIONS(6883), + [anon_sym___attribute__] = ACTIONS(6883), + [anon_sym___attribute] = ACTIONS(6881), + [anon_sym_noreturn] = ACTIONS(6883), + [anon_sym_LBRACK] = ACTIONS(6883), + [anon_sym___declspec] = ACTIONS(6883), + [anon_sym_LBRACE] = ACTIONS(6883), + [anon_sym_static] = ACTIONS(6883), + [anon_sym_EQ] = ACTIONS(6883), + [anon_sym_ATautoreleasepool] = ACTIONS(6883), + [anon_sym_auto] = ACTIONS(6883), + [anon_sym_register] = ACTIONS(6883), + [anon_sym_inline] = ACTIONS(6883), + [anon_sym___inline] = ACTIONS(6881), + [anon_sym___inline__] = ACTIONS(6883), + [anon_sym___forceinline] = ACTIONS(6883), + [anon_sym_thread_local] = ACTIONS(6883), + [anon_sym___thread] = ACTIONS(6883), + [anon_sym_CG_EXTERN] = ACTIONS(6883), + [anon_sym_CG_INLINE] = ACTIONS(6883), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6883), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6883), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6883), + [anon_sym_IBOutlet] = ACTIONS(6883), + [anon_sym_IBInspectable] = ACTIONS(6883), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6883), + [anon_sym_NS_INLINE] = ACTIONS(6883), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6883), + [anon_sym_OBJC_EXPORT] = ACTIONS(6883), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6883), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6883), + [anon_sym_const] = ACTIONS(6881), + [anon_sym_constexpr] = ACTIONS(6883), + [anon_sym_volatile] = ACTIONS(6883), + [anon_sym_restrict] = ACTIONS(6883), + [anon_sym___restrict__] = ACTIONS(6883), + [anon_sym__Atomic] = ACTIONS(6883), + [anon_sym__Noreturn] = ACTIONS(6883), + [anon_sym__Nonnull] = ACTIONS(6883), + [anon_sym_nullable] = ACTIONS(6883), + [anon_sym__Complex] = ACTIONS(6883), + [anon_sym__Nullable] = ACTIONS(6881), + [anon_sym__Nullable_result] = ACTIONS(6883), + [anon_sym__Null_unspecified] = ACTIONS(6883), + [anon_sym___autoreleasing] = ACTIONS(6883), + [anon_sym___block] = ACTIONS(6883), + [anon_sym___bridge] = ACTIONS(6881), + [anon_sym___bridge_retained] = ACTIONS(6883), + [anon_sym___bridge_transfer] = ACTIONS(6883), + [anon_sym___complex] = ACTIONS(6883), + [anon_sym___const] = ACTIONS(6883), + [anon_sym___imag] = ACTIONS(6883), + [anon_sym___kindof] = ACTIONS(6883), + [anon_sym___nonnull] = ACTIONS(6883), + [anon_sym___nullable] = ACTIONS(6883), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6883), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6883), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6883), + [anon_sym___real] = ACTIONS(6883), + [anon_sym___strong] = ACTIONS(6883), + [anon_sym___unsafe_unretained] = ACTIONS(6883), + [anon_sym___unused] = ACTIONS(6883), + [anon_sym___weak] = ACTIONS(6883), + [anon_sym_alignas] = ACTIONS(6883), + [anon_sym__Alignas] = ACTIONS(6883), + [anon_sym_COLON] = ACTIONS(6883), + [anon_sym_in] = ACTIONS(6881), + [anon_sym_asm] = ACTIONS(6883), + [anon_sym___asm__] = ACTIONS(6883), + [anon_sym___asm] = ACTIONS(6881), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6883), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6883), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6883), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6883), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6883), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6883), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6883), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6883), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6883), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6883), + [anon_sym_NS_AVAILABLE] = ACTIONS(6881), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6883), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6883), + [anon_sym_API_AVAILABLE] = ACTIONS(6883), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6883), + [anon_sym_API_DEPRECATED] = ACTIONS(6883), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6883), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6883), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6883), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6883), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6883), + [anon_sym___deprecated_msg] = ACTIONS(6883), + [anon_sym___deprecated_enum_msg] = ACTIONS(6883), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6883), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6883), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6883), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6883), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6883), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6883), + }, + [3086] = { + [anon_sym_COMMA] = ACTIONS(6887), + [anon_sym_RPAREN] = ACTIONS(6887), + [anon_sym_LPAREN2] = ACTIONS(6887), + [anon_sym_SEMI] = ACTIONS(6887), + [anon_sym___extension__] = ACTIONS(6887), + [anon_sym_extern] = ACTIONS(6887), + [anon_sym___attribute__] = ACTIONS(6887), + [anon_sym___attribute] = ACTIONS(6885), + [anon_sym_noreturn] = ACTIONS(6887), + [anon_sym_LBRACK] = ACTIONS(6887), + [anon_sym___declspec] = ACTIONS(6887), + [anon_sym_LBRACE] = ACTIONS(6887), + [anon_sym_static] = ACTIONS(6887), + [anon_sym_EQ] = ACTIONS(6887), + [anon_sym_ATautoreleasepool] = ACTIONS(6887), + [anon_sym_auto] = ACTIONS(6887), + [anon_sym_register] = ACTIONS(6887), + [anon_sym_inline] = ACTIONS(6887), + [anon_sym___inline] = ACTIONS(6885), + [anon_sym___inline__] = ACTIONS(6887), + [anon_sym___forceinline] = ACTIONS(6887), + [anon_sym_thread_local] = ACTIONS(6887), + [anon_sym___thread] = ACTIONS(6887), + [anon_sym_CG_EXTERN] = ACTIONS(6887), + [anon_sym_CG_INLINE] = ACTIONS(6887), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6887), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6887), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6887), + [anon_sym_IBOutlet] = ACTIONS(6887), + [anon_sym_IBInspectable] = ACTIONS(6887), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6887), + [anon_sym_NS_INLINE] = ACTIONS(6887), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6887), + [anon_sym_OBJC_EXPORT] = ACTIONS(6887), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6887), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6887), + [anon_sym_const] = ACTIONS(6885), + [anon_sym_constexpr] = ACTIONS(6887), + [anon_sym_volatile] = ACTIONS(6887), + [anon_sym_restrict] = ACTIONS(6887), + [anon_sym___restrict__] = ACTIONS(6887), + [anon_sym__Atomic] = ACTIONS(6887), + [anon_sym__Noreturn] = ACTIONS(6887), + [anon_sym__Nonnull] = ACTIONS(6887), + [anon_sym_nullable] = ACTIONS(6887), + [anon_sym__Complex] = ACTIONS(6887), + [anon_sym__Nullable] = ACTIONS(6885), + [anon_sym__Nullable_result] = ACTIONS(6887), + [anon_sym__Null_unspecified] = ACTIONS(6887), + [anon_sym___autoreleasing] = ACTIONS(6887), + [anon_sym___block] = ACTIONS(6887), + [anon_sym___bridge] = ACTIONS(6885), + [anon_sym___bridge_retained] = ACTIONS(6887), + [anon_sym___bridge_transfer] = ACTIONS(6887), + [anon_sym___complex] = ACTIONS(6887), + [anon_sym___const] = ACTIONS(6887), + [anon_sym___imag] = ACTIONS(6887), + [anon_sym___kindof] = ACTIONS(6887), + [anon_sym___nonnull] = ACTIONS(6887), + [anon_sym___nullable] = ACTIONS(6887), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6887), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6887), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6887), + [anon_sym___real] = ACTIONS(6887), + [anon_sym___strong] = ACTIONS(6887), + [anon_sym___unsafe_unretained] = ACTIONS(6887), + [anon_sym___unused] = ACTIONS(6887), + [anon_sym___weak] = ACTIONS(6887), + [anon_sym_alignas] = ACTIONS(6887), + [anon_sym__Alignas] = ACTIONS(6887), + [anon_sym_COLON] = ACTIONS(6887), + [anon_sym_in] = ACTIONS(6885), + [anon_sym_asm] = ACTIONS(6887), + [anon_sym___asm__] = ACTIONS(6887), + [anon_sym___asm] = ACTIONS(6885), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6887), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6887), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6887), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6887), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6887), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6887), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6887), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6887), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6887), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6887), + [anon_sym_NS_AVAILABLE] = ACTIONS(6885), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6887), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6887), + [anon_sym_API_AVAILABLE] = ACTIONS(6887), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6887), + [anon_sym_API_DEPRECATED] = ACTIONS(6887), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6887), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6887), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6887), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6887), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6887), + [anon_sym___deprecated_msg] = ACTIONS(6887), + [anon_sym___deprecated_enum_msg] = ACTIONS(6887), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6887), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6887), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6887), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6887), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6887), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6887), + }, + [3087] = { + [sym_parameter_list] = STATE(3030), + [anon_sym_COMMA] = ACTIONS(6829), + [anon_sym_RPAREN] = ACTIONS(6829), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6829), + [anon_sym___extension__] = ACTIONS(6829), + [anon_sym_extern] = ACTIONS(6829), + [anon_sym___attribute__] = ACTIONS(6829), + [anon_sym___attribute] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6829), + [anon_sym_LBRACK] = ACTIONS(7709), + [anon_sym___declspec] = ACTIONS(6829), + [anon_sym_LBRACE] = ACTIONS(6829), + [anon_sym_static] = ACTIONS(6829), + [anon_sym_EQ] = ACTIONS(6829), + [anon_sym_ATautoreleasepool] = ACTIONS(6829), + [anon_sym_auto] = ACTIONS(6829), + [anon_sym_register] = ACTIONS(6829), + [anon_sym_inline] = ACTIONS(6829), + [anon_sym___inline] = ACTIONS(6827), + [anon_sym___inline__] = ACTIONS(6829), + [anon_sym___forceinline] = ACTIONS(6829), + [anon_sym_thread_local] = ACTIONS(6829), + [anon_sym___thread] = ACTIONS(6829), + [anon_sym_CG_EXTERN] = ACTIONS(6829), + [anon_sym_CG_INLINE] = ACTIONS(6829), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6829), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6829), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6829), + [anon_sym_IBOutlet] = ACTIONS(6829), + [anon_sym_IBInspectable] = ACTIONS(6829), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6829), + [anon_sym_NS_INLINE] = ACTIONS(6829), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6829), + [anon_sym_OBJC_EXPORT] = ACTIONS(6829), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6829), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6829), + [anon_sym_const] = ACTIONS(6827), + [anon_sym_constexpr] = ACTIONS(6829), + [anon_sym_volatile] = ACTIONS(6829), + [anon_sym_restrict] = ACTIONS(6829), + [anon_sym___restrict__] = ACTIONS(6829), + [anon_sym__Atomic] = ACTIONS(6829), + [anon_sym__Noreturn] = ACTIONS(6829), + [anon_sym__Nonnull] = ACTIONS(6829), + [anon_sym_nullable] = ACTIONS(6829), + [anon_sym__Complex] = ACTIONS(6829), + [anon_sym__Nullable] = ACTIONS(6827), + [anon_sym__Nullable_result] = ACTIONS(6829), + [anon_sym__Null_unspecified] = ACTIONS(6829), + [anon_sym___autoreleasing] = ACTIONS(6829), + [anon_sym___block] = ACTIONS(6829), + [anon_sym___bridge] = ACTIONS(6827), + [anon_sym___bridge_retained] = ACTIONS(6829), + [anon_sym___bridge_transfer] = ACTIONS(6829), + [anon_sym___complex] = ACTIONS(6829), + [anon_sym___const] = ACTIONS(6829), + [anon_sym___imag] = ACTIONS(6829), + [anon_sym___kindof] = ACTIONS(6829), + [anon_sym___nonnull] = ACTIONS(6829), + [anon_sym___nullable] = ACTIONS(6829), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6829), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6829), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6829), + [anon_sym___real] = ACTIONS(6829), + [anon_sym___strong] = ACTIONS(6829), + [anon_sym___unsafe_unretained] = ACTIONS(6829), + [anon_sym___unused] = ACTIONS(6829), + [anon_sym___weak] = ACTIONS(6829), + [anon_sym_alignas] = ACTIONS(6829), + [anon_sym__Alignas] = ACTIONS(6829), + [anon_sym_COLON] = ACTIONS(6829), + [anon_sym_asm] = ACTIONS(6829), + [anon_sym___asm__] = ACTIONS(6829), + [anon_sym___asm] = ACTIONS(6827), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6829), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6829), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6829), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6829), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6829), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6829), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6829), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6829), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6829), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6829), + [anon_sym_NS_AVAILABLE] = ACTIONS(6827), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6829), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6829), + [anon_sym_API_AVAILABLE] = ACTIONS(6829), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6829), + [anon_sym_API_DEPRECATED] = ACTIONS(6829), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6829), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6829), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6829), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6829), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6829), + [anon_sym___deprecated_msg] = ACTIONS(6829), + [anon_sym___deprecated_enum_msg] = ACTIONS(6829), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6829), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6829), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6829), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6829), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6829), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6829), + }, + [3088] = { + [sym__declaration_modifiers] = STATE(5122), + [sym_attribute_specifier] = STATE(5122), + [sym_attribute_declaration] = STATE(5122), + [sym_ms_declspec_modifier] = STATE(5122), + [sym_storage_class_specifier] = STATE(5122), + [sym_type_qualifier] = STATE(5122), + [sym_alignas_qualifier] = STATE(5101), + [sym_availability_attribute_specifier] = STATE(5122), + [sym_identifier] = ACTIONS(7743), + [anon_sym___extension__] = ACTIONS(7582), + [anon_sym_extern] = ACTIONS(7584), + [anon_sym___attribute__] = ACTIONS(7586), + [anon_sym___attribute] = ACTIONS(7586), + [anon_sym_noreturn] = ACTIONS(7582), + [anon_sym_LBRACK] = ACTIONS(7588), + [anon_sym___declspec] = ACTIONS(7590), + [anon_sym_static] = ACTIONS(7584), + [anon_sym_auto] = ACTIONS(7584), + [anon_sym_register] = ACTIONS(7584), + [anon_sym_inline] = ACTIONS(7584), + [anon_sym___inline] = ACTIONS(7584), + [anon_sym___inline__] = ACTIONS(7584), + [anon_sym___forceinline] = ACTIONS(7584), + [anon_sym_thread_local] = ACTIONS(7584), + [anon_sym___thread] = ACTIONS(7584), + [anon_sym_CG_EXTERN] = ACTIONS(7584), + [anon_sym_CG_INLINE] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7584), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7584), + [anon_sym_IBOutlet] = ACTIONS(7584), + [anon_sym_IBInspectable] = ACTIONS(7584), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7584), + [anon_sym_NS_INLINE] = ACTIONS(7584), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7584), + [anon_sym_OBJC_EXPORT] = ACTIONS(7584), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7584), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7713), + [anon_sym_constexpr] = ACTIONS(7582), + [anon_sym_volatile] = ACTIONS(7582), + [anon_sym_restrict] = ACTIONS(7582), + [anon_sym___restrict__] = ACTIONS(7582), + [anon_sym__Atomic] = ACTIONS(7582), + [anon_sym__Noreturn] = ACTIONS(7582), + [anon_sym__Nonnull] = ACTIONS(7582), + [anon_sym_nullable] = ACTIONS(7582), + [anon_sym__Complex] = ACTIONS(7582), + [anon_sym__Nullable] = ACTIONS(7582), + [anon_sym__Nullable_result] = ACTIONS(7582), + [anon_sym__Null_unspecified] = ACTIONS(7582), + [anon_sym___autoreleasing] = ACTIONS(7582), + [anon_sym___block] = ACTIONS(7582), + [anon_sym___bridge] = ACTIONS(7582), + [anon_sym___bridge_retained] = ACTIONS(7582), + [anon_sym___bridge_transfer] = ACTIONS(7582), + [anon_sym___complex] = ACTIONS(7582), + [anon_sym___const] = ACTIONS(7582), + [anon_sym___imag] = ACTIONS(7582), + [anon_sym___kindof] = ACTIONS(7582), + [anon_sym___nonnull] = ACTIONS(7582), + [anon_sym___nullable] = ACTIONS(7582), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7582), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7582), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7582), + [anon_sym___real] = ACTIONS(7582), + [anon_sym___strong] = ACTIONS(7582), + [anon_sym___unsafe_unretained] = ACTIONS(7582), + [anon_sym___unused] = ACTIONS(7582), + [anon_sym___weak] = ACTIONS(7582), + [anon_sym_alignas] = ACTIONS(7594), + [anon_sym__Alignas] = ACTIONS(7594), + [anon_sym_struct] = ACTIONS(7715), + [anon_sym_in] = ACTIONS(7715), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7598), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7598), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7598), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7598), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7598), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE] = ACTIONS(7600), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_API_AVAILABLE] = ACTIONS(7600), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_API_DEPRECATED] = ACTIONS(7600), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7600), + [anon_sym___deprecated_msg] = ACTIONS(7600), + [anon_sym___deprecated_enum_msg] = ACTIONS(7600), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7600), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7600), + [anon_sym_id] = ACTIONS(7715), + }, + [3089] = { + [sym__declaration_modifiers] = STATE(5122), + [sym_attribute_specifier] = STATE(5122), + [sym_attribute_declaration] = STATE(5122), + [sym_ms_declspec_modifier] = STATE(5122), + [sym_storage_class_specifier] = STATE(5122), + [sym_type_qualifier] = STATE(5122), + [sym_alignas_qualifier] = STATE(5101), + [sym_availability_attribute_specifier] = STATE(5122), + [sym_identifier] = ACTIONS(7732), + [anon_sym___extension__] = ACTIONS(7582), + [anon_sym_extern] = ACTIONS(7584), + [anon_sym___attribute__] = ACTIONS(7586), + [anon_sym___attribute] = ACTIONS(7586), + [anon_sym_noreturn] = ACTIONS(7582), + [anon_sym_LBRACK] = ACTIONS(7588), + [anon_sym___declspec] = ACTIONS(7590), + [anon_sym_static] = ACTIONS(7584), + [anon_sym_auto] = ACTIONS(7584), + [anon_sym_register] = ACTIONS(7584), + [anon_sym_inline] = ACTIONS(7584), + [anon_sym___inline] = ACTIONS(7584), + [anon_sym___inline__] = ACTIONS(7584), + [anon_sym___forceinline] = ACTIONS(7584), + [anon_sym_thread_local] = ACTIONS(7584), + [anon_sym___thread] = ACTIONS(7584), + [anon_sym_CG_EXTERN] = ACTIONS(7584), + [anon_sym_CG_INLINE] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7584), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7584), + [anon_sym_IBOutlet] = ACTIONS(7584), + [anon_sym_IBInspectable] = ACTIONS(7584), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7584), + [anon_sym_NS_INLINE] = ACTIONS(7584), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7584), + [anon_sym_OBJC_EXPORT] = ACTIONS(7584), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7584), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7736), + [anon_sym_constexpr] = ACTIONS(7582), + [anon_sym_volatile] = ACTIONS(7582), + [anon_sym_restrict] = ACTIONS(7582), + [anon_sym___restrict__] = ACTIONS(7582), + [anon_sym__Atomic] = ACTIONS(7582), + [anon_sym__Noreturn] = ACTIONS(7582), + [anon_sym__Nonnull] = ACTIONS(7582), + [anon_sym_nullable] = ACTIONS(7582), + [anon_sym__Complex] = ACTIONS(7582), + [anon_sym__Nullable] = ACTIONS(7582), + [anon_sym__Nullable_result] = ACTIONS(7582), + [anon_sym__Null_unspecified] = ACTIONS(7582), + [anon_sym___autoreleasing] = ACTIONS(7582), + [anon_sym___block] = ACTIONS(7582), + [anon_sym___bridge] = ACTIONS(7582), + [anon_sym___bridge_retained] = ACTIONS(7582), + [anon_sym___bridge_transfer] = ACTIONS(7582), + [anon_sym___complex] = ACTIONS(7582), + [anon_sym___const] = ACTIONS(7582), + [anon_sym___imag] = ACTIONS(7582), + [anon_sym___kindof] = ACTIONS(7582), + [anon_sym___nonnull] = ACTIONS(7582), + [anon_sym___nullable] = ACTIONS(7582), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7582), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7582), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7582), + [anon_sym___real] = ACTIONS(7582), + [anon_sym___strong] = ACTIONS(7582), + [anon_sym___unsafe_unretained] = ACTIONS(7582), + [anon_sym___unused] = ACTIONS(7582), + [anon_sym___weak] = ACTIONS(7582), + [anon_sym_alignas] = ACTIONS(7594), + [anon_sym__Alignas] = ACTIONS(7594), + [anon_sym_struct] = ACTIONS(7715), + [anon_sym_in] = ACTIONS(7715), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7598), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7598), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7598), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7598), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7598), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE] = ACTIONS(7600), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_API_AVAILABLE] = ACTIONS(7600), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_API_DEPRECATED] = ACTIONS(7600), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7600), + [anon_sym___deprecated_msg] = ACTIONS(7600), + [anon_sym___deprecated_enum_msg] = ACTIONS(7600), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7600), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7600), + [anon_sym_id] = ACTIONS(7715), + }, + [3090] = { + [sym_attribute_specifier] = STATE(3090), + [sym_type_qualifier] = STATE(3090), + [sym_alignas_qualifier] = STATE(2368), + [aux_sym_function_field_declarator_repeat1] = STATE(3090), + [anon_sym_COMMA] = ACTIONS(7745), + [anon_sym_RPAREN] = ACTIONS(7745), + [anon_sym_LPAREN2] = ACTIONS(7745), + [anon_sym_GT] = ACTIONS(7745), + [anon_sym_SEMI] = ACTIONS(7745), + [anon_sym___extension__] = ACTIONS(7747), + [anon_sym_extern] = ACTIONS(7745), + [anon_sym___attribute__] = ACTIONS(7750), + [anon_sym___attribute] = ACTIONS(7753), + [anon_sym_noreturn] = ACTIONS(7747), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym___declspec] = ACTIONS(7745), + [anon_sym_LBRACE] = ACTIONS(7745), + [anon_sym_static] = ACTIONS(7745), + [anon_sym_ATautoreleasepool] = ACTIONS(7745), + [anon_sym_auto] = ACTIONS(7745), + [anon_sym_register] = ACTIONS(7745), + [anon_sym_inline] = ACTIONS(7745), + [anon_sym___inline] = ACTIONS(7756), + [anon_sym___inline__] = ACTIONS(7745), + [anon_sym___forceinline] = ACTIONS(7745), + [anon_sym_thread_local] = ACTIONS(7745), + [anon_sym___thread] = ACTIONS(7745), + [anon_sym_CG_EXTERN] = ACTIONS(7745), + [anon_sym_CG_INLINE] = ACTIONS(7745), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7745), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7745), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7745), + [anon_sym_IBOutlet] = ACTIONS(7745), + [anon_sym_IBInspectable] = ACTIONS(7745), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7745), + [anon_sym_NS_INLINE] = ACTIONS(7745), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7745), + [anon_sym_OBJC_EXPORT] = ACTIONS(7745), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7745), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7758), + [anon_sym_constexpr] = ACTIONS(7747), + [anon_sym_volatile] = ACTIONS(7747), + [anon_sym_restrict] = ACTIONS(7747), + [anon_sym___restrict__] = ACTIONS(7747), + [anon_sym__Atomic] = ACTIONS(7747), + [anon_sym__Noreturn] = ACTIONS(7747), + [anon_sym__Nonnull] = ACTIONS(7747), + [anon_sym_nullable] = ACTIONS(7747), + [anon_sym__Complex] = ACTIONS(7747), + [anon_sym__Nullable] = ACTIONS(7758), + [anon_sym__Nullable_result] = ACTIONS(7747), + [anon_sym__Null_unspecified] = ACTIONS(7747), + [anon_sym___autoreleasing] = ACTIONS(7747), + [anon_sym___block] = ACTIONS(7747), + [anon_sym___bridge] = ACTIONS(7758), + [anon_sym___bridge_retained] = ACTIONS(7747), + [anon_sym___bridge_transfer] = ACTIONS(7747), + [anon_sym___complex] = ACTIONS(7747), + [anon_sym___const] = ACTIONS(7747), + [anon_sym___imag] = ACTIONS(7747), + [anon_sym___kindof] = ACTIONS(7747), + [anon_sym___nonnull] = ACTIONS(7747), + [anon_sym___nullable] = ACTIONS(7747), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7747), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7747), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7747), + [anon_sym___real] = ACTIONS(7747), + [anon_sym___strong] = ACTIONS(7747), + [anon_sym___unsafe_unretained] = ACTIONS(7747), + [anon_sym___unused] = ACTIONS(7747), + [anon_sym___weak] = ACTIONS(7747), + [anon_sym_alignas] = ACTIONS(7761), + [anon_sym__Alignas] = ACTIONS(7761), + [anon_sym_COLON] = ACTIONS(7745), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7745), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7745), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7745), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7745), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7745), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7745), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7745), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7745), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7745), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7745), + [anon_sym_NS_AVAILABLE] = ACTIONS(7756), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7745), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7745), + [anon_sym_API_AVAILABLE] = ACTIONS(7745), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7745), + [anon_sym_API_DEPRECATED] = ACTIONS(7745), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7745), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7745), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7745), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7745), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7745), + [anon_sym___deprecated_msg] = ACTIONS(7745), + [anon_sym___deprecated_enum_msg] = ACTIONS(7745), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7745), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7745), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7745), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7745), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7745), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7745), + }, + [3091] = { + [sym_attribute_specifier] = STATE(2990), + [sym_enumerator_list] = STATE(3190), + [sym_identifier] = ACTIONS(7764), + [anon_sym_COMMA] = ACTIONS(7766), + [anon_sym_RPAREN] = ACTIONS(7766), + [anon_sym_LPAREN2] = ACTIONS(7766), + [anon_sym_STAR] = ACTIONS(7766), + [anon_sym_CARET] = ACTIONS(7766), + [anon_sym_SEMI] = ACTIONS(7766), + [anon_sym___extension__] = ACTIONS(7764), + [anon_sym_extern] = ACTIONS(7764), + [anon_sym___attribute__] = ACTIONS(7768), + [anon_sym___attribute] = ACTIONS(7768), + [anon_sym_noreturn] = ACTIONS(7764), + [anon_sym_LBRACK] = ACTIONS(7766), + [anon_sym___declspec] = ACTIONS(7764), + [anon_sym___based] = ACTIONS(7764), + [anon_sym_LBRACE] = ACTIONS(7638), + [anon_sym_static] = ACTIONS(7764), + [anon_sym_auto] = ACTIONS(7764), + [anon_sym_register] = ACTIONS(7764), + [anon_sym_inline] = ACTIONS(7764), + [anon_sym___inline] = ACTIONS(7764), + [anon_sym___inline__] = ACTIONS(7764), + [anon_sym___forceinline] = ACTIONS(7764), + [anon_sym_thread_local] = ACTIONS(7764), + [anon_sym___thread] = ACTIONS(7764), + [anon_sym_CG_EXTERN] = ACTIONS(7764), + [anon_sym_CG_INLINE] = ACTIONS(7764), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7764), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7764), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7764), + [anon_sym_IBOutlet] = ACTIONS(7764), + [anon_sym_IBInspectable] = ACTIONS(7764), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7764), + [anon_sym_NS_INLINE] = ACTIONS(7764), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7764), + [anon_sym_OBJC_EXPORT] = ACTIONS(7764), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7764), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7764), + [anon_sym_const] = ACTIONS(7764), + [anon_sym_constexpr] = ACTIONS(7764), + [anon_sym_volatile] = ACTIONS(7764), + [anon_sym_restrict] = ACTIONS(7764), + [anon_sym___restrict__] = ACTIONS(7764), + [anon_sym__Atomic] = ACTIONS(7764), + [anon_sym__Noreturn] = ACTIONS(7764), + [anon_sym__Nonnull] = ACTIONS(7764), + [anon_sym_nullable] = ACTIONS(7764), + [anon_sym__Complex] = ACTIONS(7764), + [anon_sym__Nullable] = ACTIONS(7764), + [anon_sym__Nullable_result] = ACTIONS(7764), + [anon_sym__Null_unspecified] = ACTIONS(7764), + [anon_sym___autoreleasing] = ACTIONS(7764), + [anon_sym___block] = ACTIONS(7764), + [anon_sym___bridge] = ACTIONS(7764), + [anon_sym___bridge_retained] = ACTIONS(7764), + [anon_sym___bridge_transfer] = ACTIONS(7764), + [anon_sym___complex] = ACTIONS(7764), + [anon_sym___const] = ACTIONS(7764), + [anon_sym___imag] = ACTIONS(7764), + [anon_sym___kindof] = ACTIONS(7764), + [anon_sym___nonnull] = ACTIONS(7764), + [anon_sym___nullable] = ACTIONS(7764), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7764), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7764), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7764), + [anon_sym___real] = ACTIONS(7764), + [anon_sym___strong] = ACTIONS(7764), + [anon_sym___unsafe_unretained] = ACTIONS(7764), + [anon_sym___unused] = ACTIONS(7764), + [anon_sym___weak] = ACTIONS(7764), + [anon_sym_alignas] = ACTIONS(7764), + [anon_sym__Alignas] = ACTIONS(7764), + [anon_sym_COLON] = ACTIONS(7771), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7764), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7764), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7764), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7764), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7764), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7764), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7764), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7764), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7764), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7764), + [anon_sym_NS_AVAILABLE] = ACTIONS(7764), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7764), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_API_AVAILABLE] = ACTIONS(7764), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7764), + [anon_sym_API_DEPRECATED] = ACTIONS(7764), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7764), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7764), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7764), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7764), + [anon_sym___deprecated_msg] = ACTIONS(7764), + [anon_sym___deprecated_enum_msg] = ACTIONS(7764), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7764), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7764), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7764), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7764), + }, + [3092] = { + [anon_sym_COMMA] = ACTIONS(6891), + [anon_sym_RPAREN] = ACTIONS(6891), + [anon_sym_LPAREN2] = ACTIONS(6891), + [anon_sym_SEMI] = ACTIONS(6891), + [anon_sym___extension__] = ACTIONS(6891), + [anon_sym_extern] = ACTIONS(6891), + [anon_sym___attribute__] = ACTIONS(6891), + [anon_sym___attribute] = ACTIONS(6889), + [anon_sym_noreturn] = ACTIONS(6891), + [anon_sym_LBRACK] = ACTIONS(6891), + [anon_sym___declspec] = ACTIONS(6891), + [anon_sym_LBRACE] = ACTIONS(6891), + [anon_sym_static] = ACTIONS(6891), + [anon_sym_EQ] = ACTIONS(6891), + [anon_sym_ATautoreleasepool] = ACTIONS(6891), + [anon_sym_auto] = ACTIONS(6891), + [anon_sym_register] = ACTIONS(6891), + [anon_sym_inline] = ACTIONS(6891), + [anon_sym___inline] = ACTIONS(6889), + [anon_sym___inline__] = ACTIONS(6891), + [anon_sym___forceinline] = ACTIONS(6891), + [anon_sym_thread_local] = ACTIONS(6891), + [anon_sym___thread] = ACTIONS(6891), + [anon_sym_CG_EXTERN] = ACTIONS(6891), + [anon_sym_CG_INLINE] = ACTIONS(6891), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6891), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6891), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6891), + [anon_sym_IBOutlet] = ACTIONS(6891), + [anon_sym_IBInspectable] = ACTIONS(6891), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6891), + [anon_sym_NS_INLINE] = ACTIONS(6891), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6891), + [anon_sym_OBJC_EXPORT] = ACTIONS(6891), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6891), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6891), + [anon_sym_const] = ACTIONS(6889), + [anon_sym_constexpr] = ACTIONS(6891), + [anon_sym_volatile] = ACTIONS(6891), + [anon_sym_restrict] = ACTIONS(6891), + [anon_sym___restrict__] = ACTIONS(6891), + [anon_sym__Atomic] = ACTIONS(6891), + [anon_sym__Noreturn] = ACTIONS(6891), + [anon_sym__Nonnull] = ACTIONS(6891), + [anon_sym_nullable] = ACTIONS(6891), + [anon_sym__Complex] = ACTIONS(6891), + [anon_sym__Nullable] = ACTIONS(6889), + [anon_sym__Nullable_result] = ACTIONS(6891), + [anon_sym__Null_unspecified] = ACTIONS(6891), + [anon_sym___autoreleasing] = ACTIONS(6891), + [anon_sym___block] = ACTIONS(6891), + [anon_sym___bridge] = ACTIONS(6889), + [anon_sym___bridge_retained] = ACTIONS(6891), + [anon_sym___bridge_transfer] = ACTIONS(6891), + [anon_sym___complex] = ACTIONS(6891), + [anon_sym___const] = ACTIONS(6891), + [anon_sym___imag] = ACTIONS(6891), + [anon_sym___kindof] = ACTIONS(6891), + [anon_sym___nonnull] = ACTIONS(6891), + [anon_sym___nullable] = ACTIONS(6891), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6891), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6891), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6891), + [anon_sym___real] = ACTIONS(6891), + [anon_sym___strong] = ACTIONS(6891), + [anon_sym___unsafe_unretained] = ACTIONS(6891), + [anon_sym___unused] = ACTIONS(6891), + [anon_sym___weak] = ACTIONS(6891), + [anon_sym_alignas] = ACTIONS(6891), + [anon_sym__Alignas] = ACTIONS(6891), + [anon_sym_COLON] = ACTIONS(6891), + [anon_sym_in] = ACTIONS(6889), + [anon_sym_asm] = ACTIONS(6891), + [anon_sym___asm__] = ACTIONS(6891), + [anon_sym___asm] = ACTIONS(6889), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6891), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6891), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6891), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6891), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6891), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6891), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6891), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6891), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6891), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6891), + [anon_sym_NS_AVAILABLE] = ACTIONS(6889), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6891), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6891), + [anon_sym_API_AVAILABLE] = ACTIONS(6891), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6891), + [anon_sym_API_DEPRECATED] = ACTIONS(6891), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6891), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6891), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6891), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6891), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6891), + [anon_sym___deprecated_msg] = ACTIONS(6891), + [anon_sym___deprecated_enum_msg] = ACTIONS(6891), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6891), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6891), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6891), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6891), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6891), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6891), + }, + [3093] = { + [anon_sym_COMMA] = ACTIONS(6758), + [anon_sym_RPAREN] = ACTIONS(6758), + [anon_sym_LPAREN2] = ACTIONS(6758), + [anon_sym_SEMI] = ACTIONS(6758), + [anon_sym___extension__] = ACTIONS(6758), + [anon_sym_extern] = ACTIONS(6758), + [anon_sym___attribute__] = ACTIONS(6758), + [anon_sym___attribute] = ACTIONS(6766), + [anon_sym_noreturn] = ACTIONS(6758), + [anon_sym_LBRACK] = ACTIONS(6758), + [anon_sym___declspec] = ACTIONS(6758), + [anon_sym_LBRACE] = ACTIONS(6758), + [anon_sym_static] = ACTIONS(6758), + [anon_sym_EQ] = ACTIONS(6758), + [anon_sym_ATautoreleasepool] = ACTIONS(6758), + [anon_sym_auto] = ACTIONS(6758), + [anon_sym_register] = ACTIONS(6758), + [anon_sym_inline] = ACTIONS(6758), + [anon_sym___inline] = ACTIONS(6766), + [anon_sym___inline__] = ACTIONS(6758), + [anon_sym___forceinline] = ACTIONS(6758), + [anon_sym_thread_local] = ACTIONS(6758), + [anon_sym___thread] = ACTIONS(6758), + [anon_sym_CG_EXTERN] = ACTIONS(6758), + [anon_sym_CG_INLINE] = ACTIONS(6758), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6758), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6758), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6758), + [anon_sym_IBOutlet] = ACTIONS(6758), + [anon_sym_IBInspectable] = ACTIONS(6758), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6758), + [anon_sym_NS_INLINE] = ACTIONS(6758), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6758), + [anon_sym_OBJC_EXPORT] = ACTIONS(6758), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6758), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6758), + [anon_sym_const] = ACTIONS(6766), + [anon_sym_constexpr] = ACTIONS(6758), + [anon_sym_volatile] = ACTIONS(6758), + [anon_sym_restrict] = ACTIONS(6758), + [anon_sym___restrict__] = ACTIONS(6758), + [anon_sym__Atomic] = ACTIONS(6758), + [anon_sym__Noreturn] = ACTIONS(6758), + [anon_sym__Nonnull] = ACTIONS(6758), + [anon_sym_nullable] = ACTIONS(6758), + [anon_sym__Complex] = ACTIONS(6758), + [anon_sym__Nullable] = ACTIONS(6766), + [anon_sym__Nullable_result] = ACTIONS(6758), + [anon_sym__Null_unspecified] = ACTIONS(6758), + [anon_sym___autoreleasing] = ACTIONS(6758), + [anon_sym___block] = ACTIONS(6758), + [anon_sym___bridge] = ACTIONS(6766), + [anon_sym___bridge_retained] = ACTIONS(6758), + [anon_sym___bridge_transfer] = ACTIONS(6758), + [anon_sym___complex] = ACTIONS(6758), + [anon_sym___const] = ACTIONS(6758), + [anon_sym___imag] = ACTIONS(6758), + [anon_sym___kindof] = ACTIONS(6758), + [anon_sym___nonnull] = ACTIONS(6758), + [anon_sym___nullable] = ACTIONS(6758), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6758), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6758), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6758), + [anon_sym___real] = ACTIONS(6758), + [anon_sym___strong] = ACTIONS(6758), + [anon_sym___unsafe_unretained] = ACTIONS(6758), + [anon_sym___unused] = ACTIONS(6758), + [anon_sym___weak] = ACTIONS(6758), + [anon_sym_alignas] = ACTIONS(6758), + [anon_sym__Alignas] = ACTIONS(6758), + [anon_sym_COLON] = ACTIONS(6758), + [anon_sym_in] = ACTIONS(6766), + [anon_sym_asm] = ACTIONS(6758), + [anon_sym___asm__] = ACTIONS(6758), + [anon_sym___asm] = ACTIONS(6766), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6758), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6758), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6758), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6758), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6758), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6758), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6758), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6758), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6758), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6758), + [anon_sym_NS_AVAILABLE] = ACTIONS(6766), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6758), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6758), + [anon_sym_API_AVAILABLE] = ACTIONS(6758), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6758), + [anon_sym_API_DEPRECATED] = ACTIONS(6758), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6758), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6758), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6758), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6758), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6758), + [anon_sym___deprecated_msg] = ACTIONS(6758), + [anon_sym___deprecated_enum_msg] = ACTIONS(6758), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6758), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6758), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6758), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6758), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6758), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6758), + }, + [3094] = { + [sym_parameter_list] = STATE(3030), + [anon_sym_COMMA] = ACTIONS(6833), + [anon_sym_RPAREN] = ACTIONS(6833), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6833), + [anon_sym___extension__] = ACTIONS(6833), + [anon_sym_extern] = ACTIONS(6833), + [anon_sym___attribute__] = ACTIONS(6833), + [anon_sym___attribute] = ACTIONS(6831), + [anon_sym_noreturn] = ACTIONS(6833), + [anon_sym_LBRACK] = ACTIONS(7709), + [anon_sym___declspec] = ACTIONS(6833), + [anon_sym_LBRACE] = ACTIONS(6833), + [anon_sym_static] = ACTIONS(6833), + [anon_sym_EQ] = ACTIONS(6833), + [anon_sym_ATautoreleasepool] = ACTIONS(6833), + [anon_sym_auto] = ACTIONS(6833), + [anon_sym_register] = ACTIONS(6833), + [anon_sym_inline] = ACTIONS(6833), + [anon_sym___inline] = ACTIONS(6831), + [anon_sym___inline__] = ACTIONS(6833), + [anon_sym___forceinline] = ACTIONS(6833), + [anon_sym_thread_local] = ACTIONS(6833), + [anon_sym___thread] = ACTIONS(6833), + [anon_sym_CG_EXTERN] = ACTIONS(6833), + [anon_sym_CG_INLINE] = ACTIONS(6833), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6833), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6833), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6833), + [anon_sym_IBOutlet] = ACTIONS(6833), + [anon_sym_IBInspectable] = ACTIONS(6833), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6833), + [anon_sym_NS_INLINE] = ACTIONS(6833), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6833), + [anon_sym_OBJC_EXPORT] = ACTIONS(6833), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6833), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6833), + [anon_sym_const] = ACTIONS(6831), + [anon_sym_constexpr] = ACTIONS(6833), + [anon_sym_volatile] = ACTIONS(6833), + [anon_sym_restrict] = ACTIONS(6833), + [anon_sym___restrict__] = ACTIONS(6833), + [anon_sym__Atomic] = ACTIONS(6833), + [anon_sym__Noreturn] = ACTIONS(6833), + [anon_sym__Nonnull] = ACTIONS(6833), + [anon_sym_nullable] = ACTIONS(6833), + [anon_sym__Complex] = ACTIONS(6833), + [anon_sym__Nullable] = ACTIONS(6831), + [anon_sym__Nullable_result] = ACTIONS(6833), + [anon_sym__Null_unspecified] = ACTIONS(6833), + [anon_sym___autoreleasing] = ACTIONS(6833), + [anon_sym___block] = ACTIONS(6833), + [anon_sym___bridge] = ACTIONS(6831), + [anon_sym___bridge_retained] = ACTIONS(6833), + [anon_sym___bridge_transfer] = ACTIONS(6833), + [anon_sym___complex] = ACTIONS(6833), + [anon_sym___const] = ACTIONS(6833), + [anon_sym___imag] = ACTIONS(6833), + [anon_sym___kindof] = ACTIONS(6833), + [anon_sym___nonnull] = ACTIONS(6833), + [anon_sym___nullable] = ACTIONS(6833), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6833), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6833), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6833), + [anon_sym___real] = ACTIONS(6833), + [anon_sym___strong] = ACTIONS(6833), + [anon_sym___unsafe_unretained] = ACTIONS(6833), + [anon_sym___unused] = ACTIONS(6833), + [anon_sym___weak] = ACTIONS(6833), + [anon_sym_alignas] = ACTIONS(6833), + [anon_sym__Alignas] = ACTIONS(6833), + [anon_sym_COLON] = ACTIONS(6833), + [anon_sym_asm] = ACTIONS(6833), + [anon_sym___asm__] = ACTIONS(6833), + [anon_sym___asm] = ACTIONS(6831), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6833), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6833), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6833), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6833), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6833), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6833), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6833), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6833), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6833), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6833), + [anon_sym_NS_AVAILABLE] = ACTIONS(6831), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6833), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6833), + [anon_sym_API_AVAILABLE] = ACTIONS(6833), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6833), + [anon_sym_API_DEPRECATED] = ACTIONS(6833), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6833), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6833), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6833), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6833), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6833), + [anon_sym___deprecated_msg] = ACTIONS(6833), + [anon_sym___deprecated_enum_msg] = ACTIONS(6833), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6833), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6833), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6833), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6833), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6833), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6833), + }, + [3095] = { + [sym__declaration_modifiers] = STATE(5122), + [sym_attribute_specifier] = STATE(5122), + [sym_attribute_declaration] = STATE(5122), + [sym_ms_declspec_modifier] = STATE(5122), + [sym_storage_class_specifier] = STATE(5122), + [sym_type_qualifier] = STATE(5122), + [sym_alignas_qualifier] = STATE(5101), + [sym_availability_attribute_specifier] = STATE(5122), + [sym_identifier] = ACTIONS(7734), + [anon_sym___extension__] = ACTIONS(7582), + [anon_sym_extern] = ACTIONS(7584), + [anon_sym___attribute__] = ACTIONS(7586), + [anon_sym___attribute] = ACTIONS(7586), + [anon_sym_noreturn] = ACTIONS(7582), + [anon_sym_LBRACK] = ACTIONS(7588), + [anon_sym___declspec] = ACTIONS(7590), + [anon_sym_static] = ACTIONS(7584), + [anon_sym_auto] = ACTIONS(7584), + [anon_sym_register] = ACTIONS(7584), + [anon_sym_inline] = ACTIONS(7584), + [anon_sym___inline] = ACTIONS(7584), + [anon_sym___inline__] = ACTIONS(7584), + [anon_sym___forceinline] = ACTIONS(7584), + [anon_sym_thread_local] = ACTIONS(7584), + [anon_sym___thread] = ACTIONS(7584), + [anon_sym_CG_EXTERN] = ACTIONS(7584), + [anon_sym_CG_INLINE] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7584), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7584), + [anon_sym_IBOutlet] = ACTIONS(7584), + [anon_sym_IBInspectable] = ACTIONS(7584), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7584), + [anon_sym_NS_INLINE] = ACTIONS(7584), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7584), + [anon_sym_OBJC_EXPORT] = ACTIONS(7584), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7584), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7713), + [anon_sym_constexpr] = ACTIONS(7582), + [anon_sym_volatile] = ACTIONS(7582), + [anon_sym_restrict] = ACTIONS(7582), + [anon_sym___restrict__] = ACTIONS(7582), + [anon_sym__Atomic] = ACTIONS(7582), + [anon_sym__Noreturn] = ACTIONS(7582), + [anon_sym__Nonnull] = ACTIONS(7582), + [anon_sym_nullable] = ACTIONS(7582), + [anon_sym__Complex] = ACTIONS(7582), + [anon_sym__Nullable] = ACTIONS(7582), + [anon_sym__Nullable_result] = ACTIONS(7582), + [anon_sym__Null_unspecified] = ACTIONS(7582), + [anon_sym___autoreleasing] = ACTIONS(7582), + [anon_sym___block] = ACTIONS(7582), + [anon_sym___bridge] = ACTIONS(7582), + [anon_sym___bridge_retained] = ACTIONS(7582), + [anon_sym___bridge_transfer] = ACTIONS(7582), + [anon_sym___complex] = ACTIONS(7582), + [anon_sym___const] = ACTIONS(7582), + [anon_sym___imag] = ACTIONS(7582), + [anon_sym___kindof] = ACTIONS(7582), + [anon_sym___nonnull] = ACTIONS(7582), + [anon_sym___nullable] = ACTIONS(7582), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7582), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7582), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7582), + [anon_sym___real] = ACTIONS(7582), + [anon_sym___strong] = ACTIONS(7582), + [anon_sym___unsafe_unretained] = ACTIONS(7582), + [anon_sym___unused] = ACTIONS(7582), + [anon_sym___weak] = ACTIONS(7582), + [anon_sym_alignas] = ACTIONS(7594), + [anon_sym__Alignas] = ACTIONS(7594), + [anon_sym_struct] = ACTIONS(7715), + [anon_sym_in] = ACTIONS(7715), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7598), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7598), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7598), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7598), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7598), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE] = ACTIONS(7600), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_API_AVAILABLE] = ACTIONS(7600), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_API_DEPRECATED] = ACTIONS(7600), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7600), + [anon_sym___deprecated_msg] = ACTIONS(7600), + [anon_sym___deprecated_enum_msg] = ACTIONS(7600), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7600), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7600), + [anon_sym_id] = ACTIONS(7715), + }, + [3096] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [sym_identifier] = ACTIONS(4502), + [anon_sym_LPAREN2] = ACTIONS(7773), + [anon_sym_STAR] = ACTIONS(5932), + [anon_sym_CARET] = ACTIONS(5932), + [anon_sym_LT] = ACTIONS(7168), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(5932), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4517), + [anon_sym_unsigned] = ACTIONS(4517), + [anon_sym_long] = ACTIONS(4517), + [anon_sym_short] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_auto] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_CG_EXTERN] = ACTIONS(4502), + [anon_sym_CG_INLINE] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(4502), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(4502), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(4502), + [anon_sym_IBOutlet] = ACTIONS(4502), + [anon_sym_IBInspectable] = ACTIONS(4502), + [anon_sym_IB_DESIGNABLE] = ACTIONS(4502), + [anon_sym_NS_INLINE] = ACTIONS(4502), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(4502), + [anon_sym_OBJC_EXPORT] = ACTIONS(4502), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_UIKIT_EXTERN] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(4502), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(4502), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(4502), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(4502), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(4502), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(4502), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE] = ACTIONS(4502), + [anon_sym___IOS_AVAILABLE] = ACTIONS(4502), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_API_AVAILABLE] = ACTIONS(4502), + [anon_sym_API_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_API_DEPRECATED] = ACTIONS(4502), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(4502), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(4502), + [anon_sym___deprecated_msg] = ACTIONS(4502), + [anon_sym___deprecated_enum_msg] = ACTIONS(4502), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(4502), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(4502), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(4502), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(4502), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(4502), + }, + [3097] = { + [sym__declaration_modifiers] = STATE(5122), + [sym_attribute_specifier] = STATE(5122), + [sym_attribute_declaration] = STATE(5122), + [sym_ms_declspec_modifier] = STATE(5122), + [sym_storage_class_specifier] = STATE(5122), + [sym_type_qualifier] = STATE(5122), + [sym_alignas_qualifier] = STATE(5101), + [sym_availability_attribute_specifier] = STATE(5122), + [sym_identifier] = ACTIONS(7776), + [anon_sym___extension__] = ACTIONS(7582), + [anon_sym_extern] = ACTIONS(7584), + [anon_sym___attribute__] = ACTIONS(7586), + [anon_sym___attribute] = ACTIONS(7586), + [anon_sym_noreturn] = ACTIONS(7582), + [anon_sym_LBRACK] = ACTIONS(7588), + [anon_sym___declspec] = ACTIONS(7590), + [anon_sym_static] = ACTIONS(7584), + [anon_sym_auto] = ACTIONS(7584), + [anon_sym_register] = ACTIONS(7584), + [anon_sym_inline] = ACTIONS(7584), + [anon_sym___inline] = ACTIONS(7584), + [anon_sym___inline__] = ACTIONS(7584), + [anon_sym___forceinline] = ACTIONS(7584), + [anon_sym_thread_local] = ACTIONS(7584), + [anon_sym___thread] = ACTIONS(7584), + [anon_sym_CG_EXTERN] = ACTIONS(7584), + [anon_sym_CG_INLINE] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7584), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7584), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7584), + [anon_sym_IBOutlet] = ACTIONS(7584), + [anon_sym_IBInspectable] = ACTIONS(7584), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7584), + [anon_sym_NS_INLINE] = ACTIONS(7584), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7584), + [anon_sym_OBJC_EXPORT] = ACTIONS(7584), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7584), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7713), + [anon_sym_constexpr] = ACTIONS(7582), + [anon_sym_volatile] = ACTIONS(7582), + [anon_sym_restrict] = ACTIONS(7582), + [anon_sym___restrict__] = ACTIONS(7582), + [anon_sym__Atomic] = ACTIONS(7582), + [anon_sym__Noreturn] = ACTIONS(7582), + [anon_sym__Nonnull] = ACTIONS(7582), + [anon_sym_nullable] = ACTIONS(7582), + [anon_sym__Complex] = ACTIONS(7582), + [anon_sym__Nullable] = ACTIONS(7582), + [anon_sym__Nullable_result] = ACTIONS(7582), + [anon_sym__Null_unspecified] = ACTIONS(7582), + [anon_sym___autoreleasing] = ACTIONS(7582), + [anon_sym___block] = ACTIONS(7582), + [anon_sym___bridge] = ACTIONS(7582), + [anon_sym___bridge_retained] = ACTIONS(7582), + [anon_sym___bridge_transfer] = ACTIONS(7582), + [anon_sym___complex] = ACTIONS(7582), + [anon_sym___const] = ACTIONS(7582), + [anon_sym___imag] = ACTIONS(7582), + [anon_sym___kindof] = ACTIONS(7582), + [anon_sym___nonnull] = ACTIONS(7582), + [anon_sym___nullable] = ACTIONS(7582), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7582), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7582), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7582), + [anon_sym___real] = ACTIONS(7582), + [anon_sym___strong] = ACTIONS(7582), + [anon_sym___unsafe_unretained] = ACTIONS(7582), + [anon_sym___unused] = ACTIONS(7582), + [anon_sym___weak] = ACTIONS(7582), + [anon_sym_alignas] = ACTIONS(7594), + [anon_sym__Alignas] = ACTIONS(7594), + [anon_sym_struct] = ACTIONS(7715), + [anon_sym_in] = ACTIONS(7715), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7598), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7598), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7598), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7598), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7598), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7598), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7598), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE] = ACTIONS(7600), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7600), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_API_AVAILABLE] = ACTIONS(7600), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_API_DEPRECATED] = ACTIONS(7600), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7600), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7600), + [anon_sym___deprecated_msg] = ACTIONS(7600), + [anon_sym___deprecated_enum_msg] = ACTIONS(7600), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7600), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7600), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7600), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7600), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7600), + [anon_sym_id] = ACTIONS(7715), + }, + [3098] = { + [sym_attribute_specifier] = STATE(2990), + [sym_enumerator_list] = STATE(3190), + [sym_identifier] = ACTIONS(7764), + [anon_sym_COMMA] = ACTIONS(7766), + [anon_sym_LPAREN2] = ACTIONS(7766), + [anon_sym_STAR] = ACTIONS(7766), + [anon_sym_CARET] = ACTIONS(7766), + [anon_sym_SEMI] = ACTIONS(7766), + [anon_sym___extension__] = ACTIONS(7764), + [anon_sym_extern] = ACTIONS(7764), + [anon_sym___attribute__] = ACTIONS(7768), + [anon_sym___attribute] = ACTIONS(7768), + [anon_sym_noreturn] = ACTIONS(7764), + [anon_sym_LBRACK] = ACTIONS(7766), + [anon_sym___declspec] = ACTIONS(7764), + [anon_sym___based] = ACTIONS(7764), + [anon_sym_LBRACE] = ACTIONS(7638), + [anon_sym_static] = ACTIONS(7764), + [anon_sym_auto] = ACTIONS(7764), + [anon_sym_register] = ACTIONS(7764), + [anon_sym_inline] = ACTIONS(7764), + [anon_sym___inline] = ACTIONS(7764), + [anon_sym___inline__] = ACTIONS(7764), + [anon_sym___forceinline] = ACTIONS(7764), + [anon_sym_thread_local] = ACTIONS(7764), + [anon_sym___thread] = ACTIONS(7764), + [anon_sym_CG_EXTERN] = ACTIONS(7764), + [anon_sym_CG_INLINE] = ACTIONS(7764), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7764), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7764), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7764), + [anon_sym_IBOutlet] = ACTIONS(7764), + [anon_sym_IBInspectable] = ACTIONS(7764), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7764), + [anon_sym_NS_INLINE] = ACTIONS(7764), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7764), + [anon_sym_OBJC_EXPORT] = ACTIONS(7764), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7764), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7764), + [anon_sym_const] = ACTIONS(7764), + [anon_sym_constexpr] = ACTIONS(7764), + [anon_sym_volatile] = ACTIONS(7764), + [anon_sym_restrict] = ACTIONS(7764), + [anon_sym___restrict__] = ACTIONS(7764), + [anon_sym__Atomic] = ACTIONS(7764), + [anon_sym__Noreturn] = ACTIONS(7764), + [anon_sym__Nonnull] = ACTIONS(7764), + [anon_sym_nullable] = ACTIONS(7764), + [anon_sym__Complex] = ACTIONS(7764), + [anon_sym__Nullable] = ACTIONS(7764), + [anon_sym__Nullable_result] = ACTIONS(7764), + [anon_sym__Null_unspecified] = ACTIONS(7764), + [anon_sym___autoreleasing] = ACTIONS(7764), + [anon_sym___block] = ACTIONS(7764), + [anon_sym___bridge] = ACTIONS(7764), + [anon_sym___bridge_retained] = ACTIONS(7764), + [anon_sym___bridge_transfer] = ACTIONS(7764), + [anon_sym___complex] = ACTIONS(7764), + [anon_sym___const] = ACTIONS(7764), + [anon_sym___imag] = ACTIONS(7764), + [anon_sym___kindof] = ACTIONS(7764), + [anon_sym___nonnull] = ACTIONS(7764), + [anon_sym___nullable] = ACTIONS(7764), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7764), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7764), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7764), + [anon_sym___real] = ACTIONS(7764), + [anon_sym___strong] = ACTIONS(7764), + [anon_sym___unsafe_unretained] = ACTIONS(7764), + [anon_sym___unused] = ACTIONS(7764), + [anon_sym___weak] = ACTIONS(7764), + [anon_sym_alignas] = ACTIONS(7764), + [anon_sym__Alignas] = ACTIONS(7764), + [anon_sym_enum] = ACTIONS(7764), + [anon_sym_COLON] = ACTIONS(7778), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7764), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7764), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7764), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7764), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7764), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7764), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7764), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7764), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7764), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7764), + [anon_sym_NS_AVAILABLE] = ACTIONS(7764), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7764), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_API_AVAILABLE] = ACTIONS(7764), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7764), + [anon_sym_API_DEPRECATED] = ACTIONS(7764), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7764), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7764), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7764), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7764), + [anon_sym___deprecated_msg] = ACTIONS(7764), + [anon_sym___deprecated_enum_msg] = ACTIONS(7764), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7764), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7764), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7764), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7764), + }, + [3099] = { + [sym__declaration_modifiers] = STATE(6778), + [sym_attribute_specifier] = STATE(6778), + [sym_attribute_declaration] = STATE(6778), + [sym_ms_declspec_modifier] = STATE(6778), + [sym_storage_class_specifier] = STATE(6778), + [sym_type_qualifier] = STATE(6778), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6778), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7781), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3100] = { + [sym__declaration_modifiers] = STATE(2879), + [sym_attribute_specifier] = STATE(2879), + [sym_attribute_declaration] = STATE(2879), + [sym_ms_declspec_modifier] = STATE(2879), + [sym_storage_class_specifier] = STATE(2879), + [sym_type_qualifier] = STATE(2879), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2879), + [aux_sym__declaration_specifiers_repeat1] = STATE(2879), + [aux_sym_method_declaration_repeat2] = STATE(2143), + [anon_sym_SEMI] = ACTIONS(7625), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3101] = { + [sym__declaration_modifiers] = STATE(6384), + [sym_attribute_specifier] = STATE(6384), + [sym_attribute_declaration] = STATE(6384), + [sym_ms_declspec_modifier] = STATE(6384), + [sym_storage_class_specifier] = STATE(6384), + [sym_type_qualifier] = STATE(6384), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6384), + [aux_sym_declaration_repeat1] = STATE(3105), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7783), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3102] = { + [sym_attribute_specifier] = STATE(2979), + [sym_identifier] = ACTIONS(7785), + [anon_sym_COMMA] = ACTIONS(7787), + [anon_sym_RPAREN] = ACTIONS(7787), + [anon_sym_LPAREN2] = ACTIONS(7787), + [anon_sym_STAR] = ACTIONS(7787), + [anon_sym_CARET] = ACTIONS(7787), + [anon_sym_SEMI] = ACTIONS(7787), + [anon_sym___extension__] = ACTIONS(7785), + [anon_sym_extern] = ACTIONS(7785), + [anon_sym___attribute__] = ACTIONS(7789), + [anon_sym___attribute] = ACTIONS(7789), + [anon_sym_noreturn] = ACTIONS(7785), + [anon_sym_LBRACK] = ACTIONS(7787), + [anon_sym___declspec] = ACTIONS(7785), + [anon_sym___based] = ACTIONS(7785), + [anon_sym_static] = ACTIONS(7785), + [anon_sym_auto] = ACTIONS(7785), + [anon_sym_register] = ACTIONS(7785), + [anon_sym_inline] = ACTIONS(7785), + [anon_sym___inline] = ACTIONS(7785), + [anon_sym___inline__] = ACTIONS(7785), + [anon_sym___forceinline] = ACTIONS(7785), + [anon_sym_thread_local] = ACTIONS(7785), + [anon_sym___thread] = ACTIONS(7785), + [anon_sym_CG_EXTERN] = ACTIONS(7785), + [anon_sym_CG_INLINE] = ACTIONS(7785), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7785), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7785), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7785), + [anon_sym_IBOutlet] = ACTIONS(7785), + [anon_sym_IBInspectable] = ACTIONS(7785), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7785), + [anon_sym_NS_INLINE] = ACTIONS(7785), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7785), + [anon_sym_OBJC_EXPORT] = ACTIONS(7785), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7785), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7785), + [anon_sym_const] = ACTIONS(7785), + [anon_sym_constexpr] = ACTIONS(7785), + [anon_sym_volatile] = ACTIONS(7785), + [anon_sym_restrict] = ACTIONS(7785), + [anon_sym___restrict__] = ACTIONS(7785), + [anon_sym__Atomic] = ACTIONS(7785), + [anon_sym__Noreturn] = ACTIONS(7785), + [anon_sym__Nonnull] = ACTIONS(7785), + [anon_sym_nullable] = ACTIONS(7785), + [anon_sym__Complex] = ACTIONS(7785), + [anon_sym__Nullable] = ACTIONS(7785), + [anon_sym__Nullable_result] = ACTIONS(7785), + [anon_sym__Null_unspecified] = ACTIONS(7785), + [anon_sym___autoreleasing] = ACTIONS(7785), + [anon_sym___block] = ACTIONS(7785), + [anon_sym___bridge] = ACTIONS(7785), + [anon_sym___bridge_retained] = ACTIONS(7785), + [anon_sym___bridge_transfer] = ACTIONS(7785), + [anon_sym___complex] = ACTIONS(7785), + [anon_sym___const] = ACTIONS(7785), + [anon_sym___imag] = ACTIONS(7785), + [anon_sym___kindof] = ACTIONS(7785), + [anon_sym___nonnull] = ACTIONS(7785), + [anon_sym___nullable] = ACTIONS(7785), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7785), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7785), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7785), + [anon_sym___real] = ACTIONS(7785), + [anon_sym___strong] = ACTIONS(7785), + [anon_sym___unsafe_unretained] = ACTIONS(7785), + [anon_sym___unused] = ACTIONS(7785), + [anon_sym___weak] = ACTIONS(7785), + [anon_sym_alignas] = ACTIONS(7785), + [anon_sym__Alignas] = ACTIONS(7785), + [anon_sym_enum] = ACTIONS(7785), + [anon_sym_COLON] = ACTIONS(7787), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7785), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7785), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7785), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7785), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7785), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7785), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7785), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7785), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7785), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7785), + [anon_sym_NS_AVAILABLE] = ACTIONS(7785), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7785), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7785), + [anon_sym_API_AVAILABLE] = ACTIONS(7785), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7785), + [anon_sym_API_DEPRECATED] = ACTIONS(7785), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7785), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7785), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7785), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7785), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7785), + [anon_sym___deprecated_msg] = ACTIONS(7785), + [anon_sym___deprecated_enum_msg] = ACTIONS(7785), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7785), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7785), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7785), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7785), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7785), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7785), + }, + [3103] = { + [sym__declaration_modifiers] = STATE(6478), + [sym_attribute_specifier] = STATE(6478), + [sym_attribute_declaration] = STATE(6478), + [sym_ms_declspec_modifier] = STATE(6478), + [sym_storage_class_specifier] = STATE(6478), + [sym_type_qualifier] = STATE(6478), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6478), + [aux_sym_declaration_repeat1] = STATE(3111), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7792), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3104] = { + [sym__declaration_modifiers] = STATE(6482), + [sym_attribute_specifier] = STATE(6482), + [sym_attribute_declaration] = STATE(6482), + [sym_ms_declspec_modifier] = STATE(6482), + [sym_storage_class_specifier] = STATE(6482), + [sym_type_qualifier] = STATE(6482), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6482), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7794), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3105] = { + [sym__declaration_modifiers] = STATE(6486), + [sym_attribute_specifier] = STATE(6486), + [sym_attribute_declaration] = STATE(6486), + [sym_ms_declspec_modifier] = STATE(6486), + [sym_storage_class_specifier] = STATE(6486), + [sym_type_qualifier] = STATE(6486), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6486), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7796), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3106] = { + [sym__declaration_modifiers] = STATE(6487), + [sym_attribute_specifier] = STATE(6487), + [sym_attribute_declaration] = STATE(6487), + [sym_ms_declspec_modifier] = STATE(6487), + [sym_storage_class_specifier] = STATE(6487), + [sym_type_qualifier] = STATE(6487), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6487), + [aux_sym_declaration_repeat1] = STATE(3112), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7798), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3107] = { + [sym__declaration_modifiers] = STATE(6594), + [sym_attribute_specifier] = STATE(6594), + [sym_attribute_declaration] = STATE(6594), + [sym_ms_declspec_modifier] = STATE(6594), + [sym_storage_class_specifier] = STATE(6594), + [sym_type_qualifier] = STATE(6594), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6594), + [aux_sym_declaration_repeat1] = STATE(3128), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7800), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3108] = { + [sym__declaration_modifiers] = STATE(5927), + [sym_attribute_specifier] = STATE(5927), + [sym_attribute_declaration] = STATE(5927), + [sym_ms_declspec_modifier] = STATE(5927), + [sym_storage_class_specifier] = STATE(5927), + [sym_type_qualifier] = STATE(5927), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(5927), + [aux_sym__type_definition_declarators_repeat1] = STATE(3304), + [anon_sym_COMMA] = ACTIONS(7647), + [anon_sym_SEMI] = ACTIONS(7802), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3109] = { + [sym_attribute_specifier] = STATE(2989), + [sym_identifier] = ACTIONS(7804), + [anon_sym_COMMA] = ACTIONS(7806), + [anon_sym_RPAREN] = ACTIONS(7806), + [anon_sym_LPAREN2] = ACTIONS(7806), + [anon_sym_STAR] = ACTIONS(7806), + [anon_sym_CARET] = ACTIONS(7806), + [anon_sym_SEMI] = ACTIONS(7806), + [anon_sym___extension__] = ACTIONS(7804), + [anon_sym_extern] = ACTIONS(7804), + [anon_sym___attribute__] = ACTIONS(7808), + [anon_sym___attribute] = ACTIONS(7808), + [anon_sym_noreturn] = ACTIONS(7804), + [anon_sym_LBRACK] = ACTIONS(7806), + [anon_sym___declspec] = ACTIONS(7804), + [anon_sym___based] = ACTIONS(7804), + [anon_sym_static] = ACTIONS(7804), + [anon_sym_auto] = ACTIONS(7804), + [anon_sym_register] = ACTIONS(7804), + [anon_sym_inline] = ACTIONS(7804), + [anon_sym___inline] = ACTIONS(7804), + [anon_sym___inline__] = ACTIONS(7804), + [anon_sym___forceinline] = ACTIONS(7804), + [anon_sym_thread_local] = ACTIONS(7804), + [anon_sym___thread] = ACTIONS(7804), + [anon_sym_CG_EXTERN] = ACTIONS(7804), + [anon_sym_CG_INLINE] = ACTIONS(7804), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7804), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7804), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7804), + [anon_sym_IBOutlet] = ACTIONS(7804), + [anon_sym_IBInspectable] = ACTIONS(7804), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7804), + [anon_sym_NS_INLINE] = ACTIONS(7804), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7804), + [anon_sym_OBJC_EXPORT] = ACTIONS(7804), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7804), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7804), + [anon_sym_const] = ACTIONS(7804), + [anon_sym_constexpr] = ACTIONS(7804), + [anon_sym_volatile] = ACTIONS(7804), + [anon_sym_restrict] = ACTIONS(7804), + [anon_sym___restrict__] = ACTIONS(7804), + [anon_sym__Atomic] = ACTIONS(7804), + [anon_sym__Noreturn] = ACTIONS(7804), + [anon_sym__Nonnull] = ACTIONS(7804), + [anon_sym_nullable] = ACTIONS(7804), + [anon_sym__Complex] = ACTIONS(7804), + [anon_sym__Nullable] = ACTIONS(7804), + [anon_sym__Nullable_result] = ACTIONS(7804), + [anon_sym__Null_unspecified] = ACTIONS(7804), + [anon_sym___autoreleasing] = ACTIONS(7804), + [anon_sym___block] = ACTIONS(7804), + [anon_sym___bridge] = ACTIONS(7804), + [anon_sym___bridge_retained] = ACTIONS(7804), + [anon_sym___bridge_transfer] = ACTIONS(7804), + [anon_sym___complex] = ACTIONS(7804), + [anon_sym___const] = ACTIONS(7804), + [anon_sym___imag] = ACTIONS(7804), + [anon_sym___kindof] = ACTIONS(7804), + [anon_sym___nonnull] = ACTIONS(7804), + [anon_sym___nullable] = ACTIONS(7804), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7804), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7804), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7804), + [anon_sym___real] = ACTIONS(7804), + [anon_sym___strong] = ACTIONS(7804), + [anon_sym___unsafe_unretained] = ACTIONS(7804), + [anon_sym___unused] = ACTIONS(7804), + [anon_sym___weak] = ACTIONS(7804), + [anon_sym_alignas] = ACTIONS(7804), + [anon_sym__Alignas] = ACTIONS(7804), + [anon_sym_enum] = ACTIONS(7804), + [anon_sym_COLON] = ACTIONS(7806), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7804), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7804), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7804), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7804), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7804), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7804), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7804), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7804), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7804), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7804), + [anon_sym_NS_AVAILABLE] = ACTIONS(7804), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7804), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7804), + [anon_sym_API_AVAILABLE] = ACTIONS(7804), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7804), + [anon_sym_API_DEPRECATED] = ACTIONS(7804), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7804), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7804), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7804), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7804), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7804), + [anon_sym___deprecated_msg] = ACTIONS(7804), + [anon_sym___deprecated_enum_msg] = ACTIONS(7804), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7804), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7804), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7804), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7804), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7804), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7804), + }, + [3110] = { + [sym__declaration_modifiers] = STATE(6726), + [sym_attribute_specifier] = STATE(6726), + [sym_attribute_declaration] = STATE(6726), + [sym_ms_declspec_modifier] = STATE(6726), + [sym_storage_class_specifier] = STATE(6726), + [sym_type_qualifier] = STATE(6726), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6726), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7811), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3111] = { + [sym__declaration_modifiers] = STATE(6574), + [sym_attribute_specifier] = STATE(6574), + [sym_attribute_declaration] = STATE(6574), + [sym_ms_declspec_modifier] = STATE(6574), + [sym_storage_class_specifier] = STATE(6574), + [sym_type_qualifier] = STATE(6574), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6574), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7813), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3112] = { + [sym__declaration_modifiers] = STATE(6575), + [sym_attribute_specifier] = STATE(6575), + [sym_attribute_declaration] = STATE(6575), + [sym_ms_declspec_modifier] = STATE(6575), + [sym_storage_class_specifier] = STATE(6575), + [sym_type_qualifier] = STATE(6575), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6575), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7815), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3113] = { + [sym__declaration_modifiers] = STATE(6577), + [sym_attribute_specifier] = STATE(6577), + [sym_attribute_declaration] = STATE(6577), + [sym_ms_declspec_modifier] = STATE(6577), + [sym_storage_class_specifier] = STATE(6577), + [sym_type_qualifier] = STATE(6577), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6577), + [aux_sym_struct_declaration_repeat2] = STATE(3117), + [anon_sym_COMMA] = ACTIONS(7817), + [anon_sym_SEMI] = ACTIONS(7819), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3114] = { + [sym_attribute_specifier] = STATE(2993), + [sym_identifier] = ACTIONS(7821), + [anon_sym_COMMA] = ACTIONS(7823), + [anon_sym_RPAREN] = ACTIONS(7823), + [anon_sym_LPAREN2] = ACTIONS(7823), + [anon_sym_STAR] = ACTIONS(7823), + [anon_sym_CARET] = ACTIONS(7823), + [anon_sym_SEMI] = ACTIONS(7823), + [anon_sym___extension__] = ACTIONS(7821), + [anon_sym_extern] = ACTIONS(7821), + [anon_sym___attribute__] = ACTIONS(7825), + [anon_sym___attribute] = ACTIONS(7825), + [anon_sym_noreturn] = ACTIONS(7821), + [anon_sym_LBRACK] = ACTIONS(7823), + [anon_sym___declspec] = ACTIONS(7821), + [anon_sym___based] = ACTIONS(7821), + [anon_sym_static] = ACTIONS(7821), + [anon_sym_auto] = ACTIONS(7821), + [anon_sym_register] = ACTIONS(7821), + [anon_sym_inline] = ACTIONS(7821), + [anon_sym___inline] = ACTIONS(7821), + [anon_sym___inline__] = ACTIONS(7821), + [anon_sym___forceinline] = ACTIONS(7821), + [anon_sym_thread_local] = ACTIONS(7821), + [anon_sym___thread] = ACTIONS(7821), + [anon_sym_CG_EXTERN] = ACTIONS(7821), + [anon_sym_CG_INLINE] = ACTIONS(7821), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7821), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7821), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7821), + [anon_sym_IBOutlet] = ACTIONS(7821), + [anon_sym_IBInspectable] = ACTIONS(7821), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7821), + [anon_sym_NS_INLINE] = ACTIONS(7821), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7821), + [anon_sym_OBJC_EXPORT] = ACTIONS(7821), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7821), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7821), + [anon_sym_const] = ACTIONS(7821), + [anon_sym_constexpr] = ACTIONS(7821), + [anon_sym_volatile] = ACTIONS(7821), + [anon_sym_restrict] = ACTIONS(7821), + [anon_sym___restrict__] = ACTIONS(7821), + [anon_sym__Atomic] = ACTIONS(7821), + [anon_sym__Noreturn] = ACTIONS(7821), + [anon_sym__Nonnull] = ACTIONS(7821), + [anon_sym_nullable] = ACTIONS(7821), + [anon_sym__Complex] = ACTIONS(7821), + [anon_sym__Nullable] = ACTIONS(7821), + [anon_sym__Nullable_result] = ACTIONS(7821), + [anon_sym__Null_unspecified] = ACTIONS(7821), + [anon_sym___autoreleasing] = ACTIONS(7821), + [anon_sym___block] = ACTIONS(7821), + [anon_sym___bridge] = ACTIONS(7821), + [anon_sym___bridge_retained] = ACTIONS(7821), + [anon_sym___bridge_transfer] = ACTIONS(7821), + [anon_sym___complex] = ACTIONS(7821), + [anon_sym___const] = ACTIONS(7821), + [anon_sym___imag] = ACTIONS(7821), + [anon_sym___kindof] = ACTIONS(7821), + [anon_sym___nonnull] = ACTIONS(7821), + [anon_sym___nullable] = ACTIONS(7821), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7821), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7821), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7821), + [anon_sym___real] = ACTIONS(7821), + [anon_sym___strong] = ACTIONS(7821), + [anon_sym___unsafe_unretained] = ACTIONS(7821), + [anon_sym___unused] = ACTIONS(7821), + [anon_sym___weak] = ACTIONS(7821), + [anon_sym_alignas] = ACTIONS(7821), + [anon_sym__Alignas] = ACTIONS(7821), + [anon_sym_enum] = ACTIONS(7821), + [anon_sym_COLON] = ACTIONS(7823), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7821), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7821), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7821), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7821), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7821), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7821), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7821), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7821), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7821), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7821), + [anon_sym_NS_AVAILABLE] = ACTIONS(7821), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7821), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7821), + [anon_sym_API_AVAILABLE] = ACTIONS(7821), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7821), + [anon_sym_API_DEPRECATED] = ACTIONS(7821), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7821), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7821), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7821), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7821), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7821), + [anon_sym___deprecated_msg] = ACTIONS(7821), + [anon_sym___deprecated_enum_msg] = ACTIONS(7821), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7821), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7821), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7821), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7821), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7821), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7821), + }, + [3115] = { + [sym__declaration_modifiers] = STATE(6375), + [sym_attribute_specifier] = STATE(6375), + [sym_attribute_declaration] = STATE(6375), + [sym_ms_declspec_modifier] = STATE(6375), + [sym_storage_class_specifier] = STATE(6375), + [sym_type_qualifier] = STATE(6375), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6375), + [aux_sym_declaration_repeat1] = STATE(3110), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7828), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3116] = { + [sym__declaration_modifiers] = STATE(6393), + [sym_attribute_specifier] = STATE(6393), + [sym_attribute_declaration] = STATE(6393), + [sym_ms_declspec_modifier] = STATE(6393), + [sym_storage_class_specifier] = STATE(6393), + [sym_type_qualifier] = STATE(6393), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6393), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7830), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3117] = { + [sym__declaration_modifiers] = STATE(6631), + [sym_attribute_specifier] = STATE(6631), + [sym_attribute_declaration] = STATE(6631), + [sym_ms_declspec_modifier] = STATE(6631), + [sym_storage_class_specifier] = STATE(6631), + [sym_type_qualifier] = STATE(6631), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6631), + [aux_sym_struct_declaration_repeat2] = STATE(3291), + [anon_sym_COMMA] = ACTIONS(7817), + [anon_sym_SEMI] = ACTIONS(7832), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3118] = { + [sym__declaration_modifiers] = STATE(3187), + [sym_attribute_specifier] = STATE(3187), + [sym_attribute_declaration] = STATE(3187), + [sym_ms_declspec_modifier] = STATE(3187), + [sym_storage_class_specifier] = STATE(3187), + [sym_type_qualifier] = STATE(3187), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3187), + [aux_sym__declaration_specifiers_repeat1] = STATE(3187), + [aux_sym_method_declaration_repeat2] = STATE(2299), + [anon_sym_SEMI] = ACTIONS(7627), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3119] = { + [sym__declaration_modifiers] = STATE(6565), + [sym_attribute_specifier] = STATE(6565), + [sym_attribute_declaration] = STATE(6565), + [sym_ms_declspec_modifier] = STATE(6565), + [sym_storage_class_specifier] = STATE(6565), + [sym_type_qualifier] = STATE(6565), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6565), + [aux_sym_declaration_repeat1] = STATE(3147), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7834), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3120] = { + [sym__declaration_modifiers] = STATE(6133), + [sym_attribute_specifier] = STATE(6133), + [sym_attribute_declaration] = STATE(6133), + [sym_ms_declspec_modifier] = STATE(6133), + [sym_storage_class_specifier] = STATE(6133), + [sym_type_qualifier] = STATE(6133), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6133), + [aux_sym_declaration_repeat1] = STATE(3124), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7836), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3121] = { + [sym__declaration_modifiers] = STATE(3129), + [sym_attribute_specifier] = STATE(3129), + [sym_attribute_declaration] = STATE(3129), + [sym_ms_declspec_modifier] = STATE(3129), + [sym_storage_class_specifier] = STATE(3129), + [sym_type_qualifier] = STATE(3129), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3129), + [aux_sym__declaration_specifiers_repeat1] = STATE(3129), + [aux_sym_method_declaration_repeat2] = STATE(2174), + [anon_sym_SEMI] = ACTIONS(7619), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3122] = { + [sym__declaration_modifiers] = STATE(6236), + [sym_attribute_specifier] = STATE(6236), + [sym_attribute_declaration] = STATE(6236), + [sym_ms_declspec_modifier] = STATE(6236), + [sym_storage_class_specifier] = STATE(6236), + [sym_type_qualifier] = STATE(6236), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6236), + [aux_sym_declaration_repeat1] = STATE(3131), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7838), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3123] = { + [sym__declaration_modifiers] = STATE(6245), + [sym_attribute_specifier] = STATE(6245), + [sym_attribute_declaration] = STATE(6245), + [sym_ms_declspec_modifier] = STATE(6245), + [sym_storage_class_specifier] = STATE(6245), + [sym_type_qualifier] = STATE(6245), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6245), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7840), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3124] = { + [sym__declaration_modifiers] = STATE(6249), + [sym_attribute_specifier] = STATE(6249), + [sym_attribute_declaration] = STATE(6249), + [sym_ms_declspec_modifier] = STATE(6249), + [sym_storage_class_specifier] = STATE(6249), + [sym_type_qualifier] = STATE(6249), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6249), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7842), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3125] = { + [sym__declaration_modifiers] = STATE(6255), + [sym_attribute_specifier] = STATE(6255), + [sym_attribute_declaration] = STATE(6255), + [sym_ms_declspec_modifier] = STATE(6255), + [sym_storage_class_specifier] = STATE(6255), + [sym_type_qualifier] = STATE(6255), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6255), + [aux_sym_declaration_repeat1] = STATE(3132), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7844), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3126] = { + [sym__declaration_modifiers] = STATE(2879), + [sym_attribute_specifier] = STATE(2879), + [sym_attribute_declaration] = STATE(2879), + [sym_ms_declspec_modifier] = STATE(2879), + [sym_storage_class_specifier] = STATE(2879), + [sym_type_qualifier] = STATE(2879), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2879), + [aux_sym__declaration_specifiers_repeat1] = STATE(2879), + [aux_sym_method_declaration_repeat2] = STATE(2299), + [anon_sym_SEMI] = ACTIONS(7627), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3127] = { + [sym__declaration_modifiers] = STATE(6782), + [sym_attribute_specifier] = STATE(6782), + [sym_attribute_declaration] = STATE(6782), + [sym_ms_declspec_modifier] = STATE(6782), + [sym_storage_class_specifier] = STATE(6782), + [sym_type_qualifier] = STATE(6782), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6782), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7846), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3128] = { + [sym__declaration_modifiers] = STATE(6411), + [sym_attribute_specifier] = STATE(6411), + [sym_attribute_declaration] = STATE(6411), + [sym_ms_declspec_modifier] = STATE(6411), + [sym_storage_class_specifier] = STATE(6411), + [sym_type_qualifier] = STATE(6411), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6411), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7848), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3129] = { + [sym__declaration_modifiers] = STATE(2879), + [sym_attribute_specifier] = STATE(2879), + [sym_attribute_declaration] = STATE(2879), + [sym_ms_declspec_modifier] = STATE(2879), + [sym_storage_class_specifier] = STATE(2879), + [sym_type_qualifier] = STATE(2879), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2879), + [aux_sym__declaration_specifiers_repeat1] = STATE(2879), + [aux_sym_method_declaration_repeat2] = STATE(2195), + [anon_sym_SEMI] = ACTIONS(7629), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3130] = { + [sym__declaration_modifiers] = STATE(3200), + [sym_attribute_specifier] = STATE(3200), + [sym_attribute_declaration] = STATE(3200), + [sym_ms_declspec_modifier] = STATE(3200), + [sym_storage_class_specifier] = STATE(3200), + [sym_type_qualifier] = STATE(3200), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3200), + [aux_sym__declaration_specifiers_repeat1] = STATE(3200), + [aux_sym_method_declaration_repeat2] = STATE(2170), + [anon_sym_SEMI] = ACTIONS(7131), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3131] = { + [sym__declaration_modifiers] = STATE(6540), + [sym_attribute_specifier] = STATE(6540), + [sym_attribute_declaration] = STATE(6540), + [sym_ms_declspec_modifier] = STATE(6540), + [sym_storage_class_specifier] = STATE(6540), + [sym_type_qualifier] = STATE(6540), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6540), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7850), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3132] = { + [sym__declaration_modifiers] = STATE(6547), + [sym_attribute_specifier] = STATE(6547), + [sym_attribute_declaration] = STATE(6547), + [sym_ms_declspec_modifier] = STATE(6547), + [sym_storage_class_specifier] = STATE(6547), + [sym_type_qualifier] = STATE(6547), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6547), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7852), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3133] = { + [sym__declaration_modifiers] = STATE(6415), + [sym_attribute_specifier] = STATE(6415), + [sym_attribute_declaration] = STATE(6415), + [sym_ms_declspec_modifier] = STATE(6415), + [sym_storage_class_specifier] = STATE(6415), + [sym_type_qualifier] = STATE(6415), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6415), + [aux_sym_declaration_repeat1] = STATE(3127), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7854), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3134] = { + [sym__declaration_modifiers] = STATE(6271), + [sym_attribute_specifier] = STATE(6271), + [sym_attribute_declaration] = STATE(6271), + [sym_ms_declspec_modifier] = STATE(6271), + [sym_storage_class_specifier] = STATE(6271), + [sym_type_qualifier] = STATE(6271), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6271), + [aux_sym_declaration_repeat1] = STATE(3137), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7856), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3135] = { + [sym__declaration_modifiers] = STATE(6363), + [sym_attribute_specifier] = STATE(6363), + [sym_attribute_declaration] = STATE(6363), + [sym_ms_declspec_modifier] = STATE(6363), + [sym_storage_class_specifier] = STATE(6363), + [sym_type_qualifier] = STATE(6363), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6363), + [aux_sym_declaration_repeat1] = STATE(3141), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7858), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3136] = { + [sym__declaration_modifiers] = STATE(6367), + [sym_attribute_specifier] = STATE(6367), + [sym_attribute_declaration] = STATE(6367), + [sym_ms_declspec_modifier] = STATE(6367), + [sym_storage_class_specifier] = STATE(6367), + [sym_type_qualifier] = STATE(6367), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6367), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7860), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3137] = { + [sym__declaration_modifiers] = STATE(6386), + [sym_attribute_specifier] = STATE(6386), + [sym_attribute_declaration] = STATE(6386), + [sym_ms_declspec_modifier] = STATE(6386), + [sym_storage_class_specifier] = STATE(6386), + [sym_type_qualifier] = STATE(6386), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6386), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7862), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3138] = { + [sym__declaration_modifiers] = STATE(6390), + [sym_attribute_specifier] = STATE(6390), + [sym_attribute_declaration] = STATE(6390), + [sym_ms_declspec_modifier] = STATE(6390), + [sym_storage_class_specifier] = STATE(6390), + [sym_type_qualifier] = STATE(6390), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6390), + [aux_sym_declaration_repeat1] = STATE(3142), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7864), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3139] = { + [sym__declaration_modifiers] = STATE(6303), + [sym_attribute_specifier] = STATE(6303), + [sym_attribute_declaration] = STATE(6303), + [sym_ms_declspec_modifier] = STATE(6303), + [sym_storage_class_specifier] = STATE(6303), + [sym_type_qualifier] = STATE(6303), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6303), + [aux_sym_declaration_repeat1] = STATE(3188), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7866), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3140] = { + [sym__declaration_modifiers] = STATE(6313), + [sym_attribute_specifier] = STATE(6313), + [sym_attribute_declaration] = STATE(6313), + [sym_ms_declspec_modifier] = STATE(6313), + [sym_storage_class_specifier] = STATE(6313), + [sym_type_qualifier] = STATE(6313), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6313), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7868), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3141] = { + [sym__declaration_modifiers] = STATE(6457), + [sym_attribute_specifier] = STATE(6457), + [sym_attribute_declaration] = STATE(6457), + [sym_ms_declspec_modifier] = STATE(6457), + [sym_storage_class_specifier] = STATE(6457), + [sym_type_qualifier] = STATE(6457), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6457), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7870), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3142] = { + [sym__declaration_modifiers] = STATE(6458), + [sym_attribute_specifier] = STATE(6458), + [sym_attribute_declaration] = STATE(6458), + [sym_ms_declspec_modifier] = STATE(6458), + [sym_storage_class_specifier] = STATE(6458), + [sym_type_qualifier] = STATE(6458), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6458), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7872), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3143] = { + [sym__declaration_modifiers] = STATE(6677), + [sym_attribute_specifier] = STATE(6677), + [sym_attribute_declaration] = STATE(6677), + [sym_ms_declspec_modifier] = STATE(6677), + [sym_storage_class_specifier] = STATE(6677), + [sym_type_qualifier] = STATE(6677), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6677), + [aux_sym_declaration_repeat1] = STATE(3099), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7874), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3144] = { + [sym__declaration_modifiers] = STATE(6763), + [sym_attribute_specifier] = STATE(6763), + [sym_attribute_declaration] = STATE(6763), + [sym_ms_declspec_modifier] = STATE(6763), + [sym_storage_class_specifier] = STATE(6763), + [sym_type_qualifier] = STATE(6763), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6763), + [aux_sym_declaration_repeat1] = STATE(3148), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7876), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3145] = { + [sym__declaration_modifiers] = STATE(6771), + [sym_attribute_specifier] = STATE(6771), + [sym_attribute_declaration] = STATE(6771), + [sym_ms_declspec_modifier] = STATE(6771), + [sym_storage_class_specifier] = STATE(6771), + [sym_type_qualifier] = STATE(6771), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6771), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7878), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3146] = { + [sym__declaration_modifiers] = STATE(6783), + [sym_attribute_specifier] = STATE(6783), + [sym_attribute_declaration] = STATE(6783), + [sym_ms_declspec_modifier] = STATE(6783), + [sym_storage_class_specifier] = STATE(6783), + [sym_type_qualifier] = STATE(6783), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6783), + [aux_sym_declaration_repeat1] = STATE(3149), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7880), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3147] = { + [sym__declaration_modifiers] = STATE(6319), + [sym_attribute_specifier] = STATE(6319), + [sym_attribute_declaration] = STATE(6319), + [sym_ms_declspec_modifier] = STATE(6319), + [sym_storage_class_specifier] = STATE(6319), + [sym_type_qualifier] = STATE(6319), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6319), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7882), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3148] = { + [sym__declaration_modifiers] = STATE(5909), + [sym_attribute_specifier] = STATE(5909), + [sym_attribute_declaration] = STATE(5909), + [sym_ms_declspec_modifier] = STATE(5909), + [sym_storage_class_specifier] = STATE(5909), + [sym_type_qualifier] = STATE(5909), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(5909), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7884), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3149] = { + [sym__declaration_modifiers] = STATE(5912), + [sym_attribute_specifier] = STATE(5912), + [sym_attribute_declaration] = STATE(5912), + [sym_ms_declspec_modifier] = STATE(5912), + [sym_storage_class_specifier] = STATE(5912), + [sym_type_qualifier] = STATE(5912), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(5912), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7886), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3150] = { + [sym__declaration_modifiers] = STATE(5973), + [sym_attribute_specifier] = STATE(5973), + [sym_attribute_declaration] = STATE(5973), + [sym_ms_declspec_modifier] = STATE(5973), + [sym_storage_class_specifier] = STATE(5973), + [sym_type_qualifier] = STATE(5973), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(5973), + [aux_sym_declaration_repeat1] = STATE(3153), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7888), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3151] = { + [sym__declaration_modifiers] = STATE(5993), + [sym_attribute_specifier] = STATE(5993), + [sym_attribute_declaration] = STATE(5993), + [sym_ms_declspec_modifier] = STATE(5993), + [sym_storage_class_specifier] = STATE(5993), + [sym_type_qualifier] = STATE(5993), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(5993), + [aux_sym_declaration_repeat1] = STATE(3155), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7890), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3152] = { + [sym__declaration_modifiers] = STATE(5995), + [sym_attribute_specifier] = STATE(5995), + [sym_attribute_declaration] = STATE(5995), + [sym_ms_declspec_modifier] = STATE(5995), + [sym_storage_class_specifier] = STATE(5995), + [sym_type_qualifier] = STATE(5995), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(5995), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7892), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3153] = { + [sym__declaration_modifiers] = STATE(5996), + [sym_attribute_specifier] = STATE(5996), + [sym_attribute_declaration] = STATE(5996), + [sym_ms_declspec_modifier] = STATE(5996), + [sym_storage_class_specifier] = STATE(5996), + [sym_type_qualifier] = STATE(5996), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(5996), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7894), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3154] = { + [sym__declaration_modifiers] = STATE(6003), + [sym_attribute_specifier] = STATE(6003), + [sym_attribute_declaration] = STATE(6003), + [sym_ms_declspec_modifier] = STATE(6003), + [sym_storage_class_specifier] = STATE(6003), + [sym_type_qualifier] = STATE(6003), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6003), + [aux_sym_declaration_repeat1] = STATE(3156), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7896), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3155] = { + [sym__declaration_modifiers] = STATE(6018), + [sym_attribute_specifier] = STATE(6018), + [sym_attribute_declaration] = STATE(6018), + [sym_ms_declspec_modifier] = STATE(6018), + [sym_storage_class_specifier] = STATE(6018), + [sym_type_qualifier] = STATE(6018), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6018), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7898), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3156] = { + [sym__declaration_modifiers] = STATE(6019), + [sym_attribute_specifier] = STATE(6019), + [sym_attribute_declaration] = STATE(6019), + [sym_ms_declspec_modifier] = STATE(6019), + [sym_storage_class_specifier] = STATE(6019), + [sym_type_qualifier] = STATE(6019), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6019), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7900), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3157] = { + [sym__declaration_modifiers] = STATE(6067), + [sym_attribute_specifier] = STATE(6067), + [sym_attribute_declaration] = STATE(6067), + [sym_ms_declspec_modifier] = STATE(6067), + [sym_storage_class_specifier] = STATE(6067), + [sym_type_qualifier] = STATE(6067), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6067), + [aux_sym_declaration_repeat1] = STATE(3160), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7902), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3158] = { + [sym__declaration_modifiers] = STATE(6082), + [sym_attribute_specifier] = STATE(6082), + [sym_attribute_declaration] = STATE(6082), + [sym_ms_declspec_modifier] = STATE(6082), + [sym_storage_class_specifier] = STATE(6082), + [sym_type_qualifier] = STATE(6082), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6082), + [aux_sym_declaration_repeat1] = STATE(3162), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7904), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3159] = { + [sym__declaration_modifiers] = STATE(6085), + [sym_attribute_specifier] = STATE(6085), + [sym_attribute_declaration] = STATE(6085), + [sym_ms_declspec_modifier] = STATE(6085), + [sym_storage_class_specifier] = STATE(6085), + [sym_type_qualifier] = STATE(6085), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6085), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7906), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3160] = { + [sym__declaration_modifiers] = STATE(6091), + [sym_attribute_specifier] = STATE(6091), + [sym_attribute_declaration] = STATE(6091), + [sym_ms_declspec_modifier] = STATE(6091), + [sym_storage_class_specifier] = STATE(6091), + [sym_type_qualifier] = STATE(6091), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6091), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7908), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3161] = { + [sym__declaration_modifiers] = STATE(6096), + [sym_attribute_specifier] = STATE(6096), + [sym_attribute_declaration] = STATE(6096), + [sym_ms_declspec_modifier] = STATE(6096), + [sym_storage_class_specifier] = STATE(6096), + [sym_type_qualifier] = STATE(6096), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6096), + [aux_sym_declaration_repeat1] = STATE(3163), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7910), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3162] = { + [sym__declaration_modifiers] = STATE(6106), + [sym_attribute_specifier] = STATE(6106), + [sym_attribute_declaration] = STATE(6106), + [sym_ms_declspec_modifier] = STATE(6106), + [sym_storage_class_specifier] = STATE(6106), + [sym_type_qualifier] = STATE(6106), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6106), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7912), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3163] = { + [sym__declaration_modifiers] = STATE(6110), + [sym_attribute_specifier] = STATE(6110), + [sym_attribute_declaration] = STATE(6110), + [sym_ms_declspec_modifier] = STATE(6110), + [sym_storage_class_specifier] = STATE(6110), + [sym_type_qualifier] = STATE(6110), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6110), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7914), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3164] = { + [sym__declaration_modifiers] = STATE(6134), + [sym_attribute_specifier] = STATE(6134), + [sym_attribute_declaration] = STATE(6134), + [sym_ms_declspec_modifier] = STATE(6134), + [sym_storage_class_specifier] = STATE(6134), + [sym_type_qualifier] = STATE(6134), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6134), + [aux_sym_declaration_repeat1] = STATE(3167), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7916), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3165] = { + [sym__declaration_modifiers] = STATE(6144), + [sym_attribute_specifier] = STATE(6144), + [sym_attribute_declaration] = STATE(6144), + [sym_ms_declspec_modifier] = STATE(6144), + [sym_storage_class_specifier] = STATE(6144), + [sym_type_qualifier] = STATE(6144), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6144), + [aux_sym_declaration_repeat1] = STATE(3169), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7918), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3166] = { + [sym__declaration_modifiers] = STATE(6146), + [sym_attribute_specifier] = STATE(6146), + [sym_attribute_declaration] = STATE(6146), + [sym_ms_declspec_modifier] = STATE(6146), + [sym_storage_class_specifier] = STATE(6146), + [sym_type_qualifier] = STATE(6146), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6146), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7920), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3167] = { + [sym__declaration_modifiers] = STATE(6147), + [sym_attribute_specifier] = STATE(6147), + [sym_attribute_declaration] = STATE(6147), + [sym_ms_declspec_modifier] = STATE(6147), + [sym_storage_class_specifier] = STATE(6147), + [sym_type_qualifier] = STATE(6147), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6147), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7922), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3168] = { + [sym__declaration_modifiers] = STATE(6148), + [sym_attribute_specifier] = STATE(6148), + [sym_attribute_declaration] = STATE(6148), + [sym_ms_declspec_modifier] = STATE(6148), + [sym_storage_class_specifier] = STATE(6148), + [sym_type_qualifier] = STATE(6148), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6148), + [aux_sym_declaration_repeat1] = STATE(3170), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7924), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3169] = { + [sym__declaration_modifiers] = STATE(6155), + [sym_attribute_specifier] = STATE(6155), + [sym_attribute_declaration] = STATE(6155), + [sym_ms_declspec_modifier] = STATE(6155), + [sym_storage_class_specifier] = STATE(6155), + [sym_type_qualifier] = STATE(6155), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6155), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7926), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3170] = { + [sym__declaration_modifiers] = STATE(6156), + [sym_attribute_specifier] = STATE(6156), + [sym_attribute_declaration] = STATE(6156), + [sym_ms_declspec_modifier] = STATE(6156), + [sym_storage_class_specifier] = STATE(6156), + [sym_type_qualifier] = STATE(6156), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6156), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7928), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3171] = { + [sym__declaration_modifiers] = STATE(6696), + [sym_attribute_specifier] = STATE(6696), + [sym_attribute_declaration] = STATE(6696), + [sym_ms_declspec_modifier] = STATE(6696), + [sym_storage_class_specifier] = STATE(6696), + [sym_type_qualifier] = STATE(6696), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6696), + [aux_sym_struct_declaration_repeat2] = STATE(3197), + [anon_sym_COMMA] = ACTIONS(7817), + [anon_sym_SEMI] = ACTIONS(7930), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3172] = { + [sym__declaration_modifiers] = STATE(6200), + [sym_attribute_specifier] = STATE(6200), + [sym_attribute_declaration] = STATE(6200), + [sym_ms_declspec_modifier] = STATE(6200), + [sym_storage_class_specifier] = STATE(6200), + [sym_type_qualifier] = STATE(6200), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6200), + [aux_sym_declaration_repeat1] = STATE(3175), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7932), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3173] = { + [sym__declaration_modifiers] = STATE(6204), + [sym_attribute_specifier] = STATE(6204), + [sym_attribute_declaration] = STATE(6204), + [sym_ms_declspec_modifier] = STATE(6204), + [sym_storage_class_specifier] = STATE(6204), + [sym_type_qualifier] = STATE(6204), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6204), + [aux_sym_declaration_repeat1] = STATE(3177), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7934), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3174] = { + [sym__declaration_modifiers] = STATE(6207), + [sym_attribute_specifier] = STATE(6207), + [sym_attribute_declaration] = STATE(6207), + [sym_ms_declspec_modifier] = STATE(6207), + [sym_storage_class_specifier] = STATE(6207), + [sym_type_qualifier] = STATE(6207), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6207), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7936), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3175] = { + [sym__declaration_modifiers] = STATE(6208), + [sym_attribute_specifier] = STATE(6208), + [sym_attribute_declaration] = STATE(6208), + [sym_ms_declspec_modifier] = STATE(6208), + [sym_storage_class_specifier] = STATE(6208), + [sym_type_qualifier] = STATE(6208), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6208), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7938), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3176] = { + [sym__declaration_modifiers] = STATE(6209), + [sym_attribute_specifier] = STATE(6209), + [sym_attribute_declaration] = STATE(6209), + [sym_ms_declspec_modifier] = STATE(6209), + [sym_storage_class_specifier] = STATE(6209), + [sym_type_qualifier] = STATE(6209), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6209), + [aux_sym_declaration_repeat1] = STATE(3178), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7940), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3177] = { + [sym__declaration_modifiers] = STATE(6214), + [sym_attribute_specifier] = STATE(6214), + [sym_attribute_declaration] = STATE(6214), + [sym_ms_declspec_modifier] = STATE(6214), + [sym_storage_class_specifier] = STATE(6214), + [sym_type_qualifier] = STATE(6214), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6214), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7942), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3178] = { + [sym__declaration_modifiers] = STATE(6215), + [sym_attribute_specifier] = STATE(6215), + [sym_attribute_declaration] = STATE(6215), + [sym_ms_declspec_modifier] = STATE(6215), + [sym_storage_class_specifier] = STATE(6215), + [sym_type_qualifier] = STATE(6215), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6215), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7944), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3179] = { + [sym_attribute_specifier] = STATE(3018), + [sym_identifier] = ACTIONS(7946), + [anon_sym_COMMA] = ACTIONS(7948), + [anon_sym_RPAREN] = ACTIONS(7948), + [anon_sym_LPAREN2] = ACTIONS(7948), + [anon_sym_STAR] = ACTIONS(7948), + [anon_sym_CARET] = ACTIONS(7948), + [anon_sym_SEMI] = ACTIONS(7948), + [anon_sym___extension__] = ACTIONS(7946), + [anon_sym_extern] = ACTIONS(7946), + [anon_sym___attribute__] = ACTIONS(7950), + [anon_sym___attribute] = ACTIONS(7950), + [anon_sym_noreturn] = ACTIONS(7946), + [anon_sym_LBRACK] = ACTIONS(7948), + [anon_sym___declspec] = ACTIONS(7946), + [anon_sym___based] = ACTIONS(7946), + [anon_sym_static] = ACTIONS(7946), + [anon_sym_auto] = ACTIONS(7946), + [anon_sym_register] = ACTIONS(7946), + [anon_sym_inline] = ACTIONS(7946), + [anon_sym___inline] = ACTIONS(7946), + [anon_sym___inline__] = ACTIONS(7946), + [anon_sym___forceinline] = ACTIONS(7946), + [anon_sym_thread_local] = ACTIONS(7946), + [anon_sym___thread] = ACTIONS(7946), + [anon_sym_CG_EXTERN] = ACTIONS(7946), + [anon_sym_CG_INLINE] = ACTIONS(7946), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7946), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7946), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7946), + [anon_sym_IBOutlet] = ACTIONS(7946), + [anon_sym_IBInspectable] = ACTIONS(7946), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7946), + [anon_sym_NS_INLINE] = ACTIONS(7946), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7946), + [anon_sym_OBJC_EXPORT] = ACTIONS(7946), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7946), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7946), + [anon_sym_const] = ACTIONS(7946), + [anon_sym_constexpr] = ACTIONS(7946), + [anon_sym_volatile] = ACTIONS(7946), + [anon_sym_restrict] = ACTIONS(7946), + [anon_sym___restrict__] = ACTIONS(7946), + [anon_sym__Atomic] = ACTIONS(7946), + [anon_sym__Noreturn] = ACTIONS(7946), + [anon_sym__Nonnull] = ACTIONS(7946), + [anon_sym_nullable] = ACTIONS(7946), + [anon_sym__Complex] = ACTIONS(7946), + [anon_sym__Nullable] = ACTIONS(7946), + [anon_sym__Nullable_result] = ACTIONS(7946), + [anon_sym__Null_unspecified] = ACTIONS(7946), + [anon_sym___autoreleasing] = ACTIONS(7946), + [anon_sym___block] = ACTIONS(7946), + [anon_sym___bridge] = ACTIONS(7946), + [anon_sym___bridge_retained] = ACTIONS(7946), + [anon_sym___bridge_transfer] = ACTIONS(7946), + [anon_sym___complex] = ACTIONS(7946), + [anon_sym___const] = ACTIONS(7946), + [anon_sym___imag] = ACTIONS(7946), + [anon_sym___kindof] = ACTIONS(7946), + [anon_sym___nonnull] = ACTIONS(7946), + [anon_sym___nullable] = ACTIONS(7946), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7946), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7946), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7946), + [anon_sym___real] = ACTIONS(7946), + [anon_sym___strong] = ACTIONS(7946), + [anon_sym___unsafe_unretained] = ACTIONS(7946), + [anon_sym___unused] = ACTIONS(7946), + [anon_sym___weak] = ACTIONS(7946), + [anon_sym_alignas] = ACTIONS(7946), + [anon_sym__Alignas] = ACTIONS(7946), + [anon_sym_enum] = ACTIONS(7946), + [anon_sym_COLON] = ACTIONS(7948), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7946), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7946), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7946), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7946), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7946), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7946), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7946), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7946), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7946), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7946), + [anon_sym_NS_AVAILABLE] = ACTIONS(7946), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7946), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7946), + [anon_sym_API_AVAILABLE] = ACTIONS(7946), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7946), + [anon_sym_API_DEPRECATED] = ACTIONS(7946), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7946), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7946), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7946), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7946), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7946), + [anon_sym___deprecated_msg] = ACTIONS(7946), + [anon_sym___deprecated_enum_msg] = ACTIONS(7946), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7946), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7946), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7946), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7946), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7946), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7946), + }, + [3180] = { + [sym__declaration_modifiers] = STATE(2879), + [sym_attribute_specifier] = STATE(2879), + [sym_attribute_declaration] = STATE(2879), + [sym_ms_declspec_modifier] = STATE(2879), + [sym_storage_class_specifier] = STATE(2879), + [sym_type_qualifier] = STATE(2879), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2879), + [aux_sym__declaration_specifiers_repeat1] = STATE(2879), + [aux_sym_method_declaration_repeat2] = STATE(2174), + [anon_sym_SEMI] = ACTIONS(7619), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3181] = { + [sym__declaration_modifiers] = STATE(2879), + [sym_attribute_specifier] = STATE(2879), + [sym_attribute_declaration] = STATE(2879), + [sym_ms_declspec_modifier] = STATE(2879), + [sym_storage_class_specifier] = STATE(2879), + [sym_type_qualifier] = STATE(2879), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2879), + [aux_sym__declaration_specifiers_repeat1] = STATE(2879), + [aux_sym_method_declaration_repeat2] = STATE(2349), + [anon_sym_SEMI] = ACTIONS(7083), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3182] = { + [sym_attribute_specifier] = STATE(3006), + [sym_identifier] = ACTIONS(7953), + [anon_sym_COMMA] = ACTIONS(7955), + [anon_sym_RPAREN] = ACTIONS(7955), + [anon_sym_LPAREN2] = ACTIONS(7955), + [anon_sym_STAR] = ACTIONS(7955), + [anon_sym_CARET] = ACTIONS(7955), + [anon_sym_SEMI] = ACTIONS(7955), + [anon_sym___extension__] = ACTIONS(7953), + [anon_sym_extern] = ACTIONS(7953), + [anon_sym___attribute__] = ACTIONS(7957), + [anon_sym___attribute] = ACTIONS(7957), + [anon_sym_noreturn] = ACTIONS(7953), + [anon_sym_LBRACK] = ACTIONS(7955), + [anon_sym___declspec] = ACTIONS(7953), + [anon_sym___based] = ACTIONS(7953), + [anon_sym_static] = ACTIONS(7953), + [anon_sym_auto] = ACTIONS(7953), + [anon_sym_register] = ACTIONS(7953), + [anon_sym_inline] = ACTIONS(7953), + [anon_sym___inline] = ACTIONS(7953), + [anon_sym___inline__] = ACTIONS(7953), + [anon_sym___forceinline] = ACTIONS(7953), + [anon_sym_thread_local] = ACTIONS(7953), + [anon_sym___thread] = ACTIONS(7953), + [anon_sym_CG_EXTERN] = ACTIONS(7953), + [anon_sym_CG_INLINE] = ACTIONS(7953), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7953), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7953), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7953), + [anon_sym_IBOutlet] = ACTIONS(7953), + [anon_sym_IBInspectable] = ACTIONS(7953), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7953), + [anon_sym_NS_INLINE] = ACTIONS(7953), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7953), + [anon_sym_OBJC_EXPORT] = ACTIONS(7953), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7953), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7953), + [anon_sym_const] = ACTIONS(7953), + [anon_sym_constexpr] = ACTIONS(7953), + [anon_sym_volatile] = ACTIONS(7953), + [anon_sym_restrict] = ACTIONS(7953), + [anon_sym___restrict__] = ACTIONS(7953), + [anon_sym__Atomic] = ACTIONS(7953), + [anon_sym__Noreturn] = ACTIONS(7953), + [anon_sym__Nonnull] = ACTIONS(7953), + [anon_sym_nullable] = ACTIONS(7953), + [anon_sym__Complex] = ACTIONS(7953), + [anon_sym__Nullable] = ACTIONS(7953), + [anon_sym__Nullable_result] = ACTIONS(7953), + [anon_sym__Null_unspecified] = ACTIONS(7953), + [anon_sym___autoreleasing] = ACTIONS(7953), + [anon_sym___block] = ACTIONS(7953), + [anon_sym___bridge] = ACTIONS(7953), + [anon_sym___bridge_retained] = ACTIONS(7953), + [anon_sym___bridge_transfer] = ACTIONS(7953), + [anon_sym___complex] = ACTIONS(7953), + [anon_sym___const] = ACTIONS(7953), + [anon_sym___imag] = ACTIONS(7953), + [anon_sym___kindof] = ACTIONS(7953), + [anon_sym___nonnull] = ACTIONS(7953), + [anon_sym___nullable] = ACTIONS(7953), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7953), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7953), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7953), + [anon_sym___real] = ACTIONS(7953), + [anon_sym___strong] = ACTIONS(7953), + [anon_sym___unsafe_unretained] = ACTIONS(7953), + [anon_sym___unused] = ACTIONS(7953), + [anon_sym___weak] = ACTIONS(7953), + [anon_sym_alignas] = ACTIONS(7953), + [anon_sym__Alignas] = ACTIONS(7953), + [anon_sym_enum] = ACTIONS(7953), + [anon_sym_COLON] = ACTIONS(7955), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7953), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7953), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7953), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7953), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7953), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7953), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7953), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7953), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7953), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7953), + [anon_sym_NS_AVAILABLE] = ACTIONS(7953), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7953), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7953), + [anon_sym_API_AVAILABLE] = ACTIONS(7953), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7953), + [anon_sym_API_DEPRECATED] = ACTIONS(7953), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7953), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7953), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7953), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7953), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7953), + [anon_sym___deprecated_msg] = ACTIONS(7953), + [anon_sym___deprecated_enum_msg] = ACTIONS(7953), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7953), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7953), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7953), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7953), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7953), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7953), + }, + [3183] = { + [sym_attribute_specifier] = STATE(3009), + [sym_identifier] = ACTIONS(7960), + [anon_sym_COMMA] = ACTIONS(7962), + [anon_sym_RPAREN] = ACTIONS(7962), + [anon_sym_LPAREN2] = ACTIONS(7962), + [anon_sym_STAR] = ACTIONS(7962), + [anon_sym_CARET] = ACTIONS(7962), + [anon_sym_SEMI] = ACTIONS(7962), + [anon_sym___extension__] = ACTIONS(7960), + [anon_sym_extern] = ACTIONS(7960), + [anon_sym___attribute__] = ACTIONS(7964), + [anon_sym___attribute] = ACTIONS(7964), + [anon_sym_noreturn] = ACTIONS(7960), + [anon_sym_LBRACK] = ACTIONS(7962), + [anon_sym___declspec] = ACTIONS(7960), + [anon_sym___based] = ACTIONS(7960), + [anon_sym_static] = ACTIONS(7960), + [anon_sym_auto] = ACTIONS(7960), + [anon_sym_register] = ACTIONS(7960), + [anon_sym_inline] = ACTIONS(7960), + [anon_sym___inline] = ACTIONS(7960), + [anon_sym___inline__] = ACTIONS(7960), + [anon_sym___forceinline] = ACTIONS(7960), + [anon_sym_thread_local] = ACTIONS(7960), + [anon_sym___thread] = ACTIONS(7960), + [anon_sym_CG_EXTERN] = ACTIONS(7960), + [anon_sym_CG_INLINE] = ACTIONS(7960), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7960), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7960), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7960), + [anon_sym_IBOutlet] = ACTIONS(7960), + [anon_sym_IBInspectable] = ACTIONS(7960), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7960), + [anon_sym_NS_INLINE] = ACTIONS(7960), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7960), + [anon_sym_OBJC_EXPORT] = ACTIONS(7960), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7960), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7960), + [anon_sym_const] = ACTIONS(7960), + [anon_sym_constexpr] = ACTIONS(7960), + [anon_sym_volatile] = ACTIONS(7960), + [anon_sym_restrict] = ACTIONS(7960), + [anon_sym___restrict__] = ACTIONS(7960), + [anon_sym__Atomic] = ACTIONS(7960), + [anon_sym__Noreturn] = ACTIONS(7960), + [anon_sym__Nonnull] = ACTIONS(7960), + [anon_sym_nullable] = ACTIONS(7960), + [anon_sym__Complex] = ACTIONS(7960), + [anon_sym__Nullable] = ACTIONS(7960), + [anon_sym__Nullable_result] = ACTIONS(7960), + [anon_sym__Null_unspecified] = ACTIONS(7960), + [anon_sym___autoreleasing] = ACTIONS(7960), + [anon_sym___block] = ACTIONS(7960), + [anon_sym___bridge] = ACTIONS(7960), + [anon_sym___bridge_retained] = ACTIONS(7960), + [anon_sym___bridge_transfer] = ACTIONS(7960), + [anon_sym___complex] = ACTIONS(7960), + [anon_sym___const] = ACTIONS(7960), + [anon_sym___imag] = ACTIONS(7960), + [anon_sym___kindof] = ACTIONS(7960), + [anon_sym___nonnull] = ACTIONS(7960), + [anon_sym___nullable] = ACTIONS(7960), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7960), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7960), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7960), + [anon_sym___real] = ACTIONS(7960), + [anon_sym___strong] = ACTIONS(7960), + [anon_sym___unsafe_unretained] = ACTIONS(7960), + [anon_sym___unused] = ACTIONS(7960), + [anon_sym___weak] = ACTIONS(7960), + [anon_sym_alignas] = ACTIONS(7960), + [anon_sym__Alignas] = ACTIONS(7960), + [anon_sym_enum] = ACTIONS(7960), + [anon_sym_COLON] = ACTIONS(7962), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7960), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7960), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7960), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7960), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7960), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7960), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7960), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7960), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7960), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7960), + [anon_sym_NS_AVAILABLE] = ACTIONS(7960), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7960), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7960), + [anon_sym_API_AVAILABLE] = ACTIONS(7960), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7960), + [anon_sym_API_DEPRECATED] = ACTIONS(7960), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7960), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7960), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7960), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7960), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7960), + [anon_sym___deprecated_msg] = ACTIONS(7960), + [anon_sym___deprecated_enum_msg] = ACTIONS(7960), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7960), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7960), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7960), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7960), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7960), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7960), + }, + [3184] = { + [sym__declaration_modifiers] = STATE(3126), + [sym_attribute_specifier] = STATE(3126), + [sym_attribute_declaration] = STATE(3126), + [sym_ms_declspec_modifier] = STATE(3126), + [sym_storage_class_specifier] = STATE(3126), + [sym_type_qualifier] = STATE(3126), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3126), + [aux_sym__declaration_specifiers_repeat1] = STATE(3126), + [aux_sym_method_declaration_repeat2] = STATE(2349), + [anon_sym_SEMI] = ACTIONS(7083), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3185] = { + [sym__declaration_modifiers] = STATE(3180), + [sym_attribute_specifier] = STATE(3180), + [sym_attribute_declaration] = STATE(3180), + [sym_ms_declspec_modifier] = STATE(3180), + [sym_storage_class_specifier] = STATE(3180), + [sym_type_qualifier] = STATE(3180), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3180), + [aux_sym__declaration_specifiers_repeat1] = STATE(3180), + [aux_sym_method_declaration_repeat2] = STATE(2149), + [anon_sym_SEMI] = ACTIONS(7677), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3186] = { + [sym__declaration_modifiers] = STATE(3100), + [sym_attribute_specifier] = STATE(3100), + [sym_attribute_declaration] = STATE(3100), + [sym_ms_declspec_modifier] = STATE(3100), + [sym_storage_class_specifier] = STATE(3100), + [sym_type_qualifier] = STATE(3100), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3100), + [aux_sym__declaration_specifiers_repeat1] = STATE(3100), + [aux_sym_method_declaration_repeat2] = STATE(2142), + [anon_sym_SEMI] = ACTIONS(7095), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3187] = { + [sym__declaration_modifiers] = STATE(2879), + [sym_attribute_specifier] = STATE(2879), + [sym_attribute_declaration] = STATE(2879), + [sym_ms_declspec_modifier] = STATE(2879), + [sym_storage_class_specifier] = STATE(2879), + [sym_type_qualifier] = STATE(2879), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2879), + [aux_sym__declaration_specifiers_repeat1] = STATE(2879), + [aux_sym_method_declaration_repeat2] = STATE(2320), + [anon_sym_SEMI] = ACTIONS(7621), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3188] = { + [sym__declaration_modifiers] = STATE(6698), + [sym_attribute_specifier] = STATE(6698), + [sym_attribute_declaration] = STATE(6698), + [sym_ms_declspec_modifier] = STATE(6698), + [sym_storage_class_specifier] = STATE(6698), + [sym_type_qualifier] = STATE(6698), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6698), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7967), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3189] = { + [sym__declaration_modifiers] = STATE(6700), + [sym_attribute_specifier] = STATE(6700), + [sym_attribute_declaration] = STATE(6700), + [sym_ms_declspec_modifier] = STATE(6700), + [sym_storage_class_specifier] = STATE(6700), + [sym_type_qualifier] = STATE(6700), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6700), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7969), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3190] = { + [sym_attribute_specifier] = STATE(2945), + [sym_identifier] = ACTIONS(7971), + [anon_sym_COMMA] = ACTIONS(7973), + [anon_sym_RPAREN] = ACTIONS(7973), + [anon_sym_LPAREN2] = ACTIONS(7973), + [anon_sym_STAR] = ACTIONS(7973), + [anon_sym_CARET] = ACTIONS(7973), + [anon_sym_SEMI] = ACTIONS(7973), + [anon_sym___extension__] = ACTIONS(7971), + [anon_sym_extern] = ACTIONS(7971), + [anon_sym___attribute__] = ACTIONS(7975), + [anon_sym___attribute] = ACTIONS(7975), + [anon_sym_noreturn] = ACTIONS(7971), + [anon_sym_LBRACK] = ACTIONS(7973), + [anon_sym___declspec] = ACTIONS(7971), + [anon_sym___based] = ACTIONS(7971), + [anon_sym_static] = ACTIONS(7971), + [anon_sym_auto] = ACTIONS(7971), + [anon_sym_register] = ACTIONS(7971), + [anon_sym_inline] = ACTIONS(7971), + [anon_sym___inline] = ACTIONS(7971), + [anon_sym___inline__] = ACTIONS(7971), + [anon_sym___forceinline] = ACTIONS(7971), + [anon_sym_thread_local] = ACTIONS(7971), + [anon_sym___thread] = ACTIONS(7971), + [anon_sym_CG_EXTERN] = ACTIONS(7971), + [anon_sym_CG_INLINE] = ACTIONS(7971), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7971), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7971), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7971), + [anon_sym_IBOutlet] = ACTIONS(7971), + [anon_sym_IBInspectable] = ACTIONS(7971), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7971), + [anon_sym_NS_INLINE] = ACTIONS(7971), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7971), + [anon_sym_OBJC_EXPORT] = ACTIONS(7971), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7971), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7971), + [anon_sym_const] = ACTIONS(7971), + [anon_sym_constexpr] = ACTIONS(7971), + [anon_sym_volatile] = ACTIONS(7971), + [anon_sym_restrict] = ACTIONS(7971), + [anon_sym___restrict__] = ACTIONS(7971), + [anon_sym__Atomic] = ACTIONS(7971), + [anon_sym__Noreturn] = ACTIONS(7971), + [anon_sym__Nonnull] = ACTIONS(7971), + [anon_sym_nullable] = ACTIONS(7971), + [anon_sym__Complex] = ACTIONS(7971), + [anon_sym__Nullable] = ACTIONS(7971), + [anon_sym__Nullable_result] = ACTIONS(7971), + [anon_sym__Null_unspecified] = ACTIONS(7971), + [anon_sym___autoreleasing] = ACTIONS(7971), + [anon_sym___block] = ACTIONS(7971), + [anon_sym___bridge] = ACTIONS(7971), + [anon_sym___bridge_retained] = ACTIONS(7971), + [anon_sym___bridge_transfer] = ACTIONS(7971), + [anon_sym___complex] = ACTIONS(7971), + [anon_sym___const] = ACTIONS(7971), + [anon_sym___imag] = ACTIONS(7971), + [anon_sym___kindof] = ACTIONS(7971), + [anon_sym___nonnull] = ACTIONS(7971), + [anon_sym___nullable] = ACTIONS(7971), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7971), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7971), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7971), + [anon_sym___real] = ACTIONS(7971), + [anon_sym___strong] = ACTIONS(7971), + [anon_sym___unsafe_unretained] = ACTIONS(7971), + [anon_sym___unused] = ACTIONS(7971), + [anon_sym___weak] = ACTIONS(7971), + [anon_sym_alignas] = ACTIONS(7971), + [anon_sym__Alignas] = ACTIONS(7971), + [anon_sym_enum] = ACTIONS(7971), + [anon_sym_COLON] = ACTIONS(7973), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7971), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7971), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7971), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7971), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7971), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7971), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7971), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7971), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7971), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7971), + [anon_sym_NS_AVAILABLE] = ACTIONS(7971), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7971), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7971), + [anon_sym_API_AVAILABLE] = ACTIONS(7971), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7971), + [anon_sym_API_DEPRECATED] = ACTIONS(7971), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7971), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7971), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7971), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7971), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7971), + [anon_sym___deprecated_msg] = ACTIONS(7971), + [anon_sym___deprecated_enum_msg] = ACTIONS(7971), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7971), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7971), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7971), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7971), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7971), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7971), + }, + [3191] = { + [sym__declaration_modifiers] = STATE(3216), + [sym_attribute_specifier] = STATE(3216), + [sym_attribute_declaration] = STATE(3216), + [sym_ms_declspec_modifier] = STATE(3216), + [sym_storage_class_specifier] = STATE(3216), + [sym_type_qualifier] = STATE(3216), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3216), + [aux_sym__declaration_specifiers_repeat1] = STATE(3216), + [aux_sym_method_declaration_repeat2] = STATE(2320), + [anon_sym_SEMI] = ACTIONS(7621), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3192] = { + [sym__declaration_modifiers] = STATE(6404), + [sym_attribute_specifier] = STATE(6404), + [sym_attribute_declaration] = STATE(6404), + [sym_ms_declspec_modifier] = STATE(6404), + [sym_storage_class_specifier] = STATE(6404), + [sym_type_qualifier] = STATE(6404), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6404), + [aux_sym_declaration_repeat1] = STATE(3209), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(7978), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3193] = { + [sym__declaration_modifiers] = STATE(6721), + [sym_attribute_specifier] = STATE(6721), + [sym_attribute_declaration] = STATE(6721), + [sym_ms_declspec_modifier] = STATE(6721), + [sym_storage_class_specifier] = STATE(6721), + [sym_type_qualifier] = STATE(6721), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6721), + [aux_sym_struct_declaration_repeat2] = STATE(3204), + [anon_sym_COMMA] = ACTIONS(7817), + [anon_sym_SEMI] = ACTIONS(7980), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3194] = { + [sym_attribute_specifier] = STATE(2962), + [sym_identifier] = ACTIONS(7982), + [anon_sym_COMMA] = ACTIONS(7984), + [anon_sym_RPAREN] = ACTIONS(7984), + [anon_sym_LPAREN2] = ACTIONS(7984), + [anon_sym_STAR] = ACTIONS(7984), + [anon_sym_CARET] = ACTIONS(7984), + [anon_sym_SEMI] = ACTIONS(7984), + [anon_sym___extension__] = ACTIONS(7982), + [anon_sym_extern] = ACTIONS(7982), + [anon_sym___attribute__] = ACTIONS(7986), + [anon_sym___attribute] = ACTIONS(7986), + [anon_sym_noreturn] = ACTIONS(7982), + [anon_sym_LBRACK] = ACTIONS(7984), + [anon_sym___declspec] = ACTIONS(7982), + [anon_sym___based] = ACTIONS(7982), + [anon_sym_static] = ACTIONS(7982), + [anon_sym_auto] = ACTIONS(7982), + [anon_sym_register] = ACTIONS(7982), + [anon_sym_inline] = ACTIONS(7982), + [anon_sym___inline] = ACTIONS(7982), + [anon_sym___inline__] = ACTIONS(7982), + [anon_sym___forceinline] = ACTIONS(7982), + [anon_sym_thread_local] = ACTIONS(7982), + [anon_sym___thread] = ACTIONS(7982), + [anon_sym_CG_EXTERN] = ACTIONS(7982), + [anon_sym_CG_INLINE] = ACTIONS(7982), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7982), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7982), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7982), + [anon_sym_IBOutlet] = ACTIONS(7982), + [anon_sym_IBInspectable] = ACTIONS(7982), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7982), + [anon_sym_NS_INLINE] = ACTIONS(7982), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7982), + [anon_sym_OBJC_EXPORT] = ACTIONS(7982), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7982), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7982), + [anon_sym_const] = ACTIONS(7982), + [anon_sym_constexpr] = ACTIONS(7982), + [anon_sym_volatile] = ACTIONS(7982), + [anon_sym_restrict] = ACTIONS(7982), + [anon_sym___restrict__] = ACTIONS(7982), + [anon_sym__Atomic] = ACTIONS(7982), + [anon_sym__Noreturn] = ACTIONS(7982), + [anon_sym__Nonnull] = ACTIONS(7982), + [anon_sym_nullable] = ACTIONS(7982), + [anon_sym__Complex] = ACTIONS(7982), + [anon_sym__Nullable] = ACTIONS(7982), + [anon_sym__Nullable_result] = ACTIONS(7982), + [anon_sym__Null_unspecified] = ACTIONS(7982), + [anon_sym___autoreleasing] = ACTIONS(7982), + [anon_sym___block] = ACTIONS(7982), + [anon_sym___bridge] = ACTIONS(7982), + [anon_sym___bridge_retained] = ACTIONS(7982), + [anon_sym___bridge_transfer] = ACTIONS(7982), + [anon_sym___complex] = ACTIONS(7982), + [anon_sym___const] = ACTIONS(7982), + [anon_sym___imag] = ACTIONS(7982), + [anon_sym___kindof] = ACTIONS(7982), + [anon_sym___nonnull] = ACTIONS(7982), + [anon_sym___nullable] = ACTIONS(7982), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7982), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7982), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7982), + [anon_sym___real] = ACTIONS(7982), + [anon_sym___strong] = ACTIONS(7982), + [anon_sym___unsafe_unretained] = ACTIONS(7982), + [anon_sym___unused] = ACTIONS(7982), + [anon_sym___weak] = ACTIONS(7982), + [anon_sym_alignas] = ACTIONS(7982), + [anon_sym__Alignas] = ACTIONS(7982), + [anon_sym_enum] = ACTIONS(7982), + [anon_sym_COLON] = ACTIONS(7984), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7982), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7982), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7982), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7982), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7982), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7982), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7982), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7982), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7982), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7982), + [anon_sym_NS_AVAILABLE] = ACTIONS(7982), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7982), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7982), + [anon_sym_API_AVAILABLE] = ACTIONS(7982), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7982), + [anon_sym_API_DEPRECATED] = ACTIONS(7982), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7982), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7982), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7982), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7982), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7982), + [anon_sym___deprecated_msg] = ACTIONS(7982), + [anon_sym___deprecated_enum_msg] = ACTIONS(7982), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7982), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7982), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7982), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7982), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7982), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7982), + }, + [3195] = { + [sym_attribute_specifier] = STATE(2966), + [sym_identifier] = ACTIONS(7989), + [anon_sym_COMMA] = ACTIONS(7991), + [anon_sym_RPAREN] = ACTIONS(7991), + [anon_sym_LPAREN2] = ACTIONS(7991), + [anon_sym_STAR] = ACTIONS(7991), + [anon_sym_CARET] = ACTIONS(7991), + [anon_sym_SEMI] = ACTIONS(7991), + [anon_sym___extension__] = ACTIONS(7989), + [anon_sym_extern] = ACTIONS(7989), + [anon_sym___attribute__] = ACTIONS(7993), + [anon_sym___attribute] = ACTIONS(7993), + [anon_sym_noreturn] = ACTIONS(7989), + [anon_sym_LBRACK] = ACTIONS(7991), + [anon_sym___declspec] = ACTIONS(7989), + [anon_sym___based] = ACTIONS(7989), + [anon_sym_static] = ACTIONS(7989), + [anon_sym_auto] = ACTIONS(7989), + [anon_sym_register] = ACTIONS(7989), + [anon_sym_inline] = ACTIONS(7989), + [anon_sym___inline] = ACTIONS(7989), + [anon_sym___inline__] = ACTIONS(7989), + [anon_sym___forceinline] = ACTIONS(7989), + [anon_sym_thread_local] = ACTIONS(7989), + [anon_sym___thread] = ACTIONS(7989), + [anon_sym_CG_EXTERN] = ACTIONS(7989), + [anon_sym_CG_INLINE] = ACTIONS(7989), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(7989), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(7989), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(7989), + [anon_sym_IBOutlet] = ACTIONS(7989), + [anon_sym_IBInspectable] = ACTIONS(7989), + [anon_sym_IB_DESIGNABLE] = ACTIONS(7989), + [anon_sym_NS_INLINE] = ACTIONS(7989), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7989), + [anon_sym_OBJC_EXPORT] = ACTIONS(7989), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(7989), + [anon_sym_UIKIT_EXTERN] = ACTIONS(7989), + [anon_sym_const] = ACTIONS(7989), + [anon_sym_constexpr] = ACTIONS(7989), + [anon_sym_volatile] = ACTIONS(7989), + [anon_sym_restrict] = ACTIONS(7989), + [anon_sym___restrict__] = ACTIONS(7989), + [anon_sym__Atomic] = ACTIONS(7989), + [anon_sym__Noreturn] = ACTIONS(7989), + [anon_sym__Nonnull] = ACTIONS(7989), + [anon_sym_nullable] = ACTIONS(7989), + [anon_sym__Complex] = ACTIONS(7989), + [anon_sym__Nullable] = ACTIONS(7989), + [anon_sym__Nullable_result] = ACTIONS(7989), + [anon_sym__Null_unspecified] = ACTIONS(7989), + [anon_sym___autoreleasing] = ACTIONS(7989), + [anon_sym___block] = ACTIONS(7989), + [anon_sym___bridge] = ACTIONS(7989), + [anon_sym___bridge_retained] = ACTIONS(7989), + [anon_sym___bridge_transfer] = ACTIONS(7989), + [anon_sym___complex] = ACTIONS(7989), + [anon_sym___const] = ACTIONS(7989), + [anon_sym___imag] = ACTIONS(7989), + [anon_sym___kindof] = ACTIONS(7989), + [anon_sym___nonnull] = ACTIONS(7989), + [anon_sym___nullable] = ACTIONS(7989), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7989), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7989), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7989), + [anon_sym___real] = ACTIONS(7989), + [anon_sym___strong] = ACTIONS(7989), + [anon_sym___unsafe_unretained] = ACTIONS(7989), + [anon_sym___unused] = ACTIONS(7989), + [anon_sym___weak] = ACTIONS(7989), + [anon_sym_alignas] = ACTIONS(7989), + [anon_sym__Alignas] = ACTIONS(7989), + [anon_sym_enum] = ACTIONS(7989), + [anon_sym_COLON] = ACTIONS(7991), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(7989), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(7989), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7989), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(7989), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(7989), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(7989), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7989), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7989), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7989), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7989), + [anon_sym_NS_AVAILABLE] = ACTIONS(7989), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7989), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7989), + [anon_sym_API_AVAILABLE] = ACTIONS(7989), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7989), + [anon_sym_API_DEPRECATED] = ACTIONS(7989), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7989), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7989), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7989), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7989), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7989), + [anon_sym___deprecated_msg] = ACTIONS(7989), + [anon_sym___deprecated_enum_msg] = ACTIONS(7989), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7989), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7989), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7989), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7989), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7989), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(7989), + }, + [3196] = { + [sym__declaration_modifiers] = STATE(2879), + [sym_attribute_specifier] = STATE(2879), + [sym_attribute_declaration] = STATE(2879), + [sym_ms_declspec_modifier] = STATE(2879), + [sym_storage_class_specifier] = STATE(2879), + [sym_type_qualifier] = STATE(2879), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2879), + [aux_sym__declaration_specifiers_repeat1] = STATE(2879), + [aux_sym_method_declaration_repeat2] = STATE(2172), + [anon_sym_SEMI] = ACTIONS(7653), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3197] = { + [sym__declaration_modifiers] = STATE(6776), + [sym_attribute_specifier] = STATE(6776), + [sym_attribute_declaration] = STATE(6776), + [sym_ms_declspec_modifier] = STATE(6776), + [sym_storage_class_specifier] = STATE(6776), + [sym_type_qualifier] = STATE(6776), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6776), + [aux_sym_struct_declaration_repeat2] = STATE(3291), + [anon_sym_COMMA] = ACTIONS(7817), + [anon_sym_SEMI] = ACTIONS(7996), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3198] = { + [sym_attribute_specifier] = STATE(3230), + [sym_gnu_asm_expression] = STATE(3234), + [aux_sym_function_declarator_repeat1] = STATE(3230), + [anon_sym_COMMA] = ACTIONS(6577), + [anon_sym_LPAREN2] = ACTIONS(6577), + [anon_sym_SEMI] = ACTIONS(6577), + [anon_sym___extension__] = ACTIONS(6577), + [anon_sym_extern] = ACTIONS(6577), + [anon_sym___attribute__] = ACTIONS(7998), + [anon_sym___attribute] = ACTIONS(8000), + [anon_sym_noreturn] = ACTIONS(6577), + [anon_sym_LBRACK] = ACTIONS(6577), + [anon_sym___declspec] = ACTIONS(6577), + [anon_sym_static] = ACTIONS(6577), + [anon_sym_EQ] = ACTIONS(6577), + [anon_sym_auto] = ACTIONS(6577), + [anon_sym_register] = ACTIONS(6577), + [anon_sym_inline] = ACTIONS(6577), + [anon_sym___inline] = ACTIONS(6575), + [anon_sym___inline__] = ACTIONS(6577), + [anon_sym___forceinline] = ACTIONS(6577), + [anon_sym_thread_local] = ACTIONS(6577), + [anon_sym___thread] = ACTIONS(6577), + [anon_sym_CG_EXTERN] = ACTIONS(6577), + [anon_sym_CG_INLINE] = ACTIONS(6577), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6577), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6577), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6577), + [anon_sym_IBOutlet] = ACTIONS(6577), + [anon_sym_IBInspectable] = ACTIONS(6577), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6577), + [anon_sym_NS_INLINE] = ACTIONS(6577), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6577), + [anon_sym_OBJC_EXPORT] = ACTIONS(6577), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6577), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6577), + [anon_sym_const] = ACTIONS(6575), + [anon_sym_constexpr] = ACTIONS(6577), + [anon_sym_volatile] = ACTIONS(6577), + [anon_sym_restrict] = ACTIONS(6577), + [anon_sym___restrict__] = ACTIONS(6577), + [anon_sym__Atomic] = ACTIONS(6577), + [anon_sym__Noreturn] = ACTIONS(6577), + [anon_sym__Nonnull] = ACTIONS(6577), + [anon_sym_nullable] = ACTIONS(6577), + [anon_sym__Complex] = ACTIONS(6577), + [anon_sym__Nullable] = ACTIONS(6575), + [anon_sym__Nullable_result] = ACTIONS(6577), + [anon_sym__Null_unspecified] = ACTIONS(6577), + [anon_sym___autoreleasing] = ACTIONS(6577), + [anon_sym___block] = ACTIONS(6577), + [anon_sym___bridge] = ACTIONS(6575), + [anon_sym___bridge_retained] = ACTIONS(6577), + [anon_sym___bridge_transfer] = ACTIONS(6577), + [anon_sym___complex] = ACTIONS(6577), + [anon_sym___const] = ACTIONS(6577), + [anon_sym___imag] = ACTIONS(6577), + [anon_sym___kindof] = ACTIONS(6577), + [anon_sym___nonnull] = ACTIONS(6577), + [anon_sym___nullable] = ACTIONS(6577), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6577), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6577), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6577), + [anon_sym___real] = ACTIONS(6577), + [anon_sym___strong] = ACTIONS(6577), + [anon_sym___unsafe_unretained] = ACTIONS(6577), + [anon_sym___unused] = ACTIONS(6577), + [anon_sym___weak] = ACTIONS(6577), + [anon_sym_alignas] = ACTIONS(6577), + [anon_sym__Alignas] = ACTIONS(6577), + [anon_sym_in] = ACTIONS(6575), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6577), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6577), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6577), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6577), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6577), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6577), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6577), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6577), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6577), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6577), + [anon_sym_NS_AVAILABLE] = ACTIONS(6575), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6577), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6577), + [anon_sym_API_AVAILABLE] = ACTIONS(6577), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6577), + [anon_sym_API_DEPRECATED] = ACTIONS(6577), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6577), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6577), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6577), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6577), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6577), + [anon_sym___deprecated_msg] = ACTIONS(6577), + [anon_sym___deprecated_enum_msg] = ACTIONS(6577), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6577), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6577), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6577), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6577), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6577), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6577), + }, + [3199] = { + [sym__declaration_modifiers] = STATE(6421), + [sym_attribute_specifier] = STATE(6421), + [sym_attribute_declaration] = STATE(6421), + [sym_ms_declspec_modifier] = STATE(6421), + [sym_storage_class_specifier] = STATE(6421), + [sym_type_qualifier] = STATE(6421), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6421), + [aux_sym_struct_declaration_repeat2] = STATE(3291), + [anon_sym_COMMA] = ACTIONS(7817), + [anon_sym_SEMI] = ACTIONS(8002), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3200] = { + [sym__declaration_modifiers] = STATE(2879), + [sym_attribute_specifier] = STATE(2879), + [sym_attribute_declaration] = STATE(2879), + [sym_ms_declspec_modifier] = STATE(2879), + [sym_storage_class_specifier] = STATE(2879), + [sym_type_qualifier] = STATE(2879), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2879), + [aux_sym__declaration_specifiers_repeat1] = STATE(2879), + [aux_sym_method_declaration_repeat2] = STATE(2149), + [anon_sym_SEMI] = ACTIONS(7677), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3201] = { + [sym_attribute_specifier] = STATE(2997), + [sym_identifier] = ACTIONS(8004), + [anon_sym_COMMA] = ACTIONS(8006), + [anon_sym_RPAREN] = ACTIONS(8006), + [anon_sym_LPAREN2] = ACTIONS(8006), + [anon_sym_STAR] = ACTIONS(8006), + [anon_sym_CARET] = ACTIONS(8006), + [anon_sym_SEMI] = ACTIONS(8006), + [anon_sym___extension__] = ACTIONS(8004), + [anon_sym_extern] = ACTIONS(8004), + [anon_sym___attribute__] = ACTIONS(8008), + [anon_sym___attribute] = ACTIONS(8008), + [anon_sym_noreturn] = ACTIONS(8004), + [anon_sym_LBRACK] = ACTIONS(8006), + [anon_sym___declspec] = ACTIONS(8004), + [anon_sym___based] = ACTIONS(8004), + [anon_sym_static] = ACTIONS(8004), + [anon_sym_auto] = ACTIONS(8004), + [anon_sym_register] = ACTIONS(8004), + [anon_sym_inline] = ACTIONS(8004), + [anon_sym___inline] = ACTIONS(8004), + [anon_sym___inline__] = ACTIONS(8004), + [anon_sym___forceinline] = ACTIONS(8004), + [anon_sym_thread_local] = ACTIONS(8004), + [anon_sym___thread] = ACTIONS(8004), + [anon_sym_CG_EXTERN] = ACTIONS(8004), + [anon_sym_CG_INLINE] = ACTIONS(8004), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8004), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8004), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8004), + [anon_sym_IBOutlet] = ACTIONS(8004), + [anon_sym_IBInspectable] = ACTIONS(8004), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8004), + [anon_sym_NS_INLINE] = ACTIONS(8004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8004), + [anon_sym_OBJC_EXPORT] = ACTIONS(8004), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8004), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8004), + [anon_sym_const] = ACTIONS(8004), + [anon_sym_constexpr] = ACTIONS(8004), + [anon_sym_volatile] = ACTIONS(8004), + [anon_sym_restrict] = ACTIONS(8004), + [anon_sym___restrict__] = ACTIONS(8004), + [anon_sym__Atomic] = ACTIONS(8004), + [anon_sym__Noreturn] = ACTIONS(8004), + [anon_sym__Nonnull] = ACTIONS(8004), + [anon_sym_nullable] = ACTIONS(8004), + [anon_sym__Complex] = ACTIONS(8004), + [anon_sym__Nullable] = ACTIONS(8004), + [anon_sym__Nullable_result] = ACTIONS(8004), + [anon_sym__Null_unspecified] = ACTIONS(8004), + [anon_sym___autoreleasing] = ACTIONS(8004), + [anon_sym___block] = ACTIONS(8004), + [anon_sym___bridge] = ACTIONS(8004), + [anon_sym___bridge_retained] = ACTIONS(8004), + [anon_sym___bridge_transfer] = ACTIONS(8004), + [anon_sym___complex] = ACTIONS(8004), + [anon_sym___const] = ACTIONS(8004), + [anon_sym___imag] = ACTIONS(8004), + [anon_sym___kindof] = ACTIONS(8004), + [anon_sym___nonnull] = ACTIONS(8004), + [anon_sym___nullable] = ACTIONS(8004), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8004), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8004), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8004), + [anon_sym___real] = ACTIONS(8004), + [anon_sym___strong] = ACTIONS(8004), + [anon_sym___unsafe_unretained] = ACTIONS(8004), + [anon_sym___unused] = ACTIONS(8004), + [anon_sym___weak] = ACTIONS(8004), + [anon_sym_alignas] = ACTIONS(8004), + [anon_sym__Alignas] = ACTIONS(8004), + [anon_sym_enum] = ACTIONS(8004), + [anon_sym_COLON] = ACTIONS(8006), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8004), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8004), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8004), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8004), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8004), + [anon_sym_NS_AVAILABLE] = ACTIONS(8004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8004), + [anon_sym_API_AVAILABLE] = ACTIONS(8004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8004), + [anon_sym_API_DEPRECATED] = ACTIONS(8004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8004), + [anon_sym___deprecated_msg] = ACTIONS(8004), + [anon_sym___deprecated_enum_msg] = ACTIONS(8004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8004), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8004), + }, + [3202] = { + [sym__declaration_modifiers] = STATE(2879), + [sym_attribute_specifier] = STATE(2879), + [sym_attribute_declaration] = STATE(2879), + [sym_ms_declspec_modifier] = STATE(2879), + [sym_storage_class_specifier] = STATE(2879), + [sym_type_qualifier] = STATE(2879), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2879), + [aux_sym__declaration_specifiers_repeat1] = STATE(2879), + [aux_sym_method_declaration_repeat2] = STATE(2170), + [anon_sym_SEMI] = ACTIONS(7131), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3203] = { + [sym__declaration_modifiers] = STATE(2879), + [sym_attribute_specifier] = STATE(2879), + [sym_attribute_declaration] = STATE(2879), + [sym_ms_declspec_modifier] = STATE(2879), + [sym_storage_class_specifier] = STATE(2879), + [sym_type_qualifier] = STATE(2879), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2879), + [aux_sym__declaration_specifiers_repeat1] = STATE(2879), + [aux_sym_method_declaration_repeat2] = STATE(2145), + [anon_sym_SEMI] = ACTIONS(8011), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3204] = { + [sym__declaration_modifiers] = STATE(5981), + [sym_attribute_specifier] = STATE(5981), + [sym_attribute_declaration] = STATE(5981), + [sym_ms_declspec_modifier] = STATE(5981), + [sym_storage_class_specifier] = STATE(5981), + [sym_type_qualifier] = STATE(5981), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(5981), + [aux_sym_struct_declaration_repeat2] = STATE(3291), + [anon_sym_COMMA] = ACTIONS(7817), + [anon_sym_SEMI] = ACTIONS(8013), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3205] = { + [sym__declaration_modifiers] = STATE(2879), + [sym_attribute_specifier] = STATE(2879), + [sym_attribute_declaration] = STATE(2879), + [sym_ms_declspec_modifier] = STATE(2879), + [sym_storage_class_specifier] = STATE(2879), + [sym_type_qualifier] = STATE(2879), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2879), + [aux_sym__declaration_specifiers_repeat1] = STATE(2879), + [aux_sym_method_declaration_repeat2] = STATE(2147), + [anon_sym_SEMI] = ACTIONS(7163), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3206] = { + [sym_attribute_specifier] = STATE(2954), + [sym_identifier] = ACTIONS(8015), + [anon_sym_COMMA] = ACTIONS(8017), + [anon_sym_RPAREN] = ACTIONS(8017), + [anon_sym_LPAREN2] = ACTIONS(8017), + [anon_sym_STAR] = ACTIONS(8017), + [anon_sym_CARET] = ACTIONS(8017), + [anon_sym_SEMI] = ACTIONS(8017), + [anon_sym___extension__] = ACTIONS(8015), + [anon_sym_extern] = ACTIONS(8015), + [anon_sym___attribute__] = ACTIONS(8019), + [anon_sym___attribute] = ACTIONS(8019), + [anon_sym_noreturn] = ACTIONS(8015), + [anon_sym_LBRACK] = ACTIONS(8017), + [anon_sym___declspec] = ACTIONS(8015), + [anon_sym___based] = ACTIONS(8015), + [anon_sym_static] = ACTIONS(8015), + [anon_sym_auto] = ACTIONS(8015), + [anon_sym_register] = ACTIONS(8015), + [anon_sym_inline] = ACTIONS(8015), + [anon_sym___inline] = ACTIONS(8015), + [anon_sym___inline__] = ACTIONS(8015), + [anon_sym___forceinline] = ACTIONS(8015), + [anon_sym_thread_local] = ACTIONS(8015), + [anon_sym___thread] = ACTIONS(8015), + [anon_sym_CG_EXTERN] = ACTIONS(8015), + [anon_sym_CG_INLINE] = ACTIONS(8015), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8015), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8015), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8015), + [anon_sym_IBOutlet] = ACTIONS(8015), + [anon_sym_IBInspectable] = ACTIONS(8015), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8015), + [anon_sym_NS_INLINE] = ACTIONS(8015), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8015), + [anon_sym_OBJC_EXPORT] = ACTIONS(8015), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8015), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8015), + [anon_sym_const] = ACTIONS(8015), + [anon_sym_constexpr] = ACTIONS(8015), + [anon_sym_volatile] = ACTIONS(8015), + [anon_sym_restrict] = ACTIONS(8015), + [anon_sym___restrict__] = ACTIONS(8015), + [anon_sym__Atomic] = ACTIONS(8015), + [anon_sym__Noreturn] = ACTIONS(8015), + [anon_sym__Nonnull] = ACTIONS(8015), + [anon_sym_nullable] = ACTIONS(8015), + [anon_sym__Complex] = ACTIONS(8015), + [anon_sym__Nullable] = ACTIONS(8015), + [anon_sym__Nullable_result] = ACTIONS(8015), + [anon_sym__Null_unspecified] = ACTIONS(8015), + [anon_sym___autoreleasing] = ACTIONS(8015), + [anon_sym___block] = ACTIONS(8015), + [anon_sym___bridge] = ACTIONS(8015), + [anon_sym___bridge_retained] = ACTIONS(8015), + [anon_sym___bridge_transfer] = ACTIONS(8015), + [anon_sym___complex] = ACTIONS(8015), + [anon_sym___const] = ACTIONS(8015), + [anon_sym___imag] = ACTIONS(8015), + [anon_sym___kindof] = ACTIONS(8015), + [anon_sym___nonnull] = ACTIONS(8015), + [anon_sym___nullable] = ACTIONS(8015), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8015), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8015), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8015), + [anon_sym___real] = ACTIONS(8015), + [anon_sym___strong] = ACTIONS(8015), + [anon_sym___unsafe_unretained] = ACTIONS(8015), + [anon_sym___unused] = ACTIONS(8015), + [anon_sym___weak] = ACTIONS(8015), + [anon_sym_alignas] = ACTIONS(8015), + [anon_sym__Alignas] = ACTIONS(8015), + [anon_sym_enum] = ACTIONS(8015), + [anon_sym_COLON] = ACTIONS(8017), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8015), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8015), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8015), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8015), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8015), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8015), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8015), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8015), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8015), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8015), + [anon_sym_NS_AVAILABLE] = ACTIONS(8015), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8015), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8015), + [anon_sym_API_AVAILABLE] = ACTIONS(8015), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8015), + [anon_sym_API_DEPRECATED] = ACTIONS(8015), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8015), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8015), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8015), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8015), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8015), + [anon_sym___deprecated_msg] = ACTIONS(8015), + [anon_sym___deprecated_enum_msg] = ACTIONS(8015), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8015), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8015), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8015), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8015), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8015), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8015), + }, + [3207] = { + [sym__declaration_modifiers] = STATE(6551), + [sym_attribute_specifier] = STATE(6551), + [sym_attribute_declaration] = STATE(6551), + [sym_ms_declspec_modifier] = STATE(6551), + [sym_storage_class_specifier] = STATE(6551), + [sym_type_qualifier] = STATE(6551), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6551), + [aux_sym_declaration_repeat1] = STATE(3225), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(8022), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3208] = { + [sym__declaration_modifiers] = STATE(6553), + [sym_attribute_specifier] = STATE(6553), + [sym_attribute_declaration] = STATE(6553), + [sym_ms_declspec_modifier] = STATE(6553), + [sym_storage_class_specifier] = STATE(6553), + [sym_type_qualifier] = STATE(6553), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6553), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(8024), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3209] = { + [sym__declaration_modifiers] = STATE(6554), + [sym_attribute_specifier] = STATE(6554), + [sym_attribute_declaration] = STATE(6554), + [sym_ms_declspec_modifier] = STATE(6554), + [sym_storage_class_specifier] = STATE(6554), + [sym_type_qualifier] = STATE(6554), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6554), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(8026), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3210] = { + [sym__declaration_modifiers] = STATE(6555), + [sym_attribute_specifier] = STATE(6555), + [sym_attribute_declaration] = STATE(6555), + [sym_ms_declspec_modifier] = STATE(6555), + [sym_storage_class_specifier] = STATE(6555), + [sym_type_qualifier] = STATE(6555), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6555), + [aux_sym_declaration_repeat1] = STATE(3226), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(8028), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3211] = { + [sym_attribute_specifier] = STATE(2957), + [sym_identifier] = ACTIONS(8030), + [anon_sym_COMMA] = ACTIONS(8032), + [anon_sym_RPAREN] = ACTIONS(8032), + [anon_sym_LPAREN2] = ACTIONS(8032), + [anon_sym_STAR] = ACTIONS(8032), + [anon_sym_CARET] = ACTIONS(8032), + [anon_sym_SEMI] = ACTIONS(8032), + [anon_sym___extension__] = ACTIONS(8030), + [anon_sym_extern] = ACTIONS(8030), + [anon_sym___attribute__] = ACTIONS(8034), + [anon_sym___attribute] = ACTIONS(8034), + [anon_sym_noreturn] = ACTIONS(8030), + [anon_sym_LBRACK] = ACTIONS(8032), + [anon_sym___declspec] = ACTIONS(8030), + [anon_sym___based] = ACTIONS(8030), + [anon_sym_static] = ACTIONS(8030), + [anon_sym_auto] = ACTIONS(8030), + [anon_sym_register] = ACTIONS(8030), + [anon_sym_inline] = ACTIONS(8030), + [anon_sym___inline] = ACTIONS(8030), + [anon_sym___inline__] = ACTIONS(8030), + [anon_sym___forceinline] = ACTIONS(8030), + [anon_sym_thread_local] = ACTIONS(8030), + [anon_sym___thread] = ACTIONS(8030), + [anon_sym_CG_EXTERN] = ACTIONS(8030), + [anon_sym_CG_INLINE] = ACTIONS(8030), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8030), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8030), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8030), + [anon_sym_IBOutlet] = ACTIONS(8030), + [anon_sym_IBInspectable] = ACTIONS(8030), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8030), + [anon_sym_NS_INLINE] = ACTIONS(8030), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8030), + [anon_sym_OBJC_EXPORT] = ACTIONS(8030), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8030), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8030), + [anon_sym_const] = ACTIONS(8030), + [anon_sym_constexpr] = ACTIONS(8030), + [anon_sym_volatile] = ACTIONS(8030), + [anon_sym_restrict] = ACTIONS(8030), + [anon_sym___restrict__] = ACTIONS(8030), + [anon_sym__Atomic] = ACTIONS(8030), + [anon_sym__Noreturn] = ACTIONS(8030), + [anon_sym__Nonnull] = ACTIONS(8030), + [anon_sym_nullable] = ACTIONS(8030), + [anon_sym__Complex] = ACTIONS(8030), + [anon_sym__Nullable] = ACTIONS(8030), + [anon_sym__Nullable_result] = ACTIONS(8030), + [anon_sym__Null_unspecified] = ACTIONS(8030), + [anon_sym___autoreleasing] = ACTIONS(8030), + [anon_sym___block] = ACTIONS(8030), + [anon_sym___bridge] = ACTIONS(8030), + [anon_sym___bridge_retained] = ACTIONS(8030), + [anon_sym___bridge_transfer] = ACTIONS(8030), + [anon_sym___complex] = ACTIONS(8030), + [anon_sym___const] = ACTIONS(8030), + [anon_sym___imag] = ACTIONS(8030), + [anon_sym___kindof] = ACTIONS(8030), + [anon_sym___nonnull] = ACTIONS(8030), + [anon_sym___nullable] = ACTIONS(8030), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8030), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8030), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8030), + [anon_sym___real] = ACTIONS(8030), + [anon_sym___strong] = ACTIONS(8030), + [anon_sym___unsafe_unretained] = ACTIONS(8030), + [anon_sym___unused] = ACTIONS(8030), + [anon_sym___weak] = ACTIONS(8030), + [anon_sym_alignas] = ACTIONS(8030), + [anon_sym__Alignas] = ACTIONS(8030), + [anon_sym_enum] = ACTIONS(8030), + [anon_sym_COLON] = ACTIONS(8032), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8030), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8030), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8030), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8030), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8030), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8030), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8030), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8030), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8030), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8030), + [anon_sym_NS_AVAILABLE] = ACTIONS(8030), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8030), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8030), + [anon_sym_API_AVAILABLE] = ACTIONS(8030), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8030), + [anon_sym_API_DEPRECATED] = ACTIONS(8030), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8030), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8030), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8030), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8030), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8030), + [anon_sym___deprecated_msg] = ACTIONS(8030), + [anon_sym___deprecated_enum_msg] = ACTIONS(8030), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8030), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8030), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8030), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8030), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8030), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8030), + }, + [3212] = { + [sym__declaration_modifiers] = STATE(2879), + [sym_attribute_specifier] = STATE(2879), + [sym_attribute_declaration] = STATE(2879), + [sym_ms_declspec_modifier] = STATE(2879), + [sym_storage_class_specifier] = STATE(2879), + [sym_type_qualifier] = STATE(2879), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2879), + [aux_sym__declaration_specifiers_repeat1] = STATE(2879), + [aux_sym_method_declaration_repeat2] = STATE(2136), + [anon_sym_SEMI] = ACTIONS(7117), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3213] = { + [sym_attribute_specifier] = STATE(2949), + [sym_identifier] = ACTIONS(8037), + [anon_sym_COMMA] = ACTIONS(8039), + [anon_sym_RPAREN] = ACTIONS(8039), + [anon_sym_LPAREN2] = ACTIONS(8039), + [anon_sym_STAR] = ACTIONS(8039), + [anon_sym_CARET] = ACTIONS(8039), + [anon_sym_SEMI] = ACTIONS(8039), + [anon_sym___extension__] = ACTIONS(8037), + [anon_sym_extern] = ACTIONS(8037), + [anon_sym___attribute__] = ACTIONS(8041), + [anon_sym___attribute] = ACTIONS(8041), + [anon_sym_noreturn] = ACTIONS(8037), + [anon_sym_LBRACK] = ACTIONS(8039), + [anon_sym___declspec] = ACTIONS(8037), + [anon_sym___based] = ACTIONS(8037), + [anon_sym_static] = ACTIONS(8037), + [anon_sym_auto] = ACTIONS(8037), + [anon_sym_register] = ACTIONS(8037), + [anon_sym_inline] = ACTIONS(8037), + [anon_sym___inline] = ACTIONS(8037), + [anon_sym___inline__] = ACTIONS(8037), + [anon_sym___forceinline] = ACTIONS(8037), + [anon_sym_thread_local] = ACTIONS(8037), + [anon_sym___thread] = ACTIONS(8037), + [anon_sym_CG_EXTERN] = ACTIONS(8037), + [anon_sym_CG_INLINE] = ACTIONS(8037), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8037), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8037), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8037), + [anon_sym_IBOutlet] = ACTIONS(8037), + [anon_sym_IBInspectable] = ACTIONS(8037), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8037), + [anon_sym_NS_INLINE] = ACTIONS(8037), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8037), + [anon_sym_OBJC_EXPORT] = ACTIONS(8037), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8037), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8037), + [anon_sym_const] = ACTIONS(8037), + [anon_sym_constexpr] = ACTIONS(8037), + [anon_sym_volatile] = ACTIONS(8037), + [anon_sym_restrict] = ACTIONS(8037), + [anon_sym___restrict__] = ACTIONS(8037), + [anon_sym__Atomic] = ACTIONS(8037), + [anon_sym__Noreturn] = ACTIONS(8037), + [anon_sym__Nonnull] = ACTIONS(8037), + [anon_sym_nullable] = ACTIONS(8037), + [anon_sym__Complex] = ACTIONS(8037), + [anon_sym__Nullable] = ACTIONS(8037), + [anon_sym__Nullable_result] = ACTIONS(8037), + [anon_sym__Null_unspecified] = ACTIONS(8037), + [anon_sym___autoreleasing] = ACTIONS(8037), + [anon_sym___block] = ACTIONS(8037), + [anon_sym___bridge] = ACTIONS(8037), + [anon_sym___bridge_retained] = ACTIONS(8037), + [anon_sym___bridge_transfer] = ACTIONS(8037), + [anon_sym___complex] = ACTIONS(8037), + [anon_sym___const] = ACTIONS(8037), + [anon_sym___imag] = ACTIONS(8037), + [anon_sym___kindof] = ACTIONS(8037), + [anon_sym___nonnull] = ACTIONS(8037), + [anon_sym___nullable] = ACTIONS(8037), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8037), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8037), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8037), + [anon_sym___real] = ACTIONS(8037), + [anon_sym___strong] = ACTIONS(8037), + [anon_sym___unsafe_unretained] = ACTIONS(8037), + [anon_sym___unused] = ACTIONS(8037), + [anon_sym___weak] = ACTIONS(8037), + [anon_sym_alignas] = ACTIONS(8037), + [anon_sym__Alignas] = ACTIONS(8037), + [anon_sym_enum] = ACTIONS(8037), + [anon_sym_COLON] = ACTIONS(8039), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8037), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8037), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8037), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8037), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8037), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8037), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8037), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8037), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8037), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8037), + [anon_sym_NS_AVAILABLE] = ACTIONS(8037), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8037), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8037), + [anon_sym_API_AVAILABLE] = ACTIONS(8037), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8037), + [anon_sym_API_DEPRECATED] = ACTIONS(8037), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8037), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8037), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8037), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8037), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8037), + [anon_sym___deprecated_msg] = ACTIONS(8037), + [anon_sym___deprecated_enum_msg] = ACTIONS(8037), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8037), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8037), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8037), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8037), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8037), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8037), + }, + [3214] = { + [sym__declaration_modifiers] = STATE(2879), + [sym_attribute_specifier] = STATE(2879), + [sym_attribute_declaration] = STATE(2879), + [sym_ms_declspec_modifier] = STATE(2879), + [sym_storage_class_specifier] = STATE(2879), + [sym_type_qualifier] = STATE(2879), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2879), + [aux_sym__declaration_specifiers_repeat1] = STATE(2879), + [aux_sym_method_declaration_repeat2] = STATE(2152), + [anon_sym_SEMI] = ACTIONS(7666), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3215] = { + [sym_attribute_specifier] = STATE(2998), + [sym_identifier] = ACTIONS(8044), + [anon_sym_COMMA] = ACTIONS(8046), + [anon_sym_RPAREN] = ACTIONS(8046), + [anon_sym_LPAREN2] = ACTIONS(8046), + [anon_sym_STAR] = ACTIONS(8046), + [anon_sym_CARET] = ACTIONS(8046), + [anon_sym_SEMI] = ACTIONS(8046), + [anon_sym___extension__] = ACTIONS(8044), + [anon_sym_extern] = ACTIONS(8044), + [anon_sym___attribute__] = ACTIONS(8048), + [anon_sym___attribute] = ACTIONS(8048), + [anon_sym_noreturn] = ACTIONS(8044), + [anon_sym_LBRACK] = ACTIONS(8046), + [anon_sym___declspec] = ACTIONS(8044), + [anon_sym___based] = ACTIONS(8044), + [anon_sym_static] = ACTIONS(8044), + [anon_sym_auto] = ACTIONS(8044), + [anon_sym_register] = ACTIONS(8044), + [anon_sym_inline] = ACTIONS(8044), + [anon_sym___inline] = ACTIONS(8044), + [anon_sym___inline__] = ACTIONS(8044), + [anon_sym___forceinline] = ACTIONS(8044), + [anon_sym_thread_local] = ACTIONS(8044), + [anon_sym___thread] = ACTIONS(8044), + [anon_sym_CG_EXTERN] = ACTIONS(8044), + [anon_sym_CG_INLINE] = ACTIONS(8044), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8044), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8044), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8044), + [anon_sym_IBOutlet] = ACTIONS(8044), + [anon_sym_IBInspectable] = ACTIONS(8044), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8044), + [anon_sym_NS_INLINE] = ACTIONS(8044), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8044), + [anon_sym_OBJC_EXPORT] = ACTIONS(8044), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8044), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8044), + [anon_sym_const] = ACTIONS(8044), + [anon_sym_constexpr] = ACTIONS(8044), + [anon_sym_volatile] = ACTIONS(8044), + [anon_sym_restrict] = ACTIONS(8044), + [anon_sym___restrict__] = ACTIONS(8044), + [anon_sym__Atomic] = ACTIONS(8044), + [anon_sym__Noreturn] = ACTIONS(8044), + [anon_sym__Nonnull] = ACTIONS(8044), + [anon_sym_nullable] = ACTIONS(8044), + [anon_sym__Complex] = ACTIONS(8044), + [anon_sym__Nullable] = ACTIONS(8044), + [anon_sym__Nullable_result] = ACTIONS(8044), + [anon_sym__Null_unspecified] = ACTIONS(8044), + [anon_sym___autoreleasing] = ACTIONS(8044), + [anon_sym___block] = ACTIONS(8044), + [anon_sym___bridge] = ACTIONS(8044), + [anon_sym___bridge_retained] = ACTIONS(8044), + [anon_sym___bridge_transfer] = ACTIONS(8044), + [anon_sym___complex] = ACTIONS(8044), + [anon_sym___const] = ACTIONS(8044), + [anon_sym___imag] = ACTIONS(8044), + [anon_sym___kindof] = ACTIONS(8044), + [anon_sym___nonnull] = ACTIONS(8044), + [anon_sym___nullable] = ACTIONS(8044), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8044), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8044), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8044), + [anon_sym___real] = ACTIONS(8044), + [anon_sym___strong] = ACTIONS(8044), + [anon_sym___unsafe_unretained] = ACTIONS(8044), + [anon_sym___unused] = ACTIONS(8044), + [anon_sym___weak] = ACTIONS(8044), + [anon_sym_alignas] = ACTIONS(8044), + [anon_sym__Alignas] = ACTIONS(8044), + [anon_sym_enum] = ACTIONS(8044), + [anon_sym_COLON] = ACTIONS(8046), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8044), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8044), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8044), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8044), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8044), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8044), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8044), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8044), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8044), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8044), + [anon_sym_NS_AVAILABLE] = ACTIONS(8044), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8044), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8044), + [anon_sym_API_AVAILABLE] = ACTIONS(8044), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8044), + [anon_sym_API_DEPRECATED] = ACTIONS(8044), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8044), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8044), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8044), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8044), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8044), + [anon_sym___deprecated_msg] = ACTIONS(8044), + [anon_sym___deprecated_enum_msg] = ACTIONS(8044), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8044), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8044), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8044), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8044), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8044), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8044), + }, + [3216] = { + [sym__declaration_modifiers] = STATE(2879), + [sym_attribute_specifier] = STATE(2879), + [sym_attribute_declaration] = STATE(2879), + [sym_ms_declspec_modifier] = STATE(2879), + [sym_storage_class_specifier] = STATE(2879), + [sym_type_qualifier] = STATE(2879), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2879), + [aux_sym__declaration_specifiers_repeat1] = STATE(2879), + [aux_sym_method_declaration_repeat2] = STATE(2327), + [anon_sym_SEMI] = ACTIONS(7675), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3217] = { + [sym__declaration_modifiers] = STATE(3196), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3196), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3196), + [aux_sym__declaration_specifiers_repeat1] = STATE(3196), + [aux_sym_method_declaration_repeat2] = STATE(2152), + [anon_sym_SEMI] = ACTIONS(7666), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3218] = { + [sym__declaration_modifiers] = STATE(2879), + [sym_attribute_specifier] = STATE(2879), + [sym_attribute_declaration] = STATE(2879), + [sym_ms_declspec_modifier] = STATE(2879), + [sym_storage_class_specifier] = STATE(2879), + [sym_type_qualifier] = STATE(2879), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2879), + [aux_sym__declaration_specifiers_repeat1] = STATE(2879), + [aux_sym_method_declaration_repeat2] = STATE(2338), + [anon_sym_SEMI] = ACTIONS(8051), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3219] = { + [sym__declaration_modifiers] = STATE(2879), + [sym_attribute_specifier] = STATE(2879), + [sym_attribute_declaration] = STATE(2879), + [sym_ms_declspec_modifier] = STATE(2879), + [sym_storage_class_specifier] = STATE(2879), + [sym_type_qualifier] = STATE(2879), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2879), + [aux_sym__declaration_specifiers_repeat1] = STATE(2879), + [aux_sym_method_declaration_repeat2] = STATE(2250), + [anon_sym_SEMI] = ACTIONS(7103), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3220] = { + [sym__declaration_modifiers] = STATE(6043), + [sym_attribute_specifier] = STATE(6043), + [sym_attribute_declaration] = STATE(6043), + [sym_ms_declspec_modifier] = STATE(6043), + [sym_storage_class_specifier] = STATE(6043), + [sym_type_qualifier] = STATE(6043), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6043), + [aux_sym_struct_declaration_repeat2] = STATE(3199), + [anon_sym_COMMA] = ACTIONS(7817), + [anon_sym_SEMI] = ACTIONS(8053), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3221] = { + [sym__declaration_modifiers] = STATE(2879), + [sym_attribute_specifier] = STATE(2879), + [sym_attribute_declaration] = STATE(2879), + [sym_ms_declspec_modifier] = STATE(2879), + [sym_storage_class_specifier] = STATE(2879), + [sym_type_qualifier] = STATE(2879), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2879), + [aux_sym__declaration_specifiers_repeat1] = STATE(2879), + [aux_sym_method_declaration_repeat2] = STATE(2142), + [anon_sym_SEMI] = ACTIONS(7095), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3222] = { + [sym_attribute_specifier] = STATE(2999), + [sym_identifier] = ACTIONS(8055), + [anon_sym_COMMA] = ACTIONS(8057), + [anon_sym_RPAREN] = ACTIONS(8057), + [anon_sym_LPAREN2] = ACTIONS(8057), + [anon_sym_STAR] = ACTIONS(8057), + [anon_sym_CARET] = ACTIONS(8057), + [anon_sym_SEMI] = ACTIONS(8057), + [anon_sym___extension__] = ACTIONS(8055), + [anon_sym_extern] = ACTIONS(8055), + [anon_sym___attribute__] = ACTIONS(8059), + [anon_sym___attribute] = ACTIONS(8059), + [anon_sym_noreturn] = ACTIONS(8055), + [anon_sym_LBRACK] = ACTIONS(8057), + [anon_sym___declspec] = ACTIONS(8055), + [anon_sym___based] = ACTIONS(8055), + [anon_sym_static] = ACTIONS(8055), + [anon_sym_auto] = ACTIONS(8055), + [anon_sym_register] = ACTIONS(8055), + [anon_sym_inline] = ACTIONS(8055), + [anon_sym___inline] = ACTIONS(8055), + [anon_sym___inline__] = ACTIONS(8055), + [anon_sym___forceinline] = ACTIONS(8055), + [anon_sym_thread_local] = ACTIONS(8055), + [anon_sym___thread] = ACTIONS(8055), + [anon_sym_CG_EXTERN] = ACTIONS(8055), + [anon_sym_CG_INLINE] = ACTIONS(8055), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8055), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8055), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8055), + [anon_sym_IBOutlet] = ACTIONS(8055), + [anon_sym_IBInspectable] = ACTIONS(8055), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8055), + [anon_sym_NS_INLINE] = ACTIONS(8055), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8055), + [anon_sym_OBJC_EXPORT] = ACTIONS(8055), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8055), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8055), + [anon_sym_const] = ACTIONS(8055), + [anon_sym_constexpr] = ACTIONS(8055), + [anon_sym_volatile] = ACTIONS(8055), + [anon_sym_restrict] = ACTIONS(8055), + [anon_sym___restrict__] = ACTIONS(8055), + [anon_sym__Atomic] = ACTIONS(8055), + [anon_sym__Noreturn] = ACTIONS(8055), + [anon_sym__Nonnull] = ACTIONS(8055), + [anon_sym_nullable] = ACTIONS(8055), + [anon_sym__Complex] = ACTIONS(8055), + [anon_sym__Nullable] = ACTIONS(8055), + [anon_sym__Nullable_result] = ACTIONS(8055), + [anon_sym__Null_unspecified] = ACTIONS(8055), + [anon_sym___autoreleasing] = ACTIONS(8055), + [anon_sym___block] = ACTIONS(8055), + [anon_sym___bridge] = ACTIONS(8055), + [anon_sym___bridge_retained] = ACTIONS(8055), + [anon_sym___bridge_transfer] = ACTIONS(8055), + [anon_sym___complex] = ACTIONS(8055), + [anon_sym___const] = ACTIONS(8055), + [anon_sym___imag] = ACTIONS(8055), + [anon_sym___kindof] = ACTIONS(8055), + [anon_sym___nonnull] = ACTIONS(8055), + [anon_sym___nullable] = ACTIONS(8055), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8055), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8055), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8055), + [anon_sym___real] = ACTIONS(8055), + [anon_sym___strong] = ACTIONS(8055), + [anon_sym___unsafe_unretained] = ACTIONS(8055), + [anon_sym___unused] = ACTIONS(8055), + [anon_sym___weak] = ACTIONS(8055), + [anon_sym_alignas] = ACTIONS(8055), + [anon_sym__Alignas] = ACTIONS(8055), + [anon_sym_enum] = ACTIONS(8055), + [anon_sym_COLON] = ACTIONS(8057), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8055), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8055), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8055), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8055), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8055), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8055), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8055), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8055), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8055), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8055), + [anon_sym_NS_AVAILABLE] = ACTIONS(8055), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8055), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8055), + [anon_sym_API_AVAILABLE] = ACTIONS(8055), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8055), + [anon_sym_API_DEPRECATED] = ACTIONS(8055), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8055), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8055), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8055), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8055), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8055), + [anon_sym___deprecated_msg] = ACTIONS(8055), + [anon_sym___deprecated_enum_msg] = ACTIONS(8055), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8055), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8055), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8055), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8055), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8055), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8055), + }, + [3223] = { + [sym__declaration_modifiers] = STATE(2879), + [sym_attribute_specifier] = STATE(2879), + [sym_attribute_declaration] = STATE(2879), + [sym_ms_declspec_modifier] = STATE(2879), + [sym_storage_class_specifier] = STATE(2879), + [sym_type_qualifier] = STATE(2879), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(2879), + [aux_sym__declaration_specifiers_repeat1] = STATE(2879), + [aux_sym_method_declaration_repeat2] = STATE(2180), + [anon_sym_SEMI] = ACTIONS(8062), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3224] = { + [sym__declaration_modifiers] = STATE(3214), + [sym_attribute_specifier] = STATE(3214), + [sym_attribute_declaration] = STATE(3214), + [sym_ms_declspec_modifier] = STATE(3214), + [sym_storage_class_specifier] = STATE(3214), + [sym_type_qualifier] = STATE(3214), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(3214), + [aux_sym__declaration_specifiers_repeat1] = STATE(3214), + [aux_sym_method_declaration_repeat2] = STATE(2143), + [anon_sym_SEMI] = ACTIONS(7625), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3225] = { + [sym__declaration_modifiers] = STATE(6685), + [sym_attribute_specifier] = STATE(6685), + [sym_attribute_declaration] = STATE(6685), + [sym_ms_declspec_modifier] = STATE(6685), + [sym_storage_class_specifier] = STATE(6685), + [sym_type_qualifier] = STATE(6685), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6685), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(8064), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3226] = { + [sym__declaration_modifiers] = STATE(6686), + [sym_attribute_specifier] = STATE(6686), + [sym_attribute_declaration] = STATE(6686), + [sym_ms_declspec_modifier] = STATE(6686), + [sym_storage_class_specifier] = STATE(6686), + [sym_type_qualifier] = STATE(6686), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6686), + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(8066), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3227] = { + [sym__declaration_modifiers] = STATE(6320), + [sym_attribute_specifier] = STATE(6320), + [sym_attribute_declaration] = STATE(6320), + [sym_ms_declspec_modifier] = STATE(6320), + [sym_storage_class_specifier] = STATE(6320), + [sym_type_qualifier] = STATE(6320), + [sym_alignas_qualifier] = STATE(2368), + [sym_availability_attribute_specifier] = STATE(6320), + [aux_sym_declaration_repeat1] = STATE(3189), + [anon_sym_COMMA] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(8068), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(6863), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym___declspec] = ACTIONS(6869), + [anon_sym_static] = ACTIONS(6863), + [anon_sym_auto] = ACTIONS(6863), + [anon_sym_register] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(6863), + [anon_sym___forceinline] = ACTIONS(6863), + [anon_sym_thread_local] = ACTIONS(6863), + [anon_sym___thread] = ACTIONS(6863), + [anon_sym_CG_EXTERN] = ACTIONS(6863), + [anon_sym_CG_INLINE] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6863), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6863), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6863), + [anon_sym_IBOutlet] = ACTIONS(6863), + [anon_sym_IBInspectable] = ACTIONS(6863), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6863), + [anon_sym_NS_INLINE] = ACTIONS(6863), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6863), + [anon_sym_OBJC_EXPORT] = ACTIONS(6863), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6863), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6863), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6873), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6873), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6873), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6873), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6873), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6873), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6873), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE] = ACTIONS(127), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_API_AVAILABLE] = ACTIONS(6875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_API_DEPRECATED] = ACTIONS(6875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6875), + [anon_sym___deprecated_msg] = ACTIONS(6875), + [anon_sym___deprecated_enum_msg] = ACTIONS(6875), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6875), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6875), + }, + [3228] = { + [sym_attribute_specifier] = STATE(3311), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym__abstract_declarator] = STATE(5033), + [sym_parenthesized_declarator] = STATE(4011), + [sym_abstract_parenthesized_declarator] = STATE(4894), + [sym_pointer_declarator] = STATE(4011), + [sym_abstract_pointer_declarator] = STATE(4894), + [sym_function_declarator] = STATE(4011), + [sym_abstract_function_declarator] = STATE(4894), + [sym_array_declarator] = STATE(4011), + [sym_abstract_array_declarator] = STATE(4894), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_parameter_list] = STATE(4295), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_protocol_reference_list] = STATE(4817), + [sym_specifier_qualifier] = STATE(3311), + [sym_block_pointer_declarator] = STATE(4011), + [sym_abstract_block_pointer_declarator] = STATE(4894), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3311), + [sym_identifier] = ACTIONS(8070), + [anon_sym_COMMA] = ACTIONS(8072), + [anon_sym_RPAREN] = ACTIONS(8072), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(5285), + [anon_sym_CARET] = ACTIONS(5287), + [anon_sym_GT] = ACTIONS(8072), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_LBRACK] = ACTIONS(8078), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3229] = { + [sym_identifier] = ACTIONS(2922), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4236), + [anon_sym_LPAREN2] = ACTIONS(2928), + [anon_sym_BANG] = ACTIONS(2922), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_DASH] = ACTIONS(2922), + [anon_sym_PLUS] = ACTIONS(2922), + [anon_sym_STAR] = ACTIONS(2928), + [anon_sym_SLASH] = ACTIONS(4234), + [anon_sym_PERCENT] = ACTIONS(4236), + [anon_sym_PIPE_PIPE] = ACTIONS(4236), + [anon_sym_AMP_AMP] = ACTIONS(4236), + [anon_sym_PIPE] = ACTIONS(4234), + [anon_sym_CARET] = ACTIONS(2928), + [anon_sym_AMP] = ACTIONS(2922), + [anon_sym_EQ_EQ] = ACTIONS(4236), + [anon_sym_BANG_EQ] = ACTIONS(4236), + [anon_sym_GT] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4236), + [anon_sym_LT_EQ] = ACTIONS(4236), + [anon_sym_LT] = ACTIONS(4234), + [anon_sym_LT_LT] = ACTIONS(4236), + [anon_sym_GT_GT] = ACTIONS(4236), + [anon_sym___extension__] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2928), + [anon_sym_RBRACK] = ACTIONS(2928), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2922), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2922), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(2922), + [anon_sym_QMARK] = ACTIONS(4236), + [anon_sym_DASH_DASH] = ACTIONS(2928), + [anon_sym_PLUS_PLUS] = ACTIONS(2928), + [anon_sym_sizeof] = ACTIONS(2922), + [anon_sym___alignof__] = ACTIONS(2922), + [anon_sym___alignof] = ACTIONS(2922), + [anon_sym__alignof] = ACTIONS(2922), + [anon_sym_alignof] = ACTIONS(2922), + [anon_sym__Alignof] = ACTIONS(2922), + [anon_sym_offsetof] = ACTIONS(2922), + [anon_sym__Generic] = ACTIONS(2922), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [anon_sym___asm] = ACTIONS(2922), + [anon_sym_DOT] = ACTIONS(4234), + [anon_sym_DASH_GT] = ACTIONS(4236), + [sym_number_literal] = ACTIONS(2928), + [anon_sym_L_SQUOTE] = ACTIONS(2928), + [anon_sym_u_SQUOTE] = ACTIONS(2928), + [anon_sym_U_SQUOTE] = ACTIONS(2928), + [anon_sym_u8_SQUOTE] = ACTIONS(2928), + [anon_sym_SQUOTE] = ACTIONS(2928), + [anon_sym_AT] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2928), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2922), + [sym_false] = ACTIONS(2922), + [anon_sym_NULL] = ACTIONS(2922), + [anon_sym_nullptr] = ACTIONS(2922), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2928), + [anon_sym_ATavailable] = ACTIONS(2928), + [anon_sym___builtin_available] = ACTIONS(2922), + [anon_sym_va_arg] = ACTIONS(2922), + [anon_sym_ATencode] = ACTIONS(2928), + [anon_sym_id] = ACTIONS(2922), + }, + [3230] = { + [sym_attribute_specifier] = STATE(3232), + [aux_sym_function_declarator_repeat1] = STATE(3232), + [anon_sym_COMMA] = ACTIONS(6788), + [anon_sym_LPAREN2] = ACTIONS(6788), + [anon_sym_SEMI] = ACTIONS(6788), + [anon_sym___extension__] = ACTIONS(6788), + [anon_sym_extern] = ACTIONS(6788), + [anon_sym___attribute__] = ACTIONS(6788), + [anon_sym___attribute] = ACTIONS(6786), + [anon_sym_noreturn] = ACTIONS(6788), + [anon_sym_LBRACK] = ACTIONS(6788), + [anon_sym___declspec] = ACTIONS(6788), + [anon_sym_static] = ACTIONS(6788), + [anon_sym_EQ] = ACTIONS(6788), + [anon_sym_auto] = ACTIONS(6788), + [anon_sym_register] = ACTIONS(6788), + [anon_sym_inline] = ACTIONS(6788), + [anon_sym___inline] = ACTIONS(6786), + [anon_sym___inline__] = ACTIONS(6788), + [anon_sym___forceinline] = ACTIONS(6788), + [anon_sym_thread_local] = ACTIONS(6788), + [anon_sym___thread] = ACTIONS(6788), + [anon_sym_CG_EXTERN] = ACTIONS(6788), + [anon_sym_CG_INLINE] = ACTIONS(6788), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6788), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6788), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6788), + [anon_sym_IBOutlet] = ACTIONS(6788), + [anon_sym_IBInspectable] = ACTIONS(6788), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6788), + [anon_sym_NS_INLINE] = ACTIONS(6788), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6788), + [anon_sym_OBJC_EXPORT] = ACTIONS(6788), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6788), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6788), + [anon_sym_const] = ACTIONS(6786), + [anon_sym_constexpr] = ACTIONS(6788), + [anon_sym_volatile] = ACTIONS(6788), + [anon_sym_restrict] = ACTIONS(6788), + [anon_sym___restrict__] = ACTIONS(6788), + [anon_sym__Atomic] = ACTIONS(6788), + [anon_sym__Noreturn] = ACTIONS(6788), + [anon_sym__Nonnull] = ACTIONS(6788), + [anon_sym_nullable] = ACTIONS(6788), + [anon_sym__Complex] = ACTIONS(6788), + [anon_sym__Nullable] = ACTIONS(6786), + [anon_sym__Nullable_result] = ACTIONS(6788), + [anon_sym__Null_unspecified] = ACTIONS(6788), + [anon_sym___autoreleasing] = ACTIONS(6788), + [anon_sym___block] = ACTIONS(6788), + [anon_sym___bridge] = ACTIONS(6786), + [anon_sym___bridge_retained] = ACTIONS(6788), + [anon_sym___bridge_transfer] = ACTIONS(6788), + [anon_sym___complex] = ACTIONS(6788), + [anon_sym___const] = ACTIONS(6788), + [anon_sym___imag] = ACTIONS(6788), + [anon_sym___kindof] = ACTIONS(6788), + [anon_sym___nonnull] = ACTIONS(6788), + [anon_sym___nullable] = ACTIONS(6788), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6788), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6788), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6788), + [anon_sym___real] = ACTIONS(6788), + [anon_sym___strong] = ACTIONS(6788), + [anon_sym___unsafe_unretained] = ACTIONS(6788), + [anon_sym___unused] = ACTIONS(6788), + [anon_sym___weak] = ACTIONS(6788), + [anon_sym_alignas] = ACTIONS(6788), + [anon_sym__Alignas] = ACTIONS(6788), + [anon_sym_in] = ACTIONS(6786), + [anon_sym_asm] = ACTIONS(6788), + [anon_sym___asm__] = ACTIONS(6788), + [anon_sym___asm] = ACTIONS(6786), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6788), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6788), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6788), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6788), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6788), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6788), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6788), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6788), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6788), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6788), + [anon_sym_NS_AVAILABLE] = ACTIONS(6786), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6788), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6788), + [anon_sym_API_AVAILABLE] = ACTIONS(6788), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6788), + [anon_sym_API_DEPRECATED] = ACTIONS(6788), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6788), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6788), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6788), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6788), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6788), + [anon_sym___deprecated_msg] = ACTIONS(6788), + [anon_sym___deprecated_enum_msg] = ACTIONS(6788), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6788), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6788), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6788), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6788), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6788), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6788), + }, + [3231] = { + [sym_attribute_specifier] = STATE(3232), + [aux_sym_function_declarator_repeat1] = STATE(3232), + [anon_sym_COMMA] = ACTIONS(6799), + [anon_sym_LPAREN2] = ACTIONS(6799), + [anon_sym_SEMI] = ACTIONS(6799), + [anon_sym___extension__] = ACTIONS(6799), + [anon_sym_extern] = ACTIONS(6799), + [anon_sym___attribute__] = ACTIONS(6799), + [anon_sym___attribute] = ACTIONS(6797), + [anon_sym_noreturn] = ACTIONS(6799), + [anon_sym_LBRACK] = ACTIONS(6799), + [anon_sym___declspec] = ACTIONS(6799), + [anon_sym_static] = ACTIONS(6799), + [anon_sym_EQ] = ACTIONS(6799), + [anon_sym_auto] = ACTIONS(6799), + [anon_sym_register] = ACTIONS(6799), + [anon_sym_inline] = ACTIONS(6799), + [anon_sym___inline] = ACTIONS(6797), + [anon_sym___inline__] = ACTIONS(6799), + [anon_sym___forceinline] = ACTIONS(6799), + [anon_sym_thread_local] = ACTIONS(6799), + [anon_sym___thread] = ACTIONS(6799), + [anon_sym_CG_EXTERN] = ACTIONS(6799), + [anon_sym_CG_INLINE] = ACTIONS(6799), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6799), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6799), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6799), + [anon_sym_IBOutlet] = ACTIONS(6799), + [anon_sym_IBInspectable] = ACTIONS(6799), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6799), + [anon_sym_NS_INLINE] = ACTIONS(6799), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6799), + [anon_sym_OBJC_EXPORT] = ACTIONS(6799), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6799), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6799), + [anon_sym_const] = ACTIONS(6797), + [anon_sym_constexpr] = ACTIONS(6799), + [anon_sym_volatile] = ACTIONS(6799), + [anon_sym_restrict] = ACTIONS(6799), + [anon_sym___restrict__] = ACTIONS(6799), + [anon_sym__Atomic] = ACTIONS(6799), + [anon_sym__Noreturn] = ACTIONS(6799), + [anon_sym__Nonnull] = ACTIONS(6799), + [anon_sym_nullable] = ACTIONS(6799), + [anon_sym__Complex] = ACTIONS(6799), + [anon_sym__Nullable] = ACTIONS(6797), + [anon_sym__Nullable_result] = ACTIONS(6799), + [anon_sym__Null_unspecified] = ACTIONS(6799), + [anon_sym___autoreleasing] = ACTIONS(6799), + [anon_sym___block] = ACTIONS(6799), + [anon_sym___bridge] = ACTIONS(6797), + [anon_sym___bridge_retained] = ACTIONS(6799), + [anon_sym___bridge_transfer] = ACTIONS(6799), + [anon_sym___complex] = ACTIONS(6799), + [anon_sym___const] = ACTIONS(6799), + [anon_sym___imag] = ACTIONS(6799), + [anon_sym___kindof] = ACTIONS(6799), + [anon_sym___nonnull] = ACTIONS(6799), + [anon_sym___nullable] = ACTIONS(6799), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6799), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6799), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6799), + [anon_sym___real] = ACTIONS(6799), + [anon_sym___strong] = ACTIONS(6799), + [anon_sym___unsafe_unretained] = ACTIONS(6799), + [anon_sym___unused] = ACTIONS(6799), + [anon_sym___weak] = ACTIONS(6799), + [anon_sym_alignas] = ACTIONS(6799), + [anon_sym__Alignas] = ACTIONS(6799), + [anon_sym_in] = ACTIONS(6797), + [anon_sym_asm] = ACTIONS(6799), + [anon_sym___asm__] = ACTIONS(6799), + [anon_sym___asm] = ACTIONS(6797), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6799), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6799), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6799), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6799), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6799), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6799), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6799), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6799), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6799), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6799), + [anon_sym_NS_AVAILABLE] = ACTIONS(6797), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6799), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6799), + [anon_sym_API_AVAILABLE] = ACTIONS(6799), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6799), + [anon_sym_API_DEPRECATED] = ACTIONS(6799), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6799), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6799), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6799), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6799), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6799), + [anon_sym___deprecated_msg] = ACTIONS(6799), + [anon_sym___deprecated_enum_msg] = ACTIONS(6799), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6799), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6799), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6799), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6799), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6799), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6799), + }, + [3232] = { + [sym_attribute_specifier] = STATE(3232), + [aux_sym_function_declarator_repeat1] = STATE(3232), + [anon_sym_COMMA] = ACTIONS(6792), + [anon_sym_LPAREN2] = ACTIONS(6792), + [anon_sym_SEMI] = ACTIONS(6792), + [anon_sym___extension__] = ACTIONS(6792), + [anon_sym_extern] = ACTIONS(6792), + [anon_sym___attribute__] = ACTIONS(8098), + [anon_sym___attribute] = ACTIONS(8101), + [anon_sym_noreturn] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(6792), + [anon_sym___declspec] = ACTIONS(6792), + [anon_sym_static] = ACTIONS(6792), + [anon_sym_EQ] = ACTIONS(6792), + [anon_sym_auto] = ACTIONS(6792), + [anon_sym_register] = ACTIONS(6792), + [anon_sym_inline] = ACTIONS(6792), + [anon_sym___inline] = ACTIONS(6790), + [anon_sym___inline__] = ACTIONS(6792), + [anon_sym___forceinline] = ACTIONS(6792), + [anon_sym_thread_local] = ACTIONS(6792), + [anon_sym___thread] = ACTIONS(6792), + [anon_sym_CG_EXTERN] = ACTIONS(6792), + [anon_sym_CG_INLINE] = ACTIONS(6792), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6792), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6792), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6792), + [anon_sym_IBOutlet] = ACTIONS(6792), + [anon_sym_IBInspectable] = ACTIONS(6792), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6792), + [anon_sym_NS_INLINE] = ACTIONS(6792), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6792), + [anon_sym_OBJC_EXPORT] = ACTIONS(6792), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6792), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6792), + [anon_sym_const] = ACTIONS(6790), + [anon_sym_constexpr] = ACTIONS(6792), + [anon_sym_volatile] = ACTIONS(6792), + [anon_sym_restrict] = ACTIONS(6792), + [anon_sym___restrict__] = ACTIONS(6792), + [anon_sym__Atomic] = ACTIONS(6792), + [anon_sym__Noreturn] = ACTIONS(6792), + [anon_sym__Nonnull] = ACTIONS(6792), + [anon_sym_nullable] = ACTIONS(6792), + [anon_sym__Complex] = ACTIONS(6792), + [anon_sym__Nullable] = ACTIONS(6790), + [anon_sym__Nullable_result] = ACTIONS(6792), + [anon_sym__Null_unspecified] = ACTIONS(6792), + [anon_sym___autoreleasing] = ACTIONS(6792), + [anon_sym___block] = ACTIONS(6792), + [anon_sym___bridge] = ACTIONS(6790), + [anon_sym___bridge_retained] = ACTIONS(6792), + [anon_sym___bridge_transfer] = ACTIONS(6792), + [anon_sym___complex] = ACTIONS(6792), + [anon_sym___const] = ACTIONS(6792), + [anon_sym___imag] = ACTIONS(6792), + [anon_sym___kindof] = ACTIONS(6792), + [anon_sym___nonnull] = ACTIONS(6792), + [anon_sym___nullable] = ACTIONS(6792), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6792), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6792), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6792), + [anon_sym___real] = ACTIONS(6792), + [anon_sym___strong] = ACTIONS(6792), + [anon_sym___unsafe_unretained] = ACTIONS(6792), + [anon_sym___unused] = ACTIONS(6792), + [anon_sym___weak] = ACTIONS(6792), + [anon_sym_alignas] = ACTIONS(6792), + [anon_sym__Alignas] = ACTIONS(6792), + [anon_sym_in] = ACTIONS(6790), + [anon_sym_asm] = ACTIONS(6792), + [anon_sym___asm__] = ACTIONS(6792), + [anon_sym___asm] = ACTIONS(6790), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6792), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6792), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6792), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6792), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6792), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6792), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6792), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6792), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6792), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6792), + [anon_sym_NS_AVAILABLE] = ACTIONS(6790), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6792), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6792), + [anon_sym_API_AVAILABLE] = ACTIONS(6792), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6792), + [anon_sym_API_DEPRECATED] = ACTIONS(6792), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6792), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6792), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6792), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6792), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6792), + [anon_sym___deprecated_msg] = ACTIONS(6792), + [anon_sym___deprecated_enum_msg] = ACTIONS(6792), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6792), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6792), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6792), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6792), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6792), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6792), + }, + [3233] = { + [sym_attribute_specifier] = STATE(6707), + [sym_parameter_list] = STATE(3030), + [sym_gnu_asm_expression] = STATE(3313), + [anon_sym_COMMA] = ACTIONS(8104), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(8104), + [anon_sym___extension__] = ACTIONS(8104), + [anon_sym_extern] = ACTIONS(8104), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(8104), + [anon_sym_LBRACK] = ACTIONS(7709), + [anon_sym___declspec] = ACTIONS(8104), + [anon_sym_static] = ACTIONS(8104), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_auto] = ACTIONS(8104), + [anon_sym_register] = ACTIONS(8104), + [anon_sym_inline] = ACTIONS(8104), + [anon_sym___inline] = ACTIONS(8106), + [anon_sym___inline__] = ACTIONS(8104), + [anon_sym___forceinline] = ACTIONS(8104), + [anon_sym_thread_local] = ACTIONS(8104), + [anon_sym___thread] = ACTIONS(8104), + [anon_sym_CG_EXTERN] = ACTIONS(8104), + [anon_sym_CG_INLINE] = ACTIONS(8104), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8104), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8104), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8104), + [anon_sym_IBOutlet] = ACTIONS(8104), + [anon_sym_IBInspectable] = ACTIONS(8104), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8104), + [anon_sym_NS_INLINE] = ACTIONS(8104), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8104), + [anon_sym_OBJC_EXPORT] = ACTIONS(8104), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8104), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8104), + [anon_sym_const] = ACTIONS(8106), + [anon_sym_constexpr] = ACTIONS(8104), + [anon_sym_volatile] = ACTIONS(8104), + [anon_sym_restrict] = ACTIONS(8104), + [anon_sym___restrict__] = ACTIONS(8104), + [anon_sym__Atomic] = ACTIONS(8104), + [anon_sym__Noreturn] = ACTIONS(8104), + [anon_sym__Nonnull] = ACTIONS(8104), + [anon_sym_nullable] = ACTIONS(8104), + [anon_sym__Complex] = ACTIONS(8104), + [anon_sym__Nullable] = ACTIONS(8106), + [anon_sym__Nullable_result] = ACTIONS(8104), + [anon_sym__Null_unspecified] = ACTIONS(8104), + [anon_sym___autoreleasing] = ACTIONS(8104), + [anon_sym___block] = ACTIONS(8104), + [anon_sym___bridge] = ACTIONS(8106), + [anon_sym___bridge_retained] = ACTIONS(8104), + [anon_sym___bridge_transfer] = ACTIONS(8104), + [anon_sym___complex] = ACTIONS(8104), + [anon_sym___const] = ACTIONS(8104), + [anon_sym___imag] = ACTIONS(8104), + [anon_sym___kindof] = ACTIONS(8104), + [anon_sym___nonnull] = ACTIONS(8104), + [anon_sym___nullable] = ACTIONS(8104), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8104), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8104), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8104), + [anon_sym___real] = ACTIONS(8104), + [anon_sym___strong] = ACTIONS(8104), + [anon_sym___unsafe_unretained] = ACTIONS(8104), + [anon_sym___unused] = ACTIONS(8104), + [anon_sym___weak] = ACTIONS(8104), + [anon_sym_alignas] = ACTIONS(8104), + [anon_sym__Alignas] = ACTIONS(8104), + [anon_sym_asm] = ACTIONS(6914), + [anon_sym___asm__] = ACTIONS(6914), + [anon_sym___asm] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8104), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8104), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8104), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8104), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8104), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8104), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8104), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8104), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8104), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8104), + [anon_sym_NS_AVAILABLE] = ACTIONS(8106), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8104), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8104), + [anon_sym_API_AVAILABLE] = ACTIONS(8104), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8104), + [anon_sym_API_DEPRECATED] = ACTIONS(8104), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8104), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8104), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8104), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8104), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8104), + [anon_sym___deprecated_msg] = ACTIONS(8104), + [anon_sym___deprecated_enum_msg] = ACTIONS(8104), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8104), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8104), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8104), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8104), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8104), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8104), + }, + [3234] = { + [sym_attribute_specifier] = STATE(3231), + [aux_sym_function_declarator_repeat1] = STATE(3231), + [anon_sym_COMMA] = ACTIONS(6788), + [anon_sym_LPAREN2] = ACTIONS(6788), + [anon_sym_SEMI] = ACTIONS(6788), + [anon_sym___extension__] = ACTIONS(6788), + [anon_sym_extern] = ACTIONS(6788), + [anon_sym___attribute__] = ACTIONS(7998), + [anon_sym___attribute] = ACTIONS(8000), + [anon_sym_noreturn] = ACTIONS(6788), + [anon_sym_LBRACK] = ACTIONS(6788), + [anon_sym___declspec] = ACTIONS(6788), + [anon_sym_static] = ACTIONS(6788), + [anon_sym_EQ] = ACTIONS(6788), + [anon_sym_auto] = ACTIONS(6788), + [anon_sym_register] = ACTIONS(6788), + [anon_sym_inline] = ACTIONS(6788), + [anon_sym___inline] = ACTIONS(6786), + [anon_sym___inline__] = ACTIONS(6788), + [anon_sym___forceinline] = ACTIONS(6788), + [anon_sym_thread_local] = ACTIONS(6788), + [anon_sym___thread] = ACTIONS(6788), + [anon_sym_CG_EXTERN] = ACTIONS(6788), + [anon_sym_CG_INLINE] = ACTIONS(6788), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6788), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6788), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6788), + [anon_sym_IBOutlet] = ACTIONS(6788), + [anon_sym_IBInspectable] = ACTIONS(6788), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6788), + [anon_sym_NS_INLINE] = ACTIONS(6788), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6788), + [anon_sym_OBJC_EXPORT] = ACTIONS(6788), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6788), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6788), + [anon_sym_const] = ACTIONS(6786), + [anon_sym_constexpr] = ACTIONS(6788), + [anon_sym_volatile] = ACTIONS(6788), + [anon_sym_restrict] = ACTIONS(6788), + [anon_sym___restrict__] = ACTIONS(6788), + [anon_sym__Atomic] = ACTIONS(6788), + [anon_sym__Noreturn] = ACTIONS(6788), + [anon_sym__Nonnull] = ACTIONS(6788), + [anon_sym_nullable] = ACTIONS(6788), + [anon_sym__Complex] = ACTIONS(6788), + [anon_sym__Nullable] = ACTIONS(6786), + [anon_sym__Nullable_result] = ACTIONS(6788), + [anon_sym__Null_unspecified] = ACTIONS(6788), + [anon_sym___autoreleasing] = ACTIONS(6788), + [anon_sym___block] = ACTIONS(6788), + [anon_sym___bridge] = ACTIONS(6786), + [anon_sym___bridge_retained] = ACTIONS(6788), + [anon_sym___bridge_transfer] = ACTIONS(6788), + [anon_sym___complex] = ACTIONS(6788), + [anon_sym___const] = ACTIONS(6788), + [anon_sym___imag] = ACTIONS(6788), + [anon_sym___kindof] = ACTIONS(6788), + [anon_sym___nonnull] = ACTIONS(6788), + [anon_sym___nullable] = ACTIONS(6788), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6788), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6788), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6788), + [anon_sym___real] = ACTIONS(6788), + [anon_sym___strong] = ACTIONS(6788), + [anon_sym___unsafe_unretained] = ACTIONS(6788), + [anon_sym___unused] = ACTIONS(6788), + [anon_sym___weak] = ACTIONS(6788), + [anon_sym_alignas] = ACTIONS(6788), + [anon_sym__Alignas] = ACTIONS(6788), + [anon_sym_in] = ACTIONS(6786), + [anon_sym_asm] = ACTIONS(6788), + [anon_sym___asm__] = ACTIONS(6788), + [anon_sym___asm] = ACTIONS(6786), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6788), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6788), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6788), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6788), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6788), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6788), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6788), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6788), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6788), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6788), + [anon_sym_NS_AVAILABLE] = ACTIONS(6786), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6788), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6788), + [anon_sym_API_AVAILABLE] = ACTIONS(6788), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6788), + [anon_sym_API_DEPRECATED] = ACTIONS(6788), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6788), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6788), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6788), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6788), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6788), + [anon_sym___deprecated_msg] = ACTIONS(6788), + [anon_sym___deprecated_enum_msg] = ACTIONS(6788), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6788), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6788), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6788), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6788), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6788), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6788), + }, + [3235] = { + [sym_parameter_list] = STATE(3198), + [anon_sym_COMMA] = ACTIONS(6825), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6825), + [anon_sym___extension__] = ACTIONS(6825), + [anon_sym_extern] = ACTIONS(6825), + [anon_sym___attribute__] = ACTIONS(6825), + [anon_sym___attribute] = ACTIONS(6823), + [anon_sym_noreturn] = ACTIONS(6825), + [anon_sym_LBRACK] = ACTIONS(7709), + [anon_sym___declspec] = ACTIONS(6825), + [anon_sym_static] = ACTIONS(6825), + [anon_sym_EQ] = ACTIONS(6825), + [anon_sym_auto] = ACTIONS(6825), + [anon_sym_register] = ACTIONS(6825), + [anon_sym_inline] = ACTIONS(6825), + [anon_sym___inline] = ACTIONS(6823), + [anon_sym___inline__] = ACTIONS(6825), + [anon_sym___forceinline] = ACTIONS(6825), + [anon_sym_thread_local] = ACTIONS(6825), + [anon_sym___thread] = ACTIONS(6825), + [anon_sym_CG_EXTERN] = ACTIONS(6825), + [anon_sym_CG_INLINE] = ACTIONS(6825), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6825), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6825), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6825), + [anon_sym_IBOutlet] = ACTIONS(6825), + [anon_sym_IBInspectable] = ACTIONS(6825), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6825), + [anon_sym_NS_INLINE] = ACTIONS(6825), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6825), + [anon_sym_OBJC_EXPORT] = ACTIONS(6825), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6825), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6825), + [anon_sym_const] = ACTIONS(6823), + [anon_sym_constexpr] = ACTIONS(6825), + [anon_sym_volatile] = ACTIONS(6825), + [anon_sym_restrict] = ACTIONS(6825), + [anon_sym___restrict__] = ACTIONS(6825), + [anon_sym__Atomic] = ACTIONS(6825), + [anon_sym__Noreturn] = ACTIONS(6825), + [anon_sym__Nonnull] = ACTIONS(6825), + [anon_sym_nullable] = ACTIONS(6825), + [anon_sym__Complex] = ACTIONS(6825), + [anon_sym__Nullable] = ACTIONS(6823), + [anon_sym__Nullable_result] = ACTIONS(6825), + [anon_sym__Null_unspecified] = ACTIONS(6825), + [anon_sym___autoreleasing] = ACTIONS(6825), + [anon_sym___block] = ACTIONS(6825), + [anon_sym___bridge] = ACTIONS(6823), + [anon_sym___bridge_retained] = ACTIONS(6825), + [anon_sym___bridge_transfer] = ACTIONS(6825), + [anon_sym___complex] = ACTIONS(6825), + [anon_sym___const] = ACTIONS(6825), + [anon_sym___imag] = ACTIONS(6825), + [anon_sym___kindof] = ACTIONS(6825), + [anon_sym___nonnull] = ACTIONS(6825), + [anon_sym___nullable] = ACTIONS(6825), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6825), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6825), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6825), + [anon_sym___real] = ACTIONS(6825), + [anon_sym___strong] = ACTIONS(6825), + [anon_sym___unsafe_unretained] = ACTIONS(6825), + [anon_sym___unused] = ACTIONS(6825), + [anon_sym___weak] = ACTIONS(6825), + [anon_sym_alignas] = ACTIONS(6825), + [anon_sym__Alignas] = ACTIONS(6825), + [anon_sym_in] = ACTIONS(6823), + [anon_sym_asm] = ACTIONS(6825), + [anon_sym___asm__] = ACTIONS(6825), + [anon_sym___asm] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6825), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6825), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6825), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6825), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6825), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6825), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6825), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6825), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6825), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6825), + [anon_sym_NS_AVAILABLE] = ACTIONS(6823), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6825), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6825), + [anon_sym_API_AVAILABLE] = ACTIONS(6825), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6825), + [anon_sym_API_DEPRECATED] = ACTIONS(6825), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6825), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6825), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6825), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6825), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6825), + [anon_sym___deprecated_msg] = ACTIONS(6825), + [anon_sym___deprecated_enum_msg] = ACTIONS(6825), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6825), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6825), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6825), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6825), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6825), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6825), + }, + [3236] = { + [sym_identifier] = ACTIONS(2922), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4236), + [anon_sym_LPAREN2] = ACTIONS(2928), + [anon_sym_BANG] = ACTIONS(2922), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_DASH] = ACTIONS(2922), + [anon_sym_PLUS] = ACTIONS(2922), + [anon_sym_STAR] = ACTIONS(2928), + [anon_sym_SLASH] = ACTIONS(4234), + [anon_sym_PERCENT] = ACTIONS(4236), + [anon_sym_PIPE_PIPE] = ACTIONS(4236), + [anon_sym_AMP_AMP] = ACTIONS(4236), + [anon_sym_PIPE] = ACTIONS(4234), + [anon_sym_CARET] = ACTIONS(2928), + [anon_sym_AMP] = ACTIONS(2922), + [anon_sym_EQ_EQ] = ACTIONS(4236), + [anon_sym_BANG_EQ] = ACTIONS(4236), + [anon_sym_GT] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4236), + [anon_sym_LT_EQ] = ACTIONS(4236), + [anon_sym_LT] = ACTIONS(4234), + [anon_sym_LT_LT] = ACTIONS(4236), + [anon_sym_GT_GT] = ACTIONS(4236), + [anon_sym___extension__] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2928), + [anon_sym_RBRACK] = ACTIONS(4236), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2922), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2922), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(2922), + [anon_sym_QMARK] = ACTIONS(4236), + [anon_sym_DASH_DASH] = ACTIONS(2928), + [anon_sym_PLUS_PLUS] = ACTIONS(2928), + [anon_sym_sizeof] = ACTIONS(2922), + [anon_sym___alignof__] = ACTIONS(2922), + [anon_sym___alignof] = ACTIONS(2922), + [anon_sym__alignof] = ACTIONS(2922), + [anon_sym_alignof] = ACTIONS(2922), + [anon_sym__Alignof] = ACTIONS(2922), + [anon_sym_offsetof] = ACTIONS(2922), + [anon_sym__Generic] = ACTIONS(2922), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [anon_sym___asm] = ACTIONS(2922), + [anon_sym_DOT] = ACTIONS(4234), + [anon_sym_DASH_GT] = ACTIONS(4236), + [sym_number_literal] = ACTIONS(2928), + [anon_sym_L_SQUOTE] = ACTIONS(2928), + [anon_sym_u_SQUOTE] = ACTIONS(2928), + [anon_sym_U_SQUOTE] = ACTIONS(2928), + [anon_sym_u8_SQUOTE] = ACTIONS(2928), + [anon_sym_SQUOTE] = ACTIONS(2928), + [anon_sym_AT] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2928), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2922), + [sym_false] = ACTIONS(2922), + [anon_sym_NULL] = ACTIONS(2922), + [anon_sym_nullptr] = ACTIONS(2922), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2928), + [anon_sym_ATavailable] = ACTIONS(2928), + [anon_sym___builtin_available] = ACTIONS(2922), + [anon_sym_va_arg] = ACTIONS(2922), + [anon_sym_ATencode] = ACTIONS(2928), + [anon_sym_id] = ACTIONS(2922), + }, + [3237] = { + [sym_parameter_list] = STATE(3198), + [anon_sym_COMMA] = ACTIONS(6829), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6829), + [anon_sym___extension__] = ACTIONS(6829), + [anon_sym_extern] = ACTIONS(6829), + [anon_sym___attribute__] = ACTIONS(6829), + [anon_sym___attribute] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6829), + [anon_sym_LBRACK] = ACTIONS(7709), + [anon_sym___declspec] = ACTIONS(6829), + [anon_sym_static] = ACTIONS(6829), + [anon_sym_EQ] = ACTIONS(6829), + [anon_sym_auto] = ACTIONS(6829), + [anon_sym_register] = ACTIONS(6829), + [anon_sym_inline] = ACTIONS(6829), + [anon_sym___inline] = ACTIONS(6827), + [anon_sym___inline__] = ACTIONS(6829), + [anon_sym___forceinline] = ACTIONS(6829), + [anon_sym_thread_local] = ACTIONS(6829), + [anon_sym___thread] = ACTIONS(6829), + [anon_sym_CG_EXTERN] = ACTIONS(6829), + [anon_sym_CG_INLINE] = ACTIONS(6829), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6829), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6829), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6829), + [anon_sym_IBOutlet] = ACTIONS(6829), + [anon_sym_IBInspectable] = ACTIONS(6829), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6829), + [anon_sym_NS_INLINE] = ACTIONS(6829), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6829), + [anon_sym_OBJC_EXPORT] = ACTIONS(6829), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6829), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6829), + [anon_sym_const] = ACTIONS(6827), + [anon_sym_constexpr] = ACTIONS(6829), + [anon_sym_volatile] = ACTIONS(6829), + [anon_sym_restrict] = ACTIONS(6829), + [anon_sym___restrict__] = ACTIONS(6829), + [anon_sym__Atomic] = ACTIONS(6829), + [anon_sym__Noreturn] = ACTIONS(6829), + [anon_sym__Nonnull] = ACTIONS(6829), + [anon_sym_nullable] = ACTIONS(6829), + [anon_sym__Complex] = ACTIONS(6829), + [anon_sym__Nullable] = ACTIONS(6827), + [anon_sym__Nullable_result] = ACTIONS(6829), + [anon_sym__Null_unspecified] = ACTIONS(6829), + [anon_sym___autoreleasing] = ACTIONS(6829), + [anon_sym___block] = ACTIONS(6829), + [anon_sym___bridge] = ACTIONS(6827), + [anon_sym___bridge_retained] = ACTIONS(6829), + [anon_sym___bridge_transfer] = ACTIONS(6829), + [anon_sym___complex] = ACTIONS(6829), + [anon_sym___const] = ACTIONS(6829), + [anon_sym___imag] = ACTIONS(6829), + [anon_sym___kindof] = ACTIONS(6829), + [anon_sym___nonnull] = ACTIONS(6829), + [anon_sym___nullable] = ACTIONS(6829), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6829), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6829), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6829), + [anon_sym___real] = ACTIONS(6829), + [anon_sym___strong] = ACTIONS(6829), + [anon_sym___unsafe_unretained] = ACTIONS(6829), + [anon_sym___unused] = ACTIONS(6829), + [anon_sym___weak] = ACTIONS(6829), + [anon_sym_alignas] = ACTIONS(6829), + [anon_sym__Alignas] = ACTIONS(6829), + [anon_sym_in] = ACTIONS(6827), + [anon_sym_asm] = ACTIONS(6829), + [anon_sym___asm__] = ACTIONS(6829), + [anon_sym___asm] = ACTIONS(6827), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6829), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6829), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6829), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6829), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6829), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6829), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6829), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6829), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6829), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6829), + [anon_sym_NS_AVAILABLE] = ACTIONS(6827), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6829), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6829), + [anon_sym_API_AVAILABLE] = ACTIONS(6829), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6829), + [anon_sym_API_DEPRECATED] = ACTIONS(6829), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6829), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6829), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6829), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6829), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6829), + [anon_sym___deprecated_msg] = ACTIONS(6829), + [anon_sym___deprecated_enum_msg] = ACTIONS(6829), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6829), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6829), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6829), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6829), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6829), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6829), + }, + [3238] = { + [sym_parameter_list] = STATE(3198), + [anon_sym_COMMA] = ACTIONS(6837), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6837), + [anon_sym___extension__] = ACTIONS(6837), + [anon_sym_extern] = ACTIONS(6837), + [anon_sym___attribute__] = ACTIONS(6837), + [anon_sym___attribute] = ACTIONS(6835), + [anon_sym_noreturn] = ACTIONS(6837), + [anon_sym_LBRACK] = ACTIONS(7709), + [anon_sym___declspec] = ACTIONS(6837), + [anon_sym_static] = ACTIONS(6837), + [anon_sym_EQ] = ACTIONS(6837), + [anon_sym_auto] = ACTIONS(6837), + [anon_sym_register] = ACTIONS(6837), + [anon_sym_inline] = ACTIONS(6837), + [anon_sym___inline] = ACTIONS(6835), + [anon_sym___inline__] = ACTIONS(6837), + [anon_sym___forceinline] = ACTIONS(6837), + [anon_sym_thread_local] = ACTIONS(6837), + [anon_sym___thread] = ACTIONS(6837), + [anon_sym_CG_EXTERN] = ACTIONS(6837), + [anon_sym_CG_INLINE] = ACTIONS(6837), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6837), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6837), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6837), + [anon_sym_IBOutlet] = ACTIONS(6837), + [anon_sym_IBInspectable] = ACTIONS(6837), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6837), + [anon_sym_NS_INLINE] = ACTIONS(6837), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6837), + [anon_sym_OBJC_EXPORT] = ACTIONS(6837), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6837), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6837), + [anon_sym_const] = ACTIONS(6835), + [anon_sym_constexpr] = ACTIONS(6837), + [anon_sym_volatile] = ACTIONS(6837), + [anon_sym_restrict] = ACTIONS(6837), + [anon_sym___restrict__] = ACTIONS(6837), + [anon_sym__Atomic] = ACTIONS(6837), + [anon_sym__Noreturn] = ACTIONS(6837), + [anon_sym__Nonnull] = ACTIONS(6837), + [anon_sym_nullable] = ACTIONS(6837), + [anon_sym__Complex] = ACTIONS(6837), + [anon_sym__Nullable] = ACTIONS(6835), + [anon_sym__Nullable_result] = ACTIONS(6837), + [anon_sym__Null_unspecified] = ACTIONS(6837), + [anon_sym___autoreleasing] = ACTIONS(6837), + [anon_sym___block] = ACTIONS(6837), + [anon_sym___bridge] = ACTIONS(6835), + [anon_sym___bridge_retained] = ACTIONS(6837), + [anon_sym___bridge_transfer] = ACTIONS(6837), + [anon_sym___complex] = ACTIONS(6837), + [anon_sym___const] = ACTIONS(6837), + [anon_sym___imag] = ACTIONS(6837), + [anon_sym___kindof] = ACTIONS(6837), + [anon_sym___nonnull] = ACTIONS(6837), + [anon_sym___nullable] = ACTIONS(6837), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6837), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6837), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6837), + [anon_sym___real] = ACTIONS(6837), + [anon_sym___strong] = ACTIONS(6837), + [anon_sym___unsafe_unretained] = ACTIONS(6837), + [anon_sym___unused] = ACTIONS(6837), + [anon_sym___weak] = ACTIONS(6837), + [anon_sym_alignas] = ACTIONS(6837), + [anon_sym__Alignas] = ACTIONS(6837), + [anon_sym_in] = ACTIONS(6835), + [anon_sym_asm] = ACTIONS(6837), + [anon_sym___asm__] = ACTIONS(6837), + [anon_sym___asm] = ACTIONS(6835), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6837), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6837), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6837), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6837), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6837), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6837), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6837), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6837), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6837), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6837), + [anon_sym_NS_AVAILABLE] = ACTIONS(6835), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6837), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6837), + [anon_sym_API_AVAILABLE] = ACTIONS(6837), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6837), + [anon_sym_API_DEPRECATED] = ACTIONS(6837), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6837), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6837), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6837), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6837), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6837), + [anon_sym___deprecated_msg] = ACTIONS(6837), + [anon_sym___deprecated_enum_msg] = ACTIONS(6837), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6837), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6837), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6837), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6837), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6837), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6837), + }, + [3239] = { + [sym_parameter_list] = STATE(3198), + [anon_sym_COMMA] = ACTIONS(6833), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6833), + [anon_sym___extension__] = ACTIONS(6833), + [anon_sym_extern] = ACTIONS(6833), + [anon_sym___attribute__] = ACTIONS(6833), + [anon_sym___attribute] = ACTIONS(6831), + [anon_sym_noreturn] = ACTIONS(6833), + [anon_sym_LBRACK] = ACTIONS(7709), + [anon_sym___declspec] = ACTIONS(6833), + [anon_sym_static] = ACTIONS(6833), + [anon_sym_EQ] = ACTIONS(6833), + [anon_sym_auto] = ACTIONS(6833), + [anon_sym_register] = ACTIONS(6833), + [anon_sym_inline] = ACTIONS(6833), + [anon_sym___inline] = ACTIONS(6831), + [anon_sym___inline__] = ACTIONS(6833), + [anon_sym___forceinline] = ACTIONS(6833), + [anon_sym_thread_local] = ACTIONS(6833), + [anon_sym___thread] = ACTIONS(6833), + [anon_sym_CG_EXTERN] = ACTIONS(6833), + [anon_sym_CG_INLINE] = ACTIONS(6833), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6833), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6833), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6833), + [anon_sym_IBOutlet] = ACTIONS(6833), + [anon_sym_IBInspectable] = ACTIONS(6833), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6833), + [anon_sym_NS_INLINE] = ACTIONS(6833), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6833), + [anon_sym_OBJC_EXPORT] = ACTIONS(6833), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6833), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6833), + [anon_sym_const] = ACTIONS(6831), + [anon_sym_constexpr] = ACTIONS(6833), + [anon_sym_volatile] = ACTIONS(6833), + [anon_sym_restrict] = ACTIONS(6833), + [anon_sym___restrict__] = ACTIONS(6833), + [anon_sym__Atomic] = ACTIONS(6833), + [anon_sym__Noreturn] = ACTIONS(6833), + [anon_sym__Nonnull] = ACTIONS(6833), + [anon_sym_nullable] = ACTIONS(6833), + [anon_sym__Complex] = ACTIONS(6833), + [anon_sym__Nullable] = ACTIONS(6831), + [anon_sym__Nullable_result] = ACTIONS(6833), + [anon_sym__Null_unspecified] = ACTIONS(6833), + [anon_sym___autoreleasing] = ACTIONS(6833), + [anon_sym___block] = ACTIONS(6833), + [anon_sym___bridge] = ACTIONS(6831), + [anon_sym___bridge_retained] = ACTIONS(6833), + [anon_sym___bridge_transfer] = ACTIONS(6833), + [anon_sym___complex] = ACTIONS(6833), + [anon_sym___const] = ACTIONS(6833), + [anon_sym___imag] = ACTIONS(6833), + [anon_sym___kindof] = ACTIONS(6833), + [anon_sym___nonnull] = ACTIONS(6833), + [anon_sym___nullable] = ACTIONS(6833), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6833), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6833), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6833), + [anon_sym___real] = ACTIONS(6833), + [anon_sym___strong] = ACTIONS(6833), + [anon_sym___unsafe_unretained] = ACTIONS(6833), + [anon_sym___unused] = ACTIONS(6833), + [anon_sym___weak] = ACTIONS(6833), + [anon_sym_alignas] = ACTIONS(6833), + [anon_sym__Alignas] = ACTIONS(6833), + [anon_sym_in] = ACTIONS(6831), + [anon_sym_asm] = ACTIONS(6833), + [anon_sym___asm__] = ACTIONS(6833), + [anon_sym___asm] = ACTIONS(6831), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6833), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6833), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6833), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6833), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6833), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6833), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6833), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6833), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6833), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6833), + [anon_sym_NS_AVAILABLE] = ACTIONS(6831), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6833), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6833), + [anon_sym_API_AVAILABLE] = ACTIONS(6833), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6833), + [anon_sym_API_DEPRECATED] = ACTIONS(6833), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6833), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6833), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6833), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6833), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6833), + [anon_sym___deprecated_msg] = ACTIONS(6833), + [anon_sym___deprecated_enum_msg] = ACTIONS(6833), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6833), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6833), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6833), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6833), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6833), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6833), + }, + [3240] = { + [sym_parameter_list] = STATE(3198), + [anon_sym_COMMA] = ACTIONS(6841), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(6841), + [anon_sym_extern] = ACTIONS(6841), + [anon_sym___attribute__] = ACTIONS(6841), + [anon_sym___attribute] = ACTIONS(6839), + [anon_sym_noreturn] = ACTIONS(6841), + [anon_sym_LBRACK] = ACTIONS(7709), + [anon_sym___declspec] = ACTIONS(6841), + [anon_sym_static] = ACTIONS(6841), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_auto] = ACTIONS(6841), + [anon_sym_register] = ACTIONS(6841), + [anon_sym_inline] = ACTIONS(6841), + [anon_sym___inline] = ACTIONS(6839), + [anon_sym___inline__] = ACTIONS(6841), + [anon_sym___forceinline] = ACTIONS(6841), + [anon_sym_thread_local] = ACTIONS(6841), + [anon_sym___thread] = ACTIONS(6841), + [anon_sym_CG_EXTERN] = ACTIONS(6841), + [anon_sym_CG_INLINE] = ACTIONS(6841), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6841), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6841), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6841), + [anon_sym_IBOutlet] = ACTIONS(6841), + [anon_sym_IBInspectable] = ACTIONS(6841), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6841), + [anon_sym_NS_INLINE] = ACTIONS(6841), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6841), + [anon_sym_OBJC_EXPORT] = ACTIONS(6841), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6841), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(6839), + [anon_sym_constexpr] = ACTIONS(6841), + [anon_sym_volatile] = ACTIONS(6841), + [anon_sym_restrict] = ACTIONS(6841), + [anon_sym___restrict__] = ACTIONS(6841), + [anon_sym__Atomic] = ACTIONS(6841), + [anon_sym__Noreturn] = ACTIONS(6841), + [anon_sym__Nonnull] = ACTIONS(6841), + [anon_sym_nullable] = ACTIONS(6841), + [anon_sym__Complex] = ACTIONS(6841), + [anon_sym__Nullable] = ACTIONS(6839), + [anon_sym__Nullable_result] = ACTIONS(6841), + [anon_sym__Null_unspecified] = ACTIONS(6841), + [anon_sym___autoreleasing] = ACTIONS(6841), + [anon_sym___block] = ACTIONS(6841), + [anon_sym___bridge] = ACTIONS(6839), + [anon_sym___bridge_retained] = ACTIONS(6841), + [anon_sym___bridge_transfer] = ACTIONS(6841), + [anon_sym___complex] = ACTIONS(6841), + [anon_sym___const] = ACTIONS(6841), + [anon_sym___imag] = ACTIONS(6841), + [anon_sym___kindof] = ACTIONS(6841), + [anon_sym___nonnull] = ACTIONS(6841), + [anon_sym___nullable] = ACTIONS(6841), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6841), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6841), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6841), + [anon_sym___real] = ACTIONS(6841), + [anon_sym___strong] = ACTIONS(6841), + [anon_sym___unsafe_unretained] = ACTIONS(6841), + [anon_sym___unused] = ACTIONS(6841), + [anon_sym___weak] = ACTIONS(6841), + [anon_sym_alignas] = ACTIONS(6841), + [anon_sym__Alignas] = ACTIONS(6841), + [anon_sym_in] = ACTIONS(6839), + [anon_sym_asm] = ACTIONS(6841), + [anon_sym___asm__] = ACTIONS(6841), + [anon_sym___asm] = ACTIONS(6839), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6841), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6841), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6841), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6841), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6841), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6841), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6841), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6841), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6841), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6841), + [anon_sym_NS_AVAILABLE] = ACTIONS(6839), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6841), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6841), + [anon_sym_API_AVAILABLE] = ACTIONS(6841), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6841), + [anon_sym_API_DEPRECATED] = ACTIONS(6841), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6841), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6841), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6841), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6841), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6841), + [anon_sym___deprecated_msg] = ACTIONS(6841), + [anon_sym___deprecated_enum_msg] = ACTIONS(6841), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6841), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6841), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6841), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6841), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6841), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6841), + }, + [3241] = { + [sym_attribute_specifier] = STATE(3317), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym__abstract_declarator] = STATE(5013), + [sym_parenthesized_declarator] = STATE(4011), + [sym_abstract_parenthesized_declarator] = STATE(4894), + [sym_pointer_declarator] = STATE(4011), + [sym_abstract_pointer_declarator] = STATE(4894), + [sym_function_declarator] = STATE(4011), + [sym_abstract_function_declarator] = STATE(4894), + [sym_array_declarator] = STATE(4011), + [sym_abstract_array_declarator] = STATE(4894), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_parameter_list] = STATE(4315), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_protocol_reference_list] = STATE(4814), + [sym_specifier_qualifier] = STATE(3317), + [sym_block_pointer_declarator] = STATE(4011), + [sym_abstract_block_pointer_declarator] = STATE(4894), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3317), + [sym_identifier] = ACTIONS(8070), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(5389), + [anon_sym_CARET] = ACTIONS(5391), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_LBRACK] = ACTIONS(8078), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_LBRACE] = ACTIONS(8072), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_ATautoreleasepool] = ACTIONS(8072), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8108), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3242] = { + [sym_parameter_list] = STATE(3198), + [anon_sym_COMMA] = ACTIONS(6821), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(6821), + [anon_sym_extern] = ACTIONS(6821), + [anon_sym___attribute__] = ACTIONS(6821), + [anon_sym___attribute] = ACTIONS(6819), + [anon_sym_noreturn] = ACTIONS(6821), + [anon_sym_LBRACK] = ACTIONS(7709), + [anon_sym___declspec] = ACTIONS(6821), + [anon_sym_static] = ACTIONS(6821), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_auto] = ACTIONS(6821), + [anon_sym_register] = ACTIONS(6821), + [anon_sym_inline] = ACTIONS(6821), + [anon_sym___inline] = ACTIONS(6819), + [anon_sym___inline__] = ACTIONS(6821), + [anon_sym___forceinline] = ACTIONS(6821), + [anon_sym_thread_local] = ACTIONS(6821), + [anon_sym___thread] = ACTIONS(6821), + [anon_sym_CG_EXTERN] = ACTIONS(6821), + [anon_sym_CG_INLINE] = ACTIONS(6821), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6821), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6821), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6821), + [anon_sym_IBOutlet] = ACTIONS(6821), + [anon_sym_IBInspectable] = ACTIONS(6821), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6821), + [anon_sym_NS_INLINE] = ACTIONS(6821), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6821), + [anon_sym_OBJC_EXPORT] = ACTIONS(6821), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6821), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(6819), + [anon_sym_constexpr] = ACTIONS(6821), + [anon_sym_volatile] = ACTIONS(6821), + [anon_sym_restrict] = ACTIONS(6821), + [anon_sym___restrict__] = ACTIONS(6821), + [anon_sym__Atomic] = ACTIONS(6821), + [anon_sym__Noreturn] = ACTIONS(6821), + [anon_sym__Nonnull] = ACTIONS(6821), + [anon_sym_nullable] = ACTIONS(6821), + [anon_sym__Complex] = ACTIONS(6821), + [anon_sym__Nullable] = ACTIONS(6819), + [anon_sym__Nullable_result] = ACTIONS(6821), + [anon_sym__Null_unspecified] = ACTIONS(6821), + [anon_sym___autoreleasing] = ACTIONS(6821), + [anon_sym___block] = ACTIONS(6821), + [anon_sym___bridge] = ACTIONS(6819), + [anon_sym___bridge_retained] = ACTIONS(6821), + [anon_sym___bridge_transfer] = ACTIONS(6821), + [anon_sym___complex] = ACTIONS(6821), + [anon_sym___const] = ACTIONS(6821), + [anon_sym___imag] = ACTIONS(6821), + [anon_sym___kindof] = ACTIONS(6821), + [anon_sym___nonnull] = ACTIONS(6821), + [anon_sym___nullable] = ACTIONS(6821), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6821), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6821), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6821), + [anon_sym___real] = ACTIONS(6821), + [anon_sym___strong] = ACTIONS(6821), + [anon_sym___unsafe_unretained] = ACTIONS(6821), + [anon_sym___unused] = ACTIONS(6821), + [anon_sym___weak] = ACTIONS(6821), + [anon_sym_alignas] = ACTIONS(6821), + [anon_sym__Alignas] = ACTIONS(6821), + [anon_sym_in] = ACTIONS(6819), + [anon_sym_asm] = ACTIONS(6821), + [anon_sym___asm__] = ACTIONS(6821), + [anon_sym___asm] = ACTIONS(6819), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6821), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6821), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6821), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6821), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6821), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6821), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6821), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6821), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6821), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6821), + [anon_sym_NS_AVAILABLE] = ACTIONS(6819), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6821), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6821), + [anon_sym_API_AVAILABLE] = ACTIONS(6821), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6821), + [anon_sym_API_DEPRECATED] = ACTIONS(6821), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6821), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6821), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6821), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6821), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6821), + [anon_sym___deprecated_msg] = ACTIONS(6821), + [anon_sym___deprecated_enum_msg] = ACTIONS(6821), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6821), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6821), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6821), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6821), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6821), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6821), + }, + [3243] = { + [anon_sym_COMMA] = ACTIONS(2662), + [anon_sym_LPAREN2] = ACTIONS(2662), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym___extension__] = ACTIONS(2662), + [anon_sym_extern] = ACTIONS(2662), + [anon_sym___attribute__] = ACTIONS(2662), + [anon_sym___attribute] = ACTIONS(2660), + [anon_sym_noreturn] = ACTIONS(2662), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym___declspec] = ACTIONS(2662), + [anon_sym_static] = ACTIONS(2662), + [anon_sym_EQ] = ACTIONS(2662), + [anon_sym_auto] = ACTIONS(2662), + [anon_sym_register] = ACTIONS(2662), + [anon_sym_inline] = ACTIONS(2662), + [anon_sym___inline] = ACTIONS(2660), + [anon_sym___inline__] = ACTIONS(2662), + [anon_sym___forceinline] = ACTIONS(2662), + [anon_sym_thread_local] = ACTIONS(2662), + [anon_sym___thread] = ACTIONS(2662), + [anon_sym_CG_EXTERN] = ACTIONS(2662), + [anon_sym_CG_INLINE] = ACTIONS(2662), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2662), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2662), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2662), + [anon_sym_IBOutlet] = ACTIONS(2662), + [anon_sym_IBInspectable] = ACTIONS(2662), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2662), + [anon_sym_NS_INLINE] = ACTIONS(2662), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2662), + [anon_sym_OBJC_EXPORT] = ACTIONS(2662), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2662), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2662), + [anon_sym_const] = ACTIONS(2660), + [anon_sym_constexpr] = ACTIONS(2662), + [anon_sym_volatile] = ACTIONS(2662), + [anon_sym_restrict] = ACTIONS(2662), + [anon_sym___restrict__] = ACTIONS(2662), + [anon_sym__Atomic] = ACTIONS(2662), + [anon_sym__Noreturn] = ACTIONS(2662), + [anon_sym__Nonnull] = ACTIONS(2662), + [anon_sym_nullable] = ACTIONS(2662), + [anon_sym__Complex] = ACTIONS(2662), + [anon_sym__Nullable] = ACTIONS(2660), + [anon_sym__Nullable_result] = ACTIONS(2662), + [anon_sym__Null_unspecified] = ACTIONS(2662), + [anon_sym___autoreleasing] = ACTIONS(2662), + [anon_sym___block] = ACTIONS(2662), + [anon_sym___bridge] = ACTIONS(2660), + [anon_sym___bridge_retained] = ACTIONS(2662), + [anon_sym___bridge_transfer] = ACTIONS(2662), + [anon_sym___complex] = ACTIONS(2662), + [anon_sym___const] = ACTIONS(2662), + [anon_sym___imag] = ACTIONS(2662), + [anon_sym___kindof] = ACTIONS(2662), + [anon_sym___nonnull] = ACTIONS(2662), + [anon_sym___nullable] = ACTIONS(2662), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2662), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2662), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2662), + [anon_sym___real] = ACTIONS(2662), + [anon_sym___strong] = ACTIONS(2662), + [anon_sym___unsafe_unretained] = ACTIONS(2662), + [anon_sym___unused] = ACTIONS(2662), + [anon_sym___weak] = ACTIONS(2662), + [anon_sym_alignas] = ACTIONS(2662), + [anon_sym__Alignas] = ACTIONS(2662), + [anon_sym_in] = ACTIONS(2660), + [anon_sym_asm] = ACTIONS(2662), + [anon_sym___asm__] = ACTIONS(2662), + [anon_sym___asm] = ACTIONS(2660), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2662), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2662), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2662), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2662), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2662), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2662), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2662), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2662), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2662), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2662), + [anon_sym_NS_AVAILABLE] = ACTIONS(2660), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2662), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2662), + [anon_sym_API_AVAILABLE] = ACTIONS(2662), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2662), + [anon_sym_API_DEPRECATED] = ACTIONS(2662), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2662), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2662), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2662), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2662), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2662), + [anon_sym___deprecated_msg] = ACTIONS(2662), + [anon_sym___deprecated_enum_msg] = ACTIONS(2662), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2662), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2662), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2662), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2662), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2662), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2662), + }, + [3244] = { + [anon_sym_COMMA] = ACTIONS(2806), + [anon_sym_LPAREN2] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym___extension__] = ACTIONS(2806), + [anon_sym_extern] = ACTIONS(2806), + [anon_sym___attribute__] = ACTIONS(2806), + [anon_sym___attribute] = ACTIONS(2804), + [anon_sym_noreturn] = ACTIONS(2806), + [anon_sym_LBRACK] = ACTIONS(2806), + [anon_sym___declspec] = ACTIONS(2806), + [anon_sym_static] = ACTIONS(2806), + [anon_sym_EQ] = ACTIONS(2806), + [anon_sym_auto] = ACTIONS(2806), + [anon_sym_register] = ACTIONS(2806), + [anon_sym_inline] = ACTIONS(2806), + [anon_sym___inline] = ACTIONS(2804), + [anon_sym___inline__] = ACTIONS(2806), + [anon_sym___forceinline] = ACTIONS(2806), + [anon_sym_thread_local] = ACTIONS(2806), + [anon_sym___thread] = ACTIONS(2806), + [anon_sym_CG_EXTERN] = ACTIONS(2806), + [anon_sym_CG_INLINE] = ACTIONS(2806), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2806), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2806), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2806), + [anon_sym_IBOutlet] = ACTIONS(2806), + [anon_sym_IBInspectable] = ACTIONS(2806), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2806), + [anon_sym_NS_INLINE] = ACTIONS(2806), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2806), + [anon_sym_OBJC_EXPORT] = ACTIONS(2806), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2806), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2806), + [anon_sym_const] = ACTIONS(2804), + [anon_sym_constexpr] = ACTIONS(2806), + [anon_sym_volatile] = ACTIONS(2806), + [anon_sym_restrict] = ACTIONS(2806), + [anon_sym___restrict__] = ACTIONS(2806), + [anon_sym__Atomic] = ACTIONS(2806), + [anon_sym__Noreturn] = ACTIONS(2806), + [anon_sym__Nonnull] = ACTIONS(2806), + [anon_sym_nullable] = ACTIONS(2806), + [anon_sym__Complex] = ACTIONS(2806), + [anon_sym__Nullable] = ACTIONS(2804), + [anon_sym__Nullable_result] = ACTIONS(2806), + [anon_sym__Null_unspecified] = ACTIONS(2806), + [anon_sym___autoreleasing] = ACTIONS(2806), + [anon_sym___block] = ACTIONS(2806), + [anon_sym___bridge] = ACTIONS(2804), + [anon_sym___bridge_retained] = ACTIONS(2806), + [anon_sym___bridge_transfer] = ACTIONS(2806), + [anon_sym___complex] = ACTIONS(2806), + [anon_sym___const] = ACTIONS(2806), + [anon_sym___imag] = ACTIONS(2806), + [anon_sym___kindof] = ACTIONS(2806), + [anon_sym___nonnull] = ACTIONS(2806), + [anon_sym___nullable] = ACTIONS(2806), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2806), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2806), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2806), + [anon_sym___real] = ACTIONS(2806), + [anon_sym___strong] = ACTIONS(2806), + [anon_sym___unsafe_unretained] = ACTIONS(2806), + [anon_sym___unused] = ACTIONS(2806), + [anon_sym___weak] = ACTIONS(2806), + [anon_sym_alignas] = ACTIONS(2806), + [anon_sym__Alignas] = ACTIONS(2806), + [anon_sym_in] = ACTIONS(2804), + [anon_sym_asm] = ACTIONS(2806), + [anon_sym___asm__] = ACTIONS(2806), + [anon_sym___asm] = ACTIONS(2804), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2806), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2806), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2806), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2806), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2806), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2806), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2806), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2806), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2806), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2806), + [anon_sym_NS_AVAILABLE] = ACTIONS(2804), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2806), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2806), + [anon_sym_API_AVAILABLE] = ACTIONS(2806), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2806), + [anon_sym_API_DEPRECATED] = ACTIONS(2806), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2806), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2806), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2806), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2806), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2806), + [anon_sym___deprecated_msg] = ACTIONS(2806), + [anon_sym___deprecated_enum_msg] = ACTIONS(2806), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2806), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2806), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2806), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2806), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2806), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2806), + }, + [3245] = { + [sym_keyword_declarator] = STATE(3247), + [sym_method_parameter] = STATE(3245), + [aux_sym_keyword_selector_repeat1] = STATE(3247), + [aux_sym_method_declaration_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(8110), + [anon_sym_COMMA] = ACTIONS(8113), + [anon_sym_SEMI] = ACTIONS(8113), + [anon_sym___extension__] = ACTIONS(8115), + [anon_sym_extern] = ACTIONS(8115), + [anon_sym___attribute__] = ACTIONS(8115), + [anon_sym___attribute] = ACTIONS(8115), + [anon_sym_noreturn] = ACTIONS(8115), + [anon_sym_LBRACK] = ACTIONS(8113), + [anon_sym___declspec] = ACTIONS(8115), + [anon_sym_static] = ACTIONS(8115), + [anon_sym_auto] = ACTIONS(8115), + [anon_sym_register] = ACTIONS(8115), + [anon_sym_inline] = ACTIONS(8115), + [anon_sym___inline] = ACTIONS(8115), + [anon_sym___inline__] = ACTIONS(8115), + [anon_sym___forceinline] = ACTIONS(8115), + [anon_sym_thread_local] = ACTIONS(8115), + [anon_sym___thread] = ACTIONS(8115), + [anon_sym_CG_EXTERN] = ACTIONS(8115), + [anon_sym_CG_INLINE] = ACTIONS(8115), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8115), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8115), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8115), + [anon_sym_IBOutlet] = ACTIONS(8115), + [anon_sym_IBInspectable] = ACTIONS(8115), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8115), + [anon_sym_NS_INLINE] = ACTIONS(8115), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8115), + [anon_sym_OBJC_EXPORT] = ACTIONS(8115), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8115), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8115), + [anon_sym_const] = ACTIONS(8115), + [anon_sym_constexpr] = ACTIONS(8115), + [anon_sym_volatile] = ACTIONS(8115), + [anon_sym_restrict] = ACTIONS(8115), + [anon_sym___restrict__] = ACTIONS(8115), + [anon_sym__Atomic] = ACTIONS(8115), + [anon_sym__Noreturn] = ACTIONS(8115), + [anon_sym__Nonnull] = ACTIONS(8115), + [anon_sym_nullable] = ACTIONS(8115), + [anon_sym__Complex] = ACTIONS(8115), + [anon_sym__Nullable] = ACTIONS(8115), + [anon_sym__Nullable_result] = ACTIONS(8115), + [anon_sym__Null_unspecified] = ACTIONS(8115), + [anon_sym___autoreleasing] = ACTIONS(8115), + [anon_sym___block] = ACTIONS(8115), + [anon_sym___bridge] = ACTIONS(8115), + [anon_sym___bridge_retained] = ACTIONS(8115), + [anon_sym___bridge_transfer] = ACTIONS(8115), + [anon_sym___complex] = ACTIONS(8115), + [anon_sym___const] = ACTIONS(8115), + [anon_sym___imag] = ACTIONS(8115), + [anon_sym___kindof] = ACTIONS(8115), + [anon_sym___nonnull] = ACTIONS(8115), + [anon_sym___nullable] = ACTIONS(8115), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8115), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8115), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8115), + [anon_sym___real] = ACTIONS(8115), + [anon_sym___strong] = ACTIONS(8115), + [anon_sym___unsafe_unretained] = ACTIONS(8115), + [anon_sym___unused] = ACTIONS(8115), + [anon_sym___weak] = ACTIONS(8115), + [anon_sym_alignas] = ACTIONS(8115), + [anon_sym__Alignas] = ACTIONS(8115), + [anon_sym_COLON] = ACTIONS(8117), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8115), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8115), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8115), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8115), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8115), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8115), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8115), + [anon_sym_NS_AVAILABLE] = ACTIONS(8115), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8115), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8115), + [anon_sym_API_AVAILABLE] = ACTIONS(8115), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8115), + [anon_sym_API_DEPRECATED] = ACTIONS(8115), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8115), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8115), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8115), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8115), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8115), + [anon_sym___deprecated_msg] = ACTIONS(8115), + [anon_sym___deprecated_enum_msg] = ACTIONS(8115), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8115), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8115), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8115), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8115), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8115), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8115), + }, + [3246] = { + [anon_sym_COMMA] = ACTIONS(2838), + [anon_sym_LPAREN2] = ACTIONS(2838), + [anon_sym_SEMI] = ACTIONS(2838), + [anon_sym___extension__] = ACTIONS(2838), + [anon_sym_extern] = ACTIONS(2838), + [anon_sym___attribute__] = ACTIONS(2838), + [anon_sym___attribute] = ACTIONS(2836), + [anon_sym_noreturn] = ACTIONS(2838), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym___declspec] = ACTIONS(2838), + [anon_sym_static] = ACTIONS(2838), + [anon_sym_EQ] = ACTIONS(2838), + [anon_sym_auto] = ACTIONS(2838), + [anon_sym_register] = ACTIONS(2838), + [anon_sym_inline] = ACTIONS(2838), + [anon_sym___inline] = ACTIONS(2836), + [anon_sym___inline__] = ACTIONS(2838), + [anon_sym___forceinline] = ACTIONS(2838), + [anon_sym_thread_local] = ACTIONS(2838), + [anon_sym___thread] = ACTIONS(2838), + [anon_sym_CG_EXTERN] = ACTIONS(2838), + [anon_sym_CG_INLINE] = ACTIONS(2838), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(2838), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(2838), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(2838), + [anon_sym_IBOutlet] = ACTIONS(2838), + [anon_sym_IBInspectable] = ACTIONS(2838), + [anon_sym_IB_DESIGNABLE] = ACTIONS(2838), + [anon_sym_NS_INLINE] = ACTIONS(2838), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2838), + [anon_sym_OBJC_EXPORT] = ACTIONS(2838), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(2838), + [anon_sym_UIKIT_EXTERN] = ACTIONS(2838), + [anon_sym_const] = ACTIONS(2836), + [anon_sym_constexpr] = ACTIONS(2838), + [anon_sym_volatile] = ACTIONS(2838), + [anon_sym_restrict] = ACTIONS(2838), + [anon_sym___restrict__] = ACTIONS(2838), + [anon_sym__Atomic] = ACTIONS(2838), + [anon_sym__Noreturn] = ACTIONS(2838), + [anon_sym__Nonnull] = ACTIONS(2838), + [anon_sym_nullable] = ACTIONS(2838), + [anon_sym__Complex] = ACTIONS(2838), + [anon_sym__Nullable] = ACTIONS(2836), + [anon_sym__Nullable_result] = ACTIONS(2838), + [anon_sym__Null_unspecified] = ACTIONS(2838), + [anon_sym___autoreleasing] = ACTIONS(2838), + [anon_sym___block] = ACTIONS(2838), + [anon_sym___bridge] = ACTIONS(2836), + [anon_sym___bridge_retained] = ACTIONS(2838), + [anon_sym___bridge_transfer] = ACTIONS(2838), + [anon_sym___complex] = ACTIONS(2838), + [anon_sym___const] = ACTIONS(2838), + [anon_sym___imag] = ACTIONS(2838), + [anon_sym___kindof] = ACTIONS(2838), + [anon_sym___nonnull] = ACTIONS(2838), + [anon_sym___nullable] = ACTIONS(2838), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2838), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2838), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2838), + [anon_sym___real] = ACTIONS(2838), + [anon_sym___strong] = ACTIONS(2838), + [anon_sym___unsafe_unretained] = ACTIONS(2838), + [anon_sym___unused] = ACTIONS(2838), + [anon_sym___weak] = ACTIONS(2838), + [anon_sym_alignas] = ACTIONS(2838), + [anon_sym__Alignas] = ACTIONS(2838), + [anon_sym_in] = ACTIONS(2836), + [anon_sym_asm] = ACTIONS(2838), + [anon_sym___asm__] = ACTIONS(2838), + [anon_sym___asm] = ACTIONS(2836), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(2838), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(2838), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2838), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(2838), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(2838), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(2838), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2838), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2838), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2838), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2838), + [anon_sym_NS_AVAILABLE] = ACTIONS(2836), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2838), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2838), + [anon_sym_API_AVAILABLE] = ACTIONS(2838), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2838), + [anon_sym_API_DEPRECATED] = ACTIONS(2838), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2838), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2838), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2838), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2838), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2838), + [anon_sym___deprecated_msg] = ACTIONS(2838), + [anon_sym___deprecated_enum_msg] = ACTIONS(2838), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2838), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2838), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2838), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2838), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2838), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(2838), + }, + [3247] = { + [sym_attribute_specifier] = STATE(3266), + [sym_keyword_declarator] = STATE(2790), + [sym_method_parameter] = STATE(3275), + [aux_sym_keyword_selector_repeat1] = STATE(2790), + [sym_identifier] = ACTIONS(8120), + [anon_sym_COMMA] = ACTIONS(8122), + [anon_sym_SEMI] = ACTIONS(8125), + [anon_sym___extension__] = ACTIONS(8120), + [anon_sym_extern] = ACTIONS(8120), + [anon_sym___attribute__] = ACTIONS(8127), + [anon_sym___attribute] = ACTIONS(8127), + [anon_sym_noreturn] = ACTIONS(8120), + [anon_sym_LBRACK] = ACTIONS(8125), + [anon_sym___declspec] = ACTIONS(8120), + [anon_sym_static] = ACTIONS(8120), + [anon_sym_auto] = ACTIONS(8120), + [anon_sym_register] = ACTIONS(8120), + [anon_sym_inline] = ACTIONS(8120), + [anon_sym___inline] = ACTIONS(8120), + [anon_sym___inline__] = ACTIONS(8120), + [anon_sym___forceinline] = ACTIONS(8120), + [anon_sym_thread_local] = ACTIONS(8120), + [anon_sym___thread] = ACTIONS(8120), + [anon_sym_CG_EXTERN] = ACTIONS(8120), + [anon_sym_CG_INLINE] = ACTIONS(8120), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8120), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8120), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8120), + [anon_sym_IBOutlet] = ACTIONS(8120), + [anon_sym_IBInspectable] = ACTIONS(8120), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8120), + [anon_sym_NS_INLINE] = ACTIONS(8120), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8120), + [anon_sym_OBJC_EXPORT] = ACTIONS(8120), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8120), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8120), + [anon_sym_const] = ACTIONS(8120), + [anon_sym_constexpr] = ACTIONS(8120), + [anon_sym_volatile] = ACTIONS(8120), + [anon_sym_restrict] = ACTIONS(8120), + [anon_sym___restrict__] = ACTIONS(8120), + [anon_sym__Atomic] = ACTIONS(8120), + [anon_sym__Noreturn] = ACTIONS(8120), + [anon_sym__Nonnull] = ACTIONS(8120), + [anon_sym_nullable] = ACTIONS(8120), + [anon_sym__Complex] = ACTIONS(8120), + [anon_sym__Nullable] = ACTIONS(8120), + [anon_sym__Nullable_result] = ACTIONS(8120), + [anon_sym__Null_unspecified] = ACTIONS(8120), + [anon_sym___autoreleasing] = ACTIONS(8120), + [anon_sym___block] = ACTIONS(8120), + [anon_sym___bridge] = ACTIONS(8120), + [anon_sym___bridge_retained] = ACTIONS(8120), + [anon_sym___bridge_transfer] = ACTIONS(8120), + [anon_sym___complex] = ACTIONS(8120), + [anon_sym___const] = ACTIONS(8120), + [anon_sym___imag] = ACTIONS(8120), + [anon_sym___kindof] = ACTIONS(8120), + [anon_sym___nonnull] = ACTIONS(8120), + [anon_sym___nullable] = ACTIONS(8120), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8120), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8120), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8120), + [anon_sym___real] = ACTIONS(8120), + [anon_sym___strong] = ACTIONS(8120), + [anon_sym___unsafe_unretained] = ACTIONS(8120), + [anon_sym___unused] = ACTIONS(8120), + [anon_sym___weak] = ACTIONS(8120), + [anon_sym_alignas] = ACTIONS(8120), + [anon_sym__Alignas] = ACTIONS(8120), + [anon_sym_COLON] = ACTIONS(8125), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8120), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8120), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8120), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8120), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8120), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8120), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8120), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8120), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8120), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8120), + [anon_sym_NS_AVAILABLE] = ACTIONS(8120), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8120), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8120), + [anon_sym_API_AVAILABLE] = ACTIONS(8120), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8120), + [anon_sym_API_DEPRECATED] = ACTIONS(8120), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8120), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8120), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8120), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8120), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8120), + [anon_sym___deprecated_msg] = ACTIONS(8120), + [anon_sym___deprecated_enum_msg] = ACTIONS(8120), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8120), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8120), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8120), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8120), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8120), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8120), + }, + [3248] = { + [sym_attribute_specifier] = STATE(3251), + [sym_type_qualifier] = STATE(3251), + [sym_alignas_qualifier] = STATE(2368), + [aux_sym_function_field_declarator_repeat1] = STATE(3251), + [anon_sym_COMMA] = ACTIONS(8130), + [anon_sym_LPAREN2] = ACTIONS(8130), + [anon_sym_SEMI] = ACTIONS(8130), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym_extern] = ACTIONS(8130), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(8130), + [anon_sym___declspec] = ACTIONS(8130), + [anon_sym_static] = ACTIONS(8130), + [anon_sym_auto] = ACTIONS(8130), + [anon_sym_register] = ACTIONS(8130), + [anon_sym_inline] = ACTIONS(8130), + [anon_sym___inline] = ACTIONS(8132), + [anon_sym___inline__] = ACTIONS(8130), + [anon_sym___forceinline] = ACTIONS(8130), + [anon_sym_thread_local] = ACTIONS(8130), + [anon_sym___thread] = ACTIONS(8130), + [anon_sym_CG_EXTERN] = ACTIONS(8130), + [anon_sym_CG_INLINE] = ACTIONS(8130), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8130), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8130), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8130), + [anon_sym_IBOutlet] = ACTIONS(8130), + [anon_sym_IBInspectable] = ACTIONS(8130), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8130), + [anon_sym_NS_INLINE] = ACTIONS(8130), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8130), + [anon_sym_OBJC_EXPORT] = ACTIONS(8130), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8130), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8130), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_nullable] = ACTIONS(6861), + [anon_sym__Complex] = ACTIONS(6861), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(6861), + [anon_sym__Null_unspecified] = ACTIONS(6861), + [anon_sym___autoreleasing] = ACTIONS(6861), + [anon_sym___block] = ACTIONS(6861), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(6861), + [anon_sym___bridge_transfer] = ACTIONS(6861), + [anon_sym___complex] = ACTIONS(6861), + [anon_sym___const] = ACTIONS(6861), + [anon_sym___imag] = ACTIONS(6861), + [anon_sym___kindof] = ACTIONS(6861), + [anon_sym___nonnull] = ACTIONS(6861), + [anon_sym___nullable] = ACTIONS(6861), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6861), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6861), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6861), + [anon_sym___real] = ACTIONS(6861), + [anon_sym___strong] = ACTIONS(6861), + [anon_sym___unsafe_unretained] = ACTIONS(6861), + [anon_sym___unused] = ACTIONS(6861), + [anon_sym___weak] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8130), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8130), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8130), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8130), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8130), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8130), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8130), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8130), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8130), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8130), + [anon_sym_NS_AVAILABLE] = ACTIONS(8132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8130), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8130), + [anon_sym_API_AVAILABLE] = ACTIONS(8130), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8130), + [anon_sym_API_DEPRECATED] = ACTIONS(8130), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8130), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8130), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8130), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8130), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8130), + [anon_sym___deprecated_msg] = ACTIONS(8130), + [anon_sym___deprecated_enum_msg] = ACTIONS(8130), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8130), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8130), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8130), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8130), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8130), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8130), + }, + [3249] = { + [sym_attribute_specifier] = STATE(6707), + [sym_parameter_list] = STATE(3030), + [aux_sym_c_method_parameter_repeat1] = STATE(3303), + [anon_sym_COMMA] = ACTIONS(6744), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6744), + [anon_sym___extension__] = ACTIONS(6744), + [anon_sym_extern] = ACTIONS(6744), + [anon_sym___attribute__] = ACTIONS(6744), + [anon_sym___attribute] = ACTIONS(6742), + [anon_sym_noreturn] = ACTIONS(6744), + [anon_sym_LBRACK] = ACTIONS(7709), + [anon_sym___declspec] = ACTIONS(6744), + [anon_sym_static] = ACTIONS(6744), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_auto] = ACTIONS(6744), + [anon_sym_register] = ACTIONS(6744), + [anon_sym_inline] = ACTIONS(6744), + [anon_sym___inline] = ACTIONS(6742), + [anon_sym___inline__] = ACTIONS(6744), + [anon_sym___forceinline] = ACTIONS(6744), + [anon_sym_thread_local] = ACTIONS(6744), + [anon_sym___thread] = ACTIONS(6744), + [anon_sym_CG_EXTERN] = ACTIONS(6744), + [anon_sym_CG_INLINE] = ACTIONS(6744), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6744), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6744), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6744), + [anon_sym_IBOutlet] = ACTIONS(6744), + [anon_sym_IBInspectable] = ACTIONS(6744), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6744), + [anon_sym_NS_INLINE] = ACTIONS(6744), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6744), + [anon_sym_OBJC_EXPORT] = ACTIONS(6744), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6744), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6744), + [anon_sym_const] = ACTIONS(6742), + [anon_sym_constexpr] = ACTIONS(6744), + [anon_sym_volatile] = ACTIONS(6744), + [anon_sym_restrict] = ACTIONS(6744), + [anon_sym___restrict__] = ACTIONS(6744), + [anon_sym__Atomic] = ACTIONS(6744), + [anon_sym__Noreturn] = ACTIONS(6744), + [anon_sym__Nonnull] = ACTIONS(6744), + [anon_sym_nullable] = ACTIONS(6744), + [anon_sym__Complex] = ACTIONS(6744), + [anon_sym__Nullable] = ACTIONS(6742), + [anon_sym__Nullable_result] = ACTIONS(6744), + [anon_sym__Null_unspecified] = ACTIONS(6744), + [anon_sym___autoreleasing] = ACTIONS(6744), + [anon_sym___block] = ACTIONS(6744), + [anon_sym___bridge] = ACTIONS(6742), + [anon_sym___bridge_retained] = ACTIONS(6744), + [anon_sym___bridge_transfer] = ACTIONS(6744), + [anon_sym___complex] = ACTIONS(6744), + [anon_sym___const] = ACTIONS(6744), + [anon_sym___imag] = ACTIONS(6744), + [anon_sym___kindof] = ACTIONS(6744), + [anon_sym___nonnull] = ACTIONS(6744), + [anon_sym___nullable] = ACTIONS(6744), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6744), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6744), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6744), + [anon_sym___real] = ACTIONS(6744), + [anon_sym___strong] = ACTIONS(6744), + [anon_sym___unsafe_unretained] = ACTIONS(6744), + [anon_sym___unused] = ACTIONS(6744), + [anon_sym___weak] = ACTIONS(6744), + [anon_sym_alignas] = ACTIONS(6744), + [anon_sym__Alignas] = ACTIONS(6744), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6744), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6744), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6744), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6744), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6744), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6744), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6744), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6744), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6744), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6744), + [anon_sym_NS_AVAILABLE] = ACTIONS(6742), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6744), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6744), + [anon_sym_API_AVAILABLE] = ACTIONS(6744), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6744), + [anon_sym_API_DEPRECATED] = ACTIONS(6744), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6744), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6744), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6744), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6744), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6744), + [anon_sym___deprecated_msg] = ACTIONS(6744), + [anon_sym___deprecated_enum_msg] = ACTIONS(6744), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6744), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6744), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6744), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6744), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6744), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6744), + }, + [3250] = { + [sym_attribute_specifier] = STATE(3264), + [sym_method_parameter] = STATE(3284), + [sym_identifier] = ACTIONS(8115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8134), + [anon_sym_COMMA] = ACTIONS(8113), + [anon_sym_SEMI] = ACTIONS(8113), + [anon_sym___extension__] = ACTIONS(8115), + [anon_sym_extern] = ACTIONS(8115), + [anon_sym___attribute__] = ACTIONS(8136), + [anon_sym___attribute] = ACTIONS(8136), + [anon_sym_noreturn] = ACTIONS(8115), + [anon_sym_LBRACK] = ACTIONS(8113), + [anon_sym___declspec] = ACTIONS(8115), + [anon_sym_static] = ACTIONS(8115), + [anon_sym_auto] = ACTIONS(8115), + [anon_sym_register] = ACTIONS(8115), + [anon_sym_inline] = ACTIONS(8115), + [anon_sym___inline] = ACTIONS(8115), + [anon_sym___inline__] = ACTIONS(8115), + [anon_sym___forceinline] = ACTIONS(8115), + [anon_sym_thread_local] = ACTIONS(8115), + [anon_sym___thread] = ACTIONS(8115), + [anon_sym_CG_EXTERN] = ACTIONS(8115), + [anon_sym_CG_INLINE] = ACTIONS(8115), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8115), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8115), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8115), + [anon_sym_IBOutlet] = ACTIONS(8115), + [anon_sym_IBInspectable] = ACTIONS(8115), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8115), + [anon_sym_NS_INLINE] = ACTIONS(8115), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8115), + [anon_sym_OBJC_EXPORT] = ACTIONS(8115), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8115), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8115), + [anon_sym_const] = ACTIONS(8115), + [anon_sym_constexpr] = ACTIONS(8115), + [anon_sym_volatile] = ACTIONS(8115), + [anon_sym_restrict] = ACTIONS(8115), + [anon_sym___restrict__] = ACTIONS(8115), + [anon_sym__Atomic] = ACTIONS(8115), + [anon_sym__Noreturn] = ACTIONS(8115), + [anon_sym__Nonnull] = ACTIONS(8115), + [anon_sym_nullable] = ACTIONS(8115), + [anon_sym__Complex] = ACTIONS(8115), + [anon_sym__Nullable] = ACTIONS(8115), + [anon_sym__Nullable_result] = ACTIONS(8115), + [anon_sym__Null_unspecified] = ACTIONS(8115), + [anon_sym___autoreleasing] = ACTIONS(8115), + [anon_sym___block] = ACTIONS(8115), + [anon_sym___bridge] = ACTIONS(8115), + [anon_sym___bridge_retained] = ACTIONS(8115), + [anon_sym___bridge_transfer] = ACTIONS(8115), + [anon_sym___complex] = ACTIONS(8115), + [anon_sym___const] = ACTIONS(8115), + [anon_sym___imag] = ACTIONS(8115), + [anon_sym___kindof] = ACTIONS(8115), + [anon_sym___nonnull] = ACTIONS(8115), + [anon_sym___nullable] = ACTIONS(8115), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8115), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8115), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8115), + [anon_sym___real] = ACTIONS(8115), + [anon_sym___strong] = ACTIONS(8115), + [anon_sym___unsafe_unretained] = ACTIONS(8115), + [anon_sym___unused] = ACTIONS(8115), + [anon_sym___weak] = ACTIONS(8115), + [anon_sym_alignas] = ACTIONS(8115), + [anon_sym__Alignas] = ACTIONS(8115), + [anon_sym_COLON] = ACTIONS(8139), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8115), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8115), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8115), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8115), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8115), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8115), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8115), + [anon_sym_NS_AVAILABLE] = ACTIONS(8115), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8115), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8115), + [anon_sym_API_AVAILABLE] = ACTIONS(8115), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8115), + [anon_sym_API_DEPRECATED] = ACTIONS(8115), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8115), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8115), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8115), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8115), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8115), + [anon_sym___deprecated_msg] = ACTIONS(8115), + [anon_sym___deprecated_enum_msg] = ACTIONS(8115), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8115), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8115), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8115), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8115), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8115), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8115), + }, + [3251] = { + [sym_attribute_specifier] = STATE(3090), + [sym_type_qualifier] = STATE(3090), + [sym_alignas_qualifier] = STATE(2368), + [aux_sym_function_field_declarator_repeat1] = STATE(3090), + [anon_sym_COMMA] = ACTIONS(8142), + [anon_sym_LPAREN2] = ACTIONS(8142), + [anon_sym_SEMI] = ACTIONS(8142), + [anon_sym___extension__] = ACTIONS(8142), + [anon_sym_extern] = ACTIONS(8142), + [anon_sym___attribute__] = ACTIONS(8142), + [anon_sym___attribute] = ACTIONS(8144), + [anon_sym_noreturn] = ACTIONS(8142), + [anon_sym_LBRACK] = ACTIONS(8142), + [anon_sym___declspec] = ACTIONS(8142), + [anon_sym_static] = ACTIONS(8142), + [anon_sym_auto] = ACTIONS(8142), + [anon_sym_register] = ACTIONS(8142), + [anon_sym_inline] = ACTIONS(8142), + [anon_sym___inline] = ACTIONS(8144), + [anon_sym___inline__] = ACTIONS(8142), + [anon_sym___forceinline] = ACTIONS(8142), + [anon_sym_thread_local] = ACTIONS(8142), + [anon_sym___thread] = ACTIONS(8142), + [anon_sym_CG_EXTERN] = ACTIONS(8142), + [anon_sym_CG_INLINE] = ACTIONS(8142), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8142), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8142), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8142), + [anon_sym_IBOutlet] = ACTIONS(8142), + [anon_sym_IBInspectable] = ACTIONS(8142), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8142), + [anon_sym_NS_INLINE] = ACTIONS(8142), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8142), + [anon_sym_OBJC_EXPORT] = ACTIONS(8142), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8142), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8142), + [anon_sym_const] = ACTIONS(8144), + [anon_sym_constexpr] = ACTIONS(8142), + [anon_sym_volatile] = ACTIONS(8142), + [anon_sym_restrict] = ACTIONS(8142), + [anon_sym___restrict__] = ACTIONS(8142), + [anon_sym__Atomic] = ACTIONS(8142), + [anon_sym__Noreturn] = ACTIONS(8142), + [anon_sym__Nonnull] = ACTIONS(8142), + [anon_sym_nullable] = ACTIONS(8142), + [anon_sym__Complex] = ACTIONS(8142), + [anon_sym__Nullable] = ACTIONS(8144), + [anon_sym__Nullable_result] = ACTIONS(8142), + [anon_sym__Null_unspecified] = ACTIONS(8142), + [anon_sym___autoreleasing] = ACTIONS(8142), + [anon_sym___block] = ACTIONS(8142), + [anon_sym___bridge] = ACTIONS(8144), + [anon_sym___bridge_retained] = ACTIONS(8142), + [anon_sym___bridge_transfer] = ACTIONS(8142), + [anon_sym___complex] = ACTIONS(8142), + [anon_sym___const] = ACTIONS(8142), + [anon_sym___imag] = ACTIONS(8142), + [anon_sym___kindof] = ACTIONS(8142), + [anon_sym___nonnull] = ACTIONS(8142), + [anon_sym___nullable] = ACTIONS(8142), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8142), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8142), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8142), + [anon_sym___real] = ACTIONS(8142), + [anon_sym___strong] = ACTIONS(8142), + [anon_sym___unsafe_unretained] = ACTIONS(8142), + [anon_sym___unused] = ACTIONS(8142), + [anon_sym___weak] = ACTIONS(8142), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8142), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8142), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8142), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8142), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8142), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8142), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8142), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8142), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8142), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8142), + [anon_sym_NS_AVAILABLE] = ACTIONS(8144), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8142), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8142), + [anon_sym_API_AVAILABLE] = ACTIONS(8142), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8142), + [anon_sym_API_DEPRECATED] = ACTIONS(8142), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8142), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8142), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8142), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8142), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8142), + [anon_sym___deprecated_msg] = ACTIONS(8142), + [anon_sym___deprecated_enum_msg] = ACTIONS(8142), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8142), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8142), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8142), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8142), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8142), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8142), + }, + [3252] = { + [sym_attribute_specifier] = STATE(3266), + [sym_method_parameter] = STATE(3275), + [sym_identifier] = ACTIONS(8120), + [anon_sym_COMMA] = ACTIONS(8125), + [anon_sym_SEMI] = ACTIONS(8125), + [anon_sym___extension__] = ACTIONS(8120), + [anon_sym_extern] = ACTIONS(8120), + [anon_sym___attribute__] = ACTIONS(8127), + [anon_sym___attribute] = ACTIONS(8127), + [anon_sym_noreturn] = ACTIONS(8120), + [anon_sym_LBRACK] = ACTIONS(8125), + [anon_sym___declspec] = ACTIONS(8120), + [anon_sym_static] = ACTIONS(8120), + [anon_sym_auto] = ACTIONS(8120), + [anon_sym_register] = ACTIONS(8120), + [anon_sym_inline] = ACTIONS(8120), + [anon_sym___inline] = ACTIONS(8120), + [anon_sym___inline__] = ACTIONS(8120), + [anon_sym___forceinline] = ACTIONS(8120), + [anon_sym_thread_local] = ACTIONS(8120), + [anon_sym___thread] = ACTIONS(8120), + [anon_sym_CG_EXTERN] = ACTIONS(8120), + [anon_sym_CG_INLINE] = ACTIONS(8120), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8120), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8120), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8120), + [anon_sym_IBOutlet] = ACTIONS(8120), + [anon_sym_IBInspectable] = ACTIONS(8120), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8120), + [anon_sym_NS_INLINE] = ACTIONS(8120), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8120), + [anon_sym_OBJC_EXPORT] = ACTIONS(8120), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8120), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8120), + [anon_sym_const] = ACTIONS(8120), + [anon_sym_constexpr] = ACTIONS(8120), + [anon_sym_volatile] = ACTIONS(8120), + [anon_sym_restrict] = ACTIONS(8120), + [anon_sym___restrict__] = ACTIONS(8120), + [anon_sym__Atomic] = ACTIONS(8120), + [anon_sym__Noreturn] = ACTIONS(8120), + [anon_sym__Nonnull] = ACTIONS(8120), + [anon_sym_nullable] = ACTIONS(8120), + [anon_sym__Complex] = ACTIONS(8120), + [anon_sym__Nullable] = ACTIONS(8120), + [anon_sym__Nullable_result] = ACTIONS(8120), + [anon_sym__Null_unspecified] = ACTIONS(8120), + [anon_sym___autoreleasing] = ACTIONS(8120), + [anon_sym___block] = ACTIONS(8120), + [anon_sym___bridge] = ACTIONS(8120), + [anon_sym___bridge_retained] = ACTIONS(8120), + [anon_sym___bridge_transfer] = ACTIONS(8120), + [anon_sym___complex] = ACTIONS(8120), + [anon_sym___const] = ACTIONS(8120), + [anon_sym___imag] = ACTIONS(8120), + [anon_sym___kindof] = ACTIONS(8120), + [anon_sym___nonnull] = ACTIONS(8120), + [anon_sym___nullable] = ACTIONS(8120), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8120), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8120), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8120), + [anon_sym___real] = ACTIONS(8120), + [anon_sym___strong] = ACTIONS(8120), + [anon_sym___unsafe_unretained] = ACTIONS(8120), + [anon_sym___unused] = ACTIONS(8120), + [anon_sym___weak] = ACTIONS(8120), + [anon_sym_alignas] = ACTIONS(8120), + [anon_sym__Alignas] = ACTIONS(8120), + [anon_sym_COLON] = ACTIONS(8125), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8120), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8120), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8120), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8120), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8120), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8120), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8120), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8120), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8120), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8120), + [anon_sym_NS_AVAILABLE] = ACTIONS(8120), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8120), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8120), + [anon_sym_API_AVAILABLE] = ACTIONS(8120), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8120), + [anon_sym_API_DEPRECATED] = ACTIONS(8120), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8120), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8120), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8120), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8120), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8120), + [anon_sym___deprecated_msg] = ACTIONS(8120), + [anon_sym___deprecated_enum_msg] = ACTIONS(8120), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8120), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8120), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8120), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8120), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8120), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8120), + }, + [3253] = { + [sym_identifier] = ACTIONS(5034), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym___extension__] = ACTIONS(5034), + [anon_sym_extern] = ACTIONS(5034), + [anon_sym___attribute__] = ACTIONS(5034), + [anon_sym___attribute] = ACTIONS(5034), + [anon_sym_noreturn] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym___declspec] = ACTIONS(5034), + [anon_sym___based] = ACTIONS(5034), + [anon_sym_static] = ACTIONS(5034), + [anon_sym_auto] = ACTIONS(5034), + [anon_sym_register] = ACTIONS(5034), + [anon_sym_inline] = ACTIONS(5034), + [anon_sym___inline] = ACTIONS(5034), + [anon_sym___inline__] = ACTIONS(5034), + [anon_sym___forceinline] = ACTIONS(5034), + [anon_sym_thread_local] = ACTIONS(5034), + [anon_sym___thread] = ACTIONS(5034), + [anon_sym_CG_EXTERN] = ACTIONS(5034), + [anon_sym_CG_INLINE] = ACTIONS(5034), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5034), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5034), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5034), + [anon_sym_IBOutlet] = ACTIONS(5034), + [anon_sym_IBInspectable] = ACTIONS(5034), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5034), + [anon_sym_NS_INLINE] = ACTIONS(5034), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5034), + [anon_sym_OBJC_EXPORT] = ACTIONS(5034), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5034), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5034), + [anon_sym_const] = ACTIONS(5034), + [anon_sym_constexpr] = ACTIONS(5034), + [anon_sym_volatile] = ACTIONS(5034), + [anon_sym_restrict] = ACTIONS(5034), + [anon_sym___restrict__] = ACTIONS(5034), + [anon_sym__Atomic] = ACTIONS(5034), + [anon_sym__Noreturn] = ACTIONS(5034), + [anon_sym__Nonnull] = ACTIONS(5034), + [anon_sym_nullable] = ACTIONS(5034), + [anon_sym__Complex] = ACTIONS(5034), + [anon_sym__Nullable] = ACTIONS(5034), + [anon_sym__Nullable_result] = ACTIONS(5034), + [anon_sym__Null_unspecified] = ACTIONS(5034), + [anon_sym___autoreleasing] = ACTIONS(5034), + [anon_sym___block] = ACTIONS(5034), + [anon_sym___bridge] = ACTIONS(5034), + [anon_sym___bridge_retained] = ACTIONS(5034), + [anon_sym___bridge_transfer] = ACTIONS(5034), + [anon_sym___complex] = ACTIONS(5034), + [anon_sym___const] = ACTIONS(5034), + [anon_sym___imag] = ACTIONS(5034), + [anon_sym___kindof] = ACTIONS(5034), + [anon_sym___nonnull] = ACTIONS(5034), + [anon_sym___nullable] = ACTIONS(5034), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5034), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5034), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5034), + [anon_sym___real] = ACTIONS(5034), + [anon_sym___strong] = ACTIONS(5034), + [anon_sym___unsafe_unretained] = ACTIONS(5034), + [anon_sym___unused] = ACTIONS(5034), + [anon_sym___weak] = ACTIONS(5034), + [anon_sym_alignas] = ACTIONS(5034), + [anon_sym__Alignas] = ACTIONS(5034), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5034), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5034), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5034), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5034), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5034), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5034), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5034), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5034), + [anon_sym_NS_AVAILABLE] = ACTIONS(5034), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5034), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_API_AVAILABLE] = ACTIONS(5034), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_API_DEPRECATED] = ACTIONS(5034), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5034), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5034), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5034), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5034), + [anon_sym___deprecated_msg] = ACTIONS(5034), + [anon_sym___deprecated_enum_msg] = ACTIONS(5034), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5034), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5034), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5034), + }, + [3254] = { + [sym_attribute_specifier] = STATE(3263), + [sym_method_parameter] = STATE(3276), + [sym_identifier] = ACTIONS(8148), + [anon_sym_COMMA] = ACTIONS(8150), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym___extension__] = ACTIONS(8148), + [anon_sym_extern] = ACTIONS(8148), + [anon_sym___attribute__] = ACTIONS(8152), + [anon_sym___attribute] = ACTIONS(8152), + [anon_sym_noreturn] = ACTIONS(8148), + [anon_sym_LBRACK] = ACTIONS(8150), + [anon_sym___declspec] = ACTIONS(8148), + [anon_sym_static] = ACTIONS(8148), + [anon_sym_auto] = ACTIONS(8148), + [anon_sym_register] = ACTIONS(8148), + [anon_sym_inline] = ACTIONS(8148), + [anon_sym___inline] = ACTIONS(8148), + [anon_sym___inline__] = ACTIONS(8148), + [anon_sym___forceinline] = ACTIONS(8148), + [anon_sym_thread_local] = ACTIONS(8148), + [anon_sym___thread] = ACTIONS(8148), + [anon_sym_CG_EXTERN] = ACTIONS(8148), + [anon_sym_CG_INLINE] = ACTIONS(8148), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8148), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8148), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8148), + [anon_sym_IBOutlet] = ACTIONS(8148), + [anon_sym_IBInspectable] = ACTIONS(8148), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8148), + [anon_sym_NS_INLINE] = ACTIONS(8148), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8148), + [anon_sym_OBJC_EXPORT] = ACTIONS(8148), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8148), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8148), + [anon_sym_const] = ACTIONS(8148), + [anon_sym_constexpr] = ACTIONS(8148), + [anon_sym_volatile] = ACTIONS(8148), + [anon_sym_restrict] = ACTIONS(8148), + [anon_sym___restrict__] = ACTIONS(8148), + [anon_sym__Atomic] = ACTIONS(8148), + [anon_sym__Noreturn] = ACTIONS(8148), + [anon_sym__Nonnull] = ACTIONS(8148), + [anon_sym_nullable] = ACTIONS(8148), + [anon_sym__Complex] = ACTIONS(8148), + [anon_sym__Nullable] = ACTIONS(8148), + [anon_sym__Nullable_result] = ACTIONS(8148), + [anon_sym__Null_unspecified] = ACTIONS(8148), + [anon_sym___autoreleasing] = ACTIONS(8148), + [anon_sym___block] = ACTIONS(8148), + [anon_sym___bridge] = ACTIONS(8148), + [anon_sym___bridge_retained] = ACTIONS(8148), + [anon_sym___bridge_transfer] = ACTIONS(8148), + [anon_sym___complex] = ACTIONS(8148), + [anon_sym___const] = ACTIONS(8148), + [anon_sym___imag] = ACTIONS(8148), + [anon_sym___kindof] = ACTIONS(8148), + [anon_sym___nonnull] = ACTIONS(8148), + [anon_sym___nullable] = ACTIONS(8148), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8148), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8148), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8148), + [anon_sym___real] = ACTIONS(8148), + [anon_sym___strong] = ACTIONS(8148), + [anon_sym___unsafe_unretained] = ACTIONS(8148), + [anon_sym___unused] = ACTIONS(8148), + [anon_sym___weak] = ACTIONS(8148), + [anon_sym_alignas] = ACTIONS(8148), + [anon_sym__Alignas] = ACTIONS(8148), + [anon_sym_COLON] = ACTIONS(8155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8148), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8148), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8148), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8148), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8148), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8148), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8148), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8148), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8148), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8148), + [anon_sym_NS_AVAILABLE] = ACTIONS(8148), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8148), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8148), + [anon_sym_API_AVAILABLE] = ACTIONS(8148), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8148), + [anon_sym_API_DEPRECATED] = ACTIONS(8148), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8148), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8148), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8148), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8148), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8148), + [anon_sym___deprecated_msg] = ACTIONS(8148), + [anon_sym___deprecated_enum_msg] = ACTIONS(8148), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8148), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8148), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8148), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8148), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8148), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8148), + }, + [3255] = { + [sym_identifier] = ACTIONS(5034), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(8158), + [anon_sym___extension__] = ACTIONS(5034), + [anon_sym_extern] = ACTIONS(5034), + [anon_sym___attribute__] = ACTIONS(5034), + [anon_sym___attribute] = ACTIONS(5034), + [anon_sym_noreturn] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym___declspec] = ACTIONS(5034), + [anon_sym___based] = ACTIONS(5034), + [anon_sym_static] = ACTIONS(5034), + [anon_sym_auto] = ACTIONS(5034), + [anon_sym_register] = ACTIONS(5034), + [anon_sym_inline] = ACTIONS(5034), + [anon_sym___inline] = ACTIONS(5034), + [anon_sym___inline__] = ACTIONS(5034), + [anon_sym___forceinline] = ACTIONS(5034), + [anon_sym_thread_local] = ACTIONS(5034), + [anon_sym___thread] = ACTIONS(5034), + [anon_sym_CG_EXTERN] = ACTIONS(5034), + [anon_sym_CG_INLINE] = ACTIONS(5034), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5034), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5034), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5034), + [anon_sym_IBOutlet] = ACTIONS(5034), + [anon_sym_IBInspectable] = ACTIONS(5034), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5034), + [anon_sym_NS_INLINE] = ACTIONS(5034), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5034), + [anon_sym_OBJC_EXPORT] = ACTIONS(5034), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5034), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5034), + [anon_sym_const] = ACTIONS(5034), + [anon_sym_constexpr] = ACTIONS(5034), + [anon_sym_volatile] = ACTIONS(5034), + [anon_sym_restrict] = ACTIONS(5034), + [anon_sym___restrict__] = ACTIONS(5034), + [anon_sym__Atomic] = ACTIONS(5034), + [anon_sym__Noreturn] = ACTIONS(5034), + [anon_sym__Nonnull] = ACTIONS(5034), + [anon_sym_nullable] = ACTIONS(5034), + [anon_sym__Complex] = ACTIONS(5034), + [anon_sym__Nullable] = ACTIONS(5034), + [anon_sym__Nullable_result] = ACTIONS(5034), + [anon_sym__Null_unspecified] = ACTIONS(5034), + [anon_sym___autoreleasing] = ACTIONS(5034), + [anon_sym___block] = ACTIONS(5034), + [anon_sym___bridge] = ACTIONS(5034), + [anon_sym___bridge_retained] = ACTIONS(5034), + [anon_sym___bridge_transfer] = ACTIONS(5034), + [anon_sym___complex] = ACTIONS(5034), + [anon_sym___const] = ACTIONS(5034), + [anon_sym___imag] = ACTIONS(5034), + [anon_sym___kindof] = ACTIONS(5034), + [anon_sym___nonnull] = ACTIONS(5034), + [anon_sym___nullable] = ACTIONS(5034), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5034), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5034), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5034), + [anon_sym___real] = ACTIONS(5034), + [anon_sym___strong] = ACTIONS(5034), + [anon_sym___unsafe_unretained] = ACTIONS(5034), + [anon_sym___unused] = ACTIONS(5034), + [anon_sym___weak] = ACTIONS(5034), + [anon_sym_alignas] = ACTIONS(5034), + [anon_sym__Alignas] = ACTIONS(5034), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5034), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5034), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5034), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5034), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5034), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5034), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5034), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5034), + [anon_sym_NS_AVAILABLE] = ACTIONS(5034), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5034), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_API_AVAILABLE] = ACTIONS(5034), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_API_DEPRECATED] = ACTIONS(5034), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5034), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5034), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5034), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5034), + [anon_sym___deprecated_msg] = ACTIONS(5034), + [anon_sym___deprecated_enum_msg] = ACTIONS(5034), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5034), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5034), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5034), + }, + [3256] = { + [sym_identifier] = ACTIONS(5034), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(8160), + [anon_sym___extension__] = ACTIONS(5034), + [anon_sym_extern] = ACTIONS(5034), + [anon_sym___attribute__] = ACTIONS(5034), + [anon_sym___attribute] = ACTIONS(5034), + [anon_sym_noreturn] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym___declspec] = ACTIONS(5034), + [anon_sym___based] = ACTIONS(5034), + [anon_sym_static] = ACTIONS(5034), + [anon_sym_auto] = ACTIONS(5034), + [anon_sym_register] = ACTIONS(5034), + [anon_sym_inline] = ACTIONS(5034), + [anon_sym___inline] = ACTIONS(5034), + [anon_sym___inline__] = ACTIONS(5034), + [anon_sym___forceinline] = ACTIONS(5034), + [anon_sym_thread_local] = ACTIONS(5034), + [anon_sym___thread] = ACTIONS(5034), + [anon_sym_CG_EXTERN] = ACTIONS(5034), + [anon_sym_CG_INLINE] = ACTIONS(5034), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5034), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5034), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5034), + [anon_sym_IBOutlet] = ACTIONS(5034), + [anon_sym_IBInspectable] = ACTIONS(5034), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5034), + [anon_sym_NS_INLINE] = ACTIONS(5034), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5034), + [anon_sym_OBJC_EXPORT] = ACTIONS(5034), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5034), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5034), + [anon_sym_const] = ACTIONS(5034), + [anon_sym_constexpr] = ACTIONS(5034), + [anon_sym_volatile] = ACTIONS(5034), + [anon_sym_restrict] = ACTIONS(5034), + [anon_sym___restrict__] = ACTIONS(5034), + [anon_sym__Atomic] = ACTIONS(5034), + [anon_sym__Noreturn] = ACTIONS(5034), + [anon_sym__Nonnull] = ACTIONS(5034), + [anon_sym_nullable] = ACTIONS(5034), + [anon_sym__Complex] = ACTIONS(5034), + [anon_sym__Nullable] = ACTIONS(5034), + [anon_sym__Nullable_result] = ACTIONS(5034), + [anon_sym__Null_unspecified] = ACTIONS(5034), + [anon_sym___autoreleasing] = ACTIONS(5034), + [anon_sym___block] = ACTIONS(5034), + [anon_sym___bridge] = ACTIONS(5034), + [anon_sym___bridge_retained] = ACTIONS(5034), + [anon_sym___bridge_transfer] = ACTIONS(5034), + [anon_sym___complex] = ACTIONS(5034), + [anon_sym___const] = ACTIONS(5034), + [anon_sym___imag] = ACTIONS(5034), + [anon_sym___kindof] = ACTIONS(5034), + [anon_sym___nonnull] = ACTIONS(5034), + [anon_sym___nullable] = ACTIONS(5034), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5034), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5034), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5034), + [anon_sym___real] = ACTIONS(5034), + [anon_sym___strong] = ACTIONS(5034), + [anon_sym___unsafe_unretained] = ACTIONS(5034), + [anon_sym___unused] = ACTIONS(5034), + [anon_sym___weak] = ACTIONS(5034), + [anon_sym_alignas] = ACTIONS(5034), + [anon_sym__Alignas] = ACTIONS(5034), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5034), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5034), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5034), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5034), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5034), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5034), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5034), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5034), + [anon_sym_NS_AVAILABLE] = ACTIONS(5034), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5034), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_API_AVAILABLE] = ACTIONS(5034), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_API_DEPRECATED] = ACTIONS(5034), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5034), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5034), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5034), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5034), + [anon_sym___deprecated_msg] = ACTIONS(5034), + [anon_sym___deprecated_enum_msg] = ACTIONS(5034), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5034), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5034), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5034), + }, + [3257] = { + [sym_identifier] = ACTIONS(5034), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(8162), + [anon_sym___extension__] = ACTIONS(5034), + [anon_sym_extern] = ACTIONS(5034), + [anon_sym___attribute__] = ACTIONS(5034), + [anon_sym___attribute] = ACTIONS(5034), + [anon_sym_noreturn] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym___declspec] = ACTIONS(5034), + [anon_sym___based] = ACTIONS(5034), + [anon_sym_static] = ACTIONS(5034), + [anon_sym_auto] = ACTIONS(5034), + [anon_sym_register] = ACTIONS(5034), + [anon_sym_inline] = ACTIONS(5034), + [anon_sym___inline] = ACTIONS(5034), + [anon_sym___inline__] = ACTIONS(5034), + [anon_sym___forceinline] = ACTIONS(5034), + [anon_sym_thread_local] = ACTIONS(5034), + [anon_sym___thread] = ACTIONS(5034), + [anon_sym_CG_EXTERN] = ACTIONS(5034), + [anon_sym_CG_INLINE] = ACTIONS(5034), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5034), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5034), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5034), + [anon_sym_IBOutlet] = ACTIONS(5034), + [anon_sym_IBInspectable] = ACTIONS(5034), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5034), + [anon_sym_NS_INLINE] = ACTIONS(5034), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5034), + [anon_sym_OBJC_EXPORT] = ACTIONS(5034), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5034), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5034), + [anon_sym_const] = ACTIONS(5034), + [anon_sym_constexpr] = ACTIONS(5034), + [anon_sym_volatile] = ACTIONS(5034), + [anon_sym_restrict] = ACTIONS(5034), + [anon_sym___restrict__] = ACTIONS(5034), + [anon_sym__Atomic] = ACTIONS(5034), + [anon_sym__Noreturn] = ACTIONS(5034), + [anon_sym__Nonnull] = ACTIONS(5034), + [anon_sym_nullable] = ACTIONS(5034), + [anon_sym__Complex] = ACTIONS(5034), + [anon_sym__Nullable] = ACTIONS(5034), + [anon_sym__Nullable_result] = ACTIONS(5034), + [anon_sym__Null_unspecified] = ACTIONS(5034), + [anon_sym___autoreleasing] = ACTIONS(5034), + [anon_sym___block] = ACTIONS(5034), + [anon_sym___bridge] = ACTIONS(5034), + [anon_sym___bridge_retained] = ACTIONS(5034), + [anon_sym___bridge_transfer] = ACTIONS(5034), + [anon_sym___complex] = ACTIONS(5034), + [anon_sym___const] = ACTIONS(5034), + [anon_sym___imag] = ACTIONS(5034), + [anon_sym___kindof] = ACTIONS(5034), + [anon_sym___nonnull] = ACTIONS(5034), + [anon_sym___nullable] = ACTIONS(5034), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5034), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5034), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5034), + [anon_sym___real] = ACTIONS(5034), + [anon_sym___strong] = ACTIONS(5034), + [anon_sym___unsafe_unretained] = ACTIONS(5034), + [anon_sym___unused] = ACTIONS(5034), + [anon_sym___weak] = ACTIONS(5034), + [anon_sym_alignas] = ACTIONS(5034), + [anon_sym__Alignas] = ACTIONS(5034), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5034), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5034), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5034), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5034), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5034), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5034), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5034), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5034), + [anon_sym_NS_AVAILABLE] = ACTIONS(5034), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5034), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_API_AVAILABLE] = ACTIONS(5034), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_API_DEPRECATED] = ACTIONS(5034), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5034), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5034), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5034), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5034), + [anon_sym___deprecated_msg] = ACTIONS(5034), + [anon_sym___deprecated_enum_msg] = ACTIONS(5034), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5034), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5034), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5034), + }, + [3258] = { + [sym_identifier] = ACTIONS(5034), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(8164), + [anon_sym___extension__] = ACTIONS(5034), + [anon_sym_extern] = ACTIONS(5034), + [anon_sym___attribute__] = ACTIONS(5034), + [anon_sym___attribute] = ACTIONS(5034), + [anon_sym_noreturn] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym___declspec] = ACTIONS(5034), + [anon_sym___based] = ACTIONS(5034), + [anon_sym_static] = ACTIONS(5034), + [anon_sym_auto] = ACTIONS(5034), + [anon_sym_register] = ACTIONS(5034), + [anon_sym_inline] = ACTIONS(5034), + [anon_sym___inline] = ACTIONS(5034), + [anon_sym___inline__] = ACTIONS(5034), + [anon_sym___forceinline] = ACTIONS(5034), + [anon_sym_thread_local] = ACTIONS(5034), + [anon_sym___thread] = ACTIONS(5034), + [anon_sym_CG_EXTERN] = ACTIONS(5034), + [anon_sym_CG_INLINE] = ACTIONS(5034), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5034), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5034), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5034), + [anon_sym_IBOutlet] = ACTIONS(5034), + [anon_sym_IBInspectable] = ACTIONS(5034), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5034), + [anon_sym_NS_INLINE] = ACTIONS(5034), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5034), + [anon_sym_OBJC_EXPORT] = ACTIONS(5034), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5034), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5034), + [anon_sym_const] = ACTIONS(5034), + [anon_sym_constexpr] = ACTIONS(5034), + [anon_sym_volatile] = ACTIONS(5034), + [anon_sym_restrict] = ACTIONS(5034), + [anon_sym___restrict__] = ACTIONS(5034), + [anon_sym__Atomic] = ACTIONS(5034), + [anon_sym__Noreturn] = ACTIONS(5034), + [anon_sym__Nonnull] = ACTIONS(5034), + [anon_sym_nullable] = ACTIONS(5034), + [anon_sym__Complex] = ACTIONS(5034), + [anon_sym__Nullable] = ACTIONS(5034), + [anon_sym__Nullable_result] = ACTIONS(5034), + [anon_sym__Null_unspecified] = ACTIONS(5034), + [anon_sym___autoreleasing] = ACTIONS(5034), + [anon_sym___block] = ACTIONS(5034), + [anon_sym___bridge] = ACTIONS(5034), + [anon_sym___bridge_retained] = ACTIONS(5034), + [anon_sym___bridge_transfer] = ACTIONS(5034), + [anon_sym___complex] = ACTIONS(5034), + [anon_sym___const] = ACTIONS(5034), + [anon_sym___imag] = ACTIONS(5034), + [anon_sym___kindof] = ACTIONS(5034), + [anon_sym___nonnull] = ACTIONS(5034), + [anon_sym___nullable] = ACTIONS(5034), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5034), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5034), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5034), + [anon_sym___real] = ACTIONS(5034), + [anon_sym___strong] = ACTIONS(5034), + [anon_sym___unsafe_unretained] = ACTIONS(5034), + [anon_sym___unused] = ACTIONS(5034), + [anon_sym___weak] = ACTIONS(5034), + [anon_sym_alignas] = ACTIONS(5034), + [anon_sym__Alignas] = ACTIONS(5034), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5034), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5034), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5034), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5034), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5034), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5034), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5034), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5034), + [anon_sym_NS_AVAILABLE] = ACTIONS(5034), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5034), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_API_AVAILABLE] = ACTIONS(5034), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_API_DEPRECATED] = ACTIONS(5034), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5034), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5034), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5034), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5034), + [anon_sym___deprecated_msg] = ACTIONS(5034), + [anon_sym___deprecated_enum_msg] = ACTIONS(5034), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5034), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5034), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5034), + }, + [3259] = { + [sym_identifier] = ACTIONS(5034), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(8166), + [anon_sym___extension__] = ACTIONS(5034), + [anon_sym_extern] = ACTIONS(5034), + [anon_sym___attribute__] = ACTIONS(5034), + [anon_sym___attribute] = ACTIONS(5034), + [anon_sym_noreturn] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym___declspec] = ACTIONS(5034), + [anon_sym___based] = ACTIONS(5034), + [anon_sym_static] = ACTIONS(5034), + [anon_sym_auto] = ACTIONS(5034), + [anon_sym_register] = ACTIONS(5034), + [anon_sym_inline] = ACTIONS(5034), + [anon_sym___inline] = ACTIONS(5034), + [anon_sym___inline__] = ACTIONS(5034), + [anon_sym___forceinline] = ACTIONS(5034), + [anon_sym_thread_local] = ACTIONS(5034), + [anon_sym___thread] = ACTIONS(5034), + [anon_sym_CG_EXTERN] = ACTIONS(5034), + [anon_sym_CG_INLINE] = ACTIONS(5034), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(5034), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(5034), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(5034), + [anon_sym_IBOutlet] = ACTIONS(5034), + [anon_sym_IBInspectable] = ACTIONS(5034), + [anon_sym_IB_DESIGNABLE] = ACTIONS(5034), + [anon_sym_NS_INLINE] = ACTIONS(5034), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5034), + [anon_sym_OBJC_EXPORT] = ACTIONS(5034), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(5034), + [anon_sym_UIKIT_EXTERN] = ACTIONS(5034), + [anon_sym_const] = ACTIONS(5034), + [anon_sym_constexpr] = ACTIONS(5034), + [anon_sym_volatile] = ACTIONS(5034), + [anon_sym_restrict] = ACTIONS(5034), + [anon_sym___restrict__] = ACTIONS(5034), + [anon_sym__Atomic] = ACTIONS(5034), + [anon_sym__Noreturn] = ACTIONS(5034), + [anon_sym__Nonnull] = ACTIONS(5034), + [anon_sym_nullable] = ACTIONS(5034), + [anon_sym__Complex] = ACTIONS(5034), + [anon_sym__Nullable] = ACTIONS(5034), + [anon_sym__Nullable_result] = ACTIONS(5034), + [anon_sym__Null_unspecified] = ACTIONS(5034), + [anon_sym___autoreleasing] = ACTIONS(5034), + [anon_sym___block] = ACTIONS(5034), + [anon_sym___bridge] = ACTIONS(5034), + [anon_sym___bridge_retained] = ACTIONS(5034), + [anon_sym___bridge_transfer] = ACTIONS(5034), + [anon_sym___complex] = ACTIONS(5034), + [anon_sym___const] = ACTIONS(5034), + [anon_sym___imag] = ACTIONS(5034), + [anon_sym___kindof] = ACTIONS(5034), + [anon_sym___nonnull] = ACTIONS(5034), + [anon_sym___nullable] = ACTIONS(5034), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5034), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5034), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5034), + [anon_sym___real] = ACTIONS(5034), + [anon_sym___strong] = ACTIONS(5034), + [anon_sym___unsafe_unretained] = ACTIONS(5034), + [anon_sym___unused] = ACTIONS(5034), + [anon_sym___weak] = ACTIONS(5034), + [anon_sym_alignas] = ACTIONS(5034), + [anon_sym__Alignas] = ACTIONS(5034), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(5034), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(5034), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(5034), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(5034), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5034), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5034), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5034), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5034), + [anon_sym_NS_AVAILABLE] = ACTIONS(5034), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5034), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_API_AVAILABLE] = ACTIONS(5034), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_API_DEPRECATED] = ACTIONS(5034), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5034), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5034), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5034), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5034), + [anon_sym___deprecated_msg] = ACTIONS(5034), + [anon_sym___deprecated_enum_msg] = ACTIONS(5034), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5034), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5034), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5034), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5034), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(5034), + }, + [3260] = { + [sym_identifier] = ACTIONS(8168), + [anon_sym_COMMA] = ACTIONS(8170), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8170), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8170), + [anon_sym___extension__] = ACTIONS(8168), + [anon_sym_extern] = ACTIONS(8168), + [anon_sym___attribute__] = ACTIONS(8168), + [anon_sym___attribute] = ACTIONS(8168), + [anon_sym_noreturn] = ACTIONS(8168), + [anon_sym_LBRACK] = ACTIONS(8170), + [anon_sym___declspec] = ACTIONS(8168), + [anon_sym_RBRACE] = ACTIONS(8170), + [anon_sym_static] = ACTIONS(8168), + [anon_sym_EQ] = ACTIONS(8172), + [anon_sym_auto] = ACTIONS(8168), + [anon_sym_register] = ACTIONS(8168), + [anon_sym_inline] = ACTIONS(8168), + [anon_sym___inline] = ACTIONS(8168), + [anon_sym___inline__] = ACTIONS(8168), + [anon_sym___forceinline] = ACTIONS(8168), + [anon_sym_thread_local] = ACTIONS(8168), + [anon_sym___thread] = ACTIONS(8168), + [anon_sym_CG_EXTERN] = ACTIONS(8168), + [anon_sym_CG_INLINE] = ACTIONS(8168), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8168), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8168), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8168), + [anon_sym_IBOutlet] = ACTIONS(8168), + [anon_sym_IBInspectable] = ACTIONS(8168), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8168), + [anon_sym_NS_INLINE] = ACTIONS(8168), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8168), + [anon_sym_OBJC_EXPORT] = ACTIONS(8168), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8168), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8168), + [anon_sym_const] = ACTIONS(8168), + [anon_sym_constexpr] = ACTIONS(8168), + [anon_sym_volatile] = ACTIONS(8168), + [anon_sym_restrict] = ACTIONS(8168), + [anon_sym___restrict__] = ACTIONS(8168), + [anon_sym__Atomic] = ACTIONS(8168), + [anon_sym__Noreturn] = ACTIONS(8168), + [anon_sym__Nonnull] = ACTIONS(8168), + [anon_sym_nullable] = ACTIONS(8168), + [anon_sym__Complex] = ACTIONS(8168), + [anon_sym__Nullable] = ACTIONS(8168), + [anon_sym__Nullable_result] = ACTIONS(8168), + [anon_sym__Null_unspecified] = ACTIONS(8168), + [anon_sym___autoreleasing] = ACTIONS(8168), + [anon_sym___block] = ACTIONS(8168), + [anon_sym___bridge] = ACTIONS(8168), + [anon_sym___bridge_retained] = ACTIONS(8168), + [anon_sym___bridge_transfer] = ACTIONS(8168), + [anon_sym___complex] = ACTIONS(8168), + [anon_sym___const] = ACTIONS(8168), + [anon_sym___imag] = ACTIONS(8168), + [anon_sym___kindof] = ACTIONS(8168), + [anon_sym___nonnull] = ACTIONS(8168), + [anon_sym___nullable] = ACTIONS(8168), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8168), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8168), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8168), + [anon_sym___real] = ACTIONS(8168), + [anon_sym___strong] = ACTIONS(8168), + [anon_sym___unsafe_unretained] = ACTIONS(8168), + [anon_sym___unused] = ACTIONS(8168), + [anon_sym___weak] = ACTIONS(8168), + [anon_sym_alignas] = ACTIONS(8168), + [anon_sym__Alignas] = ACTIONS(8168), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8168), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8168), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8168), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8168), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8168), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8168), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8168), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8168), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8168), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8168), + [anon_sym_NS_AVAILABLE] = ACTIONS(8168), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8168), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8168), + [anon_sym_API_AVAILABLE] = ACTIONS(8168), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8168), + [anon_sym_API_DEPRECATED] = ACTIONS(8168), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8168), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8168), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8168), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8168), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8168), + [anon_sym___deprecated_msg] = ACTIONS(8168), + [anon_sym___deprecated_enum_msg] = ACTIONS(8168), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8168), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8168), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8168), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8168), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8168), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8168), + }, + [3261] = { + [sym_attribute_specifier] = STATE(6707), + [sym_parameter_list] = STATE(3030), + [anon_sym_COMMA] = ACTIONS(6803), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6803), + [anon_sym___extension__] = ACTIONS(6803), + [anon_sym_extern] = ACTIONS(6803), + [anon_sym___attribute__] = ACTIONS(6865), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(6803), + [anon_sym_LBRACK] = ACTIONS(7709), + [anon_sym___declspec] = ACTIONS(6803), + [anon_sym_static] = ACTIONS(6803), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_auto] = ACTIONS(6803), + [anon_sym_register] = ACTIONS(6803), + [anon_sym_inline] = ACTIONS(6803), + [anon_sym___inline] = ACTIONS(6801), + [anon_sym___inline__] = ACTIONS(6803), + [anon_sym___forceinline] = ACTIONS(6803), + [anon_sym_thread_local] = ACTIONS(6803), + [anon_sym___thread] = ACTIONS(6803), + [anon_sym_CG_EXTERN] = ACTIONS(6803), + [anon_sym_CG_INLINE] = ACTIONS(6803), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6803), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6803), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6803), + [anon_sym_IBOutlet] = ACTIONS(6803), + [anon_sym_IBInspectable] = ACTIONS(6803), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6803), + [anon_sym_NS_INLINE] = ACTIONS(6803), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6803), + [anon_sym_OBJC_EXPORT] = ACTIONS(6803), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6803), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6803), + [anon_sym_const] = ACTIONS(6801), + [anon_sym_constexpr] = ACTIONS(6803), + [anon_sym_volatile] = ACTIONS(6803), + [anon_sym_restrict] = ACTIONS(6803), + [anon_sym___restrict__] = ACTIONS(6803), + [anon_sym__Atomic] = ACTIONS(6803), + [anon_sym__Noreturn] = ACTIONS(6803), + [anon_sym__Nonnull] = ACTIONS(6803), + [anon_sym_nullable] = ACTIONS(6803), + [anon_sym__Complex] = ACTIONS(6803), + [anon_sym__Nullable] = ACTIONS(6801), + [anon_sym__Nullable_result] = ACTIONS(6803), + [anon_sym__Null_unspecified] = ACTIONS(6803), + [anon_sym___autoreleasing] = ACTIONS(6803), + [anon_sym___block] = ACTIONS(6803), + [anon_sym___bridge] = ACTIONS(6801), + [anon_sym___bridge_retained] = ACTIONS(6803), + [anon_sym___bridge_transfer] = ACTIONS(6803), + [anon_sym___complex] = ACTIONS(6803), + [anon_sym___const] = ACTIONS(6803), + [anon_sym___imag] = ACTIONS(6803), + [anon_sym___kindof] = ACTIONS(6803), + [anon_sym___nonnull] = ACTIONS(6803), + [anon_sym___nullable] = ACTIONS(6803), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6803), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6803), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6803), + [anon_sym___real] = ACTIONS(6803), + [anon_sym___strong] = ACTIONS(6803), + [anon_sym___unsafe_unretained] = ACTIONS(6803), + [anon_sym___unused] = ACTIONS(6803), + [anon_sym___weak] = ACTIONS(6803), + [anon_sym_alignas] = ACTIONS(6803), + [anon_sym__Alignas] = ACTIONS(6803), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6803), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6803), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6803), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6803), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6803), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6803), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6803), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6803), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6803), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6803), + [anon_sym_NS_AVAILABLE] = ACTIONS(6801), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6803), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6803), + [anon_sym_API_AVAILABLE] = ACTIONS(6803), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6803), + [anon_sym_API_DEPRECATED] = ACTIONS(6803), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6803), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6803), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6803), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6803), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6803), + [anon_sym___deprecated_msg] = ACTIONS(6803), + [anon_sym___deprecated_enum_msg] = ACTIONS(6803), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6803), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6803), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6803), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6803), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6803), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6803), + }, + [3262] = { + [sym_identifier] = ACTIONS(8174), + [anon_sym___extension__] = ACTIONS(8174), + [anon_sym_extern] = ACTIONS(8174), + [anon_sym___attribute__] = ACTIONS(8174), + [anon_sym___attribute] = ACTIONS(8174), + [anon_sym_noreturn] = ACTIONS(8174), + [anon_sym_LBRACK] = ACTIONS(8176), + [anon_sym___declspec] = ACTIONS(8174), + [anon_sym_static] = ACTIONS(8174), + [anon_sym_auto] = ACTIONS(8174), + [anon_sym_register] = ACTIONS(8174), + [anon_sym_inline] = ACTIONS(8174), + [anon_sym___inline] = ACTIONS(8174), + [anon_sym___inline__] = ACTIONS(8174), + [anon_sym___forceinline] = ACTIONS(8174), + [anon_sym_thread_local] = ACTIONS(8174), + [anon_sym___thread] = ACTIONS(8174), + [anon_sym_CG_EXTERN] = ACTIONS(8174), + [anon_sym_CG_INLINE] = ACTIONS(8174), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8174), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8174), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8174), + [anon_sym_IBOutlet] = ACTIONS(8174), + [anon_sym_IBInspectable] = ACTIONS(8174), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8174), + [anon_sym_NS_INLINE] = ACTIONS(8174), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8174), + [anon_sym_OBJC_EXPORT] = ACTIONS(8174), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8174), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8174), + [anon_sym_const] = ACTIONS(8174), + [anon_sym_constexpr] = ACTIONS(8174), + [anon_sym_volatile] = ACTIONS(8174), + [anon_sym_restrict] = ACTIONS(8174), + [anon_sym___restrict__] = ACTIONS(8174), + [anon_sym__Atomic] = ACTIONS(8174), + [anon_sym__Noreturn] = ACTIONS(8174), + [anon_sym__Nonnull] = ACTIONS(8174), + [anon_sym_nullable] = ACTIONS(8174), + [anon_sym__Complex] = ACTIONS(8174), + [anon_sym__Nullable] = ACTIONS(8174), + [anon_sym__Nullable_result] = ACTIONS(8174), + [anon_sym__Null_unspecified] = ACTIONS(8174), + [anon_sym___autoreleasing] = ACTIONS(8174), + [anon_sym___block] = ACTIONS(8174), + [anon_sym___bridge] = ACTIONS(8174), + [anon_sym___bridge_retained] = ACTIONS(8174), + [anon_sym___bridge_transfer] = ACTIONS(8174), + [anon_sym___complex] = ACTIONS(8174), + [anon_sym___const] = ACTIONS(8174), + [anon_sym___imag] = ACTIONS(8174), + [anon_sym___kindof] = ACTIONS(8174), + [anon_sym___nonnull] = ACTIONS(8174), + [anon_sym___nullable] = ACTIONS(8174), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8174), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8174), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8174), + [anon_sym___real] = ACTIONS(8174), + [anon_sym___strong] = ACTIONS(8174), + [anon_sym___unsafe_unretained] = ACTIONS(8174), + [anon_sym___unused] = ACTIONS(8174), + [anon_sym___weak] = ACTIONS(8174), + [anon_sym_alignas] = ACTIONS(8174), + [anon_sym__Alignas] = ACTIONS(8174), + [anon_sym_COLON] = ACTIONS(8176), + [anon_sym_struct] = ACTIONS(8174), + [anon_sym_in] = ACTIONS(8174), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8174), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8174), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8174), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8174), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8174), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8174), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8174), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8174), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8174), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8174), + [anon_sym_NS_AVAILABLE] = ACTIONS(8174), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8174), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8174), + [anon_sym_API_AVAILABLE] = ACTIONS(8174), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8174), + [anon_sym_API_DEPRECATED] = ACTIONS(8174), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8174), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8174), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8174), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8174), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8174), + [anon_sym___deprecated_msg] = ACTIONS(8174), + [anon_sym___deprecated_enum_msg] = ACTIONS(8174), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8174), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8174), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8174), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8174), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8174), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8174), + [anon_sym_id] = ACTIONS(8174), + }, + [3263] = { + [sym_method_parameter] = STATE(3280), + [sym_identifier] = ACTIONS(8178), + [anon_sym_COMMA] = ACTIONS(8180), + [anon_sym_SEMI] = ACTIONS(8180), + [anon_sym___extension__] = ACTIONS(8178), + [anon_sym_extern] = ACTIONS(8178), + [anon_sym___attribute__] = ACTIONS(8178), + [anon_sym___attribute] = ACTIONS(8178), + [anon_sym_noreturn] = ACTIONS(8178), + [anon_sym_LBRACK] = ACTIONS(8180), + [anon_sym___declspec] = ACTIONS(8178), + [anon_sym_static] = ACTIONS(8178), + [anon_sym_auto] = ACTIONS(8178), + [anon_sym_register] = ACTIONS(8178), + [anon_sym_inline] = ACTIONS(8178), + [anon_sym___inline] = ACTIONS(8178), + [anon_sym___inline__] = ACTIONS(8178), + [anon_sym___forceinline] = ACTIONS(8178), + [anon_sym_thread_local] = ACTIONS(8178), + [anon_sym___thread] = ACTIONS(8178), + [anon_sym_CG_EXTERN] = ACTIONS(8178), + [anon_sym_CG_INLINE] = ACTIONS(8178), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8178), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8178), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8178), + [anon_sym_IBOutlet] = ACTIONS(8178), + [anon_sym_IBInspectable] = ACTIONS(8178), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8178), + [anon_sym_NS_INLINE] = ACTIONS(8178), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8178), + [anon_sym_OBJC_EXPORT] = ACTIONS(8178), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8178), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8178), + [anon_sym_const] = ACTIONS(8178), + [anon_sym_constexpr] = ACTIONS(8178), + [anon_sym_volatile] = ACTIONS(8178), + [anon_sym_restrict] = ACTIONS(8178), + [anon_sym___restrict__] = ACTIONS(8178), + [anon_sym__Atomic] = ACTIONS(8178), + [anon_sym__Noreturn] = ACTIONS(8178), + [anon_sym__Nonnull] = ACTIONS(8178), + [anon_sym_nullable] = ACTIONS(8178), + [anon_sym__Complex] = ACTIONS(8178), + [anon_sym__Nullable] = ACTIONS(8178), + [anon_sym__Nullable_result] = ACTIONS(8178), + [anon_sym__Null_unspecified] = ACTIONS(8178), + [anon_sym___autoreleasing] = ACTIONS(8178), + [anon_sym___block] = ACTIONS(8178), + [anon_sym___bridge] = ACTIONS(8178), + [anon_sym___bridge_retained] = ACTIONS(8178), + [anon_sym___bridge_transfer] = ACTIONS(8178), + [anon_sym___complex] = ACTIONS(8178), + [anon_sym___const] = ACTIONS(8178), + [anon_sym___imag] = ACTIONS(8178), + [anon_sym___kindof] = ACTIONS(8178), + [anon_sym___nonnull] = ACTIONS(8178), + [anon_sym___nullable] = ACTIONS(8178), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8178), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8178), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8178), + [anon_sym___real] = ACTIONS(8178), + [anon_sym___strong] = ACTIONS(8178), + [anon_sym___unsafe_unretained] = ACTIONS(8178), + [anon_sym___unused] = ACTIONS(8178), + [anon_sym___weak] = ACTIONS(8178), + [anon_sym_alignas] = ACTIONS(8178), + [anon_sym__Alignas] = ACTIONS(8178), + [anon_sym_COLON] = ACTIONS(8182), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8178), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8178), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8178), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8178), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8178), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8178), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8178), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8178), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8178), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8178), + [anon_sym_NS_AVAILABLE] = ACTIONS(8178), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8178), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8178), + [anon_sym_API_AVAILABLE] = ACTIONS(8178), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8178), + [anon_sym_API_DEPRECATED] = ACTIONS(8178), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8178), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8178), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8178), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8178), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8178), + [anon_sym___deprecated_msg] = ACTIONS(8178), + [anon_sym___deprecated_enum_msg] = ACTIONS(8178), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8178), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8178), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8178), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8178), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8178), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8178), + }, + [3264] = { + [sym_method_parameter] = STATE(3276), + [sym_identifier] = ACTIONS(8148), + [anon_sym_COMMA] = ACTIONS(8150), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym___extension__] = ACTIONS(8148), + [anon_sym_extern] = ACTIONS(8148), + [anon_sym___attribute__] = ACTIONS(8148), + [anon_sym___attribute] = ACTIONS(8148), + [anon_sym_noreturn] = ACTIONS(8148), + [anon_sym_LBRACK] = ACTIONS(8150), + [anon_sym___declspec] = ACTIONS(8148), + [anon_sym_static] = ACTIONS(8148), + [anon_sym_auto] = ACTIONS(8148), + [anon_sym_register] = ACTIONS(8148), + [anon_sym_inline] = ACTIONS(8148), + [anon_sym___inline] = ACTIONS(8148), + [anon_sym___inline__] = ACTIONS(8148), + [anon_sym___forceinline] = ACTIONS(8148), + [anon_sym_thread_local] = ACTIONS(8148), + [anon_sym___thread] = ACTIONS(8148), + [anon_sym_CG_EXTERN] = ACTIONS(8148), + [anon_sym_CG_INLINE] = ACTIONS(8148), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8148), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8148), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8148), + [anon_sym_IBOutlet] = ACTIONS(8148), + [anon_sym_IBInspectable] = ACTIONS(8148), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8148), + [anon_sym_NS_INLINE] = ACTIONS(8148), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8148), + [anon_sym_OBJC_EXPORT] = ACTIONS(8148), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8148), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8148), + [anon_sym_const] = ACTIONS(8148), + [anon_sym_constexpr] = ACTIONS(8148), + [anon_sym_volatile] = ACTIONS(8148), + [anon_sym_restrict] = ACTIONS(8148), + [anon_sym___restrict__] = ACTIONS(8148), + [anon_sym__Atomic] = ACTIONS(8148), + [anon_sym__Noreturn] = ACTIONS(8148), + [anon_sym__Nonnull] = ACTIONS(8148), + [anon_sym_nullable] = ACTIONS(8148), + [anon_sym__Complex] = ACTIONS(8148), + [anon_sym__Nullable] = ACTIONS(8148), + [anon_sym__Nullable_result] = ACTIONS(8148), + [anon_sym__Null_unspecified] = ACTIONS(8148), + [anon_sym___autoreleasing] = ACTIONS(8148), + [anon_sym___block] = ACTIONS(8148), + [anon_sym___bridge] = ACTIONS(8148), + [anon_sym___bridge_retained] = ACTIONS(8148), + [anon_sym___bridge_transfer] = ACTIONS(8148), + [anon_sym___complex] = ACTIONS(8148), + [anon_sym___const] = ACTIONS(8148), + [anon_sym___imag] = ACTIONS(8148), + [anon_sym___kindof] = ACTIONS(8148), + [anon_sym___nonnull] = ACTIONS(8148), + [anon_sym___nullable] = ACTIONS(8148), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8148), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8148), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8148), + [anon_sym___real] = ACTIONS(8148), + [anon_sym___strong] = ACTIONS(8148), + [anon_sym___unsafe_unretained] = ACTIONS(8148), + [anon_sym___unused] = ACTIONS(8148), + [anon_sym___weak] = ACTIONS(8148), + [anon_sym_alignas] = ACTIONS(8148), + [anon_sym__Alignas] = ACTIONS(8148), + [anon_sym_COLON] = ACTIONS(8155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8148), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8148), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8148), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8148), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8148), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8148), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8148), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8148), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8148), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8148), + [anon_sym_NS_AVAILABLE] = ACTIONS(8148), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8148), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8148), + [anon_sym_API_AVAILABLE] = ACTIONS(8148), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8148), + [anon_sym_API_DEPRECATED] = ACTIONS(8148), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8148), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8148), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8148), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8148), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8148), + [anon_sym___deprecated_msg] = ACTIONS(8148), + [anon_sym___deprecated_enum_msg] = ACTIONS(8148), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8148), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8148), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8148), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8148), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8148), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8148), + }, + [3265] = { + [sym_identifier] = ACTIONS(8185), + [anon_sym___extension__] = ACTIONS(8185), + [anon_sym_extern] = ACTIONS(8185), + [anon_sym___attribute__] = ACTIONS(8185), + [anon_sym___attribute] = ACTIONS(8185), + [anon_sym_noreturn] = ACTIONS(8185), + [anon_sym_LBRACK] = ACTIONS(8187), + [anon_sym___declspec] = ACTIONS(8185), + [anon_sym_static] = ACTIONS(8185), + [anon_sym_auto] = ACTIONS(8185), + [anon_sym_register] = ACTIONS(8185), + [anon_sym_inline] = ACTIONS(8185), + [anon_sym___inline] = ACTIONS(8185), + [anon_sym___inline__] = ACTIONS(8185), + [anon_sym___forceinline] = ACTIONS(8185), + [anon_sym_thread_local] = ACTIONS(8185), + [anon_sym___thread] = ACTIONS(8185), + [anon_sym_CG_EXTERN] = ACTIONS(8185), + [anon_sym_CG_INLINE] = ACTIONS(8185), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8185), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8185), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8185), + [anon_sym_IBOutlet] = ACTIONS(8185), + [anon_sym_IBInspectable] = ACTIONS(8185), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8185), + [anon_sym_NS_INLINE] = ACTIONS(8185), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8185), + [anon_sym_OBJC_EXPORT] = ACTIONS(8185), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8185), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8185), + [anon_sym_const] = ACTIONS(8185), + [anon_sym_constexpr] = ACTIONS(8185), + [anon_sym_volatile] = ACTIONS(8185), + [anon_sym_restrict] = ACTIONS(8185), + [anon_sym___restrict__] = ACTIONS(8185), + [anon_sym__Atomic] = ACTIONS(8185), + [anon_sym__Noreturn] = ACTIONS(8185), + [anon_sym__Nonnull] = ACTIONS(8185), + [anon_sym_nullable] = ACTIONS(8185), + [anon_sym__Complex] = ACTIONS(8185), + [anon_sym__Nullable] = ACTIONS(8185), + [anon_sym__Nullable_result] = ACTIONS(8185), + [anon_sym__Null_unspecified] = ACTIONS(8185), + [anon_sym___autoreleasing] = ACTIONS(8185), + [anon_sym___block] = ACTIONS(8185), + [anon_sym___bridge] = ACTIONS(8185), + [anon_sym___bridge_retained] = ACTIONS(8185), + [anon_sym___bridge_transfer] = ACTIONS(8185), + [anon_sym___complex] = ACTIONS(8185), + [anon_sym___const] = ACTIONS(8185), + [anon_sym___imag] = ACTIONS(8185), + [anon_sym___kindof] = ACTIONS(8185), + [anon_sym___nonnull] = ACTIONS(8185), + [anon_sym___nullable] = ACTIONS(8185), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8185), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8185), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8185), + [anon_sym___real] = ACTIONS(8185), + [anon_sym___strong] = ACTIONS(8185), + [anon_sym___unsafe_unretained] = ACTIONS(8185), + [anon_sym___unused] = ACTIONS(8185), + [anon_sym___weak] = ACTIONS(8185), + [anon_sym_alignas] = ACTIONS(8185), + [anon_sym__Alignas] = ACTIONS(8185), + [anon_sym_COLON] = ACTIONS(8187), + [anon_sym_struct] = ACTIONS(8185), + [anon_sym_in] = ACTIONS(8185), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8185), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8185), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8185), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8185), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8185), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8185), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8185), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8185), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8185), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8185), + [anon_sym_NS_AVAILABLE] = ACTIONS(8185), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8185), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8185), + [anon_sym_API_AVAILABLE] = ACTIONS(8185), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8185), + [anon_sym_API_DEPRECATED] = ACTIONS(8185), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8185), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8185), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8185), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8185), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8185), + [anon_sym___deprecated_msg] = ACTIONS(8185), + [anon_sym___deprecated_enum_msg] = ACTIONS(8185), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8185), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8185), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8185), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8185), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8185), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8185), + [anon_sym_id] = ACTIONS(8185), + }, + [3266] = { + [sym_method_parameter] = STATE(3284), + [sym_identifier] = ACTIONS(8115), + [anon_sym_COMMA] = ACTIONS(8113), + [anon_sym_SEMI] = ACTIONS(8113), + [anon_sym___extension__] = ACTIONS(8115), + [anon_sym_extern] = ACTIONS(8115), + [anon_sym___attribute__] = ACTIONS(8115), + [anon_sym___attribute] = ACTIONS(8115), + [anon_sym_noreturn] = ACTIONS(8115), + [anon_sym_LBRACK] = ACTIONS(8113), + [anon_sym___declspec] = ACTIONS(8115), + [anon_sym_static] = ACTIONS(8115), + [anon_sym_auto] = ACTIONS(8115), + [anon_sym_register] = ACTIONS(8115), + [anon_sym_inline] = ACTIONS(8115), + [anon_sym___inline] = ACTIONS(8115), + [anon_sym___inline__] = ACTIONS(8115), + [anon_sym___forceinline] = ACTIONS(8115), + [anon_sym_thread_local] = ACTIONS(8115), + [anon_sym___thread] = ACTIONS(8115), + [anon_sym_CG_EXTERN] = ACTIONS(8115), + [anon_sym_CG_INLINE] = ACTIONS(8115), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8115), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8115), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8115), + [anon_sym_IBOutlet] = ACTIONS(8115), + [anon_sym_IBInspectable] = ACTIONS(8115), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8115), + [anon_sym_NS_INLINE] = ACTIONS(8115), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8115), + [anon_sym_OBJC_EXPORT] = ACTIONS(8115), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8115), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8115), + [anon_sym_const] = ACTIONS(8115), + [anon_sym_constexpr] = ACTIONS(8115), + [anon_sym_volatile] = ACTIONS(8115), + [anon_sym_restrict] = ACTIONS(8115), + [anon_sym___restrict__] = ACTIONS(8115), + [anon_sym__Atomic] = ACTIONS(8115), + [anon_sym__Noreturn] = ACTIONS(8115), + [anon_sym__Nonnull] = ACTIONS(8115), + [anon_sym_nullable] = ACTIONS(8115), + [anon_sym__Complex] = ACTIONS(8115), + [anon_sym__Nullable] = ACTIONS(8115), + [anon_sym__Nullable_result] = ACTIONS(8115), + [anon_sym__Null_unspecified] = ACTIONS(8115), + [anon_sym___autoreleasing] = ACTIONS(8115), + [anon_sym___block] = ACTIONS(8115), + [anon_sym___bridge] = ACTIONS(8115), + [anon_sym___bridge_retained] = ACTIONS(8115), + [anon_sym___bridge_transfer] = ACTIONS(8115), + [anon_sym___complex] = ACTIONS(8115), + [anon_sym___const] = ACTIONS(8115), + [anon_sym___imag] = ACTIONS(8115), + [anon_sym___kindof] = ACTIONS(8115), + [anon_sym___nonnull] = ACTIONS(8115), + [anon_sym___nullable] = ACTIONS(8115), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8115), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8115), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8115), + [anon_sym___real] = ACTIONS(8115), + [anon_sym___strong] = ACTIONS(8115), + [anon_sym___unsafe_unretained] = ACTIONS(8115), + [anon_sym___unused] = ACTIONS(8115), + [anon_sym___weak] = ACTIONS(8115), + [anon_sym_alignas] = ACTIONS(8115), + [anon_sym__Alignas] = ACTIONS(8115), + [anon_sym_COLON] = ACTIONS(8139), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8115), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8115), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8115), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8115), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8115), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8115), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8115), + [anon_sym_NS_AVAILABLE] = ACTIONS(8115), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8115), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8115), + [anon_sym_API_AVAILABLE] = ACTIONS(8115), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8115), + [anon_sym_API_DEPRECATED] = ACTIONS(8115), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8115), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8115), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8115), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8115), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8115), + [anon_sym___deprecated_msg] = ACTIONS(8115), + [anon_sym___deprecated_enum_msg] = ACTIONS(8115), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8115), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8115), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8115), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8115), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8115), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8115), + }, + [3267] = { + [sym_parameter_list] = STATE(3030), + [anon_sym_COMMA] = ACTIONS(8189), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(8189), + [anon_sym___extension__] = ACTIONS(8189), + [anon_sym_extern] = ACTIONS(8189), + [anon_sym___attribute__] = ACTIONS(8189), + [anon_sym___attribute] = ACTIONS(8191), + [anon_sym_noreturn] = ACTIONS(8189), + [anon_sym_LBRACK] = ACTIONS(7709), + [anon_sym___declspec] = ACTIONS(8189), + [anon_sym_static] = ACTIONS(8189), + [anon_sym_auto] = ACTIONS(8189), + [anon_sym_register] = ACTIONS(8189), + [anon_sym_inline] = ACTIONS(8189), + [anon_sym___inline] = ACTIONS(8191), + [anon_sym___inline__] = ACTIONS(8189), + [anon_sym___forceinline] = ACTIONS(8189), + [anon_sym_thread_local] = ACTIONS(8189), + [anon_sym___thread] = ACTIONS(8189), + [anon_sym_CG_EXTERN] = ACTIONS(8189), + [anon_sym_CG_INLINE] = ACTIONS(8189), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8189), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8189), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8189), + [anon_sym_IBOutlet] = ACTIONS(8189), + [anon_sym_IBInspectable] = ACTIONS(8189), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8189), + [anon_sym_NS_INLINE] = ACTIONS(8189), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8189), + [anon_sym_OBJC_EXPORT] = ACTIONS(8189), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8189), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8189), + [anon_sym_const] = ACTIONS(8191), + [anon_sym_constexpr] = ACTIONS(8189), + [anon_sym_volatile] = ACTIONS(8189), + [anon_sym_restrict] = ACTIONS(8189), + [anon_sym___restrict__] = ACTIONS(8189), + [anon_sym__Atomic] = ACTIONS(8189), + [anon_sym__Noreturn] = ACTIONS(8189), + [anon_sym__Nonnull] = ACTIONS(8189), + [anon_sym_nullable] = ACTIONS(8189), + [anon_sym__Complex] = ACTIONS(8189), + [anon_sym__Nullable] = ACTIONS(8191), + [anon_sym__Nullable_result] = ACTIONS(8189), + [anon_sym__Null_unspecified] = ACTIONS(8189), + [anon_sym___autoreleasing] = ACTIONS(8189), + [anon_sym___block] = ACTIONS(8189), + [anon_sym___bridge] = ACTIONS(8191), + [anon_sym___bridge_retained] = ACTIONS(8189), + [anon_sym___bridge_transfer] = ACTIONS(8189), + [anon_sym___complex] = ACTIONS(8189), + [anon_sym___const] = ACTIONS(8189), + [anon_sym___imag] = ACTIONS(8189), + [anon_sym___kindof] = ACTIONS(8189), + [anon_sym___nonnull] = ACTIONS(8189), + [anon_sym___nullable] = ACTIONS(8189), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8189), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8189), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8189), + [anon_sym___real] = ACTIONS(8189), + [anon_sym___strong] = ACTIONS(8189), + [anon_sym___unsafe_unretained] = ACTIONS(8189), + [anon_sym___unused] = ACTIONS(8189), + [anon_sym___weak] = ACTIONS(8189), + [anon_sym_alignas] = ACTIONS(8189), + [anon_sym__Alignas] = ACTIONS(8189), + [anon_sym_COLON] = ACTIONS(8193), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8189), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8189), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8189), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8189), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8189), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8189), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8189), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8189), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8189), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8189), + [anon_sym_NS_AVAILABLE] = ACTIONS(8191), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8189), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8189), + [anon_sym_API_AVAILABLE] = ACTIONS(8189), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8189), + [anon_sym_API_DEPRECATED] = ACTIONS(8189), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8189), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8189), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8189), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8189), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8189), + [anon_sym___deprecated_msg] = ACTIONS(8189), + [anon_sym___deprecated_enum_msg] = ACTIONS(8189), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8189), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8189), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8189), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8189), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8189), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8189), + }, + [3268] = { + [sym_identifier] = ACTIONS(8195), + [anon_sym___extension__] = ACTIONS(8195), + [anon_sym_extern] = ACTIONS(8195), + [anon_sym___attribute__] = ACTIONS(8195), + [anon_sym___attribute] = ACTIONS(8195), + [anon_sym_noreturn] = ACTIONS(8195), + [anon_sym_LBRACK] = ACTIONS(8197), + [anon_sym___declspec] = ACTIONS(8195), + [anon_sym_static] = ACTIONS(8195), + [anon_sym_auto] = ACTIONS(8195), + [anon_sym_register] = ACTIONS(8195), + [anon_sym_inline] = ACTIONS(8195), + [anon_sym___inline] = ACTIONS(8195), + [anon_sym___inline__] = ACTIONS(8195), + [anon_sym___forceinline] = ACTIONS(8195), + [anon_sym_thread_local] = ACTIONS(8195), + [anon_sym___thread] = ACTIONS(8195), + [anon_sym_CG_EXTERN] = ACTIONS(8195), + [anon_sym_CG_INLINE] = ACTIONS(8195), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8195), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8195), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8195), + [anon_sym_IBOutlet] = ACTIONS(8195), + [anon_sym_IBInspectable] = ACTIONS(8195), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8195), + [anon_sym_NS_INLINE] = ACTIONS(8195), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8195), + [anon_sym_OBJC_EXPORT] = ACTIONS(8195), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8195), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8195), + [anon_sym_const] = ACTIONS(8195), + [anon_sym_constexpr] = ACTIONS(8195), + [anon_sym_volatile] = ACTIONS(8195), + [anon_sym_restrict] = ACTIONS(8195), + [anon_sym___restrict__] = ACTIONS(8195), + [anon_sym__Atomic] = ACTIONS(8195), + [anon_sym__Noreturn] = ACTIONS(8195), + [anon_sym__Nonnull] = ACTIONS(8195), + [anon_sym_nullable] = ACTIONS(8195), + [anon_sym__Complex] = ACTIONS(8195), + [anon_sym__Nullable] = ACTIONS(8195), + [anon_sym__Nullable_result] = ACTIONS(8195), + [anon_sym__Null_unspecified] = ACTIONS(8195), + [anon_sym___autoreleasing] = ACTIONS(8195), + [anon_sym___block] = ACTIONS(8195), + [anon_sym___bridge] = ACTIONS(8195), + [anon_sym___bridge_retained] = ACTIONS(8195), + [anon_sym___bridge_transfer] = ACTIONS(8195), + [anon_sym___complex] = ACTIONS(8195), + [anon_sym___const] = ACTIONS(8195), + [anon_sym___imag] = ACTIONS(8195), + [anon_sym___kindof] = ACTIONS(8195), + [anon_sym___nonnull] = ACTIONS(8195), + [anon_sym___nullable] = ACTIONS(8195), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8195), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8195), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8195), + [anon_sym___real] = ACTIONS(8195), + [anon_sym___strong] = ACTIONS(8195), + [anon_sym___unsafe_unretained] = ACTIONS(8195), + [anon_sym___unused] = ACTIONS(8195), + [anon_sym___weak] = ACTIONS(8195), + [anon_sym_alignas] = ACTIONS(8195), + [anon_sym__Alignas] = ACTIONS(8195), + [anon_sym_COLON] = ACTIONS(8197), + [anon_sym_struct] = ACTIONS(8195), + [anon_sym_in] = ACTIONS(8195), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8195), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8195), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8195), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8195), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8195), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8195), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8195), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8195), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8195), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8195), + [anon_sym_NS_AVAILABLE] = ACTIONS(8195), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8195), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8195), + [anon_sym_API_AVAILABLE] = ACTIONS(8195), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8195), + [anon_sym_API_DEPRECATED] = ACTIONS(8195), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8195), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8195), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8195), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8195), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8195), + [anon_sym___deprecated_msg] = ACTIONS(8195), + [anon_sym___deprecated_enum_msg] = ACTIONS(8195), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8195), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8195), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8195), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8195), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8195), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8195), + [anon_sym_id] = ACTIONS(8195), + }, + [3269] = { + [sym_parameter_list] = STATE(3248), + [anon_sym_COMMA] = ACTIONS(8199), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(8199), + [anon_sym___extension__] = ACTIONS(8199), + [anon_sym_extern] = ACTIONS(8199), + [anon_sym___attribute__] = ACTIONS(8199), + [anon_sym___attribute] = ACTIONS(8201), + [anon_sym_noreturn] = ACTIONS(8199), + [anon_sym_LBRACK] = ACTIONS(8203), + [anon_sym___declspec] = ACTIONS(8199), + [anon_sym_static] = ACTIONS(8199), + [anon_sym_auto] = ACTIONS(8199), + [anon_sym_register] = ACTIONS(8199), + [anon_sym_inline] = ACTIONS(8199), + [anon_sym___inline] = ACTIONS(8201), + [anon_sym___inline__] = ACTIONS(8199), + [anon_sym___forceinline] = ACTIONS(8199), + [anon_sym_thread_local] = ACTIONS(8199), + [anon_sym___thread] = ACTIONS(8199), + [anon_sym_CG_EXTERN] = ACTIONS(8199), + [anon_sym_CG_INLINE] = ACTIONS(8199), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8199), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8199), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8199), + [anon_sym_IBOutlet] = ACTIONS(8199), + [anon_sym_IBInspectable] = ACTIONS(8199), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8199), + [anon_sym_NS_INLINE] = ACTIONS(8199), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8199), + [anon_sym_OBJC_EXPORT] = ACTIONS(8199), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8199), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8199), + [anon_sym_const] = ACTIONS(8201), + [anon_sym_constexpr] = ACTIONS(8199), + [anon_sym_volatile] = ACTIONS(8199), + [anon_sym_restrict] = ACTIONS(8199), + [anon_sym___restrict__] = ACTIONS(8199), + [anon_sym__Atomic] = ACTIONS(8199), + [anon_sym__Noreturn] = ACTIONS(8199), + [anon_sym__Nonnull] = ACTIONS(8199), + [anon_sym_nullable] = ACTIONS(8199), + [anon_sym__Complex] = ACTIONS(8199), + [anon_sym__Nullable] = ACTIONS(8201), + [anon_sym__Nullable_result] = ACTIONS(8199), + [anon_sym__Null_unspecified] = ACTIONS(8199), + [anon_sym___autoreleasing] = ACTIONS(8199), + [anon_sym___block] = ACTIONS(8199), + [anon_sym___bridge] = ACTIONS(8201), + [anon_sym___bridge_retained] = ACTIONS(8199), + [anon_sym___bridge_transfer] = ACTIONS(8199), + [anon_sym___complex] = ACTIONS(8199), + [anon_sym___const] = ACTIONS(8199), + [anon_sym___imag] = ACTIONS(8199), + [anon_sym___kindof] = ACTIONS(8199), + [anon_sym___nonnull] = ACTIONS(8199), + [anon_sym___nullable] = ACTIONS(8199), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8199), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8199), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8199), + [anon_sym___real] = ACTIONS(8199), + [anon_sym___strong] = ACTIONS(8199), + [anon_sym___unsafe_unretained] = ACTIONS(8199), + [anon_sym___unused] = ACTIONS(8199), + [anon_sym___weak] = ACTIONS(8199), + [anon_sym_alignas] = ACTIONS(8199), + [anon_sym__Alignas] = ACTIONS(8199), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8199), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8199), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8199), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8199), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8199), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8199), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8199), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8199), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8199), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8199), + [anon_sym_NS_AVAILABLE] = ACTIONS(8201), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8199), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8199), + [anon_sym_API_AVAILABLE] = ACTIONS(8199), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8199), + [anon_sym_API_DEPRECATED] = ACTIONS(8199), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8199), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8199), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8199), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8199), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8199), + [anon_sym___deprecated_msg] = ACTIONS(8199), + [anon_sym___deprecated_enum_msg] = ACTIONS(8199), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8199), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8199), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8199), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8199), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8199), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8199), + }, + [3270] = { + [sym_attribute_specifier] = STATE(4017), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_compound_statement] = STATE(1514), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_parameter_list] = STATE(5072), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3241), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(4926), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3241), + [sym_identifier] = ACTIONS(8070), + [anon_sym_LPAREN2] = ACTIONS(8205), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym_LT] = ACTIONS(8207), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_LBRACK] = ACTIONS(8207), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_LBRACE] = ACTIONS(8209), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_ATautoreleasepool] = ACTIONS(8211), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8108), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3271] = { + [sym_attribute_specifier] = STATE(4020), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_compound_statement] = STATE(1663), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_parameter_list] = STATE(5048), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3241), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(4956), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3241), + [sym_identifier] = ACTIONS(8070), + [anon_sym_LPAREN2] = ACTIONS(8205), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym_LT] = ACTIONS(8207), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_LBRACK] = ACTIONS(8207), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_LBRACE] = ACTIONS(8213), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_ATautoreleasepool] = ACTIONS(8215), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8108), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3272] = { + [sym_parameter_list] = STATE(3248), + [anon_sym_COMMA] = ACTIONS(8217), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(8217), + [anon_sym___extension__] = ACTIONS(8217), + [anon_sym_extern] = ACTIONS(8217), + [anon_sym___attribute__] = ACTIONS(8217), + [anon_sym___attribute] = ACTIONS(8219), + [anon_sym_noreturn] = ACTIONS(8217), + [anon_sym_LBRACK] = ACTIONS(8203), + [anon_sym___declspec] = ACTIONS(8217), + [anon_sym_static] = ACTIONS(8217), + [anon_sym_auto] = ACTIONS(8217), + [anon_sym_register] = ACTIONS(8217), + [anon_sym_inline] = ACTIONS(8217), + [anon_sym___inline] = ACTIONS(8219), + [anon_sym___inline__] = ACTIONS(8217), + [anon_sym___forceinline] = ACTIONS(8217), + [anon_sym_thread_local] = ACTIONS(8217), + [anon_sym___thread] = ACTIONS(8217), + [anon_sym_CG_EXTERN] = ACTIONS(8217), + [anon_sym_CG_INLINE] = ACTIONS(8217), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8217), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8217), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8217), + [anon_sym_IBOutlet] = ACTIONS(8217), + [anon_sym_IBInspectable] = ACTIONS(8217), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8217), + [anon_sym_NS_INLINE] = ACTIONS(8217), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8217), + [anon_sym_OBJC_EXPORT] = ACTIONS(8217), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8217), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8217), + [anon_sym_const] = ACTIONS(8219), + [anon_sym_constexpr] = ACTIONS(8217), + [anon_sym_volatile] = ACTIONS(8217), + [anon_sym_restrict] = ACTIONS(8217), + [anon_sym___restrict__] = ACTIONS(8217), + [anon_sym__Atomic] = ACTIONS(8217), + [anon_sym__Noreturn] = ACTIONS(8217), + [anon_sym__Nonnull] = ACTIONS(8217), + [anon_sym_nullable] = ACTIONS(8217), + [anon_sym__Complex] = ACTIONS(8217), + [anon_sym__Nullable] = ACTIONS(8219), + [anon_sym__Nullable_result] = ACTIONS(8217), + [anon_sym__Null_unspecified] = ACTIONS(8217), + [anon_sym___autoreleasing] = ACTIONS(8217), + [anon_sym___block] = ACTIONS(8217), + [anon_sym___bridge] = ACTIONS(8219), + [anon_sym___bridge_retained] = ACTIONS(8217), + [anon_sym___bridge_transfer] = ACTIONS(8217), + [anon_sym___complex] = ACTIONS(8217), + [anon_sym___const] = ACTIONS(8217), + [anon_sym___imag] = ACTIONS(8217), + [anon_sym___kindof] = ACTIONS(8217), + [anon_sym___nonnull] = ACTIONS(8217), + [anon_sym___nullable] = ACTIONS(8217), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8217), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8217), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8217), + [anon_sym___real] = ACTIONS(8217), + [anon_sym___strong] = ACTIONS(8217), + [anon_sym___unsafe_unretained] = ACTIONS(8217), + [anon_sym___unused] = ACTIONS(8217), + [anon_sym___weak] = ACTIONS(8217), + [anon_sym_alignas] = ACTIONS(8217), + [anon_sym__Alignas] = ACTIONS(8217), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8217), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8217), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8217), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8217), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8217), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8217), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8217), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8217), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8217), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8217), + [anon_sym_NS_AVAILABLE] = ACTIONS(8219), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8217), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8217), + [anon_sym_API_AVAILABLE] = ACTIONS(8217), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8217), + [anon_sym_API_DEPRECATED] = ACTIONS(8217), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8217), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8217), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8217), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8217), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8217), + [anon_sym___deprecated_msg] = ACTIONS(8217), + [anon_sym___deprecated_enum_msg] = ACTIONS(8217), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8217), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8217), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8217), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8217), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8217), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8217), + }, + [3273] = { + [anon_sym_COMMA] = ACTIONS(8221), + [anon_sym_RPAREN] = ACTIONS(8221), + [anon_sym_LPAREN2] = ACTIONS(8221), + [anon_sym_SEMI] = ACTIONS(8221), + [anon_sym___extension__] = ACTIONS(8221), + [anon_sym_extern] = ACTIONS(8221), + [anon_sym___attribute__] = ACTIONS(8221), + [anon_sym___attribute] = ACTIONS(8223), + [anon_sym_noreturn] = ACTIONS(8221), + [anon_sym_LBRACK] = ACTIONS(8221), + [anon_sym___declspec] = ACTIONS(8221), + [anon_sym_static] = ACTIONS(8221), + [anon_sym_auto] = ACTIONS(8221), + [anon_sym_register] = ACTIONS(8221), + [anon_sym_inline] = ACTIONS(8221), + [anon_sym___inline] = ACTIONS(8223), + [anon_sym___inline__] = ACTIONS(8221), + [anon_sym___forceinline] = ACTIONS(8221), + [anon_sym_thread_local] = ACTIONS(8221), + [anon_sym___thread] = ACTIONS(8221), + [anon_sym_CG_EXTERN] = ACTIONS(8221), + [anon_sym_CG_INLINE] = ACTIONS(8221), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8221), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8221), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8221), + [anon_sym_IBOutlet] = ACTIONS(8221), + [anon_sym_IBInspectable] = ACTIONS(8221), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8221), + [anon_sym_NS_INLINE] = ACTIONS(8221), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8221), + [anon_sym_OBJC_EXPORT] = ACTIONS(8221), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8221), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8221), + [anon_sym_const] = ACTIONS(8223), + [anon_sym_constexpr] = ACTIONS(8221), + [anon_sym_volatile] = ACTIONS(8221), + [anon_sym_restrict] = ACTIONS(8221), + [anon_sym___restrict__] = ACTIONS(8221), + [anon_sym__Atomic] = ACTIONS(8221), + [anon_sym__Noreturn] = ACTIONS(8221), + [anon_sym__Nonnull] = ACTIONS(8221), + [anon_sym_nullable] = ACTIONS(8221), + [anon_sym__Complex] = ACTIONS(8221), + [anon_sym__Nullable] = ACTIONS(8223), + [anon_sym__Nullable_result] = ACTIONS(8221), + [anon_sym__Null_unspecified] = ACTIONS(8221), + [anon_sym___autoreleasing] = ACTIONS(8221), + [anon_sym___block] = ACTIONS(8221), + [anon_sym___bridge] = ACTIONS(8223), + [anon_sym___bridge_retained] = ACTIONS(8221), + [anon_sym___bridge_transfer] = ACTIONS(8221), + [anon_sym___complex] = ACTIONS(8221), + [anon_sym___const] = ACTIONS(8221), + [anon_sym___imag] = ACTIONS(8221), + [anon_sym___kindof] = ACTIONS(8221), + [anon_sym___nonnull] = ACTIONS(8221), + [anon_sym___nullable] = ACTIONS(8221), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8221), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8221), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8221), + [anon_sym___real] = ACTIONS(8221), + [anon_sym___strong] = ACTIONS(8221), + [anon_sym___unsafe_unretained] = ACTIONS(8221), + [anon_sym___unused] = ACTIONS(8221), + [anon_sym___weak] = ACTIONS(8221), + [anon_sym_alignas] = ACTIONS(8221), + [anon_sym__Alignas] = ACTIONS(8221), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8221), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8221), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8221), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8221), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8221), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8221), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8221), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8221), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8221), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8221), + [anon_sym_NS_AVAILABLE] = ACTIONS(8223), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8221), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8221), + [anon_sym_API_AVAILABLE] = ACTIONS(8221), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8221), + [anon_sym_API_DEPRECATED] = ACTIONS(8221), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8221), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8221), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8221), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8221), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8221), + [anon_sym___deprecated_msg] = ACTIONS(8221), + [anon_sym___deprecated_enum_msg] = ACTIONS(8221), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8221), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8221), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8221), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8221), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8221), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8221), + }, + [3274] = { + [anon_sym_COMMA] = ACTIONS(8225), + [anon_sym_RPAREN] = ACTIONS(8225), + [anon_sym_LPAREN2] = ACTIONS(8225), + [anon_sym_SEMI] = ACTIONS(8225), + [anon_sym___extension__] = ACTIONS(8225), + [anon_sym_extern] = ACTIONS(8225), + [anon_sym___attribute__] = ACTIONS(8225), + [anon_sym___attribute] = ACTIONS(8227), + [anon_sym_noreturn] = ACTIONS(8225), + [anon_sym_LBRACK] = ACTIONS(8225), + [anon_sym___declspec] = ACTIONS(8225), + [anon_sym_static] = ACTIONS(8225), + [anon_sym_auto] = ACTIONS(8225), + [anon_sym_register] = ACTIONS(8225), + [anon_sym_inline] = ACTIONS(8225), + [anon_sym___inline] = ACTIONS(8227), + [anon_sym___inline__] = ACTIONS(8225), + [anon_sym___forceinline] = ACTIONS(8225), + [anon_sym_thread_local] = ACTIONS(8225), + [anon_sym___thread] = ACTIONS(8225), + [anon_sym_CG_EXTERN] = ACTIONS(8225), + [anon_sym_CG_INLINE] = ACTIONS(8225), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8225), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8225), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8225), + [anon_sym_IBOutlet] = ACTIONS(8225), + [anon_sym_IBInspectable] = ACTIONS(8225), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8225), + [anon_sym_NS_INLINE] = ACTIONS(8225), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8225), + [anon_sym_OBJC_EXPORT] = ACTIONS(8225), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8225), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8225), + [anon_sym_const] = ACTIONS(8227), + [anon_sym_constexpr] = ACTIONS(8225), + [anon_sym_volatile] = ACTIONS(8225), + [anon_sym_restrict] = ACTIONS(8225), + [anon_sym___restrict__] = ACTIONS(8225), + [anon_sym__Atomic] = ACTIONS(8225), + [anon_sym__Noreturn] = ACTIONS(8225), + [anon_sym__Nonnull] = ACTIONS(8225), + [anon_sym_nullable] = ACTIONS(8225), + [anon_sym__Complex] = ACTIONS(8225), + [anon_sym__Nullable] = ACTIONS(8227), + [anon_sym__Nullable_result] = ACTIONS(8225), + [anon_sym__Null_unspecified] = ACTIONS(8225), + [anon_sym___autoreleasing] = ACTIONS(8225), + [anon_sym___block] = ACTIONS(8225), + [anon_sym___bridge] = ACTIONS(8227), + [anon_sym___bridge_retained] = ACTIONS(8225), + [anon_sym___bridge_transfer] = ACTIONS(8225), + [anon_sym___complex] = ACTIONS(8225), + [anon_sym___const] = ACTIONS(8225), + [anon_sym___imag] = ACTIONS(8225), + [anon_sym___kindof] = ACTIONS(8225), + [anon_sym___nonnull] = ACTIONS(8225), + [anon_sym___nullable] = ACTIONS(8225), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8225), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8225), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8225), + [anon_sym___real] = ACTIONS(8225), + [anon_sym___strong] = ACTIONS(8225), + [anon_sym___unsafe_unretained] = ACTIONS(8225), + [anon_sym___unused] = ACTIONS(8225), + [anon_sym___weak] = ACTIONS(8225), + [anon_sym_alignas] = ACTIONS(8225), + [anon_sym__Alignas] = ACTIONS(8225), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8225), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8225), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8225), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8225), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8225), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8225), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8225), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8225), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8225), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8225), + [anon_sym_NS_AVAILABLE] = ACTIONS(8227), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8225), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8225), + [anon_sym_API_AVAILABLE] = ACTIONS(8225), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8225), + [anon_sym_API_DEPRECATED] = ACTIONS(8225), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8225), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8225), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8225), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8225), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8225), + [anon_sym___deprecated_msg] = ACTIONS(8225), + [anon_sym___deprecated_enum_msg] = ACTIONS(8225), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8225), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8225), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8225), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8225), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8225), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8225), + }, + [3275] = { + [sym_identifier] = ACTIONS(8115), + [anon_sym_COMMA] = ACTIONS(8113), + [anon_sym_SEMI] = ACTIONS(8113), + [anon_sym___extension__] = ACTIONS(8115), + [anon_sym_extern] = ACTIONS(8115), + [anon_sym___attribute__] = ACTIONS(8115), + [anon_sym___attribute] = ACTIONS(8115), + [anon_sym_noreturn] = ACTIONS(8115), + [anon_sym_LBRACK] = ACTIONS(8113), + [anon_sym___declspec] = ACTIONS(8115), + [anon_sym_static] = ACTIONS(8115), + [anon_sym_auto] = ACTIONS(8115), + [anon_sym_register] = ACTIONS(8115), + [anon_sym_inline] = ACTIONS(8115), + [anon_sym___inline] = ACTIONS(8115), + [anon_sym___inline__] = ACTIONS(8115), + [anon_sym___forceinline] = ACTIONS(8115), + [anon_sym_thread_local] = ACTIONS(8115), + [anon_sym___thread] = ACTIONS(8115), + [anon_sym_CG_EXTERN] = ACTIONS(8115), + [anon_sym_CG_INLINE] = ACTIONS(8115), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8115), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8115), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8115), + [anon_sym_IBOutlet] = ACTIONS(8115), + [anon_sym_IBInspectable] = ACTIONS(8115), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8115), + [anon_sym_NS_INLINE] = ACTIONS(8115), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8115), + [anon_sym_OBJC_EXPORT] = ACTIONS(8115), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8115), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8115), + [anon_sym_const] = ACTIONS(8115), + [anon_sym_constexpr] = ACTIONS(8115), + [anon_sym_volatile] = ACTIONS(8115), + [anon_sym_restrict] = ACTIONS(8115), + [anon_sym___restrict__] = ACTIONS(8115), + [anon_sym__Atomic] = ACTIONS(8115), + [anon_sym__Noreturn] = ACTIONS(8115), + [anon_sym__Nonnull] = ACTIONS(8115), + [anon_sym_nullable] = ACTIONS(8115), + [anon_sym__Complex] = ACTIONS(8115), + [anon_sym__Nullable] = ACTIONS(8115), + [anon_sym__Nullable_result] = ACTIONS(8115), + [anon_sym__Null_unspecified] = ACTIONS(8115), + [anon_sym___autoreleasing] = ACTIONS(8115), + [anon_sym___block] = ACTIONS(8115), + [anon_sym___bridge] = ACTIONS(8115), + [anon_sym___bridge_retained] = ACTIONS(8115), + [anon_sym___bridge_transfer] = ACTIONS(8115), + [anon_sym___complex] = ACTIONS(8115), + [anon_sym___const] = ACTIONS(8115), + [anon_sym___imag] = ACTIONS(8115), + [anon_sym___kindof] = ACTIONS(8115), + [anon_sym___nonnull] = ACTIONS(8115), + [anon_sym___nullable] = ACTIONS(8115), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8115), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8115), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8115), + [anon_sym___real] = ACTIONS(8115), + [anon_sym___strong] = ACTIONS(8115), + [anon_sym___unsafe_unretained] = ACTIONS(8115), + [anon_sym___unused] = ACTIONS(8115), + [anon_sym___weak] = ACTIONS(8115), + [anon_sym_alignas] = ACTIONS(8115), + [anon_sym__Alignas] = ACTIONS(8115), + [anon_sym_COLON] = ACTIONS(8113), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8115), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8115), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8115), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8115), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8115), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8115), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8115), + [anon_sym_NS_AVAILABLE] = ACTIONS(8115), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8115), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8115), + [anon_sym_API_AVAILABLE] = ACTIONS(8115), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8115), + [anon_sym_API_DEPRECATED] = ACTIONS(8115), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8115), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8115), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8115), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8115), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8115), + [anon_sym___deprecated_msg] = ACTIONS(8115), + [anon_sym___deprecated_enum_msg] = ACTIONS(8115), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8115), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8115), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8115), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8115), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8115), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8115), + }, + [3276] = { + [sym_identifier] = ACTIONS(8178), + [anon_sym_COMMA] = ACTIONS(8180), + [anon_sym_SEMI] = ACTIONS(8180), + [anon_sym___extension__] = ACTIONS(8178), + [anon_sym_extern] = ACTIONS(8178), + [anon_sym___attribute__] = ACTIONS(8178), + [anon_sym___attribute] = ACTIONS(8178), + [anon_sym_noreturn] = ACTIONS(8178), + [anon_sym_LBRACK] = ACTIONS(8180), + [anon_sym___declspec] = ACTIONS(8178), + [anon_sym_static] = ACTIONS(8178), + [anon_sym_auto] = ACTIONS(8178), + [anon_sym_register] = ACTIONS(8178), + [anon_sym_inline] = ACTIONS(8178), + [anon_sym___inline] = ACTIONS(8178), + [anon_sym___inline__] = ACTIONS(8178), + [anon_sym___forceinline] = ACTIONS(8178), + [anon_sym_thread_local] = ACTIONS(8178), + [anon_sym___thread] = ACTIONS(8178), + [anon_sym_CG_EXTERN] = ACTIONS(8178), + [anon_sym_CG_INLINE] = ACTIONS(8178), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8178), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8178), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8178), + [anon_sym_IBOutlet] = ACTIONS(8178), + [anon_sym_IBInspectable] = ACTIONS(8178), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8178), + [anon_sym_NS_INLINE] = ACTIONS(8178), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8178), + [anon_sym_OBJC_EXPORT] = ACTIONS(8178), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8178), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8178), + [anon_sym_const] = ACTIONS(8178), + [anon_sym_constexpr] = ACTIONS(8178), + [anon_sym_volatile] = ACTIONS(8178), + [anon_sym_restrict] = ACTIONS(8178), + [anon_sym___restrict__] = ACTIONS(8178), + [anon_sym__Atomic] = ACTIONS(8178), + [anon_sym__Noreturn] = ACTIONS(8178), + [anon_sym__Nonnull] = ACTIONS(8178), + [anon_sym_nullable] = ACTIONS(8178), + [anon_sym__Complex] = ACTIONS(8178), + [anon_sym__Nullable] = ACTIONS(8178), + [anon_sym__Nullable_result] = ACTIONS(8178), + [anon_sym__Null_unspecified] = ACTIONS(8178), + [anon_sym___autoreleasing] = ACTIONS(8178), + [anon_sym___block] = ACTIONS(8178), + [anon_sym___bridge] = ACTIONS(8178), + [anon_sym___bridge_retained] = ACTIONS(8178), + [anon_sym___bridge_transfer] = ACTIONS(8178), + [anon_sym___complex] = ACTIONS(8178), + [anon_sym___const] = ACTIONS(8178), + [anon_sym___imag] = ACTIONS(8178), + [anon_sym___kindof] = ACTIONS(8178), + [anon_sym___nonnull] = ACTIONS(8178), + [anon_sym___nullable] = ACTIONS(8178), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8178), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8178), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8178), + [anon_sym___real] = ACTIONS(8178), + [anon_sym___strong] = ACTIONS(8178), + [anon_sym___unsafe_unretained] = ACTIONS(8178), + [anon_sym___unused] = ACTIONS(8178), + [anon_sym___weak] = ACTIONS(8178), + [anon_sym_alignas] = ACTIONS(8178), + [anon_sym__Alignas] = ACTIONS(8178), + [anon_sym_COLON] = ACTIONS(8180), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8178), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8178), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8178), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8178), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8178), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8178), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8178), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8178), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8178), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8178), + [anon_sym_NS_AVAILABLE] = ACTIONS(8178), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8178), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8178), + [anon_sym_API_AVAILABLE] = ACTIONS(8178), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8178), + [anon_sym_API_DEPRECATED] = ACTIONS(8178), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8178), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8178), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8178), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8178), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8178), + [anon_sym___deprecated_msg] = ACTIONS(8178), + [anon_sym___deprecated_enum_msg] = ACTIONS(8178), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8178), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8178), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8178), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8178), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8178), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8178), + }, + [3277] = { + [anon_sym_COMMA] = ACTIONS(8229), + [anon_sym_RPAREN] = ACTIONS(8229), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_SEMI] = ACTIONS(8229), + [anon_sym___extension__] = ACTIONS(8229), + [anon_sym_extern] = ACTIONS(8229), + [anon_sym___attribute__] = ACTIONS(8229), + [anon_sym___attribute] = ACTIONS(8231), + [anon_sym_noreturn] = ACTIONS(8229), + [anon_sym_LBRACK] = ACTIONS(8229), + [anon_sym___declspec] = ACTIONS(8229), + [anon_sym_static] = ACTIONS(8229), + [anon_sym_auto] = ACTIONS(8229), + [anon_sym_register] = ACTIONS(8229), + [anon_sym_inline] = ACTIONS(8229), + [anon_sym___inline] = ACTIONS(8231), + [anon_sym___inline__] = ACTIONS(8229), + [anon_sym___forceinline] = ACTIONS(8229), + [anon_sym_thread_local] = ACTIONS(8229), + [anon_sym___thread] = ACTIONS(8229), + [anon_sym_CG_EXTERN] = ACTIONS(8229), + [anon_sym_CG_INLINE] = ACTIONS(8229), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8229), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8229), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8229), + [anon_sym_IBOutlet] = ACTIONS(8229), + [anon_sym_IBInspectable] = ACTIONS(8229), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8229), + [anon_sym_NS_INLINE] = ACTIONS(8229), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8229), + [anon_sym_OBJC_EXPORT] = ACTIONS(8229), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8229), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8229), + [anon_sym_const] = ACTIONS(8231), + [anon_sym_constexpr] = ACTIONS(8229), + [anon_sym_volatile] = ACTIONS(8229), + [anon_sym_restrict] = ACTIONS(8229), + [anon_sym___restrict__] = ACTIONS(8229), + [anon_sym__Atomic] = ACTIONS(8229), + [anon_sym__Noreturn] = ACTIONS(8229), + [anon_sym__Nonnull] = ACTIONS(8229), + [anon_sym_nullable] = ACTIONS(8229), + [anon_sym__Complex] = ACTIONS(8229), + [anon_sym__Nullable] = ACTIONS(8231), + [anon_sym__Nullable_result] = ACTIONS(8229), + [anon_sym__Null_unspecified] = ACTIONS(8229), + [anon_sym___autoreleasing] = ACTIONS(8229), + [anon_sym___block] = ACTIONS(8229), + [anon_sym___bridge] = ACTIONS(8231), + [anon_sym___bridge_retained] = ACTIONS(8229), + [anon_sym___bridge_transfer] = ACTIONS(8229), + [anon_sym___complex] = ACTIONS(8229), + [anon_sym___const] = ACTIONS(8229), + [anon_sym___imag] = ACTIONS(8229), + [anon_sym___kindof] = ACTIONS(8229), + [anon_sym___nonnull] = ACTIONS(8229), + [anon_sym___nullable] = ACTIONS(8229), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8229), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8229), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8229), + [anon_sym___real] = ACTIONS(8229), + [anon_sym___strong] = ACTIONS(8229), + [anon_sym___unsafe_unretained] = ACTIONS(8229), + [anon_sym___unused] = ACTIONS(8229), + [anon_sym___weak] = ACTIONS(8229), + [anon_sym_alignas] = ACTIONS(8229), + [anon_sym__Alignas] = ACTIONS(8229), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8229), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8229), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8229), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8229), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8229), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8229), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8229), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8229), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8229), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8229), + [anon_sym_NS_AVAILABLE] = ACTIONS(8231), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8229), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8229), + [anon_sym_API_AVAILABLE] = ACTIONS(8229), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8229), + [anon_sym_API_DEPRECATED] = ACTIONS(8229), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8229), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8229), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8229), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8229), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8229), + [anon_sym___deprecated_msg] = ACTIONS(8229), + [anon_sym___deprecated_enum_msg] = ACTIONS(8229), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8229), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8229), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8229), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8229), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8229), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8229), + }, + [3278] = { + [anon_sym_COMMA] = ACTIONS(8233), + [anon_sym_RPAREN] = ACTIONS(8233), + [anon_sym_LPAREN2] = ACTIONS(8233), + [anon_sym_SEMI] = ACTIONS(8233), + [anon_sym___extension__] = ACTIONS(8233), + [anon_sym_extern] = ACTIONS(8233), + [anon_sym___attribute__] = ACTIONS(8233), + [anon_sym___attribute] = ACTIONS(8235), + [anon_sym_noreturn] = ACTIONS(8233), + [anon_sym_LBRACK] = ACTIONS(8233), + [anon_sym___declspec] = ACTIONS(8233), + [anon_sym_static] = ACTIONS(8233), + [anon_sym_auto] = ACTIONS(8233), + [anon_sym_register] = ACTIONS(8233), + [anon_sym_inline] = ACTIONS(8233), + [anon_sym___inline] = ACTIONS(8235), + [anon_sym___inline__] = ACTIONS(8233), + [anon_sym___forceinline] = ACTIONS(8233), + [anon_sym_thread_local] = ACTIONS(8233), + [anon_sym___thread] = ACTIONS(8233), + [anon_sym_CG_EXTERN] = ACTIONS(8233), + [anon_sym_CG_INLINE] = ACTIONS(8233), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8233), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8233), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8233), + [anon_sym_IBOutlet] = ACTIONS(8233), + [anon_sym_IBInspectable] = ACTIONS(8233), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8233), + [anon_sym_NS_INLINE] = ACTIONS(8233), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8233), + [anon_sym_OBJC_EXPORT] = ACTIONS(8233), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8233), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8233), + [anon_sym_const] = ACTIONS(8235), + [anon_sym_constexpr] = ACTIONS(8233), + [anon_sym_volatile] = ACTIONS(8233), + [anon_sym_restrict] = ACTIONS(8233), + [anon_sym___restrict__] = ACTIONS(8233), + [anon_sym__Atomic] = ACTIONS(8233), + [anon_sym__Noreturn] = ACTIONS(8233), + [anon_sym__Nonnull] = ACTIONS(8233), + [anon_sym_nullable] = ACTIONS(8233), + [anon_sym__Complex] = ACTIONS(8233), + [anon_sym__Nullable] = ACTIONS(8235), + [anon_sym__Nullable_result] = ACTIONS(8233), + [anon_sym__Null_unspecified] = ACTIONS(8233), + [anon_sym___autoreleasing] = ACTIONS(8233), + [anon_sym___block] = ACTIONS(8233), + [anon_sym___bridge] = ACTIONS(8235), + [anon_sym___bridge_retained] = ACTIONS(8233), + [anon_sym___bridge_transfer] = ACTIONS(8233), + [anon_sym___complex] = ACTIONS(8233), + [anon_sym___const] = ACTIONS(8233), + [anon_sym___imag] = ACTIONS(8233), + [anon_sym___kindof] = ACTIONS(8233), + [anon_sym___nonnull] = ACTIONS(8233), + [anon_sym___nullable] = ACTIONS(8233), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8233), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8233), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8233), + [anon_sym___real] = ACTIONS(8233), + [anon_sym___strong] = ACTIONS(8233), + [anon_sym___unsafe_unretained] = ACTIONS(8233), + [anon_sym___unused] = ACTIONS(8233), + [anon_sym___weak] = ACTIONS(8233), + [anon_sym_alignas] = ACTIONS(8233), + [anon_sym__Alignas] = ACTIONS(8233), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8233), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8233), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8233), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8233), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8233), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8233), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8233), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8233), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8233), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8233), + [anon_sym_NS_AVAILABLE] = ACTIONS(8235), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8233), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8233), + [anon_sym_API_AVAILABLE] = ACTIONS(8233), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8233), + [anon_sym_API_DEPRECATED] = ACTIONS(8233), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8233), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8233), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8233), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8233), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8233), + [anon_sym___deprecated_msg] = ACTIONS(8233), + [anon_sym___deprecated_enum_msg] = ACTIONS(8233), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8233), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8233), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8233), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8233), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8233), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8233), + }, + [3279] = { + [sym_parameter_list] = STATE(3248), + [anon_sym_COMMA] = ACTIONS(8237), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(8237), + [anon_sym___extension__] = ACTIONS(8237), + [anon_sym_extern] = ACTIONS(8237), + [anon_sym___attribute__] = ACTIONS(8237), + [anon_sym___attribute] = ACTIONS(8239), + [anon_sym_noreturn] = ACTIONS(8237), + [anon_sym_LBRACK] = ACTIONS(8203), + [anon_sym___declspec] = ACTIONS(8237), + [anon_sym_static] = ACTIONS(8237), + [anon_sym_auto] = ACTIONS(8237), + [anon_sym_register] = ACTIONS(8237), + [anon_sym_inline] = ACTIONS(8237), + [anon_sym___inline] = ACTIONS(8239), + [anon_sym___inline__] = ACTIONS(8237), + [anon_sym___forceinline] = ACTIONS(8237), + [anon_sym_thread_local] = ACTIONS(8237), + [anon_sym___thread] = ACTIONS(8237), + [anon_sym_CG_EXTERN] = ACTIONS(8237), + [anon_sym_CG_INLINE] = ACTIONS(8237), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8237), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8237), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8237), + [anon_sym_IBOutlet] = ACTIONS(8237), + [anon_sym_IBInspectable] = ACTIONS(8237), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8237), + [anon_sym_NS_INLINE] = ACTIONS(8237), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8237), + [anon_sym_OBJC_EXPORT] = ACTIONS(8237), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8237), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8237), + [anon_sym_const] = ACTIONS(8239), + [anon_sym_constexpr] = ACTIONS(8237), + [anon_sym_volatile] = ACTIONS(8237), + [anon_sym_restrict] = ACTIONS(8237), + [anon_sym___restrict__] = ACTIONS(8237), + [anon_sym__Atomic] = ACTIONS(8237), + [anon_sym__Noreturn] = ACTIONS(8237), + [anon_sym__Nonnull] = ACTIONS(8237), + [anon_sym_nullable] = ACTIONS(8237), + [anon_sym__Complex] = ACTIONS(8237), + [anon_sym__Nullable] = ACTIONS(8239), + [anon_sym__Nullable_result] = ACTIONS(8237), + [anon_sym__Null_unspecified] = ACTIONS(8237), + [anon_sym___autoreleasing] = ACTIONS(8237), + [anon_sym___block] = ACTIONS(8237), + [anon_sym___bridge] = ACTIONS(8239), + [anon_sym___bridge_retained] = ACTIONS(8237), + [anon_sym___bridge_transfer] = ACTIONS(8237), + [anon_sym___complex] = ACTIONS(8237), + [anon_sym___const] = ACTIONS(8237), + [anon_sym___imag] = ACTIONS(8237), + [anon_sym___kindof] = ACTIONS(8237), + [anon_sym___nonnull] = ACTIONS(8237), + [anon_sym___nullable] = ACTIONS(8237), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8237), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8237), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8237), + [anon_sym___real] = ACTIONS(8237), + [anon_sym___strong] = ACTIONS(8237), + [anon_sym___unsafe_unretained] = ACTIONS(8237), + [anon_sym___unused] = ACTIONS(8237), + [anon_sym___weak] = ACTIONS(8237), + [anon_sym_alignas] = ACTIONS(8237), + [anon_sym__Alignas] = ACTIONS(8237), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8237), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8237), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8237), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8237), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8237), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8237), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8237), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8237), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8237), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8237), + [anon_sym_NS_AVAILABLE] = ACTIONS(8239), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8237), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8237), + [anon_sym_API_AVAILABLE] = ACTIONS(8237), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8237), + [anon_sym_API_DEPRECATED] = ACTIONS(8237), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8237), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8237), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8237), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8237), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8237), + [anon_sym___deprecated_msg] = ACTIONS(8237), + [anon_sym___deprecated_enum_msg] = ACTIONS(8237), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8237), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8237), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8237), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8237), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8237), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8237), + }, + [3280] = { + [sym_identifier] = ACTIONS(8241), + [anon_sym_COMMA] = ACTIONS(8243), + [anon_sym_SEMI] = ACTIONS(8243), + [anon_sym___extension__] = ACTIONS(8241), + [anon_sym_extern] = ACTIONS(8241), + [anon_sym___attribute__] = ACTIONS(8241), + [anon_sym___attribute] = ACTIONS(8241), + [anon_sym_noreturn] = ACTIONS(8241), + [anon_sym_LBRACK] = ACTIONS(8243), + [anon_sym___declspec] = ACTIONS(8241), + [anon_sym_static] = ACTIONS(8241), + [anon_sym_auto] = ACTIONS(8241), + [anon_sym_register] = ACTIONS(8241), + [anon_sym_inline] = ACTIONS(8241), + [anon_sym___inline] = ACTIONS(8241), + [anon_sym___inline__] = ACTIONS(8241), + [anon_sym___forceinline] = ACTIONS(8241), + [anon_sym_thread_local] = ACTIONS(8241), + [anon_sym___thread] = ACTIONS(8241), + [anon_sym_CG_EXTERN] = ACTIONS(8241), + [anon_sym_CG_INLINE] = ACTIONS(8241), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8241), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8241), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8241), + [anon_sym_IBOutlet] = ACTIONS(8241), + [anon_sym_IBInspectable] = ACTIONS(8241), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8241), + [anon_sym_NS_INLINE] = ACTIONS(8241), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8241), + [anon_sym_OBJC_EXPORT] = ACTIONS(8241), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8241), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8241), + [anon_sym_const] = ACTIONS(8241), + [anon_sym_constexpr] = ACTIONS(8241), + [anon_sym_volatile] = ACTIONS(8241), + [anon_sym_restrict] = ACTIONS(8241), + [anon_sym___restrict__] = ACTIONS(8241), + [anon_sym__Atomic] = ACTIONS(8241), + [anon_sym__Noreturn] = ACTIONS(8241), + [anon_sym__Nonnull] = ACTIONS(8241), + [anon_sym_nullable] = ACTIONS(8241), + [anon_sym__Complex] = ACTIONS(8241), + [anon_sym__Nullable] = ACTIONS(8241), + [anon_sym__Nullable_result] = ACTIONS(8241), + [anon_sym__Null_unspecified] = ACTIONS(8241), + [anon_sym___autoreleasing] = ACTIONS(8241), + [anon_sym___block] = ACTIONS(8241), + [anon_sym___bridge] = ACTIONS(8241), + [anon_sym___bridge_retained] = ACTIONS(8241), + [anon_sym___bridge_transfer] = ACTIONS(8241), + [anon_sym___complex] = ACTIONS(8241), + [anon_sym___const] = ACTIONS(8241), + [anon_sym___imag] = ACTIONS(8241), + [anon_sym___kindof] = ACTIONS(8241), + [anon_sym___nonnull] = ACTIONS(8241), + [anon_sym___nullable] = ACTIONS(8241), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8241), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8241), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8241), + [anon_sym___real] = ACTIONS(8241), + [anon_sym___strong] = ACTIONS(8241), + [anon_sym___unsafe_unretained] = ACTIONS(8241), + [anon_sym___unused] = ACTIONS(8241), + [anon_sym___weak] = ACTIONS(8241), + [anon_sym_alignas] = ACTIONS(8241), + [anon_sym__Alignas] = ACTIONS(8241), + [anon_sym_COLON] = ACTIONS(8243), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8241), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8241), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8241), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8241), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8241), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8241), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8241), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8241), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8241), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8241), + [anon_sym_NS_AVAILABLE] = ACTIONS(8241), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8241), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8241), + [anon_sym_API_AVAILABLE] = ACTIONS(8241), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8241), + [anon_sym_API_DEPRECATED] = ACTIONS(8241), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8241), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8241), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8241), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8241), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8241), + [anon_sym___deprecated_msg] = ACTIONS(8241), + [anon_sym___deprecated_enum_msg] = ACTIONS(8241), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8241), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8241), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8241), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8241), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8241), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8241), + }, + [3281] = { + [anon_sym_COMMA] = ACTIONS(8245), + [anon_sym_RPAREN] = ACTIONS(8245), + [anon_sym_LPAREN2] = ACTIONS(8245), + [anon_sym_SEMI] = ACTIONS(8245), + [anon_sym___extension__] = ACTIONS(8245), + [anon_sym_extern] = ACTIONS(8245), + [anon_sym___attribute__] = ACTIONS(8245), + [anon_sym___attribute] = ACTIONS(8247), + [anon_sym_noreturn] = ACTIONS(8245), + [anon_sym_LBRACK] = ACTIONS(8245), + [anon_sym___declspec] = ACTIONS(8245), + [anon_sym_static] = ACTIONS(8245), + [anon_sym_auto] = ACTIONS(8245), + [anon_sym_register] = ACTIONS(8245), + [anon_sym_inline] = ACTIONS(8245), + [anon_sym___inline] = ACTIONS(8247), + [anon_sym___inline__] = ACTIONS(8245), + [anon_sym___forceinline] = ACTIONS(8245), + [anon_sym_thread_local] = ACTIONS(8245), + [anon_sym___thread] = ACTIONS(8245), + [anon_sym_CG_EXTERN] = ACTIONS(8245), + [anon_sym_CG_INLINE] = ACTIONS(8245), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8245), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8245), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8245), + [anon_sym_IBOutlet] = ACTIONS(8245), + [anon_sym_IBInspectable] = ACTIONS(8245), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8245), + [anon_sym_NS_INLINE] = ACTIONS(8245), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8245), + [anon_sym_OBJC_EXPORT] = ACTIONS(8245), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8245), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8245), + [anon_sym_const] = ACTIONS(8247), + [anon_sym_constexpr] = ACTIONS(8245), + [anon_sym_volatile] = ACTIONS(8245), + [anon_sym_restrict] = ACTIONS(8245), + [anon_sym___restrict__] = ACTIONS(8245), + [anon_sym__Atomic] = ACTIONS(8245), + [anon_sym__Noreturn] = ACTIONS(8245), + [anon_sym__Nonnull] = ACTIONS(8245), + [anon_sym_nullable] = ACTIONS(8245), + [anon_sym__Complex] = ACTIONS(8245), + [anon_sym__Nullable] = ACTIONS(8247), + [anon_sym__Nullable_result] = ACTIONS(8245), + [anon_sym__Null_unspecified] = ACTIONS(8245), + [anon_sym___autoreleasing] = ACTIONS(8245), + [anon_sym___block] = ACTIONS(8245), + [anon_sym___bridge] = ACTIONS(8247), + [anon_sym___bridge_retained] = ACTIONS(8245), + [anon_sym___bridge_transfer] = ACTIONS(8245), + [anon_sym___complex] = ACTIONS(8245), + [anon_sym___const] = ACTIONS(8245), + [anon_sym___imag] = ACTIONS(8245), + [anon_sym___kindof] = ACTIONS(8245), + [anon_sym___nonnull] = ACTIONS(8245), + [anon_sym___nullable] = ACTIONS(8245), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8245), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8245), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8245), + [anon_sym___real] = ACTIONS(8245), + [anon_sym___strong] = ACTIONS(8245), + [anon_sym___unsafe_unretained] = ACTIONS(8245), + [anon_sym___unused] = ACTIONS(8245), + [anon_sym___weak] = ACTIONS(8245), + [anon_sym_alignas] = ACTIONS(8245), + [anon_sym__Alignas] = ACTIONS(8245), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8245), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8245), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8245), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8245), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8245), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8245), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8245), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8245), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8245), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8245), + [anon_sym_NS_AVAILABLE] = ACTIONS(8247), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8245), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8245), + [anon_sym_API_AVAILABLE] = ACTIONS(8245), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8245), + [anon_sym_API_DEPRECATED] = ACTIONS(8245), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8245), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8245), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8245), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8245), + [anon_sym___deprecated_msg] = ACTIONS(8245), + [anon_sym___deprecated_enum_msg] = ACTIONS(8245), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8245), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8245), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8245), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8245), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8245), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8245), + }, + [3282] = { + [anon_sym_COMMA] = ACTIONS(8249), + [anon_sym_RPAREN] = ACTIONS(8249), + [anon_sym_LPAREN2] = ACTIONS(8249), + [anon_sym_SEMI] = ACTIONS(8249), + [anon_sym___extension__] = ACTIONS(8249), + [anon_sym_extern] = ACTIONS(8249), + [anon_sym___attribute__] = ACTIONS(8249), + [anon_sym___attribute] = ACTIONS(8251), + [anon_sym_noreturn] = ACTIONS(8249), + [anon_sym_LBRACK] = ACTIONS(8249), + [anon_sym___declspec] = ACTIONS(8249), + [anon_sym_static] = ACTIONS(8249), + [anon_sym_auto] = ACTIONS(8249), + [anon_sym_register] = ACTIONS(8249), + [anon_sym_inline] = ACTIONS(8249), + [anon_sym___inline] = ACTIONS(8251), + [anon_sym___inline__] = ACTIONS(8249), + [anon_sym___forceinline] = ACTIONS(8249), + [anon_sym_thread_local] = ACTIONS(8249), + [anon_sym___thread] = ACTIONS(8249), + [anon_sym_CG_EXTERN] = ACTIONS(8249), + [anon_sym_CG_INLINE] = ACTIONS(8249), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8249), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8249), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8249), + [anon_sym_IBOutlet] = ACTIONS(8249), + [anon_sym_IBInspectable] = ACTIONS(8249), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8249), + [anon_sym_NS_INLINE] = ACTIONS(8249), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8249), + [anon_sym_OBJC_EXPORT] = ACTIONS(8249), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8249), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8249), + [anon_sym_const] = ACTIONS(8251), + [anon_sym_constexpr] = ACTIONS(8249), + [anon_sym_volatile] = ACTIONS(8249), + [anon_sym_restrict] = ACTIONS(8249), + [anon_sym___restrict__] = ACTIONS(8249), + [anon_sym__Atomic] = ACTIONS(8249), + [anon_sym__Noreturn] = ACTIONS(8249), + [anon_sym__Nonnull] = ACTIONS(8249), + [anon_sym_nullable] = ACTIONS(8249), + [anon_sym__Complex] = ACTIONS(8249), + [anon_sym__Nullable] = ACTIONS(8251), + [anon_sym__Nullable_result] = ACTIONS(8249), + [anon_sym__Null_unspecified] = ACTIONS(8249), + [anon_sym___autoreleasing] = ACTIONS(8249), + [anon_sym___block] = ACTIONS(8249), + [anon_sym___bridge] = ACTIONS(8251), + [anon_sym___bridge_retained] = ACTIONS(8249), + [anon_sym___bridge_transfer] = ACTIONS(8249), + [anon_sym___complex] = ACTIONS(8249), + [anon_sym___const] = ACTIONS(8249), + [anon_sym___imag] = ACTIONS(8249), + [anon_sym___kindof] = ACTIONS(8249), + [anon_sym___nonnull] = ACTIONS(8249), + [anon_sym___nullable] = ACTIONS(8249), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8249), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8249), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8249), + [anon_sym___real] = ACTIONS(8249), + [anon_sym___strong] = ACTIONS(8249), + [anon_sym___unsafe_unretained] = ACTIONS(8249), + [anon_sym___unused] = ACTIONS(8249), + [anon_sym___weak] = ACTIONS(8249), + [anon_sym_alignas] = ACTIONS(8249), + [anon_sym__Alignas] = ACTIONS(8249), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8249), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8249), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8249), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8249), + [anon_sym_API_AVAILABLE] = ACTIONS(8249), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_API_DEPRECATED] = ACTIONS(8249), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8249), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8249), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8249), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8249), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8249), + [anon_sym___deprecated_msg] = ACTIONS(8249), + [anon_sym___deprecated_enum_msg] = ACTIONS(8249), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8249), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8249), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8249), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8249), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8249), + }, + [3283] = { + [sym_parameter_list] = STATE(3248), + [anon_sym_COMMA] = ACTIONS(8253), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(8253), + [anon_sym___extension__] = ACTIONS(8253), + [anon_sym_extern] = ACTIONS(8253), + [anon_sym___attribute__] = ACTIONS(8253), + [anon_sym___attribute] = ACTIONS(8255), + [anon_sym_noreturn] = ACTIONS(8253), + [anon_sym_LBRACK] = ACTIONS(8203), + [anon_sym___declspec] = ACTIONS(8253), + [anon_sym_static] = ACTIONS(8253), + [anon_sym_auto] = ACTIONS(8253), + [anon_sym_register] = ACTIONS(8253), + [anon_sym_inline] = ACTIONS(8253), + [anon_sym___inline] = ACTIONS(8255), + [anon_sym___inline__] = ACTIONS(8253), + [anon_sym___forceinline] = ACTIONS(8253), + [anon_sym_thread_local] = ACTIONS(8253), + [anon_sym___thread] = ACTIONS(8253), + [anon_sym_CG_EXTERN] = ACTIONS(8253), + [anon_sym_CG_INLINE] = ACTIONS(8253), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8253), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8253), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8253), + [anon_sym_IBOutlet] = ACTIONS(8253), + [anon_sym_IBInspectable] = ACTIONS(8253), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8253), + [anon_sym_NS_INLINE] = ACTIONS(8253), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8253), + [anon_sym_OBJC_EXPORT] = ACTIONS(8253), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8253), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8253), + [anon_sym_const] = ACTIONS(8255), + [anon_sym_constexpr] = ACTIONS(8253), + [anon_sym_volatile] = ACTIONS(8253), + [anon_sym_restrict] = ACTIONS(8253), + [anon_sym___restrict__] = ACTIONS(8253), + [anon_sym__Atomic] = ACTIONS(8253), + [anon_sym__Noreturn] = ACTIONS(8253), + [anon_sym__Nonnull] = ACTIONS(8253), + [anon_sym_nullable] = ACTIONS(8253), + [anon_sym__Complex] = ACTIONS(8253), + [anon_sym__Nullable] = ACTIONS(8255), + [anon_sym__Nullable_result] = ACTIONS(8253), + [anon_sym__Null_unspecified] = ACTIONS(8253), + [anon_sym___autoreleasing] = ACTIONS(8253), + [anon_sym___block] = ACTIONS(8253), + [anon_sym___bridge] = ACTIONS(8255), + [anon_sym___bridge_retained] = ACTIONS(8253), + [anon_sym___bridge_transfer] = ACTIONS(8253), + [anon_sym___complex] = ACTIONS(8253), + [anon_sym___const] = ACTIONS(8253), + [anon_sym___imag] = ACTIONS(8253), + [anon_sym___kindof] = ACTIONS(8253), + [anon_sym___nonnull] = ACTIONS(8253), + [anon_sym___nullable] = ACTIONS(8253), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8253), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8253), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8253), + [anon_sym___real] = ACTIONS(8253), + [anon_sym___strong] = ACTIONS(8253), + [anon_sym___unsafe_unretained] = ACTIONS(8253), + [anon_sym___unused] = ACTIONS(8253), + [anon_sym___weak] = ACTIONS(8253), + [anon_sym_alignas] = ACTIONS(8253), + [anon_sym__Alignas] = ACTIONS(8253), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8253), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8253), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8253), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8253), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8253), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8253), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8253), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8253), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8253), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8253), + [anon_sym_NS_AVAILABLE] = ACTIONS(8255), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8253), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8253), + [anon_sym_API_AVAILABLE] = ACTIONS(8253), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8253), + [anon_sym_API_DEPRECATED] = ACTIONS(8253), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8253), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8253), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8253), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8253), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8253), + [anon_sym___deprecated_msg] = ACTIONS(8253), + [anon_sym___deprecated_enum_msg] = ACTIONS(8253), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8253), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8253), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8253), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8253), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8253), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8253), + }, + [3284] = { + [sym_identifier] = ACTIONS(8148), + [anon_sym_COMMA] = ACTIONS(8150), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym___extension__] = ACTIONS(8148), + [anon_sym_extern] = ACTIONS(8148), + [anon_sym___attribute__] = ACTIONS(8148), + [anon_sym___attribute] = ACTIONS(8148), + [anon_sym_noreturn] = ACTIONS(8148), + [anon_sym_LBRACK] = ACTIONS(8150), + [anon_sym___declspec] = ACTIONS(8148), + [anon_sym_static] = ACTIONS(8148), + [anon_sym_auto] = ACTIONS(8148), + [anon_sym_register] = ACTIONS(8148), + [anon_sym_inline] = ACTIONS(8148), + [anon_sym___inline] = ACTIONS(8148), + [anon_sym___inline__] = ACTIONS(8148), + [anon_sym___forceinline] = ACTIONS(8148), + [anon_sym_thread_local] = ACTIONS(8148), + [anon_sym___thread] = ACTIONS(8148), + [anon_sym_CG_EXTERN] = ACTIONS(8148), + [anon_sym_CG_INLINE] = ACTIONS(8148), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8148), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8148), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8148), + [anon_sym_IBOutlet] = ACTIONS(8148), + [anon_sym_IBInspectable] = ACTIONS(8148), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8148), + [anon_sym_NS_INLINE] = ACTIONS(8148), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8148), + [anon_sym_OBJC_EXPORT] = ACTIONS(8148), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8148), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8148), + [anon_sym_const] = ACTIONS(8148), + [anon_sym_constexpr] = ACTIONS(8148), + [anon_sym_volatile] = ACTIONS(8148), + [anon_sym_restrict] = ACTIONS(8148), + [anon_sym___restrict__] = ACTIONS(8148), + [anon_sym__Atomic] = ACTIONS(8148), + [anon_sym__Noreturn] = ACTIONS(8148), + [anon_sym__Nonnull] = ACTIONS(8148), + [anon_sym_nullable] = ACTIONS(8148), + [anon_sym__Complex] = ACTIONS(8148), + [anon_sym__Nullable] = ACTIONS(8148), + [anon_sym__Nullable_result] = ACTIONS(8148), + [anon_sym__Null_unspecified] = ACTIONS(8148), + [anon_sym___autoreleasing] = ACTIONS(8148), + [anon_sym___block] = ACTIONS(8148), + [anon_sym___bridge] = ACTIONS(8148), + [anon_sym___bridge_retained] = ACTIONS(8148), + [anon_sym___bridge_transfer] = ACTIONS(8148), + [anon_sym___complex] = ACTIONS(8148), + [anon_sym___const] = ACTIONS(8148), + [anon_sym___imag] = ACTIONS(8148), + [anon_sym___kindof] = ACTIONS(8148), + [anon_sym___nonnull] = ACTIONS(8148), + [anon_sym___nullable] = ACTIONS(8148), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8148), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8148), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8148), + [anon_sym___real] = ACTIONS(8148), + [anon_sym___strong] = ACTIONS(8148), + [anon_sym___unsafe_unretained] = ACTIONS(8148), + [anon_sym___unused] = ACTIONS(8148), + [anon_sym___weak] = ACTIONS(8148), + [anon_sym_alignas] = ACTIONS(8148), + [anon_sym__Alignas] = ACTIONS(8148), + [anon_sym_COLON] = ACTIONS(8150), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8148), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8148), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8148), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8148), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8148), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8148), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8148), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8148), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8148), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8148), + [anon_sym_NS_AVAILABLE] = ACTIONS(8148), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8148), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8148), + [anon_sym_API_AVAILABLE] = ACTIONS(8148), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8148), + [anon_sym_API_DEPRECATED] = ACTIONS(8148), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8148), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8148), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8148), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8148), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8148), + [anon_sym___deprecated_msg] = ACTIONS(8148), + [anon_sym___deprecated_enum_msg] = ACTIONS(8148), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8148), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8148), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8148), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8148), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8148), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8148), + }, + [3285] = { + [anon_sym_COMMA] = ACTIONS(8257), + [anon_sym_RPAREN] = ACTIONS(8257), + [anon_sym_LPAREN2] = ACTIONS(8257), + [anon_sym_SEMI] = ACTIONS(8257), + [anon_sym___extension__] = ACTIONS(8257), + [anon_sym_extern] = ACTIONS(8257), + [anon_sym___attribute__] = ACTIONS(8257), + [anon_sym___attribute] = ACTIONS(8259), + [anon_sym_noreturn] = ACTIONS(8257), + [anon_sym_LBRACK] = ACTIONS(8257), + [anon_sym___declspec] = ACTIONS(8257), + [anon_sym_static] = ACTIONS(8257), + [anon_sym_auto] = ACTIONS(8257), + [anon_sym_register] = ACTIONS(8257), + [anon_sym_inline] = ACTIONS(8257), + [anon_sym___inline] = ACTIONS(8259), + [anon_sym___inline__] = ACTIONS(8257), + [anon_sym___forceinline] = ACTIONS(8257), + [anon_sym_thread_local] = ACTIONS(8257), + [anon_sym___thread] = ACTIONS(8257), + [anon_sym_CG_EXTERN] = ACTIONS(8257), + [anon_sym_CG_INLINE] = ACTIONS(8257), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8257), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8257), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8257), + [anon_sym_IBOutlet] = ACTIONS(8257), + [anon_sym_IBInspectable] = ACTIONS(8257), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8257), + [anon_sym_NS_INLINE] = ACTIONS(8257), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8257), + [anon_sym_OBJC_EXPORT] = ACTIONS(8257), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8257), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8257), + [anon_sym_const] = ACTIONS(8259), + [anon_sym_constexpr] = ACTIONS(8257), + [anon_sym_volatile] = ACTIONS(8257), + [anon_sym_restrict] = ACTIONS(8257), + [anon_sym___restrict__] = ACTIONS(8257), + [anon_sym__Atomic] = ACTIONS(8257), + [anon_sym__Noreturn] = ACTIONS(8257), + [anon_sym__Nonnull] = ACTIONS(8257), + [anon_sym_nullable] = ACTIONS(8257), + [anon_sym__Complex] = ACTIONS(8257), + [anon_sym__Nullable] = ACTIONS(8259), + [anon_sym__Nullable_result] = ACTIONS(8257), + [anon_sym__Null_unspecified] = ACTIONS(8257), + [anon_sym___autoreleasing] = ACTIONS(8257), + [anon_sym___block] = ACTIONS(8257), + [anon_sym___bridge] = ACTIONS(8259), + [anon_sym___bridge_retained] = ACTIONS(8257), + [anon_sym___bridge_transfer] = ACTIONS(8257), + [anon_sym___complex] = ACTIONS(8257), + [anon_sym___const] = ACTIONS(8257), + [anon_sym___imag] = ACTIONS(8257), + [anon_sym___kindof] = ACTIONS(8257), + [anon_sym___nonnull] = ACTIONS(8257), + [anon_sym___nullable] = ACTIONS(8257), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8257), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8257), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8257), + [anon_sym___real] = ACTIONS(8257), + [anon_sym___strong] = ACTIONS(8257), + [anon_sym___unsafe_unretained] = ACTIONS(8257), + [anon_sym___unused] = ACTIONS(8257), + [anon_sym___weak] = ACTIONS(8257), + [anon_sym_alignas] = ACTIONS(8257), + [anon_sym__Alignas] = ACTIONS(8257), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8257), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8257), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8257), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8257), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8257), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8257), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8257), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8257), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8257), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8257), + [anon_sym_NS_AVAILABLE] = ACTIONS(8259), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8257), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8257), + [anon_sym_API_AVAILABLE] = ACTIONS(8257), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8257), + [anon_sym_API_DEPRECATED] = ACTIONS(8257), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8257), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8257), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8257), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8257), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8257), + [anon_sym___deprecated_msg] = ACTIONS(8257), + [anon_sym___deprecated_enum_msg] = ACTIONS(8257), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8257), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8257), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8257), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8257), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8257), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8257), + }, + [3286] = { + [anon_sym_COMMA] = ACTIONS(8261), + [anon_sym_RPAREN] = ACTIONS(8261), + [anon_sym_LPAREN2] = ACTIONS(8261), + [anon_sym_SEMI] = ACTIONS(8261), + [anon_sym___extension__] = ACTIONS(8261), + [anon_sym_extern] = ACTIONS(8261), + [anon_sym___attribute__] = ACTIONS(8261), + [anon_sym___attribute] = ACTIONS(8263), + [anon_sym_noreturn] = ACTIONS(8261), + [anon_sym_LBRACK] = ACTIONS(8261), + [anon_sym___declspec] = ACTIONS(8261), + [anon_sym_static] = ACTIONS(8261), + [anon_sym_auto] = ACTIONS(8261), + [anon_sym_register] = ACTIONS(8261), + [anon_sym_inline] = ACTIONS(8261), + [anon_sym___inline] = ACTIONS(8263), + [anon_sym___inline__] = ACTIONS(8261), + [anon_sym___forceinline] = ACTIONS(8261), + [anon_sym_thread_local] = ACTIONS(8261), + [anon_sym___thread] = ACTIONS(8261), + [anon_sym_CG_EXTERN] = ACTIONS(8261), + [anon_sym_CG_INLINE] = ACTIONS(8261), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8261), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8261), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8261), + [anon_sym_IBOutlet] = ACTIONS(8261), + [anon_sym_IBInspectable] = ACTIONS(8261), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8261), + [anon_sym_NS_INLINE] = ACTIONS(8261), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8261), + [anon_sym_OBJC_EXPORT] = ACTIONS(8261), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8261), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8261), + [anon_sym_const] = ACTIONS(8263), + [anon_sym_constexpr] = ACTIONS(8261), + [anon_sym_volatile] = ACTIONS(8261), + [anon_sym_restrict] = ACTIONS(8261), + [anon_sym___restrict__] = ACTIONS(8261), + [anon_sym__Atomic] = ACTIONS(8261), + [anon_sym__Noreturn] = ACTIONS(8261), + [anon_sym__Nonnull] = ACTIONS(8261), + [anon_sym_nullable] = ACTIONS(8261), + [anon_sym__Complex] = ACTIONS(8261), + [anon_sym__Nullable] = ACTIONS(8263), + [anon_sym__Nullable_result] = ACTIONS(8261), + [anon_sym__Null_unspecified] = ACTIONS(8261), + [anon_sym___autoreleasing] = ACTIONS(8261), + [anon_sym___block] = ACTIONS(8261), + [anon_sym___bridge] = ACTIONS(8263), + [anon_sym___bridge_retained] = ACTIONS(8261), + [anon_sym___bridge_transfer] = ACTIONS(8261), + [anon_sym___complex] = ACTIONS(8261), + [anon_sym___const] = ACTIONS(8261), + [anon_sym___imag] = ACTIONS(8261), + [anon_sym___kindof] = ACTIONS(8261), + [anon_sym___nonnull] = ACTIONS(8261), + [anon_sym___nullable] = ACTIONS(8261), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8261), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8261), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8261), + [anon_sym___real] = ACTIONS(8261), + [anon_sym___strong] = ACTIONS(8261), + [anon_sym___unsafe_unretained] = ACTIONS(8261), + [anon_sym___unused] = ACTIONS(8261), + [anon_sym___weak] = ACTIONS(8261), + [anon_sym_alignas] = ACTIONS(8261), + [anon_sym__Alignas] = ACTIONS(8261), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8261), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8261), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8261), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8261), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8261), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8261), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8261), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8261), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8261), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8261), + [anon_sym_NS_AVAILABLE] = ACTIONS(8263), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8261), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8261), + [anon_sym_API_AVAILABLE] = ACTIONS(8261), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8261), + [anon_sym_API_DEPRECATED] = ACTIONS(8261), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8261), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8261), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8261), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8261), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8261), + [anon_sym___deprecated_msg] = ACTIONS(8261), + [anon_sym___deprecated_enum_msg] = ACTIONS(8261), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8261), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8261), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8261), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8261), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8261), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8261), + }, + [3287] = { + [sym_parameter_list] = STATE(3248), + [anon_sym_COMMA] = ACTIONS(8265), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(8265), + [anon_sym___extension__] = ACTIONS(8265), + [anon_sym_extern] = ACTIONS(8265), + [anon_sym___attribute__] = ACTIONS(8265), + [anon_sym___attribute] = ACTIONS(8267), + [anon_sym_noreturn] = ACTIONS(8265), + [anon_sym_LBRACK] = ACTIONS(8203), + [anon_sym___declspec] = ACTIONS(8265), + [anon_sym_static] = ACTIONS(8265), + [anon_sym_auto] = ACTIONS(8265), + [anon_sym_register] = ACTIONS(8265), + [anon_sym_inline] = ACTIONS(8265), + [anon_sym___inline] = ACTIONS(8267), + [anon_sym___inline__] = ACTIONS(8265), + [anon_sym___forceinline] = ACTIONS(8265), + [anon_sym_thread_local] = ACTIONS(8265), + [anon_sym___thread] = ACTIONS(8265), + [anon_sym_CG_EXTERN] = ACTIONS(8265), + [anon_sym_CG_INLINE] = ACTIONS(8265), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8265), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8265), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8265), + [anon_sym_IBOutlet] = ACTIONS(8265), + [anon_sym_IBInspectable] = ACTIONS(8265), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8265), + [anon_sym_NS_INLINE] = ACTIONS(8265), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8265), + [anon_sym_OBJC_EXPORT] = ACTIONS(8265), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8265), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8265), + [anon_sym_const] = ACTIONS(8267), + [anon_sym_constexpr] = ACTIONS(8265), + [anon_sym_volatile] = ACTIONS(8265), + [anon_sym_restrict] = ACTIONS(8265), + [anon_sym___restrict__] = ACTIONS(8265), + [anon_sym__Atomic] = ACTIONS(8265), + [anon_sym__Noreturn] = ACTIONS(8265), + [anon_sym__Nonnull] = ACTIONS(8265), + [anon_sym_nullable] = ACTIONS(8265), + [anon_sym__Complex] = ACTIONS(8265), + [anon_sym__Nullable] = ACTIONS(8267), + [anon_sym__Nullable_result] = ACTIONS(8265), + [anon_sym__Null_unspecified] = ACTIONS(8265), + [anon_sym___autoreleasing] = ACTIONS(8265), + [anon_sym___block] = ACTIONS(8265), + [anon_sym___bridge] = ACTIONS(8267), + [anon_sym___bridge_retained] = ACTIONS(8265), + [anon_sym___bridge_transfer] = ACTIONS(8265), + [anon_sym___complex] = ACTIONS(8265), + [anon_sym___const] = ACTIONS(8265), + [anon_sym___imag] = ACTIONS(8265), + [anon_sym___kindof] = ACTIONS(8265), + [anon_sym___nonnull] = ACTIONS(8265), + [anon_sym___nullable] = ACTIONS(8265), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8265), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8265), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8265), + [anon_sym___real] = ACTIONS(8265), + [anon_sym___strong] = ACTIONS(8265), + [anon_sym___unsafe_unretained] = ACTIONS(8265), + [anon_sym___unused] = ACTIONS(8265), + [anon_sym___weak] = ACTIONS(8265), + [anon_sym_alignas] = ACTIONS(8265), + [anon_sym__Alignas] = ACTIONS(8265), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8265), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8265), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8265), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8265), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8265), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8265), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8265), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8265), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8265), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8265), + [anon_sym_NS_AVAILABLE] = ACTIONS(8267), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8265), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8265), + [anon_sym_API_AVAILABLE] = ACTIONS(8265), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8265), + [anon_sym_API_DEPRECATED] = ACTIONS(8265), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8265), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8265), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8265), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8265), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8265), + [anon_sym___deprecated_msg] = ACTIONS(8265), + [anon_sym___deprecated_enum_msg] = ACTIONS(8265), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8265), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8265), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8265), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8265), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8265), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8265), + }, + [3288] = { + [sym_parameter_list] = STATE(3248), + [anon_sym_COMMA] = ACTIONS(8269), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(8269), + [anon_sym___extension__] = ACTIONS(8269), + [anon_sym_extern] = ACTIONS(8269), + [anon_sym___attribute__] = ACTIONS(8269), + [anon_sym___attribute] = ACTIONS(8271), + [anon_sym_noreturn] = ACTIONS(8269), + [anon_sym_LBRACK] = ACTIONS(8203), + [anon_sym___declspec] = ACTIONS(8269), + [anon_sym_static] = ACTIONS(8269), + [anon_sym_auto] = ACTIONS(8269), + [anon_sym_register] = ACTIONS(8269), + [anon_sym_inline] = ACTIONS(8269), + [anon_sym___inline] = ACTIONS(8271), + [anon_sym___inline__] = ACTIONS(8269), + [anon_sym___forceinline] = ACTIONS(8269), + [anon_sym_thread_local] = ACTIONS(8269), + [anon_sym___thread] = ACTIONS(8269), + [anon_sym_CG_EXTERN] = ACTIONS(8269), + [anon_sym_CG_INLINE] = ACTIONS(8269), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8269), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8269), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8269), + [anon_sym_IBOutlet] = ACTIONS(8269), + [anon_sym_IBInspectable] = ACTIONS(8269), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8269), + [anon_sym_NS_INLINE] = ACTIONS(8269), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8269), + [anon_sym_OBJC_EXPORT] = ACTIONS(8269), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8269), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8269), + [anon_sym_const] = ACTIONS(8271), + [anon_sym_constexpr] = ACTIONS(8269), + [anon_sym_volatile] = ACTIONS(8269), + [anon_sym_restrict] = ACTIONS(8269), + [anon_sym___restrict__] = ACTIONS(8269), + [anon_sym__Atomic] = ACTIONS(8269), + [anon_sym__Noreturn] = ACTIONS(8269), + [anon_sym__Nonnull] = ACTIONS(8269), + [anon_sym_nullable] = ACTIONS(8269), + [anon_sym__Complex] = ACTIONS(8269), + [anon_sym__Nullable] = ACTIONS(8271), + [anon_sym__Nullable_result] = ACTIONS(8269), + [anon_sym__Null_unspecified] = ACTIONS(8269), + [anon_sym___autoreleasing] = ACTIONS(8269), + [anon_sym___block] = ACTIONS(8269), + [anon_sym___bridge] = ACTIONS(8271), + [anon_sym___bridge_retained] = ACTIONS(8269), + [anon_sym___bridge_transfer] = ACTIONS(8269), + [anon_sym___complex] = ACTIONS(8269), + [anon_sym___const] = ACTIONS(8269), + [anon_sym___imag] = ACTIONS(8269), + [anon_sym___kindof] = ACTIONS(8269), + [anon_sym___nonnull] = ACTIONS(8269), + [anon_sym___nullable] = ACTIONS(8269), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8269), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8269), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8269), + [anon_sym___real] = ACTIONS(8269), + [anon_sym___strong] = ACTIONS(8269), + [anon_sym___unsafe_unretained] = ACTIONS(8269), + [anon_sym___unused] = ACTIONS(8269), + [anon_sym___weak] = ACTIONS(8269), + [anon_sym_alignas] = ACTIONS(8269), + [anon_sym__Alignas] = ACTIONS(8269), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8269), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8269), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8269), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8269), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8269), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8269), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8269), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8269), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8269), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8269), + [anon_sym_NS_AVAILABLE] = ACTIONS(8271), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8269), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8269), + [anon_sym_API_AVAILABLE] = ACTIONS(8269), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8269), + [anon_sym_API_DEPRECATED] = ACTIONS(8269), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8269), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8269), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8269), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8269), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8269), + [anon_sym___deprecated_msg] = ACTIONS(8269), + [anon_sym___deprecated_enum_msg] = ACTIONS(8269), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8269), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8269), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8269), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8269), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8269), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8269), + }, + [3289] = { + [anon_sym_COMMA] = ACTIONS(8273), + [anon_sym_RPAREN] = ACTIONS(8273), + [anon_sym_LPAREN2] = ACTIONS(8273), + [anon_sym_SEMI] = ACTIONS(8273), + [anon_sym___extension__] = ACTIONS(8273), + [anon_sym_extern] = ACTIONS(8273), + [anon_sym___attribute__] = ACTIONS(8273), + [anon_sym___attribute] = ACTIONS(8275), + [anon_sym_noreturn] = ACTIONS(8273), + [anon_sym_LBRACK] = ACTIONS(8273), + [anon_sym___declspec] = ACTIONS(8273), + [anon_sym_static] = ACTIONS(8273), + [anon_sym_auto] = ACTIONS(8273), + [anon_sym_register] = ACTIONS(8273), + [anon_sym_inline] = ACTIONS(8273), + [anon_sym___inline] = ACTIONS(8275), + [anon_sym___inline__] = ACTIONS(8273), + [anon_sym___forceinline] = ACTIONS(8273), + [anon_sym_thread_local] = ACTIONS(8273), + [anon_sym___thread] = ACTIONS(8273), + [anon_sym_CG_EXTERN] = ACTIONS(8273), + [anon_sym_CG_INLINE] = ACTIONS(8273), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8273), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8273), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8273), + [anon_sym_IBOutlet] = ACTIONS(8273), + [anon_sym_IBInspectable] = ACTIONS(8273), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8273), + [anon_sym_NS_INLINE] = ACTIONS(8273), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8273), + [anon_sym_OBJC_EXPORT] = ACTIONS(8273), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8273), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8273), + [anon_sym_const] = ACTIONS(8275), + [anon_sym_constexpr] = ACTIONS(8273), + [anon_sym_volatile] = ACTIONS(8273), + [anon_sym_restrict] = ACTIONS(8273), + [anon_sym___restrict__] = ACTIONS(8273), + [anon_sym__Atomic] = ACTIONS(8273), + [anon_sym__Noreturn] = ACTIONS(8273), + [anon_sym__Nonnull] = ACTIONS(8273), + [anon_sym_nullable] = ACTIONS(8273), + [anon_sym__Complex] = ACTIONS(8273), + [anon_sym__Nullable] = ACTIONS(8275), + [anon_sym__Nullable_result] = ACTIONS(8273), + [anon_sym__Null_unspecified] = ACTIONS(8273), + [anon_sym___autoreleasing] = ACTIONS(8273), + [anon_sym___block] = ACTIONS(8273), + [anon_sym___bridge] = ACTIONS(8275), + [anon_sym___bridge_retained] = ACTIONS(8273), + [anon_sym___bridge_transfer] = ACTIONS(8273), + [anon_sym___complex] = ACTIONS(8273), + [anon_sym___const] = ACTIONS(8273), + [anon_sym___imag] = ACTIONS(8273), + [anon_sym___kindof] = ACTIONS(8273), + [anon_sym___nonnull] = ACTIONS(8273), + [anon_sym___nullable] = ACTIONS(8273), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8273), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8273), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8273), + [anon_sym___real] = ACTIONS(8273), + [anon_sym___strong] = ACTIONS(8273), + [anon_sym___unsafe_unretained] = ACTIONS(8273), + [anon_sym___unused] = ACTIONS(8273), + [anon_sym___weak] = ACTIONS(8273), + [anon_sym_alignas] = ACTIONS(8273), + [anon_sym__Alignas] = ACTIONS(8273), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8273), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8273), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8273), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8273), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8273), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8273), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8273), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8273), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8273), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8273), + [anon_sym_NS_AVAILABLE] = ACTIONS(8275), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8273), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8273), + [anon_sym_API_AVAILABLE] = ACTIONS(8273), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8273), + [anon_sym_API_DEPRECATED] = ACTIONS(8273), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8273), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8273), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8273), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8273), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8273), + [anon_sym___deprecated_msg] = ACTIONS(8273), + [anon_sym___deprecated_enum_msg] = ACTIONS(8273), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8273), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8273), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8273), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8273), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8273), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8273), + }, + [3290] = { + [sym_parameter_list] = STATE(3248), + [anon_sym_COMMA] = ACTIONS(8277), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(8277), + [anon_sym___extension__] = ACTIONS(8277), + [anon_sym_extern] = ACTIONS(8277), + [anon_sym___attribute__] = ACTIONS(8277), + [anon_sym___attribute] = ACTIONS(8279), + [anon_sym_noreturn] = ACTIONS(8277), + [anon_sym_LBRACK] = ACTIONS(8203), + [anon_sym___declspec] = ACTIONS(8277), + [anon_sym_static] = ACTIONS(8277), + [anon_sym_auto] = ACTIONS(8277), + [anon_sym_register] = ACTIONS(8277), + [anon_sym_inline] = ACTIONS(8277), + [anon_sym___inline] = ACTIONS(8279), + [anon_sym___inline__] = ACTIONS(8277), + [anon_sym___forceinline] = ACTIONS(8277), + [anon_sym_thread_local] = ACTIONS(8277), + [anon_sym___thread] = ACTIONS(8277), + [anon_sym_CG_EXTERN] = ACTIONS(8277), + [anon_sym_CG_INLINE] = ACTIONS(8277), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8277), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8277), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8277), + [anon_sym_IBOutlet] = ACTIONS(8277), + [anon_sym_IBInspectable] = ACTIONS(8277), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8277), + [anon_sym_NS_INLINE] = ACTIONS(8277), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8277), + [anon_sym_OBJC_EXPORT] = ACTIONS(8277), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8277), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8277), + [anon_sym_const] = ACTIONS(8279), + [anon_sym_constexpr] = ACTIONS(8277), + [anon_sym_volatile] = ACTIONS(8277), + [anon_sym_restrict] = ACTIONS(8277), + [anon_sym___restrict__] = ACTIONS(8277), + [anon_sym__Atomic] = ACTIONS(8277), + [anon_sym__Noreturn] = ACTIONS(8277), + [anon_sym__Nonnull] = ACTIONS(8277), + [anon_sym_nullable] = ACTIONS(8277), + [anon_sym__Complex] = ACTIONS(8277), + [anon_sym__Nullable] = ACTIONS(8279), + [anon_sym__Nullable_result] = ACTIONS(8277), + [anon_sym__Null_unspecified] = ACTIONS(8277), + [anon_sym___autoreleasing] = ACTIONS(8277), + [anon_sym___block] = ACTIONS(8277), + [anon_sym___bridge] = ACTIONS(8279), + [anon_sym___bridge_retained] = ACTIONS(8277), + [anon_sym___bridge_transfer] = ACTIONS(8277), + [anon_sym___complex] = ACTIONS(8277), + [anon_sym___const] = ACTIONS(8277), + [anon_sym___imag] = ACTIONS(8277), + [anon_sym___kindof] = ACTIONS(8277), + [anon_sym___nonnull] = ACTIONS(8277), + [anon_sym___nullable] = ACTIONS(8277), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8277), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8277), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8277), + [anon_sym___real] = ACTIONS(8277), + [anon_sym___strong] = ACTIONS(8277), + [anon_sym___unsafe_unretained] = ACTIONS(8277), + [anon_sym___unused] = ACTIONS(8277), + [anon_sym___weak] = ACTIONS(8277), + [anon_sym_alignas] = ACTIONS(8277), + [anon_sym__Alignas] = ACTIONS(8277), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8277), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8277), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8277), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8277), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8277), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8277), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8277), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8277), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8277), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8277), + [anon_sym_NS_AVAILABLE] = ACTIONS(8279), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8277), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8277), + [anon_sym_API_AVAILABLE] = ACTIONS(8277), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8277), + [anon_sym_API_DEPRECATED] = ACTIONS(8277), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8277), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8277), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8277), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8277), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8277), + [anon_sym___deprecated_msg] = ACTIONS(8277), + [anon_sym___deprecated_enum_msg] = ACTIONS(8277), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8277), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8277), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8277), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8277), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8277), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8277), + }, + [3291] = { + [aux_sym_struct_declaration_repeat2] = STATE(3291), + [anon_sym_COMMA] = ACTIONS(8281), + [anon_sym_SEMI] = ACTIONS(8284), + [anon_sym___extension__] = ACTIONS(8284), + [anon_sym_extern] = ACTIONS(8284), + [anon_sym___attribute__] = ACTIONS(8284), + [anon_sym___attribute] = ACTIONS(8286), + [anon_sym_noreturn] = ACTIONS(8284), + [anon_sym_LBRACK] = ACTIONS(8284), + [anon_sym___declspec] = ACTIONS(8284), + [anon_sym_static] = ACTIONS(8284), + [anon_sym_auto] = ACTIONS(8284), + [anon_sym_register] = ACTIONS(8284), + [anon_sym_inline] = ACTIONS(8284), + [anon_sym___inline] = ACTIONS(8286), + [anon_sym___inline__] = ACTIONS(8284), + [anon_sym___forceinline] = ACTIONS(8284), + [anon_sym_thread_local] = ACTIONS(8284), + [anon_sym___thread] = ACTIONS(8284), + [anon_sym_CG_EXTERN] = ACTIONS(8284), + [anon_sym_CG_INLINE] = ACTIONS(8284), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8284), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8284), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8284), + [anon_sym_IBOutlet] = ACTIONS(8284), + [anon_sym_IBInspectable] = ACTIONS(8284), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8284), + [anon_sym_NS_INLINE] = ACTIONS(8284), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8284), + [anon_sym_OBJC_EXPORT] = ACTIONS(8284), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8284), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8284), + [anon_sym_const] = ACTIONS(8286), + [anon_sym_constexpr] = ACTIONS(8284), + [anon_sym_volatile] = ACTIONS(8284), + [anon_sym_restrict] = ACTIONS(8284), + [anon_sym___restrict__] = ACTIONS(8284), + [anon_sym__Atomic] = ACTIONS(8284), + [anon_sym__Noreturn] = ACTIONS(8284), + [anon_sym__Nonnull] = ACTIONS(8284), + [anon_sym_nullable] = ACTIONS(8284), + [anon_sym__Complex] = ACTIONS(8284), + [anon_sym__Nullable] = ACTIONS(8286), + [anon_sym__Nullable_result] = ACTIONS(8284), + [anon_sym__Null_unspecified] = ACTIONS(8284), + [anon_sym___autoreleasing] = ACTIONS(8284), + [anon_sym___block] = ACTIONS(8284), + [anon_sym___bridge] = ACTIONS(8286), + [anon_sym___bridge_retained] = ACTIONS(8284), + [anon_sym___bridge_transfer] = ACTIONS(8284), + [anon_sym___complex] = ACTIONS(8284), + [anon_sym___const] = ACTIONS(8284), + [anon_sym___imag] = ACTIONS(8284), + [anon_sym___kindof] = ACTIONS(8284), + [anon_sym___nonnull] = ACTIONS(8284), + [anon_sym___nullable] = ACTIONS(8284), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8284), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8284), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8284), + [anon_sym___real] = ACTIONS(8284), + [anon_sym___strong] = ACTIONS(8284), + [anon_sym___unsafe_unretained] = ACTIONS(8284), + [anon_sym___unused] = ACTIONS(8284), + [anon_sym___weak] = ACTIONS(8284), + [anon_sym_alignas] = ACTIONS(8284), + [anon_sym__Alignas] = ACTIONS(8284), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8284), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8284), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8284), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8284), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8284), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8284), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8284), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8284), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8284), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8284), + [anon_sym_NS_AVAILABLE] = ACTIONS(8286), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8284), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8284), + [anon_sym_API_AVAILABLE] = ACTIONS(8284), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8284), + [anon_sym_API_DEPRECATED] = ACTIONS(8284), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8284), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8284), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8284), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8284), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8284), + [anon_sym___deprecated_msg] = ACTIONS(8284), + [anon_sym___deprecated_enum_msg] = ACTIONS(8284), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8284), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8284), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8284), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8284), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8284), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8284), + }, + [3292] = { + [aux_sym_declaration_repeat1] = STATE(3292), + [anon_sym_COMMA] = ACTIONS(8288), + [anon_sym_SEMI] = ACTIONS(8291), + [anon_sym___extension__] = ACTIONS(8291), + [anon_sym_extern] = ACTIONS(8291), + [anon_sym___attribute__] = ACTIONS(8291), + [anon_sym___attribute] = ACTIONS(8293), + [anon_sym_noreturn] = ACTIONS(8291), + [anon_sym_LBRACK] = ACTIONS(8291), + [anon_sym___declspec] = ACTIONS(8291), + [anon_sym_static] = ACTIONS(8291), + [anon_sym_auto] = ACTIONS(8291), + [anon_sym_register] = ACTIONS(8291), + [anon_sym_inline] = ACTIONS(8291), + [anon_sym___inline] = ACTIONS(8293), + [anon_sym___inline__] = ACTIONS(8291), + [anon_sym___forceinline] = ACTIONS(8291), + [anon_sym_thread_local] = ACTIONS(8291), + [anon_sym___thread] = ACTIONS(8291), + [anon_sym_CG_EXTERN] = ACTIONS(8291), + [anon_sym_CG_INLINE] = ACTIONS(8291), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8291), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8291), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8291), + [anon_sym_IBOutlet] = ACTIONS(8291), + [anon_sym_IBInspectable] = ACTIONS(8291), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8291), + [anon_sym_NS_INLINE] = ACTIONS(8291), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8291), + [anon_sym_OBJC_EXPORT] = ACTIONS(8291), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8291), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8291), + [anon_sym_const] = ACTIONS(8293), + [anon_sym_constexpr] = ACTIONS(8291), + [anon_sym_volatile] = ACTIONS(8291), + [anon_sym_restrict] = ACTIONS(8291), + [anon_sym___restrict__] = ACTIONS(8291), + [anon_sym__Atomic] = ACTIONS(8291), + [anon_sym__Noreturn] = ACTIONS(8291), + [anon_sym__Nonnull] = ACTIONS(8291), + [anon_sym_nullable] = ACTIONS(8291), + [anon_sym__Complex] = ACTIONS(8291), + [anon_sym__Nullable] = ACTIONS(8293), + [anon_sym__Nullable_result] = ACTIONS(8291), + [anon_sym__Null_unspecified] = ACTIONS(8291), + [anon_sym___autoreleasing] = ACTIONS(8291), + [anon_sym___block] = ACTIONS(8291), + [anon_sym___bridge] = ACTIONS(8293), + [anon_sym___bridge_retained] = ACTIONS(8291), + [anon_sym___bridge_transfer] = ACTIONS(8291), + [anon_sym___complex] = ACTIONS(8291), + [anon_sym___const] = ACTIONS(8291), + [anon_sym___imag] = ACTIONS(8291), + [anon_sym___kindof] = ACTIONS(8291), + [anon_sym___nonnull] = ACTIONS(8291), + [anon_sym___nullable] = ACTIONS(8291), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8291), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8291), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8291), + [anon_sym___real] = ACTIONS(8291), + [anon_sym___strong] = ACTIONS(8291), + [anon_sym___unsafe_unretained] = ACTIONS(8291), + [anon_sym___unused] = ACTIONS(8291), + [anon_sym___weak] = ACTIONS(8291), + [anon_sym_alignas] = ACTIONS(8291), + [anon_sym__Alignas] = ACTIONS(8291), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8291), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8291), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8291), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8291), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8291), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8291), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8291), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8291), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8291), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8291), + [anon_sym_NS_AVAILABLE] = ACTIONS(8293), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8291), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8291), + [anon_sym_API_AVAILABLE] = ACTIONS(8291), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8291), + [anon_sym_API_DEPRECATED] = ACTIONS(8291), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8291), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8291), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8291), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8291), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8291), + [anon_sym___deprecated_msg] = ACTIONS(8291), + [anon_sym___deprecated_enum_msg] = ACTIONS(8291), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8291), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8291), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8291), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8291), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8291), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8291), + }, + [3293] = { + [sym_attribute_specifier] = STATE(3228), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_parameterized_arguments] = STATE(5547), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(5547), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8070), + [anon_sym_COMMA] = ACTIONS(8207), + [anon_sym_RPAREN] = ACTIONS(8207), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_LBRACK] = ACTIONS(8207), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3294] = { + [sym_attribute_specifier] = STATE(3228), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_parameterized_arguments] = STATE(5790), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(5790), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8070), + [anon_sym_COMMA] = ACTIONS(8207), + [anon_sym_RPAREN] = ACTIONS(8207), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_LBRACK] = ACTIONS(8207), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3295] = { + [aux_sym_c_method_parameter_repeat1] = STATE(3297), + [anon_sym_COMMA] = ACTIONS(6895), + [anon_sym_SEMI] = ACTIONS(6895), + [anon_sym___extension__] = ACTIONS(6895), + [anon_sym_extern] = ACTIONS(6895), + [anon_sym___attribute__] = ACTIONS(6895), + [anon_sym___attribute] = ACTIONS(6893), + [anon_sym_noreturn] = ACTIONS(6895), + [anon_sym_LBRACK] = ACTIONS(6895), + [anon_sym___declspec] = ACTIONS(6895), + [anon_sym_static] = ACTIONS(6895), + [anon_sym_auto] = ACTIONS(6895), + [anon_sym_register] = ACTIONS(6895), + [anon_sym_inline] = ACTIONS(6895), + [anon_sym___inline] = ACTIONS(6893), + [anon_sym___inline__] = ACTIONS(6895), + [anon_sym___forceinline] = ACTIONS(6895), + [anon_sym_thread_local] = ACTIONS(6895), + [anon_sym___thread] = ACTIONS(6895), + [anon_sym_CG_EXTERN] = ACTIONS(6895), + [anon_sym_CG_INLINE] = ACTIONS(6895), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6895), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6895), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6895), + [anon_sym_IBOutlet] = ACTIONS(6895), + [anon_sym_IBInspectable] = ACTIONS(6895), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6895), + [anon_sym_NS_INLINE] = ACTIONS(6895), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6895), + [anon_sym_OBJC_EXPORT] = ACTIONS(6895), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6895), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6895), + [anon_sym_const] = ACTIONS(6893), + [anon_sym_constexpr] = ACTIONS(6895), + [anon_sym_volatile] = ACTIONS(6895), + [anon_sym_restrict] = ACTIONS(6895), + [anon_sym___restrict__] = ACTIONS(6895), + [anon_sym__Atomic] = ACTIONS(6895), + [anon_sym__Noreturn] = ACTIONS(6895), + [anon_sym__Nonnull] = ACTIONS(6895), + [anon_sym_nullable] = ACTIONS(6895), + [anon_sym__Complex] = ACTIONS(6895), + [anon_sym__Nullable] = ACTIONS(6893), + [anon_sym__Nullable_result] = ACTIONS(6895), + [anon_sym__Null_unspecified] = ACTIONS(6895), + [anon_sym___autoreleasing] = ACTIONS(6895), + [anon_sym___block] = ACTIONS(6895), + [anon_sym___bridge] = ACTIONS(6893), + [anon_sym___bridge_retained] = ACTIONS(6895), + [anon_sym___bridge_transfer] = ACTIONS(6895), + [anon_sym___complex] = ACTIONS(6895), + [anon_sym___const] = ACTIONS(6895), + [anon_sym___imag] = ACTIONS(6895), + [anon_sym___kindof] = ACTIONS(6895), + [anon_sym___nonnull] = ACTIONS(6895), + [anon_sym___nullable] = ACTIONS(6895), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6895), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6895), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6895), + [anon_sym___real] = ACTIONS(6895), + [anon_sym___strong] = ACTIONS(6895), + [anon_sym___unsafe_unretained] = ACTIONS(6895), + [anon_sym___unused] = ACTIONS(6895), + [anon_sym___weak] = ACTIONS(6895), + [anon_sym_alignas] = ACTIONS(6895), + [anon_sym__Alignas] = ACTIONS(6895), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6895), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6895), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6895), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6895), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6895), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6895), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6895), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6895), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6895), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6895), + [anon_sym_NS_AVAILABLE] = ACTIONS(6893), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6895), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6895), + [anon_sym_API_AVAILABLE] = ACTIONS(6895), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6895), + [anon_sym_API_DEPRECATED] = ACTIONS(6895), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6895), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6895), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6895), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6895), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6895), + [anon_sym___deprecated_msg] = ACTIONS(6895), + [anon_sym___deprecated_enum_msg] = ACTIONS(6895), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6895), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6895), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6895), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6895), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6895), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6895), + }, + [3296] = { + [sym_preproc_if] = STATE(4074), + [sym_preproc_ifdef] = STATE(4074), + [sym_attribute_specifier] = STATE(3350), + [sym_attribute_declaration] = STATE(3350), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_instance_variable] = STATE(3301), + [sym_visibility_specification] = STATE(4074), + [sym_struct_declaration] = STATE(4074), + [sym_atomic_declaration] = STATE(4074), + [sym_specifier_qualifier] = STATE(3351), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_instance_variables_repeat1] = STATE(3301), + [aux_sym_struct_declaration_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(8295), + [aux_sym_preproc_if_token1] = ACTIONS(8297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8299), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8299), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_LBRACK] = ACTIONS(8301), + [anon_sym_RBRACE] = ACTIONS(8303), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8305), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_ATprivate] = ACTIONS(8309), + [anon_sym_ATprotected] = ACTIONS(8309), + [anon_sym_ATpackage] = ACTIONS(8309), + [anon_sym_ATpublic] = ACTIONS(8309), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3297] = { + [aux_sym_c_method_parameter_repeat1] = STATE(3297), + [anon_sym_COMMA] = ACTIONS(8311), + [anon_sym_SEMI] = ACTIONS(6902), + [anon_sym___extension__] = ACTIONS(6902), + [anon_sym_extern] = ACTIONS(6902), + [anon_sym___attribute__] = ACTIONS(6902), + [anon_sym___attribute] = ACTIONS(6897), + [anon_sym_noreturn] = ACTIONS(6902), + [anon_sym_LBRACK] = ACTIONS(6902), + [anon_sym___declspec] = ACTIONS(6902), + [anon_sym_static] = ACTIONS(6902), + [anon_sym_auto] = ACTIONS(6902), + [anon_sym_register] = ACTIONS(6902), + [anon_sym_inline] = ACTIONS(6902), + [anon_sym___inline] = ACTIONS(6897), + [anon_sym___inline__] = ACTIONS(6902), + [anon_sym___forceinline] = ACTIONS(6902), + [anon_sym_thread_local] = ACTIONS(6902), + [anon_sym___thread] = ACTIONS(6902), + [anon_sym_CG_EXTERN] = ACTIONS(6902), + [anon_sym_CG_INLINE] = ACTIONS(6902), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6902), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6902), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6902), + [anon_sym_IBOutlet] = ACTIONS(6902), + [anon_sym_IBInspectable] = ACTIONS(6902), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6902), + [anon_sym_NS_INLINE] = ACTIONS(6902), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6902), + [anon_sym_OBJC_EXPORT] = ACTIONS(6902), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6902), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6902), + [anon_sym_const] = ACTIONS(6897), + [anon_sym_constexpr] = ACTIONS(6902), + [anon_sym_volatile] = ACTIONS(6902), + [anon_sym_restrict] = ACTIONS(6902), + [anon_sym___restrict__] = ACTIONS(6902), + [anon_sym__Atomic] = ACTIONS(6902), + [anon_sym__Noreturn] = ACTIONS(6902), + [anon_sym__Nonnull] = ACTIONS(6902), + [anon_sym_nullable] = ACTIONS(6902), + [anon_sym__Complex] = ACTIONS(6902), + [anon_sym__Nullable] = ACTIONS(6897), + [anon_sym__Nullable_result] = ACTIONS(6902), + [anon_sym__Null_unspecified] = ACTIONS(6902), + [anon_sym___autoreleasing] = ACTIONS(6902), + [anon_sym___block] = ACTIONS(6902), + [anon_sym___bridge] = ACTIONS(6897), + [anon_sym___bridge_retained] = ACTIONS(6902), + [anon_sym___bridge_transfer] = ACTIONS(6902), + [anon_sym___complex] = ACTIONS(6902), + [anon_sym___const] = ACTIONS(6902), + [anon_sym___imag] = ACTIONS(6902), + [anon_sym___kindof] = ACTIONS(6902), + [anon_sym___nonnull] = ACTIONS(6902), + [anon_sym___nullable] = ACTIONS(6902), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6902), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6902), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6902), + [anon_sym___real] = ACTIONS(6902), + [anon_sym___strong] = ACTIONS(6902), + [anon_sym___unsafe_unretained] = ACTIONS(6902), + [anon_sym___unused] = ACTIONS(6902), + [anon_sym___weak] = ACTIONS(6902), + [anon_sym_alignas] = ACTIONS(6902), + [anon_sym__Alignas] = ACTIONS(6902), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6902), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6902), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6902), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6902), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6902), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6902), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6902), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6902), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6902), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6902), + [anon_sym_NS_AVAILABLE] = ACTIONS(6897), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6902), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6902), + [anon_sym_API_AVAILABLE] = ACTIONS(6902), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6902), + [anon_sym_API_DEPRECATED] = ACTIONS(6902), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6902), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6902), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6902), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6902), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6902), + [anon_sym___deprecated_msg] = ACTIONS(6902), + [anon_sym___deprecated_enum_msg] = ACTIONS(6902), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6902), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6902), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6902), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6902), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6902), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6902), + }, + [3298] = { + [sym_preproc_if] = STATE(4074), + [sym_preproc_ifdef] = STATE(4074), + [sym_attribute_specifier] = STATE(3350), + [sym_attribute_declaration] = STATE(3350), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_instance_variable] = STATE(3298), + [sym_visibility_specification] = STATE(4074), + [sym_struct_declaration] = STATE(4074), + [sym_atomic_declaration] = STATE(4074), + [sym_specifier_qualifier] = STATE(3351), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_instance_variables_repeat1] = STATE(3298), + [aux_sym_struct_declaration_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(8314), + [aux_sym_preproc_if_token1] = ACTIONS(8317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8320), + [anon_sym___extension__] = ACTIONS(8323), + [anon_sym___attribute__] = ACTIONS(8326), + [anon_sym___attribute] = ACTIONS(8326), + [anon_sym_noreturn] = ACTIONS(8323), + [anon_sym_LBRACK] = ACTIONS(8329), + [anon_sym_RBRACE] = ACTIONS(8332), + [anon_sym_signed] = ACTIONS(8334), + [anon_sym_unsigned] = ACTIONS(8334), + [anon_sym_long] = ACTIONS(8334), + [anon_sym_short] = ACTIONS(8334), + [anon_sym_const] = ACTIONS(8323), + [anon_sym_constexpr] = ACTIONS(8323), + [anon_sym_volatile] = ACTIONS(8323), + [anon_sym_restrict] = ACTIONS(8323), + [anon_sym___restrict__] = ACTIONS(8323), + [anon_sym__Atomic] = ACTIONS(8337), + [anon_sym__Noreturn] = ACTIONS(8323), + [anon_sym__Nonnull] = ACTIONS(8323), + [anon_sym_nullable] = ACTIONS(8323), + [anon_sym__Complex] = ACTIONS(8323), + [anon_sym__Nullable] = ACTIONS(8323), + [anon_sym__Nullable_result] = ACTIONS(8323), + [anon_sym__Null_unspecified] = ACTIONS(8323), + [anon_sym___autoreleasing] = ACTIONS(8323), + [anon_sym___block] = ACTIONS(8323), + [anon_sym___bridge] = ACTIONS(8323), + [anon_sym___bridge_retained] = ACTIONS(8323), + [anon_sym___bridge_transfer] = ACTIONS(8323), + [anon_sym___complex] = ACTIONS(8323), + [anon_sym___const] = ACTIONS(8323), + [anon_sym___imag] = ACTIONS(8323), + [anon_sym___kindof] = ACTIONS(8323), + [anon_sym___nonnull] = ACTIONS(8323), + [anon_sym___nullable] = ACTIONS(8323), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8323), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8323), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8323), + [anon_sym___real] = ACTIONS(8323), + [anon_sym___strong] = ACTIONS(8323), + [anon_sym___unsafe_unretained] = ACTIONS(8323), + [anon_sym___unused] = ACTIONS(8323), + [anon_sym___weak] = ACTIONS(8323), + [anon_sym_alignas] = ACTIONS(8340), + [anon_sym__Alignas] = ACTIONS(8340), + [sym_primitive_type] = ACTIONS(8343), + [anon_sym_enum] = ACTIONS(8346), + [anon_sym_struct] = ACTIONS(8349), + [anon_sym_union] = ACTIONS(8352), + [anon_sym_in] = ACTIONS(8355), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8358), + [anon_sym___typeof] = ACTIONS(8358), + [anon_sym_typeof] = ACTIONS(8358), + [anon_sym_ATprivate] = ACTIONS(8361), + [anon_sym_ATprotected] = ACTIONS(8361), + [anon_sym_ATpackage] = ACTIONS(8361), + [anon_sym_ATpublic] = ACTIONS(8361), + [anon_sym_BOOL] = ACTIONS(8364), + [anon_sym_IMP] = ACTIONS(8364), + [anon_sym_SEL] = ACTIONS(8364), + [anon_sym_Class] = ACTIONS(8364), + [anon_sym_id] = ACTIONS(8364), + [anon_sym_out] = ACTIONS(8355), + [anon_sym_inout] = ACTIONS(8355), + [anon_sym_bycopy] = ACTIONS(8355), + [anon_sym_byref] = ACTIONS(8355), + [anon_sym_oneway] = ACTIONS(8355), + }, + [3299] = { + [sym_expression] = STATE(4433), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_initializer_list] = STATE(5372), + [sym_initializer_pair] = STATE(5372), + [sym_subscript_designator] = STATE(4981), + [sym_subscript_range_designator] = STATE(4981), + [sym_field_designator] = STATE(4981), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_initializer_pair_repeat1] = STATE(4981), + [sym_identifier] = ACTIONS(8367), + [anon_sym_COMMA] = ACTIONS(8369), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(8371), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_RBRACE] = ACTIONS(8373), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [anon_sym_DOT] = ACTIONS(8375), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3300] = { + [aux_sym_c_method_parameter_repeat1] = STATE(3295), + [anon_sym_COMMA] = ACTIONS(6744), + [anon_sym_SEMI] = ACTIONS(6744), + [anon_sym___extension__] = ACTIONS(6744), + [anon_sym_extern] = ACTIONS(6744), + [anon_sym___attribute__] = ACTIONS(6744), + [anon_sym___attribute] = ACTIONS(6742), + [anon_sym_noreturn] = ACTIONS(6744), + [anon_sym_LBRACK] = ACTIONS(6744), + [anon_sym___declspec] = ACTIONS(6744), + [anon_sym_static] = ACTIONS(6744), + [anon_sym_auto] = ACTIONS(6744), + [anon_sym_register] = ACTIONS(6744), + [anon_sym_inline] = ACTIONS(6744), + [anon_sym___inline] = ACTIONS(6742), + [anon_sym___inline__] = ACTIONS(6744), + [anon_sym___forceinline] = ACTIONS(6744), + [anon_sym_thread_local] = ACTIONS(6744), + [anon_sym___thread] = ACTIONS(6744), + [anon_sym_CG_EXTERN] = ACTIONS(6744), + [anon_sym_CG_INLINE] = ACTIONS(6744), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6744), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6744), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6744), + [anon_sym_IBOutlet] = ACTIONS(6744), + [anon_sym_IBInspectable] = ACTIONS(6744), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6744), + [anon_sym_NS_INLINE] = ACTIONS(6744), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6744), + [anon_sym_OBJC_EXPORT] = ACTIONS(6744), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6744), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6744), + [anon_sym_const] = ACTIONS(6742), + [anon_sym_constexpr] = ACTIONS(6744), + [anon_sym_volatile] = ACTIONS(6744), + [anon_sym_restrict] = ACTIONS(6744), + [anon_sym___restrict__] = ACTIONS(6744), + [anon_sym__Atomic] = ACTIONS(6744), + [anon_sym__Noreturn] = ACTIONS(6744), + [anon_sym__Nonnull] = ACTIONS(6744), + [anon_sym_nullable] = ACTIONS(6744), + [anon_sym__Complex] = ACTIONS(6744), + [anon_sym__Nullable] = ACTIONS(6742), + [anon_sym__Nullable_result] = ACTIONS(6744), + [anon_sym__Null_unspecified] = ACTIONS(6744), + [anon_sym___autoreleasing] = ACTIONS(6744), + [anon_sym___block] = ACTIONS(6744), + [anon_sym___bridge] = ACTIONS(6742), + [anon_sym___bridge_retained] = ACTIONS(6744), + [anon_sym___bridge_transfer] = ACTIONS(6744), + [anon_sym___complex] = ACTIONS(6744), + [anon_sym___const] = ACTIONS(6744), + [anon_sym___imag] = ACTIONS(6744), + [anon_sym___kindof] = ACTIONS(6744), + [anon_sym___nonnull] = ACTIONS(6744), + [anon_sym___nullable] = ACTIONS(6744), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6744), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6744), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6744), + [anon_sym___real] = ACTIONS(6744), + [anon_sym___strong] = ACTIONS(6744), + [anon_sym___unsafe_unretained] = ACTIONS(6744), + [anon_sym___unused] = ACTIONS(6744), + [anon_sym___weak] = ACTIONS(6744), + [anon_sym_alignas] = ACTIONS(6744), + [anon_sym__Alignas] = ACTIONS(6744), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6744), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6744), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6744), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6744), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6744), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6744), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6744), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6744), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6744), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6744), + [anon_sym_NS_AVAILABLE] = ACTIONS(6742), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6744), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6744), + [anon_sym_API_AVAILABLE] = ACTIONS(6744), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6744), + [anon_sym_API_DEPRECATED] = ACTIONS(6744), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6744), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6744), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6744), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6744), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6744), + [anon_sym___deprecated_msg] = ACTIONS(6744), + [anon_sym___deprecated_enum_msg] = ACTIONS(6744), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6744), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6744), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6744), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6744), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6744), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6744), + }, + [3301] = { + [sym_preproc_if] = STATE(4074), + [sym_preproc_ifdef] = STATE(4074), + [sym_attribute_specifier] = STATE(3350), + [sym_attribute_declaration] = STATE(3350), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_instance_variable] = STATE(3298), + [sym_visibility_specification] = STATE(4074), + [sym_struct_declaration] = STATE(4074), + [sym_atomic_declaration] = STATE(4074), + [sym_specifier_qualifier] = STATE(3351), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_instance_variables_repeat1] = STATE(3298), + [aux_sym_struct_declaration_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(8295), + [aux_sym_preproc_if_token1] = ACTIONS(8297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8299), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8299), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_LBRACK] = ACTIONS(8301), + [anon_sym_RBRACE] = ACTIONS(8377), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8305), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_ATprivate] = ACTIONS(8309), + [anon_sym_ATprotected] = ACTIONS(8309), + [anon_sym_ATpackage] = ACTIONS(8309), + [anon_sym_ATpublic] = ACTIONS(8309), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3302] = { + [sym_expression] = STATE(4442), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_initializer_list] = STATE(5650), + [sym_initializer_pair] = STATE(5650), + [sym_subscript_designator] = STATE(4981), + [sym_subscript_range_designator] = STATE(4981), + [sym_field_designator] = STATE(4981), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_initializer_pair_repeat1] = STATE(4981), + [sym_identifier] = ACTIONS(8367), + [anon_sym_COMMA] = ACTIONS(8379), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(8371), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_RBRACE] = ACTIONS(8381), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [anon_sym_DOT] = ACTIONS(8375), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3303] = { + [aux_sym_c_method_parameter_repeat1] = STATE(3297), + [anon_sym_COMMA] = ACTIONS(6895), + [anon_sym_SEMI] = ACTIONS(6895), + [anon_sym___extension__] = ACTIONS(6895), + [anon_sym_extern] = ACTIONS(6895), + [anon_sym___attribute__] = ACTIONS(6895), + [anon_sym___attribute] = ACTIONS(6893), + [anon_sym_noreturn] = ACTIONS(6895), + [anon_sym_LBRACK] = ACTIONS(6895), + [anon_sym___declspec] = ACTIONS(6895), + [anon_sym_static] = ACTIONS(6895), + [anon_sym_auto] = ACTIONS(6895), + [anon_sym_register] = ACTIONS(6895), + [anon_sym_inline] = ACTIONS(6895), + [anon_sym___inline] = ACTIONS(6893), + [anon_sym___inline__] = ACTIONS(6895), + [anon_sym___forceinline] = ACTIONS(6895), + [anon_sym_thread_local] = ACTIONS(6895), + [anon_sym___thread] = ACTIONS(6895), + [anon_sym_CG_EXTERN] = ACTIONS(6895), + [anon_sym_CG_INLINE] = ACTIONS(6895), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6895), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6895), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6895), + [anon_sym_IBOutlet] = ACTIONS(6895), + [anon_sym_IBInspectable] = ACTIONS(6895), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6895), + [anon_sym_NS_INLINE] = ACTIONS(6895), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6895), + [anon_sym_OBJC_EXPORT] = ACTIONS(6895), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6895), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6895), + [anon_sym_const] = ACTIONS(6893), + [anon_sym_constexpr] = ACTIONS(6895), + [anon_sym_volatile] = ACTIONS(6895), + [anon_sym_restrict] = ACTIONS(6895), + [anon_sym___restrict__] = ACTIONS(6895), + [anon_sym__Atomic] = ACTIONS(6895), + [anon_sym__Noreturn] = ACTIONS(6895), + [anon_sym__Nonnull] = ACTIONS(6895), + [anon_sym_nullable] = ACTIONS(6895), + [anon_sym__Complex] = ACTIONS(6895), + [anon_sym__Nullable] = ACTIONS(6893), + [anon_sym__Nullable_result] = ACTIONS(6895), + [anon_sym__Null_unspecified] = ACTIONS(6895), + [anon_sym___autoreleasing] = ACTIONS(6895), + [anon_sym___block] = ACTIONS(6895), + [anon_sym___bridge] = ACTIONS(6893), + [anon_sym___bridge_retained] = ACTIONS(6895), + [anon_sym___bridge_transfer] = ACTIONS(6895), + [anon_sym___complex] = ACTIONS(6895), + [anon_sym___const] = ACTIONS(6895), + [anon_sym___imag] = ACTIONS(6895), + [anon_sym___kindof] = ACTIONS(6895), + [anon_sym___nonnull] = ACTIONS(6895), + [anon_sym___nullable] = ACTIONS(6895), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6895), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6895), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6895), + [anon_sym___real] = ACTIONS(6895), + [anon_sym___strong] = ACTIONS(6895), + [anon_sym___unsafe_unretained] = ACTIONS(6895), + [anon_sym___unused] = ACTIONS(6895), + [anon_sym___weak] = ACTIONS(6895), + [anon_sym_alignas] = ACTIONS(6895), + [anon_sym__Alignas] = ACTIONS(6895), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6895), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6895), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6895), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6895), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6895), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6895), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6895), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6895), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6895), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6895), + [anon_sym_NS_AVAILABLE] = ACTIONS(6893), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6895), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6895), + [anon_sym_API_AVAILABLE] = ACTIONS(6895), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6895), + [anon_sym_API_DEPRECATED] = ACTIONS(6895), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6895), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6895), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6895), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6895), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6895), + [anon_sym___deprecated_msg] = ACTIONS(6895), + [anon_sym___deprecated_enum_msg] = ACTIONS(6895), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6895), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6895), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6895), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6895), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6895), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6895), + }, + [3304] = { + [aux_sym__type_definition_declarators_repeat1] = STATE(3304), + [anon_sym_COMMA] = ACTIONS(8383), + [anon_sym_SEMI] = ACTIONS(8386), + [anon_sym___extension__] = ACTIONS(8386), + [anon_sym_extern] = ACTIONS(8386), + [anon_sym___attribute__] = ACTIONS(8386), + [anon_sym___attribute] = ACTIONS(8388), + [anon_sym_noreturn] = ACTIONS(8386), + [anon_sym_LBRACK] = ACTIONS(8386), + [anon_sym___declspec] = ACTIONS(8386), + [anon_sym_static] = ACTIONS(8386), + [anon_sym_auto] = ACTIONS(8386), + [anon_sym_register] = ACTIONS(8386), + [anon_sym_inline] = ACTIONS(8386), + [anon_sym___inline] = ACTIONS(8388), + [anon_sym___inline__] = ACTIONS(8386), + [anon_sym___forceinline] = ACTIONS(8386), + [anon_sym_thread_local] = ACTIONS(8386), + [anon_sym___thread] = ACTIONS(8386), + [anon_sym_CG_EXTERN] = ACTIONS(8386), + [anon_sym_CG_INLINE] = ACTIONS(8386), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8386), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8386), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8386), + [anon_sym_IBOutlet] = ACTIONS(8386), + [anon_sym_IBInspectable] = ACTIONS(8386), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8386), + [anon_sym_NS_INLINE] = ACTIONS(8386), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8386), + [anon_sym_OBJC_EXPORT] = ACTIONS(8386), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8386), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8386), + [anon_sym_const] = ACTIONS(8388), + [anon_sym_constexpr] = ACTIONS(8386), + [anon_sym_volatile] = ACTIONS(8386), + [anon_sym_restrict] = ACTIONS(8386), + [anon_sym___restrict__] = ACTIONS(8386), + [anon_sym__Atomic] = ACTIONS(8386), + [anon_sym__Noreturn] = ACTIONS(8386), + [anon_sym__Nonnull] = ACTIONS(8386), + [anon_sym_nullable] = ACTIONS(8386), + [anon_sym__Complex] = ACTIONS(8386), + [anon_sym__Nullable] = ACTIONS(8388), + [anon_sym__Nullable_result] = ACTIONS(8386), + [anon_sym__Null_unspecified] = ACTIONS(8386), + [anon_sym___autoreleasing] = ACTIONS(8386), + [anon_sym___block] = ACTIONS(8386), + [anon_sym___bridge] = ACTIONS(8388), + [anon_sym___bridge_retained] = ACTIONS(8386), + [anon_sym___bridge_transfer] = ACTIONS(8386), + [anon_sym___complex] = ACTIONS(8386), + [anon_sym___const] = ACTIONS(8386), + [anon_sym___imag] = ACTIONS(8386), + [anon_sym___kindof] = ACTIONS(8386), + [anon_sym___nonnull] = ACTIONS(8386), + [anon_sym___nullable] = ACTIONS(8386), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8386), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8386), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8386), + [anon_sym___real] = ACTIONS(8386), + [anon_sym___strong] = ACTIONS(8386), + [anon_sym___unsafe_unretained] = ACTIONS(8386), + [anon_sym___unused] = ACTIONS(8386), + [anon_sym___weak] = ACTIONS(8386), + [anon_sym_alignas] = ACTIONS(8386), + [anon_sym__Alignas] = ACTIONS(8386), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8386), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8386), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8386), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8386), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8386), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8386), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8386), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8386), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8386), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8386), + [anon_sym_NS_AVAILABLE] = ACTIONS(8388), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8386), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8386), + [anon_sym_API_AVAILABLE] = ACTIONS(8386), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8386), + [anon_sym_API_DEPRECATED] = ACTIONS(8386), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8386), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8386), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8386), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8386), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8386), + [anon_sym___deprecated_msg] = ACTIONS(8386), + [anon_sym___deprecated_enum_msg] = ACTIONS(8386), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8386), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8386), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8386), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8386), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8386), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8386), + }, + [3305] = { + [aux_sym_method_definition_repeat2] = STATE(3305), + [anon_sym_COMMA] = ACTIONS(8390), + [anon_sym_SEMI] = ACTIONS(6939), + [anon_sym___extension__] = ACTIONS(6939), + [anon_sym_extern] = ACTIONS(6939), + [anon_sym___attribute__] = ACTIONS(6939), + [anon_sym___attribute] = ACTIONS(6934), + [anon_sym_noreturn] = ACTIONS(6939), + [anon_sym_LBRACK] = ACTIONS(6939), + [anon_sym___declspec] = ACTIONS(6939), + [anon_sym_static] = ACTIONS(6939), + [anon_sym_auto] = ACTIONS(6939), + [anon_sym_register] = ACTIONS(6939), + [anon_sym_inline] = ACTIONS(6939), + [anon_sym___inline] = ACTIONS(6934), + [anon_sym___inline__] = ACTIONS(6939), + [anon_sym___forceinline] = ACTIONS(6939), + [anon_sym_thread_local] = ACTIONS(6939), + [anon_sym___thread] = ACTIONS(6939), + [anon_sym_CG_EXTERN] = ACTIONS(6939), + [anon_sym_CG_INLINE] = ACTIONS(6939), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(6939), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(6939), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(6939), + [anon_sym_IBOutlet] = ACTIONS(6939), + [anon_sym_IBInspectable] = ACTIONS(6939), + [anon_sym_IB_DESIGNABLE] = ACTIONS(6939), + [anon_sym_NS_INLINE] = ACTIONS(6939), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6939), + [anon_sym_OBJC_EXPORT] = ACTIONS(6939), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(6939), + [anon_sym_UIKIT_EXTERN] = ACTIONS(6939), + [anon_sym_const] = ACTIONS(6934), + [anon_sym_constexpr] = ACTIONS(6939), + [anon_sym_volatile] = ACTIONS(6939), + [anon_sym_restrict] = ACTIONS(6939), + [anon_sym___restrict__] = ACTIONS(6939), + [anon_sym__Atomic] = ACTIONS(6939), + [anon_sym__Noreturn] = ACTIONS(6939), + [anon_sym__Nonnull] = ACTIONS(6939), + [anon_sym_nullable] = ACTIONS(6939), + [anon_sym__Complex] = ACTIONS(6939), + [anon_sym__Nullable] = ACTIONS(6934), + [anon_sym__Nullable_result] = ACTIONS(6939), + [anon_sym__Null_unspecified] = ACTIONS(6939), + [anon_sym___autoreleasing] = ACTIONS(6939), + [anon_sym___block] = ACTIONS(6939), + [anon_sym___bridge] = ACTIONS(6934), + [anon_sym___bridge_retained] = ACTIONS(6939), + [anon_sym___bridge_transfer] = ACTIONS(6939), + [anon_sym___complex] = ACTIONS(6939), + [anon_sym___const] = ACTIONS(6939), + [anon_sym___imag] = ACTIONS(6939), + [anon_sym___kindof] = ACTIONS(6939), + [anon_sym___nonnull] = ACTIONS(6939), + [anon_sym___nullable] = ACTIONS(6939), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6939), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6939), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6939), + [anon_sym___real] = ACTIONS(6939), + [anon_sym___strong] = ACTIONS(6939), + [anon_sym___unsafe_unretained] = ACTIONS(6939), + [anon_sym___unused] = ACTIONS(6939), + [anon_sym___weak] = ACTIONS(6939), + [anon_sym_alignas] = ACTIONS(6939), + [anon_sym__Alignas] = ACTIONS(6939), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(6939), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(6939), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6939), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(6939), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(6939), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(6939), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6939), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6939), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6939), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6939), + [anon_sym_NS_AVAILABLE] = ACTIONS(6934), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6939), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6939), + [anon_sym_API_AVAILABLE] = ACTIONS(6939), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6939), + [anon_sym_API_DEPRECATED] = ACTIONS(6939), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6939), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6939), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6939), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6939), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6939), + [anon_sym___deprecated_msg] = ACTIONS(6939), + [anon_sym___deprecated_enum_msg] = ACTIONS(6939), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6939), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6939), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6939), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6939), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6939), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(6939), + }, + [3306] = { + [sym_expression] = STATE(4450), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_initializer_list] = STATE(5842), + [sym_initializer_pair] = STATE(5842), + [sym_subscript_designator] = STATE(4981), + [sym_subscript_range_designator] = STATE(4981), + [sym_field_designator] = STATE(4981), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_initializer_pair_repeat1] = STATE(4981), + [sym_identifier] = ACTIONS(8367), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(8371), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_RBRACE] = ACTIONS(8393), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [anon_sym_DOT] = ACTIONS(8375), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3307] = { + [sym_attribute_specifier] = STATE(3270), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_compound_statement] = STATE(1510), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_parameter_list] = STATE(5083), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3241), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(4939), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3241), + [sym_identifier] = ACTIONS(8070), + [anon_sym_LPAREN2] = ACTIONS(8205), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_LBRACE] = ACTIONS(8209), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_ATautoreleasepool] = ACTIONS(8211), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8108), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3308] = { + [anon_sym_COMMA] = ACTIONS(8284), + [anon_sym_SEMI] = ACTIONS(8284), + [anon_sym___extension__] = ACTIONS(8284), + [anon_sym_extern] = ACTIONS(8284), + [anon_sym___attribute__] = ACTIONS(8284), + [anon_sym___attribute] = ACTIONS(8286), + [anon_sym_noreturn] = ACTIONS(8284), + [anon_sym_LBRACK] = ACTIONS(8284), + [anon_sym___declspec] = ACTIONS(8284), + [anon_sym_static] = ACTIONS(8284), + [anon_sym_auto] = ACTIONS(8284), + [anon_sym_register] = ACTIONS(8284), + [anon_sym_inline] = ACTIONS(8284), + [anon_sym___inline] = ACTIONS(8286), + [anon_sym___inline__] = ACTIONS(8284), + [anon_sym___forceinline] = ACTIONS(8284), + [anon_sym_thread_local] = ACTIONS(8284), + [anon_sym___thread] = ACTIONS(8284), + [anon_sym_CG_EXTERN] = ACTIONS(8284), + [anon_sym_CG_INLINE] = ACTIONS(8284), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8284), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8284), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8284), + [anon_sym_IBOutlet] = ACTIONS(8284), + [anon_sym_IBInspectable] = ACTIONS(8284), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8284), + [anon_sym_NS_INLINE] = ACTIONS(8284), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8284), + [anon_sym_OBJC_EXPORT] = ACTIONS(8284), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8284), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8284), + [anon_sym_const] = ACTIONS(8286), + [anon_sym_constexpr] = ACTIONS(8284), + [anon_sym_volatile] = ACTIONS(8284), + [anon_sym_restrict] = ACTIONS(8284), + [anon_sym___restrict__] = ACTIONS(8284), + [anon_sym__Atomic] = ACTIONS(8284), + [anon_sym__Noreturn] = ACTIONS(8284), + [anon_sym__Nonnull] = ACTIONS(8284), + [anon_sym_nullable] = ACTIONS(8284), + [anon_sym__Complex] = ACTIONS(8284), + [anon_sym__Nullable] = ACTIONS(8286), + [anon_sym__Nullable_result] = ACTIONS(8284), + [anon_sym__Null_unspecified] = ACTIONS(8284), + [anon_sym___autoreleasing] = ACTIONS(8284), + [anon_sym___block] = ACTIONS(8284), + [anon_sym___bridge] = ACTIONS(8286), + [anon_sym___bridge_retained] = ACTIONS(8284), + [anon_sym___bridge_transfer] = ACTIONS(8284), + [anon_sym___complex] = ACTIONS(8284), + [anon_sym___const] = ACTIONS(8284), + [anon_sym___imag] = ACTIONS(8284), + [anon_sym___kindof] = ACTIONS(8284), + [anon_sym___nonnull] = ACTIONS(8284), + [anon_sym___nullable] = ACTIONS(8284), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8284), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8284), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8284), + [anon_sym___real] = ACTIONS(8284), + [anon_sym___strong] = ACTIONS(8284), + [anon_sym___unsafe_unretained] = ACTIONS(8284), + [anon_sym___unused] = ACTIONS(8284), + [anon_sym___weak] = ACTIONS(8284), + [anon_sym_alignas] = ACTIONS(8284), + [anon_sym__Alignas] = ACTIONS(8284), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8284), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8284), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8284), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8284), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8284), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8284), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8284), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8284), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8284), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8284), + [anon_sym_NS_AVAILABLE] = ACTIONS(8286), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8284), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8284), + [anon_sym_API_AVAILABLE] = ACTIONS(8284), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8284), + [anon_sym_API_DEPRECATED] = ACTIONS(8284), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8284), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8284), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8284), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8284), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8284), + [anon_sym___deprecated_msg] = ACTIONS(8284), + [anon_sym___deprecated_enum_msg] = ACTIONS(8284), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8284), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8284), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8284), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8284), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8284), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8284), + }, + [3309] = { + [sym_expression] = STATE(4450), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_initializer_list] = STATE(5842), + [sym_initializer_pair] = STATE(5842), + [sym_subscript_designator] = STATE(4981), + [sym_subscript_range_designator] = STATE(4981), + [sym_field_designator] = STATE(4981), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_initializer_pair_repeat1] = STATE(4981), + [sym_identifier] = ACTIONS(8367), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(8371), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_RBRACE] = ACTIONS(8395), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [anon_sym_DOT] = ACTIONS(8375), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3310] = { + [sym_expression] = STATE(4450), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_initializer_list] = STATE(5842), + [sym_initializer_pair] = STATE(5842), + [sym_subscript_designator] = STATE(4981), + [sym_subscript_range_designator] = STATE(4981), + [sym_field_designator] = STATE(4981), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_initializer_pair_repeat1] = STATE(4981), + [sym_identifier] = ACTIONS(8367), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(8371), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_RBRACE] = ACTIONS(8397), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [anon_sym_DOT] = ACTIONS(8375), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3311] = { + [sym_attribute_specifier] = STATE(3311), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3311), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3311), + [sym_identifier] = ACTIONS(8399), + [anon_sym_COMMA] = ACTIONS(8402), + [anon_sym_RPAREN] = ACTIONS(8402), + [anon_sym_LPAREN2] = ACTIONS(8404), + [anon_sym_STAR] = ACTIONS(8407), + [anon_sym_CARET] = ACTIONS(8410), + [anon_sym_GT] = ACTIONS(8402), + [anon_sym_LT] = ACTIONS(8402), + [anon_sym___extension__] = ACTIONS(8413), + [anon_sym___attribute__] = ACTIONS(8416), + [anon_sym___attribute] = ACTIONS(8416), + [anon_sym_noreturn] = ACTIONS(8413), + [anon_sym_LBRACK] = ACTIONS(8402), + [anon_sym___based] = ACTIONS(8419), + [anon_sym_signed] = ACTIONS(8422), + [anon_sym_unsigned] = ACTIONS(8422), + [anon_sym_long] = ACTIONS(8422), + [anon_sym_short] = ACTIONS(8422), + [anon_sym_const] = ACTIONS(8413), + [anon_sym_constexpr] = ACTIONS(8413), + [anon_sym_volatile] = ACTIONS(8413), + [anon_sym_restrict] = ACTIONS(8413), + [anon_sym___restrict__] = ACTIONS(8413), + [anon_sym__Atomic] = ACTIONS(8413), + [anon_sym__Noreturn] = ACTIONS(8413), + [anon_sym__Nonnull] = ACTIONS(8413), + [anon_sym_nullable] = ACTIONS(8413), + [anon_sym__Complex] = ACTIONS(8413), + [anon_sym__Nullable] = ACTIONS(8413), + [anon_sym__Nullable_result] = ACTIONS(8413), + [anon_sym__Null_unspecified] = ACTIONS(8413), + [anon_sym___autoreleasing] = ACTIONS(8413), + [anon_sym___block] = ACTIONS(8413), + [anon_sym___bridge] = ACTIONS(8413), + [anon_sym___bridge_retained] = ACTIONS(8413), + [anon_sym___bridge_transfer] = ACTIONS(8413), + [anon_sym___complex] = ACTIONS(8413), + [anon_sym___const] = ACTIONS(8413), + [anon_sym___imag] = ACTIONS(8413), + [anon_sym___kindof] = ACTIONS(8413), + [anon_sym___nonnull] = ACTIONS(8413), + [anon_sym___nullable] = ACTIONS(8413), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8413), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8413), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8413), + [anon_sym___real] = ACTIONS(8413), + [anon_sym___strong] = ACTIONS(8413), + [anon_sym___unsafe_unretained] = ACTIONS(8413), + [anon_sym___unused] = ACTIONS(8413), + [anon_sym___weak] = ACTIONS(8413), + [anon_sym_alignas] = ACTIONS(8425), + [anon_sym__Alignas] = ACTIONS(8425), + [sym_primitive_type] = ACTIONS(8428), + [anon_sym_enum] = ACTIONS(8431), + [anon_sym_struct] = ACTIONS(8434), + [anon_sym_union] = ACTIONS(8437), + [anon_sym_in] = ACTIONS(8440), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8443), + [anon_sym___typeof] = ACTIONS(8443), + [anon_sym_typeof] = ACTIONS(8443), + [anon_sym_BOOL] = ACTIONS(8446), + [anon_sym_IMP] = ACTIONS(8446), + [anon_sym_SEL] = ACTIONS(8446), + [anon_sym_Class] = ACTIONS(8446), + [anon_sym_id] = ACTIONS(8446), + [anon_sym_out] = ACTIONS(8440), + [anon_sym_inout] = ACTIONS(8440), + [anon_sym_bycopy] = ACTIONS(8440), + [anon_sym_byref] = ACTIONS(8440), + [anon_sym_oneway] = ACTIONS(8440), + }, + [3312] = { + [anon_sym_COMMA] = ACTIONS(8104), + [anon_sym_SEMI] = ACTIONS(8104), + [anon_sym___extension__] = ACTIONS(8104), + [anon_sym_extern] = ACTIONS(8104), + [anon_sym___attribute__] = ACTIONS(8104), + [anon_sym___attribute] = ACTIONS(8106), + [anon_sym_noreturn] = ACTIONS(8104), + [anon_sym_LBRACK] = ACTIONS(8104), + [anon_sym___declspec] = ACTIONS(8104), + [anon_sym_static] = ACTIONS(8104), + [anon_sym_auto] = ACTIONS(8104), + [anon_sym_register] = ACTIONS(8104), + [anon_sym_inline] = ACTIONS(8104), + [anon_sym___inline] = ACTIONS(8106), + [anon_sym___inline__] = ACTIONS(8104), + [anon_sym___forceinline] = ACTIONS(8104), + [anon_sym_thread_local] = ACTIONS(8104), + [anon_sym___thread] = ACTIONS(8104), + [anon_sym_CG_EXTERN] = ACTIONS(8104), + [anon_sym_CG_INLINE] = ACTIONS(8104), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8104), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8104), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8104), + [anon_sym_IBOutlet] = ACTIONS(8104), + [anon_sym_IBInspectable] = ACTIONS(8104), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8104), + [anon_sym_NS_INLINE] = ACTIONS(8104), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8104), + [anon_sym_OBJC_EXPORT] = ACTIONS(8104), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8104), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8104), + [anon_sym_const] = ACTIONS(8106), + [anon_sym_constexpr] = ACTIONS(8104), + [anon_sym_volatile] = ACTIONS(8104), + [anon_sym_restrict] = ACTIONS(8104), + [anon_sym___restrict__] = ACTIONS(8104), + [anon_sym__Atomic] = ACTIONS(8104), + [anon_sym__Noreturn] = ACTIONS(8104), + [anon_sym__Nonnull] = ACTIONS(8104), + [anon_sym_nullable] = ACTIONS(8104), + [anon_sym__Complex] = ACTIONS(8104), + [anon_sym__Nullable] = ACTIONS(8106), + [anon_sym__Nullable_result] = ACTIONS(8104), + [anon_sym__Null_unspecified] = ACTIONS(8104), + [anon_sym___autoreleasing] = ACTIONS(8104), + [anon_sym___block] = ACTIONS(8104), + [anon_sym___bridge] = ACTIONS(8106), + [anon_sym___bridge_retained] = ACTIONS(8104), + [anon_sym___bridge_transfer] = ACTIONS(8104), + [anon_sym___complex] = ACTIONS(8104), + [anon_sym___const] = ACTIONS(8104), + [anon_sym___imag] = ACTIONS(8104), + [anon_sym___kindof] = ACTIONS(8104), + [anon_sym___nonnull] = ACTIONS(8104), + [anon_sym___nullable] = ACTIONS(8104), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8104), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8104), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8104), + [anon_sym___real] = ACTIONS(8104), + [anon_sym___strong] = ACTIONS(8104), + [anon_sym___unsafe_unretained] = ACTIONS(8104), + [anon_sym___unused] = ACTIONS(8104), + [anon_sym___weak] = ACTIONS(8104), + [anon_sym_alignas] = ACTIONS(8104), + [anon_sym__Alignas] = ACTIONS(8104), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8104), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8104), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8104), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8104), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8104), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8104), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8104), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8104), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8104), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8104), + [anon_sym_NS_AVAILABLE] = ACTIONS(8106), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8104), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8104), + [anon_sym_API_AVAILABLE] = ACTIONS(8104), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8104), + [anon_sym_API_DEPRECATED] = ACTIONS(8104), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8104), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8104), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8104), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8104), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8104), + [anon_sym___deprecated_msg] = ACTIONS(8104), + [anon_sym___deprecated_enum_msg] = ACTIONS(8104), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8104), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8104), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8104), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8104), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8104), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8104), + }, + [3313] = { + [anon_sym_COMMA] = ACTIONS(8449), + [anon_sym_SEMI] = ACTIONS(8449), + [anon_sym___extension__] = ACTIONS(8449), + [anon_sym_extern] = ACTIONS(8449), + [anon_sym___attribute__] = ACTIONS(8449), + [anon_sym___attribute] = ACTIONS(8451), + [anon_sym_noreturn] = ACTIONS(8449), + [anon_sym_LBRACK] = ACTIONS(8449), + [anon_sym___declspec] = ACTIONS(8449), + [anon_sym_static] = ACTIONS(8449), + [anon_sym_auto] = ACTIONS(8449), + [anon_sym_register] = ACTIONS(8449), + [anon_sym_inline] = ACTIONS(8449), + [anon_sym___inline] = ACTIONS(8451), + [anon_sym___inline__] = ACTIONS(8449), + [anon_sym___forceinline] = ACTIONS(8449), + [anon_sym_thread_local] = ACTIONS(8449), + [anon_sym___thread] = ACTIONS(8449), + [anon_sym_CG_EXTERN] = ACTIONS(8449), + [anon_sym_CG_INLINE] = ACTIONS(8449), + [anon_sym_FOUNDATION_EXPORT] = ACTIONS(8449), + [anon_sym_FOUNDATION_EXTERN] = ACTIONS(8449), + [anon_sym_FOUNDATION_STATIC_INLINE] = ACTIONS(8449), + [anon_sym_IBOutlet] = ACTIONS(8449), + [anon_sym_IBInspectable] = ACTIONS(8449), + [anon_sym_IB_DESIGNABLE] = ACTIONS(8449), + [anon_sym_NS_INLINE] = ACTIONS(8449), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8449), + [anon_sym_OBJC_EXPORT] = ACTIONS(8449), + [anon_sym_OBJC_ROOT_CLASS] = ACTIONS(8449), + [anon_sym_UIKIT_EXTERN] = ACTIONS(8449), + [anon_sym_const] = ACTIONS(8451), + [anon_sym_constexpr] = ACTIONS(8449), + [anon_sym_volatile] = ACTIONS(8449), + [anon_sym_restrict] = ACTIONS(8449), + [anon_sym___restrict__] = ACTIONS(8449), + [anon_sym__Atomic] = ACTIONS(8449), + [anon_sym__Noreturn] = ACTIONS(8449), + [anon_sym__Nonnull] = ACTIONS(8449), + [anon_sym_nullable] = ACTIONS(8449), + [anon_sym__Complex] = ACTIONS(8449), + [anon_sym__Nullable] = ACTIONS(8451), + [anon_sym__Nullable_result] = ACTIONS(8449), + [anon_sym__Null_unspecified] = ACTIONS(8449), + [anon_sym___autoreleasing] = ACTIONS(8449), + [anon_sym___block] = ACTIONS(8449), + [anon_sym___bridge] = ACTIONS(8451), + [anon_sym___bridge_retained] = ACTIONS(8449), + [anon_sym___bridge_transfer] = ACTIONS(8449), + [anon_sym___complex] = ACTIONS(8449), + [anon_sym___const] = ACTIONS(8449), + [anon_sym___imag] = ACTIONS(8449), + [anon_sym___kindof] = ACTIONS(8449), + [anon_sym___nonnull] = ACTIONS(8449), + [anon_sym___nullable] = ACTIONS(8449), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8449), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8449), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8449), + [anon_sym___real] = ACTIONS(8449), + [anon_sym___strong] = ACTIONS(8449), + [anon_sym___unsafe_unretained] = ACTIONS(8449), + [anon_sym___unused] = ACTIONS(8449), + [anon_sym___weak] = ACTIONS(8449), + [anon_sym_alignas] = ACTIONS(8449), + [anon_sym__Alignas] = ACTIONS(8449), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_AUTOMATED_REFCOUNT_UNAVAILABLE] = ACTIONS(8449), + [anon_sym_NS_ROOT_CLASS] = ACTIONS(8449), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8449), + [anon_sym_NS_REQUIRES_NIL_TERMINATION] = ACTIONS(8449), + [anon_sym_CF_RETURNS_RETAINED] = ACTIONS(8449), + [anon_sym_CF_RETURNS_NOT_RETAINED] = ACTIONS(8449), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8449), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8449), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8449), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8449), + [anon_sym_NS_AVAILABLE] = ACTIONS(8451), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8449), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8449), + [anon_sym_API_AVAILABLE] = ACTIONS(8449), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8449), + [anon_sym_API_DEPRECATED] = ACTIONS(8449), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8449), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8449), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8449), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8449), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8449), + [anon_sym___deprecated_msg] = ACTIONS(8449), + [anon_sym___deprecated_enum_msg] = ACTIONS(8449), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8449), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8449), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8449), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8449), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8449), + [anon_sym___OSX_AVAILABLE_STARTING] = ACTIONS(8449), + }, + [3314] = { + [sym_attribute_specifier] = STATE(3271), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_compound_statement] = STATE(1656), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_parameter_list] = STATE(5032), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3241), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(4942), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3241), + [sym_identifier] = ACTIONS(8070), + [anon_sym_LPAREN2] = ACTIONS(8205), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_LBRACE] = ACTIONS(8213), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_ATautoreleasepool] = ACTIONS(8215), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8108), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3315] = { + [sym_expression] = STATE(4450), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_initializer_list] = STATE(5842), + [sym_initializer_pair] = STATE(5842), + [sym_subscript_designator] = STATE(4981), + [sym_subscript_range_designator] = STATE(4981), + [sym_field_designator] = STATE(4981), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_initializer_pair_repeat1] = STATE(4981), + [sym_identifier] = ACTIONS(8367), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(8371), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_RBRACE] = ACTIONS(8453), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [anon_sym_DOT] = ACTIONS(8375), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3316] = { + [sym_expression] = STATE(4460), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_version] = STATE(5778), + [sym_platform] = STATE(5504), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(219), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [sym_version_number] = ACTIONS(8455), + [anon_sym_ios] = ACTIONS(8457), + [anon_sym_tvos] = ACTIONS(8457), + [anon_sym_macos] = ACTIONS(8457), + [anon_sym_macosx] = ACTIONS(8457), + [anon_sym_watchos] = ACTIONS(8457), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3317] = { + [sym_attribute_specifier] = STATE(3317), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3317), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3317), + [sym_identifier] = ACTIONS(8399), + [anon_sym_LPAREN2] = ACTIONS(8404), + [anon_sym_STAR] = ACTIONS(8407), + [anon_sym_CARET] = ACTIONS(8410), + [anon_sym_LT] = ACTIONS(8402), + [anon_sym___extension__] = ACTIONS(8413), + [anon_sym___attribute__] = ACTIONS(8416), + [anon_sym___attribute] = ACTIONS(8416), + [anon_sym_noreturn] = ACTIONS(8413), + [anon_sym_LBRACK] = ACTIONS(8402), + [anon_sym___based] = ACTIONS(8419), + [anon_sym_LBRACE] = ACTIONS(8402), + [anon_sym_signed] = ACTIONS(8422), + [anon_sym_unsigned] = ACTIONS(8422), + [anon_sym_long] = ACTIONS(8422), + [anon_sym_short] = ACTIONS(8422), + [anon_sym_ATautoreleasepool] = ACTIONS(8402), + [anon_sym_const] = ACTIONS(8413), + [anon_sym_constexpr] = ACTIONS(8413), + [anon_sym_volatile] = ACTIONS(8413), + [anon_sym_restrict] = ACTIONS(8413), + [anon_sym___restrict__] = ACTIONS(8413), + [anon_sym__Atomic] = ACTIONS(8413), + [anon_sym__Noreturn] = ACTIONS(8413), + [anon_sym__Nonnull] = ACTIONS(8413), + [anon_sym_nullable] = ACTIONS(8413), + [anon_sym__Complex] = ACTIONS(8413), + [anon_sym__Nullable] = ACTIONS(8413), + [anon_sym__Nullable_result] = ACTIONS(8413), + [anon_sym__Null_unspecified] = ACTIONS(8413), + [anon_sym___autoreleasing] = ACTIONS(8413), + [anon_sym___block] = ACTIONS(8413), + [anon_sym___bridge] = ACTIONS(8413), + [anon_sym___bridge_retained] = ACTIONS(8413), + [anon_sym___bridge_transfer] = ACTIONS(8413), + [anon_sym___complex] = ACTIONS(8413), + [anon_sym___const] = ACTIONS(8413), + [anon_sym___imag] = ACTIONS(8413), + [anon_sym___kindof] = ACTIONS(8413), + [anon_sym___nonnull] = ACTIONS(8413), + [anon_sym___nullable] = ACTIONS(8413), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8413), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8413), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8413), + [anon_sym___real] = ACTIONS(8413), + [anon_sym___strong] = ACTIONS(8413), + [anon_sym___unsafe_unretained] = ACTIONS(8413), + [anon_sym___unused] = ACTIONS(8413), + [anon_sym___weak] = ACTIONS(8413), + [anon_sym_alignas] = ACTIONS(8425), + [anon_sym__Alignas] = ACTIONS(8425), + [sym_primitive_type] = ACTIONS(8428), + [anon_sym_enum] = ACTIONS(8459), + [anon_sym_struct] = ACTIONS(8434), + [anon_sym_union] = ACTIONS(8437), + [anon_sym_in] = ACTIONS(8440), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8443), + [anon_sym___typeof] = ACTIONS(8443), + [anon_sym_typeof] = ACTIONS(8443), + [anon_sym_BOOL] = ACTIONS(8446), + [anon_sym_IMP] = ACTIONS(8446), + [anon_sym_SEL] = ACTIONS(8446), + [anon_sym_Class] = ACTIONS(8446), + [anon_sym_id] = ACTIONS(8446), + [anon_sym_out] = ACTIONS(8440), + [anon_sym_inout] = ACTIONS(8440), + [anon_sym_bycopy] = ACTIONS(8440), + [anon_sym_byref] = ACTIONS(8440), + [anon_sym_oneway] = ACTIONS(8440), + }, + [3318] = { + [sym_expression] = STATE(4450), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_initializer_list] = STATE(5842), + [sym_initializer_pair] = STATE(5842), + [sym_subscript_designator] = STATE(4981), + [sym_subscript_range_designator] = STATE(4981), + [sym_field_designator] = STATE(4981), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [aux_sym_initializer_pair_repeat1] = STATE(4981), + [sym_identifier] = ACTIONS(8367), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(8371), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [anon_sym_DOT] = ACTIONS(8375), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3319] = { + [sym_expression] = STATE(4431), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_version] = STATE(5605), + [sym_platform] = STATE(5504), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(219), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [sym_version_number] = ACTIONS(8455), + [anon_sym_ios] = ACTIONS(8457), + [anon_sym_tvos] = ACTIONS(8457), + [anon_sym_macos] = ACTIONS(8457), + [anon_sym_macosx] = ACTIONS(8457), + [anon_sym_watchos] = ACTIONS(8457), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3320] = { + [sym_attribute_specifier] = STATE(3228), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(5312), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8462), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym___covariant] = ACTIONS(8464), + [anon_sym___contravariant] = ACTIONS(8464), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3321] = { + [sym_attribute_specifier] = STATE(3293), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_parameterized_arguments] = STATE(5645), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(5645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8070), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3322] = { + [sym_attribute_specifier] = STATE(3294), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_parameterized_arguments] = STATE(5828), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(5828), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8070), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3323] = { + [sym_attribute_specifier] = STATE(3228), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(6086), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8070), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8466), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3324] = { + [sym_attribute_specifier] = STATE(3228), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(6041), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8070), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8468), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3325] = { + [sym_attribute_specifier] = STATE(3228), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(6118), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8070), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8470), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3326] = { + [sym_attribute_specifier] = STATE(3228), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(6564), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8070), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8472), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3327] = { + [sym_attribute_specifier] = STATE(3228), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(6274), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8070), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8474), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3328] = { + [sym_attribute_specifier] = STATE(3228), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(6126), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8070), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8476), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3329] = { + [sym_attribute_specifier] = STATE(3228), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(5908), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8070), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8478), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3330] = { + [sym_attribute_specifier] = STATE(3228), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(5983), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8070), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8480), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3331] = { + [sym_attribute_specifier] = STATE(3228), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(6397), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8070), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3332] = { + [sym_attribute_specifier] = STATE(3228), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(5689), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8070), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3333] = { + [sym_attribute_specifier] = STATE(3228), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(5325), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8070), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3334] = { + [sym_attribute_specifier] = STATE(3228), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(5662), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8070), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3335] = { + [sym_attribute_specifier] = STATE(3228), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(5868), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8070), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3336] = { + [sym_attribute_specifier] = STATE(3228), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(5767), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8070), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3337] = { + [sym_attribute_specifier] = STATE(3228), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(5753), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8070), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3338] = { + [sym_attribute_specifier] = STATE(3228), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(5562), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8070), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3339] = { + [sym_attribute_specifier] = STATE(3228), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(6403), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8070), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3340] = { + [sym_attribute_specifier] = STATE(3228), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(5706), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8070), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3341] = { + [sym_attribute_specifier] = STATE(3228), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(5812), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8070), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3342] = { + [sym_attribute_specifier] = STATE(3228), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(5481), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8070), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3343] = { + [sym_attribute_specifier] = STATE(3228), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(5875), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8070), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3344] = { + [sym_attribute_specifier] = STATE(3228), + [sym_ms_based_modifier] = STATE(6323), + [sym__declarator] = STATE(3930), + [sym_parenthesized_declarator] = STATE(4011), + [sym_pointer_declarator] = STATE(4011), + [sym_function_declarator] = STATE(4011), + [sym_array_declarator] = STATE(4011), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3228), + [sym_block_pointer_declarator] = STATE(4011), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [sym_type_name] = STATE(5366), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_type_name_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(8070), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(6563), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8086), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3345] = { + [sym_expression] = STATE(4504), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_typeof_specifier] = STATE(5811), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3346] = { + [sym_compound_statement] = STATE(6760), + [sym_expression] = STATE(4454), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3347] = { + [sym_expression] = STATE(4425), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_typeof_specifier] = STATE(5601), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3348] = { + [sym_compound_statement] = STATE(6104), + [sym_expression] = STATE(4463), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6104), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_ATautoreleasepool] = ACTIONS(53), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3349] = { + [sym_type_qualifier] = STATE(3349), + [sym_alignas_qualifier] = STATE(3575), + [aux_sym_array_declarator_repeat1] = STATE(3349), + [sym_identifier] = ACTIONS(8482), + [anon_sym_LPAREN2] = ACTIONS(8484), + [anon_sym_BANG] = ACTIONS(8484), + [anon_sym_TILDE] = ACTIONS(8484), + [anon_sym_DASH] = ACTIONS(8482), + [anon_sym_PLUS] = ACTIONS(8482), + [anon_sym_STAR] = ACTIONS(8484), + [anon_sym_CARET] = ACTIONS(8484), + [anon_sym_AMP] = ACTIONS(8484), + [anon_sym___extension__] = ACTIONS(8486), + [anon_sym_noreturn] = ACTIONS(8486), + [anon_sym_LBRACK] = ACTIONS(8484), + [anon_sym_RBRACK] = ACTIONS(8484), + [anon_sym_static] = ACTIONS(8489), + [anon_sym_const] = ACTIONS(8486), + [anon_sym_constexpr] = ACTIONS(8486), + [anon_sym_volatile] = ACTIONS(8486), + [anon_sym_restrict] = ACTIONS(8486), + [anon_sym___restrict__] = ACTIONS(8486), + [anon_sym__Atomic] = ACTIONS(8486), + [anon_sym__Noreturn] = ACTIONS(8486), + [anon_sym__Nonnull] = ACTIONS(8486), + [anon_sym_nullable] = ACTIONS(8486), + [anon_sym__Complex] = ACTIONS(8486), + [anon_sym__Nullable] = ACTIONS(8486), + [anon_sym__Nullable_result] = ACTIONS(8486), + [anon_sym__Null_unspecified] = ACTIONS(8486), + [anon_sym___autoreleasing] = ACTIONS(8486), + [anon_sym___block] = ACTIONS(8486), + [anon_sym___bridge] = ACTIONS(8486), + [anon_sym___bridge_retained] = ACTIONS(8486), + [anon_sym___bridge_transfer] = ACTIONS(8486), + [anon_sym___complex] = ACTIONS(8486), + [anon_sym___const] = ACTIONS(8486), + [anon_sym___imag] = ACTIONS(8486), + [anon_sym___kindof] = ACTIONS(8486), + [anon_sym___nonnull] = ACTIONS(8486), + [anon_sym___nullable] = ACTIONS(8486), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8486), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8486), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8486), + [anon_sym___real] = ACTIONS(8486), + [anon_sym___strong] = ACTIONS(8486), + [anon_sym___unsafe_unretained] = ACTIONS(8486), + [anon_sym___unused] = ACTIONS(8486), + [anon_sym___weak] = ACTIONS(8486), + [anon_sym_alignas] = ACTIONS(8492), + [anon_sym__Alignas] = ACTIONS(8492), + [anon_sym_struct] = ACTIONS(8482), + [anon_sym_in] = ACTIONS(8482), + [anon_sym_DASH_DASH] = ACTIONS(8484), + [anon_sym_PLUS_PLUS] = ACTIONS(8484), + [anon_sym_sizeof] = ACTIONS(8482), + [anon_sym___alignof__] = ACTIONS(8482), + [anon_sym___alignof] = ACTIONS(8482), + [anon_sym__alignof] = ACTIONS(8482), + [anon_sym_alignof] = ACTIONS(8482), + [anon_sym__Alignof] = ACTIONS(8482), + [anon_sym_offsetof] = ACTIONS(8482), + [anon_sym__Generic] = ACTIONS(8482), + [anon_sym_asm] = ACTIONS(8482), + [anon_sym___asm__] = ACTIONS(8482), + [anon_sym___asm] = ACTIONS(8482), + [sym_number_literal] = ACTIONS(8484), + [anon_sym_L_SQUOTE] = ACTIONS(8484), + [anon_sym_u_SQUOTE] = ACTIONS(8484), + [anon_sym_U_SQUOTE] = ACTIONS(8484), + [anon_sym_u8_SQUOTE] = ACTIONS(8484), + [anon_sym_SQUOTE] = ACTIONS(8484), + [anon_sym_AT] = ACTIONS(8482), + [anon_sym_DQUOTE] = ACTIONS(8484), + [anon_sym_L_DQUOTE] = ACTIONS(8484), + [anon_sym_u_DQUOTE] = ACTIONS(8484), + [anon_sym_U_DQUOTE] = ACTIONS(8484), + [anon_sym_u8_DQUOTE] = ACTIONS(8484), + [sym_true] = ACTIONS(8482), + [sym_false] = ACTIONS(8482), + [anon_sym_NULL] = ACTIONS(8482), + [anon_sym_nullptr] = ACTIONS(8482), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(8484), + [anon_sym_ATavailable] = ACTIONS(8484), + [anon_sym___builtin_available] = ACTIONS(8482), + [anon_sym_va_arg] = ACTIONS(8482), + [anon_sym_ATencode] = ACTIONS(8484), + [anon_sym_id] = ACTIONS(8482), + }, + [3350] = { + [sym_preproc_if] = STATE(4074), + [sym_preproc_ifdef] = STATE(4074), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_instance_variable] = STATE(4095), + [sym_visibility_specification] = STATE(4074), + [sym_struct_declaration] = STATE(4074), + [sym_atomic_declaration] = STATE(4074), + [sym_specifier_qualifier] = STATE(3351), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(8295), + [aux_sym_preproc_if_token1] = ACTIONS(8297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8299), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8299), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8305), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_ATprivate] = ACTIONS(8309), + [anon_sym_ATprotected] = ACTIONS(8309), + [anon_sym_ATpackage] = ACTIONS(8309), + [anon_sym_ATpublic] = ACTIONS(8309), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3351] = { + [sym_ms_based_modifier] = STATE(6197), + [sym__declarator] = STATE(3267), + [sym_parenthesized_declarator] = STATE(3076), + [sym_pointer_declarator] = STATE(3076), + [sym_function_declarator] = STATE(3076), + [sym_array_declarator] = STATE(3076), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3788), + [sym_struct_declarator] = STATE(3220), + [sym_block_pointer_declarator] = STATE(3076), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3788), + [sym_identifier] = ACTIONS(8495), + [anon_sym_LPAREN2] = ACTIONS(6579), + [anon_sym_STAR] = ACTIONS(6581), + [anon_sym_CARET] = ACTIONS(6583), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_COLON] = ACTIONS(8497), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3352] = { + [sym_expression] = STATE(1629), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3353] = { + [sym_ms_based_modifier] = STATE(6197), + [sym__declarator] = STATE(3267), + [sym_parenthesized_declarator] = STATE(3076), + [sym_pointer_declarator] = STATE(3076), + [sym_function_declarator] = STATE(3076), + [sym_array_declarator] = STATE(3076), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3788), + [sym_struct_declarator] = STATE(3171), + [sym_block_pointer_declarator] = STATE(3076), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3788), + [sym_identifier] = ACTIONS(8495), + [anon_sym_LPAREN2] = ACTIONS(6579), + [anon_sym_STAR] = ACTIONS(6581), + [anon_sym_CARET] = ACTIONS(6583), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_COLON] = ACTIONS(8497), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3354] = { + [sym_string_literal] = STATE(1924), + [aux_sym_sized_type_specifier_repeat1] = STATE(2956), + [aux_sym_generic_specifier_repeat1] = STATE(2922), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_RPAREN] = ACTIONS(4514), + [anon_sym_LPAREN2] = ACTIONS(4504), + [anon_sym_DASH] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(4508), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3995), + [anon_sym_CARET] = ACTIONS(4508), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_LT_LT] = ACTIONS(3995), + [anon_sym_GT_GT] = ACTIONS(3995), + [anon_sym___extension__] = ACTIONS(5932), + [anon_sym_noreturn] = ACTIONS(5932), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym_signed] = ACTIONS(8499), + [anon_sym_unsigned] = ACTIONS(8499), + [anon_sym_long] = ACTIONS(8499), + [anon_sym_short] = ACTIONS(8499), + [anon_sym_EQ] = ACTIONS(8501), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(5932), + [anon_sym_volatile] = ACTIONS(5932), + [anon_sym_restrict] = ACTIONS(5932), + [anon_sym___restrict__] = ACTIONS(5932), + [anon_sym__Atomic] = ACTIONS(5932), + [anon_sym__Noreturn] = ACTIONS(5932), + [anon_sym__Nonnull] = ACTIONS(5932), + [anon_sym_nullable] = ACTIONS(5932), + [anon_sym__Complex] = ACTIONS(5932), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(5932), + [anon_sym__Null_unspecified] = ACTIONS(5932), + [anon_sym___autoreleasing] = ACTIONS(5932), + [anon_sym___block] = ACTIONS(5932), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(5932), + [anon_sym___bridge_transfer] = ACTIONS(5932), + [anon_sym___complex] = ACTIONS(5932), + [anon_sym___const] = ACTIONS(5932), + [anon_sym___imag] = ACTIONS(5932), + [anon_sym___kindof] = ACTIONS(5932), + [anon_sym___nonnull] = ACTIONS(5932), + [anon_sym___nullable] = ACTIONS(5932), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5932), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5932), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5932), + [anon_sym___real] = ACTIONS(5932), + [anon_sym___strong] = ACTIONS(5932), + [anon_sym___unsafe_unretained] = ACTIONS(5932), + [anon_sym___unused] = ACTIONS(5932), + [anon_sym___weak] = ACTIONS(5932), + [anon_sym_alignas] = ACTIONS(5932), + [anon_sym__Alignas] = ACTIONS(5932), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(8503), + [anon_sym_SLASH_EQ] = ACTIONS(8503), + [anon_sym_PERCENT_EQ] = ACTIONS(8503), + [anon_sym_PLUS_EQ] = ACTIONS(8503), + [anon_sym_DASH_EQ] = ACTIONS(8503), + [anon_sym_LT_LT_EQ] = ACTIONS(8503), + [anon_sym_GT_GT_EQ] = ACTIONS(8503), + [anon_sym_AMP_EQ] = ACTIONS(8503), + [anon_sym_CARET_EQ] = ACTIONS(8503), + [anon_sym_PIPE_EQ] = ACTIONS(8503), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3995), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + }, + [3355] = { + [sym_ms_based_modifier] = STATE(6197), + [sym__declarator] = STATE(3267), + [sym_parenthesized_declarator] = STATE(3076), + [sym_pointer_declarator] = STATE(3076), + [sym_function_declarator] = STATE(3076), + [sym_array_declarator] = STATE(3076), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3788), + [sym_struct_declarator] = STATE(3193), + [sym_block_pointer_declarator] = STATE(3076), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3788), + [sym_identifier] = ACTIONS(8495), + [anon_sym_LPAREN2] = ACTIONS(6579), + [anon_sym_STAR] = ACTIONS(6581), + [anon_sym_CARET] = ACTIONS(6583), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_COLON] = ACTIONS(8497), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3356] = { + [sym_ms_based_modifier] = STATE(6197), + [sym__declarator] = STATE(3267), + [sym_parenthesized_declarator] = STATE(3076), + [sym_pointer_declarator] = STATE(3076), + [sym_function_declarator] = STATE(3076), + [sym_array_declarator] = STATE(3076), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3788), + [sym_struct_declarator] = STATE(3113), + [sym_block_pointer_declarator] = STATE(3076), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3788), + [sym_identifier] = ACTIONS(8495), + [anon_sym_LPAREN2] = ACTIONS(6579), + [anon_sym_STAR] = ACTIONS(6581), + [anon_sym_CARET] = ACTIONS(6583), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym___based] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8074), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_COLON] = ACTIONS(8497), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3357] = { + [sym_expression] = STATE(4497), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3358] = { + [sym_expression] = STATE(4489), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6427), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_COLON] = ACTIONS(8505), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3359] = { + [sym_expression] = STATE(4487), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6221), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8507), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3360] = { + [sym_expression] = STATE(1739), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1582), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1582), + [sym_call_expression] = STATE(1582), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1582), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1582), + [sym_initializer_list] = STATE(2847), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(1631), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8509), + [anon_sym_LPAREN2] = ACTIONS(8511), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8515), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8517), + [anon_sym___real] = ACTIONS(8517), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8519), + [anon_sym_PLUS_PLUS] = ACTIONS(8519), + [anon_sym_sizeof] = ACTIONS(2286), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(2288), + [anon_sym___asm__] = ACTIONS(2288), + [anon_sym___asm] = ACTIONS(2288), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3361] = { + [sym_expression] = STATE(4446), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6017), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_RPAREN] = ACTIONS(8521), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3362] = { + [sym_expression] = STATE(4488), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6073), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_RPAREN] = ACTIONS(8523), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3363] = { + [sym_expression] = STATE(4494), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6081), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_RPAREN] = ACTIONS(8525), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3364] = { + [sym_expression] = STATE(1637), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1995), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1995), + [sym_call_expression] = STATE(1995), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1995), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1995), + [sym_initializer_list] = STATE(1655), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8527), + [anon_sym_LPAREN2] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8533), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8535), + [anon_sym___real] = ACTIONS(8535), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8537), + [anon_sym_PLUS_PLUS] = ACTIONS(8537), + [anon_sym_sizeof] = ACTIONS(2898), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3365] = { + [sym_expression] = STATE(4501), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6107), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_RPAREN] = ACTIONS(8539), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3366] = { + [sym_expression] = STATE(4484), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6356), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_COLON] = ACTIONS(8541), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3367] = { + [sym_expression] = STATE(4486), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6368), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_COLON] = ACTIONS(8543), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3368] = { + [sym_expression] = STATE(1446), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_initializer_list] = STATE(1466), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3369] = { + [sym_expression] = STATE(4459), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6463), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_COLON] = ACTIONS(8553), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3370] = { + [sym_expression] = STATE(4467), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6231), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8555), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3371] = { + [sym_expression] = STATE(4390), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(8557), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(8561), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_class] = ACTIONS(8563), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3372] = { + [sym_expression] = STATE(4536), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_dictionary_pair] = STATE(5801), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACE] = ACTIONS(8565), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3373] = { + [sym_attribute] = STATE(5402), + [sym_expression] = STATE(4480), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(5773), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8567), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3374] = { + [sym_expression] = STATE(2659), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_initializer_list] = STATE(2847), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(8575), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8581), + [anon_sym___real] = ACTIONS(8581), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8583), + [anon_sym_PLUS_PLUS] = ACTIONS(8583), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3375] = { + [sym_expression] = STATE(1637), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_initializer_list] = STATE(1655), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(8575), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8581), + [anon_sym___real] = ACTIONS(8581), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8583), + [anon_sym_PLUS_PLUS] = ACTIONS(8583), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3376] = { + [sym_expression] = STATE(4445), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6405), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_COLON] = ACTIONS(8585), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3377] = { + [sym_expression] = STATE(2622), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_initializer_list] = STATE(2828), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(8575), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8581), + [anon_sym___real] = ACTIONS(8581), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8583), + [anon_sym_PLUS_PLUS] = ACTIONS(8583), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3378] = { + [sym_expression] = STATE(4505), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6401), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_COLON] = ACTIONS(8587), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3379] = { + [sym_expression] = STATE(4503), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6250), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8589), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3380] = { + [sym_expression] = STATE(4405), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(5863), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8591), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(8593), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3381] = { + [sym_expression] = STATE(4536), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_dictionary_pair] = STATE(5560), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACE] = ACTIONS(8595), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3382] = { + [sym_expression] = STATE(4453), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(5966), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8597), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3383] = { + [sym_expression] = STATE(1446), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_initializer_list] = STATE(1466), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1445), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(8599), + [anon_sym_LPAREN2] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8605), + [anon_sym___real] = ACTIONS(8605), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8607), + [anon_sym_PLUS_PLUS] = ACTIONS(8607), + [anon_sym_sizeof] = ACTIONS(2230), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3384] = { + [sym_expression] = STATE(4452), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6566), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8609), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3385] = { + [sym_expression] = STATE(4390), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(8557), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(8561), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_class] = ACTIONS(8611), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3386] = { + [sym_expression] = STATE(1446), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_initializer_list] = STATE(1466), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8613), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8615), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8617), + [anon_sym___real] = ACTIONS(8617), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8619), + [anon_sym_PLUS_PLUS] = ACTIONS(8619), + [anon_sym_sizeof] = ACTIONS(2312), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3387] = { + [sym_attribute] = STATE(5673), + [sym_expression] = STATE(4480), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(5773), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8567), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3388] = { + [sym_expression] = STATE(4390), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(8557), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(8561), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_class] = ACTIONS(8621), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3389] = { + [sym_expression] = STATE(1446), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_initializer_list] = STATE(1466), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8623), + [anon_sym_BANG] = ACTIONS(6732), + [anon_sym_TILDE] = ACTIONS(6732), + [anon_sym_DASH] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6730), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(6734), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6736), + [anon_sym___real] = ACTIONS(6736), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8625), + [anon_sym_PLUS_PLUS] = ACTIONS(8625), + [anon_sym_sizeof] = ACTIONS(6738), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6740), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3390] = { + [sym_expression] = STATE(1772), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1582), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1582), + [sym_call_expression] = STATE(1582), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1582), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1582), + [sym_initializer_list] = STATE(2828), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(1631), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8509), + [anon_sym_LPAREN2] = ACTIONS(8511), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8515), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8517), + [anon_sym___real] = ACTIONS(8517), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8519), + [anon_sym_PLUS_PLUS] = ACTIONS(8519), + [anon_sym_sizeof] = ACTIONS(2286), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(2288), + [anon_sym___asm__] = ACTIONS(2288), + [anon_sym___asm] = ACTIONS(2288), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3391] = { + [sym_expression] = STATE(4390), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(8557), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(8561), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_class] = ACTIONS(8627), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3392] = { + [sym_expression] = STATE(4536), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_dictionary_pair] = STATE(5801), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACE] = ACTIONS(8629), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3393] = { + [sym_expression] = STATE(1637), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_initializer_list] = STATE(1655), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3394] = { + [sym_expression] = STATE(4447), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_initializer_list] = STATE(5793), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3395] = { + [sym_expression] = STATE(4499), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6603), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_COLON] = ACTIONS(8631), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3396] = { + [sym_expression] = STATE(4444), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6493), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8633), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3397] = { + [sym_expression] = STATE(1446), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_initializer_list] = STATE(1466), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(6807), + [anon_sym_TILDE] = ACTIONS(6807), + [anon_sym_DASH] = ACTIONS(6805), + [anon_sym_PLUS] = ACTIONS(6805), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6811), + [anon_sym___real] = ACTIONS(6811), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8637), + [anon_sym_PLUS_PLUS] = ACTIONS(8637), + [anon_sym_sizeof] = ACTIONS(6813), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6815), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(6817), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3398] = { + [sym_expression] = STATE(4464), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6773), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8639), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3399] = { + [sym_expression] = STATE(4390), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(8557), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(8561), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_class] = ACTIONS(8641), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3400] = { + [sym_expression] = STATE(1637), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_initializer_list] = STATE(1655), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3401] = { + [sym_expression] = STATE(4506), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6665), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_COLON] = ACTIONS(8645), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3402] = { + [sym_attribute] = STATE(5362), + [sym_expression] = STATE(4480), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(5773), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8567), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3403] = { + [sym_expression] = STATE(1637), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1582), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1582), + [sym_call_expression] = STATE(1582), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1582), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1582), + [sym_initializer_list] = STATE(1655), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(1631), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8509), + [anon_sym_LPAREN2] = ACTIONS(8511), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8515), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8517), + [anon_sym___real] = ACTIONS(8517), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8519), + [anon_sym_PLUS_PLUS] = ACTIONS(8519), + [anon_sym_sizeof] = ACTIONS(2286), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(2288), + [anon_sym___asm__] = ACTIONS(2288), + [anon_sym___asm] = ACTIONS(2288), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3404] = { + [sym_expression] = STATE(1637), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_initializer_list] = STATE(1655), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3405] = { + [sym_expression] = STATE(4491), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6471), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_RPAREN] = ACTIONS(8647), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3406] = { + [sym_expression] = STATE(4508), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6690), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_COLON] = ACTIONS(8649), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3407] = { + [sym_expression] = STATE(1446), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_initializer_list] = STATE(1466), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8651), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8653), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8655), + [anon_sym___real] = ACTIONS(8655), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8657), + [anon_sym_PLUS_PLUS] = ACTIONS(8657), + [anon_sym_sizeof] = ACTIONS(2342), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3408] = { + [sym_expression] = STATE(4510), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(5955), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_COLON] = ACTIONS(8659), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3409] = { + [sym_expression] = STATE(4449), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6201), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8661), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3410] = { + [sym_expression] = STATE(4536), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_dictionary_pair] = STATE(5801), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACE] = ACTIONS(8663), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3411] = { + [sym_expression] = STATE(4509), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6732), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_COLON] = ACTIONS(8665), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3412] = { + [sym_expression] = STATE(4536), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_dictionary_pair] = STATE(5801), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACE] = ACTIONS(8667), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3413] = { + [sym_expression] = STATE(4492), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6492), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_RPAREN] = ACTIONS(8669), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3414] = { + [sym_expression] = STATE(4458), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_initializer_list] = STATE(5846), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3415] = { + [sym_expression] = STATE(4404), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(5773), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8591), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(8671), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3416] = { + [sym_expression] = STATE(4536), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_dictionary_pair] = STATE(5354), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACE] = ACTIONS(8673), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3417] = { + [sym_expression] = STATE(4443), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6266), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_COLON] = ACTIONS(8675), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3418] = { + [sym_expression] = STATE(4485), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6511), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8677), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3419] = { + [sym_expression] = STATE(4493), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(6552), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8679), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3420] = { + [sym_attribute] = STATE(5429), + [sym_expression] = STATE(4480), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(5773), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8567), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3421] = { + [sym_expression] = STATE(1453), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_RBRACK] = ACTIONS(8681), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3422] = { + [sym_expression] = STATE(1453), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_RBRACK] = ACTIONS(8683), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3423] = { + [sym_expression] = STATE(1453), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_RBRACK] = ACTIONS(8685), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3424] = { + [sym_expression] = STATE(4384), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(6807), + [anon_sym_TILDE] = ACTIONS(6807), + [anon_sym_DASH] = ACTIONS(6805), + [anon_sym_PLUS] = ACTIONS(6805), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(8687), + [anon_sym_LBRACE] = ACTIONS(8689), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6811), + [anon_sym___real] = ACTIONS(6811), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8637), + [anon_sym_PLUS_PLUS] = ACTIONS(8637), + [anon_sym_sizeof] = ACTIONS(6813), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6815), + [anon_sym_DQUOTE] = ACTIONS(8691), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(6817), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3425] = { + [sym_expression] = STATE(4528), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_RPAREN] = ACTIONS(8693), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3426] = { + [sym_expression] = STATE(4587), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8695), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3427] = { + [sym_expression] = STATE(1453), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_RBRACK] = ACTIONS(8697), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3428] = { + [sym_expression] = STATE(4495), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(8699), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3429] = { + [sym_expression] = STATE(1453), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_RBRACK] = ACTIONS(8701), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3430] = { + [sym_expression] = STATE(4332), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8687), + [anon_sym_LBRACE] = ACTIONS(8689), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(8691), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3431] = { + [sym_expression] = STATE(4517), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8703), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3432] = { + [sym_expression] = STATE(1453), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_RBRACK] = ACTIONS(8705), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3433] = { + [sym_expression] = STATE(1751), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1582), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1582), + [sym_call_expression] = STATE(1582), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1582), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1582), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(1631), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8509), + [anon_sym_LPAREN2] = ACTIONS(8511), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8515), + [anon_sym_LBRACK] = ACTIONS(8557), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8517), + [anon_sym___real] = ACTIONS(8517), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8519), + [anon_sym_PLUS_PLUS] = ACTIONS(8519), + [anon_sym_sizeof] = ACTIONS(2286), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(2288), + [anon_sym___asm__] = ACTIONS(2288), + [anon_sym___asm] = ACTIONS(2288), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(8707), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3434] = { + [sym_expression] = STATE(1453), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_RBRACK] = ACTIONS(8709), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3435] = { + [sym_expression] = STATE(4457), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(5863), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8591), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3436] = { + [sym_expression] = STATE(4390), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(8557), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(8561), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3437] = { + [sym_expression] = STATE(4428), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_RPAREN] = ACTIONS(8711), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3438] = { + [sym_expression] = STATE(4480), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(5773), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8591), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(6481), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3439] = { + [sym_expression] = STATE(4554), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8713), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3440] = { + [sym_expression] = STATE(4432), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(5773), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8591), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3441] = { + [sym_expression] = STATE(4515), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [anon_sym_COMMA] = ACTIONS(8715), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3442] = { + [sym_expression] = STATE(4480), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(5773), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8591), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(8717), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3443] = { + [sym_expression] = STATE(4498), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(8557), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(8561), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3444] = { + [sym_expression] = STATE(4441), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(5582), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3445] = { + [sym_expression] = STATE(2527), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1995), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1995), + [sym_call_expression] = STATE(1995), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1995), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1995), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8527), + [anon_sym_LPAREN2] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8533), + [anon_sym_LBRACK] = ACTIONS(8557), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8535), + [anon_sym___real] = ACTIONS(8535), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8537), + [anon_sym_PLUS_PLUS] = ACTIONS(8537), + [anon_sym_sizeof] = ACTIONS(2898), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(8561), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3446] = { + [sym_type_qualifier] = STATE(3446), + [sym_alignas_qualifier] = STATE(3575), + [aux_sym__type_definition_type_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(6344), + [anon_sym_LPAREN2] = ACTIONS(6346), + [anon_sym_BANG] = ACTIONS(6346), + [anon_sym_TILDE] = ACTIONS(6346), + [anon_sym_DASH] = ACTIONS(6344), + [anon_sym_PLUS] = ACTIONS(6344), + [anon_sym_STAR] = ACTIONS(6346), + [anon_sym_CARET] = ACTIONS(6346), + [anon_sym_AMP] = ACTIONS(6346), + [anon_sym___extension__] = ACTIONS(8719), + [anon_sym_noreturn] = ACTIONS(8719), + [anon_sym_LBRACK] = ACTIONS(6346), + [anon_sym_const] = ACTIONS(8719), + [anon_sym_constexpr] = ACTIONS(8719), + [anon_sym_volatile] = ACTIONS(8719), + [anon_sym_restrict] = ACTIONS(8719), + [anon_sym___restrict__] = ACTIONS(8719), + [anon_sym__Atomic] = ACTIONS(8719), + [anon_sym__Noreturn] = ACTIONS(8719), + [anon_sym__Nonnull] = ACTIONS(8719), + [anon_sym_nullable] = ACTIONS(8719), + [anon_sym__Complex] = ACTIONS(8719), + [anon_sym__Nullable] = ACTIONS(8719), + [anon_sym__Nullable_result] = ACTIONS(8719), + [anon_sym__Null_unspecified] = ACTIONS(8719), + [anon_sym___autoreleasing] = ACTIONS(8719), + [anon_sym___block] = ACTIONS(8719), + [anon_sym___bridge] = ACTIONS(8719), + [anon_sym___bridge_retained] = ACTIONS(8719), + [anon_sym___bridge_transfer] = ACTIONS(8719), + [anon_sym___complex] = ACTIONS(8719), + [anon_sym___const] = ACTIONS(8719), + [anon_sym___imag] = ACTIONS(8719), + [anon_sym___kindof] = ACTIONS(8719), + [anon_sym___nonnull] = ACTIONS(8719), + [anon_sym___nullable] = ACTIONS(8719), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8719), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8719), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8719), + [anon_sym___real] = ACTIONS(8719), + [anon_sym___strong] = ACTIONS(8719), + [anon_sym___unsafe_unretained] = ACTIONS(8719), + [anon_sym___unused] = ACTIONS(8719), + [anon_sym___weak] = ACTIONS(8719), + [anon_sym_alignas] = ACTIONS(8722), + [anon_sym__Alignas] = ACTIONS(8722), + [anon_sym_struct] = ACTIONS(6344), + [anon_sym_in] = ACTIONS(6344), + [anon_sym_DASH_DASH] = ACTIONS(6346), + [anon_sym_PLUS_PLUS] = ACTIONS(6346), + [anon_sym_sizeof] = ACTIONS(6344), + [anon_sym___alignof__] = ACTIONS(6344), + [anon_sym___alignof] = ACTIONS(6344), + [anon_sym__alignof] = ACTIONS(6344), + [anon_sym_alignof] = ACTIONS(6344), + [anon_sym__Alignof] = ACTIONS(6344), + [anon_sym_offsetof] = ACTIONS(6344), + [anon_sym__Generic] = ACTIONS(6344), + [anon_sym_asm] = ACTIONS(6344), + [anon_sym___asm__] = ACTIONS(6344), + [anon_sym___asm] = ACTIONS(6344), + [sym_number_literal] = ACTIONS(6346), + [anon_sym_L_SQUOTE] = ACTIONS(6346), + [anon_sym_u_SQUOTE] = ACTIONS(6346), + [anon_sym_U_SQUOTE] = ACTIONS(6346), + [anon_sym_u8_SQUOTE] = ACTIONS(6346), + [anon_sym_SQUOTE] = ACTIONS(6346), + [anon_sym_AT] = ACTIONS(6344), + [anon_sym_DQUOTE] = ACTIONS(6346), + [anon_sym_L_DQUOTE] = ACTIONS(6346), + [anon_sym_u_DQUOTE] = ACTIONS(6346), + [anon_sym_U_DQUOTE] = ACTIONS(6346), + [anon_sym_u8_DQUOTE] = ACTIONS(6346), + [sym_true] = ACTIONS(6344), + [sym_false] = ACTIONS(6344), + [anon_sym_NULL] = ACTIONS(6344), + [anon_sym_nullptr] = ACTIONS(6344), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(6346), + [anon_sym_ATavailable] = ACTIONS(6346), + [anon_sym___builtin_available] = ACTIONS(6344), + [anon_sym_va_arg] = ACTIONS(6344), + [anon_sym_ATencode] = ACTIONS(6346), + [anon_sym_id] = ACTIONS(6344), + }, + [3447] = { + [sym_expression] = STATE(1569), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1445), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(8599), + [anon_sym_LPAREN2] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8687), + [anon_sym_LBRACE] = ACTIONS(8689), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8605), + [anon_sym___real] = ACTIONS(8605), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8607), + [anon_sym_PLUS_PLUS] = ACTIONS(8607), + [anon_sym_sizeof] = ACTIONS(2230), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(8725), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3448] = { + [sym_expression] = STATE(4536), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_dictionary_pair] = STATE(5801), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3449] = { + [sym_expression] = STATE(4351), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8623), + [anon_sym_BANG] = ACTIONS(6732), + [anon_sym_TILDE] = ACTIONS(6732), + [anon_sym_DASH] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6730), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(6734), + [anon_sym_LBRACK] = ACTIONS(8687), + [anon_sym_LBRACE] = ACTIONS(8689), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6736), + [anon_sym___real] = ACTIONS(6736), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8625), + [anon_sym_PLUS_PLUS] = ACTIONS(8625), + [anon_sym_sizeof] = ACTIONS(6738), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6740), + [anon_sym_DQUOTE] = ACTIONS(8691), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3450] = { + [sym_expression] = STATE(4495), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(8727), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3451] = { + [sym_expression] = STATE(2100), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8651), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8653), + [anon_sym_LBRACK] = ACTIONS(8687), + [anon_sym_LBRACE] = ACTIONS(8689), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8655), + [anon_sym___real] = ACTIONS(8655), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8657), + [anon_sym_PLUS_PLUS] = ACTIONS(8657), + [anon_sym_sizeof] = ACTIONS(2342), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(8691), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3452] = { + [sym_expression] = STATE(4495), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(8729), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3453] = { + [sym_expression] = STATE(1453), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_RBRACK] = ACTIONS(8731), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3454] = { + [sym_expression] = STATE(1453), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_RBRACK] = ACTIONS(8733), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3455] = { + [sym_expression] = STATE(4440), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_RPAREN] = ACTIONS(8735), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3456] = { + [sym_expression] = STATE(1453), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_RBRACK] = ACTIONS(8737), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3457] = { + [sym_expression] = STATE(1453), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_RBRACK] = ACTIONS(8739), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3458] = { + [sym_expression] = STATE(4480), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(5773), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8591), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(6517), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3459] = { + [sym_expression] = STATE(4412), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(8557), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(8561), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3460] = { + [sym_expression] = STATE(4480), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(5773), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8591), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(8741), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3461] = { + [sym_expression] = STATE(1453), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_RBRACK] = ACTIONS(8743), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3462] = { + [sym_expression] = STATE(4551), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8745), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3463] = { + [sym_expression] = STATE(4523), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8747), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3464] = { + [sym_expression] = STATE(4514), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_RPAREN] = ACTIONS(8749), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3465] = { + [sym_expression] = STATE(4512), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8751), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3466] = { + [sym_expression] = STATE(4495), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(8753), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3467] = { + [sym_expression] = STATE(4571), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8755), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3468] = { + [sym_expression] = STATE(4480), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_generic_specifier] = STATE(5773), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8591), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3469] = { + [sym_expression] = STATE(4490), + [sym__string] = STATE(1677), + [sym_comma_expression] = STATE(5582), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3470] = { + [sym_expression] = STATE(1453), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_RBRACK] = ACTIONS(8757), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3471] = { + [sym_expression] = STATE(1921), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8613), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8615), + [anon_sym_LBRACK] = ACTIONS(8687), + [anon_sym_LBRACE] = ACTIONS(8689), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8617), + [anon_sym___real] = ACTIONS(8617), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8619), + [anon_sym_PLUS_PLUS] = ACTIONS(8619), + [anon_sym_sizeof] = ACTIONS(2312), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(8691), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3472] = { + [sym_expression] = STATE(1453), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_RBRACK] = ACTIONS(8759), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3473] = { + [sym_expression] = STATE(2665), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(8575), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_LBRACK] = ACTIONS(8557), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8581), + [anon_sym___real] = ACTIONS(8581), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8583), + [anon_sym_PLUS_PLUS] = ACTIONS(8583), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(8561), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3474] = { + [sym_expression] = STATE(1450), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1445), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(8599), + [anon_sym_LPAREN2] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8605), + [anon_sym___real] = ACTIONS(8605), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8607), + [anon_sym_PLUS_PLUS] = ACTIONS(8607), + [anon_sym_sizeof] = ACTIONS(2230), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3475] = { + [sym_expression] = STATE(4586), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3476] = { + [sym_expression] = STATE(1576), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1445), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(8599), + [anon_sym_LPAREN2] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8605), + [anon_sym___real] = ACTIONS(8605), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8607), + [anon_sym_PLUS_PLUS] = ACTIONS(8607), + [anon_sym_sizeof] = ACTIONS(2230), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3477] = { + [sym_expression] = STATE(1577), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1445), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(8599), + [anon_sym_LPAREN2] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8605), + [anon_sym___real] = ACTIONS(8605), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8607), + [anon_sym_PLUS_PLUS] = ACTIONS(8607), + [anon_sym_sizeof] = ACTIONS(2230), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3478] = { + [sym_expression] = STATE(1578), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1445), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(8599), + [anon_sym_LPAREN2] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8605), + [anon_sym___real] = ACTIONS(8605), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8607), + [anon_sym_PLUS_PLUS] = ACTIONS(8607), + [anon_sym_sizeof] = ACTIONS(2230), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3479] = { + [sym_expression] = STATE(1579), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1445), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(8599), + [anon_sym_LPAREN2] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8605), + [anon_sym___real] = ACTIONS(8605), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8607), + [anon_sym_PLUS_PLUS] = ACTIONS(8607), + [anon_sym_sizeof] = ACTIONS(2230), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3480] = { + [sym_expression] = STATE(4421), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3481] = { + [sym_expression] = STATE(1446), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1445), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(8599), + [anon_sym_LPAREN2] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8605), + [anon_sym___real] = ACTIONS(8605), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8607), + [anon_sym_PLUS_PLUS] = ACTIONS(8607), + [anon_sym_sizeof] = ACTIONS(2230), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3482] = { + [sym_expression] = STATE(4574), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3483] = { + [sym_expression] = STATE(2526), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1995), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1995), + [sym_call_expression] = STATE(1995), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1995), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1995), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8527), + [anon_sym_LPAREN2] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8533), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8535), + [anon_sym___real] = ACTIONS(8535), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8537), + [anon_sym_PLUS_PLUS] = ACTIONS(8537), + [anon_sym_sizeof] = ACTIONS(2898), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3484] = { + [sym_expression] = STATE(4337), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3485] = { + [sym_expression] = STATE(1450), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3486] = { + [sym_expression] = STATE(4496), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3487] = { + [sym_expression] = STATE(4394), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3488] = { + [sym_expression] = STATE(1581), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1445), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(8599), + [anon_sym_LPAREN2] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8605), + [anon_sym___real] = ACTIONS(8605), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8607), + [anon_sym_PLUS_PLUS] = ACTIONS(8607), + [anon_sym_sizeof] = ACTIONS(2230), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3489] = { + [sym_expression] = STATE(4325), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3490] = { + [sym_expression] = STATE(4319), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3491] = { + [sym_expression] = STATE(1628), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3492] = { + [sym_expression] = STATE(1628), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1582), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1582), + [sym_call_expression] = STATE(1582), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1582), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1582), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(1631), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8509), + [anon_sym_LPAREN2] = ACTIONS(8511), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8515), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8517), + [anon_sym___real] = ACTIONS(8517), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8519), + [anon_sym_PLUS_PLUS] = ACTIONS(8519), + [anon_sym_sizeof] = ACTIONS(2286), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(2288), + [anon_sym___asm__] = ACTIONS(2288), + [anon_sym___asm] = ACTIONS(2288), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3493] = { + [sym_expression] = STATE(1454), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3494] = { + [sym_expression] = STATE(4407), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3495] = { + [sym_expression] = STATE(1635), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1582), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1582), + [sym_call_expression] = STATE(1582), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1582), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1582), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(1631), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8509), + [anon_sym_LPAREN2] = ACTIONS(8511), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8515), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8517), + [anon_sym___real] = ACTIONS(8517), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8519), + [anon_sym_PLUS_PLUS] = ACTIONS(8519), + [anon_sym_sizeof] = ACTIONS(2286), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(2288), + [anon_sym___asm__] = ACTIONS(2288), + [anon_sym___asm] = ACTIONS(2288), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3496] = { + [sym_expression] = STATE(1627), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1582), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1582), + [sym_call_expression] = STATE(1582), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1582), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1582), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(1631), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8509), + [anon_sym_LPAREN2] = ACTIONS(8761), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8515), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8517), + [anon_sym___real] = ACTIONS(8517), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8519), + [anon_sym_PLUS_PLUS] = ACTIONS(8519), + [anon_sym_sizeof] = ACTIONS(2286), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(2288), + [anon_sym___asm__] = ACTIONS(2288), + [anon_sym___asm] = ACTIONS(2288), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3497] = { + [sym_expression] = STATE(4318), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3498] = { + [sym_expression] = STATE(4336), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3499] = { + [sym_expression] = STATE(4320), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3500] = { + [sym_expression] = STATE(4329), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3501] = { + [sym_expression] = STATE(4321), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3502] = { + [sym_expression] = STATE(4322), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3503] = { + [sym_expression] = STATE(4323), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3504] = { + [sym_expression] = STATE(4537), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3505] = { + [sym_expression] = STATE(4326), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3506] = { + [sym_expression] = STATE(1765), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1582), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1582), + [sym_call_expression] = STATE(1582), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1582), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1582), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(1631), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8509), + [anon_sym_LPAREN2] = ACTIONS(8511), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8515), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8517), + [anon_sym___real] = ACTIONS(8517), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8519), + [anon_sym_PLUS_PLUS] = ACTIONS(8519), + [anon_sym_sizeof] = ACTIONS(2286), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(2288), + [anon_sym___asm__] = ACTIONS(2288), + [anon_sym___asm] = ACTIONS(2288), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3507] = { + [sym_expression] = STATE(4395), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3508] = { + [sym_expression] = STATE(1630), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3509] = { + [sym_expression] = STATE(1568), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1445), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(8599), + [anon_sym_LPAREN2] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8605), + [anon_sym___real] = ACTIONS(8605), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8607), + [anon_sym_PLUS_PLUS] = ACTIONS(8607), + [anon_sym_sizeof] = ACTIONS(2230), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3510] = { + [sym_expression] = STATE(1449), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3511] = { + [sym_expression] = STATE(1453), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8623), + [anon_sym_BANG] = ACTIONS(6732), + [anon_sym_TILDE] = ACTIONS(6732), + [anon_sym_DASH] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6730), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(6734), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6736), + [anon_sym___real] = ACTIONS(6736), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8625), + [anon_sym_PLUS_PLUS] = ACTIONS(8625), + [anon_sym_sizeof] = ACTIONS(6738), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6740), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3512] = { + [sym_expression] = STATE(1446), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3513] = { + [sym_expression] = STATE(1451), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3514] = { + [sym_expression] = STATE(1452), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8763), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3515] = { + [sym_expression] = STATE(4413), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3516] = { + [sym_expression] = STATE(1629), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3517] = { + [sym_expression] = STATE(1449), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1445), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(8599), + [anon_sym_LPAREN2] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8605), + [anon_sym___real] = ACTIONS(8605), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8607), + [anon_sym_PLUS_PLUS] = ACTIONS(8607), + [anon_sym_sizeof] = ACTIONS(2230), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3518] = { + [sym_expression] = STATE(1451), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1445), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(8599), + [anon_sym_LPAREN2] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8605), + [anon_sym___real] = ACTIONS(8605), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8607), + [anon_sym_PLUS_PLUS] = ACTIONS(8607), + [anon_sym_sizeof] = ACTIONS(2230), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3519] = { + [sym_expression] = STATE(1452), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1445), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(8599), + [anon_sym_LPAREN2] = ACTIONS(8765), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8605), + [anon_sym___real] = ACTIONS(8605), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8607), + [anon_sym_PLUS_PLUS] = ACTIONS(8607), + [anon_sym_sizeof] = ACTIONS(2230), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3520] = { + [sym_expression] = STATE(4583), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3521] = { + [sym_expression] = STATE(4396), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3522] = { + [sym_expression] = STATE(4456), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3523] = { + [sym_expression] = STATE(4353), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8623), + [anon_sym_BANG] = ACTIONS(6732), + [anon_sym_TILDE] = ACTIONS(6732), + [anon_sym_DASH] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6730), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(6734), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6736), + [anon_sym___real] = ACTIONS(6736), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8625), + [anon_sym_PLUS_PLUS] = ACTIONS(8625), + [anon_sym_sizeof] = ACTIONS(6738), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6740), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3524] = { + [sym_expression] = STATE(1450), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8623), + [anon_sym_BANG] = ACTIONS(6732), + [anon_sym_TILDE] = ACTIONS(6732), + [anon_sym_DASH] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6730), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(6734), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6736), + [anon_sym___real] = ACTIONS(6736), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8625), + [anon_sym_PLUS_PLUS] = ACTIONS(8625), + [anon_sym_sizeof] = ACTIONS(6738), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6740), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3525] = { + [sym_expression] = STATE(4345), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8623), + [anon_sym_BANG] = ACTIONS(6732), + [anon_sym_TILDE] = ACTIONS(6732), + [anon_sym_DASH] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6730), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(6734), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6736), + [anon_sym___real] = ACTIONS(6736), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8625), + [anon_sym_PLUS_PLUS] = ACTIONS(8625), + [anon_sym_sizeof] = ACTIONS(6738), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6740), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3526] = { + [sym_expression] = STATE(4352), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8623), + [anon_sym_BANG] = ACTIONS(6732), + [anon_sym_TILDE] = ACTIONS(6732), + [anon_sym_DASH] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6730), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(6734), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6736), + [anon_sym___real] = ACTIONS(6736), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8625), + [anon_sym_PLUS_PLUS] = ACTIONS(8625), + [anon_sym_sizeof] = ACTIONS(6738), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6740), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3527] = { + [sym_expression] = STATE(1454), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8623), + [anon_sym_BANG] = ACTIONS(6732), + [anon_sym_TILDE] = ACTIONS(6732), + [anon_sym_DASH] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6730), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(6734), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6736), + [anon_sym___real] = ACTIONS(6736), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8625), + [anon_sym_PLUS_PLUS] = ACTIONS(8625), + [anon_sym_sizeof] = ACTIONS(6738), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6740), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3528] = { + [sym_expression] = STATE(4355), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8623), + [anon_sym_BANG] = ACTIONS(6732), + [anon_sym_TILDE] = ACTIONS(6732), + [anon_sym_DASH] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6730), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(6734), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6736), + [anon_sym___real] = ACTIONS(6736), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8625), + [anon_sym_PLUS_PLUS] = ACTIONS(8625), + [anon_sym_sizeof] = ACTIONS(6738), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6740), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3529] = { + [sym_expression] = STATE(4397), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3530] = { + [sym_expression] = STATE(4350), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8623), + [anon_sym_BANG] = ACTIONS(6732), + [anon_sym_TILDE] = ACTIONS(6732), + [anon_sym_DASH] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6730), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(6734), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6736), + [anon_sym___real] = ACTIONS(6736), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8625), + [anon_sym_PLUS_PLUS] = ACTIONS(8625), + [anon_sym_sizeof] = ACTIONS(6738), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6740), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3531] = { + [sym_expression] = STATE(4349), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8623), + [anon_sym_BANG] = ACTIONS(6732), + [anon_sym_TILDE] = ACTIONS(6732), + [anon_sym_DASH] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6730), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(6734), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6736), + [anon_sym___real] = ACTIONS(6736), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8625), + [anon_sym_PLUS_PLUS] = ACTIONS(8625), + [anon_sym_sizeof] = ACTIONS(6738), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6740), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3532] = { + [sym_expression] = STATE(4348), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8623), + [anon_sym_BANG] = ACTIONS(6732), + [anon_sym_TILDE] = ACTIONS(6732), + [anon_sym_DASH] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6730), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(6734), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6736), + [anon_sym___real] = ACTIONS(6736), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8625), + [anon_sym_PLUS_PLUS] = ACTIONS(8625), + [anon_sym_sizeof] = ACTIONS(6738), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6740), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3533] = { + [sym_expression] = STATE(4341), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8623), + [anon_sym_BANG] = ACTIONS(6732), + [anon_sym_TILDE] = ACTIONS(6732), + [anon_sym_DASH] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6730), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(6734), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6736), + [anon_sym___real] = ACTIONS(6736), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8625), + [anon_sym_PLUS_PLUS] = ACTIONS(8625), + [anon_sym_sizeof] = ACTIONS(6738), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6740), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3534] = { + [sym_expression] = STATE(4344), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8623), + [anon_sym_BANG] = ACTIONS(6732), + [anon_sym_TILDE] = ACTIONS(6732), + [anon_sym_DASH] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6730), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(6734), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6736), + [anon_sym___real] = ACTIONS(6736), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8625), + [anon_sym_PLUS_PLUS] = ACTIONS(8625), + [anon_sym_sizeof] = ACTIONS(6738), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6740), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3535] = { + [sym_expression] = STATE(4347), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8623), + [anon_sym_BANG] = ACTIONS(6732), + [anon_sym_TILDE] = ACTIONS(6732), + [anon_sym_DASH] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6730), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(6734), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6736), + [anon_sym___real] = ACTIONS(6736), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8625), + [anon_sym_PLUS_PLUS] = ACTIONS(8625), + [anon_sym_sizeof] = ACTIONS(6738), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6740), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3536] = { + [sym_expression] = STATE(4354), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8623), + [anon_sym_BANG] = ACTIONS(6732), + [anon_sym_TILDE] = ACTIONS(6732), + [anon_sym_DASH] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6730), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(6734), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6736), + [anon_sym___real] = ACTIONS(6736), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8625), + [anon_sym_PLUS_PLUS] = ACTIONS(8625), + [anon_sym_sizeof] = ACTIONS(6738), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6740), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3537] = { + [sym_expression] = STATE(1446), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8623), + [anon_sym_BANG] = ACTIONS(6732), + [anon_sym_TILDE] = ACTIONS(6732), + [anon_sym_DASH] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6730), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(6734), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6736), + [anon_sym___real] = ACTIONS(6736), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8625), + [anon_sym_PLUS_PLUS] = ACTIONS(8625), + [anon_sym_sizeof] = ACTIONS(6738), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6740), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3538] = { + [sym_expression] = STATE(4346), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8623), + [anon_sym_BANG] = ACTIONS(6732), + [anon_sym_TILDE] = ACTIONS(6732), + [anon_sym_DASH] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6730), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(6734), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6736), + [anon_sym___real] = ACTIONS(6736), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8625), + [anon_sym_PLUS_PLUS] = ACTIONS(8625), + [anon_sym_sizeof] = ACTIONS(6738), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6740), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3539] = { + [sym_expression] = STATE(4334), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3540] = { + [sym_expression] = STATE(4398), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3541] = { + [sym_expression] = STATE(4342), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8623), + [anon_sym_BANG] = ACTIONS(6732), + [anon_sym_TILDE] = ACTIONS(6732), + [anon_sym_DASH] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6730), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(6734), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6736), + [anon_sym___real] = ACTIONS(6736), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8625), + [anon_sym_PLUS_PLUS] = ACTIONS(8625), + [anon_sym_sizeof] = ACTIONS(6738), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6740), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3542] = { + [sym_expression] = STATE(4393), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3543] = { + [sym_expression] = STATE(4399), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3544] = { + [sym_expression] = STATE(4400), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3545] = { + [sym_expression] = STATE(4482), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3546] = { + [sym_expression] = STATE(4414), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3547] = { + [sym_expression] = STATE(1628), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3548] = { + [sym_expression] = STATE(1453), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1445), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(8599), + [anon_sym_LPAREN2] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8605), + [anon_sym___real] = ACTIONS(8605), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8607), + [anon_sym_PLUS_PLUS] = ACTIONS(8607), + [anon_sym_sizeof] = ACTIONS(2230), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3549] = { + [sym_expression] = STATE(4430), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3550] = { + [sym_expression] = STATE(1635), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3551] = { + [sym_expression] = STATE(1627), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8767), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3552] = { + [sym_expression] = STATE(4567), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3553] = { + [sym_expression] = STATE(4415), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3554] = { + [sym_expression] = STATE(4573), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3555] = { + [sym_expression] = STATE(4416), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3556] = { + [sym_expression] = STATE(1745), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1582), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1582), + [sym_call_expression] = STATE(1582), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1582), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1582), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(1631), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8509), + [anon_sym_LPAREN2] = ACTIONS(8511), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8515), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8517), + [anon_sym___real] = ACTIONS(8517), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8519), + [anon_sym_PLUS_PLUS] = ACTIONS(8519), + [anon_sym_sizeof] = ACTIONS(2286), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(2288), + [anon_sym___asm__] = ACTIONS(2288), + [anon_sym___asm] = ACTIONS(2288), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3557] = { + [sym_expression] = STATE(1629), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1582), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1582), + [sym_call_expression] = STATE(1582), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1582), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1582), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(1631), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8509), + [anon_sym_LPAREN2] = ACTIONS(8511), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8515), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8517), + [anon_sym___real] = ACTIONS(8517), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8519), + [anon_sym_PLUS_PLUS] = ACTIONS(8519), + [anon_sym_sizeof] = ACTIONS(2286), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(2288), + [anon_sym___asm__] = ACTIONS(2288), + [anon_sym___asm] = ACTIONS(2288), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3558] = { + [sym_expression] = STATE(1630), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3559] = { + [sym_expression] = STATE(4417), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3560] = { + [sym_expression] = STATE(4418), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3561] = { + [sym_expression] = STATE(1453), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3562] = { + [sym_expression] = STATE(4419), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3563] = { + [sym_expression] = STATE(4420), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3564] = { + [sym_expression] = STATE(4423), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3565] = { + [sym_expression] = STATE(4408), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3566] = { + [sym_expression] = STATE(4409), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3567] = { + [sym_expression] = STATE(4576), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3568] = { + [sym_expression] = STATE(4411), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3569] = { + [sym_expression] = STATE(4429), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3570] = { + [sym_expression] = STATE(4585), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3571] = { + [sym_expression] = STATE(4427), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3572] = { + [sym_expression] = STATE(1452), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8769), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8615), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8617), + [anon_sym___real] = ACTIONS(8617), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8619), + [anon_sym_PLUS_PLUS] = ACTIONS(8619), + [anon_sym_sizeof] = ACTIONS(2312), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3573] = { + [sym_expression] = STATE(1637), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3574] = { + [sym_expression] = STATE(4516), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3575] = { + [sym_identifier] = ACTIONS(2922), + [anon_sym_LPAREN2] = ACTIONS(2928), + [anon_sym_BANG] = ACTIONS(2928), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_DASH] = ACTIONS(2922), + [anon_sym_PLUS] = ACTIONS(2922), + [anon_sym_STAR] = ACTIONS(2928), + [anon_sym_CARET] = ACTIONS(2928), + [anon_sym_AMP] = ACTIONS(2928), + [anon_sym___extension__] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2928), + [anon_sym_RBRACK] = ACTIONS(2928), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2922), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2922), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(2922), + [anon_sym_DASH_DASH] = ACTIONS(2928), + [anon_sym_PLUS_PLUS] = ACTIONS(2928), + [anon_sym_sizeof] = ACTIONS(2922), + [anon_sym___alignof__] = ACTIONS(2922), + [anon_sym___alignof] = ACTIONS(2922), + [anon_sym__alignof] = ACTIONS(2922), + [anon_sym_alignof] = ACTIONS(2922), + [anon_sym__Alignof] = ACTIONS(2922), + [anon_sym_offsetof] = ACTIONS(2922), + [anon_sym__Generic] = ACTIONS(2922), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [anon_sym___asm] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2928), + [anon_sym_L_SQUOTE] = ACTIONS(2928), + [anon_sym_u_SQUOTE] = ACTIONS(2928), + [anon_sym_U_SQUOTE] = ACTIONS(2928), + [anon_sym_u8_SQUOTE] = ACTIONS(2928), + [anon_sym_SQUOTE] = ACTIONS(2928), + [anon_sym_AT] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2928), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2922), + [sym_false] = ACTIONS(2922), + [anon_sym_NULL] = ACTIONS(2922), + [anon_sym_nullptr] = ACTIONS(2922), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2928), + [anon_sym_ATavailable] = ACTIONS(2928), + [anon_sym___builtin_available] = ACTIONS(2922), + [anon_sym_va_arg] = ACTIONS(2922), + [anon_sym_ATencode] = ACTIONS(2928), + [anon_sym_id] = ACTIONS(2922), + }, + [3576] = { + [sym_expression] = STATE(4539), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3577] = { + [sym_identifier] = ACTIONS(5630), + [anon_sym_LPAREN2] = ACTIONS(5632), + [anon_sym_BANG] = ACTIONS(5632), + [anon_sym_TILDE] = ACTIONS(5632), + [anon_sym_DASH] = ACTIONS(5630), + [anon_sym_PLUS] = ACTIONS(5630), + [anon_sym_STAR] = ACTIONS(5632), + [anon_sym_CARET] = ACTIONS(5632), + [anon_sym_AMP] = ACTIONS(5632), + [anon_sym___extension__] = ACTIONS(5630), + [anon_sym_noreturn] = ACTIONS(5630), + [anon_sym_LBRACK] = ACTIONS(5632), + [anon_sym_RBRACK] = ACTIONS(5632), + [anon_sym_static] = ACTIONS(5630), + [anon_sym_const] = ACTIONS(5630), + [anon_sym_constexpr] = ACTIONS(5630), + [anon_sym_volatile] = ACTIONS(5630), + [anon_sym_restrict] = ACTIONS(5630), + [anon_sym___restrict__] = ACTIONS(5630), + [anon_sym__Atomic] = ACTIONS(5630), + [anon_sym__Noreturn] = ACTIONS(5630), + [anon_sym__Nonnull] = ACTIONS(5630), + [anon_sym_nullable] = ACTIONS(5630), + [anon_sym__Complex] = ACTIONS(5630), + [anon_sym__Nullable] = ACTIONS(5630), + [anon_sym__Nullable_result] = ACTIONS(5630), + [anon_sym__Null_unspecified] = ACTIONS(5630), + [anon_sym___autoreleasing] = ACTIONS(5630), + [anon_sym___block] = ACTIONS(5630), + [anon_sym___bridge] = ACTIONS(5630), + [anon_sym___bridge_retained] = ACTIONS(5630), + [anon_sym___bridge_transfer] = ACTIONS(5630), + [anon_sym___complex] = ACTIONS(5630), + [anon_sym___const] = ACTIONS(5630), + [anon_sym___imag] = ACTIONS(5630), + [anon_sym___kindof] = ACTIONS(5630), + [anon_sym___nonnull] = ACTIONS(5630), + [anon_sym___nullable] = ACTIONS(5630), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5630), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5630), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5630), + [anon_sym___real] = ACTIONS(5630), + [anon_sym___strong] = ACTIONS(5630), + [anon_sym___unsafe_unretained] = ACTIONS(5630), + [anon_sym___unused] = ACTIONS(5630), + [anon_sym___weak] = ACTIONS(5630), + [anon_sym_alignas] = ACTIONS(5630), + [anon_sym__Alignas] = ACTIONS(5630), + [anon_sym_struct] = ACTIONS(5630), + [anon_sym_in] = ACTIONS(5630), + [anon_sym_DASH_DASH] = ACTIONS(5632), + [anon_sym_PLUS_PLUS] = ACTIONS(5632), + [anon_sym_sizeof] = ACTIONS(5630), + [anon_sym___alignof__] = ACTIONS(5630), + [anon_sym___alignof] = ACTIONS(5630), + [anon_sym__alignof] = ACTIONS(5630), + [anon_sym_alignof] = ACTIONS(5630), + [anon_sym__Alignof] = ACTIONS(5630), + [anon_sym_offsetof] = ACTIONS(5630), + [anon_sym__Generic] = ACTIONS(5630), + [anon_sym_asm] = ACTIONS(5630), + [anon_sym___asm__] = ACTIONS(5630), + [anon_sym___asm] = ACTIONS(5630), + [sym_number_literal] = ACTIONS(5632), + [anon_sym_L_SQUOTE] = ACTIONS(5632), + [anon_sym_u_SQUOTE] = ACTIONS(5632), + [anon_sym_U_SQUOTE] = ACTIONS(5632), + [anon_sym_u8_SQUOTE] = ACTIONS(5632), + [anon_sym_SQUOTE] = ACTIONS(5632), + [anon_sym_AT] = ACTIONS(5630), + [anon_sym_DQUOTE] = ACTIONS(5632), + [anon_sym_L_DQUOTE] = ACTIONS(5632), + [anon_sym_u_DQUOTE] = ACTIONS(5632), + [anon_sym_U_DQUOTE] = ACTIONS(5632), + [anon_sym_u8_DQUOTE] = ACTIONS(5632), + [sym_true] = ACTIONS(5630), + [sym_false] = ACTIONS(5630), + [anon_sym_NULL] = ACTIONS(5630), + [anon_sym_nullptr] = ACTIONS(5630), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(5632), + [anon_sym_ATavailable] = ACTIONS(5632), + [anon_sym___builtin_available] = ACTIONS(5630), + [anon_sym_va_arg] = ACTIONS(5630), + [anon_sym_ATencode] = ACTIONS(5632), + [anon_sym_id] = ACTIONS(5630), + }, + [3578] = { + [sym_expression] = STATE(4542), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3579] = { + [sym_expression] = STATE(4568), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3580] = { + [sym_expression] = STATE(4401), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3581] = { + [sym_expression] = STATE(4557), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3582] = { + [sym_expression] = STATE(1637), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3583] = { + [sym_expression] = STATE(4569), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3584] = { + [sym_expression] = STATE(1627), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(8771), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8581), + [anon_sym___real] = ACTIONS(8581), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8583), + [anon_sym_PLUS_PLUS] = ACTIONS(8583), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3585] = { + [sym_expression] = STATE(4497), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3586] = { + [sym_expression] = STATE(1629), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3587] = { + [sym_expression] = STATE(4468), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3588] = { + [sym_expression] = STATE(4469), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3589] = { + [sym_expression] = STATE(4470), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3590] = { + [sym_expression] = STATE(1630), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3591] = { + [sym_expression] = STATE(4471), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3592] = { + [sym_expression] = STATE(4472), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3593] = { + [sym_expression] = STATE(4473), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3594] = { + [sym_expression] = STATE(4474), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3595] = { + [sym_expression] = STATE(4475), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3596] = { + [sym_expression] = STATE(4476), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3597] = { + [sym_expression] = STATE(4477), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3598] = { + [sym_expression] = STATE(4478), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3599] = { + [sym_expression] = STATE(1637), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3600] = { + [sym_expression] = STATE(4434), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3601] = { + [sym_expression] = STATE(4481), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3602] = { + [sym_expression] = STATE(4518), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3603] = { + [sym_expression] = STATE(4483), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3604] = { + [sym_expression] = STATE(4495), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3605] = { + [sym_expression] = STATE(4519), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3606] = { + [sym_expression] = STATE(4579), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3607] = { + [sym_expression] = STATE(1452), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8773), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8653), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8655), + [anon_sym___real] = ACTIONS(8655), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8657), + [anon_sym_PLUS_PLUS] = ACTIONS(8657), + [anon_sym_sizeof] = ACTIONS(2342), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3608] = { + [sym_expression] = STATE(2525), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1995), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1995), + [sym_call_expression] = STATE(1995), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1995), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1995), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8527), + [anon_sym_LPAREN2] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8533), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8535), + [anon_sym___real] = ACTIONS(8535), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8537), + [anon_sym_PLUS_PLUS] = ACTIONS(8537), + [anon_sym_sizeof] = ACTIONS(2898), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3609] = { + [sym_expression] = STATE(1629), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1995), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1995), + [sym_call_expression] = STATE(1995), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1995), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1995), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8527), + [anon_sym_LPAREN2] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8533), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8535), + [anon_sym___real] = ACTIONS(8535), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8537), + [anon_sym_PLUS_PLUS] = ACTIONS(8537), + [anon_sym_sizeof] = ACTIONS(2898), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3610] = { + [sym_expression] = STATE(2498), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1995), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1995), + [sym_call_expression] = STATE(1995), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1995), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1995), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8527), + [anon_sym_LPAREN2] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8533), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8535), + [anon_sym___real] = ACTIONS(8535), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8537), + [anon_sym_PLUS_PLUS] = ACTIONS(8537), + [anon_sym_sizeof] = ACTIONS(2898), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3611] = { + [sym_expression] = STATE(2499), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1995), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1995), + [sym_call_expression] = STATE(1995), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1995), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1995), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8527), + [anon_sym_LPAREN2] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8533), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8535), + [anon_sym___real] = ACTIONS(8535), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8537), + [anon_sym_PLUS_PLUS] = ACTIONS(8537), + [anon_sym_sizeof] = ACTIONS(2898), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3612] = { + [sym_expression] = STATE(2500), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1995), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1995), + [sym_call_expression] = STATE(1995), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1995), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1995), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8527), + [anon_sym_LPAREN2] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8533), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8535), + [anon_sym___real] = ACTIONS(8535), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8537), + [anon_sym_PLUS_PLUS] = ACTIONS(8537), + [anon_sym_sizeof] = ACTIONS(2898), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3613] = { + [sym_expression] = STATE(1630), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1995), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1995), + [sym_call_expression] = STATE(1995), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1995), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1995), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8527), + [anon_sym_LPAREN2] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8533), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8535), + [anon_sym___real] = ACTIONS(8535), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8537), + [anon_sym_PLUS_PLUS] = ACTIONS(8537), + [anon_sym_sizeof] = ACTIONS(2898), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3614] = { + [sym_expression] = STATE(2501), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1995), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1995), + [sym_call_expression] = STATE(1995), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1995), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1995), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8527), + [anon_sym_LPAREN2] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8533), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8535), + [anon_sym___real] = ACTIONS(8535), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8537), + [anon_sym_PLUS_PLUS] = ACTIONS(8537), + [anon_sym_sizeof] = ACTIONS(2898), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3615] = { + [sym_expression] = STATE(2502), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1995), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1995), + [sym_call_expression] = STATE(1995), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1995), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1995), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8527), + [anon_sym_LPAREN2] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8533), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8535), + [anon_sym___real] = ACTIONS(8535), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8537), + [anon_sym_PLUS_PLUS] = ACTIONS(8537), + [anon_sym_sizeof] = ACTIONS(2898), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3616] = { + [sym_expression] = STATE(2503), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1995), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1995), + [sym_call_expression] = STATE(1995), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1995), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1995), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8527), + [anon_sym_LPAREN2] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8533), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8535), + [anon_sym___real] = ACTIONS(8535), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8537), + [anon_sym_PLUS_PLUS] = ACTIONS(8537), + [anon_sym_sizeof] = ACTIONS(2898), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3617] = { + [sym_expression] = STATE(2504), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1995), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1995), + [sym_call_expression] = STATE(1995), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1995), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1995), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8527), + [anon_sym_LPAREN2] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8533), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8535), + [anon_sym___real] = ACTIONS(8535), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8537), + [anon_sym_PLUS_PLUS] = ACTIONS(8537), + [anon_sym_sizeof] = ACTIONS(2898), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3618] = { + [sym_expression] = STATE(2505), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1995), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1995), + [sym_call_expression] = STATE(1995), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1995), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1995), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8527), + [anon_sym_LPAREN2] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8533), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8535), + [anon_sym___real] = ACTIONS(8535), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8537), + [anon_sym_PLUS_PLUS] = ACTIONS(8537), + [anon_sym_sizeof] = ACTIONS(2898), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3619] = { + [sym_expression] = STATE(2506), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1995), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1995), + [sym_call_expression] = STATE(1995), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1995), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1995), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8527), + [anon_sym_LPAREN2] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8533), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8535), + [anon_sym___real] = ACTIONS(8535), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8537), + [anon_sym_PLUS_PLUS] = ACTIONS(8537), + [anon_sym_sizeof] = ACTIONS(2898), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3620] = { + [sym_expression] = STATE(2507), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1995), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1995), + [sym_call_expression] = STATE(1995), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1995), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1995), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8527), + [anon_sym_LPAREN2] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8533), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8535), + [anon_sym___real] = ACTIONS(8535), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8537), + [anon_sym_PLUS_PLUS] = ACTIONS(8537), + [anon_sym_sizeof] = ACTIONS(2898), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3621] = { + [sym_expression] = STATE(2529), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1995), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1995), + [sym_call_expression] = STATE(1995), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1995), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1995), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8527), + [anon_sym_LPAREN2] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8533), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8535), + [anon_sym___real] = ACTIONS(8535), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8537), + [anon_sym_PLUS_PLUS] = ACTIONS(8537), + [anon_sym_sizeof] = ACTIONS(2898), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3622] = { + [sym_expression] = STATE(1637), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1995), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1995), + [sym_call_expression] = STATE(1995), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1995), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1995), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8527), + [anon_sym_LPAREN2] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8533), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8535), + [anon_sym___real] = ACTIONS(8535), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8537), + [anon_sym_PLUS_PLUS] = ACTIONS(8537), + [anon_sym_sizeof] = ACTIONS(2898), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3623] = { + [sym_expression] = STATE(4566), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3624] = { + [sym_expression] = STATE(2509), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1995), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1995), + [sym_call_expression] = STATE(1995), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1995), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1995), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8527), + [anon_sym_LPAREN2] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8533), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8535), + [anon_sym___real] = ACTIONS(8535), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8537), + [anon_sym_PLUS_PLUS] = ACTIONS(8537), + [anon_sym_sizeof] = ACTIONS(2898), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3625] = { + [sym_expression] = STATE(4410), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3626] = { + [sym_expression] = STATE(2510), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1995), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1995), + [sym_call_expression] = STATE(1995), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1995), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1995), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8527), + [anon_sym_LPAREN2] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8533), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8535), + [anon_sym___real] = ACTIONS(8535), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8537), + [anon_sym_PLUS_PLUS] = ACTIONS(8537), + [anon_sym_sizeof] = ACTIONS(2898), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3627] = { + [sym_expression] = STATE(1937), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8613), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8615), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8617), + [anon_sym___real] = ACTIONS(8617), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8619), + [anon_sym_PLUS_PLUS] = ACTIONS(8619), + [anon_sym_sizeof] = ACTIONS(2312), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3628] = { + [sym_expression] = STATE(1450), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8613), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8615), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8617), + [anon_sym___real] = ACTIONS(8617), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8619), + [anon_sym_PLUS_PLUS] = ACTIONS(8619), + [anon_sym_sizeof] = ACTIONS(2312), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3629] = { + [sym_expression] = STATE(1926), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8613), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8615), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8617), + [anon_sym___real] = ACTIONS(8617), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8619), + [anon_sym_PLUS_PLUS] = ACTIONS(8619), + [anon_sym_sizeof] = ACTIONS(2312), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3630] = { + [sym_expression] = STATE(1927), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8613), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8615), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8617), + [anon_sym___real] = ACTIONS(8617), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8619), + [anon_sym_PLUS_PLUS] = ACTIONS(8619), + [anon_sym_sizeof] = ACTIONS(2312), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3631] = { + [sym_expression] = STATE(1454), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8613), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8615), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8617), + [anon_sym___real] = ACTIONS(8617), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8619), + [anon_sym_PLUS_PLUS] = ACTIONS(8619), + [anon_sym_sizeof] = ACTIONS(2312), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3632] = { + [sym_expression] = STATE(1928), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8613), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8615), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8617), + [anon_sym___real] = ACTIONS(8617), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8619), + [anon_sym_PLUS_PLUS] = ACTIONS(8619), + [anon_sym_sizeof] = ACTIONS(2312), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3633] = { + [sym_expression] = STATE(1929), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8613), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8615), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8617), + [anon_sym___real] = ACTIONS(8617), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8619), + [anon_sym_PLUS_PLUS] = ACTIONS(8619), + [anon_sym_sizeof] = ACTIONS(2312), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3634] = { + [sym_expression] = STATE(1930), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8613), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8615), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8617), + [anon_sym___real] = ACTIONS(8617), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8619), + [anon_sym_PLUS_PLUS] = ACTIONS(8619), + [anon_sym_sizeof] = ACTIONS(2312), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3635] = { + [sym_expression] = STATE(1931), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8613), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8615), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8617), + [anon_sym___real] = ACTIONS(8617), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8619), + [anon_sym_PLUS_PLUS] = ACTIONS(8619), + [anon_sym_sizeof] = ACTIONS(2312), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3636] = { + [sym_expression] = STATE(1920), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8613), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8615), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8617), + [anon_sym___real] = ACTIONS(8617), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8619), + [anon_sym_PLUS_PLUS] = ACTIONS(8619), + [anon_sym_sizeof] = ACTIONS(2312), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3637] = { + [sym_expression] = STATE(1932), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8613), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8615), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8617), + [anon_sym___real] = ACTIONS(8617), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8619), + [anon_sym_PLUS_PLUS] = ACTIONS(8619), + [anon_sym_sizeof] = ACTIONS(2312), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3638] = { + [sym_expression] = STATE(1933), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8613), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8615), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8617), + [anon_sym___real] = ACTIONS(8617), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8619), + [anon_sym_PLUS_PLUS] = ACTIONS(8619), + [anon_sym_sizeof] = ACTIONS(2312), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3639] = { + [sym_expression] = STATE(1934), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8613), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8615), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8617), + [anon_sym___real] = ACTIONS(8617), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8619), + [anon_sym_PLUS_PLUS] = ACTIONS(8619), + [anon_sym_sizeof] = ACTIONS(2312), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3640] = { + [sym_expression] = STATE(1446), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8613), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8615), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8617), + [anon_sym___real] = ACTIONS(8617), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8619), + [anon_sym_PLUS_PLUS] = ACTIONS(8619), + [anon_sym_sizeof] = ACTIONS(2312), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3641] = { + [sym_expression] = STATE(4565), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3642] = { + [sym_expression] = STATE(1935), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8613), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8615), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8617), + [anon_sym___real] = ACTIONS(8617), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8619), + [anon_sym_PLUS_PLUS] = ACTIONS(8619), + [anon_sym_sizeof] = ACTIONS(2312), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3643] = { + [sym_expression] = STATE(4403), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3644] = { + [sym_expression] = STATE(1936), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8613), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8615), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8617), + [anon_sym___real] = ACTIONS(8617), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8619), + [anon_sym_PLUS_PLUS] = ACTIONS(8619), + [anon_sym_sizeof] = ACTIONS(2312), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3645] = { + [sym_expression] = STATE(1628), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1995), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1995), + [sym_call_expression] = STATE(1995), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1995), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1995), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8527), + [anon_sym_LPAREN2] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8533), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8535), + [anon_sym___real] = ACTIONS(8535), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8537), + [anon_sym_PLUS_PLUS] = ACTIONS(8537), + [anon_sym_sizeof] = ACTIONS(2898), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3646] = { + [sym_expression] = STATE(1635), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1995), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1995), + [sym_call_expression] = STATE(1995), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1995), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1995), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8527), + [anon_sym_LPAREN2] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8533), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8535), + [anon_sym___real] = ACTIONS(8535), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8537), + [anon_sym_PLUS_PLUS] = ACTIONS(8537), + [anon_sym_sizeof] = ACTIONS(2898), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3647] = { + [sym_expression] = STATE(1627), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1995), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1995), + [sym_call_expression] = STATE(1995), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1995), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1995), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8527), + [anon_sym_LPAREN2] = ACTIONS(8775), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8533), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8535), + [anon_sym___real] = ACTIONS(8535), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8537), + [anon_sym_PLUS_PLUS] = ACTIONS(8537), + [anon_sym_sizeof] = ACTIONS(2898), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3648] = { + [sym_expression] = STATE(4389), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3649] = { + [sym_expression] = STATE(1449), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8613), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8615), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8617), + [anon_sym___real] = ACTIONS(8617), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8619), + [anon_sym_PLUS_PLUS] = ACTIONS(8619), + [anon_sym_sizeof] = ACTIONS(2312), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3650] = { + [sym_expression] = STATE(1451), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8613), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8615), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8617), + [anon_sym___real] = ACTIONS(8617), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8619), + [anon_sym_PLUS_PLUS] = ACTIONS(8619), + [anon_sym_sizeof] = ACTIONS(2312), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3651] = { + [sym_expression] = STATE(4333), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8545), + [anon_sym_BANG] = ACTIONS(6503), + [anon_sym_TILDE] = ACTIONS(6503), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6507), + [anon_sym___real] = ACTIONS(6507), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8551), + [anon_sym_PLUS_PLUS] = ACTIONS(8551), + [anon_sym_sizeof] = ACTIONS(6509), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3652] = { + [sym_expression] = STATE(1766), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1582), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1582), + [sym_call_expression] = STATE(1582), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1582), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1582), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(1631), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8509), + [anon_sym_LPAREN2] = ACTIONS(8511), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8515), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8517), + [anon_sym___real] = ACTIONS(8517), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8519), + [anon_sym_PLUS_PLUS] = ACTIONS(8519), + [anon_sym_sizeof] = ACTIONS(2286), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(2288), + [anon_sym___asm__] = ACTIONS(2288), + [anon_sym___asm] = ACTIONS(2288), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3653] = { + [sym_expression] = STATE(4406), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3654] = { + [sym_expression] = STATE(4391), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3655] = { + [sym_expression] = STATE(1752), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1582), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1582), + [sym_call_expression] = STATE(1582), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1582), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1582), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(1631), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8509), + [anon_sym_LPAREN2] = ACTIONS(8511), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8515), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8517), + [anon_sym___real] = ACTIONS(8517), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8519), + [anon_sym_PLUS_PLUS] = ACTIONS(8519), + [anon_sym_sizeof] = ACTIONS(2286), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(2288), + [anon_sym___asm__] = ACTIONS(2288), + [anon_sym___asm] = ACTIONS(2288), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3656] = { + [sym_expression] = STATE(1776), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1582), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1582), + [sym_call_expression] = STATE(1582), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1582), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1582), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(1631), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8509), + [anon_sym_LPAREN2] = ACTIONS(8511), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8515), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8517), + [anon_sym___real] = ACTIONS(8517), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8519), + [anon_sym_PLUS_PLUS] = ACTIONS(8519), + [anon_sym_sizeof] = ACTIONS(2286), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(2288), + [anon_sym___asm__] = ACTIONS(2288), + [anon_sym___asm] = ACTIONS(2288), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3657] = { + [sym_expression] = STATE(2664), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(8575), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8581), + [anon_sym___real] = ACTIONS(8581), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8583), + [anon_sym_PLUS_PLUS] = ACTIONS(8583), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3658] = { + [sym_expression] = STATE(1629), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(8575), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8581), + [anon_sym___real] = ACTIONS(8581), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8583), + [anon_sym_PLUS_PLUS] = ACTIONS(8583), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3659] = { + [sym_expression] = STATE(1630), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1582), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1582), + [sym_call_expression] = STATE(1582), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1582), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1582), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(1631), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8509), + [anon_sym_LPAREN2] = ACTIONS(8511), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8515), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8517), + [anon_sym___real] = ACTIONS(8517), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8519), + [anon_sym_PLUS_PLUS] = ACTIONS(8519), + [anon_sym_sizeof] = ACTIONS(2286), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(2288), + [anon_sym___asm__] = ACTIONS(2288), + [anon_sym___asm] = ACTIONS(2288), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3660] = { + [sym_expression] = STATE(1740), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1582), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1582), + [sym_call_expression] = STATE(1582), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1582), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1582), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(1631), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8509), + [anon_sym_LPAREN2] = ACTIONS(8511), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8515), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8517), + [anon_sym___real] = ACTIONS(8517), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8519), + [anon_sym_PLUS_PLUS] = ACTIONS(8519), + [anon_sym_sizeof] = ACTIONS(2286), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(2288), + [anon_sym___asm__] = ACTIONS(2288), + [anon_sym___asm] = ACTIONS(2288), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3661] = { + [sym_expression] = STATE(2646), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(8575), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8581), + [anon_sym___real] = ACTIONS(8581), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8583), + [anon_sym_PLUS_PLUS] = ACTIONS(8583), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3662] = { + [sym_expression] = STATE(2647), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(8575), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8581), + [anon_sym___real] = ACTIONS(8581), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8583), + [anon_sym_PLUS_PLUS] = ACTIONS(8583), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3663] = { + [sym_expression] = STATE(2648), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(8575), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8581), + [anon_sym___real] = ACTIONS(8581), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8583), + [anon_sym_PLUS_PLUS] = ACTIONS(8583), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3664] = { + [sym_expression] = STATE(1630), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(8575), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8581), + [anon_sym___real] = ACTIONS(8581), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8583), + [anon_sym_PLUS_PLUS] = ACTIONS(8583), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3665] = { + [sym_expression] = STATE(2649), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(8575), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8581), + [anon_sym___real] = ACTIONS(8581), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8583), + [anon_sym_PLUS_PLUS] = ACTIONS(8583), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3666] = { + [sym_expression] = STATE(2650), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(8575), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8581), + [anon_sym___real] = ACTIONS(8581), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8583), + [anon_sym_PLUS_PLUS] = ACTIONS(8583), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3667] = { + [sym_expression] = STATE(2651), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(8575), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8581), + [anon_sym___real] = ACTIONS(8581), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8583), + [anon_sym_PLUS_PLUS] = ACTIONS(8583), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3668] = { + [sym_expression] = STATE(2602), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(8575), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8581), + [anon_sym___real] = ACTIONS(8581), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8583), + [anon_sym_PLUS_PLUS] = ACTIONS(8583), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3669] = { + [sym_expression] = STATE(2653), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(8575), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8581), + [anon_sym___real] = ACTIONS(8581), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8583), + [anon_sym_PLUS_PLUS] = ACTIONS(8583), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3670] = { + [sym_expression] = STATE(2654), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(8575), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8581), + [anon_sym___real] = ACTIONS(8581), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8583), + [anon_sym_PLUS_PLUS] = ACTIONS(8583), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3671] = { + [sym_expression] = STATE(2655), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(8575), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8581), + [anon_sym___real] = ACTIONS(8581), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8583), + [anon_sym_PLUS_PLUS] = ACTIONS(8583), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3672] = { + [sym_expression] = STATE(2656), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(8575), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8581), + [anon_sym___real] = ACTIONS(8581), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8583), + [anon_sym_PLUS_PLUS] = ACTIONS(8583), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3673] = { + [sym_expression] = STATE(1757), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1582), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1582), + [sym_call_expression] = STATE(1582), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1582), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1582), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(1631), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8509), + [anon_sym_LPAREN2] = ACTIONS(8511), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8515), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8517), + [anon_sym___real] = ACTIONS(8517), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8519), + [anon_sym_PLUS_PLUS] = ACTIONS(8519), + [anon_sym_sizeof] = ACTIONS(2286), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(2288), + [anon_sym___asm__] = ACTIONS(2288), + [anon_sym___asm] = ACTIONS(2288), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3674] = { + [sym_expression] = STATE(1760), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1582), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1582), + [sym_call_expression] = STATE(1582), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1582), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1582), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(1631), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8509), + [anon_sym_LPAREN2] = ACTIONS(8511), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8515), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8517), + [anon_sym___real] = ACTIONS(8517), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8519), + [anon_sym_PLUS_PLUS] = ACTIONS(8519), + [anon_sym_sizeof] = ACTIONS(2286), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(2288), + [anon_sym___asm__] = ACTIONS(2288), + [anon_sym___asm] = ACTIONS(2288), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3675] = { + [sym_expression] = STATE(1637), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(8575), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8581), + [anon_sym___real] = ACTIONS(8581), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8583), + [anon_sym_PLUS_PLUS] = ACTIONS(8583), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3676] = { + [sym_expression] = STATE(4561), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3677] = { + [sym_expression] = STATE(4435), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3678] = { + [sym_expression] = STATE(1762), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1582), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1582), + [sym_call_expression] = STATE(1582), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1582), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1582), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(1631), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8509), + [anon_sym_LPAREN2] = ACTIONS(8511), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8515), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8517), + [anon_sym___real] = ACTIONS(8517), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8519), + [anon_sym_PLUS_PLUS] = ACTIONS(8519), + [anon_sym_sizeof] = ACTIONS(2286), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(2288), + [anon_sym___asm__] = ACTIONS(2288), + [anon_sym___asm] = ACTIONS(2288), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3679] = { + [sym_expression] = STATE(1767), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1582), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1582), + [sym_call_expression] = STATE(1582), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1582), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1582), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(1631), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8509), + [anon_sym_LPAREN2] = ACTIONS(8511), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8515), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8517), + [anon_sym___real] = ACTIONS(8517), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8519), + [anon_sym_PLUS_PLUS] = ACTIONS(8519), + [anon_sym_sizeof] = ACTIONS(2286), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(2288), + [anon_sym___asm__] = ACTIONS(2288), + [anon_sym___asm] = ACTIONS(2288), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3680] = { + [sym_expression] = STATE(4526), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3681] = { + [sym_expression] = STATE(1775), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1582), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1582), + [sym_call_expression] = STATE(1582), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1582), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1582), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(1631), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8509), + [anon_sym_LPAREN2] = ACTIONS(8511), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8515), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8517), + [anon_sym___real] = ACTIONS(8517), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8519), + [anon_sym_PLUS_PLUS] = ACTIONS(8519), + [anon_sym_sizeof] = ACTIONS(2286), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(2288), + [anon_sym___asm__] = ACTIONS(2288), + [anon_sym___asm] = ACTIONS(2288), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3682] = { + [sym_expression] = STATE(1738), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1582), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1582), + [sym_call_expression] = STATE(1582), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1582), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1582), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(1631), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8509), + [anon_sym_LPAREN2] = ACTIONS(8511), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8515), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8517), + [anon_sym___real] = ACTIONS(8517), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8519), + [anon_sym_PLUS_PLUS] = ACTIONS(8519), + [anon_sym_sizeof] = ACTIONS(2286), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(2288), + [anon_sym___asm__] = ACTIONS(2288), + [anon_sym___asm] = ACTIONS(2288), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3683] = { + [sym_expression] = STATE(1770), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1582), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1582), + [sym_call_expression] = STATE(1582), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1582), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1582), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(1631), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8509), + [anon_sym_LPAREN2] = ACTIONS(8511), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8515), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8517), + [anon_sym___real] = ACTIONS(8517), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8519), + [anon_sym_PLUS_PLUS] = ACTIONS(8519), + [anon_sym_sizeof] = ACTIONS(2286), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(2288), + [anon_sym___asm__] = ACTIONS(2288), + [anon_sym___asm] = ACTIONS(2288), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3684] = { + [sym_expression] = STATE(1741), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1582), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1582), + [sym_call_expression] = STATE(1582), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1582), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1582), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(1631), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8509), + [anon_sym_LPAREN2] = ACTIONS(8511), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8515), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8517), + [anon_sym___real] = ACTIONS(8517), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8519), + [anon_sym_PLUS_PLUS] = ACTIONS(8519), + [anon_sym_sizeof] = ACTIONS(2286), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(2288), + [anon_sym___asm__] = ACTIONS(2288), + [anon_sym___asm] = ACTIONS(2288), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3685] = { + [sym_expression] = STATE(1635), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3686] = { + [sym_expression] = STATE(2657), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(8575), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8581), + [anon_sym___real] = ACTIONS(8581), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8583), + [anon_sym_PLUS_PLUS] = ACTIONS(8583), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3687] = { + [sym_expression] = STATE(4527), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3688] = { + [sym_expression] = STATE(2658), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(8575), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8581), + [anon_sym___real] = ACTIONS(8581), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8583), + [anon_sym_PLUS_PLUS] = ACTIONS(8583), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3689] = { + [sym_expression] = STATE(4535), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3690] = { + [sym_expression] = STATE(1627), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [anon_sym_LPAREN2] = ACTIONS(8777), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3691] = { + [sym_expression] = STATE(4525), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3692] = { + [sym_expression] = STATE(4578), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3693] = { + [sym_expression] = STATE(4564), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3694] = { + [sym_expression] = STATE(4436), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3695] = { + [sym_expression] = STATE(4545), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3696] = { + [sym_expression] = STATE(4461), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3697] = { + [sym_expression] = STATE(4547), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3698] = { + [sym_expression] = STATE(4552), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3699] = { + [sym_expression] = STATE(4437), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3700] = { + [sym_expression] = STATE(4555), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3701] = { + [sym_expression] = STATE(4556), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3702] = { + [sym_expression] = STATE(4548), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3703] = { + [sym_expression] = STATE(4438), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3704] = { + [sym_expression] = STATE(4558), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3705] = { + [sym_expression] = STATE(4559), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3706] = { + [sym_expression] = STATE(4424), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3707] = { + [sym_expression] = STATE(4439), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3708] = { + [sym_expression] = STATE(1628), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3709] = { + [sym_expression] = STATE(1453), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(6807), + [anon_sym_TILDE] = ACTIONS(6807), + [anon_sym_DASH] = ACTIONS(6805), + [anon_sym_PLUS] = ACTIONS(6805), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6811), + [anon_sym___real] = ACTIONS(6811), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8637), + [anon_sym_PLUS_PLUS] = ACTIONS(8637), + [anon_sym_sizeof] = ACTIONS(6813), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6815), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(6817), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3710] = { + [sym_expression] = STATE(1635), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3711] = { + [sym_expression] = STATE(1627), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4385), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4385), + [sym_call_expression] = STATE(4385), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4385), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4385), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(5242), + [anon_sym_LPAREN2] = ACTIONS(8779), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(5246), + [anon_sym___real] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_PLUS_PLUS] = ACTIONS(4364), + [anon_sym_sizeof] = ACTIONS(4366), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(4370), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3712] = { + [sym_expression] = STATE(2634), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(8575), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8581), + [anon_sym___real] = ACTIONS(8581), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8583), + [anon_sym_PLUS_PLUS] = ACTIONS(8583), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3713] = { + [sym_expression] = STATE(4580), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3714] = { + [sym_expression] = STATE(4422), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4357), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4357), + [sym_call_expression] = STATE(4357), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4357), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4357), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2078), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(7514), + [anon_sym_TILDE] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7512), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(7516), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(7518), + [anon_sym___real] = ACTIONS(7518), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8573), + [anon_sym_PLUS_PLUS] = ACTIONS(8573), + [anon_sym_sizeof] = ACTIONS(7520), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(7522), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3715] = { + [sym_expression] = STATE(1637), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(1582), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(1582), + [sym_call_expression] = STATE(1582), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(1582), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(1582), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(1631), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(8509), + [anon_sym_LPAREN2] = ACTIONS(8511), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8515), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8517), + [anon_sym___real] = ACTIONS(8517), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8519), + [anon_sym_PLUS_PLUS] = ACTIONS(8519), + [anon_sym_sizeof] = ACTIONS(2286), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(2288), + [anon_sym___asm__] = ACTIONS(2288), + [anon_sym___asm] = ACTIONS(2288), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_L_DQUOTE] = ACTIONS(2292), + [anon_sym_u_DQUOTE] = ACTIONS(2292), + [anon_sym_U_DQUOTE] = ACTIONS(2292), + [anon_sym_u8_DQUOTE] = ACTIONS(2292), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3716] = { + [sym_expression] = STATE(4369), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(6807), + [anon_sym_TILDE] = ACTIONS(6807), + [anon_sym_DASH] = ACTIONS(6805), + [anon_sym_PLUS] = ACTIONS(6805), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6811), + [anon_sym___real] = ACTIONS(6811), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8637), + [anon_sym_PLUS_PLUS] = ACTIONS(8637), + [anon_sym_sizeof] = ACTIONS(6813), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6815), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(6817), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3717] = { + [sym_expression] = STATE(1450), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(6807), + [anon_sym_TILDE] = ACTIONS(6807), + [anon_sym_DASH] = ACTIONS(6805), + [anon_sym_PLUS] = ACTIONS(6805), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6811), + [anon_sym___real] = ACTIONS(6811), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8637), + [anon_sym_PLUS_PLUS] = ACTIONS(8637), + [anon_sym_sizeof] = ACTIONS(6813), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6815), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(6817), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3718] = { + [sym_expression] = STATE(4373), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(6807), + [anon_sym_TILDE] = ACTIONS(6807), + [anon_sym_DASH] = ACTIONS(6805), + [anon_sym_PLUS] = ACTIONS(6805), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6811), + [anon_sym___real] = ACTIONS(6811), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8637), + [anon_sym_PLUS_PLUS] = ACTIONS(8637), + [anon_sym_sizeof] = ACTIONS(6813), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6815), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(6817), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3719] = { + [sym_expression] = STATE(4374), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(6807), + [anon_sym_TILDE] = ACTIONS(6807), + [anon_sym_DASH] = ACTIONS(6805), + [anon_sym_PLUS] = ACTIONS(6805), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6811), + [anon_sym___real] = ACTIONS(6811), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8637), + [anon_sym_PLUS_PLUS] = ACTIONS(8637), + [anon_sym_sizeof] = ACTIONS(6813), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6815), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(6817), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3720] = { + [sym_expression] = STATE(1454), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(6807), + [anon_sym_TILDE] = ACTIONS(6807), + [anon_sym_DASH] = ACTIONS(6805), + [anon_sym_PLUS] = ACTIONS(6805), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6811), + [anon_sym___real] = ACTIONS(6811), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8637), + [anon_sym_PLUS_PLUS] = ACTIONS(8637), + [anon_sym_sizeof] = ACTIONS(6813), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6815), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(6817), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3721] = { + [sym_expression] = STATE(4375), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(6807), + [anon_sym_TILDE] = ACTIONS(6807), + [anon_sym_DASH] = ACTIONS(6805), + [anon_sym_PLUS] = ACTIONS(6805), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6811), + [anon_sym___real] = ACTIONS(6811), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8637), + [anon_sym_PLUS_PLUS] = ACTIONS(8637), + [anon_sym_sizeof] = ACTIONS(6813), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6815), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(6817), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3722] = { + [sym_expression] = STATE(4376), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(6807), + [anon_sym_TILDE] = ACTIONS(6807), + [anon_sym_DASH] = ACTIONS(6805), + [anon_sym_PLUS] = ACTIONS(6805), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6811), + [anon_sym___real] = ACTIONS(6811), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8637), + [anon_sym_PLUS_PLUS] = ACTIONS(8637), + [anon_sym_sizeof] = ACTIONS(6813), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6815), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(6817), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3723] = { + [sym_expression] = STATE(4377), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(6807), + [anon_sym_TILDE] = ACTIONS(6807), + [anon_sym_DASH] = ACTIONS(6805), + [anon_sym_PLUS] = ACTIONS(6805), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6811), + [anon_sym___real] = ACTIONS(6811), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8637), + [anon_sym_PLUS_PLUS] = ACTIONS(8637), + [anon_sym_sizeof] = ACTIONS(6813), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6815), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(6817), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3724] = { + [sym_expression] = STATE(4378), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(6807), + [anon_sym_TILDE] = ACTIONS(6807), + [anon_sym_DASH] = ACTIONS(6805), + [anon_sym_PLUS] = ACTIONS(6805), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6811), + [anon_sym___real] = ACTIONS(6811), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8637), + [anon_sym_PLUS_PLUS] = ACTIONS(8637), + [anon_sym_sizeof] = ACTIONS(6813), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6815), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(6817), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3725] = { + [sym_expression] = STATE(4379), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(6807), + [anon_sym_TILDE] = ACTIONS(6807), + [anon_sym_DASH] = ACTIONS(6805), + [anon_sym_PLUS] = ACTIONS(6805), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6811), + [anon_sym___real] = ACTIONS(6811), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8637), + [anon_sym_PLUS_PLUS] = ACTIONS(8637), + [anon_sym_sizeof] = ACTIONS(6813), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6815), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(6817), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3726] = { + [sym_expression] = STATE(4380), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(6807), + [anon_sym_TILDE] = ACTIONS(6807), + [anon_sym_DASH] = ACTIONS(6805), + [anon_sym_PLUS] = ACTIONS(6805), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6811), + [anon_sym___real] = ACTIONS(6811), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8637), + [anon_sym_PLUS_PLUS] = ACTIONS(8637), + [anon_sym_sizeof] = ACTIONS(6813), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6815), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(6817), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3727] = { + [sym_expression] = STATE(4381), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(6807), + [anon_sym_TILDE] = ACTIONS(6807), + [anon_sym_DASH] = ACTIONS(6805), + [anon_sym_PLUS] = ACTIONS(6805), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6811), + [anon_sym___real] = ACTIONS(6811), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8637), + [anon_sym_PLUS_PLUS] = ACTIONS(8637), + [anon_sym_sizeof] = ACTIONS(6813), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6815), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(6817), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3728] = { + [sym_expression] = STATE(4382), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(6807), + [anon_sym_TILDE] = ACTIONS(6807), + [anon_sym_DASH] = ACTIONS(6805), + [anon_sym_PLUS] = ACTIONS(6805), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6811), + [anon_sym___real] = ACTIONS(6811), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8637), + [anon_sym_PLUS_PLUS] = ACTIONS(8637), + [anon_sym_sizeof] = ACTIONS(6813), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6815), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(6817), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3729] = { + [sym_expression] = STATE(1446), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(6807), + [anon_sym_TILDE] = ACTIONS(6807), + [anon_sym_DASH] = ACTIONS(6805), + [anon_sym_PLUS] = ACTIONS(6805), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6811), + [anon_sym___real] = ACTIONS(6811), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8637), + [anon_sym_PLUS_PLUS] = ACTIONS(8637), + [anon_sym_sizeof] = ACTIONS(6813), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6815), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(6817), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3730] = { + [sym_expression] = STATE(4383), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(6807), + [anon_sym_TILDE] = ACTIONS(6807), + [anon_sym_DASH] = ACTIONS(6805), + [anon_sym_PLUS] = ACTIONS(6805), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6811), + [anon_sym___real] = ACTIONS(6811), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8637), + [anon_sym_PLUS_PLUS] = ACTIONS(8637), + [anon_sym_sizeof] = ACTIONS(6813), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6815), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(6817), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3731] = { + [sym_identifier] = ACTIONS(8781), + [anon_sym_LPAREN2] = ACTIONS(8784), + [anon_sym_BANG] = ACTIONS(8784), + [anon_sym_TILDE] = ACTIONS(8784), + [anon_sym_DASH] = ACTIONS(8781), + [anon_sym_PLUS] = ACTIONS(8781), + [anon_sym_STAR] = ACTIONS(8784), + [anon_sym_CARET] = ACTIONS(8784), + [anon_sym_AMP] = ACTIONS(8784), + [anon_sym___extension__] = ACTIONS(8781), + [anon_sym_noreturn] = ACTIONS(8781), + [anon_sym_LBRACK] = ACTIONS(8784), + [anon_sym_RBRACK] = ACTIONS(8787), + [anon_sym_static] = ACTIONS(8789), + [anon_sym_const] = ACTIONS(8781), + [anon_sym_constexpr] = ACTIONS(8781), + [anon_sym_volatile] = ACTIONS(8781), + [anon_sym_restrict] = ACTIONS(8781), + [anon_sym___restrict__] = ACTIONS(8781), + [anon_sym__Atomic] = ACTIONS(8781), + [anon_sym__Noreturn] = ACTIONS(8781), + [anon_sym__Nonnull] = ACTIONS(8781), + [anon_sym_nullable] = ACTIONS(8781), + [anon_sym__Complex] = ACTIONS(8781), + [anon_sym__Nullable] = ACTIONS(8781), + [anon_sym__Nullable_result] = ACTIONS(8781), + [anon_sym__Null_unspecified] = ACTIONS(8781), + [anon_sym___autoreleasing] = ACTIONS(8781), + [anon_sym___block] = ACTIONS(8781), + [anon_sym___bridge] = ACTIONS(8781), + [anon_sym___bridge_retained] = ACTIONS(8781), + [anon_sym___bridge_transfer] = ACTIONS(8781), + [anon_sym___complex] = ACTIONS(8781), + [anon_sym___const] = ACTIONS(8781), + [anon_sym___imag] = ACTIONS(8781), + [anon_sym___kindof] = ACTIONS(8781), + [anon_sym___nonnull] = ACTIONS(8781), + [anon_sym___nullable] = ACTIONS(8781), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8781), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8781), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8781), + [anon_sym___real] = ACTIONS(8781), + [anon_sym___strong] = ACTIONS(8781), + [anon_sym___unsafe_unretained] = ACTIONS(8781), + [anon_sym___unused] = ACTIONS(8781), + [anon_sym___weak] = ACTIONS(8781), + [anon_sym_alignas] = ACTIONS(8781), + [anon_sym__Alignas] = ACTIONS(8781), + [anon_sym_struct] = ACTIONS(8781), + [anon_sym_in] = ACTIONS(8781), + [anon_sym_DASH_DASH] = ACTIONS(8784), + [anon_sym_PLUS_PLUS] = ACTIONS(8784), + [anon_sym_sizeof] = ACTIONS(8781), + [anon_sym___alignof__] = ACTIONS(8781), + [anon_sym___alignof] = ACTIONS(8781), + [anon_sym__alignof] = ACTIONS(8781), + [anon_sym_alignof] = ACTIONS(8781), + [anon_sym__Alignof] = ACTIONS(8781), + [anon_sym_offsetof] = ACTIONS(8781), + [anon_sym__Generic] = ACTIONS(8781), + [anon_sym_asm] = ACTIONS(8781), + [anon_sym___asm__] = ACTIONS(8781), + [anon_sym___asm] = ACTIONS(8781), + [sym_number_literal] = ACTIONS(8784), + [anon_sym_L_SQUOTE] = ACTIONS(8784), + [anon_sym_u_SQUOTE] = ACTIONS(8784), + [anon_sym_U_SQUOTE] = ACTIONS(8784), + [anon_sym_u8_SQUOTE] = ACTIONS(8784), + [anon_sym_SQUOTE] = ACTIONS(8784), + [anon_sym_AT] = ACTIONS(8781), + [anon_sym_DQUOTE] = ACTIONS(8784), + [anon_sym_L_DQUOTE] = ACTIONS(8784), + [anon_sym_u_DQUOTE] = ACTIONS(8784), + [anon_sym_U_DQUOTE] = ACTIONS(8784), + [anon_sym_u8_DQUOTE] = ACTIONS(8784), + [sym_true] = ACTIONS(8781), + [sym_false] = ACTIONS(8781), + [anon_sym_NULL] = ACTIONS(8781), + [anon_sym_nullptr] = ACTIONS(8781), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(8784), + [anon_sym_ATavailable] = ACTIONS(8784), + [anon_sym___builtin_available] = ACTIONS(8781), + [anon_sym_va_arg] = ACTIONS(8781), + [anon_sym_ATencode] = ACTIONS(8784), + [anon_sym_id] = ACTIONS(8781), + }, + [3732] = { + [sym_expression] = STATE(4402), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3733] = { + [sym_expression] = STATE(4370), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(6807), + [anon_sym_TILDE] = ACTIONS(6807), + [anon_sym_DASH] = ACTIONS(6805), + [anon_sym_PLUS] = ACTIONS(6805), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6811), + [anon_sym___real] = ACTIONS(6811), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8637), + [anon_sym_PLUS_PLUS] = ACTIONS(8637), + [anon_sym_sizeof] = ACTIONS(6813), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6815), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(6817), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3734] = { + [sym_expression] = STATE(1449), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(6807), + [anon_sym_TILDE] = ACTIONS(6807), + [anon_sym_DASH] = ACTIONS(6805), + [anon_sym_PLUS] = ACTIONS(6805), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6811), + [anon_sym___real] = ACTIONS(6811), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8637), + [anon_sym_PLUS_PLUS] = ACTIONS(8637), + [anon_sym_sizeof] = ACTIONS(6813), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6815), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(6817), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3735] = { + [sym_expression] = STATE(1451), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(6807), + [anon_sym_TILDE] = ACTIONS(6807), + [anon_sym_DASH] = ACTIONS(6805), + [anon_sym_PLUS] = ACTIONS(6805), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6811), + [anon_sym___real] = ACTIONS(6811), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8637), + [anon_sym_PLUS_PLUS] = ACTIONS(8637), + [anon_sym_sizeof] = ACTIONS(6813), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6815), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(6817), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3736] = { + [sym_expression] = STATE(1452), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8791), + [anon_sym_BANG] = ACTIONS(6807), + [anon_sym_TILDE] = ACTIONS(6807), + [anon_sym_DASH] = ACTIONS(6805), + [anon_sym_PLUS] = ACTIONS(6805), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6811), + [anon_sym___real] = ACTIONS(6811), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8637), + [anon_sym_PLUS_PLUS] = ACTIONS(8637), + [anon_sym_sizeof] = ACTIONS(6813), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6815), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(6817), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3737] = { + [sym_expression] = STATE(1629), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3738] = { + [sym_expression] = STATE(1628), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(8575), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8581), + [anon_sym___real] = ACTIONS(8581), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8583), + [anon_sym_PLUS_PLUS] = ACTIONS(8583), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3739] = { + [sym_expression] = STATE(1453), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8651), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8653), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8655), + [anon_sym___real] = ACTIONS(8655), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8657), + [anon_sym_PLUS_PLUS] = ACTIONS(8657), + [anon_sym_sizeof] = ACTIONS(2342), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3740] = { + [sym_expression] = STATE(1635), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(8575), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8581), + [anon_sym___real] = ACTIONS(8581), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8583), + [anon_sym_PLUS_PLUS] = ACTIONS(8583), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3741] = { + [sym_expression] = STATE(2614), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(2194), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(2194), + [sym_call_expression] = STATE(2194), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(2194), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(2194), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(8575), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(8581), + [anon_sym___real] = ACTIONS(8581), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(8583), + [anon_sym_PLUS_PLUS] = ACTIONS(8583), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3742] = { + [sym_expression] = STATE(4392), + [sym__string] = STATE(1677), + [sym_conditional_expression] = STATE(1677), + [sym_assignment_expression] = STATE(1677), + [sym_pointer_expression] = STATE(4338), + [sym_unary_expression] = STATE(1677), + [sym_binary_expression] = STATE(1677), + [sym_update_expression] = STATE(1677), + [sym_cast_expression] = STATE(1677), + [sym_sizeof_expression] = STATE(1677), + [sym_alignof_expression] = STATE(1677), + [sym_offsetof_expression] = STATE(1677), + [sym_generic_expression] = STATE(1677), + [sym_subscript_expression] = STATE(4338), + [sym_call_expression] = STATE(4338), + [sym_gnu_asm_expression] = STATE(1677), + [sym_extension_expression] = STATE(1677), + [sym_field_expression] = STATE(4338), + [sym_compound_literal_expression] = STATE(1677), + [sym_parenthesized_expression] = STATE(4338), + [sym_char_literal] = STATE(1677), + [sym_concatenated_string] = STATE(1677), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym_available_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_block_literal] = STATE(1677), + [sym_message_expression] = STATE(1677), + [sym_va_arg_expression] = STATE(1677), + [sym_encode_expression] = STATE(1677), + [sym_at_expression] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym_array_literal] = STATE(1677), + [sym_identifier] = ACTIONS(2916), + [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_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(203), + [anon_sym___imag] = ACTIONS(2926), + [anon_sym___real] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_in] = ACTIONS(203), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym___alignof__] = ACTIONS(97), + [anon_sym___alignof] = ACTIONS(97), + [anon_sym__alignof] = ACTIONS(97), + [anon_sym_alignof] = ACTIONS(97), + [anon_sym__Alignof] = ACTIONS(97), + [anon_sym_offsetof] = ACTIONS(99), + [anon_sym__Generic] = ACTIONS(101), + [anon_sym_asm] = ACTIONS(103), + [anon_sym___asm__] = ACTIONS(103), + [anon_sym___asm] = ACTIONS(103), + [sym_number_literal] = ACTIONS(215), + [anon_sym_L_SQUOTE] = ACTIONS(107), + [anon_sym_u_SQUOTE] = ACTIONS(107), + [anon_sym_U_SQUOTE] = ACTIONS(107), + [anon_sym_u8_SQUOTE] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(137), + [anon_sym_ATavailable] = ACTIONS(139), + [anon_sym___builtin_available] = ACTIONS(141), + [anon_sym_va_arg] = ACTIONS(143), + [anon_sym_ATencode] = ACTIONS(145), + [anon_sym_id] = ACTIONS(203), + }, + [3743] = { + [sym_expression] = STATE(2084), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8651), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8653), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8655), + [anon_sym___real] = ACTIONS(8655), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8657), + [anon_sym_PLUS_PLUS] = ACTIONS(8657), + [anon_sym_sizeof] = ACTIONS(2342), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3744] = { + [sym_expression] = STATE(1450), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8651), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8653), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8655), + [anon_sym___real] = ACTIONS(8655), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8657), + [anon_sym_PLUS_PLUS] = ACTIONS(8657), + [anon_sym_sizeof] = ACTIONS(2342), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3745] = { + [sym_expression] = STATE(2095), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8651), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8653), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8655), + [anon_sym___real] = ACTIONS(8655), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8657), + [anon_sym_PLUS_PLUS] = ACTIONS(8657), + [anon_sym_sizeof] = ACTIONS(2342), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3746] = { + [sym_expression] = STATE(2096), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8651), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8653), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8655), + [anon_sym___real] = ACTIONS(8655), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8657), + [anon_sym_PLUS_PLUS] = ACTIONS(8657), + [anon_sym_sizeof] = ACTIONS(2342), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3747] = { + [sym_expression] = STATE(1454), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8651), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8653), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8655), + [anon_sym___real] = ACTIONS(8655), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8657), + [anon_sym_PLUS_PLUS] = ACTIONS(8657), + [anon_sym_sizeof] = ACTIONS(2342), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3748] = { + [sym_expression] = STATE(2097), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8651), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8653), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8655), + [anon_sym___real] = ACTIONS(8655), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8657), + [anon_sym_PLUS_PLUS] = ACTIONS(8657), + [anon_sym_sizeof] = ACTIONS(2342), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3749] = { + [sym_expression] = STATE(2098), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8651), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8653), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8655), + [anon_sym___real] = ACTIONS(8655), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8657), + [anon_sym_PLUS_PLUS] = ACTIONS(8657), + [anon_sym_sizeof] = ACTIONS(2342), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3750] = { + [sym_expression] = STATE(2099), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8651), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8653), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8655), + [anon_sym___real] = ACTIONS(8655), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8657), + [anon_sym_PLUS_PLUS] = ACTIONS(8657), + [anon_sym_sizeof] = ACTIONS(2342), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3751] = { + [sym_expression] = STATE(2068), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8651), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8653), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8655), + [anon_sym___real] = ACTIONS(8655), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8657), + [anon_sym_PLUS_PLUS] = ACTIONS(8657), + [anon_sym_sizeof] = ACTIONS(2342), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3752] = { + [sym_expression] = STATE(2101), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8651), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8653), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8655), + [anon_sym___real] = ACTIONS(8655), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8657), + [anon_sym_PLUS_PLUS] = ACTIONS(8657), + [anon_sym_sizeof] = ACTIONS(2342), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3753] = { + [sym_expression] = STATE(2102), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8651), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8653), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8655), + [anon_sym___real] = ACTIONS(8655), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8657), + [anon_sym_PLUS_PLUS] = ACTIONS(8657), + [anon_sym_sizeof] = ACTIONS(2342), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3754] = { + [sym_expression] = STATE(2103), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8651), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8653), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8655), + [anon_sym___real] = ACTIONS(8655), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8657), + [anon_sym_PLUS_PLUS] = ACTIONS(8657), + [anon_sym_sizeof] = ACTIONS(2342), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3755] = { + [sym_expression] = STATE(2104), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8651), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8653), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8655), + [anon_sym___real] = ACTIONS(8655), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8657), + [anon_sym_PLUS_PLUS] = ACTIONS(8657), + [anon_sym_sizeof] = ACTIONS(2342), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3756] = { + [sym_expression] = STATE(1446), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8651), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8653), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8655), + [anon_sym___real] = ACTIONS(8655), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8657), + [anon_sym_PLUS_PLUS] = ACTIONS(8657), + [anon_sym_sizeof] = ACTIONS(2342), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3757] = { + [sym_expression] = STATE(2105), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8651), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8653), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8655), + [anon_sym___real] = ACTIONS(8655), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8657), + [anon_sym_PLUS_PLUS] = ACTIONS(8657), + [anon_sym_sizeof] = ACTIONS(2342), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3758] = { + [sym_expression] = STATE(2106), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8651), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8653), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8655), + [anon_sym___real] = ACTIONS(8655), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8657), + [anon_sym_PLUS_PLUS] = ACTIONS(8657), + [anon_sym_sizeof] = ACTIONS(2342), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3759] = { + [sym_expression] = STATE(1449), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8651), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8653), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8655), + [anon_sym___real] = ACTIONS(8655), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8657), + [anon_sym_PLUS_PLUS] = ACTIONS(8657), + [anon_sym_sizeof] = ACTIONS(2342), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3760] = { + [sym_expression] = STATE(1451), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1698), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8651), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_STAR] = ACTIONS(8577), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8577), + [anon_sym___extension__] = ACTIONS(8653), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8655), + [anon_sym___real] = ACTIONS(8655), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8657), + [anon_sym_PLUS_PLUS] = ACTIONS(8657), + [anon_sym_sizeof] = ACTIONS(2342), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3761] = { + [sym_expression] = STATE(1570), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1445), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(8599), + [anon_sym_LPAREN2] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8605), + [anon_sym___real] = ACTIONS(8605), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8607), + [anon_sym_PLUS_PLUS] = ACTIONS(8607), + [anon_sym_sizeof] = ACTIONS(2230), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3762] = { + [sym_expression] = STATE(1571), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1445), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(8599), + [anon_sym_LPAREN2] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8605), + [anon_sym___real] = ACTIONS(8605), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8607), + [anon_sym_PLUS_PLUS] = ACTIONS(8607), + [anon_sym_sizeof] = ACTIONS(2230), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3763] = { + [sym_expression] = STATE(1566), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1445), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(8599), + [anon_sym_LPAREN2] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8605), + [anon_sym___real] = ACTIONS(8605), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8607), + [anon_sym_PLUS_PLUS] = ACTIONS(8607), + [anon_sym_sizeof] = ACTIONS(2230), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3764] = { + [sym_expression] = STATE(1449), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8623), + [anon_sym_BANG] = ACTIONS(6732), + [anon_sym_TILDE] = ACTIONS(6732), + [anon_sym_DASH] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6730), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(6734), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6736), + [anon_sym___real] = ACTIONS(6736), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8625), + [anon_sym_PLUS_PLUS] = ACTIONS(8625), + [anon_sym_sizeof] = ACTIONS(6738), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6740), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3765] = { + [sym_expression] = STATE(1454), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1445), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(8599), + [anon_sym_LPAREN2] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8605), + [anon_sym___real] = ACTIONS(8605), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8607), + [anon_sym_PLUS_PLUS] = ACTIONS(8607), + [anon_sym_sizeof] = ACTIONS(2230), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3766] = { + [sym_expression] = STATE(1451), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8623), + [anon_sym_BANG] = ACTIONS(6732), + [anon_sym_TILDE] = ACTIONS(6732), + [anon_sym_DASH] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6730), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(6734), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6736), + [anon_sym___real] = ACTIONS(6736), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8625), + [anon_sym_PLUS_PLUS] = ACTIONS(8625), + [anon_sym_sizeof] = ACTIONS(6738), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6740), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3767] = { + [sym_expression] = STATE(1452), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8793), + [anon_sym_BANG] = ACTIONS(6732), + [anon_sym_TILDE] = ACTIONS(6732), + [anon_sym_DASH] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6730), + [anon_sym_STAR] = ACTIONS(8571), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8571), + [anon_sym___extension__] = ACTIONS(6734), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(6736), + [anon_sym___real] = ACTIONS(6736), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8625), + [anon_sym_PLUS_PLUS] = ACTIONS(8625), + [anon_sym_sizeof] = ACTIONS(6738), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(6740), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3768] = { + [sym_expression] = STATE(1572), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1445), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(8599), + [anon_sym_LPAREN2] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8605), + [anon_sym___real] = ACTIONS(8605), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8607), + [anon_sym_PLUS_PLUS] = ACTIONS(8607), + [anon_sym_sizeof] = ACTIONS(2230), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3769] = { + [sym_expression] = STATE(1573), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1445), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(8599), + [anon_sym_LPAREN2] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8605), + [anon_sym___real] = ACTIONS(8605), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8607), + [anon_sym_PLUS_PLUS] = ACTIONS(8607), + [anon_sym_sizeof] = ACTIONS(2230), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3770] = { + [sym_expression] = STATE(1574), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1445), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(8599), + [anon_sym_LPAREN2] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8605), + [anon_sym___real] = ACTIONS(8605), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8607), + [anon_sym_PLUS_PLUS] = ACTIONS(8607), + [anon_sym_sizeof] = ACTIONS(2230), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3771] = { + [sym_expression] = STATE(1575), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1445), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(8599), + [anon_sym_LPAREN2] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym___extension__] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8605), + [anon_sym___real] = ACTIONS(8605), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8607), + [anon_sym_PLUS_PLUS] = ACTIONS(8607), + [anon_sym_sizeof] = ACTIONS(2230), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3772] = { + [sym_expression] = STATE(1453), + [sym__string] = STATE(1506), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_pointer_expression] = STATE(1508), + [sym_unary_expression] = STATE(1506), + [sym_binary_expression] = STATE(1506), + [sym_update_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_alignof_expression] = STATE(1506), + [sym_offsetof_expression] = STATE(1506), + [sym_generic_expression] = STATE(1506), + [sym_subscript_expression] = STATE(1508), + [sym_call_expression] = STATE(1508), + [sym_gnu_asm_expression] = STATE(1506), + [sym_extension_expression] = STATE(1506), + [sym_field_expression] = STATE(1508), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1508), + [sym_char_literal] = STATE(1506), + [sym_concatenated_string] = STATE(1506), + [sym_string_literal] = STATE(1692), + [sym_null] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym_available_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_block_literal] = STATE(1506), + [sym_message_expression] = STATE(1506), + [sym_va_arg_expression] = STATE(1506), + [sym_encode_expression] = STATE(1506), + [sym_at_expression] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym_array_literal] = STATE(1506), + [sym_identifier] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(8613), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(8531), + [anon_sym_CARET] = ACTIONS(8547), + [anon_sym_AMP] = ACTIONS(8531), + [anon_sym___extension__] = ACTIONS(8615), + [anon_sym_LBRACK] = ACTIONS(8549), + [anon_sym_const] = ACTIONS(2228), + [anon_sym___imag] = ACTIONS(8617), + [anon_sym___real] = ACTIONS(8617), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(8619), + [anon_sym_PLUS_PLUS] = ACTIONS(8619), + [anon_sym_sizeof] = ACTIONS(2312), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2234), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2238), + [anon_sym___asm__] = ACTIONS(2238), + [anon_sym___asm] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_L_DQUOTE] = ACTIONS(2316), + [anon_sym_u_DQUOTE] = ACTIONS(2316), + [anon_sym_U_DQUOTE] = ACTIONS(2316), + [anon_sym_u8_DQUOTE] = ACTIONS(2316), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_ATselector] = ACTIONS(2252), + [anon_sym_ATavailable] = ACTIONS(2254), + [anon_sym___builtin_available] = ACTIONS(2256), + [anon_sym_va_arg] = ACTIONS(2258), + [anon_sym_ATencode] = ACTIONS(2260), + [anon_sym_id] = ACTIONS(2228), + }, + [3773] = { + [sym_attribute_specifier] = STATE(3797), + [sym_attribute_declaration] = STATE(3797), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_property_attributes_declaration] = STATE(3781), + [sym_struct_declaration] = STATE(2267), + [sym_atomic_declaration] = STATE(2267), + [sym_specifier_qualifier] = STATE(3355), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3355), + [sym_identifier] = ACTIONS(8295), + [anon_sym_LPAREN2] = ACTIONS(8795), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_LBRACK] = ACTIONS(8301), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8797), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3774] = { + [sym_attribute_specifier] = STATE(3800), + [sym_attribute_declaration] = STATE(3800), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_property_attributes_declaration] = STATE(3779), + [sym_struct_declaration] = STATE(2412), + [sym_atomic_declaration] = STATE(2412), + [sym_specifier_qualifier] = STATE(3356), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3356), + [sym_identifier] = ACTIONS(8295), + [anon_sym_LPAREN2] = ACTIONS(8795), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_LBRACK] = ACTIONS(8301), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8799), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3775] = { + [sym_attribute_specifier] = STATE(3801), + [sym_attribute_declaration] = STATE(3801), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_property_attributes_declaration] = STATE(3780), + [sym_struct_declaration] = STATE(2418), + [sym_atomic_declaration] = STATE(2418), + [sym_specifier_qualifier] = STATE(3356), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3356), + [sym_identifier] = ACTIONS(8295), + [anon_sym_LPAREN2] = ACTIONS(8795), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_LBRACK] = ACTIONS(8301), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8799), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3776] = { + [sym_attribute_specifier] = STATE(3798), + [sym_attribute_declaration] = STATE(3798), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_property_attributes_declaration] = STATE(3782), + [sym_struct_declaration] = STATE(2319), + [sym_atomic_declaration] = STATE(2319), + [sym_specifier_qualifier] = STATE(3355), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3355), + [sym_identifier] = ACTIONS(8295), + [anon_sym_LPAREN2] = ACTIONS(8795), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_LBRACK] = ACTIONS(8301), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8797), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3777] = { + [sym_attribute_specifier] = STATE(3803), + [sym_attribute_declaration] = STATE(3803), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_property_attributes_declaration] = STATE(3783), + [sym_struct_declaration] = STATE(2336), + [sym_atomic_declaration] = STATE(2336), + [sym_specifier_qualifier] = STATE(3353), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3353), + [sym_identifier] = ACTIONS(8295), + [anon_sym_LPAREN2] = ACTIONS(8795), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_LBRACK] = ACTIONS(8301), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8801), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3778] = { + [sym_attribute_specifier] = STATE(3794), + [sym_attribute_declaration] = STATE(3794), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_property_attributes_declaration] = STATE(3784), + [sym_struct_declaration] = STATE(2342), + [sym_atomic_declaration] = STATE(2342), + [sym_specifier_qualifier] = STATE(3353), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3353), + [sym_identifier] = ACTIONS(8295), + [anon_sym_LPAREN2] = ACTIONS(8795), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_LBRACK] = ACTIONS(8301), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8801), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3779] = { + [sym_attribute_specifier] = STATE(3801), + [sym_attribute_declaration] = STATE(3801), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_struct_declaration] = STATE(2418), + [sym_atomic_declaration] = STATE(2418), + [sym_specifier_qualifier] = STATE(3356), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3356), + [sym_identifier] = ACTIONS(8295), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_LBRACK] = ACTIONS(8301), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8799), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3780] = { + [sym_attribute_specifier] = STATE(3793), + [sym_attribute_declaration] = STATE(3793), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_struct_declaration] = STATE(2431), + [sym_atomic_declaration] = STATE(2431), + [sym_specifier_qualifier] = STATE(3356), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3356), + [sym_identifier] = ACTIONS(8295), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_LBRACK] = ACTIONS(8301), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8799), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3781] = { + [sym_attribute_specifier] = STATE(3798), + [sym_attribute_declaration] = STATE(3798), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_struct_declaration] = STATE(2319), + [sym_atomic_declaration] = STATE(2319), + [sym_specifier_qualifier] = STATE(3355), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3355), + [sym_identifier] = ACTIONS(8295), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_LBRACK] = ACTIONS(8301), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8797), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3782] = { + [sym_attribute_specifier] = STATE(3796), + [sym_attribute_declaration] = STATE(3796), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_struct_declaration] = STATE(2310), + [sym_atomic_declaration] = STATE(2310), + [sym_specifier_qualifier] = STATE(3355), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3355), + [sym_identifier] = ACTIONS(8295), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_LBRACK] = ACTIONS(8301), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8797), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3783] = { + [sym_attribute_specifier] = STATE(3802), + [sym_attribute_declaration] = STATE(3802), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_struct_declaration] = STATE(2324), + [sym_atomic_declaration] = STATE(2324), + [sym_specifier_qualifier] = STATE(3353), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3353), + [sym_identifier] = ACTIONS(8295), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_LBRACK] = ACTIONS(8301), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8801), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3784] = { + [sym_attribute_specifier] = STATE(3803), + [sym_attribute_declaration] = STATE(3803), + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_struct_declaration] = STATE(2336), + [sym_atomic_declaration] = STATE(2336), + [sym_specifier_qualifier] = STATE(3353), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3353), + [sym_identifier] = ACTIONS(8295), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_LBRACK] = ACTIONS(8301), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8801), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3785] = { + [sym_identifier] = ACTIONS(2922), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4236), + [anon_sym_COMMA] = ACTIONS(4236), + [anon_sym_RPAREN] = ACTIONS(4236), + [anon_sym_LPAREN2] = ACTIONS(4236), + [anon_sym_DASH] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4234), + [anon_sym_STAR] = ACTIONS(4236), + [anon_sym_SLASH] = ACTIONS(4234), + [anon_sym_PERCENT] = ACTIONS(4236), + [anon_sym_PIPE_PIPE] = ACTIONS(4236), + [anon_sym_AMP_AMP] = ACTIONS(4236), + [anon_sym_PIPE] = ACTIONS(4234), + [anon_sym_CARET] = ACTIONS(4236), + [anon_sym_AMP] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4236), + [anon_sym_BANG_EQ] = ACTIONS(4236), + [anon_sym_GT] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4236), + [anon_sym_LT_EQ] = ACTIONS(4236), + [anon_sym_LT] = ACTIONS(4234), + [anon_sym_LT_LT] = ACTIONS(4236), + [anon_sym_GT_GT] = ACTIONS(4236), + [anon_sym___extension__] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(4236), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2922), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2922), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_QMARK] = ACTIONS(4236), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_DOT] = ACTIONS(4234), + [anon_sym_DASH_GT] = ACTIONS(4236), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(2922), + }, + [3786] = { + [sym_identifier] = ACTIONS(2804), + [anon_sym_COMMA] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [aux_sym_preproc_if_token1] = ACTIONS(2804), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2806), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2806), + [anon_sym_LPAREN2] = ACTIONS(2806), + [anon_sym_STAR] = ACTIONS(2806), + [anon_sym_CARET] = ACTIONS(2806), + [anon_sym_GT] = ACTIONS(2806), + [anon_sym_LT] = ACTIONS(2806), + [anon_sym___extension__] = ACTIONS(2804), + [anon_sym___attribute__] = ACTIONS(2804), + [anon_sym___attribute] = ACTIONS(2804), + [anon_sym_noreturn] = ACTIONS(2804), + [anon_sym_LBRACK] = ACTIONS(2806), + [anon_sym___based] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_signed] = ACTIONS(2804), + [anon_sym_unsigned] = ACTIONS(2804), + [anon_sym_long] = ACTIONS(2804), + [anon_sym_short] = ACTIONS(2804), + [anon_sym_ATautoreleasepool] = ACTIONS(2806), + [anon_sym_const] = ACTIONS(2804), + [anon_sym_constexpr] = ACTIONS(2804), + [anon_sym_volatile] = ACTIONS(2804), + [anon_sym_restrict] = ACTIONS(2804), + [anon_sym___restrict__] = ACTIONS(2804), + [anon_sym__Atomic] = ACTIONS(2804), + [anon_sym__Noreturn] = ACTIONS(2804), + [anon_sym__Nonnull] = ACTIONS(2804), + [anon_sym_nullable] = ACTIONS(2804), + [anon_sym__Complex] = ACTIONS(2804), + [anon_sym__Nullable] = ACTIONS(2804), + [anon_sym__Nullable_result] = ACTIONS(2804), + [anon_sym__Null_unspecified] = ACTIONS(2804), + [anon_sym___autoreleasing] = ACTIONS(2804), + [anon_sym___block] = ACTIONS(2804), + [anon_sym___bridge] = ACTIONS(2804), + [anon_sym___bridge_retained] = ACTIONS(2804), + [anon_sym___bridge_transfer] = ACTIONS(2804), + [anon_sym___complex] = ACTIONS(2804), + [anon_sym___const] = ACTIONS(2804), + [anon_sym___imag] = ACTIONS(2804), + [anon_sym___kindof] = ACTIONS(2804), + [anon_sym___nonnull] = ACTIONS(2804), + [anon_sym___nullable] = ACTIONS(2804), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2804), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2804), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2804), + [anon_sym___real] = ACTIONS(2804), + [anon_sym___strong] = ACTIONS(2804), + [anon_sym___unsafe_unretained] = ACTIONS(2804), + [anon_sym___unused] = ACTIONS(2804), + [anon_sym___weak] = ACTIONS(2804), + [anon_sym_alignas] = ACTIONS(2804), + [anon_sym__Alignas] = ACTIONS(2804), + [sym_primitive_type] = ACTIONS(2804), + [anon_sym_enum] = ACTIONS(2804), + [anon_sym_COLON] = ACTIONS(2806), + [anon_sym_struct] = ACTIONS(2804), + [anon_sym_union] = ACTIONS(2804), + [anon_sym_in] = ACTIONS(2804), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2804), + [anon_sym___typeof] = ACTIONS(2804), + [anon_sym_typeof] = ACTIONS(2804), + [anon_sym_ATprivate] = ACTIONS(2806), + [anon_sym_ATprotected] = ACTIONS(2806), + [anon_sym_ATpackage] = ACTIONS(2806), + [anon_sym_ATpublic] = ACTIONS(2806), + [anon_sym_BOOL] = ACTIONS(2804), + [anon_sym_IMP] = ACTIONS(2804), + [anon_sym_SEL] = ACTIONS(2804), + [anon_sym_Class] = ACTIONS(2804), + [anon_sym_id] = ACTIONS(2804), + [anon_sym_out] = ACTIONS(2804), + [anon_sym_inout] = ACTIONS(2804), + [anon_sym_bycopy] = ACTIONS(2804), + [anon_sym_byref] = ACTIONS(2804), + [anon_sym_oneway] = ACTIONS(2804), + }, + [3787] = { + [sym_identifier] = ACTIONS(2660), + [anon_sym_COMMA] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [aux_sym_preproc_if_token1] = ACTIONS(2660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2662), + [anon_sym_LPAREN2] = ACTIONS(2662), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_CARET] = ACTIONS(2662), + [anon_sym_GT] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2662), + [anon_sym___extension__] = ACTIONS(2660), + [anon_sym___attribute__] = ACTIONS(2660), + [anon_sym___attribute] = ACTIONS(2660), + [anon_sym_noreturn] = ACTIONS(2660), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym___based] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_signed] = ACTIONS(2660), + [anon_sym_unsigned] = ACTIONS(2660), + [anon_sym_long] = ACTIONS(2660), + [anon_sym_short] = ACTIONS(2660), + [anon_sym_ATautoreleasepool] = ACTIONS(2662), + [anon_sym_const] = ACTIONS(2660), + [anon_sym_constexpr] = ACTIONS(2660), + [anon_sym_volatile] = ACTIONS(2660), + [anon_sym_restrict] = ACTIONS(2660), + [anon_sym___restrict__] = ACTIONS(2660), + [anon_sym__Atomic] = ACTIONS(2660), + [anon_sym__Noreturn] = ACTIONS(2660), + [anon_sym__Nonnull] = ACTIONS(2660), + [anon_sym_nullable] = ACTIONS(2660), + [anon_sym__Complex] = ACTIONS(2660), + [anon_sym__Nullable] = ACTIONS(2660), + [anon_sym__Nullable_result] = ACTIONS(2660), + [anon_sym__Null_unspecified] = ACTIONS(2660), + [anon_sym___autoreleasing] = ACTIONS(2660), + [anon_sym___block] = ACTIONS(2660), + [anon_sym___bridge] = ACTIONS(2660), + [anon_sym___bridge_retained] = ACTIONS(2660), + [anon_sym___bridge_transfer] = ACTIONS(2660), + [anon_sym___complex] = ACTIONS(2660), + [anon_sym___const] = ACTIONS(2660), + [anon_sym___imag] = ACTIONS(2660), + [anon_sym___kindof] = ACTIONS(2660), + [anon_sym___nonnull] = ACTIONS(2660), + [anon_sym___nullable] = ACTIONS(2660), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2660), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2660), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2660), + [anon_sym___real] = ACTIONS(2660), + [anon_sym___strong] = ACTIONS(2660), + [anon_sym___unsafe_unretained] = ACTIONS(2660), + [anon_sym___unused] = ACTIONS(2660), + [anon_sym___weak] = ACTIONS(2660), + [anon_sym_alignas] = ACTIONS(2660), + [anon_sym__Alignas] = ACTIONS(2660), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_enum] = ACTIONS(2660), + [anon_sym_COLON] = ACTIONS(2662), + [anon_sym_struct] = ACTIONS(2660), + [anon_sym_union] = ACTIONS(2660), + [anon_sym_in] = ACTIONS(2660), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2660), + [anon_sym___typeof] = ACTIONS(2660), + [anon_sym_typeof] = ACTIONS(2660), + [anon_sym_ATprivate] = ACTIONS(2662), + [anon_sym_ATprotected] = ACTIONS(2662), + [anon_sym_ATpackage] = ACTIONS(2662), + [anon_sym_ATpublic] = ACTIONS(2662), + [anon_sym_BOOL] = ACTIONS(2660), + [anon_sym_IMP] = ACTIONS(2660), + [anon_sym_SEL] = ACTIONS(2660), + [anon_sym_Class] = ACTIONS(2660), + [anon_sym_id] = ACTIONS(2660), + [anon_sym_out] = ACTIONS(2660), + [anon_sym_inout] = ACTIONS(2660), + [anon_sym_bycopy] = ACTIONS(2660), + [anon_sym_byref] = ACTIONS(2660), + [anon_sym_oneway] = ACTIONS(2660), + }, + [3788] = { + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_specifier_qualifier] = STATE(3788), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3788), + [sym_identifier] = ACTIONS(8803), + [anon_sym_LPAREN2] = ACTIONS(8806), + [anon_sym_STAR] = ACTIONS(8806), + [anon_sym_CARET] = ACTIONS(8806), + [anon_sym___extension__] = ACTIONS(8808), + [anon_sym_noreturn] = ACTIONS(8808), + [anon_sym___based] = ACTIONS(8811), + [anon_sym_signed] = ACTIONS(8813), + [anon_sym_unsigned] = ACTIONS(8813), + [anon_sym_long] = ACTIONS(8813), + [anon_sym_short] = ACTIONS(8813), + [anon_sym_const] = ACTIONS(8808), + [anon_sym_constexpr] = ACTIONS(8808), + [anon_sym_volatile] = ACTIONS(8808), + [anon_sym_restrict] = ACTIONS(8808), + [anon_sym___restrict__] = ACTIONS(8808), + [anon_sym__Atomic] = ACTIONS(8808), + [anon_sym__Noreturn] = ACTIONS(8808), + [anon_sym__Nonnull] = ACTIONS(8808), + [anon_sym_nullable] = ACTIONS(8808), + [anon_sym__Complex] = ACTIONS(8808), + [anon_sym__Nullable] = ACTIONS(8808), + [anon_sym__Nullable_result] = ACTIONS(8808), + [anon_sym__Null_unspecified] = ACTIONS(8808), + [anon_sym___autoreleasing] = ACTIONS(8808), + [anon_sym___block] = ACTIONS(8808), + [anon_sym___bridge] = ACTIONS(8808), + [anon_sym___bridge_retained] = ACTIONS(8808), + [anon_sym___bridge_transfer] = ACTIONS(8808), + [anon_sym___complex] = ACTIONS(8808), + [anon_sym___const] = ACTIONS(8808), + [anon_sym___imag] = ACTIONS(8808), + [anon_sym___kindof] = ACTIONS(8808), + [anon_sym___nonnull] = ACTIONS(8808), + [anon_sym___nullable] = ACTIONS(8808), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8808), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8808), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8808), + [anon_sym___real] = ACTIONS(8808), + [anon_sym___strong] = ACTIONS(8808), + [anon_sym___unsafe_unretained] = ACTIONS(8808), + [anon_sym___unused] = ACTIONS(8808), + [anon_sym___weak] = ACTIONS(8808), + [anon_sym_alignas] = ACTIONS(8816), + [anon_sym__Alignas] = ACTIONS(8816), + [sym_primitive_type] = ACTIONS(8819), + [anon_sym_enum] = ACTIONS(8822), + [anon_sym_COLON] = ACTIONS(8806), + [anon_sym_struct] = ACTIONS(8825), + [anon_sym_union] = ACTIONS(8828), + [anon_sym_in] = ACTIONS(8831), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8834), + [anon_sym___typeof] = ACTIONS(8834), + [anon_sym_typeof] = ACTIONS(8834), + [anon_sym_BOOL] = ACTIONS(8837), + [anon_sym_IMP] = ACTIONS(8837), + [anon_sym_SEL] = ACTIONS(8837), + [anon_sym_Class] = ACTIONS(8837), + [anon_sym_id] = ACTIONS(8837), + [anon_sym_out] = ACTIONS(8831), + [anon_sym_inout] = ACTIONS(8831), + [anon_sym_bycopy] = ACTIONS(8831), + [anon_sym_byref] = ACTIONS(8831), + [anon_sym_oneway] = ACTIONS(8831), + }, + [3789] = { + [sym_identifier] = ACTIONS(2836), + [anon_sym_COMMA] = ACTIONS(2838), + [anon_sym_RPAREN] = ACTIONS(2838), + [aux_sym_preproc_if_token1] = ACTIONS(2836), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2838), + [anon_sym_LPAREN2] = ACTIONS(2838), + [anon_sym_STAR] = ACTIONS(2838), + [anon_sym_CARET] = ACTIONS(2838), + [anon_sym_GT] = ACTIONS(2838), + [anon_sym_LT] = ACTIONS(2838), + [anon_sym___extension__] = ACTIONS(2836), + [anon_sym___attribute__] = ACTIONS(2836), + [anon_sym___attribute] = ACTIONS(2836), + [anon_sym_noreturn] = ACTIONS(2836), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym___based] = ACTIONS(2836), + [anon_sym_LBRACE] = ACTIONS(2838), + [anon_sym_signed] = ACTIONS(2836), + [anon_sym_unsigned] = ACTIONS(2836), + [anon_sym_long] = ACTIONS(2836), + [anon_sym_short] = ACTIONS(2836), + [anon_sym_ATautoreleasepool] = ACTIONS(2838), + [anon_sym_const] = ACTIONS(2836), + [anon_sym_constexpr] = ACTIONS(2836), + [anon_sym_volatile] = ACTIONS(2836), + [anon_sym_restrict] = ACTIONS(2836), + [anon_sym___restrict__] = ACTIONS(2836), + [anon_sym__Atomic] = ACTIONS(2836), + [anon_sym__Noreturn] = ACTIONS(2836), + [anon_sym__Nonnull] = ACTIONS(2836), + [anon_sym_nullable] = ACTIONS(2836), + [anon_sym__Complex] = ACTIONS(2836), + [anon_sym__Nullable] = ACTIONS(2836), + [anon_sym__Nullable_result] = ACTIONS(2836), + [anon_sym__Null_unspecified] = ACTIONS(2836), + [anon_sym___autoreleasing] = ACTIONS(2836), + [anon_sym___block] = ACTIONS(2836), + [anon_sym___bridge] = ACTIONS(2836), + [anon_sym___bridge_retained] = ACTIONS(2836), + [anon_sym___bridge_transfer] = ACTIONS(2836), + [anon_sym___complex] = ACTIONS(2836), + [anon_sym___const] = ACTIONS(2836), + [anon_sym___imag] = ACTIONS(2836), + [anon_sym___kindof] = ACTIONS(2836), + [anon_sym___nonnull] = ACTIONS(2836), + [anon_sym___nullable] = ACTIONS(2836), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2836), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2836), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2836), + [anon_sym___real] = ACTIONS(2836), + [anon_sym___strong] = ACTIONS(2836), + [anon_sym___unsafe_unretained] = ACTIONS(2836), + [anon_sym___unused] = ACTIONS(2836), + [anon_sym___weak] = ACTIONS(2836), + [anon_sym_alignas] = ACTIONS(2836), + [anon_sym__Alignas] = ACTIONS(2836), + [sym_primitive_type] = ACTIONS(2836), + [anon_sym_enum] = ACTIONS(2836), + [anon_sym_COLON] = ACTIONS(2838), + [anon_sym_struct] = ACTIONS(2836), + [anon_sym_union] = ACTIONS(2836), + [anon_sym_in] = ACTIONS(2836), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2836), + [anon_sym___typeof] = ACTIONS(2836), + [anon_sym_typeof] = ACTIONS(2836), + [anon_sym_ATprivate] = ACTIONS(2838), + [anon_sym_ATprotected] = ACTIONS(2838), + [anon_sym_ATpackage] = ACTIONS(2838), + [anon_sym_ATpublic] = ACTIONS(2838), + [anon_sym_BOOL] = ACTIONS(2836), + [anon_sym_IMP] = ACTIONS(2836), + [anon_sym_SEL] = ACTIONS(2836), + [anon_sym_Class] = ACTIONS(2836), + [anon_sym_id] = ACTIONS(2836), + [anon_sym_out] = ACTIONS(2836), + [anon_sym_inout] = ACTIONS(2836), + [anon_sym_bycopy] = ACTIONS(2836), + [anon_sym_byref] = ACTIONS(2836), + [anon_sym_oneway] = ACTIONS(2836), + }, + [3790] = { + [sym_attribute_specifier] = STATE(3823), + [sym_gnu_asm_expression] = STATE(3816), + [aux_sym_function_declarator_repeat1] = STATE(3823), + [sym_identifier] = ACTIONS(6575), + [anon_sym_COMMA] = ACTIONS(6577), + [anon_sym_RPAREN] = ACTIONS(6577), + [anon_sym_LPAREN2] = ACTIONS(6577), + [anon_sym_STAR] = ACTIONS(6577), + [anon_sym_CARET] = ACTIONS(6577), + [anon_sym_GT] = ACTIONS(6577), + [anon_sym_LT] = ACTIONS(6577), + [anon_sym___extension__] = ACTIONS(6575), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(6575), + [anon_sym_LBRACK] = ACTIONS(6577), + [anon_sym___based] = ACTIONS(6575), + [anon_sym_LBRACE] = ACTIONS(6577), + [anon_sym_signed] = ACTIONS(6575), + [anon_sym_unsigned] = ACTIONS(6575), + [anon_sym_long] = ACTIONS(6575), + [anon_sym_short] = ACTIONS(6575), + [anon_sym_ATautoreleasepool] = ACTIONS(6577), + [anon_sym_const] = ACTIONS(6575), + [anon_sym_constexpr] = ACTIONS(6575), + [anon_sym_volatile] = ACTIONS(6575), + [anon_sym_restrict] = ACTIONS(6575), + [anon_sym___restrict__] = ACTIONS(6575), + [anon_sym__Atomic] = ACTIONS(6575), + [anon_sym__Noreturn] = ACTIONS(6575), + [anon_sym__Nonnull] = ACTIONS(6575), + [anon_sym_nullable] = ACTIONS(6575), + [anon_sym__Complex] = ACTIONS(6575), + [anon_sym__Nullable] = ACTIONS(6575), + [anon_sym__Nullable_result] = ACTIONS(6575), + [anon_sym__Null_unspecified] = ACTIONS(6575), + [anon_sym___autoreleasing] = ACTIONS(6575), + [anon_sym___block] = ACTIONS(6575), + [anon_sym___bridge] = ACTIONS(6575), + [anon_sym___bridge_retained] = ACTIONS(6575), + [anon_sym___bridge_transfer] = ACTIONS(6575), + [anon_sym___complex] = ACTIONS(6575), + [anon_sym___const] = ACTIONS(6575), + [anon_sym___imag] = ACTIONS(6575), + [anon_sym___kindof] = ACTIONS(6575), + [anon_sym___nonnull] = ACTIONS(6575), + [anon_sym___nullable] = ACTIONS(6575), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6575), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6575), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6575), + [anon_sym___real] = ACTIONS(6575), + [anon_sym___strong] = ACTIONS(6575), + [anon_sym___unsafe_unretained] = ACTIONS(6575), + [anon_sym___unused] = ACTIONS(6575), + [anon_sym___weak] = ACTIONS(6575), + [anon_sym_alignas] = ACTIONS(6575), + [anon_sym__Alignas] = ACTIONS(6575), + [sym_primitive_type] = ACTIONS(6575), + [anon_sym_enum] = ACTIONS(6575), + [anon_sym_struct] = ACTIONS(6575), + [anon_sym_union] = ACTIONS(6575), + [anon_sym_in] = ACTIONS(6575), + [anon_sym_asm] = ACTIONS(8840), + [anon_sym___asm__] = ACTIONS(8840), + [anon_sym___asm] = ACTIONS(8840), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6575), + [anon_sym___typeof] = ACTIONS(6575), + [anon_sym_typeof] = ACTIONS(6575), + [anon_sym_BOOL] = ACTIONS(6575), + [anon_sym_IMP] = ACTIONS(6575), + [anon_sym_SEL] = ACTIONS(6575), + [anon_sym_Class] = ACTIONS(6575), + [anon_sym_id] = ACTIONS(6575), + [anon_sym_out] = ACTIONS(6575), + [anon_sym_inout] = ACTIONS(6575), + [anon_sym_bycopy] = ACTIONS(6575), + [anon_sym_byref] = ACTIONS(6575), + [anon_sym_oneway] = ACTIONS(6575), + }, + [3791] = { + [sym_identifier] = ACTIONS(6752), + [anon_sym_COMMA] = ACTIONS(6754), + [anon_sym_RPAREN] = ACTIONS(6754), + [anon_sym_LPAREN2] = ACTIONS(6754), + [anon_sym_STAR] = ACTIONS(6754), + [anon_sym_CARET] = ACTIONS(6754), + [anon_sym_GT] = ACTIONS(6754), + [anon_sym_LT] = ACTIONS(6754), + [anon_sym_SEMI] = ACTIONS(6754), + [anon_sym___extension__] = ACTIONS(6752), + [anon_sym___attribute__] = ACTIONS(6752), + [anon_sym___attribute] = ACTIONS(6752), + [anon_sym_noreturn] = ACTIONS(6752), + [anon_sym_LBRACK] = ACTIONS(6754), + [anon_sym___based] = ACTIONS(6752), + [anon_sym_LBRACE] = ACTIONS(6754), + [anon_sym_signed] = ACTIONS(6752), + [anon_sym_unsigned] = ACTIONS(6752), + [anon_sym_long] = ACTIONS(6752), + [anon_sym_short] = ACTIONS(6752), + [anon_sym_ATautoreleasepool] = ACTIONS(6754), + [anon_sym_const] = ACTIONS(6752), + [anon_sym_constexpr] = ACTIONS(6752), + [anon_sym_volatile] = ACTIONS(6752), + [anon_sym_restrict] = ACTIONS(6752), + [anon_sym___restrict__] = ACTIONS(6752), + [anon_sym__Atomic] = ACTIONS(6752), + [anon_sym__Noreturn] = ACTIONS(6752), + [anon_sym__Nonnull] = ACTIONS(6752), + [anon_sym_nullable] = ACTIONS(6752), + [anon_sym__Complex] = ACTIONS(6752), + [anon_sym__Nullable] = ACTIONS(6752), + [anon_sym__Nullable_result] = ACTIONS(6752), + [anon_sym__Null_unspecified] = ACTIONS(6752), + [anon_sym___autoreleasing] = ACTIONS(6752), + [anon_sym___block] = ACTIONS(6752), + [anon_sym___bridge] = ACTIONS(6752), + [anon_sym___bridge_retained] = ACTIONS(6752), + [anon_sym___bridge_transfer] = ACTIONS(6752), + [anon_sym___complex] = ACTIONS(6752), + [anon_sym___const] = ACTIONS(6752), + [anon_sym___imag] = ACTIONS(6752), + [anon_sym___kindof] = ACTIONS(6752), + [anon_sym___nonnull] = ACTIONS(6752), + [anon_sym___nullable] = ACTIONS(6752), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6752), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6752), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6752), + [anon_sym___real] = ACTIONS(6752), + [anon_sym___strong] = ACTIONS(6752), + [anon_sym___unsafe_unretained] = ACTIONS(6752), + [anon_sym___unused] = ACTIONS(6752), + [anon_sym___weak] = ACTIONS(6752), + [anon_sym_alignas] = ACTIONS(6752), + [anon_sym__Alignas] = ACTIONS(6752), + [sym_primitive_type] = ACTIONS(6752), + [anon_sym_enum] = ACTIONS(6752), + [anon_sym_COLON] = ACTIONS(6754), + [anon_sym_struct] = ACTIONS(6752), + [anon_sym_union] = ACTIONS(6752), + [anon_sym_in] = ACTIONS(6752), + [anon_sym_asm] = ACTIONS(6752), + [anon_sym___asm__] = ACTIONS(6752), + [anon_sym___asm] = ACTIONS(6752), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6752), + [anon_sym___typeof] = ACTIONS(6752), + [anon_sym_typeof] = ACTIONS(6752), + [anon_sym_BOOL] = ACTIONS(6752), + [anon_sym_IMP] = ACTIONS(6752), + [anon_sym_SEL] = ACTIONS(6752), + [anon_sym_Class] = ACTIONS(6752), + [anon_sym_id] = ACTIONS(6752), + [anon_sym_out] = ACTIONS(6752), + [anon_sym_inout] = ACTIONS(6752), + [anon_sym_bycopy] = ACTIONS(6752), + [anon_sym_byref] = ACTIONS(6752), + [anon_sym_oneway] = ACTIONS(6752), + }, + [3792] = { + [sym_type_qualifier] = STATE(3799), + [sym_alignas_qualifier] = STATE(3982), + [aux_sym__type_definition_type_repeat1] = STATE(3799), + [aux_sym_sized_type_specifier_repeat1] = STATE(3832), + [sym_identifier] = ACTIONS(8842), + [anon_sym_COMMA] = ACTIONS(6989), + [anon_sym_RPAREN] = ACTIONS(6989), + [anon_sym_LPAREN2] = ACTIONS(6989), + [anon_sym_STAR] = ACTIONS(6989), + [anon_sym_CARET] = ACTIONS(6989), + [anon_sym_GT] = ACTIONS(6989), + [anon_sym_LT] = ACTIONS(6989), + [anon_sym___extension__] = ACTIONS(8845), + [anon_sym___attribute__] = ACTIONS(6994), + [anon_sym___attribute] = ACTIONS(6994), + [anon_sym_noreturn] = ACTIONS(8845), + [anon_sym_LBRACK] = ACTIONS(6989), + [anon_sym___based] = ACTIONS(6994), + [anon_sym_LBRACE] = ACTIONS(6989), + [anon_sym_signed] = ACTIONS(8848), + [anon_sym_unsigned] = ACTIONS(8848), + [anon_sym_long] = ACTIONS(8848), + [anon_sym_short] = ACTIONS(8848), + [anon_sym_ATautoreleasepool] = ACTIONS(6989), + [anon_sym_const] = ACTIONS(8845), + [anon_sym_constexpr] = ACTIONS(8845), + [anon_sym_volatile] = ACTIONS(8845), + [anon_sym_restrict] = ACTIONS(8845), + [anon_sym___restrict__] = ACTIONS(8845), + [anon_sym__Atomic] = ACTIONS(8845), + [anon_sym__Noreturn] = ACTIONS(8845), + [anon_sym__Nonnull] = ACTIONS(8845), + [anon_sym_nullable] = ACTIONS(8845), + [anon_sym__Complex] = ACTIONS(8845), + [anon_sym__Nullable] = ACTIONS(8845), + [anon_sym__Nullable_result] = ACTIONS(8845), + [anon_sym__Null_unspecified] = ACTIONS(8845), + [anon_sym___autoreleasing] = ACTIONS(8845), + [anon_sym___block] = ACTIONS(8845), + [anon_sym___bridge] = ACTIONS(8845), + [anon_sym___bridge_retained] = ACTIONS(8845), + [anon_sym___bridge_transfer] = ACTIONS(8845), + [anon_sym___complex] = ACTIONS(8845), + [anon_sym___const] = ACTIONS(8845), + [anon_sym___imag] = ACTIONS(8845), + [anon_sym___kindof] = ACTIONS(8845), + [anon_sym___nonnull] = ACTIONS(8845), + [anon_sym___nullable] = ACTIONS(8845), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8845), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8845), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8845), + [anon_sym___real] = ACTIONS(8845), + [anon_sym___strong] = ACTIONS(8845), + [anon_sym___unsafe_unretained] = ACTIONS(8845), + [anon_sym___unused] = ACTIONS(8845), + [anon_sym___weak] = ACTIONS(8845), + [anon_sym_alignas] = ACTIONS(8851), + [anon_sym__Alignas] = ACTIONS(8851), + [sym_primitive_type] = ACTIONS(8854), + [anon_sym_enum] = ACTIONS(6994), + [anon_sym_COLON] = ACTIONS(6989), + [anon_sym_struct] = ACTIONS(6994), + [anon_sym_union] = ACTIONS(6994), + [anon_sym_in] = ACTIONS(6994), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6994), + [anon_sym___typeof] = ACTIONS(6994), + [anon_sym_typeof] = ACTIONS(6994), + [anon_sym_BOOL] = ACTIONS(6994), + [anon_sym_IMP] = ACTIONS(6994), + [anon_sym_SEL] = ACTIONS(6994), + [anon_sym_Class] = ACTIONS(6994), + [anon_sym_id] = ACTIONS(6994), + [anon_sym_out] = ACTIONS(6994), + [anon_sym_inout] = ACTIONS(6994), + [anon_sym_bycopy] = ACTIONS(6994), + [anon_sym_byref] = ACTIONS(6994), + [anon_sym_oneway] = ACTIONS(6994), + }, + [3793] = { + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_struct_declaration] = STATE(2411), + [sym_atomic_declaration] = STATE(2411), + [sym_specifier_qualifier] = STATE(3356), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3356), + [sym_identifier] = ACTIONS(8295), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8799), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3794] = { + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_struct_declaration] = STATE(2336), + [sym_atomic_declaration] = STATE(2336), + [sym_specifier_qualifier] = STATE(3353), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3353), + [sym_identifier] = ACTIONS(8295), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8801), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3795] = { + [sym_identifier] = ACTIONS(6766), + [anon_sym_COMMA] = ACTIONS(6758), + [anon_sym_RPAREN] = ACTIONS(6758), + [anon_sym_LPAREN2] = ACTIONS(6758), + [anon_sym_STAR] = ACTIONS(6758), + [anon_sym_CARET] = ACTIONS(6758), + [anon_sym_GT] = ACTIONS(6758), + [anon_sym_LT] = ACTIONS(6758), + [anon_sym_SEMI] = ACTIONS(6758), + [anon_sym___extension__] = ACTIONS(6766), + [anon_sym___attribute__] = ACTIONS(6766), + [anon_sym___attribute] = ACTIONS(6766), + [anon_sym_noreturn] = ACTIONS(6766), + [anon_sym_LBRACK] = ACTIONS(6758), + [anon_sym___based] = ACTIONS(6766), + [anon_sym_LBRACE] = ACTIONS(6758), + [anon_sym_signed] = ACTIONS(6766), + [anon_sym_unsigned] = ACTIONS(6766), + [anon_sym_long] = ACTIONS(6766), + [anon_sym_short] = ACTIONS(6766), + [anon_sym_ATautoreleasepool] = ACTIONS(6758), + [anon_sym_const] = ACTIONS(6766), + [anon_sym_constexpr] = ACTIONS(6766), + [anon_sym_volatile] = ACTIONS(6766), + [anon_sym_restrict] = ACTIONS(6766), + [anon_sym___restrict__] = ACTIONS(6766), + [anon_sym__Atomic] = ACTIONS(6766), + [anon_sym__Noreturn] = ACTIONS(6766), + [anon_sym__Nonnull] = ACTIONS(6766), + [anon_sym_nullable] = ACTIONS(6766), + [anon_sym__Complex] = ACTIONS(6766), + [anon_sym__Nullable] = ACTIONS(6766), + [anon_sym__Nullable_result] = ACTIONS(6766), + [anon_sym__Null_unspecified] = ACTIONS(6766), + [anon_sym___autoreleasing] = ACTIONS(6766), + [anon_sym___block] = ACTIONS(6766), + [anon_sym___bridge] = ACTIONS(6766), + [anon_sym___bridge_retained] = ACTIONS(6766), + [anon_sym___bridge_transfer] = ACTIONS(6766), + [anon_sym___complex] = ACTIONS(6766), + [anon_sym___const] = ACTIONS(6766), + [anon_sym___imag] = ACTIONS(6766), + [anon_sym___kindof] = ACTIONS(6766), + [anon_sym___nonnull] = ACTIONS(6766), + [anon_sym___nullable] = ACTIONS(6766), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6766), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6766), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6766), + [anon_sym___real] = ACTIONS(6766), + [anon_sym___strong] = ACTIONS(6766), + [anon_sym___unsafe_unretained] = ACTIONS(6766), + [anon_sym___unused] = ACTIONS(6766), + [anon_sym___weak] = ACTIONS(6766), + [anon_sym_alignas] = ACTIONS(6766), + [anon_sym__Alignas] = ACTIONS(6766), + [sym_primitive_type] = ACTIONS(6766), + [anon_sym_enum] = ACTIONS(6766), + [anon_sym_COLON] = ACTIONS(6758), + [anon_sym_struct] = ACTIONS(6766), + [anon_sym_union] = ACTIONS(6766), + [anon_sym_in] = ACTIONS(6766), + [anon_sym_asm] = ACTIONS(6766), + [anon_sym___asm__] = ACTIONS(6766), + [anon_sym___asm] = ACTIONS(6766), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6766), + [anon_sym___typeof] = ACTIONS(6766), + [anon_sym_typeof] = ACTIONS(6766), + [anon_sym_BOOL] = ACTIONS(6766), + [anon_sym_IMP] = ACTIONS(6766), + [anon_sym_SEL] = ACTIONS(6766), + [anon_sym_Class] = ACTIONS(6766), + [anon_sym_id] = ACTIONS(6766), + [anon_sym_out] = ACTIONS(6766), + [anon_sym_inout] = ACTIONS(6766), + [anon_sym_bycopy] = ACTIONS(6766), + [anon_sym_byref] = ACTIONS(6766), + [anon_sym_oneway] = ACTIONS(6766), + }, + [3796] = { + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_struct_declaration] = STATE(2260), + [sym_atomic_declaration] = STATE(2260), + [sym_specifier_qualifier] = STATE(3355), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3355), + [sym_identifier] = ACTIONS(8295), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8797), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3797] = { + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_struct_declaration] = STATE(2319), + [sym_atomic_declaration] = STATE(2319), + [sym_specifier_qualifier] = STATE(3355), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3355), + [sym_identifier] = ACTIONS(8295), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8797), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3798] = { + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_struct_declaration] = STATE(2310), + [sym_atomic_declaration] = STATE(2310), + [sym_specifier_qualifier] = STATE(3355), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3355), + [sym_identifier] = ACTIONS(8295), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8797), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3799] = { + [sym_type_qualifier] = STATE(3805), + [sym_alignas_qualifier] = STATE(3982), + [aux_sym__type_definition_type_repeat1] = STATE(3805), + [aux_sym_sized_type_specifier_repeat1] = STATE(3848), + [sym_identifier] = ACTIONS(8857), + [anon_sym_COMMA] = ACTIONS(6972), + [anon_sym_RPAREN] = ACTIONS(6972), + [anon_sym_LPAREN2] = ACTIONS(6972), + [anon_sym_STAR] = ACTIONS(6972), + [anon_sym_CARET] = ACTIONS(6972), + [anon_sym_GT] = ACTIONS(6972), + [anon_sym_LT] = ACTIONS(6972), + [anon_sym___extension__] = ACTIONS(8860), + [anon_sym___attribute__] = ACTIONS(6977), + [anon_sym___attribute] = ACTIONS(6977), + [anon_sym_noreturn] = ACTIONS(8860), + [anon_sym_LBRACK] = ACTIONS(6972), + [anon_sym___based] = ACTIONS(6977), + [anon_sym_LBRACE] = ACTIONS(6972), + [anon_sym_signed] = ACTIONS(8863), + [anon_sym_unsigned] = ACTIONS(8863), + [anon_sym_long] = ACTIONS(8863), + [anon_sym_short] = ACTIONS(8863), + [anon_sym_ATautoreleasepool] = ACTIONS(6972), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_constexpr] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym___restrict__] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym__Noreturn] = ACTIONS(8860), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym_nullable] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym___const] = ACTIONS(8860), + [anon_sym___imag] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8860), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8860), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8860), + [anon_sym___real] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym_alignas] = ACTIONS(8866), + [anon_sym__Alignas] = ACTIONS(8866), + [sym_primitive_type] = ACTIONS(8869), + [anon_sym_enum] = ACTIONS(6977), + [anon_sym_COLON] = ACTIONS(6972), + [anon_sym_struct] = ACTIONS(6977), + [anon_sym_union] = ACTIONS(6977), + [anon_sym_in] = ACTIONS(6977), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6977), + [anon_sym___typeof] = ACTIONS(6977), + [anon_sym_typeof] = ACTIONS(6977), + [anon_sym_BOOL] = ACTIONS(6977), + [anon_sym_IMP] = ACTIONS(6977), + [anon_sym_SEL] = ACTIONS(6977), + [anon_sym_Class] = ACTIONS(6977), + [anon_sym_id] = ACTIONS(6977), + [anon_sym_out] = ACTIONS(6977), + [anon_sym_inout] = ACTIONS(6977), + [anon_sym_bycopy] = ACTIONS(6977), + [anon_sym_byref] = ACTIONS(6977), + [anon_sym_oneway] = ACTIONS(6977), + }, + [3800] = { + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_struct_declaration] = STATE(2418), + [sym_atomic_declaration] = STATE(2418), + [sym_specifier_qualifier] = STATE(3356), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3356), + [sym_identifier] = ACTIONS(8295), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8799), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3801] = { + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_struct_declaration] = STATE(2431), + [sym_atomic_declaration] = STATE(2431), + [sym_specifier_qualifier] = STATE(3356), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3356), + [sym_identifier] = ACTIONS(8295), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8799), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3802] = { + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_struct_declaration] = STATE(2329), + [sym_atomic_declaration] = STATE(2329), + [sym_specifier_qualifier] = STATE(3353), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3353), + [sym_identifier] = ACTIONS(8295), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8801), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3803] = { + [sym_type_qualifier] = STATE(3945), + [sym_alignas_qualifier] = STATE(3982), + [sym_type_specifier] = STATE(3978), + [sym_sized_type_specifier] = STATE(3913), + [sym_enum_specifier] = STATE(3913), + [sym_struct_specifier] = STATE(3913), + [sym_union_specifier] = STATE(3913), + [sym_macro_type_specifier] = STATE(3913), + [sym_typeof_specifier] = STATE(3913), + [sym_struct_declaration] = STATE(2324), + [sym_atomic_declaration] = STATE(2324), + [sym_specifier_qualifier] = STATE(3353), + [sym_generic_specifier] = STATE(3913), + [sym_typedefed_specifier] = STATE(3913), + [sym_array_type_specifier] = STATE(3913), + [sym_protocol_qualifier] = STATE(3945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_struct_declaration_repeat1] = STATE(3353), + [sym_identifier] = ACTIONS(8295), + [anon_sym___extension__] = ACTIONS(8074), + [anon_sym_noreturn] = ACTIONS(8074), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_const] = ACTIONS(8074), + [anon_sym_constexpr] = ACTIONS(8074), + [anon_sym_volatile] = ACTIONS(8074), + [anon_sym_restrict] = ACTIONS(8074), + [anon_sym___restrict__] = ACTIONS(8074), + [anon_sym__Atomic] = ACTIONS(8801), + [anon_sym__Noreturn] = ACTIONS(8074), + [anon_sym__Nonnull] = ACTIONS(8074), + [anon_sym_nullable] = ACTIONS(8074), + [anon_sym__Complex] = ACTIONS(8074), + [anon_sym__Nullable] = ACTIONS(8074), + [anon_sym__Nullable_result] = ACTIONS(8074), + [anon_sym__Null_unspecified] = ACTIONS(8074), + [anon_sym___autoreleasing] = ACTIONS(8074), + [anon_sym___block] = ACTIONS(8074), + [anon_sym___bridge] = ACTIONS(8074), + [anon_sym___bridge_retained] = ACTIONS(8074), + [anon_sym___bridge_transfer] = ACTIONS(8074), + [anon_sym___complex] = ACTIONS(8074), + [anon_sym___const] = ACTIONS(8074), + [anon_sym___imag] = ACTIONS(8074), + [anon_sym___kindof] = ACTIONS(8074), + [anon_sym___nonnull] = ACTIONS(8074), + [anon_sym___nullable] = ACTIONS(8074), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8074), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8074), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8074), + [anon_sym___real] = ACTIONS(8074), + [anon_sym___strong] = ACTIONS(8074), + [anon_sym___unsafe_unretained] = ACTIONS(8074), + [anon_sym___unused] = ACTIONS(8074), + [anon_sym___weak] = ACTIONS(8074), + [anon_sym_alignas] = ACTIONS(8082), + [anon_sym__Alignas] = ACTIONS(8082), + [sym_primitive_type] = ACTIONS(8084), + [anon_sym_enum] = ACTIONS(8307), + [anon_sym_struct] = ACTIONS(8088), + [anon_sym_union] = ACTIONS(8090), + [anon_sym_in] = ACTIONS(8092), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8094), + [anon_sym___typeof] = ACTIONS(8094), + [anon_sym_typeof] = ACTIONS(8094), + [anon_sym_BOOL] = ACTIONS(8096), + [anon_sym_IMP] = ACTIONS(8096), + [anon_sym_SEL] = ACTIONS(8096), + [anon_sym_Class] = ACTIONS(8096), + [anon_sym_id] = ACTIONS(8096), + [anon_sym_out] = ACTIONS(8092), + [anon_sym_inout] = ACTIONS(8092), + [anon_sym_bycopy] = ACTIONS(8092), + [anon_sym_byref] = ACTIONS(8092), + [anon_sym_oneway] = ACTIONS(8092), + }, + [3804] = { + [sym_identifier] = ACTIONS(6726), + [anon_sym_COMMA] = ACTIONS(6728), + [anon_sym_RPAREN] = ACTIONS(6728), + [anon_sym_LPAREN2] = ACTIONS(6728), + [anon_sym_STAR] = ACTIONS(6728), + [anon_sym_CARET] = ACTIONS(6728), + [anon_sym_GT] = ACTIONS(6728), + [anon_sym_LT] = ACTIONS(6728), + [anon_sym_SEMI] = ACTIONS(6728), + [anon_sym___extension__] = ACTIONS(6726), + [anon_sym___attribute__] = ACTIONS(6726), + [anon_sym___attribute] = ACTIONS(6726), + [anon_sym_noreturn] = ACTIONS(6726), + [anon_sym_LBRACK] = ACTIONS(6728), + [anon_sym___based] = ACTIONS(6726), + [anon_sym_LBRACE] = ACTIONS(6728), + [anon_sym_signed] = ACTIONS(6726), + [anon_sym_unsigned] = ACTIONS(6726), + [anon_sym_long] = ACTIONS(6726), + [anon_sym_short] = ACTIONS(6726), + [anon_sym_ATautoreleasepool] = ACTIONS(6728), + [anon_sym_const] = ACTIONS(6726), + [anon_sym_constexpr] = ACTIONS(6726), + [anon_sym_volatile] = ACTIONS(6726), + [anon_sym_restrict] = ACTIONS(6726), + [anon_sym___restrict__] = ACTIONS(6726), + [anon_sym__Atomic] = ACTIONS(6726), + [anon_sym__Noreturn] = ACTIONS(6726), + [anon_sym__Nonnull] = ACTIONS(6726), + [anon_sym_nullable] = ACTIONS(6726), + [anon_sym__Complex] = ACTIONS(6726), + [anon_sym__Nullable] = ACTIONS(6726), + [anon_sym__Nullable_result] = ACTIONS(6726), + [anon_sym__Null_unspecified] = ACTIONS(6726), + [anon_sym___autoreleasing] = ACTIONS(6726), + [anon_sym___block] = ACTIONS(6726), + [anon_sym___bridge] = ACTIONS(6726), + [anon_sym___bridge_retained] = ACTIONS(6726), + [anon_sym___bridge_transfer] = ACTIONS(6726), + [anon_sym___complex] = ACTIONS(6726), + [anon_sym___const] = ACTIONS(6726), + [anon_sym___imag] = ACTIONS(6726), + [anon_sym___kindof] = ACTIONS(6726), + [anon_sym___nonnull] = ACTIONS(6726), + [anon_sym___nullable] = ACTIONS(6726), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6726), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6726), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6726), + [anon_sym___real] = ACTIONS(6726), + [anon_sym___strong] = ACTIONS(6726), + [anon_sym___unsafe_unretained] = ACTIONS(6726), + [anon_sym___unused] = ACTIONS(6726), + [anon_sym___weak] = ACTIONS(6726), + [anon_sym_alignas] = ACTIONS(6726), + [anon_sym__Alignas] = ACTIONS(6726), + [sym_primitive_type] = ACTIONS(6726), + [anon_sym_enum] = ACTIONS(6726), + [anon_sym_COLON] = ACTIONS(6728), + [anon_sym_struct] = ACTIONS(6726), + [anon_sym_union] = ACTIONS(6726), + [anon_sym_in] = ACTIONS(6726), + [anon_sym_asm] = ACTIONS(6726), + [anon_sym___asm__] = ACTIONS(6726), + [anon_sym___asm] = ACTIONS(6726), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6726), + [anon_sym___typeof] = ACTIONS(6726), + [anon_sym_typeof] = ACTIONS(6726), + [anon_sym_BOOL] = ACTIONS(6726), + [anon_sym_IMP] = ACTIONS(6726), + [anon_sym_SEL] = ACTIONS(6726), + [anon_sym_Class] = ACTIONS(6726), + [anon_sym_id] = ACTIONS(6726), + [anon_sym_out] = ACTIONS(6726), + [anon_sym_inout] = ACTIONS(6726), + [anon_sym_bycopy] = ACTIONS(6726), + [anon_sym_byref] = ACTIONS(6726), + [anon_sym_oneway] = ACTIONS(6726), + }, + [3805] = { + [sym_type_qualifier] = STATE(3805), + [sym_alignas_qualifier] = STATE(3982), + [aux_sym__type_definition_type_repeat1] = STATE(3805), + [sym_identifier] = ACTIONS(6344), + [anon_sym_COMMA] = ACTIONS(6346), + [anon_sym_RPAREN] = ACTIONS(6346), + [anon_sym_LPAREN2] = ACTIONS(6346), + [anon_sym_STAR] = ACTIONS(6346), + [anon_sym_CARET] = ACTIONS(6346), + [anon_sym_GT] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(6346), + [anon_sym___extension__] = ACTIONS(8872), + [anon_sym___attribute__] = ACTIONS(6344), + [anon_sym___attribute] = ACTIONS(6344), + [anon_sym_noreturn] = ACTIONS(8872), + [anon_sym_LBRACK] = ACTIONS(6346), + [anon_sym___based] = ACTIONS(6344), + [anon_sym_LBRACE] = ACTIONS(6346), + [anon_sym_signed] = ACTIONS(6344), + [anon_sym_unsigned] = ACTIONS(6344), + [anon_sym_long] = ACTIONS(6344), + [anon_sym_short] = ACTIONS(6344), + [anon_sym_ATautoreleasepool] = ACTIONS(6346), + [anon_sym_const] = ACTIONS(8872), + [anon_sym_constexpr] = ACTIONS(8872), + [anon_sym_volatile] = ACTIONS(8872), + [anon_sym_restrict] = ACTIONS(8872), + [anon_sym___restrict__] = ACTIONS(8872), + [anon_sym__Atomic] = ACTIONS(8872), + [anon_sym__Noreturn] = ACTIONS(8872), + [anon_sym__Nonnull] = ACTIONS(8872), + [anon_sym_nullable] = ACTIONS(8872), + [anon_sym__Complex] = ACTIONS(8872), + [anon_sym__Nullable] = ACTIONS(8872), + [anon_sym__Nullable_result] = ACTIONS(8872), + [anon_sym__Null_unspecified] = ACTIONS(8872), + [anon_sym___autoreleasing] = ACTIONS(8872), + [anon_sym___block] = ACTIONS(8872), + [anon_sym___bridge] = ACTIONS(8872), + [anon_sym___bridge_retained] = ACTIONS(8872), + [anon_sym___bridge_transfer] = ACTIONS(8872), + [anon_sym___complex] = ACTIONS(8872), + [anon_sym___const] = ACTIONS(8872), + [anon_sym___imag] = ACTIONS(8872), + [anon_sym___kindof] = ACTIONS(8872), + [anon_sym___nonnull] = ACTIONS(8872), + [anon_sym___nullable] = ACTIONS(8872), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8872), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8872), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8872), + [anon_sym___real] = ACTIONS(8872), + [anon_sym___strong] = ACTIONS(8872), + [anon_sym___unsafe_unretained] = ACTIONS(8872), + [anon_sym___unused] = ACTIONS(8872), + [anon_sym___weak] = ACTIONS(8872), + [anon_sym_alignas] = ACTIONS(8875), + [anon_sym__Alignas] = ACTIONS(8875), + [sym_primitive_type] = ACTIONS(6344), + [anon_sym_enum] = ACTIONS(6344), + [anon_sym_COLON] = ACTIONS(6346), + [anon_sym_struct] = ACTIONS(6344), + [anon_sym_union] = ACTIONS(6344), + [anon_sym_in] = ACTIONS(6344), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6344), + [anon_sym___typeof] = ACTIONS(6344), + [anon_sym_typeof] = ACTIONS(6344), + [anon_sym_BOOL] = ACTIONS(6344), + [anon_sym_IMP] = ACTIONS(6344), + [anon_sym_SEL] = ACTIONS(6344), + [anon_sym_Class] = ACTIONS(6344), + [anon_sym_id] = ACTIONS(6344), + [anon_sym_out] = ACTIONS(6344), + [anon_sym_inout] = ACTIONS(6344), + [anon_sym_bycopy] = ACTIONS(6344), + [anon_sym_byref] = ACTIONS(6344), + [anon_sym_oneway] = ACTIONS(6344), + }, + [3806] = { + [sym_attribute_specifier] = STATE(3894), + [sym_field_declaration_list] = STATE(3834), + [sym_identifier] = ACTIONS(7073), + [anon_sym_COMMA] = ACTIONS(7075), + [anon_sym_RPAREN] = ACTIONS(7075), + [anon_sym_LPAREN2] = ACTIONS(7075), + [anon_sym_STAR] = ACTIONS(7075), + [anon_sym_CARET] = ACTIONS(7075), + [anon_sym_GT] = ACTIONS(7075), + [anon_sym_LT] = ACTIONS(7075), + [anon_sym___extension__] = ACTIONS(7073), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7073), + [anon_sym_LBRACK] = ACTIONS(7075), + [anon_sym___based] = ACTIONS(7073), + [anon_sym_LBRACE] = ACTIONS(8878), + [anon_sym_signed] = ACTIONS(7073), + [anon_sym_unsigned] = ACTIONS(7073), + [anon_sym_long] = ACTIONS(7073), + [anon_sym_short] = ACTIONS(7073), + [anon_sym_ATautoreleasepool] = ACTIONS(7075), + [anon_sym_const] = ACTIONS(7073), + [anon_sym_constexpr] = ACTIONS(7073), + [anon_sym_volatile] = ACTIONS(7073), + [anon_sym_restrict] = ACTIONS(7073), + [anon_sym___restrict__] = ACTIONS(7073), + [anon_sym__Atomic] = ACTIONS(7073), + [anon_sym__Noreturn] = ACTIONS(7073), + [anon_sym__Nonnull] = ACTIONS(7073), + [anon_sym_nullable] = ACTIONS(7073), + [anon_sym__Complex] = ACTIONS(7073), + [anon_sym__Nullable] = ACTIONS(7073), + [anon_sym__Nullable_result] = ACTIONS(7073), + [anon_sym__Null_unspecified] = ACTIONS(7073), + [anon_sym___autoreleasing] = ACTIONS(7073), + [anon_sym___block] = ACTIONS(7073), + [anon_sym___bridge] = ACTIONS(7073), + [anon_sym___bridge_retained] = ACTIONS(7073), + [anon_sym___bridge_transfer] = ACTIONS(7073), + [anon_sym___complex] = ACTIONS(7073), + [anon_sym___const] = ACTIONS(7073), + [anon_sym___imag] = ACTIONS(7073), + [anon_sym___kindof] = ACTIONS(7073), + [anon_sym___nonnull] = ACTIONS(7073), + [anon_sym___nullable] = ACTIONS(7073), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7073), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7073), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7073), + [anon_sym___real] = ACTIONS(7073), + [anon_sym___strong] = ACTIONS(7073), + [anon_sym___unsafe_unretained] = ACTIONS(7073), + [anon_sym___unused] = ACTIONS(7073), + [anon_sym___weak] = ACTIONS(7073), + [anon_sym_alignas] = ACTIONS(7073), + [anon_sym__Alignas] = ACTIONS(7073), + [sym_primitive_type] = ACTIONS(7073), + [anon_sym_enum] = ACTIONS(7073), + [anon_sym_COLON] = ACTIONS(7075), + [anon_sym_struct] = ACTIONS(7073), + [anon_sym_union] = ACTIONS(7073), + [anon_sym_in] = ACTIONS(7073), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7073), + [anon_sym___typeof] = ACTIONS(7073), + [anon_sym_typeof] = ACTIONS(7073), + [anon_sym_BOOL] = ACTIONS(7073), + [anon_sym_IMP] = ACTIONS(7073), + [anon_sym_SEL] = ACTIONS(7073), + [anon_sym_Class] = ACTIONS(7073), + [anon_sym_id] = ACTIONS(7073), + [anon_sym_out] = ACTIONS(7073), + [anon_sym_inout] = ACTIONS(7073), + [anon_sym_bycopy] = ACTIONS(7073), + [anon_sym_byref] = ACTIONS(7073), + [anon_sym_oneway] = ACTIONS(7073), + }, + [3807] = { + [sym_attribute_specifier] = STATE(3911), + [sym_field_declaration_list] = STATE(3813), + [sym_identifier] = ACTIONS(7119), + [anon_sym_COMMA] = ACTIONS(7121), + [anon_sym_RPAREN] = ACTIONS(7121), + [anon_sym_LPAREN2] = ACTIONS(7121), + [anon_sym_STAR] = ACTIONS(7121), + [anon_sym_CARET] = ACTIONS(7121), + [anon_sym_GT] = ACTIONS(7121), + [anon_sym_LT] = ACTIONS(7121), + [anon_sym___extension__] = ACTIONS(7119), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7119), + [anon_sym_LBRACK] = ACTIONS(7121), + [anon_sym___based] = ACTIONS(7119), + [anon_sym_LBRACE] = ACTIONS(8878), + [anon_sym_signed] = ACTIONS(7119), + [anon_sym_unsigned] = ACTIONS(7119), + [anon_sym_long] = ACTIONS(7119), + [anon_sym_short] = ACTIONS(7119), + [anon_sym_ATautoreleasepool] = ACTIONS(7121), + [anon_sym_const] = ACTIONS(7119), + [anon_sym_constexpr] = ACTIONS(7119), + [anon_sym_volatile] = ACTIONS(7119), + [anon_sym_restrict] = ACTIONS(7119), + [anon_sym___restrict__] = ACTIONS(7119), + [anon_sym__Atomic] = ACTIONS(7119), + [anon_sym__Noreturn] = ACTIONS(7119), + [anon_sym__Nonnull] = ACTIONS(7119), + [anon_sym_nullable] = ACTIONS(7119), + [anon_sym__Complex] = ACTIONS(7119), + [anon_sym__Nullable] = ACTIONS(7119), + [anon_sym__Nullable_result] = ACTIONS(7119), + [anon_sym__Null_unspecified] = ACTIONS(7119), + [anon_sym___autoreleasing] = ACTIONS(7119), + [anon_sym___block] = ACTIONS(7119), + [anon_sym___bridge] = ACTIONS(7119), + [anon_sym___bridge_retained] = ACTIONS(7119), + [anon_sym___bridge_transfer] = ACTIONS(7119), + [anon_sym___complex] = ACTIONS(7119), + [anon_sym___const] = ACTIONS(7119), + [anon_sym___imag] = ACTIONS(7119), + [anon_sym___kindof] = ACTIONS(7119), + [anon_sym___nonnull] = ACTIONS(7119), + [anon_sym___nullable] = ACTIONS(7119), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7119), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7119), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7119), + [anon_sym___real] = ACTIONS(7119), + [anon_sym___strong] = ACTIONS(7119), + [anon_sym___unsafe_unretained] = ACTIONS(7119), + [anon_sym___unused] = ACTIONS(7119), + [anon_sym___weak] = ACTIONS(7119), + [anon_sym_alignas] = ACTIONS(7119), + [anon_sym__Alignas] = ACTIONS(7119), + [sym_primitive_type] = ACTIONS(7119), + [anon_sym_enum] = ACTIONS(7119), + [anon_sym_COLON] = ACTIONS(7121), + [anon_sym_struct] = ACTIONS(7119), + [anon_sym_union] = ACTIONS(7119), + [anon_sym_in] = ACTIONS(7119), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7119), + [anon_sym___typeof] = ACTIONS(7119), + [anon_sym_typeof] = ACTIONS(7119), + [anon_sym_BOOL] = ACTIONS(7119), + [anon_sym_IMP] = ACTIONS(7119), + [anon_sym_SEL] = ACTIONS(7119), + [anon_sym_Class] = ACTIONS(7119), + [anon_sym_id] = ACTIONS(7119), + [anon_sym_out] = ACTIONS(7119), + [anon_sym_inout] = ACTIONS(7119), + [anon_sym_bycopy] = ACTIONS(7119), + [anon_sym_byref] = ACTIONS(7119), + [anon_sym_oneway] = ACTIONS(7119), + }, + [3808] = { + [sym_attribute_specifier] = STATE(3884), + [sym_field_declaration_list] = STATE(3837), + [sym_identifier] = ACTIONS(7155), + [anon_sym_COMMA] = ACTIONS(7157), + [anon_sym_RPAREN] = ACTIONS(7157), + [anon_sym_LPAREN2] = ACTIONS(7157), + [anon_sym_STAR] = ACTIONS(7157), + [anon_sym_CARET] = ACTIONS(7157), + [anon_sym_GT] = ACTIONS(7157), + [anon_sym_LT] = ACTIONS(7157), + [anon_sym___extension__] = ACTIONS(7155), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7155), + [anon_sym_LBRACK] = ACTIONS(7157), + [anon_sym___based] = ACTIONS(7155), + [anon_sym_LBRACE] = ACTIONS(8878), + [anon_sym_signed] = ACTIONS(7155), + [anon_sym_unsigned] = ACTIONS(7155), + [anon_sym_long] = ACTIONS(7155), + [anon_sym_short] = ACTIONS(7155), + [anon_sym_ATautoreleasepool] = ACTIONS(7157), + [anon_sym_const] = ACTIONS(7155), + [anon_sym_constexpr] = ACTIONS(7155), + [anon_sym_volatile] = ACTIONS(7155), + [anon_sym_restrict] = ACTIONS(7155), + [anon_sym___restrict__] = ACTIONS(7155), + [anon_sym__Atomic] = ACTIONS(7155), + [anon_sym__Noreturn] = ACTIONS(7155), + [anon_sym__Nonnull] = ACTIONS(7155), + [anon_sym_nullable] = ACTIONS(7155), + [anon_sym__Complex] = ACTIONS(7155), + [anon_sym__Nullable] = ACTIONS(7155), + [anon_sym__Nullable_result] = ACTIONS(7155), + [anon_sym__Null_unspecified] = ACTIONS(7155), + [anon_sym___autoreleasing] = ACTIONS(7155), + [anon_sym___block] = ACTIONS(7155), + [anon_sym___bridge] = ACTIONS(7155), + [anon_sym___bridge_retained] = ACTIONS(7155), + [anon_sym___bridge_transfer] = ACTIONS(7155), + [anon_sym___complex] = ACTIONS(7155), + [anon_sym___const] = ACTIONS(7155), + [anon_sym___imag] = ACTIONS(7155), + [anon_sym___kindof] = ACTIONS(7155), + [anon_sym___nonnull] = ACTIONS(7155), + [anon_sym___nullable] = ACTIONS(7155), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7155), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7155), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7155), + [anon_sym___real] = ACTIONS(7155), + [anon_sym___strong] = ACTIONS(7155), + [anon_sym___unsafe_unretained] = ACTIONS(7155), + [anon_sym___unused] = ACTIONS(7155), + [anon_sym___weak] = ACTIONS(7155), + [anon_sym_alignas] = ACTIONS(7155), + [anon_sym__Alignas] = ACTIONS(7155), + [sym_primitive_type] = ACTIONS(7155), + [anon_sym_enum] = ACTIONS(7155), + [anon_sym_COLON] = ACTIONS(7157), + [anon_sym_struct] = ACTIONS(7155), + [anon_sym_union] = ACTIONS(7155), + [anon_sym_in] = ACTIONS(7155), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7155), + [anon_sym___typeof] = ACTIONS(7155), + [anon_sym_typeof] = ACTIONS(7155), + [anon_sym_BOOL] = ACTIONS(7155), + [anon_sym_IMP] = ACTIONS(7155), + [anon_sym_SEL] = ACTIONS(7155), + [anon_sym_Class] = ACTIONS(7155), + [anon_sym_id] = ACTIONS(7155), + [anon_sym_out] = ACTIONS(7155), + [anon_sym_inout] = ACTIONS(7155), + [anon_sym_bycopy] = ACTIONS(7155), + [anon_sym_byref] = ACTIONS(7155), + [anon_sym_oneway] = ACTIONS(7155), + }, + [3809] = { + [sym_attribute_specifier] = STATE(3864), + [sym_field_declaration_list] = STATE(3815), + [sym_identifier] = ACTIONS(7139), + [anon_sym_COMMA] = ACTIONS(7141), + [anon_sym_RPAREN] = ACTIONS(7141), + [anon_sym_LPAREN2] = ACTIONS(7141), + [anon_sym_STAR] = ACTIONS(7141), + [anon_sym_CARET] = ACTIONS(7141), + [anon_sym_GT] = ACTIONS(7141), + [anon_sym_LT] = ACTIONS(7141), + [anon_sym___extension__] = ACTIONS(7139), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7139), + [anon_sym_LBRACK] = ACTIONS(7141), + [anon_sym___based] = ACTIONS(7139), + [anon_sym_LBRACE] = ACTIONS(8878), + [anon_sym_signed] = ACTIONS(7139), + [anon_sym_unsigned] = ACTIONS(7139), + [anon_sym_long] = ACTIONS(7139), + [anon_sym_short] = ACTIONS(7139), + [anon_sym_ATautoreleasepool] = ACTIONS(7141), + [anon_sym_const] = ACTIONS(7139), + [anon_sym_constexpr] = ACTIONS(7139), + [anon_sym_volatile] = ACTIONS(7139), + [anon_sym_restrict] = ACTIONS(7139), + [anon_sym___restrict__] = ACTIONS(7139), + [anon_sym__Atomic] = ACTIONS(7139), + [anon_sym__Noreturn] = ACTIONS(7139), + [anon_sym__Nonnull] = ACTIONS(7139), + [anon_sym_nullable] = ACTIONS(7139), + [anon_sym__Complex] = ACTIONS(7139), + [anon_sym__Nullable] = ACTIONS(7139), + [anon_sym__Nullable_result] = ACTIONS(7139), + [anon_sym__Null_unspecified] = ACTIONS(7139), + [anon_sym___autoreleasing] = ACTIONS(7139), + [anon_sym___block] = ACTIONS(7139), + [anon_sym___bridge] = ACTIONS(7139), + [anon_sym___bridge_retained] = ACTIONS(7139), + [anon_sym___bridge_transfer] = ACTIONS(7139), + [anon_sym___complex] = ACTIONS(7139), + [anon_sym___const] = ACTIONS(7139), + [anon_sym___imag] = ACTIONS(7139), + [anon_sym___kindof] = ACTIONS(7139), + [anon_sym___nonnull] = ACTIONS(7139), + [anon_sym___nullable] = ACTIONS(7139), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7139), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7139), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7139), + [anon_sym___real] = ACTIONS(7139), + [anon_sym___strong] = ACTIONS(7139), + [anon_sym___unsafe_unretained] = ACTIONS(7139), + [anon_sym___unused] = ACTIONS(7139), + [anon_sym___weak] = ACTIONS(7139), + [anon_sym_alignas] = ACTIONS(7139), + [anon_sym__Alignas] = ACTIONS(7139), + [sym_primitive_type] = ACTIONS(7139), + [anon_sym_enum] = ACTIONS(7139), + [anon_sym_COLON] = ACTIONS(7141), + [anon_sym_struct] = ACTIONS(7139), + [anon_sym_union] = ACTIONS(7139), + [anon_sym_in] = ACTIONS(7139), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7139), + [anon_sym___typeof] = ACTIONS(7139), + [anon_sym_typeof] = ACTIONS(7139), + [anon_sym_BOOL] = ACTIONS(7139), + [anon_sym_IMP] = ACTIONS(7139), + [anon_sym_SEL] = ACTIONS(7139), + [anon_sym_Class] = ACTIONS(7139), + [anon_sym_id] = ACTIONS(7139), + [anon_sym_out] = ACTIONS(7139), + [anon_sym_inout] = ACTIONS(7139), + [anon_sym_bycopy] = ACTIONS(7139), + [anon_sym_byref] = ACTIONS(7139), + [anon_sym_oneway] = ACTIONS(7139), + }, + [3810] = { + [sym_attribute_specifier] = STATE(3889), + [sym_field_declaration_list] = STATE(3812), + [sym_identifier] = ACTIONS(7097), + [anon_sym_COMMA] = ACTIONS(7099), + [anon_sym_RPAREN] = ACTIONS(7099), + [anon_sym_LPAREN2] = ACTIONS(7099), + [anon_sym_STAR] = ACTIONS(7099), + [anon_sym_CARET] = ACTIONS(7099), + [anon_sym_GT] = ACTIONS(7099), + [anon_sym_LT] = ACTIONS(7099), + [anon_sym___extension__] = ACTIONS(7097), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7097), + [anon_sym_LBRACK] = ACTIONS(7099), + [anon_sym___based] = ACTIONS(7097), + [anon_sym_LBRACE] = ACTIONS(8878), + [anon_sym_signed] = ACTIONS(7097), + [anon_sym_unsigned] = ACTIONS(7097), + [anon_sym_long] = ACTIONS(7097), + [anon_sym_short] = ACTIONS(7097), + [anon_sym_ATautoreleasepool] = ACTIONS(7099), + [anon_sym_const] = ACTIONS(7097), + [anon_sym_constexpr] = ACTIONS(7097), + [anon_sym_volatile] = ACTIONS(7097), + [anon_sym_restrict] = ACTIONS(7097), + [anon_sym___restrict__] = ACTIONS(7097), + [anon_sym__Atomic] = ACTIONS(7097), + [anon_sym__Noreturn] = ACTIONS(7097), + [anon_sym__Nonnull] = ACTIONS(7097), + [anon_sym_nullable] = ACTIONS(7097), + [anon_sym__Complex] = ACTIONS(7097), + [anon_sym__Nullable] = ACTIONS(7097), + [anon_sym__Nullable_result] = ACTIONS(7097), + [anon_sym__Null_unspecified] = ACTIONS(7097), + [anon_sym___autoreleasing] = ACTIONS(7097), + [anon_sym___block] = ACTIONS(7097), + [anon_sym___bridge] = ACTIONS(7097), + [anon_sym___bridge_retained] = ACTIONS(7097), + [anon_sym___bridge_transfer] = ACTIONS(7097), + [anon_sym___complex] = ACTIONS(7097), + [anon_sym___const] = ACTIONS(7097), + [anon_sym___imag] = ACTIONS(7097), + [anon_sym___kindof] = ACTIONS(7097), + [anon_sym___nonnull] = ACTIONS(7097), + [anon_sym___nullable] = ACTIONS(7097), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7097), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7097), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7097), + [anon_sym___real] = ACTIONS(7097), + [anon_sym___strong] = ACTIONS(7097), + [anon_sym___unsafe_unretained] = ACTIONS(7097), + [anon_sym___unused] = ACTIONS(7097), + [anon_sym___weak] = ACTIONS(7097), + [anon_sym_alignas] = ACTIONS(7097), + [anon_sym__Alignas] = ACTIONS(7097), + [sym_primitive_type] = ACTIONS(7097), + [anon_sym_enum] = ACTIONS(7097), + [anon_sym_COLON] = ACTIONS(7099), + [anon_sym_struct] = ACTIONS(7097), + [anon_sym_union] = ACTIONS(7097), + [anon_sym_in] = ACTIONS(7097), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7097), + [anon_sym___typeof] = ACTIONS(7097), + [anon_sym_typeof] = ACTIONS(7097), + [anon_sym_BOOL] = ACTIONS(7097), + [anon_sym_IMP] = ACTIONS(7097), + [anon_sym_SEL] = ACTIONS(7097), + [anon_sym_Class] = ACTIONS(7097), + [anon_sym_id] = ACTIONS(7097), + [anon_sym_out] = ACTIONS(7097), + [anon_sym_inout] = ACTIONS(7097), + [anon_sym_bycopy] = ACTIONS(7097), + [anon_sym_byref] = ACTIONS(7097), + [anon_sym_oneway] = ACTIONS(7097), + }, + [3811] = { + [sym_attribute_specifier] = STATE(4001), + [sym_field_declaration_list] = STATE(3842), + [sym_identifier] = ACTIONS(7125), + [anon_sym_COMMA] = ACTIONS(7127), + [anon_sym_RPAREN] = ACTIONS(7127), + [anon_sym_LPAREN2] = ACTIONS(7127), + [anon_sym_STAR] = ACTIONS(7127), + [anon_sym_CARET] = ACTIONS(7127), + [anon_sym_GT] = ACTIONS(7127), + [anon_sym_LT] = ACTIONS(7127), + [anon_sym___extension__] = ACTIONS(7125), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7125), + [anon_sym_LBRACK] = ACTIONS(7127), + [anon_sym___based] = ACTIONS(7125), + [anon_sym_LBRACE] = ACTIONS(8878), + [anon_sym_signed] = ACTIONS(7125), + [anon_sym_unsigned] = ACTIONS(7125), + [anon_sym_long] = ACTIONS(7125), + [anon_sym_short] = ACTIONS(7125), + [anon_sym_ATautoreleasepool] = ACTIONS(7127), + [anon_sym_const] = ACTIONS(7125), + [anon_sym_constexpr] = ACTIONS(7125), + [anon_sym_volatile] = ACTIONS(7125), + [anon_sym_restrict] = ACTIONS(7125), + [anon_sym___restrict__] = ACTIONS(7125), + [anon_sym__Atomic] = ACTIONS(7125), + [anon_sym__Noreturn] = ACTIONS(7125), + [anon_sym__Nonnull] = ACTIONS(7125), + [anon_sym_nullable] = ACTIONS(7125), + [anon_sym__Complex] = ACTIONS(7125), + [anon_sym__Nullable] = ACTIONS(7125), + [anon_sym__Nullable_result] = ACTIONS(7125), + [anon_sym__Null_unspecified] = ACTIONS(7125), + [anon_sym___autoreleasing] = ACTIONS(7125), + [anon_sym___block] = ACTIONS(7125), + [anon_sym___bridge] = ACTIONS(7125), + [anon_sym___bridge_retained] = ACTIONS(7125), + [anon_sym___bridge_transfer] = ACTIONS(7125), + [anon_sym___complex] = ACTIONS(7125), + [anon_sym___const] = ACTIONS(7125), + [anon_sym___imag] = ACTIONS(7125), + [anon_sym___kindof] = ACTIONS(7125), + [anon_sym___nonnull] = ACTIONS(7125), + [anon_sym___nullable] = ACTIONS(7125), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7125), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7125), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7125), + [anon_sym___real] = ACTIONS(7125), + [anon_sym___strong] = ACTIONS(7125), + [anon_sym___unsafe_unretained] = ACTIONS(7125), + [anon_sym___unused] = ACTIONS(7125), + [anon_sym___weak] = ACTIONS(7125), + [anon_sym_alignas] = ACTIONS(7125), + [anon_sym__Alignas] = ACTIONS(7125), + [sym_primitive_type] = ACTIONS(7125), + [anon_sym_enum] = ACTIONS(7125), + [anon_sym_COLON] = ACTIONS(7127), + [anon_sym_struct] = ACTIONS(7125), + [anon_sym_union] = ACTIONS(7125), + [anon_sym_in] = ACTIONS(7125), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7125), + [anon_sym___typeof] = ACTIONS(7125), + [anon_sym_typeof] = ACTIONS(7125), + [anon_sym_BOOL] = ACTIONS(7125), + [anon_sym_IMP] = ACTIONS(7125), + [anon_sym_SEL] = ACTIONS(7125), + [anon_sym_Class] = ACTIONS(7125), + [anon_sym_id] = ACTIONS(7125), + [anon_sym_out] = ACTIONS(7125), + [anon_sym_inout] = ACTIONS(7125), + [anon_sym_bycopy] = ACTIONS(7125), + [anon_sym_byref] = ACTIONS(7125), + [anon_sym_oneway] = ACTIONS(7125), + }, + [3812] = { + [sym_attribute_specifier] = STATE(3910), + [sym_identifier] = ACTIONS(7244), + [anon_sym_COMMA] = ACTIONS(7246), + [anon_sym_RPAREN] = ACTIONS(7246), + [anon_sym_LPAREN2] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7244), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7244), + [anon_sym_LBRACK] = ACTIONS(7246), + [anon_sym___based] = ACTIONS(7244), + [anon_sym_LBRACE] = ACTIONS(7246), + [anon_sym_signed] = ACTIONS(7244), + [anon_sym_unsigned] = ACTIONS(7244), + [anon_sym_long] = ACTIONS(7244), + [anon_sym_short] = ACTIONS(7244), + [anon_sym_ATautoreleasepool] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7244), + [anon_sym_constexpr] = ACTIONS(7244), + [anon_sym_volatile] = ACTIONS(7244), + [anon_sym_restrict] = ACTIONS(7244), + [anon_sym___restrict__] = ACTIONS(7244), + [anon_sym__Atomic] = ACTIONS(7244), + [anon_sym__Noreturn] = ACTIONS(7244), + [anon_sym__Nonnull] = ACTIONS(7244), + [anon_sym_nullable] = ACTIONS(7244), + [anon_sym__Complex] = ACTIONS(7244), + [anon_sym__Nullable] = ACTIONS(7244), + [anon_sym__Nullable_result] = ACTIONS(7244), + [anon_sym__Null_unspecified] = ACTIONS(7244), + [anon_sym___autoreleasing] = ACTIONS(7244), + [anon_sym___block] = ACTIONS(7244), + [anon_sym___bridge] = ACTIONS(7244), + [anon_sym___bridge_retained] = ACTIONS(7244), + [anon_sym___bridge_transfer] = ACTIONS(7244), + [anon_sym___complex] = ACTIONS(7244), + [anon_sym___const] = ACTIONS(7244), + [anon_sym___imag] = ACTIONS(7244), + [anon_sym___kindof] = ACTIONS(7244), + [anon_sym___nonnull] = ACTIONS(7244), + [anon_sym___nullable] = ACTIONS(7244), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7244), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7244), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7244), + [anon_sym___real] = ACTIONS(7244), + [anon_sym___strong] = ACTIONS(7244), + [anon_sym___unsafe_unretained] = ACTIONS(7244), + [anon_sym___unused] = ACTIONS(7244), + [anon_sym___weak] = ACTIONS(7244), + [anon_sym_alignas] = ACTIONS(7244), + [anon_sym__Alignas] = ACTIONS(7244), + [sym_primitive_type] = ACTIONS(7244), + [anon_sym_enum] = ACTIONS(7244), + [anon_sym_COLON] = ACTIONS(7246), + [anon_sym_struct] = ACTIONS(7244), + [anon_sym_union] = ACTIONS(7244), + [anon_sym_in] = ACTIONS(7244), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7244), + [anon_sym___typeof] = ACTIONS(7244), + [anon_sym_typeof] = ACTIONS(7244), + [anon_sym_BOOL] = ACTIONS(7244), + [anon_sym_IMP] = ACTIONS(7244), + [anon_sym_SEL] = ACTIONS(7244), + [anon_sym_Class] = ACTIONS(7244), + [anon_sym_id] = ACTIONS(7244), + [anon_sym_out] = ACTIONS(7244), + [anon_sym_inout] = ACTIONS(7244), + [anon_sym_bycopy] = ACTIONS(7244), + [anon_sym_byref] = ACTIONS(7244), + [anon_sym_oneway] = ACTIONS(7244), + }, + [3813] = { + [sym_attribute_specifier] = STATE(3996), + [sym_identifier] = ACTIONS(7256), + [anon_sym_COMMA] = ACTIONS(7258), + [anon_sym_RPAREN] = ACTIONS(7258), + [anon_sym_LPAREN2] = ACTIONS(7258), + [anon_sym_STAR] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7258), + [anon_sym_GT] = ACTIONS(7258), + [anon_sym_LT] = ACTIONS(7258), + [anon_sym___extension__] = ACTIONS(7256), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7256), + [anon_sym_LBRACK] = ACTIONS(7258), + [anon_sym___based] = ACTIONS(7256), + [anon_sym_LBRACE] = ACTIONS(7258), + [anon_sym_signed] = ACTIONS(7256), + [anon_sym_unsigned] = ACTIONS(7256), + [anon_sym_long] = ACTIONS(7256), + [anon_sym_short] = ACTIONS(7256), + [anon_sym_ATautoreleasepool] = ACTIONS(7258), + [anon_sym_const] = ACTIONS(7256), + [anon_sym_constexpr] = ACTIONS(7256), + [anon_sym_volatile] = ACTIONS(7256), + [anon_sym_restrict] = ACTIONS(7256), + [anon_sym___restrict__] = ACTIONS(7256), + [anon_sym__Atomic] = ACTIONS(7256), + [anon_sym__Noreturn] = ACTIONS(7256), + [anon_sym__Nonnull] = ACTIONS(7256), + [anon_sym_nullable] = ACTIONS(7256), + [anon_sym__Complex] = ACTIONS(7256), + [anon_sym__Nullable] = ACTIONS(7256), + [anon_sym__Nullable_result] = ACTIONS(7256), + [anon_sym__Null_unspecified] = ACTIONS(7256), + [anon_sym___autoreleasing] = ACTIONS(7256), + [anon_sym___block] = ACTIONS(7256), + [anon_sym___bridge] = ACTIONS(7256), + [anon_sym___bridge_retained] = ACTIONS(7256), + [anon_sym___bridge_transfer] = ACTIONS(7256), + [anon_sym___complex] = ACTIONS(7256), + [anon_sym___const] = ACTIONS(7256), + [anon_sym___imag] = ACTIONS(7256), + [anon_sym___kindof] = ACTIONS(7256), + [anon_sym___nonnull] = ACTIONS(7256), + [anon_sym___nullable] = ACTIONS(7256), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7256), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7256), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7256), + [anon_sym___real] = ACTIONS(7256), + [anon_sym___strong] = ACTIONS(7256), + [anon_sym___unsafe_unretained] = ACTIONS(7256), + [anon_sym___unused] = ACTIONS(7256), + [anon_sym___weak] = ACTIONS(7256), + [anon_sym_alignas] = ACTIONS(7256), + [anon_sym__Alignas] = ACTIONS(7256), + [sym_primitive_type] = ACTIONS(7256), + [anon_sym_enum] = ACTIONS(7256), + [anon_sym_COLON] = ACTIONS(7258), + [anon_sym_struct] = ACTIONS(7256), + [anon_sym_union] = ACTIONS(7256), + [anon_sym_in] = ACTIONS(7256), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7256), + [anon_sym___typeof] = ACTIONS(7256), + [anon_sym_typeof] = ACTIONS(7256), + [anon_sym_BOOL] = ACTIONS(7256), + [anon_sym_IMP] = ACTIONS(7256), + [anon_sym_SEL] = ACTIONS(7256), + [anon_sym_Class] = ACTIONS(7256), + [anon_sym_id] = ACTIONS(7256), + [anon_sym_out] = ACTIONS(7256), + [anon_sym_inout] = ACTIONS(7256), + [anon_sym_bycopy] = ACTIONS(7256), + [anon_sym_byref] = ACTIONS(7256), + [anon_sym_oneway] = ACTIONS(7256), + }, + [3814] = { + [sym_attribute_specifier] = STATE(3922), + [sym_identifier] = ACTIONS(7252), + [anon_sym_COMMA] = ACTIONS(7254), + [anon_sym_RPAREN] = ACTIONS(7254), + [anon_sym_LPAREN2] = ACTIONS(7254), + [anon_sym_STAR] = ACTIONS(7254), + [anon_sym_CARET] = ACTIONS(7254), + [anon_sym_GT] = ACTIONS(7254), + [anon_sym_LT] = ACTIONS(7254), + [anon_sym___extension__] = ACTIONS(7252), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7252), + [anon_sym_LBRACK] = ACTIONS(7254), + [anon_sym___based] = ACTIONS(7252), + [anon_sym_LBRACE] = ACTIONS(7254), + [anon_sym_signed] = ACTIONS(7252), + [anon_sym_unsigned] = ACTIONS(7252), + [anon_sym_long] = ACTIONS(7252), + [anon_sym_short] = ACTIONS(7252), + [anon_sym_ATautoreleasepool] = ACTIONS(7254), + [anon_sym_const] = ACTIONS(7252), + [anon_sym_constexpr] = ACTIONS(7252), + [anon_sym_volatile] = ACTIONS(7252), + [anon_sym_restrict] = ACTIONS(7252), + [anon_sym___restrict__] = ACTIONS(7252), + [anon_sym__Atomic] = ACTIONS(7252), + [anon_sym__Noreturn] = ACTIONS(7252), + [anon_sym__Nonnull] = ACTIONS(7252), + [anon_sym_nullable] = ACTIONS(7252), + [anon_sym__Complex] = ACTIONS(7252), + [anon_sym__Nullable] = ACTIONS(7252), + [anon_sym__Nullable_result] = ACTIONS(7252), + [anon_sym__Null_unspecified] = ACTIONS(7252), + [anon_sym___autoreleasing] = ACTIONS(7252), + [anon_sym___block] = ACTIONS(7252), + [anon_sym___bridge] = ACTIONS(7252), + [anon_sym___bridge_retained] = ACTIONS(7252), + [anon_sym___bridge_transfer] = ACTIONS(7252), + [anon_sym___complex] = ACTIONS(7252), + [anon_sym___const] = ACTIONS(7252), + [anon_sym___imag] = ACTIONS(7252), + [anon_sym___kindof] = ACTIONS(7252), + [anon_sym___nonnull] = ACTIONS(7252), + [anon_sym___nullable] = ACTIONS(7252), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7252), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7252), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7252), + [anon_sym___real] = ACTIONS(7252), + [anon_sym___strong] = ACTIONS(7252), + [anon_sym___unsafe_unretained] = ACTIONS(7252), + [anon_sym___unused] = ACTIONS(7252), + [anon_sym___weak] = ACTIONS(7252), + [anon_sym_alignas] = ACTIONS(7252), + [anon_sym__Alignas] = ACTIONS(7252), + [sym_primitive_type] = ACTIONS(7252), + [anon_sym_enum] = ACTIONS(7252), + [anon_sym_COLON] = ACTIONS(7254), + [anon_sym_struct] = ACTIONS(7252), + [anon_sym_union] = ACTIONS(7252), + [anon_sym_in] = ACTIONS(7252), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7252), + [anon_sym___typeof] = ACTIONS(7252), + [anon_sym_typeof] = ACTIONS(7252), + [anon_sym_BOOL] = ACTIONS(7252), + [anon_sym_IMP] = ACTIONS(7252), + [anon_sym_SEL] = ACTIONS(7252), + [anon_sym_Class] = ACTIONS(7252), + [anon_sym_id] = ACTIONS(7252), + [anon_sym_out] = ACTIONS(7252), + [anon_sym_inout] = ACTIONS(7252), + [anon_sym_bycopy] = ACTIONS(7252), + [anon_sym_byref] = ACTIONS(7252), + [anon_sym_oneway] = ACTIONS(7252), + }, + [3815] = { + [sym_attribute_specifier] = STATE(3968), + [sym_identifier] = ACTIONS(7220), + [anon_sym_COMMA] = ACTIONS(7222), + [anon_sym_RPAREN] = ACTIONS(7222), + [anon_sym_LPAREN2] = ACTIONS(7222), + [anon_sym_STAR] = ACTIONS(7222), + [anon_sym_CARET] = ACTIONS(7222), + [anon_sym_GT] = ACTIONS(7222), + [anon_sym_LT] = ACTIONS(7222), + [anon_sym___extension__] = ACTIONS(7220), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7220), + [anon_sym_LBRACK] = ACTIONS(7222), + [anon_sym___based] = ACTIONS(7220), + [anon_sym_LBRACE] = ACTIONS(7222), + [anon_sym_signed] = ACTIONS(7220), + [anon_sym_unsigned] = ACTIONS(7220), + [anon_sym_long] = ACTIONS(7220), + [anon_sym_short] = ACTIONS(7220), + [anon_sym_ATautoreleasepool] = ACTIONS(7222), + [anon_sym_const] = ACTIONS(7220), + [anon_sym_constexpr] = ACTIONS(7220), + [anon_sym_volatile] = ACTIONS(7220), + [anon_sym_restrict] = ACTIONS(7220), + [anon_sym___restrict__] = ACTIONS(7220), + [anon_sym__Atomic] = ACTIONS(7220), + [anon_sym__Noreturn] = ACTIONS(7220), + [anon_sym__Nonnull] = ACTIONS(7220), + [anon_sym_nullable] = ACTIONS(7220), + [anon_sym__Complex] = ACTIONS(7220), + [anon_sym__Nullable] = ACTIONS(7220), + [anon_sym__Nullable_result] = ACTIONS(7220), + [anon_sym__Null_unspecified] = ACTIONS(7220), + [anon_sym___autoreleasing] = ACTIONS(7220), + [anon_sym___block] = ACTIONS(7220), + [anon_sym___bridge] = ACTIONS(7220), + [anon_sym___bridge_retained] = ACTIONS(7220), + [anon_sym___bridge_transfer] = ACTIONS(7220), + [anon_sym___complex] = ACTIONS(7220), + [anon_sym___const] = ACTIONS(7220), + [anon_sym___imag] = ACTIONS(7220), + [anon_sym___kindof] = ACTIONS(7220), + [anon_sym___nonnull] = ACTIONS(7220), + [anon_sym___nullable] = ACTIONS(7220), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7220), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7220), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7220), + [anon_sym___real] = ACTIONS(7220), + [anon_sym___strong] = ACTIONS(7220), + [anon_sym___unsafe_unretained] = ACTIONS(7220), + [anon_sym___unused] = ACTIONS(7220), + [anon_sym___weak] = ACTIONS(7220), + [anon_sym_alignas] = ACTIONS(7220), + [anon_sym__Alignas] = ACTIONS(7220), + [sym_primitive_type] = ACTIONS(7220), + [anon_sym_enum] = ACTIONS(7220), + [anon_sym_COLON] = ACTIONS(7222), + [anon_sym_struct] = ACTIONS(7220), + [anon_sym_union] = ACTIONS(7220), + [anon_sym_in] = ACTIONS(7220), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7220), + [anon_sym___typeof] = ACTIONS(7220), + [anon_sym_typeof] = ACTIONS(7220), + [anon_sym_BOOL] = ACTIONS(7220), + [anon_sym_IMP] = ACTIONS(7220), + [anon_sym_SEL] = ACTIONS(7220), + [anon_sym_Class] = ACTIONS(7220), + [anon_sym_id] = ACTIONS(7220), + [anon_sym_out] = ACTIONS(7220), + [anon_sym_inout] = ACTIONS(7220), + [anon_sym_bycopy] = ACTIONS(7220), + [anon_sym_byref] = ACTIONS(7220), + [anon_sym_oneway] = ACTIONS(7220), + }, + [3816] = { + [sym_attribute_specifier] = STATE(3820), + [aux_sym_function_declarator_repeat1] = STATE(3820), + [sym_identifier] = ACTIONS(6786), + [anon_sym_COMMA] = ACTIONS(6788), + [anon_sym_RPAREN] = ACTIONS(6788), + [anon_sym_LPAREN2] = ACTIONS(6788), + [anon_sym_STAR] = ACTIONS(6788), + [anon_sym_CARET] = ACTIONS(6788), + [anon_sym_GT] = ACTIONS(6788), + [anon_sym_LT] = ACTIONS(6788), + [anon_sym___extension__] = ACTIONS(6786), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(6786), + [anon_sym_LBRACK] = ACTIONS(6788), + [anon_sym___based] = ACTIONS(6786), + [anon_sym_LBRACE] = ACTIONS(6788), + [anon_sym_signed] = ACTIONS(6786), + [anon_sym_unsigned] = ACTIONS(6786), + [anon_sym_long] = ACTIONS(6786), + [anon_sym_short] = ACTIONS(6786), + [anon_sym_ATautoreleasepool] = ACTIONS(6788), + [anon_sym_const] = ACTIONS(6786), + [anon_sym_constexpr] = ACTIONS(6786), + [anon_sym_volatile] = ACTIONS(6786), + [anon_sym_restrict] = ACTIONS(6786), + [anon_sym___restrict__] = ACTIONS(6786), + [anon_sym__Atomic] = ACTIONS(6786), + [anon_sym__Noreturn] = ACTIONS(6786), + [anon_sym__Nonnull] = ACTIONS(6786), + [anon_sym_nullable] = ACTIONS(6786), + [anon_sym__Complex] = ACTIONS(6786), + [anon_sym__Nullable] = ACTIONS(6786), + [anon_sym__Nullable_result] = ACTIONS(6786), + [anon_sym__Null_unspecified] = ACTIONS(6786), + [anon_sym___autoreleasing] = ACTIONS(6786), + [anon_sym___block] = ACTIONS(6786), + [anon_sym___bridge] = ACTIONS(6786), + [anon_sym___bridge_retained] = ACTIONS(6786), + [anon_sym___bridge_transfer] = ACTIONS(6786), + [anon_sym___complex] = ACTIONS(6786), + [anon_sym___const] = ACTIONS(6786), + [anon_sym___imag] = ACTIONS(6786), + [anon_sym___kindof] = ACTIONS(6786), + [anon_sym___nonnull] = ACTIONS(6786), + [anon_sym___nullable] = ACTIONS(6786), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6786), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6786), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6786), + [anon_sym___real] = ACTIONS(6786), + [anon_sym___strong] = ACTIONS(6786), + [anon_sym___unsafe_unretained] = ACTIONS(6786), + [anon_sym___unused] = ACTIONS(6786), + [anon_sym___weak] = ACTIONS(6786), + [anon_sym_alignas] = ACTIONS(6786), + [anon_sym__Alignas] = ACTIONS(6786), + [sym_primitive_type] = ACTIONS(6786), + [anon_sym_enum] = ACTIONS(6786), + [anon_sym_struct] = ACTIONS(6786), + [anon_sym_union] = ACTIONS(6786), + [anon_sym_in] = ACTIONS(6786), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6786), + [anon_sym___typeof] = ACTIONS(6786), + [anon_sym_typeof] = ACTIONS(6786), + [anon_sym_BOOL] = ACTIONS(6786), + [anon_sym_IMP] = ACTIONS(6786), + [anon_sym_SEL] = ACTIONS(6786), + [anon_sym_Class] = ACTIONS(6786), + [anon_sym_id] = ACTIONS(6786), + [anon_sym_out] = ACTIONS(6786), + [anon_sym_inout] = ACTIONS(6786), + [anon_sym_bycopy] = ACTIONS(6786), + [anon_sym_byref] = ACTIONS(6786), + [anon_sym_oneway] = ACTIONS(6786), + }, + [3817] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3828), + [aux_sym_parameterized_arguments_repeat1] = STATE(5114), + [aux_sym_parameterized_arguments_repeat2] = STATE(5540), + [aux_sym_generic_specifier_repeat1] = STATE(3838), + [sym_identifier] = ACTIONS(5936), + [anon_sym_COMMA] = ACTIONS(5941), + [anon_sym_LPAREN2] = ACTIONS(5928), + [anon_sym_STAR] = ACTIONS(5941), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_GT] = ACTIONS(5941), + [anon_sym_LT] = ACTIONS(8880), + [anon_sym___extension__] = ACTIONS(5936), + [anon_sym___attribute__] = ACTIONS(5936), + [anon_sym___attribute] = ACTIONS(5936), + [anon_sym_noreturn] = ACTIONS(5936), + [anon_sym_LBRACK] = ACTIONS(5941), + [anon_sym___based] = ACTIONS(5936), + [anon_sym_signed] = ACTIONS(8884), + [anon_sym_unsigned] = ACTIONS(8884), + [anon_sym_long] = ACTIONS(8884), + [anon_sym_short] = ACTIONS(8884), + [anon_sym_const] = ACTIONS(5936), + [anon_sym_constexpr] = ACTIONS(5936), + [anon_sym_volatile] = ACTIONS(5936), + [anon_sym_restrict] = ACTIONS(5936), + [anon_sym___restrict__] = ACTIONS(5936), + [anon_sym__Atomic] = ACTIONS(5936), + [anon_sym__Noreturn] = ACTIONS(5936), + [anon_sym__Nonnull] = ACTIONS(5936), + [anon_sym_nullable] = ACTIONS(5936), + [anon_sym__Complex] = ACTIONS(5936), + [anon_sym__Nullable] = ACTIONS(5936), + [anon_sym__Nullable_result] = ACTIONS(5936), + [anon_sym__Null_unspecified] = ACTIONS(5936), + [anon_sym___autoreleasing] = ACTIONS(5936), + [anon_sym___block] = ACTIONS(5936), + [anon_sym___bridge] = ACTIONS(5936), + [anon_sym___bridge_retained] = ACTIONS(5936), + [anon_sym___bridge_transfer] = ACTIONS(5936), + [anon_sym___complex] = ACTIONS(5936), + [anon_sym___const] = ACTIONS(5936), + [anon_sym___imag] = ACTIONS(5936), + [anon_sym___kindof] = ACTIONS(5936), + [anon_sym___nonnull] = ACTIONS(5936), + [anon_sym___nullable] = ACTIONS(5936), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5936), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5936), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5936), + [anon_sym___real] = ACTIONS(5936), + [anon_sym___strong] = ACTIONS(5936), + [anon_sym___unsafe_unretained] = ACTIONS(5936), + [anon_sym___unused] = ACTIONS(5936), + [anon_sym___weak] = ACTIONS(5936), + [anon_sym_alignas] = ACTIONS(5936), + [anon_sym__Alignas] = ACTIONS(5936), + [sym_primitive_type] = ACTIONS(5936), + [anon_sym_enum] = ACTIONS(5936), + [anon_sym_COLON] = ACTIONS(8888), + [anon_sym_struct] = ACTIONS(5936), + [anon_sym_union] = ACTIONS(5936), + [anon_sym_in] = ACTIONS(5936), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5936), + [anon_sym___typeof] = ACTIONS(5936), + [anon_sym_typeof] = ACTIONS(5936), + [anon_sym_BOOL] = ACTIONS(5936), + [anon_sym_IMP] = ACTIONS(5936), + [anon_sym_SEL] = ACTIONS(5936), + [anon_sym_Class] = ACTIONS(5936), + [anon_sym_id] = ACTIONS(5936), + [anon_sym_out] = ACTIONS(5936), + [anon_sym_inout] = ACTIONS(5936), + [anon_sym_bycopy] = ACTIONS(5936), + [anon_sym_byref] = ACTIONS(5936), + [anon_sym_oneway] = ACTIONS(5936), + }, + [3818] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3828), + [aux_sym_generic_specifier_repeat1] = STATE(3838), + [sym_identifier] = ACTIONS(5936), + [anon_sym_COMMA] = ACTIONS(5941), + [anon_sym_RPAREN] = ACTIONS(5941), + [anon_sym_LPAREN2] = ACTIONS(5928), + [anon_sym_STAR] = ACTIONS(5941), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_GT] = ACTIONS(5941), + [anon_sym_LT] = ACTIONS(8880), + [anon_sym___extension__] = ACTIONS(5936), + [anon_sym___attribute__] = ACTIONS(5936), + [anon_sym___attribute] = ACTIONS(5936), + [anon_sym_noreturn] = ACTIONS(5936), + [anon_sym_LBRACK] = ACTIONS(5941), + [anon_sym___based] = ACTIONS(5936), + [anon_sym_LBRACE] = ACTIONS(5941), + [anon_sym_signed] = ACTIONS(8884), + [anon_sym_unsigned] = ACTIONS(8884), + [anon_sym_long] = ACTIONS(8884), + [anon_sym_short] = ACTIONS(8884), + [anon_sym_ATautoreleasepool] = ACTIONS(5941), + [anon_sym_const] = ACTIONS(5936), + [anon_sym_constexpr] = ACTIONS(5936), + [anon_sym_volatile] = ACTIONS(5936), + [anon_sym_restrict] = ACTIONS(5936), + [anon_sym___restrict__] = ACTIONS(5936), + [anon_sym__Atomic] = ACTIONS(5936), + [anon_sym__Noreturn] = ACTIONS(5936), + [anon_sym__Nonnull] = ACTIONS(5936), + [anon_sym_nullable] = ACTIONS(5936), + [anon_sym__Complex] = ACTIONS(5936), + [anon_sym__Nullable] = ACTIONS(5936), + [anon_sym__Nullable_result] = ACTIONS(5936), + [anon_sym__Null_unspecified] = ACTIONS(5936), + [anon_sym___autoreleasing] = ACTIONS(5936), + [anon_sym___block] = ACTIONS(5936), + [anon_sym___bridge] = ACTIONS(5936), + [anon_sym___bridge_retained] = ACTIONS(5936), + [anon_sym___bridge_transfer] = ACTIONS(5936), + [anon_sym___complex] = ACTIONS(5936), + [anon_sym___const] = ACTIONS(5936), + [anon_sym___imag] = ACTIONS(5936), + [anon_sym___kindof] = ACTIONS(5936), + [anon_sym___nonnull] = ACTIONS(5936), + [anon_sym___nullable] = ACTIONS(5936), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5936), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5936), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5936), + [anon_sym___real] = ACTIONS(5936), + [anon_sym___strong] = ACTIONS(5936), + [anon_sym___unsafe_unretained] = ACTIONS(5936), + [anon_sym___unused] = ACTIONS(5936), + [anon_sym___weak] = ACTIONS(5936), + [anon_sym_alignas] = ACTIONS(5936), + [anon_sym__Alignas] = ACTIONS(5936), + [sym_primitive_type] = ACTIONS(5936), + [anon_sym_enum] = ACTIONS(5936), + [anon_sym_struct] = ACTIONS(5936), + [anon_sym_union] = ACTIONS(5936), + [anon_sym_in] = ACTIONS(5936), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5936), + [anon_sym___typeof] = ACTIONS(5936), + [anon_sym_typeof] = ACTIONS(5936), + [anon_sym_BOOL] = ACTIONS(5936), + [anon_sym_IMP] = ACTIONS(5936), + [anon_sym_SEL] = ACTIONS(5936), + [anon_sym_Class] = ACTIONS(5936), + [anon_sym_id] = ACTIONS(5936), + [anon_sym_out] = ACTIONS(5936), + [anon_sym_inout] = ACTIONS(5936), + [anon_sym_bycopy] = ACTIONS(5936), + [anon_sym_byref] = ACTIONS(5936), + [anon_sym_oneway] = ACTIONS(5936), + }, + [3819] = { + [aux_sym_generic_specifier_repeat1] = STATE(3819), + [sym_identifier] = ACTIONS(7178), + [anon_sym_COMMA] = ACTIONS(7180), + [anon_sym_RPAREN] = ACTIONS(7180), + [anon_sym_LPAREN2] = ACTIONS(7180), + [anon_sym_STAR] = ACTIONS(7180), + [anon_sym_CARET] = ACTIONS(7180), + [anon_sym_GT] = ACTIONS(7180), + [anon_sym_LT] = ACTIONS(8890), + [anon_sym___extension__] = ACTIONS(7178), + [anon_sym___attribute__] = ACTIONS(7178), + [anon_sym___attribute] = ACTIONS(7178), + [anon_sym_noreturn] = ACTIONS(7178), + [anon_sym_LBRACK] = ACTIONS(7180), + [anon_sym___based] = ACTIONS(7178), + [anon_sym_LBRACE] = ACTIONS(7180), + [anon_sym_signed] = ACTIONS(7178), + [anon_sym_unsigned] = ACTIONS(7178), + [anon_sym_long] = ACTIONS(7178), + [anon_sym_short] = ACTIONS(7178), + [anon_sym_ATautoreleasepool] = ACTIONS(7180), + [anon_sym_const] = ACTIONS(7178), + [anon_sym_constexpr] = ACTIONS(7178), + [anon_sym_volatile] = ACTIONS(7178), + [anon_sym_restrict] = ACTIONS(7178), + [anon_sym___restrict__] = ACTIONS(7178), + [anon_sym__Atomic] = ACTIONS(7178), + [anon_sym__Noreturn] = ACTIONS(7178), + [anon_sym__Nonnull] = ACTIONS(7178), + [anon_sym_nullable] = ACTIONS(7178), + [anon_sym__Complex] = ACTIONS(7178), + [anon_sym__Nullable] = ACTIONS(7178), + [anon_sym__Nullable_result] = ACTIONS(7178), + [anon_sym__Null_unspecified] = ACTIONS(7178), + [anon_sym___autoreleasing] = ACTIONS(7178), + [anon_sym___block] = ACTIONS(7178), + [anon_sym___bridge] = ACTIONS(7178), + [anon_sym___bridge_retained] = ACTIONS(7178), + [anon_sym___bridge_transfer] = ACTIONS(7178), + [anon_sym___complex] = ACTIONS(7178), + [anon_sym___const] = ACTIONS(7178), + [anon_sym___imag] = ACTIONS(7178), + [anon_sym___kindof] = ACTIONS(7178), + [anon_sym___nonnull] = ACTIONS(7178), + [anon_sym___nullable] = ACTIONS(7178), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7178), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7178), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7178), + [anon_sym___real] = ACTIONS(7178), + [anon_sym___strong] = ACTIONS(7178), + [anon_sym___unsafe_unretained] = ACTIONS(7178), + [anon_sym___unused] = ACTIONS(7178), + [anon_sym___weak] = ACTIONS(7178), + [anon_sym_alignas] = ACTIONS(7178), + [anon_sym__Alignas] = ACTIONS(7178), + [sym_primitive_type] = ACTIONS(7178), + [anon_sym_enum] = ACTIONS(7178), + [anon_sym_COLON] = ACTIONS(7180), + [anon_sym_struct] = ACTIONS(7178), + [anon_sym_union] = ACTIONS(7178), + [anon_sym_in] = ACTIONS(7178), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7178), + [anon_sym___typeof] = ACTIONS(7178), + [anon_sym_typeof] = ACTIONS(7178), + [anon_sym_BOOL] = ACTIONS(7178), + [anon_sym_IMP] = ACTIONS(7178), + [anon_sym_SEL] = ACTIONS(7178), + [anon_sym_Class] = ACTIONS(7178), + [anon_sym_id] = ACTIONS(7178), + [anon_sym_out] = ACTIONS(7178), + [anon_sym_inout] = ACTIONS(7178), + [anon_sym_bycopy] = ACTIONS(7178), + [anon_sym_byref] = ACTIONS(7178), + [anon_sym_oneway] = ACTIONS(7178), + }, + [3820] = { + [sym_attribute_specifier] = STATE(3821), + [aux_sym_function_declarator_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(6797), + [anon_sym_COMMA] = ACTIONS(6799), + [anon_sym_RPAREN] = ACTIONS(6799), + [anon_sym_LPAREN2] = ACTIONS(6799), + [anon_sym_STAR] = ACTIONS(6799), + [anon_sym_CARET] = ACTIONS(6799), + [anon_sym_GT] = ACTIONS(6799), + [anon_sym_LT] = ACTIONS(6799), + [anon_sym___extension__] = ACTIONS(6797), + [anon_sym___attribute__] = ACTIONS(6797), + [anon_sym___attribute] = ACTIONS(6797), + [anon_sym_noreturn] = ACTIONS(6797), + [anon_sym_LBRACK] = ACTIONS(6799), + [anon_sym___based] = ACTIONS(6797), + [anon_sym_LBRACE] = ACTIONS(6799), + [anon_sym_signed] = ACTIONS(6797), + [anon_sym_unsigned] = ACTIONS(6797), + [anon_sym_long] = ACTIONS(6797), + [anon_sym_short] = ACTIONS(6797), + [anon_sym_ATautoreleasepool] = ACTIONS(6799), + [anon_sym_const] = ACTIONS(6797), + [anon_sym_constexpr] = ACTIONS(6797), + [anon_sym_volatile] = ACTIONS(6797), + [anon_sym_restrict] = ACTIONS(6797), + [anon_sym___restrict__] = ACTIONS(6797), + [anon_sym__Atomic] = ACTIONS(6797), + [anon_sym__Noreturn] = ACTIONS(6797), + [anon_sym__Nonnull] = ACTIONS(6797), + [anon_sym_nullable] = ACTIONS(6797), + [anon_sym__Complex] = ACTIONS(6797), + [anon_sym__Nullable] = ACTIONS(6797), + [anon_sym__Nullable_result] = ACTIONS(6797), + [anon_sym__Null_unspecified] = ACTIONS(6797), + [anon_sym___autoreleasing] = ACTIONS(6797), + [anon_sym___block] = ACTIONS(6797), + [anon_sym___bridge] = ACTIONS(6797), + [anon_sym___bridge_retained] = ACTIONS(6797), + [anon_sym___bridge_transfer] = ACTIONS(6797), + [anon_sym___complex] = ACTIONS(6797), + [anon_sym___const] = ACTIONS(6797), + [anon_sym___imag] = ACTIONS(6797), + [anon_sym___kindof] = ACTIONS(6797), + [anon_sym___nonnull] = ACTIONS(6797), + [anon_sym___nullable] = ACTIONS(6797), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6797), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6797), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6797), + [anon_sym___real] = ACTIONS(6797), + [anon_sym___strong] = ACTIONS(6797), + [anon_sym___unsafe_unretained] = ACTIONS(6797), + [anon_sym___unused] = ACTIONS(6797), + [anon_sym___weak] = ACTIONS(6797), + [anon_sym_alignas] = ACTIONS(6797), + [anon_sym__Alignas] = ACTIONS(6797), + [sym_primitive_type] = ACTIONS(6797), + [anon_sym_enum] = ACTIONS(6797), + [anon_sym_struct] = ACTIONS(6797), + [anon_sym_union] = ACTIONS(6797), + [anon_sym_in] = ACTIONS(6797), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6797), + [anon_sym___typeof] = ACTIONS(6797), + [anon_sym_typeof] = ACTIONS(6797), + [anon_sym_BOOL] = ACTIONS(6797), + [anon_sym_IMP] = ACTIONS(6797), + [anon_sym_SEL] = ACTIONS(6797), + [anon_sym_Class] = ACTIONS(6797), + [anon_sym_id] = ACTIONS(6797), + [anon_sym_out] = ACTIONS(6797), + [anon_sym_inout] = ACTIONS(6797), + [anon_sym_bycopy] = ACTIONS(6797), + [anon_sym_byref] = ACTIONS(6797), + [anon_sym_oneway] = ACTIONS(6797), + }, + [3821] = { + [sym_attribute_specifier] = STATE(3821), + [aux_sym_function_declarator_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(6790), + [anon_sym_COMMA] = ACTIONS(6792), + [anon_sym_RPAREN] = ACTIONS(6792), + [anon_sym_LPAREN2] = ACTIONS(6792), + [anon_sym_STAR] = ACTIONS(6792), + [anon_sym_CARET] = ACTIONS(6792), + [anon_sym_GT] = ACTIONS(6792), + [anon_sym_LT] = ACTIONS(6792), + [anon_sym___extension__] = ACTIONS(6790), + [anon_sym___attribute__] = ACTIONS(8893), + [anon_sym___attribute] = ACTIONS(8893), + [anon_sym_noreturn] = ACTIONS(6790), + [anon_sym_LBRACK] = ACTIONS(6792), + [anon_sym___based] = ACTIONS(6790), + [anon_sym_LBRACE] = ACTIONS(6792), + [anon_sym_signed] = ACTIONS(6790), + [anon_sym_unsigned] = ACTIONS(6790), + [anon_sym_long] = ACTIONS(6790), + [anon_sym_short] = ACTIONS(6790), + [anon_sym_ATautoreleasepool] = ACTIONS(6792), + [anon_sym_const] = ACTIONS(6790), + [anon_sym_constexpr] = ACTIONS(6790), + [anon_sym_volatile] = ACTIONS(6790), + [anon_sym_restrict] = ACTIONS(6790), + [anon_sym___restrict__] = ACTIONS(6790), + [anon_sym__Atomic] = ACTIONS(6790), + [anon_sym__Noreturn] = ACTIONS(6790), + [anon_sym__Nonnull] = ACTIONS(6790), + [anon_sym_nullable] = ACTIONS(6790), + [anon_sym__Complex] = ACTIONS(6790), + [anon_sym__Nullable] = ACTIONS(6790), + [anon_sym__Nullable_result] = ACTIONS(6790), + [anon_sym__Null_unspecified] = ACTIONS(6790), + [anon_sym___autoreleasing] = ACTIONS(6790), + [anon_sym___block] = ACTIONS(6790), + [anon_sym___bridge] = ACTIONS(6790), + [anon_sym___bridge_retained] = ACTIONS(6790), + [anon_sym___bridge_transfer] = ACTIONS(6790), + [anon_sym___complex] = ACTIONS(6790), + [anon_sym___const] = ACTIONS(6790), + [anon_sym___imag] = ACTIONS(6790), + [anon_sym___kindof] = ACTIONS(6790), + [anon_sym___nonnull] = ACTIONS(6790), + [anon_sym___nullable] = ACTIONS(6790), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6790), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6790), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6790), + [anon_sym___real] = ACTIONS(6790), + [anon_sym___strong] = ACTIONS(6790), + [anon_sym___unsafe_unretained] = ACTIONS(6790), + [anon_sym___unused] = ACTIONS(6790), + [anon_sym___weak] = ACTIONS(6790), + [anon_sym_alignas] = ACTIONS(6790), + [anon_sym__Alignas] = ACTIONS(6790), + [sym_primitive_type] = ACTIONS(6790), + [anon_sym_enum] = ACTIONS(6790), + [anon_sym_struct] = ACTIONS(6790), + [anon_sym_union] = ACTIONS(6790), + [anon_sym_in] = ACTIONS(6790), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6790), + [anon_sym___typeof] = ACTIONS(6790), + [anon_sym_typeof] = ACTIONS(6790), + [anon_sym_BOOL] = ACTIONS(6790), + [anon_sym_IMP] = ACTIONS(6790), + [anon_sym_SEL] = ACTIONS(6790), + [anon_sym_Class] = ACTIONS(6790), + [anon_sym_id] = ACTIONS(6790), + [anon_sym_out] = ACTIONS(6790), + [anon_sym_inout] = ACTIONS(6790), + [anon_sym_bycopy] = ACTIONS(6790), + [anon_sym_byref] = ACTIONS(6790), + [anon_sym_oneway] = ACTIONS(6790), + }, + [3822] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7322), + [anon_sym_COMMA] = ACTIONS(7324), + [anon_sym_RPAREN] = ACTIONS(7324), + [anon_sym_LPAREN2] = ACTIONS(7324), + [anon_sym_STAR] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(7324), + [anon_sym_GT] = ACTIONS(7324), + [anon_sym_LT] = ACTIONS(7324), + [anon_sym___extension__] = ACTIONS(7322), + [anon_sym___attribute__] = ACTIONS(7322), + [anon_sym___attribute] = ACTIONS(7322), + [anon_sym_noreturn] = ACTIONS(7322), + [anon_sym_LBRACK] = ACTIONS(7324), + [anon_sym___based] = ACTIONS(7322), + [anon_sym_LBRACE] = ACTIONS(7324), + [anon_sym_signed] = ACTIONS(8896), + [anon_sym_unsigned] = ACTIONS(8896), + [anon_sym_long] = ACTIONS(8896), + [anon_sym_short] = ACTIONS(8896), + [anon_sym_ATautoreleasepool] = ACTIONS(7324), + [anon_sym_const] = ACTIONS(7322), + [anon_sym_constexpr] = ACTIONS(7322), + [anon_sym_volatile] = ACTIONS(7322), + [anon_sym_restrict] = ACTIONS(7322), + [anon_sym___restrict__] = ACTIONS(7322), + [anon_sym__Atomic] = ACTIONS(7322), + [anon_sym__Noreturn] = ACTIONS(7322), + [anon_sym__Nonnull] = ACTIONS(7322), + [anon_sym_nullable] = ACTIONS(7322), + [anon_sym__Complex] = ACTIONS(7322), + [anon_sym__Nullable] = ACTIONS(7322), + [anon_sym__Nullable_result] = ACTIONS(7322), + [anon_sym__Null_unspecified] = ACTIONS(7322), + [anon_sym___autoreleasing] = ACTIONS(7322), + [anon_sym___block] = ACTIONS(7322), + [anon_sym___bridge] = ACTIONS(7322), + [anon_sym___bridge_retained] = ACTIONS(7322), + [anon_sym___bridge_transfer] = ACTIONS(7322), + [anon_sym___complex] = ACTIONS(7322), + [anon_sym___const] = ACTIONS(7322), + [anon_sym___imag] = ACTIONS(7322), + [anon_sym___kindof] = ACTIONS(7322), + [anon_sym___nonnull] = ACTIONS(7322), + [anon_sym___nullable] = ACTIONS(7322), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7322), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7322), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7322), + [anon_sym___real] = ACTIONS(7322), + [anon_sym___strong] = ACTIONS(7322), + [anon_sym___unsafe_unretained] = ACTIONS(7322), + [anon_sym___unused] = ACTIONS(7322), + [anon_sym___weak] = ACTIONS(7322), + [anon_sym_alignas] = ACTIONS(7322), + [anon_sym__Alignas] = ACTIONS(7322), + [sym_primitive_type] = ACTIONS(7322), + [anon_sym_enum] = ACTIONS(7322), + [anon_sym_COLON] = ACTIONS(7324), + [anon_sym_struct] = ACTIONS(7322), + [anon_sym_union] = ACTIONS(7322), + [anon_sym_in] = ACTIONS(7322), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7322), + [anon_sym___typeof] = ACTIONS(7322), + [anon_sym_typeof] = ACTIONS(7322), + [anon_sym_BOOL] = ACTIONS(7322), + [anon_sym_IMP] = ACTIONS(7322), + [anon_sym_SEL] = ACTIONS(7322), + [anon_sym_Class] = ACTIONS(7322), + [anon_sym_id] = ACTIONS(7322), + [anon_sym_out] = ACTIONS(7322), + [anon_sym_inout] = ACTIONS(7322), + [anon_sym_bycopy] = ACTIONS(7322), + [anon_sym_byref] = ACTIONS(7322), + [anon_sym_oneway] = ACTIONS(7322), + }, + [3823] = { + [sym_attribute_specifier] = STATE(3821), + [aux_sym_function_declarator_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(6786), + [anon_sym_COMMA] = ACTIONS(6788), + [anon_sym_RPAREN] = ACTIONS(6788), + [anon_sym_LPAREN2] = ACTIONS(6788), + [anon_sym_STAR] = ACTIONS(6788), + [anon_sym_CARET] = ACTIONS(6788), + [anon_sym_GT] = ACTIONS(6788), + [anon_sym_LT] = ACTIONS(6788), + [anon_sym___extension__] = ACTIONS(6786), + [anon_sym___attribute__] = ACTIONS(6786), + [anon_sym___attribute] = ACTIONS(6786), + [anon_sym_noreturn] = ACTIONS(6786), + [anon_sym_LBRACK] = ACTIONS(6788), + [anon_sym___based] = ACTIONS(6786), + [anon_sym_LBRACE] = ACTIONS(6788), + [anon_sym_signed] = ACTIONS(6786), + [anon_sym_unsigned] = ACTIONS(6786), + [anon_sym_long] = ACTIONS(6786), + [anon_sym_short] = ACTIONS(6786), + [anon_sym_ATautoreleasepool] = ACTIONS(6788), + [anon_sym_const] = ACTIONS(6786), + [anon_sym_constexpr] = ACTIONS(6786), + [anon_sym_volatile] = ACTIONS(6786), + [anon_sym_restrict] = ACTIONS(6786), + [anon_sym___restrict__] = ACTIONS(6786), + [anon_sym__Atomic] = ACTIONS(6786), + [anon_sym__Noreturn] = ACTIONS(6786), + [anon_sym__Nonnull] = ACTIONS(6786), + [anon_sym_nullable] = ACTIONS(6786), + [anon_sym__Complex] = ACTIONS(6786), + [anon_sym__Nullable] = ACTIONS(6786), + [anon_sym__Nullable_result] = ACTIONS(6786), + [anon_sym__Null_unspecified] = ACTIONS(6786), + [anon_sym___autoreleasing] = ACTIONS(6786), + [anon_sym___block] = ACTIONS(6786), + [anon_sym___bridge] = ACTIONS(6786), + [anon_sym___bridge_retained] = ACTIONS(6786), + [anon_sym___bridge_transfer] = ACTIONS(6786), + [anon_sym___complex] = ACTIONS(6786), + [anon_sym___const] = ACTIONS(6786), + [anon_sym___imag] = ACTIONS(6786), + [anon_sym___kindof] = ACTIONS(6786), + [anon_sym___nonnull] = ACTIONS(6786), + [anon_sym___nullable] = ACTIONS(6786), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6786), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6786), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6786), + [anon_sym___real] = ACTIONS(6786), + [anon_sym___strong] = ACTIONS(6786), + [anon_sym___unsafe_unretained] = ACTIONS(6786), + [anon_sym___unused] = ACTIONS(6786), + [anon_sym___weak] = ACTIONS(6786), + [anon_sym_alignas] = ACTIONS(6786), + [anon_sym__Alignas] = ACTIONS(6786), + [sym_primitive_type] = ACTIONS(6786), + [anon_sym_enum] = ACTIONS(6786), + [anon_sym_struct] = ACTIONS(6786), + [anon_sym_union] = ACTIONS(6786), + [anon_sym_in] = ACTIONS(6786), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6786), + [anon_sym___typeof] = ACTIONS(6786), + [anon_sym_typeof] = ACTIONS(6786), + [anon_sym_BOOL] = ACTIONS(6786), + [anon_sym_IMP] = ACTIONS(6786), + [anon_sym_SEL] = ACTIONS(6786), + [anon_sym_Class] = ACTIONS(6786), + [anon_sym_id] = ACTIONS(6786), + [anon_sym_out] = ACTIONS(6786), + [anon_sym_inout] = ACTIONS(6786), + [anon_sym_bycopy] = ACTIONS(6786), + [anon_sym_byref] = ACTIONS(6786), + [anon_sym_oneway] = ACTIONS(6786), + }, + [3824] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7201), + [anon_sym_COMMA] = ACTIONS(7203), + [anon_sym_RPAREN] = ACTIONS(7203), + [anon_sym_LPAREN2] = ACTIONS(7203), + [anon_sym_STAR] = ACTIONS(7203), + [anon_sym_CARET] = ACTIONS(7203), + [anon_sym_GT] = ACTIONS(7203), + [anon_sym_LT] = ACTIONS(7203), + [anon_sym___extension__] = ACTIONS(7201), + [anon_sym___attribute__] = ACTIONS(7201), + [anon_sym___attribute] = ACTIONS(7201), + [anon_sym_noreturn] = ACTIONS(7201), + [anon_sym_LBRACK] = ACTIONS(7203), + [anon_sym___based] = ACTIONS(7201), + [anon_sym_LBRACE] = ACTIONS(7203), + [anon_sym_signed] = ACTIONS(8899), + [anon_sym_unsigned] = ACTIONS(8899), + [anon_sym_long] = ACTIONS(8899), + [anon_sym_short] = ACTIONS(8899), + [anon_sym_ATautoreleasepool] = ACTIONS(7203), + [anon_sym_const] = ACTIONS(7201), + [anon_sym_constexpr] = ACTIONS(7201), + [anon_sym_volatile] = ACTIONS(7201), + [anon_sym_restrict] = ACTIONS(7201), + [anon_sym___restrict__] = ACTIONS(7201), + [anon_sym__Atomic] = ACTIONS(7201), + [anon_sym__Noreturn] = ACTIONS(7201), + [anon_sym__Nonnull] = ACTIONS(7201), + [anon_sym_nullable] = ACTIONS(7201), + [anon_sym__Complex] = ACTIONS(7201), + [anon_sym__Nullable] = ACTIONS(7201), + [anon_sym__Nullable_result] = ACTIONS(7201), + [anon_sym__Null_unspecified] = ACTIONS(7201), + [anon_sym___autoreleasing] = ACTIONS(7201), + [anon_sym___block] = ACTIONS(7201), + [anon_sym___bridge] = ACTIONS(7201), + [anon_sym___bridge_retained] = ACTIONS(7201), + [anon_sym___bridge_transfer] = ACTIONS(7201), + [anon_sym___complex] = ACTIONS(7201), + [anon_sym___const] = ACTIONS(7201), + [anon_sym___imag] = ACTIONS(7201), + [anon_sym___kindof] = ACTIONS(7201), + [anon_sym___nonnull] = ACTIONS(7201), + [anon_sym___nullable] = ACTIONS(7201), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7201), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7201), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7201), + [anon_sym___real] = ACTIONS(7201), + [anon_sym___strong] = ACTIONS(7201), + [anon_sym___unsafe_unretained] = ACTIONS(7201), + [anon_sym___unused] = ACTIONS(7201), + [anon_sym___weak] = ACTIONS(7201), + [anon_sym_alignas] = ACTIONS(7201), + [anon_sym__Alignas] = ACTIONS(7201), + [sym_primitive_type] = ACTIONS(7201), + [anon_sym_enum] = ACTIONS(7201), + [anon_sym_COLON] = ACTIONS(7203), + [anon_sym_struct] = ACTIONS(7201), + [anon_sym_union] = ACTIONS(7201), + [anon_sym_in] = ACTIONS(7201), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7201), + [anon_sym___typeof] = ACTIONS(7201), + [anon_sym_typeof] = ACTIONS(7201), + [anon_sym_BOOL] = ACTIONS(7201), + [anon_sym_IMP] = ACTIONS(7201), + [anon_sym_SEL] = ACTIONS(7201), + [anon_sym_Class] = ACTIONS(7201), + [anon_sym_id] = ACTIONS(7201), + [anon_sym_out] = ACTIONS(7201), + [anon_sym_inout] = ACTIONS(7201), + [anon_sym_bycopy] = ACTIONS(7201), + [anon_sym_byref] = ACTIONS(7201), + [anon_sym_oneway] = ACTIONS(7201), + }, + [3825] = { + [sym_attribute_specifier] = STATE(3902), + [sym_identifier] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7195), + [anon_sym_RPAREN] = ACTIONS(7195), + [anon_sym_LPAREN2] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7195), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym___extension__] = ACTIONS(7193), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7193), + [anon_sym_LBRACK] = ACTIONS(7195), + [anon_sym___based] = ACTIONS(7193), + [anon_sym_LBRACE] = ACTIONS(7195), + [anon_sym_signed] = ACTIONS(7193), + [anon_sym_unsigned] = ACTIONS(7193), + [anon_sym_long] = ACTIONS(7193), + [anon_sym_short] = ACTIONS(7193), + [anon_sym_ATautoreleasepool] = ACTIONS(7195), + [anon_sym_const] = ACTIONS(7193), + [anon_sym_constexpr] = ACTIONS(7193), + [anon_sym_volatile] = ACTIONS(7193), + [anon_sym_restrict] = ACTIONS(7193), + [anon_sym___restrict__] = ACTIONS(7193), + [anon_sym__Atomic] = ACTIONS(7193), + [anon_sym__Noreturn] = ACTIONS(7193), + [anon_sym__Nonnull] = ACTIONS(7193), + [anon_sym_nullable] = ACTIONS(7193), + [anon_sym__Complex] = ACTIONS(7193), + [anon_sym__Nullable] = ACTIONS(7193), + [anon_sym__Nullable_result] = ACTIONS(7193), + [anon_sym__Null_unspecified] = ACTIONS(7193), + [anon_sym___autoreleasing] = ACTIONS(7193), + [anon_sym___block] = ACTIONS(7193), + [anon_sym___bridge] = ACTIONS(7193), + [anon_sym___bridge_retained] = ACTIONS(7193), + [anon_sym___bridge_transfer] = ACTIONS(7193), + [anon_sym___complex] = ACTIONS(7193), + [anon_sym___const] = ACTIONS(7193), + [anon_sym___imag] = ACTIONS(7193), + [anon_sym___kindof] = ACTIONS(7193), + [anon_sym___nonnull] = ACTIONS(7193), + [anon_sym___nullable] = ACTIONS(7193), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7193), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7193), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7193), + [anon_sym___real] = ACTIONS(7193), + [anon_sym___strong] = ACTIONS(7193), + [anon_sym___unsafe_unretained] = ACTIONS(7193), + [anon_sym___unused] = ACTIONS(7193), + [anon_sym___weak] = ACTIONS(7193), + [anon_sym_alignas] = ACTIONS(7193), + [anon_sym__Alignas] = ACTIONS(7193), + [sym_primitive_type] = ACTIONS(7193), + [anon_sym_enum] = ACTIONS(7193), + [anon_sym_COLON] = ACTIONS(7195), + [anon_sym_struct] = ACTIONS(7193), + [anon_sym_union] = ACTIONS(7193), + [anon_sym_in] = ACTIONS(7193), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7193), + [anon_sym___typeof] = ACTIONS(7193), + [anon_sym_typeof] = ACTIONS(7193), + [anon_sym_BOOL] = ACTIONS(7193), + [anon_sym_IMP] = ACTIONS(7193), + [anon_sym_SEL] = ACTIONS(7193), + [anon_sym_Class] = ACTIONS(7193), + [anon_sym_id] = ACTIONS(7193), + [anon_sym_out] = ACTIONS(7193), + [anon_sym_inout] = ACTIONS(7193), + [anon_sym_bycopy] = ACTIONS(7193), + [anon_sym_byref] = ACTIONS(7193), + [anon_sym_oneway] = ACTIONS(7193), + }, + [3826] = { + [sym_attribute_specifier] = STATE(3888), + [sym_identifier] = ACTIONS(7189), + [anon_sym_COMMA] = ACTIONS(7191), + [anon_sym_RPAREN] = ACTIONS(7191), + [anon_sym_LPAREN2] = ACTIONS(7191), + [anon_sym_STAR] = ACTIONS(7191), + [anon_sym_CARET] = ACTIONS(7191), + [anon_sym_GT] = ACTIONS(7191), + [anon_sym_LT] = ACTIONS(7191), + [anon_sym___extension__] = ACTIONS(7189), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7189), + [anon_sym_LBRACK] = ACTIONS(7191), + [anon_sym___based] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(7191), + [anon_sym_signed] = ACTIONS(7189), + [anon_sym_unsigned] = ACTIONS(7189), + [anon_sym_long] = ACTIONS(7189), + [anon_sym_short] = ACTIONS(7189), + [anon_sym_ATautoreleasepool] = ACTIONS(7191), + [anon_sym_const] = ACTIONS(7189), + [anon_sym_constexpr] = ACTIONS(7189), + [anon_sym_volatile] = ACTIONS(7189), + [anon_sym_restrict] = ACTIONS(7189), + [anon_sym___restrict__] = ACTIONS(7189), + [anon_sym__Atomic] = ACTIONS(7189), + [anon_sym__Noreturn] = ACTIONS(7189), + [anon_sym__Nonnull] = ACTIONS(7189), + [anon_sym_nullable] = ACTIONS(7189), + [anon_sym__Complex] = ACTIONS(7189), + [anon_sym__Nullable] = ACTIONS(7189), + [anon_sym__Nullable_result] = ACTIONS(7189), + [anon_sym__Null_unspecified] = ACTIONS(7189), + [anon_sym___autoreleasing] = ACTIONS(7189), + [anon_sym___block] = ACTIONS(7189), + [anon_sym___bridge] = ACTIONS(7189), + [anon_sym___bridge_retained] = ACTIONS(7189), + [anon_sym___bridge_transfer] = ACTIONS(7189), + [anon_sym___complex] = ACTIONS(7189), + [anon_sym___const] = ACTIONS(7189), + [anon_sym___imag] = ACTIONS(7189), + [anon_sym___kindof] = ACTIONS(7189), + [anon_sym___nonnull] = ACTIONS(7189), + [anon_sym___nullable] = ACTIONS(7189), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7189), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7189), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7189), + [anon_sym___real] = ACTIONS(7189), + [anon_sym___strong] = ACTIONS(7189), + [anon_sym___unsafe_unretained] = ACTIONS(7189), + [anon_sym___unused] = ACTIONS(7189), + [anon_sym___weak] = ACTIONS(7189), + [anon_sym_alignas] = ACTIONS(7189), + [anon_sym__Alignas] = ACTIONS(7189), + [sym_primitive_type] = ACTIONS(7189), + [anon_sym_enum] = ACTIONS(7189), + [anon_sym_COLON] = ACTIONS(7191), + [anon_sym_struct] = ACTIONS(7189), + [anon_sym_union] = ACTIONS(7189), + [anon_sym_in] = ACTIONS(7189), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7189), + [anon_sym___typeof] = ACTIONS(7189), + [anon_sym_typeof] = ACTIONS(7189), + [anon_sym_BOOL] = ACTIONS(7189), + [anon_sym_IMP] = ACTIONS(7189), + [anon_sym_SEL] = ACTIONS(7189), + [anon_sym_Class] = ACTIONS(7189), + [anon_sym_id] = ACTIONS(7189), + [anon_sym_out] = ACTIONS(7189), + [anon_sym_inout] = ACTIONS(7189), + [anon_sym_bycopy] = ACTIONS(7189), + [anon_sym_byref] = ACTIONS(7189), + [anon_sym_oneway] = ACTIONS(7189), + }, + [3827] = { + [sym_protocol_reference_list] = STATE(3871), + [sym_identifier] = ACTIONS(6446), + [anon_sym_COMMA] = ACTIONS(6448), + [anon_sym_RPAREN] = ACTIONS(6448), + [anon_sym_LPAREN2] = ACTIONS(6448), + [anon_sym_STAR] = ACTIONS(6448), + [anon_sym_CARET] = ACTIONS(6448), + [anon_sym_GT] = ACTIONS(6448), + [anon_sym_LT] = ACTIONS(8902), + [anon_sym___extension__] = ACTIONS(6446), + [anon_sym___attribute__] = ACTIONS(6446), + [anon_sym___attribute] = ACTIONS(6446), + [anon_sym_noreturn] = ACTIONS(6446), + [anon_sym_LBRACK] = ACTIONS(6448), + [anon_sym___based] = ACTIONS(6446), + [anon_sym_LBRACE] = ACTIONS(6448), + [anon_sym_signed] = ACTIONS(6446), + [anon_sym_unsigned] = ACTIONS(6446), + [anon_sym_long] = ACTIONS(6446), + [anon_sym_short] = ACTIONS(6446), + [anon_sym_ATautoreleasepool] = ACTIONS(6448), + [anon_sym_const] = ACTIONS(6446), + [anon_sym_constexpr] = ACTIONS(6446), + [anon_sym_volatile] = ACTIONS(6446), + [anon_sym_restrict] = ACTIONS(6446), + [anon_sym___restrict__] = ACTIONS(6446), + [anon_sym__Atomic] = ACTIONS(6446), + [anon_sym__Noreturn] = ACTIONS(6446), + [anon_sym__Nonnull] = ACTIONS(6446), + [anon_sym_nullable] = ACTIONS(6446), + [anon_sym__Complex] = ACTIONS(6446), + [anon_sym__Nullable] = ACTIONS(6446), + [anon_sym__Nullable_result] = ACTIONS(6446), + [anon_sym__Null_unspecified] = ACTIONS(6446), + [anon_sym___autoreleasing] = ACTIONS(6446), + [anon_sym___block] = ACTIONS(6446), + [anon_sym___bridge] = ACTIONS(6446), + [anon_sym___bridge_retained] = ACTIONS(6446), + [anon_sym___bridge_transfer] = ACTIONS(6446), + [anon_sym___complex] = ACTIONS(6446), + [anon_sym___const] = ACTIONS(6446), + [anon_sym___imag] = ACTIONS(6446), + [anon_sym___kindof] = ACTIONS(6446), + [anon_sym___nonnull] = ACTIONS(6446), + [anon_sym___nullable] = ACTIONS(6446), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6446), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6446), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6446), + [anon_sym___real] = ACTIONS(6446), + [anon_sym___strong] = ACTIONS(6446), + [anon_sym___unsafe_unretained] = ACTIONS(6446), + [anon_sym___unused] = ACTIONS(6446), + [anon_sym___weak] = ACTIONS(6446), + [anon_sym_alignas] = ACTIONS(6446), + [anon_sym__Alignas] = ACTIONS(6446), + [sym_primitive_type] = ACTIONS(6446), + [anon_sym_enum] = ACTIONS(6446), + [anon_sym_COLON] = ACTIONS(6448), + [anon_sym_struct] = ACTIONS(6446), + [anon_sym_union] = ACTIONS(6446), + [anon_sym_in] = ACTIONS(6446), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6446), + [anon_sym___typeof] = ACTIONS(6446), + [anon_sym_typeof] = ACTIONS(6446), + [anon_sym_BOOL] = ACTIONS(6446), + [anon_sym_IMP] = ACTIONS(6446), + [anon_sym_SEL] = ACTIONS(6446), + [anon_sym_Class] = ACTIONS(6446), + [anon_sym_id] = ACTIONS(6446), + [anon_sym_out] = ACTIONS(6446), + [anon_sym_inout] = ACTIONS(6446), + [anon_sym_bycopy] = ACTIONS(6446), + [anon_sym_byref] = ACTIONS(6446), + [anon_sym_oneway] = ACTIONS(6446), + }, + [3828] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7306), + [anon_sym_COMMA] = ACTIONS(7308), + [anon_sym_RPAREN] = ACTIONS(7308), + [anon_sym_LPAREN2] = ACTIONS(7308), + [anon_sym_STAR] = ACTIONS(7308), + [anon_sym_CARET] = ACTIONS(7308), + [anon_sym_GT] = ACTIONS(7308), + [anon_sym_LT] = ACTIONS(7308), + [anon_sym___extension__] = ACTIONS(7306), + [anon_sym___attribute__] = ACTIONS(7306), + [anon_sym___attribute] = ACTIONS(7306), + [anon_sym_noreturn] = ACTIONS(7306), + [anon_sym_LBRACK] = ACTIONS(7308), + [anon_sym___based] = ACTIONS(7306), + [anon_sym_LBRACE] = ACTIONS(7308), + [anon_sym_signed] = ACTIONS(8904), + [anon_sym_unsigned] = ACTIONS(8904), + [anon_sym_long] = ACTIONS(8904), + [anon_sym_short] = ACTIONS(8904), + [anon_sym_ATautoreleasepool] = ACTIONS(7308), + [anon_sym_const] = ACTIONS(7306), + [anon_sym_constexpr] = ACTIONS(7306), + [anon_sym_volatile] = ACTIONS(7306), + [anon_sym_restrict] = ACTIONS(7306), + [anon_sym___restrict__] = ACTIONS(7306), + [anon_sym__Atomic] = ACTIONS(7306), + [anon_sym__Noreturn] = ACTIONS(7306), + [anon_sym__Nonnull] = ACTIONS(7306), + [anon_sym_nullable] = ACTIONS(7306), + [anon_sym__Complex] = ACTIONS(7306), + [anon_sym__Nullable] = ACTIONS(7306), + [anon_sym__Nullable_result] = ACTIONS(7306), + [anon_sym__Null_unspecified] = ACTIONS(7306), + [anon_sym___autoreleasing] = ACTIONS(7306), + [anon_sym___block] = ACTIONS(7306), + [anon_sym___bridge] = ACTIONS(7306), + [anon_sym___bridge_retained] = ACTIONS(7306), + [anon_sym___bridge_transfer] = ACTIONS(7306), + [anon_sym___complex] = ACTIONS(7306), + [anon_sym___const] = ACTIONS(7306), + [anon_sym___imag] = ACTIONS(7306), + [anon_sym___kindof] = ACTIONS(7306), + [anon_sym___nonnull] = ACTIONS(7306), + [anon_sym___nullable] = ACTIONS(7306), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7306), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7306), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7306), + [anon_sym___real] = ACTIONS(7306), + [anon_sym___strong] = ACTIONS(7306), + [anon_sym___unsafe_unretained] = ACTIONS(7306), + [anon_sym___unused] = ACTIONS(7306), + [anon_sym___weak] = ACTIONS(7306), + [anon_sym_alignas] = ACTIONS(7306), + [anon_sym__Alignas] = ACTIONS(7306), + [sym_primitive_type] = ACTIONS(7306), + [anon_sym_enum] = ACTIONS(7306), + [anon_sym_COLON] = ACTIONS(7308), + [anon_sym_struct] = ACTIONS(7306), + [anon_sym_union] = ACTIONS(7306), + [anon_sym_in] = ACTIONS(7306), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7306), + [anon_sym___typeof] = ACTIONS(7306), + [anon_sym_typeof] = ACTIONS(7306), + [anon_sym_BOOL] = ACTIONS(7306), + [anon_sym_IMP] = ACTIONS(7306), + [anon_sym_SEL] = ACTIONS(7306), + [anon_sym_Class] = ACTIONS(7306), + [anon_sym_id] = ACTIONS(7306), + [anon_sym_out] = ACTIONS(7306), + [anon_sym_inout] = ACTIONS(7306), + [anon_sym_bycopy] = ACTIONS(7306), + [anon_sym_byref] = ACTIONS(7306), + [anon_sym_oneway] = ACTIONS(7306), + }, + [3829] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7342), + [anon_sym_COMMA] = ACTIONS(7344), + [anon_sym_RPAREN] = ACTIONS(7344), + [anon_sym_LPAREN2] = ACTIONS(7344), + [anon_sym_STAR] = ACTIONS(7344), + [anon_sym_CARET] = ACTIONS(7344), + [anon_sym_GT] = ACTIONS(7344), + [anon_sym_LT] = ACTIONS(7344), + [anon_sym___extension__] = ACTIONS(7342), + [anon_sym___attribute__] = ACTIONS(7342), + [anon_sym___attribute] = ACTIONS(7342), + [anon_sym_noreturn] = ACTIONS(7342), + [anon_sym_LBRACK] = ACTIONS(7344), + [anon_sym___based] = ACTIONS(7342), + [anon_sym_LBRACE] = ACTIONS(7344), + [anon_sym_signed] = ACTIONS(8907), + [anon_sym_unsigned] = ACTIONS(8907), + [anon_sym_long] = ACTIONS(8907), + [anon_sym_short] = ACTIONS(8907), + [anon_sym_ATautoreleasepool] = ACTIONS(7344), + [anon_sym_const] = ACTIONS(7342), + [anon_sym_constexpr] = ACTIONS(7342), + [anon_sym_volatile] = ACTIONS(7342), + [anon_sym_restrict] = ACTIONS(7342), + [anon_sym___restrict__] = ACTIONS(7342), + [anon_sym__Atomic] = ACTIONS(7342), + [anon_sym__Noreturn] = ACTIONS(7342), + [anon_sym__Nonnull] = ACTIONS(7342), + [anon_sym_nullable] = ACTIONS(7342), + [anon_sym__Complex] = ACTIONS(7342), + [anon_sym__Nullable] = ACTIONS(7342), + [anon_sym__Nullable_result] = ACTIONS(7342), + [anon_sym__Null_unspecified] = ACTIONS(7342), + [anon_sym___autoreleasing] = ACTIONS(7342), + [anon_sym___block] = ACTIONS(7342), + [anon_sym___bridge] = ACTIONS(7342), + [anon_sym___bridge_retained] = ACTIONS(7342), + [anon_sym___bridge_transfer] = ACTIONS(7342), + [anon_sym___complex] = ACTIONS(7342), + [anon_sym___const] = ACTIONS(7342), + [anon_sym___imag] = ACTIONS(7342), + [anon_sym___kindof] = ACTIONS(7342), + [anon_sym___nonnull] = ACTIONS(7342), + [anon_sym___nullable] = ACTIONS(7342), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7342), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7342), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7342), + [anon_sym___real] = ACTIONS(7342), + [anon_sym___strong] = ACTIONS(7342), + [anon_sym___unsafe_unretained] = ACTIONS(7342), + [anon_sym___unused] = ACTIONS(7342), + [anon_sym___weak] = ACTIONS(7342), + [anon_sym_alignas] = ACTIONS(7342), + [anon_sym__Alignas] = ACTIONS(7342), + [sym_primitive_type] = ACTIONS(7342), + [anon_sym_enum] = ACTIONS(7342), + [anon_sym_COLON] = ACTIONS(7344), + [anon_sym_struct] = ACTIONS(7342), + [anon_sym_union] = ACTIONS(7342), + [anon_sym_in] = ACTIONS(7342), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7342), + [anon_sym___typeof] = ACTIONS(7342), + [anon_sym_typeof] = ACTIONS(7342), + [anon_sym_BOOL] = ACTIONS(7342), + [anon_sym_IMP] = ACTIONS(7342), + [anon_sym_SEL] = ACTIONS(7342), + [anon_sym_Class] = ACTIONS(7342), + [anon_sym_id] = ACTIONS(7342), + [anon_sym_out] = ACTIONS(7342), + [anon_sym_inout] = ACTIONS(7342), + [anon_sym_bycopy] = ACTIONS(7342), + [anon_sym_byref] = ACTIONS(7342), + [anon_sym_oneway] = ACTIONS(7342), + }, + [3830] = { + [sym_attribute_specifier] = STATE(3895), + [sym_identifier] = ACTIONS(7224), + [anon_sym_COMMA] = ACTIONS(7226), + [anon_sym_RPAREN] = ACTIONS(7226), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_STAR] = ACTIONS(7226), + [anon_sym_CARET] = ACTIONS(7226), + [anon_sym_GT] = ACTIONS(7226), + [anon_sym_LT] = ACTIONS(7226), + [anon_sym___extension__] = ACTIONS(7224), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7224), + [anon_sym_LBRACK] = ACTIONS(7226), + [anon_sym___based] = ACTIONS(7224), + [anon_sym_LBRACE] = ACTIONS(7226), + [anon_sym_signed] = ACTIONS(7224), + [anon_sym_unsigned] = ACTIONS(7224), + [anon_sym_long] = ACTIONS(7224), + [anon_sym_short] = ACTIONS(7224), + [anon_sym_ATautoreleasepool] = ACTIONS(7226), + [anon_sym_const] = ACTIONS(7224), + [anon_sym_constexpr] = ACTIONS(7224), + [anon_sym_volatile] = ACTIONS(7224), + [anon_sym_restrict] = ACTIONS(7224), + [anon_sym___restrict__] = ACTIONS(7224), + [anon_sym__Atomic] = ACTIONS(7224), + [anon_sym__Noreturn] = ACTIONS(7224), + [anon_sym__Nonnull] = ACTIONS(7224), + [anon_sym_nullable] = ACTIONS(7224), + [anon_sym__Complex] = ACTIONS(7224), + [anon_sym__Nullable] = ACTIONS(7224), + [anon_sym__Nullable_result] = ACTIONS(7224), + [anon_sym__Null_unspecified] = ACTIONS(7224), + [anon_sym___autoreleasing] = ACTIONS(7224), + [anon_sym___block] = ACTIONS(7224), + [anon_sym___bridge] = ACTIONS(7224), + [anon_sym___bridge_retained] = ACTIONS(7224), + [anon_sym___bridge_transfer] = ACTIONS(7224), + [anon_sym___complex] = ACTIONS(7224), + [anon_sym___const] = ACTIONS(7224), + [anon_sym___imag] = ACTIONS(7224), + [anon_sym___kindof] = ACTIONS(7224), + [anon_sym___nonnull] = ACTIONS(7224), + [anon_sym___nullable] = ACTIONS(7224), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7224), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7224), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7224), + [anon_sym___real] = ACTIONS(7224), + [anon_sym___strong] = ACTIONS(7224), + [anon_sym___unsafe_unretained] = ACTIONS(7224), + [anon_sym___unused] = ACTIONS(7224), + [anon_sym___weak] = ACTIONS(7224), + [anon_sym_alignas] = ACTIONS(7224), + [anon_sym__Alignas] = ACTIONS(7224), + [sym_primitive_type] = ACTIONS(7224), + [anon_sym_enum] = ACTIONS(7224), + [anon_sym_COLON] = ACTIONS(7226), + [anon_sym_struct] = ACTIONS(7224), + [anon_sym_union] = ACTIONS(7224), + [anon_sym_in] = ACTIONS(7224), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7224), + [anon_sym___typeof] = ACTIONS(7224), + [anon_sym_typeof] = ACTIONS(7224), + [anon_sym_BOOL] = ACTIONS(7224), + [anon_sym_IMP] = ACTIONS(7224), + [anon_sym_SEL] = ACTIONS(7224), + [anon_sym_Class] = ACTIONS(7224), + [anon_sym_id] = ACTIONS(7224), + [anon_sym_out] = ACTIONS(7224), + [anon_sym_inout] = ACTIONS(7224), + [anon_sym_bycopy] = ACTIONS(7224), + [anon_sym_byref] = ACTIONS(7224), + [anon_sym_oneway] = ACTIONS(7224), + }, + [3831] = { + [sym_attribute_specifier] = STATE(3993), + [sym_enumerator_list] = STATE(3900), + [sym_identifier] = ACTIONS(7764), + [anon_sym_COMMA] = ACTIONS(7766), + [anon_sym_RPAREN] = ACTIONS(7766), + [anon_sym_LPAREN2] = ACTIONS(7766), + [anon_sym_STAR] = ACTIONS(7766), + [anon_sym_CARET] = ACTIONS(7766), + [anon_sym_GT] = ACTIONS(7766), + [anon_sym_LT] = ACTIONS(7766), + [anon_sym___extension__] = ACTIONS(7764), + [anon_sym___attribute__] = ACTIONS(8910), + [anon_sym___attribute] = ACTIONS(8910), + [anon_sym_noreturn] = ACTIONS(7764), + [anon_sym_LBRACK] = ACTIONS(7766), + [anon_sym___based] = ACTIONS(7764), + [anon_sym_LBRACE] = ACTIONS(8913), + [anon_sym_signed] = ACTIONS(7764), + [anon_sym_unsigned] = ACTIONS(7764), + [anon_sym_long] = ACTIONS(7764), + [anon_sym_short] = ACTIONS(7764), + [anon_sym_const] = ACTIONS(7764), + [anon_sym_constexpr] = ACTIONS(7764), + [anon_sym_volatile] = ACTIONS(7764), + [anon_sym_restrict] = ACTIONS(7764), + [anon_sym___restrict__] = ACTIONS(7764), + [anon_sym__Atomic] = ACTIONS(7764), + [anon_sym__Noreturn] = ACTIONS(7764), + [anon_sym__Nonnull] = ACTIONS(7764), + [anon_sym_nullable] = ACTIONS(7764), + [anon_sym__Complex] = ACTIONS(7764), + [anon_sym__Nullable] = ACTIONS(7764), + [anon_sym__Nullable_result] = ACTIONS(7764), + [anon_sym__Null_unspecified] = ACTIONS(7764), + [anon_sym___autoreleasing] = ACTIONS(7764), + [anon_sym___block] = ACTIONS(7764), + [anon_sym___bridge] = ACTIONS(7764), + [anon_sym___bridge_retained] = ACTIONS(7764), + [anon_sym___bridge_transfer] = ACTIONS(7764), + [anon_sym___complex] = ACTIONS(7764), + [anon_sym___const] = ACTIONS(7764), + [anon_sym___imag] = ACTIONS(7764), + [anon_sym___kindof] = ACTIONS(7764), + [anon_sym___nonnull] = ACTIONS(7764), + [anon_sym___nullable] = ACTIONS(7764), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7764), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7764), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7764), + [anon_sym___real] = ACTIONS(7764), + [anon_sym___strong] = ACTIONS(7764), + [anon_sym___unsafe_unretained] = ACTIONS(7764), + [anon_sym___unused] = ACTIONS(7764), + [anon_sym___weak] = ACTIONS(7764), + [anon_sym_alignas] = ACTIONS(7764), + [anon_sym__Alignas] = ACTIONS(7764), + [sym_primitive_type] = ACTIONS(7764), + [anon_sym_enum] = ACTIONS(7764), + [anon_sym_COLON] = ACTIONS(8915), + [anon_sym_struct] = ACTIONS(7764), + [anon_sym_union] = ACTIONS(7764), + [anon_sym_in] = ACTIONS(7764), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7764), + [anon_sym___typeof] = ACTIONS(7764), + [anon_sym_typeof] = ACTIONS(7764), + [anon_sym_BOOL] = ACTIONS(7764), + [anon_sym_IMP] = ACTIONS(7764), + [anon_sym_SEL] = ACTIONS(7764), + [anon_sym_Class] = ACTIONS(7764), + [anon_sym_id] = ACTIONS(7764), + [anon_sym_out] = ACTIONS(7764), + [anon_sym_inout] = ACTIONS(7764), + [anon_sym_bycopy] = ACTIONS(7764), + [anon_sym_byref] = ACTIONS(7764), + [anon_sym_oneway] = ACTIONS(7764), + }, + [3832] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7260), + [anon_sym_COMMA] = ACTIONS(7263), + [anon_sym_RPAREN] = ACTIONS(7263), + [anon_sym_LPAREN2] = ACTIONS(7263), + [anon_sym_STAR] = ACTIONS(7263), + [anon_sym_CARET] = ACTIONS(7263), + [anon_sym_GT] = ACTIONS(7263), + [anon_sym_LT] = ACTIONS(7263), + [anon_sym___extension__] = ACTIONS(7260), + [anon_sym___attribute__] = ACTIONS(7260), + [anon_sym___attribute] = ACTIONS(7260), + [anon_sym_noreturn] = ACTIONS(7260), + [anon_sym_LBRACK] = ACTIONS(7263), + [anon_sym___based] = ACTIONS(7260), + [anon_sym_LBRACE] = ACTIONS(7263), + [anon_sym_signed] = ACTIONS(8917), + [anon_sym_unsigned] = ACTIONS(8917), + [anon_sym_long] = ACTIONS(8917), + [anon_sym_short] = ACTIONS(8917), + [anon_sym_ATautoreleasepool] = ACTIONS(7263), + [anon_sym_const] = ACTIONS(7260), + [anon_sym_constexpr] = ACTIONS(7260), + [anon_sym_volatile] = ACTIONS(7260), + [anon_sym_restrict] = ACTIONS(7260), + [anon_sym___restrict__] = ACTIONS(7260), + [anon_sym__Atomic] = ACTIONS(7260), + [anon_sym__Noreturn] = ACTIONS(7260), + [anon_sym__Nonnull] = ACTIONS(7260), + [anon_sym_nullable] = ACTIONS(7260), + [anon_sym__Complex] = ACTIONS(7260), + [anon_sym__Nullable] = ACTIONS(7260), + [anon_sym__Nullable_result] = ACTIONS(7260), + [anon_sym__Null_unspecified] = ACTIONS(7260), + [anon_sym___autoreleasing] = ACTIONS(7260), + [anon_sym___block] = ACTIONS(7260), + [anon_sym___bridge] = ACTIONS(7260), + [anon_sym___bridge_retained] = ACTIONS(7260), + [anon_sym___bridge_transfer] = ACTIONS(7260), + [anon_sym___complex] = ACTIONS(7260), + [anon_sym___const] = ACTIONS(7260), + [anon_sym___imag] = ACTIONS(7260), + [anon_sym___kindof] = ACTIONS(7260), + [anon_sym___nonnull] = ACTIONS(7260), + [anon_sym___nullable] = ACTIONS(7260), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7260), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7260), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7260), + [anon_sym___real] = ACTIONS(7260), + [anon_sym___strong] = ACTIONS(7260), + [anon_sym___unsafe_unretained] = ACTIONS(7260), + [anon_sym___unused] = ACTIONS(7260), + [anon_sym___weak] = ACTIONS(7260), + [anon_sym_alignas] = ACTIONS(7260), + [anon_sym__Alignas] = ACTIONS(7260), + [sym_primitive_type] = ACTIONS(7260), + [anon_sym_enum] = ACTIONS(7260), + [anon_sym_COLON] = ACTIONS(7263), + [anon_sym_struct] = ACTIONS(7260), + [anon_sym_union] = ACTIONS(7260), + [anon_sym_in] = ACTIONS(7260), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7260), + [anon_sym___typeof] = ACTIONS(7260), + [anon_sym_typeof] = ACTIONS(7260), + [anon_sym_BOOL] = ACTIONS(7260), + [anon_sym_IMP] = ACTIONS(7260), + [anon_sym_SEL] = ACTIONS(7260), + [anon_sym_Class] = ACTIONS(7260), + [anon_sym_id] = ACTIONS(7260), + [anon_sym_out] = ACTIONS(7260), + [anon_sym_inout] = ACTIONS(7260), + [anon_sym_bycopy] = ACTIONS(7260), + [anon_sym_byref] = ACTIONS(7260), + [anon_sym_oneway] = ACTIONS(7260), + }, + [3833] = { + [sym_attribute_specifier] = STATE(3882), + [sym_enumerator_list] = STATE(3928), + [sym_identifier] = ACTIONS(7717), + [anon_sym_COMMA] = ACTIONS(7719), + [anon_sym_RPAREN] = ACTIONS(7719), + [anon_sym_LPAREN2] = ACTIONS(7719), + [anon_sym_STAR] = ACTIONS(7719), + [anon_sym_CARET] = ACTIONS(7719), + [anon_sym_GT] = ACTIONS(7719), + [anon_sym_LT] = ACTIONS(7719), + [anon_sym___extension__] = ACTIONS(7717), + [anon_sym___attribute__] = ACTIONS(8921), + [anon_sym___attribute] = ACTIONS(8921), + [anon_sym_noreturn] = ACTIONS(7717), + [anon_sym_LBRACK] = ACTIONS(7719), + [anon_sym___based] = ACTIONS(7717), + [anon_sym_LBRACE] = ACTIONS(8913), + [anon_sym_signed] = ACTIONS(7717), + [anon_sym_unsigned] = ACTIONS(7717), + [anon_sym_long] = ACTIONS(7717), + [anon_sym_short] = ACTIONS(7717), + [anon_sym_const] = ACTIONS(7717), + [anon_sym_constexpr] = ACTIONS(7717), + [anon_sym_volatile] = ACTIONS(7717), + [anon_sym_restrict] = ACTIONS(7717), + [anon_sym___restrict__] = ACTIONS(7717), + [anon_sym__Atomic] = ACTIONS(7717), + [anon_sym__Noreturn] = ACTIONS(7717), + [anon_sym__Nonnull] = ACTIONS(7717), + [anon_sym_nullable] = ACTIONS(7717), + [anon_sym__Complex] = ACTIONS(7717), + [anon_sym__Nullable] = ACTIONS(7717), + [anon_sym__Nullable_result] = ACTIONS(7717), + [anon_sym__Null_unspecified] = ACTIONS(7717), + [anon_sym___autoreleasing] = ACTIONS(7717), + [anon_sym___block] = ACTIONS(7717), + [anon_sym___bridge] = ACTIONS(7717), + [anon_sym___bridge_retained] = ACTIONS(7717), + [anon_sym___bridge_transfer] = ACTIONS(7717), + [anon_sym___complex] = ACTIONS(7717), + [anon_sym___const] = ACTIONS(7717), + [anon_sym___imag] = ACTIONS(7717), + [anon_sym___kindof] = ACTIONS(7717), + [anon_sym___nonnull] = ACTIONS(7717), + [anon_sym___nullable] = ACTIONS(7717), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7717), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7717), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7717), + [anon_sym___real] = ACTIONS(7717), + [anon_sym___strong] = ACTIONS(7717), + [anon_sym___unsafe_unretained] = ACTIONS(7717), + [anon_sym___unused] = ACTIONS(7717), + [anon_sym___weak] = ACTIONS(7717), + [anon_sym_alignas] = ACTIONS(7717), + [anon_sym__Alignas] = ACTIONS(7717), + [sym_primitive_type] = ACTIONS(7717), + [anon_sym_enum] = ACTIONS(7717), + [anon_sym_COLON] = ACTIONS(8924), + [anon_sym_struct] = ACTIONS(7717), + [anon_sym_union] = ACTIONS(7717), + [anon_sym_in] = ACTIONS(7717), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7717), + [anon_sym___typeof] = ACTIONS(7717), + [anon_sym_typeof] = ACTIONS(7717), + [anon_sym_BOOL] = ACTIONS(7717), + [anon_sym_IMP] = ACTIONS(7717), + [anon_sym_SEL] = ACTIONS(7717), + [anon_sym_Class] = ACTIONS(7717), + [anon_sym_id] = ACTIONS(7717), + [anon_sym_out] = ACTIONS(7717), + [anon_sym_inout] = ACTIONS(7717), + [anon_sym_bycopy] = ACTIONS(7717), + [anon_sym_byref] = ACTIONS(7717), + [anon_sym_oneway] = ACTIONS(7717), + }, + [3834] = { + [sym_attribute_specifier] = STATE(4000), + [sym_identifier] = ACTIONS(7228), + [anon_sym_COMMA] = ACTIONS(7230), + [anon_sym_RPAREN] = ACTIONS(7230), + [anon_sym_LPAREN2] = ACTIONS(7230), + [anon_sym_STAR] = ACTIONS(7230), + [anon_sym_CARET] = ACTIONS(7230), + [anon_sym_GT] = ACTIONS(7230), + [anon_sym_LT] = ACTIONS(7230), + [anon_sym___extension__] = ACTIONS(7228), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7228), + [anon_sym_LBRACK] = ACTIONS(7230), + [anon_sym___based] = ACTIONS(7228), + [anon_sym_LBRACE] = ACTIONS(7230), + [anon_sym_signed] = ACTIONS(7228), + [anon_sym_unsigned] = ACTIONS(7228), + [anon_sym_long] = ACTIONS(7228), + [anon_sym_short] = ACTIONS(7228), + [anon_sym_ATautoreleasepool] = ACTIONS(7230), + [anon_sym_const] = ACTIONS(7228), + [anon_sym_constexpr] = ACTIONS(7228), + [anon_sym_volatile] = ACTIONS(7228), + [anon_sym_restrict] = ACTIONS(7228), + [anon_sym___restrict__] = ACTIONS(7228), + [anon_sym__Atomic] = ACTIONS(7228), + [anon_sym__Noreturn] = ACTIONS(7228), + [anon_sym__Nonnull] = ACTIONS(7228), + [anon_sym_nullable] = ACTIONS(7228), + [anon_sym__Complex] = ACTIONS(7228), + [anon_sym__Nullable] = ACTIONS(7228), + [anon_sym__Nullable_result] = ACTIONS(7228), + [anon_sym__Null_unspecified] = ACTIONS(7228), + [anon_sym___autoreleasing] = ACTIONS(7228), + [anon_sym___block] = ACTIONS(7228), + [anon_sym___bridge] = ACTIONS(7228), + [anon_sym___bridge_retained] = ACTIONS(7228), + [anon_sym___bridge_transfer] = ACTIONS(7228), + [anon_sym___complex] = ACTIONS(7228), + [anon_sym___const] = ACTIONS(7228), + [anon_sym___imag] = ACTIONS(7228), + [anon_sym___kindof] = ACTIONS(7228), + [anon_sym___nonnull] = ACTIONS(7228), + [anon_sym___nullable] = ACTIONS(7228), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7228), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7228), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7228), + [anon_sym___real] = ACTIONS(7228), + [anon_sym___strong] = ACTIONS(7228), + [anon_sym___unsafe_unretained] = ACTIONS(7228), + [anon_sym___unused] = ACTIONS(7228), + [anon_sym___weak] = ACTIONS(7228), + [anon_sym_alignas] = ACTIONS(7228), + [anon_sym__Alignas] = ACTIONS(7228), + [sym_primitive_type] = ACTIONS(7228), + [anon_sym_enum] = ACTIONS(7228), + [anon_sym_COLON] = ACTIONS(7230), + [anon_sym_struct] = ACTIONS(7228), + [anon_sym_union] = ACTIONS(7228), + [anon_sym_in] = ACTIONS(7228), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7228), + [anon_sym___typeof] = ACTIONS(7228), + [anon_sym_typeof] = ACTIONS(7228), + [anon_sym_BOOL] = ACTIONS(7228), + [anon_sym_IMP] = ACTIONS(7228), + [anon_sym_SEL] = ACTIONS(7228), + [anon_sym_Class] = ACTIONS(7228), + [anon_sym_id] = ACTIONS(7228), + [anon_sym_out] = ACTIONS(7228), + [anon_sym_inout] = ACTIONS(7228), + [anon_sym_bycopy] = ACTIONS(7228), + [anon_sym_byref] = ACTIONS(7228), + [anon_sym_oneway] = ACTIONS(7228), + }, + [3835] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3843), + [sym_identifier] = ACTIONS(7444), + [anon_sym_COMMA] = ACTIONS(7446), + [anon_sym_RPAREN] = ACTIONS(7446), + [anon_sym_LPAREN2] = ACTIONS(7446), + [anon_sym_STAR] = ACTIONS(7446), + [anon_sym_CARET] = ACTIONS(7446), + [anon_sym_GT] = ACTIONS(7446), + [anon_sym_LT] = ACTIONS(7446), + [anon_sym___extension__] = ACTIONS(7444), + [anon_sym___attribute__] = ACTIONS(7444), + [anon_sym___attribute] = ACTIONS(7444), + [anon_sym_noreturn] = ACTIONS(7444), + [anon_sym_LBRACK] = ACTIONS(7446), + [anon_sym___based] = ACTIONS(7444), + [anon_sym_LBRACE] = ACTIONS(7446), + [anon_sym_signed] = ACTIONS(8926), + [anon_sym_unsigned] = ACTIONS(8926), + [anon_sym_long] = ACTIONS(8926), + [anon_sym_short] = ACTIONS(8926), + [anon_sym_ATautoreleasepool] = ACTIONS(7446), + [anon_sym_const] = ACTIONS(7444), + [anon_sym_constexpr] = ACTIONS(7444), + [anon_sym_volatile] = ACTIONS(7444), + [anon_sym_restrict] = ACTIONS(7444), + [anon_sym___restrict__] = ACTIONS(7444), + [anon_sym__Atomic] = ACTIONS(7444), + [anon_sym__Noreturn] = ACTIONS(7444), + [anon_sym__Nonnull] = ACTIONS(7444), + [anon_sym_nullable] = ACTIONS(7444), + [anon_sym__Complex] = ACTIONS(7444), + [anon_sym__Nullable] = ACTIONS(7444), + [anon_sym__Nullable_result] = ACTIONS(7444), + [anon_sym__Null_unspecified] = ACTIONS(7444), + [anon_sym___autoreleasing] = ACTIONS(7444), + [anon_sym___block] = ACTIONS(7444), + [anon_sym___bridge] = ACTIONS(7444), + [anon_sym___bridge_retained] = ACTIONS(7444), + [anon_sym___bridge_transfer] = ACTIONS(7444), + [anon_sym___complex] = ACTIONS(7444), + [anon_sym___const] = ACTIONS(7444), + [anon_sym___imag] = ACTIONS(7444), + [anon_sym___kindof] = ACTIONS(7444), + [anon_sym___nonnull] = ACTIONS(7444), + [anon_sym___nullable] = ACTIONS(7444), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7444), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7444), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7444), + [anon_sym___real] = ACTIONS(7444), + [anon_sym___strong] = ACTIONS(7444), + [anon_sym___unsafe_unretained] = ACTIONS(7444), + [anon_sym___unused] = ACTIONS(7444), + [anon_sym___weak] = ACTIONS(7444), + [anon_sym_alignas] = ACTIONS(7444), + [anon_sym__Alignas] = ACTIONS(7444), + [sym_primitive_type] = ACTIONS(7444), + [anon_sym_enum] = ACTIONS(7444), + [anon_sym_COLON] = ACTIONS(7446), + [anon_sym_struct] = ACTIONS(7444), + [anon_sym_union] = ACTIONS(7444), + [anon_sym_in] = ACTIONS(7444), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7444), + [anon_sym___typeof] = ACTIONS(7444), + [anon_sym_typeof] = ACTIONS(7444), + [anon_sym_BOOL] = ACTIONS(7444), + [anon_sym_IMP] = ACTIONS(7444), + [anon_sym_SEL] = ACTIONS(7444), + [anon_sym_Class] = ACTIONS(7444), + [anon_sym_id] = ACTIONS(7444), + [anon_sym_out] = ACTIONS(7444), + [anon_sym_inout] = ACTIONS(7444), + [anon_sym_bycopy] = ACTIONS(7444), + [anon_sym_byref] = ACTIONS(7444), + [anon_sym_oneway] = ACTIONS(7444), + }, + [3836] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3844), + [sym_identifier] = ACTIONS(7450), + [anon_sym_COMMA] = ACTIONS(7452), + [anon_sym_RPAREN] = ACTIONS(7452), + [anon_sym_LPAREN2] = ACTIONS(7452), + [anon_sym_STAR] = ACTIONS(7452), + [anon_sym_CARET] = ACTIONS(7452), + [anon_sym_GT] = ACTIONS(7452), + [anon_sym_LT] = ACTIONS(7452), + [anon_sym___extension__] = ACTIONS(7450), + [anon_sym___attribute__] = ACTIONS(7450), + [anon_sym___attribute] = ACTIONS(7450), + [anon_sym_noreturn] = ACTIONS(7450), + [anon_sym_LBRACK] = ACTIONS(7452), + [anon_sym___based] = ACTIONS(7450), + [anon_sym_LBRACE] = ACTIONS(7452), + [anon_sym_signed] = ACTIONS(8929), + [anon_sym_unsigned] = ACTIONS(8929), + [anon_sym_long] = ACTIONS(8929), + [anon_sym_short] = ACTIONS(8929), + [anon_sym_ATautoreleasepool] = ACTIONS(7452), + [anon_sym_const] = ACTIONS(7450), + [anon_sym_constexpr] = ACTIONS(7450), + [anon_sym_volatile] = ACTIONS(7450), + [anon_sym_restrict] = ACTIONS(7450), + [anon_sym___restrict__] = ACTIONS(7450), + [anon_sym__Atomic] = ACTIONS(7450), + [anon_sym__Noreturn] = ACTIONS(7450), + [anon_sym__Nonnull] = ACTIONS(7450), + [anon_sym_nullable] = ACTIONS(7450), + [anon_sym__Complex] = ACTIONS(7450), + [anon_sym__Nullable] = ACTIONS(7450), + [anon_sym__Nullable_result] = ACTIONS(7450), + [anon_sym__Null_unspecified] = ACTIONS(7450), + [anon_sym___autoreleasing] = ACTIONS(7450), + [anon_sym___block] = ACTIONS(7450), + [anon_sym___bridge] = ACTIONS(7450), + [anon_sym___bridge_retained] = ACTIONS(7450), + [anon_sym___bridge_transfer] = ACTIONS(7450), + [anon_sym___complex] = ACTIONS(7450), + [anon_sym___const] = ACTIONS(7450), + [anon_sym___imag] = ACTIONS(7450), + [anon_sym___kindof] = ACTIONS(7450), + [anon_sym___nonnull] = ACTIONS(7450), + [anon_sym___nullable] = ACTIONS(7450), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7450), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7450), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7450), + [anon_sym___real] = ACTIONS(7450), + [anon_sym___strong] = ACTIONS(7450), + [anon_sym___unsafe_unretained] = ACTIONS(7450), + [anon_sym___unused] = ACTIONS(7450), + [anon_sym___weak] = ACTIONS(7450), + [anon_sym_alignas] = ACTIONS(7450), + [anon_sym__Alignas] = ACTIONS(7450), + [sym_primitive_type] = ACTIONS(7450), + [anon_sym_enum] = ACTIONS(7450), + [anon_sym_COLON] = ACTIONS(7452), + [anon_sym_struct] = ACTIONS(7450), + [anon_sym_union] = ACTIONS(7450), + [anon_sym_in] = ACTIONS(7450), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7450), + [anon_sym___typeof] = ACTIONS(7450), + [anon_sym_typeof] = ACTIONS(7450), + [anon_sym_BOOL] = ACTIONS(7450), + [anon_sym_IMP] = ACTIONS(7450), + [anon_sym_SEL] = ACTIONS(7450), + [anon_sym_Class] = ACTIONS(7450), + [anon_sym_id] = ACTIONS(7450), + [anon_sym_out] = ACTIONS(7450), + [anon_sym_inout] = ACTIONS(7450), + [anon_sym_bycopy] = ACTIONS(7450), + [anon_sym_byref] = ACTIONS(7450), + [anon_sym_oneway] = ACTIONS(7450), + }, + [3837] = { + [sym_attribute_specifier] = STATE(3893), + [sym_identifier] = ACTIONS(7232), + [anon_sym_COMMA] = ACTIONS(7234), + [anon_sym_RPAREN] = ACTIONS(7234), + [anon_sym_LPAREN2] = ACTIONS(7234), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_CARET] = ACTIONS(7234), + [anon_sym_GT] = ACTIONS(7234), + [anon_sym_LT] = ACTIONS(7234), + [anon_sym___extension__] = ACTIONS(7232), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7232), + [anon_sym_LBRACK] = ACTIONS(7234), + [anon_sym___based] = ACTIONS(7232), + [anon_sym_LBRACE] = ACTIONS(7234), + [anon_sym_signed] = ACTIONS(7232), + [anon_sym_unsigned] = ACTIONS(7232), + [anon_sym_long] = ACTIONS(7232), + [anon_sym_short] = ACTIONS(7232), + [anon_sym_ATautoreleasepool] = ACTIONS(7234), + [anon_sym_const] = ACTIONS(7232), + [anon_sym_constexpr] = ACTIONS(7232), + [anon_sym_volatile] = ACTIONS(7232), + [anon_sym_restrict] = ACTIONS(7232), + [anon_sym___restrict__] = ACTIONS(7232), + [anon_sym__Atomic] = ACTIONS(7232), + [anon_sym__Noreturn] = ACTIONS(7232), + [anon_sym__Nonnull] = ACTIONS(7232), + [anon_sym_nullable] = ACTIONS(7232), + [anon_sym__Complex] = ACTIONS(7232), + [anon_sym__Nullable] = ACTIONS(7232), + [anon_sym__Nullable_result] = ACTIONS(7232), + [anon_sym__Null_unspecified] = ACTIONS(7232), + [anon_sym___autoreleasing] = ACTIONS(7232), + [anon_sym___block] = ACTIONS(7232), + [anon_sym___bridge] = ACTIONS(7232), + [anon_sym___bridge_retained] = ACTIONS(7232), + [anon_sym___bridge_transfer] = ACTIONS(7232), + [anon_sym___complex] = ACTIONS(7232), + [anon_sym___const] = ACTIONS(7232), + [anon_sym___imag] = ACTIONS(7232), + [anon_sym___kindof] = ACTIONS(7232), + [anon_sym___nonnull] = ACTIONS(7232), + [anon_sym___nullable] = ACTIONS(7232), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7232), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7232), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7232), + [anon_sym___real] = ACTIONS(7232), + [anon_sym___strong] = ACTIONS(7232), + [anon_sym___unsafe_unretained] = ACTIONS(7232), + [anon_sym___unused] = ACTIONS(7232), + [anon_sym___weak] = ACTIONS(7232), + [anon_sym_alignas] = ACTIONS(7232), + [anon_sym__Alignas] = ACTIONS(7232), + [sym_primitive_type] = ACTIONS(7232), + [anon_sym_enum] = ACTIONS(7232), + [anon_sym_COLON] = ACTIONS(7234), + [anon_sym_struct] = ACTIONS(7232), + [anon_sym_union] = ACTIONS(7232), + [anon_sym_in] = ACTIONS(7232), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7232), + [anon_sym___typeof] = ACTIONS(7232), + [anon_sym_typeof] = ACTIONS(7232), + [anon_sym_BOOL] = ACTIONS(7232), + [anon_sym_IMP] = ACTIONS(7232), + [anon_sym_SEL] = ACTIONS(7232), + [anon_sym_Class] = ACTIONS(7232), + [anon_sym_id] = ACTIONS(7232), + [anon_sym_out] = ACTIONS(7232), + [anon_sym_inout] = ACTIONS(7232), + [anon_sym_bycopy] = ACTIONS(7232), + [anon_sym_byref] = ACTIONS(7232), + [anon_sym_oneway] = ACTIONS(7232), + }, + [3838] = { + [aux_sym_generic_specifier_repeat1] = STATE(3819), + [sym_identifier] = ACTIONS(7170), + [anon_sym_COMMA] = ACTIONS(7172), + [anon_sym_RPAREN] = ACTIONS(7172), + [anon_sym_LPAREN2] = ACTIONS(7172), + [anon_sym_STAR] = ACTIONS(7172), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_GT] = ACTIONS(7172), + [anon_sym_LT] = ACTIONS(5934), + [anon_sym___extension__] = ACTIONS(7170), + [anon_sym___attribute__] = ACTIONS(7170), + [anon_sym___attribute] = ACTIONS(7170), + [anon_sym_noreturn] = ACTIONS(7170), + [anon_sym_LBRACK] = ACTIONS(7172), + [anon_sym___based] = ACTIONS(7170), + [anon_sym_LBRACE] = ACTIONS(7172), + [anon_sym_signed] = ACTIONS(7170), + [anon_sym_unsigned] = ACTIONS(7170), + [anon_sym_long] = ACTIONS(7170), + [anon_sym_short] = ACTIONS(7170), + [anon_sym_ATautoreleasepool] = ACTIONS(7172), + [anon_sym_const] = ACTIONS(7170), + [anon_sym_constexpr] = ACTIONS(7170), + [anon_sym_volatile] = ACTIONS(7170), + [anon_sym_restrict] = ACTIONS(7170), + [anon_sym___restrict__] = ACTIONS(7170), + [anon_sym__Atomic] = ACTIONS(7170), + [anon_sym__Noreturn] = ACTIONS(7170), + [anon_sym__Nonnull] = ACTIONS(7170), + [anon_sym_nullable] = ACTIONS(7170), + [anon_sym__Complex] = ACTIONS(7170), + [anon_sym__Nullable] = ACTIONS(7170), + [anon_sym__Nullable_result] = ACTIONS(7170), + [anon_sym__Null_unspecified] = ACTIONS(7170), + [anon_sym___autoreleasing] = ACTIONS(7170), + [anon_sym___block] = ACTIONS(7170), + [anon_sym___bridge] = ACTIONS(7170), + [anon_sym___bridge_retained] = ACTIONS(7170), + [anon_sym___bridge_transfer] = ACTIONS(7170), + [anon_sym___complex] = ACTIONS(7170), + [anon_sym___const] = ACTIONS(7170), + [anon_sym___imag] = ACTIONS(7170), + [anon_sym___kindof] = ACTIONS(7170), + [anon_sym___nonnull] = ACTIONS(7170), + [anon_sym___nullable] = ACTIONS(7170), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7170), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7170), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7170), + [anon_sym___real] = ACTIONS(7170), + [anon_sym___strong] = ACTIONS(7170), + [anon_sym___unsafe_unretained] = ACTIONS(7170), + [anon_sym___unused] = ACTIONS(7170), + [anon_sym___weak] = ACTIONS(7170), + [anon_sym_alignas] = ACTIONS(7170), + [anon_sym__Alignas] = ACTIONS(7170), + [sym_primitive_type] = ACTIONS(7170), + [anon_sym_enum] = ACTIONS(7170), + [anon_sym_COLON] = ACTIONS(7172), + [anon_sym_struct] = ACTIONS(7170), + [anon_sym_union] = ACTIONS(7170), + [anon_sym_in] = ACTIONS(7170), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7170), + [anon_sym___typeof] = ACTIONS(7170), + [anon_sym_typeof] = ACTIONS(7170), + [anon_sym_BOOL] = ACTIONS(7170), + [anon_sym_IMP] = ACTIONS(7170), + [anon_sym_SEL] = ACTIONS(7170), + [anon_sym_Class] = ACTIONS(7170), + [anon_sym_id] = ACTIONS(7170), + [anon_sym_out] = ACTIONS(7170), + [anon_sym_inout] = ACTIONS(7170), + [anon_sym_bycopy] = ACTIONS(7170), + [anon_sym_byref] = ACTIONS(7170), + [anon_sym_oneway] = ACTIONS(7170), + }, + [3839] = { + [sym_attribute_specifier] = STATE(3851), + [sym_identifier] = ACTIONS(7236), + [anon_sym_COMMA] = ACTIONS(7238), + [anon_sym_RPAREN] = ACTIONS(7238), + [anon_sym_LPAREN2] = ACTIONS(7238), + [anon_sym_STAR] = ACTIONS(7238), + [anon_sym_CARET] = ACTIONS(7238), + [anon_sym_GT] = ACTIONS(7238), + [anon_sym_LT] = ACTIONS(7238), + [anon_sym___extension__] = ACTIONS(7236), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7236), + [anon_sym_LBRACK] = ACTIONS(7238), + [anon_sym___based] = ACTIONS(7236), + [anon_sym_LBRACE] = ACTIONS(7238), + [anon_sym_signed] = ACTIONS(7236), + [anon_sym_unsigned] = ACTIONS(7236), + [anon_sym_long] = ACTIONS(7236), + [anon_sym_short] = ACTIONS(7236), + [anon_sym_ATautoreleasepool] = ACTIONS(7238), + [anon_sym_const] = ACTIONS(7236), + [anon_sym_constexpr] = ACTIONS(7236), + [anon_sym_volatile] = ACTIONS(7236), + [anon_sym_restrict] = ACTIONS(7236), + [anon_sym___restrict__] = ACTIONS(7236), + [anon_sym__Atomic] = ACTIONS(7236), + [anon_sym__Noreturn] = ACTIONS(7236), + [anon_sym__Nonnull] = ACTIONS(7236), + [anon_sym_nullable] = ACTIONS(7236), + [anon_sym__Complex] = ACTIONS(7236), + [anon_sym__Nullable] = ACTIONS(7236), + [anon_sym__Nullable_result] = ACTIONS(7236), + [anon_sym__Null_unspecified] = ACTIONS(7236), + [anon_sym___autoreleasing] = ACTIONS(7236), + [anon_sym___block] = ACTIONS(7236), + [anon_sym___bridge] = ACTIONS(7236), + [anon_sym___bridge_retained] = ACTIONS(7236), + [anon_sym___bridge_transfer] = ACTIONS(7236), + [anon_sym___complex] = ACTIONS(7236), + [anon_sym___const] = ACTIONS(7236), + [anon_sym___imag] = ACTIONS(7236), + [anon_sym___kindof] = ACTIONS(7236), + [anon_sym___nonnull] = ACTIONS(7236), + [anon_sym___nullable] = ACTIONS(7236), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7236), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7236), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7236), + [anon_sym___real] = ACTIONS(7236), + [anon_sym___strong] = ACTIONS(7236), + [anon_sym___unsafe_unretained] = ACTIONS(7236), + [anon_sym___unused] = ACTIONS(7236), + [anon_sym___weak] = ACTIONS(7236), + [anon_sym_alignas] = ACTIONS(7236), + [anon_sym__Alignas] = ACTIONS(7236), + [sym_primitive_type] = ACTIONS(7236), + [anon_sym_enum] = ACTIONS(7236), + [anon_sym_COLON] = ACTIONS(7238), + [anon_sym_struct] = ACTIONS(7236), + [anon_sym_union] = ACTIONS(7236), + [anon_sym_in] = ACTIONS(7236), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7236), + [anon_sym___typeof] = ACTIONS(7236), + [anon_sym_typeof] = ACTIONS(7236), + [anon_sym_BOOL] = ACTIONS(7236), + [anon_sym_IMP] = ACTIONS(7236), + [anon_sym_SEL] = ACTIONS(7236), + [anon_sym_Class] = ACTIONS(7236), + [anon_sym_id] = ACTIONS(7236), + [anon_sym_out] = ACTIONS(7236), + [anon_sym_inout] = ACTIONS(7236), + [anon_sym_bycopy] = ACTIONS(7236), + [anon_sym_byref] = ACTIONS(7236), + [anon_sym_oneway] = ACTIONS(7236), + }, + [3840] = { + [sym_attribute_specifier] = STATE(3909), + [sym_identifier] = ACTIONS(7240), + [anon_sym_COMMA] = ACTIONS(7242), + [anon_sym_RPAREN] = ACTIONS(7242), + [anon_sym_LPAREN2] = ACTIONS(7242), + [anon_sym_STAR] = ACTIONS(7242), + [anon_sym_CARET] = ACTIONS(7242), + [anon_sym_GT] = ACTIONS(7242), + [anon_sym_LT] = ACTIONS(7242), + [anon_sym___extension__] = ACTIONS(7240), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7240), + [anon_sym_LBRACK] = ACTIONS(7242), + [anon_sym___based] = ACTIONS(7240), + [anon_sym_LBRACE] = ACTIONS(7242), + [anon_sym_signed] = ACTIONS(7240), + [anon_sym_unsigned] = ACTIONS(7240), + [anon_sym_long] = ACTIONS(7240), + [anon_sym_short] = ACTIONS(7240), + [anon_sym_ATautoreleasepool] = ACTIONS(7242), + [anon_sym_const] = ACTIONS(7240), + [anon_sym_constexpr] = ACTIONS(7240), + [anon_sym_volatile] = ACTIONS(7240), + [anon_sym_restrict] = ACTIONS(7240), + [anon_sym___restrict__] = ACTIONS(7240), + [anon_sym__Atomic] = ACTIONS(7240), + [anon_sym__Noreturn] = ACTIONS(7240), + [anon_sym__Nonnull] = ACTIONS(7240), + [anon_sym_nullable] = ACTIONS(7240), + [anon_sym__Complex] = ACTIONS(7240), + [anon_sym__Nullable] = ACTIONS(7240), + [anon_sym__Nullable_result] = ACTIONS(7240), + [anon_sym__Null_unspecified] = ACTIONS(7240), + [anon_sym___autoreleasing] = ACTIONS(7240), + [anon_sym___block] = ACTIONS(7240), + [anon_sym___bridge] = ACTIONS(7240), + [anon_sym___bridge_retained] = ACTIONS(7240), + [anon_sym___bridge_transfer] = ACTIONS(7240), + [anon_sym___complex] = ACTIONS(7240), + [anon_sym___const] = ACTIONS(7240), + [anon_sym___imag] = ACTIONS(7240), + [anon_sym___kindof] = ACTIONS(7240), + [anon_sym___nonnull] = ACTIONS(7240), + [anon_sym___nullable] = ACTIONS(7240), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7240), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7240), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7240), + [anon_sym___real] = ACTIONS(7240), + [anon_sym___strong] = ACTIONS(7240), + [anon_sym___unsafe_unretained] = ACTIONS(7240), + [anon_sym___unused] = ACTIONS(7240), + [anon_sym___weak] = ACTIONS(7240), + [anon_sym_alignas] = ACTIONS(7240), + [anon_sym__Alignas] = ACTIONS(7240), + [sym_primitive_type] = ACTIONS(7240), + [anon_sym_enum] = ACTIONS(7240), + [anon_sym_COLON] = ACTIONS(7242), + [anon_sym_struct] = ACTIONS(7240), + [anon_sym_union] = ACTIONS(7240), + [anon_sym_in] = ACTIONS(7240), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7240), + [anon_sym___typeof] = ACTIONS(7240), + [anon_sym_typeof] = ACTIONS(7240), + [anon_sym_BOOL] = ACTIONS(7240), + [anon_sym_IMP] = ACTIONS(7240), + [anon_sym_SEL] = ACTIONS(7240), + [anon_sym_Class] = ACTIONS(7240), + [anon_sym_id] = ACTIONS(7240), + [anon_sym_out] = ACTIONS(7240), + [anon_sym_inout] = ACTIONS(7240), + [anon_sym_bycopy] = ACTIONS(7240), + [anon_sym_byref] = ACTIONS(7240), + [anon_sym_oneway] = ACTIONS(7240), + }, + [3841] = { + [sym_attribute_specifier] = STATE(3874), + [sym_enumerator_list] = STATE(3997), + [sym_identifier] = ACTIONS(7700), + [anon_sym_COMMA] = ACTIONS(7702), + [anon_sym_RPAREN] = ACTIONS(7702), + [anon_sym_LPAREN2] = ACTIONS(7702), + [anon_sym_STAR] = ACTIONS(7702), + [anon_sym_CARET] = ACTIONS(7702), + [anon_sym_GT] = ACTIONS(7702), + [anon_sym_LT] = ACTIONS(7702), + [anon_sym___extension__] = ACTIONS(7700), + [anon_sym___attribute__] = ACTIONS(8932), + [anon_sym___attribute] = ACTIONS(8932), + [anon_sym_noreturn] = ACTIONS(7700), + [anon_sym_LBRACK] = ACTIONS(7702), + [anon_sym___based] = ACTIONS(7700), + [anon_sym_LBRACE] = ACTIONS(8913), + [anon_sym_signed] = ACTIONS(7700), + [anon_sym_unsigned] = ACTIONS(7700), + [anon_sym_long] = ACTIONS(7700), + [anon_sym_short] = ACTIONS(7700), + [anon_sym_const] = ACTIONS(7700), + [anon_sym_constexpr] = ACTIONS(7700), + [anon_sym_volatile] = ACTIONS(7700), + [anon_sym_restrict] = ACTIONS(7700), + [anon_sym___restrict__] = ACTIONS(7700), + [anon_sym__Atomic] = ACTIONS(7700), + [anon_sym__Noreturn] = ACTIONS(7700), + [anon_sym__Nonnull] = ACTIONS(7700), + [anon_sym_nullable] = ACTIONS(7700), + [anon_sym__Complex] = ACTIONS(7700), + [anon_sym__Nullable] = ACTIONS(7700), + [anon_sym__Nullable_result] = ACTIONS(7700), + [anon_sym__Null_unspecified] = ACTIONS(7700), + [anon_sym___autoreleasing] = ACTIONS(7700), + [anon_sym___block] = ACTIONS(7700), + [anon_sym___bridge] = ACTIONS(7700), + [anon_sym___bridge_retained] = ACTIONS(7700), + [anon_sym___bridge_transfer] = ACTIONS(7700), + [anon_sym___complex] = ACTIONS(7700), + [anon_sym___const] = ACTIONS(7700), + [anon_sym___imag] = ACTIONS(7700), + [anon_sym___kindof] = ACTIONS(7700), + [anon_sym___nonnull] = ACTIONS(7700), + [anon_sym___nullable] = ACTIONS(7700), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7700), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7700), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7700), + [anon_sym___real] = ACTIONS(7700), + [anon_sym___strong] = ACTIONS(7700), + [anon_sym___unsafe_unretained] = ACTIONS(7700), + [anon_sym___unused] = ACTIONS(7700), + [anon_sym___weak] = ACTIONS(7700), + [anon_sym_alignas] = ACTIONS(7700), + [anon_sym__Alignas] = ACTIONS(7700), + [sym_primitive_type] = ACTIONS(7700), + [anon_sym_enum] = ACTIONS(7700), + [anon_sym_COLON] = ACTIONS(8935), + [anon_sym_struct] = ACTIONS(7700), + [anon_sym_union] = ACTIONS(7700), + [anon_sym_in] = ACTIONS(7700), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7700), + [anon_sym___typeof] = ACTIONS(7700), + [anon_sym_typeof] = ACTIONS(7700), + [anon_sym_BOOL] = ACTIONS(7700), + [anon_sym_IMP] = ACTIONS(7700), + [anon_sym_SEL] = ACTIONS(7700), + [anon_sym_Class] = ACTIONS(7700), + [anon_sym_id] = ACTIONS(7700), + [anon_sym_out] = ACTIONS(7700), + [anon_sym_inout] = ACTIONS(7700), + [anon_sym_bycopy] = ACTIONS(7700), + [anon_sym_byref] = ACTIONS(7700), + [anon_sym_oneway] = ACTIONS(7700), + }, + [3842] = { + [sym_attribute_specifier] = STATE(3967), + [sym_identifier] = ACTIONS(7216), + [anon_sym_COMMA] = ACTIONS(7218), + [anon_sym_RPAREN] = ACTIONS(7218), + [anon_sym_LPAREN2] = ACTIONS(7218), + [anon_sym_STAR] = ACTIONS(7218), + [anon_sym_CARET] = ACTIONS(7218), + [anon_sym_GT] = ACTIONS(7218), + [anon_sym_LT] = ACTIONS(7218), + [anon_sym___extension__] = ACTIONS(7216), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7216), + [anon_sym_LBRACK] = ACTIONS(7218), + [anon_sym___based] = ACTIONS(7216), + [anon_sym_LBRACE] = ACTIONS(7218), + [anon_sym_signed] = ACTIONS(7216), + [anon_sym_unsigned] = ACTIONS(7216), + [anon_sym_long] = ACTIONS(7216), + [anon_sym_short] = ACTIONS(7216), + [anon_sym_ATautoreleasepool] = ACTIONS(7218), + [anon_sym_const] = ACTIONS(7216), + [anon_sym_constexpr] = ACTIONS(7216), + [anon_sym_volatile] = ACTIONS(7216), + [anon_sym_restrict] = ACTIONS(7216), + [anon_sym___restrict__] = ACTIONS(7216), + [anon_sym__Atomic] = ACTIONS(7216), + [anon_sym__Noreturn] = ACTIONS(7216), + [anon_sym__Nonnull] = ACTIONS(7216), + [anon_sym_nullable] = ACTIONS(7216), + [anon_sym__Complex] = ACTIONS(7216), + [anon_sym__Nullable] = ACTIONS(7216), + [anon_sym__Nullable_result] = ACTIONS(7216), + [anon_sym__Null_unspecified] = ACTIONS(7216), + [anon_sym___autoreleasing] = ACTIONS(7216), + [anon_sym___block] = ACTIONS(7216), + [anon_sym___bridge] = ACTIONS(7216), + [anon_sym___bridge_retained] = ACTIONS(7216), + [anon_sym___bridge_transfer] = ACTIONS(7216), + [anon_sym___complex] = ACTIONS(7216), + [anon_sym___const] = ACTIONS(7216), + [anon_sym___imag] = ACTIONS(7216), + [anon_sym___kindof] = ACTIONS(7216), + [anon_sym___nonnull] = ACTIONS(7216), + [anon_sym___nullable] = ACTIONS(7216), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7216), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7216), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7216), + [anon_sym___real] = ACTIONS(7216), + [anon_sym___strong] = ACTIONS(7216), + [anon_sym___unsafe_unretained] = ACTIONS(7216), + [anon_sym___unused] = ACTIONS(7216), + [anon_sym___weak] = ACTIONS(7216), + [anon_sym_alignas] = ACTIONS(7216), + [anon_sym__Alignas] = ACTIONS(7216), + [sym_primitive_type] = ACTIONS(7216), + [anon_sym_enum] = ACTIONS(7216), + [anon_sym_COLON] = ACTIONS(7218), + [anon_sym_struct] = ACTIONS(7216), + [anon_sym_union] = ACTIONS(7216), + [anon_sym_in] = ACTIONS(7216), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7216), + [anon_sym___typeof] = ACTIONS(7216), + [anon_sym_typeof] = ACTIONS(7216), + [anon_sym_BOOL] = ACTIONS(7216), + [anon_sym_IMP] = ACTIONS(7216), + [anon_sym_SEL] = ACTIONS(7216), + [anon_sym_Class] = ACTIONS(7216), + [anon_sym_id] = ACTIONS(7216), + [anon_sym_out] = ACTIONS(7216), + [anon_sym_inout] = ACTIONS(7216), + [anon_sym_bycopy] = ACTIONS(7216), + [anon_sym_byref] = ACTIONS(7216), + [anon_sym_oneway] = ACTIONS(7216), + }, + [3843] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7350), + [anon_sym_COMMA] = ACTIONS(7352), + [anon_sym_RPAREN] = ACTIONS(7352), + [anon_sym_LPAREN2] = ACTIONS(7352), + [anon_sym_STAR] = ACTIONS(7352), + [anon_sym_CARET] = ACTIONS(7352), + [anon_sym_GT] = ACTIONS(7352), + [anon_sym_LT] = ACTIONS(7352), + [anon_sym___extension__] = ACTIONS(7350), + [anon_sym___attribute__] = ACTIONS(7350), + [anon_sym___attribute] = ACTIONS(7350), + [anon_sym_noreturn] = ACTIONS(7350), + [anon_sym_LBRACK] = ACTIONS(7352), + [anon_sym___based] = ACTIONS(7350), + [anon_sym_LBRACE] = ACTIONS(7352), + [anon_sym_signed] = ACTIONS(8937), + [anon_sym_unsigned] = ACTIONS(8937), + [anon_sym_long] = ACTIONS(8937), + [anon_sym_short] = ACTIONS(8937), + [anon_sym_ATautoreleasepool] = ACTIONS(7352), + [anon_sym_const] = ACTIONS(7350), + [anon_sym_constexpr] = ACTIONS(7350), + [anon_sym_volatile] = ACTIONS(7350), + [anon_sym_restrict] = ACTIONS(7350), + [anon_sym___restrict__] = ACTIONS(7350), + [anon_sym__Atomic] = ACTIONS(7350), + [anon_sym__Noreturn] = ACTIONS(7350), + [anon_sym__Nonnull] = ACTIONS(7350), + [anon_sym_nullable] = ACTIONS(7350), + [anon_sym__Complex] = ACTIONS(7350), + [anon_sym__Nullable] = ACTIONS(7350), + [anon_sym__Nullable_result] = ACTIONS(7350), + [anon_sym__Null_unspecified] = ACTIONS(7350), + [anon_sym___autoreleasing] = ACTIONS(7350), + [anon_sym___block] = ACTIONS(7350), + [anon_sym___bridge] = ACTIONS(7350), + [anon_sym___bridge_retained] = ACTIONS(7350), + [anon_sym___bridge_transfer] = ACTIONS(7350), + [anon_sym___complex] = ACTIONS(7350), + [anon_sym___const] = ACTIONS(7350), + [anon_sym___imag] = ACTIONS(7350), + [anon_sym___kindof] = ACTIONS(7350), + [anon_sym___nonnull] = ACTIONS(7350), + [anon_sym___nullable] = ACTIONS(7350), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7350), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7350), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7350), + [anon_sym___real] = ACTIONS(7350), + [anon_sym___strong] = ACTIONS(7350), + [anon_sym___unsafe_unretained] = ACTIONS(7350), + [anon_sym___unused] = ACTIONS(7350), + [anon_sym___weak] = ACTIONS(7350), + [anon_sym_alignas] = ACTIONS(7350), + [anon_sym__Alignas] = ACTIONS(7350), + [sym_primitive_type] = ACTIONS(7350), + [anon_sym_enum] = ACTIONS(7350), + [anon_sym_COLON] = ACTIONS(7352), + [anon_sym_struct] = ACTIONS(7350), + [anon_sym_union] = ACTIONS(7350), + [anon_sym_in] = ACTIONS(7350), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7350), + [anon_sym___typeof] = ACTIONS(7350), + [anon_sym_typeof] = ACTIONS(7350), + [anon_sym_BOOL] = ACTIONS(7350), + [anon_sym_IMP] = ACTIONS(7350), + [anon_sym_SEL] = ACTIONS(7350), + [anon_sym_Class] = ACTIONS(7350), + [anon_sym_id] = ACTIONS(7350), + [anon_sym_out] = ACTIONS(7350), + [anon_sym_inout] = ACTIONS(7350), + [anon_sym_bycopy] = ACTIONS(7350), + [anon_sym_byref] = ACTIONS(7350), + [anon_sym_oneway] = ACTIONS(7350), + }, + [3844] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7380), + [anon_sym_COMMA] = ACTIONS(7382), + [anon_sym_RPAREN] = ACTIONS(7382), + [anon_sym_LPAREN2] = ACTIONS(7382), + [anon_sym_STAR] = ACTIONS(7382), + [anon_sym_CARET] = ACTIONS(7382), + [anon_sym_GT] = ACTIONS(7382), + [anon_sym_LT] = ACTIONS(7382), + [anon_sym___extension__] = ACTIONS(7380), + [anon_sym___attribute__] = ACTIONS(7380), + [anon_sym___attribute] = ACTIONS(7380), + [anon_sym_noreturn] = ACTIONS(7380), + [anon_sym_LBRACK] = ACTIONS(7382), + [anon_sym___based] = ACTIONS(7380), + [anon_sym_LBRACE] = ACTIONS(7382), + [anon_sym_signed] = ACTIONS(8940), + [anon_sym_unsigned] = ACTIONS(8940), + [anon_sym_long] = ACTIONS(8940), + [anon_sym_short] = ACTIONS(8940), + [anon_sym_ATautoreleasepool] = ACTIONS(7382), + [anon_sym_const] = ACTIONS(7380), + [anon_sym_constexpr] = ACTIONS(7380), + [anon_sym_volatile] = ACTIONS(7380), + [anon_sym_restrict] = ACTIONS(7380), + [anon_sym___restrict__] = ACTIONS(7380), + [anon_sym__Atomic] = ACTIONS(7380), + [anon_sym__Noreturn] = ACTIONS(7380), + [anon_sym__Nonnull] = ACTIONS(7380), + [anon_sym_nullable] = ACTIONS(7380), + [anon_sym__Complex] = ACTIONS(7380), + [anon_sym__Nullable] = ACTIONS(7380), + [anon_sym__Nullable_result] = ACTIONS(7380), + [anon_sym__Null_unspecified] = ACTIONS(7380), + [anon_sym___autoreleasing] = ACTIONS(7380), + [anon_sym___block] = ACTIONS(7380), + [anon_sym___bridge] = ACTIONS(7380), + [anon_sym___bridge_retained] = ACTIONS(7380), + [anon_sym___bridge_transfer] = ACTIONS(7380), + [anon_sym___complex] = ACTIONS(7380), + [anon_sym___const] = ACTIONS(7380), + [anon_sym___imag] = ACTIONS(7380), + [anon_sym___kindof] = ACTIONS(7380), + [anon_sym___nonnull] = ACTIONS(7380), + [anon_sym___nullable] = ACTIONS(7380), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7380), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7380), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7380), + [anon_sym___real] = ACTIONS(7380), + [anon_sym___strong] = ACTIONS(7380), + [anon_sym___unsafe_unretained] = ACTIONS(7380), + [anon_sym___unused] = ACTIONS(7380), + [anon_sym___weak] = ACTIONS(7380), + [anon_sym_alignas] = ACTIONS(7380), + [anon_sym__Alignas] = ACTIONS(7380), + [sym_primitive_type] = ACTIONS(7380), + [anon_sym_enum] = ACTIONS(7380), + [anon_sym_COLON] = ACTIONS(7382), + [anon_sym_struct] = ACTIONS(7380), + [anon_sym_union] = ACTIONS(7380), + [anon_sym_in] = ACTIONS(7380), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7380), + [anon_sym___typeof] = ACTIONS(7380), + [anon_sym_typeof] = ACTIONS(7380), + [anon_sym_BOOL] = ACTIONS(7380), + [anon_sym_IMP] = ACTIONS(7380), + [anon_sym_SEL] = ACTIONS(7380), + [anon_sym_Class] = ACTIONS(7380), + [anon_sym_id] = ACTIONS(7380), + [anon_sym_out] = ACTIONS(7380), + [anon_sym_inout] = ACTIONS(7380), + [anon_sym_bycopy] = ACTIONS(7380), + [anon_sym_byref] = ACTIONS(7380), + [anon_sym_oneway] = ACTIONS(7380), + }, + [3845] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3849), + [sym_identifier] = ACTIONS(7420), + [anon_sym_COMMA] = ACTIONS(7422), + [anon_sym_RPAREN] = ACTIONS(7422), + [anon_sym_LPAREN2] = ACTIONS(7422), + [anon_sym_STAR] = ACTIONS(7422), + [anon_sym_CARET] = ACTIONS(7422), + [anon_sym_GT] = ACTIONS(7422), + [anon_sym_LT] = ACTIONS(7422), + [anon_sym___extension__] = ACTIONS(7420), + [anon_sym___attribute__] = ACTIONS(7420), + [anon_sym___attribute] = ACTIONS(7420), + [anon_sym_noreturn] = ACTIONS(7420), + [anon_sym_LBRACK] = ACTIONS(7422), + [anon_sym___based] = ACTIONS(7420), + [anon_sym_LBRACE] = ACTIONS(7422), + [anon_sym_signed] = ACTIONS(8943), + [anon_sym_unsigned] = ACTIONS(8943), + [anon_sym_long] = ACTIONS(8943), + [anon_sym_short] = ACTIONS(8943), + [anon_sym_ATautoreleasepool] = ACTIONS(7422), + [anon_sym_const] = ACTIONS(7420), + [anon_sym_constexpr] = ACTIONS(7420), + [anon_sym_volatile] = ACTIONS(7420), + [anon_sym_restrict] = ACTIONS(7420), + [anon_sym___restrict__] = ACTIONS(7420), + [anon_sym__Atomic] = ACTIONS(7420), + [anon_sym__Noreturn] = ACTIONS(7420), + [anon_sym__Nonnull] = ACTIONS(7420), + [anon_sym_nullable] = ACTIONS(7420), + [anon_sym__Complex] = ACTIONS(7420), + [anon_sym__Nullable] = ACTIONS(7420), + [anon_sym__Nullable_result] = ACTIONS(7420), + [anon_sym__Null_unspecified] = ACTIONS(7420), + [anon_sym___autoreleasing] = ACTIONS(7420), + [anon_sym___block] = ACTIONS(7420), + [anon_sym___bridge] = ACTIONS(7420), + [anon_sym___bridge_retained] = ACTIONS(7420), + [anon_sym___bridge_transfer] = ACTIONS(7420), + [anon_sym___complex] = ACTIONS(7420), + [anon_sym___const] = ACTIONS(7420), + [anon_sym___imag] = ACTIONS(7420), + [anon_sym___kindof] = ACTIONS(7420), + [anon_sym___nonnull] = ACTIONS(7420), + [anon_sym___nullable] = ACTIONS(7420), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7420), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7420), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7420), + [anon_sym___real] = ACTIONS(7420), + [anon_sym___strong] = ACTIONS(7420), + [anon_sym___unsafe_unretained] = ACTIONS(7420), + [anon_sym___unused] = ACTIONS(7420), + [anon_sym___weak] = ACTIONS(7420), + [anon_sym_alignas] = ACTIONS(7420), + [anon_sym__Alignas] = ACTIONS(7420), + [sym_primitive_type] = ACTIONS(7420), + [anon_sym_enum] = ACTIONS(7420), + [anon_sym_COLON] = ACTIONS(7422), + [anon_sym_struct] = ACTIONS(7420), + [anon_sym_union] = ACTIONS(7420), + [anon_sym_in] = ACTIONS(7420), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7420), + [anon_sym___typeof] = ACTIONS(7420), + [anon_sym_typeof] = ACTIONS(7420), + [anon_sym_BOOL] = ACTIONS(7420), + [anon_sym_IMP] = ACTIONS(7420), + [anon_sym_SEL] = ACTIONS(7420), + [anon_sym_Class] = ACTIONS(7420), + [anon_sym_id] = ACTIONS(7420), + [anon_sym_out] = ACTIONS(7420), + [anon_sym_inout] = ACTIONS(7420), + [anon_sym_bycopy] = ACTIONS(7420), + [anon_sym_byref] = ACTIONS(7420), + [anon_sym_oneway] = ACTIONS(7420), + }, + [3846] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3829), + [sym_identifier] = ACTIONS(7426), + [anon_sym_COMMA] = ACTIONS(7428), + [anon_sym_RPAREN] = ACTIONS(7428), + [anon_sym_LPAREN2] = ACTIONS(7428), + [anon_sym_STAR] = ACTIONS(7428), + [anon_sym_CARET] = ACTIONS(7428), + [anon_sym_GT] = ACTIONS(7428), + [anon_sym_LT] = ACTIONS(7428), + [anon_sym___extension__] = ACTIONS(7426), + [anon_sym___attribute__] = ACTIONS(7426), + [anon_sym___attribute] = ACTIONS(7426), + [anon_sym_noreturn] = ACTIONS(7426), + [anon_sym_LBRACK] = ACTIONS(7428), + [anon_sym___based] = ACTIONS(7426), + [anon_sym_LBRACE] = ACTIONS(7428), + [anon_sym_signed] = ACTIONS(8946), + [anon_sym_unsigned] = ACTIONS(8946), + [anon_sym_long] = ACTIONS(8946), + [anon_sym_short] = ACTIONS(8946), + [anon_sym_ATautoreleasepool] = ACTIONS(7428), + [anon_sym_const] = ACTIONS(7426), + [anon_sym_constexpr] = ACTIONS(7426), + [anon_sym_volatile] = ACTIONS(7426), + [anon_sym_restrict] = ACTIONS(7426), + [anon_sym___restrict__] = ACTIONS(7426), + [anon_sym__Atomic] = ACTIONS(7426), + [anon_sym__Noreturn] = ACTIONS(7426), + [anon_sym__Nonnull] = ACTIONS(7426), + [anon_sym_nullable] = ACTIONS(7426), + [anon_sym__Complex] = ACTIONS(7426), + [anon_sym__Nullable] = ACTIONS(7426), + [anon_sym__Nullable_result] = ACTIONS(7426), + [anon_sym__Null_unspecified] = ACTIONS(7426), + [anon_sym___autoreleasing] = ACTIONS(7426), + [anon_sym___block] = ACTIONS(7426), + [anon_sym___bridge] = ACTIONS(7426), + [anon_sym___bridge_retained] = ACTIONS(7426), + [anon_sym___bridge_transfer] = ACTIONS(7426), + [anon_sym___complex] = ACTIONS(7426), + [anon_sym___const] = ACTIONS(7426), + [anon_sym___imag] = ACTIONS(7426), + [anon_sym___kindof] = ACTIONS(7426), + [anon_sym___nonnull] = ACTIONS(7426), + [anon_sym___nullable] = ACTIONS(7426), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7426), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7426), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7426), + [anon_sym___real] = ACTIONS(7426), + [anon_sym___strong] = ACTIONS(7426), + [anon_sym___unsafe_unretained] = ACTIONS(7426), + [anon_sym___unused] = ACTIONS(7426), + [anon_sym___weak] = ACTIONS(7426), + [anon_sym_alignas] = ACTIONS(7426), + [anon_sym__Alignas] = ACTIONS(7426), + [sym_primitive_type] = ACTIONS(7426), + [anon_sym_enum] = ACTIONS(7426), + [anon_sym_COLON] = ACTIONS(7428), + [anon_sym_struct] = ACTIONS(7426), + [anon_sym_union] = ACTIONS(7426), + [anon_sym_in] = ACTIONS(7426), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7426), + [anon_sym___typeof] = ACTIONS(7426), + [anon_sym_typeof] = ACTIONS(7426), + [anon_sym_BOOL] = ACTIONS(7426), + [anon_sym_IMP] = ACTIONS(7426), + [anon_sym_SEL] = ACTIONS(7426), + [anon_sym_Class] = ACTIONS(7426), + [anon_sym_id] = ACTIONS(7426), + [anon_sym_out] = ACTIONS(7426), + [anon_sym_inout] = ACTIONS(7426), + [anon_sym_bycopy] = ACTIONS(7426), + [anon_sym_byref] = ACTIONS(7426), + [anon_sym_oneway] = ACTIONS(7426), + }, + [3847] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3822), + [sym_identifier] = ACTIONS(5034), + [anon_sym_COMMA] = ACTIONS(5030), + [anon_sym_RPAREN] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5030), + [anon_sym_LT] = ACTIONS(5030), + [anon_sym___extension__] = ACTIONS(5034), + [anon_sym___attribute__] = ACTIONS(5034), + [anon_sym___attribute] = ACTIONS(5034), + [anon_sym_noreturn] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym___based] = ACTIONS(5034), + [anon_sym_LBRACE] = ACTIONS(5030), + [anon_sym_signed] = ACTIONS(8949), + [anon_sym_unsigned] = ACTIONS(8949), + [anon_sym_long] = ACTIONS(8949), + [anon_sym_short] = ACTIONS(8949), + [anon_sym_ATautoreleasepool] = ACTIONS(5030), + [anon_sym_const] = ACTIONS(5034), + [anon_sym_constexpr] = ACTIONS(5034), + [anon_sym_volatile] = ACTIONS(5034), + [anon_sym_restrict] = ACTIONS(5034), + [anon_sym___restrict__] = ACTIONS(5034), + [anon_sym__Atomic] = ACTIONS(5034), + [anon_sym__Noreturn] = ACTIONS(5034), + [anon_sym__Nonnull] = ACTIONS(5034), + [anon_sym_nullable] = ACTIONS(5034), + [anon_sym__Complex] = ACTIONS(5034), + [anon_sym__Nullable] = ACTIONS(5034), + [anon_sym__Nullable_result] = ACTIONS(5034), + [anon_sym__Null_unspecified] = ACTIONS(5034), + [anon_sym___autoreleasing] = ACTIONS(5034), + [anon_sym___block] = ACTIONS(5034), + [anon_sym___bridge] = ACTIONS(5034), + [anon_sym___bridge_retained] = ACTIONS(5034), + [anon_sym___bridge_transfer] = ACTIONS(5034), + [anon_sym___complex] = ACTIONS(5034), + [anon_sym___const] = ACTIONS(5034), + [anon_sym___imag] = ACTIONS(5034), + [anon_sym___kindof] = ACTIONS(5034), + [anon_sym___nonnull] = ACTIONS(5034), + [anon_sym___nullable] = ACTIONS(5034), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5034), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5034), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5034), + [anon_sym___real] = ACTIONS(5034), + [anon_sym___strong] = ACTIONS(5034), + [anon_sym___unsafe_unretained] = ACTIONS(5034), + [anon_sym___unused] = ACTIONS(5034), + [anon_sym___weak] = ACTIONS(5034), + [anon_sym_alignas] = ACTIONS(5034), + [anon_sym__Alignas] = ACTIONS(5034), + [sym_primitive_type] = ACTIONS(5034), + [anon_sym_enum] = ACTIONS(5034), + [anon_sym_COLON] = ACTIONS(5030), + [anon_sym_struct] = ACTIONS(5034), + [anon_sym_union] = ACTIONS(5034), + [anon_sym_in] = ACTIONS(5034), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5034), + [anon_sym___typeof] = ACTIONS(5034), + [anon_sym_typeof] = ACTIONS(5034), + [anon_sym_BOOL] = ACTIONS(5034), + [anon_sym_IMP] = ACTIONS(5034), + [anon_sym_SEL] = ACTIONS(5034), + [anon_sym_Class] = ACTIONS(5034), + [anon_sym_id] = ACTIONS(5034), + [anon_sym_out] = ACTIONS(5034), + [anon_sym_inout] = ACTIONS(5034), + [anon_sym_bycopy] = ACTIONS(5034), + [anon_sym_byref] = ACTIONS(5034), + [anon_sym_oneway] = ACTIONS(5034), + }, + [3848] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7432), + [anon_sym_COMMA] = ACTIONS(7434), + [anon_sym_RPAREN] = ACTIONS(7434), + [anon_sym_LPAREN2] = ACTIONS(7434), + [anon_sym_STAR] = ACTIONS(7434), + [anon_sym_CARET] = ACTIONS(7434), + [anon_sym_GT] = ACTIONS(7434), + [anon_sym_LT] = ACTIONS(7434), + [anon_sym___extension__] = ACTIONS(7432), + [anon_sym___attribute__] = ACTIONS(7432), + [anon_sym___attribute] = ACTIONS(7432), + [anon_sym_noreturn] = ACTIONS(7432), + [anon_sym_LBRACK] = ACTIONS(7434), + [anon_sym___based] = ACTIONS(7432), + [anon_sym_LBRACE] = ACTIONS(7434), + [anon_sym_signed] = ACTIONS(8952), + [anon_sym_unsigned] = ACTIONS(8952), + [anon_sym_long] = ACTIONS(8952), + [anon_sym_short] = ACTIONS(8952), + [anon_sym_ATautoreleasepool] = ACTIONS(7434), + [anon_sym_const] = ACTIONS(7432), + [anon_sym_constexpr] = ACTIONS(7432), + [anon_sym_volatile] = ACTIONS(7432), + [anon_sym_restrict] = ACTIONS(7432), + [anon_sym___restrict__] = ACTIONS(7432), + [anon_sym__Atomic] = ACTIONS(7432), + [anon_sym__Noreturn] = ACTIONS(7432), + [anon_sym__Nonnull] = ACTIONS(7432), + [anon_sym_nullable] = ACTIONS(7432), + [anon_sym__Complex] = ACTIONS(7432), + [anon_sym__Nullable] = ACTIONS(7432), + [anon_sym__Nullable_result] = ACTIONS(7432), + [anon_sym__Null_unspecified] = ACTIONS(7432), + [anon_sym___autoreleasing] = ACTIONS(7432), + [anon_sym___block] = ACTIONS(7432), + [anon_sym___bridge] = ACTIONS(7432), + [anon_sym___bridge_retained] = ACTIONS(7432), + [anon_sym___bridge_transfer] = ACTIONS(7432), + [anon_sym___complex] = ACTIONS(7432), + [anon_sym___const] = ACTIONS(7432), + [anon_sym___imag] = ACTIONS(7432), + [anon_sym___kindof] = ACTIONS(7432), + [anon_sym___nonnull] = ACTIONS(7432), + [anon_sym___nullable] = ACTIONS(7432), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7432), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7432), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7432), + [anon_sym___real] = ACTIONS(7432), + [anon_sym___strong] = ACTIONS(7432), + [anon_sym___unsafe_unretained] = ACTIONS(7432), + [anon_sym___unused] = ACTIONS(7432), + [anon_sym___weak] = ACTIONS(7432), + [anon_sym_alignas] = ACTIONS(7432), + [anon_sym__Alignas] = ACTIONS(7432), + [sym_primitive_type] = ACTIONS(7432), + [anon_sym_enum] = ACTIONS(7432), + [anon_sym_COLON] = ACTIONS(7434), + [anon_sym_struct] = ACTIONS(7432), + [anon_sym_union] = ACTIONS(7432), + [anon_sym_in] = ACTIONS(7432), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7432), + [anon_sym___typeof] = ACTIONS(7432), + [anon_sym_typeof] = ACTIONS(7432), + [anon_sym_BOOL] = ACTIONS(7432), + [anon_sym_IMP] = ACTIONS(7432), + [anon_sym_SEL] = ACTIONS(7432), + [anon_sym_Class] = ACTIONS(7432), + [anon_sym_id] = ACTIONS(7432), + [anon_sym_out] = ACTIONS(7432), + [anon_sym_inout] = ACTIONS(7432), + [anon_sym_bycopy] = ACTIONS(7432), + [anon_sym_byref] = ACTIONS(7432), + [anon_sym_oneway] = ACTIONS(7432), + }, + [3849] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7338), + [anon_sym_COMMA] = ACTIONS(7340), + [anon_sym_RPAREN] = ACTIONS(7340), + [anon_sym_LPAREN2] = ACTIONS(7340), + [anon_sym_STAR] = ACTIONS(7340), + [anon_sym_CARET] = ACTIONS(7340), + [anon_sym_GT] = ACTIONS(7340), + [anon_sym_LT] = ACTIONS(7340), + [anon_sym___extension__] = ACTIONS(7338), + [anon_sym___attribute__] = ACTIONS(7338), + [anon_sym___attribute] = ACTIONS(7338), + [anon_sym_noreturn] = ACTIONS(7338), + [anon_sym_LBRACK] = ACTIONS(7340), + [anon_sym___based] = ACTIONS(7338), + [anon_sym_LBRACE] = ACTIONS(7340), + [anon_sym_signed] = ACTIONS(8955), + [anon_sym_unsigned] = ACTIONS(8955), + [anon_sym_long] = ACTIONS(8955), + [anon_sym_short] = ACTIONS(8955), + [anon_sym_ATautoreleasepool] = ACTIONS(7340), + [anon_sym_const] = ACTIONS(7338), + [anon_sym_constexpr] = ACTIONS(7338), + [anon_sym_volatile] = ACTIONS(7338), + [anon_sym_restrict] = ACTIONS(7338), + [anon_sym___restrict__] = ACTIONS(7338), + [anon_sym__Atomic] = ACTIONS(7338), + [anon_sym__Noreturn] = ACTIONS(7338), + [anon_sym__Nonnull] = ACTIONS(7338), + [anon_sym_nullable] = ACTIONS(7338), + [anon_sym__Complex] = ACTIONS(7338), + [anon_sym__Nullable] = ACTIONS(7338), + [anon_sym__Nullable_result] = ACTIONS(7338), + [anon_sym__Null_unspecified] = ACTIONS(7338), + [anon_sym___autoreleasing] = ACTIONS(7338), + [anon_sym___block] = ACTIONS(7338), + [anon_sym___bridge] = ACTIONS(7338), + [anon_sym___bridge_retained] = ACTIONS(7338), + [anon_sym___bridge_transfer] = ACTIONS(7338), + [anon_sym___complex] = ACTIONS(7338), + [anon_sym___const] = ACTIONS(7338), + [anon_sym___imag] = ACTIONS(7338), + [anon_sym___kindof] = ACTIONS(7338), + [anon_sym___nonnull] = ACTIONS(7338), + [anon_sym___nullable] = ACTIONS(7338), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7338), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7338), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7338), + [anon_sym___real] = ACTIONS(7338), + [anon_sym___strong] = ACTIONS(7338), + [anon_sym___unsafe_unretained] = ACTIONS(7338), + [anon_sym___unused] = ACTIONS(7338), + [anon_sym___weak] = ACTIONS(7338), + [anon_sym_alignas] = ACTIONS(7338), + [anon_sym__Alignas] = ACTIONS(7338), + [sym_primitive_type] = ACTIONS(7338), + [anon_sym_enum] = ACTIONS(7338), + [anon_sym_COLON] = ACTIONS(7340), + [anon_sym_struct] = ACTIONS(7338), + [anon_sym_union] = ACTIONS(7338), + [anon_sym_in] = ACTIONS(7338), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7338), + [anon_sym___typeof] = ACTIONS(7338), + [anon_sym_typeof] = ACTIONS(7338), + [anon_sym_BOOL] = ACTIONS(7338), + [anon_sym_IMP] = ACTIONS(7338), + [anon_sym_SEL] = ACTIONS(7338), + [anon_sym_Class] = ACTIONS(7338), + [anon_sym_id] = ACTIONS(7338), + [anon_sym_out] = ACTIONS(7338), + [anon_sym_inout] = ACTIONS(7338), + [anon_sym_bycopy] = ACTIONS(7338), + [anon_sym_byref] = ACTIONS(7338), + [anon_sym_oneway] = ACTIONS(7338), + }, + [3850] = { + [sym_parameter_list] = STATE(3790), + [sym_identifier] = ACTIONS(6831), + [anon_sym_COMMA] = ACTIONS(6833), + [anon_sym_RPAREN] = ACTIONS(6833), + [anon_sym_LPAREN2] = ACTIONS(8958), + [anon_sym_STAR] = ACTIONS(6833), + [anon_sym_CARET] = ACTIONS(6833), + [anon_sym_GT] = ACTIONS(6833), + [anon_sym_LT] = ACTIONS(6833), + [anon_sym___extension__] = ACTIONS(6831), + [anon_sym___attribute__] = ACTIONS(6831), + [anon_sym___attribute] = ACTIONS(6831), + [anon_sym_noreturn] = ACTIONS(6831), + [anon_sym_LBRACK] = ACTIONS(8960), + [anon_sym___based] = ACTIONS(6831), + [anon_sym_LBRACE] = ACTIONS(6833), + [anon_sym_signed] = ACTIONS(6831), + [anon_sym_unsigned] = ACTIONS(6831), + [anon_sym_long] = ACTIONS(6831), + [anon_sym_short] = ACTIONS(6831), + [anon_sym_ATautoreleasepool] = ACTIONS(6833), + [anon_sym_const] = ACTIONS(6831), + [anon_sym_constexpr] = ACTIONS(6831), + [anon_sym_volatile] = ACTIONS(6831), + [anon_sym_restrict] = ACTIONS(6831), + [anon_sym___restrict__] = ACTIONS(6831), + [anon_sym__Atomic] = ACTIONS(6831), + [anon_sym__Noreturn] = ACTIONS(6831), + [anon_sym__Nonnull] = ACTIONS(6831), + [anon_sym_nullable] = ACTIONS(6831), + [anon_sym__Complex] = ACTIONS(6831), + [anon_sym__Nullable] = ACTIONS(6831), + [anon_sym__Nullable_result] = ACTIONS(6831), + [anon_sym__Null_unspecified] = ACTIONS(6831), + [anon_sym___autoreleasing] = ACTIONS(6831), + [anon_sym___block] = ACTIONS(6831), + [anon_sym___bridge] = ACTIONS(6831), + [anon_sym___bridge_retained] = ACTIONS(6831), + [anon_sym___bridge_transfer] = ACTIONS(6831), + [anon_sym___complex] = ACTIONS(6831), + [anon_sym___const] = ACTIONS(6831), + [anon_sym___imag] = ACTIONS(6831), + [anon_sym___kindof] = ACTIONS(6831), + [anon_sym___nonnull] = ACTIONS(6831), + [anon_sym___nullable] = ACTIONS(6831), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6831), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6831), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6831), + [anon_sym___real] = ACTIONS(6831), + [anon_sym___strong] = ACTIONS(6831), + [anon_sym___unsafe_unretained] = ACTIONS(6831), + [anon_sym___unused] = ACTIONS(6831), + [anon_sym___weak] = ACTIONS(6831), + [anon_sym_alignas] = ACTIONS(6831), + [anon_sym__Alignas] = ACTIONS(6831), + [sym_primitive_type] = ACTIONS(6831), + [anon_sym_enum] = ACTIONS(6831), + [anon_sym_struct] = ACTIONS(6831), + [anon_sym_union] = ACTIONS(6831), + [anon_sym_in] = ACTIONS(6831), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6831), + [anon_sym___typeof] = ACTIONS(6831), + [anon_sym_typeof] = ACTIONS(6831), + [anon_sym_BOOL] = ACTIONS(6831), + [anon_sym_IMP] = ACTIONS(6831), + [anon_sym_SEL] = ACTIONS(6831), + [anon_sym_Class] = ACTIONS(6831), + [anon_sym_id] = ACTIONS(6831), + [anon_sym_out] = ACTIONS(6831), + [anon_sym_inout] = ACTIONS(6831), + [anon_sym_bycopy] = ACTIONS(6831), + [anon_sym_byref] = ACTIONS(6831), + [anon_sym_oneway] = ACTIONS(6831), + }, + [3851] = { + [sym_identifier] = ACTIONS(7496), + [anon_sym_COMMA] = ACTIONS(7498), + [anon_sym_RPAREN] = ACTIONS(7498), + [anon_sym_LPAREN2] = ACTIONS(7498), + [anon_sym_STAR] = ACTIONS(7498), + [anon_sym_CARET] = ACTIONS(7498), + [anon_sym_GT] = ACTIONS(7498), + [anon_sym_LT] = ACTIONS(7498), + [anon_sym___extension__] = ACTIONS(7496), + [anon_sym___attribute__] = ACTIONS(7496), + [anon_sym___attribute] = ACTIONS(7496), + [anon_sym_noreturn] = ACTIONS(7496), + [anon_sym_LBRACK] = ACTIONS(7498), + [anon_sym___based] = ACTIONS(7496), + [anon_sym_LBRACE] = ACTIONS(7498), + [anon_sym_signed] = ACTIONS(7496), + [anon_sym_unsigned] = ACTIONS(7496), + [anon_sym_long] = ACTIONS(7496), + [anon_sym_short] = ACTIONS(7496), + [anon_sym_ATautoreleasepool] = ACTIONS(7498), + [anon_sym_const] = ACTIONS(7496), + [anon_sym_constexpr] = ACTIONS(7496), + [anon_sym_volatile] = ACTIONS(7496), + [anon_sym_restrict] = ACTIONS(7496), + [anon_sym___restrict__] = ACTIONS(7496), + [anon_sym__Atomic] = ACTIONS(7496), + [anon_sym__Noreturn] = ACTIONS(7496), + [anon_sym__Nonnull] = ACTIONS(7496), + [anon_sym_nullable] = ACTIONS(7496), + [anon_sym__Complex] = ACTIONS(7496), + [anon_sym__Nullable] = ACTIONS(7496), + [anon_sym__Nullable_result] = ACTIONS(7496), + [anon_sym__Null_unspecified] = ACTIONS(7496), + [anon_sym___autoreleasing] = ACTIONS(7496), + [anon_sym___block] = ACTIONS(7496), + [anon_sym___bridge] = ACTIONS(7496), + [anon_sym___bridge_retained] = ACTIONS(7496), + [anon_sym___bridge_transfer] = ACTIONS(7496), + [anon_sym___complex] = ACTIONS(7496), + [anon_sym___const] = ACTIONS(7496), + [anon_sym___imag] = ACTIONS(7496), + [anon_sym___kindof] = ACTIONS(7496), + [anon_sym___nonnull] = ACTIONS(7496), + [anon_sym___nullable] = ACTIONS(7496), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7496), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7496), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7496), + [anon_sym___real] = ACTIONS(7496), + [anon_sym___strong] = ACTIONS(7496), + [anon_sym___unsafe_unretained] = ACTIONS(7496), + [anon_sym___unused] = ACTIONS(7496), + [anon_sym___weak] = ACTIONS(7496), + [anon_sym_alignas] = ACTIONS(7496), + [anon_sym__Alignas] = ACTIONS(7496), + [sym_primitive_type] = ACTIONS(7496), + [anon_sym_enum] = ACTIONS(7496), + [anon_sym_COLON] = ACTIONS(7498), + [anon_sym_struct] = ACTIONS(7496), + [anon_sym_union] = ACTIONS(7496), + [anon_sym_in] = ACTIONS(7496), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7496), + [anon_sym___typeof] = ACTIONS(7496), + [anon_sym_typeof] = ACTIONS(7496), + [anon_sym_BOOL] = ACTIONS(7496), + [anon_sym_IMP] = ACTIONS(7496), + [anon_sym_SEL] = ACTIONS(7496), + [anon_sym_Class] = ACTIONS(7496), + [anon_sym_id] = ACTIONS(7496), + [anon_sym_out] = ACTIONS(7496), + [anon_sym_inout] = ACTIONS(7496), + [anon_sym_bycopy] = ACTIONS(7496), + [anon_sym_byref] = ACTIONS(7496), + [anon_sym_oneway] = ACTIONS(7496), + }, + [3852] = { + [sym_attribute_specifier] = STATE(3987), + [sym_enumerator_list] = STATE(3866), + [sym_identifier] = ACTIONS(7631), + [anon_sym_COMMA] = ACTIONS(7633), + [anon_sym_RPAREN] = ACTIONS(7633), + [anon_sym_LPAREN2] = ACTIONS(7633), + [anon_sym_STAR] = ACTIONS(7633), + [anon_sym_CARET] = ACTIONS(7633), + [anon_sym_GT] = ACTIONS(7633), + [anon_sym_LT] = ACTIONS(7633), + [anon_sym___extension__] = ACTIONS(7631), + [anon_sym___attribute__] = ACTIONS(8962), + [anon_sym___attribute] = ACTIONS(8962), + [anon_sym_noreturn] = ACTIONS(7631), + [anon_sym_LBRACK] = ACTIONS(7633), + [anon_sym___based] = ACTIONS(7631), + [anon_sym_LBRACE] = ACTIONS(8913), + [anon_sym_signed] = ACTIONS(7631), + [anon_sym_unsigned] = ACTIONS(7631), + [anon_sym_long] = ACTIONS(7631), + [anon_sym_short] = ACTIONS(7631), + [anon_sym_const] = ACTIONS(7631), + [anon_sym_constexpr] = ACTIONS(7631), + [anon_sym_volatile] = ACTIONS(7631), + [anon_sym_restrict] = ACTIONS(7631), + [anon_sym___restrict__] = ACTIONS(7631), + [anon_sym__Atomic] = ACTIONS(7631), + [anon_sym__Noreturn] = ACTIONS(7631), + [anon_sym__Nonnull] = ACTIONS(7631), + [anon_sym_nullable] = ACTIONS(7631), + [anon_sym__Complex] = ACTIONS(7631), + [anon_sym__Nullable] = ACTIONS(7631), + [anon_sym__Nullable_result] = ACTIONS(7631), + [anon_sym__Null_unspecified] = ACTIONS(7631), + [anon_sym___autoreleasing] = ACTIONS(7631), + [anon_sym___block] = ACTIONS(7631), + [anon_sym___bridge] = ACTIONS(7631), + [anon_sym___bridge_retained] = ACTIONS(7631), + [anon_sym___bridge_transfer] = ACTIONS(7631), + [anon_sym___complex] = ACTIONS(7631), + [anon_sym___const] = ACTIONS(7631), + [anon_sym___imag] = ACTIONS(7631), + [anon_sym___kindof] = ACTIONS(7631), + [anon_sym___nonnull] = ACTIONS(7631), + [anon_sym___nullable] = ACTIONS(7631), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7631), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7631), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7631), + [anon_sym___real] = ACTIONS(7631), + [anon_sym___strong] = ACTIONS(7631), + [anon_sym___unsafe_unretained] = ACTIONS(7631), + [anon_sym___unused] = ACTIONS(7631), + [anon_sym___weak] = ACTIONS(7631), + [anon_sym_alignas] = ACTIONS(7631), + [anon_sym__Alignas] = ACTIONS(7631), + [sym_primitive_type] = ACTIONS(7631), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_struct] = ACTIONS(7631), + [anon_sym_union] = ACTIONS(7631), + [anon_sym_in] = ACTIONS(7631), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7631), + [anon_sym___typeof] = ACTIONS(7631), + [anon_sym_typeof] = ACTIONS(7631), + [anon_sym_BOOL] = ACTIONS(7631), + [anon_sym_IMP] = ACTIONS(7631), + [anon_sym_SEL] = ACTIONS(7631), + [anon_sym_Class] = ACTIONS(7631), + [anon_sym_id] = ACTIONS(7631), + [anon_sym_out] = ACTIONS(7631), + [anon_sym_inout] = ACTIONS(7631), + [anon_sym_bycopy] = ACTIONS(7631), + [anon_sym_byref] = ACTIONS(7631), + [anon_sym_oneway] = ACTIONS(7631), + }, + [3853] = { + [sym_attribute_specifier] = STATE(3995), + [sym_identifier] = ACTIONS(7821), + [anon_sym_COMMA] = ACTIONS(7823), + [anon_sym_RPAREN] = ACTIONS(7823), + [anon_sym_LPAREN2] = ACTIONS(7823), + [anon_sym_STAR] = ACTIONS(7823), + [anon_sym_CARET] = ACTIONS(7823), + [anon_sym_GT] = ACTIONS(7823), + [anon_sym_LT] = ACTIONS(7823), + [anon_sym___extension__] = ACTIONS(7821), + [anon_sym___attribute__] = ACTIONS(8965), + [anon_sym___attribute] = ACTIONS(8965), + [anon_sym_noreturn] = ACTIONS(7821), + [anon_sym_LBRACK] = ACTIONS(7823), + [anon_sym___based] = ACTIONS(7821), + [anon_sym_LBRACE] = ACTIONS(7823), + [anon_sym_signed] = ACTIONS(7821), + [anon_sym_unsigned] = ACTIONS(7821), + [anon_sym_long] = ACTIONS(7821), + [anon_sym_short] = ACTIONS(7821), + [anon_sym_ATautoreleasepool] = ACTIONS(7823), + [anon_sym_const] = ACTIONS(7821), + [anon_sym_constexpr] = ACTIONS(7821), + [anon_sym_volatile] = ACTIONS(7821), + [anon_sym_restrict] = ACTIONS(7821), + [anon_sym___restrict__] = ACTIONS(7821), + [anon_sym__Atomic] = ACTIONS(7821), + [anon_sym__Noreturn] = ACTIONS(7821), + [anon_sym__Nonnull] = ACTIONS(7821), + [anon_sym_nullable] = ACTIONS(7821), + [anon_sym__Complex] = ACTIONS(7821), + [anon_sym__Nullable] = ACTIONS(7821), + [anon_sym__Nullable_result] = ACTIONS(7821), + [anon_sym__Null_unspecified] = ACTIONS(7821), + [anon_sym___autoreleasing] = ACTIONS(7821), + [anon_sym___block] = ACTIONS(7821), + [anon_sym___bridge] = ACTIONS(7821), + [anon_sym___bridge_retained] = ACTIONS(7821), + [anon_sym___bridge_transfer] = ACTIONS(7821), + [anon_sym___complex] = ACTIONS(7821), + [anon_sym___const] = ACTIONS(7821), + [anon_sym___imag] = ACTIONS(7821), + [anon_sym___kindof] = ACTIONS(7821), + [anon_sym___nonnull] = ACTIONS(7821), + [anon_sym___nullable] = ACTIONS(7821), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7821), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7821), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7821), + [anon_sym___real] = ACTIONS(7821), + [anon_sym___strong] = ACTIONS(7821), + [anon_sym___unsafe_unretained] = ACTIONS(7821), + [anon_sym___unused] = ACTIONS(7821), + [anon_sym___weak] = ACTIONS(7821), + [anon_sym_alignas] = ACTIONS(7821), + [anon_sym__Alignas] = ACTIONS(7821), + [sym_primitive_type] = ACTIONS(7821), + [anon_sym_enum] = ACTIONS(7821), + [anon_sym_struct] = ACTIONS(7821), + [anon_sym_union] = ACTIONS(7821), + [anon_sym_in] = ACTIONS(7821), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7821), + [anon_sym___typeof] = ACTIONS(7821), + [anon_sym_typeof] = ACTIONS(7821), + [anon_sym_BOOL] = ACTIONS(7821), + [anon_sym_IMP] = ACTIONS(7821), + [anon_sym_SEL] = ACTIONS(7821), + [anon_sym_Class] = ACTIONS(7821), + [anon_sym_id] = ACTIONS(7821), + [anon_sym_out] = ACTIONS(7821), + [anon_sym_inout] = ACTIONS(7821), + [anon_sym_bycopy] = ACTIONS(7821), + [anon_sym_byref] = ACTIONS(7821), + [anon_sym_oneway] = ACTIONS(7821), + }, + [3854] = { + [sym_attribute_specifier] = STATE(3974), + [sym_identifier] = ACTIONS(8015), + [anon_sym_COMMA] = ACTIONS(8017), + [anon_sym_RPAREN] = ACTIONS(8017), + [anon_sym_LPAREN2] = ACTIONS(8017), + [anon_sym_STAR] = ACTIONS(8017), + [anon_sym_CARET] = ACTIONS(8017), + [anon_sym_GT] = ACTIONS(8017), + [anon_sym_LT] = ACTIONS(8017), + [anon_sym___extension__] = ACTIONS(8015), + [anon_sym___attribute__] = ACTIONS(8968), + [anon_sym___attribute] = ACTIONS(8968), + [anon_sym_noreturn] = ACTIONS(8015), + [anon_sym_LBRACK] = ACTIONS(8017), + [anon_sym___based] = ACTIONS(8015), + [anon_sym_LBRACE] = ACTIONS(8017), + [anon_sym_signed] = ACTIONS(8015), + [anon_sym_unsigned] = ACTIONS(8015), + [anon_sym_long] = ACTIONS(8015), + [anon_sym_short] = ACTIONS(8015), + [anon_sym_ATautoreleasepool] = ACTIONS(8017), + [anon_sym_const] = ACTIONS(8015), + [anon_sym_constexpr] = ACTIONS(8015), + [anon_sym_volatile] = ACTIONS(8015), + [anon_sym_restrict] = ACTIONS(8015), + [anon_sym___restrict__] = ACTIONS(8015), + [anon_sym__Atomic] = ACTIONS(8015), + [anon_sym__Noreturn] = ACTIONS(8015), + [anon_sym__Nonnull] = ACTIONS(8015), + [anon_sym_nullable] = ACTIONS(8015), + [anon_sym__Complex] = ACTIONS(8015), + [anon_sym__Nullable] = ACTIONS(8015), + [anon_sym__Nullable_result] = ACTIONS(8015), + [anon_sym__Null_unspecified] = ACTIONS(8015), + [anon_sym___autoreleasing] = ACTIONS(8015), + [anon_sym___block] = ACTIONS(8015), + [anon_sym___bridge] = ACTIONS(8015), + [anon_sym___bridge_retained] = ACTIONS(8015), + [anon_sym___bridge_transfer] = ACTIONS(8015), + [anon_sym___complex] = ACTIONS(8015), + [anon_sym___const] = ACTIONS(8015), + [anon_sym___imag] = ACTIONS(8015), + [anon_sym___kindof] = ACTIONS(8015), + [anon_sym___nonnull] = ACTIONS(8015), + [anon_sym___nullable] = ACTIONS(8015), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8015), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8015), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8015), + [anon_sym___real] = ACTIONS(8015), + [anon_sym___strong] = ACTIONS(8015), + [anon_sym___unsafe_unretained] = ACTIONS(8015), + [anon_sym___unused] = ACTIONS(8015), + [anon_sym___weak] = ACTIONS(8015), + [anon_sym_alignas] = ACTIONS(8015), + [anon_sym__Alignas] = ACTIONS(8015), + [sym_primitive_type] = ACTIONS(8015), + [anon_sym_enum] = ACTIONS(8015), + [anon_sym_struct] = ACTIONS(8015), + [anon_sym_union] = ACTIONS(8015), + [anon_sym_in] = ACTIONS(8015), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8015), + [anon_sym___typeof] = ACTIONS(8015), + [anon_sym_typeof] = ACTIONS(8015), + [anon_sym_BOOL] = ACTIONS(8015), + [anon_sym_IMP] = ACTIONS(8015), + [anon_sym_SEL] = ACTIONS(8015), + [anon_sym_Class] = ACTIONS(8015), + [anon_sym_id] = ACTIONS(8015), + [anon_sym_out] = ACTIONS(8015), + [anon_sym_inout] = ACTIONS(8015), + [anon_sym_bycopy] = ACTIONS(8015), + [anon_sym_byref] = ACTIONS(8015), + [anon_sym_oneway] = ACTIONS(8015), + }, + [3855] = { + [sym_attribute_specifier] = STATE(3938), + [sym_identifier] = ACTIONS(8030), + [anon_sym_COMMA] = ACTIONS(8032), + [anon_sym_RPAREN] = ACTIONS(8032), + [anon_sym_LPAREN2] = ACTIONS(8032), + [anon_sym_STAR] = ACTIONS(8032), + [anon_sym_CARET] = ACTIONS(8032), + [anon_sym_GT] = ACTIONS(8032), + [anon_sym_LT] = ACTIONS(8032), + [anon_sym___extension__] = ACTIONS(8030), + [anon_sym___attribute__] = ACTIONS(8971), + [anon_sym___attribute] = ACTIONS(8971), + [anon_sym_noreturn] = ACTIONS(8030), + [anon_sym_LBRACK] = ACTIONS(8032), + [anon_sym___based] = ACTIONS(8030), + [anon_sym_LBRACE] = ACTIONS(8032), + [anon_sym_signed] = ACTIONS(8030), + [anon_sym_unsigned] = ACTIONS(8030), + [anon_sym_long] = ACTIONS(8030), + [anon_sym_short] = ACTIONS(8030), + [anon_sym_ATautoreleasepool] = ACTIONS(8032), + [anon_sym_const] = ACTIONS(8030), + [anon_sym_constexpr] = ACTIONS(8030), + [anon_sym_volatile] = ACTIONS(8030), + [anon_sym_restrict] = ACTIONS(8030), + [anon_sym___restrict__] = ACTIONS(8030), + [anon_sym__Atomic] = ACTIONS(8030), + [anon_sym__Noreturn] = ACTIONS(8030), + [anon_sym__Nonnull] = ACTIONS(8030), + [anon_sym_nullable] = ACTIONS(8030), + [anon_sym__Complex] = ACTIONS(8030), + [anon_sym__Nullable] = ACTIONS(8030), + [anon_sym__Nullable_result] = ACTIONS(8030), + [anon_sym__Null_unspecified] = ACTIONS(8030), + [anon_sym___autoreleasing] = ACTIONS(8030), + [anon_sym___block] = ACTIONS(8030), + [anon_sym___bridge] = ACTIONS(8030), + [anon_sym___bridge_retained] = ACTIONS(8030), + [anon_sym___bridge_transfer] = ACTIONS(8030), + [anon_sym___complex] = ACTIONS(8030), + [anon_sym___const] = ACTIONS(8030), + [anon_sym___imag] = ACTIONS(8030), + [anon_sym___kindof] = ACTIONS(8030), + [anon_sym___nonnull] = ACTIONS(8030), + [anon_sym___nullable] = ACTIONS(8030), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8030), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8030), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8030), + [anon_sym___real] = ACTIONS(8030), + [anon_sym___strong] = ACTIONS(8030), + [anon_sym___unsafe_unretained] = ACTIONS(8030), + [anon_sym___unused] = ACTIONS(8030), + [anon_sym___weak] = ACTIONS(8030), + [anon_sym_alignas] = ACTIONS(8030), + [anon_sym__Alignas] = ACTIONS(8030), + [sym_primitive_type] = ACTIONS(8030), + [anon_sym_enum] = ACTIONS(8030), + [anon_sym_struct] = ACTIONS(8030), + [anon_sym_union] = ACTIONS(8030), + [anon_sym_in] = ACTIONS(8030), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8030), + [anon_sym___typeof] = ACTIONS(8030), + [anon_sym_typeof] = ACTIONS(8030), + [anon_sym_BOOL] = ACTIONS(8030), + [anon_sym_IMP] = ACTIONS(8030), + [anon_sym_SEL] = ACTIONS(8030), + [anon_sym_Class] = ACTIONS(8030), + [anon_sym_id] = ACTIONS(8030), + [anon_sym_out] = ACTIONS(8030), + [anon_sym_inout] = ACTIONS(8030), + [anon_sym_bycopy] = ACTIONS(8030), + [anon_sym_byref] = ACTIONS(8030), + [anon_sym_oneway] = ACTIONS(8030), + }, + [3856] = { + [sym_attribute_specifier] = STATE(3990), + [sym_enumerator_list] = STATE(3867), + [sym_identifier] = ACTIONS(7640), + [anon_sym_COMMA] = ACTIONS(7642), + [anon_sym_RPAREN] = ACTIONS(7642), + [anon_sym_LPAREN2] = ACTIONS(7642), + [anon_sym_STAR] = ACTIONS(7642), + [anon_sym_CARET] = ACTIONS(7642), + [anon_sym_GT] = ACTIONS(7642), + [anon_sym_LT] = ACTIONS(7642), + [anon_sym___extension__] = ACTIONS(7640), + [anon_sym___attribute__] = ACTIONS(8974), + [anon_sym___attribute] = ACTIONS(8974), + [anon_sym_noreturn] = ACTIONS(7640), + [anon_sym_LBRACK] = ACTIONS(7642), + [anon_sym___based] = ACTIONS(7640), + [anon_sym_LBRACE] = ACTIONS(8913), + [anon_sym_signed] = ACTIONS(7640), + [anon_sym_unsigned] = ACTIONS(7640), + [anon_sym_long] = ACTIONS(7640), + [anon_sym_short] = ACTIONS(7640), + [anon_sym_const] = ACTIONS(7640), + [anon_sym_constexpr] = ACTIONS(7640), + [anon_sym_volatile] = ACTIONS(7640), + [anon_sym_restrict] = ACTIONS(7640), + [anon_sym___restrict__] = ACTIONS(7640), + [anon_sym__Atomic] = ACTIONS(7640), + [anon_sym__Noreturn] = ACTIONS(7640), + [anon_sym__Nonnull] = ACTIONS(7640), + [anon_sym_nullable] = ACTIONS(7640), + [anon_sym__Complex] = ACTIONS(7640), + [anon_sym__Nullable] = ACTIONS(7640), + [anon_sym__Nullable_result] = ACTIONS(7640), + [anon_sym__Null_unspecified] = ACTIONS(7640), + [anon_sym___autoreleasing] = ACTIONS(7640), + [anon_sym___block] = ACTIONS(7640), + [anon_sym___bridge] = ACTIONS(7640), + [anon_sym___bridge_retained] = ACTIONS(7640), + [anon_sym___bridge_transfer] = ACTIONS(7640), + [anon_sym___complex] = ACTIONS(7640), + [anon_sym___const] = ACTIONS(7640), + [anon_sym___imag] = ACTIONS(7640), + [anon_sym___kindof] = ACTIONS(7640), + [anon_sym___nonnull] = ACTIONS(7640), + [anon_sym___nullable] = ACTIONS(7640), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7640), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7640), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7640), + [anon_sym___real] = ACTIONS(7640), + [anon_sym___strong] = ACTIONS(7640), + [anon_sym___unsafe_unretained] = ACTIONS(7640), + [anon_sym___unused] = ACTIONS(7640), + [anon_sym___weak] = ACTIONS(7640), + [anon_sym_alignas] = ACTIONS(7640), + [anon_sym__Alignas] = ACTIONS(7640), + [sym_primitive_type] = ACTIONS(7640), + [anon_sym_enum] = ACTIONS(7640), + [anon_sym_struct] = ACTIONS(7640), + [anon_sym_union] = ACTIONS(7640), + [anon_sym_in] = ACTIONS(7640), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7640), + [anon_sym___typeof] = ACTIONS(7640), + [anon_sym_typeof] = ACTIONS(7640), + [anon_sym_BOOL] = ACTIONS(7640), + [anon_sym_IMP] = ACTIONS(7640), + [anon_sym_SEL] = ACTIONS(7640), + [anon_sym_Class] = ACTIONS(7640), + [anon_sym_id] = ACTIONS(7640), + [anon_sym_out] = ACTIONS(7640), + [anon_sym_inout] = ACTIONS(7640), + [anon_sym_bycopy] = ACTIONS(7640), + [anon_sym_byref] = ACTIONS(7640), + [anon_sym_oneway] = ACTIONS(7640), + }, + [3857] = { + [sym_parameter_list] = STATE(3790), + [sym_identifier] = ACTIONS(6839), + [anon_sym_COMMA] = ACTIONS(6841), + [anon_sym_RPAREN] = ACTIONS(6841), + [anon_sym_LPAREN2] = ACTIONS(8958), + [anon_sym_STAR] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(6839), + [anon_sym___attribute__] = ACTIONS(6839), + [anon_sym___attribute] = ACTIONS(6839), + [anon_sym_noreturn] = ACTIONS(6839), + [anon_sym_LBRACK] = ACTIONS(8960), + [anon_sym___based] = ACTIONS(6839), + [anon_sym_LBRACE] = ACTIONS(6841), + [anon_sym_signed] = ACTIONS(6839), + [anon_sym_unsigned] = ACTIONS(6839), + [anon_sym_long] = ACTIONS(6839), + [anon_sym_short] = ACTIONS(6839), + [anon_sym_ATautoreleasepool] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(6839), + [anon_sym_constexpr] = ACTIONS(6839), + [anon_sym_volatile] = ACTIONS(6839), + [anon_sym_restrict] = ACTIONS(6839), + [anon_sym___restrict__] = ACTIONS(6839), + [anon_sym__Atomic] = ACTIONS(6839), + [anon_sym__Noreturn] = ACTIONS(6839), + [anon_sym__Nonnull] = ACTIONS(6839), + [anon_sym_nullable] = ACTIONS(6839), + [anon_sym__Complex] = ACTIONS(6839), + [anon_sym__Nullable] = ACTIONS(6839), + [anon_sym__Nullable_result] = ACTIONS(6839), + [anon_sym__Null_unspecified] = ACTIONS(6839), + [anon_sym___autoreleasing] = ACTIONS(6839), + [anon_sym___block] = ACTIONS(6839), + [anon_sym___bridge] = ACTIONS(6839), + [anon_sym___bridge_retained] = ACTIONS(6839), + [anon_sym___bridge_transfer] = ACTIONS(6839), + [anon_sym___complex] = ACTIONS(6839), + [anon_sym___const] = ACTIONS(6839), + [anon_sym___imag] = ACTIONS(6839), + [anon_sym___kindof] = ACTIONS(6839), + [anon_sym___nonnull] = ACTIONS(6839), + [anon_sym___nullable] = ACTIONS(6839), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6839), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6839), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6839), + [anon_sym___real] = ACTIONS(6839), + [anon_sym___strong] = ACTIONS(6839), + [anon_sym___unsafe_unretained] = ACTIONS(6839), + [anon_sym___unused] = ACTIONS(6839), + [anon_sym___weak] = ACTIONS(6839), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [sym_primitive_type] = ACTIONS(6839), + [anon_sym_enum] = ACTIONS(6839), + [anon_sym_struct] = ACTIONS(6839), + [anon_sym_union] = ACTIONS(6839), + [anon_sym_in] = ACTIONS(6839), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6839), + [anon_sym___typeof] = ACTIONS(6839), + [anon_sym_typeof] = ACTIONS(6839), + [anon_sym_BOOL] = ACTIONS(6839), + [anon_sym_IMP] = ACTIONS(6839), + [anon_sym_SEL] = ACTIONS(6839), + [anon_sym_Class] = ACTIONS(6839), + [anon_sym_id] = ACTIONS(6839), + [anon_sym_out] = ACTIONS(6839), + [anon_sym_inout] = ACTIONS(6839), + [anon_sym_bycopy] = ACTIONS(6839), + [anon_sym_byref] = ACTIONS(6839), + [anon_sym_oneway] = ACTIONS(6839), + }, + [3858] = { + [sym__type_definition_type] = STATE(4803), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4042), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3859] = { + [sym__type_definition_type] = STATE(4720), + [sym_attribute_specifier] = STATE(3861), + [sym_ms_declspec_modifier] = STATE(4042), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3860] = { + [sym_identifier] = ACTIONS(7528), + [anon_sym_COMMA] = ACTIONS(7530), + [anon_sym_RPAREN] = ACTIONS(7530), + [anon_sym_LPAREN2] = ACTIONS(7530), + [anon_sym_STAR] = ACTIONS(7530), + [anon_sym_CARET] = ACTIONS(7530), + [anon_sym_GT] = ACTIONS(7530), + [anon_sym_LT] = ACTIONS(7530), + [anon_sym___extension__] = ACTIONS(7528), + [anon_sym___attribute__] = ACTIONS(7528), + [anon_sym___attribute] = ACTIONS(7528), + [anon_sym_noreturn] = ACTIONS(7528), + [anon_sym_LBRACK] = ACTIONS(7530), + [anon_sym___based] = ACTIONS(7528), + [anon_sym_LBRACE] = ACTIONS(7530), + [anon_sym_signed] = ACTIONS(7528), + [anon_sym_unsigned] = ACTIONS(7528), + [anon_sym_long] = ACTIONS(7528), + [anon_sym_short] = ACTIONS(7528), + [anon_sym_ATautoreleasepool] = ACTIONS(7530), + [anon_sym_const] = ACTIONS(7528), + [anon_sym_constexpr] = ACTIONS(7528), + [anon_sym_volatile] = ACTIONS(7528), + [anon_sym_restrict] = ACTIONS(7528), + [anon_sym___restrict__] = ACTIONS(7528), + [anon_sym__Atomic] = ACTIONS(7528), + [anon_sym__Noreturn] = ACTIONS(7528), + [anon_sym__Nonnull] = ACTIONS(7528), + [anon_sym_nullable] = ACTIONS(7528), + [anon_sym__Complex] = ACTIONS(7528), + [anon_sym__Nullable] = ACTIONS(7528), + [anon_sym__Nullable_result] = ACTIONS(7528), + [anon_sym__Null_unspecified] = ACTIONS(7528), + [anon_sym___autoreleasing] = ACTIONS(7528), + [anon_sym___block] = ACTIONS(7528), + [anon_sym___bridge] = ACTIONS(7528), + [anon_sym___bridge_retained] = ACTIONS(7528), + [anon_sym___bridge_transfer] = ACTIONS(7528), + [anon_sym___complex] = ACTIONS(7528), + [anon_sym___const] = ACTIONS(7528), + [anon_sym___imag] = ACTIONS(7528), + [anon_sym___kindof] = ACTIONS(7528), + [anon_sym___nonnull] = ACTIONS(7528), + [anon_sym___nullable] = ACTIONS(7528), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7528), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7528), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7528), + [anon_sym___real] = ACTIONS(7528), + [anon_sym___strong] = ACTIONS(7528), + [anon_sym___unsafe_unretained] = ACTIONS(7528), + [anon_sym___unused] = ACTIONS(7528), + [anon_sym___weak] = ACTIONS(7528), + [anon_sym_alignas] = ACTIONS(7528), + [anon_sym__Alignas] = ACTIONS(7528), + [sym_primitive_type] = ACTIONS(7528), + [anon_sym_enum] = ACTIONS(7528), + [anon_sym_COLON] = ACTIONS(7530), + [anon_sym_struct] = ACTIONS(7528), + [anon_sym_union] = ACTIONS(7528), + [anon_sym_in] = ACTIONS(7528), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7528), + [anon_sym___typeof] = ACTIONS(7528), + [anon_sym_typeof] = ACTIONS(7528), + [anon_sym_BOOL] = ACTIONS(7528), + [anon_sym_IMP] = ACTIONS(7528), + [anon_sym_SEL] = ACTIONS(7528), + [anon_sym_Class] = ACTIONS(7528), + [anon_sym_id] = ACTIONS(7528), + [anon_sym_out] = ACTIONS(7528), + [anon_sym_inout] = ACTIONS(7528), + [anon_sym_bycopy] = ACTIONS(7528), + [anon_sym_byref] = ACTIONS(7528), + [anon_sym_oneway] = ACTIONS(7528), + }, + [3861] = { + [sym__type_definition_type] = STATE(4780), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4026), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3862] = { + [sym_identifier] = ACTIONS(7540), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(7542), + [anon_sym_LPAREN2] = ACTIONS(7542), + [anon_sym_STAR] = ACTIONS(7542), + [anon_sym_CARET] = ACTIONS(7542), + [anon_sym_GT] = ACTIONS(7542), + [anon_sym_LT] = ACTIONS(7542), + [anon_sym___extension__] = ACTIONS(7540), + [anon_sym___attribute__] = ACTIONS(7540), + [anon_sym___attribute] = ACTIONS(7540), + [anon_sym_noreturn] = ACTIONS(7540), + [anon_sym_LBRACK] = ACTIONS(7542), + [anon_sym___based] = ACTIONS(7540), + [anon_sym_LBRACE] = ACTIONS(7542), + [anon_sym_signed] = ACTIONS(7540), + [anon_sym_unsigned] = ACTIONS(7540), + [anon_sym_long] = ACTIONS(7540), + [anon_sym_short] = ACTIONS(7540), + [anon_sym_ATautoreleasepool] = ACTIONS(7542), + [anon_sym_const] = ACTIONS(7540), + [anon_sym_constexpr] = ACTIONS(7540), + [anon_sym_volatile] = ACTIONS(7540), + [anon_sym_restrict] = ACTIONS(7540), + [anon_sym___restrict__] = ACTIONS(7540), + [anon_sym__Atomic] = ACTIONS(7540), + [anon_sym__Noreturn] = ACTIONS(7540), + [anon_sym__Nonnull] = ACTIONS(7540), + [anon_sym_nullable] = ACTIONS(7540), + [anon_sym__Complex] = ACTIONS(7540), + [anon_sym__Nullable] = ACTIONS(7540), + [anon_sym__Nullable_result] = ACTIONS(7540), + [anon_sym__Null_unspecified] = ACTIONS(7540), + [anon_sym___autoreleasing] = ACTIONS(7540), + [anon_sym___block] = ACTIONS(7540), + [anon_sym___bridge] = ACTIONS(7540), + [anon_sym___bridge_retained] = ACTIONS(7540), + [anon_sym___bridge_transfer] = ACTIONS(7540), + [anon_sym___complex] = ACTIONS(7540), + [anon_sym___const] = ACTIONS(7540), + [anon_sym___imag] = ACTIONS(7540), + [anon_sym___kindof] = ACTIONS(7540), + [anon_sym___nonnull] = ACTIONS(7540), + [anon_sym___nullable] = ACTIONS(7540), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7540), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7540), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7540), + [anon_sym___real] = ACTIONS(7540), + [anon_sym___strong] = ACTIONS(7540), + [anon_sym___unsafe_unretained] = ACTIONS(7540), + [anon_sym___unused] = ACTIONS(7540), + [anon_sym___weak] = ACTIONS(7540), + [anon_sym_alignas] = ACTIONS(7540), + [anon_sym__Alignas] = ACTIONS(7540), + [sym_primitive_type] = ACTIONS(7540), + [anon_sym_enum] = ACTIONS(7540), + [anon_sym_COLON] = ACTIONS(7542), + [anon_sym_struct] = ACTIONS(7540), + [anon_sym_union] = ACTIONS(7540), + [anon_sym_in] = ACTIONS(7540), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7540), + [anon_sym___typeof] = ACTIONS(7540), + [anon_sym_typeof] = ACTIONS(7540), + [anon_sym_BOOL] = ACTIONS(7540), + [anon_sym_IMP] = ACTIONS(7540), + [anon_sym_SEL] = ACTIONS(7540), + [anon_sym_Class] = ACTIONS(7540), + [anon_sym_id] = ACTIONS(7540), + [anon_sym_out] = ACTIONS(7540), + [anon_sym_inout] = ACTIONS(7540), + [anon_sym_bycopy] = ACTIONS(7540), + [anon_sym_byref] = ACTIONS(7540), + [anon_sym_oneway] = ACTIONS(7540), + }, + [3863] = { + [sym_identifier] = ACTIONS(7532), + [anon_sym_COMMA] = ACTIONS(7534), + [anon_sym_RPAREN] = ACTIONS(7534), + [anon_sym_LPAREN2] = ACTIONS(7534), + [anon_sym_STAR] = ACTIONS(7534), + [anon_sym_CARET] = ACTIONS(7534), + [anon_sym_GT] = ACTIONS(7534), + [anon_sym_LT] = ACTIONS(7534), + [anon_sym___extension__] = ACTIONS(7532), + [anon_sym___attribute__] = ACTIONS(7532), + [anon_sym___attribute] = ACTIONS(7532), + [anon_sym_noreturn] = ACTIONS(7532), + [anon_sym_LBRACK] = ACTIONS(7534), + [anon_sym___based] = ACTIONS(7532), + [anon_sym_LBRACE] = ACTIONS(7534), + [anon_sym_signed] = ACTIONS(7532), + [anon_sym_unsigned] = ACTIONS(7532), + [anon_sym_long] = ACTIONS(7532), + [anon_sym_short] = ACTIONS(7532), + [anon_sym_ATautoreleasepool] = ACTIONS(7534), + [anon_sym_const] = ACTIONS(7532), + [anon_sym_constexpr] = ACTIONS(7532), + [anon_sym_volatile] = ACTIONS(7532), + [anon_sym_restrict] = ACTIONS(7532), + [anon_sym___restrict__] = ACTIONS(7532), + [anon_sym__Atomic] = ACTIONS(7532), + [anon_sym__Noreturn] = ACTIONS(7532), + [anon_sym__Nonnull] = ACTIONS(7532), + [anon_sym_nullable] = ACTIONS(7532), + [anon_sym__Complex] = ACTIONS(7532), + [anon_sym__Nullable] = ACTIONS(7532), + [anon_sym__Nullable_result] = ACTIONS(7532), + [anon_sym__Null_unspecified] = ACTIONS(7532), + [anon_sym___autoreleasing] = ACTIONS(7532), + [anon_sym___block] = ACTIONS(7532), + [anon_sym___bridge] = ACTIONS(7532), + [anon_sym___bridge_retained] = ACTIONS(7532), + [anon_sym___bridge_transfer] = ACTIONS(7532), + [anon_sym___complex] = ACTIONS(7532), + [anon_sym___const] = ACTIONS(7532), + [anon_sym___imag] = ACTIONS(7532), + [anon_sym___kindof] = ACTIONS(7532), + [anon_sym___nonnull] = ACTIONS(7532), + [anon_sym___nullable] = ACTIONS(7532), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7532), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7532), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7532), + [anon_sym___real] = ACTIONS(7532), + [anon_sym___strong] = ACTIONS(7532), + [anon_sym___unsafe_unretained] = ACTIONS(7532), + [anon_sym___unused] = ACTIONS(7532), + [anon_sym___weak] = ACTIONS(7532), + [anon_sym_alignas] = ACTIONS(7532), + [anon_sym__Alignas] = ACTIONS(7532), + [sym_primitive_type] = ACTIONS(7532), + [anon_sym_enum] = ACTIONS(7532), + [anon_sym_COLON] = ACTIONS(7534), + [anon_sym_struct] = ACTIONS(7532), + [anon_sym_union] = ACTIONS(7532), + [anon_sym_in] = ACTIONS(7532), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7532), + [anon_sym___typeof] = ACTIONS(7532), + [anon_sym_typeof] = ACTIONS(7532), + [anon_sym_BOOL] = ACTIONS(7532), + [anon_sym_IMP] = ACTIONS(7532), + [anon_sym_SEL] = ACTIONS(7532), + [anon_sym_Class] = ACTIONS(7532), + [anon_sym_id] = ACTIONS(7532), + [anon_sym_out] = ACTIONS(7532), + [anon_sym_inout] = ACTIONS(7532), + [anon_sym_bycopy] = ACTIONS(7532), + [anon_sym_byref] = ACTIONS(7532), + [anon_sym_oneway] = ACTIONS(7532), + }, + [3864] = { + [sym_identifier] = ACTIONS(7504), + [anon_sym_COMMA] = ACTIONS(7506), + [anon_sym_RPAREN] = ACTIONS(7506), + [anon_sym_LPAREN2] = ACTIONS(7506), + [anon_sym_STAR] = ACTIONS(7506), + [anon_sym_CARET] = ACTIONS(7506), + [anon_sym_GT] = ACTIONS(7506), + [anon_sym_LT] = ACTIONS(7506), + [anon_sym___extension__] = ACTIONS(7504), + [anon_sym___attribute__] = ACTIONS(7504), + [anon_sym___attribute] = ACTIONS(7504), + [anon_sym_noreturn] = ACTIONS(7504), + [anon_sym_LBRACK] = ACTIONS(7506), + [anon_sym___based] = ACTIONS(7504), + [anon_sym_LBRACE] = ACTIONS(7506), + [anon_sym_signed] = ACTIONS(7504), + [anon_sym_unsigned] = ACTIONS(7504), + [anon_sym_long] = ACTIONS(7504), + [anon_sym_short] = ACTIONS(7504), + [anon_sym_ATautoreleasepool] = ACTIONS(7506), + [anon_sym_const] = ACTIONS(7504), + [anon_sym_constexpr] = ACTIONS(7504), + [anon_sym_volatile] = ACTIONS(7504), + [anon_sym_restrict] = ACTIONS(7504), + [anon_sym___restrict__] = ACTIONS(7504), + [anon_sym__Atomic] = ACTIONS(7504), + [anon_sym__Noreturn] = ACTIONS(7504), + [anon_sym__Nonnull] = ACTIONS(7504), + [anon_sym_nullable] = ACTIONS(7504), + [anon_sym__Complex] = ACTIONS(7504), + [anon_sym__Nullable] = ACTIONS(7504), + [anon_sym__Nullable_result] = ACTIONS(7504), + [anon_sym__Null_unspecified] = ACTIONS(7504), + [anon_sym___autoreleasing] = ACTIONS(7504), + [anon_sym___block] = ACTIONS(7504), + [anon_sym___bridge] = ACTIONS(7504), + [anon_sym___bridge_retained] = ACTIONS(7504), + [anon_sym___bridge_transfer] = ACTIONS(7504), + [anon_sym___complex] = ACTIONS(7504), + [anon_sym___const] = ACTIONS(7504), + [anon_sym___imag] = ACTIONS(7504), + [anon_sym___kindof] = ACTIONS(7504), + [anon_sym___nonnull] = ACTIONS(7504), + [anon_sym___nullable] = ACTIONS(7504), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7504), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7504), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7504), + [anon_sym___real] = ACTIONS(7504), + [anon_sym___strong] = ACTIONS(7504), + [anon_sym___unsafe_unretained] = ACTIONS(7504), + [anon_sym___unused] = ACTIONS(7504), + [anon_sym___weak] = ACTIONS(7504), + [anon_sym_alignas] = ACTIONS(7504), + [anon_sym__Alignas] = ACTIONS(7504), + [sym_primitive_type] = ACTIONS(7504), + [anon_sym_enum] = ACTIONS(7504), + [anon_sym_COLON] = ACTIONS(7506), + [anon_sym_struct] = ACTIONS(7504), + [anon_sym_union] = ACTIONS(7504), + [anon_sym_in] = ACTIONS(7504), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7504), + [anon_sym___typeof] = ACTIONS(7504), + [anon_sym_typeof] = ACTIONS(7504), + [anon_sym_BOOL] = ACTIONS(7504), + [anon_sym_IMP] = ACTIONS(7504), + [anon_sym_SEL] = ACTIONS(7504), + [anon_sym_Class] = ACTIONS(7504), + [anon_sym_id] = ACTIONS(7504), + [anon_sym_out] = ACTIONS(7504), + [anon_sym_inout] = ACTIONS(7504), + [anon_sym_bycopy] = ACTIONS(7504), + [anon_sym_byref] = ACTIONS(7504), + [anon_sym_oneway] = ACTIONS(7504), + }, + [3865] = { + [sym_identifier] = ACTIONS(7546), + [anon_sym_COMMA] = ACTIONS(7548), + [anon_sym_RPAREN] = ACTIONS(7548), + [anon_sym_LPAREN2] = ACTIONS(7548), + [anon_sym_STAR] = ACTIONS(7548), + [anon_sym_CARET] = ACTIONS(7548), + [anon_sym_GT] = ACTIONS(7548), + [anon_sym_LT] = ACTIONS(7548), + [anon_sym___extension__] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(7546), + [anon_sym___attribute] = ACTIONS(7546), + [anon_sym_noreturn] = ACTIONS(7546), + [anon_sym_LBRACK] = ACTIONS(7548), + [anon_sym___based] = ACTIONS(7546), + [anon_sym_LBRACE] = ACTIONS(7548), + [anon_sym_signed] = ACTIONS(7546), + [anon_sym_unsigned] = ACTIONS(7546), + [anon_sym_long] = ACTIONS(7546), + [anon_sym_short] = ACTIONS(7546), + [anon_sym_ATautoreleasepool] = ACTIONS(7548), + [anon_sym_const] = ACTIONS(7546), + [anon_sym_constexpr] = ACTIONS(7546), + [anon_sym_volatile] = ACTIONS(7546), + [anon_sym_restrict] = ACTIONS(7546), + [anon_sym___restrict__] = ACTIONS(7546), + [anon_sym__Atomic] = ACTIONS(7546), + [anon_sym__Noreturn] = ACTIONS(7546), + [anon_sym__Nonnull] = ACTIONS(7546), + [anon_sym_nullable] = ACTIONS(7546), + [anon_sym__Complex] = ACTIONS(7546), + [anon_sym__Nullable] = ACTIONS(7546), + [anon_sym__Nullable_result] = ACTIONS(7546), + [anon_sym__Null_unspecified] = ACTIONS(7546), + [anon_sym___autoreleasing] = ACTIONS(7546), + [anon_sym___block] = ACTIONS(7546), + [anon_sym___bridge] = ACTIONS(7546), + [anon_sym___bridge_retained] = ACTIONS(7546), + [anon_sym___bridge_transfer] = ACTIONS(7546), + [anon_sym___complex] = ACTIONS(7546), + [anon_sym___const] = ACTIONS(7546), + [anon_sym___imag] = ACTIONS(7546), + [anon_sym___kindof] = ACTIONS(7546), + [anon_sym___nonnull] = ACTIONS(7546), + [anon_sym___nullable] = ACTIONS(7546), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7546), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7546), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7546), + [anon_sym___real] = ACTIONS(7546), + [anon_sym___strong] = ACTIONS(7546), + [anon_sym___unsafe_unretained] = ACTIONS(7546), + [anon_sym___unused] = ACTIONS(7546), + [anon_sym___weak] = ACTIONS(7546), + [anon_sym_alignas] = ACTIONS(7546), + [anon_sym__Alignas] = ACTIONS(7546), + [sym_primitive_type] = ACTIONS(7546), + [anon_sym_enum] = ACTIONS(7546), + [anon_sym_COLON] = ACTIONS(7548), + [anon_sym_struct] = ACTIONS(7546), + [anon_sym_union] = ACTIONS(7546), + [anon_sym_in] = ACTIONS(7546), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7546), + [anon_sym___typeof] = ACTIONS(7546), + [anon_sym_typeof] = ACTIONS(7546), + [anon_sym_BOOL] = ACTIONS(7546), + [anon_sym_IMP] = ACTIONS(7546), + [anon_sym_SEL] = ACTIONS(7546), + [anon_sym_Class] = ACTIONS(7546), + [anon_sym_id] = ACTIONS(7546), + [anon_sym_out] = ACTIONS(7546), + [anon_sym_inout] = ACTIONS(7546), + [anon_sym_bycopy] = ACTIONS(7546), + [anon_sym_byref] = ACTIONS(7546), + [anon_sym_oneway] = ACTIONS(7546), + }, + [3866] = { + [sym_attribute_specifier] = STATE(3979), + [sym_identifier] = ACTIONS(7946), + [anon_sym_COMMA] = ACTIONS(7948), + [anon_sym_RPAREN] = ACTIONS(7948), + [anon_sym_LPAREN2] = ACTIONS(7948), + [anon_sym_STAR] = ACTIONS(7948), + [anon_sym_CARET] = ACTIONS(7948), + [anon_sym_GT] = ACTIONS(7948), + [anon_sym_LT] = ACTIONS(7948), + [anon_sym___extension__] = ACTIONS(7946), + [anon_sym___attribute__] = ACTIONS(8983), + [anon_sym___attribute] = ACTIONS(8983), + [anon_sym_noreturn] = ACTIONS(7946), + [anon_sym_LBRACK] = ACTIONS(7948), + [anon_sym___based] = ACTIONS(7946), + [anon_sym_LBRACE] = ACTIONS(7948), + [anon_sym_signed] = ACTIONS(7946), + [anon_sym_unsigned] = ACTIONS(7946), + [anon_sym_long] = ACTIONS(7946), + [anon_sym_short] = ACTIONS(7946), + [anon_sym_ATautoreleasepool] = ACTIONS(7948), + [anon_sym_const] = ACTIONS(7946), + [anon_sym_constexpr] = ACTIONS(7946), + [anon_sym_volatile] = ACTIONS(7946), + [anon_sym_restrict] = ACTIONS(7946), + [anon_sym___restrict__] = ACTIONS(7946), + [anon_sym__Atomic] = ACTIONS(7946), + [anon_sym__Noreturn] = ACTIONS(7946), + [anon_sym__Nonnull] = ACTIONS(7946), + [anon_sym_nullable] = ACTIONS(7946), + [anon_sym__Complex] = ACTIONS(7946), + [anon_sym__Nullable] = ACTIONS(7946), + [anon_sym__Nullable_result] = ACTIONS(7946), + [anon_sym__Null_unspecified] = ACTIONS(7946), + [anon_sym___autoreleasing] = ACTIONS(7946), + [anon_sym___block] = ACTIONS(7946), + [anon_sym___bridge] = ACTIONS(7946), + [anon_sym___bridge_retained] = ACTIONS(7946), + [anon_sym___bridge_transfer] = ACTIONS(7946), + [anon_sym___complex] = ACTIONS(7946), + [anon_sym___const] = ACTIONS(7946), + [anon_sym___imag] = ACTIONS(7946), + [anon_sym___kindof] = ACTIONS(7946), + [anon_sym___nonnull] = ACTIONS(7946), + [anon_sym___nullable] = ACTIONS(7946), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7946), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7946), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7946), + [anon_sym___real] = ACTIONS(7946), + [anon_sym___strong] = ACTIONS(7946), + [anon_sym___unsafe_unretained] = ACTIONS(7946), + [anon_sym___unused] = ACTIONS(7946), + [anon_sym___weak] = ACTIONS(7946), + [anon_sym_alignas] = ACTIONS(7946), + [anon_sym__Alignas] = ACTIONS(7946), + [sym_primitive_type] = ACTIONS(7946), + [anon_sym_enum] = ACTIONS(7946), + [anon_sym_struct] = ACTIONS(7946), + [anon_sym_union] = ACTIONS(7946), + [anon_sym_in] = ACTIONS(7946), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7946), + [anon_sym___typeof] = ACTIONS(7946), + [anon_sym_typeof] = ACTIONS(7946), + [anon_sym_BOOL] = ACTIONS(7946), + [anon_sym_IMP] = ACTIONS(7946), + [anon_sym_SEL] = ACTIONS(7946), + [anon_sym_Class] = ACTIONS(7946), + [anon_sym_id] = ACTIONS(7946), + [anon_sym_out] = ACTIONS(7946), + [anon_sym_inout] = ACTIONS(7946), + [anon_sym_bycopy] = ACTIONS(7946), + [anon_sym_byref] = ACTIONS(7946), + [anon_sym_oneway] = ACTIONS(7946), + }, + [3867] = { + [sym_attribute_specifier] = STATE(4002), + [sym_identifier] = ACTIONS(7953), + [anon_sym_COMMA] = ACTIONS(7955), + [anon_sym_RPAREN] = ACTIONS(7955), + [anon_sym_LPAREN2] = ACTIONS(7955), + [anon_sym_STAR] = ACTIONS(7955), + [anon_sym_CARET] = ACTIONS(7955), + [anon_sym_GT] = ACTIONS(7955), + [anon_sym_LT] = ACTIONS(7955), + [anon_sym___extension__] = ACTIONS(7953), + [anon_sym___attribute__] = ACTIONS(8986), + [anon_sym___attribute] = ACTIONS(8986), + [anon_sym_noreturn] = ACTIONS(7953), + [anon_sym_LBRACK] = ACTIONS(7955), + [anon_sym___based] = ACTIONS(7953), + [anon_sym_LBRACE] = ACTIONS(7955), + [anon_sym_signed] = ACTIONS(7953), + [anon_sym_unsigned] = ACTIONS(7953), + [anon_sym_long] = ACTIONS(7953), + [anon_sym_short] = ACTIONS(7953), + [anon_sym_ATautoreleasepool] = ACTIONS(7955), + [anon_sym_const] = ACTIONS(7953), + [anon_sym_constexpr] = ACTIONS(7953), + [anon_sym_volatile] = ACTIONS(7953), + [anon_sym_restrict] = ACTIONS(7953), + [anon_sym___restrict__] = ACTIONS(7953), + [anon_sym__Atomic] = ACTIONS(7953), + [anon_sym__Noreturn] = ACTIONS(7953), + [anon_sym__Nonnull] = ACTIONS(7953), + [anon_sym_nullable] = ACTIONS(7953), + [anon_sym__Complex] = ACTIONS(7953), + [anon_sym__Nullable] = ACTIONS(7953), + [anon_sym__Nullable_result] = ACTIONS(7953), + [anon_sym__Null_unspecified] = ACTIONS(7953), + [anon_sym___autoreleasing] = ACTIONS(7953), + [anon_sym___block] = ACTIONS(7953), + [anon_sym___bridge] = ACTIONS(7953), + [anon_sym___bridge_retained] = ACTIONS(7953), + [anon_sym___bridge_transfer] = ACTIONS(7953), + [anon_sym___complex] = ACTIONS(7953), + [anon_sym___const] = ACTIONS(7953), + [anon_sym___imag] = ACTIONS(7953), + [anon_sym___kindof] = ACTIONS(7953), + [anon_sym___nonnull] = ACTIONS(7953), + [anon_sym___nullable] = ACTIONS(7953), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7953), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7953), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7953), + [anon_sym___real] = ACTIONS(7953), + [anon_sym___strong] = ACTIONS(7953), + [anon_sym___unsafe_unretained] = ACTIONS(7953), + [anon_sym___unused] = ACTIONS(7953), + [anon_sym___weak] = ACTIONS(7953), + [anon_sym_alignas] = ACTIONS(7953), + [anon_sym__Alignas] = ACTIONS(7953), + [sym_primitive_type] = ACTIONS(7953), + [anon_sym_enum] = ACTIONS(7953), + [anon_sym_struct] = ACTIONS(7953), + [anon_sym_union] = ACTIONS(7953), + [anon_sym_in] = ACTIONS(7953), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7953), + [anon_sym___typeof] = ACTIONS(7953), + [anon_sym_typeof] = ACTIONS(7953), + [anon_sym_BOOL] = ACTIONS(7953), + [anon_sym_IMP] = ACTIONS(7953), + [anon_sym_SEL] = ACTIONS(7953), + [anon_sym_Class] = ACTIONS(7953), + [anon_sym_id] = ACTIONS(7953), + [anon_sym_out] = ACTIONS(7953), + [anon_sym_inout] = ACTIONS(7953), + [anon_sym_bycopy] = ACTIONS(7953), + [anon_sym_byref] = ACTIONS(7953), + [anon_sym_oneway] = ACTIONS(7953), + }, + [3868] = { + [sym_identifier] = ACTIONS(4914), + [anon_sym_COMMA] = ACTIONS(4916), + [anon_sym_RPAREN] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_CARET] = ACTIONS(4916), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_LT] = ACTIONS(4916), + [anon_sym___extension__] = ACTIONS(4914), + [anon_sym___attribute__] = ACTIONS(4914), + [anon_sym___attribute] = ACTIONS(4914), + [anon_sym_noreturn] = ACTIONS(4914), + [anon_sym_LBRACK] = ACTIONS(4916), + [anon_sym___based] = ACTIONS(4914), + [anon_sym_LBRACE] = ACTIONS(4916), + [anon_sym_signed] = ACTIONS(4914), + [anon_sym_unsigned] = ACTIONS(4914), + [anon_sym_long] = ACTIONS(4914), + [anon_sym_short] = ACTIONS(4914), + [anon_sym_ATautoreleasepool] = ACTIONS(4916), + [anon_sym_const] = ACTIONS(4914), + [anon_sym_constexpr] = ACTIONS(4914), + [anon_sym_volatile] = ACTIONS(4914), + [anon_sym_restrict] = ACTIONS(4914), + [anon_sym___restrict__] = ACTIONS(4914), + [anon_sym__Atomic] = ACTIONS(4914), + [anon_sym__Noreturn] = ACTIONS(4914), + [anon_sym__Nonnull] = ACTIONS(4914), + [anon_sym_nullable] = ACTIONS(4914), + [anon_sym__Complex] = ACTIONS(4914), + [anon_sym__Nullable] = ACTIONS(4914), + [anon_sym__Nullable_result] = ACTIONS(4914), + [anon_sym__Null_unspecified] = ACTIONS(4914), + [anon_sym___autoreleasing] = ACTIONS(4914), + [anon_sym___block] = ACTIONS(4914), + [anon_sym___bridge] = ACTIONS(4914), + [anon_sym___bridge_retained] = ACTIONS(4914), + [anon_sym___bridge_transfer] = ACTIONS(4914), + [anon_sym___complex] = ACTIONS(4914), + [anon_sym___const] = ACTIONS(4914), + [anon_sym___imag] = ACTIONS(4914), + [anon_sym___kindof] = ACTIONS(4914), + [anon_sym___nonnull] = ACTIONS(4914), + [anon_sym___nullable] = ACTIONS(4914), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4914), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4914), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4914), + [anon_sym___real] = ACTIONS(4914), + [anon_sym___strong] = ACTIONS(4914), + [anon_sym___unsafe_unretained] = ACTIONS(4914), + [anon_sym___unused] = ACTIONS(4914), + [anon_sym___weak] = ACTIONS(4914), + [anon_sym_alignas] = ACTIONS(4914), + [anon_sym__Alignas] = ACTIONS(4914), + [sym_primitive_type] = ACTIONS(4914), + [anon_sym_enum] = ACTIONS(4914), + [anon_sym_COLON] = ACTIONS(4916), + [anon_sym_struct] = ACTIONS(4914), + [anon_sym_union] = ACTIONS(4914), + [anon_sym_in] = ACTIONS(4914), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4914), + [anon_sym___typeof] = ACTIONS(4914), + [anon_sym_typeof] = ACTIONS(4914), + [anon_sym_BOOL] = ACTIONS(4914), + [anon_sym_IMP] = ACTIONS(4914), + [anon_sym_SEL] = ACTIONS(4914), + [anon_sym_Class] = ACTIONS(4914), + [anon_sym_id] = ACTIONS(4914), + [anon_sym_out] = ACTIONS(4914), + [anon_sym_inout] = ACTIONS(4914), + [anon_sym_bycopy] = ACTIONS(4914), + [anon_sym_byref] = ACTIONS(4914), + [anon_sym_oneway] = ACTIONS(4914), + }, + [3869] = { + [sym_identifier] = ACTIONS(7197), + [anon_sym_COMMA] = ACTIONS(7199), + [anon_sym_RPAREN] = ACTIONS(7199), + [anon_sym_LPAREN2] = ACTIONS(7199), + [anon_sym_STAR] = ACTIONS(7199), + [anon_sym_CARET] = ACTIONS(7199), + [anon_sym_GT] = ACTIONS(7199), + [anon_sym_LT] = ACTIONS(7199), + [anon_sym___extension__] = ACTIONS(7197), + [anon_sym___attribute__] = ACTIONS(7197), + [anon_sym___attribute] = ACTIONS(7197), + [anon_sym_noreturn] = ACTIONS(7197), + [anon_sym_LBRACK] = ACTIONS(7199), + [anon_sym___based] = ACTIONS(7197), + [anon_sym_LBRACE] = ACTIONS(7199), + [anon_sym_signed] = ACTIONS(7197), + [anon_sym_unsigned] = ACTIONS(7197), + [anon_sym_long] = ACTIONS(7197), + [anon_sym_short] = ACTIONS(7197), + [anon_sym_ATautoreleasepool] = ACTIONS(7199), + [anon_sym_const] = ACTIONS(7197), + [anon_sym_constexpr] = ACTIONS(7197), + [anon_sym_volatile] = ACTIONS(7197), + [anon_sym_restrict] = ACTIONS(7197), + [anon_sym___restrict__] = ACTIONS(7197), + [anon_sym__Atomic] = ACTIONS(7197), + [anon_sym__Noreturn] = ACTIONS(7197), + [anon_sym__Nonnull] = ACTIONS(7197), + [anon_sym_nullable] = ACTIONS(7197), + [anon_sym__Complex] = ACTIONS(7197), + [anon_sym__Nullable] = ACTIONS(7197), + [anon_sym__Nullable_result] = ACTIONS(7197), + [anon_sym__Null_unspecified] = ACTIONS(7197), + [anon_sym___autoreleasing] = ACTIONS(7197), + [anon_sym___block] = ACTIONS(7197), + [anon_sym___bridge] = ACTIONS(7197), + [anon_sym___bridge_retained] = ACTIONS(7197), + [anon_sym___bridge_transfer] = ACTIONS(7197), + [anon_sym___complex] = ACTIONS(7197), + [anon_sym___const] = ACTIONS(7197), + [anon_sym___imag] = ACTIONS(7197), + [anon_sym___kindof] = ACTIONS(7197), + [anon_sym___nonnull] = ACTIONS(7197), + [anon_sym___nullable] = ACTIONS(7197), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7197), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7197), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7197), + [anon_sym___real] = ACTIONS(7197), + [anon_sym___strong] = ACTIONS(7197), + [anon_sym___unsafe_unretained] = ACTIONS(7197), + [anon_sym___unused] = ACTIONS(7197), + [anon_sym___weak] = ACTIONS(7197), + [anon_sym_alignas] = ACTIONS(7197), + [anon_sym__Alignas] = ACTIONS(7197), + [sym_primitive_type] = ACTIONS(7197), + [anon_sym_enum] = ACTIONS(7197), + [anon_sym_COLON] = ACTIONS(7199), + [anon_sym_struct] = ACTIONS(7197), + [anon_sym_union] = ACTIONS(7197), + [anon_sym_in] = ACTIONS(7197), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7197), + [anon_sym___typeof] = ACTIONS(7197), + [anon_sym_typeof] = ACTIONS(7197), + [anon_sym_BOOL] = ACTIONS(7197), + [anon_sym_IMP] = ACTIONS(7197), + [anon_sym_SEL] = ACTIONS(7197), + [anon_sym_Class] = ACTIONS(7197), + [anon_sym_id] = ACTIONS(7197), + [anon_sym_out] = ACTIONS(7197), + [anon_sym_inout] = ACTIONS(7197), + [anon_sym_bycopy] = ACTIONS(7197), + [anon_sym_byref] = ACTIONS(7197), + [anon_sym_oneway] = ACTIONS(7197), + }, + [3870] = { + [sym_identifier] = ACTIONS(7274), + [anon_sym_COMMA] = ACTIONS(7276), + [anon_sym_RPAREN] = ACTIONS(7276), + [anon_sym_LPAREN2] = ACTIONS(7276), + [anon_sym_STAR] = ACTIONS(7276), + [anon_sym_CARET] = ACTIONS(7276), + [anon_sym_GT] = ACTIONS(7276), + [anon_sym_LT] = ACTIONS(7276), + [anon_sym___extension__] = ACTIONS(7274), + [anon_sym___attribute__] = ACTIONS(7274), + [anon_sym___attribute] = ACTIONS(7274), + [anon_sym_noreturn] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(7276), + [anon_sym___based] = ACTIONS(7274), + [anon_sym_LBRACE] = ACTIONS(7276), + [anon_sym_signed] = ACTIONS(7274), + [anon_sym_unsigned] = ACTIONS(7274), + [anon_sym_long] = ACTIONS(7274), + [anon_sym_short] = ACTIONS(7274), + [anon_sym_ATautoreleasepool] = ACTIONS(7276), + [anon_sym_const] = ACTIONS(7274), + [anon_sym_constexpr] = ACTIONS(7274), + [anon_sym_volatile] = ACTIONS(7274), + [anon_sym_restrict] = ACTIONS(7274), + [anon_sym___restrict__] = ACTIONS(7274), + [anon_sym__Atomic] = ACTIONS(7274), + [anon_sym__Noreturn] = ACTIONS(7274), + [anon_sym__Nonnull] = ACTIONS(7274), + [anon_sym_nullable] = ACTIONS(7274), + [anon_sym__Complex] = ACTIONS(7274), + [anon_sym__Nullable] = ACTIONS(7274), + [anon_sym__Nullable_result] = ACTIONS(7274), + [anon_sym__Null_unspecified] = ACTIONS(7274), + [anon_sym___autoreleasing] = ACTIONS(7274), + [anon_sym___block] = ACTIONS(7274), + [anon_sym___bridge] = ACTIONS(7274), + [anon_sym___bridge_retained] = ACTIONS(7274), + [anon_sym___bridge_transfer] = ACTIONS(7274), + [anon_sym___complex] = ACTIONS(7274), + [anon_sym___const] = ACTIONS(7274), + [anon_sym___imag] = ACTIONS(7274), + [anon_sym___kindof] = ACTIONS(7274), + [anon_sym___nonnull] = ACTIONS(7274), + [anon_sym___nullable] = ACTIONS(7274), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7274), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7274), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7274), + [anon_sym___real] = ACTIONS(7274), + [anon_sym___strong] = ACTIONS(7274), + [anon_sym___unsafe_unretained] = ACTIONS(7274), + [anon_sym___unused] = ACTIONS(7274), + [anon_sym___weak] = ACTIONS(7274), + [anon_sym_alignas] = ACTIONS(7274), + [anon_sym__Alignas] = ACTIONS(7274), + [sym_primitive_type] = ACTIONS(7274), + [anon_sym_enum] = ACTIONS(7274), + [anon_sym_COLON] = ACTIONS(7276), + [anon_sym_struct] = ACTIONS(7274), + [anon_sym_union] = ACTIONS(7274), + [anon_sym_in] = ACTIONS(7274), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7274), + [anon_sym___typeof] = ACTIONS(7274), + [anon_sym_typeof] = ACTIONS(7274), + [anon_sym_BOOL] = ACTIONS(7274), + [anon_sym_IMP] = ACTIONS(7274), + [anon_sym_SEL] = ACTIONS(7274), + [anon_sym_Class] = ACTIONS(7274), + [anon_sym_id] = ACTIONS(7274), + [anon_sym_out] = ACTIONS(7274), + [anon_sym_inout] = ACTIONS(7274), + [anon_sym_bycopy] = ACTIONS(7274), + [anon_sym_byref] = ACTIONS(7274), + [anon_sym_oneway] = ACTIONS(7274), + }, + [3871] = { + [sym_identifier] = ACTIONS(7326), + [anon_sym_COMMA] = ACTIONS(7328), + [anon_sym_RPAREN] = ACTIONS(7328), + [anon_sym_LPAREN2] = ACTIONS(7328), + [anon_sym_STAR] = ACTIONS(7328), + [anon_sym_CARET] = ACTIONS(7328), + [anon_sym_GT] = ACTIONS(7328), + [anon_sym_LT] = ACTIONS(7328), + [anon_sym___extension__] = ACTIONS(7326), + [anon_sym___attribute__] = ACTIONS(7326), + [anon_sym___attribute] = ACTIONS(7326), + [anon_sym_noreturn] = ACTIONS(7326), + [anon_sym_LBRACK] = ACTIONS(7328), + [anon_sym___based] = ACTIONS(7326), + [anon_sym_LBRACE] = ACTIONS(7328), + [anon_sym_signed] = ACTIONS(7326), + [anon_sym_unsigned] = ACTIONS(7326), + [anon_sym_long] = ACTIONS(7326), + [anon_sym_short] = ACTIONS(7326), + [anon_sym_ATautoreleasepool] = ACTIONS(7328), + [anon_sym_const] = ACTIONS(7326), + [anon_sym_constexpr] = ACTIONS(7326), + [anon_sym_volatile] = ACTIONS(7326), + [anon_sym_restrict] = ACTIONS(7326), + [anon_sym___restrict__] = ACTIONS(7326), + [anon_sym__Atomic] = ACTIONS(7326), + [anon_sym__Noreturn] = ACTIONS(7326), + [anon_sym__Nonnull] = ACTIONS(7326), + [anon_sym_nullable] = ACTIONS(7326), + [anon_sym__Complex] = ACTIONS(7326), + [anon_sym__Nullable] = ACTIONS(7326), + [anon_sym__Nullable_result] = ACTIONS(7326), + [anon_sym__Null_unspecified] = ACTIONS(7326), + [anon_sym___autoreleasing] = ACTIONS(7326), + [anon_sym___block] = ACTIONS(7326), + [anon_sym___bridge] = ACTIONS(7326), + [anon_sym___bridge_retained] = ACTIONS(7326), + [anon_sym___bridge_transfer] = ACTIONS(7326), + [anon_sym___complex] = ACTIONS(7326), + [anon_sym___const] = ACTIONS(7326), + [anon_sym___imag] = ACTIONS(7326), + [anon_sym___kindof] = ACTIONS(7326), + [anon_sym___nonnull] = ACTIONS(7326), + [anon_sym___nullable] = ACTIONS(7326), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7326), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7326), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7326), + [anon_sym___real] = ACTIONS(7326), + [anon_sym___strong] = ACTIONS(7326), + [anon_sym___unsafe_unretained] = ACTIONS(7326), + [anon_sym___unused] = ACTIONS(7326), + [anon_sym___weak] = ACTIONS(7326), + [anon_sym_alignas] = ACTIONS(7326), + [anon_sym__Alignas] = ACTIONS(7326), + [sym_primitive_type] = ACTIONS(7326), + [anon_sym_enum] = ACTIONS(7326), + [anon_sym_COLON] = ACTIONS(7328), + [anon_sym_struct] = ACTIONS(7326), + [anon_sym_union] = ACTIONS(7326), + [anon_sym_in] = ACTIONS(7326), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7326), + [anon_sym___typeof] = ACTIONS(7326), + [anon_sym_typeof] = ACTIONS(7326), + [anon_sym_BOOL] = ACTIONS(7326), + [anon_sym_IMP] = ACTIONS(7326), + [anon_sym_SEL] = ACTIONS(7326), + [anon_sym_Class] = ACTIONS(7326), + [anon_sym_id] = ACTIONS(7326), + [anon_sym_out] = ACTIONS(7326), + [anon_sym_inout] = ACTIONS(7326), + [anon_sym_bycopy] = ACTIONS(7326), + [anon_sym_byref] = ACTIONS(7326), + [anon_sym_oneway] = ACTIONS(7326), + }, + [3872] = { + [sym_identifier] = ACTIONS(5630), + [anon_sym_COMMA] = ACTIONS(5632), + [anon_sym_RPAREN] = ACTIONS(5632), + [anon_sym_LPAREN2] = ACTIONS(5632), + [anon_sym_STAR] = ACTIONS(5632), + [anon_sym_CARET] = ACTIONS(5632), + [anon_sym_GT] = ACTIONS(5632), + [anon_sym_LT] = ACTIONS(5632), + [anon_sym___extension__] = ACTIONS(5630), + [anon_sym___attribute__] = ACTIONS(5630), + [anon_sym___attribute] = ACTIONS(5630), + [anon_sym_noreturn] = ACTIONS(5630), + [anon_sym_LBRACK] = ACTIONS(5632), + [anon_sym___based] = ACTIONS(5630), + [anon_sym_LBRACE] = ACTIONS(5632), + [anon_sym_signed] = ACTIONS(5630), + [anon_sym_unsigned] = ACTIONS(5630), + [anon_sym_long] = ACTIONS(5630), + [anon_sym_short] = ACTIONS(5630), + [anon_sym_ATautoreleasepool] = ACTIONS(5632), + [anon_sym_const] = ACTIONS(5630), + [anon_sym_constexpr] = ACTIONS(5630), + [anon_sym_volatile] = ACTIONS(5630), + [anon_sym_restrict] = ACTIONS(5630), + [anon_sym___restrict__] = ACTIONS(5630), + [anon_sym__Atomic] = ACTIONS(5630), + [anon_sym__Noreturn] = ACTIONS(5630), + [anon_sym__Nonnull] = ACTIONS(5630), + [anon_sym_nullable] = ACTIONS(5630), + [anon_sym__Complex] = ACTIONS(5630), + [anon_sym__Nullable] = ACTIONS(5630), + [anon_sym__Nullable_result] = ACTIONS(5630), + [anon_sym__Null_unspecified] = ACTIONS(5630), + [anon_sym___autoreleasing] = ACTIONS(5630), + [anon_sym___block] = ACTIONS(5630), + [anon_sym___bridge] = ACTIONS(5630), + [anon_sym___bridge_retained] = ACTIONS(5630), + [anon_sym___bridge_transfer] = ACTIONS(5630), + [anon_sym___complex] = ACTIONS(5630), + [anon_sym___const] = ACTIONS(5630), + [anon_sym___imag] = ACTIONS(5630), + [anon_sym___kindof] = ACTIONS(5630), + [anon_sym___nonnull] = ACTIONS(5630), + [anon_sym___nullable] = ACTIONS(5630), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5630), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5630), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5630), + [anon_sym___real] = ACTIONS(5630), + [anon_sym___strong] = ACTIONS(5630), + [anon_sym___unsafe_unretained] = ACTIONS(5630), + [anon_sym___unused] = ACTIONS(5630), + [anon_sym___weak] = ACTIONS(5630), + [anon_sym_alignas] = ACTIONS(5630), + [anon_sym__Alignas] = ACTIONS(5630), + [sym_primitive_type] = ACTIONS(5630), + [anon_sym_enum] = ACTIONS(5630), + [anon_sym_COLON] = ACTIONS(5632), + [anon_sym_struct] = ACTIONS(5630), + [anon_sym_union] = ACTIONS(5630), + [anon_sym_in] = ACTIONS(5630), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5630), + [anon_sym___typeof] = ACTIONS(5630), + [anon_sym_typeof] = ACTIONS(5630), + [anon_sym_BOOL] = ACTIONS(5630), + [anon_sym_IMP] = ACTIONS(5630), + [anon_sym_SEL] = ACTIONS(5630), + [anon_sym_Class] = ACTIONS(5630), + [anon_sym_id] = ACTIONS(5630), + [anon_sym_out] = ACTIONS(5630), + [anon_sym_inout] = ACTIONS(5630), + [anon_sym_bycopy] = ACTIONS(5630), + [anon_sym_byref] = ACTIONS(5630), + [anon_sym_oneway] = ACTIONS(5630), + }, + [3873] = { + [sym_identifier] = ACTIONS(7464), + [anon_sym_COMMA] = ACTIONS(7466), + [anon_sym_RPAREN] = ACTIONS(7466), + [anon_sym_LPAREN2] = ACTIONS(7466), + [anon_sym_STAR] = ACTIONS(7466), + [anon_sym_CARET] = ACTIONS(7466), + [anon_sym_GT] = ACTIONS(7466), + [anon_sym_LT] = ACTIONS(7466), + [anon_sym___extension__] = ACTIONS(7464), + [anon_sym___attribute__] = ACTIONS(7464), + [anon_sym___attribute] = ACTIONS(7464), + [anon_sym_noreturn] = ACTIONS(7464), + [anon_sym_LBRACK] = ACTIONS(7466), + [anon_sym___based] = ACTIONS(7464), + [anon_sym_LBRACE] = ACTIONS(7466), + [anon_sym_signed] = ACTIONS(7464), + [anon_sym_unsigned] = ACTIONS(7464), + [anon_sym_long] = ACTIONS(7464), + [anon_sym_short] = ACTIONS(7464), + [anon_sym_ATautoreleasepool] = ACTIONS(7466), + [anon_sym_const] = ACTIONS(7464), + [anon_sym_constexpr] = ACTIONS(7464), + [anon_sym_volatile] = ACTIONS(7464), + [anon_sym_restrict] = ACTIONS(7464), + [anon_sym___restrict__] = ACTIONS(7464), + [anon_sym__Atomic] = ACTIONS(7464), + [anon_sym__Noreturn] = ACTIONS(7464), + [anon_sym__Nonnull] = ACTIONS(7464), + [anon_sym_nullable] = ACTIONS(7464), + [anon_sym__Complex] = ACTIONS(7464), + [anon_sym__Nullable] = ACTIONS(7464), + [anon_sym__Nullable_result] = ACTIONS(7464), + [anon_sym__Null_unspecified] = ACTIONS(7464), + [anon_sym___autoreleasing] = ACTIONS(7464), + [anon_sym___block] = ACTIONS(7464), + [anon_sym___bridge] = ACTIONS(7464), + [anon_sym___bridge_retained] = ACTIONS(7464), + [anon_sym___bridge_transfer] = ACTIONS(7464), + [anon_sym___complex] = ACTIONS(7464), + [anon_sym___const] = ACTIONS(7464), + [anon_sym___imag] = ACTIONS(7464), + [anon_sym___kindof] = ACTIONS(7464), + [anon_sym___nonnull] = ACTIONS(7464), + [anon_sym___nullable] = ACTIONS(7464), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7464), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7464), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7464), + [anon_sym___real] = ACTIONS(7464), + [anon_sym___strong] = ACTIONS(7464), + [anon_sym___unsafe_unretained] = ACTIONS(7464), + [anon_sym___unused] = ACTIONS(7464), + [anon_sym___weak] = ACTIONS(7464), + [anon_sym_alignas] = ACTIONS(7464), + [anon_sym__Alignas] = ACTIONS(7464), + [sym_primitive_type] = ACTIONS(7464), + [anon_sym_enum] = ACTIONS(7464), + [anon_sym_COLON] = ACTIONS(7466), + [anon_sym_struct] = ACTIONS(7464), + [anon_sym_union] = ACTIONS(7464), + [anon_sym_in] = ACTIONS(7464), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7464), + [anon_sym___typeof] = ACTIONS(7464), + [anon_sym_typeof] = ACTIONS(7464), + [anon_sym_BOOL] = ACTIONS(7464), + [anon_sym_IMP] = ACTIONS(7464), + [anon_sym_SEL] = ACTIONS(7464), + [anon_sym_Class] = ACTIONS(7464), + [anon_sym_id] = ACTIONS(7464), + [anon_sym_out] = ACTIONS(7464), + [anon_sym_inout] = ACTIONS(7464), + [anon_sym_bycopy] = ACTIONS(7464), + [anon_sym_byref] = ACTIONS(7464), + [anon_sym_oneway] = ACTIONS(7464), + }, + [3874] = { + [sym_identifier] = ACTIONS(7270), + [anon_sym_COMMA] = ACTIONS(7272), + [anon_sym_RPAREN] = ACTIONS(7272), + [anon_sym_LPAREN2] = ACTIONS(7272), + [anon_sym_STAR] = ACTIONS(7272), + [anon_sym_CARET] = ACTIONS(7272), + [anon_sym_GT] = ACTIONS(7272), + [anon_sym_LT] = ACTIONS(7272), + [anon_sym___extension__] = ACTIONS(7270), + [anon_sym___attribute__] = ACTIONS(7270), + [anon_sym___attribute] = ACTIONS(7270), + [anon_sym_noreturn] = ACTIONS(7270), + [anon_sym_LBRACK] = ACTIONS(7272), + [anon_sym___based] = ACTIONS(7270), + [anon_sym_LBRACE] = ACTIONS(7272), + [anon_sym_signed] = ACTIONS(7270), + [anon_sym_unsigned] = ACTIONS(7270), + [anon_sym_long] = ACTIONS(7270), + [anon_sym_short] = ACTIONS(7270), + [anon_sym_ATautoreleasepool] = ACTIONS(7272), + [anon_sym_const] = ACTIONS(7270), + [anon_sym_constexpr] = ACTIONS(7270), + [anon_sym_volatile] = ACTIONS(7270), + [anon_sym_restrict] = ACTIONS(7270), + [anon_sym___restrict__] = ACTIONS(7270), + [anon_sym__Atomic] = ACTIONS(7270), + [anon_sym__Noreturn] = ACTIONS(7270), + [anon_sym__Nonnull] = ACTIONS(7270), + [anon_sym_nullable] = ACTIONS(7270), + [anon_sym__Complex] = ACTIONS(7270), + [anon_sym__Nullable] = ACTIONS(7270), + [anon_sym__Nullable_result] = ACTIONS(7270), + [anon_sym__Null_unspecified] = ACTIONS(7270), + [anon_sym___autoreleasing] = ACTIONS(7270), + [anon_sym___block] = ACTIONS(7270), + [anon_sym___bridge] = ACTIONS(7270), + [anon_sym___bridge_retained] = ACTIONS(7270), + [anon_sym___bridge_transfer] = ACTIONS(7270), + [anon_sym___complex] = ACTIONS(7270), + [anon_sym___const] = ACTIONS(7270), + [anon_sym___imag] = ACTIONS(7270), + [anon_sym___kindof] = ACTIONS(7270), + [anon_sym___nonnull] = ACTIONS(7270), + [anon_sym___nullable] = ACTIONS(7270), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7270), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7270), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7270), + [anon_sym___real] = ACTIONS(7270), + [anon_sym___strong] = ACTIONS(7270), + [anon_sym___unsafe_unretained] = ACTIONS(7270), + [anon_sym___unused] = ACTIONS(7270), + [anon_sym___weak] = ACTIONS(7270), + [anon_sym_alignas] = ACTIONS(7270), + [anon_sym__Alignas] = ACTIONS(7270), + [sym_primitive_type] = ACTIONS(7270), + [anon_sym_enum] = ACTIONS(7270), + [anon_sym_COLON] = ACTIONS(7272), + [anon_sym_struct] = ACTIONS(7270), + [anon_sym_union] = ACTIONS(7270), + [anon_sym_in] = ACTIONS(7270), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7270), + [anon_sym___typeof] = ACTIONS(7270), + [anon_sym_typeof] = ACTIONS(7270), + [anon_sym_BOOL] = ACTIONS(7270), + [anon_sym_IMP] = ACTIONS(7270), + [anon_sym_SEL] = ACTIONS(7270), + [anon_sym_Class] = ACTIONS(7270), + [anon_sym_id] = ACTIONS(7270), + [anon_sym_out] = ACTIONS(7270), + [anon_sym_inout] = ACTIONS(7270), + [anon_sym_bycopy] = ACTIONS(7270), + [anon_sym_byref] = ACTIONS(7270), + [anon_sym_oneway] = ACTIONS(7270), + }, + [3875] = { + [sym_attribute_specifier] = STATE(3862), + [sym_enumerator_list] = STATE(3904), + [sym_identifier] = ACTIONS(7659), + [anon_sym_COMMA] = ACTIONS(7661), + [anon_sym_RPAREN] = ACTIONS(7661), + [anon_sym_LPAREN2] = ACTIONS(7661), + [anon_sym_STAR] = ACTIONS(7661), + [anon_sym_CARET] = ACTIONS(7661), + [anon_sym_GT] = ACTIONS(7661), + [anon_sym_LT] = ACTIONS(7661), + [anon_sym___extension__] = ACTIONS(7659), + [anon_sym___attribute__] = ACTIONS(8989), + [anon_sym___attribute] = ACTIONS(8989), + [anon_sym_noreturn] = ACTIONS(7659), + [anon_sym_LBRACK] = ACTIONS(7661), + [anon_sym___based] = ACTIONS(7659), + [anon_sym_LBRACE] = ACTIONS(8913), + [anon_sym_signed] = ACTIONS(7659), + [anon_sym_unsigned] = ACTIONS(7659), + [anon_sym_long] = ACTIONS(7659), + [anon_sym_short] = ACTIONS(7659), + [anon_sym_const] = ACTIONS(7659), + [anon_sym_constexpr] = ACTIONS(7659), + [anon_sym_volatile] = ACTIONS(7659), + [anon_sym_restrict] = ACTIONS(7659), + [anon_sym___restrict__] = ACTIONS(7659), + [anon_sym__Atomic] = ACTIONS(7659), + [anon_sym__Noreturn] = ACTIONS(7659), + [anon_sym__Nonnull] = ACTIONS(7659), + [anon_sym_nullable] = ACTIONS(7659), + [anon_sym__Complex] = ACTIONS(7659), + [anon_sym__Nullable] = ACTIONS(7659), + [anon_sym__Nullable_result] = ACTIONS(7659), + [anon_sym__Null_unspecified] = ACTIONS(7659), + [anon_sym___autoreleasing] = ACTIONS(7659), + [anon_sym___block] = ACTIONS(7659), + [anon_sym___bridge] = ACTIONS(7659), + [anon_sym___bridge_retained] = ACTIONS(7659), + [anon_sym___bridge_transfer] = ACTIONS(7659), + [anon_sym___complex] = ACTIONS(7659), + [anon_sym___const] = ACTIONS(7659), + [anon_sym___imag] = ACTIONS(7659), + [anon_sym___kindof] = ACTIONS(7659), + [anon_sym___nonnull] = ACTIONS(7659), + [anon_sym___nullable] = ACTIONS(7659), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7659), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7659), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7659), + [anon_sym___real] = ACTIONS(7659), + [anon_sym___strong] = ACTIONS(7659), + [anon_sym___unsafe_unretained] = ACTIONS(7659), + [anon_sym___unused] = ACTIONS(7659), + [anon_sym___weak] = ACTIONS(7659), + [anon_sym_alignas] = ACTIONS(7659), + [anon_sym__Alignas] = ACTIONS(7659), + [sym_primitive_type] = ACTIONS(7659), + [anon_sym_enum] = ACTIONS(7659), + [anon_sym_struct] = ACTIONS(7659), + [anon_sym_union] = ACTIONS(7659), + [anon_sym_in] = ACTIONS(7659), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7659), + [anon_sym___typeof] = ACTIONS(7659), + [anon_sym_typeof] = ACTIONS(7659), + [anon_sym_BOOL] = ACTIONS(7659), + [anon_sym_IMP] = ACTIONS(7659), + [anon_sym_SEL] = ACTIONS(7659), + [anon_sym_Class] = ACTIONS(7659), + [anon_sym_id] = ACTIONS(7659), + [anon_sym_out] = ACTIONS(7659), + [anon_sym_inout] = ACTIONS(7659), + [anon_sym_bycopy] = ACTIONS(7659), + [anon_sym_byref] = ACTIONS(7659), + [anon_sym_oneway] = ACTIONS(7659), + }, + [3876] = { + [sym_attribute_specifier] = STATE(3865), + [sym_enumerator_list] = STATE(3905), + [sym_identifier] = ACTIONS(7668), + [anon_sym_COMMA] = ACTIONS(7670), + [anon_sym_RPAREN] = ACTIONS(7670), + [anon_sym_LPAREN2] = ACTIONS(7670), + [anon_sym_STAR] = ACTIONS(7670), + [anon_sym_CARET] = ACTIONS(7670), + [anon_sym_GT] = ACTIONS(7670), + [anon_sym_LT] = ACTIONS(7670), + [anon_sym___extension__] = ACTIONS(7668), + [anon_sym___attribute__] = ACTIONS(8992), + [anon_sym___attribute] = ACTIONS(8992), + [anon_sym_noreturn] = ACTIONS(7668), + [anon_sym_LBRACK] = ACTIONS(7670), + [anon_sym___based] = ACTIONS(7668), + [anon_sym_LBRACE] = ACTIONS(8913), + [anon_sym_signed] = ACTIONS(7668), + [anon_sym_unsigned] = ACTIONS(7668), + [anon_sym_long] = ACTIONS(7668), + [anon_sym_short] = ACTIONS(7668), + [anon_sym_const] = ACTIONS(7668), + [anon_sym_constexpr] = ACTIONS(7668), + [anon_sym_volatile] = ACTIONS(7668), + [anon_sym_restrict] = ACTIONS(7668), + [anon_sym___restrict__] = ACTIONS(7668), + [anon_sym__Atomic] = ACTIONS(7668), + [anon_sym__Noreturn] = ACTIONS(7668), + [anon_sym__Nonnull] = ACTIONS(7668), + [anon_sym_nullable] = ACTIONS(7668), + [anon_sym__Complex] = ACTIONS(7668), + [anon_sym__Nullable] = ACTIONS(7668), + [anon_sym__Nullable_result] = ACTIONS(7668), + [anon_sym__Null_unspecified] = ACTIONS(7668), + [anon_sym___autoreleasing] = ACTIONS(7668), + [anon_sym___block] = ACTIONS(7668), + [anon_sym___bridge] = ACTIONS(7668), + [anon_sym___bridge_retained] = ACTIONS(7668), + [anon_sym___bridge_transfer] = ACTIONS(7668), + [anon_sym___complex] = ACTIONS(7668), + [anon_sym___const] = ACTIONS(7668), + [anon_sym___imag] = ACTIONS(7668), + [anon_sym___kindof] = ACTIONS(7668), + [anon_sym___nonnull] = ACTIONS(7668), + [anon_sym___nullable] = ACTIONS(7668), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7668), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7668), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7668), + [anon_sym___real] = ACTIONS(7668), + [anon_sym___strong] = ACTIONS(7668), + [anon_sym___unsafe_unretained] = ACTIONS(7668), + [anon_sym___unused] = ACTIONS(7668), + [anon_sym___weak] = ACTIONS(7668), + [anon_sym_alignas] = ACTIONS(7668), + [anon_sym__Alignas] = ACTIONS(7668), + [sym_primitive_type] = ACTIONS(7668), + [anon_sym_enum] = ACTIONS(7668), + [anon_sym_struct] = ACTIONS(7668), + [anon_sym_union] = ACTIONS(7668), + [anon_sym_in] = ACTIONS(7668), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7668), + [anon_sym___typeof] = ACTIONS(7668), + [anon_sym_typeof] = ACTIONS(7668), + [anon_sym_BOOL] = ACTIONS(7668), + [anon_sym_IMP] = ACTIONS(7668), + [anon_sym_SEL] = ACTIONS(7668), + [anon_sym_Class] = ACTIONS(7668), + [anon_sym_id] = ACTIONS(7668), + [anon_sym_out] = ACTIONS(7668), + [anon_sym_inout] = ACTIONS(7668), + [anon_sym_bycopy] = ACTIONS(7668), + [anon_sym_byref] = ACTIONS(7668), + [anon_sym_oneway] = ACTIONS(7668), + }, + [3877] = { + [sym_identifier] = ACTIONS(7318), + [anon_sym_COMMA] = ACTIONS(7320), + [anon_sym_RPAREN] = ACTIONS(7320), + [anon_sym_LPAREN2] = ACTIONS(7320), + [anon_sym_STAR] = ACTIONS(7320), + [anon_sym_CARET] = ACTIONS(7320), + [anon_sym_GT] = ACTIONS(7320), + [anon_sym_LT] = ACTIONS(7320), + [anon_sym___extension__] = ACTIONS(7318), + [anon_sym___attribute__] = ACTIONS(7318), + [anon_sym___attribute] = ACTIONS(7318), + [anon_sym_noreturn] = ACTIONS(7318), + [anon_sym_LBRACK] = ACTIONS(7320), + [anon_sym___based] = ACTIONS(7318), + [anon_sym_LBRACE] = ACTIONS(7320), + [anon_sym_signed] = ACTIONS(7318), + [anon_sym_unsigned] = ACTIONS(7318), + [anon_sym_long] = ACTIONS(7318), + [anon_sym_short] = ACTIONS(7318), + [anon_sym_ATautoreleasepool] = ACTIONS(7320), + [anon_sym_const] = ACTIONS(7318), + [anon_sym_constexpr] = ACTIONS(7318), + [anon_sym_volatile] = ACTIONS(7318), + [anon_sym_restrict] = ACTIONS(7318), + [anon_sym___restrict__] = ACTIONS(7318), + [anon_sym__Atomic] = ACTIONS(7318), + [anon_sym__Noreturn] = ACTIONS(7318), + [anon_sym__Nonnull] = ACTIONS(7318), + [anon_sym_nullable] = ACTIONS(7318), + [anon_sym__Complex] = ACTIONS(7318), + [anon_sym__Nullable] = ACTIONS(7318), + [anon_sym__Nullable_result] = ACTIONS(7318), + [anon_sym__Null_unspecified] = ACTIONS(7318), + [anon_sym___autoreleasing] = ACTIONS(7318), + [anon_sym___block] = ACTIONS(7318), + [anon_sym___bridge] = ACTIONS(7318), + [anon_sym___bridge_retained] = ACTIONS(7318), + [anon_sym___bridge_transfer] = ACTIONS(7318), + [anon_sym___complex] = ACTIONS(7318), + [anon_sym___const] = ACTIONS(7318), + [anon_sym___imag] = ACTIONS(7318), + [anon_sym___kindof] = ACTIONS(7318), + [anon_sym___nonnull] = ACTIONS(7318), + [anon_sym___nullable] = ACTIONS(7318), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7318), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7318), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7318), + [anon_sym___real] = ACTIONS(7318), + [anon_sym___strong] = ACTIONS(7318), + [anon_sym___unsafe_unretained] = ACTIONS(7318), + [anon_sym___unused] = ACTIONS(7318), + [anon_sym___weak] = ACTIONS(7318), + [anon_sym_alignas] = ACTIONS(7318), + [anon_sym__Alignas] = ACTIONS(7318), + [sym_primitive_type] = ACTIONS(7318), + [anon_sym_enum] = ACTIONS(7318), + [anon_sym_COLON] = ACTIONS(7320), + [anon_sym_struct] = ACTIONS(7318), + [anon_sym_union] = ACTIONS(7318), + [anon_sym_in] = ACTIONS(7318), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7318), + [anon_sym___typeof] = ACTIONS(7318), + [anon_sym_typeof] = ACTIONS(7318), + [anon_sym_BOOL] = ACTIONS(7318), + [anon_sym_IMP] = ACTIONS(7318), + [anon_sym_SEL] = ACTIONS(7318), + [anon_sym_Class] = ACTIONS(7318), + [anon_sym_id] = ACTIONS(7318), + [anon_sym_out] = ACTIONS(7318), + [anon_sym_inout] = ACTIONS(7318), + [anon_sym_bycopy] = ACTIONS(7318), + [anon_sym_byref] = ACTIONS(7318), + [anon_sym_oneway] = ACTIONS(7318), + }, + [3878] = { + [sym_identifier] = ACTIONS(7278), + [anon_sym_COMMA] = ACTIONS(7280), + [anon_sym_RPAREN] = ACTIONS(7280), + [anon_sym_LPAREN2] = ACTIONS(7280), + [anon_sym_STAR] = ACTIONS(7280), + [anon_sym_CARET] = ACTIONS(7280), + [anon_sym_GT] = ACTIONS(7280), + [anon_sym_LT] = ACTIONS(7280), + [anon_sym___extension__] = ACTIONS(7278), + [anon_sym___attribute__] = ACTIONS(7278), + [anon_sym___attribute] = ACTIONS(7278), + [anon_sym_noreturn] = ACTIONS(7278), + [anon_sym_LBRACK] = ACTIONS(7280), + [anon_sym___based] = ACTIONS(7278), + [anon_sym_LBRACE] = ACTIONS(7280), + [anon_sym_signed] = ACTIONS(7278), + [anon_sym_unsigned] = ACTIONS(7278), + [anon_sym_long] = ACTIONS(7278), + [anon_sym_short] = ACTIONS(7278), + [anon_sym_ATautoreleasepool] = ACTIONS(7280), + [anon_sym_const] = ACTIONS(7278), + [anon_sym_constexpr] = ACTIONS(7278), + [anon_sym_volatile] = ACTIONS(7278), + [anon_sym_restrict] = ACTIONS(7278), + [anon_sym___restrict__] = ACTIONS(7278), + [anon_sym__Atomic] = ACTIONS(7278), + [anon_sym__Noreturn] = ACTIONS(7278), + [anon_sym__Nonnull] = ACTIONS(7278), + [anon_sym_nullable] = ACTIONS(7278), + [anon_sym__Complex] = ACTIONS(7278), + [anon_sym__Nullable] = ACTIONS(7278), + [anon_sym__Nullable_result] = ACTIONS(7278), + [anon_sym__Null_unspecified] = ACTIONS(7278), + [anon_sym___autoreleasing] = ACTIONS(7278), + [anon_sym___block] = ACTIONS(7278), + [anon_sym___bridge] = ACTIONS(7278), + [anon_sym___bridge_retained] = ACTIONS(7278), + [anon_sym___bridge_transfer] = ACTIONS(7278), + [anon_sym___complex] = ACTIONS(7278), + [anon_sym___const] = ACTIONS(7278), + [anon_sym___imag] = ACTIONS(7278), + [anon_sym___kindof] = ACTIONS(7278), + [anon_sym___nonnull] = ACTIONS(7278), + [anon_sym___nullable] = ACTIONS(7278), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7278), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7278), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7278), + [anon_sym___real] = ACTIONS(7278), + [anon_sym___strong] = ACTIONS(7278), + [anon_sym___unsafe_unretained] = ACTIONS(7278), + [anon_sym___unused] = ACTIONS(7278), + [anon_sym___weak] = ACTIONS(7278), + [anon_sym_alignas] = ACTIONS(7278), + [anon_sym__Alignas] = ACTIONS(7278), + [sym_primitive_type] = ACTIONS(7278), + [anon_sym_enum] = ACTIONS(7278), + [anon_sym_COLON] = ACTIONS(7280), + [anon_sym_struct] = ACTIONS(7278), + [anon_sym_union] = ACTIONS(7278), + [anon_sym_in] = ACTIONS(7278), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7278), + [anon_sym___typeof] = ACTIONS(7278), + [anon_sym_typeof] = ACTIONS(7278), + [anon_sym_BOOL] = ACTIONS(7278), + [anon_sym_IMP] = ACTIONS(7278), + [anon_sym_SEL] = ACTIONS(7278), + [anon_sym_Class] = ACTIONS(7278), + [anon_sym_id] = ACTIONS(7278), + [anon_sym_out] = ACTIONS(7278), + [anon_sym_inout] = ACTIONS(7278), + [anon_sym_bycopy] = ACTIONS(7278), + [anon_sym_byref] = ACTIONS(7278), + [anon_sym_oneway] = ACTIONS(7278), + }, + [3879] = { + [sym_identifier] = ACTIONS(4823), + [anon_sym_COMMA] = ACTIONS(4825), + [anon_sym_RPAREN] = ACTIONS(4825), + [anon_sym_LPAREN2] = ACTIONS(4825), + [anon_sym_STAR] = ACTIONS(4825), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym_GT] = ACTIONS(4825), + [anon_sym_LT] = ACTIONS(4825), + [anon_sym___extension__] = ACTIONS(4823), + [anon_sym___attribute__] = ACTIONS(4823), + [anon_sym___attribute] = ACTIONS(4823), + [anon_sym_noreturn] = ACTIONS(4823), + [anon_sym_LBRACK] = ACTIONS(4825), + [anon_sym___based] = ACTIONS(4823), + [anon_sym_LBRACE] = ACTIONS(4825), + [anon_sym_signed] = ACTIONS(4823), + [anon_sym_unsigned] = ACTIONS(4823), + [anon_sym_long] = ACTIONS(4823), + [anon_sym_short] = ACTIONS(4823), + [anon_sym_ATautoreleasepool] = ACTIONS(4825), + [anon_sym_const] = ACTIONS(4823), + [anon_sym_constexpr] = ACTIONS(4823), + [anon_sym_volatile] = ACTIONS(4823), + [anon_sym_restrict] = ACTIONS(4823), + [anon_sym___restrict__] = ACTIONS(4823), + [anon_sym__Atomic] = ACTIONS(4823), + [anon_sym__Noreturn] = ACTIONS(4823), + [anon_sym__Nonnull] = ACTIONS(4823), + [anon_sym_nullable] = ACTIONS(4823), + [anon_sym__Complex] = ACTIONS(4823), + [anon_sym__Nullable] = ACTIONS(4823), + [anon_sym__Nullable_result] = ACTIONS(4823), + [anon_sym__Null_unspecified] = ACTIONS(4823), + [anon_sym___autoreleasing] = ACTIONS(4823), + [anon_sym___block] = ACTIONS(4823), + [anon_sym___bridge] = ACTIONS(4823), + [anon_sym___bridge_retained] = ACTIONS(4823), + [anon_sym___bridge_transfer] = ACTIONS(4823), + [anon_sym___complex] = ACTIONS(4823), + [anon_sym___const] = ACTIONS(4823), + [anon_sym___imag] = ACTIONS(4823), + [anon_sym___kindof] = ACTIONS(4823), + [anon_sym___nonnull] = ACTIONS(4823), + [anon_sym___nullable] = ACTIONS(4823), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4823), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4823), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4823), + [anon_sym___real] = ACTIONS(4823), + [anon_sym___strong] = ACTIONS(4823), + [anon_sym___unsafe_unretained] = ACTIONS(4823), + [anon_sym___unused] = ACTIONS(4823), + [anon_sym___weak] = ACTIONS(4823), + [anon_sym_alignas] = ACTIONS(4823), + [anon_sym__Alignas] = ACTIONS(4823), + [sym_primitive_type] = ACTIONS(4823), + [anon_sym_enum] = ACTIONS(4823), + [anon_sym_COLON] = ACTIONS(4825), + [anon_sym_struct] = ACTIONS(4823), + [anon_sym_union] = ACTIONS(4823), + [anon_sym_in] = ACTIONS(4823), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4823), + [anon_sym___typeof] = ACTIONS(4823), + [anon_sym_typeof] = ACTIONS(4823), + [anon_sym_BOOL] = ACTIONS(4823), + [anon_sym_IMP] = ACTIONS(4823), + [anon_sym_SEL] = ACTIONS(4823), + [anon_sym_Class] = ACTIONS(4823), + [anon_sym_id] = ACTIONS(4823), + [anon_sym_out] = ACTIONS(4823), + [anon_sym_inout] = ACTIONS(4823), + [anon_sym_bycopy] = ACTIONS(4823), + [anon_sym_byref] = ACTIONS(4823), + [anon_sym_oneway] = ACTIONS(4823), + }, + [3880] = { + [sym_attribute_specifier] = STATE(3878), + [sym_identifier] = ACTIONS(8037), + [anon_sym_COMMA] = ACTIONS(8039), + [anon_sym_RPAREN] = ACTIONS(8039), + [anon_sym_LPAREN2] = ACTIONS(8039), + [anon_sym_STAR] = ACTIONS(8039), + [anon_sym_CARET] = ACTIONS(8039), + [anon_sym_GT] = ACTIONS(8039), + [anon_sym_LT] = ACTIONS(8039), + [anon_sym___extension__] = ACTIONS(8037), + [anon_sym___attribute__] = ACTIONS(8995), + [anon_sym___attribute] = ACTIONS(8995), + [anon_sym_noreturn] = ACTIONS(8037), + [anon_sym_LBRACK] = ACTIONS(8039), + [anon_sym___based] = ACTIONS(8037), + [anon_sym_LBRACE] = ACTIONS(8039), + [anon_sym_signed] = ACTIONS(8037), + [anon_sym_unsigned] = ACTIONS(8037), + [anon_sym_long] = ACTIONS(8037), + [anon_sym_short] = ACTIONS(8037), + [anon_sym_ATautoreleasepool] = ACTIONS(8039), + [anon_sym_const] = ACTIONS(8037), + [anon_sym_constexpr] = ACTIONS(8037), + [anon_sym_volatile] = ACTIONS(8037), + [anon_sym_restrict] = ACTIONS(8037), + [anon_sym___restrict__] = ACTIONS(8037), + [anon_sym__Atomic] = ACTIONS(8037), + [anon_sym__Noreturn] = ACTIONS(8037), + [anon_sym__Nonnull] = ACTIONS(8037), + [anon_sym_nullable] = ACTIONS(8037), + [anon_sym__Complex] = ACTIONS(8037), + [anon_sym__Nullable] = ACTIONS(8037), + [anon_sym__Nullable_result] = ACTIONS(8037), + [anon_sym__Null_unspecified] = ACTIONS(8037), + [anon_sym___autoreleasing] = ACTIONS(8037), + [anon_sym___block] = ACTIONS(8037), + [anon_sym___bridge] = ACTIONS(8037), + [anon_sym___bridge_retained] = ACTIONS(8037), + [anon_sym___bridge_transfer] = ACTIONS(8037), + [anon_sym___complex] = ACTIONS(8037), + [anon_sym___const] = ACTIONS(8037), + [anon_sym___imag] = ACTIONS(8037), + [anon_sym___kindof] = ACTIONS(8037), + [anon_sym___nonnull] = ACTIONS(8037), + [anon_sym___nullable] = ACTIONS(8037), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8037), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8037), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8037), + [anon_sym___real] = ACTIONS(8037), + [anon_sym___strong] = ACTIONS(8037), + [anon_sym___unsafe_unretained] = ACTIONS(8037), + [anon_sym___unused] = ACTIONS(8037), + [anon_sym___weak] = ACTIONS(8037), + [anon_sym_alignas] = ACTIONS(8037), + [anon_sym__Alignas] = ACTIONS(8037), + [sym_primitive_type] = ACTIONS(8037), + [anon_sym_enum] = ACTIONS(8037), + [anon_sym_struct] = ACTIONS(8037), + [anon_sym_union] = ACTIONS(8037), + [anon_sym_in] = ACTIONS(8037), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8037), + [anon_sym___typeof] = ACTIONS(8037), + [anon_sym_typeof] = ACTIONS(8037), + [anon_sym_BOOL] = ACTIONS(8037), + [anon_sym_IMP] = ACTIONS(8037), + [anon_sym_SEL] = ACTIONS(8037), + [anon_sym_Class] = ACTIONS(8037), + [anon_sym_id] = ACTIONS(8037), + [anon_sym_out] = ACTIONS(8037), + [anon_sym_inout] = ACTIONS(8037), + [anon_sym_bycopy] = ACTIONS(8037), + [anon_sym_byref] = ACTIONS(8037), + [anon_sym_oneway] = ACTIONS(8037), + }, + [3881] = { + [sym_identifier] = ACTIONS(7330), + [anon_sym_COMMA] = ACTIONS(7332), + [anon_sym_RPAREN] = ACTIONS(7332), + [anon_sym_LPAREN2] = ACTIONS(7332), + [anon_sym_STAR] = ACTIONS(7332), + [anon_sym_CARET] = ACTIONS(7332), + [anon_sym_GT] = ACTIONS(7332), + [anon_sym_LT] = ACTIONS(7332), + [anon_sym___extension__] = ACTIONS(7330), + [anon_sym___attribute__] = ACTIONS(7330), + [anon_sym___attribute] = ACTIONS(7330), + [anon_sym_noreturn] = ACTIONS(7330), + [anon_sym_LBRACK] = ACTIONS(7332), + [anon_sym___based] = ACTIONS(7330), + [anon_sym_LBRACE] = ACTIONS(7332), + [anon_sym_signed] = ACTIONS(7330), + [anon_sym_unsigned] = ACTIONS(7330), + [anon_sym_long] = ACTIONS(7330), + [anon_sym_short] = ACTIONS(7330), + [anon_sym_ATautoreleasepool] = ACTIONS(7332), + [anon_sym_const] = ACTIONS(7330), + [anon_sym_constexpr] = ACTIONS(7330), + [anon_sym_volatile] = ACTIONS(7330), + [anon_sym_restrict] = ACTIONS(7330), + [anon_sym___restrict__] = ACTIONS(7330), + [anon_sym__Atomic] = ACTIONS(7330), + [anon_sym__Noreturn] = ACTIONS(7330), + [anon_sym__Nonnull] = ACTIONS(7330), + [anon_sym_nullable] = ACTIONS(7330), + [anon_sym__Complex] = ACTIONS(7330), + [anon_sym__Nullable] = ACTIONS(7330), + [anon_sym__Nullable_result] = ACTIONS(7330), + [anon_sym__Null_unspecified] = ACTIONS(7330), + [anon_sym___autoreleasing] = ACTIONS(7330), + [anon_sym___block] = ACTIONS(7330), + [anon_sym___bridge] = ACTIONS(7330), + [anon_sym___bridge_retained] = ACTIONS(7330), + [anon_sym___bridge_transfer] = ACTIONS(7330), + [anon_sym___complex] = ACTIONS(7330), + [anon_sym___const] = ACTIONS(7330), + [anon_sym___imag] = ACTIONS(7330), + [anon_sym___kindof] = ACTIONS(7330), + [anon_sym___nonnull] = ACTIONS(7330), + [anon_sym___nullable] = ACTIONS(7330), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7330), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7330), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7330), + [anon_sym___real] = ACTIONS(7330), + [anon_sym___strong] = ACTIONS(7330), + [anon_sym___unsafe_unretained] = ACTIONS(7330), + [anon_sym___unused] = ACTIONS(7330), + [anon_sym___weak] = ACTIONS(7330), + [anon_sym_alignas] = ACTIONS(7330), + [anon_sym__Alignas] = ACTIONS(7330), + [sym_primitive_type] = ACTIONS(7330), + [anon_sym_enum] = ACTIONS(7330), + [anon_sym_COLON] = ACTIONS(7332), + [anon_sym_struct] = ACTIONS(7330), + [anon_sym_union] = ACTIONS(7330), + [anon_sym_in] = ACTIONS(7330), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7330), + [anon_sym___typeof] = ACTIONS(7330), + [anon_sym_typeof] = ACTIONS(7330), + [anon_sym_BOOL] = ACTIONS(7330), + [anon_sym_IMP] = ACTIONS(7330), + [anon_sym_SEL] = ACTIONS(7330), + [anon_sym_Class] = ACTIONS(7330), + [anon_sym_id] = ACTIONS(7330), + [anon_sym_out] = ACTIONS(7330), + [anon_sym_inout] = ACTIONS(7330), + [anon_sym_bycopy] = ACTIONS(7330), + [anon_sym_byref] = ACTIONS(7330), + [anon_sym_oneway] = ACTIONS(7330), + }, + [3882] = { + [sym_identifier] = ACTIONS(7334), + [anon_sym_COMMA] = ACTIONS(7336), + [anon_sym_RPAREN] = ACTIONS(7336), + [anon_sym_LPAREN2] = ACTIONS(7336), + [anon_sym_STAR] = ACTIONS(7336), + [anon_sym_CARET] = ACTIONS(7336), + [anon_sym_GT] = ACTIONS(7336), + [anon_sym_LT] = ACTIONS(7336), + [anon_sym___extension__] = ACTIONS(7334), + [anon_sym___attribute__] = ACTIONS(7334), + [anon_sym___attribute] = ACTIONS(7334), + [anon_sym_noreturn] = ACTIONS(7334), + [anon_sym_LBRACK] = ACTIONS(7336), + [anon_sym___based] = ACTIONS(7334), + [anon_sym_LBRACE] = ACTIONS(7336), + [anon_sym_signed] = ACTIONS(7334), + [anon_sym_unsigned] = ACTIONS(7334), + [anon_sym_long] = ACTIONS(7334), + [anon_sym_short] = ACTIONS(7334), + [anon_sym_ATautoreleasepool] = ACTIONS(7336), + [anon_sym_const] = ACTIONS(7334), + [anon_sym_constexpr] = ACTIONS(7334), + [anon_sym_volatile] = ACTIONS(7334), + [anon_sym_restrict] = ACTIONS(7334), + [anon_sym___restrict__] = ACTIONS(7334), + [anon_sym__Atomic] = ACTIONS(7334), + [anon_sym__Noreturn] = ACTIONS(7334), + [anon_sym__Nonnull] = ACTIONS(7334), + [anon_sym_nullable] = ACTIONS(7334), + [anon_sym__Complex] = ACTIONS(7334), + [anon_sym__Nullable] = ACTIONS(7334), + [anon_sym__Nullable_result] = ACTIONS(7334), + [anon_sym__Null_unspecified] = ACTIONS(7334), + [anon_sym___autoreleasing] = ACTIONS(7334), + [anon_sym___block] = ACTIONS(7334), + [anon_sym___bridge] = ACTIONS(7334), + [anon_sym___bridge_retained] = ACTIONS(7334), + [anon_sym___bridge_transfer] = ACTIONS(7334), + [anon_sym___complex] = ACTIONS(7334), + [anon_sym___const] = ACTIONS(7334), + [anon_sym___imag] = ACTIONS(7334), + [anon_sym___kindof] = ACTIONS(7334), + [anon_sym___nonnull] = ACTIONS(7334), + [anon_sym___nullable] = ACTIONS(7334), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7334), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7334), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7334), + [anon_sym___real] = ACTIONS(7334), + [anon_sym___strong] = ACTIONS(7334), + [anon_sym___unsafe_unretained] = ACTIONS(7334), + [anon_sym___unused] = ACTIONS(7334), + [anon_sym___weak] = ACTIONS(7334), + [anon_sym_alignas] = ACTIONS(7334), + [anon_sym__Alignas] = ACTIONS(7334), + [sym_primitive_type] = ACTIONS(7334), + [anon_sym_enum] = ACTIONS(7334), + [anon_sym_COLON] = ACTIONS(7336), + [anon_sym_struct] = ACTIONS(7334), + [anon_sym_union] = ACTIONS(7334), + [anon_sym_in] = ACTIONS(7334), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7334), + [anon_sym___typeof] = ACTIONS(7334), + [anon_sym_typeof] = ACTIONS(7334), + [anon_sym_BOOL] = ACTIONS(7334), + [anon_sym_IMP] = ACTIONS(7334), + [anon_sym_SEL] = ACTIONS(7334), + [anon_sym_Class] = ACTIONS(7334), + [anon_sym_id] = ACTIONS(7334), + [anon_sym_out] = ACTIONS(7334), + [anon_sym_inout] = ACTIONS(7334), + [anon_sym_bycopy] = ACTIONS(7334), + [anon_sym_byref] = ACTIONS(7334), + [anon_sym_oneway] = ACTIONS(7334), + }, + [3883] = { + [sym_identifier] = ACTIONS(7282), + [anon_sym_COMMA] = ACTIONS(7284), + [anon_sym_RPAREN] = ACTIONS(7284), + [anon_sym_LPAREN2] = ACTIONS(7284), + [anon_sym_STAR] = ACTIONS(7284), + [anon_sym_CARET] = ACTIONS(7284), + [anon_sym_GT] = ACTIONS(7284), + [anon_sym_LT] = ACTIONS(7284), + [anon_sym___extension__] = ACTIONS(7282), + [anon_sym___attribute__] = ACTIONS(7282), + [anon_sym___attribute] = ACTIONS(7282), + [anon_sym_noreturn] = ACTIONS(7282), + [anon_sym_LBRACK] = ACTIONS(7284), + [anon_sym___based] = ACTIONS(7282), + [anon_sym_LBRACE] = ACTIONS(7284), + [anon_sym_signed] = ACTIONS(7282), + [anon_sym_unsigned] = ACTIONS(7282), + [anon_sym_long] = ACTIONS(7282), + [anon_sym_short] = ACTIONS(7282), + [anon_sym_ATautoreleasepool] = ACTIONS(7284), + [anon_sym_const] = ACTIONS(7282), + [anon_sym_constexpr] = ACTIONS(7282), + [anon_sym_volatile] = ACTIONS(7282), + [anon_sym_restrict] = ACTIONS(7282), + [anon_sym___restrict__] = ACTIONS(7282), + [anon_sym__Atomic] = ACTIONS(7282), + [anon_sym__Noreturn] = ACTIONS(7282), + [anon_sym__Nonnull] = ACTIONS(7282), + [anon_sym_nullable] = ACTIONS(7282), + [anon_sym__Complex] = ACTIONS(7282), + [anon_sym__Nullable] = ACTIONS(7282), + [anon_sym__Nullable_result] = ACTIONS(7282), + [anon_sym__Null_unspecified] = ACTIONS(7282), + [anon_sym___autoreleasing] = ACTIONS(7282), + [anon_sym___block] = ACTIONS(7282), + [anon_sym___bridge] = ACTIONS(7282), + [anon_sym___bridge_retained] = ACTIONS(7282), + [anon_sym___bridge_transfer] = ACTIONS(7282), + [anon_sym___complex] = ACTIONS(7282), + [anon_sym___const] = ACTIONS(7282), + [anon_sym___imag] = ACTIONS(7282), + [anon_sym___kindof] = ACTIONS(7282), + [anon_sym___nonnull] = ACTIONS(7282), + [anon_sym___nullable] = ACTIONS(7282), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7282), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7282), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7282), + [anon_sym___real] = ACTIONS(7282), + [anon_sym___strong] = ACTIONS(7282), + [anon_sym___unsafe_unretained] = ACTIONS(7282), + [anon_sym___unused] = ACTIONS(7282), + [anon_sym___weak] = ACTIONS(7282), + [anon_sym_alignas] = ACTIONS(7282), + [anon_sym__Alignas] = ACTIONS(7282), + [sym_primitive_type] = ACTIONS(7282), + [anon_sym_enum] = ACTIONS(7282), + [anon_sym_COLON] = ACTIONS(7284), + [anon_sym_struct] = ACTIONS(7282), + [anon_sym_union] = ACTIONS(7282), + [anon_sym_in] = ACTIONS(7282), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7282), + [anon_sym___typeof] = ACTIONS(7282), + [anon_sym_typeof] = ACTIONS(7282), + [anon_sym_BOOL] = ACTIONS(7282), + [anon_sym_IMP] = ACTIONS(7282), + [anon_sym_SEL] = ACTIONS(7282), + [anon_sym_Class] = ACTIONS(7282), + [anon_sym_id] = ACTIONS(7282), + [anon_sym_out] = ACTIONS(7282), + [anon_sym_inout] = ACTIONS(7282), + [anon_sym_bycopy] = ACTIONS(7282), + [anon_sym_byref] = ACTIONS(7282), + [anon_sym_oneway] = ACTIONS(7282), + }, + [3884] = { + [sym_identifier] = ACTIONS(7286), + [anon_sym_COMMA] = ACTIONS(7288), + [anon_sym_RPAREN] = ACTIONS(7288), + [anon_sym_LPAREN2] = ACTIONS(7288), + [anon_sym_STAR] = ACTIONS(7288), + [anon_sym_CARET] = ACTIONS(7288), + [anon_sym_GT] = ACTIONS(7288), + [anon_sym_LT] = ACTIONS(7288), + [anon_sym___extension__] = ACTIONS(7286), + [anon_sym___attribute__] = ACTIONS(7286), + [anon_sym___attribute] = ACTIONS(7286), + [anon_sym_noreturn] = ACTIONS(7286), + [anon_sym_LBRACK] = ACTIONS(7288), + [anon_sym___based] = ACTIONS(7286), + [anon_sym_LBRACE] = ACTIONS(7288), + [anon_sym_signed] = ACTIONS(7286), + [anon_sym_unsigned] = ACTIONS(7286), + [anon_sym_long] = ACTIONS(7286), + [anon_sym_short] = ACTIONS(7286), + [anon_sym_ATautoreleasepool] = ACTIONS(7288), + [anon_sym_const] = ACTIONS(7286), + [anon_sym_constexpr] = ACTIONS(7286), + [anon_sym_volatile] = ACTIONS(7286), + [anon_sym_restrict] = ACTIONS(7286), + [anon_sym___restrict__] = ACTIONS(7286), + [anon_sym__Atomic] = ACTIONS(7286), + [anon_sym__Noreturn] = ACTIONS(7286), + [anon_sym__Nonnull] = ACTIONS(7286), + [anon_sym_nullable] = ACTIONS(7286), + [anon_sym__Complex] = ACTIONS(7286), + [anon_sym__Nullable] = ACTIONS(7286), + [anon_sym__Nullable_result] = ACTIONS(7286), + [anon_sym__Null_unspecified] = ACTIONS(7286), + [anon_sym___autoreleasing] = ACTIONS(7286), + [anon_sym___block] = ACTIONS(7286), + [anon_sym___bridge] = ACTIONS(7286), + [anon_sym___bridge_retained] = ACTIONS(7286), + [anon_sym___bridge_transfer] = ACTIONS(7286), + [anon_sym___complex] = ACTIONS(7286), + [anon_sym___const] = ACTIONS(7286), + [anon_sym___imag] = ACTIONS(7286), + [anon_sym___kindof] = ACTIONS(7286), + [anon_sym___nonnull] = ACTIONS(7286), + [anon_sym___nullable] = ACTIONS(7286), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7286), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7286), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7286), + [anon_sym___real] = ACTIONS(7286), + [anon_sym___strong] = ACTIONS(7286), + [anon_sym___unsafe_unretained] = ACTIONS(7286), + [anon_sym___unused] = ACTIONS(7286), + [anon_sym___weak] = ACTIONS(7286), + [anon_sym_alignas] = ACTIONS(7286), + [anon_sym__Alignas] = ACTIONS(7286), + [sym_primitive_type] = ACTIONS(7286), + [anon_sym_enum] = ACTIONS(7286), + [anon_sym_COLON] = ACTIONS(7288), + [anon_sym_struct] = ACTIONS(7286), + [anon_sym_union] = ACTIONS(7286), + [anon_sym_in] = ACTIONS(7286), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7286), + [anon_sym___typeof] = ACTIONS(7286), + [anon_sym_typeof] = ACTIONS(7286), + [anon_sym_BOOL] = ACTIONS(7286), + [anon_sym_IMP] = ACTIONS(7286), + [anon_sym_SEL] = ACTIONS(7286), + [anon_sym_Class] = ACTIONS(7286), + [anon_sym_id] = ACTIONS(7286), + [anon_sym_out] = ACTIONS(7286), + [anon_sym_inout] = ACTIONS(7286), + [anon_sym_bycopy] = ACTIONS(7286), + [anon_sym_byref] = ACTIONS(7286), + [anon_sym_oneway] = ACTIONS(7286), + }, + [3885] = { + [sym_identifier] = ACTIONS(7346), + [anon_sym_COMMA] = ACTIONS(7348), + [anon_sym_RPAREN] = ACTIONS(7348), + [anon_sym_LPAREN2] = ACTIONS(7348), + [anon_sym_STAR] = ACTIONS(7348), + [anon_sym_CARET] = ACTIONS(7348), + [anon_sym_GT] = ACTIONS(7348), + [anon_sym_LT] = ACTIONS(7348), + [anon_sym___extension__] = ACTIONS(7346), + [anon_sym___attribute__] = ACTIONS(7346), + [anon_sym___attribute] = ACTIONS(7346), + [anon_sym_noreturn] = ACTIONS(7346), + [anon_sym_LBRACK] = ACTIONS(7348), + [anon_sym___based] = ACTIONS(7346), + [anon_sym_LBRACE] = ACTIONS(7348), + [anon_sym_signed] = ACTIONS(7346), + [anon_sym_unsigned] = ACTIONS(7346), + [anon_sym_long] = ACTIONS(7346), + [anon_sym_short] = ACTIONS(7346), + [anon_sym_ATautoreleasepool] = ACTIONS(7348), + [anon_sym_const] = ACTIONS(7346), + [anon_sym_constexpr] = ACTIONS(7346), + [anon_sym_volatile] = ACTIONS(7346), + [anon_sym_restrict] = ACTIONS(7346), + [anon_sym___restrict__] = ACTIONS(7346), + [anon_sym__Atomic] = ACTIONS(7346), + [anon_sym__Noreturn] = ACTIONS(7346), + [anon_sym__Nonnull] = ACTIONS(7346), + [anon_sym_nullable] = ACTIONS(7346), + [anon_sym__Complex] = ACTIONS(7346), + [anon_sym__Nullable] = ACTIONS(7346), + [anon_sym__Nullable_result] = ACTIONS(7346), + [anon_sym__Null_unspecified] = ACTIONS(7346), + [anon_sym___autoreleasing] = ACTIONS(7346), + [anon_sym___block] = ACTIONS(7346), + [anon_sym___bridge] = ACTIONS(7346), + [anon_sym___bridge_retained] = ACTIONS(7346), + [anon_sym___bridge_transfer] = ACTIONS(7346), + [anon_sym___complex] = ACTIONS(7346), + [anon_sym___const] = ACTIONS(7346), + [anon_sym___imag] = ACTIONS(7346), + [anon_sym___kindof] = ACTIONS(7346), + [anon_sym___nonnull] = ACTIONS(7346), + [anon_sym___nullable] = ACTIONS(7346), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7346), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7346), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7346), + [anon_sym___real] = ACTIONS(7346), + [anon_sym___strong] = ACTIONS(7346), + [anon_sym___unsafe_unretained] = ACTIONS(7346), + [anon_sym___unused] = ACTIONS(7346), + [anon_sym___weak] = ACTIONS(7346), + [anon_sym_alignas] = ACTIONS(7346), + [anon_sym__Alignas] = ACTIONS(7346), + [sym_primitive_type] = ACTIONS(7346), + [anon_sym_enum] = ACTIONS(7346), + [anon_sym_COLON] = ACTIONS(7348), + [anon_sym_struct] = ACTIONS(7346), + [anon_sym_union] = ACTIONS(7346), + [anon_sym_in] = ACTIONS(7346), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7346), + [anon_sym___typeof] = ACTIONS(7346), + [anon_sym_typeof] = ACTIONS(7346), + [anon_sym_BOOL] = ACTIONS(7346), + [anon_sym_IMP] = ACTIONS(7346), + [anon_sym_SEL] = ACTIONS(7346), + [anon_sym_Class] = ACTIONS(7346), + [anon_sym_id] = ACTIONS(7346), + [anon_sym_out] = ACTIONS(7346), + [anon_sym_inout] = ACTIONS(7346), + [anon_sym_bycopy] = ACTIONS(7346), + [anon_sym_byref] = ACTIONS(7346), + [anon_sym_oneway] = ACTIONS(7346), + }, + [3886] = { + [sym_identifier] = ACTIONS(7356), + [anon_sym_COMMA] = ACTIONS(7358), + [anon_sym_RPAREN] = ACTIONS(7358), + [anon_sym_LPAREN2] = ACTIONS(7358), + [anon_sym_STAR] = ACTIONS(7358), + [anon_sym_CARET] = ACTIONS(7358), + [anon_sym_GT] = ACTIONS(7358), + [anon_sym_LT] = ACTIONS(7358), + [anon_sym___extension__] = ACTIONS(7356), + [anon_sym___attribute__] = ACTIONS(7356), + [anon_sym___attribute] = ACTIONS(7356), + [anon_sym_noreturn] = ACTIONS(7356), + [anon_sym_LBRACK] = ACTIONS(7358), + [anon_sym___based] = ACTIONS(7356), + [anon_sym_LBRACE] = ACTIONS(7358), + [anon_sym_signed] = ACTIONS(7356), + [anon_sym_unsigned] = ACTIONS(7356), + [anon_sym_long] = ACTIONS(7356), + [anon_sym_short] = ACTIONS(7356), + [anon_sym_ATautoreleasepool] = ACTIONS(7358), + [anon_sym_const] = ACTIONS(7356), + [anon_sym_constexpr] = ACTIONS(7356), + [anon_sym_volatile] = ACTIONS(7356), + [anon_sym_restrict] = ACTIONS(7356), + [anon_sym___restrict__] = ACTIONS(7356), + [anon_sym__Atomic] = ACTIONS(7356), + [anon_sym__Noreturn] = ACTIONS(7356), + [anon_sym__Nonnull] = ACTIONS(7356), + [anon_sym_nullable] = ACTIONS(7356), + [anon_sym__Complex] = ACTIONS(7356), + [anon_sym__Nullable] = ACTIONS(7356), + [anon_sym__Nullable_result] = ACTIONS(7356), + [anon_sym__Null_unspecified] = ACTIONS(7356), + [anon_sym___autoreleasing] = ACTIONS(7356), + [anon_sym___block] = ACTIONS(7356), + [anon_sym___bridge] = ACTIONS(7356), + [anon_sym___bridge_retained] = ACTIONS(7356), + [anon_sym___bridge_transfer] = ACTIONS(7356), + [anon_sym___complex] = ACTIONS(7356), + [anon_sym___const] = ACTIONS(7356), + [anon_sym___imag] = ACTIONS(7356), + [anon_sym___kindof] = ACTIONS(7356), + [anon_sym___nonnull] = ACTIONS(7356), + [anon_sym___nullable] = ACTIONS(7356), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7356), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7356), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7356), + [anon_sym___real] = ACTIONS(7356), + [anon_sym___strong] = ACTIONS(7356), + [anon_sym___unsafe_unretained] = ACTIONS(7356), + [anon_sym___unused] = ACTIONS(7356), + [anon_sym___weak] = ACTIONS(7356), + [anon_sym_alignas] = ACTIONS(7356), + [anon_sym__Alignas] = ACTIONS(7356), + [sym_primitive_type] = ACTIONS(7356), + [anon_sym_enum] = ACTIONS(7356), + [anon_sym_COLON] = ACTIONS(7358), + [anon_sym_struct] = ACTIONS(7356), + [anon_sym_union] = ACTIONS(7356), + [anon_sym_in] = ACTIONS(7356), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7356), + [anon_sym___typeof] = ACTIONS(7356), + [anon_sym_typeof] = ACTIONS(7356), + [anon_sym_BOOL] = ACTIONS(7356), + [anon_sym_IMP] = ACTIONS(7356), + [anon_sym_SEL] = ACTIONS(7356), + [anon_sym_Class] = ACTIONS(7356), + [anon_sym_id] = ACTIONS(7356), + [anon_sym_out] = ACTIONS(7356), + [anon_sym_inout] = ACTIONS(7356), + [anon_sym_bycopy] = ACTIONS(7356), + [anon_sym_byref] = ACTIONS(7356), + [anon_sym_oneway] = ACTIONS(7356), + }, + [3887] = { + [sym_identifier] = ACTIONS(7558), + [anon_sym_COMMA] = ACTIONS(7560), + [anon_sym_RPAREN] = ACTIONS(7560), + [anon_sym_LPAREN2] = ACTIONS(7560), + [anon_sym_STAR] = ACTIONS(7560), + [anon_sym_CARET] = ACTIONS(7560), + [anon_sym_GT] = ACTIONS(7560), + [anon_sym_LT] = ACTIONS(7560), + [anon_sym___extension__] = ACTIONS(7558), + [anon_sym___attribute__] = ACTIONS(7558), + [anon_sym___attribute] = ACTIONS(7558), + [anon_sym_noreturn] = ACTIONS(7558), + [anon_sym_LBRACK] = ACTIONS(7560), + [anon_sym___based] = ACTIONS(7558), + [anon_sym_LBRACE] = ACTIONS(7560), + [anon_sym_signed] = ACTIONS(7558), + [anon_sym_unsigned] = ACTIONS(7558), + [anon_sym_long] = ACTIONS(7558), + [anon_sym_short] = ACTIONS(7558), + [anon_sym_ATautoreleasepool] = ACTIONS(7560), + [anon_sym_const] = ACTIONS(7558), + [anon_sym_constexpr] = ACTIONS(7558), + [anon_sym_volatile] = ACTIONS(7558), + [anon_sym_restrict] = ACTIONS(7558), + [anon_sym___restrict__] = ACTIONS(7558), + [anon_sym__Atomic] = ACTIONS(7558), + [anon_sym__Noreturn] = ACTIONS(7558), + [anon_sym__Nonnull] = ACTIONS(7558), + [anon_sym_nullable] = ACTIONS(7558), + [anon_sym__Complex] = ACTIONS(7558), + [anon_sym__Nullable] = ACTIONS(7558), + [anon_sym__Nullable_result] = ACTIONS(7558), + [anon_sym__Null_unspecified] = ACTIONS(7558), + [anon_sym___autoreleasing] = ACTIONS(7558), + [anon_sym___block] = ACTIONS(7558), + [anon_sym___bridge] = ACTIONS(7558), + [anon_sym___bridge_retained] = ACTIONS(7558), + [anon_sym___bridge_transfer] = ACTIONS(7558), + [anon_sym___complex] = ACTIONS(7558), + [anon_sym___const] = ACTIONS(7558), + [anon_sym___imag] = ACTIONS(7558), + [anon_sym___kindof] = ACTIONS(7558), + [anon_sym___nonnull] = ACTIONS(7558), + [anon_sym___nullable] = ACTIONS(7558), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7558), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7558), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7558), + [anon_sym___real] = ACTIONS(7558), + [anon_sym___strong] = ACTIONS(7558), + [anon_sym___unsafe_unretained] = ACTIONS(7558), + [anon_sym___unused] = ACTIONS(7558), + [anon_sym___weak] = ACTIONS(7558), + [anon_sym_alignas] = ACTIONS(7558), + [anon_sym__Alignas] = ACTIONS(7558), + [sym_primitive_type] = ACTIONS(7558), + [anon_sym_enum] = ACTIONS(7558), + [anon_sym_COLON] = ACTIONS(7560), + [anon_sym_struct] = ACTIONS(7558), + [anon_sym_union] = ACTIONS(7558), + [anon_sym_in] = ACTIONS(7558), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7558), + [anon_sym___typeof] = ACTIONS(7558), + [anon_sym_typeof] = ACTIONS(7558), + [anon_sym_BOOL] = ACTIONS(7558), + [anon_sym_IMP] = ACTIONS(7558), + [anon_sym_SEL] = ACTIONS(7558), + [anon_sym_Class] = ACTIONS(7558), + [anon_sym_id] = ACTIONS(7558), + [anon_sym_out] = ACTIONS(7558), + [anon_sym_inout] = ACTIONS(7558), + [anon_sym_bycopy] = ACTIONS(7558), + [anon_sym_byref] = ACTIONS(7558), + [anon_sym_oneway] = ACTIONS(7558), + }, + [3888] = { + [sym_identifier] = ACTIONS(7290), + [anon_sym_COMMA] = ACTIONS(7292), + [anon_sym_RPAREN] = ACTIONS(7292), + [anon_sym_LPAREN2] = ACTIONS(7292), + [anon_sym_STAR] = ACTIONS(7292), + [anon_sym_CARET] = ACTIONS(7292), + [anon_sym_GT] = ACTIONS(7292), + [anon_sym_LT] = ACTIONS(7292), + [anon_sym___extension__] = ACTIONS(7290), + [anon_sym___attribute__] = ACTIONS(7290), + [anon_sym___attribute] = ACTIONS(7290), + [anon_sym_noreturn] = ACTIONS(7290), + [anon_sym_LBRACK] = ACTIONS(7292), + [anon_sym___based] = ACTIONS(7290), + [anon_sym_LBRACE] = ACTIONS(7292), + [anon_sym_signed] = ACTIONS(7290), + [anon_sym_unsigned] = ACTIONS(7290), + [anon_sym_long] = ACTIONS(7290), + [anon_sym_short] = ACTIONS(7290), + [anon_sym_ATautoreleasepool] = ACTIONS(7292), + [anon_sym_const] = ACTIONS(7290), + [anon_sym_constexpr] = ACTIONS(7290), + [anon_sym_volatile] = ACTIONS(7290), + [anon_sym_restrict] = ACTIONS(7290), + [anon_sym___restrict__] = ACTIONS(7290), + [anon_sym__Atomic] = ACTIONS(7290), + [anon_sym__Noreturn] = ACTIONS(7290), + [anon_sym__Nonnull] = ACTIONS(7290), + [anon_sym_nullable] = ACTIONS(7290), + [anon_sym__Complex] = ACTIONS(7290), + [anon_sym__Nullable] = ACTIONS(7290), + [anon_sym__Nullable_result] = ACTIONS(7290), + [anon_sym__Null_unspecified] = ACTIONS(7290), + [anon_sym___autoreleasing] = ACTIONS(7290), + [anon_sym___block] = ACTIONS(7290), + [anon_sym___bridge] = ACTIONS(7290), + [anon_sym___bridge_retained] = ACTIONS(7290), + [anon_sym___bridge_transfer] = ACTIONS(7290), + [anon_sym___complex] = ACTIONS(7290), + [anon_sym___const] = ACTIONS(7290), + [anon_sym___imag] = ACTIONS(7290), + [anon_sym___kindof] = ACTIONS(7290), + [anon_sym___nonnull] = ACTIONS(7290), + [anon_sym___nullable] = ACTIONS(7290), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7290), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7290), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7290), + [anon_sym___real] = ACTIONS(7290), + [anon_sym___strong] = ACTIONS(7290), + [anon_sym___unsafe_unretained] = ACTIONS(7290), + [anon_sym___unused] = ACTIONS(7290), + [anon_sym___weak] = ACTIONS(7290), + [anon_sym_alignas] = ACTIONS(7290), + [anon_sym__Alignas] = ACTIONS(7290), + [sym_primitive_type] = ACTIONS(7290), + [anon_sym_enum] = ACTIONS(7290), + [anon_sym_COLON] = ACTIONS(7292), + [anon_sym_struct] = ACTIONS(7290), + [anon_sym_union] = ACTIONS(7290), + [anon_sym_in] = ACTIONS(7290), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7290), + [anon_sym___typeof] = ACTIONS(7290), + [anon_sym_typeof] = ACTIONS(7290), + [anon_sym_BOOL] = ACTIONS(7290), + [anon_sym_IMP] = ACTIONS(7290), + [anon_sym_SEL] = ACTIONS(7290), + [anon_sym_Class] = ACTIONS(7290), + [anon_sym_id] = ACTIONS(7290), + [anon_sym_out] = ACTIONS(7290), + [anon_sym_inout] = ACTIONS(7290), + [anon_sym_bycopy] = ACTIONS(7290), + [anon_sym_byref] = ACTIONS(7290), + [anon_sym_oneway] = ACTIONS(7290), + }, + [3889] = { + [sym_identifier] = ACTIONS(7294), + [anon_sym_COMMA] = ACTIONS(7296), + [anon_sym_RPAREN] = ACTIONS(7296), + [anon_sym_LPAREN2] = ACTIONS(7296), + [anon_sym_STAR] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7296), + [anon_sym_GT] = ACTIONS(7296), + [anon_sym_LT] = ACTIONS(7296), + [anon_sym___extension__] = ACTIONS(7294), + [anon_sym___attribute__] = ACTIONS(7294), + [anon_sym___attribute] = ACTIONS(7294), + [anon_sym_noreturn] = ACTIONS(7294), + [anon_sym_LBRACK] = ACTIONS(7296), + [anon_sym___based] = ACTIONS(7294), + [anon_sym_LBRACE] = ACTIONS(7296), + [anon_sym_signed] = ACTIONS(7294), + [anon_sym_unsigned] = ACTIONS(7294), + [anon_sym_long] = ACTIONS(7294), + [anon_sym_short] = ACTIONS(7294), + [anon_sym_ATautoreleasepool] = ACTIONS(7296), + [anon_sym_const] = ACTIONS(7294), + [anon_sym_constexpr] = ACTIONS(7294), + [anon_sym_volatile] = ACTIONS(7294), + [anon_sym_restrict] = ACTIONS(7294), + [anon_sym___restrict__] = ACTIONS(7294), + [anon_sym__Atomic] = ACTIONS(7294), + [anon_sym__Noreturn] = ACTIONS(7294), + [anon_sym__Nonnull] = ACTIONS(7294), + [anon_sym_nullable] = ACTIONS(7294), + [anon_sym__Complex] = ACTIONS(7294), + [anon_sym__Nullable] = ACTIONS(7294), + [anon_sym__Nullable_result] = ACTIONS(7294), + [anon_sym__Null_unspecified] = ACTIONS(7294), + [anon_sym___autoreleasing] = ACTIONS(7294), + [anon_sym___block] = ACTIONS(7294), + [anon_sym___bridge] = ACTIONS(7294), + [anon_sym___bridge_retained] = ACTIONS(7294), + [anon_sym___bridge_transfer] = ACTIONS(7294), + [anon_sym___complex] = ACTIONS(7294), + [anon_sym___const] = ACTIONS(7294), + [anon_sym___imag] = ACTIONS(7294), + [anon_sym___kindof] = ACTIONS(7294), + [anon_sym___nonnull] = ACTIONS(7294), + [anon_sym___nullable] = ACTIONS(7294), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7294), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7294), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7294), + [anon_sym___real] = ACTIONS(7294), + [anon_sym___strong] = ACTIONS(7294), + [anon_sym___unsafe_unretained] = ACTIONS(7294), + [anon_sym___unused] = ACTIONS(7294), + [anon_sym___weak] = ACTIONS(7294), + [anon_sym_alignas] = ACTIONS(7294), + [anon_sym__Alignas] = ACTIONS(7294), + [sym_primitive_type] = ACTIONS(7294), + [anon_sym_enum] = ACTIONS(7294), + [anon_sym_COLON] = ACTIONS(7296), + [anon_sym_struct] = ACTIONS(7294), + [anon_sym_union] = ACTIONS(7294), + [anon_sym_in] = ACTIONS(7294), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7294), + [anon_sym___typeof] = ACTIONS(7294), + [anon_sym_typeof] = ACTIONS(7294), + [anon_sym_BOOL] = ACTIONS(7294), + [anon_sym_IMP] = ACTIONS(7294), + [anon_sym_SEL] = ACTIONS(7294), + [anon_sym_Class] = ACTIONS(7294), + [anon_sym_id] = ACTIONS(7294), + [anon_sym_out] = ACTIONS(7294), + [anon_sym_inout] = ACTIONS(7294), + [anon_sym_bycopy] = ACTIONS(7294), + [anon_sym_byref] = ACTIONS(7294), + [anon_sym_oneway] = ACTIONS(7294), + }, + [3890] = { + [sym_attribute_specifier] = STATE(3986), + [sym_identifier] = ACTIONS(7785), + [anon_sym_COMMA] = ACTIONS(7787), + [anon_sym_RPAREN] = ACTIONS(7787), + [anon_sym_LPAREN2] = ACTIONS(7787), + [anon_sym_STAR] = ACTIONS(7787), + [anon_sym_CARET] = ACTIONS(7787), + [anon_sym_GT] = ACTIONS(7787), + [anon_sym_LT] = ACTIONS(7787), + [anon_sym___extension__] = ACTIONS(7785), + [anon_sym___attribute__] = ACTIONS(8998), + [anon_sym___attribute] = ACTIONS(8998), + [anon_sym_noreturn] = ACTIONS(7785), + [anon_sym_LBRACK] = ACTIONS(7787), + [anon_sym___based] = ACTIONS(7785), + [anon_sym_LBRACE] = ACTIONS(7787), + [anon_sym_signed] = ACTIONS(7785), + [anon_sym_unsigned] = ACTIONS(7785), + [anon_sym_long] = ACTIONS(7785), + [anon_sym_short] = ACTIONS(7785), + [anon_sym_ATautoreleasepool] = ACTIONS(7787), + [anon_sym_const] = ACTIONS(7785), + [anon_sym_constexpr] = ACTIONS(7785), + [anon_sym_volatile] = ACTIONS(7785), + [anon_sym_restrict] = ACTIONS(7785), + [anon_sym___restrict__] = ACTIONS(7785), + [anon_sym__Atomic] = ACTIONS(7785), + [anon_sym__Noreturn] = ACTIONS(7785), + [anon_sym__Nonnull] = ACTIONS(7785), + [anon_sym_nullable] = ACTIONS(7785), + [anon_sym__Complex] = ACTIONS(7785), + [anon_sym__Nullable] = ACTIONS(7785), + [anon_sym__Nullable_result] = ACTIONS(7785), + [anon_sym__Null_unspecified] = ACTIONS(7785), + [anon_sym___autoreleasing] = ACTIONS(7785), + [anon_sym___block] = ACTIONS(7785), + [anon_sym___bridge] = ACTIONS(7785), + [anon_sym___bridge_retained] = ACTIONS(7785), + [anon_sym___bridge_transfer] = ACTIONS(7785), + [anon_sym___complex] = ACTIONS(7785), + [anon_sym___const] = ACTIONS(7785), + [anon_sym___imag] = ACTIONS(7785), + [anon_sym___kindof] = ACTIONS(7785), + [anon_sym___nonnull] = ACTIONS(7785), + [anon_sym___nullable] = ACTIONS(7785), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7785), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7785), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7785), + [anon_sym___real] = ACTIONS(7785), + [anon_sym___strong] = ACTIONS(7785), + [anon_sym___unsafe_unretained] = ACTIONS(7785), + [anon_sym___unused] = ACTIONS(7785), + [anon_sym___weak] = ACTIONS(7785), + [anon_sym_alignas] = ACTIONS(7785), + [anon_sym__Alignas] = ACTIONS(7785), + [sym_primitive_type] = ACTIONS(7785), + [anon_sym_enum] = ACTIONS(7785), + [anon_sym_struct] = ACTIONS(7785), + [anon_sym_union] = ACTIONS(7785), + [anon_sym_in] = ACTIONS(7785), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7785), + [anon_sym___typeof] = ACTIONS(7785), + [anon_sym_typeof] = ACTIONS(7785), + [anon_sym_BOOL] = ACTIONS(7785), + [anon_sym_IMP] = ACTIONS(7785), + [anon_sym_SEL] = ACTIONS(7785), + [anon_sym_Class] = ACTIONS(7785), + [anon_sym_id] = ACTIONS(7785), + [anon_sym_out] = ACTIONS(7785), + [anon_sym_inout] = ACTIONS(7785), + [anon_sym_bycopy] = ACTIONS(7785), + [anon_sym_byref] = ACTIONS(7785), + [anon_sym_oneway] = ACTIONS(7785), + }, + [3891] = { + [sym_attribute_specifier] = STATE(3860), + [sym_identifier] = ACTIONS(7960), + [anon_sym_COMMA] = ACTIONS(7962), + [anon_sym_RPAREN] = ACTIONS(7962), + [anon_sym_LPAREN2] = ACTIONS(7962), + [anon_sym_STAR] = ACTIONS(7962), + [anon_sym_CARET] = ACTIONS(7962), + [anon_sym_GT] = ACTIONS(7962), + [anon_sym_LT] = ACTIONS(7962), + [anon_sym___extension__] = ACTIONS(7960), + [anon_sym___attribute__] = ACTIONS(9001), + [anon_sym___attribute] = ACTIONS(9001), + [anon_sym_noreturn] = ACTIONS(7960), + [anon_sym_LBRACK] = ACTIONS(7962), + [anon_sym___based] = ACTIONS(7960), + [anon_sym_LBRACE] = ACTIONS(7962), + [anon_sym_signed] = ACTIONS(7960), + [anon_sym_unsigned] = ACTIONS(7960), + [anon_sym_long] = ACTIONS(7960), + [anon_sym_short] = ACTIONS(7960), + [anon_sym_ATautoreleasepool] = ACTIONS(7962), + [anon_sym_const] = ACTIONS(7960), + [anon_sym_constexpr] = ACTIONS(7960), + [anon_sym_volatile] = ACTIONS(7960), + [anon_sym_restrict] = ACTIONS(7960), + [anon_sym___restrict__] = ACTIONS(7960), + [anon_sym__Atomic] = ACTIONS(7960), + [anon_sym__Noreturn] = ACTIONS(7960), + [anon_sym__Nonnull] = ACTIONS(7960), + [anon_sym_nullable] = ACTIONS(7960), + [anon_sym__Complex] = ACTIONS(7960), + [anon_sym__Nullable] = ACTIONS(7960), + [anon_sym__Nullable_result] = ACTIONS(7960), + [anon_sym__Null_unspecified] = ACTIONS(7960), + [anon_sym___autoreleasing] = ACTIONS(7960), + [anon_sym___block] = ACTIONS(7960), + [anon_sym___bridge] = ACTIONS(7960), + [anon_sym___bridge_retained] = ACTIONS(7960), + [anon_sym___bridge_transfer] = ACTIONS(7960), + [anon_sym___complex] = ACTIONS(7960), + [anon_sym___const] = ACTIONS(7960), + [anon_sym___imag] = ACTIONS(7960), + [anon_sym___kindof] = ACTIONS(7960), + [anon_sym___nonnull] = ACTIONS(7960), + [anon_sym___nullable] = ACTIONS(7960), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7960), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7960), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7960), + [anon_sym___real] = ACTIONS(7960), + [anon_sym___strong] = ACTIONS(7960), + [anon_sym___unsafe_unretained] = ACTIONS(7960), + [anon_sym___unused] = ACTIONS(7960), + [anon_sym___weak] = ACTIONS(7960), + [anon_sym_alignas] = ACTIONS(7960), + [anon_sym__Alignas] = ACTIONS(7960), + [sym_primitive_type] = ACTIONS(7960), + [anon_sym_enum] = ACTIONS(7960), + [anon_sym_struct] = ACTIONS(7960), + [anon_sym_union] = ACTIONS(7960), + [anon_sym_in] = ACTIONS(7960), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7960), + [anon_sym___typeof] = ACTIONS(7960), + [anon_sym_typeof] = ACTIONS(7960), + [anon_sym_BOOL] = ACTIONS(7960), + [anon_sym_IMP] = ACTIONS(7960), + [anon_sym_SEL] = ACTIONS(7960), + [anon_sym_Class] = ACTIONS(7960), + [anon_sym_id] = ACTIONS(7960), + [anon_sym_out] = ACTIONS(7960), + [anon_sym_inout] = ACTIONS(7960), + [anon_sym_bycopy] = ACTIONS(7960), + [anon_sym_byref] = ACTIONS(7960), + [anon_sym_oneway] = ACTIONS(7960), + }, + [3892] = { + [sym_identifier] = ACTIONS(7536), + [anon_sym_COMMA] = ACTIONS(7538), + [anon_sym_RPAREN] = ACTIONS(7538), + [anon_sym_LPAREN2] = ACTIONS(7538), + [anon_sym_STAR] = ACTIONS(7538), + [anon_sym_CARET] = ACTIONS(7538), + [anon_sym_GT] = ACTIONS(7538), + [anon_sym_LT] = ACTIONS(7538), + [anon_sym___extension__] = ACTIONS(7536), + [anon_sym___attribute__] = ACTIONS(7536), + [anon_sym___attribute] = ACTIONS(7536), + [anon_sym_noreturn] = ACTIONS(7536), + [anon_sym_LBRACK] = ACTIONS(7538), + [anon_sym___based] = ACTIONS(7536), + [anon_sym_LBRACE] = ACTIONS(7538), + [anon_sym_signed] = ACTIONS(7536), + [anon_sym_unsigned] = ACTIONS(7536), + [anon_sym_long] = ACTIONS(7536), + [anon_sym_short] = ACTIONS(7536), + [anon_sym_ATautoreleasepool] = ACTIONS(7538), + [anon_sym_const] = ACTIONS(7536), + [anon_sym_constexpr] = ACTIONS(7536), + [anon_sym_volatile] = ACTIONS(7536), + [anon_sym_restrict] = ACTIONS(7536), + [anon_sym___restrict__] = ACTIONS(7536), + [anon_sym__Atomic] = ACTIONS(7536), + [anon_sym__Noreturn] = ACTIONS(7536), + [anon_sym__Nonnull] = ACTIONS(7536), + [anon_sym_nullable] = ACTIONS(7536), + [anon_sym__Complex] = ACTIONS(7536), + [anon_sym__Nullable] = ACTIONS(7536), + [anon_sym__Nullable_result] = ACTIONS(7536), + [anon_sym__Null_unspecified] = ACTIONS(7536), + [anon_sym___autoreleasing] = ACTIONS(7536), + [anon_sym___block] = ACTIONS(7536), + [anon_sym___bridge] = ACTIONS(7536), + [anon_sym___bridge_retained] = ACTIONS(7536), + [anon_sym___bridge_transfer] = ACTIONS(7536), + [anon_sym___complex] = ACTIONS(7536), + [anon_sym___const] = ACTIONS(7536), + [anon_sym___imag] = ACTIONS(7536), + [anon_sym___kindof] = ACTIONS(7536), + [anon_sym___nonnull] = ACTIONS(7536), + [anon_sym___nullable] = ACTIONS(7536), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7536), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7536), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7536), + [anon_sym___real] = ACTIONS(7536), + [anon_sym___strong] = ACTIONS(7536), + [anon_sym___unsafe_unretained] = ACTIONS(7536), + [anon_sym___unused] = ACTIONS(7536), + [anon_sym___weak] = ACTIONS(7536), + [anon_sym_alignas] = ACTIONS(7536), + [anon_sym__Alignas] = ACTIONS(7536), + [sym_primitive_type] = ACTIONS(7536), + [anon_sym_enum] = ACTIONS(7536), + [anon_sym_COLON] = ACTIONS(7538), + [anon_sym_struct] = ACTIONS(7536), + [anon_sym_union] = ACTIONS(7536), + [anon_sym_in] = ACTIONS(7536), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7536), + [anon_sym___typeof] = ACTIONS(7536), + [anon_sym_typeof] = ACTIONS(7536), + [anon_sym_BOOL] = ACTIONS(7536), + [anon_sym_IMP] = ACTIONS(7536), + [anon_sym_SEL] = ACTIONS(7536), + [anon_sym_Class] = ACTIONS(7536), + [anon_sym_id] = ACTIONS(7536), + [anon_sym_out] = ACTIONS(7536), + [anon_sym_inout] = ACTIONS(7536), + [anon_sym_bycopy] = ACTIONS(7536), + [anon_sym_byref] = ACTIONS(7536), + [anon_sym_oneway] = ACTIONS(7536), + }, + [3893] = { + [sym_identifier] = ACTIONS(7360), + [anon_sym_COMMA] = ACTIONS(7362), + [anon_sym_RPAREN] = ACTIONS(7362), + [anon_sym_LPAREN2] = ACTIONS(7362), + [anon_sym_STAR] = ACTIONS(7362), + [anon_sym_CARET] = ACTIONS(7362), + [anon_sym_GT] = ACTIONS(7362), + [anon_sym_LT] = ACTIONS(7362), + [anon_sym___extension__] = ACTIONS(7360), + [anon_sym___attribute__] = ACTIONS(7360), + [anon_sym___attribute] = ACTIONS(7360), + [anon_sym_noreturn] = ACTIONS(7360), + [anon_sym_LBRACK] = ACTIONS(7362), + [anon_sym___based] = ACTIONS(7360), + [anon_sym_LBRACE] = ACTIONS(7362), + [anon_sym_signed] = ACTIONS(7360), + [anon_sym_unsigned] = ACTIONS(7360), + [anon_sym_long] = ACTIONS(7360), + [anon_sym_short] = ACTIONS(7360), + [anon_sym_ATautoreleasepool] = ACTIONS(7362), + [anon_sym_const] = ACTIONS(7360), + [anon_sym_constexpr] = ACTIONS(7360), + [anon_sym_volatile] = ACTIONS(7360), + [anon_sym_restrict] = ACTIONS(7360), + [anon_sym___restrict__] = ACTIONS(7360), + [anon_sym__Atomic] = ACTIONS(7360), + [anon_sym__Noreturn] = ACTIONS(7360), + [anon_sym__Nonnull] = ACTIONS(7360), + [anon_sym_nullable] = ACTIONS(7360), + [anon_sym__Complex] = ACTIONS(7360), + [anon_sym__Nullable] = ACTIONS(7360), + [anon_sym__Nullable_result] = ACTIONS(7360), + [anon_sym__Null_unspecified] = ACTIONS(7360), + [anon_sym___autoreleasing] = ACTIONS(7360), + [anon_sym___block] = ACTIONS(7360), + [anon_sym___bridge] = ACTIONS(7360), + [anon_sym___bridge_retained] = ACTIONS(7360), + [anon_sym___bridge_transfer] = ACTIONS(7360), + [anon_sym___complex] = ACTIONS(7360), + [anon_sym___const] = ACTIONS(7360), + [anon_sym___imag] = ACTIONS(7360), + [anon_sym___kindof] = ACTIONS(7360), + [anon_sym___nonnull] = ACTIONS(7360), + [anon_sym___nullable] = ACTIONS(7360), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7360), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7360), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7360), + [anon_sym___real] = ACTIONS(7360), + [anon_sym___strong] = ACTIONS(7360), + [anon_sym___unsafe_unretained] = ACTIONS(7360), + [anon_sym___unused] = ACTIONS(7360), + [anon_sym___weak] = ACTIONS(7360), + [anon_sym_alignas] = ACTIONS(7360), + [anon_sym__Alignas] = ACTIONS(7360), + [sym_primitive_type] = ACTIONS(7360), + [anon_sym_enum] = ACTIONS(7360), + [anon_sym_COLON] = ACTIONS(7362), + [anon_sym_struct] = ACTIONS(7360), + [anon_sym_union] = ACTIONS(7360), + [anon_sym_in] = ACTIONS(7360), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7360), + [anon_sym___typeof] = ACTIONS(7360), + [anon_sym_typeof] = ACTIONS(7360), + [anon_sym_BOOL] = ACTIONS(7360), + [anon_sym_IMP] = ACTIONS(7360), + [anon_sym_SEL] = ACTIONS(7360), + [anon_sym_Class] = ACTIONS(7360), + [anon_sym_id] = ACTIONS(7360), + [anon_sym_out] = ACTIONS(7360), + [anon_sym_inout] = ACTIONS(7360), + [anon_sym_bycopy] = ACTIONS(7360), + [anon_sym_byref] = ACTIONS(7360), + [anon_sym_oneway] = ACTIONS(7360), + }, + [3894] = { + [sym_identifier] = ACTIONS(7364), + [anon_sym_COMMA] = ACTIONS(7366), + [anon_sym_RPAREN] = ACTIONS(7366), + [anon_sym_LPAREN2] = ACTIONS(7366), + [anon_sym_STAR] = ACTIONS(7366), + [anon_sym_CARET] = ACTIONS(7366), + [anon_sym_GT] = ACTIONS(7366), + [anon_sym_LT] = ACTIONS(7366), + [anon_sym___extension__] = ACTIONS(7364), + [anon_sym___attribute__] = ACTIONS(7364), + [anon_sym___attribute] = ACTIONS(7364), + [anon_sym_noreturn] = ACTIONS(7364), + [anon_sym_LBRACK] = ACTIONS(7366), + [anon_sym___based] = ACTIONS(7364), + [anon_sym_LBRACE] = ACTIONS(7366), + [anon_sym_signed] = ACTIONS(7364), + [anon_sym_unsigned] = ACTIONS(7364), + [anon_sym_long] = ACTIONS(7364), + [anon_sym_short] = ACTIONS(7364), + [anon_sym_ATautoreleasepool] = ACTIONS(7366), + [anon_sym_const] = ACTIONS(7364), + [anon_sym_constexpr] = ACTIONS(7364), + [anon_sym_volatile] = ACTIONS(7364), + [anon_sym_restrict] = ACTIONS(7364), + [anon_sym___restrict__] = ACTIONS(7364), + [anon_sym__Atomic] = ACTIONS(7364), + [anon_sym__Noreturn] = ACTIONS(7364), + [anon_sym__Nonnull] = ACTIONS(7364), + [anon_sym_nullable] = ACTIONS(7364), + [anon_sym__Complex] = ACTIONS(7364), + [anon_sym__Nullable] = ACTIONS(7364), + [anon_sym__Nullable_result] = ACTIONS(7364), + [anon_sym__Null_unspecified] = ACTIONS(7364), + [anon_sym___autoreleasing] = ACTIONS(7364), + [anon_sym___block] = ACTIONS(7364), + [anon_sym___bridge] = ACTIONS(7364), + [anon_sym___bridge_retained] = ACTIONS(7364), + [anon_sym___bridge_transfer] = ACTIONS(7364), + [anon_sym___complex] = ACTIONS(7364), + [anon_sym___const] = ACTIONS(7364), + [anon_sym___imag] = ACTIONS(7364), + [anon_sym___kindof] = ACTIONS(7364), + [anon_sym___nonnull] = ACTIONS(7364), + [anon_sym___nullable] = ACTIONS(7364), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7364), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7364), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7364), + [anon_sym___real] = ACTIONS(7364), + [anon_sym___strong] = ACTIONS(7364), + [anon_sym___unsafe_unretained] = ACTIONS(7364), + [anon_sym___unused] = ACTIONS(7364), + [anon_sym___weak] = ACTIONS(7364), + [anon_sym_alignas] = ACTIONS(7364), + [anon_sym__Alignas] = ACTIONS(7364), + [sym_primitive_type] = ACTIONS(7364), + [anon_sym_enum] = ACTIONS(7364), + [anon_sym_COLON] = ACTIONS(7366), + [anon_sym_struct] = ACTIONS(7364), + [anon_sym_union] = ACTIONS(7364), + [anon_sym_in] = ACTIONS(7364), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7364), + [anon_sym___typeof] = ACTIONS(7364), + [anon_sym_typeof] = ACTIONS(7364), + [anon_sym_BOOL] = ACTIONS(7364), + [anon_sym_IMP] = ACTIONS(7364), + [anon_sym_SEL] = ACTIONS(7364), + [anon_sym_Class] = ACTIONS(7364), + [anon_sym_id] = ACTIONS(7364), + [anon_sym_out] = ACTIONS(7364), + [anon_sym_inout] = ACTIONS(7364), + [anon_sym_bycopy] = ACTIONS(7364), + [anon_sym_byref] = ACTIONS(7364), + [anon_sym_oneway] = ACTIONS(7364), + }, + [3895] = { + [sym_identifier] = ACTIONS(7302), + [anon_sym_COMMA] = ACTIONS(7304), + [anon_sym_RPAREN] = ACTIONS(7304), + [anon_sym_LPAREN2] = ACTIONS(7304), + [anon_sym_STAR] = ACTIONS(7304), + [anon_sym_CARET] = ACTIONS(7304), + [anon_sym_GT] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7304), + [anon_sym___extension__] = ACTIONS(7302), + [anon_sym___attribute__] = ACTIONS(7302), + [anon_sym___attribute] = ACTIONS(7302), + [anon_sym_noreturn] = ACTIONS(7302), + [anon_sym_LBRACK] = ACTIONS(7304), + [anon_sym___based] = ACTIONS(7302), + [anon_sym_LBRACE] = ACTIONS(7304), + [anon_sym_signed] = ACTIONS(7302), + [anon_sym_unsigned] = ACTIONS(7302), + [anon_sym_long] = ACTIONS(7302), + [anon_sym_short] = ACTIONS(7302), + [anon_sym_ATautoreleasepool] = ACTIONS(7304), + [anon_sym_const] = ACTIONS(7302), + [anon_sym_constexpr] = ACTIONS(7302), + [anon_sym_volatile] = ACTIONS(7302), + [anon_sym_restrict] = ACTIONS(7302), + [anon_sym___restrict__] = ACTIONS(7302), + [anon_sym__Atomic] = ACTIONS(7302), + [anon_sym__Noreturn] = ACTIONS(7302), + [anon_sym__Nonnull] = ACTIONS(7302), + [anon_sym_nullable] = ACTIONS(7302), + [anon_sym__Complex] = ACTIONS(7302), + [anon_sym__Nullable] = ACTIONS(7302), + [anon_sym__Nullable_result] = ACTIONS(7302), + [anon_sym__Null_unspecified] = ACTIONS(7302), + [anon_sym___autoreleasing] = ACTIONS(7302), + [anon_sym___block] = ACTIONS(7302), + [anon_sym___bridge] = ACTIONS(7302), + [anon_sym___bridge_retained] = ACTIONS(7302), + [anon_sym___bridge_transfer] = ACTIONS(7302), + [anon_sym___complex] = ACTIONS(7302), + [anon_sym___const] = ACTIONS(7302), + [anon_sym___imag] = ACTIONS(7302), + [anon_sym___kindof] = ACTIONS(7302), + [anon_sym___nonnull] = ACTIONS(7302), + [anon_sym___nullable] = ACTIONS(7302), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7302), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7302), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7302), + [anon_sym___real] = ACTIONS(7302), + [anon_sym___strong] = ACTIONS(7302), + [anon_sym___unsafe_unretained] = ACTIONS(7302), + [anon_sym___unused] = ACTIONS(7302), + [anon_sym___weak] = ACTIONS(7302), + [anon_sym_alignas] = ACTIONS(7302), + [anon_sym__Alignas] = ACTIONS(7302), + [sym_primitive_type] = ACTIONS(7302), + [anon_sym_enum] = ACTIONS(7302), + [anon_sym_COLON] = ACTIONS(7304), + [anon_sym_struct] = ACTIONS(7302), + [anon_sym_union] = ACTIONS(7302), + [anon_sym_in] = ACTIONS(7302), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7302), + [anon_sym___typeof] = ACTIONS(7302), + [anon_sym_typeof] = ACTIONS(7302), + [anon_sym_BOOL] = ACTIONS(7302), + [anon_sym_IMP] = ACTIONS(7302), + [anon_sym_SEL] = ACTIONS(7302), + [anon_sym_Class] = ACTIONS(7302), + [anon_sym_id] = ACTIONS(7302), + [anon_sym_out] = ACTIONS(7302), + [anon_sym_inout] = ACTIONS(7302), + [anon_sym_bycopy] = ACTIONS(7302), + [anon_sym_byref] = ACTIONS(7302), + [anon_sym_oneway] = ACTIONS(7302), + }, + [3896] = { + [sym__type_definition_type] = STATE(4784), + [sym_attribute_specifier] = STATE(3899), + [sym_ms_declspec_modifier] = STATE(4065), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3897] = { + [sym__type_definition_type] = STATE(4808), + [sym_attribute_specifier] = STATE(3972), + [sym_ms_declspec_modifier] = STATE(4036), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3898] = { + [sym__type_definition_type] = STATE(4787), + [sym_attribute_specifier] = STATE(3906), + [sym_ms_declspec_modifier] = STATE(4029), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3899] = { + [sym__type_definition_type] = STATE(4788), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4029), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3900] = { + [sym_attribute_specifier] = STATE(3901), + [sym_identifier] = ACTIONS(7971), + [anon_sym_COMMA] = ACTIONS(7973), + [anon_sym_RPAREN] = ACTIONS(7973), + [anon_sym_LPAREN2] = ACTIONS(7973), + [anon_sym_STAR] = ACTIONS(7973), + [anon_sym_CARET] = ACTIONS(7973), + [anon_sym_GT] = ACTIONS(7973), + [anon_sym_LT] = ACTIONS(7973), + [anon_sym___extension__] = ACTIONS(7971), + [anon_sym___attribute__] = ACTIONS(9004), + [anon_sym___attribute] = ACTIONS(9004), + [anon_sym_noreturn] = ACTIONS(7971), + [anon_sym_LBRACK] = ACTIONS(7973), + [anon_sym___based] = ACTIONS(7971), + [anon_sym_LBRACE] = ACTIONS(7973), + [anon_sym_signed] = ACTIONS(7971), + [anon_sym_unsigned] = ACTIONS(7971), + [anon_sym_long] = ACTIONS(7971), + [anon_sym_short] = ACTIONS(7971), + [anon_sym_ATautoreleasepool] = ACTIONS(7973), + [anon_sym_const] = ACTIONS(7971), + [anon_sym_constexpr] = ACTIONS(7971), + [anon_sym_volatile] = ACTIONS(7971), + [anon_sym_restrict] = ACTIONS(7971), + [anon_sym___restrict__] = ACTIONS(7971), + [anon_sym__Atomic] = ACTIONS(7971), + [anon_sym__Noreturn] = ACTIONS(7971), + [anon_sym__Nonnull] = ACTIONS(7971), + [anon_sym_nullable] = ACTIONS(7971), + [anon_sym__Complex] = ACTIONS(7971), + [anon_sym__Nullable] = ACTIONS(7971), + [anon_sym__Nullable_result] = ACTIONS(7971), + [anon_sym__Null_unspecified] = ACTIONS(7971), + [anon_sym___autoreleasing] = ACTIONS(7971), + [anon_sym___block] = ACTIONS(7971), + [anon_sym___bridge] = ACTIONS(7971), + [anon_sym___bridge_retained] = ACTIONS(7971), + [anon_sym___bridge_transfer] = ACTIONS(7971), + [anon_sym___complex] = ACTIONS(7971), + [anon_sym___const] = ACTIONS(7971), + [anon_sym___imag] = ACTIONS(7971), + [anon_sym___kindof] = ACTIONS(7971), + [anon_sym___nonnull] = ACTIONS(7971), + [anon_sym___nullable] = ACTIONS(7971), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7971), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7971), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7971), + [anon_sym___real] = ACTIONS(7971), + [anon_sym___strong] = ACTIONS(7971), + [anon_sym___unsafe_unretained] = ACTIONS(7971), + [anon_sym___unused] = ACTIONS(7971), + [anon_sym___weak] = ACTIONS(7971), + [anon_sym_alignas] = ACTIONS(7971), + [anon_sym__Alignas] = ACTIONS(7971), + [sym_primitive_type] = ACTIONS(7971), + [anon_sym_enum] = ACTIONS(7971), + [anon_sym_struct] = ACTIONS(7971), + [anon_sym_union] = ACTIONS(7971), + [anon_sym_in] = ACTIONS(7971), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7971), + [anon_sym___typeof] = ACTIONS(7971), + [anon_sym_typeof] = ACTIONS(7971), + [anon_sym_BOOL] = ACTIONS(7971), + [anon_sym_IMP] = ACTIONS(7971), + [anon_sym_SEL] = ACTIONS(7971), + [anon_sym_Class] = ACTIONS(7971), + [anon_sym_id] = ACTIONS(7971), + [anon_sym_out] = ACTIONS(7971), + [anon_sym_inout] = ACTIONS(7971), + [anon_sym_bycopy] = ACTIONS(7971), + [anon_sym_byref] = ACTIONS(7971), + [anon_sym_oneway] = ACTIONS(7971), + }, + [3901] = { + [sym_identifier] = ACTIONS(7266), + [anon_sym_COMMA] = ACTIONS(7268), + [anon_sym_RPAREN] = ACTIONS(7268), + [anon_sym_LPAREN2] = ACTIONS(7268), + [anon_sym_STAR] = ACTIONS(7268), + [anon_sym_CARET] = ACTIONS(7268), + [anon_sym_GT] = ACTIONS(7268), + [anon_sym_LT] = ACTIONS(7268), + [anon_sym___extension__] = ACTIONS(7266), + [anon_sym___attribute__] = ACTIONS(7266), + [anon_sym___attribute] = ACTIONS(7266), + [anon_sym_noreturn] = ACTIONS(7266), + [anon_sym_LBRACK] = ACTIONS(7268), + [anon_sym___based] = ACTIONS(7266), + [anon_sym_LBRACE] = ACTIONS(7268), + [anon_sym_signed] = ACTIONS(7266), + [anon_sym_unsigned] = ACTIONS(7266), + [anon_sym_long] = ACTIONS(7266), + [anon_sym_short] = ACTIONS(7266), + [anon_sym_ATautoreleasepool] = ACTIONS(7268), + [anon_sym_const] = ACTIONS(7266), + [anon_sym_constexpr] = ACTIONS(7266), + [anon_sym_volatile] = ACTIONS(7266), + [anon_sym_restrict] = ACTIONS(7266), + [anon_sym___restrict__] = ACTIONS(7266), + [anon_sym__Atomic] = ACTIONS(7266), + [anon_sym__Noreturn] = ACTIONS(7266), + [anon_sym__Nonnull] = ACTIONS(7266), + [anon_sym_nullable] = ACTIONS(7266), + [anon_sym__Complex] = ACTIONS(7266), + [anon_sym__Nullable] = ACTIONS(7266), + [anon_sym__Nullable_result] = ACTIONS(7266), + [anon_sym__Null_unspecified] = ACTIONS(7266), + [anon_sym___autoreleasing] = ACTIONS(7266), + [anon_sym___block] = ACTIONS(7266), + [anon_sym___bridge] = ACTIONS(7266), + [anon_sym___bridge_retained] = ACTIONS(7266), + [anon_sym___bridge_transfer] = ACTIONS(7266), + [anon_sym___complex] = ACTIONS(7266), + [anon_sym___const] = ACTIONS(7266), + [anon_sym___imag] = ACTIONS(7266), + [anon_sym___kindof] = ACTIONS(7266), + [anon_sym___nonnull] = ACTIONS(7266), + [anon_sym___nullable] = ACTIONS(7266), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7266), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7266), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7266), + [anon_sym___real] = ACTIONS(7266), + [anon_sym___strong] = ACTIONS(7266), + [anon_sym___unsafe_unretained] = ACTIONS(7266), + [anon_sym___unused] = ACTIONS(7266), + [anon_sym___weak] = ACTIONS(7266), + [anon_sym_alignas] = ACTIONS(7266), + [anon_sym__Alignas] = ACTIONS(7266), + [sym_primitive_type] = ACTIONS(7266), + [anon_sym_enum] = ACTIONS(7266), + [anon_sym_COLON] = ACTIONS(7268), + [anon_sym_struct] = ACTIONS(7266), + [anon_sym_union] = ACTIONS(7266), + [anon_sym_in] = ACTIONS(7266), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7266), + [anon_sym___typeof] = ACTIONS(7266), + [anon_sym_typeof] = ACTIONS(7266), + [anon_sym_BOOL] = ACTIONS(7266), + [anon_sym_IMP] = ACTIONS(7266), + [anon_sym_SEL] = ACTIONS(7266), + [anon_sym_Class] = ACTIONS(7266), + [anon_sym_id] = ACTIONS(7266), + [anon_sym_out] = ACTIONS(7266), + [anon_sym_inout] = ACTIONS(7266), + [anon_sym_bycopy] = ACTIONS(7266), + [anon_sym_byref] = ACTIONS(7266), + [anon_sym_oneway] = ACTIONS(7266), + }, + [3902] = { + [sym_identifier] = ACTIONS(7524), + [anon_sym_COMMA] = ACTIONS(7526), + [anon_sym_RPAREN] = ACTIONS(7526), + [anon_sym_LPAREN2] = ACTIONS(7526), + [anon_sym_STAR] = ACTIONS(7526), + [anon_sym_CARET] = ACTIONS(7526), + [anon_sym_GT] = ACTIONS(7526), + [anon_sym_LT] = ACTIONS(7526), + [anon_sym___extension__] = ACTIONS(7524), + [anon_sym___attribute__] = ACTIONS(7524), + [anon_sym___attribute] = ACTIONS(7524), + [anon_sym_noreturn] = ACTIONS(7524), + [anon_sym_LBRACK] = ACTIONS(7526), + [anon_sym___based] = ACTIONS(7524), + [anon_sym_LBRACE] = ACTIONS(7526), + [anon_sym_signed] = ACTIONS(7524), + [anon_sym_unsigned] = ACTIONS(7524), + [anon_sym_long] = ACTIONS(7524), + [anon_sym_short] = ACTIONS(7524), + [anon_sym_ATautoreleasepool] = ACTIONS(7526), + [anon_sym_const] = ACTIONS(7524), + [anon_sym_constexpr] = ACTIONS(7524), + [anon_sym_volatile] = ACTIONS(7524), + [anon_sym_restrict] = ACTIONS(7524), + [anon_sym___restrict__] = ACTIONS(7524), + [anon_sym__Atomic] = ACTIONS(7524), + [anon_sym__Noreturn] = ACTIONS(7524), + [anon_sym__Nonnull] = ACTIONS(7524), + [anon_sym_nullable] = ACTIONS(7524), + [anon_sym__Complex] = ACTIONS(7524), + [anon_sym__Nullable] = ACTIONS(7524), + [anon_sym__Nullable_result] = ACTIONS(7524), + [anon_sym__Null_unspecified] = ACTIONS(7524), + [anon_sym___autoreleasing] = ACTIONS(7524), + [anon_sym___block] = ACTIONS(7524), + [anon_sym___bridge] = ACTIONS(7524), + [anon_sym___bridge_retained] = ACTIONS(7524), + [anon_sym___bridge_transfer] = ACTIONS(7524), + [anon_sym___complex] = ACTIONS(7524), + [anon_sym___const] = ACTIONS(7524), + [anon_sym___imag] = ACTIONS(7524), + [anon_sym___kindof] = ACTIONS(7524), + [anon_sym___nonnull] = ACTIONS(7524), + [anon_sym___nullable] = ACTIONS(7524), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7524), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7524), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7524), + [anon_sym___real] = ACTIONS(7524), + [anon_sym___strong] = ACTIONS(7524), + [anon_sym___unsafe_unretained] = ACTIONS(7524), + [anon_sym___unused] = ACTIONS(7524), + [anon_sym___weak] = ACTIONS(7524), + [anon_sym_alignas] = ACTIONS(7524), + [anon_sym__Alignas] = ACTIONS(7524), + [sym_primitive_type] = ACTIONS(7524), + [anon_sym_enum] = ACTIONS(7524), + [anon_sym_COLON] = ACTIONS(7526), + [anon_sym_struct] = ACTIONS(7524), + [anon_sym_union] = ACTIONS(7524), + [anon_sym_in] = ACTIONS(7524), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7524), + [anon_sym___typeof] = ACTIONS(7524), + [anon_sym_typeof] = ACTIONS(7524), + [anon_sym_BOOL] = ACTIONS(7524), + [anon_sym_IMP] = ACTIONS(7524), + [anon_sym_SEL] = ACTIONS(7524), + [anon_sym_Class] = ACTIONS(7524), + [anon_sym_id] = ACTIONS(7524), + [anon_sym_out] = ACTIONS(7524), + [anon_sym_inout] = ACTIONS(7524), + [anon_sym_bycopy] = ACTIONS(7524), + [anon_sym_byref] = ACTIONS(7524), + [anon_sym_oneway] = ACTIONS(7524), + }, + [3903] = { + [sym_parameter_list] = STATE(3790), + [sym_identifier] = ACTIONS(6819), + [anon_sym_COMMA] = ACTIONS(6821), + [anon_sym_RPAREN] = ACTIONS(6821), + [anon_sym_LPAREN2] = ACTIONS(8958), + [anon_sym_STAR] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(6819), + [anon_sym___attribute__] = ACTIONS(6819), + [anon_sym___attribute] = ACTIONS(6819), + [anon_sym_noreturn] = ACTIONS(6819), + [anon_sym_LBRACK] = ACTIONS(8960), + [anon_sym___based] = ACTIONS(6819), + [anon_sym_LBRACE] = ACTIONS(6821), + [anon_sym_signed] = ACTIONS(6819), + [anon_sym_unsigned] = ACTIONS(6819), + [anon_sym_long] = ACTIONS(6819), + [anon_sym_short] = ACTIONS(6819), + [anon_sym_ATautoreleasepool] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(6819), + [anon_sym_constexpr] = ACTIONS(6819), + [anon_sym_volatile] = ACTIONS(6819), + [anon_sym_restrict] = ACTIONS(6819), + [anon_sym___restrict__] = ACTIONS(6819), + [anon_sym__Atomic] = ACTIONS(6819), + [anon_sym__Noreturn] = ACTIONS(6819), + [anon_sym__Nonnull] = ACTIONS(6819), + [anon_sym_nullable] = ACTIONS(6819), + [anon_sym__Complex] = ACTIONS(6819), + [anon_sym__Nullable] = ACTIONS(6819), + [anon_sym__Nullable_result] = ACTIONS(6819), + [anon_sym__Null_unspecified] = ACTIONS(6819), + [anon_sym___autoreleasing] = ACTIONS(6819), + [anon_sym___block] = ACTIONS(6819), + [anon_sym___bridge] = ACTIONS(6819), + [anon_sym___bridge_retained] = ACTIONS(6819), + [anon_sym___bridge_transfer] = ACTIONS(6819), + [anon_sym___complex] = ACTIONS(6819), + [anon_sym___const] = ACTIONS(6819), + [anon_sym___imag] = ACTIONS(6819), + [anon_sym___kindof] = ACTIONS(6819), + [anon_sym___nonnull] = ACTIONS(6819), + [anon_sym___nullable] = ACTIONS(6819), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6819), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6819), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6819), + [anon_sym___real] = ACTIONS(6819), + [anon_sym___strong] = ACTIONS(6819), + [anon_sym___unsafe_unretained] = ACTIONS(6819), + [anon_sym___unused] = ACTIONS(6819), + [anon_sym___weak] = ACTIONS(6819), + [anon_sym_alignas] = ACTIONS(6819), + [anon_sym__Alignas] = ACTIONS(6819), + [sym_primitive_type] = ACTIONS(6819), + [anon_sym_enum] = ACTIONS(6819), + [anon_sym_struct] = ACTIONS(6819), + [anon_sym_union] = ACTIONS(6819), + [anon_sym_in] = ACTIONS(6819), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6819), + [anon_sym___typeof] = ACTIONS(6819), + [anon_sym_typeof] = ACTIONS(6819), + [anon_sym_BOOL] = ACTIONS(6819), + [anon_sym_IMP] = ACTIONS(6819), + [anon_sym_SEL] = ACTIONS(6819), + [anon_sym_Class] = ACTIONS(6819), + [anon_sym_id] = ACTIONS(6819), + [anon_sym_out] = ACTIONS(6819), + [anon_sym_inout] = ACTIONS(6819), + [anon_sym_bycopy] = ACTIONS(6819), + [anon_sym_byref] = ACTIONS(6819), + [anon_sym_oneway] = ACTIONS(6819), + }, + [3904] = { + [sym_attribute_specifier] = STATE(3975), + [sym_identifier] = ACTIONS(8004), + [anon_sym_COMMA] = ACTIONS(8006), + [anon_sym_RPAREN] = ACTIONS(8006), + [anon_sym_LPAREN2] = ACTIONS(8006), + [anon_sym_STAR] = ACTIONS(8006), + [anon_sym_CARET] = ACTIONS(8006), + [anon_sym_GT] = ACTIONS(8006), + [anon_sym_LT] = ACTIONS(8006), + [anon_sym___extension__] = ACTIONS(8004), + [anon_sym___attribute__] = ACTIONS(9007), + [anon_sym___attribute] = ACTIONS(9007), + [anon_sym_noreturn] = ACTIONS(8004), + [anon_sym_LBRACK] = ACTIONS(8006), + [anon_sym___based] = ACTIONS(8004), + [anon_sym_LBRACE] = ACTIONS(8006), + [anon_sym_signed] = ACTIONS(8004), + [anon_sym_unsigned] = ACTIONS(8004), + [anon_sym_long] = ACTIONS(8004), + [anon_sym_short] = ACTIONS(8004), + [anon_sym_ATautoreleasepool] = ACTIONS(8006), + [anon_sym_const] = ACTIONS(8004), + [anon_sym_constexpr] = ACTIONS(8004), + [anon_sym_volatile] = ACTIONS(8004), + [anon_sym_restrict] = ACTIONS(8004), + [anon_sym___restrict__] = ACTIONS(8004), + [anon_sym__Atomic] = ACTIONS(8004), + [anon_sym__Noreturn] = ACTIONS(8004), + [anon_sym__Nonnull] = ACTIONS(8004), + [anon_sym_nullable] = ACTIONS(8004), + [anon_sym__Complex] = ACTIONS(8004), + [anon_sym__Nullable] = ACTIONS(8004), + [anon_sym__Nullable_result] = ACTIONS(8004), + [anon_sym__Null_unspecified] = ACTIONS(8004), + [anon_sym___autoreleasing] = ACTIONS(8004), + [anon_sym___block] = ACTIONS(8004), + [anon_sym___bridge] = ACTIONS(8004), + [anon_sym___bridge_retained] = ACTIONS(8004), + [anon_sym___bridge_transfer] = ACTIONS(8004), + [anon_sym___complex] = ACTIONS(8004), + [anon_sym___const] = ACTIONS(8004), + [anon_sym___imag] = ACTIONS(8004), + [anon_sym___kindof] = ACTIONS(8004), + [anon_sym___nonnull] = ACTIONS(8004), + [anon_sym___nullable] = ACTIONS(8004), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8004), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8004), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8004), + [anon_sym___real] = ACTIONS(8004), + [anon_sym___strong] = ACTIONS(8004), + [anon_sym___unsafe_unretained] = ACTIONS(8004), + [anon_sym___unused] = ACTIONS(8004), + [anon_sym___weak] = ACTIONS(8004), + [anon_sym_alignas] = ACTIONS(8004), + [anon_sym__Alignas] = ACTIONS(8004), + [sym_primitive_type] = ACTIONS(8004), + [anon_sym_enum] = ACTIONS(8004), + [anon_sym_struct] = ACTIONS(8004), + [anon_sym_union] = ACTIONS(8004), + [anon_sym_in] = ACTIONS(8004), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8004), + [anon_sym___typeof] = ACTIONS(8004), + [anon_sym_typeof] = ACTIONS(8004), + [anon_sym_BOOL] = ACTIONS(8004), + [anon_sym_IMP] = ACTIONS(8004), + [anon_sym_SEL] = ACTIONS(8004), + [anon_sym_Class] = ACTIONS(8004), + [anon_sym_id] = ACTIONS(8004), + [anon_sym_out] = ACTIONS(8004), + [anon_sym_inout] = ACTIONS(8004), + [anon_sym_bycopy] = ACTIONS(8004), + [anon_sym_byref] = ACTIONS(8004), + [anon_sym_oneway] = ACTIONS(8004), + }, + [3905] = { + [sym_attribute_specifier] = STATE(3976), + [sym_identifier] = ACTIONS(8044), + [anon_sym_COMMA] = ACTIONS(8046), + [anon_sym_RPAREN] = ACTIONS(8046), + [anon_sym_LPAREN2] = ACTIONS(8046), + [anon_sym_STAR] = ACTIONS(8046), + [anon_sym_CARET] = ACTIONS(8046), + [anon_sym_GT] = ACTIONS(8046), + [anon_sym_LT] = ACTIONS(8046), + [anon_sym___extension__] = ACTIONS(8044), + [anon_sym___attribute__] = ACTIONS(9010), + [anon_sym___attribute] = ACTIONS(9010), + [anon_sym_noreturn] = ACTIONS(8044), + [anon_sym_LBRACK] = ACTIONS(8046), + [anon_sym___based] = ACTIONS(8044), + [anon_sym_LBRACE] = ACTIONS(8046), + [anon_sym_signed] = ACTIONS(8044), + [anon_sym_unsigned] = ACTIONS(8044), + [anon_sym_long] = ACTIONS(8044), + [anon_sym_short] = ACTIONS(8044), + [anon_sym_ATautoreleasepool] = ACTIONS(8046), + [anon_sym_const] = ACTIONS(8044), + [anon_sym_constexpr] = ACTIONS(8044), + [anon_sym_volatile] = ACTIONS(8044), + [anon_sym_restrict] = ACTIONS(8044), + [anon_sym___restrict__] = ACTIONS(8044), + [anon_sym__Atomic] = ACTIONS(8044), + [anon_sym__Noreturn] = ACTIONS(8044), + [anon_sym__Nonnull] = ACTIONS(8044), + [anon_sym_nullable] = ACTIONS(8044), + [anon_sym__Complex] = ACTIONS(8044), + [anon_sym__Nullable] = ACTIONS(8044), + [anon_sym__Nullable_result] = ACTIONS(8044), + [anon_sym__Null_unspecified] = ACTIONS(8044), + [anon_sym___autoreleasing] = ACTIONS(8044), + [anon_sym___block] = ACTIONS(8044), + [anon_sym___bridge] = ACTIONS(8044), + [anon_sym___bridge_retained] = ACTIONS(8044), + [anon_sym___bridge_transfer] = ACTIONS(8044), + [anon_sym___complex] = ACTIONS(8044), + [anon_sym___const] = ACTIONS(8044), + [anon_sym___imag] = ACTIONS(8044), + [anon_sym___kindof] = ACTIONS(8044), + [anon_sym___nonnull] = ACTIONS(8044), + [anon_sym___nullable] = ACTIONS(8044), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8044), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8044), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8044), + [anon_sym___real] = ACTIONS(8044), + [anon_sym___strong] = ACTIONS(8044), + [anon_sym___unsafe_unretained] = ACTIONS(8044), + [anon_sym___unused] = ACTIONS(8044), + [anon_sym___weak] = ACTIONS(8044), + [anon_sym_alignas] = ACTIONS(8044), + [anon_sym__Alignas] = ACTIONS(8044), + [sym_primitive_type] = ACTIONS(8044), + [anon_sym_enum] = ACTIONS(8044), + [anon_sym_struct] = ACTIONS(8044), + [anon_sym_union] = ACTIONS(8044), + [anon_sym_in] = ACTIONS(8044), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8044), + [anon_sym___typeof] = ACTIONS(8044), + [anon_sym_typeof] = ACTIONS(8044), + [anon_sym_BOOL] = ACTIONS(8044), + [anon_sym_IMP] = ACTIONS(8044), + [anon_sym_SEL] = ACTIONS(8044), + [anon_sym_Class] = ACTIONS(8044), + [anon_sym_id] = ACTIONS(8044), + [anon_sym_out] = ACTIONS(8044), + [anon_sym_inout] = ACTIONS(8044), + [anon_sym_bycopy] = ACTIONS(8044), + [anon_sym_byref] = ACTIONS(8044), + [anon_sym_oneway] = ACTIONS(8044), + }, + [3906] = { + [sym__type_definition_type] = STATE(4794), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4055), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3907] = { + [sym__type_definition_type] = STATE(4796), + [sym_attribute_specifier] = STATE(3912), + [sym_ms_declspec_modifier] = STATE(4055), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3908] = { + [sym_attribute_specifier] = STATE(3998), + [sym_identifier] = ACTIONS(8055), + [anon_sym_COMMA] = ACTIONS(8057), + [anon_sym_RPAREN] = ACTIONS(8057), + [anon_sym_LPAREN2] = ACTIONS(8057), + [anon_sym_STAR] = ACTIONS(8057), + [anon_sym_CARET] = ACTIONS(8057), + [anon_sym_GT] = ACTIONS(8057), + [anon_sym_LT] = ACTIONS(8057), + [anon_sym___extension__] = ACTIONS(8055), + [anon_sym___attribute__] = ACTIONS(9013), + [anon_sym___attribute] = ACTIONS(9013), + [anon_sym_noreturn] = ACTIONS(8055), + [anon_sym_LBRACK] = ACTIONS(8057), + [anon_sym___based] = ACTIONS(8055), + [anon_sym_LBRACE] = ACTIONS(8057), + [anon_sym_signed] = ACTIONS(8055), + [anon_sym_unsigned] = ACTIONS(8055), + [anon_sym_long] = ACTIONS(8055), + [anon_sym_short] = ACTIONS(8055), + [anon_sym_ATautoreleasepool] = ACTIONS(8057), + [anon_sym_const] = ACTIONS(8055), + [anon_sym_constexpr] = ACTIONS(8055), + [anon_sym_volatile] = ACTIONS(8055), + [anon_sym_restrict] = ACTIONS(8055), + [anon_sym___restrict__] = ACTIONS(8055), + [anon_sym__Atomic] = ACTIONS(8055), + [anon_sym__Noreturn] = ACTIONS(8055), + [anon_sym__Nonnull] = ACTIONS(8055), + [anon_sym_nullable] = ACTIONS(8055), + [anon_sym__Complex] = ACTIONS(8055), + [anon_sym__Nullable] = ACTIONS(8055), + [anon_sym__Nullable_result] = ACTIONS(8055), + [anon_sym__Null_unspecified] = ACTIONS(8055), + [anon_sym___autoreleasing] = ACTIONS(8055), + [anon_sym___block] = ACTIONS(8055), + [anon_sym___bridge] = ACTIONS(8055), + [anon_sym___bridge_retained] = ACTIONS(8055), + [anon_sym___bridge_transfer] = ACTIONS(8055), + [anon_sym___complex] = ACTIONS(8055), + [anon_sym___const] = ACTIONS(8055), + [anon_sym___imag] = ACTIONS(8055), + [anon_sym___kindof] = ACTIONS(8055), + [anon_sym___nonnull] = ACTIONS(8055), + [anon_sym___nullable] = ACTIONS(8055), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8055), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8055), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8055), + [anon_sym___real] = ACTIONS(8055), + [anon_sym___strong] = ACTIONS(8055), + [anon_sym___unsafe_unretained] = ACTIONS(8055), + [anon_sym___unused] = ACTIONS(8055), + [anon_sym___weak] = ACTIONS(8055), + [anon_sym_alignas] = ACTIONS(8055), + [anon_sym__Alignas] = ACTIONS(8055), + [sym_primitive_type] = ACTIONS(8055), + [anon_sym_enum] = ACTIONS(8055), + [anon_sym_struct] = ACTIONS(8055), + [anon_sym_union] = ACTIONS(8055), + [anon_sym_in] = ACTIONS(8055), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8055), + [anon_sym___typeof] = ACTIONS(8055), + [anon_sym_typeof] = ACTIONS(8055), + [anon_sym_BOOL] = ACTIONS(8055), + [anon_sym_IMP] = ACTIONS(8055), + [anon_sym_SEL] = ACTIONS(8055), + [anon_sym_Class] = ACTIONS(8055), + [anon_sym_id] = ACTIONS(8055), + [anon_sym_out] = ACTIONS(8055), + [anon_sym_inout] = ACTIONS(8055), + [anon_sym_bycopy] = ACTIONS(8055), + [anon_sym_byref] = ACTIONS(8055), + [anon_sym_oneway] = ACTIONS(8055), + }, + [3909] = { + [sym_identifier] = ACTIONS(7388), + [anon_sym_COMMA] = ACTIONS(7390), + [anon_sym_RPAREN] = ACTIONS(7390), + [anon_sym_LPAREN2] = ACTIONS(7390), + [anon_sym_STAR] = ACTIONS(7390), + [anon_sym_CARET] = ACTIONS(7390), + [anon_sym_GT] = ACTIONS(7390), + [anon_sym_LT] = ACTIONS(7390), + [anon_sym___extension__] = ACTIONS(7388), + [anon_sym___attribute__] = ACTIONS(7388), + [anon_sym___attribute] = ACTIONS(7388), + [anon_sym_noreturn] = ACTIONS(7388), + [anon_sym_LBRACK] = ACTIONS(7390), + [anon_sym___based] = ACTIONS(7388), + [anon_sym_LBRACE] = ACTIONS(7390), + [anon_sym_signed] = ACTIONS(7388), + [anon_sym_unsigned] = ACTIONS(7388), + [anon_sym_long] = ACTIONS(7388), + [anon_sym_short] = ACTIONS(7388), + [anon_sym_ATautoreleasepool] = ACTIONS(7390), + [anon_sym_const] = ACTIONS(7388), + [anon_sym_constexpr] = ACTIONS(7388), + [anon_sym_volatile] = ACTIONS(7388), + [anon_sym_restrict] = ACTIONS(7388), + [anon_sym___restrict__] = ACTIONS(7388), + [anon_sym__Atomic] = ACTIONS(7388), + [anon_sym__Noreturn] = ACTIONS(7388), + [anon_sym__Nonnull] = ACTIONS(7388), + [anon_sym_nullable] = ACTIONS(7388), + [anon_sym__Complex] = ACTIONS(7388), + [anon_sym__Nullable] = ACTIONS(7388), + [anon_sym__Nullable_result] = ACTIONS(7388), + [anon_sym__Null_unspecified] = ACTIONS(7388), + [anon_sym___autoreleasing] = ACTIONS(7388), + [anon_sym___block] = ACTIONS(7388), + [anon_sym___bridge] = ACTIONS(7388), + [anon_sym___bridge_retained] = ACTIONS(7388), + [anon_sym___bridge_transfer] = ACTIONS(7388), + [anon_sym___complex] = ACTIONS(7388), + [anon_sym___const] = ACTIONS(7388), + [anon_sym___imag] = ACTIONS(7388), + [anon_sym___kindof] = ACTIONS(7388), + [anon_sym___nonnull] = ACTIONS(7388), + [anon_sym___nullable] = ACTIONS(7388), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7388), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7388), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7388), + [anon_sym___real] = ACTIONS(7388), + [anon_sym___strong] = ACTIONS(7388), + [anon_sym___unsafe_unretained] = ACTIONS(7388), + [anon_sym___unused] = ACTIONS(7388), + [anon_sym___weak] = ACTIONS(7388), + [anon_sym_alignas] = ACTIONS(7388), + [anon_sym__Alignas] = ACTIONS(7388), + [sym_primitive_type] = ACTIONS(7388), + [anon_sym_enum] = ACTIONS(7388), + [anon_sym_COLON] = ACTIONS(7390), + [anon_sym_struct] = ACTIONS(7388), + [anon_sym_union] = ACTIONS(7388), + [anon_sym_in] = ACTIONS(7388), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7388), + [anon_sym___typeof] = ACTIONS(7388), + [anon_sym_typeof] = ACTIONS(7388), + [anon_sym_BOOL] = ACTIONS(7388), + [anon_sym_IMP] = ACTIONS(7388), + [anon_sym_SEL] = ACTIONS(7388), + [anon_sym_Class] = ACTIONS(7388), + [anon_sym_id] = ACTIONS(7388), + [anon_sym_out] = ACTIONS(7388), + [anon_sym_inout] = ACTIONS(7388), + [anon_sym_bycopy] = ACTIONS(7388), + [anon_sym_byref] = ACTIONS(7388), + [anon_sym_oneway] = ACTIONS(7388), + }, + [3910] = { + [sym_identifier] = ACTIONS(7404), + [anon_sym_COMMA] = ACTIONS(7406), + [anon_sym_RPAREN] = ACTIONS(7406), + [anon_sym_LPAREN2] = ACTIONS(7406), + [anon_sym_STAR] = ACTIONS(7406), + [anon_sym_CARET] = ACTIONS(7406), + [anon_sym_GT] = ACTIONS(7406), + [anon_sym_LT] = ACTIONS(7406), + [anon_sym___extension__] = ACTIONS(7404), + [anon_sym___attribute__] = ACTIONS(7404), + [anon_sym___attribute] = ACTIONS(7404), + [anon_sym_noreturn] = ACTIONS(7404), + [anon_sym_LBRACK] = ACTIONS(7406), + [anon_sym___based] = ACTIONS(7404), + [anon_sym_LBRACE] = ACTIONS(7406), + [anon_sym_signed] = ACTIONS(7404), + [anon_sym_unsigned] = ACTIONS(7404), + [anon_sym_long] = ACTIONS(7404), + [anon_sym_short] = ACTIONS(7404), + [anon_sym_ATautoreleasepool] = ACTIONS(7406), + [anon_sym_const] = ACTIONS(7404), + [anon_sym_constexpr] = ACTIONS(7404), + [anon_sym_volatile] = ACTIONS(7404), + [anon_sym_restrict] = ACTIONS(7404), + [anon_sym___restrict__] = ACTIONS(7404), + [anon_sym__Atomic] = ACTIONS(7404), + [anon_sym__Noreturn] = ACTIONS(7404), + [anon_sym__Nonnull] = ACTIONS(7404), + [anon_sym_nullable] = ACTIONS(7404), + [anon_sym__Complex] = ACTIONS(7404), + [anon_sym__Nullable] = ACTIONS(7404), + [anon_sym__Nullable_result] = ACTIONS(7404), + [anon_sym__Null_unspecified] = ACTIONS(7404), + [anon_sym___autoreleasing] = ACTIONS(7404), + [anon_sym___block] = ACTIONS(7404), + [anon_sym___bridge] = ACTIONS(7404), + [anon_sym___bridge_retained] = ACTIONS(7404), + [anon_sym___bridge_transfer] = ACTIONS(7404), + [anon_sym___complex] = ACTIONS(7404), + [anon_sym___const] = ACTIONS(7404), + [anon_sym___imag] = ACTIONS(7404), + [anon_sym___kindof] = ACTIONS(7404), + [anon_sym___nonnull] = ACTIONS(7404), + [anon_sym___nullable] = ACTIONS(7404), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7404), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7404), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7404), + [anon_sym___real] = ACTIONS(7404), + [anon_sym___strong] = ACTIONS(7404), + [anon_sym___unsafe_unretained] = ACTIONS(7404), + [anon_sym___unused] = ACTIONS(7404), + [anon_sym___weak] = ACTIONS(7404), + [anon_sym_alignas] = ACTIONS(7404), + [anon_sym__Alignas] = ACTIONS(7404), + [sym_primitive_type] = ACTIONS(7404), + [anon_sym_enum] = ACTIONS(7404), + [anon_sym_COLON] = ACTIONS(7406), + [anon_sym_struct] = ACTIONS(7404), + [anon_sym_union] = ACTIONS(7404), + [anon_sym_in] = ACTIONS(7404), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7404), + [anon_sym___typeof] = ACTIONS(7404), + [anon_sym_typeof] = ACTIONS(7404), + [anon_sym_BOOL] = ACTIONS(7404), + [anon_sym_IMP] = ACTIONS(7404), + [anon_sym_SEL] = ACTIONS(7404), + [anon_sym_Class] = ACTIONS(7404), + [anon_sym_id] = ACTIONS(7404), + [anon_sym_out] = ACTIONS(7404), + [anon_sym_inout] = ACTIONS(7404), + [anon_sym_bycopy] = ACTIONS(7404), + [anon_sym_byref] = ACTIONS(7404), + [anon_sym_oneway] = ACTIONS(7404), + }, + [3911] = { + [sym_identifier] = ACTIONS(7570), + [anon_sym_COMMA] = ACTIONS(7572), + [anon_sym_RPAREN] = ACTIONS(7572), + [anon_sym_LPAREN2] = ACTIONS(7572), + [anon_sym_STAR] = ACTIONS(7572), + [anon_sym_CARET] = ACTIONS(7572), + [anon_sym_GT] = ACTIONS(7572), + [anon_sym_LT] = ACTIONS(7572), + [anon_sym___extension__] = ACTIONS(7570), + [anon_sym___attribute__] = ACTIONS(7570), + [anon_sym___attribute] = ACTIONS(7570), + [anon_sym_noreturn] = ACTIONS(7570), + [anon_sym_LBRACK] = ACTIONS(7572), + [anon_sym___based] = ACTIONS(7570), + [anon_sym_LBRACE] = ACTIONS(7572), + [anon_sym_signed] = ACTIONS(7570), + [anon_sym_unsigned] = ACTIONS(7570), + [anon_sym_long] = ACTIONS(7570), + [anon_sym_short] = ACTIONS(7570), + [anon_sym_ATautoreleasepool] = ACTIONS(7572), + [anon_sym_const] = ACTIONS(7570), + [anon_sym_constexpr] = ACTIONS(7570), + [anon_sym_volatile] = ACTIONS(7570), + [anon_sym_restrict] = ACTIONS(7570), + [anon_sym___restrict__] = ACTIONS(7570), + [anon_sym__Atomic] = ACTIONS(7570), + [anon_sym__Noreturn] = ACTIONS(7570), + [anon_sym__Nonnull] = ACTIONS(7570), + [anon_sym_nullable] = ACTIONS(7570), + [anon_sym__Complex] = ACTIONS(7570), + [anon_sym__Nullable] = ACTIONS(7570), + [anon_sym__Nullable_result] = ACTIONS(7570), + [anon_sym__Null_unspecified] = ACTIONS(7570), + [anon_sym___autoreleasing] = ACTIONS(7570), + [anon_sym___block] = ACTIONS(7570), + [anon_sym___bridge] = ACTIONS(7570), + [anon_sym___bridge_retained] = ACTIONS(7570), + [anon_sym___bridge_transfer] = ACTIONS(7570), + [anon_sym___complex] = ACTIONS(7570), + [anon_sym___const] = ACTIONS(7570), + [anon_sym___imag] = ACTIONS(7570), + [anon_sym___kindof] = ACTIONS(7570), + [anon_sym___nonnull] = ACTIONS(7570), + [anon_sym___nullable] = ACTIONS(7570), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7570), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7570), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7570), + [anon_sym___real] = ACTIONS(7570), + [anon_sym___strong] = ACTIONS(7570), + [anon_sym___unsafe_unretained] = ACTIONS(7570), + [anon_sym___unused] = ACTIONS(7570), + [anon_sym___weak] = ACTIONS(7570), + [anon_sym_alignas] = ACTIONS(7570), + [anon_sym__Alignas] = ACTIONS(7570), + [sym_primitive_type] = ACTIONS(7570), + [anon_sym_enum] = ACTIONS(7570), + [anon_sym_COLON] = ACTIONS(7572), + [anon_sym_struct] = ACTIONS(7570), + [anon_sym_union] = ACTIONS(7570), + [anon_sym_in] = ACTIONS(7570), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7570), + [anon_sym___typeof] = ACTIONS(7570), + [anon_sym_typeof] = ACTIONS(7570), + [anon_sym_BOOL] = ACTIONS(7570), + [anon_sym_IMP] = ACTIONS(7570), + [anon_sym_SEL] = ACTIONS(7570), + [anon_sym_Class] = ACTIONS(7570), + [anon_sym_id] = ACTIONS(7570), + [anon_sym_out] = ACTIONS(7570), + [anon_sym_inout] = ACTIONS(7570), + [anon_sym_bycopy] = ACTIONS(7570), + [anon_sym_byref] = ACTIONS(7570), + [anon_sym_oneway] = ACTIONS(7570), + }, + [3912] = { + [sym__type_definition_type] = STATE(4800), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4070), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3913] = { + [sym_identifier] = ACTIONS(5034), + [anon_sym_COMMA] = ACTIONS(5030), + [anon_sym_RPAREN] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5030), + [anon_sym_LT] = ACTIONS(5030), + [anon_sym___extension__] = ACTIONS(5034), + [anon_sym___attribute__] = ACTIONS(5034), + [anon_sym___attribute] = ACTIONS(5034), + [anon_sym_noreturn] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym___based] = ACTIONS(5034), + [anon_sym_LBRACE] = ACTIONS(5030), + [anon_sym_signed] = ACTIONS(5034), + [anon_sym_unsigned] = ACTIONS(5034), + [anon_sym_long] = ACTIONS(5034), + [anon_sym_short] = ACTIONS(5034), + [anon_sym_ATautoreleasepool] = ACTIONS(5030), + [anon_sym_const] = ACTIONS(5034), + [anon_sym_constexpr] = ACTIONS(5034), + [anon_sym_volatile] = ACTIONS(5034), + [anon_sym_restrict] = ACTIONS(5034), + [anon_sym___restrict__] = ACTIONS(5034), + [anon_sym__Atomic] = ACTIONS(5034), + [anon_sym__Noreturn] = ACTIONS(5034), + [anon_sym__Nonnull] = ACTIONS(5034), + [anon_sym_nullable] = ACTIONS(5034), + [anon_sym__Complex] = ACTIONS(5034), + [anon_sym__Nullable] = ACTIONS(5034), + [anon_sym__Nullable_result] = ACTIONS(5034), + [anon_sym__Null_unspecified] = ACTIONS(5034), + [anon_sym___autoreleasing] = ACTIONS(5034), + [anon_sym___block] = ACTIONS(5034), + [anon_sym___bridge] = ACTIONS(5034), + [anon_sym___bridge_retained] = ACTIONS(5034), + [anon_sym___bridge_transfer] = ACTIONS(5034), + [anon_sym___complex] = ACTIONS(5034), + [anon_sym___const] = ACTIONS(5034), + [anon_sym___imag] = ACTIONS(5034), + [anon_sym___kindof] = ACTIONS(5034), + [anon_sym___nonnull] = ACTIONS(5034), + [anon_sym___nullable] = ACTIONS(5034), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5034), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5034), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5034), + [anon_sym___real] = ACTIONS(5034), + [anon_sym___strong] = ACTIONS(5034), + [anon_sym___unsafe_unretained] = ACTIONS(5034), + [anon_sym___unused] = ACTIONS(5034), + [anon_sym___weak] = ACTIONS(5034), + [anon_sym_alignas] = ACTIONS(5034), + [anon_sym__Alignas] = ACTIONS(5034), + [sym_primitive_type] = ACTIONS(5034), + [anon_sym_enum] = ACTIONS(5034), + [anon_sym_COLON] = ACTIONS(5030), + [anon_sym_struct] = ACTIONS(5034), + [anon_sym_union] = ACTIONS(5034), + [anon_sym_in] = ACTIONS(5034), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5034), + [anon_sym___typeof] = ACTIONS(5034), + [anon_sym_typeof] = ACTIONS(5034), + [anon_sym_BOOL] = ACTIONS(5034), + [anon_sym_IMP] = ACTIONS(5034), + [anon_sym_SEL] = ACTIONS(5034), + [anon_sym_Class] = ACTIONS(5034), + [anon_sym_id] = ACTIONS(5034), + [anon_sym_out] = ACTIONS(5034), + [anon_sym_inout] = ACTIONS(5034), + [anon_sym_bycopy] = ACTIONS(5034), + [anon_sym_byref] = ACTIONS(5034), + [anon_sym_oneway] = ACTIONS(5034), + }, + [3914] = { + [sym_parameter_list] = STATE(3790), + [sym_identifier] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6825), + [anon_sym_RPAREN] = ACTIONS(6825), + [anon_sym_LPAREN2] = ACTIONS(8958), + [anon_sym_STAR] = ACTIONS(6825), + [anon_sym_CARET] = ACTIONS(6825), + [anon_sym_GT] = ACTIONS(6825), + [anon_sym_LT] = ACTIONS(6825), + [anon_sym___extension__] = ACTIONS(6823), + [anon_sym___attribute__] = ACTIONS(6823), + [anon_sym___attribute] = ACTIONS(6823), + [anon_sym_noreturn] = ACTIONS(6823), + [anon_sym_LBRACK] = ACTIONS(8960), + [anon_sym___based] = ACTIONS(6823), + [anon_sym_LBRACE] = ACTIONS(6825), + [anon_sym_signed] = ACTIONS(6823), + [anon_sym_unsigned] = ACTIONS(6823), + [anon_sym_long] = ACTIONS(6823), + [anon_sym_short] = ACTIONS(6823), + [anon_sym_ATautoreleasepool] = ACTIONS(6825), + [anon_sym_const] = ACTIONS(6823), + [anon_sym_constexpr] = ACTIONS(6823), + [anon_sym_volatile] = ACTIONS(6823), + [anon_sym_restrict] = ACTIONS(6823), + [anon_sym___restrict__] = ACTIONS(6823), + [anon_sym__Atomic] = ACTIONS(6823), + [anon_sym__Noreturn] = ACTIONS(6823), + [anon_sym__Nonnull] = ACTIONS(6823), + [anon_sym_nullable] = ACTIONS(6823), + [anon_sym__Complex] = ACTIONS(6823), + [anon_sym__Nullable] = ACTIONS(6823), + [anon_sym__Nullable_result] = ACTIONS(6823), + [anon_sym__Null_unspecified] = ACTIONS(6823), + [anon_sym___autoreleasing] = ACTIONS(6823), + [anon_sym___block] = ACTIONS(6823), + [anon_sym___bridge] = ACTIONS(6823), + [anon_sym___bridge_retained] = ACTIONS(6823), + [anon_sym___bridge_transfer] = ACTIONS(6823), + [anon_sym___complex] = ACTIONS(6823), + [anon_sym___const] = ACTIONS(6823), + [anon_sym___imag] = ACTIONS(6823), + [anon_sym___kindof] = ACTIONS(6823), + [anon_sym___nonnull] = ACTIONS(6823), + [anon_sym___nullable] = ACTIONS(6823), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6823), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6823), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6823), + [anon_sym___real] = ACTIONS(6823), + [anon_sym___strong] = ACTIONS(6823), + [anon_sym___unsafe_unretained] = ACTIONS(6823), + [anon_sym___unused] = ACTIONS(6823), + [anon_sym___weak] = ACTIONS(6823), + [anon_sym_alignas] = ACTIONS(6823), + [anon_sym__Alignas] = ACTIONS(6823), + [sym_primitive_type] = ACTIONS(6823), + [anon_sym_enum] = ACTIONS(6823), + [anon_sym_struct] = ACTIONS(6823), + [anon_sym_union] = ACTIONS(6823), + [anon_sym_in] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6823), + [anon_sym___typeof] = ACTIONS(6823), + [anon_sym_typeof] = ACTIONS(6823), + [anon_sym_BOOL] = ACTIONS(6823), + [anon_sym_IMP] = ACTIONS(6823), + [anon_sym_SEL] = ACTIONS(6823), + [anon_sym_Class] = ACTIONS(6823), + [anon_sym_id] = ACTIONS(6823), + [anon_sym_out] = ACTIONS(6823), + [anon_sym_inout] = ACTIONS(6823), + [anon_sym_bycopy] = ACTIONS(6823), + [anon_sym_byref] = ACTIONS(6823), + [anon_sym_oneway] = ACTIONS(6823), + }, + [3915] = { + [sym__type_definition_type] = STATE(4804), + [sym_attribute_specifier] = STATE(3917), + [sym_ms_declspec_modifier] = STATE(4037), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3916] = { + [sym__type_definition_type] = STATE(4806), + [sym_attribute_specifier] = STATE(3918), + [sym_ms_declspec_modifier] = STATE(4041), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3917] = { + [sym__type_definition_type] = STATE(4809), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4041), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3918] = { + [sym__type_definition_type] = STATE(4714), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4045), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3919] = { + [sym__type_definition_type] = STATE(4716), + [sym_attribute_specifier] = STATE(3921), + [sym_ms_declspec_modifier] = STATE(4045), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3920] = { + [sym_identifier] = ACTIONS(4827), + [anon_sym_COMMA] = ACTIONS(4829), + [anon_sym_RPAREN] = ACTIONS(4829), + [anon_sym_LPAREN2] = ACTIONS(4829), + [anon_sym_STAR] = ACTIONS(4829), + [anon_sym_CARET] = ACTIONS(4829), + [anon_sym_GT] = ACTIONS(4829), + [anon_sym_LT] = ACTIONS(4829), + [anon_sym___extension__] = ACTIONS(4827), + [anon_sym___attribute__] = ACTIONS(4827), + [anon_sym___attribute] = ACTIONS(4827), + [anon_sym_noreturn] = ACTIONS(4827), + [anon_sym_LBRACK] = ACTIONS(4829), + [anon_sym___based] = ACTIONS(4827), + [anon_sym_LBRACE] = ACTIONS(4829), + [anon_sym_signed] = ACTIONS(4827), + [anon_sym_unsigned] = ACTIONS(4827), + [anon_sym_long] = ACTIONS(4827), + [anon_sym_short] = ACTIONS(4827), + [anon_sym_ATautoreleasepool] = ACTIONS(4829), + [anon_sym_const] = ACTIONS(4827), + [anon_sym_constexpr] = ACTIONS(4827), + [anon_sym_volatile] = ACTIONS(4827), + [anon_sym_restrict] = ACTIONS(4827), + [anon_sym___restrict__] = ACTIONS(4827), + [anon_sym__Atomic] = ACTIONS(4827), + [anon_sym__Noreturn] = ACTIONS(4827), + [anon_sym__Nonnull] = ACTIONS(4827), + [anon_sym_nullable] = ACTIONS(4827), + [anon_sym__Complex] = ACTIONS(4827), + [anon_sym__Nullable] = ACTIONS(4827), + [anon_sym__Nullable_result] = ACTIONS(4827), + [anon_sym__Null_unspecified] = ACTIONS(4827), + [anon_sym___autoreleasing] = ACTIONS(4827), + [anon_sym___block] = ACTIONS(4827), + [anon_sym___bridge] = ACTIONS(4827), + [anon_sym___bridge_retained] = ACTIONS(4827), + [anon_sym___bridge_transfer] = ACTIONS(4827), + [anon_sym___complex] = ACTIONS(4827), + [anon_sym___const] = ACTIONS(4827), + [anon_sym___imag] = ACTIONS(4827), + [anon_sym___kindof] = ACTIONS(4827), + [anon_sym___nonnull] = ACTIONS(4827), + [anon_sym___nullable] = ACTIONS(4827), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4827), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4827), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4827), + [anon_sym___real] = ACTIONS(4827), + [anon_sym___strong] = ACTIONS(4827), + [anon_sym___unsafe_unretained] = ACTIONS(4827), + [anon_sym___unused] = ACTIONS(4827), + [anon_sym___weak] = ACTIONS(4827), + [anon_sym_alignas] = ACTIONS(4827), + [anon_sym__Alignas] = ACTIONS(4827), + [sym_primitive_type] = ACTIONS(4827), + [anon_sym_enum] = ACTIONS(4827), + [anon_sym_COLON] = ACTIONS(4829), + [anon_sym_struct] = ACTIONS(4827), + [anon_sym_union] = ACTIONS(4827), + [anon_sym_in] = ACTIONS(4827), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4827), + [anon_sym___typeof] = ACTIONS(4827), + [anon_sym_typeof] = ACTIONS(4827), + [anon_sym_BOOL] = ACTIONS(4827), + [anon_sym_IMP] = ACTIONS(4827), + [anon_sym_SEL] = ACTIONS(4827), + [anon_sym_Class] = ACTIONS(4827), + [anon_sym_id] = ACTIONS(4827), + [anon_sym_out] = ACTIONS(4827), + [anon_sym_inout] = ACTIONS(4827), + [anon_sym_bycopy] = ACTIONS(4827), + [anon_sym_byref] = ACTIONS(4827), + [anon_sym_oneway] = ACTIONS(4827), + }, + [3921] = { + [sym__type_definition_type] = STATE(4718), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4071), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3922] = { + [sym_identifier] = ACTIONS(7460), + [anon_sym_COMMA] = ACTIONS(7462), + [anon_sym_RPAREN] = ACTIONS(7462), + [anon_sym_LPAREN2] = ACTIONS(7462), + [anon_sym_STAR] = ACTIONS(7462), + [anon_sym_CARET] = ACTIONS(7462), + [anon_sym_GT] = ACTIONS(7462), + [anon_sym_LT] = ACTIONS(7462), + [anon_sym___extension__] = ACTIONS(7460), + [anon_sym___attribute__] = ACTIONS(7460), + [anon_sym___attribute] = ACTIONS(7460), + [anon_sym_noreturn] = ACTIONS(7460), + [anon_sym_LBRACK] = ACTIONS(7462), + [anon_sym___based] = ACTIONS(7460), + [anon_sym_LBRACE] = ACTIONS(7462), + [anon_sym_signed] = ACTIONS(7460), + [anon_sym_unsigned] = ACTIONS(7460), + [anon_sym_long] = ACTIONS(7460), + [anon_sym_short] = ACTIONS(7460), + [anon_sym_ATautoreleasepool] = ACTIONS(7462), + [anon_sym_const] = ACTIONS(7460), + [anon_sym_constexpr] = ACTIONS(7460), + [anon_sym_volatile] = ACTIONS(7460), + [anon_sym_restrict] = ACTIONS(7460), + [anon_sym___restrict__] = ACTIONS(7460), + [anon_sym__Atomic] = ACTIONS(7460), + [anon_sym__Noreturn] = ACTIONS(7460), + [anon_sym__Nonnull] = ACTIONS(7460), + [anon_sym_nullable] = ACTIONS(7460), + [anon_sym__Complex] = ACTIONS(7460), + [anon_sym__Nullable] = ACTIONS(7460), + [anon_sym__Nullable_result] = ACTIONS(7460), + [anon_sym__Null_unspecified] = ACTIONS(7460), + [anon_sym___autoreleasing] = ACTIONS(7460), + [anon_sym___block] = ACTIONS(7460), + [anon_sym___bridge] = ACTIONS(7460), + [anon_sym___bridge_retained] = ACTIONS(7460), + [anon_sym___bridge_transfer] = ACTIONS(7460), + [anon_sym___complex] = ACTIONS(7460), + [anon_sym___const] = ACTIONS(7460), + [anon_sym___imag] = ACTIONS(7460), + [anon_sym___kindof] = ACTIONS(7460), + [anon_sym___nonnull] = ACTIONS(7460), + [anon_sym___nullable] = ACTIONS(7460), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7460), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7460), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7460), + [anon_sym___real] = ACTIONS(7460), + [anon_sym___strong] = ACTIONS(7460), + [anon_sym___unsafe_unretained] = ACTIONS(7460), + [anon_sym___unused] = ACTIONS(7460), + [anon_sym___weak] = ACTIONS(7460), + [anon_sym_alignas] = ACTIONS(7460), + [anon_sym__Alignas] = ACTIONS(7460), + [sym_primitive_type] = ACTIONS(7460), + [anon_sym_enum] = ACTIONS(7460), + [anon_sym_COLON] = ACTIONS(7462), + [anon_sym_struct] = ACTIONS(7460), + [anon_sym_union] = ACTIONS(7460), + [anon_sym_in] = ACTIONS(7460), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7460), + [anon_sym___typeof] = ACTIONS(7460), + [anon_sym_typeof] = ACTIONS(7460), + [anon_sym_BOOL] = ACTIONS(7460), + [anon_sym_IMP] = ACTIONS(7460), + [anon_sym_SEL] = ACTIONS(7460), + [anon_sym_Class] = ACTIONS(7460), + [anon_sym_id] = ACTIONS(7460), + [anon_sym_out] = ACTIONS(7460), + [anon_sym_inout] = ACTIONS(7460), + [anon_sym_bycopy] = ACTIONS(7460), + [anon_sym_byref] = ACTIONS(7460), + [anon_sym_oneway] = ACTIONS(7460), + }, + [3923] = { + [sym__type_definition_type] = STATE(4721), + [sym_attribute_specifier] = STATE(3925), + [sym_ms_declspec_modifier] = STATE(4054), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3924] = { + [sym__type_definition_type] = STATE(4722), + [sym_attribute_specifier] = STATE(3926), + [sym_ms_declspec_modifier] = STATE(4057), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3925] = { + [sym__type_definition_type] = STATE(4723), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4057), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3926] = { + [sym__type_definition_type] = STATE(4725), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4058), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3927] = { + [sym__type_definition_type] = STATE(4727), + [sym_attribute_specifier] = STATE(3929), + [sym_ms_declspec_modifier] = STATE(4058), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3928] = { + [sym_attribute_specifier] = STATE(3992), + [sym_identifier] = ACTIONS(7804), + [anon_sym_COMMA] = ACTIONS(7806), + [anon_sym_RPAREN] = ACTIONS(7806), + [anon_sym_LPAREN2] = ACTIONS(7806), + [anon_sym_STAR] = ACTIONS(7806), + [anon_sym_CARET] = ACTIONS(7806), + [anon_sym_GT] = ACTIONS(7806), + [anon_sym_LT] = ACTIONS(7806), + [anon_sym___extension__] = ACTIONS(7804), + [anon_sym___attribute__] = ACTIONS(9016), + [anon_sym___attribute] = ACTIONS(9016), + [anon_sym_noreturn] = ACTIONS(7804), + [anon_sym_LBRACK] = ACTIONS(7806), + [anon_sym___based] = ACTIONS(7804), + [anon_sym_LBRACE] = ACTIONS(7806), + [anon_sym_signed] = ACTIONS(7804), + [anon_sym_unsigned] = ACTIONS(7804), + [anon_sym_long] = ACTIONS(7804), + [anon_sym_short] = ACTIONS(7804), + [anon_sym_ATautoreleasepool] = ACTIONS(7806), + [anon_sym_const] = ACTIONS(7804), + [anon_sym_constexpr] = ACTIONS(7804), + [anon_sym_volatile] = ACTIONS(7804), + [anon_sym_restrict] = ACTIONS(7804), + [anon_sym___restrict__] = ACTIONS(7804), + [anon_sym__Atomic] = ACTIONS(7804), + [anon_sym__Noreturn] = ACTIONS(7804), + [anon_sym__Nonnull] = ACTIONS(7804), + [anon_sym_nullable] = ACTIONS(7804), + [anon_sym__Complex] = ACTIONS(7804), + [anon_sym__Nullable] = ACTIONS(7804), + [anon_sym__Nullable_result] = ACTIONS(7804), + [anon_sym__Null_unspecified] = ACTIONS(7804), + [anon_sym___autoreleasing] = ACTIONS(7804), + [anon_sym___block] = ACTIONS(7804), + [anon_sym___bridge] = ACTIONS(7804), + [anon_sym___bridge_retained] = ACTIONS(7804), + [anon_sym___bridge_transfer] = ACTIONS(7804), + [anon_sym___complex] = ACTIONS(7804), + [anon_sym___const] = ACTIONS(7804), + [anon_sym___imag] = ACTIONS(7804), + [anon_sym___kindof] = ACTIONS(7804), + [anon_sym___nonnull] = ACTIONS(7804), + [anon_sym___nullable] = ACTIONS(7804), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7804), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7804), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7804), + [anon_sym___real] = ACTIONS(7804), + [anon_sym___strong] = ACTIONS(7804), + [anon_sym___unsafe_unretained] = ACTIONS(7804), + [anon_sym___unused] = ACTIONS(7804), + [anon_sym___weak] = ACTIONS(7804), + [anon_sym_alignas] = ACTIONS(7804), + [anon_sym__Alignas] = ACTIONS(7804), + [sym_primitive_type] = ACTIONS(7804), + [anon_sym_enum] = ACTIONS(7804), + [anon_sym_struct] = ACTIONS(7804), + [anon_sym_union] = ACTIONS(7804), + [anon_sym_in] = ACTIONS(7804), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7804), + [anon_sym___typeof] = ACTIONS(7804), + [anon_sym_typeof] = ACTIONS(7804), + [anon_sym_BOOL] = ACTIONS(7804), + [anon_sym_IMP] = ACTIONS(7804), + [anon_sym_SEL] = ACTIONS(7804), + [anon_sym_Class] = ACTIONS(7804), + [anon_sym_id] = ACTIONS(7804), + [anon_sym_out] = ACTIONS(7804), + [anon_sym_inout] = ACTIONS(7804), + [anon_sym_bycopy] = ACTIONS(7804), + [anon_sym_byref] = ACTIONS(7804), + [anon_sym_oneway] = ACTIONS(7804), + }, + [3929] = { + [sym__type_definition_type] = STATE(4729), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4061), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3930] = { + [sym_parameter_list] = STATE(3790), + [sym_identifier] = ACTIONS(9019), + [anon_sym_COMMA] = ACTIONS(8207), + [anon_sym_RPAREN] = ACTIONS(8207), + [anon_sym_LPAREN2] = ACTIONS(8958), + [anon_sym_STAR] = ACTIONS(8207), + [anon_sym_CARET] = ACTIONS(8207), + [anon_sym_GT] = ACTIONS(8207), + [anon_sym_LT] = ACTIONS(8207), + [anon_sym___extension__] = ACTIONS(9019), + [anon_sym___attribute__] = ACTIONS(9019), + [anon_sym___attribute] = ACTIONS(9019), + [anon_sym_noreturn] = ACTIONS(9019), + [anon_sym_LBRACK] = ACTIONS(8960), + [anon_sym___based] = ACTIONS(9019), + [anon_sym_LBRACE] = ACTIONS(8207), + [anon_sym_signed] = ACTIONS(9019), + [anon_sym_unsigned] = ACTIONS(9019), + [anon_sym_long] = ACTIONS(9019), + [anon_sym_short] = ACTIONS(9019), + [anon_sym_ATautoreleasepool] = ACTIONS(8207), + [anon_sym_const] = ACTIONS(9019), + [anon_sym_constexpr] = ACTIONS(9019), + [anon_sym_volatile] = ACTIONS(9019), + [anon_sym_restrict] = ACTIONS(9019), + [anon_sym___restrict__] = ACTIONS(9019), + [anon_sym__Atomic] = ACTIONS(9019), + [anon_sym__Noreturn] = ACTIONS(9019), + [anon_sym__Nonnull] = ACTIONS(9019), + [anon_sym_nullable] = ACTIONS(9019), + [anon_sym__Complex] = ACTIONS(9019), + [anon_sym__Nullable] = ACTIONS(9019), + [anon_sym__Nullable_result] = ACTIONS(9019), + [anon_sym__Null_unspecified] = ACTIONS(9019), + [anon_sym___autoreleasing] = ACTIONS(9019), + [anon_sym___block] = ACTIONS(9019), + [anon_sym___bridge] = ACTIONS(9019), + [anon_sym___bridge_retained] = ACTIONS(9019), + [anon_sym___bridge_transfer] = ACTIONS(9019), + [anon_sym___complex] = ACTIONS(9019), + [anon_sym___const] = ACTIONS(9019), + [anon_sym___imag] = ACTIONS(9019), + [anon_sym___kindof] = ACTIONS(9019), + [anon_sym___nonnull] = ACTIONS(9019), + [anon_sym___nullable] = ACTIONS(9019), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(9019), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(9019), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(9019), + [anon_sym___real] = ACTIONS(9019), + [anon_sym___strong] = ACTIONS(9019), + [anon_sym___unsafe_unretained] = ACTIONS(9019), + [anon_sym___unused] = ACTIONS(9019), + [anon_sym___weak] = ACTIONS(9019), + [anon_sym_alignas] = ACTIONS(9019), + [anon_sym__Alignas] = ACTIONS(9019), + [sym_primitive_type] = ACTIONS(9019), + [anon_sym_enum] = ACTIONS(9019), + [anon_sym_struct] = ACTIONS(9019), + [anon_sym_union] = ACTIONS(9019), + [anon_sym_in] = ACTIONS(9019), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(9019), + [anon_sym___typeof] = ACTIONS(9019), + [anon_sym_typeof] = ACTIONS(9019), + [anon_sym_BOOL] = ACTIONS(9019), + [anon_sym_IMP] = ACTIONS(9019), + [anon_sym_SEL] = ACTIONS(9019), + [anon_sym_Class] = ACTIONS(9019), + [anon_sym_id] = ACTIONS(9019), + [anon_sym_out] = ACTIONS(9019), + [anon_sym_inout] = ACTIONS(9019), + [anon_sym_bycopy] = ACTIONS(9019), + [anon_sym_byref] = ACTIONS(9019), + [anon_sym_oneway] = ACTIONS(9019), + }, + [3931] = { + [sym__type_definition_type] = STATE(4731), + [sym_attribute_specifier] = STATE(3933), + [sym_ms_declspec_modifier] = STATE(4064), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3932] = { + [sym__type_definition_type] = STATE(4733), + [sym_attribute_specifier] = STATE(3935), + [sym_ms_declspec_modifier] = STATE(4068), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3933] = { + [sym__type_definition_type] = STATE(4734), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4068), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3934] = { + [sym_identifier] = ACTIONS(9021), + [anon_sym_COMMA] = ACTIONS(9023), + [anon_sym_RPAREN] = ACTIONS(9023), + [anon_sym_LPAREN2] = ACTIONS(9023), + [anon_sym_STAR] = ACTIONS(9023), + [anon_sym_CARET] = ACTIONS(9023), + [anon_sym_GT] = ACTIONS(9023), + [anon_sym_LT] = ACTIONS(9023), + [anon_sym___extension__] = ACTIONS(9021), + [anon_sym___attribute__] = ACTIONS(9021), + [anon_sym___attribute] = ACTIONS(9021), + [anon_sym_noreturn] = ACTIONS(9021), + [anon_sym_LBRACK] = ACTIONS(9023), + [anon_sym___based] = ACTIONS(9021), + [anon_sym_LBRACE] = ACTIONS(9023), + [anon_sym_signed] = ACTIONS(9021), + [anon_sym_unsigned] = ACTIONS(9021), + [anon_sym_long] = ACTIONS(9021), + [anon_sym_short] = ACTIONS(9021), + [anon_sym_ATautoreleasepool] = ACTIONS(9023), + [anon_sym_const] = ACTIONS(9021), + [anon_sym_constexpr] = ACTIONS(9021), + [anon_sym_volatile] = ACTIONS(9021), + [anon_sym_restrict] = ACTIONS(9021), + [anon_sym___restrict__] = ACTIONS(9021), + [anon_sym__Atomic] = ACTIONS(9021), + [anon_sym__Noreturn] = ACTIONS(9021), + [anon_sym__Nonnull] = ACTIONS(9021), + [anon_sym_nullable] = ACTIONS(9021), + [anon_sym__Complex] = ACTIONS(9021), + [anon_sym__Nullable] = ACTIONS(9021), + [anon_sym__Nullable_result] = ACTIONS(9021), + [anon_sym__Null_unspecified] = ACTIONS(9021), + [anon_sym___autoreleasing] = ACTIONS(9021), + [anon_sym___block] = ACTIONS(9021), + [anon_sym___bridge] = ACTIONS(9021), + [anon_sym___bridge_retained] = ACTIONS(9021), + [anon_sym___bridge_transfer] = ACTIONS(9021), + [anon_sym___complex] = ACTIONS(9021), + [anon_sym___const] = ACTIONS(9021), + [anon_sym___imag] = ACTIONS(9021), + [anon_sym___kindof] = ACTIONS(9021), + [anon_sym___nonnull] = ACTIONS(9021), + [anon_sym___nullable] = ACTIONS(9021), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(9021), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(9021), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(9021), + [anon_sym___real] = ACTIONS(9021), + [anon_sym___strong] = ACTIONS(9021), + [anon_sym___unsafe_unretained] = ACTIONS(9021), + [anon_sym___unused] = ACTIONS(9021), + [anon_sym___weak] = ACTIONS(9021), + [anon_sym_alignas] = ACTIONS(9021), + [anon_sym__Alignas] = ACTIONS(9021), + [sym_primitive_type] = ACTIONS(9021), + [anon_sym_enum] = ACTIONS(9021), + [anon_sym_COLON] = ACTIONS(9023), + [anon_sym_struct] = ACTIONS(9021), + [anon_sym_union] = ACTIONS(9021), + [anon_sym_in] = ACTIONS(9021), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(9021), + [anon_sym___typeof] = ACTIONS(9021), + [anon_sym_typeof] = ACTIONS(9021), + [anon_sym_BOOL] = ACTIONS(9021), + [anon_sym_IMP] = ACTIONS(9021), + [anon_sym_SEL] = ACTIONS(9021), + [anon_sym_Class] = ACTIONS(9021), + [anon_sym_id] = ACTIONS(9021), + [anon_sym_out] = ACTIONS(9021), + [anon_sym_inout] = ACTIONS(9021), + [anon_sym_bycopy] = ACTIONS(9021), + [anon_sym_byref] = ACTIONS(9021), + [anon_sym_oneway] = ACTIONS(9021), + }, + [3935] = { + [sym__type_definition_type] = STATE(4736), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4062), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3936] = { + [sym__type_definition_type] = STATE(4738), + [sym_attribute_specifier] = STATE(3937), + [sym_ms_declspec_modifier] = STATE(4062), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3937] = { + [sym__type_definition_type] = STATE(4740), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4046), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3938] = { + [sym_identifier] = ACTIONS(7312), + [anon_sym_COMMA] = ACTIONS(7314), + [anon_sym_RPAREN] = ACTIONS(7314), + [anon_sym_LPAREN2] = ACTIONS(7314), + [anon_sym_STAR] = ACTIONS(7314), + [anon_sym_CARET] = ACTIONS(7314), + [anon_sym_GT] = ACTIONS(7314), + [anon_sym_LT] = ACTIONS(7314), + [anon_sym___extension__] = ACTIONS(7312), + [anon_sym___attribute__] = ACTIONS(7312), + [anon_sym___attribute] = ACTIONS(7312), + [anon_sym_noreturn] = ACTIONS(7312), + [anon_sym_LBRACK] = ACTIONS(7314), + [anon_sym___based] = ACTIONS(7312), + [anon_sym_LBRACE] = ACTIONS(7314), + [anon_sym_signed] = ACTIONS(7312), + [anon_sym_unsigned] = ACTIONS(7312), + [anon_sym_long] = ACTIONS(7312), + [anon_sym_short] = ACTIONS(7312), + [anon_sym_ATautoreleasepool] = ACTIONS(7314), + [anon_sym_const] = ACTIONS(7312), + [anon_sym_constexpr] = ACTIONS(7312), + [anon_sym_volatile] = ACTIONS(7312), + [anon_sym_restrict] = ACTIONS(7312), + [anon_sym___restrict__] = ACTIONS(7312), + [anon_sym__Atomic] = ACTIONS(7312), + [anon_sym__Noreturn] = ACTIONS(7312), + [anon_sym__Nonnull] = ACTIONS(7312), + [anon_sym_nullable] = ACTIONS(7312), + [anon_sym__Complex] = ACTIONS(7312), + [anon_sym__Nullable] = ACTIONS(7312), + [anon_sym__Nullable_result] = ACTIONS(7312), + [anon_sym__Null_unspecified] = ACTIONS(7312), + [anon_sym___autoreleasing] = ACTIONS(7312), + [anon_sym___block] = ACTIONS(7312), + [anon_sym___bridge] = ACTIONS(7312), + [anon_sym___bridge_retained] = ACTIONS(7312), + [anon_sym___bridge_transfer] = ACTIONS(7312), + [anon_sym___complex] = ACTIONS(7312), + [anon_sym___const] = ACTIONS(7312), + [anon_sym___imag] = ACTIONS(7312), + [anon_sym___kindof] = ACTIONS(7312), + [anon_sym___nonnull] = ACTIONS(7312), + [anon_sym___nullable] = ACTIONS(7312), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7312), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7312), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7312), + [anon_sym___real] = ACTIONS(7312), + [anon_sym___strong] = ACTIONS(7312), + [anon_sym___unsafe_unretained] = ACTIONS(7312), + [anon_sym___unused] = ACTIONS(7312), + [anon_sym___weak] = ACTIONS(7312), + [anon_sym_alignas] = ACTIONS(7312), + [anon_sym__Alignas] = ACTIONS(7312), + [sym_primitive_type] = ACTIONS(7312), + [anon_sym_enum] = ACTIONS(7312), + [anon_sym_COLON] = ACTIONS(7314), + [anon_sym_struct] = ACTIONS(7312), + [anon_sym_union] = ACTIONS(7312), + [anon_sym_in] = ACTIONS(7312), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7312), + [anon_sym___typeof] = ACTIONS(7312), + [anon_sym_typeof] = ACTIONS(7312), + [anon_sym_BOOL] = ACTIONS(7312), + [anon_sym_IMP] = ACTIONS(7312), + [anon_sym_SEL] = ACTIONS(7312), + [anon_sym_Class] = ACTIONS(7312), + [anon_sym_id] = ACTIONS(7312), + [anon_sym_out] = ACTIONS(7312), + [anon_sym_inout] = ACTIONS(7312), + [anon_sym_bycopy] = ACTIONS(7312), + [anon_sym_byref] = ACTIONS(7312), + [anon_sym_oneway] = ACTIONS(7312), + }, + [3939] = { + [sym_attribute_specifier] = STATE(3999), + [sym_enumerator_list] = STATE(3854), + [sym_identifier] = ACTIONS(7686), + [anon_sym_COMMA] = ACTIONS(7688), + [anon_sym_RPAREN] = ACTIONS(7688), + [anon_sym_LPAREN2] = ACTIONS(7688), + [anon_sym_STAR] = ACTIONS(7688), + [anon_sym_CARET] = ACTIONS(7688), + [anon_sym_GT] = ACTIONS(7688), + [anon_sym_LT] = ACTIONS(7688), + [anon_sym___extension__] = ACTIONS(7686), + [anon_sym___attribute__] = ACTIONS(9025), + [anon_sym___attribute] = ACTIONS(9025), + [anon_sym_noreturn] = ACTIONS(7686), + [anon_sym_LBRACK] = ACTIONS(7688), + [anon_sym___based] = ACTIONS(7686), + [anon_sym_LBRACE] = ACTIONS(8913), + [anon_sym_signed] = ACTIONS(7686), + [anon_sym_unsigned] = ACTIONS(7686), + [anon_sym_long] = ACTIONS(7686), + [anon_sym_short] = ACTIONS(7686), + [anon_sym_const] = ACTIONS(7686), + [anon_sym_constexpr] = ACTIONS(7686), + [anon_sym_volatile] = ACTIONS(7686), + [anon_sym_restrict] = ACTIONS(7686), + [anon_sym___restrict__] = ACTIONS(7686), + [anon_sym__Atomic] = ACTIONS(7686), + [anon_sym__Noreturn] = ACTIONS(7686), + [anon_sym__Nonnull] = ACTIONS(7686), + [anon_sym_nullable] = ACTIONS(7686), + [anon_sym__Complex] = ACTIONS(7686), + [anon_sym__Nullable] = ACTIONS(7686), + [anon_sym__Nullable_result] = ACTIONS(7686), + [anon_sym__Null_unspecified] = ACTIONS(7686), + [anon_sym___autoreleasing] = ACTIONS(7686), + [anon_sym___block] = ACTIONS(7686), + [anon_sym___bridge] = ACTIONS(7686), + [anon_sym___bridge_retained] = ACTIONS(7686), + [anon_sym___bridge_transfer] = ACTIONS(7686), + [anon_sym___complex] = ACTIONS(7686), + [anon_sym___const] = ACTIONS(7686), + [anon_sym___imag] = ACTIONS(7686), + [anon_sym___kindof] = ACTIONS(7686), + [anon_sym___nonnull] = ACTIONS(7686), + [anon_sym___nullable] = ACTIONS(7686), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7686), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7686), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7686), + [anon_sym___real] = ACTIONS(7686), + [anon_sym___strong] = ACTIONS(7686), + [anon_sym___unsafe_unretained] = ACTIONS(7686), + [anon_sym___unused] = ACTIONS(7686), + [anon_sym___weak] = ACTIONS(7686), + [anon_sym_alignas] = ACTIONS(7686), + [anon_sym__Alignas] = ACTIONS(7686), + [sym_primitive_type] = ACTIONS(7686), + [anon_sym_enum] = ACTIONS(7686), + [anon_sym_struct] = ACTIONS(7686), + [anon_sym_union] = ACTIONS(7686), + [anon_sym_in] = ACTIONS(7686), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7686), + [anon_sym___typeof] = ACTIONS(7686), + [anon_sym_typeof] = ACTIONS(7686), + [anon_sym_BOOL] = ACTIONS(7686), + [anon_sym_IMP] = ACTIONS(7686), + [anon_sym_SEL] = ACTIONS(7686), + [anon_sym_Class] = ACTIONS(7686), + [anon_sym_id] = ACTIONS(7686), + [anon_sym_out] = ACTIONS(7686), + [anon_sym_inout] = ACTIONS(7686), + [anon_sym_bycopy] = ACTIONS(7686), + [anon_sym_byref] = ACTIONS(7686), + [anon_sym_oneway] = ACTIONS(7686), + }, + [3940] = { + [sym__type_definition_type] = STATE(4742), + [sym_attribute_specifier] = STATE(3942), + [sym_ms_declspec_modifier] = STATE(4067), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3941] = { + [sym__type_definition_type] = STATE(4743), + [sym_attribute_specifier] = STATE(3943), + [sym_ms_declspec_modifier] = STATE(4028), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3942] = { + [sym__type_definition_type] = STATE(4744), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4028), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3943] = { + [sym__type_definition_type] = STATE(4746), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4031), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3944] = { + [sym__type_definition_type] = STATE(4748), + [sym_attribute_specifier] = STATE(3947), + [sym_ms_declspec_modifier] = STATE(4031), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3945] = { + [sym_identifier] = ACTIONS(9028), + [anon_sym_COMMA] = ACTIONS(9030), + [anon_sym_RPAREN] = ACTIONS(9030), + [anon_sym_LPAREN2] = ACTIONS(9030), + [anon_sym_STAR] = ACTIONS(9030), + [anon_sym_CARET] = ACTIONS(9030), + [anon_sym_GT] = ACTIONS(9030), + [anon_sym_LT] = ACTIONS(9030), + [anon_sym___extension__] = ACTIONS(9028), + [anon_sym___attribute__] = ACTIONS(9028), + [anon_sym___attribute] = ACTIONS(9028), + [anon_sym_noreturn] = ACTIONS(9028), + [anon_sym_LBRACK] = ACTIONS(9030), + [anon_sym___based] = ACTIONS(9028), + [anon_sym_LBRACE] = ACTIONS(9030), + [anon_sym_signed] = ACTIONS(9028), + [anon_sym_unsigned] = ACTIONS(9028), + [anon_sym_long] = ACTIONS(9028), + [anon_sym_short] = ACTIONS(9028), + [anon_sym_ATautoreleasepool] = ACTIONS(9030), + [anon_sym_const] = ACTIONS(9028), + [anon_sym_constexpr] = ACTIONS(9028), + [anon_sym_volatile] = ACTIONS(9028), + [anon_sym_restrict] = ACTIONS(9028), + [anon_sym___restrict__] = ACTIONS(9028), + [anon_sym__Atomic] = ACTIONS(9028), + [anon_sym__Noreturn] = ACTIONS(9028), + [anon_sym__Nonnull] = ACTIONS(9028), + [anon_sym_nullable] = ACTIONS(9028), + [anon_sym__Complex] = ACTIONS(9028), + [anon_sym__Nullable] = ACTIONS(9028), + [anon_sym__Nullable_result] = ACTIONS(9028), + [anon_sym__Null_unspecified] = ACTIONS(9028), + [anon_sym___autoreleasing] = ACTIONS(9028), + [anon_sym___block] = ACTIONS(9028), + [anon_sym___bridge] = ACTIONS(9028), + [anon_sym___bridge_retained] = ACTIONS(9028), + [anon_sym___bridge_transfer] = ACTIONS(9028), + [anon_sym___complex] = ACTIONS(9028), + [anon_sym___const] = ACTIONS(9028), + [anon_sym___imag] = ACTIONS(9028), + [anon_sym___kindof] = ACTIONS(9028), + [anon_sym___nonnull] = ACTIONS(9028), + [anon_sym___nullable] = ACTIONS(9028), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(9028), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(9028), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(9028), + [anon_sym___real] = ACTIONS(9028), + [anon_sym___strong] = ACTIONS(9028), + [anon_sym___unsafe_unretained] = ACTIONS(9028), + [anon_sym___unused] = ACTIONS(9028), + [anon_sym___weak] = ACTIONS(9028), + [anon_sym_alignas] = ACTIONS(9028), + [anon_sym__Alignas] = ACTIONS(9028), + [sym_primitive_type] = ACTIONS(9028), + [anon_sym_enum] = ACTIONS(9028), + [anon_sym_COLON] = ACTIONS(9030), + [anon_sym_struct] = ACTIONS(9028), + [anon_sym_union] = ACTIONS(9028), + [anon_sym_in] = ACTIONS(9028), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(9028), + [anon_sym___typeof] = ACTIONS(9028), + [anon_sym_typeof] = ACTIONS(9028), + [anon_sym_BOOL] = ACTIONS(9028), + [anon_sym_IMP] = ACTIONS(9028), + [anon_sym_SEL] = ACTIONS(9028), + [anon_sym_Class] = ACTIONS(9028), + [anon_sym_id] = ACTIONS(9028), + [anon_sym_out] = ACTIONS(9028), + [anon_sym_inout] = ACTIONS(9028), + [anon_sym_bycopy] = ACTIONS(9028), + [anon_sym_byref] = ACTIONS(9028), + [anon_sym_oneway] = ACTIONS(9028), + }, + [3946] = { + [sym_attribute_specifier] = STATE(3863), + [sym_enumerator_list] = STATE(3855), + [sym_identifier] = ACTIONS(7693), + [anon_sym_COMMA] = ACTIONS(7695), + [anon_sym_RPAREN] = ACTIONS(7695), + [anon_sym_LPAREN2] = ACTIONS(7695), + [anon_sym_STAR] = ACTIONS(7695), + [anon_sym_CARET] = ACTIONS(7695), + [anon_sym_GT] = ACTIONS(7695), + [anon_sym_LT] = ACTIONS(7695), + [anon_sym___extension__] = ACTIONS(7693), + [anon_sym___attribute__] = ACTIONS(9032), + [anon_sym___attribute] = ACTIONS(9032), + [anon_sym_noreturn] = ACTIONS(7693), + [anon_sym_LBRACK] = ACTIONS(7695), + [anon_sym___based] = ACTIONS(7693), + [anon_sym_LBRACE] = ACTIONS(8913), + [anon_sym_signed] = ACTIONS(7693), + [anon_sym_unsigned] = ACTIONS(7693), + [anon_sym_long] = ACTIONS(7693), + [anon_sym_short] = ACTIONS(7693), + [anon_sym_const] = ACTIONS(7693), + [anon_sym_constexpr] = ACTIONS(7693), + [anon_sym_volatile] = ACTIONS(7693), + [anon_sym_restrict] = ACTIONS(7693), + [anon_sym___restrict__] = ACTIONS(7693), + [anon_sym__Atomic] = ACTIONS(7693), + [anon_sym__Noreturn] = ACTIONS(7693), + [anon_sym__Nonnull] = ACTIONS(7693), + [anon_sym_nullable] = ACTIONS(7693), + [anon_sym__Complex] = ACTIONS(7693), + [anon_sym__Nullable] = ACTIONS(7693), + [anon_sym__Nullable_result] = ACTIONS(7693), + [anon_sym__Null_unspecified] = ACTIONS(7693), + [anon_sym___autoreleasing] = ACTIONS(7693), + [anon_sym___block] = ACTIONS(7693), + [anon_sym___bridge] = ACTIONS(7693), + [anon_sym___bridge_retained] = ACTIONS(7693), + [anon_sym___bridge_transfer] = ACTIONS(7693), + [anon_sym___complex] = ACTIONS(7693), + [anon_sym___const] = ACTIONS(7693), + [anon_sym___imag] = ACTIONS(7693), + [anon_sym___kindof] = ACTIONS(7693), + [anon_sym___nonnull] = ACTIONS(7693), + [anon_sym___nullable] = ACTIONS(7693), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7693), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7693), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7693), + [anon_sym___real] = ACTIONS(7693), + [anon_sym___strong] = ACTIONS(7693), + [anon_sym___unsafe_unretained] = ACTIONS(7693), + [anon_sym___unused] = ACTIONS(7693), + [anon_sym___weak] = ACTIONS(7693), + [anon_sym_alignas] = ACTIONS(7693), + [anon_sym__Alignas] = ACTIONS(7693), + [sym_primitive_type] = ACTIONS(7693), + [anon_sym_enum] = ACTIONS(7693), + [anon_sym_struct] = ACTIONS(7693), + [anon_sym_union] = ACTIONS(7693), + [anon_sym_in] = ACTIONS(7693), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7693), + [anon_sym___typeof] = ACTIONS(7693), + [anon_sym_typeof] = ACTIONS(7693), + [anon_sym_BOOL] = ACTIONS(7693), + [anon_sym_IMP] = ACTIONS(7693), + [anon_sym_SEL] = ACTIONS(7693), + [anon_sym_Class] = ACTIONS(7693), + [anon_sym_id] = ACTIONS(7693), + [anon_sym_out] = ACTIONS(7693), + [anon_sym_inout] = ACTIONS(7693), + [anon_sym_bycopy] = ACTIONS(7693), + [anon_sym_byref] = ACTIONS(7693), + [anon_sym_oneway] = ACTIONS(7693), + }, + [3947] = { + [sym__type_definition_type] = STATE(4750), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4039), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3948] = { + [sym_identifier] = ACTIONS(7566), + [anon_sym_COMMA] = ACTIONS(7568), + [anon_sym_RPAREN] = ACTIONS(7568), + [anon_sym_LPAREN2] = ACTIONS(7568), + [anon_sym_STAR] = ACTIONS(7568), + [anon_sym_CARET] = ACTIONS(7568), + [anon_sym_GT] = ACTIONS(7568), + [anon_sym_LT] = ACTIONS(7568), + [anon_sym___extension__] = ACTIONS(7566), + [anon_sym___attribute__] = ACTIONS(7566), + [anon_sym___attribute] = ACTIONS(7566), + [anon_sym_noreturn] = ACTIONS(7566), + [anon_sym_LBRACK] = ACTIONS(7568), + [anon_sym___based] = ACTIONS(7566), + [anon_sym_LBRACE] = ACTIONS(7568), + [anon_sym_signed] = ACTIONS(7566), + [anon_sym_unsigned] = ACTIONS(7566), + [anon_sym_long] = ACTIONS(7566), + [anon_sym_short] = ACTIONS(7566), + [anon_sym_ATautoreleasepool] = ACTIONS(7568), + [anon_sym_const] = ACTIONS(7566), + [anon_sym_constexpr] = ACTIONS(7566), + [anon_sym_volatile] = ACTIONS(7566), + [anon_sym_restrict] = ACTIONS(7566), + [anon_sym___restrict__] = ACTIONS(7566), + [anon_sym__Atomic] = ACTIONS(7566), + [anon_sym__Noreturn] = ACTIONS(7566), + [anon_sym__Nonnull] = ACTIONS(7566), + [anon_sym_nullable] = ACTIONS(7566), + [anon_sym__Complex] = ACTIONS(7566), + [anon_sym__Nullable] = ACTIONS(7566), + [anon_sym__Nullable_result] = ACTIONS(7566), + [anon_sym__Null_unspecified] = ACTIONS(7566), + [anon_sym___autoreleasing] = ACTIONS(7566), + [anon_sym___block] = ACTIONS(7566), + [anon_sym___bridge] = ACTIONS(7566), + [anon_sym___bridge_retained] = ACTIONS(7566), + [anon_sym___bridge_transfer] = ACTIONS(7566), + [anon_sym___complex] = ACTIONS(7566), + [anon_sym___const] = ACTIONS(7566), + [anon_sym___imag] = ACTIONS(7566), + [anon_sym___kindof] = ACTIONS(7566), + [anon_sym___nonnull] = ACTIONS(7566), + [anon_sym___nullable] = ACTIONS(7566), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7566), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7566), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7566), + [anon_sym___real] = ACTIONS(7566), + [anon_sym___strong] = ACTIONS(7566), + [anon_sym___unsafe_unretained] = ACTIONS(7566), + [anon_sym___unused] = ACTIONS(7566), + [anon_sym___weak] = ACTIONS(7566), + [anon_sym_alignas] = ACTIONS(7566), + [anon_sym__Alignas] = ACTIONS(7566), + [sym_primitive_type] = ACTIONS(7566), + [anon_sym_enum] = ACTIONS(7566), + [anon_sym_COLON] = ACTIONS(7568), + [anon_sym_struct] = ACTIONS(7566), + [anon_sym_union] = ACTIONS(7566), + [anon_sym_in] = ACTIONS(7566), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7566), + [anon_sym___typeof] = ACTIONS(7566), + [anon_sym_typeof] = ACTIONS(7566), + [anon_sym_BOOL] = ACTIONS(7566), + [anon_sym_IMP] = ACTIONS(7566), + [anon_sym_SEL] = ACTIONS(7566), + [anon_sym_Class] = ACTIONS(7566), + [anon_sym_id] = ACTIONS(7566), + [anon_sym_out] = ACTIONS(7566), + [anon_sym_inout] = ACTIONS(7566), + [anon_sym_bycopy] = ACTIONS(7566), + [anon_sym_byref] = ACTIONS(7566), + [anon_sym_oneway] = ACTIONS(7566), + }, + [3949] = { + [sym__type_definition_type] = STATE(4752), + [sym_attribute_specifier] = STATE(3951), + [sym_ms_declspec_modifier] = STATE(4043), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3950] = { + [sym__type_definition_type] = STATE(4753), + [sym_attribute_specifier] = STATE(3952), + [sym_ms_declspec_modifier] = STATE(4048), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3951] = { + [sym__type_definition_type] = STATE(4754), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4048), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3952] = { + [sym__type_definition_type] = STATE(4756), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4051), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3953] = { + [sym__type_definition_type] = STATE(4758), + [sym_attribute_specifier] = STATE(3954), + [sym_ms_declspec_modifier] = STATE(4051), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3954] = { + [sym__type_definition_type] = STATE(4760), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4052), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3955] = { + [sym__type_definition_type] = STATE(4762), + [sym_attribute_specifier] = STATE(3957), + [sym_ms_declspec_modifier] = STATE(4056), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3956] = { + [sym__type_definition_type] = STATE(4763), + [sym_attribute_specifier] = STATE(3958), + [sym_ms_declspec_modifier] = STATE(4063), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3957] = { + [sym__type_definition_type] = STATE(4764), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4063), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3958] = { + [sym__type_definition_type] = STATE(4766), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4069), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3959] = { + [sym__type_definition_type] = STATE(4768), + [sym_attribute_specifier] = STATE(3960), + [sym_ms_declspec_modifier] = STATE(4069), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3960] = { + [sym__type_definition_type] = STATE(4770), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4027), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3961] = { + [sym__type_definition_type] = STATE(4772), + [sym_attribute_specifier] = STATE(3963), + [sym_ms_declspec_modifier] = STATE(4030), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3962] = { + [sym__type_definition_type] = STATE(4773), + [sym_attribute_specifier] = STATE(3964), + [sym_ms_declspec_modifier] = STATE(4032), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3963] = { + [sym__type_definition_type] = STATE(4774), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4032), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3964] = { + [sym__type_definition_type] = STATE(4776), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4034), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3965] = { + [sym__type_definition_type] = STATE(4778), + [sym_attribute_specifier] = STATE(3966), + [sym_ms_declspec_modifier] = STATE(4034), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3966] = { + [sym__type_definition_type] = STATE(4713), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4035), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3967] = { + [sym_identifier] = ACTIONS(7384), + [anon_sym_COMMA] = ACTIONS(7386), + [anon_sym_RPAREN] = ACTIONS(7386), + [anon_sym_LPAREN2] = ACTIONS(7386), + [anon_sym_STAR] = ACTIONS(7386), + [anon_sym_CARET] = ACTIONS(7386), + [anon_sym_GT] = ACTIONS(7386), + [anon_sym_LT] = ACTIONS(7386), + [anon_sym___extension__] = ACTIONS(7384), + [anon_sym___attribute__] = ACTIONS(7384), + [anon_sym___attribute] = ACTIONS(7384), + [anon_sym_noreturn] = ACTIONS(7384), + [anon_sym_LBRACK] = ACTIONS(7386), + [anon_sym___based] = ACTIONS(7384), + [anon_sym_LBRACE] = ACTIONS(7386), + [anon_sym_signed] = ACTIONS(7384), + [anon_sym_unsigned] = ACTIONS(7384), + [anon_sym_long] = ACTIONS(7384), + [anon_sym_short] = ACTIONS(7384), + [anon_sym_ATautoreleasepool] = ACTIONS(7386), + [anon_sym_const] = ACTIONS(7384), + [anon_sym_constexpr] = ACTIONS(7384), + [anon_sym_volatile] = ACTIONS(7384), + [anon_sym_restrict] = ACTIONS(7384), + [anon_sym___restrict__] = ACTIONS(7384), + [anon_sym__Atomic] = ACTIONS(7384), + [anon_sym__Noreturn] = ACTIONS(7384), + [anon_sym__Nonnull] = ACTIONS(7384), + [anon_sym_nullable] = ACTIONS(7384), + [anon_sym__Complex] = ACTIONS(7384), + [anon_sym__Nullable] = ACTIONS(7384), + [anon_sym__Nullable_result] = ACTIONS(7384), + [anon_sym__Null_unspecified] = ACTIONS(7384), + [anon_sym___autoreleasing] = ACTIONS(7384), + [anon_sym___block] = ACTIONS(7384), + [anon_sym___bridge] = ACTIONS(7384), + [anon_sym___bridge_retained] = ACTIONS(7384), + [anon_sym___bridge_transfer] = ACTIONS(7384), + [anon_sym___complex] = ACTIONS(7384), + [anon_sym___const] = ACTIONS(7384), + [anon_sym___imag] = ACTIONS(7384), + [anon_sym___kindof] = ACTIONS(7384), + [anon_sym___nonnull] = ACTIONS(7384), + [anon_sym___nullable] = ACTIONS(7384), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7384), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7384), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7384), + [anon_sym___real] = ACTIONS(7384), + [anon_sym___strong] = ACTIONS(7384), + [anon_sym___unsafe_unretained] = ACTIONS(7384), + [anon_sym___unused] = ACTIONS(7384), + [anon_sym___weak] = ACTIONS(7384), + [anon_sym_alignas] = ACTIONS(7384), + [anon_sym__Alignas] = ACTIONS(7384), + [sym_primitive_type] = ACTIONS(7384), + [anon_sym_enum] = ACTIONS(7384), + [anon_sym_COLON] = ACTIONS(7386), + [anon_sym_struct] = ACTIONS(7384), + [anon_sym_union] = ACTIONS(7384), + [anon_sym_in] = ACTIONS(7384), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7384), + [anon_sym___typeof] = ACTIONS(7384), + [anon_sym_typeof] = ACTIONS(7384), + [anon_sym_BOOL] = ACTIONS(7384), + [anon_sym_IMP] = ACTIONS(7384), + [anon_sym_SEL] = ACTIONS(7384), + [anon_sym_Class] = ACTIONS(7384), + [anon_sym_id] = ACTIONS(7384), + [anon_sym_out] = ACTIONS(7384), + [anon_sym_inout] = ACTIONS(7384), + [anon_sym_bycopy] = ACTIONS(7384), + [anon_sym_byref] = ACTIONS(7384), + [anon_sym_oneway] = ACTIONS(7384), + }, + [3968] = { + [sym_identifier] = ACTIONS(7414), + [anon_sym_COMMA] = ACTIONS(7416), + [anon_sym_RPAREN] = ACTIONS(7416), + [anon_sym_LPAREN2] = ACTIONS(7416), + [anon_sym_STAR] = ACTIONS(7416), + [anon_sym_CARET] = ACTIONS(7416), + [anon_sym_GT] = ACTIONS(7416), + [anon_sym_LT] = ACTIONS(7416), + [anon_sym___extension__] = ACTIONS(7414), + [anon_sym___attribute__] = ACTIONS(7414), + [anon_sym___attribute] = ACTIONS(7414), + [anon_sym_noreturn] = ACTIONS(7414), + [anon_sym_LBRACK] = ACTIONS(7416), + [anon_sym___based] = ACTIONS(7414), + [anon_sym_LBRACE] = ACTIONS(7416), + [anon_sym_signed] = ACTIONS(7414), + [anon_sym_unsigned] = ACTIONS(7414), + [anon_sym_long] = ACTIONS(7414), + [anon_sym_short] = ACTIONS(7414), + [anon_sym_ATautoreleasepool] = ACTIONS(7416), + [anon_sym_const] = ACTIONS(7414), + [anon_sym_constexpr] = ACTIONS(7414), + [anon_sym_volatile] = ACTIONS(7414), + [anon_sym_restrict] = ACTIONS(7414), + [anon_sym___restrict__] = ACTIONS(7414), + [anon_sym__Atomic] = ACTIONS(7414), + [anon_sym__Noreturn] = ACTIONS(7414), + [anon_sym__Nonnull] = ACTIONS(7414), + [anon_sym_nullable] = ACTIONS(7414), + [anon_sym__Complex] = ACTIONS(7414), + [anon_sym__Nullable] = ACTIONS(7414), + [anon_sym__Nullable_result] = ACTIONS(7414), + [anon_sym__Null_unspecified] = ACTIONS(7414), + [anon_sym___autoreleasing] = ACTIONS(7414), + [anon_sym___block] = ACTIONS(7414), + [anon_sym___bridge] = ACTIONS(7414), + [anon_sym___bridge_retained] = ACTIONS(7414), + [anon_sym___bridge_transfer] = ACTIONS(7414), + [anon_sym___complex] = ACTIONS(7414), + [anon_sym___const] = ACTIONS(7414), + [anon_sym___imag] = ACTIONS(7414), + [anon_sym___kindof] = ACTIONS(7414), + [anon_sym___nonnull] = ACTIONS(7414), + [anon_sym___nullable] = ACTIONS(7414), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7414), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7414), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7414), + [anon_sym___real] = ACTIONS(7414), + [anon_sym___strong] = ACTIONS(7414), + [anon_sym___unsafe_unretained] = ACTIONS(7414), + [anon_sym___unused] = ACTIONS(7414), + [anon_sym___weak] = ACTIONS(7414), + [anon_sym_alignas] = ACTIONS(7414), + [anon_sym__Alignas] = ACTIONS(7414), + [sym_primitive_type] = ACTIONS(7414), + [anon_sym_enum] = ACTIONS(7414), + [anon_sym_COLON] = ACTIONS(7416), + [anon_sym_struct] = ACTIONS(7414), + [anon_sym_union] = ACTIONS(7414), + [anon_sym_in] = ACTIONS(7414), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7414), + [anon_sym___typeof] = ACTIONS(7414), + [anon_sym_typeof] = ACTIONS(7414), + [anon_sym_BOOL] = ACTIONS(7414), + [anon_sym_IMP] = ACTIONS(7414), + [anon_sym_SEL] = ACTIONS(7414), + [anon_sym_Class] = ACTIONS(7414), + [anon_sym_id] = ACTIONS(7414), + [anon_sym_out] = ACTIONS(7414), + [anon_sym_inout] = ACTIONS(7414), + [anon_sym_bycopy] = ACTIONS(7414), + [anon_sym_byref] = ACTIONS(7414), + [anon_sym_oneway] = ACTIONS(7414), + }, + [3969] = { + [sym_identifier] = ACTIONS(7374), + [anon_sym_COMMA] = ACTIONS(7376), + [anon_sym_RPAREN] = ACTIONS(7376), + [anon_sym_LPAREN2] = ACTIONS(7376), + [anon_sym_STAR] = ACTIONS(7376), + [anon_sym_CARET] = ACTIONS(7376), + [anon_sym_GT] = ACTIONS(7376), + [anon_sym_LT] = ACTIONS(7376), + [anon_sym___extension__] = ACTIONS(7374), + [anon_sym___attribute__] = ACTIONS(7374), + [anon_sym___attribute] = ACTIONS(7374), + [anon_sym_noreturn] = ACTIONS(7374), + [anon_sym_LBRACK] = ACTIONS(7376), + [anon_sym___based] = ACTIONS(7374), + [anon_sym_LBRACE] = ACTIONS(7376), + [anon_sym_signed] = ACTIONS(7374), + [anon_sym_unsigned] = ACTIONS(7374), + [anon_sym_long] = ACTIONS(7374), + [anon_sym_short] = ACTIONS(7374), + [anon_sym_ATautoreleasepool] = ACTIONS(7376), + [anon_sym_const] = ACTIONS(7374), + [anon_sym_constexpr] = ACTIONS(7374), + [anon_sym_volatile] = ACTIONS(7374), + [anon_sym_restrict] = ACTIONS(7374), + [anon_sym___restrict__] = ACTIONS(7374), + [anon_sym__Atomic] = ACTIONS(7374), + [anon_sym__Noreturn] = ACTIONS(7374), + [anon_sym__Nonnull] = ACTIONS(7374), + [anon_sym_nullable] = ACTIONS(7374), + [anon_sym__Complex] = ACTIONS(7374), + [anon_sym__Nullable] = ACTIONS(7374), + [anon_sym__Nullable_result] = ACTIONS(7374), + [anon_sym__Null_unspecified] = ACTIONS(7374), + [anon_sym___autoreleasing] = ACTIONS(7374), + [anon_sym___block] = ACTIONS(7374), + [anon_sym___bridge] = ACTIONS(7374), + [anon_sym___bridge_retained] = ACTIONS(7374), + [anon_sym___bridge_transfer] = ACTIONS(7374), + [anon_sym___complex] = ACTIONS(7374), + [anon_sym___const] = ACTIONS(7374), + [anon_sym___imag] = ACTIONS(7374), + [anon_sym___kindof] = ACTIONS(7374), + [anon_sym___nonnull] = ACTIONS(7374), + [anon_sym___nullable] = ACTIONS(7374), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7374), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7374), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7374), + [anon_sym___real] = ACTIONS(7374), + [anon_sym___strong] = ACTIONS(7374), + [anon_sym___unsafe_unretained] = ACTIONS(7374), + [anon_sym___unused] = ACTIONS(7374), + [anon_sym___weak] = ACTIONS(7374), + [anon_sym_alignas] = ACTIONS(7374), + [anon_sym__Alignas] = ACTIONS(7374), + [sym_primitive_type] = ACTIONS(7374), + [anon_sym_enum] = ACTIONS(7374), + [anon_sym_COLON] = ACTIONS(7376), + [anon_sym_struct] = ACTIONS(7374), + [anon_sym_union] = ACTIONS(7374), + [anon_sym_in] = ACTIONS(7374), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7374), + [anon_sym___typeof] = ACTIONS(7374), + [anon_sym_typeof] = ACTIONS(7374), + [anon_sym_BOOL] = ACTIONS(7374), + [anon_sym_IMP] = ACTIONS(7374), + [anon_sym_SEL] = ACTIONS(7374), + [anon_sym_Class] = ACTIONS(7374), + [anon_sym_id] = ACTIONS(7374), + [anon_sym_out] = ACTIONS(7374), + [anon_sym_inout] = ACTIONS(7374), + [anon_sym_bycopy] = ACTIONS(7374), + [anon_sym_byref] = ACTIONS(7374), + [anon_sym_oneway] = ACTIONS(7374), + }, + [3970] = { + [sym_parameter_list] = STATE(3790), + [sym_identifier] = ACTIONS(6827), + [anon_sym_COMMA] = ACTIONS(6829), + [anon_sym_RPAREN] = ACTIONS(6829), + [anon_sym_LPAREN2] = ACTIONS(8958), + [anon_sym_STAR] = ACTIONS(6829), + [anon_sym_CARET] = ACTIONS(6829), + [anon_sym_GT] = ACTIONS(6829), + [anon_sym_LT] = ACTIONS(6829), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym___attribute__] = ACTIONS(6827), + [anon_sym___attribute] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym_LBRACK] = ACTIONS(8960), + [anon_sym___based] = ACTIONS(6827), + [anon_sym_LBRACE] = ACTIONS(6829), + [anon_sym_signed] = ACTIONS(6827), + [anon_sym_unsigned] = ACTIONS(6827), + [anon_sym_long] = ACTIONS(6827), + [anon_sym_short] = ACTIONS(6827), + [anon_sym_ATautoreleasepool] = ACTIONS(6829), + [anon_sym_const] = ACTIONS(6827), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_nullable] = ACTIONS(6827), + [anon_sym__Complex] = ACTIONS(6827), + [anon_sym__Nullable] = ACTIONS(6827), + [anon_sym__Nullable_result] = ACTIONS(6827), + [anon_sym__Null_unspecified] = ACTIONS(6827), + [anon_sym___autoreleasing] = ACTIONS(6827), + [anon_sym___block] = ACTIONS(6827), + [anon_sym___bridge] = ACTIONS(6827), + [anon_sym___bridge_retained] = ACTIONS(6827), + [anon_sym___bridge_transfer] = ACTIONS(6827), + [anon_sym___complex] = ACTIONS(6827), + [anon_sym___const] = ACTIONS(6827), + [anon_sym___imag] = ACTIONS(6827), + [anon_sym___kindof] = ACTIONS(6827), + [anon_sym___nonnull] = ACTIONS(6827), + [anon_sym___nullable] = ACTIONS(6827), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6827), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6827), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6827), + [anon_sym___real] = ACTIONS(6827), + [anon_sym___strong] = ACTIONS(6827), + [anon_sym___unsafe_unretained] = ACTIONS(6827), + [anon_sym___unused] = ACTIONS(6827), + [anon_sym___weak] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6827), + [anon_sym__Alignas] = ACTIONS(6827), + [sym_primitive_type] = ACTIONS(6827), + [anon_sym_enum] = ACTIONS(6827), + [anon_sym_struct] = ACTIONS(6827), + [anon_sym_union] = ACTIONS(6827), + [anon_sym_in] = ACTIONS(6827), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6827), + [anon_sym___typeof] = ACTIONS(6827), + [anon_sym_typeof] = ACTIONS(6827), + [anon_sym_BOOL] = ACTIONS(6827), + [anon_sym_IMP] = ACTIONS(6827), + [anon_sym_SEL] = ACTIONS(6827), + [anon_sym_Class] = ACTIONS(6827), + [anon_sym_id] = ACTIONS(6827), + [anon_sym_out] = ACTIONS(6827), + [anon_sym_inout] = ACTIONS(6827), + [anon_sym_bycopy] = ACTIONS(6827), + [anon_sym_byref] = ACTIONS(6827), + [anon_sym_oneway] = ACTIONS(6827), + }, + [3971] = { + [sym__type_definition_type] = STATE(4801), + [sym_attribute_specifier] = STATE(3989), + [sym_ms_declspec_modifier] = STATE(4060), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3972] = { + [sym__type_definition_type] = STATE(4786), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4066), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3973] = { + [sym_attribute_specifier] = STATE(3885), + [sym_identifier] = ACTIONS(7989), + [anon_sym_COMMA] = ACTIONS(7991), + [anon_sym_RPAREN] = ACTIONS(7991), + [anon_sym_LPAREN2] = ACTIONS(7991), + [anon_sym_STAR] = ACTIONS(7991), + [anon_sym_CARET] = ACTIONS(7991), + [anon_sym_GT] = ACTIONS(7991), + [anon_sym_LT] = ACTIONS(7991), + [anon_sym___extension__] = ACTIONS(7989), + [anon_sym___attribute__] = ACTIONS(9035), + [anon_sym___attribute] = ACTIONS(9035), + [anon_sym_noreturn] = ACTIONS(7989), + [anon_sym_LBRACK] = ACTIONS(7991), + [anon_sym___based] = ACTIONS(7989), + [anon_sym_LBRACE] = ACTIONS(7991), + [anon_sym_signed] = ACTIONS(7989), + [anon_sym_unsigned] = ACTIONS(7989), + [anon_sym_long] = ACTIONS(7989), + [anon_sym_short] = ACTIONS(7989), + [anon_sym_ATautoreleasepool] = ACTIONS(7991), + [anon_sym_const] = ACTIONS(7989), + [anon_sym_constexpr] = ACTIONS(7989), + [anon_sym_volatile] = ACTIONS(7989), + [anon_sym_restrict] = ACTIONS(7989), + [anon_sym___restrict__] = ACTIONS(7989), + [anon_sym__Atomic] = ACTIONS(7989), + [anon_sym__Noreturn] = ACTIONS(7989), + [anon_sym__Nonnull] = ACTIONS(7989), + [anon_sym_nullable] = ACTIONS(7989), + [anon_sym__Complex] = ACTIONS(7989), + [anon_sym__Nullable] = ACTIONS(7989), + [anon_sym__Nullable_result] = ACTIONS(7989), + [anon_sym__Null_unspecified] = ACTIONS(7989), + [anon_sym___autoreleasing] = ACTIONS(7989), + [anon_sym___block] = ACTIONS(7989), + [anon_sym___bridge] = ACTIONS(7989), + [anon_sym___bridge_retained] = ACTIONS(7989), + [anon_sym___bridge_transfer] = ACTIONS(7989), + [anon_sym___complex] = ACTIONS(7989), + [anon_sym___const] = ACTIONS(7989), + [anon_sym___imag] = ACTIONS(7989), + [anon_sym___kindof] = ACTIONS(7989), + [anon_sym___nonnull] = ACTIONS(7989), + [anon_sym___nullable] = ACTIONS(7989), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7989), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7989), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7989), + [anon_sym___real] = ACTIONS(7989), + [anon_sym___strong] = ACTIONS(7989), + [anon_sym___unsafe_unretained] = ACTIONS(7989), + [anon_sym___unused] = ACTIONS(7989), + [anon_sym___weak] = ACTIONS(7989), + [anon_sym_alignas] = ACTIONS(7989), + [anon_sym__Alignas] = ACTIONS(7989), + [sym_primitive_type] = ACTIONS(7989), + [anon_sym_enum] = ACTIONS(7989), + [anon_sym_struct] = ACTIONS(7989), + [anon_sym_union] = ACTIONS(7989), + [anon_sym_in] = ACTIONS(7989), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7989), + [anon_sym___typeof] = ACTIONS(7989), + [anon_sym_typeof] = ACTIONS(7989), + [anon_sym_BOOL] = ACTIONS(7989), + [anon_sym_IMP] = ACTIONS(7989), + [anon_sym_SEL] = ACTIONS(7989), + [anon_sym_Class] = ACTIONS(7989), + [anon_sym_id] = ACTIONS(7989), + [anon_sym_out] = ACTIONS(7989), + [anon_sym_inout] = ACTIONS(7989), + [anon_sym_bycopy] = ACTIONS(7989), + [anon_sym_byref] = ACTIONS(7989), + [anon_sym_oneway] = ACTIONS(7989), + }, + [3974] = { + [sym_identifier] = ACTIONS(7298), + [anon_sym_COMMA] = ACTIONS(7300), + [anon_sym_RPAREN] = ACTIONS(7300), + [anon_sym_LPAREN2] = ACTIONS(7300), + [anon_sym_STAR] = ACTIONS(7300), + [anon_sym_CARET] = ACTIONS(7300), + [anon_sym_GT] = ACTIONS(7300), + [anon_sym_LT] = ACTIONS(7300), + [anon_sym___extension__] = ACTIONS(7298), + [anon_sym___attribute__] = ACTIONS(7298), + [anon_sym___attribute] = ACTIONS(7298), + [anon_sym_noreturn] = ACTIONS(7298), + [anon_sym_LBRACK] = ACTIONS(7300), + [anon_sym___based] = ACTIONS(7298), + [anon_sym_LBRACE] = ACTIONS(7300), + [anon_sym_signed] = ACTIONS(7298), + [anon_sym_unsigned] = ACTIONS(7298), + [anon_sym_long] = ACTIONS(7298), + [anon_sym_short] = ACTIONS(7298), + [anon_sym_ATautoreleasepool] = ACTIONS(7300), + [anon_sym_const] = ACTIONS(7298), + [anon_sym_constexpr] = ACTIONS(7298), + [anon_sym_volatile] = ACTIONS(7298), + [anon_sym_restrict] = ACTIONS(7298), + [anon_sym___restrict__] = ACTIONS(7298), + [anon_sym__Atomic] = ACTIONS(7298), + [anon_sym__Noreturn] = ACTIONS(7298), + [anon_sym__Nonnull] = ACTIONS(7298), + [anon_sym_nullable] = ACTIONS(7298), + [anon_sym__Complex] = ACTIONS(7298), + [anon_sym__Nullable] = ACTIONS(7298), + [anon_sym__Nullable_result] = ACTIONS(7298), + [anon_sym__Null_unspecified] = ACTIONS(7298), + [anon_sym___autoreleasing] = ACTIONS(7298), + [anon_sym___block] = ACTIONS(7298), + [anon_sym___bridge] = ACTIONS(7298), + [anon_sym___bridge_retained] = ACTIONS(7298), + [anon_sym___bridge_transfer] = ACTIONS(7298), + [anon_sym___complex] = ACTIONS(7298), + [anon_sym___const] = ACTIONS(7298), + [anon_sym___imag] = ACTIONS(7298), + [anon_sym___kindof] = ACTIONS(7298), + [anon_sym___nonnull] = ACTIONS(7298), + [anon_sym___nullable] = ACTIONS(7298), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7298), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7298), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7298), + [anon_sym___real] = ACTIONS(7298), + [anon_sym___strong] = ACTIONS(7298), + [anon_sym___unsafe_unretained] = ACTIONS(7298), + [anon_sym___unused] = ACTIONS(7298), + [anon_sym___weak] = ACTIONS(7298), + [anon_sym_alignas] = ACTIONS(7298), + [anon_sym__Alignas] = ACTIONS(7298), + [sym_primitive_type] = ACTIONS(7298), + [anon_sym_enum] = ACTIONS(7298), + [anon_sym_COLON] = ACTIONS(7300), + [anon_sym_struct] = ACTIONS(7298), + [anon_sym_union] = ACTIONS(7298), + [anon_sym_in] = ACTIONS(7298), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7298), + [anon_sym___typeof] = ACTIONS(7298), + [anon_sym_typeof] = ACTIONS(7298), + [anon_sym_BOOL] = ACTIONS(7298), + [anon_sym_IMP] = ACTIONS(7298), + [anon_sym_SEL] = ACTIONS(7298), + [anon_sym_Class] = ACTIONS(7298), + [anon_sym_id] = ACTIONS(7298), + [anon_sym_out] = ACTIONS(7298), + [anon_sym_inout] = ACTIONS(7298), + [anon_sym_bycopy] = ACTIONS(7298), + [anon_sym_byref] = ACTIONS(7298), + [anon_sym_oneway] = ACTIONS(7298), + }, + [3975] = { + [sym_identifier] = ACTIONS(7472), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_STAR] = ACTIONS(7474), + [anon_sym_CARET] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7474), + [anon_sym_LT] = ACTIONS(7474), + [anon_sym___extension__] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(7472), + [anon_sym___attribute] = ACTIONS(7472), + [anon_sym_noreturn] = ACTIONS(7472), + [anon_sym_LBRACK] = ACTIONS(7474), + [anon_sym___based] = ACTIONS(7472), + [anon_sym_LBRACE] = ACTIONS(7474), + [anon_sym_signed] = ACTIONS(7472), + [anon_sym_unsigned] = ACTIONS(7472), + [anon_sym_long] = ACTIONS(7472), + [anon_sym_short] = ACTIONS(7472), + [anon_sym_ATautoreleasepool] = ACTIONS(7474), + [anon_sym_const] = ACTIONS(7472), + [anon_sym_constexpr] = ACTIONS(7472), + [anon_sym_volatile] = ACTIONS(7472), + [anon_sym_restrict] = ACTIONS(7472), + [anon_sym___restrict__] = ACTIONS(7472), + [anon_sym__Atomic] = ACTIONS(7472), + [anon_sym__Noreturn] = ACTIONS(7472), + [anon_sym__Nonnull] = ACTIONS(7472), + [anon_sym_nullable] = ACTIONS(7472), + [anon_sym__Complex] = ACTIONS(7472), + [anon_sym__Nullable] = ACTIONS(7472), + [anon_sym__Nullable_result] = ACTIONS(7472), + [anon_sym__Null_unspecified] = ACTIONS(7472), + [anon_sym___autoreleasing] = ACTIONS(7472), + [anon_sym___block] = ACTIONS(7472), + [anon_sym___bridge] = ACTIONS(7472), + [anon_sym___bridge_retained] = ACTIONS(7472), + [anon_sym___bridge_transfer] = ACTIONS(7472), + [anon_sym___complex] = ACTIONS(7472), + [anon_sym___const] = ACTIONS(7472), + [anon_sym___imag] = ACTIONS(7472), + [anon_sym___kindof] = ACTIONS(7472), + [anon_sym___nonnull] = ACTIONS(7472), + [anon_sym___nullable] = ACTIONS(7472), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7472), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7472), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7472), + [anon_sym___real] = ACTIONS(7472), + [anon_sym___strong] = ACTIONS(7472), + [anon_sym___unsafe_unretained] = ACTIONS(7472), + [anon_sym___unused] = ACTIONS(7472), + [anon_sym___weak] = ACTIONS(7472), + [anon_sym_alignas] = ACTIONS(7472), + [anon_sym__Alignas] = ACTIONS(7472), + [sym_primitive_type] = ACTIONS(7472), + [anon_sym_enum] = ACTIONS(7472), + [anon_sym_COLON] = ACTIONS(7474), + [anon_sym_struct] = ACTIONS(7472), + [anon_sym_union] = ACTIONS(7472), + [anon_sym_in] = ACTIONS(7472), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7472), + [anon_sym___typeof] = ACTIONS(7472), + [anon_sym_typeof] = ACTIONS(7472), + [anon_sym_BOOL] = ACTIONS(7472), + [anon_sym_IMP] = ACTIONS(7472), + [anon_sym_SEL] = ACTIONS(7472), + [anon_sym_Class] = ACTIONS(7472), + [anon_sym_id] = ACTIONS(7472), + [anon_sym_out] = ACTIONS(7472), + [anon_sym_inout] = ACTIONS(7472), + [anon_sym_bycopy] = ACTIONS(7472), + [anon_sym_byref] = ACTIONS(7472), + [anon_sym_oneway] = ACTIONS(7472), + }, + [3976] = { + [sym_identifier] = ACTIONS(7476), + [anon_sym_COMMA] = ACTIONS(7478), + [anon_sym_RPAREN] = ACTIONS(7478), + [anon_sym_LPAREN2] = ACTIONS(7478), + [anon_sym_STAR] = ACTIONS(7478), + [anon_sym_CARET] = ACTIONS(7478), + [anon_sym_GT] = ACTIONS(7478), + [anon_sym_LT] = ACTIONS(7478), + [anon_sym___extension__] = ACTIONS(7476), + [anon_sym___attribute__] = ACTIONS(7476), + [anon_sym___attribute] = ACTIONS(7476), + [anon_sym_noreturn] = ACTIONS(7476), + [anon_sym_LBRACK] = ACTIONS(7478), + [anon_sym___based] = ACTIONS(7476), + [anon_sym_LBRACE] = ACTIONS(7478), + [anon_sym_signed] = ACTIONS(7476), + [anon_sym_unsigned] = ACTIONS(7476), + [anon_sym_long] = ACTIONS(7476), + [anon_sym_short] = ACTIONS(7476), + [anon_sym_ATautoreleasepool] = ACTIONS(7478), + [anon_sym_const] = ACTIONS(7476), + [anon_sym_constexpr] = ACTIONS(7476), + [anon_sym_volatile] = ACTIONS(7476), + [anon_sym_restrict] = ACTIONS(7476), + [anon_sym___restrict__] = ACTIONS(7476), + [anon_sym__Atomic] = ACTIONS(7476), + [anon_sym__Noreturn] = ACTIONS(7476), + [anon_sym__Nonnull] = ACTIONS(7476), + [anon_sym_nullable] = ACTIONS(7476), + [anon_sym__Complex] = ACTIONS(7476), + [anon_sym__Nullable] = ACTIONS(7476), + [anon_sym__Nullable_result] = ACTIONS(7476), + [anon_sym__Null_unspecified] = ACTIONS(7476), + [anon_sym___autoreleasing] = ACTIONS(7476), + [anon_sym___block] = ACTIONS(7476), + [anon_sym___bridge] = ACTIONS(7476), + [anon_sym___bridge_retained] = ACTIONS(7476), + [anon_sym___bridge_transfer] = ACTIONS(7476), + [anon_sym___complex] = ACTIONS(7476), + [anon_sym___const] = ACTIONS(7476), + [anon_sym___imag] = ACTIONS(7476), + [anon_sym___kindof] = ACTIONS(7476), + [anon_sym___nonnull] = ACTIONS(7476), + [anon_sym___nullable] = ACTIONS(7476), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7476), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7476), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7476), + [anon_sym___real] = ACTIONS(7476), + [anon_sym___strong] = ACTIONS(7476), + [anon_sym___unsafe_unretained] = ACTIONS(7476), + [anon_sym___unused] = ACTIONS(7476), + [anon_sym___weak] = ACTIONS(7476), + [anon_sym_alignas] = ACTIONS(7476), + [anon_sym__Alignas] = ACTIONS(7476), + [sym_primitive_type] = ACTIONS(7476), + [anon_sym_enum] = ACTIONS(7476), + [anon_sym_COLON] = ACTIONS(7478), + [anon_sym_struct] = ACTIONS(7476), + [anon_sym_union] = ACTIONS(7476), + [anon_sym_in] = ACTIONS(7476), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7476), + [anon_sym___typeof] = ACTIONS(7476), + [anon_sym_typeof] = ACTIONS(7476), + [anon_sym_BOOL] = ACTIONS(7476), + [anon_sym_IMP] = ACTIONS(7476), + [anon_sym_SEL] = ACTIONS(7476), + [anon_sym_Class] = ACTIONS(7476), + [anon_sym_id] = ACTIONS(7476), + [anon_sym_out] = ACTIONS(7476), + [anon_sym_inout] = ACTIONS(7476), + [anon_sym_bycopy] = ACTIONS(7476), + [anon_sym_byref] = ACTIONS(7476), + [anon_sym_oneway] = ACTIONS(7476), + }, + [3977] = { + [sym_identifier] = ACTIONS(2922), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4236), + [anon_sym_COMMA] = ACTIONS(4236), + [anon_sym_RPAREN] = ACTIONS(4236), + [anon_sym_LPAREN2] = ACTIONS(2928), + [anon_sym_BANG] = ACTIONS(2922), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_DASH] = ACTIONS(2922), + [anon_sym_PLUS] = ACTIONS(2922), + [anon_sym_STAR] = ACTIONS(2928), + [anon_sym_SLASH] = ACTIONS(4234), + [anon_sym_PERCENT] = ACTIONS(4236), + [anon_sym_PIPE_PIPE] = ACTIONS(4236), + [anon_sym_AMP_AMP] = ACTIONS(4236), + [anon_sym_PIPE] = ACTIONS(4234), + [anon_sym_CARET] = ACTIONS(2928), + [anon_sym_AMP] = ACTIONS(2922), + [anon_sym_EQ_EQ] = ACTIONS(4236), + [anon_sym_BANG_EQ] = ACTIONS(4236), + [anon_sym_GT] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4236), + [anon_sym_LT_EQ] = ACTIONS(4236), + [anon_sym_LT] = ACTIONS(4234), + [anon_sym_LT_LT] = ACTIONS(4236), + [anon_sym_GT_GT] = ACTIONS(4236), + [anon_sym___extension__] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2928), + [anon_sym_const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(2922), + [anon_sym_QMARK] = ACTIONS(4236), + [anon_sym_DASH_DASH] = ACTIONS(2928), + [anon_sym_PLUS_PLUS] = ACTIONS(2928), + [anon_sym_sizeof] = ACTIONS(2922), + [anon_sym___alignof__] = ACTIONS(2922), + [anon_sym___alignof] = ACTIONS(2922), + [anon_sym__alignof] = ACTIONS(2922), + [anon_sym_alignof] = ACTIONS(2922), + [anon_sym__Alignof] = ACTIONS(2922), + [anon_sym_offsetof] = ACTIONS(2922), + [anon_sym__Generic] = ACTIONS(2922), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [anon_sym___asm] = ACTIONS(2922), + [anon_sym_DOT] = ACTIONS(4234), + [anon_sym_DASH_GT] = ACTIONS(4236), + [sym_number_literal] = ACTIONS(2928), + [anon_sym_L_SQUOTE] = ACTIONS(2928), + [anon_sym_u_SQUOTE] = ACTIONS(2928), + [anon_sym_U_SQUOTE] = ACTIONS(2928), + [anon_sym_u8_SQUOTE] = ACTIONS(2928), + [anon_sym_SQUOTE] = ACTIONS(2928), + [anon_sym_AT] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2928), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2922), + [sym_false] = ACTIONS(2922), + [anon_sym_NULL] = ACTIONS(2922), + [anon_sym_nullptr] = ACTIONS(2922), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_ATselector] = ACTIONS(2928), + [anon_sym_ATavailable] = ACTIONS(2928), + [anon_sym___builtin_available] = ACTIONS(2922), + [anon_sym_va_arg] = ACTIONS(2922), + [anon_sym_ATencode] = ACTIONS(2928), + [anon_sym_id] = ACTIONS(2922), + }, + [3978] = { + [sym_identifier] = ACTIONS(9028), + [anon_sym_COMMA] = ACTIONS(9030), + [anon_sym_RPAREN] = ACTIONS(9030), + [anon_sym_LPAREN2] = ACTIONS(9030), + [anon_sym_STAR] = ACTIONS(9030), + [anon_sym_CARET] = ACTIONS(9030), + [anon_sym_GT] = ACTIONS(9030), + [anon_sym_LT] = ACTIONS(9030), + [anon_sym___extension__] = ACTIONS(9028), + [anon_sym___attribute__] = ACTIONS(9028), + [anon_sym___attribute] = ACTIONS(9028), + [anon_sym_noreturn] = ACTIONS(9028), + [anon_sym_LBRACK] = ACTIONS(9038), + [anon_sym___based] = ACTIONS(9028), + [anon_sym_LBRACE] = ACTIONS(9030), + [anon_sym_signed] = ACTIONS(9028), + [anon_sym_unsigned] = ACTIONS(9028), + [anon_sym_long] = ACTIONS(9028), + [anon_sym_short] = ACTIONS(9028), + [anon_sym_ATautoreleasepool] = ACTIONS(9030), + [anon_sym_const] = ACTIONS(9028), + [anon_sym_constexpr] = ACTIONS(9028), + [anon_sym_volatile] = ACTIONS(9028), + [anon_sym_restrict] = ACTIONS(9028), + [anon_sym___restrict__] = ACTIONS(9028), + [anon_sym__Atomic] = ACTIONS(9028), + [anon_sym__Noreturn] = ACTIONS(9028), + [anon_sym__Nonnull] = ACTIONS(9028), + [anon_sym_nullable] = ACTIONS(9028), + [anon_sym__Complex] = ACTIONS(9028), + [anon_sym__Nullable] = ACTIONS(9028), + [anon_sym__Nullable_result] = ACTIONS(9028), + [anon_sym__Null_unspecified] = ACTIONS(9028), + [anon_sym___autoreleasing] = ACTIONS(9028), + [anon_sym___block] = ACTIONS(9028), + [anon_sym___bridge] = ACTIONS(9028), + [anon_sym___bridge_retained] = ACTIONS(9028), + [anon_sym___bridge_transfer] = ACTIONS(9028), + [anon_sym___complex] = ACTIONS(9028), + [anon_sym___const] = ACTIONS(9028), + [anon_sym___imag] = ACTIONS(9028), + [anon_sym___kindof] = ACTIONS(9028), + [anon_sym___nonnull] = ACTIONS(9028), + [anon_sym___nullable] = ACTIONS(9028), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(9028), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(9028), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(9028), + [anon_sym___real] = ACTIONS(9028), + [anon_sym___strong] = ACTIONS(9028), + [anon_sym___unsafe_unretained] = ACTIONS(9028), + [anon_sym___unused] = ACTIONS(9028), + [anon_sym___weak] = ACTIONS(9028), + [anon_sym_alignas] = ACTIONS(9028), + [anon_sym__Alignas] = ACTIONS(9028), + [sym_primitive_type] = ACTIONS(9028), + [anon_sym_enum] = ACTIONS(9028), + [anon_sym_COLON] = ACTIONS(9030), + [anon_sym_struct] = ACTIONS(9028), + [anon_sym_union] = ACTIONS(9028), + [anon_sym_in] = ACTIONS(9028), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(9028), + [anon_sym___typeof] = ACTIONS(9028), + [anon_sym_typeof] = ACTIONS(9028), + [anon_sym_BOOL] = ACTIONS(9028), + [anon_sym_IMP] = ACTIONS(9028), + [anon_sym_SEL] = ACTIONS(9028), + [anon_sym_Class] = ACTIONS(9028), + [anon_sym_id] = ACTIONS(9028), + [anon_sym_out] = ACTIONS(9028), + [anon_sym_inout] = ACTIONS(9028), + [anon_sym_bycopy] = ACTIONS(9028), + [anon_sym_byref] = ACTIONS(9028), + [anon_sym_oneway] = ACTIONS(9028), + }, + [3979] = { + [sym_identifier] = ACTIONS(7562), + [anon_sym_COMMA] = ACTIONS(7564), + [anon_sym_RPAREN] = ACTIONS(7564), + [anon_sym_LPAREN2] = ACTIONS(7564), + [anon_sym_STAR] = ACTIONS(7564), + [anon_sym_CARET] = ACTIONS(7564), + [anon_sym_GT] = ACTIONS(7564), + [anon_sym_LT] = ACTIONS(7564), + [anon_sym___extension__] = ACTIONS(7562), + [anon_sym___attribute__] = ACTIONS(7562), + [anon_sym___attribute] = ACTIONS(7562), + [anon_sym_noreturn] = ACTIONS(7562), + [anon_sym_LBRACK] = ACTIONS(7564), + [anon_sym___based] = ACTIONS(7562), + [anon_sym_LBRACE] = ACTIONS(7564), + [anon_sym_signed] = ACTIONS(7562), + [anon_sym_unsigned] = ACTIONS(7562), + [anon_sym_long] = ACTIONS(7562), + [anon_sym_short] = ACTIONS(7562), + [anon_sym_ATautoreleasepool] = ACTIONS(7564), + [anon_sym_const] = ACTIONS(7562), + [anon_sym_constexpr] = ACTIONS(7562), + [anon_sym_volatile] = ACTIONS(7562), + [anon_sym_restrict] = ACTIONS(7562), + [anon_sym___restrict__] = ACTIONS(7562), + [anon_sym__Atomic] = ACTIONS(7562), + [anon_sym__Noreturn] = ACTIONS(7562), + [anon_sym__Nonnull] = ACTIONS(7562), + [anon_sym_nullable] = ACTIONS(7562), + [anon_sym__Complex] = ACTIONS(7562), + [anon_sym__Nullable] = ACTIONS(7562), + [anon_sym__Nullable_result] = ACTIONS(7562), + [anon_sym__Null_unspecified] = ACTIONS(7562), + [anon_sym___autoreleasing] = ACTIONS(7562), + [anon_sym___block] = ACTIONS(7562), + [anon_sym___bridge] = ACTIONS(7562), + [anon_sym___bridge_retained] = ACTIONS(7562), + [anon_sym___bridge_transfer] = ACTIONS(7562), + [anon_sym___complex] = ACTIONS(7562), + [anon_sym___const] = ACTIONS(7562), + [anon_sym___imag] = ACTIONS(7562), + [anon_sym___kindof] = ACTIONS(7562), + [anon_sym___nonnull] = ACTIONS(7562), + [anon_sym___nullable] = ACTIONS(7562), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7562), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7562), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7562), + [anon_sym___real] = ACTIONS(7562), + [anon_sym___strong] = ACTIONS(7562), + [anon_sym___unsafe_unretained] = ACTIONS(7562), + [anon_sym___unused] = ACTIONS(7562), + [anon_sym___weak] = ACTIONS(7562), + [anon_sym_alignas] = ACTIONS(7562), + [anon_sym__Alignas] = ACTIONS(7562), + [sym_primitive_type] = ACTIONS(7562), + [anon_sym_enum] = ACTIONS(7562), + [anon_sym_COLON] = ACTIONS(7564), + [anon_sym_struct] = ACTIONS(7562), + [anon_sym_union] = ACTIONS(7562), + [anon_sym_in] = ACTIONS(7562), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7562), + [anon_sym___typeof] = ACTIONS(7562), + [anon_sym_typeof] = ACTIONS(7562), + [anon_sym_BOOL] = ACTIONS(7562), + [anon_sym_IMP] = ACTIONS(7562), + [anon_sym_SEL] = ACTIONS(7562), + [anon_sym_Class] = ACTIONS(7562), + [anon_sym_id] = ACTIONS(7562), + [anon_sym_out] = ACTIONS(7562), + [anon_sym_inout] = ACTIONS(7562), + [anon_sym_bycopy] = ACTIONS(7562), + [anon_sym_byref] = ACTIONS(7562), + [anon_sym_oneway] = ACTIONS(7562), + }, + [3980] = { + [sym_identifier] = ACTIONS(7185), + [anon_sym_COMMA] = ACTIONS(7187), + [anon_sym_RPAREN] = ACTIONS(7187), + [anon_sym_LPAREN2] = ACTIONS(7187), + [anon_sym_STAR] = ACTIONS(7187), + [anon_sym_CARET] = ACTIONS(7187), + [anon_sym_GT] = ACTIONS(7187), + [anon_sym_LT] = ACTIONS(7187), + [anon_sym___extension__] = ACTIONS(7185), + [anon_sym___attribute__] = ACTIONS(7185), + [anon_sym___attribute] = ACTIONS(7185), + [anon_sym_noreturn] = ACTIONS(7185), + [anon_sym_LBRACK] = ACTIONS(7187), + [anon_sym___based] = ACTIONS(7185), + [anon_sym_LBRACE] = ACTIONS(7187), + [anon_sym_signed] = ACTIONS(7185), + [anon_sym_unsigned] = ACTIONS(7185), + [anon_sym_long] = ACTIONS(7185), + [anon_sym_short] = ACTIONS(7185), + [anon_sym_ATautoreleasepool] = ACTIONS(7187), + [anon_sym_const] = ACTIONS(7185), + [anon_sym_constexpr] = ACTIONS(7185), + [anon_sym_volatile] = ACTIONS(7185), + [anon_sym_restrict] = ACTIONS(7185), + [anon_sym___restrict__] = ACTIONS(7185), + [anon_sym__Atomic] = ACTIONS(7185), + [anon_sym__Noreturn] = ACTIONS(7185), + [anon_sym__Nonnull] = ACTIONS(7185), + [anon_sym_nullable] = ACTIONS(7185), + [anon_sym__Complex] = ACTIONS(7185), + [anon_sym__Nullable] = ACTIONS(7185), + [anon_sym__Nullable_result] = ACTIONS(7185), + [anon_sym__Null_unspecified] = ACTIONS(7185), + [anon_sym___autoreleasing] = ACTIONS(7185), + [anon_sym___block] = ACTIONS(7185), + [anon_sym___bridge] = ACTIONS(7185), + [anon_sym___bridge_retained] = ACTIONS(7185), + [anon_sym___bridge_transfer] = ACTIONS(7185), + [anon_sym___complex] = ACTIONS(7185), + [anon_sym___const] = ACTIONS(7185), + [anon_sym___imag] = ACTIONS(7185), + [anon_sym___kindof] = ACTIONS(7185), + [anon_sym___nonnull] = ACTIONS(7185), + [anon_sym___nullable] = ACTIONS(7185), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7185), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7185), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7185), + [anon_sym___real] = ACTIONS(7185), + [anon_sym___strong] = ACTIONS(7185), + [anon_sym___unsafe_unretained] = ACTIONS(7185), + [anon_sym___unused] = ACTIONS(7185), + [anon_sym___weak] = ACTIONS(7185), + [anon_sym_alignas] = ACTIONS(7185), + [anon_sym__Alignas] = ACTIONS(7185), + [sym_primitive_type] = ACTIONS(7185), + [anon_sym_enum] = ACTIONS(7185), + [anon_sym_COLON] = ACTIONS(7187), + [anon_sym_struct] = ACTIONS(7185), + [anon_sym_union] = ACTIONS(7185), + [anon_sym_in] = ACTIONS(7185), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7185), + [anon_sym___typeof] = ACTIONS(7185), + [anon_sym_typeof] = ACTIONS(7185), + [anon_sym_BOOL] = ACTIONS(7185), + [anon_sym_IMP] = ACTIONS(7185), + [anon_sym_SEL] = ACTIONS(7185), + [anon_sym_Class] = ACTIONS(7185), + [anon_sym_id] = ACTIONS(7185), + [anon_sym_out] = ACTIONS(7185), + [anon_sym_inout] = ACTIONS(7185), + [anon_sym_bycopy] = ACTIONS(7185), + [anon_sym_byref] = ACTIONS(7185), + [anon_sym_oneway] = ACTIONS(7185), + }, + [3981] = { + [sym__type_definition_type] = STATE(4775), + [sym_attribute_specifier] = STATE(3984), + [sym_ms_declspec_modifier] = STATE(4049), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3982] = { + [sym_identifier] = ACTIONS(2922), + [anon_sym_COMMA] = ACTIONS(2928), + [anon_sym_RPAREN] = ACTIONS(2928), + [anon_sym_LPAREN2] = ACTIONS(2928), + [anon_sym_STAR] = ACTIONS(2928), + [anon_sym_CARET] = ACTIONS(2928), + [anon_sym_GT] = ACTIONS(2928), + [anon_sym_LT] = ACTIONS(2928), + [anon_sym___extension__] = ACTIONS(2922), + [anon_sym___attribute__] = ACTIONS(2922), + [anon_sym___attribute] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2928), + [anon_sym___based] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2928), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_ATautoreleasepool] = ACTIONS(2928), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2922), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2922), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_COLON] = ACTIONS(2928), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(2922), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(2922), + [anon_sym_out] = ACTIONS(2922), + [anon_sym_inout] = ACTIONS(2922), + [anon_sym_bycopy] = ACTIONS(2922), + [anon_sym_byref] = ACTIONS(2922), + [anon_sym_oneway] = ACTIONS(2922), + }, + [3983] = { + [sym__type_definition_type] = STATE(4791), + [sym_attribute_specifier] = STATE(3994), + [sym_ms_declspec_modifier] = STATE(4053), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3984] = { + [sym__type_definition_type] = STATE(4797), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4053), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3985] = { + [sym_identifier] = ACTIONS(7392), + [anon_sym_COMMA] = ACTIONS(7394), + [anon_sym_RPAREN] = ACTIONS(7394), + [anon_sym_LPAREN2] = ACTIONS(7394), + [anon_sym_STAR] = ACTIONS(7394), + [anon_sym_CARET] = ACTIONS(7394), + [anon_sym_GT] = ACTIONS(7394), + [anon_sym_LT] = ACTIONS(7394), + [anon_sym___extension__] = ACTIONS(7392), + [anon_sym___attribute__] = ACTIONS(7392), + [anon_sym___attribute] = ACTIONS(7392), + [anon_sym_noreturn] = ACTIONS(7392), + [anon_sym_LBRACK] = ACTIONS(7394), + [anon_sym___based] = ACTIONS(7392), + [anon_sym_LBRACE] = ACTIONS(7394), + [anon_sym_signed] = ACTIONS(7392), + [anon_sym_unsigned] = ACTIONS(7392), + [anon_sym_long] = ACTIONS(7392), + [anon_sym_short] = ACTIONS(7392), + [anon_sym_ATautoreleasepool] = ACTIONS(7394), + [anon_sym_const] = ACTIONS(7392), + [anon_sym_constexpr] = ACTIONS(7392), + [anon_sym_volatile] = ACTIONS(7392), + [anon_sym_restrict] = ACTIONS(7392), + [anon_sym___restrict__] = ACTIONS(7392), + [anon_sym__Atomic] = ACTIONS(7392), + [anon_sym__Noreturn] = ACTIONS(7392), + [anon_sym__Nonnull] = ACTIONS(7392), + [anon_sym_nullable] = ACTIONS(7392), + [anon_sym__Complex] = ACTIONS(7392), + [anon_sym__Nullable] = ACTIONS(7392), + [anon_sym__Nullable_result] = ACTIONS(7392), + [anon_sym__Null_unspecified] = ACTIONS(7392), + [anon_sym___autoreleasing] = ACTIONS(7392), + [anon_sym___block] = ACTIONS(7392), + [anon_sym___bridge] = ACTIONS(7392), + [anon_sym___bridge_retained] = ACTIONS(7392), + [anon_sym___bridge_transfer] = ACTIONS(7392), + [anon_sym___complex] = ACTIONS(7392), + [anon_sym___const] = ACTIONS(7392), + [anon_sym___imag] = ACTIONS(7392), + [anon_sym___kindof] = ACTIONS(7392), + [anon_sym___nonnull] = ACTIONS(7392), + [anon_sym___nullable] = ACTIONS(7392), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7392), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7392), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7392), + [anon_sym___real] = ACTIONS(7392), + [anon_sym___strong] = ACTIONS(7392), + [anon_sym___unsafe_unretained] = ACTIONS(7392), + [anon_sym___unused] = ACTIONS(7392), + [anon_sym___weak] = ACTIONS(7392), + [anon_sym_alignas] = ACTIONS(7392), + [anon_sym__Alignas] = ACTIONS(7392), + [sym_primitive_type] = ACTIONS(7392), + [anon_sym_enum] = ACTIONS(7392), + [anon_sym_COLON] = ACTIONS(7394), + [anon_sym_struct] = ACTIONS(7392), + [anon_sym_union] = ACTIONS(7392), + [anon_sym_in] = ACTIONS(7392), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7392), + [anon_sym___typeof] = ACTIONS(7392), + [anon_sym_typeof] = ACTIONS(7392), + [anon_sym_BOOL] = ACTIONS(7392), + [anon_sym_IMP] = ACTIONS(7392), + [anon_sym_SEL] = ACTIONS(7392), + [anon_sym_Class] = ACTIONS(7392), + [anon_sym_id] = ACTIONS(7392), + [anon_sym_out] = ACTIONS(7392), + [anon_sym_inout] = ACTIONS(7392), + [anon_sym_bycopy] = ACTIONS(7392), + [anon_sym_byref] = ACTIONS(7392), + [anon_sym_oneway] = ACTIONS(7392), + }, + [3986] = { + [sym_identifier] = ACTIONS(7396), + [anon_sym_COMMA] = ACTIONS(7398), + [anon_sym_RPAREN] = ACTIONS(7398), + [anon_sym_LPAREN2] = ACTIONS(7398), + [anon_sym_STAR] = ACTIONS(7398), + [anon_sym_CARET] = ACTIONS(7398), + [anon_sym_GT] = ACTIONS(7398), + [anon_sym_LT] = ACTIONS(7398), + [anon_sym___extension__] = ACTIONS(7396), + [anon_sym___attribute__] = ACTIONS(7396), + [anon_sym___attribute] = ACTIONS(7396), + [anon_sym_noreturn] = ACTIONS(7396), + [anon_sym_LBRACK] = ACTIONS(7398), + [anon_sym___based] = ACTIONS(7396), + [anon_sym_LBRACE] = ACTIONS(7398), + [anon_sym_signed] = ACTIONS(7396), + [anon_sym_unsigned] = ACTIONS(7396), + [anon_sym_long] = ACTIONS(7396), + [anon_sym_short] = ACTIONS(7396), + [anon_sym_ATautoreleasepool] = ACTIONS(7398), + [anon_sym_const] = ACTIONS(7396), + [anon_sym_constexpr] = ACTIONS(7396), + [anon_sym_volatile] = ACTIONS(7396), + [anon_sym_restrict] = ACTIONS(7396), + [anon_sym___restrict__] = ACTIONS(7396), + [anon_sym__Atomic] = ACTIONS(7396), + [anon_sym__Noreturn] = ACTIONS(7396), + [anon_sym__Nonnull] = ACTIONS(7396), + [anon_sym_nullable] = ACTIONS(7396), + [anon_sym__Complex] = ACTIONS(7396), + [anon_sym__Nullable] = ACTIONS(7396), + [anon_sym__Nullable_result] = ACTIONS(7396), + [anon_sym__Null_unspecified] = ACTIONS(7396), + [anon_sym___autoreleasing] = ACTIONS(7396), + [anon_sym___block] = ACTIONS(7396), + [anon_sym___bridge] = ACTIONS(7396), + [anon_sym___bridge_retained] = ACTIONS(7396), + [anon_sym___bridge_transfer] = ACTIONS(7396), + [anon_sym___complex] = ACTIONS(7396), + [anon_sym___const] = ACTIONS(7396), + [anon_sym___imag] = ACTIONS(7396), + [anon_sym___kindof] = ACTIONS(7396), + [anon_sym___nonnull] = ACTIONS(7396), + [anon_sym___nullable] = ACTIONS(7396), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7396), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7396), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7396), + [anon_sym___real] = ACTIONS(7396), + [anon_sym___strong] = ACTIONS(7396), + [anon_sym___unsafe_unretained] = ACTIONS(7396), + [anon_sym___unused] = ACTIONS(7396), + [anon_sym___weak] = ACTIONS(7396), + [anon_sym_alignas] = ACTIONS(7396), + [anon_sym__Alignas] = ACTIONS(7396), + [sym_primitive_type] = ACTIONS(7396), + [anon_sym_enum] = ACTIONS(7396), + [anon_sym_COLON] = ACTIONS(7398), + [anon_sym_struct] = ACTIONS(7396), + [anon_sym_union] = ACTIONS(7396), + [anon_sym_in] = ACTIONS(7396), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7396), + [anon_sym___typeof] = ACTIONS(7396), + [anon_sym_typeof] = ACTIONS(7396), + [anon_sym_BOOL] = ACTIONS(7396), + [anon_sym_IMP] = ACTIONS(7396), + [anon_sym_SEL] = ACTIONS(7396), + [anon_sym_Class] = ACTIONS(7396), + [anon_sym_id] = ACTIONS(7396), + [anon_sym_out] = ACTIONS(7396), + [anon_sym_inout] = ACTIONS(7396), + [anon_sym_bycopy] = ACTIONS(7396), + [anon_sym_byref] = ACTIONS(7396), + [anon_sym_oneway] = ACTIONS(7396), + }, + [3987] = { + [sym_identifier] = ACTIONS(7400), + [anon_sym_COMMA] = ACTIONS(7402), + [anon_sym_RPAREN] = ACTIONS(7402), + [anon_sym_LPAREN2] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7402), + [anon_sym_GT] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(7402), + [anon_sym___extension__] = ACTIONS(7400), + [anon_sym___attribute__] = ACTIONS(7400), + [anon_sym___attribute] = ACTIONS(7400), + [anon_sym_noreturn] = ACTIONS(7400), + [anon_sym_LBRACK] = ACTIONS(7402), + [anon_sym___based] = ACTIONS(7400), + [anon_sym_LBRACE] = ACTIONS(7402), + [anon_sym_signed] = ACTIONS(7400), + [anon_sym_unsigned] = ACTIONS(7400), + [anon_sym_long] = ACTIONS(7400), + [anon_sym_short] = ACTIONS(7400), + [anon_sym_ATautoreleasepool] = ACTIONS(7402), + [anon_sym_const] = ACTIONS(7400), + [anon_sym_constexpr] = ACTIONS(7400), + [anon_sym_volatile] = ACTIONS(7400), + [anon_sym_restrict] = ACTIONS(7400), + [anon_sym___restrict__] = ACTIONS(7400), + [anon_sym__Atomic] = ACTIONS(7400), + [anon_sym__Noreturn] = ACTIONS(7400), + [anon_sym__Nonnull] = ACTIONS(7400), + [anon_sym_nullable] = ACTIONS(7400), + [anon_sym__Complex] = ACTIONS(7400), + [anon_sym__Nullable] = ACTIONS(7400), + [anon_sym__Nullable_result] = ACTIONS(7400), + [anon_sym__Null_unspecified] = ACTIONS(7400), + [anon_sym___autoreleasing] = ACTIONS(7400), + [anon_sym___block] = ACTIONS(7400), + [anon_sym___bridge] = ACTIONS(7400), + [anon_sym___bridge_retained] = ACTIONS(7400), + [anon_sym___bridge_transfer] = ACTIONS(7400), + [anon_sym___complex] = ACTIONS(7400), + [anon_sym___const] = ACTIONS(7400), + [anon_sym___imag] = ACTIONS(7400), + [anon_sym___kindof] = ACTIONS(7400), + [anon_sym___nonnull] = ACTIONS(7400), + [anon_sym___nullable] = ACTIONS(7400), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7400), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7400), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7400), + [anon_sym___real] = ACTIONS(7400), + [anon_sym___strong] = ACTIONS(7400), + [anon_sym___unsafe_unretained] = ACTIONS(7400), + [anon_sym___unused] = ACTIONS(7400), + [anon_sym___weak] = ACTIONS(7400), + [anon_sym_alignas] = ACTIONS(7400), + [anon_sym__Alignas] = ACTIONS(7400), + [sym_primitive_type] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7400), + [anon_sym_COLON] = ACTIONS(7402), + [anon_sym_struct] = ACTIONS(7400), + [anon_sym_union] = ACTIONS(7400), + [anon_sym_in] = ACTIONS(7400), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7400), + [anon_sym___typeof] = ACTIONS(7400), + [anon_sym_typeof] = ACTIONS(7400), + [anon_sym_BOOL] = ACTIONS(7400), + [anon_sym_IMP] = ACTIONS(7400), + [anon_sym_SEL] = ACTIONS(7400), + [anon_sym_Class] = ACTIONS(7400), + [anon_sym_id] = ACTIONS(7400), + [anon_sym_out] = ACTIONS(7400), + [anon_sym_inout] = ACTIONS(7400), + [anon_sym_bycopy] = ACTIONS(7400), + [anon_sym_byref] = ACTIONS(7400), + [anon_sym_oneway] = ACTIONS(7400), + }, + [3988] = { + [sym__type_definition_type] = STATE(4783), + [sym_attribute_specifier] = STATE(3858), + [sym_ms_declspec_modifier] = STATE(4044), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3989] = { + [sym__type_definition_type] = STATE(4790), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4044), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3990] = { + [sym_identifier] = ACTIONS(7408), + [anon_sym_COMMA] = ACTIONS(7410), + [anon_sym_RPAREN] = ACTIONS(7410), + [anon_sym_LPAREN2] = ACTIONS(7410), + [anon_sym_STAR] = ACTIONS(7410), + [anon_sym_CARET] = ACTIONS(7410), + [anon_sym_GT] = ACTIONS(7410), + [anon_sym_LT] = ACTIONS(7410), + [anon_sym___extension__] = ACTIONS(7408), + [anon_sym___attribute__] = ACTIONS(7408), + [anon_sym___attribute] = ACTIONS(7408), + [anon_sym_noreturn] = ACTIONS(7408), + [anon_sym_LBRACK] = ACTIONS(7410), + [anon_sym___based] = ACTIONS(7408), + [anon_sym_LBRACE] = ACTIONS(7410), + [anon_sym_signed] = ACTIONS(7408), + [anon_sym_unsigned] = ACTIONS(7408), + [anon_sym_long] = ACTIONS(7408), + [anon_sym_short] = ACTIONS(7408), + [anon_sym_ATautoreleasepool] = ACTIONS(7410), + [anon_sym_const] = ACTIONS(7408), + [anon_sym_constexpr] = ACTIONS(7408), + [anon_sym_volatile] = ACTIONS(7408), + [anon_sym_restrict] = ACTIONS(7408), + [anon_sym___restrict__] = ACTIONS(7408), + [anon_sym__Atomic] = ACTIONS(7408), + [anon_sym__Noreturn] = ACTIONS(7408), + [anon_sym__Nonnull] = ACTIONS(7408), + [anon_sym_nullable] = ACTIONS(7408), + [anon_sym__Complex] = ACTIONS(7408), + [anon_sym__Nullable] = ACTIONS(7408), + [anon_sym__Nullable_result] = ACTIONS(7408), + [anon_sym__Null_unspecified] = ACTIONS(7408), + [anon_sym___autoreleasing] = ACTIONS(7408), + [anon_sym___block] = ACTIONS(7408), + [anon_sym___bridge] = ACTIONS(7408), + [anon_sym___bridge_retained] = ACTIONS(7408), + [anon_sym___bridge_transfer] = ACTIONS(7408), + [anon_sym___complex] = ACTIONS(7408), + [anon_sym___const] = ACTIONS(7408), + [anon_sym___imag] = ACTIONS(7408), + [anon_sym___kindof] = ACTIONS(7408), + [anon_sym___nonnull] = ACTIONS(7408), + [anon_sym___nullable] = ACTIONS(7408), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7408), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7408), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7408), + [anon_sym___real] = ACTIONS(7408), + [anon_sym___strong] = ACTIONS(7408), + [anon_sym___unsafe_unretained] = ACTIONS(7408), + [anon_sym___unused] = ACTIONS(7408), + [anon_sym___weak] = ACTIONS(7408), + [anon_sym_alignas] = ACTIONS(7408), + [anon_sym__Alignas] = ACTIONS(7408), + [sym_primitive_type] = ACTIONS(7408), + [anon_sym_enum] = ACTIONS(7408), + [anon_sym_COLON] = ACTIONS(7410), + [anon_sym_struct] = ACTIONS(7408), + [anon_sym_union] = ACTIONS(7408), + [anon_sym_in] = ACTIONS(7408), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7408), + [anon_sym___typeof] = ACTIONS(7408), + [anon_sym_typeof] = ACTIONS(7408), + [anon_sym_BOOL] = ACTIONS(7408), + [anon_sym_IMP] = ACTIONS(7408), + [anon_sym_SEL] = ACTIONS(7408), + [anon_sym_Class] = ACTIONS(7408), + [anon_sym_id] = ACTIONS(7408), + [anon_sym_out] = ACTIONS(7408), + [anon_sym_inout] = ACTIONS(7408), + [anon_sym_bycopy] = ACTIONS(7408), + [anon_sym_byref] = ACTIONS(7408), + [anon_sym_oneway] = ACTIONS(7408), + }, + [3991] = { + [sym_parameter_list] = STATE(3790), + [sym_identifier] = ACTIONS(6835), + [anon_sym_COMMA] = ACTIONS(6837), + [anon_sym_RPAREN] = ACTIONS(6837), + [anon_sym_LPAREN2] = ACTIONS(8958), + [anon_sym_STAR] = ACTIONS(6837), + [anon_sym_CARET] = ACTIONS(6837), + [anon_sym_GT] = ACTIONS(6837), + [anon_sym_LT] = ACTIONS(6837), + [anon_sym___extension__] = ACTIONS(6835), + [anon_sym___attribute__] = ACTIONS(6835), + [anon_sym___attribute] = ACTIONS(6835), + [anon_sym_noreturn] = ACTIONS(6835), + [anon_sym_LBRACK] = ACTIONS(8960), + [anon_sym___based] = ACTIONS(6835), + [anon_sym_LBRACE] = ACTIONS(6837), + [anon_sym_signed] = ACTIONS(6835), + [anon_sym_unsigned] = ACTIONS(6835), + [anon_sym_long] = ACTIONS(6835), + [anon_sym_short] = ACTIONS(6835), + [anon_sym_ATautoreleasepool] = ACTIONS(6837), + [anon_sym_const] = ACTIONS(6835), + [anon_sym_constexpr] = ACTIONS(6835), + [anon_sym_volatile] = ACTIONS(6835), + [anon_sym_restrict] = ACTIONS(6835), + [anon_sym___restrict__] = ACTIONS(6835), + [anon_sym__Atomic] = ACTIONS(6835), + [anon_sym__Noreturn] = ACTIONS(6835), + [anon_sym__Nonnull] = ACTIONS(6835), + [anon_sym_nullable] = ACTIONS(6835), + [anon_sym__Complex] = ACTIONS(6835), + [anon_sym__Nullable] = ACTIONS(6835), + [anon_sym__Nullable_result] = ACTIONS(6835), + [anon_sym__Null_unspecified] = ACTIONS(6835), + [anon_sym___autoreleasing] = ACTIONS(6835), + [anon_sym___block] = ACTIONS(6835), + [anon_sym___bridge] = ACTIONS(6835), + [anon_sym___bridge_retained] = ACTIONS(6835), + [anon_sym___bridge_transfer] = ACTIONS(6835), + [anon_sym___complex] = ACTIONS(6835), + [anon_sym___const] = ACTIONS(6835), + [anon_sym___imag] = ACTIONS(6835), + [anon_sym___kindof] = ACTIONS(6835), + [anon_sym___nonnull] = ACTIONS(6835), + [anon_sym___nullable] = ACTIONS(6835), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6835), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6835), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6835), + [anon_sym___real] = ACTIONS(6835), + [anon_sym___strong] = ACTIONS(6835), + [anon_sym___unsafe_unretained] = ACTIONS(6835), + [anon_sym___unused] = ACTIONS(6835), + [anon_sym___weak] = ACTIONS(6835), + [anon_sym_alignas] = ACTIONS(6835), + [anon_sym__Alignas] = ACTIONS(6835), + [sym_primitive_type] = ACTIONS(6835), + [anon_sym_enum] = ACTIONS(6835), + [anon_sym_struct] = ACTIONS(6835), + [anon_sym_union] = ACTIONS(6835), + [anon_sym_in] = ACTIONS(6835), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6835), + [anon_sym___typeof] = ACTIONS(6835), + [anon_sym_typeof] = ACTIONS(6835), + [anon_sym_BOOL] = ACTIONS(6835), + [anon_sym_IMP] = ACTIONS(6835), + [anon_sym_SEL] = ACTIONS(6835), + [anon_sym_Class] = ACTIONS(6835), + [anon_sym_id] = ACTIONS(6835), + [anon_sym_out] = ACTIONS(6835), + [anon_sym_inout] = ACTIONS(6835), + [anon_sym_bycopy] = ACTIONS(6835), + [anon_sym_byref] = ACTIONS(6835), + [anon_sym_oneway] = ACTIONS(6835), + }, + [3992] = { + [sym_identifier] = ACTIONS(7436), + [anon_sym_COMMA] = ACTIONS(7438), + [anon_sym_RPAREN] = ACTIONS(7438), + [anon_sym_LPAREN2] = ACTIONS(7438), + [anon_sym_STAR] = ACTIONS(7438), + [anon_sym_CARET] = ACTIONS(7438), + [anon_sym_GT] = ACTIONS(7438), + [anon_sym_LT] = ACTIONS(7438), + [anon_sym___extension__] = ACTIONS(7436), + [anon_sym___attribute__] = ACTIONS(7436), + [anon_sym___attribute] = ACTIONS(7436), + [anon_sym_noreturn] = ACTIONS(7436), + [anon_sym_LBRACK] = ACTIONS(7438), + [anon_sym___based] = ACTIONS(7436), + [anon_sym_LBRACE] = ACTIONS(7438), + [anon_sym_signed] = ACTIONS(7436), + [anon_sym_unsigned] = ACTIONS(7436), + [anon_sym_long] = ACTIONS(7436), + [anon_sym_short] = ACTIONS(7436), + [anon_sym_ATautoreleasepool] = ACTIONS(7438), + [anon_sym_const] = ACTIONS(7436), + [anon_sym_constexpr] = ACTIONS(7436), + [anon_sym_volatile] = ACTIONS(7436), + [anon_sym_restrict] = ACTIONS(7436), + [anon_sym___restrict__] = ACTIONS(7436), + [anon_sym__Atomic] = ACTIONS(7436), + [anon_sym__Noreturn] = ACTIONS(7436), + [anon_sym__Nonnull] = ACTIONS(7436), + [anon_sym_nullable] = ACTIONS(7436), + [anon_sym__Complex] = ACTIONS(7436), + [anon_sym__Nullable] = ACTIONS(7436), + [anon_sym__Nullable_result] = ACTIONS(7436), + [anon_sym__Null_unspecified] = ACTIONS(7436), + [anon_sym___autoreleasing] = ACTIONS(7436), + [anon_sym___block] = ACTIONS(7436), + [anon_sym___bridge] = ACTIONS(7436), + [anon_sym___bridge_retained] = ACTIONS(7436), + [anon_sym___bridge_transfer] = ACTIONS(7436), + [anon_sym___complex] = ACTIONS(7436), + [anon_sym___const] = ACTIONS(7436), + [anon_sym___imag] = ACTIONS(7436), + [anon_sym___kindof] = ACTIONS(7436), + [anon_sym___nonnull] = ACTIONS(7436), + [anon_sym___nullable] = ACTIONS(7436), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7436), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7436), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7436), + [anon_sym___real] = ACTIONS(7436), + [anon_sym___strong] = ACTIONS(7436), + [anon_sym___unsafe_unretained] = ACTIONS(7436), + [anon_sym___unused] = ACTIONS(7436), + [anon_sym___weak] = ACTIONS(7436), + [anon_sym_alignas] = ACTIONS(7436), + [anon_sym__Alignas] = ACTIONS(7436), + [sym_primitive_type] = ACTIONS(7436), + [anon_sym_enum] = ACTIONS(7436), + [anon_sym_COLON] = ACTIONS(7438), + [anon_sym_struct] = ACTIONS(7436), + [anon_sym_union] = ACTIONS(7436), + [anon_sym_in] = ACTIONS(7436), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7436), + [anon_sym___typeof] = ACTIONS(7436), + [anon_sym_typeof] = ACTIONS(7436), + [anon_sym_BOOL] = ACTIONS(7436), + [anon_sym_IMP] = ACTIONS(7436), + [anon_sym_SEL] = ACTIONS(7436), + [anon_sym_Class] = ACTIONS(7436), + [anon_sym_id] = ACTIONS(7436), + [anon_sym_out] = ACTIONS(7436), + [anon_sym_inout] = ACTIONS(7436), + [anon_sym_bycopy] = ACTIONS(7436), + [anon_sym_byref] = ACTIONS(7436), + [anon_sym_oneway] = ACTIONS(7436), + }, + [3993] = { + [sym_identifier] = ACTIONS(7440), + [anon_sym_COMMA] = ACTIONS(7442), + [anon_sym_RPAREN] = ACTIONS(7442), + [anon_sym_LPAREN2] = ACTIONS(7442), + [anon_sym_STAR] = ACTIONS(7442), + [anon_sym_CARET] = ACTIONS(7442), + [anon_sym_GT] = ACTIONS(7442), + [anon_sym_LT] = ACTIONS(7442), + [anon_sym___extension__] = ACTIONS(7440), + [anon_sym___attribute__] = ACTIONS(7440), + [anon_sym___attribute] = ACTIONS(7440), + [anon_sym_noreturn] = ACTIONS(7440), + [anon_sym_LBRACK] = ACTIONS(7442), + [anon_sym___based] = ACTIONS(7440), + [anon_sym_LBRACE] = ACTIONS(7442), + [anon_sym_signed] = ACTIONS(7440), + [anon_sym_unsigned] = ACTIONS(7440), + [anon_sym_long] = ACTIONS(7440), + [anon_sym_short] = ACTIONS(7440), + [anon_sym_ATautoreleasepool] = ACTIONS(7442), + [anon_sym_const] = ACTIONS(7440), + [anon_sym_constexpr] = ACTIONS(7440), + [anon_sym_volatile] = ACTIONS(7440), + [anon_sym_restrict] = ACTIONS(7440), + [anon_sym___restrict__] = ACTIONS(7440), + [anon_sym__Atomic] = ACTIONS(7440), + [anon_sym__Noreturn] = ACTIONS(7440), + [anon_sym__Nonnull] = ACTIONS(7440), + [anon_sym_nullable] = ACTIONS(7440), + [anon_sym__Complex] = ACTIONS(7440), + [anon_sym__Nullable] = ACTIONS(7440), + [anon_sym__Nullable_result] = ACTIONS(7440), + [anon_sym__Null_unspecified] = ACTIONS(7440), + [anon_sym___autoreleasing] = ACTIONS(7440), + [anon_sym___block] = ACTIONS(7440), + [anon_sym___bridge] = ACTIONS(7440), + [anon_sym___bridge_retained] = ACTIONS(7440), + [anon_sym___bridge_transfer] = ACTIONS(7440), + [anon_sym___complex] = ACTIONS(7440), + [anon_sym___const] = ACTIONS(7440), + [anon_sym___imag] = ACTIONS(7440), + [anon_sym___kindof] = ACTIONS(7440), + [anon_sym___nonnull] = ACTIONS(7440), + [anon_sym___nullable] = ACTIONS(7440), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7440), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7440), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7440), + [anon_sym___real] = ACTIONS(7440), + [anon_sym___strong] = ACTIONS(7440), + [anon_sym___unsafe_unretained] = ACTIONS(7440), + [anon_sym___unused] = ACTIONS(7440), + [anon_sym___weak] = ACTIONS(7440), + [anon_sym_alignas] = ACTIONS(7440), + [anon_sym__Alignas] = ACTIONS(7440), + [sym_primitive_type] = ACTIONS(7440), + [anon_sym_enum] = ACTIONS(7440), + [anon_sym_COLON] = ACTIONS(7442), + [anon_sym_struct] = ACTIONS(7440), + [anon_sym_union] = ACTIONS(7440), + [anon_sym_in] = ACTIONS(7440), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7440), + [anon_sym___typeof] = ACTIONS(7440), + [anon_sym_typeof] = ACTIONS(7440), + [anon_sym_BOOL] = ACTIONS(7440), + [anon_sym_IMP] = ACTIONS(7440), + [anon_sym_SEL] = ACTIONS(7440), + [anon_sym_Class] = ACTIONS(7440), + [anon_sym_id] = ACTIONS(7440), + [anon_sym_out] = ACTIONS(7440), + [anon_sym_inout] = ACTIONS(7440), + [anon_sym_bycopy] = ACTIONS(7440), + [anon_sym_byref] = ACTIONS(7440), + [anon_sym_oneway] = ACTIONS(7440), + }, + [3994] = { + [sym__type_definition_type] = STATE(4805), + [sym_attribute_specifier] = STATE(4546), + [sym_ms_declspec_modifier] = STATE(4036), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4199), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [3995] = { + [sym_identifier] = ACTIONS(7456), + [anon_sym_COMMA] = ACTIONS(7458), + [anon_sym_RPAREN] = ACTIONS(7458), + [anon_sym_LPAREN2] = ACTIONS(7458), + [anon_sym_STAR] = ACTIONS(7458), + [anon_sym_CARET] = ACTIONS(7458), + [anon_sym_GT] = ACTIONS(7458), + [anon_sym_LT] = ACTIONS(7458), + [anon_sym___extension__] = ACTIONS(7456), + [anon_sym___attribute__] = ACTIONS(7456), + [anon_sym___attribute] = ACTIONS(7456), + [anon_sym_noreturn] = ACTIONS(7456), + [anon_sym_LBRACK] = ACTIONS(7458), + [anon_sym___based] = ACTIONS(7456), + [anon_sym_LBRACE] = ACTIONS(7458), + [anon_sym_signed] = ACTIONS(7456), + [anon_sym_unsigned] = ACTIONS(7456), + [anon_sym_long] = ACTIONS(7456), + [anon_sym_short] = ACTIONS(7456), + [anon_sym_ATautoreleasepool] = ACTIONS(7458), + [anon_sym_const] = ACTIONS(7456), + [anon_sym_constexpr] = ACTIONS(7456), + [anon_sym_volatile] = ACTIONS(7456), + [anon_sym_restrict] = ACTIONS(7456), + [anon_sym___restrict__] = ACTIONS(7456), + [anon_sym__Atomic] = ACTIONS(7456), + [anon_sym__Noreturn] = ACTIONS(7456), + [anon_sym__Nonnull] = ACTIONS(7456), + [anon_sym_nullable] = ACTIONS(7456), + [anon_sym__Complex] = ACTIONS(7456), + [anon_sym__Nullable] = ACTIONS(7456), + [anon_sym__Nullable_result] = ACTIONS(7456), + [anon_sym__Null_unspecified] = ACTIONS(7456), + [anon_sym___autoreleasing] = ACTIONS(7456), + [anon_sym___block] = ACTIONS(7456), + [anon_sym___bridge] = ACTIONS(7456), + [anon_sym___bridge_retained] = ACTIONS(7456), + [anon_sym___bridge_transfer] = ACTIONS(7456), + [anon_sym___complex] = ACTIONS(7456), + [anon_sym___const] = ACTIONS(7456), + [anon_sym___imag] = ACTIONS(7456), + [anon_sym___kindof] = ACTIONS(7456), + [anon_sym___nonnull] = ACTIONS(7456), + [anon_sym___nullable] = ACTIONS(7456), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7456), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7456), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7456), + [anon_sym___real] = ACTIONS(7456), + [anon_sym___strong] = ACTIONS(7456), + [anon_sym___unsafe_unretained] = ACTIONS(7456), + [anon_sym___unused] = ACTIONS(7456), + [anon_sym___weak] = ACTIONS(7456), + [anon_sym_alignas] = ACTIONS(7456), + [anon_sym__Alignas] = ACTIONS(7456), + [sym_primitive_type] = ACTIONS(7456), + [anon_sym_enum] = ACTIONS(7456), + [anon_sym_COLON] = ACTIONS(7458), + [anon_sym_struct] = ACTIONS(7456), + [anon_sym_union] = ACTIONS(7456), + [anon_sym_in] = ACTIONS(7456), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7456), + [anon_sym___typeof] = ACTIONS(7456), + [anon_sym_typeof] = ACTIONS(7456), + [anon_sym_BOOL] = ACTIONS(7456), + [anon_sym_IMP] = ACTIONS(7456), + [anon_sym_SEL] = ACTIONS(7456), + [anon_sym_Class] = ACTIONS(7456), + [anon_sym_id] = ACTIONS(7456), + [anon_sym_out] = ACTIONS(7456), + [anon_sym_inout] = ACTIONS(7456), + [anon_sym_bycopy] = ACTIONS(7456), + [anon_sym_byref] = ACTIONS(7456), + [anon_sym_oneway] = ACTIONS(7456), + }, + [3996] = { + [sym_identifier] = ACTIONS(7500), + [anon_sym_COMMA] = ACTIONS(7502), + [anon_sym_RPAREN] = ACTIONS(7502), + [anon_sym_LPAREN2] = ACTIONS(7502), + [anon_sym_STAR] = ACTIONS(7502), + [anon_sym_CARET] = ACTIONS(7502), + [anon_sym_GT] = ACTIONS(7502), + [anon_sym_LT] = ACTIONS(7502), + [anon_sym___extension__] = ACTIONS(7500), + [anon_sym___attribute__] = ACTIONS(7500), + [anon_sym___attribute] = ACTIONS(7500), + [anon_sym_noreturn] = ACTIONS(7500), + [anon_sym_LBRACK] = ACTIONS(7502), + [anon_sym___based] = ACTIONS(7500), + [anon_sym_LBRACE] = ACTIONS(7502), + [anon_sym_signed] = ACTIONS(7500), + [anon_sym_unsigned] = ACTIONS(7500), + [anon_sym_long] = ACTIONS(7500), + [anon_sym_short] = ACTIONS(7500), + [anon_sym_ATautoreleasepool] = ACTIONS(7502), + [anon_sym_const] = ACTIONS(7500), + [anon_sym_constexpr] = ACTIONS(7500), + [anon_sym_volatile] = ACTIONS(7500), + [anon_sym_restrict] = ACTIONS(7500), + [anon_sym___restrict__] = ACTIONS(7500), + [anon_sym__Atomic] = ACTIONS(7500), + [anon_sym__Noreturn] = ACTIONS(7500), + [anon_sym__Nonnull] = ACTIONS(7500), + [anon_sym_nullable] = ACTIONS(7500), + [anon_sym__Complex] = ACTIONS(7500), + [anon_sym__Nullable] = ACTIONS(7500), + [anon_sym__Nullable_result] = ACTIONS(7500), + [anon_sym__Null_unspecified] = ACTIONS(7500), + [anon_sym___autoreleasing] = ACTIONS(7500), + [anon_sym___block] = ACTIONS(7500), + [anon_sym___bridge] = ACTIONS(7500), + [anon_sym___bridge_retained] = ACTIONS(7500), + [anon_sym___bridge_transfer] = ACTIONS(7500), + [anon_sym___complex] = ACTIONS(7500), + [anon_sym___const] = ACTIONS(7500), + [anon_sym___imag] = ACTIONS(7500), + [anon_sym___kindof] = ACTIONS(7500), + [anon_sym___nonnull] = ACTIONS(7500), + [anon_sym___nullable] = ACTIONS(7500), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7500), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7500), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7500), + [anon_sym___real] = ACTIONS(7500), + [anon_sym___strong] = ACTIONS(7500), + [anon_sym___unsafe_unretained] = ACTIONS(7500), + [anon_sym___unused] = ACTIONS(7500), + [anon_sym___weak] = ACTIONS(7500), + [anon_sym_alignas] = ACTIONS(7500), + [anon_sym__Alignas] = ACTIONS(7500), + [sym_primitive_type] = ACTIONS(7500), + [anon_sym_enum] = ACTIONS(7500), + [anon_sym_COLON] = ACTIONS(7502), + [anon_sym_struct] = ACTIONS(7500), + [anon_sym_union] = ACTIONS(7500), + [anon_sym_in] = ACTIONS(7500), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7500), + [anon_sym___typeof] = ACTIONS(7500), + [anon_sym_typeof] = ACTIONS(7500), + [anon_sym_BOOL] = ACTIONS(7500), + [anon_sym_IMP] = ACTIONS(7500), + [anon_sym_SEL] = ACTIONS(7500), + [anon_sym_Class] = ACTIONS(7500), + [anon_sym_id] = ACTIONS(7500), + [anon_sym_out] = ACTIONS(7500), + [anon_sym_inout] = ACTIONS(7500), + [anon_sym_bycopy] = ACTIONS(7500), + [anon_sym_byref] = ACTIONS(7500), + [anon_sym_oneway] = ACTIONS(7500), + }, + [3997] = { + [sym_attribute_specifier] = STATE(3881), + [sym_identifier] = ACTIONS(7982), + [anon_sym_COMMA] = ACTIONS(7984), + [anon_sym_RPAREN] = ACTIONS(7984), + [anon_sym_LPAREN2] = ACTIONS(7984), + [anon_sym_STAR] = ACTIONS(7984), + [anon_sym_CARET] = ACTIONS(7984), + [anon_sym_GT] = ACTIONS(7984), + [anon_sym_LT] = ACTIONS(7984), + [anon_sym___extension__] = ACTIONS(7982), + [anon_sym___attribute__] = ACTIONS(9040), + [anon_sym___attribute] = ACTIONS(9040), + [anon_sym_noreturn] = ACTIONS(7982), + [anon_sym_LBRACK] = ACTIONS(7984), + [anon_sym___based] = ACTIONS(7982), + [anon_sym_LBRACE] = ACTIONS(7984), + [anon_sym_signed] = ACTIONS(7982), + [anon_sym_unsigned] = ACTIONS(7982), + [anon_sym_long] = ACTIONS(7982), + [anon_sym_short] = ACTIONS(7982), + [anon_sym_ATautoreleasepool] = ACTIONS(7984), + [anon_sym_const] = ACTIONS(7982), + [anon_sym_constexpr] = ACTIONS(7982), + [anon_sym_volatile] = ACTIONS(7982), + [anon_sym_restrict] = ACTIONS(7982), + [anon_sym___restrict__] = ACTIONS(7982), + [anon_sym__Atomic] = ACTIONS(7982), + [anon_sym__Noreturn] = ACTIONS(7982), + [anon_sym__Nonnull] = ACTIONS(7982), + [anon_sym_nullable] = ACTIONS(7982), + [anon_sym__Complex] = ACTIONS(7982), + [anon_sym__Nullable] = ACTIONS(7982), + [anon_sym__Nullable_result] = ACTIONS(7982), + [anon_sym__Null_unspecified] = ACTIONS(7982), + [anon_sym___autoreleasing] = ACTIONS(7982), + [anon_sym___block] = ACTIONS(7982), + [anon_sym___bridge] = ACTIONS(7982), + [anon_sym___bridge_retained] = ACTIONS(7982), + [anon_sym___bridge_transfer] = ACTIONS(7982), + [anon_sym___complex] = ACTIONS(7982), + [anon_sym___const] = ACTIONS(7982), + [anon_sym___imag] = ACTIONS(7982), + [anon_sym___kindof] = ACTIONS(7982), + [anon_sym___nonnull] = ACTIONS(7982), + [anon_sym___nullable] = ACTIONS(7982), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7982), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7982), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7982), + [anon_sym___real] = ACTIONS(7982), + [anon_sym___strong] = ACTIONS(7982), + [anon_sym___unsafe_unretained] = ACTIONS(7982), + [anon_sym___unused] = ACTIONS(7982), + [anon_sym___weak] = ACTIONS(7982), + [anon_sym_alignas] = ACTIONS(7982), + [anon_sym__Alignas] = ACTIONS(7982), + [sym_primitive_type] = ACTIONS(7982), + [anon_sym_enum] = ACTIONS(7982), + [anon_sym_struct] = ACTIONS(7982), + [anon_sym_union] = ACTIONS(7982), + [anon_sym_in] = ACTIONS(7982), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7982), + [anon_sym___typeof] = ACTIONS(7982), + [anon_sym_typeof] = ACTIONS(7982), + [anon_sym_BOOL] = ACTIONS(7982), + [anon_sym_IMP] = ACTIONS(7982), + [anon_sym_SEL] = ACTIONS(7982), + [anon_sym_Class] = ACTIONS(7982), + [anon_sym_id] = ACTIONS(7982), + [anon_sym_out] = ACTIONS(7982), + [anon_sym_inout] = ACTIONS(7982), + [anon_sym_bycopy] = ACTIONS(7982), + [anon_sym_byref] = ACTIONS(7982), + [anon_sym_oneway] = ACTIONS(7982), + }, + [3998] = { + [sym_identifier] = ACTIONS(7480), + [anon_sym_COMMA] = ACTIONS(7482), + [anon_sym_RPAREN] = ACTIONS(7482), + [anon_sym_LPAREN2] = ACTIONS(7482), + [anon_sym_STAR] = ACTIONS(7482), + [anon_sym_CARET] = ACTIONS(7482), + [anon_sym_GT] = ACTIONS(7482), + [anon_sym_LT] = ACTIONS(7482), + [anon_sym___extension__] = ACTIONS(7480), + [anon_sym___attribute__] = ACTIONS(7480), + [anon_sym___attribute] = ACTIONS(7480), + [anon_sym_noreturn] = ACTIONS(7480), + [anon_sym_LBRACK] = ACTIONS(7482), + [anon_sym___based] = ACTIONS(7480), + [anon_sym_LBRACE] = ACTIONS(7482), + [anon_sym_signed] = ACTIONS(7480), + [anon_sym_unsigned] = ACTIONS(7480), + [anon_sym_long] = ACTIONS(7480), + [anon_sym_short] = ACTIONS(7480), + [anon_sym_ATautoreleasepool] = ACTIONS(7482), + [anon_sym_const] = ACTIONS(7480), + [anon_sym_constexpr] = ACTIONS(7480), + [anon_sym_volatile] = ACTIONS(7480), + [anon_sym_restrict] = ACTIONS(7480), + [anon_sym___restrict__] = ACTIONS(7480), + [anon_sym__Atomic] = ACTIONS(7480), + [anon_sym__Noreturn] = ACTIONS(7480), + [anon_sym__Nonnull] = ACTIONS(7480), + [anon_sym_nullable] = ACTIONS(7480), + [anon_sym__Complex] = ACTIONS(7480), + [anon_sym__Nullable] = ACTIONS(7480), + [anon_sym__Nullable_result] = ACTIONS(7480), + [anon_sym__Null_unspecified] = ACTIONS(7480), + [anon_sym___autoreleasing] = ACTIONS(7480), + [anon_sym___block] = ACTIONS(7480), + [anon_sym___bridge] = ACTIONS(7480), + [anon_sym___bridge_retained] = ACTIONS(7480), + [anon_sym___bridge_transfer] = ACTIONS(7480), + [anon_sym___complex] = ACTIONS(7480), + [anon_sym___const] = ACTIONS(7480), + [anon_sym___imag] = ACTIONS(7480), + [anon_sym___kindof] = ACTIONS(7480), + [anon_sym___nonnull] = ACTIONS(7480), + [anon_sym___nullable] = ACTIONS(7480), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7480), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7480), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7480), + [anon_sym___real] = ACTIONS(7480), + [anon_sym___strong] = ACTIONS(7480), + [anon_sym___unsafe_unretained] = ACTIONS(7480), + [anon_sym___unused] = ACTIONS(7480), + [anon_sym___weak] = ACTIONS(7480), + [anon_sym_alignas] = ACTIONS(7480), + [anon_sym__Alignas] = ACTIONS(7480), + [sym_primitive_type] = ACTIONS(7480), + [anon_sym_enum] = ACTIONS(7480), + [anon_sym_COLON] = ACTIONS(7482), + [anon_sym_struct] = ACTIONS(7480), + [anon_sym_union] = ACTIONS(7480), + [anon_sym_in] = ACTIONS(7480), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7480), + [anon_sym___typeof] = ACTIONS(7480), + [anon_sym_typeof] = ACTIONS(7480), + [anon_sym_BOOL] = ACTIONS(7480), + [anon_sym_IMP] = ACTIONS(7480), + [anon_sym_SEL] = ACTIONS(7480), + [anon_sym_Class] = ACTIONS(7480), + [anon_sym_id] = ACTIONS(7480), + [anon_sym_out] = ACTIONS(7480), + [anon_sym_inout] = ACTIONS(7480), + [anon_sym_bycopy] = ACTIONS(7480), + [anon_sym_byref] = ACTIONS(7480), + [anon_sym_oneway] = ACTIONS(7480), + }, + [3999] = { + [sym_identifier] = ACTIONS(7484), + [anon_sym_COMMA] = ACTIONS(7486), + [anon_sym_RPAREN] = ACTIONS(7486), + [anon_sym_LPAREN2] = ACTIONS(7486), + [anon_sym_STAR] = ACTIONS(7486), + [anon_sym_CARET] = ACTIONS(7486), + [anon_sym_GT] = ACTIONS(7486), + [anon_sym_LT] = ACTIONS(7486), + [anon_sym___extension__] = ACTIONS(7484), + [anon_sym___attribute__] = ACTIONS(7484), + [anon_sym___attribute] = ACTIONS(7484), + [anon_sym_noreturn] = ACTIONS(7484), + [anon_sym_LBRACK] = ACTIONS(7486), + [anon_sym___based] = ACTIONS(7484), + [anon_sym_LBRACE] = ACTIONS(7486), + [anon_sym_signed] = ACTIONS(7484), + [anon_sym_unsigned] = ACTIONS(7484), + [anon_sym_long] = ACTIONS(7484), + [anon_sym_short] = ACTIONS(7484), + [anon_sym_ATautoreleasepool] = ACTIONS(7486), + [anon_sym_const] = ACTIONS(7484), + [anon_sym_constexpr] = ACTIONS(7484), + [anon_sym_volatile] = ACTIONS(7484), + [anon_sym_restrict] = ACTIONS(7484), + [anon_sym___restrict__] = ACTIONS(7484), + [anon_sym__Atomic] = ACTIONS(7484), + [anon_sym__Noreturn] = ACTIONS(7484), + [anon_sym__Nonnull] = ACTIONS(7484), + [anon_sym_nullable] = ACTIONS(7484), + [anon_sym__Complex] = ACTIONS(7484), + [anon_sym__Nullable] = ACTIONS(7484), + [anon_sym__Nullable_result] = ACTIONS(7484), + [anon_sym__Null_unspecified] = ACTIONS(7484), + [anon_sym___autoreleasing] = ACTIONS(7484), + [anon_sym___block] = ACTIONS(7484), + [anon_sym___bridge] = ACTIONS(7484), + [anon_sym___bridge_retained] = ACTIONS(7484), + [anon_sym___bridge_transfer] = ACTIONS(7484), + [anon_sym___complex] = ACTIONS(7484), + [anon_sym___const] = ACTIONS(7484), + [anon_sym___imag] = ACTIONS(7484), + [anon_sym___kindof] = ACTIONS(7484), + [anon_sym___nonnull] = ACTIONS(7484), + [anon_sym___nullable] = ACTIONS(7484), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7484), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7484), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7484), + [anon_sym___real] = ACTIONS(7484), + [anon_sym___strong] = ACTIONS(7484), + [anon_sym___unsafe_unretained] = ACTIONS(7484), + [anon_sym___unused] = ACTIONS(7484), + [anon_sym___weak] = ACTIONS(7484), + [anon_sym_alignas] = ACTIONS(7484), + [anon_sym__Alignas] = ACTIONS(7484), + [sym_primitive_type] = ACTIONS(7484), + [anon_sym_enum] = ACTIONS(7484), + [anon_sym_COLON] = ACTIONS(7486), + [anon_sym_struct] = ACTIONS(7484), + [anon_sym_union] = ACTIONS(7484), + [anon_sym_in] = ACTIONS(7484), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7484), + [anon_sym___typeof] = ACTIONS(7484), + [anon_sym_typeof] = ACTIONS(7484), + [anon_sym_BOOL] = ACTIONS(7484), + [anon_sym_IMP] = ACTIONS(7484), + [anon_sym_SEL] = ACTIONS(7484), + [anon_sym_Class] = ACTIONS(7484), + [anon_sym_id] = ACTIONS(7484), + [anon_sym_out] = ACTIONS(7484), + [anon_sym_inout] = ACTIONS(7484), + [anon_sym_bycopy] = ACTIONS(7484), + [anon_sym_byref] = ACTIONS(7484), + [anon_sym_oneway] = ACTIONS(7484), + }, + [4000] = { + [sym_identifier] = ACTIONS(7488), + [anon_sym_COMMA] = ACTIONS(7490), + [anon_sym_RPAREN] = ACTIONS(7490), + [anon_sym_LPAREN2] = ACTIONS(7490), + [anon_sym_STAR] = ACTIONS(7490), + [anon_sym_CARET] = ACTIONS(7490), + [anon_sym_GT] = ACTIONS(7490), + [anon_sym_LT] = ACTIONS(7490), + [anon_sym___extension__] = ACTIONS(7488), + [anon_sym___attribute__] = ACTIONS(7488), + [anon_sym___attribute] = ACTIONS(7488), + [anon_sym_noreturn] = ACTIONS(7488), + [anon_sym_LBRACK] = ACTIONS(7490), + [anon_sym___based] = ACTIONS(7488), + [anon_sym_LBRACE] = ACTIONS(7490), + [anon_sym_signed] = ACTIONS(7488), + [anon_sym_unsigned] = ACTIONS(7488), + [anon_sym_long] = ACTIONS(7488), + [anon_sym_short] = ACTIONS(7488), + [anon_sym_ATautoreleasepool] = ACTIONS(7490), + [anon_sym_const] = ACTIONS(7488), + [anon_sym_constexpr] = ACTIONS(7488), + [anon_sym_volatile] = ACTIONS(7488), + [anon_sym_restrict] = ACTIONS(7488), + [anon_sym___restrict__] = ACTIONS(7488), + [anon_sym__Atomic] = ACTIONS(7488), + [anon_sym__Noreturn] = ACTIONS(7488), + [anon_sym__Nonnull] = ACTIONS(7488), + [anon_sym_nullable] = ACTIONS(7488), + [anon_sym__Complex] = ACTIONS(7488), + [anon_sym__Nullable] = ACTIONS(7488), + [anon_sym__Nullable_result] = ACTIONS(7488), + [anon_sym__Null_unspecified] = ACTIONS(7488), + [anon_sym___autoreleasing] = ACTIONS(7488), + [anon_sym___block] = ACTIONS(7488), + [anon_sym___bridge] = ACTIONS(7488), + [anon_sym___bridge_retained] = ACTIONS(7488), + [anon_sym___bridge_transfer] = ACTIONS(7488), + [anon_sym___complex] = ACTIONS(7488), + [anon_sym___const] = ACTIONS(7488), + [anon_sym___imag] = ACTIONS(7488), + [anon_sym___kindof] = ACTIONS(7488), + [anon_sym___nonnull] = ACTIONS(7488), + [anon_sym___nullable] = ACTIONS(7488), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7488), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7488), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7488), + [anon_sym___real] = ACTIONS(7488), + [anon_sym___strong] = ACTIONS(7488), + [anon_sym___unsafe_unretained] = ACTIONS(7488), + [anon_sym___unused] = ACTIONS(7488), + [anon_sym___weak] = ACTIONS(7488), + [anon_sym_alignas] = ACTIONS(7488), + [anon_sym__Alignas] = ACTIONS(7488), + [sym_primitive_type] = ACTIONS(7488), + [anon_sym_enum] = ACTIONS(7488), + [anon_sym_COLON] = ACTIONS(7490), + [anon_sym_struct] = ACTIONS(7488), + [anon_sym_union] = ACTIONS(7488), + [anon_sym_in] = ACTIONS(7488), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7488), + [anon_sym___typeof] = ACTIONS(7488), + [anon_sym_typeof] = ACTIONS(7488), + [anon_sym_BOOL] = ACTIONS(7488), + [anon_sym_IMP] = ACTIONS(7488), + [anon_sym_SEL] = ACTIONS(7488), + [anon_sym_Class] = ACTIONS(7488), + [anon_sym_id] = ACTIONS(7488), + [anon_sym_out] = ACTIONS(7488), + [anon_sym_inout] = ACTIONS(7488), + [anon_sym_bycopy] = ACTIONS(7488), + [anon_sym_byref] = ACTIONS(7488), + [anon_sym_oneway] = ACTIONS(7488), + }, + [4001] = { + [sym_identifier] = ACTIONS(7492), + [anon_sym_COMMA] = ACTIONS(7494), + [anon_sym_RPAREN] = ACTIONS(7494), + [anon_sym_LPAREN2] = ACTIONS(7494), + [anon_sym_STAR] = ACTIONS(7494), + [anon_sym_CARET] = ACTIONS(7494), + [anon_sym_GT] = ACTIONS(7494), + [anon_sym_LT] = ACTIONS(7494), + [anon_sym___extension__] = ACTIONS(7492), + [anon_sym___attribute__] = ACTIONS(7492), + [anon_sym___attribute] = ACTIONS(7492), + [anon_sym_noreturn] = ACTIONS(7492), + [anon_sym_LBRACK] = ACTIONS(7494), + [anon_sym___based] = ACTIONS(7492), + [anon_sym_LBRACE] = ACTIONS(7494), + [anon_sym_signed] = ACTIONS(7492), + [anon_sym_unsigned] = ACTIONS(7492), + [anon_sym_long] = ACTIONS(7492), + [anon_sym_short] = ACTIONS(7492), + [anon_sym_ATautoreleasepool] = ACTIONS(7494), + [anon_sym_const] = ACTIONS(7492), + [anon_sym_constexpr] = ACTIONS(7492), + [anon_sym_volatile] = ACTIONS(7492), + [anon_sym_restrict] = ACTIONS(7492), + [anon_sym___restrict__] = ACTIONS(7492), + [anon_sym__Atomic] = ACTIONS(7492), + [anon_sym__Noreturn] = ACTIONS(7492), + [anon_sym__Nonnull] = ACTIONS(7492), + [anon_sym_nullable] = ACTIONS(7492), + [anon_sym__Complex] = ACTIONS(7492), + [anon_sym__Nullable] = ACTIONS(7492), + [anon_sym__Nullable_result] = ACTIONS(7492), + [anon_sym__Null_unspecified] = ACTIONS(7492), + [anon_sym___autoreleasing] = ACTIONS(7492), + [anon_sym___block] = ACTIONS(7492), + [anon_sym___bridge] = ACTIONS(7492), + [anon_sym___bridge_retained] = ACTIONS(7492), + [anon_sym___bridge_transfer] = ACTIONS(7492), + [anon_sym___complex] = ACTIONS(7492), + [anon_sym___const] = ACTIONS(7492), + [anon_sym___imag] = ACTIONS(7492), + [anon_sym___kindof] = ACTIONS(7492), + [anon_sym___nonnull] = ACTIONS(7492), + [anon_sym___nullable] = ACTIONS(7492), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7492), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7492), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7492), + [anon_sym___real] = ACTIONS(7492), + [anon_sym___strong] = ACTIONS(7492), + [anon_sym___unsafe_unretained] = ACTIONS(7492), + [anon_sym___unused] = ACTIONS(7492), + [anon_sym___weak] = ACTIONS(7492), + [anon_sym_alignas] = ACTIONS(7492), + [anon_sym__Alignas] = ACTIONS(7492), + [sym_primitive_type] = ACTIONS(7492), + [anon_sym_enum] = ACTIONS(7492), + [anon_sym_COLON] = ACTIONS(7494), + [anon_sym_struct] = ACTIONS(7492), + [anon_sym_union] = ACTIONS(7492), + [anon_sym_in] = ACTIONS(7492), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7492), + [anon_sym___typeof] = ACTIONS(7492), + [anon_sym_typeof] = ACTIONS(7492), + [anon_sym_BOOL] = ACTIONS(7492), + [anon_sym_IMP] = ACTIONS(7492), + [anon_sym_SEL] = ACTIONS(7492), + [anon_sym_Class] = ACTIONS(7492), + [anon_sym_id] = ACTIONS(7492), + [anon_sym_out] = ACTIONS(7492), + [anon_sym_inout] = ACTIONS(7492), + [anon_sym_bycopy] = ACTIONS(7492), + [anon_sym_byref] = ACTIONS(7492), + [anon_sym_oneway] = ACTIONS(7492), + }, + [4002] = { + [sym_identifier] = ACTIONS(7508), + [anon_sym_COMMA] = ACTIONS(7510), + [anon_sym_RPAREN] = ACTIONS(7510), + [anon_sym_LPAREN2] = ACTIONS(7510), + [anon_sym_STAR] = ACTIONS(7510), + [anon_sym_CARET] = ACTIONS(7510), + [anon_sym_GT] = ACTIONS(7510), + [anon_sym_LT] = ACTIONS(7510), + [anon_sym___extension__] = ACTIONS(7508), + [anon_sym___attribute__] = ACTIONS(7508), + [anon_sym___attribute] = ACTIONS(7508), + [anon_sym_noreturn] = ACTIONS(7508), + [anon_sym_LBRACK] = ACTIONS(7510), + [anon_sym___based] = ACTIONS(7508), + [anon_sym_LBRACE] = ACTIONS(7510), + [anon_sym_signed] = ACTIONS(7508), + [anon_sym_unsigned] = ACTIONS(7508), + [anon_sym_long] = ACTIONS(7508), + [anon_sym_short] = ACTIONS(7508), + [anon_sym_ATautoreleasepool] = ACTIONS(7510), + [anon_sym_const] = ACTIONS(7508), + [anon_sym_constexpr] = ACTIONS(7508), + [anon_sym_volatile] = ACTIONS(7508), + [anon_sym_restrict] = ACTIONS(7508), + [anon_sym___restrict__] = ACTIONS(7508), + [anon_sym__Atomic] = ACTIONS(7508), + [anon_sym__Noreturn] = ACTIONS(7508), + [anon_sym__Nonnull] = ACTIONS(7508), + [anon_sym_nullable] = ACTIONS(7508), + [anon_sym__Complex] = ACTIONS(7508), + [anon_sym__Nullable] = ACTIONS(7508), + [anon_sym__Nullable_result] = ACTIONS(7508), + [anon_sym__Null_unspecified] = ACTIONS(7508), + [anon_sym___autoreleasing] = ACTIONS(7508), + [anon_sym___block] = ACTIONS(7508), + [anon_sym___bridge] = ACTIONS(7508), + [anon_sym___bridge_retained] = ACTIONS(7508), + [anon_sym___bridge_transfer] = ACTIONS(7508), + [anon_sym___complex] = ACTIONS(7508), + [anon_sym___const] = ACTIONS(7508), + [anon_sym___imag] = ACTIONS(7508), + [anon_sym___kindof] = ACTIONS(7508), + [anon_sym___nonnull] = ACTIONS(7508), + [anon_sym___nullable] = ACTIONS(7508), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7508), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7508), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7508), + [anon_sym___real] = ACTIONS(7508), + [anon_sym___strong] = ACTIONS(7508), + [anon_sym___unsafe_unretained] = ACTIONS(7508), + [anon_sym___unused] = ACTIONS(7508), + [anon_sym___weak] = ACTIONS(7508), + [anon_sym_alignas] = ACTIONS(7508), + [anon_sym__Alignas] = ACTIONS(7508), + [sym_primitive_type] = ACTIONS(7508), + [anon_sym_enum] = ACTIONS(7508), + [anon_sym_COLON] = ACTIONS(7510), + [anon_sym_struct] = ACTIONS(7508), + [anon_sym_union] = ACTIONS(7508), + [anon_sym_in] = ACTIONS(7508), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7508), + [anon_sym___typeof] = ACTIONS(7508), + [anon_sym_typeof] = ACTIONS(7508), + [anon_sym_BOOL] = ACTIONS(7508), + [anon_sym_IMP] = ACTIONS(7508), + [anon_sym_SEL] = ACTIONS(7508), + [anon_sym_Class] = ACTIONS(7508), + [anon_sym_id] = ACTIONS(7508), + [anon_sym_out] = ACTIONS(7508), + [anon_sym_inout] = ACTIONS(7508), + [anon_sym_bycopy] = ACTIONS(7508), + [anon_sym_byref] = ACTIONS(7508), + [anon_sym_oneway] = ACTIONS(7508), + }, + [4003] = { + [sym_identifier] = ACTIONS(7468), + [anon_sym_COMMA] = ACTIONS(7470), + [anon_sym_RPAREN] = ACTIONS(7470), + [anon_sym_LPAREN2] = ACTIONS(7470), + [anon_sym_STAR] = ACTIONS(7470), + [anon_sym_CARET] = ACTIONS(7470), + [anon_sym_GT] = ACTIONS(7470), + [anon_sym_LT] = ACTIONS(7470), + [anon_sym___extension__] = ACTIONS(7468), + [anon_sym___attribute__] = ACTIONS(7468), + [anon_sym___attribute] = ACTIONS(7468), + [anon_sym_noreturn] = ACTIONS(7468), + [anon_sym_LBRACK] = ACTIONS(7470), + [anon_sym___based] = ACTIONS(7468), + [anon_sym_LBRACE] = ACTIONS(7470), + [anon_sym_signed] = ACTIONS(7468), + [anon_sym_unsigned] = ACTIONS(7468), + [anon_sym_long] = ACTIONS(7468), + [anon_sym_short] = ACTIONS(7468), + [anon_sym_ATautoreleasepool] = ACTIONS(7470), + [anon_sym_const] = ACTIONS(7468), + [anon_sym_constexpr] = ACTIONS(7468), + [anon_sym_volatile] = ACTIONS(7468), + [anon_sym_restrict] = ACTIONS(7468), + [anon_sym___restrict__] = ACTIONS(7468), + [anon_sym__Atomic] = ACTIONS(7468), + [anon_sym__Noreturn] = ACTIONS(7468), + [anon_sym__Nonnull] = ACTIONS(7468), + [anon_sym_nullable] = ACTIONS(7468), + [anon_sym__Complex] = ACTIONS(7468), + [anon_sym__Nullable] = ACTIONS(7468), + [anon_sym__Nullable_result] = ACTIONS(7468), + [anon_sym__Null_unspecified] = ACTIONS(7468), + [anon_sym___autoreleasing] = ACTIONS(7468), + [anon_sym___block] = ACTIONS(7468), + [anon_sym___bridge] = ACTIONS(7468), + [anon_sym___bridge_retained] = ACTIONS(7468), + [anon_sym___bridge_transfer] = ACTIONS(7468), + [anon_sym___complex] = ACTIONS(7468), + [anon_sym___const] = ACTIONS(7468), + [anon_sym___imag] = ACTIONS(7468), + [anon_sym___kindof] = ACTIONS(7468), + [anon_sym___nonnull] = ACTIONS(7468), + [anon_sym___nullable] = ACTIONS(7468), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7468), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7468), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7468), + [anon_sym___real] = ACTIONS(7468), + [anon_sym___strong] = ACTIONS(7468), + [anon_sym___unsafe_unretained] = ACTIONS(7468), + [anon_sym___unused] = ACTIONS(7468), + [anon_sym___weak] = ACTIONS(7468), + [anon_sym_alignas] = ACTIONS(7468), + [anon_sym__Alignas] = ACTIONS(7468), + [sym_primitive_type] = ACTIONS(7468), + [anon_sym_enum] = ACTIONS(7468), + [anon_sym_COLON] = ACTIONS(7470), + [anon_sym_struct] = ACTIONS(7468), + [anon_sym_union] = ACTIONS(7468), + [anon_sym_in] = ACTIONS(7468), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7468), + [anon_sym___typeof] = ACTIONS(7468), + [anon_sym_typeof] = ACTIONS(7468), + [anon_sym_BOOL] = ACTIONS(7468), + [anon_sym_IMP] = ACTIONS(7468), + [anon_sym_SEL] = ACTIONS(7468), + [anon_sym_Class] = ACTIONS(7468), + [anon_sym_id] = ACTIONS(7468), + [anon_sym_out] = ACTIONS(7468), + [anon_sym_inout] = ACTIONS(7468), + [anon_sym_bycopy] = ACTIONS(7468), + [anon_sym_byref] = ACTIONS(7468), + [anon_sym_oneway] = ACTIONS(7468), + }, + [4004] = { + [sym_attribute_specifier] = STATE(3993), + [sym_enumerator_list] = STATE(3900), + [sym_identifier] = ACTIONS(7764), + [anon_sym_LPAREN2] = ACTIONS(7766), + [anon_sym_STAR] = ACTIONS(7766), + [anon_sym_CARET] = ACTIONS(7766), + [anon_sym_LT] = ACTIONS(7766), + [anon_sym___extension__] = ACTIONS(7764), + [anon_sym___attribute__] = ACTIONS(8910), + [anon_sym___attribute] = ACTIONS(8910), + [anon_sym_noreturn] = ACTIONS(7764), + [anon_sym_LBRACK] = ACTIONS(7766), + [anon_sym___based] = ACTIONS(7764), + [anon_sym_LBRACE] = ACTIONS(9043), + [anon_sym_signed] = ACTIONS(7764), + [anon_sym_unsigned] = ACTIONS(7764), + [anon_sym_long] = ACTIONS(7764), + [anon_sym_short] = ACTIONS(7764), + [anon_sym_ATautoreleasepool] = ACTIONS(7766), + [anon_sym_const] = ACTIONS(7764), + [anon_sym_constexpr] = ACTIONS(7764), + [anon_sym_volatile] = ACTIONS(7764), + [anon_sym_restrict] = ACTIONS(7764), + [anon_sym___restrict__] = ACTIONS(7764), + [anon_sym__Atomic] = ACTIONS(7764), + [anon_sym__Noreturn] = ACTIONS(7764), + [anon_sym__Nonnull] = ACTIONS(7764), + [anon_sym_nullable] = ACTIONS(7764), + [anon_sym__Complex] = ACTIONS(7764), + [anon_sym__Nullable] = ACTIONS(7764), + [anon_sym__Nullable_result] = ACTIONS(7764), + [anon_sym__Null_unspecified] = ACTIONS(7764), + [anon_sym___autoreleasing] = ACTIONS(7764), + [anon_sym___block] = ACTIONS(7764), + [anon_sym___bridge] = ACTIONS(7764), + [anon_sym___bridge_retained] = ACTIONS(7764), + [anon_sym___bridge_transfer] = ACTIONS(7764), + [anon_sym___complex] = ACTIONS(7764), + [anon_sym___const] = ACTIONS(7764), + [anon_sym___imag] = ACTIONS(7764), + [anon_sym___kindof] = ACTIONS(7764), + [anon_sym___nonnull] = ACTIONS(7764), + [anon_sym___nullable] = ACTIONS(7764), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7764), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7764), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7764), + [anon_sym___real] = ACTIONS(7764), + [anon_sym___strong] = ACTIONS(7764), + [anon_sym___unsafe_unretained] = ACTIONS(7764), + [anon_sym___unused] = ACTIONS(7764), + [anon_sym___weak] = ACTIONS(7764), + [anon_sym_alignas] = ACTIONS(7764), + [anon_sym__Alignas] = ACTIONS(7764), + [sym_primitive_type] = ACTIONS(7764), + [anon_sym_enum] = ACTIONS(7764), + [anon_sym_COLON] = ACTIONS(9046), + [anon_sym_struct] = ACTIONS(7764), + [anon_sym_union] = ACTIONS(7764), + [anon_sym_in] = ACTIONS(7764), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7764), + [anon_sym___typeof] = ACTIONS(7764), + [anon_sym_typeof] = ACTIONS(7764), + [anon_sym_BOOL] = ACTIONS(7764), + [anon_sym_IMP] = ACTIONS(7764), + [anon_sym_SEL] = ACTIONS(7764), + [anon_sym_Class] = ACTIONS(7764), + [anon_sym_id] = ACTIONS(7764), + [anon_sym_out] = ACTIONS(7764), + [anon_sym_inout] = ACTIONS(7764), + [anon_sym_bycopy] = ACTIONS(7764), + [anon_sym_byref] = ACTIONS(7764), + [anon_sym_oneway] = ACTIONS(7764), + }, + [4005] = { + [sym_identifier] = ACTIONS(4176), + [anon_sym_COMMA] = ACTIONS(4178), + [anon_sym_RPAREN] = ACTIONS(4178), + [anon_sym_LPAREN2] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [anon_sym_CARET] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym___extension__] = ACTIONS(4176), + [anon_sym___attribute__] = ACTIONS(4176), + [anon_sym___attribute] = ACTIONS(4176), + [anon_sym_noreturn] = ACTIONS(4176), + [anon_sym_LBRACK] = ACTIONS(4178), + [anon_sym___based] = ACTIONS(4176), + [anon_sym_LBRACE] = ACTIONS(4178), + [anon_sym_signed] = ACTIONS(4176), + [anon_sym_unsigned] = ACTIONS(4176), + [anon_sym_long] = ACTIONS(4176), + [anon_sym_short] = ACTIONS(4176), + [anon_sym_ATautoreleasepool] = ACTIONS(4178), + [anon_sym_const] = ACTIONS(4176), + [anon_sym_constexpr] = ACTIONS(4176), + [anon_sym_volatile] = ACTIONS(4176), + [anon_sym_restrict] = ACTIONS(4176), + [anon_sym___restrict__] = ACTIONS(4176), + [anon_sym__Atomic] = ACTIONS(4176), + [anon_sym__Noreturn] = ACTIONS(4176), + [anon_sym__Nonnull] = ACTIONS(4176), + [anon_sym_nullable] = ACTIONS(4176), + [anon_sym__Complex] = ACTIONS(4176), + [anon_sym__Nullable] = ACTIONS(4176), + [anon_sym__Nullable_result] = ACTIONS(4176), + [anon_sym__Null_unspecified] = ACTIONS(4176), + [anon_sym___autoreleasing] = ACTIONS(4176), + [anon_sym___block] = ACTIONS(4176), + [anon_sym___bridge] = ACTIONS(4176), + [anon_sym___bridge_retained] = ACTIONS(4176), + [anon_sym___bridge_transfer] = ACTIONS(4176), + [anon_sym___complex] = ACTIONS(4176), + [anon_sym___const] = ACTIONS(4176), + [anon_sym___imag] = ACTIONS(4176), + [anon_sym___kindof] = ACTIONS(4176), + [anon_sym___nonnull] = ACTIONS(4176), + [anon_sym___nullable] = ACTIONS(4176), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4176), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4176), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4176), + [anon_sym___real] = ACTIONS(4176), + [anon_sym___strong] = ACTIONS(4176), + [anon_sym___unsafe_unretained] = ACTIONS(4176), + [anon_sym___unused] = ACTIONS(4176), + [anon_sym___weak] = ACTIONS(4176), + [anon_sym_alignas] = ACTIONS(4176), + [anon_sym__Alignas] = ACTIONS(4176), + [sym_primitive_type] = ACTIONS(4176), + [anon_sym_enum] = ACTIONS(4176), + [anon_sym_struct] = ACTIONS(4176), + [anon_sym_union] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4176), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4176), + [anon_sym___typeof] = ACTIONS(4176), + [anon_sym_typeof] = ACTIONS(4176), + [anon_sym_BOOL] = ACTIONS(4176), + [anon_sym_IMP] = ACTIONS(4176), + [anon_sym_SEL] = ACTIONS(4176), + [anon_sym_Class] = ACTIONS(4176), + [anon_sym_id] = ACTIONS(4176), + [anon_sym_out] = ACTIONS(4176), + [anon_sym_inout] = ACTIONS(4176), + [anon_sym_bycopy] = ACTIONS(4176), + [anon_sym_byref] = ACTIONS(4176), + [anon_sym_oneway] = ACTIONS(4176), + }, + [4006] = { + [sym_identifier] = ACTIONS(6857), + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_RPAREN] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(6859), + [anon_sym_STAR] = ACTIONS(6859), + [anon_sym_CARET] = ACTIONS(6859), + [anon_sym_GT] = ACTIONS(6859), + [anon_sym_LT] = ACTIONS(6859), + [anon_sym___extension__] = ACTIONS(6857), + [anon_sym___attribute__] = ACTIONS(6857), + [anon_sym___attribute] = ACTIONS(6857), + [anon_sym_noreturn] = ACTIONS(6857), + [anon_sym_LBRACK] = ACTIONS(6859), + [anon_sym___based] = ACTIONS(6857), + [anon_sym_LBRACE] = ACTIONS(6859), + [anon_sym_signed] = ACTIONS(6857), + [anon_sym_unsigned] = ACTIONS(6857), + [anon_sym_long] = ACTIONS(6857), + [anon_sym_short] = ACTIONS(6857), + [anon_sym_ATautoreleasepool] = ACTIONS(6859), + [anon_sym_const] = ACTIONS(6857), + [anon_sym_constexpr] = ACTIONS(6857), + [anon_sym_volatile] = ACTIONS(6857), + [anon_sym_restrict] = ACTIONS(6857), + [anon_sym___restrict__] = ACTIONS(6857), + [anon_sym__Atomic] = ACTIONS(6857), + [anon_sym__Noreturn] = ACTIONS(6857), + [anon_sym__Nonnull] = ACTIONS(6857), + [anon_sym_nullable] = ACTIONS(6857), + [anon_sym__Complex] = ACTIONS(6857), + [anon_sym__Nullable] = ACTIONS(6857), + [anon_sym__Nullable_result] = ACTIONS(6857), + [anon_sym__Null_unspecified] = ACTIONS(6857), + [anon_sym___autoreleasing] = ACTIONS(6857), + [anon_sym___block] = ACTIONS(6857), + [anon_sym___bridge] = ACTIONS(6857), + [anon_sym___bridge_retained] = ACTIONS(6857), + [anon_sym___bridge_transfer] = ACTIONS(6857), + [anon_sym___complex] = ACTIONS(6857), + [anon_sym___const] = ACTIONS(6857), + [anon_sym___imag] = ACTIONS(6857), + [anon_sym___kindof] = ACTIONS(6857), + [anon_sym___nonnull] = ACTIONS(6857), + [anon_sym___nullable] = ACTIONS(6857), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6857), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6857), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6857), + [anon_sym___real] = ACTIONS(6857), + [anon_sym___strong] = ACTIONS(6857), + [anon_sym___unsafe_unretained] = ACTIONS(6857), + [anon_sym___unused] = ACTIONS(6857), + [anon_sym___weak] = ACTIONS(6857), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [sym_primitive_type] = ACTIONS(6857), + [anon_sym_enum] = ACTIONS(6857), + [anon_sym_struct] = ACTIONS(6857), + [anon_sym_union] = ACTIONS(6857), + [anon_sym_in] = ACTIONS(6857), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6857), + [anon_sym___typeof] = ACTIONS(6857), + [anon_sym_typeof] = ACTIONS(6857), + [anon_sym_BOOL] = ACTIONS(6857), + [anon_sym_IMP] = ACTIONS(6857), + [anon_sym_SEL] = ACTIONS(6857), + [anon_sym_Class] = ACTIONS(6857), + [anon_sym_id] = ACTIONS(6857), + [anon_sym_out] = ACTIONS(6857), + [anon_sym_inout] = ACTIONS(6857), + [anon_sym_bycopy] = ACTIONS(6857), + [anon_sym_byref] = ACTIONS(6857), + [anon_sym_oneway] = ACTIONS(6857), + }, + [4007] = { + [sym_identifier] = ACTIONS(6853), + [anon_sym_COMMA] = ACTIONS(6855), + [anon_sym_RPAREN] = ACTIONS(6855), + [anon_sym_LPAREN2] = ACTIONS(6855), + [anon_sym_STAR] = ACTIONS(6855), + [anon_sym_CARET] = ACTIONS(6855), + [anon_sym_GT] = ACTIONS(6855), + [anon_sym_LT] = ACTIONS(6855), + [anon_sym___extension__] = ACTIONS(6853), + [anon_sym___attribute__] = ACTIONS(6853), + [anon_sym___attribute] = ACTIONS(6853), + [anon_sym_noreturn] = ACTIONS(6853), + [anon_sym_LBRACK] = ACTIONS(6855), + [anon_sym___based] = ACTIONS(6853), + [anon_sym_LBRACE] = ACTIONS(6855), + [anon_sym_signed] = ACTIONS(6853), + [anon_sym_unsigned] = ACTIONS(6853), + [anon_sym_long] = ACTIONS(6853), + [anon_sym_short] = ACTIONS(6853), + [anon_sym_ATautoreleasepool] = ACTIONS(6855), + [anon_sym_const] = ACTIONS(6853), + [anon_sym_constexpr] = ACTIONS(6853), + [anon_sym_volatile] = ACTIONS(6853), + [anon_sym_restrict] = ACTIONS(6853), + [anon_sym___restrict__] = ACTIONS(6853), + [anon_sym__Atomic] = ACTIONS(6853), + [anon_sym__Noreturn] = ACTIONS(6853), + [anon_sym__Nonnull] = ACTIONS(6853), + [anon_sym_nullable] = ACTIONS(6853), + [anon_sym__Complex] = ACTIONS(6853), + [anon_sym__Nullable] = ACTIONS(6853), + [anon_sym__Nullable_result] = ACTIONS(6853), + [anon_sym__Null_unspecified] = ACTIONS(6853), + [anon_sym___autoreleasing] = ACTIONS(6853), + [anon_sym___block] = ACTIONS(6853), + [anon_sym___bridge] = ACTIONS(6853), + [anon_sym___bridge_retained] = ACTIONS(6853), + [anon_sym___bridge_transfer] = ACTIONS(6853), + [anon_sym___complex] = ACTIONS(6853), + [anon_sym___const] = ACTIONS(6853), + [anon_sym___imag] = ACTIONS(6853), + [anon_sym___kindof] = ACTIONS(6853), + [anon_sym___nonnull] = ACTIONS(6853), + [anon_sym___nullable] = ACTIONS(6853), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6853), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6853), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6853), + [anon_sym___real] = ACTIONS(6853), + [anon_sym___strong] = ACTIONS(6853), + [anon_sym___unsafe_unretained] = ACTIONS(6853), + [anon_sym___unused] = ACTIONS(6853), + [anon_sym___weak] = ACTIONS(6853), + [anon_sym_alignas] = ACTIONS(6853), + [anon_sym__Alignas] = ACTIONS(6853), + [sym_primitive_type] = ACTIONS(6853), + [anon_sym_enum] = ACTIONS(6853), + [anon_sym_struct] = ACTIONS(6853), + [anon_sym_union] = ACTIONS(6853), + [anon_sym_in] = ACTIONS(6853), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6853), + [anon_sym___typeof] = ACTIONS(6853), + [anon_sym_typeof] = ACTIONS(6853), + [anon_sym_BOOL] = ACTIONS(6853), + [anon_sym_IMP] = ACTIONS(6853), + [anon_sym_SEL] = ACTIONS(6853), + [anon_sym_Class] = ACTIONS(6853), + [anon_sym_id] = ACTIONS(6853), + [anon_sym_out] = ACTIONS(6853), + [anon_sym_inout] = ACTIONS(6853), + [anon_sym_bycopy] = ACTIONS(6853), + [anon_sym_byref] = ACTIONS(6853), + [anon_sym_oneway] = ACTIONS(6853), + }, + [4008] = { + [sym_identifier] = ACTIONS(4066), + [anon_sym_COMMA] = ACTIONS(4068), + [anon_sym_RPAREN] = ACTIONS(4068), + [anon_sym_LPAREN2] = ACTIONS(4068), + [anon_sym_STAR] = ACTIONS(4068), + [anon_sym_CARET] = ACTIONS(4068), + [anon_sym_GT] = ACTIONS(4068), + [anon_sym_LT] = ACTIONS(4068), + [anon_sym___extension__] = ACTIONS(4066), + [anon_sym___attribute__] = ACTIONS(4066), + [anon_sym___attribute] = ACTIONS(4066), + [anon_sym_noreturn] = ACTIONS(4066), + [anon_sym_LBRACK] = ACTIONS(4068), + [anon_sym___based] = ACTIONS(4066), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_signed] = ACTIONS(4066), + [anon_sym_unsigned] = ACTIONS(4066), + [anon_sym_long] = ACTIONS(4066), + [anon_sym_short] = ACTIONS(4066), + [anon_sym_ATautoreleasepool] = ACTIONS(4068), + [anon_sym_const] = ACTIONS(4066), + [anon_sym_constexpr] = ACTIONS(4066), + [anon_sym_volatile] = ACTIONS(4066), + [anon_sym_restrict] = ACTIONS(4066), + [anon_sym___restrict__] = ACTIONS(4066), + [anon_sym__Atomic] = ACTIONS(4066), + [anon_sym__Noreturn] = ACTIONS(4066), + [anon_sym__Nonnull] = ACTIONS(4066), + [anon_sym_nullable] = ACTIONS(4066), + [anon_sym__Complex] = ACTIONS(4066), + [anon_sym__Nullable] = ACTIONS(4066), + [anon_sym__Nullable_result] = ACTIONS(4066), + [anon_sym__Null_unspecified] = ACTIONS(4066), + [anon_sym___autoreleasing] = ACTIONS(4066), + [anon_sym___block] = ACTIONS(4066), + [anon_sym___bridge] = ACTIONS(4066), + [anon_sym___bridge_retained] = ACTIONS(4066), + [anon_sym___bridge_transfer] = ACTIONS(4066), + [anon_sym___complex] = ACTIONS(4066), + [anon_sym___const] = ACTIONS(4066), + [anon_sym___imag] = ACTIONS(4066), + [anon_sym___kindof] = ACTIONS(4066), + [anon_sym___nonnull] = ACTIONS(4066), + [anon_sym___nullable] = ACTIONS(4066), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4066), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4066), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4066), + [anon_sym___real] = ACTIONS(4066), + [anon_sym___strong] = ACTIONS(4066), + [anon_sym___unsafe_unretained] = ACTIONS(4066), + [anon_sym___unused] = ACTIONS(4066), + [anon_sym___weak] = ACTIONS(4066), + [anon_sym_alignas] = ACTIONS(4066), + [anon_sym__Alignas] = ACTIONS(4066), + [sym_primitive_type] = ACTIONS(4066), + [anon_sym_enum] = ACTIONS(4066), + [anon_sym_struct] = ACTIONS(4066), + [anon_sym_union] = ACTIONS(4066), + [anon_sym_in] = ACTIONS(4066), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4066), + [anon_sym___typeof] = ACTIONS(4066), + [anon_sym_typeof] = ACTIONS(4066), + [anon_sym_BOOL] = ACTIONS(4066), + [anon_sym_IMP] = ACTIONS(4066), + [anon_sym_SEL] = ACTIONS(4066), + [anon_sym_Class] = ACTIONS(4066), + [anon_sym_id] = ACTIONS(4066), + [anon_sym_out] = ACTIONS(4066), + [anon_sym_inout] = ACTIONS(4066), + [anon_sym_bycopy] = ACTIONS(4066), + [anon_sym_byref] = ACTIONS(4066), + [anon_sym_oneway] = ACTIONS(4066), + }, + [4009] = { + [sym_identifier] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4248), + [anon_sym_RPAREN] = ACTIONS(4248), + [anon_sym_LPAREN2] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4248), + [anon_sym_CARET] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym___extension__] = ACTIONS(4246), + [anon_sym___attribute__] = ACTIONS(4246), + [anon_sym___attribute] = ACTIONS(4246), + [anon_sym_noreturn] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4248), + [anon_sym___based] = ACTIONS(4246), + [anon_sym_LBRACE] = ACTIONS(4248), + [anon_sym_signed] = ACTIONS(4246), + [anon_sym_unsigned] = ACTIONS(4246), + [anon_sym_long] = ACTIONS(4246), + [anon_sym_short] = ACTIONS(4246), + [anon_sym_ATautoreleasepool] = ACTIONS(4248), + [anon_sym_const] = ACTIONS(4246), + [anon_sym_constexpr] = ACTIONS(4246), + [anon_sym_volatile] = ACTIONS(4246), + [anon_sym_restrict] = ACTIONS(4246), + [anon_sym___restrict__] = ACTIONS(4246), + [anon_sym__Atomic] = ACTIONS(4246), + [anon_sym__Noreturn] = ACTIONS(4246), + [anon_sym__Nonnull] = ACTIONS(4246), + [anon_sym_nullable] = ACTIONS(4246), + [anon_sym__Complex] = ACTIONS(4246), + [anon_sym__Nullable] = ACTIONS(4246), + [anon_sym__Nullable_result] = ACTIONS(4246), + [anon_sym__Null_unspecified] = ACTIONS(4246), + [anon_sym___autoreleasing] = ACTIONS(4246), + [anon_sym___block] = ACTIONS(4246), + [anon_sym___bridge] = ACTIONS(4246), + [anon_sym___bridge_retained] = ACTIONS(4246), + [anon_sym___bridge_transfer] = ACTIONS(4246), + [anon_sym___complex] = ACTIONS(4246), + [anon_sym___const] = ACTIONS(4246), + [anon_sym___imag] = ACTIONS(4246), + [anon_sym___kindof] = ACTIONS(4246), + [anon_sym___nonnull] = ACTIONS(4246), + [anon_sym___nullable] = ACTIONS(4246), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4246), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4246), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4246), + [anon_sym___real] = ACTIONS(4246), + [anon_sym___strong] = ACTIONS(4246), + [anon_sym___unsafe_unretained] = ACTIONS(4246), + [anon_sym___unused] = ACTIONS(4246), + [anon_sym___weak] = ACTIONS(4246), + [anon_sym_alignas] = ACTIONS(4246), + [anon_sym__Alignas] = ACTIONS(4246), + [sym_primitive_type] = ACTIONS(4246), + [anon_sym_enum] = ACTIONS(4246), + [anon_sym_struct] = ACTIONS(4246), + [anon_sym_union] = ACTIONS(4246), + [anon_sym_in] = ACTIONS(4246), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4246), + [anon_sym___typeof] = ACTIONS(4246), + [anon_sym_typeof] = ACTIONS(4246), + [anon_sym_BOOL] = ACTIONS(4246), + [anon_sym_IMP] = ACTIONS(4246), + [anon_sym_SEL] = ACTIONS(4246), + [anon_sym_Class] = ACTIONS(4246), + [anon_sym_id] = ACTIONS(4246), + [anon_sym_out] = ACTIONS(4246), + [anon_sym_inout] = ACTIONS(4246), + [anon_sym_bycopy] = ACTIONS(4246), + [anon_sym_byref] = ACTIONS(4246), + [anon_sym_oneway] = ACTIONS(4246), + }, + [4010] = { + [sym_identifier] = ACTIONS(4070), + [anon_sym_COMMA] = ACTIONS(4072), + [anon_sym_RPAREN] = ACTIONS(4072), + [anon_sym_LPAREN2] = ACTIONS(4072), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_CARET] = ACTIONS(4072), + [anon_sym_GT] = ACTIONS(4072), + [anon_sym_LT] = ACTIONS(4072), + [anon_sym___extension__] = ACTIONS(4070), + [anon_sym___attribute__] = ACTIONS(4070), + [anon_sym___attribute] = ACTIONS(4070), + [anon_sym_noreturn] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym___based] = ACTIONS(4070), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_signed] = ACTIONS(4070), + [anon_sym_unsigned] = ACTIONS(4070), + [anon_sym_long] = ACTIONS(4070), + [anon_sym_short] = ACTIONS(4070), + [anon_sym_ATautoreleasepool] = ACTIONS(4072), + [anon_sym_const] = ACTIONS(4070), + [anon_sym_constexpr] = ACTIONS(4070), + [anon_sym_volatile] = ACTIONS(4070), + [anon_sym_restrict] = ACTIONS(4070), + [anon_sym___restrict__] = ACTIONS(4070), + [anon_sym__Atomic] = ACTIONS(4070), + [anon_sym__Noreturn] = ACTIONS(4070), + [anon_sym__Nonnull] = ACTIONS(4070), + [anon_sym_nullable] = ACTIONS(4070), + [anon_sym__Complex] = ACTIONS(4070), + [anon_sym__Nullable] = ACTIONS(4070), + [anon_sym__Nullable_result] = ACTIONS(4070), + [anon_sym__Null_unspecified] = ACTIONS(4070), + [anon_sym___autoreleasing] = ACTIONS(4070), + [anon_sym___block] = ACTIONS(4070), + [anon_sym___bridge] = ACTIONS(4070), + [anon_sym___bridge_retained] = ACTIONS(4070), + [anon_sym___bridge_transfer] = ACTIONS(4070), + [anon_sym___complex] = ACTIONS(4070), + [anon_sym___const] = ACTIONS(4070), + [anon_sym___imag] = ACTIONS(4070), + [anon_sym___kindof] = ACTIONS(4070), + [anon_sym___nonnull] = ACTIONS(4070), + [anon_sym___nullable] = ACTIONS(4070), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4070), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4070), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4070), + [anon_sym___real] = ACTIONS(4070), + [anon_sym___strong] = ACTIONS(4070), + [anon_sym___unsafe_unretained] = ACTIONS(4070), + [anon_sym___unused] = ACTIONS(4070), + [anon_sym___weak] = ACTIONS(4070), + [anon_sym_alignas] = ACTIONS(4070), + [anon_sym__Alignas] = ACTIONS(4070), + [sym_primitive_type] = ACTIONS(4070), + [anon_sym_enum] = ACTIONS(4070), + [anon_sym_struct] = ACTIONS(4070), + [anon_sym_union] = ACTIONS(4070), + [anon_sym_in] = ACTIONS(4070), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4070), + [anon_sym___typeof] = ACTIONS(4070), + [anon_sym_typeof] = ACTIONS(4070), + [anon_sym_BOOL] = ACTIONS(4070), + [anon_sym_IMP] = ACTIONS(4070), + [anon_sym_SEL] = ACTIONS(4070), + [anon_sym_Class] = ACTIONS(4070), + [anon_sym_id] = ACTIONS(4070), + [anon_sym_out] = ACTIONS(4070), + [anon_sym_inout] = ACTIONS(4070), + [anon_sym_bycopy] = ACTIONS(4070), + [anon_sym_byref] = ACTIONS(4070), + [anon_sym_oneway] = ACTIONS(4070), + }, + [4011] = { + [sym_identifier] = ACTIONS(5939), + [anon_sym_COMMA] = ACTIONS(5926), + [anon_sym_RPAREN] = ACTIONS(5926), + [anon_sym_LPAREN2] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(5926), + [anon_sym_CARET] = ACTIONS(5926), + [anon_sym_GT] = ACTIONS(5926), + [anon_sym_LT] = ACTIONS(5926), + [anon_sym___extension__] = ACTIONS(5939), + [anon_sym___attribute__] = ACTIONS(5939), + [anon_sym___attribute] = ACTIONS(5939), + [anon_sym_noreturn] = ACTIONS(5939), + [anon_sym_LBRACK] = ACTIONS(5926), + [anon_sym___based] = ACTIONS(5939), + [anon_sym_LBRACE] = ACTIONS(5926), + [anon_sym_signed] = ACTIONS(5939), + [anon_sym_unsigned] = ACTIONS(5939), + [anon_sym_long] = ACTIONS(5939), + [anon_sym_short] = ACTIONS(5939), + [anon_sym_ATautoreleasepool] = ACTIONS(5926), + [anon_sym_const] = ACTIONS(5939), + [anon_sym_constexpr] = ACTIONS(5939), + [anon_sym_volatile] = ACTIONS(5939), + [anon_sym_restrict] = ACTIONS(5939), + [anon_sym___restrict__] = ACTIONS(5939), + [anon_sym__Atomic] = ACTIONS(5939), + [anon_sym__Noreturn] = ACTIONS(5939), + [anon_sym__Nonnull] = ACTIONS(5939), + [anon_sym_nullable] = ACTIONS(5939), + [anon_sym__Complex] = ACTIONS(5939), + [anon_sym__Nullable] = ACTIONS(5939), + [anon_sym__Nullable_result] = ACTIONS(5939), + [anon_sym__Null_unspecified] = ACTIONS(5939), + [anon_sym___autoreleasing] = ACTIONS(5939), + [anon_sym___block] = ACTIONS(5939), + [anon_sym___bridge] = ACTIONS(5939), + [anon_sym___bridge_retained] = ACTIONS(5939), + [anon_sym___bridge_transfer] = ACTIONS(5939), + [anon_sym___complex] = ACTIONS(5939), + [anon_sym___const] = ACTIONS(5939), + [anon_sym___imag] = ACTIONS(5939), + [anon_sym___kindof] = ACTIONS(5939), + [anon_sym___nonnull] = ACTIONS(5939), + [anon_sym___nullable] = ACTIONS(5939), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5939), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5939), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5939), + [anon_sym___real] = ACTIONS(5939), + [anon_sym___strong] = ACTIONS(5939), + [anon_sym___unsafe_unretained] = ACTIONS(5939), + [anon_sym___unused] = ACTIONS(5939), + [anon_sym___weak] = ACTIONS(5939), + [anon_sym_alignas] = ACTIONS(5939), + [anon_sym__Alignas] = ACTIONS(5939), + [sym_primitive_type] = ACTIONS(5939), + [anon_sym_enum] = ACTIONS(5939), + [anon_sym_struct] = ACTIONS(5939), + [anon_sym_union] = ACTIONS(5939), + [anon_sym_in] = ACTIONS(5939), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5939), + [anon_sym___typeof] = ACTIONS(5939), + [anon_sym_typeof] = ACTIONS(5939), + [anon_sym_BOOL] = ACTIONS(5939), + [anon_sym_IMP] = ACTIONS(5939), + [anon_sym_SEL] = ACTIONS(5939), + [anon_sym_Class] = ACTIONS(5939), + [anon_sym_id] = ACTIONS(5939), + [anon_sym_out] = ACTIONS(5939), + [anon_sym_inout] = ACTIONS(5939), + [anon_sym_bycopy] = ACTIONS(5939), + [anon_sym_byref] = ACTIONS(5939), + [anon_sym_oneway] = ACTIONS(5939), + }, + [4012] = { + [sym_identifier] = ACTIONS(6881), + [anon_sym_COMMA] = ACTIONS(6883), + [anon_sym_RPAREN] = ACTIONS(6883), + [anon_sym_LPAREN2] = ACTIONS(6883), + [anon_sym_STAR] = ACTIONS(6883), + [anon_sym_CARET] = ACTIONS(6883), + [anon_sym_GT] = ACTIONS(6883), + [anon_sym_LT] = ACTIONS(6883), + [anon_sym___extension__] = ACTIONS(6881), + [anon_sym___attribute__] = ACTIONS(6881), + [anon_sym___attribute] = ACTIONS(6881), + [anon_sym_noreturn] = ACTIONS(6881), + [anon_sym_LBRACK] = ACTIONS(6883), + [anon_sym___based] = ACTIONS(6881), + [anon_sym_LBRACE] = ACTIONS(6883), + [anon_sym_signed] = ACTIONS(6881), + [anon_sym_unsigned] = ACTIONS(6881), + [anon_sym_long] = ACTIONS(6881), + [anon_sym_short] = ACTIONS(6881), + [anon_sym_ATautoreleasepool] = ACTIONS(6883), + [anon_sym_const] = ACTIONS(6881), + [anon_sym_constexpr] = ACTIONS(6881), + [anon_sym_volatile] = ACTIONS(6881), + [anon_sym_restrict] = ACTIONS(6881), + [anon_sym___restrict__] = ACTIONS(6881), + [anon_sym__Atomic] = ACTIONS(6881), + [anon_sym__Noreturn] = ACTIONS(6881), + [anon_sym__Nonnull] = ACTIONS(6881), + [anon_sym_nullable] = ACTIONS(6881), + [anon_sym__Complex] = ACTIONS(6881), + [anon_sym__Nullable] = ACTIONS(6881), + [anon_sym__Nullable_result] = ACTIONS(6881), + [anon_sym__Null_unspecified] = ACTIONS(6881), + [anon_sym___autoreleasing] = ACTIONS(6881), + [anon_sym___block] = ACTIONS(6881), + [anon_sym___bridge] = ACTIONS(6881), + [anon_sym___bridge_retained] = ACTIONS(6881), + [anon_sym___bridge_transfer] = ACTIONS(6881), + [anon_sym___complex] = ACTIONS(6881), + [anon_sym___const] = ACTIONS(6881), + [anon_sym___imag] = ACTIONS(6881), + [anon_sym___kindof] = ACTIONS(6881), + [anon_sym___nonnull] = ACTIONS(6881), + [anon_sym___nullable] = ACTIONS(6881), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6881), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6881), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6881), + [anon_sym___real] = ACTIONS(6881), + [anon_sym___strong] = ACTIONS(6881), + [anon_sym___unsafe_unretained] = ACTIONS(6881), + [anon_sym___unused] = ACTIONS(6881), + [anon_sym___weak] = ACTIONS(6881), + [anon_sym_alignas] = ACTIONS(6881), + [anon_sym__Alignas] = ACTIONS(6881), + [sym_primitive_type] = ACTIONS(6881), + [anon_sym_enum] = ACTIONS(6881), + [anon_sym_struct] = ACTIONS(6881), + [anon_sym_union] = ACTIONS(6881), + [anon_sym_in] = ACTIONS(6881), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6881), + [anon_sym___typeof] = ACTIONS(6881), + [anon_sym_typeof] = ACTIONS(6881), + [anon_sym_BOOL] = ACTIONS(6881), + [anon_sym_IMP] = ACTIONS(6881), + [anon_sym_SEL] = ACTIONS(6881), + [anon_sym_Class] = ACTIONS(6881), + [anon_sym_id] = ACTIONS(6881), + [anon_sym_out] = ACTIONS(6881), + [anon_sym_inout] = ACTIONS(6881), + [anon_sym_bycopy] = ACTIONS(6881), + [anon_sym_byref] = ACTIONS(6881), + [anon_sym_oneway] = ACTIONS(6881), + }, + [4013] = { + [sym_attribute_specifier] = STATE(3874), + [sym_enumerator_list] = STATE(3997), + [sym_identifier] = ACTIONS(7700), + [anon_sym_LPAREN2] = ACTIONS(7702), + [anon_sym_STAR] = ACTIONS(7702), + [anon_sym_CARET] = ACTIONS(7702), + [anon_sym_LT] = ACTIONS(7702), + [anon_sym___extension__] = ACTIONS(7700), + [anon_sym___attribute__] = ACTIONS(8932), + [anon_sym___attribute] = ACTIONS(8932), + [anon_sym_noreturn] = ACTIONS(7700), + [anon_sym_LBRACK] = ACTIONS(7702), + [anon_sym___based] = ACTIONS(7700), + [anon_sym_LBRACE] = ACTIONS(9048), + [anon_sym_signed] = ACTIONS(7700), + [anon_sym_unsigned] = ACTIONS(7700), + [anon_sym_long] = ACTIONS(7700), + [anon_sym_short] = ACTIONS(7700), + [anon_sym_ATautoreleasepool] = ACTIONS(7702), + [anon_sym_const] = ACTIONS(7700), + [anon_sym_constexpr] = ACTIONS(7700), + [anon_sym_volatile] = ACTIONS(7700), + [anon_sym_restrict] = ACTIONS(7700), + [anon_sym___restrict__] = ACTIONS(7700), + [anon_sym__Atomic] = ACTIONS(7700), + [anon_sym__Noreturn] = ACTIONS(7700), + [anon_sym__Nonnull] = ACTIONS(7700), + [anon_sym_nullable] = ACTIONS(7700), + [anon_sym__Complex] = ACTIONS(7700), + [anon_sym__Nullable] = ACTIONS(7700), + [anon_sym__Nullable_result] = ACTIONS(7700), + [anon_sym__Null_unspecified] = ACTIONS(7700), + [anon_sym___autoreleasing] = ACTIONS(7700), + [anon_sym___block] = ACTIONS(7700), + [anon_sym___bridge] = ACTIONS(7700), + [anon_sym___bridge_retained] = ACTIONS(7700), + [anon_sym___bridge_transfer] = ACTIONS(7700), + [anon_sym___complex] = ACTIONS(7700), + [anon_sym___const] = ACTIONS(7700), + [anon_sym___imag] = ACTIONS(7700), + [anon_sym___kindof] = ACTIONS(7700), + [anon_sym___nonnull] = ACTIONS(7700), + [anon_sym___nullable] = ACTIONS(7700), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7700), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7700), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7700), + [anon_sym___real] = ACTIONS(7700), + [anon_sym___strong] = ACTIONS(7700), + [anon_sym___unsafe_unretained] = ACTIONS(7700), + [anon_sym___unused] = ACTIONS(7700), + [anon_sym___weak] = ACTIONS(7700), + [anon_sym_alignas] = ACTIONS(7700), + [anon_sym__Alignas] = ACTIONS(7700), + [sym_primitive_type] = ACTIONS(7700), + [anon_sym_enum] = ACTIONS(7700), + [anon_sym_COLON] = ACTIONS(9051), + [anon_sym_struct] = ACTIONS(7700), + [anon_sym_union] = ACTIONS(7700), + [anon_sym_in] = ACTIONS(7700), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7700), + [anon_sym___typeof] = ACTIONS(7700), + [anon_sym_typeof] = ACTIONS(7700), + [anon_sym_BOOL] = ACTIONS(7700), + [anon_sym_IMP] = ACTIONS(7700), + [anon_sym_SEL] = ACTIONS(7700), + [anon_sym_Class] = ACTIONS(7700), + [anon_sym_id] = ACTIONS(7700), + [anon_sym_out] = ACTIONS(7700), + [anon_sym_inout] = ACTIONS(7700), + [anon_sym_bycopy] = ACTIONS(7700), + [anon_sym_byref] = ACTIONS(7700), + [anon_sym_oneway] = ACTIONS(7700), + }, + [4014] = { + [sym_identifier] = ACTIONS(4124), + [anon_sym_COMMA] = ACTIONS(4126), + [anon_sym_RPAREN] = ACTIONS(4126), + [anon_sym_LPAREN2] = ACTIONS(4126), + [anon_sym_STAR] = ACTIONS(4126), + [anon_sym_CARET] = ACTIONS(4126), + [anon_sym_GT] = ACTIONS(4126), + [anon_sym_LT] = ACTIONS(4126), + [anon_sym___extension__] = ACTIONS(4124), + [anon_sym___attribute__] = ACTIONS(4124), + [anon_sym___attribute] = ACTIONS(4124), + [anon_sym_noreturn] = ACTIONS(4124), + [anon_sym_LBRACK] = ACTIONS(4126), + [anon_sym___based] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4126), + [anon_sym_signed] = ACTIONS(4124), + [anon_sym_unsigned] = ACTIONS(4124), + [anon_sym_long] = ACTIONS(4124), + [anon_sym_short] = ACTIONS(4124), + [anon_sym_ATautoreleasepool] = ACTIONS(4126), + [anon_sym_const] = ACTIONS(4124), + [anon_sym_constexpr] = ACTIONS(4124), + [anon_sym_volatile] = ACTIONS(4124), + [anon_sym_restrict] = ACTIONS(4124), + [anon_sym___restrict__] = ACTIONS(4124), + [anon_sym__Atomic] = ACTIONS(4124), + [anon_sym__Noreturn] = ACTIONS(4124), + [anon_sym__Nonnull] = ACTIONS(4124), + [anon_sym_nullable] = ACTIONS(4124), + [anon_sym__Complex] = ACTIONS(4124), + [anon_sym__Nullable] = ACTIONS(4124), + [anon_sym__Nullable_result] = ACTIONS(4124), + [anon_sym__Null_unspecified] = ACTIONS(4124), + [anon_sym___autoreleasing] = ACTIONS(4124), + [anon_sym___block] = ACTIONS(4124), + [anon_sym___bridge] = ACTIONS(4124), + [anon_sym___bridge_retained] = ACTIONS(4124), + [anon_sym___bridge_transfer] = ACTIONS(4124), + [anon_sym___complex] = ACTIONS(4124), + [anon_sym___const] = ACTIONS(4124), + [anon_sym___imag] = ACTIONS(4124), + [anon_sym___kindof] = ACTIONS(4124), + [anon_sym___nonnull] = ACTIONS(4124), + [anon_sym___nullable] = ACTIONS(4124), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4124), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4124), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4124), + [anon_sym___real] = ACTIONS(4124), + [anon_sym___strong] = ACTIONS(4124), + [anon_sym___unsafe_unretained] = ACTIONS(4124), + [anon_sym___unused] = ACTIONS(4124), + [anon_sym___weak] = ACTIONS(4124), + [anon_sym_alignas] = ACTIONS(4124), + [anon_sym__Alignas] = ACTIONS(4124), + [sym_primitive_type] = ACTIONS(4124), + [anon_sym_enum] = ACTIONS(4124), + [anon_sym_struct] = ACTIONS(4124), + [anon_sym_union] = ACTIONS(4124), + [anon_sym_in] = ACTIONS(4124), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4124), + [anon_sym___typeof] = ACTIONS(4124), + [anon_sym_typeof] = ACTIONS(4124), + [anon_sym_BOOL] = ACTIONS(4124), + [anon_sym_IMP] = ACTIONS(4124), + [anon_sym_SEL] = ACTIONS(4124), + [anon_sym_Class] = ACTIONS(4124), + [anon_sym_id] = ACTIONS(4124), + [anon_sym_out] = ACTIONS(4124), + [anon_sym_inout] = ACTIONS(4124), + [anon_sym_bycopy] = ACTIONS(4124), + [anon_sym_byref] = ACTIONS(4124), + [anon_sym_oneway] = ACTIONS(4124), + }, + [4015] = { + [sym_identifier] = ACTIONS(6885), + [anon_sym_COMMA] = ACTIONS(6887), + [anon_sym_RPAREN] = ACTIONS(6887), + [anon_sym_LPAREN2] = ACTIONS(6887), + [anon_sym_STAR] = ACTIONS(6887), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_GT] = ACTIONS(6887), + [anon_sym_LT] = ACTIONS(6887), + [anon_sym___extension__] = ACTIONS(6885), + [anon_sym___attribute__] = ACTIONS(6885), + [anon_sym___attribute] = ACTIONS(6885), + [anon_sym_noreturn] = ACTIONS(6885), + [anon_sym_LBRACK] = ACTIONS(6887), + [anon_sym___based] = ACTIONS(6885), + [anon_sym_LBRACE] = ACTIONS(6887), + [anon_sym_signed] = ACTIONS(6885), + [anon_sym_unsigned] = ACTIONS(6885), + [anon_sym_long] = ACTIONS(6885), + [anon_sym_short] = ACTIONS(6885), + [anon_sym_ATautoreleasepool] = ACTIONS(6887), + [anon_sym_const] = ACTIONS(6885), + [anon_sym_constexpr] = ACTIONS(6885), + [anon_sym_volatile] = ACTIONS(6885), + [anon_sym_restrict] = ACTIONS(6885), + [anon_sym___restrict__] = ACTIONS(6885), + [anon_sym__Atomic] = ACTIONS(6885), + [anon_sym__Noreturn] = ACTIONS(6885), + [anon_sym__Nonnull] = ACTIONS(6885), + [anon_sym_nullable] = ACTIONS(6885), + [anon_sym__Complex] = ACTIONS(6885), + [anon_sym__Nullable] = ACTIONS(6885), + [anon_sym__Nullable_result] = ACTIONS(6885), + [anon_sym__Null_unspecified] = ACTIONS(6885), + [anon_sym___autoreleasing] = ACTIONS(6885), + [anon_sym___block] = ACTIONS(6885), + [anon_sym___bridge] = ACTIONS(6885), + [anon_sym___bridge_retained] = ACTIONS(6885), + [anon_sym___bridge_transfer] = ACTIONS(6885), + [anon_sym___complex] = ACTIONS(6885), + [anon_sym___const] = ACTIONS(6885), + [anon_sym___imag] = ACTIONS(6885), + [anon_sym___kindof] = ACTIONS(6885), + [anon_sym___nonnull] = ACTIONS(6885), + [anon_sym___nullable] = ACTIONS(6885), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6885), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6885), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6885), + [anon_sym___real] = ACTIONS(6885), + [anon_sym___strong] = ACTIONS(6885), + [anon_sym___unsafe_unretained] = ACTIONS(6885), + [anon_sym___unused] = ACTIONS(6885), + [anon_sym___weak] = ACTIONS(6885), + [anon_sym_alignas] = ACTIONS(6885), + [anon_sym__Alignas] = ACTIONS(6885), + [sym_primitive_type] = ACTIONS(6885), + [anon_sym_enum] = ACTIONS(6885), + [anon_sym_struct] = ACTIONS(6885), + [anon_sym_union] = ACTIONS(6885), + [anon_sym_in] = ACTIONS(6885), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6885), + [anon_sym___typeof] = ACTIONS(6885), + [anon_sym_typeof] = ACTIONS(6885), + [anon_sym_BOOL] = ACTIONS(6885), + [anon_sym_IMP] = ACTIONS(6885), + [anon_sym_SEL] = ACTIONS(6885), + [anon_sym_Class] = ACTIONS(6885), + [anon_sym_id] = ACTIONS(6885), + [anon_sym_out] = ACTIONS(6885), + [anon_sym_inout] = ACTIONS(6885), + [anon_sym_bycopy] = ACTIONS(6885), + [anon_sym_byref] = ACTIONS(6885), + [anon_sym_oneway] = ACTIONS(6885), + }, + [4016] = { + [sym_identifier] = ACTIONS(4238), + [anon_sym_COMMA] = ACTIONS(4240), + [anon_sym_RPAREN] = ACTIONS(4240), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4240), + [anon_sym_CARET] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym___extension__] = ACTIONS(4238), + [anon_sym___attribute__] = ACTIONS(4238), + [anon_sym___attribute] = ACTIONS(4238), + [anon_sym_noreturn] = ACTIONS(4238), + [anon_sym_LBRACK] = ACTIONS(4240), + [anon_sym___based] = ACTIONS(4238), + [anon_sym_LBRACE] = ACTIONS(4240), + [anon_sym_signed] = ACTIONS(4238), + [anon_sym_unsigned] = ACTIONS(4238), + [anon_sym_long] = ACTIONS(4238), + [anon_sym_short] = ACTIONS(4238), + [anon_sym_ATautoreleasepool] = ACTIONS(4240), + [anon_sym_const] = ACTIONS(4238), + [anon_sym_constexpr] = ACTIONS(4238), + [anon_sym_volatile] = ACTIONS(4238), + [anon_sym_restrict] = ACTIONS(4238), + [anon_sym___restrict__] = ACTIONS(4238), + [anon_sym__Atomic] = ACTIONS(4238), + [anon_sym__Noreturn] = ACTIONS(4238), + [anon_sym__Nonnull] = ACTIONS(4238), + [anon_sym_nullable] = ACTIONS(4238), + [anon_sym__Complex] = ACTIONS(4238), + [anon_sym__Nullable] = ACTIONS(4238), + [anon_sym__Nullable_result] = ACTIONS(4238), + [anon_sym__Null_unspecified] = ACTIONS(4238), + [anon_sym___autoreleasing] = ACTIONS(4238), + [anon_sym___block] = ACTIONS(4238), + [anon_sym___bridge] = ACTIONS(4238), + [anon_sym___bridge_retained] = ACTIONS(4238), + [anon_sym___bridge_transfer] = ACTIONS(4238), + [anon_sym___complex] = ACTIONS(4238), + [anon_sym___const] = ACTIONS(4238), + [anon_sym___imag] = ACTIONS(4238), + [anon_sym___kindof] = ACTIONS(4238), + [anon_sym___nonnull] = ACTIONS(4238), + [anon_sym___nullable] = ACTIONS(4238), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4238), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4238), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4238), + [anon_sym___real] = ACTIONS(4238), + [anon_sym___strong] = ACTIONS(4238), + [anon_sym___unsafe_unretained] = ACTIONS(4238), + [anon_sym___unused] = ACTIONS(4238), + [anon_sym___weak] = ACTIONS(4238), + [anon_sym_alignas] = ACTIONS(4238), + [anon_sym__Alignas] = ACTIONS(4238), + [sym_primitive_type] = ACTIONS(4238), + [anon_sym_enum] = ACTIONS(4238), + [anon_sym_struct] = ACTIONS(4238), + [anon_sym_union] = ACTIONS(4238), + [anon_sym_in] = ACTIONS(4238), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4238), + [anon_sym___typeof] = ACTIONS(4238), + [anon_sym_typeof] = ACTIONS(4238), + [anon_sym_BOOL] = ACTIONS(4238), + [anon_sym_IMP] = ACTIONS(4238), + [anon_sym_SEL] = ACTIONS(4238), + [anon_sym_Class] = ACTIONS(4238), + [anon_sym_id] = ACTIONS(4238), + [anon_sym_out] = ACTIONS(4238), + [anon_sym_inout] = ACTIONS(4238), + [anon_sym_bycopy] = ACTIONS(4238), + [anon_sym_byref] = ACTIONS(4238), + [anon_sym_oneway] = ACTIONS(4238), + }, + [4017] = { + [sym_attribute_specifier] = STATE(5596), + [sym_compound_statement] = STATE(1485), + [sym_parameter_list] = STATE(5039), + [sym_identifier] = ACTIONS(9019), + [anon_sym_LPAREN2] = ACTIONS(8958), + [anon_sym_STAR] = ACTIONS(8207), + [anon_sym_CARET] = ACTIONS(8207), + [anon_sym_LT] = ACTIONS(8207), + [anon_sym___extension__] = ACTIONS(9019), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(9019), + [anon_sym_LBRACK] = ACTIONS(8207), + [anon_sym___based] = ACTIONS(9019), + [anon_sym_LBRACE] = ACTIONS(8209), + [anon_sym_signed] = ACTIONS(9019), + [anon_sym_unsigned] = ACTIONS(9019), + [anon_sym_long] = ACTIONS(9019), + [anon_sym_short] = ACTIONS(9019), + [anon_sym_ATautoreleasepool] = ACTIONS(8211), + [anon_sym_const] = ACTIONS(9019), + [anon_sym_constexpr] = ACTIONS(9019), + [anon_sym_volatile] = ACTIONS(9019), + [anon_sym_restrict] = ACTIONS(9019), + [anon_sym___restrict__] = ACTIONS(9019), + [anon_sym__Atomic] = ACTIONS(9019), + [anon_sym__Noreturn] = ACTIONS(9019), + [anon_sym__Nonnull] = ACTIONS(9019), + [anon_sym_nullable] = ACTIONS(9019), + [anon_sym__Complex] = ACTIONS(9019), + [anon_sym__Nullable] = ACTIONS(9019), + [anon_sym__Nullable_result] = ACTIONS(9019), + [anon_sym__Null_unspecified] = ACTIONS(9019), + [anon_sym___autoreleasing] = ACTIONS(9019), + [anon_sym___block] = ACTIONS(9019), + [anon_sym___bridge] = ACTIONS(9019), + [anon_sym___bridge_retained] = ACTIONS(9019), + [anon_sym___bridge_transfer] = ACTIONS(9019), + [anon_sym___complex] = ACTIONS(9019), + [anon_sym___const] = ACTIONS(9019), + [anon_sym___imag] = ACTIONS(9019), + [anon_sym___kindof] = ACTIONS(9019), + [anon_sym___nonnull] = ACTIONS(9019), + [anon_sym___nullable] = ACTIONS(9019), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(9019), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(9019), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(9019), + [anon_sym___real] = ACTIONS(9019), + [anon_sym___strong] = ACTIONS(9019), + [anon_sym___unsafe_unretained] = ACTIONS(9019), + [anon_sym___unused] = ACTIONS(9019), + [anon_sym___weak] = ACTIONS(9019), + [anon_sym_alignas] = ACTIONS(9019), + [anon_sym__Alignas] = ACTIONS(9019), + [sym_primitive_type] = ACTIONS(9019), + [anon_sym_enum] = ACTIONS(9019), + [anon_sym_struct] = ACTIONS(9019), + [anon_sym_union] = ACTIONS(9019), + [anon_sym_in] = ACTIONS(9019), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(9019), + [anon_sym___typeof] = ACTIONS(9019), + [anon_sym_typeof] = ACTIONS(9019), + [anon_sym_BOOL] = ACTIONS(9019), + [anon_sym_IMP] = ACTIONS(9019), + [anon_sym_SEL] = ACTIONS(9019), + [anon_sym_Class] = ACTIONS(9019), + [anon_sym_id] = ACTIONS(9019), + [anon_sym_out] = ACTIONS(9019), + [anon_sym_inout] = ACTIONS(9019), + [anon_sym_bycopy] = ACTIONS(9019), + [anon_sym_byref] = ACTIONS(9019), + [anon_sym_oneway] = ACTIONS(9019), + }, + [4018] = { + [sym_identifier] = ACTIONS(4098), + [anon_sym_COMMA] = ACTIONS(4100), + [anon_sym_RPAREN] = ACTIONS(4100), + [anon_sym_LPAREN2] = ACTIONS(4100), + [anon_sym_STAR] = ACTIONS(4100), + [anon_sym_CARET] = ACTIONS(4100), + [anon_sym_GT] = ACTIONS(4100), + [anon_sym_LT] = ACTIONS(4100), + [anon_sym___extension__] = ACTIONS(4098), + [anon_sym___attribute__] = ACTIONS(4098), + [anon_sym___attribute] = ACTIONS(4098), + [anon_sym_noreturn] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym___based] = ACTIONS(4098), + [anon_sym_LBRACE] = ACTIONS(4100), + [anon_sym_signed] = ACTIONS(4098), + [anon_sym_unsigned] = ACTIONS(4098), + [anon_sym_long] = ACTIONS(4098), + [anon_sym_short] = ACTIONS(4098), + [anon_sym_ATautoreleasepool] = ACTIONS(4100), + [anon_sym_const] = ACTIONS(4098), + [anon_sym_constexpr] = ACTIONS(4098), + [anon_sym_volatile] = ACTIONS(4098), + [anon_sym_restrict] = ACTIONS(4098), + [anon_sym___restrict__] = ACTIONS(4098), + [anon_sym__Atomic] = ACTIONS(4098), + [anon_sym__Noreturn] = ACTIONS(4098), + [anon_sym__Nonnull] = ACTIONS(4098), + [anon_sym_nullable] = ACTIONS(4098), + [anon_sym__Complex] = ACTIONS(4098), + [anon_sym__Nullable] = ACTIONS(4098), + [anon_sym__Nullable_result] = ACTIONS(4098), + [anon_sym__Null_unspecified] = ACTIONS(4098), + [anon_sym___autoreleasing] = ACTIONS(4098), + [anon_sym___block] = ACTIONS(4098), + [anon_sym___bridge] = ACTIONS(4098), + [anon_sym___bridge_retained] = ACTIONS(4098), + [anon_sym___bridge_transfer] = ACTIONS(4098), + [anon_sym___complex] = ACTIONS(4098), + [anon_sym___const] = ACTIONS(4098), + [anon_sym___imag] = ACTIONS(4098), + [anon_sym___kindof] = ACTIONS(4098), + [anon_sym___nonnull] = ACTIONS(4098), + [anon_sym___nullable] = ACTIONS(4098), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4098), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4098), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4098), + [anon_sym___real] = ACTIONS(4098), + [anon_sym___strong] = ACTIONS(4098), + [anon_sym___unsafe_unretained] = ACTIONS(4098), + [anon_sym___unused] = ACTIONS(4098), + [anon_sym___weak] = ACTIONS(4098), + [anon_sym_alignas] = ACTIONS(4098), + [anon_sym__Alignas] = ACTIONS(4098), + [sym_primitive_type] = ACTIONS(4098), + [anon_sym_enum] = ACTIONS(4098), + [anon_sym_struct] = ACTIONS(4098), + [anon_sym_union] = ACTIONS(4098), + [anon_sym_in] = ACTIONS(4098), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4098), + [anon_sym___typeof] = ACTIONS(4098), + [anon_sym_typeof] = ACTIONS(4098), + [anon_sym_BOOL] = ACTIONS(4098), + [anon_sym_IMP] = ACTIONS(4098), + [anon_sym_SEL] = ACTIONS(4098), + [anon_sym_Class] = ACTIONS(4098), + [anon_sym_id] = ACTIONS(4098), + [anon_sym_out] = ACTIONS(4098), + [anon_sym_inout] = ACTIONS(4098), + [anon_sym_bycopy] = ACTIONS(4098), + [anon_sym_byref] = ACTIONS(4098), + [anon_sym_oneway] = ACTIONS(4098), + }, + [4019] = { + [sym_identifier] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4182), + [anon_sym_RPAREN] = ACTIONS(4182), + [anon_sym_LPAREN2] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4182), + [anon_sym_CARET] = ACTIONS(4182), + [anon_sym_GT] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym___extension__] = ACTIONS(4180), + [anon_sym___attribute__] = ACTIONS(4180), + [anon_sym___attribute] = ACTIONS(4180), + [anon_sym_noreturn] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4182), + [anon_sym___based] = ACTIONS(4180), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_signed] = ACTIONS(4180), + [anon_sym_unsigned] = ACTIONS(4180), + [anon_sym_long] = ACTIONS(4180), + [anon_sym_short] = ACTIONS(4180), + [anon_sym_ATautoreleasepool] = ACTIONS(4182), + [anon_sym_const] = ACTIONS(4180), + [anon_sym_constexpr] = ACTIONS(4180), + [anon_sym_volatile] = ACTIONS(4180), + [anon_sym_restrict] = ACTIONS(4180), + [anon_sym___restrict__] = ACTIONS(4180), + [anon_sym__Atomic] = ACTIONS(4180), + [anon_sym__Noreturn] = ACTIONS(4180), + [anon_sym__Nonnull] = ACTIONS(4180), + [anon_sym_nullable] = ACTIONS(4180), + [anon_sym__Complex] = ACTIONS(4180), + [anon_sym__Nullable] = ACTIONS(4180), + [anon_sym__Nullable_result] = ACTIONS(4180), + [anon_sym__Null_unspecified] = ACTIONS(4180), + [anon_sym___autoreleasing] = ACTIONS(4180), + [anon_sym___block] = ACTIONS(4180), + [anon_sym___bridge] = ACTIONS(4180), + [anon_sym___bridge_retained] = ACTIONS(4180), + [anon_sym___bridge_transfer] = ACTIONS(4180), + [anon_sym___complex] = ACTIONS(4180), + [anon_sym___const] = ACTIONS(4180), + [anon_sym___imag] = ACTIONS(4180), + [anon_sym___kindof] = ACTIONS(4180), + [anon_sym___nonnull] = ACTIONS(4180), + [anon_sym___nullable] = ACTIONS(4180), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4180), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4180), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4180), + [anon_sym___real] = ACTIONS(4180), + [anon_sym___strong] = ACTIONS(4180), + [anon_sym___unsafe_unretained] = ACTIONS(4180), + [anon_sym___unused] = ACTIONS(4180), + [anon_sym___weak] = ACTIONS(4180), + [anon_sym_alignas] = ACTIONS(4180), + [anon_sym__Alignas] = ACTIONS(4180), + [sym_primitive_type] = ACTIONS(4180), + [anon_sym_enum] = ACTIONS(4180), + [anon_sym_struct] = ACTIONS(4180), + [anon_sym_union] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4180), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4180), + [anon_sym___typeof] = ACTIONS(4180), + [anon_sym_typeof] = ACTIONS(4180), + [anon_sym_BOOL] = ACTIONS(4180), + [anon_sym_IMP] = ACTIONS(4180), + [anon_sym_SEL] = ACTIONS(4180), + [anon_sym_Class] = ACTIONS(4180), + [anon_sym_id] = ACTIONS(4180), + [anon_sym_out] = ACTIONS(4180), + [anon_sym_inout] = ACTIONS(4180), + [anon_sym_bycopy] = ACTIONS(4180), + [anon_sym_byref] = ACTIONS(4180), + [anon_sym_oneway] = ACTIONS(4180), + }, + [4020] = { + [sym_attribute_specifier] = STATE(5633), + [sym_compound_statement] = STATE(1658), + [sym_parameter_list] = STATE(5057), + [sym_identifier] = ACTIONS(9019), + [anon_sym_LPAREN2] = ACTIONS(8958), + [anon_sym_STAR] = ACTIONS(8207), + [anon_sym_CARET] = ACTIONS(8207), + [anon_sym_LT] = ACTIONS(8207), + [anon_sym___extension__] = ACTIONS(9019), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(9019), + [anon_sym_LBRACK] = ACTIONS(8207), + [anon_sym___based] = ACTIONS(9019), + [anon_sym_LBRACE] = ACTIONS(8213), + [anon_sym_signed] = ACTIONS(9019), + [anon_sym_unsigned] = ACTIONS(9019), + [anon_sym_long] = ACTIONS(9019), + [anon_sym_short] = ACTIONS(9019), + [anon_sym_ATautoreleasepool] = ACTIONS(8215), + [anon_sym_const] = ACTIONS(9019), + [anon_sym_constexpr] = ACTIONS(9019), + [anon_sym_volatile] = ACTIONS(9019), + [anon_sym_restrict] = ACTIONS(9019), + [anon_sym___restrict__] = ACTIONS(9019), + [anon_sym__Atomic] = ACTIONS(9019), + [anon_sym__Noreturn] = ACTIONS(9019), + [anon_sym__Nonnull] = ACTIONS(9019), + [anon_sym_nullable] = ACTIONS(9019), + [anon_sym__Complex] = ACTIONS(9019), + [anon_sym__Nullable] = ACTIONS(9019), + [anon_sym__Nullable_result] = ACTIONS(9019), + [anon_sym__Null_unspecified] = ACTIONS(9019), + [anon_sym___autoreleasing] = ACTIONS(9019), + [anon_sym___block] = ACTIONS(9019), + [anon_sym___bridge] = ACTIONS(9019), + [anon_sym___bridge_retained] = ACTIONS(9019), + [anon_sym___bridge_transfer] = ACTIONS(9019), + [anon_sym___complex] = ACTIONS(9019), + [anon_sym___const] = ACTIONS(9019), + [anon_sym___imag] = ACTIONS(9019), + [anon_sym___kindof] = ACTIONS(9019), + [anon_sym___nonnull] = ACTIONS(9019), + [anon_sym___nullable] = ACTIONS(9019), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(9019), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(9019), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(9019), + [anon_sym___real] = ACTIONS(9019), + [anon_sym___strong] = ACTIONS(9019), + [anon_sym___unsafe_unretained] = ACTIONS(9019), + [anon_sym___unused] = ACTIONS(9019), + [anon_sym___weak] = ACTIONS(9019), + [anon_sym_alignas] = ACTIONS(9019), + [anon_sym__Alignas] = ACTIONS(9019), + [sym_primitive_type] = ACTIONS(9019), + [anon_sym_enum] = ACTIONS(9019), + [anon_sym_struct] = ACTIONS(9019), + [anon_sym_union] = ACTIONS(9019), + [anon_sym_in] = ACTIONS(9019), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(9019), + [anon_sym___typeof] = ACTIONS(9019), + [anon_sym_typeof] = ACTIONS(9019), + [anon_sym_BOOL] = ACTIONS(9019), + [anon_sym_IMP] = ACTIONS(9019), + [anon_sym_SEL] = ACTIONS(9019), + [anon_sym_Class] = ACTIONS(9019), + [anon_sym_id] = ACTIONS(9019), + [anon_sym_out] = ACTIONS(9019), + [anon_sym_inout] = ACTIONS(9019), + [anon_sym_bycopy] = ACTIONS(9019), + [anon_sym_byref] = ACTIONS(9019), + [anon_sym_oneway] = ACTIONS(9019), + }, + [4021] = { + [sym_identifier] = ACTIONS(4106), + [anon_sym_COMMA] = ACTIONS(4108), + [anon_sym_RPAREN] = ACTIONS(4108), + [anon_sym_LPAREN2] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [anon_sym_CARET] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym___extension__] = ACTIONS(4106), + [anon_sym___attribute__] = ACTIONS(4106), + [anon_sym___attribute] = ACTIONS(4106), + [anon_sym_noreturn] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym___based] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_signed] = ACTIONS(4106), + [anon_sym_unsigned] = ACTIONS(4106), + [anon_sym_long] = ACTIONS(4106), + [anon_sym_short] = ACTIONS(4106), + [anon_sym_ATautoreleasepool] = ACTIONS(4108), + [anon_sym_const] = ACTIONS(4106), + [anon_sym_constexpr] = ACTIONS(4106), + [anon_sym_volatile] = ACTIONS(4106), + [anon_sym_restrict] = ACTIONS(4106), + [anon_sym___restrict__] = ACTIONS(4106), + [anon_sym__Atomic] = ACTIONS(4106), + [anon_sym__Noreturn] = ACTIONS(4106), + [anon_sym__Nonnull] = ACTIONS(4106), + [anon_sym_nullable] = ACTIONS(4106), + [anon_sym__Complex] = ACTIONS(4106), + [anon_sym__Nullable] = ACTIONS(4106), + [anon_sym__Nullable_result] = ACTIONS(4106), + [anon_sym__Null_unspecified] = ACTIONS(4106), + [anon_sym___autoreleasing] = ACTIONS(4106), + [anon_sym___block] = ACTIONS(4106), + [anon_sym___bridge] = ACTIONS(4106), + [anon_sym___bridge_retained] = ACTIONS(4106), + [anon_sym___bridge_transfer] = ACTIONS(4106), + [anon_sym___complex] = ACTIONS(4106), + [anon_sym___const] = ACTIONS(4106), + [anon_sym___imag] = ACTIONS(4106), + [anon_sym___kindof] = ACTIONS(4106), + [anon_sym___nonnull] = ACTIONS(4106), + [anon_sym___nullable] = ACTIONS(4106), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4106), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4106), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4106), + [anon_sym___real] = ACTIONS(4106), + [anon_sym___strong] = ACTIONS(4106), + [anon_sym___unsafe_unretained] = ACTIONS(4106), + [anon_sym___unused] = ACTIONS(4106), + [anon_sym___weak] = ACTIONS(4106), + [anon_sym_alignas] = ACTIONS(4106), + [anon_sym__Alignas] = ACTIONS(4106), + [sym_primitive_type] = ACTIONS(4106), + [anon_sym_enum] = ACTIONS(4106), + [anon_sym_struct] = ACTIONS(4106), + [anon_sym_union] = ACTIONS(4106), + [anon_sym_in] = ACTIONS(4106), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4106), + [anon_sym___typeof] = ACTIONS(4106), + [anon_sym_typeof] = ACTIONS(4106), + [anon_sym_BOOL] = ACTIONS(4106), + [anon_sym_IMP] = ACTIONS(4106), + [anon_sym_SEL] = ACTIONS(4106), + [anon_sym_Class] = ACTIONS(4106), + [anon_sym_id] = ACTIONS(4106), + [anon_sym_out] = ACTIONS(4106), + [anon_sym_inout] = ACTIONS(4106), + [anon_sym_bycopy] = ACTIONS(4106), + [anon_sym_byref] = ACTIONS(4106), + [anon_sym_oneway] = ACTIONS(4106), + }, + [4022] = { + [sym_identifier] = ACTIONS(4206), + [anon_sym_COMMA] = ACTIONS(4208), + [anon_sym_RPAREN] = ACTIONS(4208), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_STAR] = ACTIONS(4208), + [anon_sym_CARET] = ACTIONS(4208), + [anon_sym_GT] = ACTIONS(4208), + [anon_sym_LT] = ACTIONS(4208), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym___attribute__] = ACTIONS(4206), + [anon_sym___attribute] = ACTIONS(4206), + [anon_sym_noreturn] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4208), + [anon_sym___based] = ACTIONS(4206), + [anon_sym_LBRACE] = ACTIONS(4208), + [anon_sym_signed] = ACTIONS(4206), + [anon_sym_unsigned] = ACTIONS(4206), + [anon_sym_long] = ACTIONS(4206), + [anon_sym_short] = ACTIONS(4206), + [anon_sym_ATautoreleasepool] = ACTIONS(4208), + [anon_sym_const] = ACTIONS(4206), + [anon_sym_constexpr] = ACTIONS(4206), + [anon_sym_volatile] = ACTIONS(4206), + [anon_sym_restrict] = ACTIONS(4206), + [anon_sym___restrict__] = ACTIONS(4206), + [anon_sym__Atomic] = ACTIONS(4206), + [anon_sym__Noreturn] = ACTIONS(4206), + [anon_sym__Nonnull] = ACTIONS(4206), + [anon_sym_nullable] = ACTIONS(4206), + [anon_sym__Complex] = ACTIONS(4206), + [anon_sym__Nullable] = ACTIONS(4206), + [anon_sym__Nullable_result] = ACTIONS(4206), + [anon_sym__Null_unspecified] = ACTIONS(4206), + [anon_sym___autoreleasing] = ACTIONS(4206), + [anon_sym___block] = ACTIONS(4206), + [anon_sym___bridge] = ACTIONS(4206), + [anon_sym___bridge_retained] = ACTIONS(4206), + [anon_sym___bridge_transfer] = ACTIONS(4206), + [anon_sym___complex] = ACTIONS(4206), + [anon_sym___const] = ACTIONS(4206), + [anon_sym___imag] = ACTIONS(4206), + [anon_sym___kindof] = ACTIONS(4206), + [anon_sym___nonnull] = ACTIONS(4206), + [anon_sym___nullable] = ACTIONS(4206), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4206), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4206), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4206), + [anon_sym___real] = ACTIONS(4206), + [anon_sym___strong] = ACTIONS(4206), + [anon_sym___unsafe_unretained] = ACTIONS(4206), + [anon_sym___unused] = ACTIONS(4206), + [anon_sym___weak] = ACTIONS(4206), + [anon_sym_alignas] = ACTIONS(4206), + [anon_sym__Alignas] = ACTIONS(4206), + [sym_primitive_type] = ACTIONS(4206), + [anon_sym_enum] = ACTIONS(4206), + [anon_sym_struct] = ACTIONS(4206), + [anon_sym_union] = ACTIONS(4206), + [anon_sym_in] = ACTIONS(4206), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4206), + [anon_sym___typeof] = ACTIONS(4206), + [anon_sym_typeof] = ACTIONS(4206), + [anon_sym_BOOL] = ACTIONS(4206), + [anon_sym_IMP] = ACTIONS(4206), + [anon_sym_SEL] = ACTIONS(4206), + [anon_sym_Class] = ACTIONS(4206), + [anon_sym_id] = ACTIONS(4206), + [anon_sym_out] = ACTIONS(4206), + [anon_sym_inout] = ACTIONS(4206), + [anon_sym_bycopy] = ACTIONS(4206), + [anon_sym_byref] = ACTIONS(4206), + [anon_sym_oneway] = ACTIONS(4206), + }, + [4023] = { + [sym_identifier] = ACTIONS(6877), + [anon_sym_COMMA] = ACTIONS(6879), + [anon_sym_RPAREN] = ACTIONS(6879), + [anon_sym_LPAREN2] = ACTIONS(6879), + [anon_sym_STAR] = ACTIONS(6879), + [anon_sym_CARET] = ACTIONS(6879), + [anon_sym_GT] = ACTIONS(6879), + [anon_sym_LT] = ACTIONS(6879), + [anon_sym___extension__] = ACTIONS(6877), + [anon_sym___attribute__] = ACTIONS(6877), + [anon_sym___attribute] = ACTIONS(6877), + [anon_sym_noreturn] = ACTIONS(6877), + [anon_sym_LBRACK] = ACTIONS(6879), + [anon_sym___based] = ACTIONS(6877), + [anon_sym_LBRACE] = ACTIONS(6879), + [anon_sym_signed] = ACTIONS(6877), + [anon_sym_unsigned] = ACTIONS(6877), + [anon_sym_long] = ACTIONS(6877), + [anon_sym_short] = ACTIONS(6877), + [anon_sym_ATautoreleasepool] = ACTIONS(6879), + [anon_sym_const] = ACTIONS(6877), + [anon_sym_constexpr] = ACTIONS(6877), + [anon_sym_volatile] = ACTIONS(6877), + [anon_sym_restrict] = ACTIONS(6877), + [anon_sym___restrict__] = ACTIONS(6877), + [anon_sym__Atomic] = ACTIONS(6877), + [anon_sym__Noreturn] = ACTIONS(6877), + [anon_sym__Nonnull] = ACTIONS(6877), + [anon_sym_nullable] = ACTIONS(6877), + [anon_sym__Complex] = ACTIONS(6877), + [anon_sym__Nullable] = ACTIONS(6877), + [anon_sym__Nullable_result] = ACTIONS(6877), + [anon_sym__Null_unspecified] = ACTIONS(6877), + [anon_sym___autoreleasing] = ACTIONS(6877), + [anon_sym___block] = ACTIONS(6877), + [anon_sym___bridge] = ACTIONS(6877), + [anon_sym___bridge_retained] = ACTIONS(6877), + [anon_sym___bridge_transfer] = ACTIONS(6877), + [anon_sym___complex] = ACTIONS(6877), + [anon_sym___const] = ACTIONS(6877), + [anon_sym___imag] = ACTIONS(6877), + [anon_sym___kindof] = ACTIONS(6877), + [anon_sym___nonnull] = ACTIONS(6877), + [anon_sym___nullable] = ACTIONS(6877), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6877), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6877), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6877), + [anon_sym___real] = ACTIONS(6877), + [anon_sym___strong] = ACTIONS(6877), + [anon_sym___unsafe_unretained] = ACTIONS(6877), + [anon_sym___unused] = ACTIONS(6877), + [anon_sym___weak] = ACTIONS(6877), + [anon_sym_alignas] = ACTIONS(6877), + [anon_sym__Alignas] = ACTIONS(6877), + [sym_primitive_type] = ACTIONS(6877), + [anon_sym_enum] = ACTIONS(6877), + [anon_sym_struct] = ACTIONS(6877), + [anon_sym_union] = ACTIONS(6877), + [anon_sym_in] = ACTIONS(6877), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6877), + [anon_sym___typeof] = ACTIONS(6877), + [anon_sym_typeof] = ACTIONS(6877), + [anon_sym_BOOL] = ACTIONS(6877), + [anon_sym_IMP] = ACTIONS(6877), + [anon_sym_SEL] = ACTIONS(6877), + [anon_sym_Class] = ACTIONS(6877), + [anon_sym_id] = ACTIONS(6877), + [anon_sym_out] = ACTIONS(6877), + [anon_sym_inout] = ACTIONS(6877), + [anon_sym_bycopy] = ACTIONS(6877), + [anon_sym_byref] = ACTIONS(6877), + [anon_sym_oneway] = ACTIONS(6877), + }, + [4024] = { + [sym_attribute_specifier] = STATE(3882), + [sym_enumerator_list] = STATE(3928), + [sym_identifier] = ACTIONS(7717), + [anon_sym_LPAREN2] = ACTIONS(7719), + [anon_sym_STAR] = ACTIONS(7719), + [anon_sym_CARET] = ACTIONS(7719), + [anon_sym_LT] = ACTIONS(7719), + [anon_sym___extension__] = ACTIONS(7717), + [anon_sym___attribute__] = ACTIONS(8921), + [anon_sym___attribute] = ACTIONS(8921), + [anon_sym_noreturn] = ACTIONS(7717), + [anon_sym_LBRACK] = ACTIONS(7719), + [anon_sym___based] = ACTIONS(7717), + [anon_sym_LBRACE] = ACTIONS(9053), + [anon_sym_signed] = ACTIONS(7717), + [anon_sym_unsigned] = ACTIONS(7717), + [anon_sym_long] = ACTIONS(7717), + [anon_sym_short] = ACTIONS(7717), + [anon_sym_ATautoreleasepool] = ACTIONS(7719), + [anon_sym_const] = ACTIONS(7717), + [anon_sym_constexpr] = ACTIONS(7717), + [anon_sym_volatile] = ACTIONS(7717), + [anon_sym_restrict] = ACTIONS(7717), + [anon_sym___restrict__] = ACTIONS(7717), + [anon_sym__Atomic] = ACTIONS(7717), + [anon_sym__Noreturn] = ACTIONS(7717), + [anon_sym__Nonnull] = ACTIONS(7717), + [anon_sym_nullable] = ACTIONS(7717), + [anon_sym__Complex] = ACTIONS(7717), + [anon_sym__Nullable] = ACTIONS(7717), + [anon_sym__Nullable_result] = ACTIONS(7717), + [anon_sym__Null_unspecified] = ACTIONS(7717), + [anon_sym___autoreleasing] = ACTIONS(7717), + [anon_sym___block] = ACTIONS(7717), + [anon_sym___bridge] = ACTIONS(7717), + [anon_sym___bridge_retained] = ACTIONS(7717), + [anon_sym___bridge_transfer] = ACTIONS(7717), + [anon_sym___complex] = ACTIONS(7717), + [anon_sym___const] = ACTIONS(7717), + [anon_sym___imag] = ACTIONS(7717), + [anon_sym___kindof] = ACTIONS(7717), + [anon_sym___nonnull] = ACTIONS(7717), + [anon_sym___nullable] = ACTIONS(7717), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7717), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7717), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7717), + [anon_sym___real] = ACTIONS(7717), + [anon_sym___strong] = ACTIONS(7717), + [anon_sym___unsafe_unretained] = ACTIONS(7717), + [anon_sym___unused] = ACTIONS(7717), + [anon_sym___weak] = ACTIONS(7717), + [anon_sym_alignas] = ACTIONS(7717), + [anon_sym__Alignas] = ACTIONS(7717), + [sym_primitive_type] = ACTIONS(7717), + [anon_sym_enum] = ACTIONS(7717), + [anon_sym_COLON] = ACTIONS(9056), + [anon_sym_struct] = ACTIONS(7717), + [anon_sym_union] = ACTIONS(7717), + [anon_sym_in] = ACTIONS(7717), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7717), + [anon_sym___typeof] = ACTIONS(7717), + [anon_sym_typeof] = ACTIONS(7717), + [anon_sym_BOOL] = ACTIONS(7717), + [anon_sym_IMP] = ACTIONS(7717), + [anon_sym_SEL] = ACTIONS(7717), + [anon_sym_Class] = ACTIONS(7717), + [anon_sym_id] = ACTIONS(7717), + [anon_sym_out] = ACTIONS(7717), + [anon_sym_inout] = ACTIONS(7717), + [anon_sym_bycopy] = ACTIONS(7717), + [anon_sym_byref] = ACTIONS(7717), + [anon_sym_oneway] = ACTIONS(7717), + }, + [4025] = { + [sym_identifier] = ACTIONS(6889), + [anon_sym_COMMA] = ACTIONS(6891), + [anon_sym_RPAREN] = ACTIONS(6891), + [anon_sym_LPAREN2] = ACTIONS(6891), + [anon_sym_STAR] = ACTIONS(6891), + [anon_sym_CARET] = ACTIONS(6891), + [anon_sym_GT] = ACTIONS(6891), + [anon_sym_LT] = ACTIONS(6891), + [anon_sym___extension__] = ACTIONS(6889), + [anon_sym___attribute__] = ACTIONS(6889), + [anon_sym___attribute] = ACTIONS(6889), + [anon_sym_noreturn] = ACTIONS(6889), + [anon_sym_LBRACK] = ACTIONS(6891), + [anon_sym___based] = ACTIONS(6889), + [anon_sym_LBRACE] = ACTIONS(6891), + [anon_sym_signed] = ACTIONS(6889), + [anon_sym_unsigned] = ACTIONS(6889), + [anon_sym_long] = ACTIONS(6889), + [anon_sym_short] = ACTIONS(6889), + [anon_sym_ATautoreleasepool] = ACTIONS(6891), + [anon_sym_const] = ACTIONS(6889), + [anon_sym_constexpr] = ACTIONS(6889), + [anon_sym_volatile] = ACTIONS(6889), + [anon_sym_restrict] = ACTIONS(6889), + [anon_sym___restrict__] = ACTIONS(6889), + [anon_sym__Atomic] = ACTIONS(6889), + [anon_sym__Noreturn] = ACTIONS(6889), + [anon_sym__Nonnull] = ACTIONS(6889), + [anon_sym_nullable] = ACTIONS(6889), + [anon_sym__Complex] = ACTIONS(6889), + [anon_sym__Nullable] = ACTIONS(6889), + [anon_sym__Nullable_result] = ACTIONS(6889), + [anon_sym__Null_unspecified] = ACTIONS(6889), + [anon_sym___autoreleasing] = ACTIONS(6889), + [anon_sym___block] = ACTIONS(6889), + [anon_sym___bridge] = ACTIONS(6889), + [anon_sym___bridge_retained] = ACTIONS(6889), + [anon_sym___bridge_transfer] = ACTIONS(6889), + [anon_sym___complex] = ACTIONS(6889), + [anon_sym___const] = ACTIONS(6889), + [anon_sym___imag] = ACTIONS(6889), + [anon_sym___kindof] = ACTIONS(6889), + [anon_sym___nonnull] = ACTIONS(6889), + [anon_sym___nullable] = ACTIONS(6889), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(6889), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(6889), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(6889), + [anon_sym___real] = ACTIONS(6889), + [anon_sym___strong] = ACTIONS(6889), + [anon_sym___unsafe_unretained] = ACTIONS(6889), + [anon_sym___unused] = ACTIONS(6889), + [anon_sym___weak] = ACTIONS(6889), + [anon_sym_alignas] = ACTIONS(6889), + [anon_sym__Alignas] = ACTIONS(6889), + [sym_primitive_type] = ACTIONS(6889), + [anon_sym_enum] = ACTIONS(6889), + [anon_sym_struct] = ACTIONS(6889), + [anon_sym_union] = ACTIONS(6889), + [anon_sym_in] = ACTIONS(6889), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(6889), + [anon_sym___typeof] = ACTIONS(6889), + [anon_sym_typeof] = ACTIONS(6889), + [anon_sym_BOOL] = ACTIONS(6889), + [anon_sym_IMP] = ACTIONS(6889), + [anon_sym_SEL] = ACTIONS(6889), + [anon_sym_Class] = ACTIONS(6889), + [anon_sym_id] = ACTIONS(6889), + [anon_sym_out] = ACTIONS(6889), + [anon_sym_inout] = ACTIONS(6889), + [anon_sym_bycopy] = ACTIONS(6889), + [anon_sym_byref] = ACTIONS(6889), + [anon_sym_oneway] = ACTIONS(6889), + }, + [4026] = { + [sym__type_definition_type] = STATE(4782), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4027] = { + [sym__type_definition_type] = STATE(4771), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4028] = { + [sym__type_definition_type] = STATE(4747), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4029] = { + [sym__type_definition_type] = STATE(4795), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4030] = { + [sym__type_definition_type] = STATE(4812), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4031] = { + [sym__type_definition_type] = STATE(4749), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4032] = { + [sym__type_definition_type] = STATE(4777), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4033] = { + [sym_attribute_specifier] = STATE(3999), + [sym_enumerator_list] = STATE(3854), + [sym_identifier] = ACTIONS(7686), + [anon_sym_LPAREN2] = ACTIONS(7688), + [anon_sym_STAR] = ACTIONS(7688), + [anon_sym_CARET] = ACTIONS(7688), + [anon_sym_LT] = ACTIONS(7688), + [anon_sym___extension__] = ACTIONS(7686), + [anon_sym___attribute__] = ACTIONS(9025), + [anon_sym___attribute] = ACTIONS(9025), + [anon_sym_noreturn] = ACTIONS(7686), + [anon_sym_LBRACK] = ACTIONS(7688), + [anon_sym___based] = ACTIONS(7686), + [anon_sym_LBRACE] = ACTIONS(9058), + [anon_sym_signed] = ACTIONS(7686), + [anon_sym_unsigned] = ACTIONS(7686), + [anon_sym_long] = ACTIONS(7686), + [anon_sym_short] = ACTIONS(7686), + [anon_sym_ATautoreleasepool] = ACTIONS(7688), + [anon_sym_const] = ACTIONS(7686), + [anon_sym_constexpr] = ACTIONS(7686), + [anon_sym_volatile] = ACTIONS(7686), + [anon_sym_restrict] = ACTIONS(7686), + [anon_sym___restrict__] = ACTIONS(7686), + [anon_sym__Atomic] = ACTIONS(7686), + [anon_sym__Noreturn] = ACTIONS(7686), + [anon_sym__Nonnull] = ACTIONS(7686), + [anon_sym_nullable] = ACTIONS(7686), + [anon_sym__Complex] = ACTIONS(7686), + [anon_sym__Nullable] = ACTIONS(7686), + [anon_sym__Nullable_result] = ACTIONS(7686), + [anon_sym__Null_unspecified] = ACTIONS(7686), + [anon_sym___autoreleasing] = ACTIONS(7686), + [anon_sym___block] = ACTIONS(7686), + [anon_sym___bridge] = ACTIONS(7686), + [anon_sym___bridge_retained] = ACTIONS(7686), + [anon_sym___bridge_transfer] = ACTIONS(7686), + [anon_sym___complex] = ACTIONS(7686), + [anon_sym___const] = ACTIONS(7686), + [anon_sym___imag] = ACTIONS(7686), + [anon_sym___kindof] = ACTIONS(7686), + [anon_sym___nonnull] = ACTIONS(7686), + [anon_sym___nullable] = ACTIONS(7686), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7686), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7686), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7686), + [anon_sym___real] = ACTIONS(7686), + [anon_sym___strong] = ACTIONS(7686), + [anon_sym___unsafe_unretained] = ACTIONS(7686), + [anon_sym___unused] = ACTIONS(7686), + [anon_sym___weak] = ACTIONS(7686), + [anon_sym_alignas] = ACTIONS(7686), + [anon_sym__Alignas] = ACTIONS(7686), + [sym_primitive_type] = ACTIONS(7686), + [anon_sym_enum] = ACTIONS(7686), + [anon_sym_struct] = ACTIONS(7686), + [anon_sym_union] = ACTIONS(7686), + [anon_sym_in] = ACTIONS(7686), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7686), + [anon_sym___typeof] = ACTIONS(7686), + [anon_sym_typeof] = ACTIONS(7686), + [anon_sym_BOOL] = ACTIONS(7686), + [anon_sym_IMP] = ACTIONS(7686), + [anon_sym_SEL] = ACTIONS(7686), + [anon_sym_Class] = ACTIONS(7686), + [anon_sym_id] = ACTIONS(7686), + [anon_sym_out] = ACTIONS(7686), + [anon_sym_inout] = ACTIONS(7686), + [anon_sym_bycopy] = ACTIONS(7686), + [anon_sym_byref] = ACTIONS(7686), + [anon_sym_oneway] = ACTIONS(7686), + }, + [4034] = { + [sym__type_definition_type] = STATE(4779), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4035] = { + [sym__type_definition_type] = STATE(4781), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4036] = { + [sym__type_definition_type] = STATE(4785), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4037] = { + [sym__type_definition_type] = STATE(4810), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4038] = { + [sym_attribute_specifier] = STATE(3987), + [sym_enumerator_list] = STATE(3866), + [sym_identifier] = ACTIONS(7631), + [anon_sym_LPAREN2] = ACTIONS(7633), + [anon_sym_STAR] = ACTIONS(7633), + [anon_sym_CARET] = ACTIONS(7633), + [anon_sym_LT] = ACTIONS(7633), + [anon_sym___extension__] = ACTIONS(7631), + [anon_sym___attribute__] = ACTIONS(8962), + [anon_sym___attribute] = ACTIONS(8962), + [anon_sym_noreturn] = ACTIONS(7631), + [anon_sym_LBRACK] = ACTIONS(7633), + [anon_sym___based] = ACTIONS(7631), + [anon_sym_LBRACE] = ACTIONS(9061), + [anon_sym_signed] = ACTIONS(7631), + [anon_sym_unsigned] = ACTIONS(7631), + [anon_sym_long] = ACTIONS(7631), + [anon_sym_short] = ACTIONS(7631), + [anon_sym_ATautoreleasepool] = ACTIONS(7633), + [anon_sym_const] = ACTIONS(7631), + [anon_sym_constexpr] = ACTIONS(7631), + [anon_sym_volatile] = ACTIONS(7631), + [anon_sym_restrict] = ACTIONS(7631), + [anon_sym___restrict__] = ACTIONS(7631), + [anon_sym__Atomic] = ACTIONS(7631), + [anon_sym__Noreturn] = ACTIONS(7631), + [anon_sym__Nonnull] = ACTIONS(7631), + [anon_sym_nullable] = ACTIONS(7631), + [anon_sym__Complex] = ACTIONS(7631), + [anon_sym__Nullable] = ACTIONS(7631), + [anon_sym__Nullable_result] = ACTIONS(7631), + [anon_sym__Null_unspecified] = ACTIONS(7631), + [anon_sym___autoreleasing] = ACTIONS(7631), + [anon_sym___block] = ACTIONS(7631), + [anon_sym___bridge] = ACTIONS(7631), + [anon_sym___bridge_retained] = ACTIONS(7631), + [anon_sym___bridge_transfer] = ACTIONS(7631), + [anon_sym___complex] = ACTIONS(7631), + [anon_sym___const] = ACTIONS(7631), + [anon_sym___imag] = ACTIONS(7631), + [anon_sym___kindof] = ACTIONS(7631), + [anon_sym___nonnull] = ACTIONS(7631), + [anon_sym___nullable] = ACTIONS(7631), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7631), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7631), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7631), + [anon_sym___real] = ACTIONS(7631), + [anon_sym___strong] = ACTIONS(7631), + [anon_sym___unsafe_unretained] = ACTIONS(7631), + [anon_sym___unused] = ACTIONS(7631), + [anon_sym___weak] = ACTIONS(7631), + [anon_sym_alignas] = ACTIONS(7631), + [anon_sym__Alignas] = ACTIONS(7631), + [sym_primitive_type] = ACTIONS(7631), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_struct] = ACTIONS(7631), + [anon_sym_union] = ACTIONS(7631), + [anon_sym_in] = ACTIONS(7631), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7631), + [anon_sym___typeof] = ACTIONS(7631), + [anon_sym_typeof] = ACTIONS(7631), + [anon_sym_BOOL] = ACTIONS(7631), + [anon_sym_IMP] = ACTIONS(7631), + [anon_sym_SEL] = ACTIONS(7631), + [anon_sym_Class] = ACTIONS(7631), + [anon_sym_id] = ACTIONS(7631), + [anon_sym_out] = ACTIONS(7631), + [anon_sym_inout] = ACTIONS(7631), + [anon_sym_bycopy] = ACTIONS(7631), + [anon_sym_byref] = ACTIONS(7631), + [anon_sym_oneway] = ACTIONS(7631), + }, + [4039] = { + [sym__type_definition_type] = STATE(4751), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4040] = { + [sym_attribute_specifier] = STATE(3863), + [sym_enumerator_list] = STATE(3855), + [sym_identifier] = ACTIONS(7693), + [anon_sym_LPAREN2] = ACTIONS(7695), + [anon_sym_STAR] = ACTIONS(7695), + [anon_sym_CARET] = ACTIONS(7695), + [anon_sym_LT] = ACTIONS(7695), + [anon_sym___extension__] = ACTIONS(7693), + [anon_sym___attribute__] = ACTIONS(9032), + [anon_sym___attribute] = ACTIONS(9032), + [anon_sym_noreturn] = ACTIONS(7693), + [anon_sym_LBRACK] = ACTIONS(7695), + [anon_sym___based] = ACTIONS(7693), + [anon_sym_LBRACE] = ACTIONS(9064), + [anon_sym_signed] = ACTIONS(7693), + [anon_sym_unsigned] = ACTIONS(7693), + [anon_sym_long] = ACTIONS(7693), + [anon_sym_short] = ACTIONS(7693), + [anon_sym_ATautoreleasepool] = ACTIONS(7695), + [anon_sym_const] = ACTIONS(7693), + [anon_sym_constexpr] = ACTIONS(7693), + [anon_sym_volatile] = ACTIONS(7693), + [anon_sym_restrict] = ACTIONS(7693), + [anon_sym___restrict__] = ACTIONS(7693), + [anon_sym__Atomic] = ACTIONS(7693), + [anon_sym__Noreturn] = ACTIONS(7693), + [anon_sym__Nonnull] = ACTIONS(7693), + [anon_sym_nullable] = ACTIONS(7693), + [anon_sym__Complex] = ACTIONS(7693), + [anon_sym__Nullable] = ACTIONS(7693), + [anon_sym__Nullable_result] = ACTIONS(7693), + [anon_sym__Null_unspecified] = ACTIONS(7693), + [anon_sym___autoreleasing] = ACTIONS(7693), + [anon_sym___block] = ACTIONS(7693), + [anon_sym___bridge] = ACTIONS(7693), + [anon_sym___bridge_retained] = ACTIONS(7693), + [anon_sym___bridge_transfer] = ACTIONS(7693), + [anon_sym___complex] = ACTIONS(7693), + [anon_sym___const] = ACTIONS(7693), + [anon_sym___imag] = ACTIONS(7693), + [anon_sym___kindof] = ACTIONS(7693), + [anon_sym___nonnull] = ACTIONS(7693), + [anon_sym___nullable] = ACTIONS(7693), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7693), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7693), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7693), + [anon_sym___real] = ACTIONS(7693), + [anon_sym___strong] = ACTIONS(7693), + [anon_sym___unsafe_unretained] = ACTIONS(7693), + [anon_sym___unused] = ACTIONS(7693), + [anon_sym___weak] = ACTIONS(7693), + [anon_sym_alignas] = ACTIONS(7693), + [anon_sym__Alignas] = ACTIONS(7693), + [sym_primitive_type] = ACTIONS(7693), + [anon_sym_enum] = ACTIONS(7693), + [anon_sym_struct] = ACTIONS(7693), + [anon_sym_union] = ACTIONS(7693), + [anon_sym_in] = ACTIONS(7693), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7693), + [anon_sym___typeof] = ACTIONS(7693), + [anon_sym_typeof] = ACTIONS(7693), + [anon_sym_BOOL] = ACTIONS(7693), + [anon_sym_IMP] = ACTIONS(7693), + [anon_sym_SEL] = ACTIONS(7693), + [anon_sym_Class] = ACTIONS(7693), + [anon_sym_id] = ACTIONS(7693), + [anon_sym_out] = ACTIONS(7693), + [anon_sym_inout] = ACTIONS(7693), + [anon_sym_bycopy] = ACTIONS(7693), + [anon_sym_byref] = ACTIONS(7693), + [anon_sym_oneway] = ACTIONS(7693), + }, + [4041] = { + [sym__type_definition_type] = STATE(4715), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4042] = { + [sym__type_definition_type] = STATE(4732), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4043] = { + [sym__type_definition_type] = STATE(4755), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4044] = { + [sym__type_definition_type] = STATE(4811), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4045] = { + [sym__type_definition_type] = STATE(4717), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4046] = { + [sym__type_definition_type] = STATE(4741), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4047] = { + [sym_attribute_specifier] = STATE(3990), + [sym_enumerator_list] = STATE(3867), + [sym_identifier] = ACTIONS(7640), + [anon_sym_LPAREN2] = ACTIONS(7642), + [anon_sym_STAR] = ACTIONS(7642), + [anon_sym_CARET] = ACTIONS(7642), + [anon_sym_LT] = ACTIONS(7642), + [anon_sym___extension__] = ACTIONS(7640), + [anon_sym___attribute__] = ACTIONS(8974), + [anon_sym___attribute] = ACTIONS(8974), + [anon_sym_noreturn] = ACTIONS(7640), + [anon_sym_LBRACK] = ACTIONS(7642), + [anon_sym___based] = ACTIONS(7640), + [anon_sym_LBRACE] = ACTIONS(9067), + [anon_sym_signed] = ACTIONS(7640), + [anon_sym_unsigned] = ACTIONS(7640), + [anon_sym_long] = ACTIONS(7640), + [anon_sym_short] = ACTIONS(7640), + [anon_sym_ATautoreleasepool] = ACTIONS(7642), + [anon_sym_const] = ACTIONS(7640), + [anon_sym_constexpr] = ACTIONS(7640), + [anon_sym_volatile] = ACTIONS(7640), + [anon_sym_restrict] = ACTIONS(7640), + [anon_sym___restrict__] = ACTIONS(7640), + [anon_sym__Atomic] = ACTIONS(7640), + [anon_sym__Noreturn] = ACTIONS(7640), + [anon_sym__Nonnull] = ACTIONS(7640), + [anon_sym_nullable] = ACTIONS(7640), + [anon_sym__Complex] = ACTIONS(7640), + [anon_sym__Nullable] = ACTIONS(7640), + [anon_sym__Nullable_result] = ACTIONS(7640), + [anon_sym__Null_unspecified] = ACTIONS(7640), + [anon_sym___autoreleasing] = ACTIONS(7640), + [anon_sym___block] = ACTIONS(7640), + [anon_sym___bridge] = ACTIONS(7640), + [anon_sym___bridge_retained] = ACTIONS(7640), + [anon_sym___bridge_transfer] = ACTIONS(7640), + [anon_sym___complex] = ACTIONS(7640), + [anon_sym___const] = ACTIONS(7640), + [anon_sym___imag] = ACTIONS(7640), + [anon_sym___kindof] = ACTIONS(7640), + [anon_sym___nonnull] = ACTIONS(7640), + [anon_sym___nullable] = ACTIONS(7640), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7640), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7640), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7640), + [anon_sym___real] = ACTIONS(7640), + [anon_sym___strong] = ACTIONS(7640), + [anon_sym___unsafe_unretained] = ACTIONS(7640), + [anon_sym___unused] = ACTIONS(7640), + [anon_sym___weak] = ACTIONS(7640), + [anon_sym_alignas] = ACTIONS(7640), + [anon_sym__Alignas] = ACTIONS(7640), + [sym_primitive_type] = ACTIONS(7640), + [anon_sym_enum] = ACTIONS(7640), + [anon_sym_struct] = ACTIONS(7640), + [anon_sym_union] = ACTIONS(7640), + [anon_sym_in] = ACTIONS(7640), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7640), + [anon_sym___typeof] = ACTIONS(7640), + [anon_sym_typeof] = ACTIONS(7640), + [anon_sym_BOOL] = ACTIONS(7640), + [anon_sym_IMP] = ACTIONS(7640), + [anon_sym_SEL] = ACTIONS(7640), + [anon_sym_Class] = ACTIONS(7640), + [anon_sym_id] = ACTIONS(7640), + [anon_sym_out] = ACTIONS(7640), + [anon_sym_inout] = ACTIONS(7640), + [anon_sym_bycopy] = ACTIONS(7640), + [anon_sym_byref] = ACTIONS(7640), + [anon_sym_oneway] = ACTIONS(7640), + }, + [4048] = { + [sym__type_definition_type] = STATE(4757), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4049] = { + [sym__type_definition_type] = STATE(4798), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4050] = { + [sym_attribute_specifier] = STATE(3862), + [sym_enumerator_list] = STATE(3904), + [sym_identifier] = ACTIONS(7659), + [anon_sym_LPAREN2] = ACTIONS(7661), + [anon_sym_STAR] = ACTIONS(7661), + [anon_sym_CARET] = ACTIONS(7661), + [anon_sym_LT] = ACTIONS(7661), + [anon_sym___extension__] = ACTIONS(7659), + [anon_sym___attribute__] = ACTIONS(8989), + [anon_sym___attribute] = ACTIONS(8989), + [anon_sym_noreturn] = ACTIONS(7659), + [anon_sym_LBRACK] = ACTIONS(7661), + [anon_sym___based] = ACTIONS(7659), + [anon_sym_LBRACE] = ACTIONS(9070), + [anon_sym_signed] = ACTIONS(7659), + [anon_sym_unsigned] = ACTIONS(7659), + [anon_sym_long] = ACTIONS(7659), + [anon_sym_short] = ACTIONS(7659), + [anon_sym_ATautoreleasepool] = ACTIONS(7661), + [anon_sym_const] = ACTIONS(7659), + [anon_sym_constexpr] = ACTIONS(7659), + [anon_sym_volatile] = ACTIONS(7659), + [anon_sym_restrict] = ACTIONS(7659), + [anon_sym___restrict__] = ACTIONS(7659), + [anon_sym__Atomic] = ACTIONS(7659), + [anon_sym__Noreturn] = ACTIONS(7659), + [anon_sym__Nonnull] = ACTIONS(7659), + [anon_sym_nullable] = ACTIONS(7659), + [anon_sym__Complex] = ACTIONS(7659), + [anon_sym__Nullable] = ACTIONS(7659), + [anon_sym__Nullable_result] = ACTIONS(7659), + [anon_sym__Null_unspecified] = ACTIONS(7659), + [anon_sym___autoreleasing] = ACTIONS(7659), + [anon_sym___block] = ACTIONS(7659), + [anon_sym___bridge] = ACTIONS(7659), + [anon_sym___bridge_retained] = ACTIONS(7659), + [anon_sym___bridge_transfer] = ACTIONS(7659), + [anon_sym___complex] = ACTIONS(7659), + [anon_sym___const] = ACTIONS(7659), + [anon_sym___imag] = ACTIONS(7659), + [anon_sym___kindof] = ACTIONS(7659), + [anon_sym___nonnull] = ACTIONS(7659), + [anon_sym___nullable] = ACTIONS(7659), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7659), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7659), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7659), + [anon_sym___real] = ACTIONS(7659), + [anon_sym___strong] = ACTIONS(7659), + [anon_sym___unsafe_unretained] = ACTIONS(7659), + [anon_sym___unused] = ACTIONS(7659), + [anon_sym___weak] = ACTIONS(7659), + [anon_sym_alignas] = ACTIONS(7659), + [anon_sym__Alignas] = ACTIONS(7659), + [sym_primitive_type] = ACTIONS(7659), + [anon_sym_enum] = ACTIONS(7659), + [anon_sym_struct] = ACTIONS(7659), + [anon_sym_union] = ACTIONS(7659), + [anon_sym_in] = ACTIONS(7659), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7659), + [anon_sym___typeof] = ACTIONS(7659), + [anon_sym_typeof] = ACTIONS(7659), + [anon_sym_BOOL] = ACTIONS(7659), + [anon_sym_IMP] = ACTIONS(7659), + [anon_sym_SEL] = ACTIONS(7659), + [anon_sym_Class] = ACTIONS(7659), + [anon_sym_id] = ACTIONS(7659), + [anon_sym_out] = ACTIONS(7659), + [anon_sym_inout] = ACTIONS(7659), + [anon_sym_bycopy] = ACTIONS(7659), + [anon_sym_byref] = ACTIONS(7659), + [anon_sym_oneway] = ACTIONS(7659), + }, + [4051] = { + [sym__type_definition_type] = STATE(4759), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4052] = { + [sym__type_definition_type] = STATE(4761), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4053] = { + [sym__type_definition_type] = STATE(4807), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4054] = { + [sym__type_definition_type] = STATE(4724), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4055] = { + [sym__type_definition_type] = STATE(4799), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4056] = { + [sym__type_definition_type] = STATE(4765), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4057] = { + [sym__type_definition_type] = STATE(4726), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4058] = { + [sym__type_definition_type] = STATE(4728), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4059] = { + [sym_attribute_specifier] = STATE(3865), + [sym_enumerator_list] = STATE(3905), + [sym_identifier] = ACTIONS(7668), + [anon_sym_LPAREN2] = ACTIONS(7670), + [anon_sym_STAR] = ACTIONS(7670), + [anon_sym_CARET] = ACTIONS(7670), + [anon_sym_LT] = ACTIONS(7670), + [anon_sym___extension__] = ACTIONS(7668), + [anon_sym___attribute__] = ACTIONS(8992), + [anon_sym___attribute] = ACTIONS(8992), + [anon_sym_noreturn] = ACTIONS(7668), + [anon_sym_LBRACK] = ACTIONS(7670), + [anon_sym___based] = ACTIONS(7668), + [anon_sym_LBRACE] = ACTIONS(9073), + [anon_sym_signed] = ACTIONS(7668), + [anon_sym_unsigned] = ACTIONS(7668), + [anon_sym_long] = ACTIONS(7668), + [anon_sym_short] = ACTIONS(7668), + [anon_sym_ATautoreleasepool] = ACTIONS(7670), + [anon_sym_const] = ACTIONS(7668), + [anon_sym_constexpr] = ACTIONS(7668), + [anon_sym_volatile] = ACTIONS(7668), + [anon_sym_restrict] = ACTIONS(7668), + [anon_sym___restrict__] = ACTIONS(7668), + [anon_sym__Atomic] = ACTIONS(7668), + [anon_sym__Noreturn] = ACTIONS(7668), + [anon_sym__Nonnull] = ACTIONS(7668), + [anon_sym_nullable] = ACTIONS(7668), + [anon_sym__Complex] = ACTIONS(7668), + [anon_sym__Nullable] = ACTIONS(7668), + [anon_sym__Nullable_result] = ACTIONS(7668), + [anon_sym__Null_unspecified] = ACTIONS(7668), + [anon_sym___autoreleasing] = ACTIONS(7668), + [anon_sym___block] = ACTIONS(7668), + [anon_sym___bridge] = ACTIONS(7668), + [anon_sym___bridge_retained] = ACTIONS(7668), + [anon_sym___bridge_transfer] = ACTIONS(7668), + [anon_sym___complex] = ACTIONS(7668), + [anon_sym___const] = ACTIONS(7668), + [anon_sym___imag] = ACTIONS(7668), + [anon_sym___kindof] = ACTIONS(7668), + [anon_sym___nonnull] = ACTIONS(7668), + [anon_sym___nullable] = ACTIONS(7668), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7668), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7668), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7668), + [anon_sym___real] = ACTIONS(7668), + [anon_sym___strong] = ACTIONS(7668), + [anon_sym___unsafe_unretained] = ACTIONS(7668), + [anon_sym___unused] = ACTIONS(7668), + [anon_sym___weak] = ACTIONS(7668), + [anon_sym_alignas] = ACTIONS(7668), + [anon_sym__Alignas] = ACTIONS(7668), + [sym_primitive_type] = ACTIONS(7668), + [anon_sym_enum] = ACTIONS(7668), + [anon_sym_struct] = ACTIONS(7668), + [anon_sym_union] = ACTIONS(7668), + [anon_sym_in] = ACTIONS(7668), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7668), + [anon_sym___typeof] = ACTIONS(7668), + [anon_sym_typeof] = ACTIONS(7668), + [anon_sym_BOOL] = ACTIONS(7668), + [anon_sym_IMP] = ACTIONS(7668), + [anon_sym_SEL] = ACTIONS(7668), + [anon_sym_Class] = ACTIONS(7668), + [anon_sym_id] = ACTIONS(7668), + [anon_sym_out] = ACTIONS(7668), + [anon_sym_inout] = ACTIONS(7668), + [anon_sym_bycopy] = ACTIONS(7668), + [anon_sym_byref] = ACTIONS(7668), + [anon_sym_oneway] = ACTIONS(7668), + }, + [4060] = { + [sym__type_definition_type] = STATE(4793), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4061] = { + [sym__type_definition_type] = STATE(4730), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4062] = { + [sym__type_definition_type] = STATE(4739), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4063] = { + [sym__type_definition_type] = STATE(4767), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4064] = { + [sym__type_definition_type] = STATE(4735), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4065] = { + [sym__type_definition_type] = STATE(4789), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4066] = { + [sym__type_definition_type] = STATE(4792), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4067] = { + [sym__type_definition_type] = STATE(4745), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4068] = { + [sym__type_definition_type] = STATE(4737), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4069] = { + [sym__type_definition_type] = STATE(4769), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4070] = { + [sym__type_definition_type] = STATE(4802), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4071] = { + [sym__type_definition_type] = STATE(4719), + [sym_attribute_specifier] = STATE(4546), + [sym_type_qualifier] = STATE(4076), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4216), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4076), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4072] = { + [sym_identifier] = ACTIONS(2752), + [aux_sym_preproc_if_token1] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2754), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2754), + [anon_sym___extension__] = ACTIONS(2752), + [anon_sym___attribute__] = ACTIONS(2752), + [anon_sym___attribute] = ACTIONS(2752), + [anon_sym_noreturn] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym_RBRACE] = ACTIONS(2754), + [anon_sym_signed] = ACTIONS(2752), + [anon_sym_unsigned] = ACTIONS(2752), + [anon_sym_long] = ACTIONS(2752), + [anon_sym_short] = ACTIONS(2752), + [anon_sym_const] = ACTIONS(2752), + [anon_sym_constexpr] = ACTIONS(2752), + [anon_sym_volatile] = ACTIONS(2752), + [anon_sym_restrict] = ACTIONS(2752), + [anon_sym___restrict__] = ACTIONS(2752), + [anon_sym__Atomic] = ACTIONS(2752), + [anon_sym__Noreturn] = ACTIONS(2752), + [anon_sym__Nonnull] = ACTIONS(2752), + [anon_sym_nullable] = ACTIONS(2752), + [anon_sym__Complex] = ACTIONS(2752), + [anon_sym__Nullable] = ACTIONS(2752), + [anon_sym__Nullable_result] = ACTIONS(2752), + [anon_sym__Null_unspecified] = ACTIONS(2752), + [anon_sym___autoreleasing] = ACTIONS(2752), + [anon_sym___block] = ACTIONS(2752), + [anon_sym___bridge] = ACTIONS(2752), + [anon_sym___bridge_retained] = ACTIONS(2752), + [anon_sym___bridge_transfer] = ACTIONS(2752), + [anon_sym___complex] = ACTIONS(2752), + [anon_sym___const] = ACTIONS(2752), + [anon_sym___imag] = ACTIONS(2752), + [anon_sym___kindof] = ACTIONS(2752), + [anon_sym___nonnull] = ACTIONS(2752), + [anon_sym___nullable] = ACTIONS(2752), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2752), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2752), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2752), + [anon_sym___real] = ACTIONS(2752), + [anon_sym___strong] = ACTIONS(2752), + [anon_sym___unsafe_unretained] = ACTIONS(2752), + [anon_sym___unused] = ACTIONS(2752), + [anon_sym___weak] = ACTIONS(2752), + [anon_sym_alignas] = ACTIONS(2752), + [anon_sym__Alignas] = ACTIONS(2752), + [sym_primitive_type] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2752), + [anon_sym_union] = ACTIONS(2752), + [anon_sym_in] = ACTIONS(2752), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2752), + [anon_sym___typeof] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(2752), + [anon_sym_ATprivate] = ACTIONS(2754), + [anon_sym_ATprotected] = ACTIONS(2754), + [anon_sym_ATpackage] = ACTIONS(2754), + [anon_sym_ATpublic] = ACTIONS(2754), + [anon_sym_BOOL] = ACTIONS(2752), + [anon_sym_IMP] = ACTIONS(2752), + [anon_sym_SEL] = ACTIONS(2752), + [anon_sym_Class] = ACTIONS(2752), + [anon_sym_id] = ACTIONS(2752), + [anon_sym_out] = ACTIONS(2752), + [anon_sym_inout] = ACTIONS(2752), + [anon_sym_bycopy] = ACTIONS(2752), + [anon_sym_byref] = ACTIONS(2752), + [anon_sym_oneway] = ACTIONS(2752), + }, + [4073] = { + [sym_attribute_specifier] = STATE(3990), + [sym_enumerator_list] = STATE(4114), + [sym_identifier] = ACTIONS(7640), + [anon_sym_LPAREN2] = ACTIONS(7642), + [anon_sym_STAR] = ACTIONS(7642), + [anon_sym_CARET] = ACTIONS(7642), + [anon_sym___extension__] = ACTIONS(7640), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7640), + [anon_sym_LBRACK] = ACTIONS(7642), + [anon_sym___based] = ACTIONS(7640), + [anon_sym_LBRACE] = ACTIONS(8913), + [anon_sym_signed] = ACTIONS(7640), + [anon_sym_unsigned] = ACTIONS(7640), + [anon_sym_long] = ACTIONS(7640), + [anon_sym_short] = ACTIONS(7640), + [anon_sym_const] = ACTIONS(7640), + [anon_sym_constexpr] = ACTIONS(7640), + [anon_sym_volatile] = ACTIONS(7640), + [anon_sym_restrict] = ACTIONS(7640), + [anon_sym___restrict__] = ACTIONS(7640), + [anon_sym__Atomic] = ACTIONS(7640), + [anon_sym__Noreturn] = ACTIONS(7640), + [anon_sym__Nonnull] = ACTIONS(7640), + [anon_sym_nullable] = ACTIONS(7640), + [anon_sym__Complex] = ACTIONS(7640), + [anon_sym__Nullable] = ACTIONS(7640), + [anon_sym__Nullable_result] = ACTIONS(7640), + [anon_sym__Null_unspecified] = ACTIONS(7640), + [anon_sym___autoreleasing] = ACTIONS(7640), + [anon_sym___block] = ACTIONS(7640), + [anon_sym___bridge] = ACTIONS(7640), + [anon_sym___bridge_retained] = ACTIONS(7640), + [anon_sym___bridge_transfer] = ACTIONS(7640), + [anon_sym___complex] = ACTIONS(7640), + [anon_sym___const] = ACTIONS(7640), + [anon_sym___imag] = ACTIONS(7640), + [anon_sym___kindof] = ACTIONS(7640), + [anon_sym___nonnull] = ACTIONS(7640), + [anon_sym___nullable] = ACTIONS(7640), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7640), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7640), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7640), + [anon_sym___real] = ACTIONS(7640), + [anon_sym___strong] = ACTIONS(7640), + [anon_sym___unsafe_unretained] = ACTIONS(7640), + [anon_sym___unused] = ACTIONS(7640), + [anon_sym___weak] = ACTIONS(7640), + [anon_sym_alignas] = ACTIONS(7640), + [anon_sym__Alignas] = ACTIONS(7640), + [sym_primitive_type] = ACTIONS(7640), + [anon_sym_enum] = ACTIONS(7640), + [anon_sym_COLON] = ACTIONS(7642), + [anon_sym_struct] = ACTIONS(7640), + [anon_sym_union] = ACTIONS(7640), + [anon_sym_in] = ACTIONS(7640), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7640), + [anon_sym___typeof] = ACTIONS(7640), + [anon_sym_typeof] = ACTIONS(7640), + [anon_sym_BOOL] = ACTIONS(7640), + [anon_sym_IMP] = ACTIONS(7640), + [anon_sym_SEL] = ACTIONS(7640), + [anon_sym_Class] = ACTIONS(7640), + [anon_sym_id] = ACTIONS(7640), + [anon_sym_out] = ACTIONS(7640), + [anon_sym_inout] = ACTIONS(7640), + [anon_sym_bycopy] = ACTIONS(7640), + [anon_sym_byref] = ACTIONS(7640), + [anon_sym_oneway] = ACTIONS(7640), + }, + [4074] = { + [sym_identifier] = ACTIONS(9076), + [aux_sym_preproc_if_token1] = ACTIONS(9076), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9078), + [anon_sym___extension__] = ACTIONS(9076), + [anon_sym___attribute__] = ACTIONS(9076), + [anon_sym___attribute] = ACTIONS(9076), + [anon_sym_noreturn] = ACTIONS(9076), + [anon_sym_LBRACK] = ACTIONS(9078), + [anon_sym_RBRACE] = ACTIONS(9078), + [anon_sym_signed] = ACTIONS(9076), + [anon_sym_unsigned] = ACTIONS(9076), + [anon_sym_long] = ACTIONS(9076), + [anon_sym_short] = ACTIONS(9076), + [anon_sym_const] = ACTIONS(9076), + [anon_sym_constexpr] = ACTIONS(9076), + [anon_sym_volatile] = ACTIONS(9076), + [anon_sym_restrict] = ACTIONS(9076), + [anon_sym___restrict__] = ACTIONS(9076), + [anon_sym__Atomic] = ACTIONS(9076), + [anon_sym__Noreturn] = ACTIONS(9076), + [anon_sym__Nonnull] = ACTIONS(9076), + [anon_sym_nullable] = ACTIONS(9076), + [anon_sym__Complex] = ACTIONS(9076), + [anon_sym__Nullable] = ACTIONS(9076), + [anon_sym__Nullable_result] = ACTIONS(9076), + [anon_sym__Null_unspecified] = ACTIONS(9076), + [anon_sym___autoreleasing] = ACTIONS(9076), + [anon_sym___block] = ACTIONS(9076), + [anon_sym___bridge] = ACTIONS(9076), + [anon_sym___bridge_retained] = ACTIONS(9076), + [anon_sym___bridge_transfer] = ACTIONS(9076), + [anon_sym___complex] = ACTIONS(9076), + [anon_sym___const] = ACTIONS(9076), + [anon_sym___imag] = ACTIONS(9076), + [anon_sym___kindof] = ACTIONS(9076), + [anon_sym___nonnull] = ACTIONS(9076), + [anon_sym___nullable] = ACTIONS(9076), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(9076), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(9076), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(9076), + [anon_sym___real] = ACTIONS(9076), + [anon_sym___strong] = ACTIONS(9076), + [anon_sym___unsafe_unretained] = ACTIONS(9076), + [anon_sym___unused] = ACTIONS(9076), + [anon_sym___weak] = ACTIONS(9076), + [anon_sym_alignas] = ACTIONS(9076), + [anon_sym__Alignas] = ACTIONS(9076), + [sym_primitive_type] = ACTIONS(9076), + [anon_sym_enum] = ACTIONS(9076), + [anon_sym_struct] = ACTIONS(9076), + [anon_sym_union] = ACTIONS(9076), + [anon_sym_in] = ACTIONS(9076), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(9076), + [anon_sym___typeof] = ACTIONS(9076), + [anon_sym_typeof] = ACTIONS(9076), + [anon_sym_ATprivate] = ACTIONS(9078), + [anon_sym_ATprotected] = ACTIONS(9078), + [anon_sym_ATpackage] = ACTIONS(9078), + [anon_sym_ATpublic] = ACTIONS(9078), + [anon_sym_BOOL] = ACTIONS(9076), + [anon_sym_IMP] = ACTIONS(9076), + [anon_sym_SEL] = ACTIONS(9076), + [anon_sym_Class] = ACTIONS(9076), + [anon_sym_id] = ACTIONS(9076), + [anon_sym_out] = ACTIONS(9076), + [anon_sym_inout] = ACTIONS(9076), + [anon_sym_bycopy] = ACTIONS(9076), + [anon_sym_byref] = ACTIONS(9076), + [anon_sym_oneway] = ACTIONS(9076), + }, + [4075] = { + [sym_identifier] = ACTIONS(5534), + [aux_sym_preproc_if_token1] = ACTIONS(5534), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5536), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5536), + [anon_sym___extension__] = ACTIONS(5534), + [anon_sym___attribute__] = ACTIONS(5534), + [anon_sym___attribute] = ACTIONS(5534), + [anon_sym_noreturn] = ACTIONS(5534), + [anon_sym_LBRACK] = ACTIONS(5536), + [anon_sym_RBRACE] = ACTIONS(5536), + [anon_sym_signed] = ACTIONS(5534), + [anon_sym_unsigned] = ACTIONS(5534), + [anon_sym_long] = ACTIONS(5534), + [anon_sym_short] = ACTIONS(5534), + [anon_sym_const] = ACTIONS(5534), + [anon_sym_constexpr] = ACTIONS(5534), + [anon_sym_volatile] = ACTIONS(5534), + [anon_sym_restrict] = ACTIONS(5534), + [anon_sym___restrict__] = ACTIONS(5534), + [anon_sym__Atomic] = ACTIONS(5534), + [anon_sym__Noreturn] = ACTIONS(5534), + [anon_sym__Nonnull] = ACTIONS(5534), + [anon_sym_nullable] = ACTIONS(5534), + [anon_sym__Complex] = ACTIONS(5534), + [anon_sym__Nullable] = ACTIONS(5534), + [anon_sym__Nullable_result] = ACTIONS(5534), + [anon_sym__Null_unspecified] = ACTIONS(5534), + [anon_sym___autoreleasing] = ACTIONS(5534), + [anon_sym___block] = ACTIONS(5534), + [anon_sym___bridge] = ACTIONS(5534), + [anon_sym___bridge_retained] = ACTIONS(5534), + [anon_sym___bridge_transfer] = ACTIONS(5534), + [anon_sym___complex] = ACTIONS(5534), + [anon_sym___const] = ACTIONS(5534), + [anon_sym___imag] = ACTIONS(5534), + [anon_sym___kindof] = ACTIONS(5534), + [anon_sym___nonnull] = ACTIONS(5534), + [anon_sym___nullable] = ACTIONS(5534), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5534), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5534), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5534), + [anon_sym___real] = ACTIONS(5534), + [anon_sym___strong] = ACTIONS(5534), + [anon_sym___unsafe_unretained] = ACTIONS(5534), + [anon_sym___unused] = ACTIONS(5534), + [anon_sym___weak] = ACTIONS(5534), + [anon_sym_alignas] = ACTIONS(5534), + [anon_sym__Alignas] = ACTIONS(5534), + [sym_primitive_type] = ACTIONS(5534), + [anon_sym_enum] = ACTIONS(5534), + [anon_sym_struct] = ACTIONS(5534), + [anon_sym_union] = ACTIONS(5534), + [anon_sym_in] = ACTIONS(5534), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5534), + [anon_sym___typeof] = ACTIONS(5534), + [anon_sym_typeof] = ACTIONS(5534), + [anon_sym_ATprivate] = ACTIONS(5536), + [anon_sym_ATprotected] = ACTIONS(5536), + [anon_sym_ATpackage] = ACTIONS(5536), + [anon_sym_ATpublic] = ACTIONS(5536), + [anon_sym_BOOL] = ACTIONS(5534), + [anon_sym_IMP] = ACTIONS(5534), + [anon_sym_SEL] = ACTIONS(5534), + [anon_sym_Class] = ACTIONS(5534), + [anon_sym_id] = ACTIONS(5534), + [anon_sym_out] = ACTIONS(5534), + [anon_sym_inout] = ACTIONS(5534), + [anon_sym_bycopy] = ACTIONS(5534), + [anon_sym_byref] = ACTIONS(5534), + [anon_sym_oneway] = ACTIONS(5534), + }, + [4076] = { + [sym_attribute_specifier] = STATE(4588), + [sym_type_qualifier] = STATE(2508), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4201), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(2508), + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(8977), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym___attribute] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(8979), + [anon_sym_unsigned] = ACTIONS(8979), + [anon_sym_long] = ACTIONS(8979), + [anon_sym_short] = ACTIONS(8979), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(8981), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4077] = { + [sym_attribute_specifier] = STATE(3993), + [sym_enumerator_list] = STATE(4120), + [sym_identifier] = ACTIONS(7764), + [anon_sym_LPAREN2] = ACTIONS(7766), + [anon_sym_STAR] = ACTIONS(7766), + [anon_sym_CARET] = ACTIONS(7766), + [anon_sym___extension__] = ACTIONS(7764), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7764), + [anon_sym_LBRACK] = ACTIONS(7766), + [anon_sym___based] = ACTIONS(7764), + [anon_sym_LBRACE] = ACTIONS(8913), + [anon_sym_signed] = ACTIONS(7764), + [anon_sym_unsigned] = ACTIONS(7764), + [anon_sym_long] = ACTIONS(7764), + [anon_sym_short] = ACTIONS(7764), + [anon_sym_const] = ACTIONS(7764), + [anon_sym_constexpr] = ACTIONS(7764), + [anon_sym_volatile] = ACTIONS(7764), + [anon_sym_restrict] = ACTIONS(7764), + [anon_sym___restrict__] = ACTIONS(7764), + [anon_sym__Atomic] = ACTIONS(7764), + [anon_sym__Noreturn] = ACTIONS(7764), + [anon_sym__Nonnull] = ACTIONS(7764), + [anon_sym_nullable] = ACTIONS(7764), + [anon_sym__Complex] = ACTIONS(7764), + [anon_sym__Nullable] = ACTIONS(7764), + [anon_sym__Nullable_result] = ACTIONS(7764), + [anon_sym__Null_unspecified] = ACTIONS(7764), + [anon_sym___autoreleasing] = ACTIONS(7764), + [anon_sym___block] = ACTIONS(7764), + [anon_sym___bridge] = ACTIONS(7764), + [anon_sym___bridge_retained] = ACTIONS(7764), + [anon_sym___bridge_transfer] = ACTIONS(7764), + [anon_sym___complex] = ACTIONS(7764), + [anon_sym___const] = ACTIONS(7764), + [anon_sym___imag] = ACTIONS(7764), + [anon_sym___kindof] = ACTIONS(7764), + [anon_sym___nonnull] = ACTIONS(7764), + [anon_sym___nullable] = ACTIONS(7764), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7764), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7764), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7764), + [anon_sym___real] = ACTIONS(7764), + [anon_sym___strong] = ACTIONS(7764), + [anon_sym___unsafe_unretained] = ACTIONS(7764), + [anon_sym___unused] = ACTIONS(7764), + [anon_sym___weak] = ACTIONS(7764), + [anon_sym_alignas] = ACTIONS(7764), + [anon_sym__Alignas] = ACTIONS(7764), + [sym_primitive_type] = ACTIONS(7764), + [anon_sym_enum] = ACTIONS(7764), + [anon_sym_COLON] = ACTIONS(9080), + [anon_sym_struct] = ACTIONS(7764), + [anon_sym_union] = ACTIONS(7764), + [anon_sym_in] = ACTIONS(7764), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7764), + [anon_sym___typeof] = ACTIONS(7764), + [anon_sym_typeof] = ACTIONS(7764), + [anon_sym_BOOL] = ACTIONS(7764), + [anon_sym_IMP] = ACTIONS(7764), + [anon_sym_SEL] = ACTIONS(7764), + [anon_sym_Class] = ACTIONS(7764), + [anon_sym_id] = ACTIONS(7764), + [anon_sym_out] = ACTIONS(7764), + [anon_sym_inout] = ACTIONS(7764), + [anon_sym_bycopy] = ACTIONS(7764), + [anon_sym_byref] = ACTIONS(7764), + [anon_sym_oneway] = ACTIONS(7764), + }, + [4078] = { + [sym_identifier] = ACTIONS(2800), + [aux_sym_preproc_if_token1] = ACTIONS(2800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2802), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2802), + [anon_sym___extension__] = ACTIONS(2800), + [anon_sym___attribute__] = ACTIONS(2800), + [anon_sym___attribute] = ACTIONS(2800), + [anon_sym_noreturn] = ACTIONS(2800), + [anon_sym_LBRACK] = ACTIONS(2802), + [anon_sym_RBRACE] = ACTIONS(2802), + [anon_sym_signed] = ACTIONS(2800), + [anon_sym_unsigned] = ACTIONS(2800), + [anon_sym_long] = ACTIONS(2800), + [anon_sym_short] = ACTIONS(2800), + [anon_sym_const] = ACTIONS(2800), + [anon_sym_constexpr] = ACTIONS(2800), + [anon_sym_volatile] = ACTIONS(2800), + [anon_sym_restrict] = ACTIONS(2800), + [anon_sym___restrict__] = ACTIONS(2800), + [anon_sym__Atomic] = ACTIONS(2800), + [anon_sym__Noreturn] = ACTIONS(2800), + [anon_sym__Nonnull] = ACTIONS(2800), + [anon_sym_nullable] = ACTIONS(2800), + [anon_sym__Complex] = ACTIONS(2800), + [anon_sym__Nullable] = ACTIONS(2800), + [anon_sym__Nullable_result] = ACTIONS(2800), + [anon_sym__Null_unspecified] = ACTIONS(2800), + [anon_sym___autoreleasing] = ACTIONS(2800), + [anon_sym___block] = ACTIONS(2800), + [anon_sym___bridge] = ACTIONS(2800), + [anon_sym___bridge_retained] = ACTIONS(2800), + [anon_sym___bridge_transfer] = ACTIONS(2800), + [anon_sym___complex] = ACTIONS(2800), + [anon_sym___const] = ACTIONS(2800), + [anon_sym___imag] = ACTIONS(2800), + [anon_sym___kindof] = ACTIONS(2800), + [anon_sym___nonnull] = ACTIONS(2800), + [anon_sym___nullable] = ACTIONS(2800), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2800), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2800), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2800), + [anon_sym___real] = ACTIONS(2800), + [anon_sym___strong] = ACTIONS(2800), + [anon_sym___unsafe_unretained] = ACTIONS(2800), + [anon_sym___unused] = ACTIONS(2800), + [anon_sym___weak] = ACTIONS(2800), + [anon_sym_alignas] = ACTIONS(2800), + [anon_sym__Alignas] = ACTIONS(2800), + [sym_primitive_type] = ACTIONS(2800), + [anon_sym_enum] = ACTIONS(2800), + [anon_sym_struct] = ACTIONS(2800), + [anon_sym_union] = ACTIONS(2800), + [anon_sym_in] = ACTIONS(2800), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2800), + [anon_sym___typeof] = ACTIONS(2800), + [anon_sym_typeof] = ACTIONS(2800), + [anon_sym_ATprivate] = ACTIONS(2802), + [anon_sym_ATprotected] = ACTIONS(2802), + [anon_sym_ATpackage] = ACTIONS(2802), + [anon_sym_ATpublic] = ACTIONS(2802), + [anon_sym_BOOL] = ACTIONS(2800), + [anon_sym_IMP] = ACTIONS(2800), + [anon_sym_SEL] = ACTIONS(2800), + [anon_sym_Class] = ACTIONS(2800), + [anon_sym_id] = ACTIONS(2800), + [anon_sym_out] = ACTIONS(2800), + [anon_sym_inout] = ACTIONS(2800), + [anon_sym_bycopy] = ACTIONS(2800), + [anon_sym_byref] = ACTIONS(2800), + [anon_sym_oneway] = ACTIONS(2800), + }, + [4079] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2862), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym___attribute] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym__Nonnull] = ACTIONS(2860), + [anon_sym_nullable] = ACTIONS(2860), + [anon_sym__Complex] = ACTIONS(2860), + [anon_sym__Nullable] = ACTIONS(2860), + [anon_sym__Nullable_result] = ACTIONS(2860), + [anon_sym__Null_unspecified] = ACTIONS(2860), + [anon_sym___autoreleasing] = ACTIONS(2860), + [anon_sym___block] = ACTIONS(2860), + [anon_sym___bridge] = ACTIONS(2860), + [anon_sym___bridge_retained] = ACTIONS(2860), + [anon_sym___bridge_transfer] = ACTIONS(2860), + [anon_sym___complex] = ACTIONS(2860), + [anon_sym___const] = ACTIONS(2860), + [anon_sym___imag] = ACTIONS(2860), + [anon_sym___kindof] = ACTIONS(2860), + [anon_sym___nonnull] = ACTIONS(2860), + [anon_sym___nullable] = ACTIONS(2860), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2860), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2860), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2860), + [anon_sym___real] = ACTIONS(2860), + [anon_sym___strong] = ACTIONS(2860), + [anon_sym___unsafe_unretained] = ACTIONS(2860), + [anon_sym___unused] = ACTIONS(2860), + [anon_sym___weak] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym__Alignas] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_in] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2860), + [anon_sym___typeof] = ACTIONS(2860), + [anon_sym_typeof] = ACTIONS(2860), + [anon_sym_ATprivate] = ACTIONS(2862), + [anon_sym_ATprotected] = ACTIONS(2862), + [anon_sym_ATpackage] = ACTIONS(2862), + [anon_sym_ATpublic] = ACTIONS(2862), + [anon_sym_BOOL] = ACTIONS(2860), + [anon_sym_IMP] = ACTIONS(2860), + [anon_sym_SEL] = ACTIONS(2860), + [anon_sym_Class] = ACTIONS(2860), + [anon_sym_id] = ACTIONS(2860), + [anon_sym_out] = ACTIONS(2860), + [anon_sym_inout] = ACTIONS(2860), + [anon_sym_bycopy] = ACTIONS(2860), + [anon_sym_byref] = ACTIONS(2860), + [anon_sym_oneway] = ACTIONS(2860), + }, + [4080] = { + [sym_attribute_specifier] = STATE(3862), + [sym_enumerator_list] = STATE(4121), + [sym_identifier] = ACTIONS(7659), + [anon_sym_LPAREN2] = ACTIONS(7661), + [anon_sym_STAR] = ACTIONS(7661), + [anon_sym_CARET] = ACTIONS(7661), + [anon_sym___extension__] = ACTIONS(7659), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7659), + [anon_sym_LBRACK] = ACTIONS(7661), + [anon_sym___based] = ACTIONS(7659), + [anon_sym_LBRACE] = ACTIONS(8913), + [anon_sym_signed] = ACTIONS(7659), + [anon_sym_unsigned] = ACTIONS(7659), + [anon_sym_long] = ACTIONS(7659), + [anon_sym_short] = ACTIONS(7659), + [anon_sym_const] = ACTIONS(7659), + [anon_sym_constexpr] = ACTIONS(7659), + [anon_sym_volatile] = ACTIONS(7659), + [anon_sym_restrict] = ACTIONS(7659), + [anon_sym___restrict__] = ACTIONS(7659), + [anon_sym__Atomic] = ACTIONS(7659), + [anon_sym__Noreturn] = ACTIONS(7659), + [anon_sym__Nonnull] = ACTIONS(7659), + [anon_sym_nullable] = ACTIONS(7659), + [anon_sym__Complex] = ACTIONS(7659), + [anon_sym__Nullable] = ACTIONS(7659), + [anon_sym__Nullable_result] = ACTIONS(7659), + [anon_sym__Null_unspecified] = ACTIONS(7659), + [anon_sym___autoreleasing] = ACTIONS(7659), + [anon_sym___block] = ACTIONS(7659), + [anon_sym___bridge] = ACTIONS(7659), + [anon_sym___bridge_retained] = ACTIONS(7659), + [anon_sym___bridge_transfer] = ACTIONS(7659), + [anon_sym___complex] = ACTIONS(7659), + [anon_sym___const] = ACTIONS(7659), + [anon_sym___imag] = ACTIONS(7659), + [anon_sym___kindof] = ACTIONS(7659), + [anon_sym___nonnull] = ACTIONS(7659), + [anon_sym___nullable] = ACTIONS(7659), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7659), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7659), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7659), + [anon_sym___real] = ACTIONS(7659), + [anon_sym___strong] = ACTIONS(7659), + [anon_sym___unsafe_unretained] = ACTIONS(7659), + [anon_sym___unused] = ACTIONS(7659), + [anon_sym___weak] = ACTIONS(7659), + [anon_sym_alignas] = ACTIONS(7659), + [anon_sym__Alignas] = ACTIONS(7659), + [sym_primitive_type] = ACTIONS(7659), + [anon_sym_enum] = ACTIONS(7659), + [anon_sym_COLON] = ACTIONS(7661), + [anon_sym_struct] = ACTIONS(7659), + [anon_sym_union] = ACTIONS(7659), + [anon_sym_in] = ACTIONS(7659), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7659), + [anon_sym___typeof] = ACTIONS(7659), + [anon_sym_typeof] = ACTIONS(7659), + [anon_sym_BOOL] = ACTIONS(7659), + [anon_sym_IMP] = ACTIONS(7659), + [anon_sym_SEL] = ACTIONS(7659), + [anon_sym_Class] = ACTIONS(7659), + [anon_sym_id] = ACTIONS(7659), + [anon_sym_out] = ACTIONS(7659), + [anon_sym_inout] = ACTIONS(7659), + [anon_sym_bycopy] = ACTIONS(7659), + [anon_sym_byref] = ACTIONS(7659), + [anon_sym_oneway] = ACTIONS(7659), + }, + [4081] = { + [sym_attribute_specifier] = STATE(3865), + [sym_enumerator_list] = STATE(4111), + [sym_identifier] = ACTIONS(7668), + [anon_sym_LPAREN2] = ACTIONS(7670), + [anon_sym_STAR] = ACTIONS(7670), + [anon_sym_CARET] = ACTIONS(7670), + [anon_sym___extension__] = ACTIONS(7668), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7668), + [anon_sym_LBRACK] = ACTIONS(7670), + [anon_sym___based] = ACTIONS(7668), + [anon_sym_LBRACE] = ACTIONS(8913), + [anon_sym_signed] = ACTIONS(7668), + [anon_sym_unsigned] = ACTIONS(7668), + [anon_sym_long] = ACTIONS(7668), + [anon_sym_short] = ACTIONS(7668), + [anon_sym_const] = ACTIONS(7668), + [anon_sym_constexpr] = ACTIONS(7668), + [anon_sym_volatile] = ACTIONS(7668), + [anon_sym_restrict] = ACTIONS(7668), + [anon_sym___restrict__] = ACTIONS(7668), + [anon_sym__Atomic] = ACTIONS(7668), + [anon_sym__Noreturn] = ACTIONS(7668), + [anon_sym__Nonnull] = ACTIONS(7668), + [anon_sym_nullable] = ACTIONS(7668), + [anon_sym__Complex] = ACTIONS(7668), + [anon_sym__Nullable] = ACTIONS(7668), + [anon_sym__Nullable_result] = ACTIONS(7668), + [anon_sym__Null_unspecified] = ACTIONS(7668), + [anon_sym___autoreleasing] = ACTIONS(7668), + [anon_sym___block] = ACTIONS(7668), + [anon_sym___bridge] = ACTIONS(7668), + [anon_sym___bridge_retained] = ACTIONS(7668), + [anon_sym___bridge_transfer] = ACTIONS(7668), + [anon_sym___complex] = ACTIONS(7668), + [anon_sym___const] = ACTIONS(7668), + [anon_sym___imag] = ACTIONS(7668), + [anon_sym___kindof] = ACTIONS(7668), + [anon_sym___nonnull] = ACTIONS(7668), + [anon_sym___nullable] = ACTIONS(7668), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7668), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7668), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7668), + [anon_sym___real] = ACTIONS(7668), + [anon_sym___strong] = ACTIONS(7668), + [anon_sym___unsafe_unretained] = ACTIONS(7668), + [anon_sym___unused] = ACTIONS(7668), + [anon_sym___weak] = ACTIONS(7668), + [anon_sym_alignas] = ACTIONS(7668), + [anon_sym__Alignas] = ACTIONS(7668), + [sym_primitive_type] = ACTIONS(7668), + [anon_sym_enum] = ACTIONS(7668), + [anon_sym_COLON] = ACTIONS(7670), + [anon_sym_struct] = ACTIONS(7668), + [anon_sym_union] = ACTIONS(7668), + [anon_sym_in] = ACTIONS(7668), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7668), + [anon_sym___typeof] = ACTIONS(7668), + [anon_sym_typeof] = ACTIONS(7668), + [anon_sym_BOOL] = ACTIONS(7668), + [anon_sym_IMP] = ACTIONS(7668), + [anon_sym_SEL] = ACTIONS(7668), + [anon_sym_Class] = ACTIONS(7668), + [anon_sym_id] = ACTIONS(7668), + [anon_sym_out] = ACTIONS(7668), + [anon_sym_inout] = ACTIONS(7668), + [anon_sym_bycopy] = ACTIONS(7668), + [anon_sym_byref] = ACTIONS(7668), + [anon_sym_oneway] = ACTIONS(7668), + }, + [4082] = { + [sym_identifier] = ACTIONS(2652), + [aux_sym_preproc_if_token1] = ACTIONS(2652), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2654), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2654), + [anon_sym___extension__] = ACTIONS(2652), + [anon_sym___attribute__] = ACTIONS(2652), + [anon_sym___attribute] = ACTIONS(2652), + [anon_sym_noreturn] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2654), + [anon_sym_RBRACE] = ACTIONS(2654), + [anon_sym_signed] = ACTIONS(2652), + [anon_sym_unsigned] = ACTIONS(2652), + [anon_sym_long] = ACTIONS(2652), + [anon_sym_short] = ACTIONS(2652), + [anon_sym_const] = ACTIONS(2652), + [anon_sym_constexpr] = ACTIONS(2652), + [anon_sym_volatile] = ACTIONS(2652), + [anon_sym_restrict] = ACTIONS(2652), + [anon_sym___restrict__] = ACTIONS(2652), + [anon_sym__Atomic] = ACTIONS(2652), + [anon_sym__Noreturn] = ACTIONS(2652), + [anon_sym__Nonnull] = ACTIONS(2652), + [anon_sym_nullable] = ACTIONS(2652), + [anon_sym__Complex] = ACTIONS(2652), + [anon_sym__Nullable] = ACTIONS(2652), + [anon_sym__Nullable_result] = ACTIONS(2652), + [anon_sym__Null_unspecified] = ACTIONS(2652), + [anon_sym___autoreleasing] = ACTIONS(2652), + [anon_sym___block] = ACTIONS(2652), + [anon_sym___bridge] = ACTIONS(2652), + [anon_sym___bridge_retained] = ACTIONS(2652), + [anon_sym___bridge_transfer] = ACTIONS(2652), + [anon_sym___complex] = ACTIONS(2652), + [anon_sym___const] = ACTIONS(2652), + [anon_sym___imag] = ACTIONS(2652), + [anon_sym___kindof] = ACTIONS(2652), + [anon_sym___nonnull] = ACTIONS(2652), + [anon_sym___nullable] = ACTIONS(2652), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2652), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2652), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2652), + [anon_sym___real] = ACTIONS(2652), + [anon_sym___strong] = ACTIONS(2652), + [anon_sym___unsafe_unretained] = ACTIONS(2652), + [anon_sym___unused] = ACTIONS(2652), + [anon_sym___weak] = ACTIONS(2652), + [anon_sym_alignas] = ACTIONS(2652), + [anon_sym__Alignas] = ACTIONS(2652), + [sym_primitive_type] = ACTIONS(2652), + [anon_sym_enum] = ACTIONS(2652), + [anon_sym_struct] = ACTIONS(2652), + [anon_sym_union] = ACTIONS(2652), + [anon_sym_in] = ACTIONS(2652), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2652), + [anon_sym___typeof] = ACTIONS(2652), + [anon_sym_typeof] = ACTIONS(2652), + [anon_sym_ATprivate] = ACTIONS(2654), + [anon_sym_ATprotected] = ACTIONS(2654), + [anon_sym_ATpackage] = ACTIONS(2654), + [anon_sym_ATpublic] = ACTIONS(2654), + [anon_sym_BOOL] = ACTIONS(2652), + [anon_sym_IMP] = ACTIONS(2652), + [anon_sym_SEL] = ACTIONS(2652), + [anon_sym_Class] = ACTIONS(2652), + [anon_sym_id] = ACTIONS(2652), + [anon_sym_out] = ACTIONS(2652), + [anon_sym_inout] = ACTIONS(2652), + [anon_sym_bycopy] = ACTIONS(2652), + [anon_sym_byref] = ACTIONS(2652), + [anon_sym_oneway] = ACTIONS(2652), + }, + [4083] = { + [sym_identifier] = ACTIONS(2744), + [aux_sym_preproc_if_token1] = ACTIONS(2744), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2746), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2746), + [anon_sym___extension__] = ACTIONS(2744), + [anon_sym___attribute__] = ACTIONS(2744), + [anon_sym___attribute] = ACTIONS(2744), + [anon_sym_noreturn] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_RBRACE] = ACTIONS(2746), + [anon_sym_signed] = ACTIONS(2744), + [anon_sym_unsigned] = ACTIONS(2744), + [anon_sym_long] = ACTIONS(2744), + [anon_sym_short] = ACTIONS(2744), + [anon_sym_const] = ACTIONS(2744), + [anon_sym_constexpr] = ACTIONS(2744), + [anon_sym_volatile] = ACTIONS(2744), + [anon_sym_restrict] = ACTIONS(2744), + [anon_sym___restrict__] = ACTIONS(2744), + [anon_sym__Atomic] = ACTIONS(2744), + [anon_sym__Noreturn] = ACTIONS(2744), + [anon_sym__Nonnull] = ACTIONS(2744), + [anon_sym_nullable] = ACTIONS(2744), + [anon_sym__Complex] = ACTIONS(2744), + [anon_sym__Nullable] = ACTIONS(2744), + [anon_sym__Nullable_result] = ACTIONS(2744), + [anon_sym__Null_unspecified] = ACTIONS(2744), + [anon_sym___autoreleasing] = ACTIONS(2744), + [anon_sym___block] = ACTIONS(2744), + [anon_sym___bridge] = ACTIONS(2744), + [anon_sym___bridge_retained] = ACTIONS(2744), + [anon_sym___bridge_transfer] = ACTIONS(2744), + [anon_sym___complex] = ACTIONS(2744), + [anon_sym___const] = ACTIONS(2744), + [anon_sym___imag] = ACTIONS(2744), + [anon_sym___kindof] = ACTIONS(2744), + [anon_sym___nonnull] = ACTIONS(2744), + [anon_sym___nullable] = ACTIONS(2744), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2744), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2744), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2744), + [anon_sym___real] = ACTIONS(2744), + [anon_sym___strong] = ACTIONS(2744), + [anon_sym___unsafe_unretained] = ACTIONS(2744), + [anon_sym___unused] = ACTIONS(2744), + [anon_sym___weak] = ACTIONS(2744), + [anon_sym_alignas] = ACTIONS(2744), + [anon_sym__Alignas] = ACTIONS(2744), + [sym_primitive_type] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), + [anon_sym_struct] = ACTIONS(2744), + [anon_sym_union] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2744), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2744), + [anon_sym___typeof] = ACTIONS(2744), + [anon_sym_typeof] = ACTIONS(2744), + [anon_sym_ATprivate] = ACTIONS(2746), + [anon_sym_ATprotected] = ACTIONS(2746), + [anon_sym_ATpackage] = ACTIONS(2746), + [anon_sym_ATpublic] = ACTIONS(2746), + [anon_sym_BOOL] = ACTIONS(2744), + [anon_sym_IMP] = ACTIONS(2744), + [anon_sym_SEL] = ACTIONS(2744), + [anon_sym_Class] = ACTIONS(2744), + [anon_sym_id] = ACTIONS(2744), + [anon_sym_out] = ACTIONS(2744), + [anon_sym_inout] = ACTIONS(2744), + [anon_sym_bycopy] = ACTIONS(2744), + [anon_sym_byref] = ACTIONS(2744), + [anon_sym_oneway] = ACTIONS(2744), + }, + [4084] = { + [sym_identifier] = ACTIONS(2728), + [aux_sym_preproc_if_token1] = ACTIONS(2728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2730), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2730), + [anon_sym___extension__] = ACTIONS(2728), + [anon_sym___attribute__] = ACTIONS(2728), + [anon_sym___attribute] = ACTIONS(2728), + [anon_sym_noreturn] = ACTIONS(2728), + [anon_sym_LBRACK] = ACTIONS(2730), + [anon_sym_RBRACE] = ACTIONS(2730), + [anon_sym_signed] = ACTIONS(2728), + [anon_sym_unsigned] = ACTIONS(2728), + [anon_sym_long] = ACTIONS(2728), + [anon_sym_short] = ACTIONS(2728), + [anon_sym_const] = ACTIONS(2728), + [anon_sym_constexpr] = ACTIONS(2728), + [anon_sym_volatile] = ACTIONS(2728), + [anon_sym_restrict] = ACTIONS(2728), + [anon_sym___restrict__] = ACTIONS(2728), + [anon_sym__Atomic] = ACTIONS(2728), + [anon_sym__Noreturn] = ACTIONS(2728), + [anon_sym__Nonnull] = ACTIONS(2728), + [anon_sym_nullable] = ACTIONS(2728), + [anon_sym__Complex] = ACTIONS(2728), + [anon_sym__Nullable] = ACTIONS(2728), + [anon_sym__Nullable_result] = ACTIONS(2728), + [anon_sym__Null_unspecified] = ACTIONS(2728), + [anon_sym___autoreleasing] = ACTIONS(2728), + [anon_sym___block] = ACTIONS(2728), + [anon_sym___bridge] = ACTIONS(2728), + [anon_sym___bridge_retained] = ACTIONS(2728), + [anon_sym___bridge_transfer] = ACTIONS(2728), + [anon_sym___complex] = ACTIONS(2728), + [anon_sym___const] = ACTIONS(2728), + [anon_sym___imag] = ACTIONS(2728), + [anon_sym___kindof] = ACTIONS(2728), + [anon_sym___nonnull] = ACTIONS(2728), + [anon_sym___nullable] = ACTIONS(2728), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2728), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2728), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2728), + [anon_sym___real] = ACTIONS(2728), + [anon_sym___strong] = ACTIONS(2728), + [anon_sym___unsafe_unretained] = ACTIONS(2728), + [anon_sym___unused] = ACTIONS(2728), + [anon_sym___weak] = ACTIONS(2728), + [anon_sym_alignas] = ACTIONS(2728), + [anon_sym__Alignas] = ACTIONS(2728), + [sym_primitive_type] = ACTIONS(2728), + [anon_sym_enum] = ACTIONS(2728), + [anon_sym_struct] = ACTIONS(2728), + [anon_sym_union] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2728), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2728), + [anon_sym___typeof] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(2728), + [anon_sym_ATprivate] = ACTIONS(2730), + [anon_sym_ATprotected] = ACTIONS(2730), + [anon_sym_ATpackage] = ACTIONS(2730), + [anon_sym_ATpublic] = ACTIONS(2730), + [anon_sym_BOOL] = ACTIONS(2728), + [anon_sym_IMP] = ACTIONS(2728), + [anon_sym_SEL] = ACTIONS(2728), + [anon_sym_Class] = ACTIONS(2728), + [anon_sym_id] = ACTIONS(2728), + [anon_sym_out] = ACTIONS(2728), + [anon_sym_inout] = ACTIONS(2728), + [anon_sym_bycopy] = ACTIONS(2728), + [anon_sym_byref] = ACTIONS(2728), + [anon_sym_oneway] = ACTIONS(2728), + }, + [4085] = { + [sym_identifier] = ACTIONS(2732), + [aux_sym_preproc_if_token1] = ACTIONS(2732), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2734), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2734), + [anon_sym___extension__] = ACTIONS(2732), + [anon_sym___attribute__] = ACTIONS(2732), + [anon_sym___attribute] = ACTIONS(2732), + [anon_sym_noreturn] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym_RBRACE] = ACTIONS(2734), + [anon_sym_signed] = ACTIONS(2732), + [anon_sym_unsigned] = ACTIONS(2732), + [anon_sym_long] = ACTIONS(2732), + [anon_sym_short] = ACTIONS(2732), + [anon_sym_const] = ACTIONS(2732), + [anon_sym_constexpr] = ACTIONS(2732), + [anon_sym_volatile] = ACTIONS(2732), + [anon_sym_restrict] = ACTIONS(2732), + [anon_sym___restrict__] = ACTIONS(2732), + [anon_sym__Atomic] = ACTIONS(2732), + [anon_sym__Noreturn] = ACTIONS(2732), + [anon_sym__Nonnull] = ACTIONS(2732), + [anon_sym_nullable] = ACTIONS(2732), + [anon_sym__Complex] = ACTIONS(2732), + [anon_sym__Nullable] = ACTIONS(2732), + [anon_sym__Nullable_result] = ACTIONS(2732), + [anon_sym__Null_unspecified] = ACTIONS(2732), + [anon_sym___autoreleasing] = ACTIONS(2732), + [anon_sym___block] = ACTIONS(2732), + [anon_sym___bridge] = ACTIONS(2732), + [anon_sym___bridge_retained] = ACTIONS(2732), + [anon_sym___bridge_transfer] = ACTIONS(2732), + [anon_sym___complex] = ACTIONS(2732), + [anon_sym___const] = ACTIONS(2732), + [anon_sym___imag] = ACTIONS(2732), + [anon_sym___kindof] = ACTIONS(2732), + [anon_sym___nonnull] = ACTIONS(2732), + [anon_sym___nullable] = ACTIONS(2732), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2732), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2732), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2732), + [anon_sym___real] = ACTIONS(2732), + [anon_sym___strong] = ACTIONS(2732), + [anon_sym___unsafe_unretained] = ACTIONS(2732), + [anon_sym___unused] = ACTIONS(2732), + [anon_sym___weak] = ACTIONS(2732), + [anon_sym_alignas] = ACTIONS(2732), + [anon_sym__Alignas] = ACTIONS(2732), + [sym_primitive_type] = ACTIONS(2732), + [anon_sym_enum] = ACTIONS(2732), + [anon_sym_struct] = ACTIONS(2732), + [anon_sym_union] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2732), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2732), + [anon_sym___typeof] = ACTIONS(2732), + [anon_sym_typeof] = ACTIONS(2732), + [anon_sym_ATprivate] = ACTIONS(2734), + [anon_sym_ATprotected] = ACTIONS(2734), + [anon_sym_ATpackage] = ACTIONS(2734), + [anon_sym_ATpublic] = ACTIONS(2734), + [anon_sym_BOOL] = ACTIONS(2732), + [anon_sym_IMP] = ACTIONS(2732), + [anon_sym_SEL] = ACTIONS(2732), + [anon_sym_Class] = ACTIONS(2732), + [anon_sym_id] = ACTIONS(2732), + [anon_sym_out] = ACTIONS(2732), + [anon_sym_inout] = ACTIONS(2732), + [anon_sym_bycopy] = ACTIONS(2732), + [anon_sym_byref] = ACTIONS(2732), + [anon_sym_oneway] = ACTIONS(2732), + }, + [4086] = { + [sym_identifier] = ACTIONS(9083), + [aux_sym_preproc_if_token1] = ACTIONS(9083), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9085), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9085), + [anon_sym___extension__] = ACTIONS(9083), + [anon_sym___attribute__] = ACTIONS(9083), + [anon_sym___attribute] = ACTIONS(9083), + [anon_sym_noreturn] = ACTIONS(9083), + [anon_sym_LBRACK] = ACTIONS(9085), + [anon_sym_RBRACE] = ACTIONS(9085), + [anon_sym_signed] = ACTIONS(9083), + [anon_sym_unsigned] = ACTIONS(9083), + [anon_sym_long] = ACTIONS(9083), + [anon_sym_short] = ACTIONS(9083), + [anon_sym_const] = ACTIONS(9083), + [anon_sym_constexpr] = ACTIONS(9083), + [anon_sym_volatile] = ACTIONS(9083), + [anon_sym_restrict] = ACTIONS(9083), + [anon_sym___restrict__] = ACTIONS(9083), + [anon_sym__Atomic] = ACTIONS(9083), + [anon_sym__Noreturn] = ACTIONS(9083), + [anon_sym__Nonnull] = ACTIONS(9083), + [anon_sym_nullable] = ACTIONS(9083), + [anon_sym__Complex] = ACTIONS(9083), + [anon_sym__Nullable] = ACTIONS(9083), + [anon_sym__Nullable_result] = ACTIONS(9083), + [anon_sym__Null_unspecified] = ACTIONS(9083), + [anon_sym___autoreleasing] = ACTIONS(9083), + [anon_sym___block] = ACTIONS(9083), + [anon_sym___bridge] = ACTIONS(9083), + [anon_sym___bridge_retained] = ACTIONS(9083), + [anon_sym___bridge_transfer] = ACTIONS(9083), + [anon_sym___complex] = ACTIONS(9083), + [anon_sym___const] = ACTIONS(9083), + [anon_sym___imag] = ACTIONS(9083), + [anon_sym___kindof] = ACTIONS(9083), + [anon_sym___nonnull] = ACTIONS(9083), + [anon_sym___nullable] = ACTIONS(9083), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(9083), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(9083), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(9083), + [anon_sym___real] = ACTIONS(9083), + [anon_sym___strong] = ACTIONS(9083), + [anon_sym___unsafe_unretained] = ACTIONS(9083), + [anon_sym___unused] = ACTIONS(9083), + [anon_sym___weak] = ACTIONS(9083), + [anon_sym_alignas] = ACTIONS(9083), + [anon_sym__Alignas] = ACTIONS(9083), + [sym_primitive_type] = ACTIONS(9083), + [anon_sym_enum] = ACTIONS(9083), + [anon_sym_struct] = ACTIONS(9083), + [anon_sym_union] = ACTIONS(9083), + [anon_sym_in] = ACTIONS(9083), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(9083), + [anon_sym___typeof] = ACTIONS(9083), + [anon_sym_typeof] = ACTIONS(9083), + [anon_sym_ATprivate] = ACTIONS(9085), + [anon_sym_ATprotected] = ACTIONS(9085), + [anon_sym_ATpackage] = ACTIONS(9085), + [anon_sym_ATpublic] = ACTIONS(9085), + [anon_sym_BOOL] = ACTIONS(9083), + [anon_sym_IMP] = ACTIONS(9083), + [anon_sym_SEL] = ACTIONS(9083), + [anon_sym_Class] = ACTIONS(9083), + [anon_sym_id] = ACTIONS(9083), + [anon_sym_out] = ACTIONS(9083), + [anon_sym_inout] = ACTIONS(9083), + [anon_sym_bycopy] = ACTIONS(9083), + [anon_sym_byref] = ACTIONS(9083), + [anon_sym_oneway] = ACTIONS(9083), + }, + [4087] = { + [sym_attribute_specifier] = STATE(3874), + [sym_enumerator_list] = STATE(4126), + [sym_identifier] = ACTIONS(7700), + [anon_sym_LPAREN2] = ACTIONS(7702), + [anon_sym_STAR] = ACTIONS(7702), + [anon_sym_CARET] = ACTIONS(7702), + [anon_sym___extension__] = ACTIONS(7700), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7700), + [anon_sym_LBRACK] = ACTIONS(7702), + [anon_sym___based] = ACTIONS(7700), + [anon_sym_LBRACE] = ACTIONS(8913), + [anon_sym_signed] = ACTIONS(7700), + [anon_sym_unsigned] = ACTIONS(7700), + [anon_sym_long] = ACTIONS(7700), + [anon_sym_short] = ACTIONS(7700), + [anon_sym_const] = ACTIONS(7700), + [anon_sym_constexpr] = ACTIONS(7700), + [anon_sym_volatile] = ACTIONS(7700), + [anon_sym_restrict] = ACTIONS(7700), + [anon_sym___restrict__] = ACTIONS(7700), + [anon_sym__Atomic] = ACTIONS(7700), + [anon_sym__Noreturn] = ACTIONS(7700), + [anon_sym__Nonnull] = ACTIONS(7700), + [anon_sym_nullable] = ACTIONS(7700), + [anon_sym__Complex] = ACTIONS(7700), + [anon_sym__Nullable] = ACTIONS(7700), + [anon_sym__Nullable_result] = ACTIONS(7700), + [anon_sym__Null_unspecified] = ACTIONS(7700), + [anon_sym___autoreleasing] = ACTIONS(7700), + [anon_sym___block] = ACTIONS(7700), + [anon_sym___bridge] = ACTIONS(7700), + [anon_sym___bridge_retained] = ACTIONS(7700), + [anon_sym___bridge_transfer] = ACTIONS(7700), + [anon_sym___complex] = ACTIONS(7700), + [anon_sym___const] = ACTIONS(7700), + [anon_sym___imag] = ACTIONS(7700), + [anon_sym___kindof] = ACTIONS(7700), + [anon_sym___nonnull] = ACTIONS(7700), + [anon_sym___nullable] = ACTIONS(7700), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7700), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7700), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7700), + [anon_sym___real] = ACTIONS(7700), + [anon_sym___strong] = ACTIONS(7700), + [anon_sym___unsafe_unretained] = ACTIONS(7700), + [anon_sym___unused] = ACTIONS(7700), + [anon_sym___weak] = ACTIONS(7700), + [anon_sym_alignas] = ACTIONS(7700), + [anon_sym__Alignas] = ACTIONS(7700), + [sym_primitive_type] = ACTIONS(7700), + [anon_sym_enum] = ACTIONS(7700), + [anon_sym_COLON] = ACTIONS(9087), + [anon_sym_struct] = ACTIONS(7700), + [anon_sym_union] = ACTIONS(7700), + [anon_sym_in] = ACTIONS(7700), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7700), + [anon_sym___typeof] = ACTIONS(7700), + [anon_sym_typeof] = ACTIONS(7700), + [anon_sym_BOOL] = ACTIONS(7700), + [anon_sym_IMP] = ACTIONS(7700), + [anon_sym_SEL] = ACTIONS(7700), + [anon_sym_Class] = ACTIONS(7700), + [anon_sym_id] = ACTIONS(7700), + [anon_sym_out] = ACTIONS(7700), + [anon_sym_inout] = ACTIONS(7700), + [anon_sym_bycopy] = ACTIONS(7700), + [anon_sym_byref] = ACTIONS(7700), + [anon_sym_oneway] = ACTIONS(7700), + }, + [4088] = { + [sym_identifier] = ACTIONS(5514), + [aux_sym_preproc_if_token1] = ACTIONS(5514), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5516), + [anon_sym___extension__] = ACTIONS(5514), + [anon_sym___attribute__] = ACTIONS(5514), + [anon_sym___attribute] = ACTIONS(5514), + [anon_sym_noreturn] = ACTIONS(5514), + [anon_sym_LBRACK] = ACTIONS(5516), + [anon_sym_RBRACE] = ACTIONS(5516), + [anon_sym_signed] = ACTIONS(5514), + [anon_sym_unsigned] = ACTIONS(5514), + [anon_sym_long] = ACTIONS(5514), + [anon_sym_short] = ACTIONS(5514), + [anon_sym_const] = ACTIONS(5514), + [anon_sym_constexpr] = ACTIONS(5514), + [anon_sym_volatile] = ACTIONS(5514), + [anon_sym_restrict] = ACTIONS(5514), + [anon_sym___restrict__] = ACTIONS(5514), + [anon_sym__Atomic] = ACTIONS(5514), + [anon_sym__Noreturn] = ACTIONS(5514), + [anon_sym__Nonnull] = ACTIONS(5514), + [anon_sym_nullable] = ACTIONS(5514), + [anon_sym__Complex] = ACTIONS(5514), + [anon_sym__Nullable] = ACTIONS(5514), + [anon_sym__Nullable_result] = ACTIONS(5514), + [anon_sym__Null_unspecified] = ACTIONS(5514), + [anon_sym___autoreleasing] = ACTIONS(5514), + [anon_sym___block] = ACTIONS(5514), + [anon_sym___bridge] = ACTIONS(5514), + [anon_sym___bridge_retained] = ACTIONS(5514), + [anon_sym___bridge_transfer] = ACTIONS(5514), + [anon_sym___complex] = ACTIONS(5514), + [anon_sym___const] = ACTIONS(5514), + [anon_sym___imag] = ACTIONS(5514), + [anon_sym___kindof] = ACTIONS(5514), + [anon_sym___nonnull] = ACTIONS(5514), + [anon_sym___nullable] = ACTIONS(5514), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5514), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5514), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5514), + [anon_sym___real] = ACTIONS(5514), + [anon_sym___strong] = ACTIONS(5514), + [anon_sym___unsafe_unretained] = ACTIONS(5514), + [anon_sym___unused] = ACTIONS(5514), + [anon_sym___weak] = ACTIONS(5514), + [anon_sym_alignas] = ACTIONS(5514), + [anon_sym__Alignas] = ACTIONS(5514), + [sym_primitive_type] = ACTIONS(5514), + [anon_sym_enum] = ACTIONS(5514), + [anon_sym_struct] = ACTIONS(5514), + [anon_sym_union] = ACTIONS(5514), + [anon_sym_in] = ACTIONS(5514), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5514), + [anon_sym___typeof] = ACTIONS(5514), + [anon_sym_typeof] = ACTIONS(5514), + [anon_sym_ATprivate] = ACTIONS(5516), + [anon_sym_ATprotected] = ACTIONS(5516), + [anon_sym_ATpackage] = ACTIONS(5516), + [anon_sym_ATpublic] = ACTIONS(5516), + [anon_sym_BOOL] = ACTIONS(5514), + [anon_sym_IMP] = ACTIONS(5514), + [anon_sym_SEL] = ACTIONS(5514), + [anon_sym_Class] = ACTIONS(5514), + [anon_sym_id] = ACTIONS(5514), + [anon_sym_out] = ACTIONS(5514), + [anon_sym_inout] = ACTIONS(5514), + [anon_sym_bycopy] = ACTIONS(5514), + [anon_sym_byref] = ACTIONS(5514), + [anon_sym_oneway] = ACTIONS(5514), + }, + [4089] = { + [sym_attribute_specifier] = STATE(3882), + [sym_enumerator_list] = STATE(4119), + [sym_identifier] = ACTIONS(7717), + [anon_sym_LPAREN2] = ACTIONS(7719), + [anon_sym_STAR] = ACTIONS(7719), + [anon_sym_CARET] = ACTIONS(7719), + [anon_sym___extension__] = ACTIONS(7717), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7717), + [anon_sym_LBRACK] = ACTIONS(7719), + [anon_sym___based] = ACTIONS(7717), + [anon_sym_LBRACE] = ACTIONS(8913), + [anon_sym_signed] = ACTIONS(7717), + [anon_sym_unsigned] = ACTIONS(7717), + [anon_sym_long] = ACTIONS(7717), + [anon_sym_short] = ACTIONS(7717), + [anon_sym_const] = ACTIONS(7717), + [anon_sym_constexpr] = ACTIONS(7717), + [anon_sym_volatile] = ACTIONS(7717), + [anon_sym_restrict] = ACTIONS(7717), + [anon_sym___restrict__] = ACTIONS(7717), + [anon_sym__Atomic] = ACTIONS(7717), + [anon_sym__Noreturn] = ACTIONS(7717), + [anon_sym__Nonnull] = ACTIONS(7717), + [anon_sym_nullable] = ACTIONS(7717), + [anon_sym__Complex] = ACTIONS(7717), + [anon_sym__Nullable] = ACTIONS(7717), + [anon_sym__Nullable_result] = ACTIONS(7717), + [anon_sym__Null_unspecified] = ACTIONS(7717), + [anon_sym___autoreleasing] = ACTIONS(7717), + [anon_sym___block] = ACTIONS(7717), + [anon_sym___bridge] = ACTIONS(7717), + [anon_sym___bridge_retained] = ACTIONS(7717), + [anon_sym___bridge_transfer] = ACTIONS(7717), + [anon_sym___complex] = ACTIONS(7717), + [anon_sym___const] = ACTIONS(7717), + [anon_sym___imag] = ACTIONS(7717), + [anon_sym___kindof] = ACTIONS(7717), + [anon_sym___nonnull] = ACTIONS(7717), + [anon_sym___nullable] = ACTIONS(7717), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7717), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7717), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7717), + [anon_sym___real] = ACTIONS(7717), + [anon_sym___strong] = ACTIONS(7717), + [anon_sym___unsafe_unretained] = ACTIONS(7717), + [anon_sym___unused] = ACTIONS(7717), + [anon_sym___weak] = ACTIONS(7717), + [anon_sym_alignas] = ACTIONS(7717), + [anon_sym__Alignas] = ACTIONS(7717), + [sym_primitive_type] = ACTIONS(7717), + [anon_sym_enum] = ACTIONS(7717), + [anon_sym_COLON] = ACTIONS(9090), + [anon_sym_struct] = ACTIONS(7717), + [anon_sym_union] = ACTIONS(7717), + [anon_sym_in] = ACTIONS(7717), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7717), + [anon_sym___typeof] = ACTIONS(7717), + [anon_sym_typeof] = ACTIONS(7717), + [anon_sym_BOOL] = ACTIONS(7717), + [anon_sym_IMP] = ACTIONS(7717), + [anon_sym_SEL] = ACTIONS(7717), + [anon_sym_Class] = ACTIONS(7717), + [anon_sym_id] = ACTIONS(7717), + [anon_sym_out] = ACTIONS(7717), + [anon_sym_inout] = ACTIONS(7717), + [anon_sym_bycopy] = ACTIONS(7717), + [anon_sym_byref] = ACTIONS(7717), + [anon_sym_oneway] = ACTIONS(7717), + }, + [4090] = { + [sym_attribute_specifier] = STATE(3999), + [sym_enumerator_list] = STATE(4122), + [sym_identifier] = ACTIONS(7686), + [anon_sym_LPAREN2] = ACTIONS(7688), + [anon_sym_STAR] = ACTIONS(7688), + [anon_sym_CARET] = ACTIONS(7688), + [anon_sym___extension__] = ACTIONS(7686), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7686), + [anon_sym_LBRACK] = ACTIONS(7688), + [anon_sym___based] = ACTIONS(7686), + [anon_sym_LBRACE] = ACTIONS(8913), + [anon_sym_signed] = ACTIONS(7686), + [anon_sym_unsigned] = ACTIONS(7686), + [anon_sym_long] = ACTIONS(7686), + [anon_sym_short] = ACTIONS(7686), + [anon_sym_const] = ACTIONS(7686), + [anon_sym_constexpr] = ACTIONS(7686), + [anon_sym_volatile] = ACTIONS(7686), + [anon_sym_restrict] = ACTIONS(7686), + [anon_sym___restrict__] = ACTIONS(7686), + [anon_sym__Atomic] = ACTIONS(7686), + [anon_sym__Noreturn] = ACTIONS(7686), + [anon_sym__Nonnull] = ACTIONS(7686), + [anon_sym_nullable] = ACTIONS(7686), + [anon_sym__Complex] = ACTIONS(7686), + [anon_sym__Nullable] = ACTIONS(7686), + [anon_sym__Nullable_result] = ACTIONS(7686), + [anon_sym__Null_unspecified] = ACTIONS(7686), + [anon_sym___autoreleasing] = ACTIONS(7686), + [anon_sym___block] = ACTIONS(7686), + [anon_sym___bridge] = ACTIONS(7686), + [anon_sym___bridge_retained] = ACTIONS(7686), + [anon_sym___bridge_transfer] = ACTIONS(7686), + [anon_sym___complex] = ACTIONS(7686), + [anon_sym___const] = ACTIONS(7686), + [anon_sym___imag] = ACTIONS(7686), + [anon_sym___kindof] = ACTIONS(7686), + [anon_sym___nonnull] = ACTIONS(7686), + [anon_sym___nullable] = ACTIONS(7686), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7686), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7686), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7686), + [anon_sym___real] = ACTIONS(7686), + [anon_sym___strong] = ACTIONS(7686), + [anon_sym___unsafe_unretained] = ACTIONS(7686), + [anon_sym___unused] = ACTIONS(7686), + [anon_sym___weak] = ACTIONS(7686), + [anon_sym_alignas] = ACTIONS(7686), + [anon_sym__Alignas] = ACTIONS(7686), + [sym_primitive_type] = ACTIONS(7686), + [anon_sym_enum] = ACTIONS(7686), + [anon_sym_COLON] = ACTIONS(7688), + [anon_sym_struct] = ACTIONS(7686), + [anon_sym_union] = ACTIONS(7686), + [anon_sym_in] = ACTIONS(7686), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7686), + [anon_sym___typeof] = ACTIONS(7686), + [anon_sym_typeof] = ACTIONS(7686), + [anon_sym_BOOL] = ACTIONS(7686), + [anon_sym_IMP] = ACTIONS(7686), + [anon_sym_SEL] = ACTIONS(7686), + [anon_sym_Class] = ACTIONS(7686), + [anon_sym_id] = ACTIONS(7686), + [anon_sym_out] = ACTIONS(7686), + [anon_sym_inout] = ACTIONS(7686), + [anon_sym_bycopy] = ACTIONS(7686), + [anon_sym_byref] = ACTIONS(7686), + [anon_sym_oneway] = ACTIONS(7686), + }, + [4091] = { + [sym_attribute_specifier] = STATE(3863), + [sym_enumerator_list] = STATE(4124), + [sym_identifier] = ACTIONS(7693), + [anon_sym_LPAREN2] = ACTIONS(7695), + [anon_sym_STAR] = ACTIONS(7695), + [anon_sym_CARET] = ACTIONS(7695), + [anon_sym___extension__] = ACTIONS(7693), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7693), + [anon_sym_LBRACK] = ACTIONS(7695), + [anon_sym___based] = ACTIONS(7693), + [anon_sym_LBRACE] = ACTIONS(8913), + [anon_sym_signed] = ACTIONS(7693), + [anon_sym_unsigned] = ACTIONS(7693), + [anon_sym_long] = ACTIONS(7693), + [anon_sym_short] = ACTIONS(7693), + [anon_sym_const] = ACTIONS(7693), + [anon_sym_constexpr] = ACTIONS(7693), + [anon_sym_volatile] = ACTIONS(7693), + [anon_sym_restrict] = ACTIONS(7693), + [anon_sym___restrict__] = ACTIONS(7693), + [anon_sym__Atomic] = ACTIONS(7693), + [anon_sym__Noreturn] = ACTIONS(7693), + [anon_sym__Nonnull] = ACTIONS(7693), + [anon_sym_nullable] = ACTIONS(7693), + [anon_sym__Complex] = ACTIONS(7693), + [anon_sym__Nullable] = ACTIONS(7693), + [anon_sym__Nullable_result] = ACTIONS(7693), + [anon_sym__Null_unspecified] = ACTIONS(7693), + [anon_sym___autoreleasing] = ACTIONS(7693), + [anon_sym___block] = ACTIONS(7693), + [anon_sym___bridge] = ACTIONS(7693), + [anon_sym___bridge_retained] = ACTIONS(7693), + [anon_sym___bridge_transfer] = ACTIONS(7693), + [anon_sym___complex] = ACTIONS(7693), + [anon_sym___const] = ACTIONS(7693), + [anon_sym___imag] = ACTIONS(7693), + [anon_sym___kindof] = ACTIONS(7693), + [anon_sym___nonnull] = ACTIONS(7693), + [anon_sym___nullable] = ACTIONS(7693), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7693), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7693), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7693), + [anon_sym___real] = ACTIONS(7693), + [anon_sym___strong] = ACTIONS(7693), + [anon_sym___unsafe_unretained] = ACTIONS(7693), + [anon_sym___unused] = ACTIONS(7693), + [anon_sym___weak] = ACTIONS(7693), + [anon_sym_alignas] = ACTIONS(7693), + [anon_sym__Alignas] = ACTIONS(7693), + [sym_primitive_type] = ACTIONS(7693), + [anon_sym_enum] = ACTIONS(7693), + [anon_sym_COLON] = ACTIONS(7695), + [anon_sym_struct] = ACTIONS(7693), + [anon_sym_union] = ACTIONS(7693), + [anon_sym_in] = ACTIONS(7693), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7693), + [anon_sym___typeof] = ACTIONS(7693), + [anon_sym_typeof] = ACTIONS(7693), + [anon_sym_BOOL] = ACTIONS(7693), + [anon_sym_IMP] = ACTIONS(7693), + [anon_sym_SEL] = ACTIONS(7693), + [anon_sym_Class] = ACTIONS(7693), + [anon_sym_id] = ACTIONS(7693), + [anon_sym_out] = ACTIONS(7693), + [anon_sym_inout] = ACTIONS(7693), + [anon_sym_bycopy] = ACTIONS(7693), + [anon_sym_byref] = ACTIONS(7693), + [anon_sym_oneway] = ACTIONS(7693), + }, + [4092] = { + [sym_identifier] = ACTIONS(5542), + [aux_sym_preproc_if_token1] = ACTIONS(5542), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5544), + [anon_sym___extension__] = ACTIONS(5542), + [anon_sym___attribute__] = ACTIONS(5542), + [anon_sym___attribute] = ACTIONS(5542), + [anon_sym_noreturn] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5544), + [anon_sym_RBRACE] = ACTIONS(5544), + [anon_sym_signed] = ACTIONS(5542), + [anon_sym_unsigned] = ACTIONS(5542), + [anon_sym_long] = ACTIONS(5542), + [anon_sym_short] = ACTIONS(5542), + [anon_sym_const] = ACTIONS(5542), + [anon_sym_constexpr] = ACTIONS(5542), + [anon_sym_volatile] = ACTIONS(5542), + [anon_sym_restrict] = ACTIONS(5542), + [anon_sym___restrict__] = ACTIONS(5542), + [anon_sym__Atomic] = ACTIONS(5542), + [anon_sym__Noreturn] = ACTIONS(5542), + [anon_sym__Nonnull] = ACTIONS(5542), + [anon_sym_nullable] = ACTIONS(5542), + [anon_sym__Complex] = ACTIONS(5542), + [anon_sym__Nullable] = ACTIONS(5542), + [anon_sym__Nullable_result] = ACTIONS(5542), + [anon_sym__Null_unspecified] = ACTIONS(5542), + [anon_sym___autoreleasing] = ACTIONS(5542), + [anon_sym___block] = ACTIONS(5542), + [anon_sym___bridge] = ACTIONS(5542), + [anon_sym___bridge_retained] = ACTIONS(5542), + [anon_sym___bridge_transfer] = ACTIONS(5542), + [anon_sym___complex] = ACTIONS(5542), + [anon_sym___const] = ACTIONS(5542), + [anon_sym___imag] = ACTIONS(5542), + [anon_sym___kindof] = ACTIONS(5542), + [anon_sym___nonnull] = ACTIONS(5542), + [anon_sym___nullable] = ACTIONS(5542), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5542), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5542), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5542), + [anon_sym___real] = ACTIONS(5542), + [anon_sym___strong] = ACTIONS(5542), + [anon_sym___unsafe_unretained] = ACTIONS(5542), + [anon_sym___unused] = ACTIONS(5542), + [anon_sym___weak] = ACTIONS(5542), + [anon_sym_alignas] = ACTIONS(5542), + [anon_sym__Alignas] = ACTIONS(5542), + [sym_primitive_type] = ACTIONS(5542), + [anon_sym_enum] = ACTIONS(5542), + [anon_sym_struct] = ACTIONS(5542), + [anon_sym_union] = ACTIONS(5542), + [anon_sym_in] = ACTIONS(5542), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5542), + [anon_sym___typeof] = ACTIONS(5542), + [anon_sym_typeof] = ACTIONS(5542), + [anon_sym_ATprivate] = ACTIONS(5544), + [anon_sym_ATprotected] = ACTIONS(5544), + [anon_sym_ATpackage] = ACTIONS(5544), + [anon_sym_ATpublic] = ACTIONS(5544), + [anon_sym_BOOL] = ACTIONS(5542), + [anon_sym_IMP] = ACTIONS(5542), + [anon_sym_SEL] = ACTIONS(5542), + [anon_sym_Class] = ACTIONS(5542), + [anon_sym_id] = ACTIONS(5542), + [anon_sym_out] = ACTIONS(5542), + [anon_sym_inout] = ACTIONS(5542), + [anon_sym_bycopy] = ACTIONS(5542), + [anon_sym_byref] = ACTIONS(5542), + [anon_sym_oneway] = ACTIONS(5542), + }, + [4093] = { + [sym_identifier] = ACTIONS(2616), + [aux_sym_preproc_if_token1] = ACTIONS(2616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2618), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2618), + [anon_sym___extension__] = ACTIONS(2616), + [anon_sym___attribute__] = ACTIONS(2616), + [anon_sym___attribute] = ACTIONS(2616), + [anon_sym_noreturn] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(2618), + [anon_sym_RBRACE] = ACTIONS(2618), + [anon_sym_signed] = ACTIONS(2616), + [anon_sym_unsigned] = ACTIONS(2616), + [anon_sym_long] = ACTIONS(2616), + [anon_sym_short] = ACTIONS(2616), + [anon_sym_const] = ACTIONS(2616), + [anon_sym_constexpr] = ACTIONS(2616), + [anon_sym_volatile] = ACTIONS(2616), + [anon_sym_restrict] = ACTIONS(2616), + [anon_sym___restrict__] = ACTIONS(2616), + [anon_sym__Atomic] = ACTIONS(2616), + [anon_sym__Noreturn] = ACTIONS(2616), + [anon_sym__Nonnull] = ACTIONS(2616), + [anon_sym_nullable] = ACTIONS(2616), + [anon_sym__Complex] = ACTIONS(2616), + [anon_sym__Nullable] = ACTIONS(2616), + [anon_sym__Nullable_result] = ACTIONS(2616), + [anon_sym__Null_unspecified] = ACTIONS(2616), + [anon_sym___autoreleasing] = ACTIONS(2616), + [anon_sym___block] = ACTIONS(2616), + [anon_sym___bridge] = ACTIONS(2616), + [anon_sym___bridge_retained] = ACTIONS(2616), + [anon_sym___bridge_transfer] = ACTIONS(2616), + [anon_sym___complex] = ACTIONS(2616), + [anon_sym___const] = ACTIONS(2616), + [anon_sym___imag] = ACTIONS(2616), + [anon_sym___kindof] = ACTIONS(2616), + [anon_sym___nonnull] = ACTIONS(2616), + [anon_sym___nullable] = ACTIONS(2616), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2616), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2616), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2616), + [anon_sym___real] = ACTIONS(2616), + [anon_sym___strong] = ACTIONS(2616), + [anon_sym___unsafe_unretained] = ACTIONS(2616), + [anon_sym___unused] = ACTIONS(2616), + [anon_sym___weak] = ACTIONS(2616), + [anon_sym_alignas] = ACTIONS(2616), + [anon_sym__Alignas] = ACTIONS(2616), + [sym_primitive_type] = ACTIONS(2616), + [anon_sym_enum] = ACTIONS(2616), + [anon_sym_struct] = ACTIONS(2616), + [anon_sym_union] = ACTIONS(2616), + [anon_sym_in] = ACTIONS(2616), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2616), + [anon_sym___typeof] = ACTIONS(2616), + [anon_sym_typeof] = ACTIONS(2616), + [anon_sym_ATprivate] = ACTIONS(2618), + [anon_sym_ATprotected] = ACTIONS(2618), + [anon_sym_ATpackage] = ACTIONS(2618), + [anon_sym_ATpublic] = ACTIONS(2618), + [anon_sym_BOOL] = ACTIONS(2616), + [anon_sym_IMP] = ACTIONS(2616), + [anon_sym_SEL] = ACTIONS(2616), + [anon_sym_Class] = ACTIONS(2616), + [anon_sym_id] = ACTIONS(2616), + [anon_sym_out] = ACTIONS(2616), + [anon_sym_inout] = ACTIONS(2616), + [anon_sym_bycopy] = ACTIONS(2616), + [anon_sym_byref] = ACTIONS(2616), + [anon_sym_oneway] = ACTIONS(2616), + }, + [4094] = { + [sym_identifier] = ACTIONS(5487), + [aux_sym_preproc_if_token1] = ACTIONS(5487), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5489), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5489), + [anon_sym___extension__] = ACTIONS(5487), + [anon_sym___attribute__] = ACTIONS(5487), + [anon_sym___attribute] = ACTIONS(5487), + [anon_sym_noreturn] = ACTIONS(5487), + [anon_sym_LBRACK] = ACTIONS(5489), + [anon_sym_RBRACE] = ACTIONS(5489), + [anon_sym_signed] = ACTIONS(5487), + [anon_sym_unsigned] = ACTIONS(5487), + [anon_sym_long] = ACTIONS(5487), + [anon_sym_short] = ACTIONS(5487), + [anon_sym_const] = ACTIONS(5487), + [anon_sym_constexpr] = ACTIONS(5487), + [anon_sym_volatile] = ACTIONS(5487), + [anon_sym_restrict] = ACTIONS(5487), + [anon_sym___restrict__] = ACTIONS(5487), + [anon_sym__Atomic] = ACTIONS(5487), + [anon_sym__Noreturn] = ACTIONS(5487), + [anon_sym__Nonnull] = ACTIONS(5487), + [anon_sym_nullable] = ACTIONS(5487), + [anon_sym__Complex] = ACTIONS(5487), + [anon_sym__Nullable] = ACTIONS(5487), + [anon_sym__Nullable_result] = ACTIONS(5487), + [anon_sym__Null_unspecified] = ACTIONS(5487), + [anon_sym___autoreleasing] = ACTIONS(5487), + [anon_sym___block] = ACTIONS(5487), + [anon_sym___bridge] = ACTIONS(5487), + [anon_sym___bridge_retained] = ACTIONS(5487), + [anon_sym___bridge_transfer] = ACTIONS(5487), + [anon_sym___complex] = ACTIONS(5487), + [anon_sym___const] = ACTIONS(5487), + [anon_sym___imag] = ACTIONS(5487), + [anon_sym___kindof] = ACTIONS(5487), + [anon_sym___nonnull] = ACTIONS(5487), + [anon_sym___nullable] = ACTIONS(5487), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(5487), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(5487), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(5487), + [anon_sym___real] = ACTIONS(5487), + [anon_sym___strong] = ACTIONS(5487), + [anon_sym___unsafe_unretained] = ACTIONS(5487), + [anon_sym___unused] = ACTIONS(5487), + [anon_sym___weak] = ACTIONS(5487), + [anon_sym_alignas] = ACTIONS(5487), + [anon_sym__Alignas] = ACTIONS(5487), + [sym_primitive_type] = ACTIONS(5487), + [anon_sym_enum] = ACTIONS(5487), + [anon_sym_struct] = ACTIONS(5487), + [anon_sym_union] = ACTIONS(5487), + [anon_sym_in] = ACTIONS(5487), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(5487), + [anon_sym___typeof] = ACTIONS(5487), + [anon_sym_typeof] = ACTIONS(5487), + [anon_sym_ATprivate] = ACTIONS(5489), + [anon_sym_ATprotected] = ACTIONS(5489), + [anon_sym_ATpackage] = ACTIONS(5489), + [anon_sym_ATpublic] = ACTIONS(5489), + [anon_sym_BOOL] = ACTIONS(5487), + [anon_sym_IMP] = ACTIONS(5487), + [anon_sym_SEL] = ACTIONS(5487), + [anon_sym_Class] = ACTIONS(5487), + [anon_sym_id] = ACTIONS(5487), + [anon_sym_out] = ACTIONS(5487), + [anon_sym_inout] = ACTIONS(5487), + [anon_sym_bycopy] = ACTIONS(5487), + [anon_sym_byref] = ACTIONS(5487), + [anon_sym_oneway] = ACTIONS(5487), + }, + [4095] = { + [sym_identifier] = ACTIONS(9093), + [aux_sym_preproc_if_token1] = ACTIONS(9093), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8332), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8332), + [anon_sym___extension__] = ACTIONS(9093), + [anon_sym___attribute__] = ACTIONS(9093), + [anon_sym___attribute] = ACTIONS(9093), + [anon_sym_noreturn] = ACTIONS(9093), + [anon_sym_LBRACK] = ACTIONS(8332), + [anon_sym_RBRACE] = ACTIONS(8332), + [anon_sym_signed] = ACTIONS(9093), + [anon_sym_unsigned] = ACTIONS(9093), + [anon_sym_long] = ACTIONS(9093), + [anon_sym_short] = ACTIONS(9093), + [anon_sym_const] = ACTIONS(9093), + [anon_sym_constexpr] = ACTIONS(9093), + [anon_sym_volatile] = ACTIONS(9093), + [anon_sym_restrict] = ACTIONS(9093), + [anon_sym___restrict__] = ACTIONS(9093), + [anon_sym__Atomic] = ACTIONS(9093), + [anon_sym__Noreturn] = ACTIONS(9093), + [anon_sym__Nonnull] = ACTIONS(9093), + [anon_sym_nullable] = ACTIONS(9093), + [anon_sym__Complex] = ACTIONS(9093), + [anon_sym__Nullable] = ACTIONS(9093), + [anon_sym__Nullable_result] = ACTIONS(9093), + [anon_sym__Null_unspecified] = ACTIONS(9093), + [anon_sym___autoreleasing] = ACTIONS(9093), + [anon_sym___block] = ACTIONS(9093), + [anon_sym___bridge] = ACTIONS(9093), + [anon_sym___bridge_retained] = ACTIONS(9093), + [anon_sym___bridge_transfer] = ACTIONS(9093), + [anon_sym___complex] = ACTIONS(9093), + [anon_sym___const] = ACTIONS(9093), + [anon_sym___imag] = ACTIONS(9093), + [anon_sym___kindof] = ACTIONS(9093), + [anon_sym___nonnull] = ACTIONS(9093), + [anon_sym___nullable] = ACTIONS(9093), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(9093), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(9093), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(9093), + [anon_sym___real] = ACTIONS(9093), + [anon_sym___strong] = ACTIONS(9093), + [anon_sym___unsafe_unretained] = ACTIONS(9093), + [anon_sym___unused] = ACTIONS(9093), + [anon_sym___weak] = ACTIONS(9093), + [anon_sym_alignas] = ACTIONS(9093), + [anon_sym__Alignas] = ACTIONS(9093), + [sym_primitive_type] = ACTIONS(9093), + [anon_sym_enum] = ACTIONS(9093), + [anon_sym_struct] = ACTIONS(9093), + [anon_sym_union] = ACTIONS(9093), + [anon_sym_in] = ACTIONS(9093), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(9093), + [anon_sym___typeof] = ACTIONS(9093), + [anon_sym_typeof] = ACTIONS(9093), + [anon_sym_ATprivate] = ACTIONS(8332), + [anon_sym_ATprotected] = ACTIONS(8332), + [anon_sym_ATpackage] = ACTIONS(8332), + [anon_sym_ATpublic] = ACTIONS(8332), + [anon_sym_BOOL] = ACTIONS(9093), + [anon_sym_IMP] = ACTIONS(9093), + [anon_sym_SEL] = ACTIONS(9093), + [anon_sym_Class] = ACTIONS(9093), + [anon_sym_id] = ACTIONS(9093), + [anon_sym_out] = ACTIONS(9093), + [anon_sym_inout] = ACTIONS(9093), + [anon_sym_bycopy] = ACTIONS(9093), + [anon_sym_byref] = ACTIONS(9093), + [anon_sym_oneway] = ACTIONS(9093), + }, + [4096] = { + [sym_attribute_specifier] = STATE(3987), + [sym_enumerator_list] = STATE(4108), + [sym_identifier] = ACTIONS(7631), + [anon_sym_LPAREN2] = ACTIONS(7633), + [anon_sym_STAR] = ACTIONS(7633), + [anon_sym_CARET] = ACTIONS(7633), + [anon_sym___extension__] = ACTIONS(7631), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7631), + [anon_sym_LBRACK] = ACTIONS(7633), + [anon_sym___based] = ACTIONS(7631), + [anon_sym_LBRACE] = ACTIONS(8913), + [anon_sym_signed] = ACTIONS(7631), + [anon_sym_unsigned] = ACTIONS(7631), + [anon_sym_long] = ACTIONS(7631), + [anon_sym_short] = ACTIONS(7631), + [anon_sym_const] = ACTIONS(7631), + [anon_sym_constexpr] = ACTIONS(7631), + [anon_sym_volatile] = ACTIONS(7631), + [anon_sym_restrict] = ACTIONS(7631), + [anon_sym___restrict__] = ACTIONS(7631), + [anon_sym__Atomic] = ACTIONS(7631), + [anon_sym__Noreturn] = ACTIONS(7631), + [anon_sym__Nonnull] = ACTIONS(7631), + [anon_sym_nullable] = ACTIONS(7631), + [anon_sym__Complex] = ACTIONS(7631), + [anon_sym__Nullable] = ACTIONS(7631), + [anon_sym__Nullable_result] = ACTIONS(7631), + [anon_sym__Null_unspecified] = ACTIONS(7631), + [anon_sym___autoreleasing] = ACTIONS(7631), + [anon_sym___block] = ACTIONS(7631), + [anon_sym___bridge] = ACTIONS(7631), + [anon_sym___bridge_retained] = ACTIONS(7631), + [anon_sym___bridge_transfer] = ACTIONS(7631), + [anon_sym___complex] = ACTIONS(7631), + [anon_sym___const] = ACTIONS(7631), + [anon_sym___imag] = ACTIONS(7631), + [anon_sym___kindof] = ACTIONS(7631), + [anon_sym___nonnull] = ACTIONS(7631), + [anon_sym___nullable] = ACTIONS(7631), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7631), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7631), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7631), + [anon_sym___real] = ACTIONS(7631), + [anon_sym___strong] = ACTIONS(7631), + [anon_sym___unsafe_unretained] = ACTIONS(7631), + [anon_sym___unused] = ACTIONS(7631), + [anon_sym___weak] = ACTIONS(7631), + [anon_sym_alignas] = ACTIONS(7631), + [anon_sym__Alignas] = ACTIONS(7631), + [sym_primitive_type] = ACTIONS(7631), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_COLON] = ACTIONS(7633), + [anon_sym_struct] = ACTIONS(7631), + [anon_sym_union] = ACTIONS(7631), + [anon_sym_in] = ACTIONS(7631), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7631), + [anon_sym___typeof] = ACTIONS(7631), + [anon_sym_typeof] = ACTIONS(7631), + [anon_sym_BOOL] = ACTIONS(7631), + [anon_sym_IMP] = ACTIONS(7631), + [anon_sym_SEL] = ACTIONS(7631), + [anon_sym_Class] = ACTIONS(7631), + [anon_sym_id] = ACTIONS(7631), + [anon_sym_out] = ACTIONS(7631), + [anon_sym_inout] = ACTIONS(7631), + [anon_sym_bycopy] = ACTIONS(7631), + [anon_sym_byref] = ACTIONS(7631), + [anon_sym_oneway] = ACTIONS(7631), + }, + [4097] = { + [sym_identifier] = ACTIONS(2966), + [anon_sym_LPAREN2] = ACTIONS(2968), + [anon_sym_BANG] = ACTIONS(2968), + [anon_sym_TILDE] = ACTIONS(2968), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_STAR] = ACTIONS(2968), + [anon_sym_CARET] = ACTIONS(2968), + [anon_sym_AMP] = ACTIONS(2968), + [anon_sym_SEMI] = ACTIONS(2968), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_ATautoreleasepool] = ACTIONS(2968), + [anon_sym_const] = ACTIONS(2966), + [anon_sym___imag] = ACTIONS(2966), + [anon_sym___real] = ACTIONS(2966), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_switch] = ACTIONS(2966), + [anon_sym_case] = ACTIONS(2966), + [anon_sym_default] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_do] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_in] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_break] = ACTIONS(2966), + [anon_sym_continue] = ACTIONS(2966), + [anon_sym_goto] = ACTIONS(2966), + [anon_sym_DASH_DASH] = ACTIONS(2968), + [anon_sym_PLUS_PLUS] = ACTIONS(2968), + [anon_sym_sizeof] = ACTIONS(2966), + [anon_sym___alignof__] = ACTIONS(2966), + [anon_sym___alignof] = ACTIONS(2966), + [anon_sym__alignof] = ACTIONS(2966), + [anon_sym_alignof] = ACTIONS(2966), + [anon_sym__Alignof] = ACTIONS(2966), + [anon_sym_offsetof] = ACTIONS(2966), + [anon_sym__Generic] = ACTIONS(2966), + [anon_sym_asm] = ACTIONS(2966), + [anon_sym___asm__] = ACTIONS(2966), + [anon_sym___asm] = ACTIONS(2966), + [sym_number_literal] = ACTIONS(2968), + [anon_sym_L_SQUOTE] = ACTIONS(2968), + [anon_sym_u_SQUOTE] = ACTIONS(2968), + [anon_sym_U_SQUOTE] = ACTIONS(2968), + [anon_sym_u8_SQUOTE] = ACTIONS(2968), + [anon_sym_SQUOTE] = ACTIONS(2968), + [anon_sym_AT] = ACTIONS(2966), + [anon_sym_DQUOTE] = ACTIONS(2968), + [anon_sym_L_DQUOTE] = ACTIONS(2968), + [anon_sym_u_DQUOTE] = ACTIONS(2968), + [anon_sym_U_DQUOTE] = ACTIONS(2968), + [anon_sym_u8_DQUOTE] = ACTIONS(2968), + [sym_true] = ACTIONS(2966), + [sym_false] = ACTIONS(2966), + [anon_sym_NULL] = ACTIONS(2966), + [anon_sym_nullptr] = ACTIONS(2966), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2968), + [anon_sym___try] = ACTIONS(2966), + [anon_sym_ATthrow] = ACTIONS(2968), + [anon_sym_ATselector] = ACTIONS(2968), + [anon_sym_ATavailable] = ACTIONS(2968), + [anon_sym___builtin_available] = ACTIONS(2966), + [anon_sym_va_arg] = ACTIONS(2966), + [anon_sym_ATencode] = ACTIONS(2968), + [anon_sym_ATsynchronized] = ACTIONS(2968), + [anon_sym_id] = ACTIONS(2966), + }, + [4098] = { + [sym_identifier] = ACTIONS(2970), + [anon_sym_LPAREN2] = ACTIONS(2972), + [anon_sym_BANG] = ACTIONS(2972), + [anon_sym_TILDE] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2970), + [anon_sym_STAR] = ACTIONS(2972), + [anon_sym_CARET] = ACTIONS(2972), + [anon_sym_AMP] = ACTIONS(2972), + [anon_sym_SEMI] = ACTIONS(2972), + [anon_sym___extension__] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_LBRACE] = ACTIONS(2972), + [anon_sym_ATautoreleasepool] = ACTIONS(2972), + [anon_sym_const] = ACTIONS(2970), + [anon_sym___imag] = ACTIONS(2970), + [anon_sym___real] = ACTIONS(2970), + [anon_sym_struct] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2970), + [anon_sym_case] = ACTIONS(2970), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2970), + [anon_sym_do] = ACTIONS(2970), + [anon_sym_for] = ACTIONS(2970), + [anon_sym_in] = ACTIONS(2970), + [anon_sym_return] = ACTIONS(2970), + [anon_sym_break] = ACTIONS(2970), + [anon_sym_continue] = ACTIONS(2970), + [anon_sym_goto] = ACTIONS(2970), + [anon_sym_DASH_DASH] = ACTIONS(2972), + [anon_sym_PLUS_PLUS] = ACTIONS(2972), + [anon_sym_sizeof] = ACTIONS(2970), + [anon_sym___alignof__] = ACTIONS(2970), + [anon_sym___alignof] = ACTIONS(2970), + [anon_sym__alignof] = ACTIONS(2970), + [anon_sym_alignof] = ACTIONS(2970), + [anon_sym__Alignof] = ACTIONS(2970), + [anon_sym_offsetof] = ACTIONS(2970), + [anon_sym__Generic] = ACTIONS(2970), + [anon_sym_asm] = ACTIONS(2970), + [anon_sym___asm__] = ACTIONS(2970), + [anon_sym___asm] = ACTIONS(2970), + [sym_number_literal] = ACTIONS(2972), + [anon_sym_L_SQUOTE] = ACTIONS(2972), + [anon_sym_u_SQUOTE] = ACTIONS(2972), + [anon_sym_U_SQUOTE] = ACTIONS(2972), + [anon_sym_u8_SQUOTE] = ACTIONS(2972), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_AT] = ACTIONS(2970), + [anon_sym_DQUOTE] = ACTIONS(2972), + [anon_sym_L_DQUOTE] = ACTIONS(2972), + [anon_sym_u_DQUOTE] = ACTIONS(2972), + [anon_sym_U_DQUOTE] = ACTIONS(2972), + [anon_sym_u8_DQUOTE] = ACTIONS(2972), + [sym_true] = ACTIONS(2970), + [sym_false] = ACTIONS(2970), + [anon_sym_NULL] = ACTIONS(2970), + [anon_sym_nullptr] = ACTIONS(2970), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(2972), + [anon_sym___try] = ACTIONS(2970), + [anon_sym_ATthrow] = ACTIONS(2972), + [anon_sym_ATselector] = ACTIONS(2972), + [anon_sym_ATavailable] = ACTIONS(2972), + [anon_sym___builtin_available] = ACTIONS(2970), + [anon_sym_va_arg] = ACTIONS(2970), + [anon_sym_ATencode] = ACTIONS(2972), + [anon_sym_ATsynchronized] = ACTIONS(2972), + [anon_sym_id] = ACTIONS(2970), + }, + [4099] = { + [sym_identifier] = ACTIONS(4132), + [anon_sym_LPAREN2] = ACTIONS(4134), + [anon_sym_BANG] = ACTIONS(4134), + [anon_sym_TILDE] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4132), + [anon_sym_PLUS] = ACTIONS(4132), + [anon_sym_STAR] = ACTIONS(4134), + [anon_sym_CARET] = ACTIONS(4134), + [anon_sym_AMP] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(4134), + [anon_sym___extension__] = ACTIONS(4132), + [anon_sym_LBRACK] = ACTIONS(4134), + [anon_sym_LBRACE] = ACTIONS(4134), + [anon_sym_ATautoreleasepool] = ACTIONS(4134), + [anon_sym_const] = ACTIONS(4132), + [anon_sym___imag] = ACTIONS(4132), + [anon_sym___real] = ACTIONS(4132), + [anon_sym_struct] = ACTIONS(4132), + [anon_sym_if] = ACTIONS(4132), + [anon_sym_switch] = ACTIONS(4132), + [anon_sym_case] = ACTIONS(4132), + [anon_sym_default] = ACTIONS(4132), + [anon_sym_while] = ACTIONS(4132), + [anon_sym_do] = ACTIONS(4132), + [anon_sym_for] = ACTIONS(4132), + [anon_sym_in] = ACTIONS(4132), + [anon_sym_return] = ACTIONS(4132), + [anon_sym_break] = ACTIONS(4132), + [anon_sym_continue] = ACTIONS(4132), + [anon_sym_goto] = ACTIONS(4132), + [anon_sym_DASH_DASH] = ACTIONS(4134), + [anon_sym_PLUS_PLUS] = ACTIONS(4134), + [anon_sym_sizeof] = ACTIONS(4132), + [anon_sym___alignof__] = ACTIONS(4132), + [anon_sym___alignof] = ACTIONS(4132), + [anon_sym__alignof] = ACTIONS(4132), + [anon_sym_alignof] = ACTIONS(4132), + [anon_sym__Alignof] = ACTIONS(4132), + [anon_sym_offsetof] = ACTIONS(4132), + [anon_sym__Generic] = ACTIONS(4132), + [anon_sym_asm] = ACTIONS(4132), + [anon_sym___asm__] = ACTIONS(4132), + [anon_sym___asm] = ACTIONS(4132), + [sym_number_literal] = ACTIONS(4134), + [anon_sym_L_SQUOTE] = ACTIONS(4134), + [anon_sym_u_SQUOTE] = ACTIONS(4134), + [anon_sym_U_SQUOTE] = ACTIONS(4134), + [anon_sym_u8_SQUOTE] = ACTIONS(4134), + [anon_sym_SQUOTE] = ACTIONS(4134), + [anon_sym_AT] = ACTIONS(4132), + [anon_sym_DQUOTE] = ACTIONS(4134), + [anon_sym_L_DQUOTE] = ACTIONS(4134), + [anon_sym_u_DQUOTE] = ACTIONS(4134), + [anon_sym_U_DQUOTE] = ACTIONS(4134), + [anon_sym_u8_DQUOTE] = ACTIONS(4134), + [sym_true] = ACTIONS(4132), + [sym_false] = ACTIONS(4132), + [anon_sym_NULL] = ACTIONS(4132), + [anon_sym_nullptr] = ACTIONS(4132), + [sym_comment] = ACTIONS(3), + [anon_sym_ATtry] = ACTIONS(4134), + [anon_sym___try] = ACTIONS(4132), + [anon_sym_ATthrow] = ACTIONS(4134), + [anon_sym_ATselector] = ACTIONS(4134), + [anon_sym_ATavailable] = ACTIONS(4134), + [anon_sym___builtin_available] = ACTIONS(4132), + [anon_sym_va_arg] = ACTIONS(4132), + [anon_sym_ATencode] = ACTIONS(4134), + [anon_sym_ATsynchronized] = ACTIONS(4134), + [anon_sym_id] = ACTIONS(4132), + }, + [4100] = { + [sym_attribute_specifier] = STATE(3998), + [sym_identifier] = ACTIONS(8055), + [anon_sym_LPAREN2] = ACTIONS(8057), + [anon_sym_STAR] = ACTIONS(8057), + [anon_sym_CARET] = ACTIONS(8057), + [anon_sym___extension__] = ACTIONS(8055), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8055), + [anon_sym_LBRACK] = ACTIONS(8057), + [anon_sym___based] = ACTIONS(8055), + [anon_sym_signed] = ACTIONS(8055), + [anon_sym_unsigned] = ACTIONS(8055), + [anon_sym_long] = ACTIONS(8055), + [anon_sym_short] = ACTIONS(8055), + [anon_sym_const] = ACTIONS(8055), + [anon_sym_constexpr] = ACTIONS(8055), + [anon_sym_volatile] = ACTIONS(8055), + [anon_sym_restrict] = ACTIONS(8055), + [anon_sym___restrict__] = ACTIONS(8055), + [anon_sym__Atomic] = ACTIONS(8055), + [anon_sym__Noreturn] = ACTIONS(8055), + [anon_sym__Nonnull] = ACTIONS(8055), + [anon_sym_nullable] = ACTIONS(8055), + [anon_sym__Complex] = ACTIONS(8055), + [anon_sym__Nullable] = ACTIONS(8055), + [anon_sym__Nullable_result] = ACTIONS(8055), + [anon_sym__Null_unspecified] = ACTIONS(8055), + [anon_sym___autoreleasing] = ACTIONS(8055), + [anon_sym___block] = ACTIONS(8055), + [anon_sym___bridge] = ACTIONS(8055), + [anon_sym___bridge_retained] = ACTIONS(8055), + [anon_sym___bridge_transfer] = ACTIONS(8055), + [anon_sym___complex] = ACTIONS(8055), + [anon_sym___const] = ACTIONS(8055), + [anon_sym___imag] = ACTIONS(8055), + [anon_sym___kindof] = ACTIONS(8055), + [anon_sym___nonnull] = ACTIONS(8055), + [anon_sym___nullable] = ACTIONS(8055), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8055), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8055), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8055), + [anon_sym___real] = ACTIONS(8055), + [anon_sym___strong] = ACTIONS(8055), + [anon_sym___unsafe_unretained] = ACTIONS(8055), + [anon_sym___unused] = ACTIONS(8055), + [anon_sym___weak] = ACTIONS(8055), + [anon_sym_alignas] = ACTIONS(8055), + [anon_sym__Alignas] = ACTIONS(8055), + [sym_primitive_type] = ACTIONS(8055), + [anon_sym_enum] = ACTIONS(8055), + [anon_sym_COLON] = ACTIONS(8057), + [anon_sym_struct] = ACTIONS(8055), + [anon_sym_union] = ACTIONS(8055), + [anon_sym_in] = ACTIONS(8055), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8055), + [anon_sym___typeof] = ACTIONS(8055), + [anon_sym_typeof] = ACTIONS(8055), + [anon_sym_BOOL] = ACTIONS(8055), + [anon_sym_IMP] = ACTIONS(8055), + [anon_sym_SEL] = ACTIONS(8055), + [anon_sym_Class] = ACTIONS(8055), + [anon_sym_id] = ACTIONS(8055), + [anon_sym_out] = ACTIONS(8055), + [anon_sym_inout] = ACTIONS(8055), + [anon_sym_bycopy] = ACTIONS(8055), + [anon_sym_byref] = ACTIONS(8055), + [anon_sym_oneway] = ACTIONS(8055), + }, + [4101] = { + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_type_descriptor] = STATE(6217), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4102] = { + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_type_descriptor] = STATE(6340), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4103] = { + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_type_descriptor] = STATE(6460), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4104] = { + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_type_descriptor] = STATE(6237), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4105] = { + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_type_descriptor] = STATE(6357), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4106] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3828), + [aux_sym_generic_specifier_repeat1] = STATE(3838), + [sym_identifier] = ACTIONS(4502), + [anon_sym_LPAREN2] = ACTIONS(9095), + [anon_sym_STAR] = ACTIONS(5932), + [anon_sym_CARET] = ACTIONS(5932), + [anon_sym_LT] = ACTIONS(5934), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(5932), + [anon_sym___based] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(5944), + [anon_sym_unsigned] = ACTIONS(5944), + [anon_sym_long] = ACTIONS(5944), + [anon_sym_short] = ACTIONS(5944), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_nullable] = ACTIONS(4502), + [anon_sym__Complex] = ACTIONS(4502), + [anon_sym__Nullable] = ACTIONS(4502), + [anon_sym__Nullable_result] = ACTIONS(4502), + [anon_sym__Null_unspecified] = ACTIONS(4502), + [anon_sym___autoreleasing] = ACTIONS(4502), + [anon_sym___block] = ACTIONS(4502), + [anon_sym___bridge] = ACTIONS(4502), + [anon_sym___bridge_retained] = ACTIONS(4502), + [anon_sym___bridge_transfer] = ACTIONS(4502), + [anon_sym___complex] = ACTIONS(4502), + [anon_sym___const] = ACTIONS(4502), + [anon_sym___imag] = ACTIONS(4502), + [anon_sym___kindof] = ACTIONS(4502), + [anon_sym___nonnull] = ACTIONS(4502), + [anon_sym___nullable] = ACTIONS(4502), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(4502), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(4502), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(4502), + [anon_sym___real] = ACTIONS(4502), + [anon_sym___strong] = ACTIONS(4502), + [anon_sym___unsafe_unretained] = ACTIONS(4502), + [anon_sym___unused] = ACTIONS(4502), + [anon_sym___weak] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [sym_primitive_type] = ACTIONS(4502), + [anon_sym_enum] = ACTIONS(4502), + [anon_sym_COLON] = ACTIONS(5932), + [anon_sym_struct] = ACTIONS(4502), + [anon_sym_union] = ACTIONS(4502), + [anon_sym_in] = ACTIONS(4502), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(4502), + [anon_sym___typeof] = ACTIONS(4502), + [anon_sym_typeof] = ACTIONS(4502), + [anon_sym_BOOL] = ACTIONS(4502), + [anon_sym_IMP] = ACTIONS(4502), + [anon_sym_SEL] = ACTIONS(4502), + [anon_sym_Class] = ACTIONS(4502), + [anon_sym_id] = ACTIONS(4502), + [anon_sym_out] = ACTIONS(4502), + [anon_sym_inout] = ACTIONS(4502), + [anon_sym_bycopy] = ACTIONS(4502), + [anon_sym_byref] = ACTIONS(4502), + [anon_sym_oneway] = ACTIONS(4502), + }, + [4107] = { + [sym_attribute_specifier] = STATE(3885), + [sym_identifier] = ACTIONS(7989), + [anon_sym_LPAREN2] = ACTIONS(7991), + [anon_sym_STAR] = ACTIONS(7991), + [anon_sym_CARET] = ACTIONS(7991), + [anon_sym___extension__] = ACTIONS(7989), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7989), + [anon_sym_LBRACK] = ACTIONS(7991), + [anon_sym___based] = ACTIONS(7989), + [anon_sym_signed] = ACTIONS(7989), + [anon_sym_unsigned] = ACTIONS(7989), + [anon_sym_long] = ACTIONS(7989), + [anon_sym_short] = ACTIONS(7989), + [anon_sym_const] = ACTIONS(7989), + [anon_sym_constexpr] = ACTIONS(7989), + [anon_sym_volatile] = ACTIONS(7989), + [anon_sym_restrict] = ACTIONS(7989), + [anon_sym___restrict__] = ACTIONS(7989), + [anon_sym__Atomic] = ACTIONS(7989), + [anon_sym__Noreturn] = ACTIONS(7989), + [anon_sym__Nonnull] = ACTIONS(7989), + [anon_sym_nullable] = ACTIONS(7989), + [anon_sym__Complex] = ACTIONS(7989), + [anon_sym__Nullable] = ACTIONS(7989), + [anon_sym__Nullable_result] = ACTIONS(7989), + [anon_sym__Null_unspecified] = ACTIONS(7989), + [anon_sym___autoreleasing] = ACTIONS(7989), + [anon_sym___block] = ACTIONS(7989), + [anon_sym___bridge] = ACTIONS(7989), + [anon_sym___bridge_retained] = ACTIONS(7989), + [anon_sym___bridge_transfer] = ACTIONS(7989), + [anon_sym___complex] = ACTIONS(7989), + [anon_sym___const] = ACTIONS(7989), + [anon_sym___imag] = ACTIONS(7989), + [anon_sym___kindof] = ACTIONS(7989), + [anon_sym___nonnull] = ACTIONS(7989), + [anon_sym___nullable] = ACTIONS(7989), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7989), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7989), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7989), + [anon_sym___real] = ACTIONS(7989), + [anon_sym___strong] = ACTIONS(7989), + [anon_sym___unsafe_unretained] = ACTIONS(7989), + [anon_sym___unused] = ACTIONS(7989), + [anon_sym___weak] = ACTIONS(7989), + [anon_sym_alignas] = ACTIONS(7989), + [anon_sym__Alignas] = ACTIONS(7989), + [sym_primitive_type] = ACTIONS(7989), + [anon_sym_enum] = ACTIONS(7989), + [anon_sym_COLON] = ACTIONS(7991), + [anon_sym_struct] = ACTIONS(7989), + [anon_sym_union] = ACTIONS(7989), + [anon_sym_in] = ACTIONS(7989), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7989), + [anon_sym___typeof] = ACTIONS(7989), + [anon_sym_typeof] = ACTIONS(7989), + [anon_sym_BOOL] = ACTIONS(7989), + [anon_sym_IMP] = ACTIONS(7989), + [anon_sym_SEL] = ACTIONS(7989), + [anon_sym_Class] = ACTIONS(7989), + [anon_sym_id] = ACTIONS(7989), + [anon_sym_out] = ACTIONS(7989), + [anon_sym_inout] = ACTIONS(7989), + [anon_sym_bycopy] = ACTIONS(7989), + [anon_sym_byref] = ACTIONS(7989), + [anon_sym_oneway] = ACTIONS(7989), + }, + [4108] = { + [sym_attribute_specifier] = STATE(3979), + [sym_identifier] = ACTIONS(7946), + [anon_sym_LPAREN2] = ACTIONS(7948), + [anon_sym_STAR] = ACTIONS(7948), + [anon_sym_CARET] = ACTIONS(7948), + [anon_sym___extension__] = ACTIONS(7946), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7946), + [anon_sym_LBRACK] = ACTIONS(7948), + [anon_sym___based] = ACTIONS(7946), + [anon_sym_signed] = ACTIONS(7946), + [anon_sym_unsigned] = ACTIONS(7946), + [anon_sym_long] = ACTIONS(7946), + [anon_sym_short] = ACTIONS(7946), + [anon_sym_const] = ACTIONS(7946), + [anon_sym_constexpr] = ACTIONS(7946), + [anon_sym_volatile] = ACTIONS(7946), + [anon_sym_restrict] = ACTIONS(7946), + [anon_sym___restrict__] = ACTIONS(7946), + [anon_sym__Atomic] = ACTIONS(7946), + [anon_sym__Noreturn] = ACTIONS(7946), + [anon_sym__Nonnull] = ACTIONS(7946), + [anon_sym_nullable] = ACTIONS(7946), + [anon_sym__Complex] = ACTIONS(7946), + [anon_sym__Nullable] = ACTIONS(7946), + [anon_sym__Nullable_result] = ACTIONS(7946), + [anon_sym__Null_unspecified] = ACTIONS(7946), + [anon_sym___autoreleasing] = ACTIONS(7946), + [anon_sym___block] = ACTIONS(7946), + [anon_sym___bridge] = ACTIONS(7946), + [anon_sym___bridge_retained] = ACTIONS(7946), + [anon_sym___bridge_transfer] = ACTIONS(7946), + [anon_sym___complex] = ACTIONS(7946), + [anon_sym___const] = ACTIONS(7946), + [anon_sym___imag] = ACTIONS(7946), + [anon_sym___kindof] = ACTIONS(7946), + [anon_sym___nonnull] = ACTIONS(7946), + [anon_sym___nullable] = ACTIONS(7946), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7946), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7946), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7946), + [anon_sym___real] = ACTIONS(7946), + [anon_sym___strong] = ACTIONS(7946), + [anon_sym___unsafe_unretained] = ACTIONS(7946), + [anon_sym___unused] = ACTIONS(7946), + [anon_sym___weak] = ACTIONS(7946), + [anon_sym_alignas] = ACTIONS(7946), + [anon_sym__Alignas] = ACTIONS(7946), + [sym_primitive_type] = ACTIONS(7946), + [anon_sym_enum] = ACTIONS(7946), + [anon_sym_COLON] = ACTIONS(7948), + [anon_sym_struct] = ACTIONS(7946), + [anon_sym_union] = ACTIONS(7946), + [anon_sym_in] = ACTIONS(7946), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7946), + [anon_sym___typeof] = ACTIONS(7946), + [anon_sym_typeof] = ACTIONS(7946), + [anon_sym_BOOL] = ACTIONS(7946), + [anon_sym_IMP] = ACTIONS(7946), + [anon_sym_SEL] = ACTIONS(7946), + [anon_sym_Class] = ACTIONS(7946), + [anon_sym_id] = ACTIONS(7946), + [anon_sym_out] = ACTIONS(7946), + [anon_sym_inout] = ACTIONS(7946), + [anon_sym_bycopy] = ACTIONS(7946), + [anon_sym_byref] = ACTIONS(7946), + [anon_sym_oneway] = ACTIONS(7946), + }, + [4109] = { + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_type_descriptor] = STATE(5930), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4110] = { + [sym_type_qualifier] = STATE(4129), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_type_descriptor] = STATE(6557), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4129), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(9098), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4111] = { + [sym_attribute_specifier] = STATE(3976), + [sym_identifier] = ACTIONS(8044), + [anon_sym_LPAREN2] = ACTIONS(8046), + [anon_sym_STAR] = ACTIONS(8046), + [anon_sym_CARET] = ACTIONS(8046), + [anon_sym___extension__] = ACTIONS(8044), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8044), + [anon_sym_LBRACK] = ACTIONS(8046), + [anon_sym___based] = ACTIONS(8044), + [anon_sym_signed] = ACTIONS(8044), + [anon_sym_unsigned] = ACTIONS(8044), + [anon_sym_long] = ACTIONS(8044), + [anon_sym_short] = ACTIONS(8044), + [anon_sym_const] = ACTIONS(8044), + [anon_sym_constexpr] = ACTIONS(8044), + [anon_sym_volatile] = ACTIONS(8044), + [anon_sym_restrict] = ACTIONS(8044), + [anon_sym___restrict__] = ACTIONS(8044), + [anon_sym__Atomic] = ACTIONS(8044), + [anon_sym__Noreturn] = ACTIONS(8044), + [anon_sym__Nonnull] = ACTIONS(8044), + [anon_sym_nullable] = ACTIONS(8044), + [anon_sym__Complex] = ACTIONS(8044), + [anon_sym__Nullable] = ACTIONS(8044), + [anon_sym__Nullable_result] = ACTIONS(8044), + [anon_sym__Null_unspecified] = ACTIONS(8044), + [anon_sym___autoreleasing] = ACTIONS(8044), + [anon_sym___block] = ACTIONS(8044), + [anon_sym___bridge] = ACTIONS(8044), + [anon_sym___bridge_retained] = ACTIONS(8044), + [anon_sym___bridge_transfer] = ACTIONS(8044), + [anon_sym___complex] = ACTIONS(8044), + [anon_sym___const] = ACTIONS(8044), + [anon_sym___imag] = ACTIONS(8044), + [anon_sym___kindof] = ACTIONS(8044), + [anon_sym___nonnull] = ACTIONS(8044), + [anon_sym___nullable] = ACTIONS(8044), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8044), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8044), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8044), + [anon_sym___real] = ACTIONS(8044), + [anon_sym___strong] = ACTIONS(8044), + [anon_sym___unsafe_unretained] = ACTIONS(8044), + [anon_sym___unused] = ACTIONS(8044), + [anon_sym___weak] = ACTIONS(8044), + [anon_sym_alignas] = ACTIONS(8044), + [anon_sym__Alignas] = ACTIONS(8044), + [sym_primitive_type] = ACTIONS(8044), + [anon_sym_enum] = ACTIONS(8044), + [anon_sym_COLON] = ACTIONS(8046), + [anon_sym_struct] = ACTIONS(8044), + [anon_sym_union] = ACTIONS(8044), + [anon_sym_in] = ACTIONS(8044), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8044), + [anon_sym___typeof] = ACTIONS(8044), + [anon_sym_typeof] = ACTIONS(8044), + [anon_sym_BOOL] = ACTIONS(8044), + [anon_sym_IMP] = ACTIONS(8044), + [anon_sym_SEL] = ACTIONS(8044), + [anon_sym_Class] = ACTIONS(8044), + [anon_sym_id] = ACTIONS(8044), + [anon_sym_out] = ACTIONS(8044), + [anon_sym_inout] = ACTIONS(8044), + [anon_sym_bycopy] = ACTIONS(8044), + [anon_sym_byref] = ACTIONS(8044), + [anon_sym_oneway] = ACTIONS(8044), + }, + [4112] = { + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_type_descriptor] = STATE(6030), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4113] = { + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_type_descriptor] = STATE(6705), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4114] = { + [sym_attribute_specifier] = STATE(4002), + [sym_identifier] = ACTIONS(7953), + [anon_sym_LPAREN2] = ACTIONS(7955), + [anon_sym_STAR] = ACTIONS(7955), + [anon_sym_CARET] = ACTIONS(7955), + [anon_sym___extension__] = ACTIONS(7953), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7953), + [anon_sym_LBRACK] = ACTIONS(7955), + [anon_sym___based] = ACTIONS(7953), + [anon_sym_signed] = ACTIONS(7953), + [anon_sym_unsigned] = ACTIONS(7953), + [anon_sym_long] = ACTIONS(7953), + [anon_sym_short] = ACTIONS(7953), + [anon_sym_const] = ACTIONS(7953), + [anon_sym_constexpr] = ACTIONS(7953), + [anon_sym_volatile] = ACTIONS(7953), + [anon_sym_restrict] = ACTIONS(7953), + [anon_sym___restrict__] = ACTIONS(7953), + [anon_sym__Atomic] = ACTIONS(7953), + [anon_sym__Noreturn] = ACTIONS(7953), + [anon_sym__Nonnull] = ACTIONS(7953), + [anon_sym_nullable] = ACTIONS(7953), + [anon_sym__Complex] = ACTIONS(7953), + [anon_sym__Nullable] = ACTIONS(7953), + [anon_sym__Nullable_result] = ACTIONS(7953), + [anon_sym__Null_unspecified] = ACTIONS(7953), + [anon_sym___autoreleasing] = ACTIONS(7953), + [anon_sym___block] = ACTIONS(7953), + [anon_sym___bridge] = ACTIONS(7953), + [anon_sym___bridge_retained] = ACTIONS(7953), + [anon_sym___bridge_transfer] = ACTIONS(7953), + [anon_sym___complex] = ACTIONS(7953), + [anon_sym___const] = ACTIONS(7953), + [anon_sym___imag] = ACTIONS(7953), + [anon_sym___kindof] = ACTIONS(7953), + [anon_sym___nonnull] = ACTIONS(7953), + [anon_sym___nullable] = ACTIONS(7953), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7953), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7953), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7953), + [anon_sym___real] = ACTIONS(7953), + [anon_sym___strong] = ACTIONS(7953), + [anon_sym___unsafe_unretained] = ACTIONS(7953), + [anon_sym___unused] = ACTIONS(7953), + [anon_sym___weak] = ACTIONS(7953), + [anon_sym_alignas] = ACTIONS(7953), + [anon_sym__Alignas] = ACTIONS(7953), + [sym_primitive_type] = ACTIONS(7953), + [anon_sym_enum] = ACTIONS(7953), + [anon_sym_COLON] = ACTIONS(7955), + [anon_sym_struct] = ACTIONS(7953), + [anon_sym_union] = ACTIONS(7953), + [anon_sym_in] = ACTIONS(7953), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7953), + [anon_sym___typeof] = ACTIONS(7953), + [anon_sym_typeof] = ACTIONS(7953), + [anon_sym_BOOL] = ACTIONS(7953), + [anon_sym_IMP] = ACTIONS(7953), + [anon_sym_SEL] = ACTIONS(7953), + [anon_sym_Class] = ACTIONS(7953), + [anon_sym_id] = ACTIONS(7953), + [anon_sym_out] = ACTIONS(7953), + [anon_sym_inout] = ACTIONS(7953), + [anon_sym_bycopy] = ACTIONS(7953), + [anon_sym_byref] = ACTIONS(7953), + [anon_sym_oneway] = ACTIONS(7953), + }, + [4115] = { + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_type_descriptor] = STATE(6683), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4116] = { + [sym_type_qualifier] = STATE(4129), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_type_descriptor] = STATE(6269), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4129), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(9098), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4117] = { + [sym_attribute_specifier] = STATE(3860), + [sym_identifier] = ACTIONS(7960), + [anon_sym_LPAREN2] = ACTIONS(7962), + [anon_sym_STAR] = ACTIONS(7962), + [anon_sym_CARET] = ACTIONS(7962), + [anon_sym___extension__] = ACTIONS(7960), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7960), + [anon_sym_LBRACK] = ACTIONS(7962), + [anon_sym___based] = ACTIONS(7960), + [anon_sym_signed] = ACTIONS(7960), + [anon_sym_unsigned] = ACTIONS(7960), + [anon_sym_long] = ACTIONS(7960), + [anon_sym_short] = ACTIONS(7960), + [anon_sym_const] = ACTIONS(7960), + [anon_sym_constexpr] = ACTIONS(7960), + [anon_sym_volatile] = ACTIONS(7960), + [anon_sym_restrict] = ACTIONS(7960), + [anon_sym___restrict__] = ACTIONS(7960), + [anon_sym__Atomic] = ACTIONS(7960), + [anon_sym__Noreturn] = ACTIONS(7960), + [anon_sym__Nonnull] = ACTIONS(7960), + [anon_sym_nullable] = ACTIONS(7960), + [anon_sym__Complex] = ACTIONS(7960), + [anon_sym__Nullable] = ACTIONS(7960), + [anon_sym__Nullable_result] = ACTIONS(7960), + [anon_sym__Null_unspecified] = ACTIONS(7960), + [anon_sym___autoreleasing] = ACTIONS(7960), + [anon_sym___block] = ACTIONS(7960), + [anon_sym___bridge] = ACTIONS(7960), + [anon_sym___bridge_retained] = ACTIONS(7960), + [anon_sym___bridge_transfer] = ACTIONS(7960), + [anon_sym___complex] = ACTIONS(7960), + [anon_sym___const] = ACTIONS(7960), + [anon_sym___imag] = ACTIONS(7960), + [anon_sym___kindof] = ACTIONS(7960), + [anon_sym___nonnull] = ACTIONS(7960), + [anon_sym___nullable] = ACTIONS(7960), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7960), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7960), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7960), + [anon_sym___real] = ACTIONS(7960), + [anon_sym___strong] = ACTIONS(7960), + [anon_sym___unsafe_unretained] = ACTIONS(7960), + [anon_sym___unused] = ACTIONS(7960), + [anon_sym___weak] = ACTIONS(7960), + [anon_sym_alignas] = ACTIONS(7960), + [anon_sym__Alignas] = ACTIONS(7960), + [sym_primitive_type] = ACTIONS(7960), + [anon_sym_enum] = ACTIONS(7960), + [anon_sym_COLON] = ACTIONS(7962), + [anon_sym_struct] = ACTIONS(7960), + [anon_sym_union] = ACTIONS(7960), + [anon_sym_in] = ACTIONS(7960), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7960), + [anon_sym___typeof] = ACTIONS(7960), + [anon_sym_typeof] = ACTIONS(7960), + [anon_sym_BOOL] = ACTIONS(7960), + [anon_sym_IMP] = ACTIONS(7960), + [anon_sym_SEL] = ACTIONS(7960), + [anon_sym_Class] = ACTIONS(7960), + [anon_sym_id] = ACTIONS(7960), + [anon_sym_out] = ACTIONS(7960), + [anon_sym_inout] = ACTIONS(7960), + [anon_sym_bycopy] = ACTIONS(7960), + [anon_sym_byref] = ACTIONS(7960), + [anon_sym_oneway] = ACTIONS(7960), + }, + [4118] = { + [sym_attribute_specifier] = STATE(3995), + [sym_identifier] = ACTIONS(7821), + [anon_sym_LPAREN2] = ACTIONS(7823), + [anon_sym_STAR] = ACTIONS(7823), + [anon_sym_CARET] = ACTIONS(7823), + [anon_sym___extension__] = ACTIONS(7821), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7821), + [anon_sym_LBRACK] = ACTIONS(7823), + [anon_sym___based] = ACTIONS(7821), + [anon_sym_signed] = ACTIONS(7821), + [anon_sym_unsigned] = ACTIONS(7821), + [anon_sym_long] = ACTIONS(7821), + [anon_sym_short] = ACTIONS(7821), + [anon_sym_const] = ACTIONS(7821), + [anon_sym_constexpr] = ACTIONS(7821), + [anon_sym_volatile] = ACTIONS(7821), + [anon_sym_restrict] = ACTIONS(7821), + [anon_sym___restrict__] = ACTIONS(7821), + [anon_sym__Atomic] = ACTIONS(7821), + [anon_sym__Noreturn] = ACTIONS(7821), + [anon_sym__Nonnull] = ACTIONS(7821), + [anon_sym_nullable] = ACTIONS(7821), + [anon_sym__Complex] = ACTIONS(7821), + [anon_sym__Nullable] = ACTIONS(7821), + [anon_sym__Nullable_result] = ACTIONS(7821), + [anon_sym__Null_unspecified] = ACTIONS(7821), + [anon_sym___autoreleasing] = ACTIONS(7821), + [anon_sym___block] = ACTIONS(7821), + [anon_sym___bridge] = ACTIONS(7821), + [anon_sym___bridge_retained] = ACTIONS(7821), + [anon_sym___bridge_transfer] = ACTIONS(7821), + [anon_sym___complex] = ACTIONS(7821), + [anon_sym___const] = ACTIONS(7821), + [anon_sym___imag] = ACTIONS(7821), + [anon_sym___kindof] = ACTIONS(7821), + [anon_sym___nonnull] = ACTIONS(7821), + [anon_sym___nullable] = ACTIONS(7821), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7821), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7821), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7821), + [anon_sym___real] = ACTIONS(7821), + [anon_sym___strong] = ACTIONS(7821), + [anon_sym___unsafe_unretained] = ACTIONS(7821), + [anon_sym___unused] = ACTIONS(7821), + [anon_sym___weak] = ACTIONS(7821), + [anon_sym_alignas] = ACTIONS(7821), + [anon_sym__Alignas] = ACTIONS(7821), + [sym_primitive_type] = ACTIONS(7821), + [anon_sym_enum] = ACTIONS(7821), + [anon_sym_COLON] = ACTIONS(7823), + [anon_sym_struct] = ACTIONS(7821), + [anon_sym_union] = ACTIONS(7821), + [anon_sym_in] = ACTIONS(7821), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7821), + [anon_sym___typeof] = ACTIONS(7821), + [anon_sym_typeof] = ACTIONS(7821), + [anon_sym_BOOL] = ACTIONS(7821), + [anon_sym_IMP] = ACTIONS(7821), + [anon_sym_SEL] = ACTIONS(7821), + [anon_sym_Class] = ACTIONS(7821), + [anon_sym_id] = ACTIONS(7821), + [anon_sym_out] = ACTIONS(7821), + [anon_sym_inout] = ACTIONS(7821), + [anon_sym_bycopy] = ACTIONS(7821), + [anon_sym_byref] = ACTIONS(7821), + [anon_sym_oneway] = ACTIONS(7821), + }, + [4119] = { + [sym_attribute_specifier] = STATE(3992), + [sym_identifier] = ACTIONS(7804), + [anon_sym_LPAREN2] = ACTIONS(7806), + [anon_sym_STAR] = ACTIONS(7806), + [anon_sym_CARET] = ACTIONS(7806), + [anon_sym___extension__] = ACTIONS(7804), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7804), + [anon_sym_LBRACK] = ACTIONS(7806), + [anon_sym___based] = ACTIONS(7804), + [anon_sym_signed] = ACTIONS(7804), + [anon_sym_unsigned] = ACTIONS(7804), + [anon_sym_long] = ACTIONS(7804), + [anon_sym_short] = ACTIONS(7804), + [anon_sym_const] = ACTIONS(7804), + [anon_sym_constexpr] = ACTIONS(7804), + [anon_sym_volatile] = ACTIONS(7804), + [anon_sym_restrict] = ACTIONS(7804), + [anon_sym___restrict__] = ACTIONS(7804), + [anon_sym__Atomic] = ACTIONS(7804), + [anon_sym__Noreturn] = ACTIONS(7804), + [anon_sym__Nonnull] = ACTIONS(7804), + [anon_sym_nullable] = ACTIONS(7804), + [anon_sym__Complex] = ACTIONS(7804), + [anon_sym__Nullable] = ACTIONS(7804), + [anon_sym__Nullable_result] = ACTIONS(7804), + [anon_sym__Null_unspecified] = ACTIONS(7804), + [anon_sym___autoreleasing] = ACTIONS(7804), + [anon_sym___block] = ACTIONS(7804), + [anon_sym___bridge] = ACTIONS(7804), + [anon_sym___bridge_retained] = ACTIONS(7804), + [anon_sym___bridge_transfer] = ACTIONS(7804), + [anon_sym___complex] = ACTIONS(7804), + [anon_sym___const] = ACTIONS(7804), + [anon_sym___imag] = ACTIONS(7804), + [anon_sym___kindof] = ACTIONS(7804), + [anon_sym___nonnull] = ACTIONS(7804), + [anon_sym___nullable] = ACTIONS(7804), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7804), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7804), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7804), + [anon_sym___real] = ACTIONS(7804), + [anon_sym___strong] = ACTIONS(7804), + [anon_sym___unsafe_unretained] = ACTIONS(7804), + [anon_sym___unused] = ACTIONS(7804), + [anon_sym___weak] = ACTIONS(7804), + [anon_sym_alignas] = ACTIONS(7804), + [anon_sym__Alignas] = ACTIONS(7804), + [sym_primitive_type] = ACTIONS(7804), + [anon_sym_enum] = ACTIONS(7804), + [anon_sym_COLON] = ACTIONS(7806), + [anon_sym_struct] = ACTIONS(7804), + [anon_sym_union] = ACTIONS(7804), + [anon_sym_in] = ACTIONS(7804), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7804), + [anon_sym___typeof] = ACTIONS(7804), + [anon_sym_typeof] = ACTIONS(7804), + [anon_sym_BOOL] = ACTIONS(7804), + [anon_sym_IMP] = ACTIONS(7804), + [anon_sym_SEL] = ACTIONS(7804), + [anon_sym_Class] = ACTIONS(7804), + [anon_sym_id] = ACTIONS(7804), + [anon_sym_out] = ACTIONS(7804), + [anon_sym_inout] = ACTIONS(7804), + [anon_sym_bycopy] = ACTIONS(7804), + [anon_sym_byref] = ACTIONS(7804), + [anon_sym_oneway] = ACTIONS(7804), + }, + [4120] = { + [sym_attribute_specifier] = STATE(3901), + [sym_identifier] = ACTIONS(7971), + [anon_sym_LPAREN2] = ACTIONS(7973), + [anon_sym_STAR] = ACTIONS(7973), + [anon_sym_CARET] = ACTIONS(7973), + [anon_sym___extension__] = ACTIONS(7971), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7971), + [anon_sym_LBRACK] = ACTIONS(7973), + [anon_sym___based] = ACTIONS(7971), + [anon_sym_signed] = ACTIONS(7971), + [anon_sym_unsigned] = ACTIONS(7971), + [anon_sym_long] = ACTIONS(7971), + [anon_sym_short] = ACTIONS(7971), + [anon_sym_const] = ACTIONS(7971), + [anon_sym_constexpr] = ACTIONS(7971), + [anon_sym_volatile] = ACTIONS(7971), + [anon_sym_restrict] = ACTIONS(7971), + [anon_sym___restrict__] = ACTIONS(7971), + [anon_sym__Atomic] = ACTIONS(7971), + [anon_sym__Noreturn] = ACTIONS(7971), + [anon_sym__Nonnull] = ACTIONS(7971), + [anon_sym_nullable] = ACTIONS(7971), + [anon_sym__Complex] = ACTIONS(7971), + [anon_sym__Nullable] = ACTIONS(7971), + [anon_sym__Nullable_result] = ACTIONS(7971), + [anon_sym__Null_unspecified] = ACTIONS(7971), + [anon_sym___autoreleasing] = ACTIONS(7971), + [anon_sym___block] = ACTIONS(7971), + [anon_sym___bridge] = ACTIONS(7971), + [anon_sym___bridge_retained] = ACTIONS(7971), + [anon_sym___bridge_transfer] = ACTIONS(7971), + [anon_sym___complex] = ACTIONS(7971), + [anon_sym___const] = ACTIONS(7971), + [anon_sym___imag] = ACTIONS(7971), + [anon_sym___kindof] = ACTIONS(7971), + [anon_sym___nonnull] = ACTIONS(7971), + [anon_sym___nullable] = ACTIONS(7971), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7971), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7971), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7971), + [anon_sym___real] = ACTIONS(7971), + [anon_sym___strong] = ACTIONS(7971), + [anon_sym___unsafe_unretained] = ACTIONS(7971), + [anon_sym___unused] = ACTIONS(7971), + [anon_sym___weak] = ACTIONS(7971), + [anon_sym_alignas] = ACTIONS(7971), + [anon_sym__Alignas] = ACTIONS(7971), + [sym_primitive_type] = ACTIONS(7971), + [anon_sym_enum] = ACTIONS(7971), + [anon_sym_COLON] = ACTIONS(7973), + [anon_sym_struct] = ACTIONS(7971), + [anon_sym_union] = ACTIONS(7971), + [anon_sym_in] = ACTIONS(7971), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7971), + [anon_sym___typeof] = ACTIONS(7971), + [anon_sym_typeof] = ACTIONS(7971), + [anon_sym_BOOL] = ACTIONS(7971), + [anon_sym_IMP] = ACTIONS(7971), + [anon_sym_SEL] = ACTIONS(7971), + [anon_sym_Class] = ACTIONS(7971), + [anon_sym_id] = ACTIONS(7971), + [anon_sym_out] = ACTIONS(7971), + [anon_sym_inout] = ACTIONS(7971), + [anon_sym_bycopy] = ACTIONS(7971), + [anon_sym_byref] = ACTIONS(7971), + [anon_sym_oneway] = ACTIONS(7971), + }, + [4121] = { + [sym_attribute_specifier] = STATE(3975), + [sym_identifier] = ACTIONS(8004), + [anon_sym_LPAREN2] = ACTIONS(8006), + [anon_sym_STAR] = ACTIONS(8006), + [anon_sym_CARET] = ACTIONS(8006), + [anon_sym___extension__] = ACTIONS(8004), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8004), + [anon_sym_LBRACK] = ACTIONS(8006), + [anon_sym___based] = ACTIONS(8004), + [anon_sym_signed] = ACTIONS(8004), + [anon_sym_unsigned] = ACTIONS(8004), + [anon_sym_long] = ACTIONS(8004), + [anon_sym_short] = ACTIONS(8004), + [anon_sym_const] = ACTIONS(8004), + [anon_sym_constexpr] = ACTIONS(8004), + [anon_sym_volatile] = ACTIONS(8004), + [anon_sym_restrict] = ACTIONS(8004), + [anon_sym___restrict__] = ACTIONS(8004), + [anon_sym__Atomic] = ACTIONS(8004), + [anon_sym__Noreturn] = ACTIONS(8004), + [anon_sym__Nonnull] = ACTIONS(8004), + [anon_sym_nullable] = ACTIONS(8004), + [anon_sym__Complex] = ACTIONS(8004), + [anon_sym__Nullable] = ACTIONS(8004), + [anon_sym__Nullable_result] = ACTIONS(8004), + [anon_sym__Null_unspecified] = ACTIONS(8004), + [anon_sym___autoreleasing] = ACTIONS(8004), + [anon_sym___block] = ACTIONS(8004), + [anon_sym___bridge] = ACTIONS(8004), + [anon_sym___bridge_retained] = ACTIONS(8004), + [anon_sym___bridge_transfer] = ACTIONS(8004), + [anon_sym___complex] = ACTIONS(8004), + [anon_sym___const] = ACTIONS(8004), + [anon_sym___imag] = ACTIONS(8004), + [anon_sym___kindof] = ACTIONS(8004), + [anon_sym___nonnull] = ACTIONS(8004), + [anon_sym___nullable] = ACTIONS(8004), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8004), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8004), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8004), + [anon_sym___real] = ACTIONS(8004), + [anon_sym___strong] = ACTIONS(8004), + [anon_sym___unsafe_unretained] = ACTIONS(8004), + [anon_sym___unused] = ACTIONS(8004), + [anon_sym___weak] = ACTIONS(8004), + [anon_sym_alignas] = ACTIONS(8004), + [anon_sym__Alignas] = ACTIONS(8004), + [sym_primitive_type] = ACTIONS(8004), + [anon_sym_enum] = ACTIONS(8004), + [anon_sym_COLON] = ACTIONS(8006), + [anon_sym_struct] = ACTIONS(8004), + [anon_sym_union] = ACTIONS(8004), + [anon_sym_in] = ACTIONS(8004), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8004), + [anon_sym___typeof] = ACTIONS(8004), + [anon_sym_typeof] = ACTIONS(8004), + [anon_sym_BOOL] = ACTIONS(8004), + [anon_sym_IMP] = ACTIONS(8004), + [anon_sym_SEL] = ACTIONS(8004), + [anon_sym_Class] = ACTIONS(8004), + [anon_sym_id] = ACTIONS(8004), + [anon_sym_out] = ACTIONS(8004), + [anon_sym_inout] = ACTIONS(8004), + [anon_sym_bycopy] = ACTIONS(8004), + [anon_sym_byref] = ACTIONS(8004), + [anon_sym_oneway] = ACTIONS(8004), + }, + [4122] = { + [sym_attribute_specifier] = STATE(3974), + [sym_identifier] = ACTIONS(8015), + [anon_sym_LPAREN2] = ACTIONS(8017), + [anon_sym_STAR] = ACTIONS(8017), + [anon_sym_CARET] = ACTIONS(8017), + [anon_sym___extension__] = ACTIONS(8015), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8015), + [anon_sym_LBRACK] = ACTIONS(8017), + [anon_sym___based] = ACTIONS(8015), + [anon_sym_signed] = ACTIONS(8015), + [anon_sym_unsigned] = ACTIONS(8015), + [anon_sym_long] = ACTIONS(8015), + [anon_sym_short] = ACTIONS(8015), + [anon_sym_const] = ACTIONS(8015), + [anon_sym_constexpr] = ACTIONS(8015), + [anon_sym_volatile] = ACTIONS(8015), + [anon_sym_restrict] = ACTIONS(8015), + [anon_sym___restrict__] = ACTIONS(8015), + [anon_sym__Atomic] = ACTIONS(8015), + [anon_sym__Noreturn] = ACTIONS(8015), + [anon_sym__Nonnull] = ACTIONS(8015), + [anon_sym_nullable] = ACTIONS(8015), + [anon_sym__Complex] = ACTIONS(8015), + [anon_sym__Nullable] = ACTIONS(8015), + [anon_sym__Nullable_result] = ACTIONS(8015), + [anon_sym__Null_unspecified] = ACTIONS(8015), + [anon_sym___autoreleasing] = ACTIONS(8015), + [anon_sym___block] = ACTIONS(8015), + [anon_sym___bridge] = ACTIONS(8015), + [anon_sym___bridge_retained] = ACTIONS(8015), + [anon_sym___bridge_transfer] = ACTIONS(8015), + [anon_sym___complex] = ACTIONS(8015), + [anon_sym___const] = ACTIONS(8015), + [anon_sym___imag] = ACTIONS(8015), + [anon_sym___kindof] = ACTIONS(8015), + [anon_sym___nonnull] = ACTIONS(8015), + [anon_sym___nullable] = ACTIONS(8015), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8015), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8015), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8015), + [anon_sym___real] = ACTIONS(8015), + [anon_sym___strong] = ACTIONS(8015), + [anon_sym___unsafe_unretained] = ACTIONS(8015), + [anon_sym___unused] = ACTIONS(8015), + [anon_sym___weak] = ACTIONS(8015), + [anon_sym_alignas] = ACTIONS(8015), + [anon_sym__Alignas] = ACTIONS(8015), + [sym_primitive_type] = ACTIONS(8015), + [anon_sym_enum] = ACTIONS(8015), + [anon_sym_COLON] = ACTIONS(8017), + [anon_sym_struct] = ACTIONS(8015), + [anon_sym_union] = ACTIONS(8015), + [anon_sym_in] = ACTIONS(8015), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8015), + [anon_sym___typeof] = ACTIONS(8015), + [anon_sym_typeof] = ACTIONS(8015), + [anon_sym_BOOL] = ACTIONS(8015), + [anon_sym_IMP] = ACTIONS(8015), + [anon_sym_SEL] = ACTIONS(8015), + [anon_sym_Class] = ACTIONS(8015), + [anon_sym_id] = ACTIONS(8015), + [anon_sym_out] = ACTIONS(8015), + [anon_sym_inout] = ACTIONS(8015), + [anon_sym_bycopy] = ACTIONS(8015), + [anon_sym_byref] = ACTIONS(8015), + [anon_sym_oneway] = ACTIONS(8015), + }, + [4123] = { + [sym_type_qualifier] = STATE(4130), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_type_descriptor] = STATE(6365), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4124] = { + [sym_attribute_specifier] = STATE(3938), + [sym_identifier] = ACTIONS(8030), + [anon_sym_LPAREN2] = ACTIONS(8032), + [anon_sym_STAR] = ACTIONS(8032), + [anon_sym_CARET] = ACTIONS(8032), + [anon_sym___extension__] = ACTIONS(8030), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8030), + [anon_sym_LBRACK] = ACTIONS(8032), + [anon_sym___based] = ACTIONS(8030), + [anon_sym_signed] = ACTIONS(8030), + [anon_sym_unsigned] = ACTIONS(8030), + [anon_sym_long] = ACTIONS(8030), + [anon_sym_short] = ACTIONS(8030), + [anon_sym_const] = ACTIONS(8030), + [anon_sym_constexpr] = ACTIONS(8030), + [anon_sym_volatile] = ACTIONS(8030), + [anon_sym_restrict] = ACTIONS(8030), + [anon_sym___restrict__] = ACTIONS(8030), + [anon_sym__Atomic] = ACTIONS(8030), + [anon_sym__Noreturn] = ACTIONS(8030), + [anon_sym__Nonnull] = ACTIONS(8030), + [anon_sym_nullable] = ACTIONS(8030), + [anon_sym__Complex] = ACTIONS(8030), + [anon_sym__Nullable] = ACTIONS(8030), + [anon_sym__Nullable_result] = ACTIONS(8030), + [anon_sym__Null_unspecified] = ACTIONS(8030), + [anon_sym___autoreleasing] = ACTIONS(8030), + [anon_sym___block] = ACTIONS(8030), + [anon_sym___bridge] = ACTIONS(8030), + [anon_sym___bridge_retained] = ACTIONS(8030), + [anon_sym___bridge_transfer] = ACTIONS(8030), + [anon_sym___complex] = ACTIONS(8030), + [anon_sym___const] = ACTIONS(8030), + [anon_sym___imag] = ACTIONS(8030), + [anon_sym___kindof] = ACTIONS(8030), + [anon_sym___nonnull] = ACTIONS(8030), + [anon_sym___nullable] = ACTIONS(8030), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8030), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8030), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8030), + [anon_sym___real] = ACTIONS(8030), + [anon_sym___strong] = ACTIONS(8030), + [anon_sym___unsafe_unretained] = ACTIONS(8030), + [anon_sym___unused] = ACTIONS(8030), + [anon_sym___weak] = ACTIONS(8030), + [anon_sym_alignas] = ACTIONS(8030), + [anon_sym__Alignas] = ACTIONS(8030), + [sym_primitive_type] = ACTIONS(8030), + [anon_sym_enum] = ACTIONS(8030), + [anon_sym_COLON] = ACTIONS(8032), + [anon_sym_struct] = ACTIONS(8030), + [anon_sym_union] = ACTIONS(8030), + [anon_sym_in] = ACTIONS(8030), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8030), + [anon_sym___typeof] = ACTIONS(8030), + [anon_sym_typeof] = ACTIONS(8030), + [anon_sym_BOOL] = ACTIONS(8030), + [anon_sym_IMP] = ACTIONS(8030), + [anon_sym_SEL] = ACTIONS(8030), + [anon_sym_Class] = ACTIONS(8030), + [anon_sym_id] = ACTIONS(8030), + [anon_sym_out] = ACTIONS(8030), + [anon_sym_inout] = ACTIONS(8030), + [anon_sym_bycopy] = ACTIONS(8030), + [anon_sym_byref] = ACTIONS(8030), + [anon_sym_oneway] = ACTIONS(8030), + }, + [4125] = { + [sym_type_qualifier] = STATE(4129), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4190), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_type_descriptor] = STATE(6582), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(4129), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(9098), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4126] = { + [sym_attribute_specifier] = STATE(3881), + [sym_identifier] = ACTIONS(7982), + [anon_sym_LPAREN2] = ACTIONS(7984), + [anon_sym_STAR] = ACTIONS(7984), + [anon_sym_CARET] = ACTIONS(7984), + [anon_sym___extension__] = ACTIONS(7982), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7982), + [anon_sym_LBRACK] = ACTIONS(7984), + [anon_sym___based] = ACTIONS(7982), + [anon_sym_signed] = ACTIONS(7982), + [anon_sym_unsigned] = ACTIONS(7982), + [anon_sym_long] = ACTIONS(7982), + [anon_sym_short] = ACTIONS(7982), + [anon_sym_const] = ACTIONS(7982), + [anon_sym_constexpr] = ACTIONS(7982), + [anon_sym_volatile] = ACTIONS(7982), + [anon_sym_restrict] = ACTIONS(7982), + [anon_sym___restrict__] = ACTIONS(7982), + [anon_sym__Atomic] = ACTIONS(7982), + [anon_sym__Noreturn] = ACTIONS(7982), + [anon_sym__Nonnull] = ACTIONS(7982), + [anon_sym_nullable] = ACTIONS(7982), + [anon_sym__Complex] = ACTIONS(7982), + [anon_sym__Nullable] = ACTIONS(7982), + [anon_sym__Nullable_result] = ACTIONS(7982), + [anon_sym__Null_unspecified] = ACTIONS(7982), + [anon_sym___autoreleasing] = ACTIONS(7982), + [anon_sym___block] = ACTIONS(7982), + [anon_sym___bridge] = ACTIONS(7982), + [anon_sym___bridge_retained] = ACTIONS(7982), + [anon_sym___bridge_transfer] = ACTIONS(7982), + [anon_sym___complex] = ACTIONS(7982), + [anon_sym___const] = ACTIONS(7982), + [anon_sym___imag] = ACTIONS(7982), + [anon_sym___kindof] = ACTIONS(7982), + [anon_sym___nonnull] = ACTIONS(7982), + [anon_sym___nullable] = ACTIONS(7982), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7982), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7982), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7982), + [anon_sym___real] = ACTIONS(7982), + [anon_sym___strong] = ACTIONS(7982), + [anon_sym___unsafe_unretained] = ACTIONS(7982), + [anon_sym___unused] = ACTIONS(7982), + [anon_sym___weak] = ACTIONS(7982), + [anon_sym_alignas] = ACTIONS(7982), + [anon_sym__Alignas] = ACTIONS(7982), + [sym_primitive_type] = ACTIONS(7982), + [anon_sym_enum] = ACTIONS(7982), + [anon_sym_COLON] = ACTIONS(7984), + [anon_sym_struct] = ACTIONS(7982), + [anon_sym_union] = ACTIONS(7982), + [anon_sym_in] = ACTIONS(7982), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7982), + [anon_sym___typeof] = ACTIONS(7982), + [anon_sym_typeof] = ACTIONS(7982), + [anon_sym_BOOL] = ACTIONS(7982), + [anon_sym_IMP] = ACTIONS(7982), + [anon_sym_SEL] = ACTIONS(7982), + [anon_sym_Class] = ACTIONS(7982), + [anon_sym_id] = ACTIONS(7982), + [anon_sym_out] = ACTIONS(7982), + [anon_sym_inout] = ACTIONS(7982), + [anon_sym_bycopy] = ACTIONS(7982), + [anon_sym_byref] = ACTIONS(7982), + [anon_sym_oneway] = ACTIONS(7982), + }, + [4127] = { + [sym_attribute_specifier] = STATE(3878), + [sym_identifier] = ACTIONS(8037), + [anon_sym_LPAREN2] = ACTIONS(8039), + [anon_sym_STAR] = ACTIONS(8039), + [anon_sym_CARET] = ACTIONS(8039), + [anon_sym___extension__] = ACTIONS(8037), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(8037), + [anon_sym_LBRACK] = ACTIONS(8039), + [anon_sym___based] = ACTIONS(8037), + [anon_sym_signed] = ACTIONS(8037), + [anon_sym_unsigned] = ACTIONS(8037), + [anon_sym_long] = ACTIONS(8037), + [anon_sym_short] = ACTIONS(8037), + [anon_sym_const] = ACTIONS(8037), + [anon_sym_constexpr] = ACTIONS(8037), + [anon_sym_volatile] = ACTIONS(8037), + [anon_sym_restrict] = ACTIONS(8037), + [anon_sym___restrict__] = ACTIONS(8037), + [anon_sym__Atomic] = ACTIONS(8037), + [anon_sym__Noreturn] = ACTIONS(8037), + [anon_sym__Nonnull] = ACTIONS(8037), + [anon_sym_nullable] = ACTIONS(8037), + [anon_sym__Complex] = ACTIONS(8037), + [anon_sym__Nullable] = ACTIONS(8037), + [anon_sym__Nullable_result] = ACTIONS(8037), + [anon_sym__Null_unspecified] = ACTIONS(8037), + [anon_sym___autoreleasing] = ACTIONS(8037), + [anon_sym___block] = ACTIONS(8037), + [anon_sym___bridge] = ACTIONS(8037), + [anon_sym___bridge_retained] = ACTIONS(8037), + [anon_sym___bridge_transfer] = ACTIONS(8037), + [anon_sym___complex] = ACTIONS(8037), + [anon_sym___const] = ACTIONS(8037), + [anon_sym___imag] = ACTIONS(8037), + [anon_sym___kindof] = ACTIONS(8037), + [anon_sym___nonnull] = ACTIONS(8037), + [anon_sym___nullable] = ACTIONS(8037), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(8037), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(8037), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(8037), + [anon_sym___real] = ACTIONS(8037), + [anon_sym___strong] = ACTIONS(8037), + [anon_sym___unsafe_unretained] = ACTIONS(8037), + [anon_sym___unused] = ACTIONS(8037), + [anon_sym___weak] = ACTIONS(8037), + [anon_sym_alignas] = ACTIONS(8037), + [anon_sym__Alignas] = ACTIONS(8037), + [sym_primitive_type] = ACTIONS(8037), + [anon_sym_enum] = ACTIONS(8037), + [anon_sym_COLON] = ACTIONS(8039), + [anon_sym_struct] = ACTIONS(8037), + [anon_sym_union] = ACTIONS(8037), + [anon_sym_in] = ACTIONS(8037), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(8037), + [anon_sym___typeof] = ACTIONS(8037), + [anon_sym_typeof] = ACTIONS(8037), + [anon_sym_BOOL] = ACTIONS(8037), + [anon_sym_IMP] = ACTIONS(8037), + [anon_sym_SEL] = ACTIONS(8037), + [anon_sym_Class] = ACTIONS(8037), + [anon_sym_id] = ACTIONS(8037), + [anon_sym_out] = ACTIONS(8037), + [anon_sym_inout] = ACTIONS(8037), + [anon_sym_bycopy] = ACTIONS(8037), + [anon_sym_byref] = ACTIONS(8037), + [anon_sym_oneway] = ACTIONS(8037), + }, + [4128] = { + [sym_attribute_specifier] = STATE(3986), + [sym_identifier] = ACTIONS(7785), + [anon_sym_LPAREN2] = ACTIONS(7787), + [anon_sym_STAR] = ACTIONS(7787), + [anon_sym_CARET] = ACTIONS(7787), + [anon_sym___extension__] = ACTIONS(7785), + [anon_sym___attribute__] = ACTIONS(8076), + [anon_sym___attribute] = ACTIONS(8076), + [anon_sym_noreturn] = ACTIONS(7785), + [anon_sym_LBRACK] = ACTIONS(7787), + [anon_sym___based] = ACTIONS(7785), + [anon_sym_signed] = ACTIONS(7785), + [anon_sym_unsigned] = ACTIONS(7785), + [anon_sym_long] = ACTIONS(7785), + [anon_sym_short] = ACTIONS(7785), + [anon_sym_const] = ACTIONS(7785), + [anon_sym_constexpr] = ACTIONS(7785), + [anon_sym_volatile] = ACTIONS(7785), + [anon_sym_restrict] = ACTIONS(7785), + [anon_sym___restrict__] = ACTIONS(7785), + [anon_sym__Atomic] = ACTIONS(7785), + [anon_sym__Noreturn] = ACTIONS(7785), + [anon_sym__Nonnull] = ACTIONS(7785), + [anon_sym_nullable] = ACTIONS(7785), + [anon_sym__Complex] = ACTIONS(7785), + [anon_sym__Nullable] = ACTIONS(7785), + [anon_sym__Nullable_result] = ACTIONS(7785), + [anon_sym__Null_unspecified] = ACTIONS(7785), + [anon_sym___autoreleasing] = ACTIONS(7785), + [anon_sym___block] = ACTIONS(7785), + [anon_sym___bridge] = ACTIONS(7785), + [anon_sym___bridge_retained] = ACTIONS(7785), + [anon_sym___bridge_transfer] = ACTIONS(7785), + [anon_sym___complex] = ACTIONS(7785), + [anon_sym___const] = ACTIONS(7785), + [anon_sym___imag] = ACTIONS(7785), + [anon_sym___kindof] = ACTIONS(7785), + [anon_sym___nonnull] = ACTIONS(7785), + [anon_sym___nullable] = ACTIONS(7785), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(7785), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(7785), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(7785), + [anon_sym___real] = ACTIONS(7785), + [anon_sym___strong] = ACTIONS(7785), + [anon_sym___unsafe_unretained] = ACTIONS(7785), + [anon_sym___unused] = ACTIONS(7785), + [anon_sym___weak] = ACTIONS(7785), + [anon_sym_alignas] = ACTIONS(7785), + [anon_sym__Alignas] = ACTIONS(7785), + [sym_primitive_type] = ACTIONS(7785), + [anon_sym_enum] = ACTIONS(7785), + [anon_sym_COLON] = ACTIONS(7787), + [anon_sym_struct] = ACTIONS(7785), + [anon_sym_union] = ACTIONS(7785), + [anon_sym_in] = ACTIONS(7785), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(7785), + [anon_sym___typeof] = ACTIONS(7785), + [anon_sym_typeof] = ACTIONS(7785), + [anon_sym_BOOL] = ACTIONS(7785), + [anon_sym_IMP] = ACTIONS(7785), + [anon_sym_SEL] = ACTIONS(7785), + [anon_sym_Class] = ACTIONS(7785), + [anon_sym_id] = ACTIONS(7785), + [anon_sym_out] = ACTIONS(7785), + [anon_sym_inout] = ACTIONS(7785), + [anon_sym_bycopy] = ACTIONS(7785), + [anon_sym_byref] = ACTIONS(7785), + [anon_sym_oneway] = ACTIONS(7785), + }, + [4129] = { + [sym_type_qualifier] = STATE(2508), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4191), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(2508), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(9098), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4130] = { + [sym_type_qualifier] = STATE(2508), + [sym_alignas_qualifier] = STATE(2368), + [sym_type_specifier] = STATE(4191), + [sym_sized_type_specifier] = STATE(2948), + [sym_enum_specifier] = STATE(2948), + [sym_struct_specifier] = STATE(2948), + [sym_union_specifier] = STATE(2948), + [sym_macro_type_specifier] = STATE(2948), + [sym_typeof_specifier] = STATE(2948), + [sym_generic_specifier] = STATE(2948), + [sym_typedefed_specifier] = STATE(2948), + [sym_array_type_specifier] = STATE(2948), + [aux_sym__type_definition_type_repeat1] = STATE(2508), + [aux_sym_sized_type_specifier_repeat1] = STATE(4192), + [sym_identifier] = ACTIONS(3002), + [anon_sym___extension__] = ACTIONS(39), + [anon_sym_noreturn] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(4356), + [anon_sym_unsigned] = ACTIONS(4356), + [anon_sym_long] = ACTIONS(4356), + [anon_sym_short] = ACTIONS(4356), + [anon_sym_const] = ACTIONS(39), + [anon_sym_constexpr] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym___restrict__] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym__Noreturn] = ACTIONS(39), + [anon_sym__Nonnull] = ACTIONS(39), + [anon_sym_nullable] = ACTIONS(39), + [anon_sym__Complex] = ACTIONS(39), + [anon_sym__Nullable] = ACTIONS(39), + [anon_sym__Nullable_result] = ACTIONS(39), + [anon_sym__Null_unspecified] = ACTIONS(39), + [anon_sym___autoreleasing] = ACTIONS(39), + [anon_sym___block] = ACTIONS(39), + [anon_sym___bridge] = ACTIONS(39), + [anon_sym___bridge_retained] = ACTIONS(39), + [anon_sym___bridge_transfer] = ACTIONS(39), + [anon_sym___complex] = ACTIONS(39), + [anon_sym___const] = ACTIONS(39), + [anon_sym___imag] = ACTIONS(39), + [anon_sym___kindof] = ACTIONS(39), + [anon_sym___nonnull] = ACTIONS(39), + [anon_sym___nullable] = ACTIONS(39), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(39), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(39), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(39), + [anon_sym___real] = ACTIONS(39), + [anon_sym___strong] = ACTIONS(39), + [anon_sym___unsafe_unretained] = ACTIONS(39), + [anon_sym___unused] = ACTIONS(39), + [anon_sym___weak] = ACTIONS(39), + [anon_sym_alignas] = ACTIONS(59), + [anon_sym__Alignas] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(117), + [anon_sym___typeof] = ACTIONS(117), + [anon_sym_typeof] = ACTIONS(117), + [anon_sym_BOOL] = ACTIONS(147), + [anon_sym_IMP] = ACTIONS(147), + [anon_sym_SEL] = ACTIONS(147), + [anon_sym_Class] = ACTIONS(147), + [anon_sym_id] = ACTIONS(147), + }, + [4131] = { + [sym_identifier] = ACTIONS(2966), + [aux_sym_preproc_if_token1] = ACTIONS(2966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2968), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_noreturn] = ACTIONS(2966), + [anon_sym_signed] = ACTIONS(2966), + [anon_sym_unsigned] = ACTIONS(2966), + [anon_sym_long] = ACTIONS(2966), + [anon_sym_short] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2966), + [anon_sym_constexpr] = ACTIONS(2966), + [anon_sym_volatile] = ACTIONS(2966), + [anon_sym_restrict] = ACTIONS(2966), + [anon_sym___restrict__] = ACTIONS(2966), + [anon_sym__Atomic] = ACTIONS(2966), + [anon_sym__Noreturn] = ACTIONS(2966), + [anon_sym__Nonnull] = ACTIONS(2966), + [anon_sym_nullable] = ACTIONS(2966), + [anon_sym__Complex] = ACTIONS(2966), + [anon_sym__Nullable] = ACTIONS(2966), + [anon_sym__Nullable_result] = ACTIONS(2966), + [anon_sym__Null_unspecified] = ACTIONS(2966), + [anon_sym___autoreleasing] = ACTIONS(2966), + [anon_sym___block] = ACTIONS(2966), + [anon_sym___bridge] = ACTIONS(2966), + [anon_sym___bridge_retained] = ACTIONS(2966), + [anon_sym___bridge_transfer] = ACTIONS(2966), + [anon_sym___complex] = ACTIONS(2966), + [anon_sym___const] = ACTIONS(2966), + [anon_sym___imag] = ACTIONS(2966), + [anon_sym___kindof] = ACTIONS(2966), + [anon_sym___nonnull] = ACTIONS(2966), + [anon_sym___nullable] = ACTIONS(2966), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2966), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2966), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2966), + [anon_sym___real] = ACTIONS(2966), + [anon_sym___strong] = ACTIONS(2966), + [anon_sym___unsafe_unretained] = ACTIONS(2966), + [anon_sym___unused] = ACTIONS(2966), + [anon_sym___weak] = ACTIONS(2966), + [anon_sym_alignas] = ACTIONS(2966), + [anon_sym__Alignas] = ACTIONS(2966), + [sym_primitive_type] = ACTIONS(2966), + [anon_sym_enum] = ACTIONS(2966), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_union] = ACTIONS(2966), + [anon_sym_in] = ACTIONS(2966), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2966), + [anon_sym___typeof] = ACTIONS(2966), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_ATprivate] = ACTIONS(2968), + [anon_sym_ATprotected] = ACTIONS(2968), + [anon_sym_ATpackage] = ACTIONS(2968), + [anon_sym_ATpublic] = ACTIONS(2968), + [anon_sym_BOOL] = ACTIONS(2966), + [anon_sym_IMP] = ACTIONS(2966), + [anon_sym_SEL] = ACTIONS(2966), + [anon_sym_Class] = ACTIONS(2966), + [anon_sym_id] = ACTIONS(2966), + [anon_sym_out] = ACTIONS(2966), + [anon_sym_inout] = ACTIONS(2966), + [anon_sym_bycopy] = ACTIONS(2966), + [anon_sym_byref] = ACTIONS(2966), + [anon_sym_oneway] = ACTIONS(2966), + }, + [4132] = { + [sym_identifier] = ACTIONS(2970), + [aux_sym_preproc_if_token1] = ACTIONS(2970), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2972), + [anon_sym___extension__] = ACTIONS(2970), + [anon_sym_noreturn] = ACTIONS(2970), + [anon_sym_signed] = ACTIONS(2970), + [anon_sym_unsigned] = ACTIONS(2970), + [anon_sym_long] = ACTIONS(2970), + [anon_sym_short] = ACTIONS(2970), + [anon_sym_const] = ACTIONS(2970), + [anon_sym_constexpr] = ACTIONS(2970), + [anon_sym_volatile] = ACTIONS(2970), + [anon_sym_restrict] = ACTIONS(2970), + [anon_sym___restrict__] = ACTIONS(2970), + [anon_sym__Atomic] = ACTIONS(2970), + [anon_sym__Noreturn] = ACTIONS(2970), + [anon_sym__Nonnull] = ACTIONS(2970), + [anon_sym_nullable] = ACTIONS(2970), + [anon_sym__Complex] = ACTIONS(2970), + [anon_sym__Nullable] = ACTIONS(2970), + [anon_sym__Nullable_result] = ACTIONS(2970), + [anon_sym__Null_unspecified] = ACTIONS(2970), + [anon_sym___autoreleasing] = ACTIONS(2970), + [anon_sym___block] = ACTIONS(2970), + [anon_sym___bridge] = ACTIONS(2970), + [anon_sym___bridge_retained] = ACTIONS(2970), + [anon_sym___bridge_transfer] = ACTIONS(2970), + [anon_sym___complex] = ACTIONS(2970), + [anon_sym___const] = ACTIONS(2970), + [anon_sym___imag] = ACTIONS(2970), + [anon_sym___kindof] = ACTIONS(2970), + [anon_sym___nonnull] = ACTIONS(2970), + [anon_sym___nullable] = ACTIONS(2970), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2970), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2970), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2970), + [anon_sym___real] = ACTIONS(2970), + [anon_sym___strong] = ACTIONS(2970), + [anon_sym___unsafe_unretained] = ACTIONS(2970), + [anon_sym___unused] = ACTIONS(2970), + [anon_sym___weak] = ACTIONS(2970), + [anon_sym_alignas] = ACTIONS(2970), + [anon_sym__Alignas] = ACTIONS(2970), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_enum] = ACTIONS(2970), + [anon_sym_struct] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_in] = ACTIONS(2970), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2970), + [anon_sym___typeof] = ACTIONS(2970), + [anon_sym_typeof] = ACTIONS(2970), + [anon_sym_ATprivate] = ACTIONS(2972), + [anon_sym_ATprotected] = ACTIONS(2972), + [anon_sym_ATpackage] = ACTIONS(2972), + [anon_sym_ATpublic] = ACTIONS(2972), + [anon_sym_BOOL] = ACTIONS(2970), + [anon_sym_IMP] = ACTIONS(2970), + [anon_sym_SEL] = ACTIONS(2970), + [anon_sym_Class] = ACTIONS(2970), + [anon_sym_id] = ACTIONS(2970), + [anon_sym_out] = ACTIONS(2970), + [anon_sym_inout] = ACTIONS(2970), + [anon_sym_bycopy] = ACTIONS(2970), + [anon_sym_byref] = ACTIONS(2970), + [anon_sym_oneway] = ACTIONS(2970), + }, + [4133] = { + [sym_identifier] = ACTIONS(2922), + [anon_sym_LPAREN2] = ACTIONS(9100), + [anon_sym_STAR] = ACTIONS(2928), + [anon_sym_CARET] = ACTIONS(2928), + [anon_sym___extension__] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym___based] = ACTIONS(2922), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2922), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2922), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_COLON] = ACTIONS(2928), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(2922), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(2922), + [anon_sym_out] = ACTIONS(2922), + [anon_sym_inout] = ACTIONS(2922), + [anon_sym_bycopy] = ACTIONS(2922), + [anon_sym_byref] = ACTIONS(2922), + [anon_sym_oneway] = ACTIONS(2922), + }, + [4134] = { + [sym_identifier] = ACTIONS(2922), + [anon_sym_LPAREN2] = ACTIONS(9102), + [anon_sym_STAR] = ACTIONS(2928), + [anon_sym_CARET] = ACTIONS(2928), + [anon_sym___extension__] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym___based] = ACTIONS(2922), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2922), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2922), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_COLON] = ACTIONS(2928), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(2922), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(2922), + [anon_sym_out] = ACTIONS(2922), + [anon_sym_inout] = ACTIONS(2922), + [anon_sym_bycopy] = ACTIONS(2922), + [anon_sym_byref] = ACTIONS(2922), + [anon_sym_oneway] = ACTIONS(2922), + }, + [4135] = { + [sym_identifier] = ACTIONS(2922), + [anon_sym_LPAREN2] = ACTIONS(9104), + [anon_sym_STAR] = ACTIONS(2928), + [anon_sym_CARET] = ACTIONS(2928), + [anon_sym___extension__] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym___based] = ACTIONS(2922), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2922), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2922), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_COLON] = ACTIONS(2928), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(2922), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(2922), + [anon_sym_out] = ACTIONS(2922), + [anon_sym_inout] = ACTIONS(2922), + [anon_sym_bycopy] = ACTIONS(2922), + [anon_sym_byref] = ACTIONS(2922), + [anon_sym_oneway] = ACTIONS(2922), + }, + [4136] = { + [sym_identifier] = ACTIONS(2922), + [anon_sym_LPAREN2] = ACTIONS(9106), + [anon_sym_STAR] = ACTIONS(2928), + [anon_sym_CARET] = ACTIONS(2928), + [anon_sym___extension__] = ACTIONS(2922), + [anon_sym_noreturn] = ACTIONS(2922), + [anon_sym___based] = ACTIONS(2922), + [anon_sym_signed] = ACTIONS(2922), + [anon_sym_unsigned] = ACTIONS(2922), + [anon_sym_long] = ACTIONS(2922), + [anon_sym_short] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_constexpr] = ACTIONS(2922), + [anon_sym_volatile] = ACTIONS(2922), + [anon_sym_restrict] = ACTIONS(2922), + [anon_sym___restrict__] = ACTIONS(2922), + [anon_sym__Atomic] = ACTIONS(2922), + [anon_sym__Noreturn] = ACTIONS(2922), + [anon_sym__Nonnull] = ACTIONS(2922), + [anon_sym_nullable] = ACTIONS(2922), + [anon_sym__Complex] = ACTIONS(2922), + [anon_sym__Nullable] = ACTIONS(2922), + [anon_sym__Nullable_result] = ACTIONS(2922), + [anon_sym__Null_unspecified] = ACTIONS(2922), + [anon_sym___autoreleasing] = ACTIONS(2922), + [anon_sym___block] = ACTIONS(2922), + [anon_sym___bridge] = ACTIONS(2922), + [anon_sym___bridge_retained] = ACTIONS(2922), + [anon_sym___bridge_transfer] = ACTIONS(2922), + [anon_sym___complex] = ACTIONS(2922), + [anon_sym___const] = ACTIONS(2922), + [anon_sym___imag] = ACTIONS(2922), + [anon_sym___kindof] = ACTIONS(2922), + [anon_sym___nonnull] = ACTIONS(2922), + [anon_sym___nullable] = ACTIONS(2922), + [anon_sym___ptrauth_objc_class_ro] = ACTIONS(2922), + [anon_sym___ptrauth_objc_isa_pointer] = ACTIONS(2922), + [anon_sym___ptrauth_objc_super_pointer] = ACTIONS(2922), + [anon_sym___real] = ACTIONS(2922), + [anon_sym___strong] = ACTIONS(2922), + [anon_sym___unsafe_unretained] = ACTIONS(2922), + [anon_sym___unused] = ACTIONS(2922), + [anon_sym___weak] = ACTIONS(2922), + [anon_sym_alignas] = ACTIONS(2922), + [anon_sym__Alignas] = ACTIONS(2922), + [sym_primitive_type] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_COLON] = ACTIONS(2928), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(2922), + [sym_comment] = ACTIONS(3), + [anon_sym___typeof__] = ACTIONS(2922), + [anon_sym___typeof] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_BOOL] = ACTIONS(2922), + [anon_sym_IMP] = ACTIONS(2922), + [anon_sym_SEL] = ACTIONS(2922), + [anon_sym_Class] = ACTIONS(2922), + [anon_sym_id] = ACTIONS(2922), + [anon_sym_out] = ACTIONS(2922), + [anon_sym_inout] = ACTIONS(2922), + [anon_sym_bycopy] = ACTIONS(2922), + [anon_sym_byref] = ACTIONS(2922), + [anon_sym_oneway] = ACTIONS(2922), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4166), 1, + anon_sym_LPAREN2, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5281), 1, + sym_identifier, + ACTIONS(5389), 1, + anon_sym_STAR, + ACTIONS(5391), 1, + anon_sym_CARET, + ACTIONS(8078), 1, + anon_sym_LBRACK, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(3970), 1, + sym__declarator, + STATE(4315), 1, + sym_parameter_list, + STATE(4980), 1, + sym__abstract_declarator, + STATE(6323), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(9108), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(9110), 2, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + STATE(4138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4011), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + STATE(4894), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [103] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4166), 1, + anon_sym_LPAREN2, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5281), 1, + sym_identifier, + ACTIONS(5389), 1, + anon_sym_STAR, + ACTIONS(5391), 1, + anon_sym_CARET, + ACTIONS(8078), 1, + anon_sym_LBRACK, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(3991), 1, + sym__declarator, + STATE(4315), 1, + sym_parameter_list, + STATE(5007), 1, + sym__abstract_declarator, + STATE(6323), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(9112), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(9114), 2, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4011), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + STATE(4894), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [206] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9118), 1, + anon_sym_LBRACK, + ACTIONS(9116), 61, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_noreturn, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_in, + sym_identifier, + anon_sym___typeof__, + anon_sym___typeof, + anon_sym_typeof, + anon_sym_BOOL, + anon_sym_IMP, + anon_sym_SEL, + anon_sym_Class, + anon_sym_id, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + [276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9122), 1, + anon_sym_LBRACK, + ACTIONS(9120), 61, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_noreturn, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_in, + sym_identifier, + anon_sym___typeof__, + anon_sym___typeof, + anon_sym_typeof, + anon_sym_BOOL, + anon_sym_IMP, + anon_sym_SEL, + anon_sym_Class, + anon_sym_id, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + [346] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4166), 1, + anon_sym_LPAREN2, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5281), 1, + sym_identifier, + ACTIONS(5285), 1, + anon_sym_STAR, + ACTIONS(5287), 1, + anon_sym_CARET, + ACTIONS(8078), 1, + anon_sym_LBRACK, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(3970), 1, + sym__declarator, + STATE(4295), 1, + sym_parameter_list, + STATE(4977), 1, + sym__abstract_declarator, + STATE(6323), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4143), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9110), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + STATE(4011), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + STATE(4894), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [446] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9126), 1, + anon_sym_LBRACK, + ACTIONS(9124), 61, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_noreturn, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_in, + sym_identifier, + anon_sym___typeof__, + anon_sym___typeof, + anon_sym_typeof, + anon_sym_BOOL, + anon_sym_IMP, + anon_sym_SEL, + anon_sym_Class, + anon_sym_id, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + [516] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4166), 1, + anon_sym_LPAREN2, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5281), 1, + sym_identifier, + ACTIONS(5285), 1, + anon_sym_STAR, + ACTIONS(5287), 1, + anon_sym_CARET, + ACTIONS(8078), 1, + anon_sym_LBRACK, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(3991), 1, + sym__declarator, + STATE(4295), 1, + sym_parameter_list, + STATE(5005), 1, + sym__abstract_declarator, + STATE(6323), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9114), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + STATE(4011), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + STATE(4894), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [616] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(5330), 1, + anon_sym_LPAREN2, + ACTIONS(5332), 1, + anon_sym_STAR, + ACTIONS(5334), 1, + anon_sym_CARET, + ACTIONS(8078), 1, + anon_sym_LBRACK, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(3087), 1, + sym__declarator, + STATE(4295), 1, + sym_parameter_list, + STATE(4977), 1, + sym__abstract_declarator, + STATE(6197), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(9110), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4145), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + STATE(4894), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [715] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(5330), 1, + anon_sym_LPAREN2, + ACTIONS(5332), 1, + anon_sym_STAR, + ACTIONS(5334), 1, + anon_sym_CARET, + ACTIONS(8078), 1, + anon_sym_LBRACK, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(3067), 1, + sym__declarator, + STATE(4295), 1, + sym_parameter_list, + STATE(5005), 1, + sym__abstract_declarator, + STATE(6197), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(9114), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + STATE(4894), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [814] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4166), 1, + anon_sym_LPAREN2, + ACTIONS(4168), 1, + anon_sym_STAR, + ACTIONS(4170), 1, + anon_sym_CARET, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5281), 1, + sym_identifier, + ACTIONS(8078), 1, + anon_sym_LBRACK, + ACTIONS(9114), 1, + anon_sym_RPAREN, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(4295), 1, + sym_parameter_list, + STATE(5005), 1, + sym__abstract_declarator, + STATE(5038), 1, + sym__declarator, + STATE(6199), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4011), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + STATE(4894), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [912] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4166), 1, + anon_sym_LPAREN2, + ACTIONS(4168), 1, + anon_sym_STAR, + ACTIONS(4170), 1, + anon_sym_CARET, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5281), 1, + sym_identifier, + ACTIONS(8078), 1, + anon_sym_LBRACK, + ACTIONS(9110), 1, + anon_sym_RPAREN, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(4295), 1, + sym_parameter_list, + STATE(4977), 1, + sym__abstract_declarator, + STATE(5026), 1, + sym__declarator, + STATE(6199), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4146), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4011), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + STATE(4894), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [1010] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9128), 1, + anon_sym_COMMA, + ACTIONS(9130), 1, + anon_sym_RPAREN, + STATE(5437), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(2928), 23, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_ATselector, + anon_sym_ATavailable, + anon_sym_ATencode, + ACTIONS(2922), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym___imag, + anon_sym___real, + anon_sym_struct, + anon_sym_in, + 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__, + anon_sym___asm, + anon_sym_AT, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym___typeof__, + anon_sym___typeof, + anon_sym_typeof, + anon_sym___builtin_available, + anon_sym_va_arg, + anon_sym_id, + [1081] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9128), 1, + anon_sym_COMMA, + ACTIONS(9132), 1, + anon_sym_RPAREN, + STATE(5501), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(2928), 23, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_ATselector, + anon_sym_ATavailable, + anon_sym_ATencode, + ACTIONS(2922), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym___imag, + anon_sym___real, + anon_sym_struct, + anon_sym_in, + 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__, + anon_sym___asm, + anon_sym_AT, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym___typeof__, + anon_sym___typeof, + anon_sym_typeof, + anon_sym___builtin_available, + anon_sym_va_arg, + anon_sym_id, + [1152] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9128), 1, + anon_sym_COMMA, + ACTIONS(9134), 1, + anon_sym_RPAREN, + STATE(5465), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(2928), 23, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_ATselector, + anon_sym_ATavailable, + anon_sym_ATencode, + ACTIONS(2922), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym___imag, + anon_sym___real, + anon_sym_struct, + anon_sym_in, + 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__, + anon_sym___asm, + anon_sym_AT, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym___typeof__, + anon_sym___typeof, + anon_sym_typeof, + anon_sym___builtin_available, + anon_sym_va_arg, + anon_sym_id, + [1223] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9128), 1, + anon_sym_COMMA, + ACTIONS(9136), 1, + anon_sym_RPAREN, + STATE(5474), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(2928), 23, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_ATselector, + anon_sym_ATavailable, + anon_sym_ATencode, + ACTIONS(2922), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym___imag, + anon_sym___real, + anon_sym_struct, + anon_sym_in, + 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__, + anon_sym___asm, + anon_sym_AT, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym___typeof__, + anon_sym___typeof, + anon_sym_typeof, + anon_sym___builtin_available, + anon_sym_va_arg, + anon_sym_id, + [1294] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9128), 1, + anon_sym_COMMA, + ACTIONS(9138), 1, + anon_sym_RPAREN, + STATE(5453), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(2928), 23, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_ATselector, + anon_sym_ATavailable, + anon_sym_ATencode, + ACTIONS(2922), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym___imag, + anon_sym___real, + anon_sym_struct, + anon_sym_in, + 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__, + anon_sym___asm, + anon_sym_AT, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym___typeof__, + anon_sym___typeof, + anon_sym_typeof, + anon_sym___builtin_available, + anon_sym_va_arg, + anon_sym_id, + [1365] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9128), 1, + anon_sym_COMMA, + ACTIONS(9140), 1, + anon_sym_RPAREN, + STATE(5415), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(2928), 23, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_ATselector, + anon_sym_ATavailable, + anon_sym_ATencode, + ACTIONS(2922), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym___imag, + anon_sym___real, + anon_sym_struct, + anon_sym_in, + 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__, + anon_sym___asm, + anon_sym_AT, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym___typeof__, + anon_sym___typeof, + anon_sym_typeof, + anon_sym___builtin_available, + anon_sym_va_arg, + anon_sym_id, + [1436] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9128), 1, + anon_sym_COMMA, + ACTIONS(9142), 1, + anon_sym_RPAREN, + STATE(5382), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(2928), 23, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_ATselector, + anon_sym_ATavailable, + anon_sym_ATencode, + ACTIONS(2922), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym___imag, + anon_sym___real, + anon_sym_struct, + anon_sym_in, + 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__, + anon_sym___asm, + anon_sym_AT, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym___typeof__, + anon_sym___typeof, + anon_sym_typeof, + anon_sym___builtin_available, + anon_sym_va_arg, + anon_sym_id, + [1507] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_LBRACE, + STATE(3012), 1, + sym_attribute_specifier, + STATE(4180), 1, + sym_enumerator_list, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7661), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(7659), 44, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [1579] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_LBRACE, + ACTIONS(9144), 1, + anon_sym_COLON, + STATE(2946), 1, + sym_attribute_specifier, + STATE(4170), 1, + sym_enumerator_list, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7702), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + ACTIONS(7700), 44, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [1653] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_LBRACE, + STATE(3000), 1, + sym_attribute_specifier, + STATE(4182), 1, + sym_enumerator_list, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7688), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(7686), 44, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [1725] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5642), 1, + anon_sym_STAR, + ACTIONS(5644), 1, + anon_sym_CARET, + ACTIONS(5648), 1, + sym_primitive_type, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(5176), 1, + sym__type_declarator, + STATE(6428), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [1813] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5642), 1, + anon_sym_STAR, + ACTIONS(5644), 1, + anon_sym_CARET, + ACTIONS(5648), 1, + sym_primitive_type, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(5171), 1, + sym__type_declarator, + STATE(6428), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4158), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [1901] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_LBRACE, + STATE(3010), 1, + sym_attribute_specifier, + STATE(4172), 1, + sym_enumerator_list, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7695), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(7693), 44, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [1973] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_LBRACE, + STATE(3014), 1, + sym_attribute_specifier, + STATE(4186), 1, + sym_enumerator_list, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7670), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(7668), 44, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [2045] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_LBRACE, + STATE(2980), 1, + sym_attribute_specifier, + STATE(4188), 1, + sym_enumerator_list, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7633), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(7631), 44, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [2117] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_LBRACE, + STATE(2982), 1, + sym_attribute_specifier, + STATE(4174), 1, + sym_enumerator_list, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7642), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(7640), 44, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [2189] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_LBRACE, + ACTIONS(9146), 1, + anon_sym_COLON, + STATE(2963), 1, + sym_attribute_specifier, + STATE(4184), 1, + sym_enumerator_list, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7719), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + ACTIONS(7717), 44, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [2263] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_LBRACE, + ACTIONS(9148), 1, + anon_sym_COLON, + STATE(2990), 1, + sym_attribute_specifier, + STATE(4168), 1, + sym_enumerator_list, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7766), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + ACTIONS(7764), 44, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [2337] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(3272), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4167), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [2425] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(3287), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [2513] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2945), 1, + sym_attribute_specifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7973), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(7971), 44, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [2579] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2999), 1, + sym_attribute_specifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8057), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(8055), 44, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [2645] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2962), 1, + sym_attribute_specifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7984), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(7982), 44, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [2711] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4496), 1, + anon_sym_LPAREN2, + ACTIONS(4498), 1, + anon_sym_STAR, + ACTIONS(4500), 1, + anon_sym_CARET, + ACTIONS(8078), 1, + anon_sym_LBRACK, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(4295), 1, + sym_parameter_list, + STATE(5005), 1, + sym__abstract_declarator, + ACTIONS(6871), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(39), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(9114), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_COLON, + STATE(4894), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_block_pointer_declarator, + ACTIONS(6861), 31, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [2795] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2957), 1, + sym_attribute_specifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8032), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(8030), 44, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [2861] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2949), 1, + sym_attribute_specifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8039), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(8037), 44, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [2927] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3006), 1, + sym_attribute_specifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7955), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(7953), 44, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [2993] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2993), 1, + sym_attribute_specifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7823), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(7821), 44, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [3059] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3009), 1, + sym_attribute_specifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7962), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(7960), 44, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [3125] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2928), 23, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_ATselector, + anon_sym_ATavailable, + anon_sym_ATencode, + ACTIONS(2922), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym___imag, + anon_sym___real, + anon_sym_struct, + anon_sym_in, + 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__, + anon_sym___asm, + anon_sym_AT, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym___typeof__, + anon_sym___typeof, + anon_sym_typeof, + anon_sym___builtin_available, + anon_sym_va_arg, + anon_sym_id, + [3187] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4496), 1, + anon_sym_LPAREN2, + ACTIONS(6953), 1, + anon_sym_STAR, + ACTIONS(6955), 1, + anon_sym_CARET, + ACTIONS(8078), 1, + anon_sym_LBRACK, + ACTIONS(9112), 1, + anon_sym___attribute, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(4315), 1, + sym_parameter_list, + STATE(5007), 1, + sym__abstract_declarator, + ACTIONS(6871), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(39), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(9114), 3, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + STATE(4894), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_block_pointer_declarator, + ACTIONS(6861), 31, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [3273] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4496), 1, + anon_sym_LPAREN2, + ACTIONS(6953), 1, + anon_sym_STAR, + ACTIONS(6955), 1, + anon_sym_CARET, + ACTIONS(8078), 1, + anon_sym_LBRACK, + ACTIONS(9108), 1, + anon_sym___attribute, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(4315), 1, + sym_parameter_list, + STATE(4980), 1, + sym__abstract_declarator, + ACTIONS(6871), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4178), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(39), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(9110), 3, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + STATE(4894), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_block_pointer_declarator, + ACTIONS(6861), 31, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [3359] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2997), 1, + sym_attribute_specifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8006), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(8004), 44, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [3425] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4496), 1, + anon_sym_LPAREN2, + ACTIONS(4498), 1, + anon_sym_STAR, + ACTIONS(4500), 1, + anon_sym_CARET, + ACTIONS(8078), 1, + anon_sym_LBRACK, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(4295), 1, + sym_parameter_list, + STATE(4977), 1, + sym__abstract_declarator, + ACTIONS(6871), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4171), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(39), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(9110), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_COLON, + STATE(4894), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_block_pointer_declarator, + ACTIONS(6861), 31, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [3509] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2954), 1, + sym_attribute_specifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8017), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(8015), 44, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [3575] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 23, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_ATselector, + anon_sym_ATavailable, + anon_sym_ATencode, + ACTIONS(5630), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym___imag, + anon_sym___real, + anon_sym_struct, + anon_sym_in, + 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__, + anon_sym___asm, + anon_sym_AT, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym___typeof__, + anon_sym___typeof, + anon_sym_typeof, + anon_sym___builtin_available, + anon_sym_va_arg, + anon_sym_id, + [3637] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2989), 1, + sym_attribute_specifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7806), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(7804), 44, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [3703] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2966), 1, + sym_attribute_specifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7991), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(7989), 44, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [3769] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2998), 1, + sym_attribute_specifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8046), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(8044), 44, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [3835] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2979), 1, + sym_attribute_specifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7787), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(7785), 44, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [3901] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3018), 1, + sym_attribute_specifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7948), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(7946), 44, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [3967] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4496), 1, + anon_sym_LPAREN2, + ACTIONS(4498), 1, + anon_sym_STAR, + ACTIONS(4500), 1, + anon_sym_CARET, + ACTIONS(8078), 1, + anon_sym_LBRACK, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(4295), 1, + sym_parameter_list, + STATE(5025), 1, + sym__abstract_declarator, + ACTIONS(6871), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(39), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(9150), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(4894), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_block_pointer_declarator, + ACTIONS(6861), 31, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [4050] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4496), 1, + anon_sym_LPAREN2, + ACTIONS(4498), 1, + anon_sym_STAR, + ACTIONS(4500), 1, + anon_sym_CARET, + ACTIONS(9154), 1, + anon_sym_LBRACK, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(4295), 1, + sym_parameter_list, + STATE(5063), 1, + sym__abstract_declarator, + ACTIONS(6871), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4189), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(39), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(9152), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(4894), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_block_pointer_declarator, + ACTIONS(6861), 31, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [4133] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4496), 1, + anon_sym_LPAREN2, + ACTIONS(4498), 1, + anon_sym_STAR, + ACTIONS(4500), 1, + anon_sym_CARET, + ACTIONS(9154), 1, + anon_sym_LBRACK, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(4295), 1, + sym_parameter_list, + STATE(5084), 1, + sym__abstract_declarator, + ACTIONS(6871), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(39), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(9156), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(4894), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_block_pointer_declarator, + ACTIONS(6861), 31, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [4216] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7001), 1, + sym_primitive_type, + ACTIONS(9158), 1, + sym_identifier, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(4263), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6998), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4193), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9160), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6989), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(6991), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [4291] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6984), 1, + sym_primitive_type, + ACTIONS(9162), 1, + sym_identifier, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2988), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6981), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6979), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6972), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(6974), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [4366] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4496), 1, + anon_sym_LPAREN2, + ACTIONS(4498), 1, + anon_sym_STAR, + ACTIONS(4500), 1, + anon_sym_CARET, + ACTIONS(8078), 1, + anon_sym_LBRACK, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(4295), 1, + sym_parameter_list, + STATE(5046), 1, + sym__abstract_declarator, + ACTIONS(6871), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(39), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(9164), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(4894), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_block_pointer_declarator, + ACTIONS(6861), 31, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [4449] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2514), 24, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_ATselector, + anon_sym_ATavailable, + anon_sym_ATencode, + ACTIONS(2512), 28, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym___imag, + anon_sym___real, + anon_sym_struct, + anon_sym_in, + 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__, + anon_sym___asm, + anon_sym_AT, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym___builtin_available, + anon_sym_va_arg, + anon_sym_id, + [4509] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2426), 24, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_ATselector, + anon_sym_ATavailable, + anon_sym_ATencode, + ACTIONS(2424), 28, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym___imag, + anon_sym___real, + anon_sym_struct, + anon_sym_in, + 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__, + anon_sym___asm, + anon_sym_AT, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym___builtin_available, + anon_sym_va_arg, + anon_sym_id, + [4569] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2464), 24, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_ATselector, + anon_sym_ATavailable, + anon_sym_ATencode, + ACTIONS(2462), 28, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym___imag, + anon_sym___real, + anon_sym_struct, + anon_sym_in, + 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__, + anon_sym___asm, + anon_sym_AT, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym___builtin_available, + anon_sym_va_arg, + anon_sym_id, + [4629] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(6493), 1, + sym_identifier, + ACTIONS(6495), 1, + anon_sym_LPAREN2, + ACTIONS(6525), 1, + anon_sym_STAR, + ACTIONS(6527), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(5082), 1, + sym__field_declarator, + STATE(6258), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4210), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4955), 6, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_block_pointer_field_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [4709] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(9172), 1, + anon_sym_LBRACK, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(4288), 1, + sym_ms_declspec_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4270), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9169), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + ACTIONS(9166), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [4783] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2448), 24, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_ATselector, + anon_sym_ATavailable, + anon_sym_ATencode, + ACTIONS(2446), 28, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym___imag, + anon_sym___real, + anon_sym_struct, + anon_sym_in, + 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__, + anon_sym___asm, + anon_sym_AT, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym___builtin_available, + anon_sym_va_arg, + anon_sym_id, + [4843] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(9172), 1, + anon_sym_LBRACK, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(4282), 1, + sym_ms_declspec_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4286), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9176), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + ACTIONS(9174), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [4917] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(6493), 1, + sym_identifier, + ACTIONS(6495), 1, + anon_sym_LPAREN2, + ACTIONS(6497), 1, + anon_sym_STAR, + ACTIONS(6499), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(4891), 1, + sym__field_declarator, + STATE(6162), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4955), 6, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_block_pointer_field_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [4997] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + STATE(1919), 1, + sym__old_style_function_declarator, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2813), 1, + sym__declarator, + STATE(3192), 1, + sym_init_declarator, + STATE(6197), 1, + sym_ms_based_modifier, + STATE(6373), 1, + sym_type_qualifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [5081] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2430), 24, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_ATselector, + anon_sym_ATavailable, + anon_sym_ATencode, + ACTIONS(2428), 28, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym___imag, + anon_sym___real, + anon_sym_struct, + anon_sym_in, + 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__, + anon_sym___asm, + anon_sym_AT, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym___builtin_available, + anon_sym_va_arg, + anon_sym_id, + [5141] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9178), 1, + sym_identifier, + ACTIONS(9184), 1, + sym_primitive_type, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(4274), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6977), 2, + anon_sym___declspec, + anon_sym___based, + ACTIONS(6981), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6972), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + ACTIONS(9181), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6974), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [5217] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2426), 24, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_ATselector, + anon_sym_ATavailable, + anon_sym_ATencode, + ACTIONS(2424), 28, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym___imag, + anon_sym___real, + anon_sym_struct, + anon_sym_in, + 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__, + anon_sym___asm, + anon_sym_AT, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym___builtin_available, + anon_sym_va_arg, + anon_sym_id, + [5277] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + STATE(1910), 1, + sym__old_style_function_declarator, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2825), 1, + sym__declarator, + STATE(3150), 1, + sym_init_declarator, + STATE(6124), 1, + sym_type_qualifier, + STATE(6197), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [5361] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2434), 24, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_ATselector, + anon_sym_ATavailable, + anon_sym_ATencode, + ACTIONS(2432), 28, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym___imag, + anon_sym___real, + anon_sym_struct, + anon_sym_in, + 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__, + anon_sym___asm, + anon_sym_AT, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym___builtin_available, + anon_sym_va_arg, + anon_sym_id, + [5421] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2464), 24, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_ATselector, + anon_sym_ATavailable, + anon_sym_ATencode, + ACTIONS(2462), 28, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym___imag, + anon_sym___real, + anon_sym_struct, + anon_sym_in, + 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__, + anon_sym___asm, + anon_sym_AT, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym___builtin_available, + anon_sym_va_arg, + anon_sym_id, + [5481] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(6493), 1, + sym_identifier, + ACTIONS(6495), 1, + anon_sym_LPAREN2, + ACTIONS(6525), 1, + anon_sym_STAR, + ACTIONS(6527), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(5078), 1, + sym__field_declarator, + STATE(6258), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4955), 6, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_block_pointer_field_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [5561] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + STATE(1905), 1, + sym__old_style_function_declarator, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2814), 1, + sym__declarator, + STATE(3143), 1, + sym_init_declarator, + STATE(6098), 1, + sym_type_qualifier, + STATE(6197), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [5645] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(6493), 1, + sym_identifier, + ACTIONS(6495), 1, + anon_sym_LPAREN2, + ACTIONS(6497), 1, + anon_sym_STAR, + ACTIONS(6499), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(4888), 1, + sym__field_declarator, + STATE(6162), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4202), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4955), 6, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_block_pointer_field_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [5725] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2430), 24, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_ATselector, + anon_sym_ATavailable, + anon_sym_ATencode, + ACTIONS(2428), 28, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym___imag, + anon_sym___real, + anon_sym_struct, + anon_sym_in, + 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__, + anon_sym___asm, + anon_sym_AT, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym___builtin_available, + anon_sym_va_arg, + anon_sym_id, + [5785] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2452), 24, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_ATselector, + anon_sym_ATavailable, + anon_sym_ATencode, + ACTIONS(2450), 28, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym___imag, + anon_sym___real, + anon_sym_struct, + anon_sym_in, + 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__, + anon_sym___asm, + anon_sym_AT, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym___builtin_available, + anon_sym_va_arg, + anon_sym_id, + [5845] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2452), 24, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_ATselector, + anon_sym_ATavailable, + anon_sym_ATencode, + ACTIONS(2450), 28, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym___imag, + anon_sym___real, + anon_sym_struct, + anon_sym_in, + 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__, + anon_sym___asm, + anon_sym_AT, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym___builtin_available, + anon_sym_va_arg, + anon_sym_id, + [5905] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(9172), 1, + anon_sym_LBRACK, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(4279), 1, + sym_ms_declspec_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4271), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9189), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + ACTIONS(9187), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [5979] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2514), 24, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_ATselector, + anon_sym_ATavailable, + anon_sym_ATencode, + ACTIONS(2512), 28, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym___imag, + anon_sym___real, + anon_sym_struct, + anon_sym_in, + 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__, + anon_sym___asm, + anon_sym_AT, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym___builtin_available, + anon_sym_va_arg, + anon_sym_id, + [6039] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(9172), 1, + anon_sym_LBRACK, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(4267), 1, + sym_ms_declspec_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4285), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9193), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + ACTIONS(9191), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [6113] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + STATE(1895), 1, + sym__old_style_function_declarator, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2808), 1, + sym__declarator, + STATE(3101), 1, + sym_init_declarator, + STATE(5949), 1, + sym_type_qualifier, + STATE(6197), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [6197] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9195), 1, + sym_identifier, + ACTIONS(9201), 1, + sym_primitive_type, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(4269), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6994), 2, + anon_sym___declspec, + anon_sym___based, + ACTIONS(6998), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4205), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6989), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + ACTIONS(9198), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6991), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [6273] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2456), 24, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_ATselector, + anon_sym_ATavailable, + anon_sym_ATencode, + ACTIONS(2454), 28, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym___imag, + anon_sym___real, + anon_sym_struct, + anon_sym_in, + 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__, + anon_sym___asm, + anon_sym_AT, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym___builtin_available, + anon_sym_va_arg, + anon_sym_id, + [6333] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2448), 24, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_ATselector, + anon_sym_ATavailable, + anon_sym_ATencode, + ACTIONS(2446), 28, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym___imag, + anon_sym___real, + anon_sym_struct, + anon_sym_in, + 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__, + anon_sym___asm, + anon_sym_AT, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym___builtin_available, + anon_sym_va_arg, + anon_sym_id, + [6393] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + STATE(1903), 1, + sym__old_style_function_declarator, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2815), 1, + sym__declarator, + STATE(3107), 1, + sym_init_declarator, + STATE(6197), 1, + sym_ms_based_modifier, + STATE(6567), 1, + sym_type_qualifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [6477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2434), 24, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_ATselector, + anon_sym_ATavailable, + anon_sym_ATencode, + ACTIONS(2432), 28, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym___imag, + anon_sym___real, + anon_sym_struct, + anon_sym_in, + 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__, + anon_sym___asm, + anon_sym_AT, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym___builtin_available, + anon_sym_va_arg, + anon_sym_id, + [6537] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2456), 24, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_ATselector, + anon_sym_ATavailable, + anon_sym_ATencode, + ACTIONS(2454), 28, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym___imag, + anon_sym___real, + anon_sym_struct, + anon_sym_in, + 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__, + anon_sym___asm, + anon_sym_AT, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym___builtin_available, + anon_sym_va_arg, + anon_sym_id, + [6597] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(4490), 1, + anon_sym_LPAREN2, + ACTIONS(5281), 1, + sym_identifier, + ACTIONS(6563), 1, + anon_sym_STAR, + ACTIONS(6565), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(3991), 1, + sym__declarator, + STATE(6323), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4011), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [6676] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(6567), 1, + sym_identifier, + ACTIONS(6569), 1, + anon_sym_LPAREN2, + ACTIONS(6571), 1, + anon_sym_STAR, + ACTIONS(6573), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2758), 1, + sym__declarator, + STATE(6315), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2792), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [6755] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2836), 1, + sym__declarator, + STATE(3119), 1, + sym_init_declarator, + STATE(6197), 1, + sym_ms_based_modifier, + STATE(6688), 1, + sym_type_qualifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [6836] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6591), 1, + anon_sym_STAR, + ACTIONS(6593), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2871), 1, + sym__declarator, + STATE(3134), 1, + sym_init_declarator, + STATE(6058), 1, + sym_type_qualifier, + STATE(6660), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [6917] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4519), 1, + anon_sym_EQ, + ACTIONS(4525), 1, + anon_sym_AT, + STATE(1924), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + ACTIONS(4523), 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(3995), 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___attribute, + anon_sym_DOT, + ACTIONS(3997), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [6986] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6591), 1, + anon_sym_STAR, + ACTIONS(6593), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2873), 1, + sym__declarator, + STATE(3134), 1, + sym_init_declarator, + STATE(6058), 1, + sym_type_qualifier, + STATE(6660), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [7067] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(6567), 1, + sym_identifier, + ACTIONS(6569), 1, + anon_sym_LPAREN2, + ACTIONS(6571), 1, + anon_sym_STAR, + ACTIONS(6573), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2736), 1, + sym__declarator, + STATE(6315), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4227), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2792), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [7146] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2901), 1, + sym__declarator, + STATE(3157), 1, + sym_init_declarator, + STATE(6141), 1, + sym_type_qualifier, + STATE(6197), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [7227] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(4490), 1, + anon_sym_LPAREN2, + ACTIONS(4492), 1, + anon_sym_STAR, + ACTIONS(4494), 1, + anon_sym_CARET, + ACTIONS(5281), 1, + sym_identifier, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(5038), 1, + sym__declarator, + STATE(6199), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4011), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [7306] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2826), 1, + sym__declarator, + STATE(3101), 1, + sym_init_declarator, + STATE(5949), 1, + sym_type_qualifier, + STATE(6197), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [7387] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(4490), 1, + anon_sym_LPAREN2, + ACTIONS(5281), 1, + sym_identifier, + ACTIONS(6563), 1, + anon_sym_STAR, + ACTIONS(6565), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(3970), 1, + sym__declarator, + STATE(6323), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4226), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4011), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [7466] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2896), 1, + sym__declarator, + STATE(3192), 1, + sym_init_declarator, + STATE(6197), 1, + sym_ms_based_modifier, + STATE(6373), 1, + sym_type_qualifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [7547] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2832), 1, + sym__declarator, + STATE(3192), 1, + sym_init_declarator, + STATE(6197), 1, + sym_ms_based_modifier, + STATE(6373), 1, + sym_type_qualifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [7628] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(4490), 1, + anon_sym_LPAREN2, + ACTIONS(4492), 1, + anon_sym_STAR, + ACTIONS(4494), 1, + anon_sym_CARET, + ACTIONS(5281), 1, + sym_identifier, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(5026), 1, + sym__declarator, + STATE(6199), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4234), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4011), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [7707] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym__declarator, + STATE(3119), 1, + sym_init_declarator, + STATE(6197), 1, + sym_ms_based_modifier, + STATE(6688), 1, + sym_type_qualifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [7788] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7165), 1, + anon_sym_LPAREN2, + ACTIONS(7168), 1, + anon_sym_LT, + STATE(2922), 1, + aux_sym_generic_specifier_repeat1, + STATE(4283), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5932), 3, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + ACTIONS(9204), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4502), 40, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [7857] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2905), 1, + sym__declarator, + STATE(3150), 1, + sym_init_declarator, + STATE(6124), 1, + sym_type_qualifier, + STATE(6197), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [7938] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2855), 1, + sym__declarator, + STATE(3107), 1, + sym_init_declarator, + STATE(6197), 1, + sym_ms_based_modifier, + STATE(6567), 1, + sym_type_qualifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [8019] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6591), 1, + anon_sym_STAR, + ACTIONS(6593), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2885), 1, + sym__declarator, + STATE(3134), 1, + sym_init_declarator, + STATE(6058), 1, + sym_type_qualifier, + STATE(6660), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [8100] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2863), 1, + sym__declarator, + STATE(3143), 1, + sym_init_declarator, + STATE(6098), 1, + sym_type_qualifier, + STATE(6197), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [8181] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2903), 1, + sym__declarator, + STATE(3101), 1, + sym_init_declarator, + STATE(5949), 1, + sym_type_qualifier, + STATE(6197), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [8262] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2840), 1, + sym__declarator, + STATE(3164), 1, + sym_init_declarator, + STATE(6153), 1, + sym_type_qualifier, + STATE(6197), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [8343] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(3067), 1, + sym__declarator, + STATE(6197), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [8422] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2842), 1, + sym__declarator, + STATE(3150), 1, + sym_init_declarator, + STATE(6124), 1, + sym_type_qualifier, + STATE(6197), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [8503] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(3087), 1, + sym__declarator, + STATE(6197), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4248), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [8582] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(3233), 1, + sym__declarator, + STATE(3312), 1, + sym_init_declarator, + STATE(6197), 1, + sym_ms_based_modifier, + STATE(6286), 1, + sym_type_qualifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [8663] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6591), 1, + anon_sym_STAR, + ACTIONS(6593), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(3238), 1, + sym__declarator, + STATE(6660), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [8742] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2919), 1, + sym__declarator, + STATE(3143), 1, + sym_init_declarator, + STATE(6098), 1, + sym_type_qualifier, + STATE(6197), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [8823] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2910), 1, + sym__declarator, + STATE(3107), 1, + sym_init_declarator, + STATE(6197), 1, + sym_ms_based_modifier, + STATE(6567), 1, + sym_type_qualifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [8904] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2915), 1, + sym__declarator, + STATE(3120), 1, + sym_init_declarator, + STATE(6011), 1, + sym_type_qualifier, + STATE(6197), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [8985] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6591), 1, + anon_sym_STAR, + ACTIONS(6593), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2888), 1, + sym__declarator, + STATE(3134), 1, + sym_init_declarator, + STATE(6058), 1, + sym_type_qualifier, + STATE(6660), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [9066] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6591), 1, + anon_sym_STAR, + ACTIONS(6593), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2880), 1, + sym__declarator, + STATE(3134), 1, + sym_init_declarator, + STATE(6058), 1, + sym_type_qualifier, + STATE(6660), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [9147] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6591), 1, + anon_sym_STAR, + ACTIONS(6593), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(3237), 1, + sym__declarator, + STATE(6660), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4252), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [9226] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6591), 1, + anon_sym_STAR, + ACTIONS(6593), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2881), 1, + sym__declarator, + STATE(3134), 1, + sym_init_declarator, + STATE(6058), 1, + sym_type_qualifier, + STATE(6660), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [9307] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6591), 1, + anon_sym_STAR, + ACTIONS(6593), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2882), 1, + sym__declarator, + STATE(3134), 1, + sym_init_declarator, + STATE(6058), 1, + sym_type_qualifier, + STATE(6660), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [9388] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6591), 1, + anon_sym_STAR, + ACTIONS(6593), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2886), 1, + sym__declarator, + STATE(3134), 1, + sym_init_declarator, + STATE(6058), 1, + sym_type_qualifier, + STATE(6660), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [9469] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2853), 1, + sym__declarator, + STATE(3172), 1, + sym_init_declarator, + STATE(6164), 1, + sym_type_qualifier, + STATE(6197), 1, + sym_ms_based_modifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [9550] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(2930), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7201), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(7205), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7263), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(7260), 36, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + [9614] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2930), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7382), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + ACTIONS(9207), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7380), 40, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [9675] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4264), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7452), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + ACTIONS(9210), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7450), 40, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [9736] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2930), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7324), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + ACTIONS(9213), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7322), 40, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [9797] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(2368), 1, + sym_alignas_qualifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4277), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9218), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + ACTIONS(9216), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [9862] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4275), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7446), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + ACTIONS(9220), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7444), 40, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [9923] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2930), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7263), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + ACTIONS(9223), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7260), 40, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [9984] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(2368), 1, + sym_alignas_qualifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9230), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + ACTIONS(9227), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [10049] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(2368), 1, + sym_alignas_qualifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9235), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + ACTIONS(9233), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [10114] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4511), 1, + anon_sym_LT, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(9239), 1, + anon_sym_LPAREN2, + ACTIONS(9242), 1, + anon_sym_COLON_COLON, + ACTIONS(9244), 1, + anon_sym_EQ, + STATE(1924), 1, + sym_string_literal, + STATE(2922), 1, + aux_sym_generic_specifier_repeat1, + ACTIONS(9237), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + ACTIONS(9246), 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(3997), 12, + 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_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(3995), 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_LT, + anon_sym_GT_GT, + anon_sym_DOT, + sym_identifier, + [10191] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4287), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7428), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + ACTIONS(9248), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7426), 40, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [10252] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2930), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7434), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + ACTIONS(9251), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7432), 40, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [10313] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2930), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7352), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + ACTIONS(9254), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7350), 40, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [10374] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4266), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5030), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + ACTIONS(9257), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5034), 40, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [10435] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(2368), 1, + sym_alignas_qualifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9262), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + ACTIONS(9260), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [10500] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2930), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7340), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + ACTIONS(9264), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7338), 40, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [10561] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(2368), 1, + sym_alignas_qualifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4284), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9235), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + ACTIONS(9233), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [10626] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(2368), 1, + sym_alignas_qualifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9269), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + ACTIONS(9267), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [10691] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4278), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7422), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + ACTIONS(9271), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7420), 40, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [10752] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(2368), 1, + sym_alignas_qualifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4280), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9276), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + ACTIONS(9274), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [10817] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2930), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7308), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + ACTIONS(9278), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7306), 40, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [10878] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(2368), 1, + sym_alignas_qualifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9283), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + ACTIONS(9281), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [10943] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(2368), 1, + sym_alignas_qualifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9218), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + ACTIONS(9216), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [11008] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(2368), 1, + sym_alignas_qualifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9276), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + ACTIONS(9274), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [11073] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2930), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7344), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_LBRACK, + ACTIONS(9285), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7342), 40, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym___declspec, + 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__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [11134] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(2368), 1, + sym_alignas_qualifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4289), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9230), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + ACTIONS(9227), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [11199] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(2368), 1, + sym_alignas_qualifier, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9291), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + ACTIONS(9288), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [11264] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(9244), 1, + anon_sym_EQ, + STATE(1924), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + ACTIONS(9246), 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(3995), 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_DOT, + sym_identifier, + ACTIONS(3997), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [11330] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + STATE(2368), 1, + sym_alignas_qualifier, + ACTIONS(6871), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(39), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + STATE(3090), 3, + sym_attribute_specifier, + sym_type_qualifier, + aux_sym_function_field_declarator_repeat1, + ACTIONS(9294), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_GT, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(6861), 31, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [11398] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + STATE(2368), 1, + sym_alignas_qualifier, + ACTIONS(6871), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(39), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + STATE(4297), 3, + sym_attribute_specifier, + sym_type_qualifier, + aux_sym_function_field_declarator_repeat1, + ACTIONS(9296), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_GT, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(6861), 31, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [11466] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4511), 1, + anon_sym_LT, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(9244), 1, + anon_sym_EQ, + STATE(1924), 1, + sym_string_literal, + STATE(2922), 1, + aux_sym_generic_specifier_repeat1, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + ACTIONS(9246), 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(3995), 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_LT, + anon_sym_GT_GT, + anon_sym_DOT, + sym_identifier, + ACTIONS(3997), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [11536] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7001), 1, + sym_primitive_type, + ACTIONS(9158), 1, + sym_identifier, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(4331), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6989), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + STATE(4296), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9298), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [11606] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + STATE(2368), 1, + sym_alignas_qualifier, + ACTIONS(6871), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(39), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + STATE(4291), 3, + sym_attribute_specifier, + sym_type_qualifier, + aux_sym_function_field_declarator_repeat1, + ACTIONS(9300), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_GT, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(6861), 31, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [11674] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6984), 1, + sym_primitive_type, + ACTIONS(9162), 1, + sym_identifier, + STATE(2368), 1, + sym_alignas_qualifier, + STATE(2988), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(59), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6972), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + STATE(2508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6979), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(39), 34, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [11744] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + STATE(2368), 1, + sym_alignas_qualifier, + ACTIONS(6871), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(39), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + STATE(3090), 3, + sym_attribute_specifier, + sym_type_qualifier, + aux_sym_function_field_declarator_repeat1, + ACTIONS(9302), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_GT, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(6861), 31, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [11812] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4519), 1, + anon_sym_EQ, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(4578), 1, + anon_sym_COLON, + STATE(1924), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + ACTIONS(4523), 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(3995), 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(3997), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [11879] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4519), 1, + anon_sym_EQ, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(4531), 1, + anon_sym_COLON, + STATE(1924), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + ACTIONS(4523), 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(3995), 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(3997), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [11946] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9306), 1, + anon_sym___attribute, + STATE(2368), 1, + sym_alignas_qualifier, + ACTIONS(6871), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(39), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + STATE(3090), 3, + sym_attribute_specifier, + sym_type_qualifier, + aux_sym_function_field_declarator_repeat1, + ACTIONS(9304), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(6861), 31, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [12011] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4519), 1, + anon_sym_EQ, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(9308), 1, + anon_sym_COLON, + STATE(1924), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + ACTIONS(4523), 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(3995), 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(3997), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [12078] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4519), 1, + anon_sym_EQ, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(4549), 1, + anon_sym_COLON, + STATE(1924), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + ACTIONS(4523), 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(3995), 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(3997), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [12145] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + STATE(2368), 1, + sym_alignas_qualifier, + ACTIONS(6871), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(39), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + STATE(4300), 3, + sym_attribute_specifier, + sym_type_qualifier, + aux_sym_function_field_declarator_repeat1, + ACTIONS(9310), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(6861), 31, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [12212] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4519), 1, + anon_sym_EQ, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(4547), 1, + anon_sym_COLON, + STATE(1924), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + ACTIONS(4523), 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(3995), 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(3997), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [12279] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4519), 1, + anon_sym_EQ, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(4529), 1, + anon_sym_COLON, + STATE(1924), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + ACTIONS(4523), 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(3995), 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(3997), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [12346] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4519), 1, + anon_sym_EQ, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(4559), 1, + anon_sym_COLON, + STATE(1924), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + ACTIONS(4523), 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(3995), 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(3997), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [12413] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4519), 1, + anon_sym_EQ, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(4527), 1, + anon_sym_COLON, + STATE(1924), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + ACTIONS(4523), 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(3995), 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(3997), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [12480] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(8501), 1, + anon_sym_EQ, + ACTIONS(9312), 1, + anon_sym_LT2, + STATE(1924), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + ACTIONS(8503), 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(3995), 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(3997), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_DASH_GT, + [12547] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4519), 1, + anon_sym_EQ, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(4591), 1, + anon_sym_COLON, + STATE(1924), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + ACTIONS(4523), 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(3995), 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(3997), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [12614] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(7638), 1, + anon_sym_LBRACE, + ACTIONS(9314), 1, + anon_sym_COLON, + STATE(2946), 1, + sym_attribute_specifier, + STATE(4170), 1, + sym_enumerator_list, + ACTIONS(7700), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(7702), 37, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + [12680] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + STATE(2368), 1, + sym_alignas_qualifier, + ACTIONS(6871), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(39), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + STATE(4313), 3, + sym_attribute_specifier, + sym_type_qualifier, + aux_sym_function_field_declarator_repeat1, + ACTIONS(9296), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + ACTIONS(6861), 31, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [12746] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(7638), 1, + anon_sym_LBRACE, + ACTIONS(9317), 1, + anon_sym_COLON, + STATE(2963), 1, + sym_attribute_specifier, + STATE(4184), 1, + sym_enumerator_list, + ACTIONS(7717), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(7719), 37, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + [12812] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9320), 1, + anon_sym___attribute, + STATE(2368), 1, + sym_alignas_qualifier, + ACTIONS(6871), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(39), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + STATE(3090), 3, + sym_attribute_specifier, + sym_type_qualifier, + aux_sym_function_field_declarator_repeat1, + ACTIONS(9302), 5, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + ACTIONS(6861), 31, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [12876] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9322), 1, + anon_sym___attribute, + STATE(2368), 1, + sym_alignas_qualifier, + ACTIONS(6871), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(39), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + STATE(3090), 3, + sym_attribute_specifier, + sym_type_qualifier, + aux_sym_function_field_declarator_repeat1, + ACTIONS(9294), 5, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + ACTIONS(6861), 31, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [12940] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + STATE(2368), 1, + sym_alignas_qualifier, + ACTIONS(6871), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(39), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + STATE(4314), 3, + sym_attribute_specifier, + sym_type_qualifier, + aux_sym_function_field_declarator_repeat1, + ACTIONS(9300), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + ACTIONS(6861), 31, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [13006] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(8501), 1, + anon_sym_EQ, + STATE(1924), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + ACTIONS(8503), 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(3995), 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(3997), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_DASH_GT, + [13070] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(7638), 1, + anon_sym_LBRACE, + ACTIONS(9324), 1, + anon_sym_COLON, + STATE(2990), 1, + sym_attribute_specifier, + STATE(4168), 1, + sym_enumerator_list, + ACTIONS(7764), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(7766), 37, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + [13136] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9331), 1, + anon_sym_AMP_AMP, + ACTIONS(9333), 1, + anon_sym_PIPE, + ACTIONS(9335), 1, + anon_sym_CARET, + ACTIONS(9337), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4025), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(9327), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9339), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9341), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9343), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9329), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4027), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + 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, + [13221] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9329), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4025), 11, + 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___attribute, + anon_sym_EQ, + ACTIONS(4027), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + 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, + [13288] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9335), 1, + anon_sym_CARET, + ACTIONS(9337), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9327), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9339), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9341), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9343), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4025), 3, + anon_sym_PIPE, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(9329), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4027), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + 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, + [13369] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9327), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9339), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9341), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9343), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9329), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4025), 5, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(4027), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + 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, + [13446] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9327), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9341), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9343), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9329), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4025), 5, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(4027), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + 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, + [13521] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9327), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9329), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4025), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(4027), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + 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, + [13592] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + STATE(2368), 1, + sym_alignas_qualifier, + ACTIONS(6871), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(39), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(9304), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + STATE(3090), 3, + sym_attribute_specifier, + sym_type_qualifier, + aux_sym_function_field_declarator_repeat1, + ACTIONS(6861), 31, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [13657] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9331), 1, + anon_sym_AMP_AMP, + ACTIONS(9333), 1, + anon_sym_PIPE, + ACTIONS(9335), 1, + anon_sym_CARET, + ACTIONS(9337), 1, + anon_sym_AMP, + ACTIONS(9347), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9349), 1, + anon_sym_PIPE_PIPE, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4482), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(9327), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9339), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9341), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9343), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9329), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4484), 17, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + 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, + [13746] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9327), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9329), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4025), 9, + 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(4027), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + 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, + [13815] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + STATE(2368), 1, + sym_alignas_qualifier, + ACTIONS(6871), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(39), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(8130), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + STATE(4335), 3, + sym_attribute_specifier, + sym_type_qualifier, + aux_sym_function_field_declarator_repeat1, + ACTIONS(6861), 31, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [13880] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + STATE(2368), 1, + sym_alignas_qualifier, + ACTIONS(6871), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(39), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(9310), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + STATE(4324), 3, + sym_attribute_specifier, + sym_type_qualifier, + aux_sym_function_field_declarator_repeat1, + ACTIONS(6861), 31, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [13945] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9337), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9327), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9339), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9341), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9343), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9329), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4025), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(4027), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + 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, + [14024] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9331), 1, + anon_sym_AMP_AMP, + ACTIONS(9333), 1, + anon_sym_PIPE, + ACTIONS(9335), 1, + anon_sym_CARET, + ACTIONS(9337), 1, + anon_sym_AMP, + ACTIONS(9347), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9349), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9351), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4466), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(9327), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9339), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9341), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9343), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9329), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4470), 16, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + 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, + [14115] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2930), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7263), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(7205), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7201), 38, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [14172] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9331), 1, + anon_sym_AMP_AMP, + ACTIONS(9333), 1, + anon_sym_PIPE, + ACTIONS(9335), 1, + anon_sym_CARET, + ACTIONS(9337), 1, + anon_sym_AMP, + ACTIONS(9347), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9349), 1, + anon_sym_PIPE_PIPE, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4478), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(9327), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9339), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9341), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9343), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9329), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4480), 17, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + 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, + [14261] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9331), 1, + anon_sym_AMP_AMP, + ACTIONS(9333), 1, + anon_sym_PIPE, + ACTIONS(9335), 1, + anon_sym_CARET, + ACTIONS(9337), 1, + anon_sym_AMP, + ACTIONS(9347), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9349), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9351), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4474), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(9327), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9339), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9341), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9343), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9329), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4476), 16, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + 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, + [14352] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9331), 1, + anon_sym_AMP_AMP, + ACTIONS(9333), 1, + anon_sym_PIPE, + ACTIONS(9335), 1, + anon_sym_CARET, + ACTIONS(9337), 1, + anon_sym_AMP, + ACTIONS(9347), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9349), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9351), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4486), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(9327), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9339), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9341), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9343), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9329), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4488), 16, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + 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, + [14443] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + STATE(2368), 1, + sym_alignas_qualifier, + ACTIONS(6871), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(39), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(8142), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + STATE(3090), 3, + sym_attribute_specifier, + sym_type_qualifier, + aux_sym_function_field_declarator_repeat1, + ACTIONS(6861), 31, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + [14508] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9333), 1, + anon_sym_PIPE, + ACTIONS(9335), 1, + anon_sym_CARET, + ACTIONS(9337), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4025), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(9327), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9339), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9341), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9343), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9329), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4027), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + 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, + [14591] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9331), 1, + anon_sym_AMP_AMP, + ACTIONS(9333), 1, + anon_sym_PIPE, + ACTIONS(9335), 1, + anon_sym_CARET, + ACTIONS(9337), 1, + anon_sym_AMP, + ACTIONS(9349), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9353), 1, + anon_sym_DOT_DOT_DOT, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4437), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(9327), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9339), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9341), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9343), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9329), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4442), 17, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + 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, + [14680] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4519), 1, + anon_sym_EQ, + ACTIONS(4523), 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(3995), 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___attribute, + anon_sym_DOT, + ACTIONS(3997), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [14736] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7374), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(9356), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(7376), 35, + anon_sym_STAR, + anon_sym_CARET, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + [14789] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7536), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(9358), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(7538), 35, + anon_sym_STAR, + anon_sym_CARET, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + [14842] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9360), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9366), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9368), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9370), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9362), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4025), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(4027), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + sym_identifier, + [14916] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4474), 1, + anon_sym_EQ, + ACTIONS(9372), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9374), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9376), 1, + anon_sym_AMP_AMP, + ACTIONS(9378), 1, + anon_sym_PIPE, + ACTIONS(9380), 1, + anon_sym_CARET, + ACTIONS(9382), 1, + anon_sym_AMP, + ACTIONS(9384), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9360), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9366), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9368), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9370), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9362), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4476), 14, + anon_sym_COMMA, + anon_sym_RBRACK, + 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, + sym_identifier, + [15004] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4466), 1, + anon_sym_EQ, + ACTIONS(9372), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9374), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9376), 1, + anon_sym_AMP_AMP, + ACTIONS(9378), 1, + anon_sym_PIPE, + ACTIONS(9380), 1, + anon_sym_CARET, + ACTIONS(9382), 1, + anon_sym_AMP, + ACTIONS(9384), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9360), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9366), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9368), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9370), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9362), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4470), 14, + anon_sym_COMMA, + anon_sym_RBRACK, + 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, + sym_identifier, + [15092] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9360), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9366), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9368), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9370), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9362), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4025), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(4027), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_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, + sym_identifier, + [15164] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4482), 1, + anon_sym_EQ, + ACTIONS(9372), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9374), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9376), 1, + anon_sym_AMP_AMP, + ACTIONS(9378), 1, + anon_sym_PIPE, + ACTIONS(9380), 1, + anon_sym_CARET, + ACTIONS(9382), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9360), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9366), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9368), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9370), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9362), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4484), 15, + anon_sym_COMMA, + 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, + sym_identifier, + [15250] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4486), 1, + anon_sym_EQ, + ACTIONS(9372), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9374), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9376), 1, + anon_sym_AMP_AMP, + ACTIONS(9378), 1, + anon_sym_PIPE, + ACTIONS(9380), 1, + anon_sym_CARET, + ACTIONS(9382), 1, + anon_sym_AMP, + ACTIONS(9384), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9360), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9366), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9368), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9370), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9362), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4488), 14, + anon_sym_COMMA, + anon_sym_RBRACK, + 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, + sym_identifier, + [15338] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9360), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9370), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9362), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4025), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(4027), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + 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, + sym_identifier, + [15406] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9382), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9360), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9366), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9368), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9370), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4025), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(9362), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4027), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + sym_identifier, + [15482] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9380), 1, + anon_sym_CARET, + ACTIONS(9382), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4025), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(9360), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9366), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9368), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9370), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9362), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4027), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + sym_identifier, + [15560] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4025), 1, + anon_sym_EQ, + ACTIONS(9378), 1, + anon_sym_PIPE, + ACTIONS(9380), 1, + anon_sym_CARET, + ACTIONS(9382), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9360), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9366), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9368), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9370), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9362), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4027), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + sym_identifier, + [15640] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4478), 1, + anon_sym_EQ, + ACTIONS(9372), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9374), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9376), 1, + anon_sym_AMP_AMP, + ACTIONS(9378), 1, + anon_sym_PIPE, + ACTIONS(9380), 1, + anon_sym_CARET, + ACTIONS(9382), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9360), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9366), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9368), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9370), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9362), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4480), 15, + anon_sym_COMMA, + 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, + sym_identifier, + [15726] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9362), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4025), 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(4027), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + 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, + sym_identifier, + [15790] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4437), 1, + anon_sym_EQ, + ACTIONS(9374), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9376), 1, + anon_sym_AMP_AMP, + ACTIONS(9378), 1, + anon_sym_PIPE, + ACTIONS(9380), 1, + anon_sym_CARET, + ACTIONS(9382), 1, + anon_sym_AMP, + ACTIONS(9386), 1, + anon_sym_DOT_DOT_DOT, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9360), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9366), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9368), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9370), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9362), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4442), 15, + anon_sym_COMMA, + 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, + sym_identifier, + [15876] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9360), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9362), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4025), 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(4027), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + 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, + sym_identifier, + [15942] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4025), 1, + anon_sym_EQ, + ACTIONS(9376), 1, + anon_sym_AMP_AMP, + ACTIONS(9378), 1, + anon_sym_PIPE, + ACTIONS(9380), 1, + anon_sym_CARET, + ACTIONS(9382), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9360), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9366), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9368), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9370), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9362), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4027), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + 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, + sym_identifier, + [16024] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9389), 1, + anon_sym_RPAREN, + ACTIONS(5034), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(5030), 37, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + [16075] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9244), 1, + anon_sym_EQ, + ACTIONS(9246), 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(3995), 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(3997), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_identifier, + [16128] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9391), 1, + anon_sym_RPAREN, + ACTIONS(5034), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(5030), 37, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + [16179] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9393), 1, + anon_sym_RPAREN, + ACTIONS(5034), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(5030), 37, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + [16230] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9395), 1, + anon_sym_RPAREN, + ACTIONS(5034), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(5030), 37, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + [16281] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9397), 1, + anon_sym_RPAREN, + ACTIONS(5034), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(5030), 37, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + [16332] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9399), 1, + anon_sym_RPAREN, + ACTIONS(5034), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(5030), 37, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + [16383] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9401), 1, + anon_sym_RPAREN, + ACTIONS(5034), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(5030), 37, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + [16434] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9403), 1, + anon_sym_RPAREN, + ACTIONS(5034), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(5030), 37, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + [16485] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9405), 1, + anon_sym_RPAREN, + ACTIONS(5034), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(5030), 37, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + [16536] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9407), 1, + anon_sym_RPAREN, + ACTIONS(5034), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(5030), 37, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + [16587] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9409), 1, + anon_sym_RPAREN, + ACTIONS(5034), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(5030), 37, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + [16638] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9411), 1, + anon_sym_RPAREN, + ACTIONS(5034), 3, + anon_sym_const, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(5030), 37, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_CARET, + anon_sym___extension__, + anon_sym_noreturn, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym__Nonnull, + anon_sym_nullable, + anon_sym__Complex, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___block, + anon_sym___bridge_retained, + anon_sym___bridge_transfer, + anon_sym___complex, + anon_sym___const, + anon_sym___imag, + anon_sym___kindof, + anon_sym___nonnull, + anon_sym___nullable, + anon_sym___ptrauth_objc_class_ro, + anon_sym___ptrauth_objc_isa_pointer, + anon_sym___ptrauth_objc_super_pointer, + anon_sym___real, + anon_sym___strong, + anon_sym___unsafe_unretained, + anon_sym___unused, + anon_sym___weak, + anon_sym_alignas, + anon_sym__Alignas, + [16689] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4437), 1, + anon_sym_EQ, + ACTIONS(9413), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9420), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9422), 1, + anon_sym_AMP_AMP, + ACTIONS(9424), 1, + anon_sym_PIPE, + ACTIONS(9426), 1, + anon_sym_CARET, + ACTIONS(9428), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9416), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9430), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9432), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9434), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9436), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9418), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4442), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [16773] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4474), 1, + anon_sym_EQ, + ACTIONS(9420), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9422), 1, + anon_sym_AMP_AMP, + ACTIONS(9424), 1, + anon_sym_PIPE, + ACTIONS(9426), 1, + anon_sym_CARET, + ACTIONS(9428), 1, + anon_sym_AMP, + ACTIONS(9438), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9440), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9416), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9430), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9432), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9434), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9436), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9418), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4476), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [16859] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1456), 1, + aux_sym_selector_expression_repeat2, + ACTIONS(4029), 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(4031), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_DASH_GT, + [16909] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4466), 1, + anon_sym_EQ, + ACTIONS(9420), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9422), 1, + anon_sym_AMP_AMP, + ACTIONS(9424), 1, + anon_sym_PIPE, + ACTIONS(9426), 1, + anon_sym_CARET, + ACTIONS(9428), 1, + anon_sym_AMP, + ACTIONS(9438), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9440), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9416), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9430), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9432), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9434), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9436), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9418), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4470), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [16995] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4482), 1, + anon_sym_EQ, + ACTIONS(9420), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9422), 1, + anon_sym_AMP_AMP, + ACTIONS(9424), 1, + anon_sym_PIPE, + ACTIONS(9426), 1, + anon_sym_CARET, + ACTIONS(9428), 1, + anon_sym_AMP, + ACTIONS(9438), 1, + anon_sym_DOT_DOT_DOT, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9416), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9430), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9432), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9434), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9436), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9418), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4484), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [17079] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9418), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4025), 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(4027), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_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, + [17141] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4025), 1, + anon_sym_EQ, + ACTIONS(9422), 1, + anon_sym_AMP_AMP, + ACTIONS(9424), 1, + anon_sym_PIPE, + ACTIONS(9426), 1, + anon_sym_CARET, + ACTIONS(9428), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9416), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9430), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9432), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9434), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9436), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9418), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4027), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [17221] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4025), 1, + anon_sym_EQ, + ACTIONS(9424), 1, + anon_sym_PIPE, + ACTIONS(9426), 1, + anon_sym_CARET, + ACTIONS(9428), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9416), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9430), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9432), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9434), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9436), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9418), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4027), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [17299] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9426), 1, + anon_sym_CARET, + ACTIONS(9428), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4025), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(9416), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9430), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9432), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9434), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9436), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9418), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4027), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [17375] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9428), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9416), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9430), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9432), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9434), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9436), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4025), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(9418), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4027), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [17449] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9416), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9430), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9432), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9434), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9436), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9418), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4025), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(4027), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [17521] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9416), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9432), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9434), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9436), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9418), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4025), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(4027), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [17591] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9416), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9436), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9418), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4025), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(4027), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_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, + [17657] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9416), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9418), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4025), 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(4027), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_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, + [17721] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4486), 1, + anon_sym_EQ, + ACTIONS(9420), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9422), 1, + anon_sym_AMP_AMP, + ACTIONS(9424), 1, + anon_sym_PIPE, + ACTIONS(9426), 1, + anon_sym_CARET, + ACTIONS(9428), 1, + anon_sym_AMP, + ACTIONS(9438), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9440), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9416), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9430), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9432), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9434), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9436), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9418), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4488), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [17807] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4478), 1, + anon_sym_EQ, + ACTIONS(9420), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9422), 1, + anon_sym_AMP_AMP, + ACTIONS(9424), 1, + anon_sym_PIPE, + ACTIONS(9426), 1, + anon_sym_CARET, + ACTIONS(9428), 1, + anon_sym_AMP, + ACTIONS(9438), 1, + anon_sym_DOT_DOT_DOT, + STATE(1460), 1, + sym_argument_list, + ACTIONS(3989), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9416), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9430), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9432), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9434), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9436), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9418), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4480), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [17891] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8501), 1, + anon_sym_EQ, + ACTIONS(8503), 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(3995), 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(3997), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_DASH_GT, + [17942] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4519), 1, + anon_sym_EQ, + ACTIONS(9442), 1, + anon_sym_SEMI, + ACTIONS(4523), 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(3995), 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(3997), 13, + 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_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [17994] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(7077), 1, + anon_sym_LBRACE, + ACTIONS(9444), 1, + sym_identifier, + STATE(2926), 1, + sym_field_declaration_list, + STATE(5106), 1, + sym_attribute_specifier, + STATE(5537), 1, + sym_ms_declspec_modifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4234), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4236), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [18053] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(4846), 1, + anon_sym_SEMI, + ACTIONS(7077), 1, + anon_sym_LBRACE, + ACTIONS(9444), 1, + sym_identifier, + STATE(2926), 1, + sym_field_declaration_list, + STATE(5106), 1, + sym_attribute_specifier, + STATE(5537), 1, + sym_ms_declspec_modifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4234), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4236), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [18112] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4474), 1, + anon_sym___attribute, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4476), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + [18194] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4478), 1, + anon_sym___attribute, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4480), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [18274] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9452), 1, + anon_sym_SLASH, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4025), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute, + ACTIONS(4027), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [18334] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4466), 1, + anon_sym___attribute, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4470), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + [18416] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4486), 1, + anon_sym___attribute, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4488), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + [18498] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4482), 1, + anon_sym___attribute, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4484), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [18578] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9452), 1, + anon_sym_SLASH, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4025), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute, + ACTIONS(4027), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [18636] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4025), 1, + anon_sym___attribute, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4027), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [18712] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4025), 1, + anon_sym___attribute, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4027), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [18786] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4025), 2, + anon_sym_PIPE, + anon_sym___attribute, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4027), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [18858] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9462), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4025), 2, + anon_sym_PIPE, + anon_sym___attribute, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4027), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [18928] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9452), 1, + anon_sym_SLASH, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4025), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym___attribute, + ACTIONS(4027), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [18996] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9452), 1, + anon_sym_SLASH, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4025), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym___attribute, + ACTIONS(4027), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [19062] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4437), 1, + anon_sym___attribute, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9474), 1, + anon_sym_DOT_DOT_DOT, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4442), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [19142] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9452), 1, + anon_sym_SLASH, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4025), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute, + ACTIONS(4027), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [19204] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9477), 1, + sym_identifier, + ACTIONS(9479), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9481), 1, + anon_sym_COMMA, + ACTIONS(9487), 1, + anon_sym_SLASH, + ACTIONS(9489), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9491), 1, + anon_sym_AMP_AMP, + ACTIONS(9493), 1, + anon_sym_PIPE, + ACTIONS(9495), 1, + anon_sym_CARET, + ACTIONS(9497), 1, + anon_sym_AMP, + ACTIONS(9507), 1, + anon_sym_RBRACK, + ACTIONS(9509), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + STATE(5367), 1, + aux_sym_attribute_repeat1, + STATE(5678), 1, + aux_sym_message_expression_repeat2, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9485), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9499), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9501), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9503), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9505), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [19290] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9477), 1, + sym_identifier, + ACTIONS(9479), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9487), 1, + anon_sym_SLASH, + ACTIONS(9489), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9491), 1, + anon_sym_AMP_AMP, + ACTIONS(9493), 1, + anon_sym_PIPE, + ACTIONS(9495), 1, + anon_sym_CARET, + ACTIONS(9497), 1, + anon_sym_AMP, + ACTIONS(9509), 1, + anon_sym_QMARK, + ACTIONS(9511), 1, + anon_sym_COMMA, + ACTIONS(9513), 1, + anon_sym_RBRACK, + STATE(1460), 1, + sym_argument_list, + STATE(5549), 1, + aux_sym_message_expression_repeat2, + STATE(5618), 1, + aux_sym_attribute_repeat1, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9485), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9499), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9501), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9503), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9505), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [19376] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9479), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9487), 1, + anon_sym_SLASH, + ACTIONS(9489), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9491), 1, + anon_sym_AMP_AMP, + ACTIONS(9493), 1, + anon_sym_PIPE, + ACTIONS(9495), 1, + anon_sym_CARET, + ACTIONS(9497), 1, + anon_sym_AMP, + ACTIONS(9509), 1, + anon_sym_QMARK, + ACTIONS(9517), 1, + anon_sym_COMMA, + STATE(1460), 1, + sym_argument_list, + STATE(5142), 1, + aux_sym_attribute_repeat1, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9485), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9499), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9501), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9503), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9505), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9515), 3, + anon_sym_RBRACK, + anon_sym_COLON, + sym_identifier, + [19458] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9521), 1, + anon_sym___attribute, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9519), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [19538] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9487), 1, + anon_sym_SLASH, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4025), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9485), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9501), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9503), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9505), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4027), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + sym_identifier, + [19601] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9487), 1, + anon_sym_SLASH, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9485), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9505), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4025), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4027), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + sym_identifier, + [19660] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9479), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9487), 1, + anon_sym_SLASH, + ACTIONS(9489), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9491), 1, + anon_sym_AMP_AMP, + ACTIONS(9493), 1, + anon_sym_PIPE, + ACTIONS(9495), 1, + anon_sym_CARET, + ACTIONS(9497), 1, + anon_sym_AMP, + ACTIONS(9509), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9485), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9499), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9501), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9503), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9505), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4488), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + sym_identifier, + [19737] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9487), 1, + anon_sym_SLASH, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9485), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4025), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4027), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + sym_identifier, + [19794] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9479), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9487), 1, + anon_sym_SLASH, + ACTIONS(9489), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9491), 1, + anon_sym_AMP_AMP, + ACTIONS(9493), 1, + anon_sym_PIPE, + ACTIONS(9495), 1, + anon_sym_CARET, + ACTIONS(9497), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9485), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9499), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9501), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9503), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9505), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4480), 5, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + sym_identifier, + [19869] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9487), 1, + anon_sym_SLASH, + ACTIONS(9489), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9491), 1, + anon_sym_AMP_AMP, + ACTIONS(9493), 1, + anon_sym_PIPE, + ACTIONS(9495), 1, + anon_sym_CARET, + ACTIONS(9497), 1, + anon_sym_AMP, + ACTIONS(9523), 1, + anon_sym_DOT_DOT_DOT, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9485), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9499), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9501), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9503), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9505), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4442), 5, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + sym_identifier, + [19944] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9479), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9487), 1, + anon_sym_SLASH, + ACTIONS(9489), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9491), 1, + anon_sym_AMP_AMP, + ACTIONS(9493), 1, + anon_sym_PIPE, + ACTIONS(9495), 1, + anon_sym_CARET, + ACTIONS(9497), 1, + anon_sym_AMP, + ACTIONS(9509), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9485), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9499), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9501), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9503), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9505), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4470), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + sym_identifier, + [20021] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9479), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9487), 1, + anon_sym_SLASH, + ACTIONS(9489), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9491), 1, + anon_sym_AMP_AMP, + ACTIONS(9493), 1, + anon_sym_PIPE, + ACTIONS(9495), 1, + anon_sym_CARET, + ACTIONS(9497), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9485), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9499), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9501), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9503), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9505), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4484), 5, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + sym_identifier, + [20096] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9487), 1, + anon_sym_SLASH, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9485), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4025), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4027), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + sym_identifier, + [20151] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9487), 1, + anon_sym_SLASH, + ACTIONS(9491), 1, + anon_sym_AMP_AMP, + ACTIONS(9493), 1, + anon_sym_PIPE, + ACTIONS(9495), 1, + anon_sym_CARET, + ACTIONS(9497), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9485), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9499), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9501), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9503), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9505), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4027), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + sym_identifier, + [20222] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9487), 1, + anon_sym_SLASH, + ACTIONS(9493), 1, + anon_sym_PIPE, + ACTIONS(9495), 1, + anon_sym_CARET, + ACTIONS(9497), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9485), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9499), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9501), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9503), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9505), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4027), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + sym_identifier, + [20291] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4025), 1, + anon_sym_PIPE, + ACTIONS(9487), 1, + anon_sym_SLASH, + ACTIONS(9495), 1, + anon_sym_CARET, + ACTIONS(9497), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9485), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9499), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9501), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9503), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9505), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4027), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + sym_identifier, + [20360] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4025), 1, + anon_sym_PIPE, + ACTIONS(9487), 1, + anon_sym_SLASH, + ACTIONS(9497), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9485), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9499), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9501), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9503), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9505), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4027), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + sym_identifier, + [20427] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9479), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9487), 1, + anon_sym_SLASH, + ACTIONS(9489), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9491), 1, + anon_sym_AMP_AMP, + ACTIONS(9493), 1, + anon_sym_PIPE, + ACTIONS(9495), 1, + anon_sym_CARET, + ACTIONS(9497), 1, + anon_sym_AMP, + ACTIONS(9509), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9485), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9499), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9501), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9503), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9505), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9526), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + sym_identifier, + [20504] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9479), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9487), 1, + anon_sym_SLASH, + ACTIONS(9489), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9491), 1, + anon_sym_AMP_AMP, + ACTIONS(9493), 1, + anon_sym_PIPE, + ACTIONS(9495), 1, + anon_sym_CARET, + ACTIONS(9497), 1, + anon_sym_AMP, + ACTIONS(9509), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9485), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9499), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9501), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9503), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9505), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4476), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + sym_identifier, + [20581] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9487), 1, + anon_sym_SLASH, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4025), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9485), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9499), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9501), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9503), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9505), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4027), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + sym_identifier, + [20646] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9530), 1, + anon_sym_COMMA, + ACTIONS(9532), 1, + anon_sym_RPAREN, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + STATE(5475), 1, + aux_sym_attribute_repeat1, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [20726] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9560), 1, + anon_sym_COMMA, + ACTIONS(9562), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + STATE(5447), 1, + aux_sym_argument_list_repeat1, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [20806] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9560), 1, + anon_sym_COMMA, + ACTIONS(9564), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + STATE(5599), 1, + aux_sym_argument_list_repeat1, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [20886] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9566), 1, + anon_sym_COMMA, + ACTIONS(9568), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + STATE(5353), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [20966] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9530), 1, + anon_sym_COMMA, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9570), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + STATE(5322), 1, + aux_sym_attribute_repeat1, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21046] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9530), 1, + anon_sym_COMMA, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9572), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + STATE(5530), 1, + aux_sym_attribute_repeat1, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21126] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9566), 1, + anon_sym_COMMA, + ACTIONS(9574), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + STATE(5341), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21206] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9576), 1, + anon_sym_COMMA, + ACTIONS(9578), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + STATE(5355), 1, + aux_sym_availability_repeat1, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21286] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9477), 1, + sym_identifier, + ACTIONS(9487), 1, + anon_sym_SLASH, + ACTIONS(9489), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9491), 1, + anon_sym_AMP_AMP, + ACTIONS(9493), 1, + anon_sym_PIPE, + ACTIONS(9495), 1, + anon_sym_CARET, + ACTIONS(9497), 1, + anon_sym_AMP, + ACTIONS(9509), 1, + anon_sym_QMARK, + ACTIONS(9580), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9582), 1, + anon_sym_RBRACK, + STATE(1460), 1, + sym_argument_list, + STATE(5678), 1, + aux_sym_message_expression_repeat2, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9485), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9499), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9501), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9503), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9505), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21366] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9584), 1, + anon_sym_COMMA, + ACTIONS(9586), 1, + anon_sym_RBRACE, + STATE(1460), 1, + sym_argument_list, + STATE(5346), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21446] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9530), 1, + anon_sym_COMMA, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9588), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + STATE(5384), 1, + aux_sym_attribute_repeat1, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21526] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9530), 1, + anon_sym_COMMA, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9590), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + STATE(5416), 1, + aux_sym_attribute_repeat1, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21606] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9530), 1, + anon_sym_COMMA, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9592), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + STATE(5438), 1, + aux_sym_attribute_repeat1, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21686] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9530), 1, + anon_sym_COMMA, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9594), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + STATE(5454), 1, + aux_sym_attribute_repeat1, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21766] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9530), 1, + anon_sym_COMMA, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9596), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + STATE(5466), 1, + aux_sym_attribute_repeat1, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21846] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9530), 1, + anon_sym_COMMA, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9598), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + STATE(5483), 1, + aux_sym_attribute_repeat1, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21926] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9530), 1, + anon_sym_COMMA, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9600), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + STATE(5705), 1, + aux_sym_attribute_repeat1, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [22006] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9604), 2, + anon_sym_SEMI, + anon_sym_COLON, + [22084] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9606), 1, + anon_sym_COMMA, + ACTIONS(9608), 1, + anon_sym_RBRACE, + STATE(1460), 1, + sym_argument_list, + STATE(5687), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [22164] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9610), 1, + anon_sym_COLON, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [22241] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9612), 1, + anon_sym_SEMI, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [22318] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9614), 1, + anon_sym_COLON, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [22395] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9616), 1, + anon_sym_COMMA, + ACTIONS(9618), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [22472] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9620), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [22547] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9622), 1, + anon_sym_SEMI, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [22624] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9624), 1, + anon_sym_SEMI, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [22701] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9626), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [22776] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9628), 1, + anon_sym_SEMI, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [22853] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9630), 1, + anon_sym_SEMI, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [22930] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9632), 1, + anon_sym_SEMI, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [23007] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9616), 1, + anon_sym_COMMA, + ACTIONS(9634), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [23084] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9636), 1, + anon_sym_SEMI, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [23161] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9479), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9487), 1, + anon_sym_SLASH, + ACTIONS(9489), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9491), 1, + anon_sym_AMP_AMP, + ACTIONS(9493), 1, + anon_sym_PIPE, + ACTIONS(9495), 1, + anon_sym_CARET, + ACTIONS(9497), 1, + anon_sym_AMP, + ACTIONS(9638), 1, + anon_sym_RBRACK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4484), 2, + anon_sym_QMARK, + sym_identifier, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9485), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9499), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9501), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9503), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9505), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [23236] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9477), 1, + sym_identifier, + ACTIONS(9479), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9487), 1, + anon_sym_SLASH, + ACTIONS(9489), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9491), 1, + anon_sym_AMP_AMP, + ACTIONS(9493), 1, + anon_sym_PIPE, + ACTIONS(9495), 1, + anon_sym_CARET, + ACTIONS(9497), 1, + anon_sym_AMP, + ACTIONS(9509), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + STATE(5549), 1, + aux_sym_message_expression_repeat2, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9485), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9499), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9501), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9503), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9505), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [23313] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9640), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [23388] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9642), 1, + anon_sym_COLON, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [23465] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9644), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [23540] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9646), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [23615] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9648), 1, + anon_sym_SEMI, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [23692] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9616), 1, + anon_sym_COMMA, + ACTIONS(9650), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [23769] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9652), 1, + anon_sym_SEMI, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [23846] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9654), 1, + anon_sym_SEMI, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [23923] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9656), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [23998] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9658), 1, + anon_sym_SEMI, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [24075] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4470), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [24150] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4484), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, + [24223] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9538), 1, + anon_sym_SLASH, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4025), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4027), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_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, + [24276] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4027), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + [24345] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4027), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + [24412] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4025), 1, + anon_sym_PIPE, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4027), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + [24479] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4025), 1, + anon_sym_PIPE, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9548), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4027), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_QMARK, + [24544] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9538), 1, + anon_sym_SLASH, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4025), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4027), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_QMARK, + [24607] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9538), 1, + anon_sym_SLASH, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4025), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4027), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + [24668] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9538), 1, + anon_sym_SLASH, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4025), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4027), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, + [24725] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9538), 1, + anon_sym_SLASH, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4025), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4027), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_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, + [24780] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9660), 1, + anon_sym_SEMI, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [24857] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9477), 1, + sym_identifier, + ACTIONS(9479), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9487), 1, + anon_sym_SLASH, + ACTIONS(9489), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9491), 1, + anon_sym_AMP_AMP, + ACTIONS(9493), 1, + anon_sym_PIPE, + ACTIONS(9495), 1, + anon_sym_CARET, + ACTIONS(9497), 1, + anon_sym_AMP, + ACTIONS(9509), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + STATE(5678), 1, + aux_sym_message_expression_repeat2, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9485), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9499), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9501), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9503), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9505), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [24934] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4488), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25009] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9526), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25084] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4476), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25159] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9662), 1, + anon_sym_COLON, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25236] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9664), 1, + anon_sym_SEMI, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25313] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9666), 1, + anon_sym_COLON, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25390] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9668), 1, + anon_sym_SEMI, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25467] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9616), 1, + anon_sym_COMMA, + ACTIONS(9670), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25544] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9672), 1, + anon_sym_COLON, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25621] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9604), 1, + anon_sym_RPAREN, + ACTIONS(9616), 1, + anon_sym_COMMA, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25698] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9616), 1, + anon_sym_COMMA, + ACTIONS(9674), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25775] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9616), 1, + anon_sym_COMMA, + ACTIONS(9676), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25852] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9678), 1, + anon_sym_SEMI, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25929] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9616), 1, + anon_sym_COMMA, + ACTIONS(9680), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26006] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9526), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [26081] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9682), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [26156] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9684), 1, + anon_sym_DOT_DOT_DOT, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4442), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, + [26229] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4480), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, + [26302] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9687), 1, + anon_sym_COLON, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26379] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1632), 1, + aux_sym_selector_expression_repeat2, + ACTIONS(4029), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4031), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [26418] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9616), 1, + anon_sym_COMMA, + ACTIONS(9689), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26495] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9691), 1, + anon_sym_SEMI, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26572] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9693), 1, + anon_sym_SEMI, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26649] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9695), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [26724] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9697), 1, + anon_sym_COLON, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26801] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9699), 1, + anon_sym_COLON, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26878] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9701), 1, + anon_sym_SEMI, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26955] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9703), 1, + anon_sym_COLON, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27032] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9705), 1, + anon_sym_COLON, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27109] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9707), 1, + anon_sym_COLON, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27186] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + sym_primitive_type, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(3028), 1, + anon_sym_struct, + ACTIONS(4362), 1, + anon_sym_enum, + ACTIONS(9709), 1, + sym_identifier, + STATE(4294), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5750), 1, + sym_type_specifier, + ACTIONS(117), 3, + anon_sym___typeof__, + anon_sym___typeof, + anon_sym_typeof, + ACTIONS(9711), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(147), 5, + anon_sym_BOOL, + anon_sym_IMP, + anon_sym_SEL, + anon_sym_Class, + anon_sym_id, + STATE(2948), 9, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_typeof_specifier, + sym_generic_specifier, + sym_typedefed_specifier, + sym_array_type_specifier, + [27240] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9713), 1, + anon_sym_SEMI, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27314] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(8731), 1, + anon_sym_RBRACK, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27388] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9715), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27462] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9717), 1, + anon_sym_COLON, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27536] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9719), 1, + anon_sym_COLON, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27610] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9721), 1, + anon_sym_SEMI, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27684] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9723), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27758] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9725), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27832] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9727), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27906] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(8759), 1, + anon_sym_RBRACK, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27980] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9729), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28054] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9731), 1, + anon_sym_SEMI, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28128] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9733), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28202] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9735), 1, + anon_sym_COMMA, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28276] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9737), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28350] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9739), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28424] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9741), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28498] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(8681), 1, + anon_sym_RBRACK, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28572] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9743), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28646] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9745), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28720] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9747), 1, + anon_sym_RBRACK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28794] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9749), 1, + anon_sym_RBRACK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28868] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(8757), 1, + anon_sym_RBRACK, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28942] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9751), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29016] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9753), 1, + anon_sym_COLON, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29090] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(4484), 1, + anon_sym_QMARK, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9638), 1, + anon_sym_RBRACK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29164] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(8701), 1, + anon_sym_RBRACK, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29238] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9755), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29312] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9757), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29386] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(8685), 1, + anon_sym_RBRACK, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29460] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9759), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29534] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(8697), 1, + anon_sym_RBRACK, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29608] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + sym_primitive_type, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(3028), 1, + anon_sym_struct, + ACTIONS(4362), 1, + anon_sym_enum, + ACTIONS(9709), 1, + sym_identifier, + STATE(4294), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5872), 1, + sym_type_specifier, + ACTIONS(117), 3, + anon_sym___typeof__, + anon_sym___typeof, + anon_sym_typeof, + ACTIONS(9711), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(147), 5, + anon_sym_BOOL, + anon_sym_IMP, + anon_sym_SEL, + anon_sym_Class, + anon_sym_id, + STATE(2948), 9, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_typeof_specifier, + sym_generic_specifier, + sym_typedefed_specifier, + sym_array_type_specifier, + [29662] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9761), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29736] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(3028), 1, + anon_sym_struct, + ACTIONS(4362), 1, + anon_sym_enum, + ACTIONS(8977), 1, + sym_identifier, + ACTIONS(8981), 1, + sym_primitive_type, + STATE(4201), 1, + sym_type_specifier, + STATE(4220), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(117), 3, + anon_sym___typeof__, + anon_sym___typeof, + anon_sym_typeof, + ACTIONS(8979), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(147), 5, + anon_sym_BOOL, + anon_sym_IMP, + anon_sym_SEL, + anon_sym_Class, + anon_sym_id, + STATE(2948), 9, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_typeof_specifier, + sym_generic_specifier, + sym_typedefed_specifier, + sym_array_type_specifier, + [29790] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9763), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29864] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9765), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29938] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(8739), 1, + anon_sym_RBRACK, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30012] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(8705), 1, + anon_sym_RBRACK, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30086] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9767), 1, + anon_sym_SEMI, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30160] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9769), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30234] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9771), 1, + anon_sym_RBRACK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30308] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9773), 1, + anon_sym_SEMI, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30382] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9775), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30456] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9777), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30530] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9779), 1, + anon_sym_COLON, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30604] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9781), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30678] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9783), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30752] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + sym_primitive_type, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(3028), 1, + anon_sym_struct, + ACTIONS(4362), 1, + anon_sym_enum, + ACTIONS(9709), 1, + sym_identifier, + STATE(4294), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5817), 1, + sym_type_specifier, + ACTIONS(117), 3, + anon_sym___typeof__, + anon_sym___typeof, + anon_sym_typeof, + ACTIONS(9711), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(147), 5, + anon_sym_BOOL, + anon_sym_IMP, + anon_sym_SEL, + anon_sym_Class, + anon_sym_id, + STATE(2948), 9, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_typeof_specifier, + sym_generic_specifier, + sym_typedefed_specifier, + sym_array_type_specifier, + [30806] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9785), 1, + anon_sym_RBRACK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30880] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(8683), 1, + anon_sym_RBRACK, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30954] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(8743), 1, + anon_sym_RBRACK, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31028] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(6465), 1, + anon_sym_COMMA, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31102] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9787), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31176] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9789), 1, + anon_sym_COMMA, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31250] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9791), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31324] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9793), 1, + anon_sym_COLON, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31398] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9795), 1, + anon_sym_COLON, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31472] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(8709), 1, + anon_sym_RBRACK, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31546] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9797), 1, + anon_sym_SEMI, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31620] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9799), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31694] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9801), 1, + anon_sym_COLON, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31768] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9803), 1, + anon_sym_COMMA, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31842] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9805), 1, + anon_sym_RBRACK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31916] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9807), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31990] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(8737), 1, + anon_sym_RBRACK, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32064] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9809), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32138] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9811), 1, + anon_sym_COLON, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32212] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9813), 1, + anon_sym_COMMA, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32286] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + sym_primitive_type, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(3028), 1, + anon_sym_struct, + ACTIONS(4362), 1, + anon_sym_enum, + ACTIONS(9709), 1, + sym_identifier, + STATE(4294), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5731), 1, + sym_type_specifier, + ACTIONS(117), 3, + anon_sym___typeof__, + anon_sym___typeof, + anon_sym_typeof, + ACTIONS(9711), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(147), 5, + anon_sym_BOOL, + anon_sym_IMP, + anon_sym_SEL, + anon_sym_Class, + anon_sym_id, + STATE(2948), 9, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_typeof_specifier, + sym_generic_specifier, + sym_typedefed_specifier, + sym_array_type_specifier, + [32340] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(8733), 1, + anon_sym_RBRACK, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32414] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9582), 1, + anon_sym_RBRACK, + ACTIONS(9815), 1, + anon_sym_DOT_DOT_DOT, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32488] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9817), 1, + anon_sym_RBRACK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32562] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9538), 1, + anon_sym_SLASH, + ACTIONS(9540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9542), 1, + anon_sym_AMP_AMP, + ACTIONS(9544), 1, + anon_sym_PIPE, + ACTIONS(9546), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_AMP, + ACTIONS(9558), 1, + anon_sym_QMARK, + ACTIONS(9819), 1, + anon_sym_RPAREN, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9536), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9550), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9552), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32636] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9821), 1, + anon_sym_COMMA, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32710] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + ACTIONS(9823), 1, + anon_sym_SEMI, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32784] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(3028), 1, + anon_sym_struct, + ACTIONS(4362), 1, + anon_sym_enum, + ACTIONS(8977), 1, + sym_identifier, + ACTIONS(8981), 1, + sym_primitive_type, + STATE(4218), 1, + sym_type_specifier, + STATE(4220), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(117), 3, + anon_sym___typeof__, + anon_sym___typeof, + anon_sym_typeof, + ACTIONS(8979), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(147), 5, + anon_sym_BOOL, + anon_sym_IMP, + anon_sym_SEL, + anon_sym_Class, + anon_sym_id, + STATE(2948), 9, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_typeof_specifier, + sym_generic_specifier, + sym_typedefed_specifier, + sym_array_type_specifier, + [32838] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9442), 1, + anon_sym_SEMI, + ACTIONS(3995), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(3997), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [32875] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4846), 1, + anon_sym_SEMI, + ACTIONS(4234), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4236), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [32912] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_DOT, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9452), 1, + anon_sym_SLASH, + ACTIONS(9454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9456), 1, + anon_sym_AMP_AMP, + ACTIONS(9458), 1, + anon_sym_PIPE, + ACTIONS(9460), 1, + anon_sym_CARET, + ACTIONS(9462), 1, + anon_sym_AMP, + ACTIONS(9472), 1, + anon_sym_QMARK, + STATE(1460), 1, + sym_argument_list, + ACTIONS(4632), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9448), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9450), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9464), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9466), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9468), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32983] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(5330), 1, + anon_sym_LPAREN2, + ACTIONS(5332), 1, + anon_sym_STAR, + ACTIONS(5334), 1, + anon_sym_CARET, + ACTIONS(8078), 1, + anon_sym_LBRACK, + STATE(3073), 1, + sym__declarator, + STATE(4295), 1, + sym_parameter_list, + STATE(5088), 1, + sym__abstract_declarator, + STATE(6197), 1, + sym_ms_based_modifier, + ACTIONS(9825), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + STATE(4894), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_block_pointer_declarator, + [33035] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9829), 1, + anon_sym_LPAREN2, + STATE(4653), 1, + sym_preproc_argument_list, + ACTIONS(9831), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9827), 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, + [33069] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9833), 1, + sym_identifier, + ACTIONS(9835), 1, + anon_sym_RPAREN, + ACTIONS(9837), 1, + anon_sym_LPAREN2, + ACTIONS(9839), 1, + anon_sym_defined, + ACTIONS(9841), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9843), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9845), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9847), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4634), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [33113] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9833), 1, + sym_identifier, + ACTIONS(9837), 1, + anon_sym_LPAREN2, + ACTIONS(9839), 1, + anon_sym_defined, + ACTIONS(9849), 1, + anon_sym_RPAREN, + ACTIONS(9841), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9843), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9851), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9847), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4610), 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, + [33157] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9833), 1, + sym_identifier, + ACTIONS(9837), 1, + anon_sym_LPAREN2, + ACTIONS(9839), 1, + anon_sym_defined, + ACTIONS(9853), 1, + anon_sym_RPAREN, + ACTIONS(9841), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9843), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9855), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9847), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4616), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [33201] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9867), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4687), 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, + [33242] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(4310), 1, + anon_sym_enum, + ACTIONS(6493), 1, + sym_identifier, + ACTIONS(6495), 1, + anon_sym_LPAREN2, + ACTIONS(6497), 1, + anon_sym_STAR, + ACTIONS(6499), 1, + anon_sym_CARET, + ACTIONS(9871), 1, + anon_sym_SEMI, + ACTIONS(9873), 1, + anon_sym_COLON, + STATE(4829), 1, + sym__field_declarator, + STATE(4931), 1, + sym_enum_specifier, + STATE(5206), 1, + sym_bitfield_clause, + STATE(6162), 1, + sym_ms_based_modifier, + STATE(6223), 1, + sym_attribute_specifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(4955), 6, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_block_pointer_field_declarator, + [33297] = 5, + ACTIONS(9827), 1, + anon_sym_LF, + ACTIONS(9875), 1, + anon_sym_LPAREN2, + ACTIONS(9877), 1, + sym_comment, + STATE(4693), 1, + sym_preproc_argument_list, + ACTIONS(9831), 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, + [33330] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9879), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4711), 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, + [33371] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9881), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4692), 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, + [33412] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9883), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4673), 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, + [33453] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9885), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4674), 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, + [33494] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9887), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4675), 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, + [33535] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9889), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4696), 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, + [33576] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9891), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4679), 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, + [33617] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9893), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4680), 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, + [33658] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9895), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4681), 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, + [33699] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9897), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4682), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [33740] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9899), 1, + anon_sym_COMMA, + ACTIONS(9901), 1, + anon_sym_RPAREN, + ACTIONS(9907), 1, + anon_sym_SLASH, + ACTIONS(9909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9911), 1, + anon_sym_AMP_AMP, + ACTIONS(9913), 1, + anon_sym_PIPE, + ACTIONS(9915), 1, + anon_sym_CARET, + ACTIONS(9917), 1, + anon_sym_AMP, + STATE(5375), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(9903), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9905), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9919), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9921), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9923), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9925), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [33795] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9927), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4683), 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, + [33836] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9929), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4684), 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, + [33877] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9833), 1, + sym_identifier, + ACTIONS(9837), 1, + anon_sym_LPAREN2, + ACTIONS(9839), 1, + anon_sym_defined, + ACTIONS(9841), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9843), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9931), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9847), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4663), 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, + [33918] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9833), 1, + sym_identifier, + ACTIONS(9837), 1, + anon_sym_LPAREN2, + ACTIONS(9839), 1, + anon_sym_defined, + ACTIONS(9841), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9843), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9933), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9847), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4685), 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, + [33959] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9935), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4689), 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, + [34000] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9899), 1, + anon_sym_COMMA, + ACTIONS(9907), 1, + anon_sym_SLASH, + ACTIONS(9909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9911), 1, + anon_sym_AMP_AMP, + ACTIONS(9913), 1, + anon_sym_PIPE, + ACTIONS(9915), 1, + anon_sym_CARET, + ACTIONS(9917), 1, + anon_sym_AMP, + ACTIONS(9937), 1, + anon_sym_RPAREN, + STATE(5318), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(9903), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9905), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9919), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9921), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9923), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9925), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [34055] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(4310), 1, + anon_sym_enum, + ACTIONS(6493), 1, + sym_identifier, + ACTIONS(6495), 1, + anon_sym_LPAREN2, + ACTIONS(6497), 1, + anon_sym_STAR, + ACTIONS(6499), 1, + anon_sym_CARET, + ACTIONS(9873), 1, + anon_sym_COLON, + ACTIONS(9939), 1, + anon_sym_SEMI, + STATE(4823), 1, + sym__field_declarator, + STATE(4958), 1, + sym_enum_specifier, + STATE(5272), 1, + sym_bitfield_clause, + STATE(6159), 1, + sym_attribute_specifier, + STATE(6162), 1, + sym_ms_based_modifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(4955), 6, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_block_pointer_field_declarator, + [34110] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9833), 1, + sym_identifier, + ACTIONS(9837), 1, + anon_sym_LPAREN2, + ACTIONS(9839), 1, + anon_sym_defined, + ACTIONS(9841), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9843), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9941), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9847), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4661), 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, + [34151] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9943), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4697), 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, + [34192] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9945), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4694), 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, + [34233] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9947), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4708), 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, + [34274] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9949), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4700), 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, + [34315] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9951), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4691), 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, + [34356] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9953), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4690), 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, + [34397] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9955), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4686), 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, + [34438] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(4310), 1, + anon_sym_enum, + ACTIONS(6493), 1, + sym_identifier, + ACTIONS(6495), 1, + anon_sym_LPAREN2, + ACTIONS(6497), 1, + anon_sym_STAR, + ACTIONS(6499), 1, + anon_sym_CARET, + ACTIONS(9873), 1, + anon_sym_COLON, + ACTIONS(9957), 1, + anon_sym_SEMI, + STATE(4822), 1, + sym__field_declarator, + STATE(4953), 1, + sym_enum_specifier, + STATE(5287), 1, + sym_bitfield_clause, + STATE(6162), 1, + sym_ms_based_modifier, + STATE(6523), 1, + sym_attribute_specifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(4955), 6, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_block_pointer_field_declarator, + [34493] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9959), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4672), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [34534] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9961), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4706), 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, + [34575] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9963), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4702), 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, + [34616] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9965), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4710), 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, + [34657] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9967), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4678), 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, + [34698] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9969), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4688), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [34739] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9971), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4698), 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, + [34780] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9899), 1, + anon_sym_COMMA, + ACTIONS(9907), 1, + anon_sym_SLASH, + ACTIONS(9909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9911), 1, + anon_sym_AMP_AMP, + ACTIONS(9913), 1, + anon_sym_PIPE, + ACTIONS(9915), 1, + anon_sym_CARET, + ACTIONS(9917), 1, + anon_sym_AMP, + ACTIONS(9973), 1, + anon_sym_RPAREN, + STATE(5649), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(9903), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9905), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9919), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9921), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9923), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9925), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [34835] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9975), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4701), 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, + [34876] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9833), 1, + sym_identifier, + ACTIONS(9837), 1, + anon_sym_LPAREN2, + ACTIONS(9839), 1, + anon_sym_defined, + ACTIONS(9841), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9843), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9977), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9847), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4659), 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, + [34917] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9833), 1, + sym_identifier, + ACTIONS(9837), 1, + anon_sym_LPAREN2, + ACTIONS(9839), 1, + anon_sym_defined, + ACTIONS(9841), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9843), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9979), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9847), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4664), 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, + [34958] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9833), 1, + sym_identifier, + ACTIONS(9837), 1, + anon_sym_LPAREN2, + ACTIONS(9839), 1, + anon_sym_defined, + ACTIONS(9841), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9843), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9981), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9847), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4665), 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, + [34999] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9833), 1, + sym_identifier, + ACTIONS(9837), 1, + anon_sym_LPAREN2, + ACTIONS(9839), 1, + anon_sym_defined, + ACTIONS(9841), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9843), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9983), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9847), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4666), 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, + [35040] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9833), 1, + sym_identifier, + ACTIONS(9837), 1, + anon_sym_LPAREN2, + ACTIONS(9839), 1, + anon_sym_defined, + ACTIONS(9841), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9843), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9985), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9847), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4669), 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, + [35081] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9833), 1, + sym_identifier, + ACTIONS(9837), 1, + anon_sym_LPAREN2, + ACTIONS(9839), 1, + anon_sym_defined, + ACTIONS(9841), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9843), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9987), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9847), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4671), 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, + [35122] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9989), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4703), 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, + [35163] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9833), 1, + sym_identifier, + ACTIONS(9837), 1, + anon_sym_LPAREN2, + ACTIONS(9839), 1, + anon_sym_defined, + ACTIONS(9841), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9843), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9991), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9847), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4662), 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, + [35204] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9833), 1, + sym_identifier, + ACTIONS(9837), 1, + anon_sym_LPAREN2, + ACTIONS(9839), 1, + anon_sym_defined, + ACTIONS(9841), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9843), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9993), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9847), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4649), 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, + [35245] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9833), 1, + sym_identifier, + ACTIONS(9837), 1, + anon_sym_LPAREN2, + ACTIONS(9839), 1, + anon_sym_defined, + ACTIONS(9841), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9843), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9995), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9847), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4651), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [35286] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9833), 1, + sym_identifier, + ACTIONS(9837), 1, + anon_sym_LPAREN2, + ACTIONS(9839), 1, + anon_sym_defined, + ACTIONS(9841), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9843), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9997), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9847), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4655), 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, + [35327] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9833), 1, + sym_identifier, + ACTIONS(9837), 1, + anon_sym_LPAREN2, + ACTIONS(9839), 1, + anon_sym_defined, + ACTIONS(9841), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9843), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9999), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9847), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4705), 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, + [35368] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_defined, + ACTIONS(9863), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10001), 2, + sym_number_literal, + sym_system_lib_string, + ACTIONS(9869), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4699), 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, + [35409] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9907), 1, + anon_sym_SLASH, + ACTIONS(9903), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9905), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9921), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9923), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9925), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10005), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(10003), 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, + [35449] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10009), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10007), 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, + [35477] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9907), 1, + anon_sym_SLASH, + ACTIONS(9903), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9905), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9925), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10005), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10003), 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, + [35513] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10013), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10011), 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, + [35541] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10017), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10015), 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, + [35569] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10021), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10019), 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, + [35597] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9907), 1, + anon_sym_SLASH, + ACTIONS(9903), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9905), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10005), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10003), 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, + [35631] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(10023), 1, + sym_identifier, + ACTIONS(10025), 1, + sym_version_number, + ACTIONS(10027), 1, + anon_sym_COLON2, + STATE(4896), 1, + sym_string_literal, + STATE(5068), 1, + aux_sym_method_identifier_repeat1, + STATE(5504), 1, + sym_platform, + STATE(5813), 3, + sym_concatenated_string, + sym_version, + sym_method_identifier, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + ACTIONS(8457), 5, + anon_sym_ios, + anon_sym_tvos, + anon_sym_macos, + anon_sym_macosx, + anon_sym_watchos, + [35675] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(10025), 1, + sym_version_number, + ACTIONS(10027), 1, + anon_sym_COLON2, + ACTIONS(10029), 1, + sym_identifier, + STATE(4847), 1, + sym_string_literal, + STATE(5068), 1, + aux_sym_method_identifier_repeat1, + STATE(5504), 1, + sym_platform, + STATE(5489), 3, + sym_concatenated_string, + sym_version, + sym_method_identifier, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + ACTIONS(8457), 5, + anon_sym_ios, + anon_sym_tvos, + anon_sym_macos, + anon_sym_macosx, + anon_sym_watchos, + [35719] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10033), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10031), 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, + [35747] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9907), 1, + anon_sym_SLASH, + ACTIONS(9905), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10005), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10003), 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, + [35779] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10037), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10035), 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, + [35807] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10041), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10039), 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, + [35835] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9907), 1, + anon_sym_SLASH, + ACTIONS(9903), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9905), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9919), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9921), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9923), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9925), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10005), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(10003), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [35877] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9907), 1, + anon_sym_SLASH, + ACTIONS(9909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9911), 1, + anon_sym_AMP_AMP, + ACTIONS(9913), 1, + anon_sym_PIPE, + ACTIONS(9915), 1, + anon_sym_CARET, + ACTIONS(9917), 1, + anon_sym_AMP, + ACTIONS(9903), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9905), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9919), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9921), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9923), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9925), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10043), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [35927] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10005), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10003), 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, + [35955] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9907), 1, + anon_sym_SLASH, + ACTIONS(9911), 1, + anon_sym_AMP_AMP, + ACTIONS(9913), 1, + anon_sym_PIPE, + ACTIONS(9915), 1, + anon_sym_CARET, + ACTIONS(9917), 1, + anon_sym_AMP, + ACTIONS(9903), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9905), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9919), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9921), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9923), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9925), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10003), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [36003] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9907), 1, + anon_sym_SLASH, + ACTIONS(9913), 1, + anon_sym_PIPE, + ACTIONS(9915), 1, + anon_sym_CARET, + ACTIONS(9917), 1, + anon_sym_AMP, + ACTIONS(9903), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9905), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9919), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9921), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9923), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9925), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10003), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [36049] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(10025), 1, + sym_version_number, + ACTIONS(10027), 1, + anon_sym_COLON2, + ACTIONS(10045), 1, + sym_identifier, + STATE(4849), 1, + sym_string_literal, + STATE(5068), 1, + aux_sym_method_identifier_repeat1, + STATE(5504), 1, + sym_platform, + STATE(5565), 3, + sym_concatenated_string, + sym_version, + sym_method_identifier, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + ACTIONS(8457), 5, + anon_sym_ios, + anon_sym_tvos, + anon_sym_macos, + anon_sym_macosx, + anon_sym_watchos, + [36093] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10049), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10047), 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, + [36121] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9907), 1, + anon_sym_SLASH, + ACTIONS(9915), 1, + anon_sym_CARET, + ACTIONS(9917), 1, + anon_sym_AMP, + ACTIONS(10005), 1, + anon_sym_PIPE, + ACTIONS(9903), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9905), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9919), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9921), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9923), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9925), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10003), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [36167] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4136), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4138), 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, + [36195] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9907), 1, + anon_sym_SLASH, + ACTIONS(9917), 1, + anon_sym_AMP, + ACTIONS(10005), 1, + anon_sym_PIPE, + ACTIONS(9903), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9905), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9919), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9921), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9923), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9925), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10003), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [36239] = 12, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10051), 1, + anon_sym_LF, + ACTIONS(10057), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10059), 1, + anon_sym_AMP_AMP, + ACTIONS(10061), 1, + anon_sym_PIPE, + ACTIONS(10063), 1, + anon_sym_CARET, + ACTIONS(10065), 1, + anon_sym_AMP, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10067), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10069), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [36284] = 12, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10003), 1, + anon_sym_LF, + ACTIONS(10005), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10059), 1, + anon_sym_AMP_AMP, + ACTIONS(10061), 1, + anon_sym_PIPE, + ACTIONS(10063), 1, + anon_sym_CARET, + ACTIONS(10065), 1, + anon_sym_AMP, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10067), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10069), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [36329] = 11, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10003), 1, + anon_sym_LF, + ACTIONS(10061), 1, + anon_sym_PIPE, + ACTIONS(10063), 1, + anon_sym_CARET, + ACTIONS(10065), 1, + anon_sym_AMP, + ACTIONS(10005), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10067), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10069), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [36372] = 10, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10003), 1, + anon_sym_LF, + ACTIONS(10063), 1, + anon_sym_CARET, + ACTIONS(10065), 1, + anon_sym_AMP, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10067), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10005), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10069), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [36413] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10031), 1, + anon_sym_LF, + ACTIONS(10033), 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, + [36440] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10011), 1, + anon_sym_LF, + ACTIONS(10013), 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, + [36467] = 12, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10057), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10059), 1, + anon_sym_AMP_AMP, + ACTIONS(10061), 1, + anon_sym_PIPE, + ACTIONS(10063), 1, + anon_sym_CARET, + ACTIONS(10065), 1, + anon_sym_AMP, + ACTIONS(10073), 1, + anon_sym_LF, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10067), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10069), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [36512] = 9, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10003), 1, + anon_sym_LF, + ACTIONS(10065), 1, + anon_sym_AMP, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10067), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10005), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(10069), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [36551] = 8, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10003), 1, + anon_sym_LF, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10067), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10069), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10005), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + [36588] = 7, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10003), 1, + anon_sym_LF, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10069), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10005), 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [36623] = 6, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10003), 1, + anon_sym_LF, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10005), 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [36656] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10003), 1, + anon_sym_LF, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10005), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [36687] = 12, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10057), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10059), 1, + anon_sym_AMP_AMP, + ACTIONS(10061), 1, + anon_sym_PIPE, + ACTIONS(10063), 1, + anon_sym_CARET, + ACTIONS(10065), 1, + anon_sym_AMP, + ACTIONS(10075), 1, + anon_sym_LF, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10067), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10069), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [36732] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9907), 1, + anon_sym_SLASH, + ACTIONS(9909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9911), 1, + anon_sym_AMP_AMP, + ACTIONS(9913), 1, + anon_sym_PIPE, + ACTIONS(9915), 1, + anon_sym_CARET, + ACTIONS(9917), 1, + anon_sym_AMP, + ACTIONS(10077), 1, + anon_sym_RPAREN, + ACTIONS(9903), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9905), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9919), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9921), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9923), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9925), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [36781] = 12, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10057), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10059), 1, + anon_sym_AMP_AMP, + ACTIONS(10061), 1, + anon_sym_PIPE, + ACTIONS(10063), 1, + anon_sym_CARET, + ACTIONS(10065), 1, + anon_sym_AMP, + ACTIONS(10079), 1, + anon_sym_LF, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10067), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10069), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [36826] = 12, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10057), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10059), 1, + anon_sym_AMP_AMP, + ACTIONS(10061), 1, + anon_sym_PIPE, + ACTIONS(10063), 1, + anon_sym_CARET, + ACTIONS(10065), 1, + anon_sym_AMP, + ACTIONS(10081), 1, + anon_sym_LF, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10067), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10069), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [36871] = 12, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10057), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10059), 1, + anon_sym_AMP_AMP, + ACTIONS(10061), 1, + anon_sym_PIPE, + ACTIONS(10063), 1, + anon_sym_CARET, + ACTIONS(10065), 1, + anon_sym_AMP, + ACTIONS(10083), 1, + anon_sym_LF, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10067), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10069), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [36916] = 12, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10057), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10059), 1, + anon_sym_AMP_AMP, + ACTIONS(10061), 1, + anon_sym_PIPE, + ACTIONS(10063), 1, + anon_sym_CARET, + ACTIONS(10065), 1, + anon_sym_AMP, + ACTIONS(10085), 1, + anon_sym_LF, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10067), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10069), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [36961] = 12, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10057), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10059), 1, + anon_sym_AMP_AMP, + ACTIONS(10061), 1, + anon_sym_PIPE, + ACTIONS(10063), 1, + anon_sym_CARET, + ACTIONS(10065), 1, + anon_sym_AMP, + ACTIONS(10087), 1, + anon_sym_LF, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10067), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10069), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [37006] = 12, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10057), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10059), 1, + anon_sym_AMP_AMP, + ACTIONS(10061), 1, + anon_sym_PIPE, + ACTIONS(10063), 1, + anon_sym_CARET, + ACTIONS(10065), 1, + anon_sym_AMP, + ACTIONS(10089), 1, + anon_sym_LF, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10067), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10069), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [37051] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10003), 1, + anon_sym_LF, + ACTIONS(10005), 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, + [37078] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10015), 1, + anon_sym_LF, + ACTIONS(10017), 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, + [37105] = 12, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10057), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10059), 1, + anon_sym_AMP_AMP, + ACTIONS(10061), 1, + anon_sym_PIPE, + ACTIONS(10063), 1, + anon_sym_CARET, + ACTIONS(10065), 1, + anon_sym_AMP, + ACTIONS(10091), 1, + anon_sym_LF, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10067), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10069), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [37150] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10019), 1, + anon_sym_LF, + ACTIONS(10021), 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, + [37177] = 12, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10057), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10059), 1, + anon_sym_AMP_AMP, + ACTIONS(10061), 1, + anon_sym_PIPE, + ACTIONS(10063), 1, + anon_sym_CARET, + ACTIONS(10065), 1, + anon_sym_AMP, + ACTIONS(10093), 1, + anon_sym_LF, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10067), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10069), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [37222] = 12, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10057), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10059), 1, + anon_sym_AMP_AMP, + ACTIONS(10061), 1, + anon_sym_PIPE, + ACTIONS(10063), 1, + anon_sym_CARET, + ACTIONS(10065), 1, + anon_sym_AMP, + ACTIONS(10095), 1, + anon_sym_LF, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10067), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10069), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [37267] = 12, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10057), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10059), 1, + anon_sym_AMP_AMP, + ACTIONS(10061), 1, + anon_sym_PIPE, + ACTIONS(10063), 1, + anon_sym_CARET, + ACTIONS(10065), 1, + anon_sym_AMP, + ACTIONS(10097), 1, + anon_sym_LF, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10067), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10069), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [37312] = 12, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10057), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10059), 1, + anon_sym_AMP_AMP, + ACTIONS(10061), 1, + anon_sym_PIPE, + ACTIONS(10063), 1, + anon_sym_CARET, + ACTIONS(10065), 1, + anon_sym_AMP, + ACTIONS(10099), 1, + anon_sym_LF, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10067), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10069), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [37357] = 12, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10057), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10059), 1, + anon_sym_AMP_AMP, + ACTIONS(10061), 1, + anon_sym_PIPE, + ACTIONS(10063), 1, + anon_sym_CARET, + ACTIONS(10065), 1, + anon_sym_AMP, + ACTIONS(10101), 1, + anon_sym_LF, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10067), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10069), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [37402] = 12, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10057), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10059), 1, + anon_sym_AMP_AMP, + ACTIONS(10061), 1, + anon_sym_PIPE, + ACTIONS(10063), 1, + anon_sym_CARET, + ACTIONS(10065), 1, + anon_sym_AMP, + ACTIONS(10103), 1, + anon_sym_LF, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10067), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10069), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [37447] = 12, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10057), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10059), 1, + anon_sym_AMP_AMP, + ACTIONS(10061), 1, + anon_sym_PIPE, + ACTIONS(10063), 1, + anon_sym_CARET, + ACTIONS(10065), 1, + anon_sym_AMP, + ACTIONS(10105), 1, + anon_sym_LF, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10067), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10069), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [37492] = 12, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10057), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10059), 1, + anon_sym_AMP_AMP, + ACTIONS(10061), 1, + anon_sym_PIPE, + ACTIONS(10063), 1, + anon_sym_CARET, + ACTIONS(10065), 1, + anon_sym_AMP, + ACTIONS(10107), 1, + anon_sym_LF, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10067), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10069), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [37537] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10007), 1, + anon_sym_LF, + ACTIONS(10009), 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, + [37564] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9907), 1, + anon_sym_SLASH, + ACTIONS(9909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9911), 1, + anon_sym_AMP_AMP, + ACTIONS(9913), 1, + anon_sym_PIPE, + ACTIONS(9915), 1, + anon_sym_CARET, + ACTIONS(9917), 1, + anon_sym_AMP, + ACTIONS(10109), 1, + anon_sym_RPAREN, + ACTIONS(9903), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9905), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9919), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9921), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9923), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9925), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [37613] = 12, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10057), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10059), 1, + anon_sym_AMP_AMP, + ACTIONS(10061), 1, + anon_sym_PIPE, + ACTIONS(10063), 1, + anon_sym_CARET, + ACTIONS(10065), 1, + anon_sym_AMP, + ACTIONS(10111), 1, + anon_sym_LF, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10067), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10069), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [37658] = 3, + ACTIONS(4138), 1, + anon_sym_LF, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(4136), 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, + [37685] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10039), 1, + anon_sym_LF, + ACTIONS(10041), 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, + [37712] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10035), 1, + anon_sym_LF, + ACTIONS(10037), 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, + [37739] = 12, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10057), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10059), 1, + anon_sym_AMP_AMP, + ACTIONS(10061), 1, + anon_sym_PIPE, + ACTIONS(10063), 1, + anon_sym_CARET, + ACTIONS(10065), 1, + anon_sym_AMP, + ACTIONS(10113), 1, + anon_sym_LF, + ACTIONS(10053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10067), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10069), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [37784] = 4, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10003), 1, + anon_sym_LF, + ACTIONS(10055), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10005), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [37813] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10047), 1, + anon_sym_LF, + ACTIONS(10049), 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, + [37840] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6158), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [37884] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6524), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [37928] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6525), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [37972] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6528), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [38016] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6612), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [38060] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6614), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [38104] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6635), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [38148] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6621), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [38192] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6613), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [38236] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(5916), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [38280] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(5925), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [38324] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(5928), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [38368] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6477), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [38412] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6488), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [38456] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6496), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [38500] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6693), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [38544] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6744), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [38588] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(5926), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [38632] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6252), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [38676] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6724), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [38720] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6309), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [38764] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6317), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [38808] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6322), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [38852] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6429), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [38896] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6441), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [38940] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6445), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [38984] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6469), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [39028] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6475), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [39072] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6497), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [39116] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6630), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [39160] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6712), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [39204] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6722), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [39248] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6730), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [39292] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6400), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [39336] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(5901), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [39380] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(5902), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [39424] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(5913), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [39468] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(5914), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [39512] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(5917), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [39556] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(5962), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [39600] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(5986), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [39644] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(5987), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [39688] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(5990), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [39732] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6006), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [39776] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6012), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [39820] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6015), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [39864] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6020), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [39908] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6023), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [39952] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6028), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [39996] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6056), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [40040] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6077), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [40084] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6078), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [40128] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6080), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [40172] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6101), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [40216] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6102), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [40260] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6105), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [40304] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6111), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [40348] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6113), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [40392] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6115), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [40436] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6128), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [40480] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6140), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [40524] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6142), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [40568] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6442), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [40612] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6150), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [40656] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6152), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [40700] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6154), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [40744] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6157), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [40788] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6725), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [40832] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6160), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [40876] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6218), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [40920] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6498), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [40964] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6097), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [41008] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6116), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [41052] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6161), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [41096] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6054), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [41140] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6057), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [41184] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6065), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [41228] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6504), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [41272] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6718), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [41316] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6586), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [41360] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6506), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [41404] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6517), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [41448] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6519), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [41492] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6526), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [41536] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6738), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [41580] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6344), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [41624] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(5918), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [41668] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(5919), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [41712] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6328), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [41756] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6027), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [41800] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6619), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [41844] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6305), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [41888] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6664), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [41932] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6433), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [41976] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6674), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [42020] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6687), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [42064] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6434), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [42108] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6435), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [42152] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + STATE(6620), 1, + sym__type_definition_declarators, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [42196] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3046), 1, + sym__type_declarator, + STATE(6143), 1, + sym__type_definition_declarators, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [42240] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_LPAREN2, + ACTIONS(5648), 1, + sym_primitive_type, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5652), 1, + anon_sym_CARET, + STATE(3290), 1, + sym__type_declarator, + STATE(6443), 1, + sym_ms_based_modifier, + ACTIONS(5646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3277), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_pointer_type_declarator, + [42281] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4496), 1, + anon_sym_LPAREN2, + ACTIONS(6953), 1, + anon_sym_STAR, + ACTIONS(6955), 1, + anon_sym_CARET, + ACTIONS(8078), 1, + anon_sym_LBRACK, + ACTIONS(10117), 1, + anon_sym___attribute, + STATE(4315), 1, + sym_parameter_list, + STATE(5015), 1, + sym__abstract_declarator, + ACTIONS(10115), 3, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + STATE(4894), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_block_pointer_declarator, + [42318] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(4310), 1, + anon_sym_enum, + ACTIONS(6493), 1, + sym_identifier, + ACTIONS(6495), 1, + anon_sym_LPAREN2, + ACTIONS(6497), 1, + anon_sym_STAR, + ACTIONS(6499), 1, + anon_sym_CARET, + STATE(4857), 1, + sym__field_declarator, + STATE(5031), 1, + sym_enum_specifier, + STATE(6162), 1, + sym_ms_based_modifier, + STATE(4955), 6, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_block_pointer_field_declarator, + [42357] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + ACTIONS(8497), 1, + anon_sym_COLON, + STATE(3267), 1, + sym__declarator, + STATE(3308), 1, + sym_struct_declarator, + STATE(6197), 1, + sym_ms_based_modifier, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + [42395] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4496), 1, + anon_sym_LPAREN2, + ACTIONS(4498), 1, + anon_sym_STAR, + ACTIONS(4500), 1, + anon_sym_CARET, + ACTIONS(8078), 1, + anon_sym_LBRACK, + STATE(4295), 1, + sym_parameter_list, + STATE(5044), 1, + sym__abstract_declarator, + ACTIONS(10115), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + STATE(4894), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_block_pointer_declarator, + [42429] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3022), 1, + anon_sym_LBRACK, + ACTIONS(7079), 1, + sym_identifier, + ACTIONS(7087), 1, + anon_sym_COLON, + ACTIONS(7580), 1, + anon_sym_LPAREN2, + STATE(4851), 1, + sym_method_type, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(2912), 2, + sym_method_parameter, + aux_sym_method_declaration_repeat1, + STATE(3247), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + STATE(5079), 2, + sym_attribute_specifier, + sym_attribute_declaration, + [42464] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(4490), 1, + anon_sym_LPAREN2, + ACTIONS(4492), 1, + anon_sym_STAR, + ACTIONS(4494), 1, + anon_sym_CARET, + ACTIONS(5281), 1, + sym_identifier, + STATE(1898), 1, + sym__old_style_function_declarator, + STATE(5010), 1, + sym__declarator, + STATE(6199), 1, + sym_ms_based_modifier, + STATE(4011), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + [42499] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(103), 1, + anon_sym___asm, + ACTIONS(6865), 1, + anon_sym___attribute__, + STATE(4902), 1, + sym_gnu_asm_expression, + ACTIONS(6914), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4909), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6577), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + [42530] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(10119), 1, + anon_sym_COMMA, + ACTIONS(10121), 1, + anon_sym_RPAREN, + ACTIONS(10123), 1, + anon_sym_LPAREN2, + ACTIONS(10125), 1, + anon_sym_COLON2, + STATE(1924), 1, + sym_string_literal, + STATE(5035), 1, + aux_sym_method_identifier_repeat1, + STATE(5471), 1, + aux_sym_availability_attribute_specifier_repeat1, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [42565] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(9873), 1, + anon_sym_COLON, + ACTIONS(10127), 1, + anon_sym_COMMA, + ACTIONS(10129), 1, + anon_sym_SEMI, + ACTIONS(10131), 1, + anon_sym_LBRACK, + STATE(4303), 1, + sym_parameter_list, + STATE(4911), 1, + aux_sym_field_declaration_repeat1, + STATE(4963), 1, + sym_bitfield_clause, + STATE(6650), 1, + sym_attribute_specifier, + STATE(4859), 2, + sym_attribute_declaration, + aux_sym_attributed_field_declarator_repeat1, + [42606] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(9873), 1, + anon_sym_COLON, + ACTIONS(10127), 1, + anon_sym_COMMA, + ACTIONS(10131), 1, + anon_sym_LBRACK, + ACTIONS(10133), 1, + anon_sym_SEMI, + STATE(4303), 1, + sym_parameter_list, + STATE(4935), 1, + sym_bitfield_clause, + STATE(4936), 1, + aux_sym_field_declaration_repeat1, + STATE(6430), 1, + sym_attribute_specifier, + STATE(4859), 2, + sym_attribute_declaration, + aux_sym_attributed_field_declarator_repeat1, + [42647] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + STATE(2833), 1, + sym_init_declarator, + STATE(3261), 1, + sym__declarator, + STATE(6197), 1, + sym_ms_based_modifier, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + [42682] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(4490), 1, + anon_sym_LPAREN2, + ACTIONS(4492), 1, + anon_sym_STAR, + ACTIONS(4494), 1, + anon_sym_CARET, + ACTIONS(5281), 1, + sym_identifier, + STATE(1899), 1, + sym__old_style_function_declarator, + STATE(5008), 1, + sym__declarator, + STATE(6199), 1, + sym_ms_based_modifier, + STATE(4011), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + [42717] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_CARET, + STATE(3249), 1, + sym__declarator, + STATE(3300), 1, + sym_init_declarator, + STATE(6197), 1, + sym_ms_based_modifier, + STATE(3076), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + [42752] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(10119), 1, + anon_sym_COMMA, + ACTIONS(10125), 1, + anon_sym_COLON2, + ACTIONS(10135), 1, + anon_sym_RPAREN, + ACTIONS(10137), 1, + anon_sym_LPAREN2, + STATE(1924), 1, + sym_string_literal, + STATE(5035), 1, + aux_sym_method_identifier_repeat1, + STATE(5623), 1, + aux_sym_availability_attribute_specifier_repeat1, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [42787] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(6567), 1, + sym_identifier, + ACTIONS(6569), 1, + anon_sym_LPAREN2, + ACTIONS(6571), 1, + anon_sym_STAR, + ACTIONS(6573), 1, + anon_sym_CARET, + STATE(2683), 1, + sym__declarator, + STATE(2812), 1, + sym_init_declarator, + STATE(6315), 1, + sym_ms_based_modifier, + STATE(2792), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + [42822] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(9873), 1, + anon_sym_COLON, + ACTIONS(10127), 1, + anon_sym_COMMA, + ACTIONS(10131), 1, + anon_sym_LBRACK, + ACTIONS(10139), 1, + anon_sym_SEMI, + STATE(4303), 1, + sym_parameter_list, + STATE(4920), 1, + aux_sym_field_declaration_repeat1, + STATE(4969), 1, + sym_bitfield_clause, + STATE(6581), 1, + sym_attribute_specifier, + STATE(4859), 2, + sym_attribute_declaration, + aux_sym_attributed_field_declarator_repeat1, + [42863] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(4490), 1, + anon_sym_LPAREN2, + ACTIONS(4492), 1, + anon_sym_STAR, + ACTIONS(4494), 1, + anon_sym_CARET, + ACTIONS(5281), 1, + sym_identifier, + STATE(1907), 1, + sym__old_style_function_declarator, + STATE(4989), 1, + sym__declarator, + STATE(6199), 1, + sym_ms_based_modifier, + STATE(4011), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + [42898] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3022), 1, + anon_sym_LBRACK, + ACTIONS(7079), 1, + sym_identifier, + ACTIONS(7087), 1, + anon_sym_COLON, + ACTIONS(7580), 1, + anon_sym_LPAREN2, + STATE(4856), 1, + sym_method_type, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(2909), 2, + sym_method_parameter, + aux_sym_method_declaration_repeat1, + STATE(3247), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + STATE(5028), 2, + sym_attribute_specifier, + sym_attribute_declaration, + [42933] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3022), 1, + anon_sym_LBRACK, + ACTIONS(7079), 1, + sym_identifier, + ACTIONS(7087), 1, + anon_sym_COLON, + ACTIONS(7580), 1, + anon_sym_LPAREN2, + STATE(4846), 1, + sym_method_type, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(2893), 2, + sym_method_parameter, + aux_sym_method_declaration_repeat1, + STATE(3247), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + STATE(5059), 2, + sym_attribute_specifier, + sym_attribute_declaration, + [42968] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(4490), 1, + anon_sym_LPAREN2, + ACTIONS(4492), 1, + anon_sym_STAR, + ACTIONS(4494), 1, + anon_sym_CARET, + ACTIONS(5281), 1, + sym_identifier, + STATE(1912), 1, + sym__old_style_function_declarator, + STATE(5021), 1, + sym__declarator, + STATE(6199), 1, + sym_ms_based_modifier, + STATE(4011), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + [43003] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(6567), 1, + sym_identifier, + ACTIONS(6569), 1, + anon_sym_LPAREN2, + ACTIONS(6571), 1, + anon_sym_STAR, + ACTIONS(6573), 1, + anon_sym_CARET, + STATE(2696), 1, + sym__declarator, + STATE(2833), 1, + sym_init_declarator, + STATE(6315), 1, + sym_ms_based_modifier, + STATE(2792), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + [43038] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(4490), 1, + anon_sym_LPAREN2, + ACTIONS(4492), 1, + anon_sym_STAR, + ACTIONS(4494), 1, + anon_sym_CARET, + ACTIONS(5281), 1, + sym_identifier, + STATE(1888), 1, + sym__old_style_function_declarator, + STATE(4985), 1, + sym__declarator, + STATE(6199), 1, + sym_ms_based_modifier, + STATE(4011), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + [43073] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(10125), 1, + anon_sym_COLON2, + ACTIONS(10143), 1, + anon_sym_LPAREN2, + STATE(1924), 1, + sym_string_literal, + STATE(5035), 1, + aux_sym_method_identifier_repeat1, + ACTIONS(10141), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [43103] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(4490), 1, + anon_sym_LPAREN2, + ACTIONS(4492), 1, + anon_sym_STAR, + ACTIONS(4494), 1, + anon_sym_CARET, + ACTIONS(5281), 1, + sym_identifier, + STATE(5043), 1, + sym__declarator, + STATE(6199), 1, + sym_ms_based_modifier, + STATE(4011), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + [43135] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(4490), 1, + anon_sym_LPAREN2, + ACTIONS(4492), 1, + anon_sym_STAR, + ACTIONS(4494), 1, + anon_sym_CARET, + ACTIONS(5281), 1, + sym_identifier, + STATE(5052), 1, + sym__declarator, + STATE(6199), 1, + sym_ms_based_modifier, + STATE(4011), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + [43167] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(4490), 1, + anon_sym_LPAREN2, + ACTIONS(4492), 1, + anon_sym_STAR, + ACTIONS(4494), 1, + anon_sym_CARET, + ACTIONS(5281), 1, + sym_identifier, + STATE(5030), 1, + sym__declarator, + STATE(6199), 1, + sym_ms_based_modifier, + STATE(4011), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + [43199] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(4490), 1, + anon_sym_LPAREN2, + ACTIONS(4492), 1, + anon_sym_STAR, + ACTIONS(4494), 1, + anon_sym_CARET, + ACTIONS(5281), 1, + sym_identifier, + STATE(5075), 1, + sym__declarator, + STATE(6199), 1, + sym_ms_based_modifier, + STATE(4011), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + [43231] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(10145), 1, + sym_identifier, + STATE(2071), 1, + sym_string_literal, + ACTIONS(10147), 2, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(5184), 2, + sym__string, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [43259] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(4490), 1, + anon_sym_LPAREN2, + ACTIONS(4492), 1, + anon_sym_STAR, + ACTIONS(4494), 1, + anon_sym_CARET, + ACTIONS(5281), 1, + sym_identifier, + STATE(5034), 1, + sym__declarator, + STATE(6199), 1, + sym_ms_based_modifier, + STATE(4011), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + [43291] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(4490), 1, + anon_sym_LPAREN2, + ACTIONS(4492), 1, + anon_sym_STAR, + ACTIONS(4494), 1, + anon_sym_CARET, + ACTIONS(5281), 1, + sym_identifier, + STATE(5055), 1, + sym__declarator, + STATE(6199), 1, + sym_ms_based_modifier, + STATE(4011), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + [43323] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(4490), 1, + anon_sym_LPAREN2, + ACTIONS(4492), 1, + anon_sym_STAR, + ACTIONS(4494), 1, + anon_sym_CARET, + ACTIONS(5281), 1, + sym_identifier, + STATE(5050), 1, + sym__declarator, + STATE(6199), 1, + sym_ms_based_modifier, + STATE(4011), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + [43355] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym___based, + ACTIONS(4490), 1, + anon_sym_LPAREN2, + ACTIONS(4492), 1, + anon_sym_STAR, + ACTIONS(4494), 1, + anon_sym_CARET, + ACTIONS(5281), 1, + sym_identifier, + STATE(5041), 1, + sym__declarator, + STATE(6199), 1, + sym_ms_based_modifier, + STATE(4011), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_pointer_declarator, + [43387] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3022), 1, + anon_sym_LBRACK, + ACTIONS(7079), 1, + sym_identifier, + ACTIONS(7087), 1, + anon_sym_COLON, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(2897), 2, + sym_method_parameter, + aux_sym_method_declaration_repeat1, + STATE(3247), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + STATE(5045), 2, + sym_attribute_specifier, + sym_attribute_declaration, + [43416] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(5240), 1, + sym_identifier, + ACTIONS(10119), 1, + anon_sym_COMMA, + ACTIONS(10121), 1, + anon_sym_RPAREN, + STATE(1924), 1, + sym_string_literal, + STATE(5471), 1, + aux_sym_availability_attribute_specifier_repeat1, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [43445] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8457), 1, + anon_sym_macos, + ACTIONS(10025), 1, + sym_version_number, + ACTIONS(10149), 1, + anon_sym_COMMA, + ACTIONS(10151), 1, + anon_sym_RPAREN, + STATE(5504), 1, + sym_platform, + STATE(5518), 1, + aux_sym_available_expression_repeat1, + STATE(5526), 1, + sym_version, + ACTIONS(10153), 4, + anon_sym_ios, + anon_sym_tvos, + anon_sym_macosx, + anon_sym_watchos, + [43476] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(5240), 1, + sym_identifier, + ACTIONS(10119), 1, + anon_sym_COMMA, + ACTIONS(10135), 1, + anon_sym_RPAREN, + STATE(1924), 1, + sym_string_literal, + STATE(5623), 1, + aux_sym_availability_attribute_specifier_repeat1, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [43505] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10157), 1, + anon_sym_LBRACK, + ACTIONS(10159), 1, + anon_sym_AT, + STATE(5290), 1, + sym_gnu_asm_output_operand, + STATE(6562), 1, + sym_string_literal, + ACTIONS(10155), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [43532] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3022), 1, + anon_sym_LBRACK, + ACTIONS(7079), 1, + sym_identifier, + ACTIONS(7087), 1, + anon_sym_COLON, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(2918), 2, + sym_method_parameter, + aux_sym_method_declaration_repeat1, + STATE(3247), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + STATE(5054), 2, + sym_attribute_specifier, + sym_attribute_declaration, + [43561] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10161), 1, + sym_identifier, + ACTIONS(10163), 1, + aux_sym_preproc_if_token2, + ACTIONS(10165), 1, + aux_sym_preproc_else_token1, + ACTIONS(10167), 1, + aux_sym_preproc_elif_token1, + STATE(4853), 1, + aux_sym_preproc_ifdef_in_enumerator_repeat1, + STATE(6283), 1, + sym_enumerator, + ACTIONS(10169), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(6282), 3, + sym_preproc_elifdef, + sym_preproc_else_in_enumerator, + sym_preproc_elif_in_enumerator, + [43592] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10161), 1, + sym_identifier, + ACTIONS(10165), 1, + aux_sym_preproc_else_token1, + ACTIONS(10167), 1, + aux_sym_preproc_elif_token1, + ACTIONS(10171), 1, + aux_sym_preproc_if_token2, + STATE(4970), 1, + aux_sym_preproc_ifdef_in_enumerator_repeat1, + STATE(6283), 1, + sym_enumerator, + ACTIONS(10169), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(6345), 3, + sym_preproc_elifdef, + sym_preproc_else_in_enumerator, + sym_preproc_elif_in_enumerator, + [43623] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8457), 1, + anon_sym_macos, + ACTIONS(10025), 1, + sym_version_number, + ACTIONS(10149), 1, + anon_sym_COMMA, + ACTIONS(10173), 1, + anon_sym_RPAREN, + STATE(5504), 1, + sym_platform, + STATE(5625), 1, + aux_sym_available_expression_repeat1, + STATE(5626), 1, + sym_version, + ACTIONS(10153), 4, + anon_sym_ios, + anon_sym_tvos, + anon_sym_macosx, + anon_sym_watchos, + [43654] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10159), 1, + anon_sym_AT, + ACTIONS(10177), 1, + anon_sym_LBRACK, + STATE(5241), 1, + sym_gnu_asm_input_operand, + STATE(6127), 1, + sym_string_literal, + ACTIONS(10175), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [43681] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3022), 1, + anon_sym_LBRACK, + ACTIONS(7079), 1, + sym_identifier, + ACTIONS(7087), 1, + anon_sym_COLON, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(2899), 2, + sym_method_parameter, + aux_sym_method_declaration_repeat1, + STATE(3247), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + STATE(5066), 2, + sym_attribute_specifier, + sym_attribute_declaration, + [43710] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10131), 1, + anon_sym_LBRACK, + ACTIONS(10181), 1, + anon_sym___attribute, + ACTIONS(10183), 1, + anon_sym_COLON, + STATE(4303), 1, + sym_parameter_list, + STATE(5091), 1, + sym_bitfield_clause, + STATE(4859), 2, + sym_attribute_declaration, + aux_sym_attributed_field_declarator_repeat1, + ACTIONS(10179), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [43741] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4757), 1, + anon_sym_COLON, + ACTIONS(7580), 1, + anon_sym_LPAREN2, + ACTIONS(10186), 1, + sym_identifier, + STATE(1719), 1, + sym_method_parameter, + STATE(4952), 1, + sym_method_type, + STATE(5128), 1, + sym_attribute_specifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(1722), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + [43771] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7085), 1, + anon_sym_LBRACK, + ACTIONS(10190), 1, + anon_sym___attribute, + STATE(4879), 2, + sym_attribute_declaration, + aux_sym_attributed_field_declarator_repeat1, + ACTIONS(10188), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [43793] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4757), 1, + anon_sym_COLON, + ACTIONS(7580), 1, + anon_sym_LPAREN2, + ACTIONS(10192), 1, + sym_identifier, + STATE(1720), 1, + sym_method_parameter, + STATE(4960), 1, + sym_method_type, + STATE(5102), 1, + sym_attribute_specifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(1734), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + [43823] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(10145), 1, + sym_identifier, + STATE(2071), 1, + sym_string_literal, + STATE(5478), 2, + sym__string, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [43847] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10196), 1, + anon_sym___attribute, + ACTIONS(10194), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_GT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + anon_sym_COLON, + [43865] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10198), 1, + anon_sym___attribute, + ACTIONS(9358), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_GT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + anon_sym_COLON, + [43883] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10202), 1, + anon_sym___attribute, + ACTIONS(10200), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_GT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + anon_sym_COLON, + [43901] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10204), 1, + sym_identifier, + ACTIONS(10206), 1, + anon_sym_AT, + ACTIONS(10210), 1, + sym_system_lib_string, + STATE(6022), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(10208), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [43925] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10131), 1, + anon_sym_LBRACK, + ACTIONS(10214), 1, + anon_sym___attribute, + STATE(4303), 1, + sym_parameter_list, + STATE(4859), 2, + sym_attribute_declaration, + aux_sym_attributed_field_declarator_repeat1, + ACTIONS(10212), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [43951] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(10145), 1, + sym_identifier, + STATE(2071), 1, + sym_string_literal, + STATE(5393), 2, + sym__string, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [43975] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(10145), 1, + sym_identifier, + STATE(2071), 1, + sym_string_literal, + STATE(5559), 2, + sym__string, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [43999] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10206), 1, + anon_sym_AT, + ACTIONS(10216), 1, + sym_identifier, + ACTIONS(10218), 1, + sym_system_lib_string, + STATE(6692), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(10208), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [44023] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(10145), 1, + sym_identifier, + STATE(2071), 1, + sym_string_literal, + STATE(5338), 2, + sym__string, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [44047] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7168), 1, + anon_sym_LT, + ACTIONS(10220), 1, + anon_sym_LPAREN2, + STATE(2922), 1, + aux_sym_generic_specifier_repeat1, + STATE(2956), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5932), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(8499), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [44073] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10206), 1, + anon_sym_AT, + ACTIONS(10222), 1, + sym_identifier, + ACTIONS(10224), 1, + sym_system_lib_string, + STATE(6173), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(10208), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [44097] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10131), 1, + anon_sym_LBRACK, + ACTIONS(10228), 1, + anon_sym___attribute, + STATE(4303), 1, + sym_parameter_list, + STATE(4859), 2, + sym_attribute_declaration, + aux_sym_attributed_field_declarator_repeat1, + ACTIONS(10226), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [44123] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(10145), 1, + sym_identifier, + STATE(2071), 1, + sym_string_literal, + STATE(5617), 2, + sym__string, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [44147] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10206), 1, + anon_sym_AT, + ACTIONS(10230), 1, + sym_identifier, + ACTIONS(10232), 1, + sym_system_lib_string, + STATE(6212), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(10208), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [44171] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4757), 1, + anon_sym_COLON, + ACTIONS(7580), 1, + anon_sym_LPAREN2, + ACTIONS(10234), 1, + sym_identifier, + STATE(1718), 1, + sym_method_parameter, + STATE(4929), 1, + sym_method_type, + STATE(5150), 1, + sym_attribute_specifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(1729), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + [44201] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10238), 1, + anon_sym___attribute, + ACTIONS(10236), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_GT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + anon_sym_COLON, + [44219] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10242), 1, + anon_sym___attribute, + ACTIONS(10240), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_GT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + anon_sym_COLON, + [44237] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10246), 1, + anon_sym___attribute, + ACTIONS(10248), 1, + anon_sym_LBRACK, + STATE(4879), 2, + sym_attribute_declaration, + aux_sym_attributed_field_declarator_repeat1, + ACTIONS(10244), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [44259] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10131), 1, + anon_sym_LBRACK, + ACTIONS(10253), 1, + anon_sym___attribute, + STATE(4303), 1, + sym_parameter_list, + STATE(4859), 2, + sym_attribute_declaration, + aux_sym_attributed_field_declarator_repeat1, + ACTIONS(10251), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [44285] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10206), 1, + anon_sym_AT, + ACTIONS(10255), 1, + sym_identifier, + ACTIONS(10257), 1, + sym_system_lib_string, + STATE(5961), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(10208), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [44309] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(10145), 1, + sym_identifier, + STATE(2071), 1, + sym_string_literal, + STATE(5551), 2, + sym__string, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [44333] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10261), 1, + anon_sym___attribute, + ACTIONS(10259), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_GT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + anon_sym_COLON, + [44351] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10265), 1, + anon_sym___attribute, + ACTIONS(10263), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_GT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + anon_sym_COLON, + [44369] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10269), 1, + anon_sym___attribute, + ACTIONS(10267), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_GT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + anon_sym_COLON, + [44387] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10273), 1, + anon_sym___attribute, + ACTIONS(10271), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_GT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + anon_sym_COLON, + [44405] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(10145), 1, + sym_identifier, + STATE(2071), 1, + sym_string_literal, + STATE(5364), 2, + sym__string, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [44429] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10131), 1, + anon_sym_LBRACK, + ACTIONS(10277), 1, + anon_sym___attribute, + STATE(4303), 1, + sym_parameter_list, + STATE(4859), 2, + sym_attribute_declaration, + aux_sym_attributed_field_declarator_repeat1, + ACTIONS(10275), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [44455] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8457), 1, + anon_sym_macos, + ACTIONS(10025), 1, + sym_version_number, + STATE(5504), 1, + sym_platform, + STATE(5756), 1, + sym_version, + ACTIONS(10279), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(10153), 4, + anon_sym_ios, + anon_sym_tvos, + anon_sym_macosx, + anon_sym_watchos, + [44481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10281), 1, + anon_sym___attribute, + ACTIONS(9356), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_GT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + anon_sym_COLON, + [44499] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10131), 1, + anon_sym_LBRACK, + ACTIONS(10285), 1, + anon_sym___attribute, + STATE(4303), 1, + sym_parameter_list, + STATE(4859), 2, + sym_attribute_declaration, + aux_sym_attributed_field_declarator_repeat1, + ACTIONS(10283), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [44525] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10131), 1, + anon_sym_LBRACK, + ACTIONS(10289), 1, + anon_sym___attribute, + STATE(4303), 1, + sym_parameter_list, + STATE(4859), 2, + sym_attribute_declaration, + aux_sym_attributed_field_declarator_repeat1, + ACTIONS(10287), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [44551] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(10145), 1, + sym_identifier, + STATE(2071), 1, + sym_string_literal, + STATE(5637), 2, + sym__string, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [44575] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10293), 1, + anon_sym___attribute, + ACTIONS(10291), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_GT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + anon_sym_COLON, + [44593] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(10145), 1, + sym_identifier, + STATE(2071), 1, + sym_string_literal, + STATE(5591), 2, + sym__string, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [44617] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_AT, + ACTIONS(5240), 1, + sym_identifier, + STATE(1924), 1, + sym_string_literal, + ACTIONS(10141), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [44641] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10159), 1, + anon_sym_AT, + ACTIONS(10177), 1, + anon_sym_LBRACK, + STATE(5345), 1, + sym_gnu_asm_input_operand, + STATE(6127), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [44664] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(8913), 1, + anon_sym_LBRACE, + ACTIONS(10295), 1, + sym_identifier, + ACTIONS(10297), 1, + anon_sym_COLON, + STATE(4127), 1, + sym_enumerator_list, + STATE(5047), 1, + sym_attribute_specifier, + STATE(5181), 1, + sym_ms_declspec_modifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + [44693] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(7638), 1, + anon_sym_LBRACE, + ACTIONS(10299), 1, + sym_identifier, + ACTIONS(10301), 1, + anon_sym_COLON, + STATE(4173), 1, + sym_enumerator_list, + STATE(5051), 1, + sym_attribute_specifier, + STATE(5248), 1, + sym_ms_declspec_modifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + [44722] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(8913), 1, + anon_sym_LBRACE, + ACTIONS(10303), 1, + sym_identifier, + ACTIONS(10305), 1, + anon_sym_COLON, + STATE(3880), 1, + sym_enumerator_list, + STATE(5065), 1, + sym_attribute_specifier, + STATE(5271), 1, + sym_ms_declspec_modifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + [44751] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6794), 1, + anon_sym___attribute, + ACTIONS(7679), 1, + anon_sym___attribute__, + STATE(4901), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6792), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + [44772] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + STATE(4905), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6788), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + [44793] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(8913), 1, + anon_sym_LBRACE, + ACTIONS(10305), 1, + anon_sym_COLON, + ACTIONS(10307), 1, + sym_identifier, + STATE(3880), 1, + sym_enumerator_list, + STATE(5081), 1, + sym_attribute_specifier, + STATE(5250), 1, + sym_ms_declspec_modifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + [44822] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(7638), 1, + anon_sym_LBRACE, + ACTIONS(10309), 1, + sym_identifier, + ACTIONS(10311), 1, + anon_sym_COLON, + STATE(3213), 1, + sym_enumerator_list, + STATE(5056), 1, + sym_attribute_specifier, + STATE(5233), 1, + sym_ms_declspec_modifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + [44851] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + STATE(4901), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6799), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + [44872] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(7638), 1, + anon_sym_LBRACE, + ACTIONS(10311), 1, + anon_sym_COLON, + ACTIONS(10313), 1, + sym_identifier, + STATE(3213), 1, + sym_enumerator_list, + STATE(5067), 1, + sym_attribute_specifier, + STATE(5301), 1, + sym_ms_declspec_modifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + [44901] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(7638), 1, + anon_sym_LBRACE, + ACTIONS(10301), 1, + anon_sym_COLON, + ACTIONS(10315), 1, + sym_identifier, + STATE(4173), 1, + sym_enumerator_list, + STATE(5036), 1, + sym_attribute_specifier, + STATE(5193), 1, + sym_ms_declspec_modifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + [44930] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(820), 1, + sym_finally_clause, + ACTIONS(2296), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(10317), 2, + anon_sym_ATcatch, + anon_sym___catch, + ACTIONS(10319), 2, + anon_sym_ATfinally, + anon_sym___finally, + STATE(4933), 2, + sym_catch_clause, + aux_sym_try_statement_repeat1, + [44953] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + STATE(4901), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6788), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + [44974] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10157), 1, + anon_sym_LBRACK, + ACTIONS(10159), 1, + anon_sym_AT, + STATE(5467), 1, + sym_gnu_asm_output_operand, + STATE(6562), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [44997] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(9873), 1, + anon_sym_COLON, + ACTIONS(10127), 1, + anon_sym_COMMA, + ACTIONS(10321), 1, + anon_sym_SEMI, + STATE(5042), 1, + aux_sym_field_declaration_repeat1, + STATE(5303), 1, + sym_bitfield_clause, + STATE(6746), 1, + sym_attribute_specifier, + [45025] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(9873), 1, + anon_sym_COLON, + ACTIONS(10127), 1, + anon_sym_COMMA, + ACTIONS(10323), 1, + anon_sym_SEMI, + STATE(5042), 1, + aux_sym_field_declaration_repeat1, + STATE(5173), 1, + sym_bitfield_clause, + STATE(6413), 1, + sym_attribute_specifier, + [45053] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(8878), 1, + anon_sym_LBRACE, + ACTIONS(10325), 1, + sym_identifier, + STATE(3830), 1, + sym_field_declaration_list, + STATE(5135), 1, + sym_attribute_specifier, + STATE(5510), 1, + sym_ms_declspec_modifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + [45079] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(9873), 1, + anon_sym_COLON, + ACTIONS(10127), 1, + anon_sym_COMMA, + ACTIONS(10327), 1, + anon_sym_SEMI, + STATE(5042), 1, + aux_sym_field_declaration_repeat1, + STATE(5235), 1, + sym_bitfield_clause, + STATE(6035), 1, + sym_attribute_specifier, + [45107] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7248), 1, + anon_sym_COMMA, + ACTIONS(7250), 1, + anon_sym_RBRACE, + ACTIONS(10329), 1, + sym_identifier, + STATE(3062), 1, + sym_enumerator, + ACTIONS(7212), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(4919), 2, + sym_preproc_ifdef_in_enumerator, + aux_sym_enumerator_list_repeat1, + [45131] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(9873), 1, + anon_sym_COLON, + ACTIONS(10127), 1, + anon_sym_COMMA, + ACTIONS(10331), 1, + anon_sym_SEMI, + STATE(5042), 1, + aux_sym_field_declaration_repeat1, + STATE(5237), 1, + sym_bitfield_clause, + STATE(6042), 1, + sym_attribute_specifier, + [45159] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(9873), 1, + anon_sym_COLON, + ACTIONS(10127), 1, + anon_sym_COMMA, + ACTIONS(10333), 1, + anon_sym_SEMI, + STATE(5042), 1, + aux_sym_field_declaration_repeat1, + STATE(5175), 1, + sym_bitfield_clause, + STATE(6651), 1, + sym_attribute_specifier, + [45187] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10329), 1, + sym_identifier, + ACTIONS(10335), 1, + anon_sym_COMMA, + ACTIONS(10337), 1, + anon_sym_RBRACE, + STATE(3062), 1, + sym_enumerator, + ACTIONS(7212), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(4924), 2, + sym_preproc_ifdef_in_enumerator, + aux_sym_enumerator_list_repeat1, + [45211] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10329), 1, + sym_identifier, + ACTIONS(10335), 1, + anon_sym_COMMA, + ACTIONS(10337), 1, + anon_sym_RBRACE, + STATE(3062), 1, + sym_enumerator, + ACTIONS(7212), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(4925), 2, + sym_preproc_ifdef_in_enumerator, + aux_sym_enumerator_list_repeat1, + [45235] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(9873), 1, + anon_sym_COLON, + ACTIONS(10127), 1, + anon_sym_COMMA, + ACTIONS(10339), 1, + anon_sym_SEMI, + STATE(5042), 1, + aux_sym_field_declaration_repeat1, + STATE(5228), 1, + sym_bitfield_clause, + STATE(5950), 1, + sym_attribute_specifier, + [45263] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(9873), 1, + anon_sym_COLON, + ACTIONS(10127), 1, + anon_sym_COMMA, + ACTIONS(10341), 1, + anon_sym_SEMI, + STATE(4916), 1, + aux_sym_field_declaration_repeat1, + STATE(5229), 1, + sym_bitfield_clause, + STATE(5956), 1, + sym_attribute_specifier, + [45291] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(9873), 1, + anon_sym_COLON, + ACTIONS(10127), 1, + anon_sym_COMMA, + ACTIONS(10343), 1, + anon_sym_SEMI, + STATE(5042), 1, + aux_sym_field_declaration_repeat1, + STATE(5230), 1, + sym_bitfield_clause, + STATE(5964), 1, + sym_attribute_specifier, + [45319] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(8213), 1, + anon_sym_LBRACE, + ACTIONS(8215), 1, + anon_sym_ATautoreleasepool, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + STATE(1658), 1, + sym_compound_statement, + STATE(5057), 1, + sym_parameter_list, + STATE(5633), 1, + sym_attribute_specifier, + [45347] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10329), 1, + sym_identifier, + ACTIONS(10345), 1, + anon_sym_COMMA, + ACTIONS(10347), 1, + anon_sym_RBRACE, + STATE(3062), 1, + sym_enumerator, + ACTIONS(7212), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(4925), 2, + sym_preproc_ifdef_in_enumerator, + aux_sym_enumerator_list_repeat1, + [45371] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7657), 1, + anon_sym_RBRACE, + ACTIONS(10349), 1, + sym_identifier, + ACTIONS(10352), 1, + anon_sym_COMMA, + STATE(3062), 1, + sym_enumerator, + ACTIONS(10355), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(4925), 2, + sym_preproc_ifdef_in_enumerator, + aux_sym_enumerator_list_repeat1, + [45395] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(8209), 1, + anon_sym_LBRACE, + ACTIONS(8211), 1, + anon_sym_ATautoreleasepool, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + STATE(1485), 1, + sym_compound_statement, + STATE(4943), 1, + sym_attribute_specifier, + STATE(5039), 1, + sym_parameter_list, + [45423] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(8209), 1, + anon_sym_LBRACE, + ACTIONS(8211), 1, + anon_sym_ATautoreleasepool, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + STATE(1485), 1, + sym_compound_statement, + STATE(5039), 1, + sym_parameter_list, + STATE(5596), 1, + sym_attribute_specifier, + [45451] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(7214), 1, + anon_sym_RBRACE, + ACTIONS(10329), 1, + sym_identifier, + STATE(3062), 1, + sym_enumerator, + ACTIONS(7212), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(4951), 2, + sym_preproc_ifdef_in_enumerator, + aux_sym_enumerator_list_repeat1, + [45475] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4757), 1, + anon_sym_COLON, + ACTIONS(10358), 1, + sym_identifier, + STATE(1689), 1, + sym_method_parameter, + STATE(5096), 1, + sym_attribute_specifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(1725), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + [45499] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10360), 1, + anon_sym_LPAREN2, + ACTIONS(10362), 1, + anon_sym_LBRACE, + STATE(5002), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(10364), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [45519] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(9873), 1, + anon_sym_COLON, + ACTIONS(10127), 1, + anon_sym_COMMA, + ACTIONS(10366), 1, + anon_sym_SEMI, + STATE(4921), 1, + sym_bitfield_clause, + STATE(4922), 1, + aux_sym_field_declaration_repeat1, + STATE(6617), 1, + sym_attribute_specifier, + [45547] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10370), 1, + anon_sym___attribute, + ACTIONS(10368), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_COLON, + [45563] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10372), 2, + anon_sym_ATcatch, + anon_sym___catch, + STATE(4933), 2, + sym_catch_clause, + aux_sym_try_statement_repeat1, + ACTIONS(2320), 4, + anon_sym_else, + anon_sym_while, + anon_sym_ATfinally, + anon_sym___finally, + [45581] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(7077), 1, + anon_sym_LBRACE, + ACTIONS(10375), 1, + sym_identifier, + STATE(2934), 1, + sym_field_declaration_list, + STATE(5145), 1, + sym_attribute_specifier, + STATE(5580), 1, + sym_ms_declspec_modifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + [45607] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(9873), 1, + anon_sym_COLON, + ACTIONS(10127), 1, + anon_sym_COMMA, + ACTIONS(10377), 1, + anon_sym_SEMI, + STATE(4912), 1, + aux_sym_field_declaration_repeat1, + STATE(5224), 1, + sym_bitfield_clause, + STATE(6785), 1, + sym_attribute_specifier, + [45635] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(9873), 1, + anon_sym_COLON, + ACTIONS(10127), 1, + anon_sym_COMMA, + ACTIONS(10379), 1, + anon_sym_SEMI, + STATE(5042), 1, + aux_sym_field_declaration_repeat1, + STATE(5226), 1, + sym_bitfield_clause, + STATE(5911), 1, + sym_attribute_specifier, + [45663] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(9873), 1, + anon_sym_COLON, + ACTIONS(10127), 1, + anon_sym_COMMA, + ACTIONS(10381), 1, + anon_sym_SEMI, + STATE(4917), 1, + aux_sym_field_declaration_repeat1, + STATE(5231), 1, + sym_bitfield_clause, + STATE(5982), 1, + sym_attribute_specifier, + [45691] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(9873), 1, + anon_sym_COLON, + ACTIONS(10127), 1, + anon_sym_COMMA, + ACTIONS(10383), 1, + anon_sym_SEMI, + STATE(5042), 1, + aux_sym_field_declaration_repeat1, + STATE(5234), 1, + sym_bitfield_clause, + STATE(6009), 1, + sym_attribute_specifier, + [45719] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(8209), 1, + anon_sym_LBRACE, + ACTIONS(8211), 1, + anon_sym_ATautoreleasepool, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + STATE(1514), 1, + sym_compound_statement, + STATE(4927), 1, + sym_attribute_specifier, + STATE(5072), 1, + sym_parameter_list, + [45747] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10387), 1, + anon_sym___attribute, + ACTIONS(10385), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_COLON, + [45763] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10391), 1, + anon_sym___attribute, + ACTIONS(10389), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_COLON, + [45779] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(8213), 1, + anon_sym_LBRACE, + ACTIONS(8215), 1, + anon_sym_ATautoreleasepool, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + STATE(1663), 1, + sym_compound_statement, + STATE(4923), 1, + sym_attribute_specifier, + STATE(5048), 1, + sym_parameter_list, + [45807] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(8209), 1, + anon_sym_LBRACE, + ACTIONS(8211), 1, + anon_sym_ATautoreleasepool, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + STATE(1484), 1, + sym_compound_statement, + STATE(5062), 1, + sym_parameter_list, + STATE(5651), 1, + sym_attribute_specifier, + [45835] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10161), 1, + sym_identifier, + ACTIONS(10165), 1, + aux_sym_preproc_else_token1, + ACTIONS(10393), 1, + aux_sym_preproc_if_token2, + ACTIONS(10395), 1, + aux_sym_preproc_elif_token1, + STATE(4946), 1, + aux_sym_preproc_ifdef_in_enumerator_repeat1, + STATE(6628), 1, + sym_enumerator, + STATE(6193), 2, + sym_preproc_else_in_enumerator, + sym_preproc_elif_in_enumerator, + [45861] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10360), 1, + anon_sym_LPAREN2, + ACTIONS(10397), 1, + anon_sym_LBRACE, + STATE(5002), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(10364), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [45881] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10161), 1, + sym_identifier, + ACTIONS(10165), 1, + aux_sym_preproc_else_token1, + ACTIONS(10395), 1, + aux_sym_preproc_elif_token1, + ACTIONS(10399), 1, + aux_sym_preproc_if_token2, + STATE(5070), 1, + aux_sym_preproc_ifdef_in_enumerator_repeat1, + STATE(6628), 1, + sym_enumerator, + STATE(6570), 2, + sym_preproc_else_in_enumerator, + sym_preproc_elif_in_enumerator, + [45907] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10403), 1, + anon_sym___attribute, + ACTIONS(10401), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_COLON, + [45923] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10360), 1, + anon_sym_LPAREN2, + ACTIONS(10405), 1, + anon_sym_LBRACE, + STATE(5002), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(10364), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [45943] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10360), 1, + anon_sym_LPAREN2, + ACTIONS(10407), 1, + anon_sym_LBRACE, + STATE(5002), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(10364), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [45963] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10329), 1, + sym_identifier, + ACTIONS(10409), 1, + anon_sym_COMMA, + ACTIONS(10411), 1, + anon_sym_RBRACE, + STATE(3062), 1, + sym_enumerator, + ACTIONS(7212), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(4962), 2, + sym_preproc_ifdef_in_enumerator, + aux_sym_enumerator_list_repeat1, + [45987] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10329), 1, + sym_identifier, + ACTIONS(10409), 1, + anon_sym_COMMA, + ACTIONS(10411), 1, + anon_sym_RBRACE, + STATE(3062), 1, + sym_enumerator, + ACTIONS(7212), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(4925), 2, + sym_preproc_ifdef_in_enumerator, + aux_sym_enumerator_list_repeat1, + [46011] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4757), 1, + anon_sym_COLON, + ACTIONS(10413), 1, + sym_identifier, + STATE(1712), 1, + sym_method_parameter, + STATE(5108), 1, + sym_attribute_specifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(1732), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + [46035] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(9873), 1, + anon_sym_COLON, + ACTIONS(10127), 1, + anon_sym_COMMA, + ACTIONS(10415), 1, + anon_sym_SEMI, + STATE(4964), 1, + sym_bitfield_clause, + STATE(4965), 1, + aux_sym_field_declaration_repeat1, + STATE(6656), 1, + sym_attribute_specifier, + [46063] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10360), 1, + anon_sym_LPAREN2, + ACTIONS(10417), 1, + anon_sym_LBRACE, + STATE(5002), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(10364), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [46083] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10421), 1, + anon_sym___attribute, + ACTIONS(10419), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_COLON, + [46099] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(8213), 1, + anon_sym_LBRACE, + ACTIONS(8215), 1, + anon_sym_ATautoreleasepool, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + STATE(1658), 1, + sym_compound_statement, + STATE(4957), 1, + sym_attribute_specifier, + STATE(5057), 1, + sym_parameter_list, + [46127] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(8213), 1, + anon_sym_LBRACE, + ACTIONS(8215), 1, + anon_sym_ATautoreleasepool, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + STATE(1666), 1, + sym_compound_statement, + STATE(5027), 1, + sym_parameter_list, + STATE(5387), 1, + sym_attribute_specifier, + [46155] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(9873), 1, + anon_sym_COLON, + ACTIONS(10127), 1, + anon_sym_COMMA, + ACTIONS(10423), 1, + anon_sym_SEMI, + STATE(4937), 1, + sym_bitfield_clause, + STATE(4938), 1, + aux_sym_field_declaration_repeat1, + STATE(6436), 1, + sym_attribute_specifier, + [46183] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10427), 1, + anon_sym___attribute, + ACTIONS(10425), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_COLON, + [46199] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4757), 1, + anon_sym_COLON, + ACTIONS(10429), 1, + sym_identifier, + STATE(1685), 1, + sym_method_parameter, + STATE(5119), 1, + sym_attribute_specifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(1726), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + [46223] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10433), 1, + anon_sym___attribute, + ACTIONS(10431), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_COLON, + [46239] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10329), 1, + sym_identifier, + ACTIONS(10435), 1, + anon_sym_COMMA, + ACTIONS(10437), 1, + anon_sym_RBRACE, + STATE(3062), 1, + sym_enumerator, + ACTIONS(7212), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(4925), 2, + sym_preproc_ifdef_in_enumerator, + aux_sym_enumerator_list_repeat1, + [46263] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(9873), 1, + anon_sym_COLON, + ACTIONS(10127), 1, + anon_sym_COMMA, + ACTIONS(10439), 1, + anon_sym_SEMI, + STATE(4971), 1, + aux_sym_field_declaration_repeat1, + STATE(5302), 1, + sym_bitfield_clause, + STATE(6742), 1, + sym_attribute_specifier, + [46291] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(9873), 1, + anon_sym_COLON, + ACTIONS(10127), 1, + anon_sym_COMMA, + ACTIONS(10441), 1, + anon_sym_SEMI, + STATE(4972), 1, + aux_sym_field_declaration_repeat1, + STATE(5304), 1, + sym_bitfield_clause, + STATE(6751), 1, + sym_attribute_specifier, + [46319] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(9873), 1, + anon_sym_COLON, + ACTIONS(10127), 1, + anon_sym_COMMA, + ACTIONS(10443), 1, + anon_sym_SEMI, + STATE(5042), 1, + aux_sym_field_declaration_repeat1, + STATE(5305), 1, + sym_bitfield_clause, + STATE(6754), 1, + sym_attribute_specifier, + [46347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10447), 1, + anon_sym___attribute, + ACTIONS(10445), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_COLON, + [46363] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10360), 1, + anon_sym_LPAREN2, + ACTIONS(10449), 1, + anon_sym_LBRACE, + STATE(5002), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(10364), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [46383] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(8878), 1, + anon_sym_LBRACE, + ACTIONS(10451), 1, + sym_identifier, + STATE(3826), 1, + sym_field_declaration_list, + STATE(5092), 1, + sym_attribute_specifier, + STATE(5509), 1, + sym_ms_declspec_modifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + [46409] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(9873), 1, + anon_sym_COLON, + ACTIONS(10127), 1, + anon_sym_COMMA, + ACTIONS(10453), 1, + anon_sym_SEMI, + STATE(4914), 1, + aux_sym_field_declaration_repeat1, + STATE(5227), 1, + sym_bitfield_clause, + STATE(5943), 1, + sym_attribute_specifier, + [46437] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10455), 1, + sym_identifier, + ACTIONS(10460), 1, + aux_sym_preproc_elif_token1, + STATE(4970), 1, + aux_sym_preproc_ifdef_in_enumerator_repeat1, + STATE(6283), 1, + sym_enumerator, + ACTIONS(10458), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [46459] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(9873), 1, + anon_sym_COLON, + ACTIONS(10127), 1, + anon_sym_COMMA, + ACTIONS(10462), 1, + anon_sym_SEMI, + STATE(5042), 1, + aux_sym_field_declaration_repeat1, + STATE(5161), 1, + sym_bitfield_clause, + STATE(6136), 1, + sym_attribute_specifier, + [46487] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(9873), 1, + anon_sym_COLON, + ACTIONS(10127), 1, + anon_sym_COMMA, + ACTIONS(10464), 1, + anon_sym_SEMI, + STATE(5042), 1, + aux_sym_field_declaration_repeat1, + STATE(5216), 1, + sym_bitfield_clause, + STATE(5974), 1, + sym_attribute_specifier, + [46515] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(7077), 1, + anon_sym_LBRACE, + ACTIONS(9444), 1, + sym_identifier, + STATE(2926), 1, + sym_field_declaration_list, + STATE(5106), 1, + sym_attribute_specifier, + STATE(5537), 1, + sym_ms_declspec_modifier, + ACTIONS(37), 2, + anon_sym___attribute__, + anon_sym___attribute, + [46541] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10360), 1, + anon_sym_LPAREN2, + ACTIONS(10466), 1, + anon_sym_LBRACE, + STATE(5002), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(10364), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [46561] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(242), 1, + sym_finally_clause, + ACTIONS(2298), 2, + anon_sym_ATcatch, + anon_sym___catch, + ACTIONS(2302), 2, + anon_sym_ATfinally, + anon_sym___finally, + STATE(178), 2, + sym_catch_clause, + aux_sym_try_statement_repeat1, + [46580] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10329), 1, + sym_identifier, + ACTIONS(10468), 1, + anon_sym_COMMA, + ACTIONS(10470), 1, + anon_sym_RBRACE, + STATE(2941), 1, + sym_enumerator, + STATE(4915), 1, + sym_preproc_ifdef_in_enumerator, + ACTIONS(7212), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + [46603] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10474), 1, + anon_sym_LBRACK, + STATE(4292), 1, + sym_parameter_list, + ACTIONS(10472), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_COLON, + [46622] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(936), 1, + sym_finally_clause, + ACTIONS(2876), 2, + anon_sym_ATcatch, + anon_sym___catch, + ACTIONS(2880), 2, + anon_sym_ATfinally, + anon_sym___finally, + STATE(447), 2, + sym_catch_clause, + aux_sym_try_statement_repeat1, + [46641] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10474), 1, + anon_sym_LBRACK, + ACTIONS(10478), 1, + anon_sym___attribute, + STATE(4311), 1, + sym_parameter_list, + ACTIONS(10476), 3, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + [46662] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10474), 1, + anon_sym_LBRACK, + ACTIONS(10480), 1, + anon_sym___attribute, + STATE(4311), 1, + sym_parameter_list, + ACTIONS(10472), 3, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + [46683] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10482), 1, + anon_sym_LBRACK, + ACTIONS(10484), 1, + anon_sym_EQ, + ACTIONS(10486), 1, + anon_sym_DOT, + STATE(5003), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [46702] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10488), 1, + anon_sym_LPAREN2, + STATE(4983), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(10364), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [46719] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10490), 1, + anon_sym_LPAREN2, + STATE(4996), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(10364), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [46736] = 8, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10492), 1, + sym_identifier, + ACTIONS(10494), 1, + anon_sym_LPAREN2, + ACTIONS(10496), 1, + aux_sym_selector_expression_token1, + ACTIONS(10498), 1, + anon_sym_COLON2, + STATE(5068), 1, + aux_sym_method_identifier_repeat1, + STATE(5143), 1, + aux_sym_selector_expression_repeat1, + STATE(5889), 1, + sym_method_identifier, + [46761] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_ATautoreleasepool, + ACTIONS(8960), 1, + anon_sym_LBRACK, + ACTIONS(10500), 1, + anon_sym_LPAREN2, + STATE(877), 1, + sym_compound_statement, + STATE(2887), 1, + sym__old_style_parameter_list, + STATE(4820), 1, + sym_parameter_list, + [46786] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10360), 1, + anon_sym_LPAREN2, + STATE(5002), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(10364), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [46803] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(835), 1, + sym_finally_clause, + ACTIONS(2394), 2, + anon_sym_ATcatch, + anon_sym___catch, + ACTIONS(2398), 2, + anon_sym_ATfinally, + anon_sym___finally, + STATE(197), 2, + sym_catch_clause, + aux_sym_try_statement_repeat1, + [46822] = 8, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10494), 1, + anon_sym_LPAREN2, + ACTIONS(10498), 1, + anon_sym_COLON2, + ACTIONS(10502), 1, + sym_identifier, + ACTIONS(10504), 1, + aux_sym_selector_expression_token1, + STATE(5068), 1, + aux_sym_method_identifier_repeat1, + STATE(5143), 1, + aux_sym_selector_expression_repeat1, + STATE(5810), 1, + sym_method_identifier, + [46847] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_ATautoreleasepool, + ACTIONS(8960), 1, + anon_sym_LBRACK, + ACTIONS(10500), 1, + anon_sym_LPAREN2, + STATE(468), 1, + sym_compound_statement, + STATE(2887), 1, + sym__old_style_parameter_list, + STATE(4820), 1, + sym_parameter_list, + [46872] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10206), 1, + anon_sym_AT, + STATE(5871), 1, + sym_string_literal, + ACTIONS(10208), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [46889] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10506), 1, + anon_sym_LPAREN2, + STATE(4992), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(10364), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [46906] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10508), 1, + anon_sym_LPAREN2, + STATE(4996), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(10364), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [46923] = 8, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10494), 1, + anon_sym_LPAREN2, + ACTIONS(10498), 1, + anon_sym_COLON2, + ACTIONS(10510), 1, + sym_identifier, + ACTIONS(10512), 1, + aux_sym_selector_expression_token1, + STATE(5068), 1, + aux_sym_method_identifier_repeat1, + STATE(5143), 1, + aux_sym_selector_expression_repeat1, + STATE(5887), 1, + sym_method_identifier, + [46948] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_AT, + STATE(1924), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [46965] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10159), 1, + anon_sym_AT, + STATE(6281), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [46982] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10514), 1, + anon_sym_LPAREN2, + STATE(4996), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(10516), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [46999] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10206), 1, + anon_sym_AT, + STATE(5854), 1, + sym_string_literal, + ACTIONS(10208), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [47016] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(813), 1, + sym_finally_clause, + ACTIONS(10317), 2, + anon_sym_ATcatch, + anon_sym___catch, + ACTIONS(10319), 2, + anon_sym_ATfinally, + anon_sym___finally, + STATE(4908), 2, + sym_catch_clause, + aux_sym_try_statement_repeat1, + [47035] = 8, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10494), 1, + anon_sym_LPAREN2, + ACTIONS(10498), 1, + anon_sym_COLON2, + ACTIONS(10519), 1, + sym_identifier, + ACTIONS(10521), 1, + aux_sym_selector_expression_token1, + STATE(5068), 1, + aux_sym_method_identifier_repeat1, + STATE(5143), 1, + aux_sym_selector_expression_repeat1, + STATE(5870), 1, + sym_method_identifier, + [47060] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10329), 1, + sym_identifier, + ACTIONS(10523), 1, + anon_sym_COMMA, + ACTIONS(10525), 1, + anon_sym_RBRACE, + STATE(2931), 1, + sym_enumerator, + STATE(4928), 1, + sym_preproc_ifdef_in_enumerator, + ACTIONS(7212), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + [47083] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1148), 1, + sym_finally_clause, + ACTIONS(2974), 2, + anon_sym_ATcatch, + anon_sym___catch, + ACTIONS(2978), 2, + anon_sym_ATfinally, + anon_sym___finally, + STATE(1086), 2, + sym_catch_clause, + aux_sym_try_statement_repeat1, + [47102] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10527), 1, + anon_sym_LPAREN2, + STATE(4996), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(10364), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [47119] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10529), 1, + anon_sym_LBRACK, + ACTIONS(10532), 1, + anon_sym_EQ, + ACTIONS(10534), 1, + anon_sym_DOT, + STATE(5003), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [47138] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10474), 1, + anon_sym_LBRACK, + STATE(4292), 1, + sym_parameter_list, + ACTIONS(10537), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_COLON, + [47157] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10474), 1, + anon_sym_LBRACK, + STATE(4292), 1, + sym_parameter_list, + ACTIONS(10539), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_COLON, + [47176] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10474), 1, + anon_sym_LBRACK, + ACTIONS(10541), 1, + anon_sym___attribute, + STATE(4311), 1, + sym_parameter_list, + ACTIONS(10537), 3, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + [47197] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10474), 1, + anon_sym_LBRACK, + ACTIONS(10543), 1, + anon_sym___attribute, + STATE(4311), 1, + sym_parameter_list, + ACTIONS(10539), 3, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + [47218] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, + anon_sym_ATautoreleasepool, + ACTIONS(8960), 1, + anon_sym_LBRACK, + ACTIONS(10500), 1, + anon_sym_LPAREN2, + STATE(1010), 1, + sym_compound_statement, + STATE(2887), 1, + sym__old_style_parameter_list, + STATE(4820), 1, + sym_parameter_list, + [47243] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10206), 1, + anon_sym_AT, + STATE(5807), 1, + sym_string_literal, + ACTIONS(10208), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [47260] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(183), 1, + anon_sym_ATautoreleasepool, + ACTIONS(8960), 1, + anon_sym_LBRACK, + ACTIONS(10500), 1, + anon_sym_LPAREN2, + STATE(356), 1, + sym_compound_statement, + STATE(2887), 1, + sym__old_style_parameter_list, + STATE(4820), 1, + sym_parameter_list, + [47285] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10159), 1, + anon_sym_AT, + STATE(6590), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [47302] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(548), 1, + sym_finally_clause, + ACTIONS(2372), 2, + anon_sym_ATcatch, + anon_sym___catch, + ACTIONS(2376), 2, + anon_sym_ATfinally, + anon_sym___finally, + STATE(189), 2, + sym_catch_clause, + aux_sym_try_statement_repeat1, + [47321] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10117), 1, + anon_sym___attribute, + ACTIONS(10474), 1, + anon_sym_LBRACK, + STATE(4311), 1, + sym_parameter_list, + ACTIONS(10115), 3, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + [47342] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(412), 1, + sym_finally_clause, + ACTIONS(2328), 2, + anon_sym_ATcatch, + anon_sym___catch, + ACTIONS(2332), 2, + anon_sym_ATfinally, + anon_sym___finally, + STATE(181), 2, + sym_catch_clause, + aux_sym_try_statement_repeat1, + [47361] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10474), 1, + anon_sym_LBRACK, + ACTIONS(10547), 1, + anon_sym___attribute, + STATE(4311), 1, + sym_parameter_list, + ACTIONS(10545), 3, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + [47382] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10206), 1, + anon_sym_AT, + STATE(5780), 1, + sym_string_literal, + ACTIONS(10208), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [47399] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(813), 1, + sym_finally_clause, + ACTIONS(2386), 2, + anon_sym_ATcatch, + anon_sym___catch, + ACTIONS(2390), 2, + anon_sym_ATfinally, + anon_sym___finally, + STATE(196), 2, + sym_catch_clause, + aux_sym_try_statement_repeat1, + [47418] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10549), 1, + anon_sym_LPAREN2, + STATE(5022), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(10364), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [47435] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10206), 1, + anon_sym_AT, + STATE(5890), 1, + sym_string_literal, + ACTIONS(10208), 5, + anon_sym_DQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + [47452] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10474), 1, + anon_sym_LBRACK, + STATE(4292), 1, + sym_parameter_list, + ACTIONS(10476), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_COLON, + [47471] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(759), 1, + anon_sym_LBRACE, + ACTIONS(761), 1, + anon_sym_ATautoreleasepool, + ACTIONS(8960), 1, + anon_sym_LBRACK, + ACTIONS(10500), 1, + anon_sym_LPAREN2, + STATE(679), 1, + sym_compound_statement, + STATE(2887), 1, + sym__old_style_parameter_list, + STATE(4820), 1, + sym_parameter_list, + [47496] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10551), 1, + anon_sym_LPAREN2, + STATE(4996), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(10364), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [47513] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4661), 1, + anon_sym_COLON, + ACTIONS(10553), 1, + sym_identifier, + ACTIONS(10555), 1, + anon_sym_COMMA, + STATE(2816), 1, + sym_method_parameter, + STATE(2790), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + [47533] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(8960), 1, + anon_sym_LBRACK, + STATE(4820), 1, + sym_parameter_list, + ACTIONS(6825), 3, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + [47551] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10474), 1, + anon_sym_LBRACK, + STATE(4292), 1, + sym_parameter_list, + ACTIONS(10557), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [47569] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(8960), 1, + anon_sym_LBRACK, + STATE(4820), 1, + sym_parameter_list, + ACTIONS(6829), 3, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + [47587] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(8213), 1, + anon_sym_LBRACE, + ACTIONS(8215), 1, + anon_sym_ATautoreleasepool, + STATE(1645), 1, + sym_compound_statement, + STATE(5452), 1, + sym_attribute_specifier, + [47609] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7087), 1, + anon_sym_COLON, + ACTIONS(10559), 1, + sym_identifier, + STATE(2899), 2, + sym_method_parameter, + aux_sym_method_declaration_repeat1, + STATE(3247), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + [47627] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10131), 1, + anon_sym_LBRACK, + ACTIONS(10561), 1, + anon_sym_RPAREN, + STATE(4328), 1, + sym_parameter_list, + STATE(4859), 2, + sym_attribute_declaration, + aux_sym_attributed_field_declarator_repeat1, + [47647] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_ATautoreleasepool, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(8960), 1, + anon_sym_LBRACK, + STATE(877), 1, + sym_compound_statement, + STATE(4820), 1, + sym_parameter_list, + [47669] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10181), 1, + anon_sym___attribute, + ACTIONS(10183), 1, + anon_sym_COLON, + STATE(5091), 1, + sym_bitfield_clause, + ACTIONS(10179), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [47687] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(8213), 1, + anon_sym_LBRACE, + ACTIONS(8215), 1, + anon_sym_ATautoreleasepool, + STATE(1663), 1, + sym_compound_statement, + STATE(5527), 1, + sym_attribute_specifier, + [47709] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10474), 1, + anon_sym_LBRACK, + STATE(4292), 1, + sym_parameter_list, + ACTIONS(10115), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + [47727] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(759), 1, + anon_sym_LBRACE, + ACTIONS(761), 1, + anon_sym_ATautoreleasepool, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(8960), 1, + anon_sym_LBRACK, + STATE(679), 1, + sym_compound_statement, + STATE(4820), 1, + sym_parameter_list, + [47749] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10563), 1, + sym_identifier, + ACTIONS(10567), 1, + anon_sym_COLON2, + STATE(5125), 1, + aux_sym_method_identifier_repeat1, + STATE(5294), 1, + aux_sym_method_identifier_repeat2, + ACTIONS(10565), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47769] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(7638), 1, + anon_sym_LBRACE, + ACTIONS(10569), 1, + sym_identifier, + ACTIONS(10571), 1, + anon_sym_COLON, + STATE(4185), 1, + sym_enumerator_list, + STATE(5197), 1, + sym_ms_declspec_modifier, + [47791] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(8960), 1, + anon_sym_LBRACK, + STATE(4820), 1, + sym_parameter_list, + ACTIONS(6833), 3, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + [47809] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(8960), 1, + anon_sym_LBRACK, + STATE(4820), 1, + sym_parameter_list, + ACTIONS(6837), 3, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + [47827] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(8209), 1, + anon_sym_LBRACE, + ACTIONS(8211), 1, + anon_sym_ATautoreleasepool, + STATE(1484), 1, + sym_compound_statement, + STATE(5651), 1, + sym_attribute_specifier, + [47849] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10131), 1, + anon_sym_LBRACK, + ACTIONS(10226), 1, + anon_sym_RPAREN, + STATE(4328), 1, + sym_parameter_list, + STATE(4859), 2, + sym_attribute_declaration, + aux_sym_attributed_field_declarator_repeat1, + [47869] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4657), 1, + anon_sym_LBRACE, + ACTIONS(4659), 1, + anon_sym_ATautoreleasepool, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(8960), 1, + anon_sym_LBRACK, + STATE(2167), 1, + sym_compound_statement, + STATE(4820), 1, + sym_parameter_list, + [47891] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10573), 1, + anon_sym_COMMA, + ACTIONS(10578), 1, + anon_sym___attribute, + STATE(5042), 1, + aux_sym_field_declaration_repeat1, + ACTIONS(10576), 3, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [47909] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LBRACE, + ACTIONS(4681), 1, + anon_sym_ATautoreleasepool, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(8960), 1, + anon_sym_LBRACK, + STATE(2201), 1, + sym_compound_statement, + STATE(4820), 1, + sym_parameter_list, + [47931] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10474), 1, + anon_sym_LBRACK, + STATE(4292), 1, + sym_parameter_list, + ACTIONS(10545), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + [47949] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7087), 1, + anon_sym_COLON, + ACTIONS(10559), 1, + sym_identifier, + STATE(2892), 2, + sym_method_parameter, + aux_sym_method_declaration_repeat1, + STATE(3247), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + [47967] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10474), 1, + anon_sym_LBRACK, + STATE(4292), 1, + sym_parameter_list, + ACTIONS(10580), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [47985] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(8913), 1, + anon_sym_LBRACE, + ACTIONS(10582), 1, + sym_identifier, + ACTIONS(10584), 1, + anon_sym_COLON, + STATE(4107), 1, + sym_enumerator_list, + STATE(5187), 1, + sym_ms_declspec_modifier, + [48007] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(8213), 1, + anon_sym_LBRACE, + ACTIONS(8215), 1, + anon_sym_ATautoreleasepool, + STATE(1658), 1, + sym_compound_statement, + STATE(5633), 1, + sym_attribute_specifier, + [48029] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10329), 1, + sym_identifier, + ACTIONS(10411), 1, + anon_sym_RBRACE, + STATE(3049), 1, + sym_enumerator, + STATE(5147), 1, + sym_preproc_ifdef_in_enumerator, + ACTIONS(7212), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + [48049] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4667), 1, + anon_sym_LBRACE, + ACTIONS(4669), 1, + anon_sym_ATautoreleasepool, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(8960), 1, + anon_sym_LBRACK, + STATE(2337), 1, + sym_compound_statement, + STATE(4820), 1, + sym_parameter_list, + [48071] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(7638), 1, + anon_sym_LBRACE, + ACTIONS(10571), 1, + anon_sym_COLON, + ACTIONS(10586), 1, + sym_identifier, + STATE(4185), 1, + sym_enumerator_list, + STATE(5265), 1, + sym_ms_declspec_modifier, + [48093] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(183), 1, + anon_sym_ATautoreleasepool, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(8960), 1, + anon_sym_LBRACK, + STATE(356), 1, + sym_compound_statement, + STATE(4820), 1, + sym_parameter_list, + [48115] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10329), 1, + sym_identifier, + ACTIONS(10588), 1, + anon_sym_RBRACE, + STATE(3049), 1, + sym_enumerator, + STATE(5147), 1, + sym_preproc_ifdef_in_enumerator, + ACTIONS(7212), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + [48135] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7087), 1, + anon_sym_COLON, + ACTIONS(10559), 1, + sym_identifier, + STATE(2894), 2, + sym_method_parameter, + aux_sym_method_declaration_repeat1, + STATE(3247), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + [48153] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, + anon_sym_ATautoreleasepool, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(8960), 1, + anon_sym_LBRACK, + STATE(1010), 1, + sym_compound_statement, + STATE(4820), 1, + sym_parameter_list, + [48175] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(7638), 1, + anon_sym_LBRACE, + ACTIONS(10590), 1, + sym_identifier, + ACTIONS(10592), 1, + anon_sym_COLON, + STATE(3195), 1, + sym_enumerator_list, + STATE(5177), 1, + sym_ms_declspec_modifier, + [48197] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(8213), 1, + anon_sym_LBRACE, + ACTIONS(8215), 1, + anon_sym_ATautoreleasepool, + STATE(1666), 1, + sym_compound_statement, + STATE(5387), 1, + sym_attribute_specifier, + [48219] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10329), 1, + sym_identifier, + ACTIONS(10347), 1, + anon_sym_RBRACE, + STATE(3049), 1, + sym_enumerator, + STATE(5147), 1, + sym_preproc_ifdef_in_enumerator, + ACTIONS(7212), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + [48239] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7087), 1, + anon_sym_COLON, + ACTIONS(10559), 1, + sym_identifier, + STATE(2897), 2, + sym_method_parameter, + aux_sym_method_declaration_repeat1, + STATE(3247), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + [48257] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10329), 1, + sym_identifier, + ACTIONS(10337), 1, + anon_sym_RBRACE, + STATE(3049), 1, + sym_enumerator, + STATE(5147), 1, + sym_preproc_ifdef_in_enumerator, + ACTIONS(7212), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + [48277] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(8960), 1, + anon_sym_LBRACK, + STATE(4820), 1, + sym_parameter_list, + ACTIONS(6841), 3, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + [48295] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(8209), 1, + anon_sym_LBRACE, + ACTIONS(8211), 1, + anon_sym_ATautoreleasepool, + STATE(1500), 1, + sym_compound_statement, + STATE(5688), 1, + sym_attribute_specifier, + [48317] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10474), 1, + anon_sym_LBRACK, + STATE(4292), 1, + sym_parameter_list, + ACTIONS(10594), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [48335] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10329), 1, + sym_identifier, + ACTIONS(10437), 1, + anon_sym_RBRACE, + STATE(3049), 1, + sym_enumerator, + STATE(5147), 1, + sym_preproc_ifdef_in_enumerator, + ACTIONS(7212), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + [48355] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(8913), 1, + anon_sym_LBRACE, + ACTIONS(10596), 1, + sym_identifier, + ACTIONS(10598), 1, + anon_sym_COLON, + STATE(3973), 1, + sym_enumerator_list, + STATE(5166), 1, + sym_ms_declspec_modifier, + [48377] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7087), 1, + anon_sym_COLON, + ACTIONS(10559), 1, + sym_identifier, + STATE(2904), 2, + sym_method_parameter, + aux_sym_method_declaration_repeat1, + STATE(3247), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + [48395] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(7638), 1, + anon_sym_LBRACE, + ACTIONS(10592), 1, + anon_sym_COLON, + ACTIONS(10600), 1, + sym_identifier, + STATE(3195), 1, + sym_enumerator_list, + STATE(5163), 1, + sym_ms_declspec_modifier, + [48417] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10563), 1, + sym_identifier, + ACTIONS(10567), 1, + anon_sym_COLON2, + STATE(5125), 1, + aux_sym_method_identifier_repeat1, + STATE(5243), 1, + aux_sym_method_identifier_repeat2, + ACTIONS(10602), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48437] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10460), 1, + aux_sym_preproc_elif_token1, + ACTIONS(10458), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [48451] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10455), 1, + sym_identifier, + STATE(5070), 1, + aux_sym_preproc_ifdef_in_enumerator_repeat1, + STATE(6628), 1, + sym_enumerator, + ACTIONS(10458), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [48469] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10131), 1, + anon_sym_LBRACK, + ACTIONS(10604), 1, + anon_sym_RPAREN, + STATE(4328), 1, + sym_parameter_list, + STATE(4859), 2, + sym_attribute_declaration, + aux_sym_attributed_field_declarator_repeat1, + [48489] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(8209), 1, + anon_sym_LBRACE, + ACTIONS(8211), 1, + anon_sym_ATautoreleasepool, + STATE(1485), 1, + sym_compound_statement, + STATE(5596), 1, + sym_attribute_specifier, + [48511] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10131), 1, + anon_sym_LBRACK, + ACTIONS(10287), 1, + anon_sym_RPAREN, + STATE(4328), 1, + sym_parameter_list, + STATE(4859), 2, + sym_attribute_declaration, + aux_sym_attributed_field_declarator_repeat1, + [48531] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(8960), 1, + anon_sym_LBRACK, + STATE(4820), 1, + sym_parameter_list, + ACTIONS(6821), 3, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_ATautoreleasepool, + [48549] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_ATautoreleasepool, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(8960), 1, + anon_sym_LBRACK, + STATE(468), 1, + sym_compound_statement, + STATE(4820), 1, + sym_parameter_list, + [48571] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10329), 1, + sym_identifier, + ACTIONS(10606), 1, + anon_sym_RBRACE, + STATE(3049), 1, + sym_enumerator, + STATE(5147), 1, + sym_preproc_ifdef_in_enumerator, + ACTIONS(7212), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + [48591] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10131), 1, + anon_sym_LBRACK, + ACTIONS(10212), 1, + anon_sym_RPAREN, + STATE(4328), 1, + sym_parameter_list, + STATE(4859), 2, + sym_attribute_declaration, + aux_sym_attributed_field_declarator_repeat1, + [48611] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10131), 1, + anon_sym_LBRACK, + ACTIONS(10283), 1, + anon_sym_RPAREN, + STATE(4328), 1, + sym_parameter_list, + STATE(4859), 2, + sym_attribute_declaration, + aux_sym_attributed_field_declarator_repeat1, + [48631] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7087), 1, + anon_sym_COLON, + ACTIONS(10559), 1, + sym_identifier, + STATE(2918), 2, + sym_method_parameter, + aux_sym_method_declaration_repeat1, + STATE(3247), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + [48649] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10131), 1, + anon_sym_LBRACK, + ACTIONS(10251), 1, + anon_sym_RPAREN, + STATE(4328), 1, + sym_parameter_list, + STATE(4859), 2, + sym_attribute_declaration, + aux_sym_attributed_field_declarator_repeat1, + [48669] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(8913), 1, + anon_sym_LBRACE, + ACTIONS(10598), 1, + anon_sym_COLON, + ACTIONS(10608), 1, + sym_identifier, + STATE(3973), 1, + sym_enumerator_list, + STATE(5263), 1, + sym_ms_declspec_modifier, + [48691] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10131), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_RPAREN, + STATE(4328), 1, + sym_parameter_list, + STATE(4859), 2, + sym_attribute_declaration, + aux_sym_attributed_field_declarator_repeat1, + [48711] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(8209), 1, + anon_sym_LBRACE, + ACTIONS(8211), 1, + anon_sym_ATautoreleasepool, + STATE(1514), 1, + sym_compound_statement, + STATE(5548), 1, + sym_attribute_specifier, + [48733] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10474), 1, + anon_sym_LBRACK, + STATE(4292), 1, + sym_parameter_list, + ACTIONS(10610), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [48751] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10612), 5, + anon_sym_COMMA, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + anon_sym_RBRACE, + sym_identifier, + [48762] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10614), 1, + anon_sym_ATend, + ACTIONS(3062), 2, + anon_sym_AToptional, + anon_sym_ATrequired, + STATE(5113), 2, + sym_qualified_protocol_interface_declaration, + aux_sym_protocol_declaration_repeat1, + [48777] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3084), 1, + anon_sym_ATend, + ACTIONS(3062), 2, + anon_sym_AToptional, + anon_sym_ATrequired, + STATE(5113), 2, + sym_qualified_protocol_interface_declaration, + aux_sym_protocol_declaration_repeat1, + [48792] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10474), 1, + anon_sym_LBRACK, + STATE(4292), 1, + sym_parameter_list, + ACTIONS(7727), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48809] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5630), 5, + anon_sym_const, + anon_sym_struct, + anon_sym_in, + sym_identifier, + anon_sym_id, + [48820] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3321), 1, + anon_sym_ATend, + ACTIONS(3062), 2, + anon_sym_AToptional, + anon_sym_ATrequired, + STATE(5113), 2, + sym_qualified_protocol_interface_declaration, + aux_sym_protocol_declaration_repeat1, + [48835] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10618), 1, + anon_sym___attribute, + ACTIONS(10616), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [48848] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(8878), 1, + anon_sym_LBRACE, + ACTIONS(10620), 1, + sym_identifier, + STATE(3840), 1, + sym_field_declaration_list, + STATE(5554), 1, + sym_ms_declspec_modifier, + [48867] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3311), 1, + anon_sym_ATend, + ACTIONS(3062), 2, + anon_sym_AToptional, + anon_sym_ATrequired, + STATE(5113), 2, + sym_qualified_protocol_interface_declaration, + aux_sym_protocol_declaration_repeat1, + [48882] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2660), 5, + anon_sym_const, + anon_sym_struct, + anon_sym_in, + sym_identifier, + anon_sym_id, + [48893] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10027), 1, + anon_sym_COLON2, + ACTIONS(10622), 1, + sym_identifier, + ACTIONS(10624), 1, + anon_sym_RPAREN, + STATE(5068), 1, + aux_sym_method_identifier_repeat1, + STATE(6550), 1, + sym_method_identifier, + [48912] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4757), 1, + anon_sym_COLON, + ACTIONS(10626), 1, + sym_identifier, + STATE(1693), 1, + sym_method_parameter, + STATE(1733), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + [48929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7743), 1, + sym_identifier, + ACTIONS(7715), 4, + anon_sym_const, + anon_sym_struct, + anon_sym_in, + anon_sym_id, + [48942] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2836), 5, + anon_sym_const, + anon_sym_struct, + anon_sym_in, + sym_identifier, + anon_sym_id, + [48953] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3016), 1, + anon_sym_LT, + ACTIONS(10628), 1, + anon_sym_COMMA, + ACTIONS(10630), 1, + anon_sym_SEMI, + STATE(5405), 1, + sym_parameterized_arguments, + STATE(5407), 1, + aux_sym_class_declaration_repeat1, + [48972] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10632), 1, + anon_sym_ATend, + ACTIONS(3062), 2, + anon_sym_AToptional, + anon_sym_ATrequired, + STATE(5113), 2, + sym_qualified_protocol_interface_declaration, + aux_sym_protocol_declaration_repeat1, + [48987] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2922), 5, + anon_sym_const, + anon_sym_struct, + anon_sym_in, + sym_identifier, + anon_sym_id, + [48998] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4757), 1, + anon_sym_COLON, + ACTIONS(10634), 1, + sym_identifier, + STATE(1685), 1, + sym_method_parameter, + STATE(1726), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + [49015] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 5, + anon_sym_const, + anon_sym_struct, + anon_sym_in, + sym_identifier, + anon_sym_id, + [49026] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10636), 1, + anon_sym_ATend, + ACTIONS(3062), 2, + anon_sym_AToptional, + anon_sym_ATrequired, + STATE(5113), 2, + sym_qualified_protocol_interface_declaration, + aux_sym_protocol_declaration_repeat1, + [49041] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10638), 5, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [49052] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(7077), 1, + anon_sym_LBRACE, + ACTIONS(10640), 1, + sym_identifier, + STATE(2939), 1, + sym_field_declaration_list, + STATE(5371), 1, + sym_ms_declspec_modifier, + [49071] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5606), 5, + anon_sym_const, + anon_sym_struct, + anon_sym_in, + sym_identifier, + anon_sym_id, + [49082] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4757), 1, + anon_sym_COLON, + ACTIONS(10642), 1, + sym_identifier, + STATE(1717), 1, + sym_method_parameter, + STATE(1727), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + [49099] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10644), 5, + anon_sym_COMMA, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + anon_sym_RBRACE, + sym_identifier, + [49110] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3096), 1, + anon_sym_ATend, + ACTIONS(3062), 2, + anon_sym_AToptional, + anon_sym_ATrequired, + STATE(5113), 2, + sym_qualified_protocol_interface_declaration, + aux_sym_protocol_declaration_repeat1, + [49125] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5610), 5, + anon_sym_const, + anon_sym_struct, + anon_sym_in, + sym_identifier, + anon_sym_id, + [49136] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 5, + anon_sym_const, + anon_sym_struct, + anon_sym_in, + sym_identifier, + anon_sym_id, + [49147] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10646), 1, + anon_sym_ATend, + ACTIONS(10648), 2, + anon_sym_AToptional, + anon_sym_ATrequired, + STATE(5113), 2, + sym_qualified_protocol_interface_declaration, + aux_sym_protocol_declaration_repeat1, + [49162] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10651), 1, + anon_sym_COMMA, + ACTIONS(10653), 1, + anon_sym_GT, + ACTIONS(10655), 1, + anon_sym_COLON, + STATE(5205), 1, + aux_sym_parameterized_arguments_repeat1, + STATE(5329), 1, + aux_sym_parameterized_arguments_repeat2, + [49181] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10651), 1, + anon_sym_COMMA, + ACTIONS(10657), 1, + anon_sym_GT, + ACTIONS(10659), 1, + anon_sym_COLON, + STATE(5138), 1, + aux_sym_parameterized_arguments_repeat1, + STATE(5333), 1, + aux_sym_parameterized_arguments_repeat2, + [49200] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10661), 5, + anon_sym_COMMA, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + anon_sym_RBRACE, + sym_identifier, + [49211] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3343), 1, + anon_sym_ATend, + ACTIONS(3062), 2, + anon_sym_AToptional, + anon_sym_ATrequired, + STATE(5113), 2, + sym_qualified_protocol_interface_declaration, + aux_sym_protocol_declaration_repeat1, + [49226] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3353), 1, + anon_sym_ATend, + ACTIONS(3062), 2, + anon_sym_AToptional, + anon_sym_ATrequired, + STATE(5113), 2, + sym_qualified_protocol_interface_declaration, + aux_sym_protocol_declaration_repeat1, + [49241] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4757), 1, + anon_sym_COLON, + ACTIONS(10663), 1, + sym_identifier, + STATE(1697), 1, + sym_method_parameter, + STATE(1724), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + [49258] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3315), 1, + anon_sym_ATend, + ACTIONS(3062), 2, + anon_sym_AToptional, + anon_sym_ATrequired, + STATE(5113), 2, + sym_qualified_protocol_interface_declaration, + aux_sym_protocol_declaration_repeat1, + [49273] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3016), 1, + anon_sym_LT, + ACTIONS(10628), 1, + anon_sym_COMMA, + ACTIONS(10665), 1, + anon_sym_SEMI, + STATE(5620), 1, + sym_parameterized_arguments, + STATE(5621), 1, + aux_sym_class_declaration_repeat1, + [49292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10667), 1, + sym_identifier, + ACTIONS(10669), 4, + anon_sym_const, + anon_sym_struct, + anon_sym_in, + anon_sym_id, + [49305] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5618), 5, + anon_sym_const, + anon_sym_struct, + anon_sym_in, + sym_identifier, + anon_sym_id, + [49316] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10027), 1, + anon_sym_COLON2, + ACTIONS(10622), 1, + sym_identifier, + ACTIONS(10671), 1, + anon_sym_RPAREN, + STATE(5068), 1, + aux_sym_method_identifier_repeat1, + STATE(6623), 1, + sym_method_identifier, + [49335] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10675), 1, + anon_sym_COLON2, + STATE(5125), 1, + aux_sym_method_identifier_repeat1, + ACTIONS(10673), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + sym_identifier, + [49350] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10678), 1, + anon_sym_COMMA, + STATE(5126), 1, + aux_sym_attribute_repeat1, + ACTIONS(9526), 3, + anon_sym_RBRACK, + anon_sym_COLON, + sym_identifier, + [49365] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3339), 1, + anon_sym_ATend, + ACTIONS(3062), 2, + anon_sym_AToptional, + anon_sym_ATrequired, + STATE(5113), 2, + sym_qualified_protocol_interface_declaration, + aux_sym_protocol_declaration_repeat1, + [49380] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4757), 1, + anon_sym_COLON, + ACTIONS(10681), 1, + sym_identifier, + STATE(1712), 1, + sym_method_parameter, + STATE(1732), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + [49397] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10329), 1, + sym_identifier, + STATE(3049), 1, + sym_enumerator, + STATE(5147), 1, + sym_preproc_ifdef_in_enumerator, + ACTIONS(7212), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + [49414] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10683), 5, + anon_sym_COMMA, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + anon_sym_RBRACE, + sym_identifier, + [49425] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3347), 1, + anon_sym_ATend, + ACTIONS(3062), 2, + anon_sym_AToptional, + anon_sym_ATrequired, + STATE(5113), 2, + sym_qualified_protocol_interface_declaration, + aux_sym_protocol_declaration_repeat1, + [49440] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5626), 5, + anon_sym_const, + anon_sym_struct, + anon_sym_in, + sym_identifier, + anon_sym_id, + [49451] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5568), 5, + anon_sym_const, + anon_sym_struct, + anon_sym_in, + sym_identifier, + anon_sym_id, + [49462] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10027), 1, + anon_sym_COLON2, + ACTIONS(10622), 1, + sym_identifier, + ACTIONS(10685), 1, + anon_sym_RPAREN, + STATE(5068), 1, + aux_sym_method_identifier_repeat1, + STATE(6276), 1, + sym_method_identifier, + [49481] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(8878), 1, + anon_sym_LBRACE, + ACTIONS(10687), 1, + sym_identifier, + STATE(3814), 1, + sym_field_declaration_list, + STATE(5555), 1, + sym_ms_declspec_modifier, + [49500] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3016), 1, + anon_sym_LT, + ACTIONS(10628), 1, + anon_sym_COMMA, + ACTIONS(10689), 1, + anon_sym_SEMI, + STATE(5321), 1, + sym_parameterized_arguments, + STATE(5323), 1, + aux_sym_class_declaration_repeat1, + [49519] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3016), 1, + anon_sym_LT, + ACTIONS(10628), 1, + anon_sym_COMMA, + ACTIONS(10691), 1, + anon_sym_SEMI, + STATE(5592), 1, + sym_parameterized_arguments, + STATE(5593), 1, + aux_sym_class_declaration_repeat1, + [49538] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10651), 1, + anon_sym_COMMA, + ACTIONS(10693), 1, + anon_sym_GT, + ACTIONS(10695), 1, + anon_sym_COLON, + STATE(5205), 1, + aux_sym_parameterized_arguments_repeat1, + STATE(5702), 1, + aux_sym_parameterized_arguments_repeat2, + [49557] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3068), 1, + anon_sym_ATend, + ACTIONS(3062), 2, + anon_sym_AToptional, + anon_sym_ATrequired, + STATE(5113), 2, + sym_qualified_protocol_interface_declaration, + aux_sym_protocol_declaration_repeat1, + [49572] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5634), 5, + anon_sym_const, + anon_sym_struct, + anon_sym_in, + sym_identifier, + anon_sym_id, + [49583] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3287), 1, + anon_sym_ATend, + ACTIONS(3062), 2, + anon_sym_AToptional, + anon_sym_ATrequired, + STATE(5113), 2, + sym_qualified_protocol_interface_declaration, + aux_sym_protocol_declaration_repeat1, + [49598] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9517), 1, + anon_sym_COMMA, + STATE(5126), 1, + aux_sym_attribute_repeat1, + ACTIONS(10697), 3, + anon_sym_RBRACK, + anon_sym_COLON, + sym_identifier, + [49613] = 4, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10701), 1, + anon_sym_LPAREN2, + STATE(5143), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(10699), 3, + sym_identifier, + aux_sym_selector_expression_token1, + anon_sym_COLON2, + [49628] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3313), 1, + anon_sym_ATend, + ACTIONS(3062), 2, + anon_sym_AToptional, + anon_sym_ATrequired, + STATE(5113), 2, + sym_qualified_protocol_interface_declaration, + aux_sym_protocol_declaration_repeat1, + [49643] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(7077), 1, + anon_sym_LBRACE, + ACTIONS(10704), 1, + sym_identifier, + STATE(2942), 1, + sym_field_declaration_list, + STATE(5404), 1, + sym_ms_declspec_modifier, + [49662] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3100), 1, + anon_sym_ATend, + ACTIONS(3062), 2, + anon_sym_AToptional, + anon_sym_ATrequired, + STATE(5113), 2, + sym_qualified_protocol_interface_declaration, + aux_sym_protocol_declaration_repeat1, + [49677] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7657), 5, + anon_sym_COMMA, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + anon_sym_RBRACE, + sym_identifier, + [49688] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3319), 1, + anon_sym_ATend, + ACTIONS(3062), 2, + anon_sym_AToptional, + anon_sym_ATrequired, + STATE(5113), 2, + sym_qualified_protocol_interface_declaration, + aux_sym_protocol_declaration_repeat1, + [49703] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10706), 5, + anon_sym_COMMA, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + anon_sym_RBRACE, + sym_identifier, + [49714] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4757), 1, + anon_sym_COLON, + ACTIONS(10708), 1, + sym_identifier, + STATE(1689), 1, + sym_method_parameter, + STATE(1725), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + [49731] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3016), 1, + anon_sym_LT, + ACTIONS(10628), 1, + anon_sym_COMMA, + ACTIONS(10710), 1, + anon_sym_SEMI, + STATE(5339), 1, + sym_parameterized_arguments, + STATE(5340), 1, + aux_sym_class_declaration_repeat1, + [49750] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2804), 5, + anon_sym_const, + anon_sym_struct, + anon_sym_in, + sym_identifier, + anon_sym_id, + [49761] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2966), 5, + anon_sym_const, + anon_sym_struct, + anon_sym_in, + sym_identifier, + anon_sym_id, + [49772] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5614), 5, + anon_sym_const, + anon_sym_struct, + anon_sym_in, + sym_identifier, + anon_sym_id, + [49783] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3072), 1, + anon_sym_ATend, + ACTIONS(3062), 2, + anon_sym_AToptional, + anon_sym_ATrequired, + STATE(5113), 2, + sym_qualified_protocol_interface_declaration, + aux_sym_protocol_declaration_repeat1, + [49798] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10712), 1, + anon_sym_ATend, + ACTIONS(3062), 2, + anon_sym_AToptional, + anon_sym_ATrequired, + STATE(5113), 2, + sym_qualified_protocol_interface_declaration, + aux_sym_protocol_declaration_repeat1, + [49813] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10714), 1, + anon_sym_ATend, + ACTIONS(3062), 2, + anon_sym_AToptional, + anon_sym_ATrequired, + STATE(5113), 2, + sym_qualified_protocol_interface_declaration, + aux_sym_protocol_declaration_repeat1, + [49828] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10567), 1, + anon_sym_COLON2, + STATE(5125), 1, + aux_sym_method_identifier_repeat1, + ACTIONS(10716), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + sym_identifier, + [49843] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10720), 1, + anon_sym_COMMA, + STATE(5159), 1, + aux_sym_preproc_params_repeat1, + ACTIONS(10718), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RPAREN, + [49857] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10723), 1, + anon_sym_DQUOTE, + ACTIONS(10725), 1, + aux_sym_string_literal_token1, + ACTIONS(10727), 1, + sym_escape_sequence, + STATE(5194), 1, + aux_sym_string_literal_repeat1, + [49873] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(10729), 1, + anon_sym_SEMI, + STATE(6298), 1, + sym_attribute_specifier, + [49889] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10723), 1, + anon_sym_DQUOTE, + ACTIONS(10731), 1, + aux_sym_string_literal_token1, + ACTIONS(10733), 1, + sym_escape_sequence, + STATE(5278), 1, + aux_sym_string_literal_repeat1, + [49905] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_LBRACE, + ACTIONS(10735), 1, + sym_identifier, + ACTIONS(10737), 1, + anon_sym_COLON, + STATE(3114), 1, + sym_enumerator_list, + [49921] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(8960), 1, + anon_sym_LBRACK, + ACTIONS(10739), 1, + anon_sym_RPAREN, + STATE(4820), 1, + sym_parameter_list, + [49937] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10741), 1, + anon_sym_COMMA, + ACTIONS(10743), 1, + anon_sym_SEMI, + ACTIONS(10745), 1, + anon_sym_EQ, + STATE(5356), 1, + aux_sym_property_implementation_repeat1, + [49953] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8913), 1, + anon_sym_LBRACE, + ACTIONS(10747), 1, + sym_identifier, + ACTIONS(10749), 1, + anon_sym_COLON, + STATE(3853), 1, + sym_enumerator_list, + [49969] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10751), 1, + anon_sym_DQUOTE, + ACTIONS(10753), 1, + aux_sym_string_literal_token1, + ACTIONS(10755), 1, + sym_escape_sequence, + STATE(5215), 1, + aux_sym_string_literal_repeat1, + [49985] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10753), 1, + aux_sym_string_literal_token1, + ACTIONS(10755), 1, + sym_escape_sequence, + ACTIONS(10757), 1, + anon_sym_DQUOTE, + STATE(5215), 1, + aux_sym_string_literal_repeat1, + [50001] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10759), 1, + anon_sym_LPAREN2, + ACTIONS(10761), 1, + anon_sym_LBRACE, + ACTIONS(10763), 1, + anon_sym_ATautoreleasepool, + STATE(195), 1, + sym_compound_statement, + [50017] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8203), 1, + anon_sym_LBRACK, + ACTIONS(8269), 1, + anon_sym_RPAREN, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + STATE(4327), 1, + sym_parameter_list, + [50033] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8203), 1, + anon_sym_LBRACK, + ACTIONS(8217), 1, + anon_sym_RPAREN, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + STATE(4327), 1, + sym_parameter_list, + [50049] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10125), 1, + anon_sym_COLON2, + ACTIONS(10765), 1, + anon_sym_RPAREN, + STATE(1455), 1, + aux_sym_selector_expression_repeat2, + STATE(5035), 1, + aux_sym_method_identifier_repeat1, + [50065] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(10767), 1, + anon_sym_SEMI, + STATE(6226), 1, + sym_attribute_specifier, + [50081] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8203), 1, + anon_sym_LBRACK, + ACTIONS(8253), 1, + anon_sym_RPAREN, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + STATE(4327), 1, + sym_parameter_list, + [50097] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(10769), 1, + anon_sym_SEMI, + STATE(6240), 1, + sym_attribute_specifier, + [50113] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8203), 1, + anon_sym_LBRACK, + ACTIONS(8265), 1, + anon_sym_RPAREN, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + STATE(4327), 1, + sym_parameter_list, + [50129] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_LBRACE, + ACTIONS(10737), 1, + anon_sym_COLON, + ACTIONS(10771), 1, + sym_identifier, + STATE(3114), 1, + sym_enumerator_list, + [50145] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10773), 1, + anon_sym_DQUOTE, + ACTIONS(10775), 1, + aux_sym_string_literal_token1, + ACTIONS(10777), 1, + sym_escape_sequence, + STATE(5183), 1, + aux_sym_string_literal_repeat1, + [50161] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10779), 1, + aux_sym_preproc_include_token3, + ACTIONS(10781), 1, + anon_sym_LPAREN, + ACTIONS(10783), 1, + sym_preproc_arg, + STATE(5792), 1, + sym_preproc_params, + [50177] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10785), 1, + anon_sym_COMMA, + STATE(5180), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(10788), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [50191] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8913), 1, + anon_sym_LBRACE, + ACTIONS(10584), 1, + anon_sym_COLON, + ACTIONS(10790), 1, + sym_identifier, + STATE(4107), 1, + sym_enumerator_list, + [50207] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10792), 1, + anon_sym_COMMA, + STATE(5209), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(10794), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [50221] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10753), 1, + aux_sym_string_literal_token1, + ACTIONS(10755), 1, + sym_escape_sequence, + ACTIONS(10796), 1, + anon_sym_DQUOTE, + STATE(5215), 1, + aux_sym_string_literal_repeat1, + [50237] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10798), 1, + anon_sym_COMMA, + STATE(5210), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(10800), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [50251] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10802), 1, + anon_sym_DQUOTE, + ACTIONS(10804), 1, + aux_sym_string_literal_token1, + ACTIONS(10806), 1, + sym_escape_sequence, + STATE(5167), 1, + aux_sym_string_literal_repeat1, + [50267] = 4, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10808), 1, + anon_sym_SQUOTE, + STATE(5186), 1, + aux_sym_char_literal_repeat1, + ACTIONS(10810), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [50281] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8913), 1, + anon_sym_LBRACE, + ACTIONS(10813), 1, + sym_identifier, + ACTIONS(10815), 1, + anon_sym_COLON, + STATE(4118), 1, + sym_enumerator_list, + [50297] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10741), 1, + anon_sym_COMMA, + ACTIONS(10817), 1, + anon_sym_SEMI, + ACTIONS(10819), 1, + anon_sym_EQ, + STATE(5561), 1, + aux_sym_property_implementation_repeat1, + [50313] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10753), 1, + aux_sym_string_literal_token1, + ACTIONS(10755), 1, + sym_escape_sequence, + ACTIONS(10821), 1, + anon_sym_DQUOTE, + STATE(5215), 1, + aux_sym_string_literal_repeat1, + [50329] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10823), 1, + anon_sym_LPAREN2, + ACTIONS(10825), 1, + anon_sym_LBRACE, + ACTIONS(10827), 1, + anon_sym_ATautoreleasepool, + STATE(235), 1, + sym_compound_statement, + [50345] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10741), 1, + anon_sym_COMMA, + ACTIONS(10829), 1, + anon_sym_SEMI, + ACTIONS(10831), 1, + anon_sym_EQ, + STATE(5368), 1, + aux_sym_property_implementation_repeat1, + [50361] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10781), 1, + anon_sym_LPAREN, + ACTIONS(10833), 1, + aux_sym_preproc_include_token3, + ACTIONS(10835), 1, + sym_preproc_arg, + STATE(5799), 1, + sym_preproc_params, + [50377] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_LBRACE, + ACTIONS(10571), 1, + anon_sym_COLON, + ACTIONS(10837), 1, + sym_identifier, + STATE(4185), 1, + sym_enumerator_list, + [50393] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10753), 1, + aux_sym_string_literal_token1, + ACTIONS(10755), 1, + sym_escape_sequence, + ACTIONS(10839), 1, + anon_sym_DQUOTE, + STATE(5215), 1, + aux_sym_string_literal_repeat1, + [50409] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10796), 1, + anon_sym_DQUOTE, + ACTIONS(10841), 1, + aux_sym_string_literal_token1, + ACTIONS(10843), 1, + sym_escape_sequence, + STATE(5189), 1, + aux_sym_string_literal_repeat1, + [50425] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10847), 1, + anon_sym_COLON, + STATE(5251), 1, + aux_sym_message_expression_repeat1, + ACTIONS(10845), 2, + anon_sym_RBRACK, + sym_identifier, + [50439] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_LBRACE, + ACTIONS(10849), 1, + sym_identifier, + ACTIONS(10851), 1, + anon_sym_COLON, + STATE(4175), 1, + sym_enumerator_list, + [50455] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10853), 1, + anon_sym_LPAREN2, + ACTIONS(10855), 1, + anon_sym_LBRACE, + ACTIONS(10857), 1, + anon_sym_ATautoreleasepool, + STATE(1090), 1, + sym_compound_statement, + [50471] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(8960), 1, + anon_sym_LBRACK, + ACTIONS(10859), 1, + anon_sym_RPAREN, + STATE(4820), 1, + sym_parameter_list, + [50487] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10781), 1, + anon_sym_LPAREN, + ACTIONS(10861), 1, + aux_sym_preproc_include_token3, + ACTIONS(10863), 1, + sym_preproc_arg, + STATE(5895), 1, + sym_preproc_params, + [50503] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10781), 1, + anon_sym_LPAREN, + ACTIONS(10865), 1, + aux_sym_preproc_include_token3, + ACTIONS(10867), 1, + sym_preproc_arg, + STATE(5853), 1, + sym_preproc_params, + [50519] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10869), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10871), 1, + anon_sym_COMMA, + ACTIONS(10873), 1, + anon_sym_RPAREN, + STATE(5159), 1, + aux_sym_preproc_params_repeat1, + [50535] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10875), 1, + anon_sym_LPAREN2, + ACTIONS(10877), 1, + anon_sym_LBRACE, + ACTIONS(10879), 1, + anon_sym_ATautoreleasepool, + STATE(185), 1, + sym_compound_statement, + [50551] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10881), 1, + anon_sym_COMMA, + ACTIONS(10885), 1, + anon_sym_GT, + ACTIONS(10888), 1, + anon_sym_COLON, + STATE(5291), 1, + aux_sym_parameterized_arguments_repeat1, + [50567] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10891), 1, + anon_sym_COMMA, + STATE(5205), 1, + aux_sym_parameterized_arguments_repeat1, + ACTIONS(10894), 2, + anon_sym_GT, + anon_sym_COLON, + [50581] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(10896), 1, + anon_sym_SEMI, + STATE(6668), 1, + sym_attribute_specifier, + [50597] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10161), 1, + sym_identifier, + ACTIONS(10898), 1, + aux_sym_preproc_if_token2, + STATE(4970), 1, + aux_sym_preproc_ifdef_in_enumerator_repeat1, + STATE(6283), 1, + sym_enumerator, + [50613] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10474), 1, + anon_sym_LBRACK, + ACTIONS(10900), 1, + anon_sym_RPAREN, + STATE(4292), 1, + sym_parameter_list, + [50629] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10902), 1, + anon_sym_COMMA, + STATE(5209), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(10905), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [50643] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10798), 1, + anon_sym_COMMA, + STATE(5221), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(10907), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [50657] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10741), 1, + anon_sym_COMMA, + ACTIONS(10909), 1, + anon_sym_SEMI, + ACTIONS(10911), 1, + anon_sym_EQ, + STATE(5695), 1, + aux_sym_property_implementation_repeat1, + [50673] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10913), 1, + anon_sym_LPAREN2, + ACTIONS(10915), 1, + anon_sym_LBRACE, + ACTIONS(10917), 1, + anon_sym_ATautoreleasepool, + STATE(363), 1, + sym_compound_statement, + [50689] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10753), 1, + aux_sym_string_literal_token1, + ACTIONS(10755), 1, + sym_escape_sequence, + ACTIONS(10919), 1, + anon_sym_DQUOTE, + STATE(5215), 1, + aux_sym_string_literal_repeat1, + [50705] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(8960), 1, + anon_sym_LBRACK, + ACTIONS(10921), 1, + anon_sym_RPAREN, + STATE(4820), 1, + sym_parameter_list, + [50721] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10923), 1, + anon_sym_DQUOTE, + ACTIONS(10925), 1, + aux_sym_string_literal_token1, + ACTIONS(10928), 1, + sym_escape_sequence, + STATE(5215), 1, + aux_sym_string_literal_repeat1, + [50737] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(10931), 1, + anon_sym_SEMI, + STATE(6358), 1, + sym_attribute_specifier, + [50753] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8213), 1, + anon_sym_LBRACE, + ACTIONS(8215), 1, + anon_sym_ATautoreleasepool, + ACTIONS(10933), 1, + anon_sym_LPAREN2, + STATE(363), 1, + sym_compound_statement, + [50769] = 4, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10935), 1, + anon_sym_SQUOTE, + STATE(5186), 1, + aux_sym_char_literal_repeat1, + ACTIONS(10937), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [50783] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10939), 1, + anon_sym_DQUOTE, + ACTIONS(10941), 1, + aux_sym_string_literal_token1, + ACTIONS(10943), 1, + sym_escape_sequence, + STATE(5213), 1, + aux_sym_string_literal_repeat1, + [50799] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10723), 1, + anon_sym_DQUOTE, + ACTIONS(10753), 1, + aux_sym_string_literal_token1, + ACTIONS(10755), 1, + sym_escape_sequence, + STATE(5215), 1, + aux_sym_string_literal_repeat1, + [50815] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10945), 1, + anon_sym_COMMA, + STATE(5221), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(10948), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [50829] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8203), 1, + anon_sym_LBRACK, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10950), 1, + anon_sym_RPAREN, + STATE(4327), 1, + sym_parameter_list, + [50845] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10753), 1, + aux_sym_string_literal_token1, + ACTIONS(10755), 1, + sym_escape_sequence, + ACTIONS(10952), 1, + anon_sym_DQUOTE, + STATE(5215), 1, + aux_sym_string_literal_repeat1, + [50861] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(10954), 1, + anon_sym_SEMI, + STATE(6396), 1, + sym_attribute_specifier, + [50877] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10871), 1, + anon_sym_COMMA, + ACTIONS(10956), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10958), 1, + anon_sym_RPAREN, + STATE(5202), 1, + aux_sym_preproc_params_repeat1, + [50893] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(10960), 1, + anon_sym_SEMI, + STATE(6549), 1, + sym_attribute_specifier, + [50909] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(10962), 1, + anon_sym_SEMI, + STATE(6033), 1, + sym_attribute_specifier, + [50925] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(10964), 1, + anon_sym_SEMI, + STATE(6039), 1, + sym_attribute_specifier, + [50941] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(10966), 1, + anon_sym_SEMI, + STATE(6040), 1, + sym_attribute_specifier, + [50957] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(10968), 1, + anon_sym_SEMI, + STATE(6055), 1, + sym_attribute_specifier, + [50973] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(10970), 1, + anon_sym_SEMI, + STATE(6592), 1, + sym_attribute_specifier, + [50989] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10972), 1, + anon_sym_DQUOTE, + ACTIONS(10974), 1, + aux_sym_string_literal_token1, + ACTIONS(10976), 1, + sym_escape_sequence, + STATE(5254), 1, + aux_sym_string_literal_repeat1, + [51005] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_LBRACE, + ACTIONS(10592), 1, + anon_sym_COLON, + ACTIONS(10978), 1, + sym_identifier, + STATE(3195), 1, + sym_enumerator_list, + [51021] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(10980), 1, + anon_sym_SEMI, + STATE(5938), 1, + sym_attribute_specifier, + [51037] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(10982), 1, + anon_sym_SEMI, + STATE(6087), 1, + sym_attribute_specifier, + [51053] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10781), 1, + anon_sym_LPAREN, + ACTIONS(10984), 1, + aux_sym_preproc_include_token3, + ACTIONS(10986), 1, + sym_preproc_arg, + STATE(5845), 1, + sym_preproc_params, + [51069] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(10988), 1, + anon_sym_SEMI, + STATE(6095), 1, + sym_attribute_specifier, + [51085] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8203), 1, + anon_sym_LBRACK, + ACTIONS(8237), 1, + anon_sym_RPAREN, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + STATE(4327), 1, + sym_parameter_list, + [51101] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9576), 1, + anon_sym_COMMA, + ACTIONS(10990), 1, + anon_sym_RPAREN, + ACTIONS(10992), 1, + anon_sym_EQ, + STATE(5519), 1, + aux_sym_availability_repeat1, + [51117] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10994), 1, + anon_sym_COMMA, + STATE(5180), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(10996), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [51131] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10792), 1, + anon_sym_COMMA, + STATE(5182), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(10998), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [51145] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11000), 1, + anon_sym_DQUOTE, + ACTIONS(11002), 1, + aux_sym_string_literal_token1, + ACTIONS(11004), 1, + sym_escape_sequence, + STATE(5284), 1, + aux_sym_string_literal_repeat1, + [51161] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10563), 1, + sym_identifier, + STATE(5296), 1, + aux_sym_method_identifier_repeat2, + ACTIONS(10565), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51175] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11006), 1, + anon_sym_COMMA, + STATE(5244), 1, + aux_sym_protocol_forward_declaration_repeat1, + ACTIONS(11009), 2, + anon_sym_GT, + anon_sym_SEMI, + [51189] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11011), 1, + anon_sym_DQUOTE, + ACTIONS(11013), 1, + aux_sym_string_literal_token1, + ACTIONS(11015), 1, + sym_escape_sequence, + STATE(5256), 1, + aux_sym_string_literal_repeat1, + [51205] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10781), 1, + anon_sym_LPAREN, + ACTIONS(11017), 1, + aux_sym_preproc_include_token3, + ACTIONS(11019), 1, + sym_preproc_arg, + STATE(5764), 1, + sym_preproc_params, + [51221] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10781), 1, + anon_sym_LPAREN, + ACTIONS(11021), 1, + aux_sym_preproc_include_token3, + ACTIONS(11023), 1, + sym_preproc_arg, + STATE(5841), 1, + sym_preproc_params, + [51237] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_LBRACE, + ACTIONS(10571), 1, + anon_sym_COLON, + ACTIONS(11025), 1, + sym_identifier, + STATE(4185), 1, + sym_enumerator_list, + [51253] = 4, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11027), 1, + anon_sym_SQUOTE, + STATE(5186), 1, + aux_sym_char_literal_repeat1, + ACTIONS(10937), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [51267] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8913), 1, + anon_sym_LBRACE, + ACTIONS(10598), 1, + anon_sym_COLON, + ACTIONS(11029), 1, + sym_identifier, + STATE(3973), 1, + sym_enumerator_list, + [51283] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11031), 1, + anon_sym_COLON, + STATE(5251), 1, + aux_sym_message_expression_repeat1, + ACTIONS(9515), 2, + anon_sym_RBRACK, + sym_identifier, + [51297] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11034), 1, + anon_sym_DQUOTE, + ACTIONS(11036), 1, + aux_sym_string_literal_token1, + ACTIONS(11038), 1, + sym_escape_sequence, + STATE(5268), 1, + aux_sym_string_literal_repeat1, + [51313] = 4, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11040), 1, + anon_sym_SQUOTE, + STATE(5186), 1, + aux_sym_char_literal_repeat1, + ACTIONS(10937), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [51327] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10753), 1, + aux_sym_string_literal_token1, + ACTIONS(10755), 1, + sym_escape_sequence, + ACTIONS(11042), 1, + anon_sym_DQUOTE, + STATE(5215), 1, + aux_sym_string_literal_repeat1, + [51343] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11044), 1, + anon_sym_DQUOTE, + ACTIONS(11046), 1, + aux_sym_string_literal_token1, + ACTIONS(11048), 1, + sym_escape_sequence, + STATE(5264), 1, + aux_sym_string_literal_repeat1, + [51359] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10753), 1, + aux_sym_string_literal_token1, + ACTIONS(10755), 1, + sym_escape_sequence, + ACTIONS(11050), 1, + anon_sym_DQUOTE, + STATE(5215), 1, + aux_sym_string_literal_repeat1, + [51375] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10161), 1, + sym_identifier, + ACTIONS(11052), 1, + aux_sym_preproc_if_token2, + STATE(5207), 1, + aux_sym_preproc_ifdef_in_enumerator_repeat1, + STATE(6283), 1, + sym_enumerator, + [51391] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11054), 1, + anon_sym_DQUOTE, + ACTIONS(11056), 1, + aux_sym_string_literal_token1, + ACTIONS(11058), 1, + sym_escape_sequence, + STATE(5275), 1, + aux_sym_string_literal_repeat1, + [51407] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11060), 1, + anon_sym_COMMA, + ACTIONS(11062), 1, + anon_sym_RPAREN, + STATE(5594), 1, + aux_sym_parameter_list_repeat1, + STATE(5684), 1, + aux_sym__old_style_parameter_list_repeat1, + [51423] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10731), 1, + aux_sym_string_literal_token1, + ACTIONS(10733), 1, + sym_escape_sequence, + ACTIONS(11050), 1, + anon_sym_DQUOTE, + STATE(5278), 1, + aux_sym_string_literal_repeat1, + [51439] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(8960), 1, + anon_sym_LBRACK, + ACTIONS(11064), 1, + anon_sym_RPAREN, + STATE(4820), 1, + sym_parameter_list, + [51455] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(10474), 1, + anon_sym_LBRACK, + ACTIONS(11066), 1, + anon_sym_RPAREN, + STATE(4292), 1, + sym_parameter_list, + [51471] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8913), 1, + anon_sym_LBRACE, + ACTIONS(10749), 1, + anon_sym_COLON, + ACTIONS(11068), 1, + sym_identifier, + STATE(3853), 1, + sym_enumerator_list, + [51487] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10753), 1, + aux_sym_string_literal_token1, + ACTIONS(10755), 1, + sym_escape_sequence, + ACTIONS(11070), 1, + anon_sym_DQUOTE, + STATE(5215), 1, + aux_sym_string_literal_repeat1, + [51503] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_LBRACE, + ACTIONS(10851), 1, + anon_sym_COLON, + ACTIONS(11072), 1, + sym_identifier, + STATE(4175), 1, + sym_enumerator_list, + [51519] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8199), 1, + anon_sym_RPAREN, + ACTIONS(8203), 1, + anon_sym_LBRACK, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + STATE(4327), 1, + sym_parameter_list, + [51535] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10125), 1, + anon_sym_COLON2, + ACTIONS(11074), 1, + anon_sym_RPAREN, + STATE(1625), 1, + aux_sym_selector_expression_repeat2, + STATE(5035), 1, + aux_sym_method_identifier_repeat1, + [51551] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10753), 1, + aux_sym_string_literal_token1, + ACTIONS(10755), 1, + sym_escape_sequence, + ACTIONS(11076), 1, + anon_sym_DQUOTE, + STATE(5215), 1, + aux_sym_string_literal_repeat1, + [51567] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10125), 1, + anon_sym_COLON2, + ACTIONS(11078), 1, + anon_sym_RPAREN, + STATE(4371), 1, + aux_sym_selector_expression_repeat2, + STATE(5035), 1, + aux_sym_method_identifier_repeat1, + [51583] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10125), 1, + anon_sym_COLON2, + ACTIONS(11080), 1, + anon_sym_RPAREN, + STATE(4500), 1, + aux_sym_selector_expression_repeat2, + STATE(5035), 1, + aux_sym_method_identifier_repeat1, + [51599] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8913), 1, + anon_sym_LBRACE, + ACTIONS(10598), 1, + anon_sym_COLON, + ACTIONS(11082), 1, + sym_identifier, + STATE(3973), 1, + sym_enumerator_list, + [51615] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(11084), 1, + anon_sym_SEMI, + STATE(6440), 1, + sym_attribute_specifier, + [51631] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10741), 1, + anon_sym_COMMA, + ACTIONS(11086), 1, + anon_sym_SEMI, + ACTIONS(11088), 1, + anon_sym_EQ, + STATE(5602), 1, + aux_sym_property_implementation_repeat1, + [51647] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9242), 1, + anon_sym_COLON_COLON, + ACTIONS(11090), 1, + anon_sym_LPAREN2, + ACTIONS(9237), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [51661] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10753), 1, + aux_sym_string_literal_token1, + ACTIONS(10755), 1, + sym_escape_sequence, + ACTIONS(11092), 1, + anon_sym_DQUOTE, + STATE(5215), 1, + aux_sym_string_literal_repeat1, + [51677] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11094), 1, + anon_sym_LPAREN2, + ACTIONS(11096), 1, + anon_sym_LBRACE, + ACTIONS(11098), 1, + anon_sym_ATautoreleasepool, + STATE(405), 1, + sym_compound_statement, + [51693] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10741), 1, + anon_sym_COMMA, + ACTIONS(11100), 1, + anon_sym_SEMI, + ACTIONS(11102), 1, + anon_sym_EQ, + STATE(5642), 1, + aux_sym_property_implementation_repeat1, + [51709] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10753), 1, + aux_sym_string_literal_token1, + ACTIONS(10755), 1, + sym_escape_sequence, + ACTIONS(11104), 1, + anon_sym_DQUOTE, + STATE(5215), 1, + aux_sym_string_literal_repeat1, + [51725] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(8960), 1, + anon_sym_LBRACK, + ACTIONS(11106), 1, + anon_sym_RPAREN, + STATE(4820), 1, + sym_parameter_list, + [51741] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10781), 1, + anon_sym_LPAREN, + ACTIONS(11108), 1, + aux_sym_preproc_include_token3, + ACTIONS(11110), 1, + sym_preproc_arg, + STATE(5876), 1, + sym_preproc_params, + [51757] = 4, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11112), 1, + anon_sym_SQUOTE, + STATE(5186), 1, + aux_sym_char_literal_repeat1, + ACTIONS(10937), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [51771] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11114), 1, + anon_sym_DQUOTE, + ACTIONS(11116), 1, + aux_sym_string_literal_token1, + ACTIONS(11118), 1, + sym_escape_sequence, + STATE(5168), 1, + aux_sym_string_literal_repeat1, + [51787] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11120), 1, + anon_sym_LPAREN2, + ACTIONS(11122), 1, + anon_sym_LBRACE, + ACTIONS(11124), 1, + anon_sym_ATautoreleasepool, + STATE(729), 1, + sym_compound_statement, + [51803] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10753), 1, + aux_sym_string_literal_token1, + ACTIONS(10755), 1, + sym_escape_sequence, + ACTIONS(11054), 1, + anon_sym_DQUOTE, + STATE(5215), 1, + aux_sym_string_literal_repeat1, + [51819] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11042), 1, + anon_sym_DQUOTE, + ACTIONS(11126), 1, + aux_sym_string_literal_token1, + ACTIONS(11128), 1, + sym_escape_sequence, + STATE(5223), 1, + aux_sym_string_literal_repeat1, + [51835] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11130), 1, + anon_sym_DQUOTE, + ACTIONS(11132), 1, + aux_sym_string_literal_token1, + ACTIONS(11134), 1, + sym_escape_sequence, + STATE(5220), 1, + aux_sym_string_literal_repeat1, + [51851] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(11136), 1, + anon_sym_SEMI, + STATE(6661), 1, + sym_attribute_specifier, + [51867] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(8960), 1, + anon_sym_LBRACK, + ACTIONS(11138), 1, + anon_sym_RPAREN, + STATE(4820), 1, + sym_parameter_list, + [51883] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11060), 1, + anon_sym_COMMA, + ACTIONS(11140), 1, + anon_sym_RPAREN, + STATE(5614), 1, + aux_sym_parameter_list_repeat1, + STATE(5684), 1, + aux_sym__old_style_parameter_list_repeat1, + [51899] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10994), 1, + anon_sym_COMMA, + STATE(5240), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(11142), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [51913] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11144), 1, + anon_sym_COMMA, + ACTIONS(11147), 1, + anon_sym_GT, + ACTIONS(11149), 1, + anon_sym_COLON, + STATE(5205), 1, + aux_sym_parameterized_arguments_repeat1, + [51929] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3016), 1, + anon_sym_LT, + STATE(5733), 1, + sym_parameterized_arguments, + ACTIONS(11151), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [51943] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11153), 1, + anon_sym_COMMA, + ACTIONS(11157), 1, + anon_sym_GT, + ACTIONS(11160), 1, + anon_sym_COLON, + STATE(5300), 1, + aux_sym_parameterized_arguments_repeat1, + [51959] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10563), 1, + sym_identifier, + STATE(5296), 1, + aux_sym_method_identifier_repeat2, + ACTIONS(11163), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51973] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11165), 1, + anon_sym_DQUOTE, + ACTIONS(11167), 1, + aux_sym_string_literal_token1, + ACTIONS(11169), 1, + sym_escape_sequence, + STATE(5308), 1, + aux_sym_string_literal_repeat1, + [51989] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11171), 1, + sym_identifier, + STATE(5296), 1, + aux_sym_method_identifier_repeat2, + ACTIONS(10716), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [52003] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11174), 1, + anon_sym_COMMA, + ACTIONS(11177), 1, + anon_sym_GT, + ACTIONS(11179), 1, + anon_sym_COLON, + STATE(5291), 1, + aux_sym_parameterized_arguments_repeat1, + [52019] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10847), 1, + anon_sym_COLON, + STATE(5196), 1, + aux_sym_message_expression_repeat1, + ACTIONS(11181), 2, + anon_sym_RBRACK, + sym_identifier, + [52033] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10781), 1, + anon_sym_LPAREN, + ACTIONS(11183), 1, + aux_sym_preproc_include_token3, + ACTIONS(11185), 1, + sym_preproc_arg, + STATE(5837), 1, + sym_preproc_params, + [52049] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11187), 1, + anon_sym_COMMA, + ACTIONS(11190), 1, + anon_sym_GT, + ACTIONS(11192), 1, + anon_sym_COLON, + STATE(5205), 1, + aux_sym_parameterized_arguments_repeat1, + [52065] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_LBRACE, + ACTIONS(10592), 1, + anon_sym_COLON, + ACTIONS(11194), 1, + sym_identifier, + STATE(3195), 1, + sym_enumerator_list, + [52081] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(11196), 1, + anon_sym_SEMI, + STATE(6753), 1, + sym_attribute_specifier, + [52097] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(11198), 1, + anon_sym_SEMI, + STATE(5951), 1, + sym_attribute_specifier, + [52113] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(11200), 1, + anon_sym_SEMI, + STATE(6219), 1, + sym_attribute_specifier, + [52129] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute, + ACTIONS(6865), 1, + anon_sym___attribute__, + ACTIONS(11202), 1, + anon_sym_SEMI, + STATE(6479), 1, + sym_attribute_specifier, + [52145] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11204), 1, + anon_sym_COMMA, + ACTIONS(11207), 1, + anon_sym_GT, + ACTIONS(11209), 1, + anon_sym_COLON, + STATE(5300), 1, + aux_sym_parameterized_arguments_repeat1, + [52161] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8203), 1, + anon_sym_LBRACK, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(11211), 1, + anon_sym_RPAREN, + STATE(4327), 1, + sym_parameter_list, + [52177] = 5, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10753), 1, + aux_sym_string_literal_token1, + ACTIONS(10755), 1, + sym_escape_sequence, + ACTIONS(10802), 1, + anon_sym_DQUOTE, + STATE(5215), 1, + aux_sym_string_literal_repeat1, + [52193] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10458), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_identifier, + [52203] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11213), 1, + anon_sym_RPAREN, + ACTIONS(11215), 1, + anon_sym_COLON, + STATE(5524), 1, + sym_gnu_asm_clobber_list, + [52216] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10741), 1, + anon_sym_COMMA, + ACTIONS(11217), 1, + anon_sym_SEMI, + STATE(5461), 1, + aux_sym_property_implementation_repeat1, + [52229] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11219), 1, + anon_sym_COMMA, + ACTIONS(11221), 1, + anon_sym_GT, + STATE(5543), 1, + aux_sym_argument_list_repeat2, + [52242] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2094), 1, + anon_sym_LBRACE, + ACTIONS(2096), 1, + anon_sym_ATautoreleasepool, + STATE(1169), 1, + sym_compound_statement, + [52255] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4657), 1, + anon_sym_LBRACE, + ACTIONS(4659), 1, + anon_sym_ATautoreleasepool, + STATE(2321), 1, + sym_compound_statement, + [52268] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2094), 1, + anon_sym_LBRACE, + ACTIONS(2096), 1, + anon_sym_ATautoreleasepool, + STATE(1164), 1, + sym_compound_statement, + [52281] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2094), 1, + anon_sym_LBRACE, + ACTIONS(2096), 1, + anon_sym_ATautoreleasepool, + STATE(1161), 1, + sym_compound_statement, + [52294] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11223), 1, + anon_sym_SEMI, + STATE(5244), 1, + aux_sym_protocol_forward_declaration_repeat1, + [52307] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9899), 1, + anon_sym_COMMA, + ACTIONS(11225), 1, + anon_sym_RPAREN, + STATE(5532), 1, + aux_sym_preproc_argument_list_repeat1, + [52320] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11227), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_COLON, + [52329] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11229), 1, + anon_sym_COMMA, + ACTIONS(11231), 1, + anon_sym_GT, + STATE(5331), 1, + aux_sym_parameterized_arguments_repeat2, + [52342] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10628), 1, + anon_sym_COMMA, + ACTIONS(11233), 1, + anon_sym_SEMI, + STATE(5391), 1, + aux_sym_class_declaration_repeat1, + [52355] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9530), 1, + anon_sym_COMMA, + ACTIONS(11235), 1, + anon_sym_RPAREN, + STATE(5528), 1, + aux_sym_attribute_repeat1, + [52368] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10628), 1, + anon_sym_COMMA, + ACTIONS(11233), 1, + anon_sym_SEMI, + STATE(5640), 1, + aux_sym_class_declaration_repeat1, + [52381] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, + anon_sym_ATautoreleasepool, + STATE(949), 1, + sym_compound_statement, + [52394] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11229), 1, + anon_sym_COMMA, + ACTIONS(11237), 1, + anon_sym_GT, + STATE(5661), 1, + aux_sym_parameterized_arguments_repeat2, + [52407] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11239), 1, + anon_sym_COMMA, + ACTIONS(11241), 1, + anon_sym_RPAREN, + STATE(5641), 1, + aux_sym_generic_arguments_repeat1, + [52420] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11243), 1, + sym_identifier, + ACTIONS(11246), 1, + anon_sym_RBRACK, + STATE(5327), 1, + aux_sym_message_expression_repeat2, + [52433] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11248), 1, + anon_sym_SEMI, + ACTIONS(11250), 1, + anon_sym_DOT, + STATE(5444), 1, + aux_sym_module_import_repeat1, + [52446] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11229), 1, + anon_sym_COMMA, + ACTIONS(11237), 1, + anon_sym_GT, + STATE(5331), 1, + aux_sym_parameterized_arguments_repeat2, + [52459] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11252), 1, + sym_identifier, + ACTIONS(11254), 2, + anon_sym___covariant, + anon_sym___contravariant, + [52470] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11256), 1, + anon_sym_COMMA, + ACTIONS(11259), 1, + anon_sym_GT, + STATE(5331), 1, + aux_sym_parameterized_arguments_repeat2, + [52483] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_ATautoreleasepool, + STATE(771), 1, + sym_compound_statement, + [52496] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10693), 1, + anon_sym_GT, + ACTIONS(11229), 1, + anon_sym_COMMA, + STATE(5331), 1, + aux_sym_parameterized_arguments_repeat2, + [52509] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LBRACE, + ACTIONS(4681), 1, + anon_sym_ATautoreleasepool, + STATE(2204), 1, + sym_compound_statement, + [52522] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11261), 1, + anon_sym_COMMA, + ACTIONS(11264), 1, + anon_sym_GT, + STATE(5335), 1, + aux_sym_argument_list_repeat2, + [52535] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(3082), 1, + anon_sym_SEMI, + STATE(5244), 1, + aux_sym_protocol_forward_declaration_repeat1, + [52548] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11266), 1, + anon_sym_RPAREN, + ACTIONS(11268), 1, + anon_sym_COLON, + STATE(5398), 1, + sym_gnu_asm_input_operand_list, + [52561] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11270), 1, + anon_sym_RPAREN, + ACTIONS(11272), 1, + anon_sym_COLON, + STATE(5399), 1, + sym_gnu_asm_output_operand_list, + [52574] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10628), 1, + anon_sym_COMMA, + ACTIONS(11274), 1, + anon_sym_SEMI, + STATE(5400), 1, + aux_sym_class_declaration_repeat1, + [52587] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10628), 1, + anon_sym_COMMA, + ACTIONS(11274), 1, + anon_sym_SEMI, + STATE(5640), 1, + aux_sym_class_declaration_repeat1, + [52600] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9566), 1, + anon_sym_COMMA, + ACTIONS(11276), 1, + anon_sym_RPAREN, + STATE(5390), 1, + aux_sym_generic_expression_repeat1, + [52613] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11278), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [52622] = 3, + ACTIONS(9877), 1, + sym_comment, + STATE(5249), 1, + aux_sym_char_literal_repeat1, + ACTIONS(11280), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [52633] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11282), 1, + anon_sym_COMMA, + ACTIONS(11284), 1, + anon_sym_RPAREN, + STATE(5588), 1, + aux_sym_property_attributes_declaration_repeat1, + [52646] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11286), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [52655] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8453), 1, + anon_sym_RBRACE, + ACTIONS(11288), 1, + anon_sym_COMMA, + STATE(5544), 1, + aux_sym_initializer_list_repeat1, + [52668] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9560), 1, + anon_sym_COMMA, + ACTIONS(9564), 1, + anon_sym_RPAREN, + STATE(5599), 1, + aux_sym_argument_list_repeat1, + [52681] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8213), 1, + anon_sym_LBRACE, + ACTIONS(8215), 1, + anon_sym_ATautoreleasepool, + STATE(4978), 1, + sym_compound_statement, + [52694] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11290), 1, + anon_sym_COMMA, + ACTIONS(11292), 1, + anon_sym_RPAREN, + STATE(5394), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [52707] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(10909), 1, + anon_sym_SEMI, + STATE(5696), 1, + aux_sym_protocol_forward_declaration_repeat1, + [52720] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9128), 1, + anon_sym_COMMA, + ACTIONS(9132), 1, + anon_sym_RPAREN, + STATE(5501), 1, + aux_sym_attribute_specifier_repeat1, + [52733] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_ATautoreleasepool, + STATE(819), 1, + sym_compound_statement, + [52746] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9566), 1, + anon_sym_COMMA, + ACTIONS(11294), 1, + anon_sym_RPAREN, + STATE(5390), 1, + aux_sym_generic_expression_repeat1, + [52759] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11296), 1, + anon_sym_COMMA, + ACTIONS(11298), 1, + anon_sym_RBRACE, + STATE(5373), 1, + aux_sym_dictionary_literal_repeat1, + [52772] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9576), 1, + anon_sym_COMMA, + ACTIONS(11300), 1, + anon_sym_RPAREN, + STATE(5609), 1, + aux_sym_availability_repeat1, + [52785] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10741), 1, + anon_sym_COMMA, + ACTIONS(11302), 1, + anon_sym_SEMI, + STATE(5461), 1, + aux_sym_property_implementation_repeat1, + [52798] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8213), 1, + anon_sym_LBRACE, + ACTIONS(8215), 1, + anon_sym_ATautoreleasepool, + STATE(5017), 1, + sym_compound_statement, + [52811] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LBRACE, + ACTIONS(4681), 1, + anon_sym_ATautoreleasepool, + STATE(2176), 1, + sym_compound_statement, + [52824] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11302), 1, + anon_sym_SEMI, + STATE(5244), 1, + aux_sym_protocol_forward_declaration_repeat1, + [52837] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11302), 1, + anon_sym_SEMI, + STATE(5420), 1, + aux_sym_protocol_forward_declaration_repeat1, + [52850] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11268), 1, + anon_sym_COLON, + ACTIONS(11304), 1, + anon_sym_RPAREN, + STATE(5631), 1, + sym_gnu_asm_input_operand_list, + [52863] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11306), 1, + anon_sym_COMMA, + ACTIONS(11308), 1, + anon_sym_RBRACK, + STATE(5377), 1, + aux_sym_attribute_declaration_repeat1, + [52876] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4667), 1, + anon_sym_LBRACE, + ACTIONS(4669), 1, + anon_sym_ATautoreleasepool, + STATE(2315), 1, + sym_compound_statement, + [52889] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11272), 1, + anon_sym_COLON, + ACTIONS(11310), 1, + anon_sym_RPAREN, + STATE(5632), 1, + sym_gnu_asm_output_operand_list, + [52902] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11312), 1, + anon_sym_COMMA, + ACTIONS(11314), 1, + anon_sym_RPAREN, + STATE(5614), 1, + aux_sym_parameter_list_repeat1, + [52915] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11219), 1, + anon_sym_COMMA, + ACTIONS(11316), 1, + anon_sym_GT, + STATE(5414), 1, + aux_sym_argument_list_repeat2, + [52928] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8699), 1, + anon_sym_RBRACK, + ACTIONS(11318), 1, + anon_sym_COMMA, + STATE(5634), 1, + aux_sym_attribute_repeat1, + [52941] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10741), 1, + anon_sym_COMMA, + ACTIONS(11320), 1, + anon_sym_SEMI, + STATE(5461), 1, + aux_sym_property_implementation_repeat1, + [52954] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11320), 1, + anon_sym_SEMI, + STATE(5244), 1, + aux_sym_protocol_forward_declaration_repeat1, + [52967] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11320), 1, + anon_sym_SEMI, + STATE(5419), 1, + aux_sym_protocol_forward_declaration_repeat1, + [52980] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7077), 1, + anon_sym_LBRACE, + ACTIONS(11322), 1, + sym_identifier, + STATE(2938), 1, + sym_field_declaration_list, + [52993] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9584), 1, + anon_sym_COMMA, + ACTIONS(9586), 1, + anon_sym_RBRACE, + STATE(5346), 1, + aux_sym_initializer_list_repeat1, + [53006] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8663), 1, + anon_sym_RBRACE, + ACTIONS(11324), 1, + anon_sym_COMMA, + STATE(5636), 1, + aux_sym_dictionary_literal_repeat1, + [53019] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11326), 1, + anon_sym_SEMI, + STATE(5244), 1, + aux_sym_protocol_forward_declaration_repeat1, + [53032] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9899), 1, + anon_sym_COMMA, + ACTIONS(11328), 1, + anon_sym_RPAREN, + STATE(5532), 1, + aux_sym_preproc_argument_list_repeat1, + [53045] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9128), 1, + anon_sym_COMMA, + ACTIONS(9142), 1, + anon_sym_RPAREN, + STATE(5382), 1, + aux_sym_attribute_specifier_repeat1, + [53058] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11306), 1, + anon_sym_COMMA, + ACTIONS(11330), 1, + anon_sym_RBRACK, + STATE(5512), 1, + aux_sym_attribute_declaration_repeat1, + [53071] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11332), 1, + anon_sym_SEMI, + STATE(5244), 1, + aux_sym_protocol_forward_declaration_repeat1, + [53084] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9656), 1, + anon_sym_RPAREN, + ACTIONS(11334), 1, + anon_sym_COMMA, + STATE(5379), 1, + aux_sym_argument_list_repeat1, + [53097] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4657), 1, + anon_sym_LBRACE, + ACTIONS(4659), 1, + anon_sym_ATautoreleasepool, + STATE(2341), 1, + sym_compound_statement, + [53110] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1934), 1, + anon_sym_LBRACE, + ACTIONS(1936), 1, + anon_sym_ATautoreleasepool, + STATE(725), 1, + sym_compound_statement, + [53123] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9128), 1, + anon_sym_COMMA, + ACTIONS(11337), 1, + anon_sym_RPAREN, + STATE(5610), 1, + aux_sym_attribute_specifier_repeat1, + [53136] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, + anon_sym_ATautoreleasepool, + STATE(935), 1, + sym_compound_statement, + [53149] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9530), 1, + anon_sym_COMMA, + ACTIONS(11339), 1, + anon_sym_RPAREN, + STATE(5528), 1, + aux_sym_attribute_repeat1, + [53162] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11341), 1, + anon_sym_COMMA, + ACTIONS(11344), 1, + anon_sym_RPAREN, + STATE(5385), 1, + aux_sym_parameter_list_repeat1, + [53175] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11122), 1, + anon_sym_LBRACE, + ACTIONS(11124), 1, + anon_sym_ATautoreleasepool, + STATE(788), 1, + sym_compound_statement, + [53188] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8213), 1, + anon_sym_LBRACE, + ACTIONS(8215), 1, + anon_sym_ATautoreleasepool, + STATE(1645), 1, + sym_compound_statement, + [53201] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11346), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [53210] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8213), 1, + anon_sym_LBRACE, + ACTIONS(8215), 1, + anon_sym_ATautoreleasepool, + STATE(416), 1, + sym_compound_statement, + [53223] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11348), 1, + anon_sym_COMMA, + ACTIONS(11351), 1, + anon_sym_RPAREN, + STATE(5390), 1, + aux_sym_generic_expression_repeat1, + [53236] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10628), 1, + anon_sym_COMMA, + ACTIONS(11353), 1, + anon_sym_SEMI, + STATE(5640), 1, + aux_sym_class_declaration_repeat1, + [53249] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11355), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [53258] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11357), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [53267] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11290), 1, + anon_sym_COMMA, + ACTIONS(11359), 1, + anon_sym_RPAREN, + STATE(5417), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [53280] = 3, + ACTIONS(9877), 1, + sym_comment, + STATE(5281), 1, + aux_sym_char_literal_repeat1, + ACTIONS(11361), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [53291] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8213), 1, + anon_sym_LBRACE, + ACTIONS(8215), 1, + anon_sym_ATautoreleasepool, + STATE(4975), 1, + sym_compound_statement, + [53304] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4657), 1, + anon_sym_LBRACE, + ACTIONS(4659), 1, + anon_sym_ATautoreleasepool, + STATE(2257), 1, + sym_compound_statement, + [53317] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11215), 1, + anon_sym_COLON, + ACTIONS(11363), 1, + anon_sym_RPAREN, + STATE(5433), 1, + sym_gnu_asm_clobber_list, + [53330] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11268), 1, + anon_sym_COLON, + ACTIONS(11365), 1, + anon_sym_RPAREN, + STATE(5436), 1, + sym_gnu_asm_input_operand_list, + [53343] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10628), 1, + anon_sym_COMMA, + ACTIONS(11367), 1, + anon_sym_SEMI, + STATE(5640), 1, + aux_sym_class_declaration_repeat1, + [53356] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4657), 1, + anon_sym_LBRACE, + ACTIONS(4659), 1, + anon_sym_ATautoreleasepool, + STATE(2348), 1, + sym_compound_statement, + [53369] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11306), 1, + anon_sym_COMMA, + ACTIONS(11369), 1, + anon_sym_RBRACK, + STATE(5410), 1, + aux_sym_attribute_declaration_repeat1, + [53382] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11371), 1, + anon_sym_RPAREN, + ACTIONS(11373), 1, + anon_sym_COLON, + STATE(6374), 1, + sym_gnu_asm_goto_list, + [53395] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7077), 1, + anon_sym_LBRACE, + ACTIONS(11375), 1, + sym_identifier, + STATE(2927), 1, + sym_field_declaration_list, + [53408] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10628), 1, + anon_sym_COMMA, + ACTIONS(11377), 1, + anon_sym_SEMI, + STATE(5639), 1, + aux_sym_class_declaration_repeat1, + [53421] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10119), 1, + anon_sym_COMMA, + ACTIONS(11379), 1, + anon_sym_RPAREN, + STATE(5660), 1, + aux_sym_availability_attribute_specifier_repeat1, + [53434] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10628), 1, + anon_sym_COMMA, + ACTIONS(11377), 1, + anon_sym_SEMI, + STATE(5640), 1, + aux_sym_class_declaration_repeat1, + [53447] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LBRACE, + ACTIONS(4681), 1, + anon_sym_ATautoreleasepool, + STATE(2200), 1, + sym_compound_statement, + [53460] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9128), 1, + anon_sym_COMMA, + ACTIONS(9140), 1, + anon_sym_RPAREN, + STATE(5415), 1, + aux_sym_attribute_specifier_repeat1, + [53473] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11306), 1, + anon_sym_COMMA, + ACTIONS(11381), 1, + anon_sym_RBRACK, + STATE(5512), 1, + aux_sym_attribute_declaration_repeat1, + [53486] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4667), 1, + anon_sym_LBRACE, + ACTIONS(4669), 1, + anon_sym_ATautoreleasepool, + STATE(2272), 1, + sym_compound_statement, + [53499] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LBRACE, + ACTIONS(4681), 1, + anon_sym_ATautoreleasepool, + STATE(2207), 1, + sym_compound_statement, + [53512] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10741), 1, + anon_sym_COMMA, + ACTIONS(11383), 1, + anon_sym_SEMI, + STATE(5430), 1, + aux_sym_property_implementation_repeat1, + [53525] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11219), 1, + anon_sym_COMMA, + ACTIONS(11385), 1, + anon_sym_GT, + STATE(5335), 1, + aux_sym_argument_list_repeat2, + [53538] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9128), 1, + anon_sym_COMMA, + ACTIONS(11387), 1, + anon_sym_RPAREN, + STATE(5610), 1, + aux_sym_attribute_specifier_repeat1, + [53551] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9530), 1, + anon_sym_COMMA, + ACTIONS(11389), 1, + anon_sym_RPAREN, + STATE(5528), 1, + aux_sym_attribute_repeat1, + [53564] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11391), 1, + anon_sym_COMMA, + ACTIONS(11394), 1, + anon_sym_RPAREN, + STATE(5417), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [53577] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10741), 1, + anon_sym_COMMA, + ACTIONS(11396), 1, + anon_sym_SEMI, + STATE(5445), 1, + aux_sym_property_implementation_repeat1, + [53590] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11396), 1, + anon_sym_SEMI, + STATE(5244), 1, + aux_sym_protocol_forward_declaration_repeat1, + [53603] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11383), 1, + anon_sym_SEMI, + STATE(5244), 1, + aux_sym_protocol_forward_declaration_repeat1, + [53616] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4657), 1, + anon_sym_LBRACE, + ACTIONS(4659), 1, + anon_sym_ATautoreleasepool, + STATE(2261), 1, + sym_compound_statement, + [53629] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11239), 1, + anon_sym_COMMA, + ACTIONS(11398), 1, + anon_sym_RPAREN, + STATE(5641), 1, + aux_sym_generic_arguments_repeat1, + [53642] = 3, + ACTIONS(9877), 1, + sym_comment, + STATE(5253), 1, + aux_sym_char_literal_repeat1, + ACTIONS(11400), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [53653] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, + anon_sym_ATautoreleasepool, + STATE(961), 1, + sym_compound_statement, + [53666] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8213), 1, + anon_sym_LBRACE, + ACTIONS(8215), 1, + anon_sym_ATautoreleasepool, + STATE(4987), 1, + sym_compound_statement, + [53679] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1934), 1, + anon_sym_LBRACE, + ACTIONS(1936), 1, + anon_sym_ATautoreleasepool, + STATE(738), 1, + sym_compound_statement, + [53692] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4821), 1, + anon_sym_COLON, + ACTIONS(11402), 1, + anon_sym_DOT_DOT_DOT, + STATE(2823), 1, + sym_method_parameter, + [53705] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11250), 1, + anon_sym_DOT, + ACTIONS(11404), 1, + anon_sym_SEMI, + STATE(5444), 1, + aux_sym_module_import_repeat1, + [53718] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11306), 1, + anon_sym_COMMA, + ACTIONS(11406), 1, + anon_sym_RBRACK, + STATE(5435), 1, + aux_sym_attribute_declaration_repeat1, + [53731] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10741), 1, + anon_sym_COMMA, + ACTIONS(11408), 1, + anon_sym_SEMI, + STATE(5461), 1, + aux_sym_property_implementation_repeat1, + [53744] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11250), 1, + anon_sym_DOT, + ACTIONS(11410), 1, + anon_sym_SEMI, + STATE(5444), 1, + aux_sym_module_import_repeat1, + [53757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11414), 1, + anon_sym_EQ, + ACTIONS(11412), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [53768] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11373), 1, + anon_sym_COLON, + ACTIONS(11416), 1, + anon_sym_RPAREN, + STATE(6062), 1, + sym_gnu_asm_goto_list, + [53781] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9128), 1, + anon_sym_COMMA, + ACTIONS(9130), 1, + anon_sym_RPAREN, + STATE(5437), 1, + aux_sym_attribute_specifier_repeat1, + [53794] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11306), 1, + anon_sym_COMMA, + ACTIONS(11418), 1, + anon_sym_RBRACK, + STATE(5512), 1, + aux_sym_attribute_declaration_repeat1, + [53807] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11215), 1, + anon_sym_COLON, + ACTIONS(11420), 1, + anon_sym_RPAREN, + STATE(5457), 1, + sym_gnu_asm_clobber_list, + [53820] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9128), 1, + anon_sym_COMMA, + ACTIONS(11422), 1, + anon_sym_RPAREN, + STATE(5610), 1, + aux_sym_attribute_specifier_repeat1, + [53833] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9530), 1, + anon_sym_COMMA, + ACTIONS(11424), 1, + anon_sym_RPAREN, + STATE(5528), 1, + aux_sym_attribute_repeat1, + [53846] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4667), 1, + anon_sym_LBRACE, + ACTIONS(4669), 1, + anon_sym_ATautoreleasepool, + STATE(2346), 1, + sym_compound_statement, + [53859] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11426), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [53868] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10761), 1, + anon_sym_LBRACE, + ACTIONS(10763), 1, + anon_sym_ATautoreleasepool, + STATE(191), 1, + sym_compound_statement, + [53881] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10741), 1, + anon_sym_COMMA, + ACTIONS(11428), 1, + anon_sym_SEMI, + STATE(5667), 1, + aux_sym_property_implementation_repeat1, + [53894] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8213), 1, + anon_sym_LBRACE, + ACTIONS(8215), 1, + anon_sym_ATautoreleasepool, + STATE(5014), 1, + sym_compound_statement, + [53907] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11430), 1, + anon_sym_SEMI, + ACTIONS(11432), 1, + anon_sym_DOT, + STATE(5444), 1, + aux_sym_module_import_repeat1, + [53920] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10741), 1, + anon_sym_COMMA, + ACTIONS(11435), 1, + anon_sym_SEMI, + STATE(5461), 1, + aux_sym_property_implementation_repeat1, + [53933] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11306), 1, + anon_sym_COMMA, + ACTIONS(11437), 1, + anon_sym_RBRACK, + STATE(5451), 1, + aux_sym_attribute_declaration_repeat1, + [53946] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9560), 1, + anon_sym_COMMA, + ACTIONS(11439), 1, + anon_sym_RPAREN, + STATE(5379), 1, + aux_sym_argument_list_repeat1, + [53959] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10877), 1, + anon_sym_LBRACE, + ACTIONS(10879), 1, + anon_sym_ATautoreleasepool, + STATE(188), 1, + sym_compound_statement, + [53972] = 4, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11441), 1, + aux_sym_preproc_include_token3, + ACTIONS(11443), 1, + anon_sym_LPAREN2, + STATE(6602), 1, + sym_preproc_argument_list, + [53985] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9128), 1, + anon_sym_COMMA, + ACTIONS(9138), 1, + anon_sym_RPAREN, + STATE(5453), 1, + aux_sym_attribute_specifier_repeat1, + [53998] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11306), 1, + anon_sym_COMMA, + ACTIONS(11445), 1, + anon_sym_RBRACK, + STATE(5512), 1, + aux_sym_attribute_declaration_repeat1, + [54011] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8213), 1, + anon_sym_LBRACE, + ACTIONS(8215), 1, + anon_sym_ATautoreleasepool, + STATE(1661), 1, + sym_compound_statement, + [54024] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9128), 1, + anon_sym_COMMA, + ACTIONS(11447), 1, + anon_sym_RPAREN, + STATE(5610), 1, + aux_sym_attribute_specifier_repeat1, + [54037] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9530), 1, + anon_sym_COMMA, + ACTIONS(11449), 1, + anon_sym_RPAREN, + STATE(5528), 1, + aux_sym_attribute_repeat1, + [54050] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(3098), 1, + anon_sym_SEMI, + STATE(5244), 1, + aux_sym_protocol_forward_declaration_repeat1, + [54063] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8213), 1, + anon_sym_LBRACE, + ACTIONS(8215), 1, + anon_sym_ATautoreleasepool, + STATE(5012), 1, + sym_compound_statement, + [54076] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11373), 1, + anon_sym_COLON, + ACTIONS(11451), 1, + anon_sym_RPAREN, + STATE(6100), 1, + sym_gnu_asm_goto_list, + [54089] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11306), 1, + anon_sym_COMMA, + ACTIONS(11453), 1, + anon_sym_RBRACK, + STATE(5463), 1, + aux_sym_attribute_declaration_repeat1, + [54102] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4657), 1, + anon_sym_LBRACE, + ACTIONS(4659), 1, + anon_sym_ATautoreleasepool, + STATE(2266), 1, + sym_compound_statement, + [54115] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4667), 1, + anon_sym_LBRACE, + ACTIONS(4669), 1, + anon_sym_ATautoreleasepool, + STATE(2326), 1, + sym_compound_statement, + [54128] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11412), 1, + anon_sym_SEMI, + ACTIONS(11455), 1, + anon_sym_COMMA, + STATE(5461), 1, + aux_sym_property_implementation_repeat1, + [54141] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9128), 1, + anon_sym_COMMA, + ACTIONS(9134), 1, + anon_sym_RPAREN, + STATE(5465), 1, + aux_sym_attribute_specifier_repeat1, + [54154] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11306), 1, + anon_sym_COMMA, + ACTIONS(11458), 1, + anon_sym_RBRACK, + STATE(5512), 1, + aux_sym_attribute_declaration_repeat1, + [54167] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7580), 1, + anon_sym_LPAREN2, + ACTIONS(11460), 1, + sym_identifier, + STATE(6407), 1, + sym_method_type, + [54180] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9128), 1, + anon_sym_COMMA, + ACTIONS(11462), 1, + anon_sym_RPAREN, + STATE(5610), 1, + aux_sym_attribute_specifier_repeat1, + [54193] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9530), 1, + anon_sym_COMMA, + ACTIONS(11464), 1, + anon_sym_RPAREN, + STATE(5528), 1, + aux_sym_attribute_repeat1, + [54206] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11466), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [54215] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8213), 1, + anon_sym_LBRACE, + ACTIONS(8215), 1, + anon_sym_ATautoreleasepool, + STATE(5001), 1, + sym_compound_statement, + [54228] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4667), 1, + anon_sym_LBRACE, + ACTIONS(4669), 1, + anon_sym_ATautoreleasepool, + STATE(2332), 1, + sym_compound_statement, + [54241] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11428), 1, + anon_sym_SEMI, + STATE(5244), 1, + aux_sym_protocol_forward_declaration_repeat1, + [54254] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10119), 1, + anon_sym_COMMA, + ACTIONS(11468), 1, + anon_sym_RPAREN, + STATE(5660), 1, + aux_sym_availability_attribute_specifier_repeat1, + [54267] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9128), 1, + anon_sym_COMMA, + ACTIONS(9136), 1, + anon_sym_RPAREN, + STATE(5474), 1, + aux_sym_attribute_specifier_repeat1, + [54280] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4667), 1, + anon_sym_LBRACE, + ACTIONS(4669), 1, + anon_sym_ATautoreleasepool, + STATE(2339), 1, + sym_compound_statement, + [54293] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9128), 1, + anon_sym_COMMA, + ACTIONS(11470), 1, + anon_sym_RPAREN, + STATE(5610), 1, + aux_sym_attribute_specifier_repeat1, + [54306] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9530), 1, + anon_sym_COMMA, + ACTIONS(11472), 1, + anon_sym_RPAREN, + STATE(5528), 1, + aux_sym_attribute_repeat1, + [54319] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11312), 1, + anon_sym_COMMA, + ACTIONS(11474), 1, + anon_sym_RPAREN, + STATE(5675), 1, + aux_sym_parameter_list_repeat1, + [54332] = 4, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11443), 1, + anon_sym_LPAREN2, + ACTIONS(11476), 1, + aux_sym_preproc_include_token3, + STATE(6602), 1, + sym_preproc_argument_list, + [54345] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11272), 1, + anon_sym_COLON, + ACTIONS(11478), 1, + anon_sym_RPAREN, + STATE(5361), 1, + sym_gnu_asm_output_operand_list, + [54358] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4667), 1, + anon_sym_LBRACE, + ACTIONS(4669), 1, + anon_sym_ATautoreleasepool, + STATE(2345), 1, + sym_compound_statement, + [54371] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11373), 1, + anon_sym_COLON, + ACTIONS(11480), 1, + anon_sym_RPAREN, + STATE(6257), 1, + sym_gnu_asm_goto_list, + [54384] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11229), 1, + anon_sym_COMMA, + ACTIONS(11482), 1, + anon_sym_GT, + STATE(5320), 1, + aux_sym_parameterized_arguments_repeat2, + [54397] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4667), 1, + anon_sym_LBRACE, + ACTIONS(4669), 1, + anon_sym_ATautoreleasepool, + STATE(2347), 1, + sym_compound_statement, + [54410] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9530), 1, + anon_sym_COMMA, + ACTIONS(11484), 1, + anon_sym_RPAREN, + STATE(5528), 1, + aux_sym_attribute_repeat1, + [54423] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(759), 1, + anon_sym_LBRACE, + ACTIONS(761), 1, + anon_sym_ATautoreleasepool, + STATE(592), 1, + sym_compound_statement, + [54436] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11009), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_SEMI, + [54445] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4667), 1, + anon_sym_LBRACE, + ACTIONS(4669), 1, + anon_sym_ATautoreleasepool, + STATE(2252), 1, + sym_compound_statement, + [54458] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11486), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + [54467] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LBRACE, + ACTIONS(4681), 1, + anon_sym_ATautoreleasepool, + STATE(2158), 1, + sym_compound_statement, + [54480] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10119), 1, + anon_sym_COMMA, + ACTIONS(10121), 1, + anon_sym_RPAREN, + STATE(5471), 1, + aux_sym_availability_attribute_specifier_repeat1, + [54493] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4667), 1, + anon_sym_LBRACE, + ACTIONS(4669), 1, + anon_sym_ATautoreleasepool, + STATE(2352), 1, + sym_compound_statement, + [54506] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10119), 1, + anon_sym_COMMA, + ACTIONS(11488), 1, + anon_sym_RPAREN, + STATE(5660), 1, + aux_sym_availability_attribute_specifier_repeat1, + [54519] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10119), 1, + anon_sym_COMMA, + ACTIONS(11488), 1, + anon_sym_RPAREN, + STATE(5541), 1, + aux_sym_availability_attribute_specifier_repeat1, + [54532] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4667), 1, + anon_sym_LBRACE, + ACTIONS(4669), 1, + anon_sym_ATautoreleasepool, + STATE(2256), 1, + sym_compound_statement, + [54545] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4667), 1, + anon_sym_LBRACE, + ACTIONS(4669), 1, + anon_sym_ATautoreleasepool, + STATE(2258), 1, + sym_compound_statement, + [54558] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11490), 1, + anon_sym_COMMA, + ACTIONS(11492), 1, + anon_sym_RPAREN, + STATE(5553), 1, + aux_sym_version_repeat1, + [54571] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7580), 1, + anon_sym_LPAREN2, + ACTIONS(11494), 1, + sym_identifier, + STATE(6409), 1, + sym_method_type, + [54584] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11496), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [54593] = 4, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11443), 1, + anon_sym_LPAREN2, + ACTIONS(11498), 1, + aux_sym_preproc_include_token3, + STATE(6602), 1, + sym_preproc_argument_list, + [54606] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11500), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [54615] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4657), 1, + anon_sym_LBRACE, + ACTIONS(4659), 1, + anon_sym_ATautoreleasepool, + STATE(2268), 1, + sym_compound_statement, + [54628] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9128), 1, + anon_sym_COMMA, + ACTIONS(11502), 1, + anon_sym_RPAREN, + STATE(5610), 1, + aux_sym_attribute_specifier_repeat1, + [54641] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11504), 1, + anon_sym_COMMA, + ACTIONS(11507), 1, + anon_sym_RPAREN, + STATE(5502), 1, + aux_sym__old_style_parameter_list_repeat1, + [54654] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8213), 1, + anon_sym_LBRACE, + ACTIONS(8215), 1, + anon_sym_ATautoreleasepool, + STATE(4998), 1, + sym_compound_statement, + [54667] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11511), 1, + anon_sym_LPAREN2, + ACTIONS(11509), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54678] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11515), 1, + anon_sym_LPAREN2, + ACTIONS(11513), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [54689] = 4, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11443), 1, + anon_sym_LPAREN2, + ACTIONS(11517), 1, + aux_sym_preproc_include_token3, + STATE(6602), 1, + sym_preproc_argument_list, + [54702] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LBRACE, + ACTIONS(4681), 1, + anon_sym_ATautoreleasepool, + STATE(2130), 1, + sym_compound_statement, + [54715] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4657), 1, + anon_sym_LBRACE, + ACTIONS(4659), 1, + anon_sym_ATautoreleasepool, + STATE(2271), 1, + sym_compound_statement, + [54728] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8878), 1, + anon_sym_LBRACE, + ACTIONS(11519), 1, + sym_identifier, + STATE(3840), 1, + sym_field_declaration_list, + [54741] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8878), 1, + anon_sym_LBRACE, + ACTIONS(11521), 1, + sym_identifier, + STATE(3814), 1, + sym_field_declaration_list, + [54754] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_ATautoreleasepool, + STATE(717), 1, + sym_compound_statement, + [54767] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11523), 1, + anon_sym_COMMA, + ACTIONS(11526), 1, + anon_sym_RBRACK, + STATE(5512), 1, + aux_sym_attribute_declaration_repeat1, + [54780] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11219), 1, + anon_sym_COMMA, + ACTIONS(11528), 1, + anon_sym_GT, + STATE(5335), 1, + aux_sym_argument_list_repeat2, + [54793] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4657), 1, + anon_sym_LBRACE, + ACTIONS(4659), 1, + anon_sym_ATautoreleasepool, + STATE(2275), 1, + sym_compound_statement, + [54806] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11530), 1, + anon_sym_COMMA, + ACTIONS(11533), 1, + anon_sym_RPAREN, + STATE(5515), 1, + aux_sym_generic_arguments_repeat1, + [54819] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10915), 1, + anon_sym_LBRACE, + ACTIONS(10917), 1, + anon_sym_ATautoreleasepool, + STATE(416), 1, + sym_compound_statement, + [54832] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1934), 1, + anon_sym_LBRACE, + ACTIONS(1936), 1, + anon_sym_ATautoreleasepool, + STATE(829), 1, + sym_compound_statement, + [54845] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10149), 1, + anon_sym_COMMA, + ACTIONS(11535), 1, + anon_sym_RPAREN, + STATE(5679), 1, + aux_sym_available_expression_repeat1, + [54858] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9576), 1, + anon_sym_COMMA, + ACTIONS(11537), 1, + anon_sym_RPAREN, + STATE(5609), 1, + aux_sym_availability_repeat1, + [54871] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LBRACE, + ACTIONS(4681), 1, + anon_sym_ATautoreleasepool, + STATE(2160), 1, + sym_compound_statement, + [54884] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LBRACE, + ACTIONS(4681), 1, + anon_sym_ATautoreleasepool, + STATE(2131), 1, + sym_compound_statement, + [54897] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4657), 1, + anon_sym_LBRACE, + ACTIONS(4659), 1, + anon_sym_ATautoreleasepool, + STATE(2265), 1, + sym_compound_statement, + [54910] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4657), 1, + anon_sym_LBRACE, + ACTIONS(4659), 1, + anon_sym_ATautoreleasepool, + STATE(2276), 1, + sym_compound_statement, + [54923] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11373), 1, + anon_sym_COLON, + ACTIONS(11539), 1, + anon_sym_RPAREN, + STATE(6343), 1, + sym_gnu_asm_goto_list, + [54936] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11250), 1, + anon_sym_DOT, + ACTIONS(11541), 1, + anon_sym_SEMI, + STATE(5552), 1, + aux_sym_module_import_repeat1, + [54949] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10149), 1, + anon_sym_COMMA, + ACTIONS(11535), 1, + anon_sym_RPAREN, + STATE(5680), 1, + aux_sym_available_expression_repeat1, + [54962] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8213), 1, + anon_sym_LBRACE, + ACTIONS(8215), 1, + anon_sym_ATautoreleasepool, + STATE(1658), 1, + sym_compound_statement, + [54975] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9526), 1, + anon_sym_RPAREN, + ACTIONS(11543), 1, + anon_sym_COMMA, + STATE(5528), 1, + aux_sym_attribute_repeat1, + [54988] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_ATautoreleasepool, + STATE(834), 1, + sym_compound_statement, + [55001] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9530), 1, + anon_sym_COMMA, + ACTIONS(11546), 1, + anon_sym_RPAREN, + STATE(5528), 1, + aux_sym_attribute_repeat1, + [55014] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11548), 1, + anon_sym_GT, + STATE(5244), 1, + aux_sym_protocol_forward_declaration_repeat1, + [55027] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10043), 1, + anon_sym_RPAREN, + ACTIONS(11550), 1, + anon_sym_COMMA, + STATE(5532), 1, + aux_sym_preproc_argument_list_repeat1, + [55040] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(3094), 1, + anon_sym_SEMI, + STATE(5244), 1, + aux_sym_protocol_forward_declaration_repeat1, + [55053] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11553), 1, + anon_sym_COMMA, + ACTIONS(11555), 1, + anon_sym_RPAREN, + STATE(5536), 1, + aux_sym_method_type_repeat1, + [55066] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11250), 1, + anon_sym_DOT, + ACTIONS(11557), 1, + anon_sym_SEMI, + STATE(5431), 1, + aux_sym_module_import_repeat1, + [55079] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11559), 1, + anon_sym_COMMA, + ACTIONS(11562), 1, + anon_sym_RPAREN, + STATE(5536), 1, + aux_sym_method_type_repeat1, + [55092] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7077), 1, + anon_sym_LBRACE, + ACTIONS(11564), 1, + sym_identifier, + STATE(2939), 1, + sym_field_declaration_list, + [55105] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(10817), 1, + anon_sym_SEMI, + STATE(5563), 1, + aux_sym_protocol_forward_declaration_repeat1, + [55118] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11566), 1, + sym_identifier, + ACTIONS(11568), 2, + anon_sym___covariant, + anon_sym___contravariant, + [55129] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10653), 1, + anon_sym_GT, + ACTIONS(11229), 1, + anon_sym_COMMA, + STATE(5331), 1, + aux_sym_parameterized_arguments_repeat2, + [55142] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10119), 1, + anon_sym_COMMA, + ACTIONS(11570), 1, + anon_sym_RPAREN, + STATE(5660), 1, + aux_sym_availability_attribute_specifier_repeat1, + [55155] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10718), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + [55164] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11219), 1, + anon_sym_COMMA, + ACTIONS(11572), 1, + anon_sym_GT, + STATE(5335), 1, + aux_sym_argument_list_repeat2, + [55177] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9626), 1, + anon_sym_RBRACE, + ACTIONS(11574), 1, + anon_sym_COMMA, + STATE(5544), 1, + aux_sym_initializer_list_repeat1, + [55190] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11312), 1, + anon_sym_COMMA, + ACTIONS(11577), 1, + anon_sym_RPAREN, + STATE(5594), 1, + aux_sym_parameter_list_repeat1, + [55203] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_ATautoreleasepool, + STATE(417), 1, + sym_compound_statement, + [55216] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11553), 1, + anon_sym_COMMA, + ACTIONS(11579), 1, + anon_sym_RPAREN, + STATE(5534), 1, + aux_sym_method_type_repeat1, + [55229] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8209), 1, + anon_sym_LBRACE, + ACTIONS(8211), 1, + anon_sym_ATautoreleasepool, + STATE(1485), 1, + sym_compound_statement, + [55242] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9477), 1, + sym_identifier, + ACTIONS(11581), 1, + anon_sym_RBRACK, + STATE(5327), 1, + aux_sym_message_expression_repeat2, + [55255] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9477), 1, + sym_identifier, + ACTIONS(11583), 1, + anon_sym_RBRACK, + STATE(5327), 1, + aux_sym_message_expression_repeat2, + [55268] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11272), 1, + anon_sym_COLON, + ACTIONS(11585), 1, + anon_sym_RPAREN, + STATE(5589), 1, + sym_gnu_asm_output_operand_list, + [55281] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11250), 1, + anon_sym_DOT, + ACTIONS(11587), 1, + anon_sym_SEMI, + STATE(5444), 1, + aux_sym_module_import_repeat1, + [55294] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11589), 1, + anon_sym_COMMA, + ACTIONS(11592), 1, + anon_sym_RPAREN, + STATE(5553), 1, + aux_sym_version_repeat1, + [55307] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8878), 1, + anon_sym_LBRACE, + ACTIONS(11594), 1, + sym_identifier, + STATE(3839), 1, + sym_field_declaration_list, + [55320] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8878), 1, + anon_sym_LBRACE, + ACTIONS(11596), 1, + sym_identifier, + STATE(3825), 1, + sym_field_declaration_list, + [55333] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2404), 1, + anon_sym_while, + ACTIONS(11598), 1, + anon_sym_else, + STATE(980), 1, + sym_else_clause, + [55346] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(3066), 1, + anon_sym_SEMI, + STATE(5244), 1, + aux_sym_protocol_forward_declaration_repeat1, + [55359] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(10743), 1, + anon_sym_SEMI, + STATE(5359), 1, + aux_sym_protocol_forward_declaration_repeat1, + [55372] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11272), 1, + anon_sym_COLON, + ACTIONS(11600), 1, + anon_sym_RPAREN, + STATE(5616), 1, + sym_gnu_asm_output_operand_list, + [55385] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11602), 1, + anon_sym_COMMA, + ACTIONS(11604), 1, + anon_sym_RBRACE, + STATE(5619), 1, + aux_sym_dictionary_literal_repeat1, + [55398] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10741), 1, + anon_sym_COMMA, + ACTIONS(11606), 1, + anon_sym_SEMI, + STATE(5461), 1, + aux_sym_property_implementation_repeat1, + [55411] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11219), 1, + anon_sym_COMMA, + ACTIONS(11608), 1, + anon_sym_GT, + STATE(5622), 1, + aux_sym_argument_list_repeat2, + [55424] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11606), 1, + anon_sym_SEMI, + STATE(5244), 1, + aux_sym_protocol_forward_declaration_repeat1, + [55437] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11250), 1, + anon_sym_DOT, + ACTIONS(11610), 1, + anon_sym_SEMI, + STATE(5444), 1, + aux_sym_module_import_repeat1, + [55450] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10119), 1, + anon_sym_COMMA, + ACTIONS(10135), 1, + anon_sym_RPAREN, + STATE(5623), 1, + aux_sym_availability_attribute_specifier_repeat1, + [55463] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(3070), 1, + anon_sym_SEMI, + STATE(5244), 1, + aux_sym_protocol_forward_declaration_repeat1, + [55476] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10149), 1, + anon_sym_COMMA, + ACTIONS(10151), 1, + anon_sym_RPAREN, + STATE(5518), 1, + aux_sym_available_expression_repeat1, + [55489] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11606), 1, + anon_sym_SEMI, + STATE(5575), 1, + aux_sym_protocol_forward_declaration_repeat1, + [55502] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10149), 1, + anon_sym_COMMA, + ACTIONS(10173), 1, + anon_sym_RPAREN, + STATE(5625), 1, + aux_sym_available_expression_repeat1, + [55515] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11553), 1, + anon_sym_COMMA, + ACTIONS(11579), 1, + anon_sym_RPAREN, + STATE(5536), 1, + aux_sym_method_type_repeat1, + [55528] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11612), 1, + anon_sym_GT, + STATE(5627), 1, + aux_sym_protocol_forward_declaration_repeat1, + [55541] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_ATautoreleasepool, + STATE(422), 1, + sym_compound_statement, + [55554] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10741), 1, + anon_sym_COMMA, + ACTIONS(11614), 1, + anon_sym_SEMI, + STATE(5583), 1, + aux_sym_property_implementation_repeat1, + [55567] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11616), 1, + anon_sym_GT, + STATE(5531), 1, + aux_sym_protocol_forward_declaration_repeat1, + [55580] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11614), 1, + anon_sym_SEMI, + STATE(5244), 1, + aux_sym_protocol_forward_declaration_repeat1, + [55593] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11086), 1, + anon_sym_SEMI, + STATE(5603), 1, + aux_sym_protocol_forward_declaration_repeat1, + [55606] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(183), 1, + anon_sym_ATautoreleasepool, + STATE(232), 1, + sym_compound_statement, + [55619] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_ATautoreleasepool, + STATE(423), 1, + sym_compound_statement, + [55632] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(10829), 1, + anon_sym_SEMI, + STATE(5369), 1, + aux_sym_protocol_forward_declaration_repeat1, + [55645] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7077), 1, + anon_sym_LBRACE, + ACTIONS(11618), 1, + sym_identifier, + STATE(2942), 1, + sym_field_declaration_list, + [55658] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11622), 1, + anon_sym_COLON, + ACTIONS(11620), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [55669] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9604), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [55678] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10741), 1, + anon_sym_COMMA, + ACTIONS(11624), 1, + anon_sym_SEMI, + STATE(5461), 1, + aux_sym_property_implementation_repeat1, + [55691] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10825), 1, + anon_sym_LBRACE, + ACTIONS(10827), 1, + anon_sym_ATautoreleasepool, + STATE(237), 1, + sym_compound_statement, + [55704] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(183), 1, + anon_sym_ATautoreleasepool, + STATE(246), 1, + sym_compound_statement, + [55717] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11100), 1, + anon_sym_SEMI, + STATE(5643), 1, + aux_sym_protocol_forward_declaration_repeat1, + [55730] = 3, + ACTIONS(9877), 1, + sym_comment, + STATE(5218), 1, + aux_sym_char_literal_repeat1, + ACTIONS(11626), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [55741] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11628), 1, + anon_sym_COMMA, + ACTIONS(11631), 1, + anon_sym_RPAREN, + STATE(5588), 1, + aux_sym_property_attributes_declaration_repeat1, + [55754] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11268), 1, + anon_sym_COLON, + ACTIONS(11633), 1, + anon_sym_RPAREN, + STATE(5628), 1, + sym_gnu_asm_input_operand_list, + [55767] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11306), 1, + anon_sym_COMMA, + ACTIONS(11635), 1, + anon_sym_RBRACK, + STATE(5512), 1, + aux_sym_attribute_declaration_repeat1, + [55780] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11272), 1, + anon_sym_COLON, + ACTIONS(11637), 1, + anon_sym_RPAREN, + STATE(5629), 1, + sym_gnu_asm_output_operand_list, + [55793] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10628), 1, + anon_sym_COMMA, + ACTIONS(11639), 1, + anon_sym_SEMI, + STATE(5630), 1, + aux_sym_class_declaration_repeat1, + [55806] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10628), 1, + anon_sym_COMMA, + ACTIONS(11639), 1, + anon_sym_SEMI, + STATE(5640), 1, + aux_sym_class_declaration_repeat1, + [55819] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11312), 1, + anon_sym_COMMA, + ACTIONS(11641), 1, + anon_sym_RPAREN, + STATE(5385), 1, + aux_sym_parameter_list_repeat1, + [55832] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11643), 1, + sym_identifier, + ACTIONS(11645), 2, + anon_sym___covariant, + anon_sym___contravariant, + [55843] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8209), 1, + anon_sym_LBRACE, + ACTIONS(8211), 1, + anon_sym_ATautoreleasepool, + STATE(1484), 1, + sym_compound_statement, + [55856] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LBRACE, + ACTIONS(4681), 1, + anon_sym_ATautoreleasepool, + STATE(2196), 1, + sym_compound_statement, + [55869] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, + anon_sym_ATautoreleasepool, + STATE(953), 1, + sym_compound_statement, + [55882] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9560), 1, + anon_sym_COMMA, + ACTIONS(9562), 1, + anon_sym_RPAREN, + STATE(5379), 1, + aux_sym_argument_list_repeat1, + [55895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11649), 1, + anon_sym_EQ, + ACTIONS(11647), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [55906] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9560), 1, + anon_sym_COMMA, + ACTIONS(9562), 1, + anon_sym_RPAREN, + STATE(5447), 1, + aux_sym_argument_list_repeat1, + [55919] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10741), 1, + anon_sym_COMMA, + ACTIONS(11651), 1, + anon_sym_SEMI, + STATE(5461), 1, + aux_sym_property_implementation_repeat1, + [55932] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11651), 1, + anon_sym_SEMI, + STATE(5244), 1, + aux_sym_protocol_forward_declaration_repeat1, + [55945] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11651), 1, + anon_sym_SEMI, + STATE(5648), 1, + aux_sym_protocol_forward_declaration_repeat1, + [55958] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9576), 1, + anon_sym_COMMA, + ACTIONS(9578), 1, + anon_sym_RPAREN, + STATE(5355), 1, + aux_sym_availability_repeat1, + [55971] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11653), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [55980] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, + anon_sym_ATautoreleasepool, + STATE(819), 1, + sym_compound_statement, + [55993] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4657), 1, + anon_sym_LBRACE, + ACTIONS(4659), 1, + anon_sym_ATautoreleasepool, + STATE(2351), 1, + sym_compound_statement, + [56006] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11647), 1, + anon_sym_RPAREN, + ACTIONS(11655), 1, + anon_sym_COMMA, + STATE(5609), 1, + aux_sym_availability_repeat1, + [56019] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11658), 1, + anon_sym_COMMA, + ACTIONS(11661), 1, + anon_sym_RPAREN, + STATE(5610), 1, + aux_sym_attribute_specifier_repeat1, + [56032] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11665), 1, + anon_sym_EQ, + ACTIONS(11663), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56043] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11667), 1, + anon_sym_SEMI, + STATE(5244), 1, + aux_sym_protocol_forward_declaration_repeat1, + [56056] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2094), 1, + anon_sym_LBRACE, + ACTIONS(2096), 1, + anon_sym_ATautoreleasepool, + STATE(1127), 1, + sym_compound_statement, + [56069] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11312), 1, + anon_sym_COMMA, + ACTIONS(11669), 1, + anon_sym_RPAREN, + STATE(5385), 1, + aux_sym_parameter_list_repeat1, + [56082] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11282), 1, + anon_sym_COMMA, + ACTIONS(11671), 1, + anon_sym_RPAREN, + STATE(5344), 1, + aux_sym_property_attributes_declaration_repeat1, + [56095] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11268), 1, + anon_sym_COLON, + ACTIONS(11673), 1, + anon_sym_RPAREN, + STATE(5665), 1, + sym_gnu_asm_input_operand_list, + [56108] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11272), 1, + anon_sym_COLON, + ACTIONS(11675), 1, + anon_sym_RPAREN, + STATE(5666), 1, + sym_gnu_asm_output_operand_list, + [56121] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8727), 1, + anon_sym_RBRACK, + ACTIONS(11677), 1, + anon_sym_COMMA, + STATE(5634), 1, + aux_sym_attribute_repeat1, + [56134] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8667), 1, + anon_sym_RBRACE, + ACTIONS(11679), 1, + anon_sym_COMMA, + STATE(5636), 1, + aux_sym_dictionary_literal_repeat1, + [56147] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10628), 1, + anon_sym_COMMA, + ACTIONS(11681), 1, + anon_sym_SEMI, + STATE(5669), 1, + aux_sym_class_declaration_repeat1, + [56160] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10628), 1, + anon_sym_COMMA, + ACTIONS(11681), 1, + anon_sym_SEMI, + STATE(5640), 1, + aux_sym_class_declaration_repeat1, + [56173] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11219), 1, + anon_sym_COMMA, + ACTIONS(11683), 1, + anon_sym_GT, + STATE(5335), 1, + aux_sym_argument_list_repeat2, + [56186] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10119), 1, + anon_sym_COMMA, + ACTIONS(11685), 1, + anon_sym_RPAREN, + STATE(5660), 1, + aux_sym_availability_attribute_specifier_repeat1, + [56199] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(183), 1, + anon_sym_ATautoreleasepool, + STATE(251), 1, + sym_compound_statement, + [56212] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10149), 1, + anon_sym_COMMA, + ACTIONS(11687), 1, + anon_sym_RPAREN, + STATE(5679), 1, + aux_sym_available_expression_repeat1, + [56225] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10149), 1, + anon_sym_COMMA, + ACTIONS(11687), 1, + anon_sym_RPAREN, + STATE(5672), 1, + aux_sym_available_expression_repeat1, + [56238] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11689), 1, + anon_sym_GT, + STATE(5244), 1, + aux_sym_protocol_forward_declaration_repeat1, + [56251] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11215), 1, + anon_sym_COLON, + ACTIONS(11691), 1, + anon_sym_RPAREN, + STATE(5655), 1, + sym_gnu_asm_clobber_list, + [56264] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11268), 1, + anon_sym_COLON, + ACTIONS(11693), 1, + anon_sym_RPAREN, + STATE(5656), 1, + sym_gnu_asm_input_operand_list, + [56277] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10628), 1, + anon_sym_COMMA, + ACTIONS(11695), 1, + anon_sym_SEMI, + STATE(5640), 1, + aux_sym_class_declaration_repeat1, + [56290] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11215), 1, + anon_sym_COLON, + ACTIONS(11697), 1, + anon_sym_RPAREN, + STATE(5480), 1, + sym_gnu_asm_clobber_list, + [56303] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11268), 1, + anon_sym_COLON, + ACTIONS(11699), 1, + anon_sym_RPAREN, + STATE(5310), 1, + sym_gnu_asm_input_operand_list, + [56316] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8213), 1, + anon_sym_LBRACE, + ACTIONS(8215), 1, + anon_sym_ATautoreleasepool, + STATE(1666), 1, + sym_compound_statement, + [56329] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9526), 1, + anon_sym_RBRACK, + ACTIONS(11701), 1, + anon_sym_COMMA, + STATE(5634), 1, + aux_sym_attribute_repeat1, + [56342] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LBRACE, + ACTIONS(4681), 1, + anon_sym_ATautoreleasepool, + STATE(2113), 1, + sym_compound_statement, + [56355] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11704), 1, + anon_sym_COMMA, + ACTIONS(11707), 1, + anon_sym_RBRACE, + STATE(5636), 1, + aux_sym_dictionary_literal_repeat1, + [56368] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11272), 1, + anon_sym_COLON, + ACTIONS(11709), 1, + anon_sym_RPAREN, + STATE(5337), 1, + sym_gnu_asm_output_operand_list, + [56381] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11250), 1, + anon_sym_DOT, + ACTIONS(11711), 1, + anon_sym_SEMI, + STATE(5328), 1, + aux_sym_module_import_repeat1, + [56394] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10628), 1, + anon_sym_COMMA, + ACTIONS(11713), 1, + anon_sym_SEMI, + STATE(5640), 1, + aux_sym_class_declaration_repeat1, + [56407] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11151), 1, + anon_sym_SEMI, + ACTIONS(11715), 1, + anon_sym_COMMA, + STATE(5640), 1, + aux_sym_class_declaration_repeat1, + [56420] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11239), 1, + anon_sym_COMMA, + ACTIONS(11718), 1, + anon_sym_RPAREN, + STATE(5515), 1, + aux_sym_generic_arguments_repeat1, + [56433] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10741), 1, + anon_sym_COMMA, + ACTIONS(11720), 1, + anon_sym_SEMI, + STATE(5461), 1, + aux_sym_property_implementation_repeat1, + [56446] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11720), 1, + anon_sym_SEMI, + STATE(5244), 1, + aux_sym_protocol_forward_declaration_repeat1, + [56459] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11720), 1, + anon_sym_SEMI, + STATE(5686), 1, + aux_sym_protocol_forward_declaration_repeat1, + [56472] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11553), 1, + anon_sym_COMMA, + ACTIONS(11722), 1, + anon_sym_RPAREN, + STATE(5570), 1, + aux_sym_method_type_repeat1, + [56485] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10741), 1, + anon_sym_COMMA, + ACTIONS(11724), 1, + anon_sym_SEMI, + STATE(5657), 1, + aux_sym_property_implementation_repeat1, + [56498] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11726), 1, + anon_sym_SEMI, + STATE(5244), 1, + aux_sym_protocol_forward_declaration_repeat1, + [56511] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11724), 1, + anon_sym_SEMI, + STATE(5244), 1, + aux_sym_protocol_forward_declaration_repeat1, + [56524] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9899), 1, + anon_sym_COMMA, + ACTIONS(11728), 1, + anon_sym_RPAREN, + STATE(5532), 1, + aux_sym_preproc_argument_list_repeat1, + [56537] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9606), 1, + anon_sym_COMMA, + ACTIONS(9608), 1, + anon_sym_RBRACE, + STATE(5687), 1, + aux_sym_initializer_list_repeat1, + [56550] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8209), 1, + anon_sym_LBRACE, + ACTIONS(8211), 1, + anon_sym_ATautoreleasepool, + STATE(1500), 1, + sym_compound_statement, + [56563] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10119), 1, + anon_sym_COMMA, + ACTIONS(11730), 1, + anon_sym_RPAREN, + STATE(5491), 1, + aux_sym_availability_attribute_specifier_repeat1, + [56576] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(183), 1, + anon_sym_ATautoreleasepool, + STATE(252), 1, + sym_compound_statement, + [56589] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, + anon_sym_ATautoreleasepool, + STATE(834), 1, + sym_compound_statement, + [56602] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11373), 1, + anon_sym_COLON, + ACTIONS(11732), 1, + anon_sym_RPAREN, + STATE(6638), 1, + sym_gnu_asm_goto_list, + [56615] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11215), 1, + anon_sym_COLON, + ACTIONS(11734), 1, + anon_sym_RPAREN, + STATE(5659), 1, + sym_gnu_asm_clobber_list, + [56628] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10741), 1, + anon_sym_COMMA, + ACTIONS(11736), 1, + anon_sym_SEMI, + STATE(5461), 1, + aux_sym_property_implementation_repeat1, + [56641] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11096), 1, + anon_sym_LBRACE, + ACTIONS(11098), 1, + anon_sym_ATautoreleasepool, + STATE(442), 1, + sym_compound_statement, + [56654] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11373), 1, + anon_sym_COLON, + ACTIONS(11738), 1, + anon_sym_RPAREN, + STATE(6641), 1, + sym_gnu_asm_goto_list, + [56667] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10141), 1, + anon_sym_RPAREN, + ACTIONS(11740), 1, + anon_sym_COMMA, + STATE(5660), 1, + aux_sym_availability_attribute_specifier_repeat1, + [56680] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11229), 1, + anon_sym_COMMA, + ACTIONS(11743), 1, + anon_sym_GT, + STATE(5331), 1, + aux_sym_parameterized_arguments_repeat2, + [56693] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11229), 1, + anon_sym_COMMA, + ACTIONS(11743), 1, + anon_sym_GT, + STATE(5697), 1, + aux_sym_parameterized_arguments_repeat2, + [56706] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11490), 1, + anon_sym_COMMA, + ACTIONS(11745), 1, + anon_sym_RPAREN, + STATE(5495), 1, + aux_sym_version_repeat1, + [56719] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11749), 1, + anon_sym_RPAREN, + ACTIONS(11747), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [56730] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11215), 1, + anon_sym_COLON, + ACTIONS(11751), 1, + anon_sym_RPAREN, + STATE(5698), 1, + sym_gnu_asm_clobber_list, + [56743] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11268), 1, + anon_sym_COLON, + ACTIONS(11753), 1, + anon_sym_RPAREN, + STATE(5699), 1, + sym_gnu_asm_input_operand_list, + [56756] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10741), 1, + anon_sym_COMMA, + ACTIONS(11755), 1, + anon_sym_SEMI, + STATE(5461), 1, + aux_sym_property_implementation_repeat1, + [56769] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11757), 1, + sym_identifier, + ACTIONS(11759), 1, + anon_sym_RPAREN, + STATE(5615), 1, + sym_property_attribute, + [56782] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10628), 1, + anon_sym_COMMA, + ACTIONS(11761), 1, + anon_sym_SEMI, + STATE(5640), 1, + aux_sym_class_declaration_repeat1, + [56795] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10119), 1, + anon_sym_COMMA, + ACTIONS(11763), 1, + anon_sym_RPAREN, + STATE(5700), 1, + aux_sym_availability_attribute_specifier_repeat1, + [56808] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(759), 1, + anon_sym_LBRACE, + ACTIONS(761), 1, + anon_sym_ATautoreleasepool, + STATE(532), 1, + sym_compound_statement, + [56821] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10149), 1, + anon_sym_COMMA, + ACTIONS(11765), 1, + anon_sym_RPAREN, + STATE(5679), 1, + aux_sym_available_expression_repeat1, + [56834] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11306), 1, + anon_sym_COMMA, + ACTIONS(11767), 1, + anon_sym_RBRACK, + STATE(5590), 1, + aux_sym_attribute_declaration_repeat1, + [56847] = 4, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11443), 1, + anon_sym_LPAREN2, + ACTIONS(11769), 1, + aux_sym_preproc_include_token3, + STATE(6602), 1, + sym_preproc_argument_list, + [56860] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11312), 1, + anon_sym_COMMA, + ACTIONS(11771), 1, + anon_sym_RPAREN, + STATE(5385), 1, + aux_sym_parameter_list_repeat1, + [56873] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1934), 1, + anon_sym_LBRACE, + ACTIONS(1936), 1, + anon_sym_ATautoreleasepool, + STATE(692), 1, + sym_compound_statement, + [56886] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11773), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_COLON, + [56895] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9477), 1, + sym_identifier, + ACTIONS(11775), 1, + anon_sym_RBRACK, + STATE(5327), 1, + aux_sym_message_expression_repeat2, + [56908] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10279), 1, + anon_sym_RPAREN, + ACTIONS(11777), 1, + anon_sym_COMMA, + STATE(5679), 1, + aux_sym_available_expression_repeat1, + [56921] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10149), 1, + anon_sym_COMMA, + ACTIONS(11780), 1, + anon_sym_RPAREN, + STATE(5679), 1, + aux_sym_available_expression_repeat1, + [56934] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9477), 1, + sym_identifier, + ACTIONS(11782), 1, + anon_sym_RBRACK, + STATE(5327), 1, + aux_sym_message_expression_repeat2, + [56947] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LBRACE, + ACTIONS(4681), 1, + anon_sym_ATautoreleasepool, + STATE(2146), 1, + sym_compound_statement, + [56960] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4162), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11784), 1, + sym_identifier, + STATE(5762), 1, + sym_variadic_parameter, + [56973] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11786), 1, + anon_sym_COMMA, + ACTIONS(11788), 1, + anon_sym_RPAREN, + STATE(5502), 1, + aux_sym__old_style_parameter_list_repeat1, + [56986] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10741), 1, + anon_sym_COMMA, + ACTIONS(11790), 1, + anon_sym_SEMI, + STATE(5311), 1, + aux_sym_property_implementation_repeat1, + [56999] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11790), 1, + anon_sym_SEMI, + STATE(5244), 1, + aux_sym_protocol_forward_declaration_repeat1, + [57012] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8393), 1, + anon_sym_RBRACE, + ACTIONS(11792), 1, + anon_sym_COMMA, + STATE(5544), 1, + aux_sym_initializer_list_repeat1, + [57025] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8209), 1, + anon_sym_LBRACE, + ACTIONS(8211), 1, + anon_sym_ATautoreleasepool, + STATE(1459), 1, + sym_compound_statement, + [57038] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11229), 1, + anon_sym_COMMA, + ACTIONS(11794), 1, + anon_sym_GT, + STATE(5707), 1, + aux_sym_parameterized_arguments_repeat2, + [57051] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, + anon_sym_ATautoreleasepool, + STATE(771), 1, + sym_compound_statement, + [57064] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(759), 1, + anon_sym_LBRACE, + ACTIONS(761), 1, + anon_sym_ATautoreleasepool, + STATE(551), 1, + sym_compound_statement, + [57077] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(759), 1, + anon_sym_LBRACE, + ACTIONS(761), 1, + anon_sym_ATautoreleasepool, + STATE(579), 1, + sym_compound_statement, + [57090] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10855), 1, + anon_sym_LBRACE, + ACTIONS(10857), 1, + anon_sym_ATautoreleasepool, + STATE(1088), 1, + sym_compound_statement, + [57103] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_ATautoreleasepool, + STATE(443), 1, + sym_compound_statement, + [57116] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10741), 1, + anon_sym_COMMA, + ACTIONS(11796), 1, + anon_sym_SEMI, + STATE(5461), 1, + aux_sym_property_implementation_repeat1, + [57129] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11796), 1, + anon_sym_SEMI, + STATE(5244), 1, + aux_sym_protocol_forward_declaration_repeat1, + [57142] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11229), 1, + anon_sym_COMMA, + ACTIONS(11798), 1, + anon_sym_GT, + STATE(5331), 1, + aux_sym_parameterized_arguments_repeat2, + [57155] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11373), 1, + anon_sym_COLON, + ACTIONS(11800), 1, + anon_sym_RPAREN, + STATE(6648), 1, + sym_gnu_asm_goto_list, + [57168] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11215), 1, + anon_sym_COLON, + ACTIONS(11802), 1, + anon_sym_RPAREN, + STATE(5403), 1, + sym_gnu_asm_clobber_list, + [57181] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10119), 1, + anon_sym_COMMA, + ACTIONS(11804), 1, + anon_sym_RPAREN, + STATE(5660), 1, + aux_sym_availability_attribute_specifier_repeat1, + [57194] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10119), 1, + anon_sym_COMMA, + ACTIONS(11804), 1, + anon_sym_RPAREN, + STATE(5406), 1, + aux_sym_availability_attribute_specifier_repeat1, + [57207] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11229), 1, + anon_sym_COMMA, + ACTIONS(11794), 1, + anon_sym_GT, + STATE(5331), 1, + aux_sym_parameterized_arguments_repeat2, + [57220] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(11796), 1, + anon_sym_SEMI, + STATE(5470), 1, + aux_sym_protocol_forward_declaration_repeat1, + [57233] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LBRACE, + ACTIONS(4681), 1, + anon_sym_ATautoreleasepool, + STATE(2189), 1, + sym_compound_statement, + [57246] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9530), 1, + anon_sym_COMMA, + ACTIONS(11806), 1, + anon_sym_RPAREN, + STATE(5528), 1, + aux_sym_attribute_repeat1, + [57259] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11219), 1, + anon_sym_COMMA, + ACTIONS(11808), 1, + anon_sym_GT, + STATE(5513), 1, + aux_sym_argument_list_repeat2, + [57272] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11229), 1, + anon_sym_COMMA, + ACTIONS(11482), 1, + anon_sym_GT, + STATE(5331), 1, + aux_sym_parameterized_arguments_repeat2, + [57285] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11250), 1, + anon_sym_DOT, + ACTIONS(11810), 1, + anon_sym_SEMI, + STATE(5428), 1, + aux_sym_module_import_repeat1, + [57298] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11250), 1, + anon_sym_DOT, + ACTIONS(11812), 1, + anon_sym_SEMI, + STATE(5564), 1, + aux_sym_module_import_repeat1, + [57311] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11814), 1, + anon_sym_LPAREN2, + STATE(6588), 1, + sym_argument_list, + [57321] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11757), 1, + sym_identifier, + STATE(5739), 1, + sym_property_attribute, + [57331] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11816), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57339] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11818), 1, + aux_sym_preproc_include_token3, + ACTIONS(11820), 1, + sym_preproc_arg, + [57349] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8913), 1, + anon_sym_LBRACE, + STATE(3891), 1, + sym_enumerator_list, + [57359] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_LPAREN2, + STATE(6606), 1, + sym_argument_list, + [57369] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11822), 1, + sym_identifier, + ACTIONS(11824), 1, + anon_sym_STAR, + [57379] = 3, + ACTIONS(4074), 1, + sym_number_literal, + ACTIONS(4076), 1, + aux_sym_preproc_include_token3, + ACTIONS(9877), 1, + sym_comment, + [57389] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11826), 2, + sym_number_literal, + sym_identifier, + [57397] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11828), 1, + sym_identifier, + ACTIONS(11830), 1, + sym_primitive_type, + [57407] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8913), 1, + anon_sym_LBRACE, + STATE(3908), 1, + sym_enumerator_list, + [57417] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11832), 1, + anon_sym_COLON2, + STATE(5158), 1, + aux_sym_method_identifier_repeat1, + [57427] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11834), 1, + aux_sym_preproc_include_token3, + ACTIONS(11836), 1, + sym_preproc_arg, + [57437] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11838), 1, + anon_sym_LPAREN2, + STATE(2433), 1, + sym_parenthesized_expression, + [57447] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11840), 1, + sym_identifier, + STATE(5458), 1, + sym_attribute, + [57457] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11842), 1, + anon_sym_LPAREN2, + STATE(5517), 1, + sym_parenthesized_expression, + [57467] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10861), 1, + aux_sym_preproc_include_token3, + ACTIONS(10863), 1, + sym_preproc_arg, + [57477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11838), 1, + anon_sym_LPAREN2, + STATE(2457), 1, + sym_parenthesized_expression, + [57487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11842), 1, + anon_sym_LPAREN2, + STATE(6256), 1, + sym_parenthesized_expression, + [57497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11838), 1, + anon_sym_LPAREN2, + STATE(2434), 1, + sym_parenthesized_expression, + [57507] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11842), 1, + anon_sym_LPAREN2, + STATE(5598), 1, + sym_parenthesized_expression, + [57517] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9172), 1, + anon_sym_LBRACK, + ACTIONS(11844), 1, + anon_sym_RPAREN, + [57527] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11846), 1, + sym_identifier, + ACTIONS(11848), 1, + sym_primitive_type, + [57537] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11850), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [57545] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11509), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57553] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11852), 1, + sym_identifier, + ACTIONS(11854), 1, + sym_primitive_type, + [57563] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11856), 1, + anon_sym_LPAREN2, + STATE(4993), 1, + aux_sym_selector_expression_repeat1, + [57573] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8913), 1, + anon_sym_LBRACE, + STATE(4117), 1, + sym_enumerator_list, + [57583] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11858), 1, + sym_identifier, + ACTIONS(11860), 1, + sym_primitive_type, + [57593] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11631), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57601] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11862), 1, + anon_sym_LPAREN2, + STATE(6314), 1, + sym_argument_list, + [57611] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11864), 1, + sym_identifier, + ACTIONS(11866), 1, + sym_primitive_type, + [57621] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11838), 1, + anon_sym_LPAREN2, + STATE(2439), 1, + sym_parenthesized_expression, + [57631] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11868), 1, + sym_identifier, + ACTIONS(11870), 1, + anon_sym_LPARENclass_RPAREN, + [57641] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11872), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57649] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11838), 1, + anon_sym_LPAREN2, + STATE(2440), 1, + sym_parenthesized_expression, + [57659] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11874), 1, + sym_identifier, + ACTIONS(11876), 1, + anon_sym_LPARENclass_RPAREN, + [57669] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11878), 1, + aux_sym_preproc_include_token3, + ACTIONS(11880), 1, + sym_number_literal, + [57679] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11882), 2, + sym_number_literal, + sym_identifier, + [57687] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11884), 1, + aux_sym_preproc_include_token3, + ACTIONS(11886), 1, + sym_preproc_arg, + [57697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9172), 1, + anon_sym_LBRACK, + ACTIONS(11888), 1, + anon_sym_RPAREN, + [57707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_LBRACE, + STATE(3102), 1, + sym_enumerator_list, + [57717] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11890), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57725] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11892), 2, + anon_sym_COMMA, + anon_sym_GT, + [57733] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3000), 1, + anon_sym_SEMI, + ACTIONS(11894), 1, + anon_sym_EQ, + [57743] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11896), 1, + aux_sym_preproc_include_token3, + ACTIONS(11898), 1, + sym_preproc_arg, + [57753] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11900), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57761] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11902), 1, + aux_sym_preproc_include_token3, + ACTIONS(11904), 1, + sym_number_literal, + [57771] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11661), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57779] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11906), 1, + anon_sym_LPAREN2, + STATE(4988), 1, + aux_sym_selector_expression_repeat1, + [57789] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11842), 1, + anon_sym_LPAREN2, + STATE(6459), 1, + sym_parenthesized_expression, + [57799] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11908), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [57807] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11507), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57815] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11910), 2, + anon_sym_noreturn, + anon_sym_nothrow, + [57823] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11912), 1, + aux_sym_preproc_include_token3, + ACTIONS(11914), 1, + sym_preproc_arg, + [57833] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11916), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [57841] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11918), 1, + aux_sym_preproc_include_token3, + ACTIONS(11920), 1, + sym_number_literal, + [57851] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11922), 2, + anon_sym_COMMA, + anon_sym_GT, + [57859] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11838), 1, + anon_sym_LPAREN2, + STATE(2463), 1, + sym_parenthesized_expression, + [57869] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11842), 1, + anon_sym_LPAREN2, + STATE(5511), 1, + sym_parenthesized_expression, + [57879] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11924), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [57887] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_LBRACE, + STATE(4176), 1, + sym_enumerator_list, + [57897] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11926), 1, + sym_identifier, + ACTIONS(11928), 1, + sym_primitive_type, + [57907] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9477), 1, + sym_identifier, + STATE(5681), 1, + aux_sym_message_expression_repeat2, + [57917] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11930), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57925] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11430), 2, + anon_sym_SEMI, + anon_sym_DOT, + [57933] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8170), 1, + anon_sym_COMMA, + ACTIONS(11933), 1, + anon_sym_EQ, + [57943] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11935), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [57951] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9644), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57959] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11838), 1, + anon_sym_LPAREN2, + STATE(2475), 1, + sym_parenthesized_expression, + [57969] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11937), 1, + aux_sym_preproc_include_token3, + ACTIONS(11939), 1, + sym_number_literal, + [57979] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11842), 1, + anon_sym_LPAREN2, + STATE(5577), 1, + sym_parenthesized_expression, + [57989] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11526), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [57997] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11941), 1, + aux_sym_preproc_include_token3, + ACTIONS(11943), 1, + sym_number_literal, + [58007] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11945), 1, + sym_identifier, + ACTIONS(11947), 1, + anon_sym_STAR, + [58017] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11949), 1, + anon_sym_LPAREN2, + STATE(4984), 1, + aux_sym_selector_expression_repeat1, + [58027] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8913), 1, + anon_sym_LBRACE, + STATE(4100), 1, + sym_enumerator_list, + [58037] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11838), 1, + anon_sym_LPAREN2, + STATE(2442), 1, + sym_parenthesized_expression, + [58047] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11842), 1, + anon_sym_LPAREN2, + STATE(5694), 1, + sym_parenthesized_expression, + [58057] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11951), 1, + aux_sym_preproc_include_token3, + ACTIONS(11953), 1, + sym_preproc_arg, + [58067] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11955), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11957), 1, + sym_identifier, + ACTIONS(11959), 1, + sym_primitive_type, + [58085] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11961), 1, + aux_sym_preproc_include_token3, + ACTIONS(11963), 1, + sym_preproc_arg, + [58095] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9620), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [58103] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11840), 1, + sym_identifier, + STATE(5446), 1, + sym_attribute, + [58113] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11838), 1, + anon_sym_LPAREN2, + STATE(2455), 1, + sym_parenthesized_expression, + [58123] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11965), 1, + aux_sym_preproc_include_token3, + ACTIONS(11967), 1, + sym_preproc_arg, + [58133] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11838), 1, + anon_sym_LPAREN2, + STATE(2478), 1, + sym_parenthesized_expression, + [58143] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11969), 1, + anon_sym_LPAREN2, + STATE(6038), 1, + sym_argument_list, + [58153] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11971), 1, + aux_sym_preproc_include_token3, + ACTIONS(11973), 1, + sym_preproc_arg, + [58163] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11842), 1, + anon_sym_LPAREN2, + STATE(6530), 1, + sym_parenthesized_expression, + [58173] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11707), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [58181] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10865), 1, + aux_sym_preproc_include_token3, + ACTIONS(10867), 1, + sym_preproc_arg, + [58191] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + anon_sym_RPAREN, + [58201] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11840), 1, + sym_identifier, + STATE(5782), 1, + sym_attribute, + [58211] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11979), 1, + sym_identifier, + ACTIONS(11981), 1, + anon_sym_LPARENclass_RPAREN, + [58221] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11983), 1, + sym_identifier, + ACTIONS(11985), 1, + anon_sym_RPAREN, + [58231] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11987), 1, + aux_sym_preproc_include_token3, + ACTIONS(11989), 1, + sym_number_literal, + [58241] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11991), 1, + anon_sym_LPAREN2, + STATE(6230), 1, + sym_argument_list, + [58251] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11993), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58259] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11080), 1, + anon_sym_RPAREN, + STATE(4500), 1, + aux_sym_selector_expression_repeat2, + [58269] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9695), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58277] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11995), 2, + anon_sym_COMMA, + anon_sym_GT, + [58285] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10141), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11842), 1, + anon_sym_LPAREN2, + STATE(6117), 1, + sym_parenthesized_expression, + [58303] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11838), 1, + anon_sym_LPAREN2, + STATE(2466), 1, + sym_parenthesized_expression, + [58313] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_LBRACE, + STATE(3183), 1, + sym_enumerator_list, + [58323] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9172), 1, + anon_sym_LBRACK, + ACTIONS(11997), 1, + anon_sym_RPAREN, + [58333] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11840), 1, + sym_identifier, + STATE(5673), 1, + sym_attribute, + [58343] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11999), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [58351] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12001), 1, + aux_sym_preproc_include_token3, + ACTIONS(12003), 1, + sym_preproc_arg, + [58361] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8913), 1, + anon_sym_LBRACE, + STATE(3890), 1, + sym_enumerator_list, + [58371] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10125), 1, + anon_sym_COLON2, + STATE(5035), 1, + aux_sym_method_identifier_repeat1, + [58381] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11840), 1, + sym_identifier, + STATE(5402), 1, + sym_attribute, + [58391] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12005), 1, + sym_identifier, + ACTIONS(12007), 1, + sym_primitive_type, + [58401] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12009), 1, + sym_identifier, + ACTIONS(12011), 1, + anon_sym_LPARENclass_RPAREN, + [58411] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12013), 1, + sym_identifier, + ACTIONS(12015), 1, + sym_primitive_type, + [58421] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12017), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [58429] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11562), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58437] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11985), 1, + anon_sym_RPAREN, + ACTIONS(12019), 1, + sym_identifier, + [58447] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7604), 1, + anon_sym_COLON, + STATE(2816), 1, + sym_method_parameter, + [58457] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11838), 1, + anon_sym_LPAREN2, + STATE(2461), 1, + sym_parenthesized_expression, + [58467] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12021), 1, + aux_sym_preproc_include_token3, + ACTIONS(12023), 1, + sym_preproc_arg, + [58477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_LBRACE, + STATE(4169), 1, + sym_enumerator_list, + [58487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12025), 1, + sym_identifier, + ACTIONS(12027), 1, + sym_primitive_type, + [58497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11842), 1, + anon_sym_LPAREN2, + STATE(5484), 1, + sym_parenthesized_expression, + [58507] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4821), 1, + anon_sym_COLON, + STATE(2818), 1, + sym_method_parameter, + [58517] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12029), 1, + aux_sym_preproc_include_token3, + ACTIONS(12031), 1, + sym_preproc_arg, + [58527] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12033), 1, + aux_sym_preproc_include_token3, + ACTIONS(12035), 1, + sym_preproc_arg, + [58537] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12037), 1, + sym_identifier, + ACTIONS(12039), 1, + anon_sym_LPAREN2, + [58547] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11838), 1, + anon_sym_LPAREN2, + STATE(2462), 1, + sym_parenthesized_expression, + [58557] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12041), 1, + aux_sym_preproc_include_token3, + ACTIONS(12043), 1, + sym_preproc_arg, + [58567] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9626), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [58575] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12045), 1, + sym_identifier, + ACTIONS(12047), 1, + sym_primitive_type, + [58585] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12049), 1, + anon_sym_LPAREN2, + STATE(6254), 1, + sym_argument_list, + [58595] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12051), 1, + aux_sym_preproc_include_token3, + ACTIONS(12053), 1, + sym_preproc_arg, + [58605] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9640), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [58613] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11842), 1, + anon_sym_LPAREN2, + STATE(6259), 1, + sym_parenthesized_expression, + [58623] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_LBRACE, + STATE(3222), 1, + sym_enumerator_list, + [58633] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12055), 1, + sym_identifier, + ACTIONS(12057), 1, + sym_primitive_type, + [58643] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12059), 1, + aux_sym_preproc_include_token3, + ACTIONS(12061), 1, + sym_number_literal, + [58653] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12063), 1, + aux_sym_preproc_include_token3, + ACTIONS(12065), 1, + sym_preproc_arg, + [58663] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12067), 1, + sym_identifier, + ACTIONS(12069), 1, + anon_sym_LPARENclass_RPAREN, + [58673] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12071), 1, + aux_sym_preproc_include_token3, + ACTIONS(12073), 1, + sym_preproc_arg, + [58683] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12075), 1, + aux_sym_preproc_include_token3, + ACTIONS(12077), 1, + sym_number_literal, + [58693] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11017), 1, + aux_sym_preproc_include_token3, + ACTIONS(11019), 1, + sym_preproc_arg, + [58703] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11842), 1, + anon_sym_LPAREN2, + STATE(6347), 1, + sym_parenthesized_expression, + [58713] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10279), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8913), 1, + anon_sym_LBRACE, + STATE(4128), 1, + sym_enumerator_list, + [58731] = 3, + ACTIONS(4090), 1, + sym_number_literal, + ACTIONS(4092), 1, + aux_sym_preproc_include_token3, + ACTIONS(9877), 1, + sym_comment, + [58741] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12079), 1, + sym_identifier, + ACTIONS(12081), 1, + sym_primitive_type, + [58751] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11592), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58759] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12083), 1, + anon_sym_LPAREN2, + STATE(6330), 1, + sym_argument_list, + [58769] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9477), 1, + sym_identifier, + STATE(5550), 1, + aux_sym_message_expression_repeat2, + [58779] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12085), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [58787] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12087), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58795] = 3, + ACTIONS(4110), 1, + sym_number_literal, + ACTIONS(4112), 1, + aux_sym_preproc_include_token3, + ACTIONS(9877), 1, + sym_comment, + [58805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_LBRACE, + STATE(4187), 1, + sym_enumerator_list, + [58815] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12089), 2, + anon_sym_COMMA, + anon_sym_GT, + [58823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12091), 1, + sym_identifier, + ACTIONS(12093), 1, + sym_primitive_type, + [58833] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, + anon_sym_RPAREN, + STATE(1455), 1, + aux_sym_selector_expression_repeat2, + [58843] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12095), 1, + aux_sym_preproc_include_token3, + ACTIONS(12097), 1, + sym_number_literal, + [58853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9172), 1, + anon_sym_LBRACK, + ACTIONS(12099), 1, + anon_sym_RPAREN, + [58863] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12101), 1, + sym_identifier, + ACTIONS(12103), 1, + anon_sym_LPAREN2, + [58873] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11838), 1, + anon_sym_LPAREN2, + STATE(2435), 1, + sym_parenthesized_expression, + [58883] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11264), 2, + anon_sym_COMMA, + anon_sym_GT, + [58891] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12105), 1, + aux_sym_preproc_include_token3, + ACTIONS(12107), 1, + sym_preproc_arg, + [58901] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12109), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58909] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12111), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [58917] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12113), 1, + aux_sym_preproc_include_token3, + ACTIONS(12115), 1, + sym_preproc_arg, + [58927] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11842), 1, + anon_sym_LPAREN2, + STATE(5613), 1, + sym_parenthesized_expression, + [58937] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12117), 1, + anon_sym_LPAREN2, + STATE(6632), 1, + sym_argument_list, + [58947] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12119), 1, + sym_identifier, + ACTIONS(12121), 1, + anon_sym_LPARENclass_RPAREN, + [58957] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12123), 1, + sym_identifier, + ACTIONS(12125), 1, + sym_primitive_type, + [58967] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12127), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58975] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11838), 1, + anon_sym_LPAREN2, + STATE(2438), 1, + sym_parenthesized_expression, + [58985] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11842), 1, + anon_sym_LPAREN2, + STATE(6761), 1, + sym_parenthesized_expression, + [58995] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11078), 1, + anon_sym_RPAREN, + STATE(4371), 1, + aux_sym_selector_expression_repeat2, + [59005] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12129), 1, + aux_sym_preproc_include_token3, + ACTIONS(12131), 1, + sym_preproc_arg, + [59015] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11074), 1, + anon_sym_RPAREN, + STATE(1625), 1, + aux_sym_selector_expression_repeat2, + [59025] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12133), 1, + aux_sym_preproc_include_token3, + ACTIONS(12135), 1, + sym_number_literal, + [59035] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12137), 1, + aux_sym_preproc_include_token3, + ACTIONS(12139), 1, + sym_preproc_arg, + [59045] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11838), 1, + anon_sym_LPAREN2, + STATE(2477), 1, + sym_parenthesized_expression, + [59055] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12141), 1, + anon_sym_LPAREN2, + STATE(4999), 1, + aux_sym_selector_expression_repeat1, + [59065] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12143), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59073] = 3, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12145), 1, + aux_sym_preproc_include_token3, + ACTIONS(12147), 1, + sym_preproc_arg, + [59083] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9656), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59091] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11344), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59099] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12149), 1, + sym_identifier, + ACTIONS(12151), 1, + anon_sym_STAR, + [59109] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12153), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59117] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12155), 1, + anon_sym_LBRACE, + [59124] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12157), 1, + anon_sym_SEMI, + [59131] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12159), 1, + anon_sym_SEMI, + [59138] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12161), 1, + sym_identifier, + [59145] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12163), 1, + anon_sym_RPAREN, + [59152] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12165), 1, + anon_sym_RPAREN, + [59159] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12167), 1, + sym_identifier, + [59166] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12169), 1, + aux_sym_preproc_if_token2, + [59173] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12171), 1, + anon_sym_RPAREN, + [59180] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12173), 1, + anon_sym_SEMI, + [59187] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12175), 1, + sym_identifier, + [59194] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12177), 1, + anon_sym_SEMI, + [59201] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12179), 1, + anon_sym_SEMI, + [59208] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12181), 1, + anon_sym_SEMI, + [59215] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12183), 1, + anon_sym_SEMI, + [59222] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12185), 1, + anon_sym_RPAREN, + [59229] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12187), 1, + anon_sym_SEMI, + [59236] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12189), 1, + anon_sym_SEMI, + [59243] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12191), 1, + anon_sym_SEMI, + [59250] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12193), 1, + anon_sym_SEMI, + [59257] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12195), 1, + sym_identifier, + [59264] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12197), 1, + sym_identifier, + [59271] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12199), 1, + aux_sym_preproc_include_token3, + [59278] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12201), 1, + anon_sym_RPAREN, + [59285] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12203), 1, + anon_sym_LBRACE, + [59292] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12205), 1, + anon_sym_SEMI, + [59299] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12207), 1, + anon_sym_SEMI, + [59306] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12209), 1, + anon_sym_SEMI, + [59313] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12211), 1, + anon_sym_SEMI, + [59320] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12213), 1, + sym_identifier, + [59327] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12215), 1, + anon_sym_RPAREN, + [59334] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12217), 1, + sym_identifier, + [59341] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12219), 1, + sym_identifier, + [59348] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12221), 1, + sym_identifier, + [59355] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12223), 1, + anon_sym_SEMI, + [59362] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12225), 1, + anon_sym_DQUOTE, + [59369] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12227), 1, + aux_sym_preproc_if_token2, + [59376] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12229), 1, + aux_sym_preproc_if_token2, + [59383] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12231), 1, + anon_sym_SEMI, + [59390] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12233), 1, + aux_sym_preproc_include_token3, + [59397] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12235), 1, + aux_sym_preproc_if_token2, + [59404] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12237), 1, + sym_identifier, + [59411] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12239), 1, + anon_sym_RPAREN, + [59418] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12241), 1, + anon_sym_SEMI, + [59425] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12243), 1, + sym_identifier, + [59432] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12245), 1, + anon_sym_COLON, + [59439] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12247), 1, + anon_sym_SEMI, + [59446] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12249), 1, + sym_identifier, + [59453] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12251), 1, + aux_sym_preproc_include_token3, + [59460] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12253), 1, + sym_identifier, + [59467] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12255), 1, + anon_sym_SEMI, + [59474] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12257), 1, + anon_sym_SEMI, + [59481] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12259), 1, + sym_identifier, + [59488] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12261), 1, + aux_sym_preproc_include_token3, + [59495] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12263), 1, + sym_identifier, + [59502] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9707), 1, + anon_sym_COLON, + [59509] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12265), 1, + anon_sym_SEMI, + [59516] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12267), 1, + aux_sym_preproc_if_token2, + [59523] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12269), 1, + anon_sym_COLON, + [59530] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12271), 1, + aux_sym_ms_asm_block_token1, + [59537] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12273), 1, + sym_identifier, + [59544] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11476), 1, + aux_sym_preproc_include_token3, + [59551] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12275), 1, + anon_sym_SEMI, + [59558] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12277), 1, + anon_sym_RPAREN, + [59565] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12279), 1, + anon_sym_SEMI, + [59572] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12281), 1, + anon_sym_SEMI, + [59579] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9632), 1, + anon_sym_SEMI, + [59586] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12283), 1, + sym_identifier, + [59593] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12285), 1, + anon_sym_RPAREN, + [59600] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12287), 1, + anon_sym_SEMI, + [59607] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12289), 1, + sym_identifier, + [59614] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12291), 1, + anon_sym_SEMI, + [59621] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12293), 1, + anon_sym_RBRACK, + [59628] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12295), 1, + anon_sym_SEMI, + [59635] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12297), 1, + anon_sym_SEMI, + [59642] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12299), 1, + sym_identifier, + [59649] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12301), 1, + sym_identifier, + [59656] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12303), 1, + aux_sym_preproc_if_token2, + [59663] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12305), 1, + sym_identifier, + [59670] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12307), 1, + aux_sym_preproc_include_token3, + [59677] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12309), 1, + aux_sym_preproc_if_token2, + [59684] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12311), 1, + anon_sym_SEMI, + [59691] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12313), 1, + anon_sym_SEMI, + [59698] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12315), 1, + anon_sym_RPAREN, + [59705] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12317), 1, + aux_sym_preproc_if_token2, + [59712] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12319), 1, + sym_identifier, + [59719] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12321), 1, + anon_sym_SEMI, + [59726] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12323), 1, + anon_sym_SEMI, + [59733] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12325), 1, + sym_identifier, + [59740] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12327), 1, + sym_identifier, + [59747] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12329), 1, + anon_sym_SEMI, + [59754] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12331), 1, + anon_sym_SEMI, + [59761] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12333), 1, + anon_sym_LBRACE, + [59768] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12335), 1, + anon_sym_SEMI, + [59775] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12337), 1, + anon_sym_SEMI, + [59782] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12339), 1, + anon_sym_SEMI, + [59789] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12341), 1, + anon_sym_SEMI, + [59796] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12343), 1, + sym_identifier, + [59803] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12345), 1, + sym_identifier, + [59810] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12347), 1, + sym_identifier, + [59817] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12349), 1, + sym_identifier, + [59824] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12351), 1, + anon_sym_RPAREN, + [59831] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12353), 1, + anon_sym_DQUOTE, + [59838] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12355), 1, + anon_sym_SEMI, + [59845] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12357), 1, + anon_sym_RBRACE, + [59852] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12359), 1, + sym_identifier, + [59859] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12361), 1, + anon_sym_SEMI, + [59866] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12363), 1, + anon_sym_RPAREN, + [59873] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12365), 1, + sym_identifier, + [59880] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12367), 1, + anon_sym_SEMI, + [59887] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12369), 1, + sym_identifier, + [59894] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12371), 1, + sym_identifier, + [59901] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12373), 1, + anon_sym_SEMI, + [59908] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12375), 1, + anon_sym_LPAREN2, + [59915] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12377), 1, + sym_identifier, + [59922] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12379), 1, + anon_sym_SEMI, + [59929] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12381), 1, + sym_identifier, + [59936] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9618), 1, + anon_sym_RPAREN, + [59943] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12383), 1, + anon_sym_SEMI, + [59950] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12385), 1, + anon_sym_SEMI, + [59957] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12387), 1, + anon_sym_SEMI, + [59964] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12389), 1, + aux_sym_ms_asm_block_token1, + [59971] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11441), 1, + aux_sym_preproc_include_token3, + [59978] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12391), 1, + anon_sym_SEMI, + [59985] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12393), 1, + anon_sym_RPAREN, + [59992] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12395), 1, + anon_sym_SEMI, + [59999] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12397), 1, + sym_identifier, + [60006] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12399), 1, + anon_sym_SEMI, + [60013] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12401), 1, + anon_sym_SEMI, + [60020] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12403), 1, + aux_sym_preproc_if_token2, + [60027] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12405), 1, + anon_sym_COMMA, + [60034] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12407), 1, + anon_sym_SEMI, + [60041] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12409), 1, + anon_sym_LPAREN2, + [60048] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12411), 1, + anon_sym_SEMI, + [60055] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12413), 1, + sym_identifier, + [60062] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12415), 1, + anon_sym_SEMI, + [60069] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12417), 1, + anon_sym_SEMI, + [60076] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12419), 1, + aux_sym_preproc_include_token3, + [60083] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12421), 1, + anon_sym_RPAREN, + [60090] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12423), 1, + anon_sym_SEMI, + [60097] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12425), 1, + anon_sym_SEMI, + [60104] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12427), 1, + anon_sym_RPAREN, + [60111] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12429), 1, + anon_sym_SEMI, + [60118] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8002), 1, + anon_sym_SEMI, + [60125] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12431), 1, + sym_identifier, + [60132] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12433), 1, + sym_identifier, + [60139] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12435), 1, + anon_sym_LBRACE, + [60146] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12437), 1, + anon_sym_RPAREN, + [60153] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12439), 1, + aux_sym_preproc_include_token3, + [60160] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12441), 1, + aux_sym_preproc_include_token3, + [60167] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12443), 1, + aux_sym_preproc_if_token2, + [60174] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12445), 1, + sym_identifier, + [60181] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12447), 1, + sym_identifier, + [60188] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12449), 1, + anon_sym_DQUOTE, + [60195] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12451), 1, + anon_sym_SEMI, + [60202] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12453), 1, + anon_sym_SEMI, + [60209] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12455), 1, + anon_sym_SEMI, + [60216] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12457), 1, + anon_sym_SEMI, + [60223] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12459), 1, + sym_identifier, + [60230] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12461), 1, + anon_sym_RPAREN, + [60237] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12463), 1, + sym_identifier, + [60244] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12465), 1, + anon_sym_SEMI, + [60251] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12467), 1, + anon_sym_RPAREN, + [60258] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12469), 1, + aux_sym_preproc_if_token2, + [60265] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12471), 1, + anon_sym_SEMI, + [60272] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12473), 1, + anon_sym_SEMI, + [60279] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12475), 1, + aux_sym_ms_asm_block_token1, + [60286] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12477), 1, + anon_sym_SEMI, + [60293] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9745), 1, + anon_sym_RPAREN, + [60300] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12479), 1, + anon_sym_RPAREN, + [60307] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10007), 1, + aux_sym_preproc_include_token3, + [60314] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12481), 1, + sym_identifier, + [60321] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12483), 1, + aux_sym_preproc_include_token3, + [60328] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9670), 1, + anon_sym_RPAREN, + [60335] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12485), 1, + anon_sym_SEMI, + [60342] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12487), 1, + aux_sym_preproc_include_token3, + [60349] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12489), 1, + aux_sym_preproc_if_token2, + [60356] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12491), 1, + anon_sym_SEMI, + [60363] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12493), 1, + anon_sym_SEMI, + [60370] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12495), 1, + sym_identifier, + [60377] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12497), 1, + anon_sym_SEMI, + [60384] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9680), 1, + anon_sym_RPAREN, + [60391] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12499), 1, + anon_sym_SEMI, + [60398] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9622), 1, + anon_sym_SEMI, + [60405] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12501), 1, + anon_sym_COLON, + [60412] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12503), 1, + anon_sym_SEMI, + [60419] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12505), 1, + anon_sym_RPAREN, + [60426] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12507), 1, + anon_sym_SEMI, + [60433] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12509), 1, + sym_identifier, + [60440] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12511), 1, + sym_identifier, + [60447] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12513), 1, + anon_sym_LBRACE, + [60454] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12515), 1, + anon_sym_SEMI, + [60461] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12517), 1, + sym_identifier, + [60468] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12519), 1, + sym_identifier, + [60475] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12521), 1, + anon_sym_DQUOTE, + [60482] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12523), 1, + anon_sym_SEMI, + [60489] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12525), 1, + anon_sym_SEMI, + [60496] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12527), 1, + anon_sym_SEMI, + [60503] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12529), 1, + sym_identifier, + [60510] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12531), 1, + aux_sym_preproc_if_token2, + [60517] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12533), 1, + anon_sym_RPAREN, + [60524] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12535), 1, + anon_sym_SEMI, + [60531] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12537), 1, + anon_sym_SEMI, + [60538] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12539), 1, + aux_sym_ms_asm_block_token1, + [60545] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9650), 1, + anon_sym_RPAREN, + [60552] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12541), 1, + anon_sym_SEMI, + [60559] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12543), 1, + anon_sym_SEMI, + [60566] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9689), 1, + anon_sym_RPAREN, + [60573] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12545), 1, + anon_sym_SEMI, + [60580] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12547), 1, + anon_sym_SEMI, + [60587] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12549), 1, + anon_sym_SEMI, + [60594] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12551), 1, + anon_sym_SEMI, + [60601] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12553), 1, + anon_sym_RBRACK, + [60608] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12555), 1, + anon_sym_SEMI, + [60615] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9701), 1, + anon_sym_SEMI, + [60622] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12557), 1, + anon_sym_SEMI, + [60629] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12559), 1, + anon_sym_SEMI, + [60636] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12561), 1, + anon_sym_SEMI, + [60643] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12563), 1, + anon_sym_RPAREN, + [60650] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12565), 1, + sym_identifier, + [60657] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12567), 1, + sym_identifier, + [60664] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12569), 1, + anon_sym_LBRACE, + [60671] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12571), 1, + sym_identifier, + [60678] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10873), 1, + anon_sym_RPAREN, + [60685] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12573), 1, + sym_identifier, + [60692] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12575), 1, + sym_identifier, + [60699] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12577), 1, + anon_sym_RPAREN, + [60706] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12579), 1, + anon_sym_LPAREN2, + [60713] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12581), 1, + anon_sym_SEMI, + [60720] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12583), 1, + aux_sym_preproc_if_token2, + [60727] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12585), 1, + anon_sym_RPAREN, + [60734] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12587), 1, + anon_sym_SEMI, + [60741] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12589), 1, + anon_sym_RBRACK, + [60748] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12591), 1, + anon_sym_SEMI, + [60755] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12593), 1, + anon_sym_SEMI, + [60762] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12595), 1, + anon_sym_RBRACK, + [60769] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12597), 1, + anon_sym_SEMI, + [60776] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12599), 1, + sym_identifier, + [60783] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12601), 1, + sym_identifier, + [60790] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12603), 1, + anon_sym_LBRACE, + [60797] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12605), 1, + anon_sym_SEMI, + [60804] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12607), 1, + sym_identifier, + [60811] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12609), 1, + anon_sym_SEMI, + [60818] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12611), 1, + anon_sym_SEMI, + [60825] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12613), 1, + anon_sym_SEMI, + [60832] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12615), 1, + sym_identifier, + [60839] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12617), 1, + anon_sym_SEMI, + [60846] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12619), 1, + anon_sym_SEMI, + [60853] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12621), 1, + anon_sym_SEMI, + [60860] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12623), 1, + anon_sym_RBRACE, + [60867] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12625), 1, + anon_sym_SEMI, + [60874] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12627), 1, + anon_sym_LBRACE, + [60881] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12629), 1, + anon_sym_SEMI, + [60888] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12631), 1, + sym_identifier, + [60895] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12633), 1, + anon_sym_SEMI, + [60902] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12635), 1, + anon_sym_SEMI, + [60909] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12637), 1, + anon_sym_SEMI, + [60916] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12639), 1, + anon_sym_SEMI, + [60923] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12641), 1, + anon_sym_SEMI, + [60930] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12643), 1, + anon_sym_SEMI, + [60937] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12645), 1, + anon_sym_SEMI, + [60944] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12647), 1, + anon_sym_SEMI, + [60951] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12649), 1, + anon_sym_STAR, + [60958] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12651), 1, + anon_sym_LBRACE, + [60965] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12653), 1, + sym_identifier, + [60972] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12655), 1, + anon_sym_LBRACE, + [60979] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12657), 1, + anon_sym_LBRACE, + [60986] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12659), 1, + anon_sym_LBRACE, + [60993] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12661), 1, + anon_sym_LBRACE, + [61000] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12663), 1, + anon_sym_LBRACE, + [61007] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12665), 1, + anon_sym_LBRACE, + [61014] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12667), 1, + aux_sym_preproc_include_token3, + [61021] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12669), 1, + anon_sym_LBRACE, + [61028] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11498), 1, + aux_sym_preproc_include_token3, + [61035] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12671), 1, + anon_sym_LPAREN2, + [61042] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12673), 1, + anon_sym_RPAREN, + [61049] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12675), 1, + anon_sym_LPAREN2, + [61056] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12677), 1, + anon_sym_LPAREN2, + [61063] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12679), 1, + anon_sym_LPAREN2, + [61070] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12681), 1, + anon_sym_LPAREN2, + [61077] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12683), 1, + anon_sym_COLON, + [61084] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12685), 1, + anon_sym_LPAREN2, + [61091] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12687), 1, + sym_identifier, + [61098] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9391), 1, + anon_sym_RPAREN, + [61105] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12689), 1, + anon_sym_LPAREN2, + [61112] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12691), 1, + sym_number_literal, + [61119] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12693), 1, + anon_sym_LPAREN2, + [61126] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12695), 1, + sym_identifier, + [61133] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9411), 1, + anon_sym_RPAREN, + [61140] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12697), 1, + anon_sym_LPAREN2, + [61147] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12699), 1, + anon_sym_LPAREN2, + [61154] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12701), 1, + anon_sym_SEMI, + [61161] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12703), 1, + anon_sym_SEMI, + [61168] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12705), 1, + aux_sym_preproc_if_token2, + [61175] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12707), 1, + sym_identifier, + [61182] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12709), 1, + anon_sym_SEMI, + [61189] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12711), 1, + sym_number_literal, + [61196] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12713), 1, + anon_sym_STAR, + [61203] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12715), 1, + aux_sym_preproc_if_token2, + [61210] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12717), 1, + anon_sym_STAR, + [61217] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12719), 1, + anon_sym_SEMI, + [61224] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9624), 1, + anon_sym_SEMI, + [61231] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12721), 1, + anon_sym_RPAREN, + [61238] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12723), 1, + anon_sym_SEMI, + [61245] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12725), 1, + anon_sym_SEMI, + [61252] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12727), 1, + aux_sym_preproc_if_token2, + [61259] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12729), 1, + anon_sym_while, + [61266] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12731), 1, + anon_sym_SEMI, + [61273] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12733), 1, + anon_sym_SEMI, + [61280] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12735), 1, + anon_sym_SEMI, + [61287] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12737), 1, + anon_sym_LBRACK, + [61294] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9654), 1, + anon_sym_SEMI, + [61301] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11517), 1, + aux_sym_preproc_include_token3, + [61308] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12739), 1, + aux_sym_preproc_if_token2, + [61315] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12741), 1, + anon_sym_SEMI, + [61322] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12743), 1, + anon_sym_SEMI, + [61329] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12745), 1, + aux_sym_preproc_if_token2, + [61336] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12747), 1, + anon_sym_RPAREN, + [61343] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12749), 1, + anon_sym_SEMI, + [61350] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12751), 1, + anon_sym_SEMI, + [61357] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12753), 1, + aux_sym_preproc_include_token3, + [61364] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9668), 1, + anon_sym_SEMI, + [61371] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12755), 1, + anon_sym_RPAREN, + [61378] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12757), 1, + anon_sym_SEMI, + [61385] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12759), 1, + aux_sym_preproc_include_token3, + [61392] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9401), 1, + anon_sym_RPAREN, + [61399] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12761), 1, + anon_sym_SEMI, + [61406] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12763), 1, + anon_sym_RPAREN, + [61413] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12765), 1, + anon_sym_RBRACK, + [61420] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12767), 1, + sym_identifier, + [61427] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12769), 1, + anon_sym_RPAREN, + [61434] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9658), 1, + anon_sym_SEMI, + [61441] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12771), 1, + anon_sym_SEMI, + [61448] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12773), 1, + sym_identifier, + [61455] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12775), 1, + aux_sym_preproc_include_token3, + [61462] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12777), 1, + anon_sym_LPAREN2, + [61469] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12779), 1, + anon_sym_SEMI, + [61476] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12781), 1, + anon_sym_COMMA, + [61483] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9691), 1, + anon_sym_SEMI, + [61490] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12783), 1, + sym_identifier, + [61497] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12785), 1, + anon_sym_SEMI, + [61504] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12787), 1, + sym_identifier, + [61511] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12789), 1, + aux_sym_preproc_include_token3, + [61518] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12791), 1, + anon_sym_RPAREN, + [61525] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12793), 1, + anon_sym_RPAREN, + [61532] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12795), 1, + anon_sym_SEMI, + [61539] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12797), 1, + anon_sym_RPAREN, + [61546] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12799), 1, + aux_sym_preproc_if_token2, + [61553] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12801), 1, + sym_identifier, + [61560] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12803), 1, + anon_sym_SEMI, + [61567] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9693), 1, + anon_sym_SEMI, + [61574] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12805), 1, + anon_sym_SEMI, + [61581] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12807), 1, + anon_sym_SEMI, + [61588] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9407), 1, + anon_sym_RPAREN, + [61595] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12809), 1, + anon_sym_RPAREN, + [61602] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12811), 1, + anon_sym_SEMI, + [61609] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12813), 1, + anon_sym_SEMI, + [61616] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12815), 1, + anon_sym_RPAREN, + [61623] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12817), 1, + anon_sym_STAR, + [61630] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12819), 1, + anon_sym_SEMI, + [61637] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12821), 1, + aux_sym_preproc_include_token3, + [61644] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12823), 1, + aux_sym_preproc_include_token3, + [61651] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12825), 1, + anon_sym_RPAREN, + [61658] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12827), 1, + anon_sym_SEMI, + [61665] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12829), 1, + aux_sym_preproc_if_token2, + [61672] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12831), 1, + aux_sym_preproc_include_token3, + [61679] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9610), 1, + anon_sym_COLON, + [61686] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12833), 1, + anon_sym_LPAREN2, + [61693] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12835), 1, + anon_sym_LPAREN2, + [61700] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12837), 1, + anon_sym_COLON, + [61707] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10011), 1, + aux_sym_preproc_include_token3, + [61714] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12839), 1, + anon_sym_SEMI, + [61721] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12841), 1, + anon_sym_LPAREN2, + [61728] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12843), 1, + anon_sym_SEMI, + [61735] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12845), 1, + anon_sym_RPAREN, + [61742] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12847), 1, + aux_sym_preproc_include_token3, + [61749] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12849), 1, + anon_sym_RPAREN, + [61756] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12851), 1, + sym_identifier, + [61763] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12853), 1, + sym_identifier, + [61770] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12855), 1, + aux_sym_preproc_if_token2, + [61777] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12857), 1, + anon_sym_RBRACK, + [61784] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12859), 1, + anon_sym_LPAREN2, + [61791] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12861), 1, + aux_sym_preproc_if_token2, + [61798] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12863), 1, + anon_sym_COMMA, + [61805] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LBRACE, + [61812] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12867), 1, + sym_identifier, + [61819] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12869), 1, + sym_identifier, + [61826] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12871), 1, + anon_sym_SEMI, + [61833] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9729), 1, + anon_sym_RPAREN, + [61840] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12873), 1, + aux_sym_preproc_include_token3, + [61847] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12875), 1, + sym_identifier, + [61854] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12877), 1, + aux_sym_preproc_if_token2, + [61861] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12879), 1, + sym_identifier, + [61868] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12881), 1, + aux_sym_preproc_if_token2, + [61875] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12883), 1, + aux_sym_preproc_include_token3, + [61882] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12885), 1, + sym_identifier, + [61889] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12887), 1, + aux_sym_preproc_include_token3, + [61896] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12889), 1, + sym_identifier, + [61903] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12891), 1, + anon_sym_SEMI, + [61910] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12893), 1, + anon_sym_DQUOTE, + [61917] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9564), 1, + anon_sym_RPAREN, + [61924] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12895), 1, + aux_sym_preproc_if_token2, + [61931] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(12897), 1, + aux_sym_preproc_include_token3, + [61938] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12899), 1, + anon_sym_SEMI, + [61945] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12901), 1, + aux_sym_preproc_if_token2, + [61952] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12903), 1, + anon_sym_SEMI, + [61959] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12905), 1, + aux_sym_preproc_if_token2, + [61966] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12907), 1, + sym_identifier, + [61973] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12909), 1, + anon_sym_RPAREN, + [61980] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12911), 1, + anon_sym_SEMI, + [61987] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9389), 1, + anon_sym_RPAREN, + [61994] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12913), 1, + sym_identifier, + [62001] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11577), 1, + anon_sym_RPAREN, + [62008] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12915), 1, + anon_sym_SEMI, + [62015] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12917), 1, + anon_sym_RPAREN, + [62022] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12919), 1, + anon_sym_STAR, + [62029] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12921), 1, + anon_sym_RPAREN, + [62036] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12923), 1, + anon_sym_SEMI, + [62043] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12925), 1, + anon_sym_SEMI, + [62050] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12927), 1, + anon_sym_SEMI, + [62057] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12929), 1, + anon_sym_SEMI, + [62064] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9799), 1, + anon_sym_RPAREN, + [62071] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12931), 1, + anon_sym_SEMI, + [62078] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12933), 1, + anon_sym_STAR, + [62085] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12935), 1, + anon_sym_RBRACE, + [62092] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12937), 1, + anon_sym_RBRACK, + [62099] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12939), 1, + sym_identifier, + [62106] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12941), 1, + aux_sym_preproc_if_token2, + [62113] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12943), 1, + anon_sym_SEMI, + [62120] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12945), 1, + anon_sym_RPAREN, + [62127] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12947), 1, + anon_sym_RPAREN, + [62134] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12949), 1, + sym_identifier, + [62141] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12951), 1, + anon_sym_RBRACE, + [62148] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12953), 1, + anon_sym_RPAREN, + [62155] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12955), 1, + anon_sym_SEMI, + [62162] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12957), 1, + sym_identifier, + [62169] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12959), 1, + anon_sym_RPAREN, + [62176] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12961), 1, + anon_sym_LPAREN2, + [62183] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9733), 1, + anon_sym_RPAREN, + [62190] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7214), 1, + anon_sym_RBRACE, + [62197] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12963), 1, + anon_sym_RPAREN, + [62204] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12965), 1, + anon_sym_LPAREN2, + [62211] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9636), 1, + anon_sym_SEMI, + [62218] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12967), 1, + anon_sym_RPAREN, + [62225] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12969), 1, + anon_sym_SEMI, + [62232] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12971), 1, + aux_sym_preproc_if_token2, + [62239] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12973), 1, + sym_identifier, + [62246] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12975), 1, + anon_sym_SEMI, + [62253] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9727), 1, + anon_sym_RPAREN, + [62260] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12977), 1, + sym_identifier, + [62267] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12979), 1, + anon_sym_RPAREN, + [62274] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12981), 1, + anon_sym_RPAREN, + [62281] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12983), 1, + anon_sym_RPAREN, + [62288] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9403), 1, + anon_sym_RPAREN, + [62295] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12985), 1, + anon_sym_RPAREN, + [62302] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12987), 1, + anon_sym_LPAREN2, + [62309] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_COLON, + [62316] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12989), 1, + anon_sym_RPAREN, + [62323] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12991), 1, + anon_sym_SEMI, + [62330] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9660), 1, + anon_sym_SEMI, + [62337] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12993), 1, + anon_sym_RPAREN, + [62344] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12995), 1, + sym_identifier, + [62351] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9405), 1, + anon_sym_RPAREN, + [62358] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12997), 1, + anon_sym_SEMI, + [62365] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12999), 1, + anon_sym_SEMI, + [62372] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13001), 1, + anon_sym_RPAREN, + [62379] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(13003), 1, + aux_sym_preproc_include_token3, + [62386] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13005), 1, + anon_sym_SEMI, + [62393] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9666), 1, + anon_sym_COLON, + [62400] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13007), 1, + sym_identifier, + [62407] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13009), 1, + anon_sym_SEMI, + [62414] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9743), 1, + anon_sym_RPAREN, + [62421] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13011), 1, + anon_sym_COMMA, + [62428] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13013), 1, + sym_identifier, + [62435] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13015), 1, + anon_sym_RPAREN, + [62442] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13017), 1, + anon_sym_SEMI, + [62449] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13019), 1, + anon_sym_LPAREN2, + [62456] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13021), 1, + anon_sym_LPAREN2, + [62463] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13023), 1, + anon_sym_LPAREN2, + [62470] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13025), 1, + anon_sym_SEMI, + [62477] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13027), 1, + sym_identifier, + [62484] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13029), 1, + sym_number_literal, + [62491] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13031), 1, + sym_identifier, + [62498] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13033), 1, + sym_identifier, + [62505] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13035), 1, + anon_sym_SEMI, + [62512] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13037), 1, + ts_builtin_sym_end, + [62519] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13039), 1, + anon_sym_SEMI, + [62526] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13041), 1, + sym_identifier, + [62533] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13043), 1, + anon_sym_RPAREN, + [62540] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13045), 1, + anon_sym_SEMI, + [62547] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13047), 1, + anon_sym_SEMI, + [62554] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13049), 1, + anon_sym_RPAREN, + [62561] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13051), 1, + sym_identifier, + [62568] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13053), 1, + anon_sym_SEMI, + [62575] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13055), 1, + anon_sym_while, + [62582] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13057), 1, + aux_sym_preproc_if_token2, + [62589] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13059), 1, + anon_sym_SEMI, + [62596] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13061), 1, + anon_sym_RPAREN, + [62603] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13063), 1, + sym_identifier, + [62610] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13065), 1, + sym_identifier, + [62617] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13067), 1, + anon_sym_SEMI, + [62624] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9697), 1, + anon_sym_COLON, + [62631] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13069), 1, + aux_sym_preproc_if_token2, + [62638] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13071), 1, + anon_sym_RPAREN, + [62645] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13073), 1, + anon_sym_SEMI, + [62652] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9614), 1, + anon_sym_COLON, + [62659] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13075), 1, + sym_identifier, + [62666] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13077), 1, + sym_identifier, + [62673] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13079), 1, + sym_identifier, + [62680] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11460), 1, + sym_identifier, + [62687] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13081), 1, + sym_identifier, + [62694] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13083), 1, + anon_sym_SEMI, + [62701] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13085), 1, + sym_identifier, + [62708] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13087), 1, + anon_sym_SEMI, + [62715] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13089), 1, + sym_identifier, + [62722] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13091), 1, + anon_sym_SEMI, + [62729] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13093), 1, + sym_identifier, + [62736] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9586), 1, + anon_sym_RBRACE, + [62743] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13095), 1, + anon_sym_RPAREN, + [62750] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7250), 1, + anon_sym_RBRACE, + [62757] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13097), 1, + anon_sym_LPAREN2, + [62764] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13099), 1, + anon_sym_SEMI, + [62771] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13101), 1, + aux_sym_preproc_if_token2, + [62778] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11314), 1, + anon_sym_RPAREN, + [62785] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(13103), 1, + aux_sym_preproc_include_token3, + [62792] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13105), 1, + aux_sym_preproc_if_token2, + [62799] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13107), 1, + sym_identifier, + [62806] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9672), 1, + anon_sym_COLON, + [62813] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13109), 1, + anon_sym_STAR, + [62820] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13111), 1, + anon_sym_SEMI, + [62827] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13113), 1, + anon_sym_SEMI, + [62834] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13115), 1, + aux_sym_preproc_if_token2, + [62841] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13117), 1, + sym_identifier, + [62848] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13119), 1, + anon_sym_SEMI, + [62855] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13121), 1, + anon_sym_SEMI, + [62862] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13123), 1, + anon_sym_SEMI, + [62869] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13125), 1, + anon_sym_SEMI, + [62876] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13127), 1, + anon_sym_EQ, + [62883] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13129), 1, + anon_sym_RBRACK, + [62890] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13131), 1, + anon_sym_RBRACE, + [62897] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13133), 1, + anon_sym_SEMI, + [62904] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13135), 1, + anon_sym_SEMI, + [62911] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13137), 1, + anon_sym_SEMI, + [62918] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13139), 1, + anon_sym_STAR, + [62925] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(13141), 1, + aux_sym_ms_asm_block_token1, + [62932] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13143), 1, + anon_sym_SEMI, + [62939] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13145), 1, + anon_sym_RPAREN, + [62946] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13147), 1, + sym_identifier, + [62953] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13149), 1, + anon_sym_LPAREN2, + [62960] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13151), 1, + anon_sym_LPAREN2, + [62967] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13153), 1, + sym_identifier, + [62974] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13155), 1, + sym_identifier, + [62981] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13157), 1, + sym_number_literal, + [62988] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13159), 1, + sym_identifier, + [62995] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13161), 1, + anon_sym_RBRACK, + [63002] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13163), 1, + anon_sym_RPAREN, + [63009] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13165), 1, + anon_sym_RPAREN, + [63016] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13167), 1, + anon_sym_SEMI, + [63023] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13169), 1, + anon_sym_SEMI, + [63030] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13171), 1, + anon_sym_SEMI, + [63037] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13173), 1, + anon_sym_RPAREN, + [63044] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13175), 1, + anon_sym_RPAREN, + [63051] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13177), 1, + anon_sym_while, + [63058] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9642), 1, + anon_sym_COLON, + [63065] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13179), 1, + aux_sym_preproc_if_token2, + [63072] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13181), 1, + aux_sym_preproc_if_token2, + [63079] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(13183), 1, + aux_sym_preproc_include_token3, + [63086] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13185), 1, + anon_sym_RPAREN, + [63093] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13187), 1, + aux_sym_preproc_if_token2, + [63100] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13189), 1, + anon_sym_SEMI, + [63107] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13191), 1, + aux_sym_preproc_if_token2, + [63114] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9674), 1, + anon_sym_RPAREN, + [63121] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13193), 1, + aux_sym_preproc_if_token2, + [63128] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13195), 1, + anon_sym_SEMI, + [63135] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13197), 1, + aux_sym_preproc_if_token2, + [63142] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13199), 1, + anon_sym_SEMI, + [63149] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13201), 1, + anon_sym_RPAREN, + [63156] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13203), 1, + anon_sym_SEMI, + [63163] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13205), 1, + anon_sym_SEMI, + [63170] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13207), 1, + anon_sym_SEMI, + [63177] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13209), 1, + anon_sym_LPAREN2, + [63184] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13211), 1, + anon_sym_LPAREN2, + [63191] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13213), 1, + anon_sym_SEMI, + [63198] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13215), 1, + sym_number_literal, + [63205] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + sym_identifier, + [63212] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13219), 1, + sym_identifier, + [63219] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13221), 1, + anon_sym_SEMI, + [63226] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13223), 1, + anon_sym_SEMI, + [63233] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13225), 1, + anon_sym_SEMI, + [63240] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13227), 1, + sym_identifier, + [63247] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13229), 1, + anon_sym_LPAREN2, + [63254] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13231), 1, + anon_sym_while, + [63261] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9676), 1, + anon_sym_RPAREN, + [63268] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9612), 1, + anon_sym_SEMI, + [63275] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13233), 1, + sym_identifier, + [63282] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13235), 1, + anon_sym_SEMI, + [63289] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13237), 1, + anon_sym_SEMI, + [63296] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13239), 1, + anon_sym_SEMI, + [63303] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13241), 1, + anon_sym_SEMI, + [63310] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13243), 1, + aux_sym_preproc_if_token2, + [63317] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13245), 1, + anon_sym_RPAREN, + [63324] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13247), 1, + anon_sym_RBRACK, + [63331] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13249), 1, + aux_sym_preproc_if_token2, + [63338] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13251), 1, + aux_sym_preproc_if_token2, + [63345] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13253), 1, + anon_sym_SEMI, + [63352] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13255), 1, + sym_identifier, + [63359] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13257), 1, + anon_sym_SEMI, + [63366] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13259), 1, + anon_sym_LPAREN2, + [63373] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13261), 1, + aux_sym_preproc_if_token2, + [63380] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13263), 1, + anon_sym_RBRACK, + [63387] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13265), 1, + anon_sym_RBRACE, + [63394] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9664), 1, + anon_sym_SEMI, + [63401] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13267), 1, + anon_sym_while, + [63408] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13269), 1, + aux_sym_preproc_if_token2, + [63415] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13271), 1, + sym_identifier, + [63422] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13273), 1, + anon_sym_SEMI, + [63429] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13275), 1, + sym_identifier, + [63436] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13277), 1, + anon_sym_SEMI, + [63443] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13279), 1, + sym_identifier, + [63450] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13281), 1, + anon_sym_SEMI, + [63457] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13283), 1, + anon_sym_SEMI, + [63464] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(13285), 1, + aux_sym_preproc_include_token3, + [63471] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13287), 1, + aux_sym_preproc_if_token2, + [63478] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13289), 1, + anon_sym_SEMI, + [63485] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13291), 1, + anon_sym_SEMI, + [63492] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13293), 1, + anon_sym_SEMI, + [63499] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13295), 1, + anon_sym_SEMI, + [63506] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13297), 1, + anon_sym_LPAREN2, + [63513] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13299), 1, + anon_sym_SEMI, + [63520] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13301), 1, + anon_sym_RPAREN, + [63527] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13303), 1, + anon_sym_SEMI, + [63534] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13305), 1, + anon_sym_RPAREN, + [63541] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13307), 1, + anon_sym_while, + [63548] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13309), 1, + sym_identifier, + [63555] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13311), 1, + anon_sym_RPAREN, + [63562] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13313), 1, + anon_sym_RPAREN, + [63569] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13315), 1, + anon_sym_LPAREN2, + [63576] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13317), 1, + anon_sym_RBRACK, + [63583] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13319), 1, + anon_sym_RBRACK, + [63590] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(13321), 1, + aux_sym_preproc_include_token3, + [63597] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13323), 1, + anon_sym_SEMI, + [63604] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13325), 1, + sym_identifier, + [63611] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9628), 1, + anon_sym_SEMI, + [63618] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13327), 1, + anon_sym_RPAREN, + [63625] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13329), 1, + sym_identifier, + [63632] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13331), 1, + anon_sym_while, + [63639] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13333), 1, + sym_identifier, + [63646] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13335), 1, + anon_sym_SEMI, + [63653] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13337), 1, + anon_sym_RPAREN, + [63660] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13339), 1, + anon_sym_SEMI, + [63667] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13341), 1, + anon_sym_RPAREN, + [63674] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13343), 1, + anon_sym_SEMI, + [63681] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9678), 1, + anon_sym_SEMI, + [63688] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13345), 1, + anon_sym_SEMI, + [63695] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13347), 1, + anon_sym_SEMI, + [63702] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13349), 1, + anon_sym_SEMI, + [63709] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13351), 1, + anon_sym_RPAREN, + [63716] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13353), 1, + anon_sym_COLON, + [63723] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13355), 1, + anon_sym_LPAREN2, + [63730] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13357), 1, + aux_sym_preproc_if_token2, + [63737] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13359), 1, + sym_identifier, + [63744] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13361), 1, + aux_sym_preproc_if_token2, + [63751] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13363), 1, + anon_sym_LPAREN2, + [63758] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13365), 1, + anon_sym_COLON, + [63765] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13367), 1, + anon_sym_RPAREN, + [63772] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13369), 1, + anon_sym_SEMI, + [63779] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9630), 1, + anon_sym_SEMI, + [63786] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13371), 1, + sym_identifier, + [63793] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13373), 1, + anon_sym_RPAREN, + [63800] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(13375), 1, + aux_sym_preproc_include_token3, + [63807] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13377), 1, + aux_sym_preproc_if_token2, + [63814] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13379), 1, + sym_identifier, + [63821] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13381), 1, + anon_sym_LBRACK, + [63828] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13383), 1, + aux_sym_preproc_if_token2, + [63835] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13385), 1, + anon_sym_SEMI, + [63842] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13387), 1, + anon_sym_SEMI, + [63849] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13389), 1, + sym_identifier, + [63856] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7832), 1, + anon_sym_SEMI, + [63863] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13391), 1, + sym_identifier, + [63870] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13393), 1, + anon_sym_SEMI, + [63877] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13395), 1, + anon_sym_LPAREN2, + [63884] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13397), 1, + anon_sym_SEMI, + [63891] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13399), 1, + anon_sym_COLON, + [63898] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13401), 1, + sym_identifier, + [63905] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(13403), 1, + aux_sym_preproc_include_token3, + [63912] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13405), 1, + anon_sym_RPAREN, + [63919] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13407), 1, + anon_sym_SEMI, + [63926] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9399), 1, + anon_sym_RPAREN, + [63933] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13409), 1, + anon_sym_RPAREN, + [63940] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13411), 1, + anon_sym_typedef, + [63947] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13413), 1, + anon_sym_LPAREN2, + [63954] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13415), 1, + anon_sym_LPAREN2, + [63961] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13417), 1, + anon_sym_SEMI, + [63968] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(13419), 1, + aux_sym_preproc_include_token3, + [63975] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13421), 1, + anon_sym_SEMI, + [63982] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13423), 1, + anon_sym_LPAREN2, + [63989] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13425), 1, + anon_sym_LBRACK, + [63996] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13427), 1, + anon_sym_typedef, + [64003] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(13429), 1, + aux_sym_preproc_include_token3, + [64010] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13431), 1, + sym_identifier, + [64017] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13433), 1, + aux_sym_preproc_if_token2, + [64024] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13435), 1, + anon_sym_RPAREN, + [64031] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10015), 1, + aux_sym_preproc_include_token3, + [64038] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9687), 1, + anon_sym_COLON, + [64045] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13437), 1, + anon_sym_LBRACE, + [64052] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13439), 1, + anon_sym_RPAREN, + [64059] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13441), 1, + anon_sym_STAR, + [64066] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13443), 1, + sym_identifier, + [64073] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13445), 1, + aux_sym_preproc_if_token2, + [64080] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13447), 1, + sym_identifier, + [64087] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(13449), 1, + aux_sym_preproc_include_token3, + [64094] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9608), 1, + anon_sym_RBRACE, + [64101] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13451), 1, + anon_sym_SEMI, + [64108] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13453), 1, + anon_sym_SEMI, + [64115] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_SEMI, + [64122] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13457), 1, + anon_sym_RPAREN, + [64129] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13459), 1, + anon_sym_RPAREN, + [64136] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13461), 1, + anon_sym_SEMI, + [64143] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13463), 1, + sym_identifier, + [64150] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13465), 1, + anon_sym_SEMI, + [64157] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13467), 1, + anon_sym_SEMI, + [64164] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13469), 1, + anon_sym_SEMI, + [64171] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13471), 1, + sym_identifier, + [64178] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13473), 1, + anon_sym_RPAREN, + [64185] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13475), 1, + anon_sym_RPAREN, + [64192] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13477), 1, + anon_sym_RBRACK, + [64199] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13479), 1, + aux_sym_preproc_if_token2, + [64206] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13481), 1, + sym_identifier, + [64213] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13483), 1, + anon_sym_COMMA, + [64220] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13485), 1, + anon_sym_LBRACE, + [64227] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13487), 1, + anon_sym_SEMI, + [64234] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13489), 1, + anon_sym_SEMI, + [64241] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13491), 1, + anon_sym_RPAREN, + [64248] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(13493), 1, + aux_sym_preproc_include_token3, + [64255] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13495), 1, + sym_identifier, + [64262] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13497), 1, + anon_sym_SEMI, + [64269] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13499), 1, + aux_sym_preproc_if_token2, + [64276] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13501), 1, + sym_identifier, + [64283] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13503), 1, + anon_sym_RPAREN, + [64290] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(13505), 1, + aux_sym_preproc_include_token3, + [64297] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13507), 1, + anon_sym_SEMI, + [64304] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13509), 1, + anon_sym_RPAREN, + [64311] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13511), 1, + sym_identifier, + [64318] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + sym_identifier, + [64325] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13515), 1, + sym_identifier, + [64332] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13517), 1, + aux_sym_preproc_if_token2, + [64339] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13519), 1, + aux_sym_preproc_if_token2, + [64346] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13521), 1, + anon_sym_DQUOTE, + [64353] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13523), 1, + anon_sym_RPAREN, + [64360] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13525), 1, + anon_sym_RPAREN, + [64367] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13527), 1, + anon_sym_SEMI, + [64374] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13529), 1, + anon_sym_SEMI, + [64381] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13531), 1, + anon_sym_RPAREN, + [64388] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13533), 1, + anon_sym_SEMI, + [64395] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13535), 1, + anon_sym_COLON, + [64402] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_RPAREN, + [64409] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13539), 1, + anon_sym_SEMI, + [64416] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9397), 1, + anon_sym_RPAREN, + [64423] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13541), 1, + sym_identifier, + [64430] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13543), 1, + anon_sym_SEMI, + [64437] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_STAR, + [64444] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13547), 1, + anon_sym_SEMI, + [64451] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13549), 1, + anon_sym_SEMI, + [64458] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13551), 1, + anon_sym_RPAREN, + [64465] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13553), 1, + anon_sym_SEMI, + [64472] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9699), 1, + anon_sym_COLON, + [64479] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13555), 1, + anon_sym_RPAREN, + [64486] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13557), 1, + sym_identifier, + [64493] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13559), 1, + anon_sym_SEMI, + [64500] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13561), 1, + sym_identifier, + [64507] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13563), 1, + aux_sym_preproc_if_token2, + [64514] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(13565), 1, + aux_sym_preproc_include_token3, + [64521] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13567), 1, + anon_sym_LPAREN2, + [64528] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13569), 1, + sym_identifier, + [64535] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13571), 1, + anon_sym_SEMI, + [64542] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(13573), 1, + aux_sym_preproc_include_token3, + [64549] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13575), 1, + anon_sym_RPAREN, + [64556] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13577), 1, + anon_sym_SEMI, + [64563] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9393), 1, + anon_sym_RPAREN, + [64570] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13579), 1, + sym_identifier, + [64577] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13581), 1, + anon_sym_typedef, + [64584] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13583), 1, + aux_sym_preproc_if_token2, + [64591] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13585), 1, + anon_sym_LPAREN2, + [64598] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13587), 1, + anon_sym_RPAREN, + [64605] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13589), 1, + anon_sym_LBRACK, + [64612] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13591), 1, + anon_sym_SEMI, + [64619] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13593), 1, + anon_sym_SEMI, + [64626] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13595), 1, + anon_sym_SEMI, + [64633] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13597), 1, + sym_identifier, + [64640] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13599), 1, + aux_sym_preproc_if_token2, + [64647] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9703), 1, + anon_sym_COLON, + [64654] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13601), 1, + aux_sym_preproc_if_token2, + [64661] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(11769), 1, + aux_sym_preproc_include_token3, + [64668] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13603), 1, + anon_sym_SEMI, + [64675] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13605), 1, + sym_identifier, + [64682] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(13607), 1, + aux_sym_preproc_include_token3, + [64689] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7996), 1, + anon_sym_SEMI, + [64696] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13609), 1, + sym_identifier, + [64703] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_SEMI, + [64710] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(13613), 1, + aux_sym_preproc_include_token3, + [64717] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13615), 1, + anon_sym_SEMI, + [64724] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13617), 1, + sym_identifier, + [64731] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(13619), 1, + aux_sym_preproc_include_token3, + [64738] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13621), 1, + sym_identifier, + [64745] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13623), 1, + aux_sym_preproc_if_token2, + [64752] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13625), 1, + anon_sym_RPAREN, + [64759] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13627), 1, + aux_sym_preproc_if_token2, + [64766] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11894), 1, + anon_sym_EQ, + [64773] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13629), 1, + aux_sym_preproc_if_token2, + [64780] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13631), 1, + anon_sym_RPAREN, + [64787] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13633), 1, + sym_identifier, + [64794] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(13635), 1, + aux_sym_ms_asm_block_token1, + [64801] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13637), 1, + anon_sym_SEMI, + [64808] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13639), 1, + anon_sym_RPAREN, + [64815] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13641), 1, + sym_identifier, + [64822] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9395), 1, + anon_sym_RPAREN, + [64829] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(13643), 1, + aux_sym_ms_asm_block_token1, + [64836] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13645), 1, + sym_identifier, + [64843] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13647), 1, + anon_sym_SEMI, + [64850] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13649), 1, + sym_identifier, + [64857] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13651), 1, + sym_identifier, + [64864] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8013), 1, + anon_sym_SEMI, + [64871] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13653), 1, + anon_sym_SEMI, + [64878] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13655), 1, + anon_sym_RPAREN, + [64885] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13657), 1, + anon_sym_SEMI, + [64892] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13659), 1, + anon_sym_SEMI, + [64899] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13661), 1, + anon_sym_SEMI, + [64906] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13663), 1, + anon_sym_RPAREN, + [64913] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13665), 1, + anon_sym_RPAREN, + [64920] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9409), 1, + anon_sym_RPAREN, + [64927] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13667), 1, + anon_sym_SEMI, + [64934] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9648), 1, + anon_sym_SEMI, + [64941] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9705), 1, + anon_sym_COLON, + [64948] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13669), 1, + anon_sym_LPAREN2, + [64955] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13671), 1, + aux_sym_preproc_if_token2, + [64962] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13673), 1, + anon_sym_RBRACE, + [64969] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13675), 1, + aux_sym_preproc_if_token2, + [64976] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13677), 1, + anon_sym_LPAREN2, + [64983] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13679), 1, + anon_sym_SEMI, + [64990] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13681), 1, + anon_sym_typedef, + [64997] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13683), 1, + anon_sym_LPAREN2, + [65004] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13685), 1, + sym_identifier, + [65011] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13687), 1, + anon_sym_SEMI, + [65018] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13689), 1, + anon_sym_LPAREN2, + [65025] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13691), 1, + anon_sym_SEMI, + [65032] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13693), 1, + anon_sym_RPAREN, + [65039] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_SEMI, + [65046] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13697), 1, + anon_sym_LPAREN2, + [65053] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13699), 1, + anon_sym_LPAREN2, + [65060] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13701), 1, + anon_sym_typedef, + [65067] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13703), 1, + anon_sym_LPAREN2, + [65074] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13705), 1, + anon_sym_SEMI, + [65081] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13707), 1, + sym_identifier, + [65088] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13709), 1, + anon_sym_SEMI, + [65095] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13711), 1, + anon_sym_SEMI, + [65102] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LPAREN2, + [65109] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13715), 1, + aux_sym_preproc_if_token2, + [65116] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13717), 1, + anon_sym_typedef, + [65123] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13719), 1, + anon_sym_LPAREN2, + [65130] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13721), 1, + sym_identifier, + [65137] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9634), 1, + anon_sym_RPAREN, + [65144] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13723), 1, + anon_sym_SEMI, + [65151] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9757), 1, + anon_sym_RPAREN, + [65158] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_SEMI, + [65165] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13727), 1, + anon_sym_typedef, + [65172] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13729), 1, + anon_sym_LPAREN2, + [65179] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13731), 1, + sym_identifier, + [65186] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13733), 1, + anon_sym_typedef, + [65193] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13735), 1, + anon_sym_LPAREN2, + [65200] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13737), 1, + aux_sym_preproc_if_token2, + [65207] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13739), 1, + anon_sym_typedef, + [65214] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13741), 1, + anon_sym_SEMI, + [65221] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13743), 1, + anon_sym_typedef, + [65228] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9652), 1, + anon_sym_SEMI, + [65235] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13745), 1, + anon_sym_LPAREN2, + [65242] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13747), 1, + anon_sym_LPAREN2, + [65249] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13749), 1, + anon_sym_SEMI, + [65256] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13751), 1, + anon_sym_SEMI, + [65263] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13753), 1, + anon_sym_SEMI, + [65270] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13755), 1, + aux_sym_preproc_if_token2, + [65277] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7623), 1, + anon_sym_COLON, + [65284] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13757), 1, + sym_identifier, + [65291] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13759), 1, + anon_sym_SEMI, + [65298] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13761), 1, + anon_sym_SEMI, + [65305] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + sym_identifier, + [65312] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13765), 1, + anon_sym_SEMI, + [65319] = 2, + ACTIONS(9877), 1, + sym_comment, + ACTIONS(10031), 1, + aux_sym_preproc_include_token3, + [65326] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13767), 1, + aux_sym_preproc_if_token2, + [65333] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11474), 1, + anon_sym_RPAREN, + [65340] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13769), 1, + sym_identifier, + [65347] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13771), 1, + anon_sym_DQUOTE, + [65354] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13773), 1, + anon_sym_LPAREN2, + [65361] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13775), 1, + anon_sym_SEMI, +}; + +static const uint32_t ts_small_parse_table_map[] = { + [SMALL_STATE(4137)] = 0, + [SMALL_STATE(4138)] = 103, + [SMALL_STATE(4139)] = 206, + [SMALL_STATE(4140)] = 276, + [SMALL_STATE(4141)] = 346, + [SMALL_STATE(4142)] = 446, + [SMALL_STATE(4143)] = 516, + [SMALL_STATE(4144)] = 616, + [SMALL_STATE(4145)] = 715, + [SMALL_STATE(4146)] = 814, + [SMALL_STATE(4147)] = 912, + [SMALL_STATE(4148)] = 1010, + [SMALL_STATE(4149)] = 1081, + [SMALL_STATE(4150)] = 1152, + [SMALL_STATE(4151)] = 1223, + [SMALL_STATE(4152)] = 1294, + [SMALL_STATE(4153)] = 1365, + [SMALL_STATE(4154)] = 1436, + [SMALL_STATE(4155)] = 1507, + [SMALL_STATE(4156)] = 1579, + [SMALL_STATE(4157)] = 1653, + [SMALL_STATE(4158)] = 1725, + [SMALL_STATE(4159)] = 1813, + [SMALL_STATE(4160)] = 1901, + [SMALL_STATE(4161)] = 1973, + [SMALL_STATE(4162)] = 2045, + [SMALL_STATE(4163)] = 2117, + [SMALL_STATE(4164)] = 2189, + [SMALL_STATE(4165)] = 2263, + [SMALL_STATE(4166)] = 2337, + [SMALL_STATE(4167)] = 2425, + [SMALL_STATE(4168)] = 2513, + [SMALL_STATE(4169)] = 2579, + [SMALL_STATE(4170)] = 2645, + [SMALL_STATE(4171)] = 2711, + [SMALL_STATE(4172)] = 2795, + [SMALL_STATE(4173)] = 2861, + [SMALL_STATE(4174)] = 2927, + [SMALL_STATE(4175)] = 2993, + [SMALL_STATE(4176)] = 3059, + [SMALL_STATE(4177)] = 3125, + [SMALL_STATE(4178)] = 3187, + [SMALL_STATE(4179)] = 3273, + [SMALL_STATE(4180)] = 3359, + [SMALL_STATE(4181)] = 3425, + [SMALL_STATE(4182)] = 3509, + [SMALL_STATE(4183)] = 3575, + [SMALL_STATE(4184)] = 3637, + [SMALL_STATE(4185)] = 3703, + [SMALL_STATE(4186)] = 3769, + [SMALL_STATE(4187)] = 3835, + [SMALL_STATE(4188)] = 3901, + [SMALL_STATE(4189)] = 3967, + [SMALL_STATE(4190)] = 4050, + [SMALL_STATE(4191)] = 4133, + [SMALL_STATE(4192)] = 4216, + [SMALL_STATE(4193)] = 4291, + [SMALL_STATE(4194)] = 4366, + [SMALL_STATE(4195)] = 4449, + [SMALL_STATE(4196)] = 4509, + [SMALL_STATE(4197)] = 4569, + [SMALL_STATE(4198)] = 4629, + [SMALL_STATE(4199)] = 4709, + [SMALL_STATE(4200)] = 4783, + [SMALL_STATE(4201)] = 4843, + [SMALL_STATE(4202)] = 4917, + [SMALL_STATE(4203)] = 4997, + [SMALL_STATE(4204)] = 5081, + [SMALL_STATE(4205)] = 5141, + [SMALL_STATE(4206)] = 5217, + [SMALL_STATE(4207)] = 5277, + [SMALL_STATE(4208)] = 5361, + [SMALL_STATE(4209)] = 5421, + [SMALL_STATE(4210)] = 5481, + [SMALL_STATE(4211)] = 5561, + [SMALL_STATE(4212)] = 5645, + [SMALL_STATE(4213)] = 5725, + [SMALL_STATE(4214)] = 5785, + [SMALL_STATE(4215)] = 5845, + [SMALL_STATE(4216)] = 5905, + [SMALL_STATE(4217)] = 5979, + [SMALL_STATE(4218)] = 6039, + [SMALL_STATE(4219)] = 6113, + [SMALL_STATE(4220)] = 6197, + [SMALL_STATE(4221)] = 6273, + [SMALL_STATE(4222)] = 6333, + [SMALL_STATE(4223)] = 6393, + [SMALL_STATE(4224)] = 6477, + [SMALL_STATE(4225)] = 6537, + [SMALL_STATE(4226)] = 6597, + [SMALL_STATE(4227)] = 6676, + [SMALL_STATE(4228)] = 6755, + [SMALL_STATE(4229)] = 6836, + [SMALL_STATE(4230)] = 6917, + [SMALL_STATE(4231)] = 6986, + [SMALL_STATE(4232)] = 7067, + [SMALL_STATE(4233)] = 7146, + [SMALL_STATE(4234)] = 7227, + [SMALL_STATE(4235)] = 7306, + [SMALL_STATE(4236)] = 7387, + [SMALL_STATE(4237)] = 7466, + [SMALL_STATE(4238)] = 7547, + [SMALL_STATE(4239)] = 7628, + [SMALL_STATE(4240)] = 7707, + [SMALL_STATE(4241)] = 7788, + [SMALL_STATE(4242)] = 7857, + [SMALL_STATE(4243)] = 7938, + [SMALL_STATE(4244)] = 8019, + [SMALL_STATE(4245)] = 8100, + [SMALL_STATE(4246)] = 8181, + [SMALL_STATE(4247)] = 8262, + [SMALL_STATE(4248)] = 8343, + [SMALL_STATE(4249)] = 8422, + [SMALL_STATE(4250)] = 8503, + [SMALL_STATE(4251)] = 8582, + [SMALL_STATE(4252)] = 8663, + [SMALL_STATE(4253)] = 8742, + [SMALL_STATE(4254)] = 8823, + [SMALL_STATE(4255)] = 8904, + [SMALL_STATE(4256)] = 8985, + [SMALL_STATE(4257)] = 9066, + [SMALL_STATE(4258)] = 9147, + [SMALL_STATE(4259)] = 9226, + [SMALL_STATE(4260)] = 9307, + [SMALL_STATE(4261)] = 9388, + [SMALL_STATE(4262)] = 9469, + [SMALL_STATE(4263)] = 9550, + [SMALL_STATE(4264)] = 9614, + [SMALL_STATE(4265)] = 9675, + [SMALL_STATE(4266)] = 9736, + [SMALL_STATE(4267)] = 9797, + [SMALL_STATE(4268)] = 9862, + [SMALL_STATE(4269)] = 9923, + [SMALL_STATE(4270)] = 9984, + [SMALL_STATE(4271)] = 10049, + [SMALL_STATE(4272)] = 10114, + [SMALL_STATE(4273)] = 10191, + [SMALL_STATE(4274)] = 10252, + [SMALL_STATE(4275)] = 10313, + [SMALL_STATE(4276)] = 10374, + [SMALL_STATE(4277)] = 10435, + [SMALL_STATE(4278)] = 10500, + [SMALL_STATE(4279)] = 10561, + [SMALL_STATE(4280)] = 10626, + [SMALL_STATE(4281)] = 10691, + [SMALL_STATE(4282)] = 10752, + [SMALL_STATE(4283)] = 10817, + [SMALL_STATE(4284)] = 10878, + [SMALL_STATE(4285)] = 10943, + [SMALL_STATE(4286)] = 11008, + [SMALL_STATE(4287)] = 11073, + [SMALL_STATE(4288)] = 11134, + [SMALL_STATE(4289)] = 11199, + [SMALL_STATE(4290)] = 11264, + [SMALL_STATE(4291)] = 11330, + [SMALL_STATE(4292)] = 11398, + [SMALL_STATE(4293)] = 11466, + [SMALL_STATE(4294)] = 11536, + [SMALL_STATE(4295)] = 11606, + [SMALL_STATE(4296)] = 11674, + [SMALL_STATE(4297)] = 11744, + [SMALL_STATE(4298)] = 11812, + [SMALL_STATE(4299)] = 11879, + [SMALL_STATE(4300)] = 11946, + [SMALL_STATE(4301)] = 12011, + [SMALL_STATE(4302)] = 12078, + [SMALL_STATE(4303)] = 12145, + [SMALL_STATE(4304)] = 12212, + [SMALL_STATE(4305)] = 12279, + [SMALL_STATE(4306)] = 12346, + [SMALL_STATE(4307)] = 12413, + [SMALL_STATE(4308)] = 12480, + [SMALL_STATE(4309)] = 12547, + [SMALL_STATE(4310)] = 12614, + [SMALL_STATE(4311)] = 12680, + [SMALL_STATE(4312)] = 12746, + [SMALL_STATE(4313)] = 12812, + [SMALL_STATE(4314)] = 12876, + [SMALL_STATE(4315)] = 12940, + [SMALL_STATE(4316)] = 13006, + [SMALL_STATE(4317)] = 13070, + [SMALL_STATE(4318)] = 13136, + [SMALL_STATE(4319)] = 13221, + [SMALL_STATE(4320)] = 13288, + [SMALL_STATE(4321)] = 13369, + [SMALL_STATE(4322)] = 13446, + [SMALL_STATE(4323)] = 13521, + [SMALL_STATE(4324)] = 13592, + [SMALL_STATE(4325)] = 13657, + [SMALL_STATE(4326)] = 13746, + [SMALL_STATE(4327)] = 13815, + [SMALL_STATE(4328)] = 13880, + [SMALL_STATE(4329)] = 13945, + [SMALL_STATE(4330)] = 14024, + [SMALL_STATE(4331)] = 14115, + [SMALL_STATE(4332)] = 14172, + [SMALL_STATE(4333)] = 14261, + [SMALL_STATE(4334)] = 14352, + [SMALL_STATE(4335)] = 14443, + [SMALL_STATE(4336)] = 14508, + [SMALL_STATE(4337)] = 14591, + [SMALL_STATE(4338)] = 14680, + [SMALL_STATE(4339)] = 14736, + [SMALL_STATE(4340)] = 14789, + [SMALL_STATE(4341)] = 14842, + [SMALL_STATE(4342)] = 14916, + [SMALL_STATE(4343)] = 15004, + [SMALL_STATE(4344)] = 15092, + [SMALL_STATE(4345)] = 15164, + [SMALL_STATE(4346)] = 15250, + [SMALL_STATE(4347)] = 15338, + [SMALL_STATE(4348)] = 15406, + [SMALL_STATE(4349)] = 15482, + [SMALL_STATE(4350)] = 15560, + [SMALL_STATE(4351)] = 15640, + [SMALL_STATE(4352)] = 15726, + [SMALL_STATE(4353)] = 15790, + [SMALL_STATE(4354)] = 15876, + [SMALL_STATE(4355)] = 15942, + [SMALL_STATE(4356)] = 16024, + [SMALL_STATE(4357)] = 16075, + [SMALL_STATE(4358)] = 16128, + [SMALL_STATE(4359)] = 16179, + [SMALL_STATE(4360)] = 16230, + [SMALL_STATE(4361)] = 16281, + [SMALL_STATE(4362)] = 16332, + [SMALL_STATE(4363)] = 16383, + [SMALL_STATE(4364)] = 16434, + [SMALL_STATE(4365)] = 16485, + [SMALL_STATE(4366)] = 16536, + [SMALL_STATE(4367)] = 16587, + [SMALL_STATE(4368)] = 16638, + [SMALL_STATE(4369)] = 16689, + [SMALL_STATE(4370)] = 16773, + [SMALL_STATE(4371)] = 16859, + [SMALL_STATE(4372)] = 16909, + [SMALL_STATE(4373)] = 16995, + [SMALL_STATE(4374)] = 17079, + [SMALL_STATE(4375)] = 17141, + [SMALL_STATE(4376)] = 17221, + [SMALL_STATE(4377)] = 17299, + [SMALL_STATE(4378)] = 17375, + [SMALL_STATE(4379)] = 17449, + [SMALL_STATE(4380)] = 17521, + [SMALL_STATE(4381)] = 17591, + [SMALL_STATE(4382)] = 17657, + [SMALL_STATE(4383)] = 17721, + [SMALL_STATE(4384)] = 17807, + [SMALL_STATE(4385)] = 17891, + [SMALL_STATE(4386)] = 17942, + [SMALL_STATE(4387)] = 17994, + [SMALL_STATE(4388)] = 18053, + [SMALL_STATE(4389)] = 18112, + [SMALL_STATE(4390)] = 18194, + [SMALL_STATE(4391)] = 18274, + [SMALL_STATE(4392)] = 18334, + [SMALL_STATE(4393)] = 18416, + [SMALL_STATE(4394)] = 18498, + [SMALL_STATE(4395)] = 18578, + [SMALL_STATE(4396)] = 18636, + [SMALL_STATE(4397)] = 18712, + [SMALL_STATE(4398)] = 18786, + [SMALL_STATE(4399)] = 18858, + [SMALL_STATE(4400)] = 18928, + [SMALL_STATE(4401)] = 18996, + [SMALL_STATE(4402)] = 19062, + [SMALL_STATE(4403)] = 19142, + [SMALL_STATE(4404)] = 19204, + [SMALL_STATE(4405)] = 19290, + [SMALL_STATE(4406)] = 19376, + [SMALL_STATE(4407)] = 19458, + [SMALL_STATE(4408)] = 19538, + [SMALL_STATE(4409)] = 19601, + [SMALL_STATE(4410)] = 19660, + [SMALL_STATE(4411)] = 19737, + [SMALL_STATE(4412)] = 19794, + [SMALL_STATE(4413)] = 19869, + [SMALL_STATE(4414)] = 19944, + [SMALL_STATE(4415)] = 20021, + [SMALL_STATE(4416)] = 20096, + [SMALL_STATE(4417)] = 20151, + [SMALL_STATE(4418)] = 20222, + [SMALL_STATE(4419)] = 20291, + [SMALL_STATE(4420)] = 20360, + [SMALL_STATE(4421)] = 20427, + [SMALL_STATE(4422)] = 20504, + [SMALL_STATE(4423)] = 20581, + [SMALL_STATE(4424)] = 20646, + [SMALL_STATE(4425)] = 20726, + [SMALL_STATE(4426)] = 20806, + [SMALL_STATE(4427)] = 20886, + [SMALL_STATE(4428)] = 20966, + [SMALL_STATE(4429)] = 21046, + [SMALL_STATE(4430)] = 21126, + [SMALL_STATE(4431)] = 21206, + [SMALL_STATE(4432)] = 21286, + [SMALL_STATE(4433)] = 21366, + [SMALL_STATE(4434)] = 21446, + [SMALL_STATE(4435)] = 21526, + [SMALL_STATE(4436)] = 21606, + [SMALL_STATE(4437)] = 21686, + [SMALL_STATE(4438)] = 21766, + [SMALL_STATE(4439)] = 21846, + [SMALL_STATE(4440)] = 21926, + [SMALL_STATE(4441)] = 22006, + [SMALL_STATE(4442)] = 22084, + [SMALL_STATE(4443)] = 22164, + [SMALL_STATE(4444)] = 22241, + [SMALL_STATE(4445)] = 22318, + [SMALL_STATE(4446)] = 22395, + [SMALL_STATE(4447)] = 22472, + [SMALL_STATE(4448)] = 22547, + [SMALL_STATE(4449)] = 22624, + [SMALL_STATE(4450)] = 22701, + [SMALL_STATE(4451)] = 22776, + [SMALL_STATE(4452)] = 22853, + [SMALL_STATE(4453)] = 22930, + [SMALL_STATE(4454)] = 23007, + [SMALL_STATE(4455)] = 23084, + [SMALL_STATE(4456)] = 23161, + [SMALL_STATE(4457)] = 23236, + [SMALL_STATE(4458)] = 23313, + [SMALL_STATE(4459)] = 23388, + [SMALL_STATE(4460)] = 23465, + [SMALL_STATE(4461)] = 23540, + [SMALL_STATE(4462)] = 23615, + [SMALL_STATE(4463)] = 23692, + [SMALL_STATE(4464)] = 23769, + [SMALL_STATE(4465)] = 23846, + [SMALL_STATE(4466)] = 23923, + [SMALL_STATE(4467)] = 23998, + [SMALL_STATE(4468)] = 24075, + [SMALL_STATE(4469)] = 24150, + [SMALL_STATE(4470)] = 24223, + [SMALL_STATE(4471)] = 24276, + [SMALL_STATE(4472)] = 24345, + [SMALL_STATE(4473)] = 24412, + [SMALL_STATE(4474)] = 24479, + [SMALL_STATE(4475)] = 24544, + [SMALL_STATE(4476)] = 24607, + [SMALL_STATE(4477)] = 24668, + [SMALL_STATE(4478)] = 24725, + [SMALL_STATE(4479)] = 24780, + [SMALL_STATE(4480)] = 24857, + [SMALL_STATE(4481)] = 24934, + [SMALL_STATE(4482)] = 25009, + [SMALL_STATE(4483)] = 25084, + [SMALL_STATE(4484)] = 25159, + [SMALL_STATE(4485)] = 25236, + [SMALL_STATE(4486)] = 25313, + [SMALL_STATE(4487)] = 25390, + [SMALL_STATE(4488)] = 25467, + [SMALL_STATE(4489)] = 25544, + [SMALL_STATE(4490)] = 25621, + [SMALL_STATE(4491)] = 25698, + [SMALL_STATE(4492)] = 25775, + [SMALL_STATE(4493)] = 25852, + [SMALL_STATE(4494)] = 25929, + [SMALL_STATE(4495)] = 26006, + [SMALL_STATE(4496)] = 26081, + [SMALL_STATE(4497)] = 26156, + [SMALL_STATE(4498)] = 26229, + [SMALL_STATE(4499)] = 26302, + [SMALL_STATE(4500)] = 26379, + [SMALL_STATE(4501)] = 26418, + [SMALL_STATE(4502)] = 26495, + [SMALL_STATE(4503)] = 26572, + [SMALL_STATE(4504)] = 26649, + [SMALL_STATE(4505)] = 26724, + [SMALL_STATE(4506)] = 26801, + [SMALL_STATE(4507)] = 26878, + [SMALL_STATE(4508)] = 26955, + [SMALL_STATE(4509)] = 27032, + [SMALL_STATE(4510)] = 27109, + [SMALL_STATE(4511)] = 27186, + [SMALL_STATE(4512)] = 27240, + [SMALL_STATE(4513)] = 27314, + [SMALL_STATE(4514)] = 27388, + [SMALL_STATE(4515)] = 27462, + [SMALL_STATE(4516)] = 27536, + [SMALL_STATE(4517)] = 27610, + [SMALL_STATE(4518)] = 27684, + [SMALL_STATE(4519)] = 27758, + [SMALL_STATE(4520)] = 27832, + [SMALL_STATE(4521)] = 27906, + [SMALL_STATE(4522)] = 27980, + [SMALL_STATE(4523)] = 28054, + [SMALL_STATE(4524)] = 28128, + [SMALL_STATE(4525)] = 28202, + [SMALL_STATE(4526)] = 28276, + [SMALL_STATE(4527)] = 28350, + [SMALL_STATE(4528)] = 28424, + [SMALL_STATE(4529)] = 28498, + [SMALL_STATE(4530)] = 28572, + [SMALL_STATE(4531)] = 28646, + [SMALL_STATE(4532)] = 28720, + [SMALL_STATE(4533)] = 28794, + [SMALL_STATE(4534)] = 28868, + [SMALL_STATE(4535)] = 28942, + [SMALL_STATE(4536)] = 29016, + [SMALL_STATE(4537)] = 29090, + [SMALL_STATE(4538)] = 29164, + [SMALL_STATE(4539)] = 29238, + [SMALL_STATE(4540)] = 29312, + [SMALL_STATE(4541)] = 29386, + [SMALL_STATE(4542)] = 29460, + [SMALL_STATE(4543)] = 29534, + [SMALL_STATE(4544)] = 29608, + [SMALL_STATE(4545)] = 29662, + [SMALL_STATE(4546)] = 29736, + [SMALL_STATE(4547)] = 29790, + [SMALL_STATE(4548)] = 29864, + [SMALL_STATE(4549)] = 29938, + [SMALL_STATE(4550)] = 30012, + [SMALL_STATE(4551)] = 30086, + [SMALL_STATE(4552)] = 30160, + [SMALL_STATE(4553)] = 30234, + [SMALL_STATE(4554)] = 30308, + [SMALL_STATE(4555)] = 30382, + [SMALL_STATE(4556)] = 30456, + [SMALL_STATE(4557)] = 30530, + [SMALL_STATE(4558)] = 30604, + [SMALL_STATE(4559)] = 30678, + [SMALL_STATE(4560)] = 30752, + [SMALL_STATE(4561)] = 30806, + [SMALL_STATE(4562)] = 30880, + [SMALL_STATE(4563)] = 30954, + [SMALL_STATE(4564)] = 31028, + [SMALL_STATE(4565)] = 31102, + [SMALL_STATE(4566)] = 31176, + [SMALL_STATE(4567)] = 31250, + [SMALL_STATE(4568)] = 31324, + [SMALL_STATE(4569)] = 31398, + [SMALL_STATE(4570)] = 31472, + [SMALL_STATE(4571)] = 31546, + [SMALL_STATE(4572)] = 31620, + [SMALL_STATE(4573)] = 31694, + [SMALL_STATE(4574)] = 31768, + [SMALL_STATE(4575)] = 31842, + [SMALL_STATE(4576)] = 31916, + [SMALL_STATE(4577)] = 31990, + [SMALL_STATE(4578)] = 32064, + [SMALL_STATE(4579)] = 32138, + [SMALL_STATE(4580)] = 32212, + [SMALL_STATE(4581)] = 32286, + [SMALL_STATE(4582)] = 32340, + [SMALL_STATE(4583)] = 32414, + [SMALL_STATE(4584)] = 32488, + [SMALL_STATE(4585)] = 32562, + [SMALL_STATE(4586)] = 32636, + [SMALL_STATE(4587)] = 32710, + [SMALL_STATE(4588)] = 32784, + [SMALL_STATE(4589)] = 32838, + [SMALL_STATE(4590)] = 32875, + [SMALL_STATE(4591)] = 32912, + [SMALL_STATE(4592)] = 32983, + [SMALL_STATE(4593)] = 33035, + [SMALL_STATE(4594)] = 33069, + [SMALL_STATE(4595)] = 33113, + [SMALL_STATE(4596)] = 33157, + [SMALL_STATE(4597)] = 33201, + [SMALL_STATE(4598)] = 33242, + [SMALL_STATE(4599)] = 33297, + [SMALL_STATE(4600)] = 33330, + [SMALL_STATE(4601)] = 33371, + [SMALL_STATE(4602)] = 33412, + [SMALL_STATE(4603)] = 33453, + [SMALL_STATE(4604)] = 33494, + [SMALL_STATE(4605)] = 33535, + [SMALL_STATE(4606)] = 33576, + [SMALL_STATE(4607)] = 33617, + [SMALL_STATE(4608)] = 33658, + [SMALL_STATE(4609)] = 33699, + [SMALL_STATE(4610)] = 33740, + [SMALL_STATE(4611)] = 33795, + [SMALL_STATE(4612)] = 33836, + [SMALL_STATE(4613)] = 33877, + [SMALL_STATE(4614)] = 33918, + [SMALL_STATE(4615)] = 33959, + [SMALL_STATE(4616)] = 34000, + [SMALL_STATE(4617)] = 34055, + [SMALL_STATE(4618)] = 34110, + [SMALL_STATE(4619)] = 34151, + [SMALL_STATE(4620)] = 34192, + [SMALL_STATE(4621)] = 34233, + [SMALL_STATE(4622)] = 34274, + [SMALL_STATE(4623)] = 34315, + [SMALL_STATE(4624)] = 34356, + [SMALL_STATE(4625)] = 34397, + [SMALL_STATE(4626)] = 34438, + [SMALL_STATE(4627)] = 34493, + [SMALL_STATE(4628)] = 34534, + [SMALL_STATE(4629)] = 34575, + [SMALL_STATE(4630)] = 34616, + [SMALL_STATE(4631)] = 34657, + [SMALL_STATE(4632)] = 34698, + [SMALL_STATE(4633)] = 34739, + [SMALL_STATE(4634)] = 34780, + [SMALL_STATE(4635)] = 34835, + [SMALL_STATE(4636)] = 34876, + [SMALL_STATE(4637)] = 34917, + [SMALL_STATE(4638)] = 34958, + [SMALL_STATE(4639)] = 34999, + [SMALL_STATE(4640)] = 35040, + [SMALL_STATE(4641)] = 35081, + [SMALL_STATE(4642)] = 35122, + [SMALL_STATE(4643)] = 35163, + [SMALL_STATE(4644)] = 35204, + [SMALL_STATE(4645)] = 35245, + [SMALL_STATE(4646)] = 35286, + [SMALL_STATE(4647)] = 35327, + [SMALL_STATE(4648)] = 35368, + [SMALL_STATE(4649)] = 35409, + [SMALL_STATE(4650)] = 35449, + [SMALL_STATE(4651)] = 35477, + [SMALL_STATE(4652)] = 35513, + [SMALL_STATE(4653)] = 35541, + [SMALL_STATE(4654)] = 35569, + [SMALL_STATE(4655)] = 35597, + [SMALL_STATE(4656)] = 35631, + [SMALL_STATE(4657)] = 35675, + [SMALL_STATE(4658)] = 35719, + [SMALL_STATE(4659)] = 35747, + [SMALL_STATE(4660)] = 35779, + [SMALL_STATE(4661)] = 35807, + [SMALL_STATE(4662)] = 35835, + [SMALL_STATE(4663)] = 35877, + [SMALL_STATE(4664)] = 35927, + [SMALL_STATE(4665)] = 35955, + [SMALL_STATE(4666)] = 36003, + [SMALL_STATE(4667)] = 36049, + [SMALL_STATE(4668)] = 36093, + [SMALL_STATE(4669)] = 36121, + [SMALL_STATE(4670)] = 36167, + [SMALL_STATE(4671)] = 36195, + [SMALL_STATE(4672)] = 36239, + [SMALL_STATE(4673)] = 36284, + [SMALL_STATE(4674)] = 36329, + [SMALL_STATE(4675)] = 36372, + [SMALL_STATE(4676)] = 36413, + [SMALL_STATE(4677)] = 36440, + [SMALL_STATE(4678)] = 36467, + [SMALL_STATE(4679)] = 36512, + [SMALL_STATE(4680)] = 36551, + [SMALL_STATE(4681)] = 36588, + [SMALL_STATE(4682)] = 36623, + [SMALL_STATE(4683)] = 36656, + [SMALL_STATE(4684)] = 36687, + [SMALL_STATE(4685)] = 36732, + [SMALL_STATE(4686)] = 36781, + [SMALL_STATE(4687)] = 36826, + [SMALL_STATE(4688)] = 36871, + [SMALL_STATE(4689)] = 36916, + [SMALL_STATE(4690)] = 36961, + [SMALL_STATE(4691)] = 37006, + [SMALL_STATE(4692)] = 37051, + [SMALL_STATE(4693)] = 37078, + [SMALL_STATE(4694)] = 37105, + [SMALL_STATE(4695)] = 37150, + [SMALL_STATE(4696)] = 37177, + [SMALL_STATE(4697)] = 37222, + [SMALL_STATE(4698)] = 37267, + [SMALL_STATE(4699)] = 37312, + [SMALL_STATE(4700)] = 37357, + [SMALL_STATE(4701)] = 37402, + [SMALL_STATE(4702)] = 37447, + [SMALL_STATE(4703)] = 37492, + [SMALL_STATE(4704)] = 37537, + [SMALL_STATE(4705)] = 37564, + [SMALL_STATE(4706)] = 37613, + [SMALL_STATE(4707)] = 37658, + [SMALL_STATE(4708)] = 37685, + [SMALL_STATE(4709)] = 37712, + [SMALL_STATE(4710)] = 37739, + [SMALL_STATE(4711)] = 37784, + [SMALL_STATE(4712)] = 37813, + [SMALL_STATE(4713)] = 37840, + [SMALL_STATE(4714)] = 37884, + [SMALL_STATE(4715)] = 37928, + [SMALL_STATE(4716)] = 37972, + [SMALL_STATE(4717)] = 38016, + [SMALL_STATE(4718)] = 38060, + [SMALL_STATE(4719)] = 38104, + [SMALL_STATE(4720)] = 38148, + [SMALL_STATE(4721)] = 38192, + [SMALL_STATE(4722)] = 38236, + [SMALL_STATE(4723)] = 38280, + [SMALL_STATE(4724)] = 38324, + [SMALL_STATE(4725)] = 38368, + [SMALL_STATE(4726)] = 38412, + [SMALL_STATE(4727)] = 38456, + [SMALL_STATE(4728)] = 38500, + [SMALL_STATE(4729)] = 38544, + [SMALL_STATE(4730)] = 38588, + [SMALL_STATE(4731)] = 38632, + [SMALL_STATE(4732)] = 38676, + [SMALL_STATE(4733)] = 38720, + [SMALL_STATE(4734)] = 38764, + [SMALL_STATE(4735)] = 38808, + [SMALL_STATE(4736)] = 38852, + [SMALL_STATE(4737)] = 38896, + [SMALL_STATE(4738)] = 38940, + [SMALL_STATE(4739)] = 38984, + [SMALL_STATE(4740)] = 39028, + [SMALL_STATE(4741)] = 39072, + [SMALL_STATE(4742)] = 39116, + [SMALL_STATE(4743)] = 39160, + [SMALL_STATE(4744)] = 39204, + [SMALL_STATE(4745)] = 39248, + [SMALL_STATE(4746)] = 39292, + [SMALL_STATE(4747)] = 39336, + [SMALL_STATE(4748)] = 39380, + [SMALL_STATE(4749)] = 39424, + [SMALL_STATE(4750)] = 39468, + [SMALL_STATE(4751)] = 39512, + [SMALL_STATE(4752)] = 39556, + [SMALL_STATE(4753)] = 39600, + [SMALL_STATE(4754)] = 39644, + [SMALL_STATE(4755)] = 39688, + [SMALL_STATE(4756)] = 39732, + [SMALL_STATE(4757)] = 39776, + [SMALL_STATE(4758)] = 39820, + [SMALL_STATE(4759)] = 39864, + [SMALL_STATE(4760)] = 39908, + [SMALL_STATE(4761)] = 39952, + [SMALL_STATE(4762)] = 39996, + [SMALL_STATE(4763)] = 40040, + [SMALL_STATE(4764)] = 40084, + [SMALL_STATE(4765)] = 40128, + [SMALL_STATE(4766)] = 40172, + [SMALL_STATE(4767)] = 40216, + [SMALL_STATE(4768)] = 40260, + [SMALL_STATE(4769)] = 40304, + [SMALL_STATE(4770)] = 40348, + [SMALL_STATE(4771)] = 40392, + [SMALL_STATE(4772)] = 40436, + [SMALL_STATE(4773)] = 40480, + [SMALL_STATE(4774)] = 40524, + [SMALL_STATE(4775)] = 40568, + [SMALL_STATE(4776)] = 40612, + [SMALL_STATE(4777)] = 40656, + [SMALL_STATE(4778)] = 40700, + [SMALL_STATE(4779)] = 40744, + [SMALL_STATE(4780)] = 40788, + [SMALL_STATE(4781)] = 40832, + [SMALL_STATE(4782)] = 40876, + [SMALL_STATE(4783)] = 40920, + [SMALL_STATE(4784)] = 40964, + [SMALL_STATE(4785)] = 41008, + [SMALL_STATE(4786)] = 41052, + [SMALL_STATE(4787)] = 41096, + [SMALL_STATE(4788)] = 41140, + [SMALL_STATE(4789)] = 41184, + [SMALL_STATE(4790)] = 41228, + [SMALL_STATE(4791)] = 41272, + [SMALL_STATE(4792)] = 41316, + [SMALL_STATE(4793)] = 41360, + [SMALL_STATE(4794)] = 41404, + [SMALL_STATE(4795)] = 41448, + [SMALL_STATE(4796)] = 41492, + [SMALL_STATE(4797)] = 41536, + [SMALL_STATE(4798)] = 41580, + [SMALL_STATE(4799)] = 41624, + [SMALL_STATE(4800)] = 41668, + [SMALL_STATE(4801)] = 41712, + [SMALL_STATE(4802)] = 41756, + [SMALL_STATE(4803)] = 41800, + [SMALL_STATE(4804)] = 41844, + [SMALL_STATE(4805)] = 41888, + [SMALL_STATE(4806)] = 41932, + [SMALL_STATE(4807)] = 41976, + [SMALL_STATE(4808)] = 42020, + [SMALL_STATE(4809)] = 42064, + [SMALL_STATE(4810)] = 42108, + [SMALL_STATE(4811)] = 42152, + [SMALL_STATE(4812)] = 42196, + [SMALL_STATE(4813)] = 42240, + [SMALL_STATE(4814)] = 42281, + [SMALL_STATE(4815)] = 42318, + [SMALL_STATE(4816)] = 42357, + [SMALL_STATE(4817)] = 42395, + [SMALL_STATE(4818)] = 42429, + [SMALL_STATE(4819)] = 42464, + [SMALL_STATE(4820)] = 42499, + [SMALL_STATE(4821)] = 42530, + [SMALL_STATE(4822)] = 42565, + [SMALL_STATE(4823)] = 42606, + [SMALL_STATE(4824)] = 42647, + [SMALL_STATE(4825)] = 42682, + [SMALL_STATE(4826)] = 42717, + [SMALL_STATE(4827)] = 42752, + [SMALL_STATE(4828)] = 42787, + [SMALL_STATE(4829)] = 42822, + [SMALL_STATE(4830)] = 42863, + [SMALL_STATE(4831)] = 42898, + [SMALL_STATE(4832)] = 42933, + [SMALL_STATE(4833)] = 42968, + [SMALL_STATE(4834)] = 43003, + [SMALL_STATE(4835)] = 43038, + [SMALL_STATE(4836)] = 43073, + [SMALL_STATE(4837)] = 43103, + [SMALL_STATE(4838)] = 43135, + [SMALL_STATE(4839)] = 43167, + [SMALL_STATE(4840)] = 43199, + [SMALL_STATE(4841)] = 43231, + [SMALL_STATE(4842)] = 43259, + [SMALL_STATE(4843)] = 43291, + [SMALL_STATE(4844)] = 43323, + [SMALL_STATE(4845)] = 43355, + [SMALL_STATE(4846)] = 43387, + [SMALL_STATE(4847)] = 43416, + [SMALL_STATE(4848)] = 43445, + [SMALL_STATE(4849)] = 43476, + [SMALL_STATE(4850)] = 43505, + [SMALL_STATE(4851)] = 43532, + [SMALL_STATE(4852)] = 43561, + [SMALL_STATE(4853)] = 43592, + [SMALL_STATE(4854)] = 43623, + [SMALL_STATE(4855)] = 43654, + [SMALL_STATE(4856)] = 43681, + [SMALL_STATE(4857)] = 43710, + [SMALL_STATE(4858)] = 43741, + [SMALL_STATE(4859)] = 43771, + [SMALL_STATE(4860)] = 43793, + [SMALL_STATE(4861)] = 43823, + [SMALL_STATE(4862)] = 43847, + [SMALL_STATE(4863)] = 43865, + [SMALL_STATE(4864)] = 43883, + [SMALL_STATE(4865)] = 43901, + [SMALL_STATE(4866)] = 43925, + [SMALL_STATE(4867)] = 43951, + [SMALL_STATE(4868)] = 43975, + [SMALL_STATE(4869)] = 43999, + [SMALL_STATE(4870)] = 44023, + [SMALL_STATE(4871)] = 44047, + [SMALL_STATE(4872)] = 44073, + [SMALL_STATE(4873)] = 44097, + [SMALL_STATE(4874)] = 44123, + [SMALL_STATE(4875)] = 44147, + [SMALL_STATE(4876)] = 44171, + [SMALL_STATE(4877)] = 44201, + [SMALL_STATE(4878)] = 44219, + [SMALL_STATE(4879)] = 44237, + [SMALL_STATE(4880)] = 44259, + [SMALL_STATE(4881)] = 44285, + [SMALL_STATE(4882)] = 44309, + [SMALL_STATE(4883)] = 44333, + [SMALL_STATE(4884)] = 44351, + [SMALL_STATE(4885)] = 44369, + [SMALL_STATE(4886)] = 44387, + [SMALL_STATE(4887)] = 44405, + [SMALL_STATE(4888)] = 44429, + [SMALL_STATE(4889)] = 44455, + [SMALL_STATE(4890)] = 44481, + [SMALL_STATE(4891)] = 44499, + [SMALL_STATE(4892)] = 44525, + [SMALL_STATE(4893)] = 44551, + [SMALL_STATE(4894)] = 44575, + [SMALL_STATE(4895)] = 44593, + [SMALL_STATE(4896)] = 44617, + [SMALL_STATE(4897)] = 44641, + [SMALL_STATE(4898)] = 44664, + [SMALL_STATE(4899)] = 44693, + [SMALL_STATE(4900)] = 44722, + [SMALL_STATE(4901)] = 44751, + [SMALL_STATE(4902)] = 44772, + [SMALL_STATE(4903)] = 44793, + [SMALL_STATE(4904)] = 44822, + [SMALL_STATE(4905)] = 44851, + [SMALL_STATE(4906)] = 44872, + [SMALL_STATE(4907)] = 44901, + [SMALL_STATE(4908)] = 44930, + [SMALL_STATE(4909)] = 44953, + [SMALL_STATE(4910)] = 44974, + [SMALL_STATE(4911)] = 44997, + [SMALL_STATE(4912)] = 45025, + [SMALL_STATE(4913)] = 45053, + [SMALL_STATE(4914)] = 45079, + [SMALL_STATE(4915)] = 45107, + [SMALL_STATE(4916)] = 45131, + [SMALL_STATE(4917)] = 45159, + [SMALL_STATE(4918)] = 45187, + [SMALL_STATE(4919)] = 45211, + [SMALL_STATE(4920)] = 45235, + [SMALL_STATE(4921)] = 45263, + [SMALL_STATE(4922)] = 45291, + [SMALL_STATE(4923)] = 45319, + [SMALL_STATE(4924)] = 45347, + [SMALL_STATE(4925)] = 45371, + [SMALL_STATE(4926)] = 45395, + [SMALL_STATE(4927)] = 45423, + [SMALL_STATE(4928)] = 45451, + [SMALL_STATE(4929)] = 45475, + [SMALL_STATE(4930)] = 45499, + [SMALL_STATE(4931)] = 45519, + [SMALL_STATE(4932)] = 45547, + [SMALL_STATE(4933)] = 45563, + [SMALL_STATE(4934)] = 45581, + [SMALL_STATE(4935)] = 45607, + [SMALL_STATE(4936)] = 45635, + [SMALL_STATE(4937)] = 45663, + [SMALL_STATE(4938)] = 45691, + [SMALL_STATE(4939)] = 45719, + [SMALL_STATE(4940)] = 45747, + [SMALL_STATE(4941)] = 45763, + [SMALL_STATE(4942)] = 45779, + [SMALL_STATE(4943)] = 45807, + [SMALL_STATE(4944)] = 45835, + [SMALL_STATE(4945)] = 45861, + [SMALL_STATE(4946)] = 45881, + [SMALL_STATE(4947)] = 45907, + [SMALL_STATE(4948)] = 45923, + [SMALL_STATE(4949)] = 45943, + [SMALL_STATE(4950)] = 45963, + [SMALL_STATE(4951)] = 45987, + [SMALL_STATE(4952)] = 46011, + [SMALL_STATE(4953)] = 46035, + [SMALL_STATE(4954)] = 46063, + [SMALL_STATE(4955)] = 46083, + [SMALL_STATE(4956)] = 46099, + [SMALL_STATE(4957)] = 46127, + [SMALL_STATE(4958)] = 46155, + [SMALL_STATE(4959)] = 46183, + [SMALL_STATE(4960)] = 46199, + [SMALL_STATE(4961)] = 46223, + [SMALL_STATE(4962)] = 46239, + [SMALL_STATE(4963)] = 46263, + [SMALL_STATE(4964)] = 46291, + [SMALL_STATE(4965)] = 46319, + [SMALL_STATE(4966)] = 46347, + [SMALL_STATE(4967)] = 46363, + [SMALL_STATE(4968)] = 46383, + [SMALL_STATE(4969)] = 46409, + [SMALL_STATE(4970)] = 46437, + [SMALL_STATE(4971)] = 46459, + [SMALL_STATE(4972)] = 46487, + [SMALL_STATE(4973)] = 46515, + [SMALL_STATE(4974)] = 46541, + [SMALL_STATE(4975)] = 46561, + [SMALL_STATE(4976)] = 46580, + [SMALL_STATE(4977)] = 46603, + [SMALL_STATE(4978)] = 46622, + [SMALL_STATE(4979)] = 46641, + [SMALL_STATE(4980)] = 46662, + [SMALL_STATE(4981)] = 46683, + [SMALL_STATE(4982)] = 46702, + [SMALL_STATE(4983)] = 46719, + [SMALL_STATE(4984)] = 46736, + [SMALL_STATE(4985)] = 46761, + [SMALL_STATE(4986)] = 46786, + [SMALL_STATE(4987)] = 46803, + [SMALL_STATE(4988)] = 46822, + [SMALL_STATE(4989)] = 46847, + [SMALL_STATE(4990)] = 46872, + [SMALL_STATE(4991)] = 46889, + [SMALL_STATE(4992)] = 46906, + [SMALL_STATE(4993)] = 46923, + [SMALL_STATE(4994)] = 46948, + [SMALL_STATE(4995)] = 46965, + [SMALL_STATE(4996)] = 46982, + [SMALL_STATE(4997)] = 46999, + [SMALL_STATE(4998)] = 47016, + [SMALL_STATE(4999)] = 47035, + [SMALL_STATE(5000)] = 47060, + [SMALL_STATE(5001)] = 47083, + [SMALL_STATE(5002)] = 47102, + [SMALL_STATE(5003)] = 47119, + [SMALL_STATE(5004)] = 47138, + [SMALL_STATE(5005)] = 47157, + [SMALL_STATE(5006)] = 47176, + [SMALL_STATE(5007)] = 47197, + [SMALL_STATE(5008)] = 47218, + [SMALL_STATE(5009)] = 47243, + [SMALL_STATE(5010)] = 47260, + [SMALL_STATE(5011)] = 47285, + [SMALL_STATE(5012)] = 47302, + [SMALL_STATE(5013)] = 47321, + [SMALL_STATE(5014)] = 47342, + [SMALL_STATE(5015)] = 47361, + [SMALL_STATE(5016)] = 47382, + [SMALL_STATE(5017)] = 47399, + [SMALL_STATE(5018)] = 47418, + [SMALL_STATE(5019)] = 47435, + [SMALL_STATE(5020)] = 47452, + [SMALL_STATE(5021)] = 47471, + [SMALL_STATE(5022)] = 47496, + [SMALL_STATE(5023)] = 47513, + [SMALL_STATE(5024)] = 47533, + [SMALL_STATE(5025)] = 47551, + [SMALL_STATE(5026)] = 47569, + [SMALL_STATE(5027)] = 47587, + [SMALL_STATE(5028)] = 47609, + [SMALL_STATE(5029)] = 47627, + [SMALL_STATE(5030)] = 47647, + [SMALL_STATE(5031)] = 47669, + [SMALL_STATE(5032)] = 47687, + [SMALL_STATE(5033)] = 47709, + [SMALL_STATE(5034)] = 47727, + [SMALL_STATE(5035)] = 47749, + [SMALL_STATE(5036)] = 47769, + [SMALL_STATE(5037)] = 47791, + [SMALL_STATE(5038)] = 47809, + [SMALL_STATE(5039)] = 47827, + [SMALL_STATE(5040)] = 47849, + [SMALL_STATE(5041)] = 47869, + [SMALL_STATE(5042)] = 47891, + [SMALL_STATE(5043)] = 47909, + [SMALL_STATE(5044)] = 47931, + [SMALL_STATE(5045)] = 47949, + [SMALL_STATE(5046)] = 47967, + [SMALL_STATE(5047)] = 47985, + [SMALL_STATE(5048)] = 48007, + [SMALL_STATE(5049)] = 48029, + [SMALL_STATE(5050)] = 48049, + [SMALL_STATE(5051)] = 48071, + [SMALL_STATE(5052)] = 48093, + [SMALL_STATE(5053)] = 48115, + [SMALL_STATE(5054)] = 48135, + [SMALL_STATE(5055)] = 48153, + [SMALL_STATE(5056)] = 48175, + [SMALL_STATE(5057)] = 48197, + [SMALL_STATE(5058)] = 48219, + [SMALL_STATE(5059)] = 48239, + [SMALL_STATE(5060)] = 48257, + [SMALL_STATE(5061)] = 48277, + [SMALL_STATE(5062)] = 48295, + [SMALL_STATE(5063)] = 48317, + [SMALL_STATE(5064)] = 48335, + [SMALL_STATE(5065)] = 48355, + [SMALL_STATE(5066)] = 48377, + [SMALL_STATE(5067)] = 48395, + [SMALL_STATE(5068)] = 48417, + [SMALL_STATE(5069)] = 48437, + [SMALL_STATE(5070)] = 48451, + [SMALL_STATE(5071)] = 48469, + [SMALL_STATE(5072)] = 48489, + [SMALL_STATE(5073)] = 48511, + [SMALL_STATE(5074)] = 48531, + [SMALL_STATE(5075)] = 48549, + [SMALL_STATE(5076)] = 48571, + [SMALL_STATE(5077)] = 48591, + [SMALL_STATE(5078)] = 48611, + [SMALL_STATE(5079)] = 48631, + [SMALL_STATE(5080)] = 48649, + [SMALL_STATE(5081)] = 48669, + [SMALL_STATE(5082)] = 48691, + [SMALL_STATE(5083)] = 48711, + [SMALL_STATE(5084)] = 48733, + [SMALL_STATE(5085)] = 48751, + [SMALL_STATE(5086)] = 48762, + [SMALL_STATE(5087)] = 48777, + [SMALL_STATE(5088)] = 48792, + [SMALL_STATE(5089)] = 48809, + [SMALL_STATE(5090)] = 48820, + [SMALL_STATE(5091)] = 48835, + [SMALL_STATE(5092)] = 48848, + [SMALL_STATE(5093)] = 48867, + [SMALL_STATE(5094)] = 48882, + [SMALL_STATE(5095)] = 48893, + [SMALL_STATE(5096)] = 48912, + [SMALL_STATE(5097)] = 48929, + [SMALL_STATE(5098)] = 48942, + [SMALL_STATE(5099)] = 48953, + [SMALL_STATE(5100)] = 48972, + [SMALL_STATE(5101)] = 48987, + [SMALL_STATE(5102)] = 48998, + [SMALL_STATE(5103)] = 49015, + [SMALL_STATE(5104)] = 49026, + [SMALL_STATE(5105)] = 49041, + [SMALL_STATE(5106)] = 49052, + [SMALL_STATE(5107)] = 49071, + [SMALL_STATE(5108)] = 49082, + [SMALL_STATE(5109)] = 49099, + [SMALL_STATE(5110)] = 49110, + [SMALL_STATE(5111)] = 49125, + [SMALL_STATE(5112)] = 49136, + [SMALL_STATE(5113)] = 49147, + [SMALL_STATE(5114)] = 49162, + [SMALL_STATE(5115)] = 49181, + [SMALL_STATE(5116)] = 49200, + [SMALL_STATE(5117)] = 49211, + [SMALL_STATE(5118)] = 49226, + [SMALL_STATE(5119)] = 49241, + [SMALL_STATE(5120)] = 49258, + [SMALL_STATE(5121)] = 49273, + [SMALL_STATE(5122)] = 49292, + [SMALL_STATE(5123)] = 49305, + [SMALL_STATE(5124)] = 49316, + [SMALL_STATE(5125)] = 49335, + [SMALL_STATE(5126)] = 49350, + [SMALL_STATE(5127)] = 49365, + [SMALL_STATE(5128)] = 49380, + [SMALL_STATE(5129)] = 49397, + [SMALL_STATE(5130)] = 49414, + [SMALL_STATE(5131)] = 49425, + [SMALL_STATE(5132)] = 49440, + [SMALL_STATE(5133)] = 49451, + [SMALL_STATE(5134)] = 49462, + [SMALL_STATE(5135)] = 49481, + [SMALL_STATE(5136)] = 49500, + [SMALL_STATE(5137)] = 49519, + [SMALL_STATE(5138)] = 49538, + [SMALL_STATE(5139)] = 49557, + [SMALL_STATE(5140)] = 49572, + [SMALL_STATE(5141)] = 49583, + [SMALL_STATE(5142)] = 49598, + [SMALL_STATE(5143)] = 49613, + [SMALL_STATE(5144)] = 49628, + [SMALL_STATE(5145)] = 49643, + [SMALL_STATE(5146)] = 49662, + [SMALL_STATE(5147)] = 49677, + [SMALL_STATE(5148)] = 49688, + [SMALL_STATE(5149)] = 49703, + [SMALL_STATE(5150)] = 49714, + [SMALL_STATE(5151)] = 49731, + [SMALL_STATE(5152)] = 49750, + [SMALL_STATE(5153)] = 49761, + [SMALL_STATE(5154)] = 49772, + [SMALL_STATE(5155)] = 49783, + [SMALL_STATE(5156)] = 49798, + [SMALL_STATE(5157)] = 49813, + [SMALL_STATE(5158)] = 49828, + [SMALL_STATE(5159)] = 49843, + [SMALL_STATE(5160)] = 49857, + [SMALL_STATE(5161)] = 49873, + [SMALL_STATE(5162)] = 49889, + [SMALL_STATE(5163)] = 49905, + [SMALL_STATE(5164)] = 49921, + [SMALL_STATE(5165)] = 49937, + [SMALL_STATE(5166)] = 49953, + [SMALL_STATE(5167)] = 49969, + [SMALL_STATE(5168)] = 49985, + [SMALL_STATE(5169)] = 50001, + [SMALL_STATE(5170)] = 50017, + [SMALL_STATE(5171)] = 50033, + [SMALL_STATE(5172)] = 50049, + [SMALL_STATE(5173)] = 50065, + [SMALL_STATE(5174)] = 50081, + [SMALL_STATE(5175)] = 50097, + [SMALL_STATE(5176)] = 50113, + [SMALL_STATE(5177)] = 50129, + [SMALL_STATE(5178)] = 50145, + [SMALL_STATE(5179)] = 50161, + [SMALL_STATE(5180)] = 50177, + [SMALL_STATE(5181)] = 50191, + [SMALL_STATE(5182)] = 50207, + [SMALL_STATE(5183)] = 50221, + [SMALL_STATE(5184)] = 50237, + [SMALL_STATE(5185)] = 50251, + [SMALL_STATE(5186)] = 50267, + [SMALL_STATE(5187)] = 50281, + [SMALL_STATE(5188)] = 50297, + [SMALL_STATE(5189)] = 50313, + [SMALL_STATE(5190)] = 50329, + [SMALL_STATE(5191)] = 50345, + [SMALL_STATE(5192)] = 50361, + [SMALL_STATE(5193)] = 50377, + [SMALL_STATE(5194)] = 50393, + [SMALL_STATE(5195)] = 50409, + [SMALL_STATE(5196)] = 50425, + [SMALL_STATE(5197)] = 50439, + [SMALL_STATE(5198)] = 50455, + [SMALL_STATE(5199)] = 50471, + [SMALL_STATE(5200)] = 50487, + [SMALL_STATE(5201)] = 50503, + [SMALL_STATE(5202)] = 50519, + [SMALL_STATE(5203)] = 50535, + [SMALL_STATE(5204)] = 50551, + [SMALL_STATE(5205)] = 50567, + [SMALL_STATE(5206)] = 50581, + [SMALL_STATE(5207)] = 50597, + [SMALL_STATE(5208)] = 50613, + [SMALL_STATE(5209)] = 50629, + [SMALL_STATE(5210)] = 50643, + [SMALL_STATE(5211)] = 50657, + [SMALL_STATE(5212)] = 50673, + [SMALL_STATE(5213)] = 50689, + [SMALL_STATE(5214)] = 50705, + [SMALL_STATE(5215)] = 50721, + [SMALL_STATE(5216)] = 50737, + [SMALL_STATE(5217)] = 50753, + [SMALL_STATE(5218)] = 50769, + [SMALL_STATE(5219)] = 50783, + [SMALL_STATE(5220)] = 50799, + [SMALL_STATE(5221)] = 50815, + [SMALL_STATE(5222)] = 50829, + [SMALL_STATE(5223)] = 50845, + [SMALL_STATE(5224)] = 50861, + [SMALL_STATE(5225)] = 50877, + [SMALL_STATE(5226)] = 50893, + [SMALL_STATE(5227)] = 50909, + [SMALL_STATE(5228)] = 50925, + [SMALL_STATE(5229)] = 50941, + [SMALL_STATE(5230)] = 50957, + [SMALL_STATE(5231)] = 50973, + [SMALL_STATE(5232)] = 50989, + [SMALL_STATE(5233)] = 51005, + [SMALL_STATE(5234)] = 51021, + [SMALL_STATE(5235)] = 51037, + [SMALL_STATE(5236)] = 51053, + [SMALL_STATE(5237)] = 51069, + [SMALL_STATE(5238)] = 51085, + [SMALL_STATE(5239)] = 51101, + [SMALL_STATE(5240)] = 51117, + [SMALL_STATE(5241)] = 51131, + [SMALL_STATE(5242)] = 51145, + [SMALL_STATE(5243)] = 51161, + [SMALL_STATE(5244)] = 51175, + [SMALL_STATE(5245)] = 51189, + [SMALL_STATE(5246)] = 51205, + [SMALL_STATE(5247)] = 51221, + [SMALL_STATE(5248)] = 51237, + [SMALL_STATE(5249)] = 51253, + [SMALL_STATE(5250)] = 51267, + [SMALL_STATE(5251)] = 51283, + [SMALL_STATE(5252)] = 51297, + [SMALL_STATE(5253)] = 51313, + [SMALL_STATE(5254)] = 51327, + [SMALL_STATE(5255)] = 51343, + [SMALL_STATE(5256)] = 51359, + [SMALL_STATE(5257)] = 51375, + [SMALL_STATE(5258)] = 51391, + [SMALL_STATE(5259)] = 51407, + [SMALL_STATE(5260)] = 51423, + [SMALL_STATE(5261)] = 51439, + [SMALL_STATE(5262)] = 51455, + [SMALL_STATE(5263)] = 51471, + [SMALL_STATE(5264)] = 51487, + [SMALL_STATE(5265)] = 51503, + [SMALL_STATE(5266)] = 51519, + [SMALL_STATE(5267)] = 51535, + [SMALL_STATE(5268)] = 51551, + [SMALL_STATE(5269)] = 51567, + [SMALL_STATE(5270)] = 51583, + [SMALL_STATE(5271)] = 51599, + [SMALL_STATE(5272)] = 51615, + [SMALL_STATE(5273)] = 51631, + [SMALL_STATE(5274)] = 51647, + [SMALL_STATE(5275)] = 51661, + [SMALL_STATE(5276)] = 51677, + [SMALL_STATE(5277)] = 51693, + [SMALL_STATE(5278)] = 51709, + [SMALL_STATE(5279)] = 51725, + [SMALL_STATE(5280)] = 51741, + [SMALL_STATE(5281)] = 51757, + [SMALL_STATE(5282)] = 51771, + [SMALL_STATE(5283)] = 51787, + [SMALL_STATE(5284)] = 51803, + [SMALL_STATE(5285)] = 51819, + [SMALL_STATE(5286)] = 51835, + [SMALL_STATE(5287)] = 51851, + [SMALL_STATE(5288)] = 51867, + [SMALL_STATE(5289)] = 51883, + [SMALL_STATE(5290)] = 51899, + [SMALL_STATE(5291)] = 51913, + [SMALL_STATE(5292)] = 51929, + [SMALL_STATE(5293)] = 51943, + [SMALL_STATE(5294)] = 51959, + [SMALL_STATE(5295)] = 51973, + [SMALL_STATE(5296)] = 51989, + [SMALL_STATE(5297)] = 52003, + [SMALL_STATE(5298)] = 52019, + [SMALL_STATE(5299)] = 52033, + [SMALL_STATE(5300)] = 52049, + [SMALL_STATE(5301)] = 52065, + [SMALL_STATE(5302)] = 52081, + [SMALL_STATE(5303)] = 52097, + [SMALL_STATE(5304)] = 52113, + [SMALL_STATE(5305)] = 52129, + [SMALL_STATE(5306)] = 52145, + [SMALL_STATE(5307)] = 52161, + [SMALL_STATE(5308)] = 52177, + [SMALL_STATE(5309)] = 52193, + [SMALL_STATE(5310)] = 52203, + [SMALL_STATE(5311)] = 52216, + [SMALL_STATE(5312)] = 52229, + [SMALL_STATE(5313)] = 52242, + [SMALL_STATE(5314)] = 52255, + [SMALL_STATE(5315)] = 52268, + [SMALL_STATE(5316)] = 52281, + [SMALL_STATE(5317)] = 52294, + [SMALL_STATE(5318)] = 52307, + [SMALL_STATE(5319)] = 52320, + [SMALL_STATE(5320)] = 52329, + [SMALL_STATE(5321)] = 52342, + [SMALL_STATE(5322)] = 52355, + [SMALL_STATE(5323)] = 52368, + [SMALL_STATE(5324)] = 52381, + [SMALL_STATE(5325)] = 52394, + [SMALL_STATE(5326)] = 52407, + [SMALL_STATE(5327)] = 52420, + [SMALL_STATE(5328)] = 52433, + [SMALL_STATE(5329)] = 52446, + [SMALL_STATE(5330)] = 52459, + [SMALL_STATE(5331)] = 52470, + [SMALL_STATE(5332)] = 52483, + [SMALL_STATE(5333)] = 52496, + [SMALL_STATE(5334)] = 52509, + [SMALL_STATE(5335)] = 52522, + [SMALL_STATE(5336)] = 52535, + [SMALL_STATE(5337)] = 52548, + [SMALL_STATE(5338)] = 52561, + [SMALL_STATE(5339)] = 52574, + [SMALL_STATE(5340)] = 52587, + [SMALL_STATE(5341)] = 52600, + [SMALL_STATE(5342)] = 52613, + [SMALL_STATE(5343)] = 52622, + [SMALL_STATE(5344)] = 52633, + [SMALL_STATE(5345)] = 52646, + [SMALL_STATE(5346)] = 52655, + [SMALL_STATE(5347)] = 52668, + [SMALL_STATE(5348)] = 52681, + [SMALL_STATE(5349)] = 52694, + [SMALL_STATE(5350)] = 52707, + [SMALL_STATE(5351)] = 52720, + [SMALL_STATE(5352)] = 52733, + [SMALL_STATE(5353)] = 52746, + [SMALL_STATE(5354)] = 52759, + [SMALL_STATE(5355)] = 52772, + [SMALL_STATE(5356)] = 52785, + [SMALL_STATE(5357)] = 52798, + [SMALL_STATE(5358)] = 52811, + [SMALL_STATE(5359)] = 52824, + [SMALL_STATE(5360)] = 52837, + [SMALL_STATE(5361)] = 52850, + [SMALL_STATE(5362)] = 52863, + [SMALL_STATE(5363)] = 52876, + [SMALL_STATE(5364)] = 52889, + [SMALL_STATE(5365)] = 52902, + [SMALL_STATE(5366)] = 52915, + [SMALL_STATE(5367)] = 52928, + [SMALL_STATE(5368)] = 52941, + [SMALL_STATE(5369)] = 52954, + [SMALL_STATE(5370)] = 52967, + [SMALL_STATE(5371)] = 52980, + [SMALL_STATE(5372)] = 52993, + [SMALL_STATE(5373)] = 53006, + [SMALL_STATE(5374)] = 53019, + [SMALL_STATE(5375)] = 53032, + [SMALL_STATE(5376)] = 53045, + [SMALL_STATE(5377)] = 53058, + [SMALL_STATE(5378)] = 53071, + [SMALL_STATE(5379)] = 53084, + [SMALL_STATE(5380)] = 53097, + [SMALL_STATE(5381)] = 53110, + [SMALL_STATE(5382)] = 53123, + [SMALL_STATE(5383)] = 53136, + [SMALL_STATE(5384)] = 53149, + [SMALL_STATE(5385)] = 53162, + [SMALL_STATE(5386)] = 53175, + [SMALL_STATE(5387)] = 53188, + [SMALL_STATE(5388)] = 53201, + [SMALL_STATE(5389)] = 53210, + [SMALL_STATE(5390)] = 53223, + [SMALL_STATE(5391)] = 53236, + [SMALL_STATE(5392)] = 53249, + [SMALL_STATE(5393)] = 53258, + [SMALL_STATE(5394)] = 53267, + [SMALL_STATE(5395)] = 53280, + [SMALL_STATE(5396)] = 53291, + [SMALL_STATE(5397)] = 53304, + [SMALL_STATE(5398)] = 53317, + [SMALL_STATE(5399)] = 53330, + [SMALL_STATE(5400)] = 53343, + [SMALL_STATE(5401)] = 53356, + [SMALL_STATE(5402)] = 53369, + [SMALL_STATE(5403)] = 53382, + [SMALL_STATE(5404)] = 53395, + [SMALL_STATE(5405)] = 53408, + [SMALL_STATE(5406)] = 53421, + [SMALL_STATE(5407)] = 53434, + [SMALL_STATE(5408)] = 53447, + [SMALL_STATE(5409)] = 53460, + [SMALL_STATE(5410)] = 53473, + [SMALL_STATE(5411)] = 53486, + [SMALL_STATE(5412)] = 53499, + [SMALL_STATE(5413)] = 53512, + [SMALL_STATE(5414)] = 53525, + [SMALL_STATE(5415)] = 53538, + [SMALL_STATE(5416)] = 53551, + [SMALL_STATE(5417)] = 53564, + [SMALL_STATE(5418)] = 53577, + [SMALL_STATE(5419)] = 53590, + [SMALL_STATE(5420)] = 53603, + [SMALL_STATE(5421)] = 53616, + [SMALL_STATE(5422)] = 53629, + [SMALL_STATE(5423)] = 53642, + [SMALL_STATE(5424)] = 53653, + [SMALL_STATE(5425)] = 53666, + [SMALL_STATE(5426)] = 53679, + [SMALL_STATE(5427)] = 53692, + [SMALL_STATE(5428)] = 53705, + [SMALL_STATE(5429)] = 53718, + [SMALL_STATE(5430)] = 53731, + [SMALL_STATE(5431)] = 53744, + [SMALL_STATE(5432)] = 53757, + [SMALL_STATE(5433)] = 53768, + [SMALL_STATE(5434)] = 53781, + [SMALL_STATE(5435)] = 53794, + [SMALL_STATE(5436)] = 53807, + [SMALL_STATE(5437)] = 53820, + [SMALL_STATE(5438)] = 53833, + [SMALL_STATE(5439)] = 53846, + [SMALL_STATE(5440)] = 53859, + [SMALL_STATE(5441)] = 53868, + [SMALL_STATE(5442)] = 53881, + [SMALL_STATE(5443)] = 53894, + [SMALL_STATE(5444)] = 53907, + [SMALL_STATE(5445)] = 53920, + [SMALL_STATE(5446)] = 53933, + [SMALL_STATE(5447)] = 53946, + [SMALL_STATE(5448)] = 53959, + [SMALL_STATE(5449)] = 53972, + [SMALL_STATE(5450)] = 53985, + [SMALL_STATE(5451)] = 53998, + [SMALL_STATE(5452)] = 54011, + [SMALL_STATE(5453)] = 54024, + [SMALL_STATE(5454)] = 54037, + [SMALL_STATE(5455)] = 54050, + [SMALL_STATE(5456)] = 54063, + [SMALL_STATE(5457)] = 54076, + [SMALL_STATE(5458)] = 54089, + [SMALL_STATE(5459)] = 54102, + [SMALL_STATE(5460)] = 54115, + [SMALL_STATE(5461)] = 54128, + [SMALL_STATE(5462)] = 54141, + [SMALL_STATE(5463)] = 54154, + [SMALL_STATE(5464)] = 54167, + [SMALL_STATE(5465)] = 54180, + [SMALL_STATE(5466)] = 54193, + [SMALL_STATE(5467)] = 54206, + [SMALL_STATE(5468)] = 54215, + [SMALL_STATE(5469)] = 54228, + [SMALL_STATE(5470)] = 54241, + [SMALL_STATE(5471)] = 54254, + [SMALL_STATE(5472)] = 54267, + [SMALL_STATE(5473)] = 54280, + [SMALL_STATE(5474)] = 54293, + [SMALL_STATE(5475)] = 54306, + [SMALL_STATE(5476)] = 54319, + [SMALL_STATE(5477)] = 54332, + [SMALL_STATE(5478)] = 54345, + [SMALL_STATE(5479)] = 54358, + [SMALL_STATE(5480)] = 54371, + [SMALL_STATE(5481)] = 54384, + [SMALL_STATE(5482)] = 54397, + [SMALL_STATE(5483)] = 54410, + [SMALL_STATE(5484)] = 54423, + [SMALL_STATE(5485)] = 54436, + [SMALL_STATE(5486)] = 54445, + [SMALL_STATE(5487)] = 54458, + [SMALL_STATE(5488)] = 54467, + [SMALL_STATE(5489)] = 54480, + [SMALL_STATE(5490)] = 54493, + [SMALL_STATE(5491)] = 54506, + [SMALL_STATE(5492)] = 54519, + [SMALL_STATE(5493)] = 54532, + [SMALL_STATE(5494)] = 54545, + [SMALL_STATE(5495)] = 54558, + [SMALL_STATE(5496)] = 54571, + [SMALL_STATE(5497)] = 54584, + [SMALL_STATE(5498)] = 54593, + [SMALL_STATE(5499)] = 54606, + [SMALL_STATE(5500)] = 54615, + [SMALL_STATE(5501)] = 54628, + [SMALL_STATE(5502)] = 54641, + [SMALL_STATE(5503)] = 54654, + [SMALL_STATE(5504)] = 54667, + [SMALL_STATE(5505)] = 54678, + [SMALL_STATE(5506)] = 54689, + [SMALL_STATE(5507)] = 54702, + [SMALL_STATE(5508)] = 54715, + [SMALL_STATE(5509)] = 54728, + [SMALL_STATE(5510)] = 54741, + [SMALL_STATE(5511)] = 54754, + [SMALL_STATE(5512)] = 54767, + [SMALL_STATE(5513)] = 54780, + [SMALL_STATE(5514)] = 54793, + [SMALL_STATE(5515)] = 54806, + [SMALL_STATE(5516)] = 54819, + [SMALL_STATE(5517)] = 54832, + [SMALL_STATE(5518)] = 54845, + [SMALL_STATE(5519)] = 54858, + [SMALL_STATE(5520)] = 54871, + [SMALL_STATE(5521)] = 54884, + [SMALL_STATE(5522)] = 54897, + [SMALL_STATE(5523)] = 54910, + [SMALL_STATE(5524)] = 54923, + [SMALL_STATE(5525)] = 54936, + [SMALL_STATE(5526)] = 54949, + [SMALL_STATE(5527)] = 54962, + [SMALL_STATE(5528)] = 54975, + [SMALL_STATE(5529)] = 54988, + [SMALL_STATE(5530)] = 55001, + [SMALL_STATE(5531)] = 55014, + [SMALL_STATE(5532)] = 55027, + [SMALL_STATE(5533)] = 55040, + [SMALL_STATE(5534)] = 55053, + [SMALL_STATE(5535)] = 55066, + [SMALL_STATE(5536)] = 55079, + [SMALL_STATE(5537)] = 55092, + [SMALL_STATE(5538)] = 55105, + [SMALL_STATE(5539)] = 55118, + [SMALL_STATE(5540)] = 55129, + [SMALL_STATE(5541)] = 55142, + [SMALL_STATE(5542)] = 55155, + [SMALL_STATE(5543)] = 55164, + [SMALL_STATE(5544)] = 55177, + [SMALL_STATE(5545)] = 55190, + [SMALL_STATE(5546)] = 55203, + [SMALL_STATE(5547)] = 55216, + [SMALL_STATE(5548)] = 55229, + [SMALL_STATE(5549)] = 55242, + [SMALL_STATE(5550)] = 55255, + [SMALL_STATE(5551)] = 55268, + [SMALL_STATE(5552)] = 55281, + [SMALL_STATE(5553)] = 55294, + [SMALL_STATE(5554)] = 55307, + [SMALL_STATE(5555)] = 55320, + [SMALL_STATE(5556)] = 55333, + [SMALL_STATE(5557)] = 55346, + [SMALL_STATE(5558)] = 55359, + [SMALL_STATE(5559)] = 55372, + [SMALL_STATE(5560)] = 55385, + [SMALL_STATE(5561)] = 55398, + [SMALL_STATE(5562)] = 55411, + [SMALL_STATE(5563)] = 55424, + [SMALL_STATE(5564)] = 55437, + [SMALL_STATE(5565)] = 55450, + [SMALL_STATE(5566)] = 55463, + [SMALL_STATE(5567)] = 55476, + [SMALL_STATE(5568)] = 55489, + [SMALL_STATE(5569)] = 55502, + [SMALL_STATE(5570)] = 55515, + [SMALL_STATE(5571)] = 55528, + [SMALL_STATE(5572)] = 55541, + [SMALL_STATE(5573)] = 55554, + [SMALL_STATE(5574)] = 55567, + [SMALL_STATE(5575)] = 55580, + [SMALL_STATE(5576)] = 55593, + [SMALL_STATE(5577)] = 55606, + [SMALL_STATE(5578)] = 55619, + [SMALL_STATE(5579)] = 55632, + [SMALL_STATE(5580)] = 55645, + [SMALL_STATE(5581)] = 55658, + [SMALL_STATE(5582)] = 55669, + [SMALL_STATE(5583)] = 55678, + [SMALL_STATE(5584)] = 55691, + [SMALL_STATE(5585)] = 55704, + [SMALL_STATE(5586)] = 55717, + [SMALL_STATE(5587)] = 55730, + [SMALL_STATE(5588)] = 55741, + [SMALL_STATE(5589)] = 55754, + [SMALL_STATE(5590)] = 55767, + [SMALL_STATE(5591)] = 55780, + [SMALL_STATE(5592)] = 55793, + [SMALL_STATE(5593)] = 55806, + [SMALL_STATE(5594)] = 55819, + [SMALL_STATE(5595)] = 55832, + [SMALL_STATE(5596)] = 55843, + [SMALL_STATE(5597)] = 55856, + [SMALL_STATE(5598)] = 55869, + [SMALL_STATE(5599)] = 55882, + [SMALL_STATE(5600)] = 55895, + [SMALL_STATE(5601)] = 55906, + [SMALL_STATE(5602)] = 55919, + [SMALL_STATE(5603)] = 55932, + [SMALL_STATE(5604)] = 55945, + [SMALL_STATE(5605)] = 55958, + [SMALL_STATE(5606)] = 55971, + [SMALL_STATE(5607)] = 55980, + [SMALL_STATE(5608)] = 55993, + [SMALL_STATE(5609)] = 56006, + [SMALL_STATE(5610)] = 56019, + [SMALL_STATE(5611)] = 56032, + [SMALL_STATE(5612)] = 56043, + [SMALL_STATE(5613)] = 56056, + [SMALL_STATE(5614)] = 56069, + [SMALL_STATE(5615)] = 56082, + [SMALL_STATE(5616)] = 56095, + [SMALL_STATE(5617)] = 56108, + [SMALL_STATE(5618)] = 56121, + [SMALL_STATE(5619)] = 56134, + [SMALL_STATE(5620)] = 56147, + [SMALL_STATE(5621)] = 56160, + [SMALL_STATE(5622)] = 56173, + [SMALL_STATE(5623)] = 56186, + [SMALL_STATE(5624)] = 56199, + [SMALL_STATE(5625)] = 56212, + [SMALL_STATE(5626)] = 56225, + [SMALL_STATE(5627)] = 56238, + [SMALL_STATE(5628)] = 56251, + [SMALL_STATE(5629)] = 56264, + [SMALL_STATE(5630)] = 56277, + [SMALL_STATE(5631)] = 56290, + [SMALL_STATE(5632)] = 56303, + [SMALL_STATE(5633)] = 56316, + [SMALL_STATE(5634)] = 56329, + [SMALL_STATE(5635)] = 56342, + [SMALL_STATE(5636)] = 56355, + [SMALL_STATE(5637)] = 56368, + [SMALL_STATE(5638)] = 56381, + [SMALL_STATE(5639)] = 56394, + [SMALL_STATE(5640)] = 56407, + [SMALL_STATE(5641)] = 56420, + [SMALL_STATE(5642)] = 56433, + [SMALL_STATE(5643)] = 56446, + [SMALL_STATE(5644)] = 56459, + [SMALL_STATE(5645)] = 56472, + [SMALL_STATE(5646)] = 56485, + [SMALL_STATE(5647)] = 56498, + [SMALL_STATE(5648)] = 56511, + [SMALL_STATE(5649)] = 56524, + [SMALL_STATE(5650)] = 56537, + [SMALL_STATE(5651)] = 56550, + [SMALL_STATE(5652)] = 56563, + [SMALL_STATE(5653)] = 56576, + [SMALL_STATE(5654)] = 56589, + [SMALL_STATE(5655)] = 56602, + [SMALL_STATE(5656)] = 56615, + [SMALL_STATE(5657)] = 56628, + [SMALL_STATE(5658)] = 56641, + [SMALL_STATE(5659)] = 56654, + [SMALL_STATE(5660)] = 56667, + [SMALL_STATE(5661)] = 56680, + [SMALL_STATE(5662)] = 56693, + [SMALL_STATE(5663)] = 56706, + [SMALL_STATE(5664)] = 56719, + [SMALL_STATE(5665)] = 56730, + [SMALL_STATE(5666)] = 56743, + [SMALL_STATE(5667)] = 56756, + [SMALL_STATE(5668)] = 56769, + [SMALL_STATE(5669)] = 56782, + [SMALL_STATE(5670)] = 56795, + [SMALL_STATE(5671)] = 56808, + [SMALL_STATE(5672)] = 56821, + [SMALL_STATE(5673)] = 56834, + [SMALL_STATE(5674)] = 56847, + [SMALL_STATE(5675)] = 56860, + [SMALL_STATE(5676)] = 56873, + [SMALL_STATE(5677)] = 56886, + [SMALL_STATE(5678)] = 56895, + [SMALL_STATE(5679)] = 56908, + [SMALL_STATE(5680)] = 56921, + [SMALL_STATE(5681)] = 56934, + [SMALL_STATE(5682)] = 56947, + [SMALL_STATE(5683)] = 56960, + [SMALL_STATE(5684)] = 56973, + [SMALL_STATE(5685)] = 56986, + [SMALL_STATE(5686)] = 56999, + [SMALL_STATE(5687)] = 57012, + [SMALL_STATE(5688)] = 57025, + [SMALL_STATE(5689)] = 57038, + [SMALL_STATE(5690)] = 57051, + [SMALL_STATE(5691)] = 57064, + [SMALL_STATE(5692)] = 57077, + [SMALL_STATE(5693)] = 57090, + [SMALL_STATE(5694)] = 57103, + [SMALL_STATE(5695)] = 57116, + [SMALL_STATE(5696)] = 57129, + [SMALL_STATE(5697)] = 57142, + [SMALL_STATE(5698)] = 57155, + [SMALL_STATE(5699)] = 57168, + [SMALL_STATE(5700)] = 57181, + [SMALL_STATE(5701)] = 57194, + [SMALL_STATE(5702)] = 57207, + [SMALL_STATE(5703)] = 57220, + [SMALL_STATE(5704)] = 57233, + [SMALL_STATE(5705)] = 57246, + [SMALL_STATE(5706)] = 57259, + [SMALL_STATE(5707)] = 57272, + [SMALL_STATE(5708)] = 57285, + [SMALL_STATE(5709)] = 57298, + [SMALL_STATE(5710)] = 57311, + [SMALL_STATE(5711)] = 57321, + [SMALL_STATE(5712)] = 57331, + [SMALL_STATE(5713)] = 57339, + [SMALL_STATE(5714)] = 57349, + [SMALL_STATE(5715)] = 57359, + [SMALL_STATE(5716)] = 57369, + [SMALL_STATE(5717)] = 57379, + [SMALL_STATE(5718)] = 57389, + [SMALL_STATE(5719)] = 57397, + [SMALL_STATE(5720)] = 57407, + [SMALL_STATE(5721)] = 57417, + [SMALL_STATE(5722)] = 57427, + [SMALL_STATE(5723)] = 57437, + [SMALL_STATE(5724)] = 57447, + [SMALL_STATE(5725)] = 57457, + [SMALL_STATE(5726)] = 57467, + [SMALL_STATE(5727)] = 57477, + [SMALL_STATE(5728)] = 57487, + [SMALL_STATE(5729)] = 57497, + [SMALL_STATE(5730)] = 57507, + [SMALL_STATE(5731)] = 57517, + [SMALL_STATE(5732)] = 57527, + [SMALL_STATE(5733)] = 57537, + [SMALL_STATE(5734)] = 57545, + [SMALL_STATE(5735)] = 57553, + [SMALL_STATE(5736)] = 57563, + [SMALL_STATE(5737)] = 57573, + [SMALL_STATE(5738)] = 57583, + [SMALL_STATE(5739)] = 57593, + [SMALL_STATE(5740)] = 57601, + [SMALL_STATE(5741)] = 57611, + [SMALL_STATE(5742)] = 57621, + [SMALL_STATE(5743)] = 57631, + [SMALL_STATE(5744)] = 57641, + [SMALL_STATE(5745)] = 57649, + [SMALL_STATE(5746)] = 57659, + [SMALL_STATE(5747)] = 57669, + [SMALL_STATE(5748)] = 57679, + [SMALL_STATE(5749)] = 57687, + [SMALL_STATE(5750)] = 57697, + [SMALL_STATE(5751)] = 57707, + [SMALL_STATE(5752)] = 57717, + [SMALL_STATE(5753)] = 57725, + [SMALL_STATE(5754)] = 57733, + [SMALL_STATE(5755)] = 57743, + [SMALL_STATE(5756)] = 57753, + [SMALL_STATE(5757)] = 57761, + [SMALL_STATE(5758)] = 57771, + [SMALL_STATE(5759)] = 57779, + [SMALL_STATE(5760)] = 57789, + [SMALL_STATE(5761)] = 57799, + [SMALL_STATE(5762)] = 57807, + [SMALL_STATE(5763)] = 57815, + [SMALL_STATE(5764)] = 57823, + [SMALL_STATE(5765)] = 57833, + [SMALL_STATE(5766)] = 57841, + [SMALL_STATE(5767)] = 57851, + [SMALL_STATE(5768)] = 57859, + [SMALL_STATE(5769)] = 57869, + [SMALL_STATE(5770)] = 57879, + [SMALL_STATE(5771)] = 57887, + [SMALL_STATE(5772)] = 57897, + [SMALL_STATE(5773)] = 57907, + [SMALL_STATE(5774)] = 57917, + [SMALL_STATE(5775)] = 57925, + [SMALL_STATE(5776)] = 57933, + [SMALL_STATE(5777)] = 57943, + [SMALL_STATE(5778)] = 57951, + [SMALL_STATE(5779)] = 57959, + [SMALL_STATE(5780)] = 57969, + [SMALL_STATE(5781)] = 57979, + [SMALL_STATE(5782)] = 57989, + [SMALL_STATE(5783)] = 57997, + [SMALL_STATE(5784)] = 58007, + [SMALL_STATE(5785)] = 58017, + [SMALL_STATE(5786)] = 58027, + [SMALL_STATE(5787)] = 58037, + [SMALL_STATE(5788)] = 58047, + [SMALL_STATE(5789)] = 58057, + [SMALL_STATE(5790)] = 58067, + [SMALL_STATE(5791)] = 58075, + [SMALL_STATE(5792)] = 58085, + [SMALL_STATE(5793)] = 58095, + [SMALL_STATE(5794)] = 58103, + [SMALL_STATE(5795)] = 58113, + [SMALL_STATE(5796)] = 58123, + [SMALL_STATE(5797)] = 58133, + [SMALL_STATE(5798)] = 58143, + [SMALL_STATE(5799)] = 58153, + [SMALL_STATE(5800)] = 58163, + [SMALL_STATE(5801)] = 58173, + [SMALL_STATE(5802)] = 58181, + [SMALL_STATE(5803)] = 58191, + [SMALL_STATE(5804)] = 58201, + [SMALL_STATE(5805)] = 58211, + [SMALL_STATE(5806)] = 58221, + [SMALL_STATE(5807)] = 58231, + [SMALL_STATE(5808)] = 58241, + [SMALL_STATE(5809)] = 58251, + [SMALL_STATE(5810)] = 58259, + [SMALL_STATE(5811)] = 58269, + [SMALL_STATE(5812)] = 58277, + [SMALL_STATE(5813)] = 58285, + [SMALL_STATE(5814)] = 58293, + [SMALL_STATE(5815)] = 58303, + [SMALL_STATE(5816)] = 58313, + [SMALL_STATE(5817)] = 58323, + [SMALL_STATE(5818)] = 58333, + [SMALL_STATE(5819)] = 58343, + [SMALL_STATE(5820)] = 58351, + [SMALL_STATE(5821)] = 58361, + [SMALL_STATE(5822)] = 58371, + [SMALL_STATE(5823)] = 58381, + [SMALL_STATE(5824)] = 58391, + [SMALL_STATE(5825)] = 58401, + [SMALL_STATE(5826)] = 58411, + [SMALL_STATE(5827)] = 58421, + [SMALL_STATE(5828)] = 58429, + [SMALL_STATE(5829)] = 58437, + [SMALL_STATE(5830)] = 58447, + [SMALL_STATE(5831)] = 58457, + [SMALL_STATE(5832)] = 58467, + [SMALL_STATE(5833)] = 58477, + [SMALL_STATE(5834)] = 58487, + [SMALL_STATE(5835)] = 58497, + [SMALL_STATE(5836)] = 58507, + [SMALL_STATE(5837)] = 58517, + [SMALL_STATE(5838)] = 58527, + [SMALL_STATE(5839)] = 58537, + [SMALL_STATE(5840)] = 58547, + [SMALL_STATE(5841)] = 58557, + [SMALL_STATE(5842)] = 58567, + [SMALL_STATE(5843)] = 58575, + [SMALL_STATE(5844)] = 58585, + [SMALL_STATE(5845)] = 58595, + [SMALL_STATE(5846)] = 58605, + [SMALL_STATE(5847)] = 58613, + [SMALL_STATE(5848)] = 58623, + [SMALL_STATE(5849)] = 58633, + [SMALL_STATE(5850)] = 58643, + [SMALL_STATE(5851)] = 58653, + [SMALL_STATE(5852)] = 58663, + [SMALL_STATE(5853)] = 58673, + [SMALL_STATE(5854)] = 58683, + [SMALL_STATE(5855)] = 58693, + [SMALL_STATE(5856)] = 58703, + [SMALL_STATE(5857)] = 58713, + [SMALL_STATE(5858)] = 58721, + [SMALL_STATE(5859)] = 58731, + [SMALL_STATE(5860)] = 58741, + [SMALL_STATE(5861)] = 58751, + [SMALL_STATE(5862)] = 58759, + [SMALL_STATE(5863)] = 58769, + [SMALL_STATE(5864)] = 58779, + [SMALL_STATE(5865)] = 58787, + [SMALL_STATE(5866)] = 58795, + [SMALL_STATE(5867)] = 58805, + [SMALL_STATE(5868)] = 58815, + [SMALL_STATE(5869)] = 58823, + [SMALL_STATE(5870)] = 58833, + [SMALL_STATE(5871)] = 58843, + [SMALL_STATE(5872)] = 58853, + [SMALL_STATE(5873)] = 58863, + [SMALL_STATE(5874)] = 58873, + [SMALL_STATE(5875)] = 58883, + [SMALL_STATE(5876)] = 58891, + [SMALL_STATE(5877)] = 58901, + [SMALL_STATE(5878)] = 58909, + [SMALL_STATE(5879)] = 58917, + [SMALL_STATE(5880)] = 58927, + [SMALL_STATE(5881)] = 58937, + [SMALL_STATE(5882)] = 58947, + [SMALL_STATE(5883)] = 58957, + [SMALL_STATE(5884)] = 58967, + [SMALL_STATE(5885)] = 58975, + [SMALL_STATE(5886)] = 58985, + [SMALL_STATE(5887)] = 58995, + [SMALL_STATE(5888)] = 59005, + [SMALL_STATE(5889)] = 59015, + [SMALL_STATE(5890)] = 59025, + [SMALL_STATE(5891)] = 59035, + [SMALL_STATE(5892)] = 59045, + [SMALL_STATE(5893)] = 59055, + [SMALL_STATE(5894)] = 59065, + [SMALL_STATE(5895)] = 59073, + [SMALL_STATE(5896)] = 59083, + [SMALL_STATE(5897)] = 59091, + [SMALL_STATE(5898)] = 59099, + [SMALL_STATE(5899)] = 59109, + [SMALL_STATE(5900)] = 59117, + [SMALL_STATE(5901)] = 59124, + [SMALL_STATE(5902)] = 59131, + [SMALL_STATE(5903)] = 59138, + [SMALL_STATE(5904)] = 59145, + [SMALL_STATE(5905)] = 59152, + [SMALL_STATE(5906)] = 59159, + [SMALL_STATE(5907)] = 59166, + [SMALL_STATE(5908)] = 59173, + [SMALL_STATE(5909)] = 59180, + [SMALL_STATE(5910)] = 59187, + [SMALL_STATE(5911)] = 59194, + [SMALL_STATE(5912)] = 59201, + [SMALL_STATE(5913)] = 59208, + [SMALL_STATE(5914)] = 59215, + [SMALL_STATE(5915)] = 59222, + [SMALL_STATE(5916)] = 59229, + [SMALL_STATE(5917)] = 59236, + [SMALL_STATE(5918)] = 59243, + [SMALL_STATE(5919)] = 59250, + [SMALL_STATE(5920)] = 59257, + [SMALL_STATE(5921)] = 59264, + [SMALL_STATE(5922)] = 59271, + [SMALL_STATE(5923)] = 59278, + [SMALL_STATE(5924)] = 59285, + [SMALL_STATE(5925)] = 59292, + [SMALL_STATE(5926)] = 59299, + [SMALL_STATE(5927)] = 59306, + [SMALL_STATE(5928)] = 59313, + [SMALL_STATE(5929)] = 59320, + [SMALL_STATE(5930)] = 59327, + [SMALL_STATE(5931)] = 59334, + [SMALL_STATE(5932)] = 59341, + [SMALL_STATE(5933)] = 59348, + [SMALL_STATE(5934)] = 59355, + [SMALL_STATE(5935)] = 59362, + [SMALL_STATE(5936)] = 59369, + [SMALL_STATE(5937)] = 59376, + [SMALL_STATE(5938)] = 59383, + [SMALL_STATE(5939)] = 59390, + [SMALL_STATE(5940)] = 59397, + [SMALL_STATE(5941)] = 59404, + [SMALL_STATE(5942)] = 59411, + [SMALL_STATE(5943)] = 59418, + [SMALL_STATE(5944)] = 59425, + [SMALL_STATE(5945)] = 59432, + [SMALL_STATE(5946)] = 59439, + [SMALL_STATE(5947)] = 59446, + [SMALL_STATE(5948)] = 59453, + [SMALL_STATE(5949)] = 59460, + [SMALL_STATE(5950)] = 59467, + [SMALL_STATE(5951)] = 59474, + [SMALL_STATE(5952)] = 59481, + [SMALL_STATE(5953)] = 59488, + [SMALL_STATE(5954)] = 59495, + [SMALL_STATE(5955)] = 59502, + [SMALL_STATE(5956)] = 59509, + [SMALL_STATE(5957)] = 59516, + [SMALL_STATE(5958)] = 59523, + [SMALL_STATE(5959)] = 59530, + [SMALL_STATE(5960)] = 59537, + [SMALL_STATE(5961)] = 59544, + [SMALL_STATE(5962)] = 59551, + [SMALL_STATE(5963)] = 59558, + [SMALL_STATE(5964)] = 59565, + [SMALL_STATE(5965)] = 59572, + [SMALL_STATE(5966)] = 59579, + [SMALL_STATE(5967)] = 59586, + [SMALL_STATE(5968)] = 59593, + [SMALL_STATE(5969)] = 59600, + [SMALL_STATE(5970)] = 59607, + [SMALL_STATE(5971)] = 59614, + [SMALL_STATE(5972)] = 59621, + [SMALL_STATE(5973)] = 59628, + [SMALL_STATE(5974)] = 59635, + [SMALL_STATE(5975)] = 59642, + [SMALL_STATE(5976)] = 59649, + [SMALL_STATE(5977)] = 59656, + [SMALL_STATE(5978)] = 59663, + [SMALL_STATE(5979)] = 59670, + [SMALL_STATE(5980)] = 59677, + [SMALL_STATE(5981)] = 59684, + [SMALL_STATE(5982)] = 59691, + [SMALL_STATE(5983)] = 59698, + [SMALL_STATE(5984)] = 59705, + [SMALL_STATE(5985)] = 59712, + [SMALL_STATE(5986)] = 59719, + [SMALL_STATE(5987)] = 59726, + [SMALL_STATE(5988)] = 59733, + [SMALL_STATE(5989)] = 59740, + [SMALL_STATE(5990)] = 59747, + [SMALL_STATE(5991)] = 59754, + [SMALL_STATE(5992)] = 59761, + [SMALL_STATE(5993)] = 59768, + [SMALL_STATE(5994)] = 59775, + [SMALL_STATE(5995)] = 59782, + [SMALL_STATE(5996)] = 59789, + [SMALL_STATE(5997)] = 59796, + [SMALL_STATE(5998)] = 59803, + [SMALL_STATE(5999)] = 59810, + [SMALL_STATE(6000)] = 59817, + [SMALL_STATE(6001)] = 59824, + [SMALL_STATE(6002)] = 59831, + [SMALL_STATE(6003)] = 59838, + [SMALL_STATE(6004)] = 59845, + [SMALL_STATE(6005)] = 59852, + [SMALL_STATE(6006)] = 59859, + [SMALL_STATE(6007)] = 59866, + [SMALL_STATE(6008)] = 59873, + [SMALL_STATE(6009)] = 59880, + [SMALL_STATE(6010)] = 59887, + [SMALL_STATE(6011)] = 59894, + [SMALL_STATE(6012)] = 59901, + [SMALL_STATE(6013)] = 59908, + [SMALL_STATE(6014)] = 59915, + [SMALL_STATE(6015)] = 59922, + [SMALL_STATE(6016)] = 59929, + [SMALL_STATE(6017)] = 59936, + [SMALL_STATE(6018)] = 59943, + [SMALL_STATE(6019)] = 59950, + [SMALL_STATE(6020)] = 59957, + [SMALL_STATE(6021)] = 59964, + [SMALL_STATE(6022)] = 59971, + [SMALL_STATE(6023)] = 59978, + [SMALL_STATE(6024)] = 59985, + [SMALL_STATE(6025)] = 59992, + [SMALL_STATE(6026)] = 59999, + [SMALL_STATE(6027)] = 60006, + [SMALL_STATE(6028)] = 60013, + [SMALL_STATE(6029)] = 60020, + [SMALL_STATE(6030)] = 60027, + [SMALL_STATE(6031)] = 60034, + [SMALL_STATE(6032)] = 60041, + [SMALL_STATE(6033)] = 60048, + [SMALL_STATE(6034)] = 60055, + [SMALL_STATE(6035)] = 60062, + [SMALL_STATE(6036)] = 60069, + [SMALL_STATE(6037)] = 60076, + [SMALL_STATE(6038)] = 60083, + [SMALL_STATE(6039)] = 60090, + [SMALL_STATE(6040)] = 60097, + [SMALL_STATE(6041)] = 60104, + [SMALL_STATE(6042)] = 60111, + [SMALL_STATE(6043)] = 60118, + [SMALL_STATE(6044)] = 60125, + [SMALL_STATE(6045)] = 60132, + [SMALL_STATE(6046)] = 60139, + [SMALL_STATE(6047)] = 60146, + [SMALL_STATE(6048)] = 60153, + [SMALL_STATE(6049)] = 60160, + [SMALL_STATE(6050)] = 60167, + [SMALL_STATE(6051)] = 60174, + [SMALL_STATE(6052)] = 60181, + [SMALL_STATE(6053)] = 60188, + [SMALL_STATE(6054)] = 60195, + [SMALL_STATE(6055)] = 60202, + [SMALL_STATE(6056)] = 60209, + [SMALL_STATE(6057)] = 60216, + [SMALL_STATE(6058)] = 60223, + [SMALL_STATE(6059)] = 60230, + [SMALL_STATE(6060)] = 60237, + [SMALL_STATE(6061)] = 60244, + [SMALL_STATE(6062)] = 60251, + [SMALL_STATE(6063)] = 60258, + [SMALL_STATE(6064)] = 60265, + [SMALL_STATE(6065)] = 60272, + [SMALL_STATE(6066)] = 60279, + [SMALL_STATE(6067)] = 60286, + [SMALL_STATE(6068)] = 60293, + [SMALL_STATE(6069)] = 60300, + [SMALL_STATE(6070)] = 60307, + [SMALL_STATE(6071)] = 60314, + [SMALL_STATE(6072)] = 60321, + [SMALL_STATE(6073)] = 60328, + [SMALL_STATE(6074)] = 60335, + [SMALL_STATE(6075)] = 60342, + [SMALL_STATE(6076)] = 60349, + [SMALL_STATE(6077)] = 60356, + [SMALL_STATE(6078)] = 60363, + [SMALL_STATE(6079)] = 60370, + [SMALL_STATE(6080)] = 60377, + [SMALL_STATE(6081)] = 60384, + [SMALL_STATE(6082)] = 60391, + [SMALL_STATE(6083)] = 60398, + [SMALL_STATE(6084)] = 60405, + [SMALL_STATE(6085)] = 60412, + [SMALL_STATE(6086)] = 60419, + [SMALL_STATE(6087)] = 60426, + [SMALL_STATE(6088)] = 60433, + [SMALL_STATE(6089)] = 60440, + [SMALL_STATE(6090)] = 60447, + [SMALL_STATE(6091)] = 60454, + [SMALL_STATE(6092)] = 60461, + [SMALL_STATE(6093)] = 60468, + [SMALL_STATE(6094)] = 60475, + [SMALL_STATE(6095)] = 60482, + [SMALL_STATE(6096)] = 60489, + [SMALL_STATE(6097)] = 60496, + [SMALL_STATE(6098)] = 60503, + [SMALL_STATE(6099)] = 60510, + [SMALL_STATE(6100)] = 60517, + [SMALL_STATE(6101)] = 60524, + [SMALL_STATE(6102)] = 60531, + [SMALL_STATE(6103)] = 60538, + [SMALL_STATE(6104)] = 60545, + [SMALL_STATE(6105)] = 60552, + [SMALL_STATE(6106)] = 60559, + [SMALL_STATE(6107)] = 60566, + [SMALL_STATE(6108)] = 60573, + [SMALL_STATE(6109)] = 60580, + [SMALL_STATE(6110)] = 60587, + [SMALL_STATE(6111)] = 60594, + [SMALL_STATE(6112)] = 60601, + [SMALL_STATE(6113)] = 60608, + [SMALL_STATE(6114)] = 60615, + [SMALL_STATE(6115)] = 60622, + [SMALL_STATE(6116)] = 60629, + [SMALL_STATE(6117)] = 60636, + [SMALL_STATE(6118)] = 60643, + [SMALL_STATE(6119)] = 60650, + [SMALL_STATE(6120)] = 60657, + [SMALL_STATE(6121)] = 60664, + [SMALL_STATE(6122)] = 60671, + [SMALL_STATE(6123)] = 60678, + [SMALL_STATE(6124)] = 60685, + [SMALL_STATE(6125)] = 60692, + [SMALL_STATE(6126)] = 60699, + [SMALL_STATE(6127)] = 60706, + [SMALL_STATE(6128)] = 60713, + [SMALL_STATE(6129)] = 60720, + [SMALL_STATE(6130)] = 60727, + [SMALL_STATE(6131)] = 60734, + [SMALL_STATE(6132)] = 60741, + [SMALL_STATE(6133)] = 60748, + [SMALL_STATE(6134)] = 60755, + [SMALL_STATE(6135)] = 60762, + [SMALL_STATE(6136)] = 60769, + [SMALL_STATE(6137)] = 60776, + [SMALL_STATE(6138)] = 60783, + [SMALL_STATE(6139)] = 60790, + [SMALL_STATE(6140)] = 60797, + [SMALL_STATE(6141)] = 60804, + [SMALL_STATE(6142)] = 60811, + [SMALL_STATE(6143)] = 60818, + [SMALL_STATE(6144)] = 60825, + [SMALL_STATE(6145)] = 60832, + [SMALL_STATE(6146)] = 60839, + [SMALL_STATE(6147)] = 60846, + [SMALL_STATE(6148)] = 60853, + [SMALL_STATE(6149)] = 60860, + [SMALL_STATE(6150)] = 60867, + [SMALL_STATE(6151)] = 60874, + [SMALL_STATE(6152)] = 60881, + [SMALL_STATE(6153)] = 60888, + [SMALL_STATE(6154)] = 60895, + [SMALL_STATE(6155)] = 60902, + [SMALL_STATE(6156)] = 60909, + [SMALL_STATE(6157)] = 60916, + [SMALL_STATE(6158)] = 60923, + [SMALL_STATE(6159)] = 60930, + [SMALL_STATE(6160)] = 60937, + [SMALL_STATE(6161)] = 60944, + [SMALL_STATE(6162)] = 60951, + [SMALL_STATE(6163)] = 60958, + [SMALL_STATE(6164)] = 60965, + [SMALL_STATE(6165)] = 60972, + [SMALL_STATE(6166)] = 60979, + [SMALL_STATE(6167)] = 60986, + [SMALL_STATE(6168)] = 60993, + [SMALL_STATE(6169)] = 61000, + [SMALL_STATE(6170)] = 61007, + [SMALL_STATE(6171)] = 61014, + [SMALL_STATE(6172)] = 61021, + [SMALL_STATE(6173)] = 61028, + [SMALL_STATE(6174)] = 61035, + [SMALL_STATE(6175)] = 61042, + [SMALL_STATE(6176)] = 61049, + [SMALL_STATE(6177)] = 61056, + [SMALL_STATE(6178)] = 61063, + [SMALL_STATE(6179)] = 61070, + [SMALL_STATE(6180)] = 61077, + [SMALL_STATE(6181)] = 61084, + [SMALL_STATE(6182)] = 61091, + [SMALL_STATE(6183)] = 61098, + [SMALL_STATE(6184)] = 61105, + [SMALL_STATE(6185)] = 61112, + [SMALL_STATE(6186)] = 61119, + [SMALL_STATE(6187)] = 61126, + [SMALL_STATE(6188)] = 61133, + [SMALL_STATE(6189)] = 61140, + [SMALL_STATE(6190)] = 61147, + [SMALL_STATE(6191)] = 61154, + [SMALL_STATE(6192)] = 61161, + [SMALL_STATE(6193)] = 61168, + [SMALL_STATE(6194)] = 61175, + [SMALL_STATE(6195)] = 61182, + [SMALL_STATE(6196)] = 61189, + [SMALL_STATE(6197)] = 61196, + [SMALL_STATE(6198)] = 61203, + [SMALL_STATE(6199)] = 61210, + [SMALL_STATE(6200)] = 61217, + [SMALL_STATE(6201)] = 61224, + [SMALL_STATE(6202)] = 61231, + [SMALL_STATE(6203)] = 61238, + [SMALL_STATE(6204)] = 61245, + [SMALL_STATE(6205)] = 61252, + [SMALL_STATE(6206)] = 61259, + [SMALL_STATE(6207)] = 61266, + [SMALL_STATE(6208)] = 61273, + [SMALL_STATE(6209)] = 61280, + [SMALL_STATE(6210)] = 61287, + [SMALL_STATE(6211)] = 61294, + [SMALL_STATE(6212)] = 61301, + [SMALL_STATE(6213)] = 61308, + [SMALL_STATE(6214)] = 61315, + [SMALL_STATE(6215)] = 61322, + [SMALL_STATE(6216)] = 61329, + [SMALL_STATE(6217)] = 61336, + [SMALL_STATE(6218)] = 61343, + [SMALL_STATE(6219)] = 61350, + [SMALL_STATE(6220)] = 61357, + [SMALL_STATE(6221)] = 61364, + [SMALL_STATE(6222)] = 61371, + [SMALL_STATE(6223)] = 61378, + [SMALL_STATE(6224)] = 61385, + [SMALL_STATE(6225)] = 61392, + [SMALL_STATE(6226)] = 61399, + [SMALL_STATE(6227)] = 61406, + [SMALL_STATE(6228)] = 61413, + [SMALL_STATE(6229)] = 61420, + [SMALL_STATE(6230)] = 61427, + [SMALL_STATE(6231)] = 61434, + [SMALL_STATE(6232)] = 61441, + [SMALL_STATE(6233)] = 61448, + [SMALL_STATE(6234)] = 61455, + [SMALL_STATE(6235)] = 61462, + [SMALL_STATE(6236)] = 61469, + [SMALL_STATE(6237)] = 61476, + [SMALL_STATE(6238)] = 61483, + [SMALL_STATE(6239)] = 61490, + [SMALL_STATE(6240)] = 61497, + [SMALL_STATE(6241)] = 61504, + [SMALL_STATE(6242)] = 61511, + [SMALL_STATE(6243)] = 61518, + [SMALL_STATE(6244)] = 61525, + [SMALL_STATE(6245)] = 61532, + [SMALL_STATE(6246)] = 61539, + [SMALL_STATE(6247)] = 61546, + [SMALL_STATE(6248)] = 61553, + [SMALL_STATE(6249)] = 61560, + [SMALL_STATE(6250)] = 61567, + [SMALL_STATE(6251)] = 61574, + [SMALL_STATE(6252)] = 61581, + [SMALL_STATE(6253)] = 61588, + [SMALL_STATE(6254)] = 61595, + [SMALL_STATE(6255)] = 61602, + [SMALL_STATE(6256)] = 61609, + [SMALL_STATE(6257)] = 61616, + [SMALL_STATE(6258)] = 61623, + [SMALL_STATE(6259)] = 61630, + [SMALL_STATE(6260)] = 61637, + [SMALL_STATE(6261)] = 61644, + [SMALL_STATE(6262)] = 61651, + [SMALL_STATE(6263)] = 61658, + [SMALL_STATE(6264)] = 61665, + [SMALL_STATE(6265)] = 61672, + [SMALL_STATE(6266)] = 61679, + [SMALL_STATE(6267)] = 61686, + [SMALL_STATE(6268)] = 61693, + [SMALL_STATE(6269)] = 61700, + [SMALL_STATE(6270)] = 61707, + [SMALL_STATE(6271)] = 61714, + [SMALL_STATE(6272)] = 61721, + [SMALL_STATE(6273)] = 61728, + [SMALL_STATE(6274)] = 61735, + [SMALL_STATE(6275)] = 61742, + [SMALL_STATE(6276)] = 61749, + [SMALL_STATE(6277)] = 61756, + [SMALL_STATE(6278)] = 61763, + [SMALL_STATE(6279)] = 61770, + [SMALL_STATE(6280)] = 61777, + [SMALL_STATE(6281)] = 61784, + [SMALL_STATE(6282)] = 61791, + [SMALL_STATE(6283)] = 61798, + [SMALL_STATE(6284)] = 61805, + [SMALL_STATE(6285)] = 61812, + [SMALL_STATE(6286)] = 61819, + [SMALL_STATE(6287)] = 61826, + [SMALL_STATE(6288)] = 61833, + [SMALL_STATE(6289)] = 61840, + [SMALL_STATE(6290)] = 61847, + [SMALL_STATE(6291)] = 61854, + [SMALL_STATE(6292)] = 61861, + [SMALL_STATE(6293)] = 61868, + [SMALL_STATE(6294)] = 61875, + [SMALL_STATE(6295)] = 61882, + [SMALL_STATE(6296)] = 61889, + [SMALL_STATE(6297)] = 61896, + [SMALL_STATE(6298)] = 61903, + [SMALL_STATE(6299)] = 61910, + [SMALL_STATE(6300)] = 61917, + [SMALL_STATE(6301)] = 61924, + [SMALL_STATE(6302)] = 61931, + [SMALL_STATE(6303)] = 61938, + [SMALL_STATE(6304)] = 61945, + [SMALL_STATE(6305)] = 61952, + [SMALL_STATE(6306)] = 61959, + [SMALL_STATE(6307)] = 61966, + [SMALL_STATE(6308)] = 61973, + [SMALL_STATE(6309)] = 61980, + [SMALL_STATE(6310)] = 61987, + [SMALL_STATE(6311)] = 61994, + [SMALL_STATE(6312)] = 62001, + [SMALL_STATE(6313)] = 62008, + [SMALL_STATE(6314)] = 62015, + [SMALL_STATE(6315)] = 62022, + [SMALL_STATE(6316)] = 62029, + [SMALL_STATE(6317)] = 62036, + [SMALL_STATE(6318)] = 62043, + [SMALL_STATE(6319)] = 62050, + [SMALL_STATE(6320)] = 62057, + [SMALL_STATE(6321)] = 62064, + [SMALL_STATE(6322)] = 62071, + [SMALL_STATE(6323)] = 62078, + [SMALL_STATE(6324)] = 62085, + [SMALL_STATE(6325)] = 62092, + [SMALL_STATE(6326)] = 62099, + [SMALL_STATE(6327)] = 62106, + [SMALL_STATE(6328)] = 62113, + [SMALL_STATE(6329)] = 62120, + [SMALL_STATE(6330)] = 62127, + [SMALL_STATE(6331)] = 62134, + [SMALL_STATE(6332)] = 62141, + [SMALL_STATE(6333)] = 62148, + [SMALL_STATE(6334)] = 62155, + [SMALL_STATE(6335)] = 62162, + [SMALL_STATE(6336)] = 62169, + [SMALL_STATE(6337)] = 62176, + [SMALL_STATE(6338)] = 62183, + [SMALL_STATE(6339)] = 62190, + [SMALL_STATE(6340)] = 62197, + [SMALL_STATE(6341)] = 62204, + [SMALL_STATE(6342)] = 62211, + [SMALL_STATE(6343)] = 62218, + [SMALL_STATE(6344)] = 62225, + [SMALL_STATE(6345)] = 62232, + [SMALL_STATE(6346)] = 62239, + [SMALL_STATE(6347)] = 62246, + [SMALL_STATE(6348)] = 62253, + [SMALL_STATE(6349)] = 62260, + [SMALL_STATE(6350)] = 62267, + [SMALL_STATE(6351)] = 62274, + [SMALL_STATE(6352)] = 62281, + [SMALL_STATE(6353)] = 62288, + [SMALL_STATE(6354)] = 62295, + [SMALL_STATE(6355)] = 62302, + [SMALL_STATE(6356)] = 62309, + [SMALL_STATE(6357)] = 62316, + [SMALL_STATE(6358)] = 62323, + [SMALL_STATE(6359)] = 62330, + [SMALL_STATE(6360)] = 62337, + [SMALL_STATE(6361)] = 62344, + [SMALL_STATE(6362)] = 62351, + [SMALL_STATE(6363)] = 62358, + [SMALL_STATE(6364)] = 62365, + [SMALL_STATE(6365)] = 62372, + [SMALL_STATE(6366)] = 62379, + [SMALL_STATE(6367)] = 62386, + [SMALL_STATE(6368)] = 62393, + [SMALL_STATE(6369)] = 62400, + [SMALL_STATE(6370)] = 62407, + [SMALL_STATE(6371)] = 62414, + [SMALL_STATE(6372)] = 62421, + [SMALL_STATE(6373)] = 62428, + [SMALL_STATE(6374)] = 62435, + [SMALL_STATE(6375)] = 62442, + [SMALL_STATE(6376)] = 62449, + [SMALL_STATE(6377)] = 62456, + [SMALL_STATE(6378)] = 62463, + [SMALL_STATE(6379)] = 62470, + [SMALL_STATE(6380)] = 62477, + [SMALL_STATE(6381)] = 62484, + [SMALL_STATE(6382)] = 62491, + [SMALL_STATE(6383)] = 62498, + [SMALL_STATE(6384)] = 62505, + [SMALL_STATE(6385)] = 62512, + [SMALL_STATE(6386)] = 62519, + [SMALL_STATE(6387)] = 62526, + [SMALL_STATE(6388)] = 62533, + [SMALL_STATE(6389)] = 62540, + [SMALL_STATE(6390)] = 62547, + [SMALL_STATE(6391)] = 62554, + [SMALL_STATE(6392)] = 62561, + [SMALL_STATE(6393)] = 62568, + [SMALL_STATE(6394)] = 62575, + [SMALL_STATE(6395)] = 62582, + [SMALL_STATE(6396)] = 62589, + [SMALL_STATE(6397)] = 62596, + [SMALL_STATE(6398)] = 62603, + [SMALL_STATE(6399)] = 62610, + [SMALL_STATE(6400)] = 62617, + [SMALL_STATE(6401)] = 62624, + [SMALL_STATE(6402)] = 62631, + [SMALL_STATE(6403)] = 62638, + [SMALL_STATE(6404)] = 62645, + [SMALL_STATE(6405)] = 62652, + [SMALL_STATE(6406)] = 62659, + [SMALL_STATE(6407)] = 62666, + [SMALL_STATE(6408)] = 62673, + [SMALL_STATE(6409)] = 62680, + [SMALL_STATE(6410)] = 62687, + [SMALL_STATE(6411)] = 62694, + [SMALL_STATE(6412)] = 62701, + [SMALL_STATE(6413)] = 62708, + [SMALL_STATE(6414)] = 62715, + [SMALL_STATE(6415)] = 62722, + [SMALL_STATE(6416)] = 62729, + [SMALL_STATE(6417)] = 62736, + [SMALL_STATE(6418)] = 62743, + [SMALL_STATE(6419)] = 62750, + [SMALL_STATE(6420)] = 62757, + [SMALL_STATE(6421)] = 62764, + [SMALL_STATE(6422)] = 62771, + [SMALL_STATE(6423)] = 62778, + [SMALL_STATE(6424)] = 62785, + [SMALL_STATE(6425)] = 62792, + [SMALL_STATE(6426)] = 62799, + [SMALL_STATE(6427)] = 62806, + [SMALL_STATE(6428)] = 62813, + [SMALL_STATE(6429)] = 62820, + [SMALL_STATE(6430)] = 62827, + [SMALL_STATE(6431)] = 62834, + [SMALL_STATE(6432)] = 62841, + [SMALL_STATE(6433)] = 62848, + [SMALL_STATE(6434)] = 62855, + [SMALL_STATE(6435)] = 62862, + [SMALL_STATE(6436)] = 62869, + [SMALL_STATE(6437)] = 62876, + [SMALL_STATE(6438)] = 62883, + [SMALL_STATE(6439)] = 62890, + [SMALL_STATE(6440)] = 62897, + [SMALL_STATE(6441)] = 62904, + [SMALL_STATE(6442)] = 62911, + [SMALL_STATE(6443)] = 62918, + [SMALL_STATE(6444)] = 62925, + [SMALL_STATE(6445)] = 62932, + [SMALL_STATE(6446)] = 62939, + [SMALL_STATE(6447)] = 62946, + [SMALL_STATE(6448)] = 62953, + [SMALL_STATE(6449)] = 62960, + [SMALL_STATE(6450)] = 62967, + [SMALL_STATE(6451)] = 62974, + [SMALL_STATE(6452)] = 62981, + [SMALL_STATE(6453)] = 62988, + [SMALL_STATE(6454)] = 62995, + [SMALL_STATE(6455)] = 63002, + [SMALL_STATE(6456)] = 63009, + [SMALL_STATE(6457)] = 63016, + [SMALL_STATE(6458)] = 63023, + [SMALL_STATE(6459)] = 63030, + [SMALL_STATE(6460)] = 63037, + [SMALL_STATE(6461)] = 63044, + [SMALL_STATE(6462)] = 63051, + [SMALL_STATE(6463)] = 63058, + [SMALL_STATE(6464)] = 63065, + [SMALL_STATE(6465)] = 63072, + [SMALL_STATE(6466)] = 63079, + [SMALL_STATE(6467)] = 63086, + [SMALL_STATE(6468)] = 63093, + [SMALL_STATE(6469)] = 63100, + [SMALL_STATE(6470)] = 63107, + [SMALL_STATE(6471)] = 63114, + [SMALL_STATE(6472)] = 63121, + [SMALL_STATE(6473)] = 63128, + [SMALL_STATE(6474)] = 63135, + [SMALL_STATE(6475)] = 63142, + [SMALL_STATE(6476)] = 63149, + [SMALL_STATE(6477)] = 63156, + [SMALL_STATE(6478)] = 63163, + [SMALL_STATE(6479)] = 63170, + [SMALL_STATE(6480)] = 63177, + [SMALL_STATE(6481)] = 63184, + [SMALL_STATE(6482)] = 63191, + [SMALL_STATE(6483)] = 63198, + [SMALL_STATE(6484)] = 63205, + [SMALL_STATE(6485)] = 63212, + [SMALL_STATE(6486)] = 63219, + [SMALL_STATE(6487)] = 63226, + [SMALL_STATE(6488)] = 63233, + [SMALL_STATE(6489)] = 63240, + [SMALL_STATE(6490)] = 63247, + [SMALL_STATE(6491)] = 63254, + [SMALL_STATE(6492)] = 63261, + [SMALL_STATE(6493)] = 63268, + [SMALL_STATE(6494)] = 63275, + [SMALL_STATE(6495)] = 63282, + [SMALL_STATE(6496)] = 63289, + [SMALL_STATE(6497)] = 63296, + [SMALL_STATE(6498)] = 63303, + [SMALL_STATE(6499)] = 63310, + [SMALL_STATE(6500)] = 63317, + [SMALL_STATE(6501)] = 63324, + [SMALL_STATE(6502)] = 63331, + [SMALL_STATE(6503)] = 63338, + [SMALL_STATE(6504)] = 63345, + [SMALL_STATE(6505)] = 63352, + [SMALL_STATE(6506)] = 63359, + [SMALL_STATE(6507)] = 63366, + [SMALL_STATE(6508)] = 63373, + [SMALL_STATE(6509)] = 63380, + [SMALL_STATE(6510)] = 63387, + [SMALL_STATE(6511)] = 63394, + [SMALL_STATE(6512)] = 63401, + [SMALL_STATE(6513)] = 63408, + [SMALL_STATE(6514)] = 63415, + [SMALL_STATE(6515)] = 63422, + [SMALL_STATE(6516)] = 63429, + [SMALL_STATE(6517)] = 63436, + [SMALL_STATE(6518)] = 63443, + [SMALL_STATE(6519)] = 63450, + [SMALL_STATE(6520)] = 63457, + [SMALL_STATE(6521)] = 63464, + [SMALL_STATE(6522)] = 63471, + [SMALL_STATE(6523)] = 63478, + [SMALL_STATE(6524)] = 63485, + [SMALL_STATE(6525)] = 63492, + [SMALL_STATE(6526)] = 63499, + [SMALL_STATE(6527)] = 63506, + [SMALL_STATE(6528)] = 63513, + [SMALL_STATE(6529)] = 63520, + [SMALL_STATE(6530)] = 63527, + [SMALL_STATE(6531)] = 63534, + [SMALL_STATE(6532)] = 63541, + [SMALL_STATE(6533)] = 63548, + [SMALL_STATE(6534)] = 63555, + [SMALL_STATE(6535)] = 63562, + [SMALL_STATE(6536)] = 63569, + [SMALL_STATE(6537)] = 63576, + [SMALL_STATE(6538)] = 63583, + [SMALL_STATE(6539)] = 63590, + [SMALL_STATE(6540)] = 63597, + [SMALL_STATE(6541)] = 63604, + [SMALL_STATE(6542)] = 63611, + [SMALL_STATE(6543)] = 63618, + [SMALL_STATE(6544)] = 63625, + [SMALL_STATE(6545)] = 63632, + [SMALL_STATE(6546)] = 63639, + [SMALL_STATE(6547)] = 63646, + [SMALL_STATE(6548)] = 63653, + [SMALL_STATE(6549)] = 63660, + [SMALL_STATE(6550)] = 63667, + [SMALL_STATE(6551)] = 63674, + [SMALL_STATE(6552)] = 63681, + [SMALL_STATE(6553)] = 63688, + [SMALL_STATE(6554)] = 63695, + [SMALL_STATE(6555)] = 63702, + [SMALL_STATE(6556)] = 63709, + [SMALL_STATE(6557)] = 63716, + [SMALL_STATE(6558)] = 63723, + [SMALL_STATE(6559)] = 63730, + [SMALL_STATE(6560)] = 63737, + [SMALL_STATE(6561)] = 63744, + [SMALL_STATE(6562)] = 63751, + [SMALL_STATE(6563)] = 63758, + [SMALL_STATE(6564)] = 63765, + [SMALL_STATE(6565)] = 63772, + [SMALL_STATE(6566)] = 63779, + [SMALL_STATE(6567)] = 63786, + [SMALL_STATE(6568)] = 63793, + [SMALL_STATE(6569)] = 63800, + [SMALL_STATE(6570)] = 63807, + [SMALL_STATE(6571)] = 63814, + [SMALL_STATE(6572)] = 63821, + [SMALL_STATE(6573)] = 63828, + [SMALL_STATE(6574)] = 63835, + [SMALL_STATE(6575)] = 63842, + [SMALL_STATE(6576)] = 63849, + [SMALL_STATE(6577)] = 63856, + [SMALL_STATE(6578)] = 63863, + [SMALL_STATE(6579)] = 63870, + [SMALL_STATE(6580)] = 63877, + [SMALL_STATE(6581)] = 63884, + [SMALL_STATE(6582)] = 63891, + [SMALL_STATE(6583)] = 63898, + [SMALL_STATE(6584)] = 63905, + [SMALL_STATE(6585)] = 63912, + [SMALL_STATE(6586)] = 63919, + [SMALL_STATE(6587)] = 63926, + [SMALL_STATE(6588)] = 63933, + [SMALL_STATE(6589)] = 63940, + [SMALL_STATE(6590)] = 63947, + [SMALL_STATE(6591)] = 63954, + [SMALL_STATE(6592)] = 63961, + [SMALL_STATE(6593)] = 63968, + [SMALL_STATE(6594)] = 63975, + [SMALL_STATE(6595)] = 63982, + [SMALL_STATE(6596)] = 63989, + [SMALL_STATE(6597)] = 63996, + [SMALL_STATE(6598)] = 64003, + [SMALL_STATE(6599)] = 64010, + [SMALL_STATE(6600)] = 64017, + [SMALL_STATE(6601)] = 64024, + [SMALL_STATE(6602)] = 64031, + [SMALL_STATE(6603)] = 64038, + [SMALL_STATE(6604)] = 64045, + [SMALL_STATE(6605)] = 64052, + [SMALL_STATE(6606)] = 64059, + [SMALL_STATE(6607)] = 64066, + [SMALL_STATE(6608)] = 64073, + [SMALL_STATE(6609)] = 64080, + [SMALL_STATE(6610)] = 64087, + [SMALL_STATE(6611)] = 64094, + [SMALL_STATE(6612)] = 64101, + [SMALL_STATE(6613)] = 64108, + [SMALL_STATE(6614)] = 64115, + [SMALL_STATE(6615)] = 64122, + [SMALL_STATE(6616)] = 64129, + [SMALL_STATE(6617)] = 64136, + [SMALL_STATE(6618)] = 64143, + [SMALL_STATE(6619)] = 64150, + [SMALL_STATE(6620)] = 64157, + [SMALL_STATE(6621)] = 64164, + [SMALL_STATE(6622)] = 64171, + [SMALL_STATE(6623)] = 64178, + [SMALL_STATE(6624)] = 64185, + [SMALL_STATE(6625)] = 64192, + [SMALL_STATE(6626)] = 64199, + [SMALL_STATE(6627)] = 64206, + [SMALL_STATE(6628)] = 64213, + [SMALL_STATE(6629)] = 64220, + [SMALL_STATE(6630)] = 64227, + [SMALL_STATE(6631)] = 64234, + [SMALL_STATE(6632)] = 64241, + [SMALL_STATE(6633)] = 64248, + [SMALL_STATE(6634)] = 64255, + [SMALL_STATE(6635)] = 64262, + [SMALL_STATE(6636)] = 64269, + [SMALL_STATE(6637)] = 64276, + [SMALL_STATE(6638)] = 64283, + [SMALL_STATE(6639)] = 64290, + [SMALL_STATE(6640)] = 64297, + [SMALL_STATE(6641)] = 64304, + [SMALL_STATE(6642)] = 64311, + [SMALL_STATE(6643)] = 64318, + [SMALL_STATE(6644)] = 64325, + [SMALL_STATE(6645)] = 64332, + [SMALL_STATE(6646)] = 64339, + [SMALL_STATE(6647)] = 64346, + [SMALL_STATE(6648)] = 64353, + [SMALL_STATE(6649)] = 64360, + [SMALL_STATE(6650)] = 64367, + [SMALL_STATE(6651)] = 64374, + [SMALL_STATE(6652)] = 64381, + [SMALL_STATE(6653)] = 64388, + [SMALL_STATE(6654)] = 64395, + [SMALL_STATE(6655)] = 64402, + [SMALL_STATE(6656)] = 64409, + [SMALL_STATE(6657)] = 64416, + [SMALL_STATE(6658)] = 64423, + [SMALL_STATE(6659)] = 64430, + [SMALL_STATE(6660)] = 64437, + [SMALL_STATE(6661)] = 64444, + [SMALL_STATE(6662)] = 64451, + [SMALL_STATE(6663)] = 64458, + [SMALL_STATE(6664)] = 64465, + [SMALL_STATE(6665)] = 64472, + [SMALL_STATE(6666)] = 64479, + [SMALL_STATE(6667)] = 64486, + [SMALL_STATE(6668)] = 64493, + [SMALL_STATE(6669)] = 64500, + [SMALL_STATE(6670)] = 64507, + [SMALL_STATE(6671)] = 64514, + [SMALL_STATE(6672)] = 64521, + [SMALL_STATE(6673)] = 64528, + [SMALL_STATE(6674)] = 64535, + [SMALL_STATE(6675)] = 64542, + [SMALL_STATE(6676)] = 64549, + [SMALL_STATE(6677)] = 64556, + [SMALL_STATE(6678)] = 64563, + [SMALL_STATE(6679)] = 64570, + [SMALL_STATE(6680)] = 64577, + [SMALL_STATE(6681)] = 64584, + [SMALL_STATE(6682)] = 64591, + [SMALL_STATE(6683)] = 64598, + [SMALL_STATE(6684)] = 64605, + [SMALL_STATE(6685)] = 64612, + [SMALL_STATE(6686)] = 64619, + [SMALL_STATE(6687)] = 64626, + [SMALL_STATE(6688)] = 64633, + [SMALL_STATE(6689)] = 64640, + [SMALL_STATE(6690)] = 64647, + [SMALL_STATE(6691)] = 64654, + [SMALL_STATE(6692)] = 64661, + [SMALL_STATE(6693)] = 64668, + [SMALL_STATE(6694)] = 64675, + [SMALL_STATE(6695)] = 64682, + [SMALL_STATE(6696)] = 64689, + [SMALL_STATE(6697)] = 64696, + [SMALL_STATE(6698)] = 64703, + [SMALL_STATE(6699)] = 64710, + [SMALL_STATE(6700)] = 64717, + [SMALL_STATE(6701)] = 64724, + [SMALL_STATE(6702)] = 64731, + [SMALL_STATE(6703)] = 64738, + [SMALL_STATE(6704)] = 64745, + [SMALL_STATE(6705)] = 64752, + [SMALL_STATE(6706)] = 64759, + [SMALL_STATE(6707)] = 64766, + [SMALL_STATE(6708)] = 64773, + [SMALL_STATE(6709)] = 64780, + [SMALL_STATE(6710)] = 64787, + [SMALL_STATE(6711)] = 64794, + [SMALL_STATE(6712)] = 64801, + [SMALL_STATE(6713)] = 64808, + [SMALL_STATE(6714)] = 64815, + [SMALL_STATE(6715)] = 64822, + [SMALL_STATE(6716)] = 64829, + [SMALL_STATE(6717)] = 64836, + [SMALL_STATE(6718)] = 64843, + [SMALL_STATE(6719)] = 64850, + [SMALL_STATE(6720)] = 64857, + [SMALL_STATE(6721)] = 64864, + [SMALL_STATE(6722)] = 64871, + [SMALL_STATE(6723)] = 64878, + [SMALL_STATE(6724)] = 64885, + [SMALL_STATE(6725)] = 64892, + [SMALL_STATE(6726)] = 64899, + [SMALL_STATE(6727)] = 64906, + [SMALL_STATE(6728)] = 64913, + [SMALL_STATE(6729)] = 64920, + [SMALL_STATE(6730)] = 64927, + [SMALL_STATE(6731)] = 64934, + [SMALL_STATE(6732)] = 64941, + [SMALL_STATE(6733)] = 64948, + [SMALL_STATE(6734)] = 64955, + [SMALL_STATE(6735)] = 64962, + [SMALL_STATE(6736)] = 64969, + [SMALL_STATE(6737)] = 64976, + [SMALL_STATE(6738)] = 64983, + [SMALL_STATE(6739)] = 64990, + [SMALL_STATE(6740)] = 64997, + [SMALL_STATE(6741)] = 65004, + [SMALL_STATE(6742)] = 65011, + [SMALL_STATE(6743)] = 65018, + [SMALL_STATE(6744)] = 65025, + [SMALL_STATE(6745)] = 65032, + [SMALL_STATE(6746)] = 65039, + [SMALL_STATE(6747)] = 65046, + [SMALL_STATE(6748)] = 65053, + [SMALL_STATE(6749)] = 65060, + [SMALL_STATE(6750)] = 65067, + [SMALL_STATE(6751)] = 65074, + [SMALL_STATE(6752)] = 65081, + [SMALL_STATE(6753)] = 65088, + [SMALL_STATE(6754)] = 65095, + [SMALL_STATE(6755)] = 65102, + [SMALL_STATE(6756)] = 65109, + [SMALL_STATE(6757)] = 65116, + [SMALL_STATE(6758)] = 65123, + [SMALL_STATE(6759)] = 65130, + [SMALL_STATE(6760)] = 65137, + [SMALL_STATE(6761)] = 65144, + [SMALL_STATE(6762)] = 65151, + [SMALL_STATE(6763)] = 65158, + [SMALL_STATE(6764)] = 65165, + [SMALL_STATE(6765)] = 65172, + [SMALL_STATE(6766)] = 65179, + [SMALL_STATE(6767)] = 65186, + [SMALL_STATE(6768)] = 65193, + [SMALL_STATE(6769)] = 65200, + [SMALL_STATE(6770)] = 65207, + [SMALL_STATE(6771)] = 65214, + [SMALL_STATE(6772)] = 65221, + [SMALL_STATE(6773)] = 65228, + [SMALL_STATE(6774)] = 65235, + [SMALL_STATE(6775)] = 65242, + [SMALL_STATE(6776)] = 65249, + [SMALL_STATE(6777)] = 65256, + [SMALL_STATE(6778)] = 65263, + [SMALL_STATE(6779)] = 65270, + [SMALL_STATE(6780)] = 65277, + [SMALL_STATE(6781)] = 65284, + [SMALL_STATE(6782)] = 65291, + [SMALL_STATE(6783)] = 65298, + [SMALL_STATE(6784)] = 65305, + [SMALL_STATE(6785)] = 65312, + [SMALL_STATE(6786)] = 65319, + [SMALL_STATE(6787)] = 65326, + [SMALL_STATE(6788)] = 65333, + [SMALL_STATE(6789)] = 65340, + [SMALL_STATE(6790)] = 65347, + [SMALL_STATE(6791)] = 65354, + [SMALL_STATE(6792)] = 65361, +}; + +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, 0, 0), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6182), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6609), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6490), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6536), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4904), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6563), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6337), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6273), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6748), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6268), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6558), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6145), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6196), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6267), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6733), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6669), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6180), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6108), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6637), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6381), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6448), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6654), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6737), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6659), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6662), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4945), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5999), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6452), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), + [355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 47), + [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1590), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4872), + [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5920), + [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4629), + [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5921), + [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5755), + [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1543), + [380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3491), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3491), + [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3561), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3314), + [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(254), + [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(923), + [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3915), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2676), + [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6376), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2368), + [410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6536), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2923), + [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(57), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2870), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2382), + [428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5924), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(956), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6341), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2983), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4904), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4387), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4934), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5768), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5781), + [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3579), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6180), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5815), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2464), + [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6580), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1662), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3396), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6108), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6109), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6637), + [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3685), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3690), + [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6748), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6268), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6272), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4986), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4930), + [509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1677), + [512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5587), + [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3371), + [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5286), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1677), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1650), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6558), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6642), + [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5932), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6381), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2371), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6267), + [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6644), + [548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6546), + [551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6583), + [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6382), + [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6392), + [560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5743), + [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5396), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5396), + [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3465), + [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5785), + [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6733), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6733), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6013), + [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6174), + [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6740), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2921), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2521), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 16), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 47), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 16), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1600), + [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4875), + [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5988), + [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4635), + [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6045), + [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5832), + [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(364), + [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(924), + [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3931), + [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2671), + [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6448), + [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(75), + [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6090), + [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5723), + [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5788), + [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), + [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6654), + [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5729), + [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2479), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6737), + [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3398), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6659), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6662), + [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5997), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4945), + [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3385), + [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5931), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5999), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6452), + [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5933), + [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6453), + [717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6701), + [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5825), + [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5443), + [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5443), + [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3431), + [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6758), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4869), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6044), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), + [743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5796), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6480), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6747), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6483), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), + [811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1607), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4869), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6044), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4642), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6089), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5796), + [831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(549), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(918), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3940), + [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2672), + [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6480), + [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(79), + [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6121), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5787), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5835), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3583), + [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5958), + [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5795), + [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2482), + [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6747), + [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3409), + [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5991), + [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5994), + [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6051), + [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4949), + [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3388), + [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5998), + [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6052), + [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6483), + [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6000), + [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6484), + [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5952), + [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5746), + [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5456), + [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5456), + [918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3462), + [921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6765), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6277), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6278), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5745), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6179), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6295), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6185), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1601), + [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4865), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6277), + [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4619), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6278), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5722), + [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1543), + [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3491), + [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3491), + [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3561), + [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3314), + [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(752), + [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(917), + [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3971), + [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2675), + [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6490), + [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2368), + [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), + [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6536), + [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2923), + [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2870), + [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2382), + [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6629), + [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), + [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(956), + [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6341), + [1209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2983), + [1212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4904), + [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4387), + [1218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4934), + [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5742), + [1224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5769), + [1227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3554), + [1230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5945), + [1233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5745), + [1236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2487), + [1239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6179), + [1242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1662), + [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3370), + [1248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5965), + [1251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5971), + [1254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6290), + [1257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3685), + [1260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3690), + [1263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6748), + [1266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6268), + [1269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6272), + [1272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4986), + [1275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4948), + [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1677), + [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5587), + [1284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3399), + [1287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5286), + [1290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1677), + [1293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1650), + [1296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6558), + [1299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6292), + [1302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6295), + [1305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6185), + [1308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2371), + [1311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6267), + [1314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6297), + [1317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6546), + [1320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6583), + [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6187), + [1326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5357), + [1329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5357), + [1332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3426), + [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5785), + [1338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6733), + [1341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6733), + [1344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6013), + [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6174), + [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6743), + [1353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2921), + [1356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2521), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), + [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), + [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1636), + [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4881), + [1369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6182), + [1372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4623), + [1375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6609), + [1378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5891), + [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1543), + [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3491), + [1387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3491), + [1390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3561), + [1393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3314), + [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1043), + [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(922), + [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3981), + [1405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2673), + [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6490), + [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2368), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), + [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6536), + [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2923), + [1423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(116), + [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2870), + [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2382), + [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6604), + [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1798), + [1438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(956), + [1441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6341), + [1444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2983), + [1447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4904), + [1450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4388), + [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4934), + [1456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5727), + [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5730), + [1462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3606), + [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6563), + [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5892), + [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2473), + [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6337), + [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4590), + [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3382), + [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6273), + [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6031), + [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6349), + [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3685), + [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3690), + [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6748), + [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6268), + [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6272), + [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4986), + [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4589), + [1513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5587), + [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3391), + [1519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5286), + [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4589), + [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1650), + [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6558), + [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5978), + [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6145), + [1537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6196), + [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2371), + [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6267), + [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6544), + [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6546), + [1552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6583), + [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6627), + [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5785), + [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6733), + [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6733), + [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6013), + [1570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6174), + [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2921), + [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2576), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 7), + [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 7), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 7), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 7), + [1607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1624), + [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [1612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1543), + [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3491), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3491), + [1621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3561), + [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3314), + [1627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(254), + [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1078), + [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3915), + [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2382), + [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6490), + [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2368), + [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3442), + [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6536), + [1651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(57), + [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2870), + [1657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5924), + [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), + [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1083), + [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6341), + [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2983), + [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4904), + [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4387), + [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4934), + [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5768), + [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5781), + [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5815), + [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2464), + [1693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6580), + [1696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1662), + [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3396), + [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6108), + [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6109), + [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6637), + [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3685), + [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3690), + [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6748), + [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6268), + [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6272), + [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4986), + [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4930), + [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1677), + [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5587), + [1738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3436), + [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5286), + [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1677), + [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1650), + [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6558), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2371), + [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6267), + [1761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5396), + [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5396), + [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3465), + [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5785), + [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6733), + [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6733), + [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6013), + [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6174), + [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6740), + [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2921), + [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2533), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [1798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1610), + [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(364), + [1804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1079), + [1807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3931), + [1810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(75), + [1813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6090), + [1816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5723), + [1819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5788), + [1822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5729), + [1825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2479), + [1828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6737), + [1831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3398), + [1834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6659), + [1837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6662), + [1840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5997), + [1843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4945), + [1846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5443), + [1849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5443), + [1852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3431), + [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6758), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1613), + [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(549), + [1868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1080), + [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3940), + [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(79), + [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6121), + [1880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5787), + [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5835), + [1886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5795), + [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2482), + [1892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6747), + [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3409), + [1898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5991), + [1901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5994), + [1904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6051), + [1907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4949), + [1910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5456), + [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5456), + [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3462), + [1919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6765), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6672), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6191), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6192), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), + [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1588), + [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(821), + [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1067), + [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3923), + [1978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(71), + [1981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6046), + [1984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5779), + [1987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5725), + [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5797), + [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2476), + [1996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6672), + [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3379), + [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6191), + [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6192), + [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5929), + [2011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4974), + [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5425), + [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5425), + [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3467), + [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6750), + [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1589), + [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(752), + [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1075), + [2035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3971), + [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6629), + [2044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5742), + [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5769), + [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5745), + [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2487), + [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6179), + [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3370), + [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5965), + [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5971), + [2068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6290), + [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4948), + [2074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5357), + [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5357), + [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3426), + [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6743), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6515), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6520), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4954), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5468), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6378), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), + [2160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1599), + [2163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1160), + [2166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1076), + [2169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3949), + [2172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(84), + [2175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6139), + [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5831), + [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5880), + [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5840), + [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2483), + [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6755), + [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3384), + [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6515), + [2199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6520), + [2202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6092), + [2205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4954), + [2208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5468), + [2211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5468), + [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3439), + [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6768), + [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 43), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 43), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6181), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6774), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6791), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6775), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), + [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 0), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 0), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), + [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), + [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [2322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5203), + [2325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5203), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5546), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), + [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 4, 0, 0), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 4, 0, 0), + [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 0), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 0), + [2358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5169), + [2361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5169), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 0), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 0), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), + [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), + [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5190), + [2383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5190), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), + [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 31), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 33), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 33), + [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 55), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 55), + [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 37), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 37), + [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 74), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 74), + [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 75), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 75), + [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 93), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 93), + [2440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5276), + [2443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5276), + [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 74), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 74), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 113), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 113), + [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 75), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 75), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 122), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 122), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 113), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 113), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, 0, 140), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, 0, 140), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, 0, 149), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, 0, 149), + [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2, 0, 0), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2, 0, 0), + [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 32), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 32), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 32), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 32), + [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [2502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5212), + [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5212), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 35), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 35), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 37), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 37), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 66), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 66), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_asm_block, 4, 0, 0), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_asm_block, 4, 0, 0), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 0), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 0), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 0), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 0), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 102), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 102), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 106), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 106), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_synchronized_statement, 5, 0, 0), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synchronized_statement, 5, 0, 0), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_synchronized_statement, 6, 0, 0), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synchronized_statement, 6, 0, 0), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 0), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 0), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 150), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 150), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 6, 0, 42), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 6, 0, 42), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 38), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 38), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 2, 0, 0), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 2, 0, 0), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 2, 0, 0), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 2, 0, 0), + [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 15), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 15), + [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 25), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 25), + [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 3), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 3), + [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [2609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 85), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 85), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 87), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 87), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_import, 3, 0, 36), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_import, 3, 0, 36), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_forward_declaration, 3, 0, 0), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_forward_declaration, 3, 0, 0), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 3, 0, 0), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 3, 0, 0), + [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, 0, 39), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, 0, 39), + [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 3, 0, 0), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 3, 0, 0), + [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 3, 0, 42), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 3, 0, 42), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 3, 0, 0), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 3, 0, 0), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 3, 0, 42), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 3, 0, 42), + [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 47), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 47), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_implementation, 3, 0, 0), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_implementation, 3, 0, 0), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_implementation, 4, 0, 0), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_implementation, 4, 0, 0), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 0), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 0), + [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_import, 4, 0, 70), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_import, 4, 0, 70), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_linemarker, 4, 0, 71), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_linemarker, 4, 0, 71), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 4, 0, 0), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 4, 0, 0), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_forward_declaration, 4, 0, 0), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_forward_declaration, 4, 0, 0), + [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compatibility_alias_declaration, 4, 0, 72), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compatibility_alias_declaration, 4, 0, 72), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 77), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 77), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 79), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 79), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 4, 0, 84), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 4, 0, 84), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 4, 0, 0), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 4, 0, 0), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 4, 0, 42), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 4, 0, 42), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 4, 0, 84), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 4, 0, 84), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 4, 0, 0), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 4, 0, 0), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 4, 0, 42), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 4, 0, 42), + [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 86), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 86), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 47), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 47), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_implementation, 5, 0, 0), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_implementation, 5, 0, 0), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 16), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 16), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_implementation, 6, 0, 0), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_implementation, 6, 0, 0), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 48), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 48), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 0), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 0), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_linemarker, 5, 0, 110), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_linemarker, 5, 0, 110), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 5, 0, 0), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 5, 0, 0), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, 0, 114), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, 0, 114), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 5, 0, 84), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 5, 0, 84), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 5, 0, 0), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 5, 0, 0), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 5, 0, 42), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 5, 0, 42), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 5, 0, 84), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 5, 0, 84), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 5, 0, 0), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 5, 0, 0), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 5, 0, 42), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 5, 0, 42), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_forward_declaration, 5, 0, 0), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_forward_declaration, 5, 0, 0), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 117), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 117), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 6, 0, 0), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 6, 0, 0), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 0), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 0), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_linemarker, 6, 0, 136), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_linemarker, 6, 0, 136), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 6, 0, 0), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 6, 0, 0), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 6, 0, 84), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 6, 0, 84), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 6, 0, 0), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 6, 0, 0), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 45), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 45), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 6, 0, 84), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 6, 0, 84), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 7, 0, 0), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 7, 0, 0), + [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 7, 0, 84), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 7, 0, 84), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 7, 0, 0), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 7, 0, 0), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 78), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 78), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 5), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 5), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 16), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 16), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 16), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 16), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 17), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 17), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_undef, 3, 0, 16), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_undef, 3, 0, 16), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 46), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 46), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), + [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [2886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5283), + [2889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5283), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), + [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 1), + [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 1), + [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 3), + [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 3), + [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), + [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), + [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), + [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 6, 0, 0), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 6, 0, 0), + [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 5, 0, 0), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 5, 0, 0), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), + [2982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5198), + [2985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5198), + [2988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_field_declarator_repeat1, 1, 0, 0), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 1, 0, 0), + [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 1, 0, 0), + [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), + [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_field_declarator_repeat1, 1, 0, 0), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6618), + [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), + [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6622), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6643), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6607), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6752), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6119), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), + [3138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_implementation_definition, 3, 0, 47), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6120), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), + [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_implementation_definition, 4, 0, 47), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_params, 1, 0, 0), + [3192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3074), + [3195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6119), + [3198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4648), + [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), + [3203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6120), + [3206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5879), + [3209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4876), + [3212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2868), + [3215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3955), + [3218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2382), + [3221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6490), + [3224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2368), + [3227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6572), + [3230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6536), + [3233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2923), + [3236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2870), + [3239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6341), + [3242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2983), + [3245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4904), + [3248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4973), + [3251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4934), + [3254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6558), + [3257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6093), + [3260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2371), + [3263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6267), + [3266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6014), + [3269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5805), + [3272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2921), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6383), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_interface_declaration, 4, 0, 47), + [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_interface_declaration, 3, 0, 47), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_implementation_definition, 1, 0, 0), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6122), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3096), + [3412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6137), + [3415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4631), + [3418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6138), + [3421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5888), + [3424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4860), + [3427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2867), + [3430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3961), + [3433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6122), + [3436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6060), + [3439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_implementation_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5852), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_implementation_definition, 2, 0, 0), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [3494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(2920), + [3497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(6618), + [3500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(4605), + [3503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(6622), + [3506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(5789), + [3509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(4858), + [3512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(2866), + [3515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(3896), + [3518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(2382), + [3521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(6490), + [3524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(2368), + [3527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(6572), + [3530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(6536), + [3533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(2923), + [3536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(2870), + [3539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(6341), + [3542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(2983), + [3545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(4904), + [3548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(4973), + [3551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(4934), + [3554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(6558), + [3557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(6643), + [3560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(2371), + [3563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(6267), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), + [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(6489), + [3571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(5882), + [3574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(2921), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2920), + [3584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(6383), + [3587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4620), + [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), + [3592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(6120), + [3595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5879), + [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4818), + [3601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2868), + [3604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3955), + [3607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2382), + [3610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(6490), + [3613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2368), + [3616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(6572), + [3619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(6536), + [3622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2923), + [3625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2870), + [3628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(6341), + [3631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2983), + [3634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4904), + [3637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4973), + [3640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4934), + [3643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(6558), + [3646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(6093), + [3649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2371), + [3652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(6267), + [3655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3773), + [3658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2921), + [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_protocol_interface_declaration, 2, 0, 0), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_protocol_interface_declaration, 1, 0, 0), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [3677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(2920), + [3680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(6607), + [3683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(4628), + [3686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(6622), + [3689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(5789), + [3692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(4831), + [3695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(2866), + [3698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(3896), + [3701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(2382), + [3704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(6490), + [3707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(2368), + [3710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(6572), + [3713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(6536), + [3716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(2923), + [3719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(2870), + [3722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(6341), + [3725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(2983), + [3728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(4904), + [3731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(4973), + [3734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(4934), + [3737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(6558), + [3740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(6643), + [3743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(2371), + [3746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(6267), + [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), + [3751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(3778), + [3754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(2921), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6694), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4630), + [3783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_interface_declaration, 1, 0, 0), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [3789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(6694), + [3792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4630), + [3795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(6138), + [3798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5888), + [3801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4832), + [3804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2867), + [3807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3961), + [3810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(6122), + [3813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3774), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [3826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_interface_declaration, 2, 0, 0), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1442), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [3955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [3957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6094), + [3960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5178), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [3967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [3975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), + [3981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 52), + [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 52), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), + [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), + [4005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 6), + [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 6), + [4009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 2, 0, 7), + [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 2, 0, 7), + [4013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 6), + [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 6), + [4017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 7), + [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 7), + [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 6), + [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 6), + [4025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 34), + [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 34), + [4029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 4, 0, 0), + [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 4, 0, 0), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat2, 2, 0, 0), + [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat2, 2, 0, 0), + [4039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat2, 2, 0, 0), SHIFT_REPEAT(1456), + [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), + [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), + [4046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), + [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), + [4050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_literal, 7, 0, 0), + [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_literal, 7, 0, 0), + [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), + [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), + [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_available_expression, 4, 0, 0), + [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_available_expression, 4, 0, 0), + [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encode_expression, 4, 0, 0), + [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encode_expression, 4, 0, 0), + [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 147), + [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 147), + [4070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 148), + [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 148), + [4074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [4078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 52), + [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 52), + [4082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), + [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), + [4086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [4090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [4094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), + [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), + [4098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 154), + [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 154), + [4102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 7, 0, 49), + [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 7, 0, 49), + [4106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 155), + [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 155), + [4110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 4, 0, 0), + [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 4, 0, 0), + [4114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), REDUCE(sym_string_literal, 3, 0, 0), + [4117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), REDUCE(sym_string_literal, 3, 0, 0), + [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), + [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), + [4124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 160), + [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 160), + [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 40), + [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 40), + [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), + [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), + [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), + [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_literal, 5, 0, 0), + [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_literal, 5, 0, 0), + [4152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_literal, 4, 0, 0), + [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_literal, 4, 0, 0), + [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 6, 0, 49), + [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 6, 0, 49), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5715), + [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 108), + [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 108), + [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 109), + [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 109), + [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), + [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), + [4188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), REDUCE(sym_string_literal, 4, 0, 0), + [4191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), REDUCE(sym_string_literal, 4, 0, 0), + [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_message_expression, 4, 0, 57), + [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_message_expression, 4, 0, 57), + [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_available_expression, 5, 0, 0), + [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_available_expression, 5, 0, 0), + [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 43), + [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 43), + [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 68), + [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 68), + [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), + [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), + [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), + [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_literal, 6, 0, 0), + [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_literal, 6, 0, 0), + [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 132), + [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 132), + [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 1), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 1), + [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 134), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 134), + [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_literal, 2, 0, 0), + [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_literal, 2, 0, 0), + [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 135), + [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 135), + [4250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 11), + [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 11), + [4254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 6, 0, 0), + [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 6, 0, 0), + [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_literal, 3, 0, 0), + [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_literal, 3, 0, 0), + [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 80), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 80), + [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_literal, 6, 0, 0), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_literal, 6, 0, 0), + [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_literal, 3, 0, 0), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_literal, 3, 0, 0), + [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_available_expression, 6, 0, 0), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_available_expression, 6, 0, 0), + [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_va_arg_expression, 6, 0, 0), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_va_arg_expression, 6, 0, 0), + [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_literal, 4, 0, 0), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_literal, 4, 0, 0), + [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_literal, 5, 0, 0), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_literal, 5, 0, 0), + [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6088), + [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), + [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6326), + [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4906), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 47), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 16), + [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 47), + [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 16), + [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [4372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2920), + [4375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6088), + [4378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4622), + [4381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [4383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6450), + [4386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5749), + [4389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2368), + [4392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2382), + [4395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6490), + [4398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6572), + [4401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6536), + [4404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2870), + [4407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6341), + [4410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2983), + [4413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4906), + [4416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4973), + [4419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4934), + [4422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6558), + [4425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2371), + [4428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6267), + [4431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2921), + [4434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6235), + [4437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_expression, 2, 0, 0), + [4439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), SHIFT(3761), + [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), + [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 34), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 34), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [4474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 115), + [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 115), + [4478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_at_expression, 2, 0, 0), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_at_expression, 2, 0, 0), + [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [4486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 81), + [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 81), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [4502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 2), + [4504] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 2), REDUCE(sym_expression, 1, 0, 0), SHIFT(4103), + [4508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 2), REDUCE(sym_expression, 1, 0, 0), + [4511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3344), + [4514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 2), REDUCE(sym_expression, 1, 0, 0), + [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6311), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), + [4553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6719), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6137), + [4564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4632), + [4567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6719), + [4570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5888), + [4573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6420), + [4576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1608), + [4583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6053), + [4586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5295), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [4599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6618), + [4602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4615), + [4605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6311), + [4608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5789), + [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [4613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6355), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [4634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat2, 2, 0, 0), SHIFT_REPEAT(1632), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [4639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1634), + [4642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5935), + [4645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5242), + [4648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 2), SHIFT(997), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [4797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declarator, 4, 0, 112), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [4801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 4, 0, 112), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [4823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_reference_list, 3, 0, 0), + [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_reference_list, 3, 0, 0), + [4827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_reference_list, 4, 0, 0), + [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_reference_list, 4, 0, 0), + [4831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), SHIFT(3655), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [4836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declarator, 3, 0, 73), + [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 73), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [4882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterized_arguments, 4, 0, 88), + [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterized_arguments, 4, 0, 88), + [4886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterized_arguments, 7, 0, 49), + [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterized_arguments, 7, 0, 49), + [4890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterized_arguments, 5, 0, 49), + [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterized_arguments, 5, 0, 49), + [4894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterized_arguments, 5, 0, 88), + [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterized_arguments, 5, 0, 88), + [4898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterized_arguments, 7, 0, 88), + [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterized_arguments, 7, 0, 88), + [4902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterized_arguments, 3, 0, 0), + [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterized_arguments, 3, 0, 0), + [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterized_arguments, 4, 0, 49), + [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterized_arguments, 4, 0, 49), + [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterized_arguments, 4, 0, 0), + [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterized_arguments, 4, 0, 0), + [4914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, -1, 69), + [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, -1, 69), + [4918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterized_arguments, 8, 0, 88), + [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterized_arguments, 8, 0, 88), + [4922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterized_arguments, 6, 0, 49), + [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterized_arguments, 6, 0, 49), + [4926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2920), + [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), + [4931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2368), + [4934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2382), + [4937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6490), + [4940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6572), + [4943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6536), + [4946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2870), + [4949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6341), + [4952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2983), + [4955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4904), + [4958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4973), + [4961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4934), + [4964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6558), + [4967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2371), + [4970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6267), + [4973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2921), + [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterized_arguments, 6, 0, 88), + [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterized_arguments, 6, 0, 88), + [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [5004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1922), + [5007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6647), + [5010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5286), + [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [5019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), SHIFT(3629), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [5028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implementation_definition, 1, 0, 0), + [5030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), + [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implementation_definition, 1, 0, 0), + [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), + [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [5038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_params, 1, 0, 0), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [5048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_arguments, 4, 0, 49), + [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_arguments, 4, 0, 49), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [5056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_params, 2, 0, 0), + [5058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_params, 2, 0, 0), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), + [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), + [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), + [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6449), + [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6595), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6032), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [5142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_implementation_header, 2, 0, 0), + [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_implementation_header, 2, 0, 0), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [5148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [5152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2368), + [5155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2382), + [5158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6490), + [5161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6572), + [5164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6536), + [5167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6341), + [5170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2371), + [5173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6267), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), + [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), + [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), + [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), + [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), + [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), + [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [5216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_implementation_header, 3, 0, 0), + [5218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_implementation_header, 3, 0, 0), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), + [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), + [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [5248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_interface_header, 2, 0, 0), + [5250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_interface_header, 2, 0, 0), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [5254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_implementation_inheritance, 3, 0, 82), + [5256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_arguments, 3, 0, 49), + [5258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_implementation_inheritance, 3, 0, 82), + [5260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_implementation_header, 4, 0, 0), + [5262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_implementation_header, 4, 0, 0), + [5264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_interface_header, 3, 0, 0), + [5266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_interface_header, 3, 0, 0), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [5270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), SHIFT(3745), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [5291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [5297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_declaration_repeat2, 2, 0, 0), + [5299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_declaration_repeat2, 2, 0, 0), + [5301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_declaration_repeat2, 2, 0, 0), SHIFT_REPEAT(2108), + [5304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 0), + [5306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 0), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [5310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 0), + [5312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 0), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [5316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 14, 0, 0), + [5318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 14, 0, 0), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [5322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 15, 0, 0), + [5324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 15, 0, 0), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [5336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_interface_inheritance, 3, 0, 82), + [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_interface_inheritance, 3, 0, 82), + [5340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, 0, 0), + [5342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, 0, 0), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [5346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 4, 0, 0), + [5348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, 0, 0), + [5350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_declaration_repeat2, 2, 0, 0), SHIFT_REPEAT(2137), + [5353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 0), + [5355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 0), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [5359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 0), + [5361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 0), + [5363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 9, 0, 0), + [5365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 9, 0, 0), + [5367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 0), + [5369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 0), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [5373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 0), + [5375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 0), + [5377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 0), + [5379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 0), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [5383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 0), + [5385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 0), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [5393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, 0, 0), + [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 0), + [5397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 0), + [5399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 0), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [5403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 0), + [5405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 0), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [5409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 11, 0, 0), + [5411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 11, 0, 0), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [5415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 12, 0, 0), + [5417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 12, 0, 0), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [5421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_interface_header, 4, 0, 0), + [5423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_interface_header, 4, 0, 0), + [5425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 13, 0, 0), + [5427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 13, 0, 0), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [5431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 0), + [5433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 0), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [5437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_implementation_definition, 6, 0, 117), + [5439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_implementation_definition, 6, 0, 117), + [5441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instance_variables, 2, 0, 0), + [5443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variables, 2, 0, 0), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [5447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_implementation_definition, 5, 0, 47), + [5449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_implementation_definition, 5, 0, 47), + [5451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instance_variables, 3, 0, 0), + [5453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variables, 3, 0, 0), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [5457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_implementation_definition, 5, 0, 86), + [5459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_implementation_definition, 5, 0, 86), + [5461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implementation_definition, 2, 0, 0), + [5463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implementation_definition, 2, 0, 0), + [5465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 16, 0, 0), + [5467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 16, 0, 0), + [5469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_implementation_definition, 4, 0, 47), + [5471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_implementation_definition, 4, 0, 47), + [5473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_interface_inheritance, 2, 0, 41), + [5475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_interface_inheritance, 2, 0, 41), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [5487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, 0, 0), + [5489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, 0, 0), + [5491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, 0, 0), + [5493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 0), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [5497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_interface_declaration, 6, 0, 117), + [5499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_interface_declaration, 6, 0, 117), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [5505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 2, 0, 0), + [5507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 2, 0, 0), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [5511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_declaration_repeat2, 2, 0, 0), SHIFT_REPEAT(2269), + [5514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, 0, 0), + [5516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, 0, 0), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [5522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_implementation_inheritance, 2, 0, 41), + [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_implementation_inheritance, 2, 0, 41), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [5530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_interface_declaration, 4, 0, 47), + [5532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_interface_declaration, 4, 0, 47), + [5534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, 0, 0), + [5536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, 0, 0), + [5538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, 0, 0), + [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 0), + [5542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_declaration, 6, 0, 156), + [5544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_declaration, 6, 0, 156), + [5546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_declaration_repeat1, 2, 0, 0), + [5548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_interface_declaration, 5, 0, 86), + [5550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_interface_declaration, 5, 0, 86), + [5552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_interface_declaration, 5, 0, 47), + [5554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_interface_declaration, 5, 0, 47), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [5558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instance_variables, 4, 0, 0), + [5560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variables, 4, 0, 0), + [5562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3, 0, 0), + [5564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3, 0, 0), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [5568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [5574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_interface_inheritance, 3, 0, 41), + [5576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_interface_inheritance, 3, 0, 41), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [5580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_interface_inheritance, 2, 0, 0), + [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_interface_inheritance, 2, 0, 0), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [5590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_interface_repeat1, 2, 0, 0), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [5606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_availability_attribute_specifier, 5, 0, 0), + [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability_attribute_specifier, 5, 0, 0), + [5610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_availability_attribute_specifier, 8, 0, 0), + [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability_attribute_specifier, 8, 0, 0), + [5614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_availability_attribute_specifier, 4, 0, 0), + [5616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability_attribute_specifier, 4, 0, 0), + [5618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_availability_attribute_specifier, 7, 0, 0), + [5620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability_attribute_specifier, 7, 0, 0), + [5622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_availability_attribute_specifier, 1, 0, 0), + [5624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability_attribute_specifier, 1, 0, 0), + [5626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_availability_attribute_specifier, 6, 0, 0), + [5628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability_attribute_specifier, 6, 0, 0), + [5630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [5632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [5634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [5636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [5654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(4299), + [5657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(1543), + [5660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3491), + [5663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3491), + [5666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3561), + [5669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3314), + [5672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(254), + [5675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3732), + [5678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3460), + [5681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(57), + [5684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5924), + [5687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(1662), + [5690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3737), + [5693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5768), + [5696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5781), + [5699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3579), + [5702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6180), + [5705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5815), + [5708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(2464), + [5711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6580), + [5714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3396), + [5717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6108), + [5720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6109), + [5723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6637), + [5726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3685), + [5729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3690), + [5732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6748), + [5735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6268), + [5738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6272), + [5741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(4986), + [5744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(4930), + [5747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(1677), + [5750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5587), + [5753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3436), + [5756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5286), + [5759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(1677), + [5762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(1650), + [5765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5396), + [5768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5396), + [5771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3465), + [5774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5785), + [5777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6733), + [5780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6733), + [5783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6013), + [5786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6174), + [5789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6740), + [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), + [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [5806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(4302), + [5809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(364), + [5812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(75), + [5815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6090), + [5818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5723), + [5821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5788), + [5824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3581), + [5827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6654), + [5830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5729), + [5833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(2479), + [5836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6737), + [5839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3398), + [5842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6659), + [5845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6662), + [5848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5997), + [5851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(4945), + [5854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5443), + [5857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5443), + [5860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3431), + [5863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6758), + [5866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(4309), + [5869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(752), + [5872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(116), + [5875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6604), + [5878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5874), + [5881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5730), + [5884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3574), + [5887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6084), + [5890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5885), + [5893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(2473), + [5896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6378), + [5899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3382), + [5902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6273), + [5905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6031), + [5908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6349), + [5911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(4948), + [5914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5503), + [5917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5503), + [5920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3426), + [5923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6591), + [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), + [5928] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 2), SHIFT(4123), + [5932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 2), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [5936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 2), + [5939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), + [5941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 2), + [5944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 2), SHIFT(3828), + [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), + [5949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(4307), + [5952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(821), + [5955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(71), + [5958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6046), + [5961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5779), + [5964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5725), + [5967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3606), + [5970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6563), + [5973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5797), + [5976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(2476), + [5979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6672), + [5982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3379), + [5985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6191), + [5988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6192), + [5991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5929), + [5994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(4974), + [5997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5425), + [6000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5425), + [6003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3467), + [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6750), + [6009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(4298), + [6012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(549), + [6015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(79), + [6018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6121), + [6021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5787), + [6024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5835), + [6027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3583), + [6030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5958), + [6033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5795), + [6036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(2482), + [6039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6747), + [6042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3409), + [6045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5991), + [6048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5994), + [6051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6051), + [6054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(4949), + [6057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5456), + [6060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5456), + [6063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3462), + [6066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6765), + [6069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(4306), + [6072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(948), + [6075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5727), + [6078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5892), + [6081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6337), + [6084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(4967), + [6087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5348), + [6090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5348), + [6093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3463), + [6096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6682), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [6101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(4305), + [6104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(49), + [6107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6629), + [6110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5742), + [6113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5769), + [6116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3554), + [6119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5945), + [6122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5745), + [6125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(2487), + [6128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6179), + [6131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3370), + [6134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5965), + [6137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5971), + [6140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6290), + [6143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5357), + [6146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5357), + [6149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6743), + [6152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(4304), + [6155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(1160), + [6158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(84), + [6161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6139), + [6164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5831), + [6167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5880), + [6170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5840), + [6173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(2483), + [6176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6755), + [6179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3384), + [6182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6515), + [6185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6520), + [6188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6092), + [6191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(4954), + [6194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5468), + [6197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(5468), + [6200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(3439), + [6203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT(6768), + [6206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameter, 3, 0, 116), + [6208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameter, 3, 0, 116), + [6210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameter, 2, 0, 83), + [6212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameter, 2, 0, 83), + [6214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_method_parameter, 2, 0, 0), REDUCE(sym_keyword_declarator, 3, 0, 0), + [6217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_method_parameter, 2, 0, 0), REDUCE(sym_keyword_declarator, 3, 0, 0), + [6220] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_method_parameter, 2, 0, 0), REDUCE(sym_keyword_declarator, 3, 0, 0), SHIFT(2368), + [6224] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_method_parameter, 2, 0, 0), REDUCE(sym_keyword_declarator, 3, 0, 0), SHIFT(2382), + [6228] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_method_parameter, 2, 0, 0), REDUCE(sym_keyword_declarator, 3, 0, 0), SHIFT(6490), + [6232] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_method_parameter, 2, 0, 0), REDUCE(sym_keyword_declarator, 3, 0, 0), SHIFT(6572), + [6236] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_method_parameter, 2, 0, 0), REDUCE(sym_keyword_declarator, 3, 0, 0), SHIFT(6536), + [6240] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_method_parameter, 2, 0, 0), REDUCE(sym_keyword_declarator, 3, 0, 0), SHIFT(6341), + [6244] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_method_parameter, 2, 0, 0), REDUCE(sym_keyword_declarator, 3, 0, 0), SHIFT(2371), + [6248] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_method_parameter, 2, 0, 0), REDUCE(sym_keyword_declarator, 3, 0, 0), SHIFT(6267), + [6252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameter, 5, 0, 0), + [6254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameter, 5, 0, 0), + [6256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameter, 4, 0, 0), + [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameter, 4, 0, 0), + [6260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keyword_declarator, 3, 0, 0), REDUCE(sym_method_parameter, 3, 0, 0), + [6263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_keyword_declarator, 3, 0, 0), REDUCE(sym_method_parameter, 3, 0, 0), + [6266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameter, 3, 0, 0), + [6268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameter, 3, 0, 0), + [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameter, 2, 0, 0), + [6272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameter, 2, 0, 0), + [6274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_method_parameter, 3, 0, 0), REDUCE(sym_keyword_declarator, 4, 0, 0), + [6277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_method_parameter, 3, 0, 0), REDUCE(sym_keyword_declarator, 4, 0, 0), + [6280] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_method_parameter, 3, 0, 0), REDUCE(sym_keyword_declarator, 4, 0, 0), SHIFT(2368), + [6284] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_method_parameter, 3, 0, 0), REDUCE(sym_keyword_declarator, 4, 0, 0), SHIFT(2382), + [6288] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_method_parameter, 3, 0, 0), REDUCE(sym_keyword_declarator, 4, 0, 0), SHIFT(6490), + [6292] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_method_parameter, 3, 0, 0), REDUCE(sym_keyword_declarator, 4, 0, 0), SHIFT(6572), + [6296] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_method_parameter, 3, 0, 0), REDUCE(sym_keyword_declarator, 4, 0, 0), SHIFT(6536), + [6300] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_method_parameter, 3, 0, 0), REDUCE(sym_keyword_declarator, 4, 0, 0), SHIFT(6341), + [6304] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_method_parameter, 3, 0, 0), REDUCE(sym_keyword_declarator, 4, 0, 0), SHIFT(2371), + [6308] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_method_parameter, 3, 0, 0), REDUCE(sym_keyword_declarator, 4, 0, 0), SHIFT(6267), + [6312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameter, 5, 0, 137), + [6314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameter, 5, 0, 137), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [6344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [6346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [6348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2368), + [6351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6341), + [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [6356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keyword_declarator, 2, 0, 0), REDUCE(sym_method_parameter, 2, 0, 0), + [6359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_keyword_declarator, 2, 0, 0), REDUCE(sym_method_parameter, 2, 0, 0), + [6362] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_keyword_declarator, 2, 0, 0), REDUCE(sym_method_parameter, 2, 0, 0), SHIFT(2368), + [6366] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_keyword_declarator, 2, 0, 0), REDUCE(sym_method_parameter, 2, 0, 0), SHIFT(2382), + [6370] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_keyword_declarator, 2, 0, 0), REDUCE(sym_method_parameter, 2, 0, 0), SHIFT(6490), + [6374] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_keyword_declarator, 2, 0, 0), REDUCE(sym_method_parameter, 2, 0, 0), SHIFT(6572), + [6378] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_keyword_declarator, 2, 0, 0), REDUCE(sym_method_parameter, 2, 0, 0), SHIFT(6536), + [6382] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_keyword_declarator, 2, 0, 0), REDUCE(sym_method_parameter, 2, 0, 0), SHIFT(6341), + [6386] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_keyword_declarator, 2, 0, 0), REDUCE(sym_method_parameter, 2, 0, 0), SHIFT(2371), + [6390] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_keyword_declarator, 2, 0, 0), REDUCE(sym_method_parameter, 2, 0, 0), SHIFT(6267), + [6394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameter, 4, 0, 116), + [6396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameter, 4, 0, 116), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6377), + [6414] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_keyword_declarator, 3, 0, 0), REDUCE(sym_method_parameter, 3, 0, 0), SHIFT(2368), + [6418] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_keyword_declarator, 3, 0, 0), REDUCE(sym_method_parameter, 3, 0, 0), SHIFT(2382), + [6422] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_keyword_declarator, 3, 0, 0), REDUCE(sym_method_parameter, 3, 0, 0), SHIFT(6490), + [6426] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_keyword_declarator, 3, 0, 0), REDUCE(sym_method_parameter, 3, 0, 0), SHIFT(6572), + [6430] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_keyword_declarator, 3, 0, 0), REDUCE(sym_method_parameter, 3, 0, 0), SHIFT(6536), + [6434] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_keyword_declarator, 3, 0, 0), REDUCE(sym_method_parameter, 3, 0, 0), SHIFT(6341), + [6438] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_keyword_declarator, 3, 0, 0), REDUCE(sym_method_parameter, 3, 0, 0), SHIFT(2371), + [6442] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_keyword_declarator, 3, 0, 0), REDUCE(sym_method_parameter, 3, 0, 0), SHIFT(6267), + [6446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedefed_specifier, 1, 0, 0), + [6448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedefed_specifier, 1, 0, 0), + [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6432), + [6452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameter, 3, 0, 83), + [6454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameter, 3, 0, 83), + [6456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameter, 4, 0, 137), + [6458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameter, 4, 0, 137), + [6460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), SHIFT(3611), + [6463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 95), + [6465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 95), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4941), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [6539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [6575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 0, 22), + [6577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 0, 22), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [6611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 37), + [6613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 37), + [6615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 143), + [6617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 143), + [6619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 75), + [6621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 75), + [6623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 7, 0, 143), + [6625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 7, 0, 143), + [6627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atdef_field, 4, 0, 0), + [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atdef_field, 4, 0, 0), + [6631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 37), + [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 37), + [6635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 75), + [6637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 75), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [6641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declarator, 3, 0, 0), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [6651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declarator, 3, 0, 0), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [6655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 20), + [6657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 20), + [6659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 47), + [6661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 47), + [6663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 48), + [6665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 48), + [6667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 86), + [6669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 86), + [6671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 20), + [6673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 20), + [6675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 47), + [6677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 47), + [6679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 87), + [6681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 87), + [6683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 37), + [6685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 37), + [6687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 143), + [6689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 143), + [6691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declarator, 2, 0, 0), + [6693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declarator, 2, 0, 0), + [6695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 75), + [6697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 75), + [6699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 16), + [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 16), + [6703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 20), + [6705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 20), + [6707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 117), + [6709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 117), + [6711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 37), + [6713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 37), + [6715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), SHIFT(3662), + [6718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 16), + [6720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 16), + [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6299), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [6726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), + [6728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [6742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_method_parameter, 2, 0, 37), + [6744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_method_parameter, 2, 0, 37), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [6752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), + [6754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [6756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [6758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [6760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [6763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [6766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), + [6768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [6770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [6773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [6776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5830), + [6779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_definition_repeat1, 2, 0, 0), + [6781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 2, 0, 0), + [6783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3023), + [6786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, 0, 22), + [6788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, 0, 22), + [6790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), + [6792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), + [6794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6490), + [6797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, 0, 22), + [6799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, 0, 22), + [6801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_method_parameter_repeat1, 2, 0, 21), + [6803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_c_method_parameter_repeat1, 2, 0, 21), + [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [6819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 5, 1, 120), + [6821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 120), + [6823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 2, 1, 21), + [6825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 21), + [6827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_pointer_declarator, 2, 1, 21), + [6829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_pointer_declarator, 2, 1, 21), + [6831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 3, 1, 54), + [6833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 54), + [6835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_pointer_declarator, 3, 1, 54), + [6837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_pointer_declarator, 3, 1, 54), + [6839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 4, 1, 91), + [6841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 91), + [6843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keyword_selector_repeat1, 2, 0, 0), SHIFT_REPEAT(6780), + [6846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_keyword_selector_repeat1, 2, 0, 0), + [6848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_keyword_selector_repeat1, 2, 0, 0), + [6850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_keyword_selector_repeat1, 2, 0, 0), SHIFT_REPEAT(5496), + [6853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 121), + [6855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 121), + [6857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 24), + [6859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 24), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), + [6877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [6879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [6881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 92), + [6883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 92), + [6885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 24), + [6887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 24), + [6889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [6891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [6893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_method_parameter, 3, 0, 75), + [6895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_method_parameter, 3, 0, 75), + [6897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_method_parameter_repeat1, 2, 0, 76), + [6899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_method_parameter_repeat1, 2, 0, 76), SHIFT_REPEAT(4834), + [6902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_c_method_parameter_repeat1, 2, 0, 76), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [6916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword_declarator, 3, 0, 0), + [6918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_declarator, 3, 0, 0), + [6920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword_declarator, 2, 0, 0), + [6922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_declarator, 2, 0, 0), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [6930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 4, 0, 0), + [6932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_definition_repeat1, 4, 0, 0), + [6934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat2, 2, 0, 0), + [6936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(2069), + [6939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_definition_repeat2, 2, 0, 0), + [6941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword_declarator, 4, 0, 0), + [6943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_declarator, 4, 0, 0), + [6945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 3, 0, 0), + [6947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_definition_repeat1, 3, 0, 0), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [6969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2987), + [6972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), + [6974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2368), + [6977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), + [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [6981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(6341), + [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [6986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2992), + [6989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [6991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2368), + [6994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [6998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(6341), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [7007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 13), + [7009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 13), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [7015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 4), + [7017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 4), + [7019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 13), + [7021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 13), + [7023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [7025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2368), + [7028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2382), + [7031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6490), + [7034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6210), + [7037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6536), + [7040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6341), + [7043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2371), + [7046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6267), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [7055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), + [7057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), + [7059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 4), + [7061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 4), + [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [7067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, 0, 22), + [7069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, 0, 22), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [7073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 29), + [7075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 29), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [7097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 8), + [7099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 8), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [7105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [7107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [7109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(3015), + [7112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(3016), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [7119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 29), + [7121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 29), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [7125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 63), + [7127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 63), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [7133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), + [7135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [7139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 63), + [7141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 63), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [7155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 8), + [7157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 8), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [7165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 2), SHIFT(4103), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [7170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_specifier, 2, 0, 2), + [7172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_specifier, 2, 0, 2), + [7174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [7176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [7178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_generic_specifier_repeat1, 2, 0, 0), + [7180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_specifier_repeat1, 2, 0, 0), + [7182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3344), + [7185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_generic_specifier_repeat1, 4, 0, 0), + [7187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_specifier_repeat1, 4, 0, 0), + [7189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 9), + [7191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 9), + [7193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 64), + [7195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 64), + [7197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_generic_specifier_repeat1, 3, 0, 0), + [7199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_specifier_repeat1, 3, 0, 0), + [7201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [7203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [7205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2930), + [7208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [7216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 101), + [7218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 101), + [7220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, 0, 101), + [7222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, 0, 101), + [7224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 9), + [7226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 9), + [7228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 62), + [7230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 62), + [7232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 28), + [7234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 28), + [7236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 64), + [7238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 64), + [7240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 30), + [7242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 30), + [7244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 28), + [7246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 28), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [7252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 30), + [7254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 30), + [7256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 62), + [7258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 62), + [7260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [7263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [7266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 101), + [7268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 101), + [7270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 8), + [7272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 8), + [7274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeof_specifier, 4, 0, 0), + [7276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeof_specifier, 4, 0, 0), + [7278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 9), + [7280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 9), + [7282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [7284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [7286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 8), + [7288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 8), + [7290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 9), + [7292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 9), + [7294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 8), + [7296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 8), + [7298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 8, 0, 141), + [7300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 8, 0, 141), + [7302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 9), + [7304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 9), + [7306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), + [7308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), + [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [7312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 8, 0, 142), + [7314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 8, 0, 142), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [7318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [7320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [7322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 4), + [7324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 4), + [7326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedefed_specifier, 2, 0, 0), + [7328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedefed_specifier, 2, 0, 0), + [7330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 28), + [7332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 28), + [7334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 29), + [7336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 29), + [7338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 43), + [7340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, 0, 43), + [7342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 44), + [7344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, -1, 44), + [7346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 30), + [7348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 30), + [7350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 13), + [7352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 13), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [7356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [7358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [7360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 28), + [7362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 28), + [7364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 29), + [7366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 29), + [7368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 2), SHIFT(5683), + [7371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 2), SHIFT(2878), + [7374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_specifier, 3, 0, 0), + [7376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_specifier, 3, 0, 0), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [7380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 14), + [7382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 14), + [7384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 101), + [7386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 101), + [7388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 30), + [7390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 30), + [7392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [7394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [7396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 59), + [7398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 59), + [7400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 60), + [7402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 60), + [7404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 28), + [7406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 28), + [7408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 61), + [7410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 61), + [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [7414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 6, 0, 101), + [7416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 6, 0, 101), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [7420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 43), + [7422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 43), + [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [7426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 44), + [7428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 44), + [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [7432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), + [7434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), + [7436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 62), + [7438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 62), + [7440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 63), + [7442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 63), + [7444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 13), + [7446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 13), + [7448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [7450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 14), + [7452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 14), + [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [7456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 64), + [7458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 64), + [7460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 30), + [7462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 30), + [7464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [7466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [7468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 6, 0, 0), + [7470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 6, 0, 0), + [7472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 7, 0, 123), + [7474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 7, 0, 123), + [7476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 7, 0, 124), + [7478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 7, 0, 124), + [7480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 7, 0, 125), + [7482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 7, 0, 125), + [7484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 7, 0, 126), + [7486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 7, 0, 126), + [7488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 62), + [7490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 62), + [7492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 63), + [7494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 63), + [7496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 64), + [7498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 64), + [7500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, 0, 62), + [7502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, 0, 62), + [7504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, 0, 63), + [7506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, 0, 63), + [7508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 97), + [7510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 97), + [7512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [7524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, 0, 64), + [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, 0, 64), + [7528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 98), + [7530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 98), + [7532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 7, 0, 127), + [7534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 7, 0, 127), + [7536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_specifier, 4, 0, 0), + [7538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_specifier, 4, 0, 0), + [7540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 99), + [7542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 99), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [7546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 100), + [7548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 100), + [7550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [7552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [7554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [7556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [7558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5, 0, 0), + [7560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5, 0, 0), + [7562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 96), + [7564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 96), + [7566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_specifier, 5, 0, 0), + [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_specifier, 5, 0, 0), + [7570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 29), + [7572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 29), + [7574] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 2), SHIFT(4103), + [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), + [7584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), + [7586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6507), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), + [7590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6177), + [7592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [7594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), + [7596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [7598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), + [7600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6186), + [7602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [7608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [7610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 2), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [7615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [7631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 60), + [7633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 60), + [7635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 60), SHIFT(6490), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [7640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 61), + [7642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 61), + [7644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 61), SHIFT(6490), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [7649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 24), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [7655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [7657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [7659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 99), + [7661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 99), + [7663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 99), SHIFT(6490), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [7668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 100), + [7670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 100), + [7672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 100), SHIFT(6490), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [7679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6490), + [7682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 1, 0, 0), + [7684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 1, 0, 0), + [7686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 126), + [7688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 126), + [7690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 126), SHIFT(6490), + [7693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 127), + [7695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 127), + [7697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 127), SHIFT(6490), + [7700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), + [7702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), + [7704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(6490), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [7717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 29), + [7719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 29), + [7721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 29), SHIFT(6490), + [7724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 29), SHIFT(5824), + [7727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 37), + [7729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 2), SHIFT(4101), + [7732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [7734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [7736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [7738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(5719), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [7743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [7745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_field_declarator_repeat1, 2, 0, 0), + [7747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_field_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2368), + [7750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_field_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6490), + [7753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_field_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6490), + [7756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_field_declarator_repeat1, 2, 0, 0), + [7758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_field_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2368), + [7761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_field_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6341), + [7764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 63), + [7766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 63), + [7768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 63), SHIFT(6490), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [7773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 2), SHIFT(4102), + [7776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [7778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 63), SHIFT(5849), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [7785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 59), + [7787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 59), + [7789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 59), SHIFT(6490), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [7802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 56), + [7804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 62), + [7806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 62), + [7808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 62), SHIFT(6490), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [7821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 64), + [7823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 64), + [7825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 64), SHIFT(6490), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [7946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 96), + [7948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 96), + [7950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 96), SHIFT(6490), + [7953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 97), + [7955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 97), + [7957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 97), SHIFT(6490), + [7960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 98), + [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 98), + [7964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 98), SHIFT(6490), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [7971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 101), + [7973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 101), + [7975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 101), SHIFT(6490), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [7982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 28), + [7984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 28), + [7986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 28), SHIFT(6490), + [7989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 30), + [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 30), + [7993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 30), SHIFT(6490), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), + [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6527), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [8004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 123), + [8006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 123), + [8008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 123), SHIFT(6490), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [8015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 7, 0, 141), + [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 7, 0, 141), + [8019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 7, 0, 141), SHIFT(6490), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [8030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 7, 0, 142), + [8032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 7, 0, 142), + [8034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 7, 0, 142), SHIFT(6490), + [8037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 9), + [8039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 9), + [8041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 9), SHIFT(6490), + [8044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 124), + [8046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 124), + [8048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 124), SHIFT(6490), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [8055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 125), + [8057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 125), + [8059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 125), SHIFT(6490), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [8072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, 0, 0), + [8074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), + [8076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6176), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6178), + [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), + [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), + [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4913), + [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6184), + [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [8098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6527), + [8101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6527), + [8104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 21), + [8106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 21), + [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), + [8110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3252), + [8113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_declaration_repeat1, 2, 0, 0), + [8115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_declaration_repeat1, 2, 0, 0), + [8117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3032), + [8120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_declaration_repeat1, 1, 0, 0), + [8122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_declaration_repeat1, 1, 0, 0), SHIFT_REPEAT(3250), + [8125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_declaration_repeat1, 1, 0, 0), + [8127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_declaration_repeat1, 1, 0, 0), SHIFT_REPEAT(6490), + [8130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 22), + [8132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 22), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [8136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(6490), + [8139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3027), + [8142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 3, 0, 22), + [8144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 3, 0, 22), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [8148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_declaration_repeat1, 3, 0, 0), + [8150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_declaration_repeat1, 3, 0, 0), + [8152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_declaration_repeat1, 3, 0, 0), SHIFT_REPEAT(6490), + [8155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_declaration_repeat1, 3, 0, 0), SHIFT_REPEAT(3027), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [8168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 26), + [8170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 26), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [8174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_type, 5, 0, 0), + [8176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_type, 5, 0, 0), + [8178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_declaration_repeat1, 4, 0, 0), + [8180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_declaration_repeat1, 4, 0, 0), + [8182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_declaration_repeat1, 4, 0, 0), SHIFT_REPEAT(3027), + [8185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_type, 4, 0, 0), + [8187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_type, 4, 0, 0), + [8189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declarator, 1, 0, 0), + [8191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declarator, 1, 0, 0), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [8195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_type, 3, 0, 0), + [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_type, 3, 0, 0), + [8199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 120), + [8201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 5, 1, 120), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [8207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_name_repeat1, 1, 0, 0), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), + [8217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_pointer_type_declarator, 2, 1, 21), + [8219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_pointer_type_declarator, 2, 1, 21), + [8221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 24), + [8223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 24), + [8225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 121), + [8227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 121), + [8229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), + [8231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), + [8233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [8235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [8237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 91), + [8239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 4, 1, 91), + [8241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_declaration_repeat1, 5, 0, 0), + [8243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_declaration_repeat1, 5, 0, 0), + [8245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 92), + [8247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 92), + [8249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 24), + [8251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 24), + [8253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 54), + [8255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 3, 1, 54), + [8257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [8259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [8261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 2), + [8263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 2), + [8265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_pointer_type_declarator, 3, 1, 54), + [8267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_pointer_type_declarator, 3, 1, 54), + [8269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 21), + [8271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 2, 1, 21), + [8273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 23), + [8275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 23), + [8277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 21), + [8279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 21), + [8281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_declaration_repeat2, 2, 0, 0), SHIFT_REPEAT(4816), + [8284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_declaration_repeat2, 2, 0, 0), + [8286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_struct_declaration_repeat2, 2, 0, 0), + [8288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 76), SHIFT_REPEAT(4251), + [8291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 76), + [8293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 76), + [8295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [8297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), + [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [8305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [8307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [8311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_method_parameter_repeat1, 2, 0, 76), SHIFT_REPEAT(4824), + [8314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_instance_variables_repeat1, 2, 0, 0), SHIFT_REPEAT(4106), + [8317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_instance_variables_repeat1, 2, 0, 0), SHIFT_REPEAT(4633), + [8320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_instance_variables_repeat1, 2, 0, 0), SHIFT_REPEAT(5989), + [8323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_instance_variables_repeat1, 2, 0, 0), SHIFT_REPEAT(3982), + [8326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_instance_variables_repeat1, 2, 0, 0), SHIFT_REPEAT(6176), + [8329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_instance_variables_repeat1, 2, 0, 0), SHIFT_REPEAT(6596), + [8332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_instance_variables_repeat1, 2, 0, 0), + [8334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_instance_variables_repeat1, 2, 0, 0), SHIFT_REPEAT(3792), + [8337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_instance_variables_repeat1, 2, 0, 0), SHIFT_REPEAT(4133), + [8340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_instance_variables_repeat1, 2, 0, 0), SHIFT_REPEAT(6178), + [8343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_instance_variables_repeat1, 2, 0, 0), SHIFT_REPEAT(3847), + [8346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_instance_variables_repeat1, 2, 0, 0), SHIFT_REPEAT(4898), + [8349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_instance_variables_repeat1, 2, 0, 0), SHIFT_REPEAT(4968), + [8352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_instance_variables_repeat1, 2, 0, 0), SHIFT_REPEAT(4913), + [8355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_instance_variables_repeat1, 2, 0, 0), SHIFT_REPEAT(3934), + [8358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_instance_variables_repeat1, 2, 0, 0), SHIFT_REPEAT(6184), + [8361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_instance_variables_repeat1, 2, 0, 0), SHIFT_REPEAT(4086), + [8364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_instance_variables_repeat1, 2, 0, 0), SHIFT_REPEAT(3827), + [8367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [8375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6451), + [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [8383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 76), SHIFT_REPEAT(4813), + [8386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 76), + [8388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 76), + [8390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(2093), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [8399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3818), + [8402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_name_repeat1, 2, 0, 0), + [8404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2829), + [8407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2560), + [8410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_name_repeat1, 2, 0, 0), SHIFT_REPEAT(4236), + [8413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3982), + [8416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6176), + [8419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5715), + [8422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3792), + [8425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6178), + [8428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3847), + [8431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_name_repeat1, 2, 0, 0), SHIFT_REPEAT(4903), + [8434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_name_repeat1, 2, 0, 0), SHIFT_REPEAT(4968), + [8437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_name_repeat1, 2, 0, 0), SHIFT_REPEAT(4913), + [8440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3934), + [8443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6184), + [8446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3827), + [8449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 111), + [8451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 111), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [8455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), + [8457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5487), + [8459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_name_repeat1, 2, 0, 0), SHIFT_REPEAT(4900), + [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [8464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), + [8482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [8484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [8486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(3575), + [8489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(3349), + [8492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6377), + [8495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [8501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [8509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [8515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [8517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [8521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 131), + [8523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 47), + [8525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 105), + [8527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [8533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [8535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [8539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 67), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [8563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6673), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [8567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [8579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [8581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [8591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [8599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [8603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [8605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [8611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [8615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [8621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [8627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6576), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [8641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6346), + [8643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [8647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 0), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [8653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [8669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 67), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [8719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3575), + [8722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6377), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [8781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 1, 0, 0), REDUCE(aux_sym_array_declarator_repeat1, 1, 0, 0), + [8784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 1, 0, 0), REDUCE(aux_sym_array_declarator_repeat1, 1, 0, 0), + [8787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 1, 0, 0), + [8789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 1, 0, 0), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [8797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [8799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [8801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [8803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4106), + [8806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_declaration_repeat1, 2, 0, 0), + [8808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3982), + [8811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_struct_declaration_repeat1, 2, 0, 0), + [8813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3792), + [8816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(6178), + [8819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3847), + [8822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4898), + [8825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4968), + [8828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4913), + [8831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3934), + [8834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(6184), + [8837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3827), + [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), + [8842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3836), + [8845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3982), + [8848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3832), + [8851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(6178), + [8854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3835), + [8857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3846), + [8860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3982), + [8863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3848), + [8866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(6178), + [8869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3845), + [8872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3982), + [8875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6178), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [8880] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 2), SHIFT(3338), + [8884] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 2), SHIFT(3828), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [8890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3338), + [8893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6176), + [8896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 4), SHIFT(3824), + [8899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3824), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), + [8904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), SHIFT(3824), + [8907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 44), SHIFT(3824), + [8910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 63), SHIFT(6176), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [8917] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(3824), + [8921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 29), SHIFT(6176), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), + [8926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 13), SHIFT(3843), + [8929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 14), SHIFT(3844), + [8932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(6176), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), + [8937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 13), SHIFT(3824), + [8940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 14), SHIFT(3824), + [8943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 43), SHIFT(3849), + [8946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 44), SHIFT(3829), + [8949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(3822), + [8952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), SHIFT(3824), + [8955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 43), SHIFT(3824), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [8962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 60), SHIFT(6176), + [8965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 64), SHIFT(6176), + [8968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 7, 0, 141), SHIFT(6176), + [8971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 7, 0, 142), SHIFT(6176), + [8974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 61), SHIFT(6176), + [8977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [8979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), + [8981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [8983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 96), SHIFT(6176), + [8986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 97), SHIFT(6176), + [8989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 99), SHIFT(6176), + [8992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 100), SHIFT(6176), + [8995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 9), SHIFT(6176), + [8998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 59), SHIFT(6176), + [9001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 98), SHIFT(6176), + [9004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 101), SHIFT(6176), + [9007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 123), SHIFT(6176), + [9010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 124), SHIFT(6176), + [9013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 125), SHIFT(6176), + [9016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 62), SHIFT(6176), + [9019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_name_repeat1, 1, 0, 0), + [9021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_qualifier, 1, 0, 0), + [9023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_qualifier, 1, 0, 0), + [9025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 126), SHIFT(6176), + [9028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_specifier_qualifier, 1, 0, 0), + [9030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_specifier_qualifier, 1, 0, 0), + [9032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 127), SHIFT(6176), + [9035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 30), SHIFT(6176), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [9040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 28), SHIFT(6176), + [9043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 63), SHIFT(5000), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [9048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(5000), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), + [9053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 29), SHIFT(5000), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [9058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 126), SHIFT(5000), + [9061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 60), SHIFT(5000), + [9064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 127), SHIFT(5000), + [9067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 61), SHIFT(5000), + [9070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 99), SHIFT(5000), + [9073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 100), SHIFT(5000), + [9076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instance_variable, 1, 0, 0), + [9078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable, 1, 0, 0), + [9080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 63), SHIFT(5741), + [9083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_specification, 1, 0, 0), + [9085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_specification, 1, 0, 0), + [9087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(5826), + [9090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 29), SHIFT(5883), + [9093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_instance_variables_repeat1, 2, 0, 0), + [9095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 2), SHIFT(4123), + [9098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4907), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [9108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_block_pointer_declarator, 1, 1, 0), + [9110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_block_pointer_declarator, 1, 1, 0), + [9112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_block_pointer_declarator, 2, 1, 0), + [9114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_block_pointer_declarator, 2, 1, 0), + [9116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_attributes_declaration, 3, 0, 0), + [9118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_attributes_declaration, 3, 0, 0), + [9120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_attributes_declaration, 2, 0, 0), + [9122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_attributes_declaration, 2, 0, 0), + [9124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_attributes_declaration, 4, 0, 0), + [9126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_attributes_declaration, 4, 0, 0), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), + [9150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 4), + [9152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 4), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [9156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 13), + [9158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [9160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), + [9162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [9164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 13), + [9166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 4), REDUCE(sym__type_definition_type, 2, 0, 13), + [9169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 4), REDUCE(sym__type_definition_type, 2, 0, 13), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [9174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 13), + [9176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 13), + [9178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(4273), + [9181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(4274), + [9184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(4281), + [9187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 4), + [9189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 4), + [9191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 43), + [9193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 43), + [9195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4265), + [9198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4269), + [9201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4268), + [9204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 2), SHIFT(4283), + [9207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 14), SHIFT(2930), + [9210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 14), SHIFT(4264), + [9213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 4), SHIFT(2930), + [9216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 4, 0, 43), + [9218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 4, 0, 43), + [9220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 13), SHIFT(4275), + [9223] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(2930), + [9227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 4), REDUCE(sym__type_definition_type, 3, 0, 13), + [9230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 4), REDUCE(sym__type_definition_type, 3, 0, 13), + [9233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 4), + [9235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 4), + [9237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 26), + [9239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3455), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), + [9244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [9248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 44), SHIFT(4287), + [9251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), SHIFT(2930), + [9254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 13), SHIFT(2930), + [9257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(4266), + [9260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 5, 0, 43), + [9262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 5, 0, 43), + [9264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 43), SHIFT(2930), + [9267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 4, 0, 13), + [9269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 4, 0, 13), + [9271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 43), SHIFT(4278), + [9274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 13), + [9276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 13), + [9278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), SHIFT(2930), + [9281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 4), + [9283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 4), + [9285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 44), SHIFT(2930), + [9288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 4), REDUCE(sym__type_definition_type, 4, 0, 13), + [9291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 4), REDUCE(sym__type_definition_type, 4, 0, 13), + [9294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 19), + [9296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 22), + [9298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), + [9300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 19), + [9302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 3, 0, 22), + [9304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 3, 0, 22), + [9306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 3, 0, 22), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [9310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 0, 22), + [9312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [9314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(5869), + [9317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 29), SHIFT(5772), + [9320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 3, 0, 22), + [9322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, 0, 19), + [9324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 63), SHIFT(5834), + [9327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [9329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [9333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [9335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [9337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [9341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [9345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [9353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), SHIFT(3489), + [9356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [9358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 89), + [9360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [9362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [9366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [9370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [9378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [9380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [9386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), SHIFT(3525), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [9413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), SHIFT(3718), + [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [9428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [9432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [9436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [9448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [9452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [9458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [9466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [9474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), SHIFT(3487), + [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [9483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [9487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [9493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [9497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [9501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [9515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_message_expression_repeat1, 2, 0, 0), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [9519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [9521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [9523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), SHIFT(3553), + [9526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 0), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [9534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [9538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [9544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [9548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [9552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), + [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), + [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [9604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 51), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [9618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 0, 144), + [9620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 138), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [9626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [9640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 139), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [9644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_availability_repeat1, 4, 0, 0), + [9646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [9656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [9670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 128), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [9674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 103), + [9676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 104), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [9680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 129), + [9682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_pair, 3, 0, 0), + [9684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), SHIFT(3588), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [9689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 130), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [9695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3, 0, 0), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [9709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), + [9711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), + [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), + [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [9825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 20), + [9827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [9831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [9833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [9839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5839), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [9843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6786), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [9857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [9861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [9865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [9875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), + [9877] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [9907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [9913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), + [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [9917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [9921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), + [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [10003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 34), + [10005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 34), + [10007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [10009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [10011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [10013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [10015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 12), + [10017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 12), + [10019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [10021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [10023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), + [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), + [10029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4821), + [10031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [10033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [10035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [10037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [10039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 6), + [10041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 6), + [10043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), + [10045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), + [10047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [10049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [10053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), + [10055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), + [10057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), + [10059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), + [10061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [10063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [10065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), + [10067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), + [10069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [10071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [10101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [10105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [10115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, 0, 0), + [10117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, 0, 0), + [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [10141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_availability_attribute_specifier_repeat1, 2, 0, 0), + [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [10145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), + [10147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), + [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [10155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), + [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), + [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), + [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [10167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), + [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), + [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [10175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), + [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [10179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 21), + [10181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 21), + [10183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 21), SHIFT_REPEAT(3494), + [10186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [10188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [10190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [10194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [10196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [10198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 89), + [10200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [10202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [10204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), + [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [10212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 54), + [10214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 3, 1, 54), + [10216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), + [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), + [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [10222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), + [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [10226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 120), + [10228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 5, 1, 120), + [10230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5506), + [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), + [10234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [10236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 24), + [10238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 24), + [10240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 121), + [10242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, 0, 121), + [10244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), + [10246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), + [10248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_field_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6210), + [10251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 91), + [10253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 4, 1, 91), + [10255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), + [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [10259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [10261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [10263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 118), + [10265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 118), + [10267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 92), + [10269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 92), + [10271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 24), + [10273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 24), + [10275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_pointer_field_declarator, 2, 1, 21), + [10277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_pointer_field_declarator, 2, 1, 21), + [10279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_available_expression_repeat1, 2, 0, 0), + [10281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [10283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_pointer_field_declarator, 3, 1, 54), + [10285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_pointer_field_declarator, 3, 1, 54), + [10287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 21), + [10289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 2, 1, 21), + [10291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [10293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [10295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), + [10299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), + [10303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), + [10307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [10309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [10313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [10315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), + [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), + [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [10325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), + [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), + [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [10349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3260), + [10352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5129), + [10355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6634), + [10358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), + [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [10368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [10370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [10372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5217), + [10375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [10385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 24), + [10387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 24), + [10389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 65), + [10391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 65), + [10393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator, 3, 0, 47), + [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), + [10399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator, 4, 0, 47), + [10401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 121), + [10403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 121), + [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), + [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), + [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [10413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), + [10419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), + [10421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), + [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [10425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 92), + [10427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 92), + [10429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [10431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 24), + [10433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 24), + [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), + [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [10445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [10447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), + [10451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [10455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_ifdef_in_enumerator_repeat1, 2, 0, 0), SHIFT_REPEAT(5776), + [10458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_ifdef_in_enumerator_repeat1, 2, 0, 0), + [10460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_ifdef_in_enumerator_repeat1, 2, 0, 0), + [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), + [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [10472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_block_pointer_declarator, 2, 1, 21), + [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [10476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 21), + [10478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 21), + [10480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_block_pointer_declarator, 2, 1, 21), + [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), + [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [10492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), + [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [10496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), + [10498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), + [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [10502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), + [10504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810), + [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [10510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), + [10512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5887), + [10514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), + [10516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5105), + [10519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [10521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [10529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(3520), + [10532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), + [10534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(6451), + [10537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 54), + [10539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_block_pointer_declarator, 3, 1, 54), + [10541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 54), + [10543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_block_pointer_declarator, 3, 1, 54), + [10545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 3, 0, 0), + [10547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 3, 0, 0), + [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [10557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 50), + [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [10565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_identifier, 2, 0, 0), + [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [10569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), + [10573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 76), SHIFT_REPEAT(4815), + [10576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 76), + [10578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 76), + [10580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 90), + [10582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), + [10586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [10590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), + [10594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 18), + [10596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), + [10600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [10602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_identifier, 1, 0, 0), + [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [10608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [10610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 53), + [10612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator, 5, 0, 87), + [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [10616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 21), + [10618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 21), + [10620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), + [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [10638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), + [10640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [10644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator, 4, 0, 48), + [10646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protocol_declaration_repeat1, 2, 0, 0), + [10648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1330), + [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [10661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator, 3, 0, 16), + [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [10667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [10669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), + [10673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_identifier_repeat1, 2, 0, 0), + [10675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5125), + [10678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(3480), + [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [10683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator, 4, 0, 16), + [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), + [10687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [10697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_message_expression_repeat1, 3, 0, 0), + [10699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2, 0, 0), + [10701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5143), + [10704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [10706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 3, 0, 0), + [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [10716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_identifier_repeat2, 2, 0, 0), + [10718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), + [10720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(5819), + [10723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [10727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [10733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), + [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), + [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), + [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), + [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), + [10751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [10755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), + [10757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [10773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [10777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), + [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [10783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6242), + [10785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 145), SHIFT_REPEAT(4910), + [10788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 145), + [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [10794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 133), + [10796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [10800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 146), + [10802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [10806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), + [10808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), + [10810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5186), + [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), + [10821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6789), + [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [10835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6593), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [10839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [10843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [10845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_message_expression_repeat2, 2, 0, 27), + [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), + [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [10863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), + [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [10867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), + [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), + [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), + [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [10881] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_parameterized_arguments_repeat1, 2, 0, 49), REDUCE(aux_sym_parameterized_arguments_repeat2, 2, 0, 49), SHIFT(5595), + [10885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameterized_arguments_repeat1, 2, 0, 49), REDUCE(aux_sym_parameterized_arguments_repeat2, 2, 0, 49), + [10888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameterized_arguments_repeat1, 2, 0, 49), SHIFT(3335), + [10891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameterized_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(5595), + [10894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameterized_arguments_repeat1, 2, 0, 0), + [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [10898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator, 2, 0, 0), + [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [10902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 145), SHIFT_REPEAT(4897), + [10905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 145), + [10907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 152), + [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), + [10919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [10923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [10925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5215), + [10928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5215), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [10935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [10937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [10939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [10943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [10945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 158), SHIFT_REPEAT(4867), + [10948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 158), + [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [10952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), + [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), + [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [10972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), + [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [10976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [10986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), + [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [10996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 133), + [10998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 107), + [11000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [11004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), + [11006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_forward_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(6239), + [11009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protocol_forward_declaration_repeat1, 2, 0, 0), + [11011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [11015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), + [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [11019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), + [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [11023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6296), + [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [11027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), + [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [11031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_message_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3653), + [11034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [11038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), + [11040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [11042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), + [11044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [11048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), + [11050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [11052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator, 1, 0, 0), + [11054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [11058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), + [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [11070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [11076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [11092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), + [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), + [11104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [11110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6671), + [11112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [11114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [11118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), + [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), + [11130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [11134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), + [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [11142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 107), + [11144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameterized_arguments_repeat2, 3, 0, 49), SHIFT(5595), + [11147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameterized_arguments_repeat2, 3, 0, 49), + [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [11151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), + [11153] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_parameterized_arguments_repeat1, 3, 0, 88), REDUCE(aux_sym_parameterized_arguments_repeat2, 3, 0, 88), SHIFT(5595), + [11157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameterized_arguments_repeat1, 3, 0, 88), REDUCE(aux_sym_parameterized_arguments_repeat2, 3, 0, 88), + [11160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameterized_arguments_repeat1, 3, 0, 88), SHIFT(3341), + [11163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_identifier, 3, 0, 0), + [11165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [11169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [11171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_identifier_repeat2, 2, 0, 0), SHIFT_REPEAT(5721), + [11174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameterized_arguments_repeat2, 2, 0, 49), SHIFT_REPEAT(5595), + [11177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameterized_arguments_repeat2, 2, 0, 49), + [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [11181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_message_expression_repeat2, 1, 0, 27), + [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [11185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), + [11187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameterized_arguments_repeat2, 4, 0, 88), SHIFT(5595), + [11190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameterized_arguments_repeat2, 4, 0, 88), + [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [11204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameterized_arguments_repeat2, 3, 0, 88), SHIFT_REPEAT(5595), + [11207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameterized_arguments_repeat2, 3, 0, 88), + [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [11227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameterized_arguments_repeat1, 3, 0, 88), + [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), + [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), + [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [11243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_message_expression_repeat2, 2, 0, 58), SHIFT_REPEAT(5298), + [11246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_message_expression_repeat2, 2, 0, 58), + [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), + [11252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), + [11254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6720), + [11256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameterized_arguments_repeat2, 2, 0, 0), SHIFT_REPEAT(5330), + [11259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameterized_arguments_repeat2, 2, 0, 0), + [11261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat2, 2, 0, 0), SHIFT_REPEAT(3343), + [11264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat2, 2, 0, 0), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [11278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 151), + [11280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), + [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [11286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 107), + [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), + [11292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 153), + [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), + [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), + [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), + [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), + [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [11334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2423), + [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), + [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [11341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1991), + [11344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [11346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 157), + [11348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4125), + [11351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [11355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 151), + [11357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 146), + [11359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 159), + [11361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), + [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), + [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), + [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), + [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [11391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 161), SHIFT_REPEAT(6599), + [11394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 161), + [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [11400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), + [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), + [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), + [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [11412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_implementation_repeat1, 2, 0, 0), + [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), + [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), + [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), + [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [11426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 162), + [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [11430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_import_repeat1, 2, 0, 0), + [11432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_import_repeat1, 2, 0, 0), SHIFT_REPEAT(5906), + [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [11443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), + [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), + [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), + [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), + [11455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(6697), + [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), + [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), + [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), + [11466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 107), + [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [11486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_platform, 1, 0, 0), + [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), + [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), + [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [11496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 162), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [11500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 119), + [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), + [11504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5683), + [11507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [11509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_version, 1, 0, 0), + [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [11513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 94), + [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [11523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5804), + [11526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), + [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), + [11530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(6578), + [11533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_arguments_repeat1, 2, 0, 0), + [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), + [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [11543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(3545), + [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [11550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4613), + [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [11559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3322), + [11562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_type_repeat1, 2, 0, 0), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [11566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), + [11568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6229), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [11574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3318), + [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [11589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_version_repeat1, 2, 0, 0), SHIFT_REPEAT(5748), + [11592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_version_repeat1, 2, 0, 0), + [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [11620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_attribute, 3, 0, 0), + [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [11626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), + [11628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_attributes_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5711), + [11631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_attributes_declaration_repeat1, 2, 0, 0), + [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), + [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [11643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), + [11645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6714), + [11647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_availability_repeat1, 2, 0, 0), + [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [11653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), + [11655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_availability_repeat1, 2, 0, 0), SHIFT_REPEAT(6241), + [11658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5763), + [11661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_specifier_repeat1, 2, 0, 0), + [11663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_attribute, 1, 0, 0), + [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), + [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [11701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(3604), + [11704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3448), + [11707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_literal_repeat1, 2, 0, 0), + [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [11715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(6710), + [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [11740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_availability_attribute_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4656), + [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), + [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), + [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [11773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameterized_arguments_repeat1, 2, 0, 49), + [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [11777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_available_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5784), + [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [11816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_arguments_repeat1, 2, 0, 49), + [11818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), + [11820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), + [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [11828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [11830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [11836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [11846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [11848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [11850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 3, 0, 0), + [11852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [11854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), + [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), + [11858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [11860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), + [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [11864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), + [11866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), + [11872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), + [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [11880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6569), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [11886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6539), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), + [11890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_version, 4, 0, 0), + [11892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameterized_arguments_repeat2, 6, 0, 88), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [11898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6220), + [11900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_available_expression_repeat1, 3, 0, 0), + [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [11904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6521), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), + [11908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 7, 0, 94), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), + [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [11914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6633), + [11916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, 0, 26), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [11920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6695), + [11922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameterized_arguments_repeat2, 5, 0, 49), + [11924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 26), + [11926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), + [11928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [11930] = {.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), + [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [11935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, 0, 94), + [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [11939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), + [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [11943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6675), + [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), + [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [11953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6234), + [11955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_type_repeat1, 3, 0, 0), + [11957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [11959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), + [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [11963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6289), + [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [11967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), + [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [11973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6702), + [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [11977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), + [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), + [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [11989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), + [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [11993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_attribute, 4, 0, 0), + [11995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameterized_arguments_repeat2, 5, 0, 88), + [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), + [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [12001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), + [12003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), + [12005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [12007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), + [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), + [12013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), + [12015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), + [12017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 26), + [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), + [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [12023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6699), + [12025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), + [12027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [12031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6639), + [12033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), + [12035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), + [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [12043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6424), + [12045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [12047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [12049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [12053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6466), + [12055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [12057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [12061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6598), + [12063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 5, 0, 0), + [12065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 5, 0, 0), + [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), + [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [12073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), + [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [12077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), + [12079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [12081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [12085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 6, 0, 94), + [12087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_version, 5, 0, 0), + [12089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameterized_arguments_repeat2, 4, 0, 49), + [12091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [12093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), + [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [12097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), + [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), + [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), + [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [12107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), + [12109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_availability_attribute_specifier_repeat1, 5, 0, 0), + [12111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_implementation_repeat1, 4, 0, 0), + [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [12115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), + [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), + [12123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [12125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [12127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 153), + [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [12131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), + [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [12135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), + [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [12139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6275), + [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [12143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 74), + [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [12147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), + [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), + [12153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_availability_attribute_specifier_repeat1, 4, 0, 0), + [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), + [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [12165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objc_bridge, 8, 0, 0), + [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), + [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), + [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [12209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 3, 0, 56), + [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), + [12215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), + [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), + [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), + [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [12271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), + [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), + [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), + [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), + [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), + [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), + [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [12351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objc_bridge, 9, 0, 0), + [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [12355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), + [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [12367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [12371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [12375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [12379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [12383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [12389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6004), + [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), + [12407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [12409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), + [12411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [12415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [12423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [12429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [12431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [12443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), + [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), + [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [12475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6332), + [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), + [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [12485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [12487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [12489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [12491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), + [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), + [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [12527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [12531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [12539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6735), + [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), + [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), + [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), + [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [12579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [12581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [12583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 48), + [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [12597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [12605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), + [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [12629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [12633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [12635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [12655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [12665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [12671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [12673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [12675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), + [12677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), + [12679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [12681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [12683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [12685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [12687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [12689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [12691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), + [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [12697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), + [12699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [12701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [12705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator, 4, 0, 86), + [12707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), + [12709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [12711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [12713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [12715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [12717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [12719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [12721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [12723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [12727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 86), + [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), + [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [12735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [12737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), + [12739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 48), + [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [12745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 87), + [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [12751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [12753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [12755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [12757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [12761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [12767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [12769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [12771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [12773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [12775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [12777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), + [12779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [12781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), + [12783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [12785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [12787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [12791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [12793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability, 4, 0, 0), + [12795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [12799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [12801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), + [12803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [12805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [12807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), + [12811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [12813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [12815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [12819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [12821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [12823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [12827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [12829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [12831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [12833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [12835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [12837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [12839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [12841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [12843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [12845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [12851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [12855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [12857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [12859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [12861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [12863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [12865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [12867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [12869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [12871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [12873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [12875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), + [12877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [12879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), + [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [12883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [12885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), + [12887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [12889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [12891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [12893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [12895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [12897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [12899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [12901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [12903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [12905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [12907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [12909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [12911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [12913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [12915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [12917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [12919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [12921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [12923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [12925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [12927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [12929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [12931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [12933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [12935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), + [12939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [12941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [12943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [12945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [12947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [12949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), + [12951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [12953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [12955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [12957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), + [12959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [12961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [12963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [12965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [12967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [12969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [12971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [12973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [12975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [12977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), + [12979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objc_bridge, 6, 0, 0), + [12981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [12983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [12985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [12987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), + [12989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [12995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), + [12997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [12999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [13001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [13003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [13005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [13007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [13009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [13011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [13013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [13015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [13017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [13019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [13021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [13023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [13025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 24), + [13027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [13029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [13031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), + [13033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), + [13035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [13037] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [13039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [13041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), + [13043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability, 6, 0, 0), + [13045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [13047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [13049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [13051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [13053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [13055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), + [13057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 86), + [13059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [13061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [13063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [13065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), + [13067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [13069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_interface_declaration, 4, 0, 86), + [13071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [13073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [13075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), + [13077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [13079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [13081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [13083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [13085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [13087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [13089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [13091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [13093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), + [13095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [13097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), + [13099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [13101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [13103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [13105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [13107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [13109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [13111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [13113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [13115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [13117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [13119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [13121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [13123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [13125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [13127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [13129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [13131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [13133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [13135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [13137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [13139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [13141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6510), + [13143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [13145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), + [13147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [13149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), + [13151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [13153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [13155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [13157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [13159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), + [13161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [13163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [13165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [13167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [13169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [13171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [13173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [13175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [13177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [13179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [13181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [13183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [13185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [13187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [13189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [13191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [13193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_implementation_definition, 4, 0, 86), + [13195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [13197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 87), + [13199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [13201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), + [13203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [13205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [13207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [13209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [13211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [13213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [13215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [13217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), + [13219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [13221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [13223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [13225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [13227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [13229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [13231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), + [13233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [13235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [13237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [13239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [13241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [13243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [13245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [13247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [13249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [13251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [13253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [13255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [13257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [13259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), + [13261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [13263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [13265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [13267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [13269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [13271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), + [13273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [13275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), + [13277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [13279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), + [13281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [13283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [13285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [13287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [13289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [13291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [13293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [13295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [13297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [13299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [13301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [13303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [13305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [13307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [13309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), + [13311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability, 5, 0, 0), + [13313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [13315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), + [13317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [13319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [13321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [13323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [13325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), + [13327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [13329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [13331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), + [13333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [13335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [13337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [13339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [13341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), + [13343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [13345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [13347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [13349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [13351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [13353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [13355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [13357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [13359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [13361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [13363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [13365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [13367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [13369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [13371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [13373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [13375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [13377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator, 5, 0, 117), + [13379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), + [13381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), + [13383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 117), + [13385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [13387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [13389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [13391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), + [13393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [13395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [13397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [13399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [13401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [13403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [13405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [13407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [13409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [13411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [13413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [13415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [13417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [13419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [13421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [13423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [13425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [13427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [13429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [13431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [13433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [13435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [13437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [13439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objc_bridge, 7, 0, 0), + [13441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), + [13443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [13445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [13447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [13449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [13451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [13453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [13455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [13457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability, 7, 0, 0), + [13459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [13461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [13463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), + [13465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [13467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [13469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [13471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [13473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), + [13475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [13477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [13479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_interface_declaration, 5, 0, 117), + [13481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [13483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [13485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [13487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [13489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [13491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [13493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [13495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [13497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [13499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [13501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), + [13503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [13505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [13507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [13509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [13511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [13513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), + [13515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [13517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_implementation_definition, 5, 0, 117), + [13519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [13521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [13523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [13525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [13527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [13529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [13531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [13533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [13535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [13537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [13539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [13541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [13543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [13545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [13547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [13549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [13551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [13553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [13555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [13557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), + [13559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [13561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [13563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [13565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [13567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [13569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [13571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [13573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [13575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [13577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [13579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), + [13581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [13583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [13585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [13587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [13589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [13591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [13593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [13595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [13597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [13599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 117), + [13601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [13603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [13605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), + [13607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [13609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [13611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [13613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [13615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [13617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [13619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [13621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [13623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [13625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [13627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [13629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [13631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [13633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [13635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6324), + [13637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [13639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [13641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [13643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), + [13645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [13647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [13649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [13651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [13653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [13655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [13657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [13659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [13661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [13663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [13665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [13667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [13669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [13671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [13673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [13675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [13677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [13679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [13681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [13683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [13685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), + [13687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [13689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [13691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [13693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [13695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [13697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [13699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [13701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [13703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [13705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [13707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [13709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [13711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [13713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [13715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [13717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [13719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [13721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [13723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [13725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [13727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [13729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [13731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [13733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [13735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [13737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [13739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [13741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [13743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [13745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [13747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [13749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [13751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [13753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [13755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [13757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [13759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [13761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [13763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), + [13765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [13767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [13769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [13771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [13773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [13775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), +}; + +#ifdef __cplusplus +extern "C" { +#endif +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) +#endif + +TS_PUBLIC const TSLanguage *tree_sitter_objc(void) { + static const TSLanguage language = { + .version = LANGUAGE_VERSION, + .symbol_count = SYMBOL_COUNT, + .alias_count = ALIAS_COUNT, + .token_count = TOKEN_COUNT, + .external_token_count = EXTERNAL_TOKEN_COUNT, + .state_count = STATE_COUNT, + .large_state_count = LARGE_STATE_COUNT, + .production_id_count = PRODUCTION_ID_COUNT, + .field_count = FIELD_COUNT, + .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, + .parse_table = &ts_parse_table[0][0], + .small_parse_table = ts_small_parse_table, + .small_parse_table_map = ts_small_parse_table_map, + .parse_actions = ts_parse_actions, + .symbol_names = ts_symbol_names, + .field_names = ts_field_names, + .field_map_slices = ts_field_map_slices, + .field_map_entries = ts_field_map_entries, + .symbol_metadata = ts_symbol_metadata, + .public_symbol_map = ts_symbol_map, + .alias_map = ts_non_terminal_alias_map, + .alias_sequences = &ts_alias_sequences[0][0], + .lex_modes = ts_lex_modes, + .lex_fn = ts_lex, + .keyword_lex_fn = ts_lex_keywords, + .keyword_capture_token = sym_identifier, + .primary_state_ids = ts_primary_state_ids, + }; + return &language; +} +#ifdef __cplusplus +} +#endif diff --git a/gitnexus/vendor/tree-sitter-objc/src/tree_sitter/alloc.h b/gitnexus/vendor/tree-sitter-objc/src/tree_sitter/alloc.h new file mode 100644 index 000000000..1abdd1201 --- /dev/null +++ b/gitnexus/vendor/tree-sitter-objc/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 size); +extern void *(*ts_current_calloc)(size_t count, size_t size); +extern void *(*ts_current_realloc)(void *ptr, size_t size); +extern void (*ts_current_free)(void *ptr); + +#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/gitnexus/vendor/tree-sitter-objc/src/tree_sitter/array.h b/gitnexus/vendor/tree-sitter-objc/src/tree_sitter/array.h new file mode 100644 index 000000000..a17a574f0 --- /dev/null +++ b/gitnexus/vendor/tree-sitter-objc/src/tree_sitter/array.h @@ -0,0 +1,291 @@ +#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(push) +#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(pop) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/gitnexus/vendor/tree-sitter-objc/src/tree_sitter/parser.h b/gitnexus/vendor/tree-sitter-objc/src/tree_sitter/parser.h new file mode 100644 index 000000000..799f599bd --- /dev/null +++ b/gitnexus/vendor/tree-sitter-objc/src/tree_sitter/parser.h @@ -0,0 +1,266 @@ +#ifndef TREE_SITTER_PARSER_H_ +#define TREE_SITTER_PARSER_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +#define ts_builtin_sym_error ((TSSymbol)-1) +#define ts_builtin_sym_end 0 +#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 + +#ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; +typedef uint16_t TSSymbol; +typedef uint16_t TSFieldId; +typedef struct TSLanguage TSLanguage; +#endif + +typedef struct { + TSFieldId field_id; + uint8_t child_index; + bool inherited; +} TSFieldMapEntry; + +typedef struct { + uint16_t index; + uint16_t length; +} TSFieldMapSlice; + +typedef struct { + bool visible; + bool named; + bool supertype; +} TSSymbolMetadata; + +typedef struct TSLexer TSLexer; + +struct TSLexer { + int32_t lookahead; + TSSymbol result_symbol; + void (*advance)(TSLexer *, bool); + void (*mark_end)(TSLexer *); + uint32_t (*get_column)(TSLexer *); + bool (*is_at_included_range_start)(const TSLexer *); + bool (*eof)(const TSLexer *); + void (*log)(const TSLexer *, const char *, ...); +}; + +typedef enum { + TSParseActionTypeShift, + TSParseActionTypeReduce, + TSParseActionTypeAccept, + TSParseActionTypeRecover, +} TSParseActionType; + +typedef union { + struct { + uint8_t type; + TSStateId state; + bool extra; + bool repetition; + } shift; + struct { + uint8_t type; + uint8_t child_count; + TSSymbol symbol; + int16_t dynamic_precedence; + uint16_t production_id; + } reduce; + uint8_t type; +} TSParseAction; + +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; +} TSLexMode; + +typedef union { + TSParseAction action; + struct { + uint8_t count; + bool reusable; + } entry; +} TSParseActionEntry; + +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + +struct TSLanguage { + uint32_t version; + uint32_t symbol_count; + uint32_t alias_count; + uint32_t token_count; + uint32_t external_token_count; + uint32_t state_count; + uint32_t large_state_count; + uint32_t production_id_count; + uint32_t field_count; + uint16_t max_alias_sequence_length; + const uint16_t *parse_table; + const uint16_t *small_parse_table; + const uint32_t *small_parse_table_map; + const TSParseActionEntry *parse_actions; + const char * const *symbol_names; + const char * const *field_names; + const TSFieldMapSlice *field_map_slices; + const TSFieldMapEntry *field_map_entries; + const TSSymbolMetadata *symbol_metadata; + const TSSymbol *public_symbol_map; + const uint16_t *alias_map; + const TSSymbol *alias_sequences; + const TSLexMode *lex_modes; + bool (*lex_fn)(TSLexer *, TSStateId); + bool (*keyword_lex_fn)(TSLexer *, TSStateId); + TSSymbol keyword_capture_token; + struct { + const bool *states; + const TSSymbol *symbol_map; + void *(*create)(void); + void (*destroy)(void *); + bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); + unsigned (*serialize)(void *, char *); + void (*deserialize)(void *, const char *, unsigned); + } external_scanner; + const TSStateId *primary_state_ids; +}; + +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 + */ + +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + +#define START_LEXER() \ + bool result = false; \ + bool skip = false; \ + UNUSED \ + bool eof = false; \ + int32_t lookahead; \ + goto start; \ + next_state: \ + lexer->advance(lexer, skip); \ + start: \ + skip = false; \ + lookahead = lexer->lookahead; + +#define ADVANCE(state_value) \ + { \ + state = state_value; \ + goto next_state; \ + } + +#define 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; \ + state = state_value; \ + goto next_state; \ + } + +#define ACCEPT_TOKEN(symbol_value) \ + result = true; \ + lexer->result_symbol = symbol_value; \ + lexer->mark_end(lexer); + +#define END_STATE() return result; + +/* + * Parse Table Macros + */ + +#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) + +#define STATE(id) id + +#define ACTIONS(id) id + +#define SHIFT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = (state_value) \ + } \ + }} + +#define SHIFT_REPEAT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = (state_value), \ + .repetition = true \ + } \ + }} + +#define SHIFT_EXTRA() \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .extra = true \ + } \ + }} + +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ + }} + +#define RECOVER() \ + {{ \ + .type = TSParseActionTypeRecover \ + }} + +#define ACCEPT_INPUT() \ + {{ \ + .type = TSParseActionTypeAccept \ + }} + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_PARSER_H_ diff --git a/gitnexus/vendor/tree-sitter-objc/tree-sitter-objc.wasm b/gitnexus/vendor/tree-sitter-objc/tree-sitter-objc.wasm new file mode 100644 index 000000000..17bf2b67b Binary files /dev/null and b/gitnexus/vendor/tree-sitter-objc/tree-sitter-objc.wasm differ diff --git a/gitnexus/vendor/tree-sitter-objc/tree-sitter.json b/gitnexus/vendor/tree-sitter-objc/tree-sitter.json new file mode 100644 index 000000000..b15061dcb --- /dev/null +++ b/gitnexus/vendor/tree-sitter-objc/tree-sitter.json @@ -0,0 +1,42 @@ +{ + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/config.schema.json", + "grammars": [ + { + "name": "objc", + "camelcase": "Objc", + "scope": "source.objc", + "path": ".", + "file-types": [ + "h", + "m", + "objc" + ], + "highlights": "queries/highlights.scm", + "injections": "queries/injections.scm", + "locals": "queries/locals.scm", + "injection-regex": "^(objc|objectivec)$" + } + ], + "metadata": { + "version": "3.0.2", + "license": "MIT", + "description": "Objective-C grammar for tree-sitter", + "authors": [ + { + "name": "Amaan Qureshi", + "email": "amaanq12@gmail.com" + } + ], + "links": { + "repository": "https://github.com/tree-sitter-grammars/tree-sitter-objc" + } + }, + "bindings": { + "c": true, + "go": true, + "node": true, + "python": true, + "rust": true, + "swift": true + } +}